Linux premium82.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
Server IP : 185.61.154.194 & Your IP : 216.73.216.196
Domains :
Cant Read [ /etc/named.conf ]
User : evicodqw
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
ops /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2025-07-12 04:27
php53
[ DIR ]
drwxr-xr-x
2025-07-12 04:27
php56
[ DIR ]
drwxr-xr-x
2025-07-12 04:27
php71
[ DIR ]
drwxr-xr-x
2025-07-12 04:27
php81
[ DIR ]
drwxr-xr-x
2025-07-12 04:27
php82
[ DIR ]
drwxr-xr-x
2025-07-12 04:27
_clone.php
4.7
KB
-rw-r--r--
2025-07-11 10:56
_edit.php
3.26
KB
-rw-r--r--
2025-07-11 10:56
_edit.xml
433
B
-rw-r--r--
2025-07-11 10:56
app_key.php
500
B
-rw-r--r--
2025-07-11 10:56
config.inc.php
19.73
KB
-rw-r--r--
2025-07-11 10:56
data.zip
58.65
MB
-rw-r--r--
2025-07-11 10:56
extend.php
8.73
KB
-rw-r--r--
2025-07-11 12:13
fileindex.php
413
B
-rw-r--r--
2025-07-11 10:56
import.php
3.53
KB
-rw-r--r--
2025-07-11 12:13
info.xml
3.06
KB
-rw-r--r--
2025-07-11 10:56
install.js
921
B
-rw-r--r--
2021-12-23 11:54
install.php
6.22
KB
-rw-r--r--
2025-07-11 12:13
install.xml
803
B
-rw-r--r--
2025-07-11 10:56
md5
1.37
KB
-rw-r--r--
2025-07-11 12:13
notes.txt
1.81
KB
-rw-r--r--
2025-07-11 10:56
ops.sql
24.43
MB
-rw-r--r--
2025-07-11 10:56
ops.zip
105.61
MB
-rw-r--r--
2025-07-11 10:56
update_pass.php
497
B
-rw-r--r--
2025-07-11 10:56
upgrade.php
9.7
KB
-rw-r--r--
2025-07-11 12:13
upgrade.xml
318
B
-rw-r--r--
2021-12-23 11:54
Save
Rename
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `ops3501` -- -- -------------------------------------------------------- -- -- Table structure for table `announcements` -- CREATE TABLE `announcements` ( `announcement_id` bigint(20) NOT NULL AUTO_INCREMENT, `assoc_type` smallint(6) DEFAULT NULL, `assoc_id` bigint(20) DEFAULT NULL, `type_id` bigint(20) DEFAULT NULL, `date_expire` date DEFAULT NULL, `date_posted` datetime NOT NULL, PRIMARY KEY (`announcement_id`), KEY `announcements_type_id` (`type_id`), KEY `announcements_assoc` (`assoc_type`,`assoc_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Announcements are messages that can be presented to users e.g. on the homepage.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `announcement_settings` -- CREATE TABLE `announcement_settings` ( `announcement_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `announcement_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, PRIMARY KEY (`announcement_setting_id`), UNIQUE KEY `announcement_settings_unique` (`announcement_id`,`locale`,`setting_name`), KEY `announcement_settings_announcement_id` (`announcement_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about announcements, including localized properties like names and contents.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `announcement_types` -- CREATE TABLE `announcement_types` ( `type_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`type_id`), KEY `announcement_types_context_id` (`context_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Announcement types allow for announcements to optionally be categorized.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `announcement_type_settings` -- CREATE TABLE `announcement_type_settings` ( `announcement_type_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `type_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, `setting_type` varchar(6) NOT NULL, PRIMARY KEY (`announcement_type_setting_id`), UNIQUE KEY `announcement_type_settings_unique` (`type_id`,`locale`,`setting_name`), KEY `announcement_type_settings_type_id` (`type_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about announcement types, including localized properties like their names.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `authors` -- CREATE TABLE `authors` ( `author_id` bigint(20) NOT NULL AUTO_INCREMENT, `email` varchar(90) NOT NULL, `include_in_browse` smallint(6) NOT NULL DEFAULT '1', `publication_id` bigint(20) NOT NULL, `seq` double NOT NULL DEFAULT '0', `user_group_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`author_id`), KEY `authors_user_group_id` (`user_group_id`), KEY `authors_publication_id` (`publication_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='The authors of a publication.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `author_affiliations` -- CREATE TABLE `author_affiliations` ( `author_affiliation_id` bigint(20) NOT NULL AUTO_INCREMENT, `author_id` bigint(20) NOT NULL, `ror` varchar(255) DEFAULT NULL, PRIMARY KEY (`author_affiliation_id`), KEY `author_affiliations_ror` (`ror`), KEY `author_affiliations_author_id_foreign` (`author_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Author affiliations' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `author_affiliation_settings` -- CREATE TABLE `author_affiliation_settings` ( `author_affiliation_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `author_affiliation_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, PRIMARY KEY (`author_affiliation_setting_id`), UNIQUE KEY `author_affiliation_settings_unique` (`author_affiliation_id`,`locale`,`setting_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about author affiliations' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `author_settings` -- CREATE TABLE `author_settings` ( `author_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `author_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, PRIMARY KEY (`author_setting_id`), UNIQUE KEY `author_settings_unique` (`author_id`,`locale`,`setting_name`), KEY `author_settings_author_id` (`author_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about authors, including localized properties such as their name and affiliation.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `category_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `parent_id` bigint(20) DEFAULT NULL, `seq` bigint(20) DEFAULT NULL, `path` varchar(255) NOT NULL, `image` text, PRIMARY KEY (`category_id`), UNIQUE KEY `category_path` (`context_id`,`path`), KEY `category_context_id` (`context_id`), KEY `category_context_parent_id` (`context_id`,`parent_id`), KEY `category_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Categories permit the organization of submissions into a heirarchical structure.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `category_settings` -- CREATE TABLE `category_settings` ( `category_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `category_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, PRIMARY KEY (`category_setting_id`), UNIQUE KEY `category_settings_unique` (`category_id`,`locale`,`setting_name`), KEY `category_settings_category_id` (`category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about categories, including localized properties such as names.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `citations` -- CREATE TABLE `citations` ( `citation_id` bigint(20) NOT NULL AUTO_INCREMENT, `publication_id` bigint(20) NOT NULL, `raw_citation` text NOT NULL, `seq` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`citation_id`), UNIQUE KEY `citations_publication_seq` (`publication_id`,`seq`), KEY `citations_publication` (`publication_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A citation made by an associated publication.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `citation_settings` -- CREATE TABLE `citation_settings` ( `citation_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `citation_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, `setting_type` varchar(6) DEFAULT NULL, PRIMARY KEY (`citation_setting_id`), UNIQUE KEY `citation_settings_unique` (`citation_id`,`locale`,`setting_name`), KEY `citation_settings_citation_id` (`citation_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Additional data about citations, including localized content.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `controlled_vocabs` -- CREATE TABLE `controlled_vocabs` ( `controlled_vocab_id` bigint(20) NOT NULL AUTO_INCREMENT, `symbolic` varchar(64) NOT NULL, `assoc_type` bigint(20) NOT NULL DEFAULT '0', `assoc_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`controlled_vocab_id`), UNIQUE KEY `controlled_vocab_symbolic` (`symbolic`,`assoc_type`,`assoc_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Every word or phrase used in a controlled vocabulary. Controlled vocabularies are used for submission metadata like keywords and subjects, reviewer interests, and wherever a similar dictionary of words or phrases is required. Each entry corresponds to a word or phrase like "cellular reproduction" and a type like "submissionKeyword".' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `controlled_vocab_entries` -- CREATE TABLE `controlled_vocab_entries` ( `controlled_vocab_entry_id` bigint(20) NOT NULL AUTO_INCREMENT, `controlled_vocab_id` bigint(20) NOT NULL, `seq` double DEFAULT NULL, PRIMARY KEY (`controlled_vocab_entry_id`), KEY `controlled_vocab_entries_controlled_vocab_id` (`controlled_vocab_id`), KEY `controlled_vocab_entries_cv_id` (`controlled_vocab_id`,`seq`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='The order that a word or phrase used in a controlled vocabulary should appear. For example, the order of keywords in a publication.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `controlled_vocab_entry_settings` -- CREATE TABLE `controlled_vocab_entry_settings` ( `controlled_vocab_entry_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `controlled_vocab_entry_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, PRIMARY KEY (`controlled_vocab_entry_setting_id`), UNIQUE KEY `c_v_e_s_pkey` (`controlled_vocab_entry_id`,`locale`,`setting_name`), KEY `c_v_e_s_entry_id` (`controlled_vocab_entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about a controlled vocabulary entry, including localized properties such as the actual word or phrase.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `data_object_tombstones` -- CREATE TABLE `data_object_tombstones` ( `tombstone_id` bigint(20) NOT NULL AUTO_INCREMENT, `data_object_id` bigint(20) NOT NULL, `date_deleted` datetime NOT NULL, `set_spec` varchar(255) NOT NULL, `set_name` varchar(255) NOT NULL, `oai_identifier` varchar(255) NOT NULL, PRIMARY KEY (`tombstone_id`), KEY `data_object_tombstones_data_object_id` (`data_object_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Entries for published data that has been removed. Usually used in the OAI endpoint.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `data_object_tombstone_oai_set_objects` -- CREATE TABLE `data_object_tombstone_oai_set_objects` ( `object_id` bigint(20) NOT NULL AUTO_INCREMENT, `tombstone_id` bigint(20) NOT NULL, `assoc_type` bigint(20) NOT NULL, `assoc_id` bigint(20) NOT NULL, PRIMARY KEY (`object_id`), KEY `data_object_tombstone_oai_set_objects_tombstone_id` (`tombstone_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Relationships between tombstones and other data that can be collected in OAI sets, e.g. sections.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `data_object_tombstone_settings` -- CREATE TABLE `data_object_tombstone_settings` ( `tombstone_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `tombstone_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)', PRIMARY KEY (`tombstone_setting_id`), UNIQUE KEY `data_object_tombstone_settings_unique` (`tombstone_id`,`locale`,`setting_name`), KEY `data_object_tombstone_settings_tombstone_id` (`tombstone_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about data object tombstones, including localized content.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `dois` -- CREATE TABLE `dois` ( `doi_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `doi` varchar(255) NOT NULL, `status` smallint(6) NOT NULL DEFAULT '1', PRIMARY KEY (`doi_id`), KEY `dois_context_id` (`context_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores all DOIs used in the system.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `doi_settings` -- CREATE TABLE `doi_settings` ( `doi_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `doi_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, PRIMARY KEY (`doi_setting_id`), UNIQUE KEY `doi_settings_unique` (`doi_id`,`locale`,`setting_name`), KEY `doi_settings_doi_id` (`doi_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about DOIs, including the registration agency.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `edit_decisions` -- CREATE TABLE `edit_decisions` ( `edit_decision_id` bigint(20) NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) NOT NULL, `review_round_id` bigint(20) DEFAULT NULL, `stage_id` bigint(20) DEFAULT NULL, `round` smallint(6) DEFAULT NULL, `editor_id` bigint(20) NOT NULL, `decision` smallint(6) NOT NULL COMMENT 'A numeric constant indicating the decision that was taken. Possible values are listed in the Decision class.', `date_decided` datetime NOT NULL, PRIMARY KEY (`edit_decision_id`), KEY `edit_decisions_submission_id` (`submission_id`), KEY `edit_decisions_editor_id` (`editor_id`), KEY `edit_decisions_review_round_id` (`review_round_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Editorial decisions recorded on a submission, such as decisions to accept or decline the submission, as well as decisions to send for review, send to copyediting, request revisions, and more.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `email_log` -- CREATE TABLE `email_log` ( `log_id` bigint(20) NOT NULL AUTO_INCREMENT, `assoc_type` bigint(20) NOT NULL, `assoc_id` bigint(20) NOT NULL, `sender_id` bigint(20) DEFAULT NULL, `date_sent` datetime NOT NULL, `event_type` bigint(20) DEFAULT NULL, `from_address` varchar(255) DEFAULT NULL, `recipients` text, `cc_recipients` text, `bcc_recipients` text, `subject` varchar(255) DEFAULT NULL, `body` text, PRIMARY KEY (`log_id`), KEY `email_log_sender_id` (`sender_id`), KEY `email_log_assoc` (`assoc_type`,`assoc_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A record of email messages that are sent in relation to an associated entity, such as a submission.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `email_log_users` -- CREATE TABLE `email_log_users` ( `email_log_user_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `email_log_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, PRIMARY KEY (`email_log_user_id`), UNIQUE KEY `email_log_user_id` (`email_log_id`,`user_id`), KEY `email_log_users_email_log_id` (`email_log_id`), KEY `email_log_users_user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A record of users associated with an email log entry.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `email_templates` -- CREATE TABLE `email_templates` ( `email_id` bigint(20) NOT NULL AUTO_INCREMENT, `email_key` varchar(255) NOT NULL COMMENT 'Unique identifier for this email.', `context_id` bigint(20) NOT NULL, `alternate_to` varchar(255) DEFAULT NULL, PRIMARY KEY (`email_id`), UNIQUE KEY `email_templates_email_key` (`email_key`,`context_id`), KEY `email_templates_context_id` (`context_id`), KEY `email_templates_alternate_to` (`alternate_to`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Custom email templates created by each context, and overrides of the default templates.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `email_templates_default_data` -- CREATE TABLE `email_templates_default_data` ( `email_templates_default_data_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `email_key` varchar(255) NOT NULL COMMENT 'Unique identifier for this email.', `locale` varchar(28) NOT NULL DEFAULT 'en', `name` varchar(255) NOT NULL, `subject` varchar(255) NOT NULL, `body` text, PRIMARY KEY (`email_templates_default_data_id`), UNIQUE KEY `email_templates_default_data_unique` (`email_key`,`locale`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Default email templates created for every installed locale.' AUTO_INCREMENT=190 ; -- -- Dumping data for table `email_templates_default_data` -- INSERT INTO `email_templates_default_data` VALUES (1, 'PASSWORD_RESET_CONFIRM', 'es', 'Confirmación de restablecimiento de contraseña', 'Confirmación de restablecimiento de contraseña', 'Hemos recibido una solicitud para restablecer su contraseña para el sitio web {$siteTitle}. <br />\n<br />\nSi no realizó esta solicitud, ignore este correo electrónico y su contraseña no se cambiará. Si desea restablecer su contraseña, haga clic en la siguiente URL. <br />\n<br />\nRestablecer mi contraseña: {$passwordResetUrl} <br />\n<br />\n{$siteContactName}'), (2, 'PASSWORD_RESET_CONFIRM', 'fi', 'Vahvista salasanan vaihtaminen', '', ''), (3, 'PASSWORD_RESET_CONFIRM', 'fr_CA', 'Confirmation de la réinitialisation du mot de passe', 'Confirmation de la réinitialisation du mot de passe', 'Nous avons reçu une demande concernant la réinitialisation de votre mot de passe pour le site Web {$siteTitle}.<br />\n<br />\nSi vous n''avez pas fait cette demande, veuillez ne pas tenir compte du présent message, votre mot de passe restera le même. Si vous souhaitez réinitialiser votre mot de passe, cliquer sur l''URL ci-dessous.<br />\n<br />\nRéinitialisation de mon mot de passe : {$passwordResetUrl}<br />\n<br />\n{$siteContactName}'), (4, 'PASSWORD_RESET_CONFIRM', 'mk', 'Потврди за ресетирање на лозинката', 'Потврда за ресетирање на лозинка', 'Добивме барање за ресетирање на вашата лозинка за веб-страницата {$siteTitle}. <br />\n<br />\nАко не сте го побарале ова барање, игнорирајте ја оваа е-пошта и лозинката нема да се смени. Ако сакате да ја ресетирате вашата лозинка, кликнете на подолу URL. <br />\n<br />\nРесетирај ја мојата лозинка: {$passwordResetUrl} <br />\n<br />\n{$siteContactName}'), (5, 'PASSWORD_RESET_CONFIRM', 'nb_NO', '', '', ''), (6, 'PASSWORD_RESET_CONFIRM', 'pt_BR', 'Confirmar redefinição de Senha', 'Confirmação de Redefinição de Senha', 'Recebemos uma solicitação para redefinir sua senha para o site {$siteTitle}.<br />\n<br />\nSe você não fez esta solicitação, ignore este e-mail e sua senha não será alterada. Se você deseja redefinir sua senha, clique na URL abaixo.<br />\n<br />\nRedefina minha senha: {$passwordResetUrl}<br />\n<br />\n{$siteContactName}'), (7, 'PASSWORD_RESET_CONFIRM', 'en', 'Password Reset Confirm', 'Password Reset Confirmation', 'We have received a request to reset your password for the {$siteTitle} web site.<br />\n<br />\nIf you did not make this request, please ignore this email and your password will not be changed. If you wish to reset your password, click on the below URL.<br />\n<br />\nReset my password: {$passwordResetUrl}<br />\n<br />\n{$siteContactName}'), (8, 'USER_REGISTER', 'es', 'Usuario/a creado', 'Registro en el servidor', '{$recipientName} <br />\n<br />\nAhora ha sido registrado como usuario con {$serverName}. Hemos incluido su nombre de usuario y contraseña en este correo electrónico, que son necesarios para todo el trabajo con este servidor a través de su sitio web. En cualquier momento, puede solicitar que lo eliminen de la lista de usuarios del servidor poniéndose en contacto conmigo. <br />\n<br />\nNombre de usuario: {$recipientUsername} <br />\nContraseña: {$password} <br />\n<br />\nGracias <br />\n{$signature}'), (9, 'USER_REGISTER', 'fi', 'Käyttäjä luotu', '', ''), (10, 'USER_REGISTER', 'fr_CA', 'Création de l''utilisateur-trice', 'Inscription au serveur', '{$recipientName},<br />\n<br />\nVous êtes désormais inscrit-e en tant qu''utilisateur-trice pour {$serverName}. Votre nom d''utilisateur-trice et votre mot de passe figurent dans ce courriel, lesquels sont requis pour toute interaction avec le serveur via son site Web. À n''importe quel moment, vous pouvez demander à être retiré-e de la liste des utilisateurs-trices du serveur en nous contactant.<br />\n<br />\nNom d''utilisateur-trice : {$recipientUsername}<br />\nMot de passe : {$password}<br />\n<br />\nMerci,<br />\n{$signature}'), (11, 'USER_REGISTER', 'mk', 'Создаден корисник', 'Регистрација на сервер', '{$recipientName} <br />\n<br />\nСега сте регистрирани како корисник со {$serverName}. Ние ги вклучивме вашето корисничко име и лозинка во оваа е-пошта, кои се потребни за целата работа со овој сервер преку неговата веб-страница. Во кој било момент, можете да побарате да бидете отстранети од списокот на корисници на серверот, контактирајќи ме. <br />\n<br />\nКорисничко име: {$recipientUsername} <br />\nЛозинка: {$password} <br />\n<br />\nВи благодариме, <br />\n{$signature}'), (12, 'USER_REGISTER', 'nb_NO', '', '', ''), (13, 'USER_REGISTER', 'pt_BR', 'Usuário Criado', 'Registro do servidor', '{$recipientName}<br />\n<br />\nVocê já foi registrado como usuário com o nome {$serverName}. Incluímos seu nome de usuário e senha neste e-mail, necessários para todo o trabalho neste servidor por meio de seu site. A qualquer momento, você pode pedir para ser removido da lista de usuários do servidor entrando em contato comigo.<br />\n<br />\nNome de usuário: {$recipientUsername}<br />\nSenha: {$password}<br />\n<br />\nObrigado,<br />\n{$signature}'), (14, 'USER_REGISTER', 'en', 'User Created', 'Server Registration', '{$recipientName}<br />\n<br />\nYou have now been registered as a user with {$serverName}. We have included your username and password in this email, which are needed for all work with this server through its website. At any point, you can ask to be removed from the server''s list of users by contacting me.<br />\n<br />\nUsername: {$recipientUsername}<br />\nPassword: {$password}<br />\n<br />\nThank you,<br />\n{$signature}'), (15, 'USER_VALIDATE_CONTEXT', 'es', '', 'Valide su cuenta', '{$recipientName} <br />\n<br />\nHa creado una cuenta con {$serverName}, pero antes de poder comenzar a usarla, debe validar su cuenta de correo electrónico. Para hacer esto, simplemente siga el siguiente enlace: <br />\n<br />\n{$enableUrl} <br />\n<br />\nGracias <br />\n{$serverSignature}'), (16, 'USER_VALIDATE_CONTEXT', 'fi', '', '', ''), (17, 'USER_VALIDATE_CONTEXT', 'fr_CA', '', 'Valider votre compte', '{$recipientName},<br />\n<br />\nVous avez créé un compte avec {$serverName}. Pour pouvoir commencer à l''utiliser vous devez d''abord valider votre compte de courriel. Pour ce faire, vous n''avez qu''à suivre le lien ci-dessous :<br />\n<br />\n{$activateUrl}<br />\n<br />\nMerci,<br />\n{$serverSignature}'), (18, 'USER_VALIDATE_CONTEXT', 'mk', 'Потврдете емаил (регистрација на серверот)', 'Потврдете ја вашата сметка', '{$recipientName} <br />\n<br />\nСоздадовте сметка со {$serverName}, но пред да започнете да ја користите, треба да ја потврдите вашата е-пошта. За да го направите ова, едноставно следете ја врската подолу: <br />\n<br />\n{$activateUrl} <br />\n<br />\nВи благодариме, <br />\n{$serverSignature}'), (19, 'USER_VALIDATE_CONTEXT', 'nb_NO', '', '', ''), (20, 'USER_VALIDATE_CONTEXT', 'pt_BR', 'Validar e-mail (registro do servidor)', 'Valide Sua Conta', '{$recipientName}<br />\n<br />\nVocê criou uma conta com {$serverName}, mas antes de começar a usá-lo, você precisa validar sua conta de e-mail. Para fazer isso, basta seguir o link abaixo:<br />\n<br />\n{$activateUrl}<br />\n<br />\nObrigado,<br />\n{$serverSignature}'), (21, 'USER_VALIDATE_CONTEXT', 'en', 'Validate Email (Server Registration)', 'Validate Your Account', '{$recipientName}<br />\n<br />\nYou have created an account with {$serverName}, but before you can start using it, you need to validate your email account. To do this, simply follow the link below:<br />\n<br />\n{$activateUrl}<br />\n<br />\nThank you,<br />\n{$serverSignature}'), (22, 'USER_VALIDATE_SITE', 'es', 'Validar correo electrónico (Sitio)', '', ''), (23, 'USER_VALIDATE_SITE', 'fi', 'Vahvista sähköposti (sivusto)', '', ''), (24, 'USER_VALIDATE_SITE', 'fr_CA', 'Valider le courriel (site)', '', ''), (25, 'USER_VALIDATE_SITE', 'mk', 'Потврди емаил (Сајт)', 'Потврдете го вашиот профил', '{$recipientName}<br />\n<br />\nСоздадовте профил со {$siteTitle},Но пред да почнете да го користите, треба да го потврдите вашиот емаил профил. За да го сторите тоа, едноставно следете го линкот подолу:<br />\n<br />\n{$activateUrl}<br />\n<br />\nВи благодариме,<br />\n{$siteSignature}'), (26, 'USER_VALIDATE_SITE', 'nb_NO', '', '', ''), (27, 'USER_VALIDATE_SITE', 'pt_BR', 'Validar e-mail (site)', 'Valide a sua conta', '{$recipientName}<br />\n<br />\nVocê criou uma conta com {$siteTitle}, mas antes de começar a usá-la, você precisa validar sua conta de e-mail. Para fazer isso, basta acessar o link abaixo: <br />\n<br />\n{$activateUrl} <br />\n<br />\nObrigado, <br />\n{$siteSignature}'), (28, 'USER_VALIDATE_SITE', 'en', 'Validate Email (Site)', 'Validate Your Account', '{$recipientName}<br />\n<br />\nYou have created an account with {$siteTitle}, but before you can start using it, you need to validate your email account. To do this, simply follow the link below:<br />\n<br />\n{$activateUrl}<br />\n<br />\nThank you,<br />\n{$siteSignature}'), (29, 'SUBMISSION_ACK', 'es', 'Confirmación de envío', 'Gracias por su envío a {$serverName}', '<p>Estimado/a {$recipientName}:</p><p>Gracias por su envío a {$serverName}. Hemos recibido su original, {$submissionTitle}, y un miembro de nuestro equipo editorial lo revisará pronto. Le enviaremos un correo electrónico cuando se tome una decisión inicial, y podríamos contactarlo para darle más información.</p></p> Puede ver el envío y seguir su progreso a través del proceso editorial en el enlace siguiente:</p><p>URL del envío: {$authorSubmissionUrl}</p><p>Si se ha cerrado la sesión, puede volver a iniciarla con su nombre de usuario/a {$recipientUsername}.</p><p>Si tiene cualquier duda contacte con nosotros desde el <a href="{$authorSubmissionUrl}">panel de control del envío</a>.</p><p>Gracias por tener en cuenta {$serverName} como hogar para su trabajo.</p>{$serverSignature}'), (30, 'SUBMISSION_ACK', 'fi', 'Käsikirjoituksen vastaanottaminen', 'Kiitos käsikirjoituksesta - {$serverName}', '<p>Hyvä {$recipientName},</p><p>Kiitos käsikirjoituksen lähettämisestä. Olemme vastaanottaneet käsikirjoituksenne {$submissionTitle}, ja toimituksemme jäsen näkee sen pian. Saatte sähköpostia, kun alustava päätös on tehty, ja saatamme ottaa teihin yhteyttä saadaksemme lisätietoja.</p><p>Voitte seurata käsikirjoituksen etenemistä toimitusprosessissa kirjautumalla verkkosivustollemme:</p><p>Käsikirjoituksen URL: {$authorSubmissionUrl}</p><p>Jos olette kirjautuneet ulos, voitte kirjautua uudelleen käyttäjätunnuksella {$recipientUsername}.</p><p>Jos teillä on kysyttävää, otattehan yhteyttä minuun <a href="{$authorSubmissionUrl}">aloittamalla keskustelun käsikirjoituksenne yhteydessä</a>.</p><p>{$serverName} haluaa kiittää, että valitsitte meidät työnne julkaisuun.</p>{$serverSignature}'), (31, 'SUBMISSION_ACK', 'fr_CA', 'Confirmation de soumission', 'Accusé de réception de la soumission à {$serverName}', '<p>{$recipientName},</p><p>Nous vous remercions d''avoir soumis le manuscrit intitulé « {$submissionTitle} » à la revue {$serverName}. Nous l''avons bien reçu et un membre de notre équipe éditorial le prendre en charge sous peu. Grâce à notre système de gestion en ligne, vous pourrez suivre votre soumission tout au long du processus d''édition en accédant au site Web de la revue :</p>\n<br />\nURL de la soumission : {$submissionUrl}<br />\nNom d''utilisateur-trice : {$recipientUsername}<br />\n<br />\nSi vous avez des questions, n''hésitez pas à communiquer avec nous. Nous vous remercions d''avoir pensé à notre revue pour la publication de vos travaux.<br />\n<br />\n{$serverSignature}'), (32, 'SUBMISSION_ACK', 'mk', 'Потврда за поднесување (Во очекување на модерирање)', 'Благодариме за вашиот поднесок во {$serverName}', '<p>Драг {$recipientName},</p><p>Ви благодариме за Вашиот поднесок во{$serverName}.Го добивме Вашиот препринт,{$submissionTitle}, и модераторот ќе го погледне наскоро. Откако модераторот ќе го прегледа Вашиот поднесок, ќе го објави вашиот препринт или ќе Ве контактира.</p><p>Можете да го видите Вашиот поднесок и да го следите неговиот напредок преку уредувачкиот процес на следнава локација:</p><p>Поднесок URL: {$authorSubmissionUrl}</p><p>Ако сте одлогирани,можете повторно да се логирате со Вашето корисничко име{$recipientUsername}.</p><p>Ако имате било какви прашања, Ве молиме контактирајте не преку Вашиот <a href="{$authorSubmissionUrl}">работна табла за поднесоци</a>.</p><p>Ви благодариме за имајќи ја во предвид {$serverName} како место за Вашата работа.</p>{$serverSignature}'), (33, 'SUBMISSION_ACK', 'nb_NO', 'Bekreftelse på innlevering', 'Vi har mottatt innleveringen din', '{$recipientName}:<br />\n<br />\nTakk for at du har sendt inn «{$submissionTitle}» til {$serverName}. Du kan følge innleveringen gjennom den redaksjonelle prosessen ved å logge deg inn på tidsskriftets nettsted:<br />\n<br />\nInnleveringens URL: {$submissionUrl}<br />\nBrukernavn: {$recipientUsername}<br />\n<br />\nTa kontakt med meg om du har spørsmål. Takk for at du velger tidsskriftet vårt som kanal for å publisere arbeidet ditt.<br />\n<br />\n{$serverSignature}'), (34, 'SUBMISSION_ACK', 'pt_BR', 'Reconhecimento da Submissão (Moderação Pendente)', 'Obrigado pela sua submissão para {$serverName}', '<p>Prezado(a) {$recipientName},</p><p>obrigado por submeter para {$serverName}. Recebemos seu preprint, {$submissionTitle}, e um moderador a verá em breve. Depois que o moderador revisar sua submissão, ele publicará seu preprint ou entrará em contato com você.</p><p>Você pode visualizar sua submissão e acompanhar seu progresso por meio do processo editorial no seguinte local:</p><p>URL da submisão: {$authorSubmissionUrl}</p><p>Se você foi desconectado, pode fazer login novamente com o nome de usuário {$recipientUsername}.</p><p>Se você tiver alguma dúvida, entre em contato comigo pelo seu <a href="{$authorSubmissionUrl}">painel de submissão</a>.</p><p>Obrigado por considerar {$serverName} como um local para o seu trabalho.</p>{$serverSignature}'), (35, 'SUBMISSION_ACK', 'en', 'Submission Acknowledgement (Pending Moderation)', 'Thank you for your submission to {$serverName}', '<p>Dear {$recipientName},</p><p>Thank you for your submission to {$serverName}. We have received your preprint, {$submissionTitle}, and a moderator will see it soon. Once the moderator has reviewed your submission, they will post your preprint or contact you.</p><p>You can view your submission and track its progress through the editorial process at the following location:</p><p>Submission URL: {$authorSubmissionUrl}</p><p>If you have been logged out, you can login again with the username {$recipientUsername}.</p><p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p><p>Thank you for considering {$serverName} as a venue for your work.</p>{$serverSignature}'), (36, 'POSTED_ACK', 'es', '', '', ''), (37, 'POSTED_ACK', 'fi', '', '', ''), (38, 'POSTED_ACK', 'fr_CA', '', '', ''), (39, 'POSTED_ACK', 'mk', 'Објавено признание', 'Објавено признание од предпечаток', '{$recipientName}: <br />\n<br />\nВашиот препечаток, "{$submissionTitle}" е објавен на Интернет на {$serverName}. <br />\n<br />\nURL на препечатокот: {$submissionUrl}<br />\n<br />\nДоколку имате било какви прашања, Ве молам да ме контактирате.<br />\n<br />\n{$signature}'), (40, 'POSTED_ACK', 'nb_NO', '', '', ''), (41, 'POSTED_ACK', 'pt_BR', 'Reconhecimento Postado', 'Aviso de postagem de preprint', '{$recipientName}: <br />\n<br />\nSeu preprint, "{$submissionTitle}" foi publicado online em {$serverName}. <br />\n<br />\nURL do preprint: {$submissionUrl} <br />\n<br />\nSe você tiver alguma dúvida, entre em contato comigo. <br />\n<br />\n{$signature}'), (42, 'POSTED_ACK', 'en', 'Posted Acknowledgement', 'Preprint Posted Acknowledgement', '{$recipientName}:<br />\n<br />\nYour preprint, "{$submissionTitle}" has been posted online on {$serverName}.<br />\n<br />\nPreprint URL: {$submissionUrl}<br />\n<br />\nIf you have any questions, please contact me.<br />\n<br />\n{$signature}'), (43, 'POSTED_NEW_VERSION_ACK', 'es', '', '', ''), (44, 'POSTED_NEW_VERSION_ACK', 'fi', '', '', ''), (45, 'POSTED_NEW_VERSION_ACK', 'fr_CA', '', '', ''), (46, 'POSTED_NEW_VERSION_ACK', 'mk', 'Објавена нова верзија', 'Потврда за објавување нова верзија', '<p>Драг {$recipientName},</p><p>Ви благодариме за објавувањето на нова верзија на Вашиот препринт во {$serverName}.Новата верзија сега е<a href="{$submissionPublishedUrl}">достапна</a>.</p><p>Ако имате било какви прашања, Ве молиме контактирајте не.</p>{$signature}'), (47, 'POSTED_NEW_VERSION_ACK', 'nb_NO', '', '', ''), (48, 'POSTED_NEW_VERSION_ACK', 'pt_BR', 'Nova Versão Postada', 'Notificação de Nova Versão Postada', '<p>Prezado(a) {$recipientName},</p><p>Obrigado por postar uma nova versão de seu preprint em {$serverName}. A nova versão agora está <a href="{$submissionPublishedUrl}">disponível</a>.</p><p>Se você tiver alguma dúvida, entre em contato comigo.</p>{$signature}'), (49, 'POSTED_NEW_VERSION_ACK', 'en', 'New Version Posted', 'New Version Posted Acknowledgement', '<p>Dear {$recipientName},</p><p>Thank you for posting a new version of your preprint to {$serverName}. The new version is now <a href="{$submissionPublishedUrl}">available</a>.</p><p>If you have any questions, please contact me.</p>{$signature}'), (50, 'SUBMISSION_ACK_CAN_POST', 'es', '', 'Gracias por su envío a {$serverName}', ''), (51, 'SUBMISSION_ACK_CAN_POST', 'fi', '', 'Kiitos käsikirjoituksesta - {$serverName}', ''), (52, 'SUBMISSION_ACK_CAN_POST', 'fr_CA', '', 'Accusé de réception de la soumission à {$serverName}', ''), (53, 'SUBMISSION_ACK_CAN_POST', 'mk', 'Потврда за поднесување (не е потребна модерација)', 'Благодариме за вашиот поднесок во {$serverName}', '<p>Драг {$recipientName},</p><p>Ви благодариме за Вашиот поднесок во {$serverName}. Ова е автоматска порака со која Ве информираме дека го добивме Вашиот препринт {$submissionTitle}. Како доверлив автор, не се потребни мерки на претпазливост, Ве покануваме да <a href="{$authorSubmissionUrl}">го објавите Вашиот препринт</a>штом ќе бидете подготвени. </p><p>Ако се одлогиравте, можете повторно да се логирате со Вашето корисничко име{$recipientUsername}.</p><p>Ви благодариме имајќи го во предвид {$serverName} како место за Вашата работа.</p>{$serverSignature}'), (54, 'SUBMISSION_ACK_CAN_POST', 'nb_NO', '', 'Vi har mottatt innleveringen din', ''), (55, 'SUBMISSION_ACK_CAN_POST', 'pt_BR', 'Reconhecimento de Submissão (Sem Moderação Necessária)', 'Obrigado pela sua submissão para {$serverName}', '<p>Prezado(a) {$recipientName},</p><p>Agradecemos pela submissão a(o) {$serverName}. Esta é uma mensagem automática para informar que recebemos o preprint {$submissionTitle}. Como um autor confiado, nenhuma moderação é exigida, então lhe convidamos para <a href="{$authorSubmissionUrl}">postar seu preprint</a> assim que puder.</p><p>Se você fez logoff do sistema, é possível ligar novamente com o nome de usuário {$recipientUsername}.</p><p>Agradecemos por considerar {$serverName} como um veículo para seu trabalho.</p>{$serverSignature}'), (56, 'SUBMISSION_ACK_CAN_POST', 'en', 'Submission Acknowledgement (No Moderation Required)', 'Thank you for your submission to {$serverName}', '<p>Dear {$recipientName},</p><p>Thank you for your submission to {$serverName}. This is an automated message to let you know that we have received your preprint, {$submissionTitle}. As a trusted author, no moderation is required, so we invite you to <a href="{$authorSubmissionUrl}">post your preprint</a> as soon as you are ready.</p><p>If you have been logged out, you can login again with the username {$recipientUsername}.</p><p>Thank you for considering {$serverName} as a venue for your work.</p>{$serverSignature}'), (57, 'SUBMISSION_ACK_NOT_USER', 'es', 'Confirmación del envío (otros autores/as)', 'Acuse de recibo del envío', 'Hola,<br />\n<br />\n{$submitterName} ha enviado el manuscrito "{$submissionTitle}" a {$serverName}. <br />\n<br />\nSi tiene cualquier pregunta no dude en contactarme. Le agradecemos que haya elegido esta revista para dar a conocer su obra.<br />\n<br />\n{$serverSignature}'), (58, 'SUBMISSION_ACK_NOT_USER', 'fi', 'Käsikirjoituksen vastaanottaminen (muut kirjoittajat)', 'Käsikirjoituksesi on vastaanotettu', 'Hei,<br />\n<br />\n{$submitterName} on lähettänyt julkaisuumme {$serverName} käsikirjoituksen "{$submissionTitle}".<br />\n<br />\nJos teillä on kysyttävää, otattehan yhteyttä minuun. Kiitos, että valitsitte tämän julkaisun työllenne.<br />\n<br />\n{$serverSignature}'), (59, 'SUBMISSION_ACK_NOT_USER', 'fr_CA', 'Confirmation de soumission (autres auteur-es)', 'Accusé de réception de la soumission', 'Bonjour,<br />\n<br />\nLe manuscrit intitulé , « {$submissionTitle} » , a été soumis par {$submitterName} à {$serverName}.<br />\n<br />\nSi vous avez des questions, n''hésitez pas à communiquer avec nous. Nous vous remercions d''avoir pensé à {$serverName} pour la publication de vos travaux.<br />\n<br />\n{$serverSignature}'), (60, 'SUBMISSION_ACK_NOT_USER', 'mk', 'Потврда за поднесување (Други автори)', 'Потврда за поднесување', '<p>Драг {$recipientName},</p><p>Вие сте назначени како ко-автор на препринтот поднесен во {$serverName}. Поднесувачот,{$submitterName}, ги обезбеди следниве податоци:</p><p>{$submissionTitle}<br>{$authorsWithAffiliation}</p><p>Ако било кој од овие податоци се неточни, или не би сакале да бидат во овој препринт, Ве молиме контактирајте ме.</p><p>Ви благодариме што го имате во предвид овој сервер како место за Вашата работа.</p><p>Топли поздрави,</p>{$serverSignature}'), (61, 'SUBMISSION_ACK_NOT_USER', 'nb_NO', '', 'Bekreftelse på innlevering', '<p>Kjære {$recipientName}</p><p>Du er angitt som medforfatter på et manuskript innsendt til {$serverName}. Innsenderen, {$submitterName}, har oppgitt følgende information:</p><p>{$submissionTitle}<br>{$authorsWithAffiliation}</p><p>Hvis noen av disse opplysningene er feil, eller du ikke ønsker å være angitt som medforfatter på dette manuskript, vær vennlig å kontakte mig.</p><p>Takk for at du vurderer dette tidsskrift til for arbeidet ditt.</p><p>Med vennlig hilsen</p>{$serverSignature}'), (62, 'SUBMISSION_ACK_NOT_USER', 'pt_BR', 'Confirmação de Submissão (Outros Autores)', 'Confirmação da submissão', '<p>Prezado(a) {$recipientName},</p><p>Seu nome foi inserido como co-autor(a) em um preprint submetido em {$serverName}. A pessoa submissora, {$submitterName}, informou os seguintes detalhes::</p><p>{$submissionTitle}<br>{$authorsWithAffiliation}</p><p>Se alguma dessas informações está incorreta, ou você não quer ser nomeado(a) neste preprint, por favor, entre em contato comigo.</p><p>Agradecemos por considerar este servidor como um veículo para seu trabalho.</p><p>Atenciosamente,</p>{$serverSignature}'), (63, 'SUBMISSION_ACK_NOT_USER', 'en', 'Submission Confirmation (Other Authors)', 'Submission Acknowledgement', '<p>Dear {$recipientName},</p><p>You have been named as a co-author on a preprint submitted to {$serverName}. The submitter, {$submitterName}, provided the following details:</p><p>{$submissionTitle}<br>{$authorsWithAffiliation}</p><p>If any of these details are incorrect, or you do not wish to be named on this preprint, please contact me.</p><p>Thank you for considering this server as a venue for your work.</p><p>Kind regards,</p>{$serverSignature}'), (64, 'EDITOR_ASSIGN', 'es', 'Editor/a asignado', '', ''), (65, 'EDITOR_ASSIGN', 'fi', 'Toimittaja osoitettu', '', ''), (66, 'EDITOR_ASSIGN', 'fr_CA', 'Rédacteur-trice assigné', '', ''), (67, 'EDITOR_ASSIGN', 'mk', 'Доделен уредник', 'Доделување модератор', '<p>Драг{$recipientName},</p><p>Следниов препринт ви е доделен Вам да го проследите низ процесот на проверка во вашата улога како модератор.</p><p><a href="{$submissionUrl}">{$submissionTitle}</a><br />{$authors}</p><p><b>Абстракт</b></p>{$submissionAbstract}<p>Ве молиме логирајте се во <a href="{$submissionUrl}">погледнете го препринтот</a>. Користете го Одделот за дискусии за да го контактирате авторот доколку имате било какви прашања.Ве молиме објавете го препринтот кога ќе сметате дека ги исполнува сите барања.</p><p>Ви благодариме однапред.</p><p>Топли поздрави,</p>{$serverSignature}'), (68, 'EDITOR_ASSIGN', 'nb_NO', '', '', ''), (69, 'EDITOR_ASSIGN', 'pt_BR', 'Editor Atribuído', 'Atribuição de moderador', '<p>Prezado(a) {$recipientName},</p><p>O preprint a seguir lhe foi designado com o papel de Moderador para que seja feita sua moderação.</p><p><a href="{$submissionUrl}">{$submissionTitle}</a><br />{$authors}</p><p><b>Resumo</b></p>{$submissionAbstract}<p>Por favor, faça login para <a href="{$submissionUrl}">visualizar o preprint</a>. Use a seção Discussões para entrar em contato com o(a) autor(a) caso tenha alguma dúvida. Por favor, poste o preprint uma vez que estiver cumprindo todos os requisitos.</p><p>Obrigado.</p><p>Atenciosamente,</p>{$serverSignature}'), (70, 'EDITOR_ASSIGN', 'en', 'Editor Assigned', 'You have been assigned as a moderator on a submission to {$serverName}', '<p>Dear {$recipientName},</p><p>The following preprint has been assigned to you to see through the screening process in your role as Moderator.</p><p><a href="{$submissionUrl}">{$submissionTitle}</a><br />{$authors}</p><p><b>Abstract</b></p>{$submissionAbstract}<p>Please login to <a href="{$submissionUrl}">view the preprint</a>. Use the Discussions section to contact the author if you have any questions. Please post the preprint once you are satisfied that it meets all requirements.</p><p>Thank you in advance.</p><p>Kind regards,</p>{$serverSignature}'), (71, 'EDITOR_DECISION_ACCEPT', 'es', 'Envío aceptado', '', ''), (72, 'EDITOR_DECISION_ACCEPT', 'fi', 'Käsikirjoitus hyväksytty', '', ''), (73, 'EDITOR_DECISION_ACCEPT', 'fr_CA', 'Soumission acceptée', '', ''), (74, 'EDITOR_DECISION_ACCEPT', 'mk', 'Поднесокот е прифатен', 'Одлука на модераторот', '<p>Драг {$recipientName},</p><p>Радосни сме да Ве информираме дека модераторот одлучи да го прифати Вашиот поднесок во{$serverName}. Вашиот поднесок, {$submissionTitle}, ги исполнува сите барања за предпечатење објавени во{$serverName} и Ви благодариме што го одбравте нашиот сервер како место за Вашата работа.</p><p>За било какви прашања, Ве молиме контактирајте ме од Вашиот<a href="{$authorSubmissionUrl}">работна табла за поднесоци</a>.</p><p>Топли поздрави,</p>{$signature}'), (75, 'EDITOR_DECISION_ACCEPT', 'nb_NO', '', '', ''), (76, 'EDITOR_DECISION_ACCEPT', 'pt_BR', 'Submissão Aceita', 'Decisão do moderador', '<p>Prezado(a) {$recipientName},</p><p>Estou contente em lhe informar que um(a) moderador(a) decidiu aceitar seu preprint em {$serverName}. Nós achamos que sua submissão, {$submissionTitle}, se enquadra em todos os requerimentos para preprints postados em {$serverName} e agradecemos por escolher nosso servidor como um veículo para seu trabalho.</p><p>Caso tenha alguma dúvida, por favor, entre em contato comigo pelo seu <a href="{$authorSubmissionUrl}">painel da submissão</a>.</p><p>Atenciosamente,</p>{$signature}'), (77, 'EDITOR_DECISION_ACCEPT', 'en', 'Submission Accepted', 'Your submission has passed moderation at {$serverName}', '<p>Dear {$recipientName},</p><p>I am pleased to inform you that a moderator has decided to accept your preprint at {$serverName}. We found your submission, {$submissionTitle}, to meet the requirements for preprints posted to {$serverName} and thank you for choosing our server as a venue for your work.</p><p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p><p>Kind regards,</p>{$signature}'), (78, 'EDITOR_DECISION_INITIAL_DECLINE', 'es', 'Envío rechazado (antes de revisión)', 'Su envío ha sido rechazado', '<p>Estimado/a {$recipientName},</p><p>Lamento informarlo de que, tras la revisión de su artículo, {$submissionTitle}, el editor/a ha considerado que no cumple los requisitos de publicación en {$serverName}.</p><p>Le deseo mucha suerte si decide enviarlo a otro sitio.</p><p>Saludos cordiales,</p>{$signature}'), (79, 'EDITOR_DECISION_INITIAL_DECLINE', 'fi', 'Käsikirjoitus hylätty (ennen arviointia)', 'Toimittajan päätös', '\n Hyvä {$authors},<br />\n<br />\nOlemme tehneet päätöksen julkaisuun {$serverName} lähettämäänne käsikirjoitusta "{$submissionTitle}" koskien.<br />\n<br />\nPäätöksemme on: Käsikirjoitus on hylätty'), (80, 'EDITOR_DECISION_INITIAL_DECLINE', 'fr_CA', 'Soumission refusée avant évaluation', 'Décision du rédacteur', '<p>{$recipientName},</p><p>Nous avons le regret de vous informer qu''après avoir évaluer votre manuscrit, {$submissionTitle}, le-la rédacteur-trice en a conclue qu''il ne rencontre pas les exigences nécessaires pour être publier dans {$serverName}.</p><p>Cordialement,</p>{$signature}'), (81, 'EDITOR_DECISION_INITIAL_DECLINE', 'mk', 'Подесокот е одбиен', 'Вашиот поднесок е одбиен', '<p>Почитуван {$recipientName},</p><p>Жал ми е што ве известувам дека, откако го прегледа вашиот поднесок, "{$submissionTitle}“, уредникот откри дека тој не ги исполнува нашите барања за објавување во {$serverName}.</p><p>Ви посакувам успех ако размислувате да ја испратите вашата работа на друго место.</p><p>Со почит,</p>{$signature}'), (82, 'EDITOR_DECISION_INITIAL_DECLINE', 'nb_NO', '', 'Redaktørens beslutning', '\n {$authors}:<br />\n<br />\nVi har tatt en beslutning angående innleveringen din, «{$submissionTitle}», som du sendte inn til {$serverName}.<br />\n<br />\nVår beslutning er: Manuskriptet avvises'), (83, 'EDITOR_DECISION_INITIAL_DECLINE', 'pt_BR', 'Submissão recusada', 'Sua submissão foi recusada', '<p>Prezado(a) {$recipientName},</p><p>Lamento informar que, após analisar sua submissão, "{$submissionTitle}", o editor verificou que ela não atende aos nossos requisitos para publicação em {$serverName}.</p><p>Desejo sucesso se você considerar enviar seu trabalho para outro lugar.</p><p>Atenciosamente,</p>{$signature}'), (84, 'EDITOR_DECISION_INITIAL_DECLINE', 'en', 'Submission Declined', 'Your submission has been declined', '<p>Dear {$recipientName},</p><p>I’m sorry to inform you that, after reviewing your submission, "{$submissionTitle}", the editor has found that it does not meet our requirements for publication in {$serverName}.</p><p>I wish you success if you consider submitting your work elsewhere.</p><p>Kind regards,</p>{$signature}'), (85, 'EDITOR_DECISION_REVERT_INITIAL_DECLINE', 'es', 'Restaurar el envío rechazado sin revisión', 'Hemos revertido la decisión de rechazar su envío', '<p>Estimado/a {$recipientName},</p>\n<p>La decisión de rechazar su envío, {$submissionTitle}, se ha revertido. \nUn editor/a estudiará su propuesta antes de decidir si la rechaza \no la envía a revisión.</p>\n<p>A veces se registra accidentalmente en nuestro sistema la decisión de rechazar un envío\ny esta acción debe ser revertida. Le pedimos disculpas por la confusión que esto le haya podido causar.</p>\n<p>Nos pondremos en contacto con usted si necesitamos más ayuda.</p>\n<p>Si tiene cualquier pregunta puede contactarnos desde el <a href="{$authorSubmissionUrl}">panel de control del envío</a>.</p>\n<p>Saludos cordiales,</p>\n<p>{$signature}</p>\n'), (86, 'EDITOR_DECISION_REVERT_INITIAL_DECLINE', 'fi', 'Palauta ennen arviointia hylätty käsikirjoitus', 'Olemme kumonneet päätöksen hylätä käsikirjoituksesi', '<p>Hyvä {$recipientName},</p>\n<p>Päätös hylätä käskirjoituksesi, "{$submissionTitle}", on kumottu. \nToimittaja käy uudelleen läpi käsikirjoituksesi ennen kuin päättää joko hylätä \nkäsikirjoituksen tai lähettää sen arviointiin.</p>\n<p>Silloin tällöin järjestelmäämmee kirjataan vahingossa hylkäyspäätös \nja se pitää kumota. Pahoittelen aihettamaamme mahdollista hämmennystä.</p>\n<p>Otamme yhteyttä, jos tarvitsemme apuasi.</p>\n<p>Jos sinulla on jotain kysyttävää, ota yhteyttä minuun <a href="{$authorSubmissionUrl}">aloittamalla uusi keskustelu julkaisumme sivustolla</a>.</p>\n<p>Ystävällisin terveisin,</p>\n<p>{$signature}</p>\n'), (87, 'EDITOR_DECISION_REVERT_INITIAL_DECLINE', 'fr_CA', 'Rétablir une soumission refusée sans évaluation', 'Nous avons renversé la décision de rejeter votre soumission', '<p>{$recipientName},</p>\n<p>La décision de rejeter votre soumission, {$submissionTitle}, a été renversée. Un-e modérateur-trice évaluera votre soumission dans les détails afin de décider si votre soumission sera rejetée ou pourra être envoyée en évaluation.</p>\n<p>Si vous avez des questions, vous pouvez nous contacter sur votre <a href="{$authorSubmissionUrl}">tableau de bord de soumissions</a>.</p>\n<p>Cordialement,</p>\n<p>{$signature}</p>\n'), (88, 'EDITOR_DECISION_REVERT_INITIAL_DECLINE', 'mk', 'Враќање по одбивањето на поднесокот без рецензија', 'Ја сменивме одлуката да го одбиеме вашето поднесување', '<p>Драг {$recipientName},</p>\n<p>Одлуката да се одбие Вашиот поднесок, {$submissionTitle}, е поништена. \nМодераторот ќе го разгледа вашиот поднесок пред да одлучи дали да го одбие\n или објави поднесокот.</p>\n<p>Понекогаш, одлуката да се одбие поднесокот ќе биде забележана случајно во\n нашиот систем и мора да биде поништена. Се извинуваме за било каква забуна.</p>\n<p>Ќе Ве контактираме ако има потреба од било каква натамошна помош.</p>\n<p>Ако имате било какви прашања, Ве молиме контактирајте ме од Вашиот <a href="{$authorSubmissionUrl}">работна табла за поднесоци</a>.</p>\n<p>Топли поздрави,</p>\n<p>{$signature}</p>\n'), (89, 'EDITOR_DECISION_REVERT_INITIAL_DECLINE', 'nb_NO', '', '', '<p>Kjære {$recipientName},</p> \n<p>Beslutningen om å avvise din innlevering, {$submissionTitle}, har blitt omgjort. En redaktør vil se nærmere på din innlevering før han eller hun bestemmer om innleveringen skal avslås eller sendes til fagfellevurdering.</p> \n<p>Av og til blir en beslutning om å avslå en innlevering registrert ved en feil i vårt system og må rettes opp. Jeg beklager for eventuell forvirring dette kan ha forårsaket.</p> \n<p>Vi vil kontakte deg hvis vi trenger ytterligere assistanse.</p> \n<p>Hvis du har noen spørsmål, vennligst kontakt meg via <a href="{$authorSubmissionUrl}">innleveringsdashboardet</a>.</p>\n<p>Med vennlig hilsen,</p>\n<p>{$signature}</p>\n'), (90, 'EDITOR_DECISION_REVERT_INITIAL_DECLINE', 'pt_BR', 'Reintegrar submissão recusada sem Avaliação', 'Revertemos a decisão de rejeitar sua submissão', '<p>Prezado(a) {$recipientName},</p>\n<p>A decisão de recusar sua submissão, {$submissionTitle}, foi revertida.\nUm moderador examinará mais detalhadamente sua submissão antes de decidir se deve recusar\nou postar a submissão.</p>\n<p>Ocasionalmente, uma decisão de recusar uma submissão será acidentalmente registrada em\nnosso sistema e deve ser revertida. Peço desculpas por qualquer confusão que isso possa ter causado.</p>\n<p>Entraremos em contato se precisarmos de mais assistência.</p>\n<p>Se você tiver alguma dúvida, entre em contato comigo em seu <a href="{$authorSubmissionUrl}">painel de submissão</a>.</p>\n<p>Atenciosamente,</p>\n<p>{$assinatura}</p>\n'), (91, 'EDITOR_DECISION_REVERT_INITIAL_DECLINE', 'en', 'Reinstate Submission Declined Without Review', 'We have reversed the decision to decline your submission', '<p>Dear {$recipientName},</p>\n<p>The decision to decline your submission, {$submissionTitle}, has been reversed. \nA moderator will look further at your submission before deciding whether to decline \nor post the submission.</p>\n<p>Occasionally, a decision to decline a submission will be recorded accidentally in \nour system and must be reverted. I apologize for any confusion this may have caused.</p>\n<p>We will contact you if we need any further assistance.</p>\n<p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p>\n<p>Kind regards,</p>\n<p>{$signature}</p>\n'), (92, 'EDITOR_DECISION_NOTIFY_OTHER_AUTHORS', 'es', 'Notificar a los otros autores/as', 'Actualización acerca de su envío', '<p>El siguiente correo electrónico fue enviado a {$submittingAuthorName} desde {$serverName} en relación con {$submissionTitle}.</p>\n<p>El motivo por el que recibe una copia de esta notificación es porque está identificado como autor/a de este envío. Las instrucciones que figuran en el siguiente mensaje se dirigen al autor/a principal del envío, {$submittingAuthorName}, por lo que no se requiere ninguna acción suya en este momento.</p>\n\n{$messageToSubmittingAuthor}'), (93, 'EDITOR_DECISION_NOTIFY_OTHER_AUTHORS', 'fi', 'Ilmoita muille kirjoittajille', 'Käsikirjoitustasi koskeva päivitys', '<p>Seuraava sähköposti on lähetetty käsikirjoituksen lähettäjälle {$submittingAuthorName} julkaisusta {$serverName} koskien käsikirjoitusta "{$submissionTitle}".</p>\n<p>Saat kopion tästä ilmoituksesta, joska sinut on määritelty käsikirjoituksen kirjoittajaksi. Kaikki alla olevat ohjeet on tarkoitettu käsikirjoituksen lähettäneelle kirjoittajalle,{$submittingAuthorName}, eikä sinulta odoteta mitään toimia tässä vaiheessa.</p>\n\n{$messageToSubmittingAuthor}'), (94, 'EDITOR_DECISION_NOTIFY_OTHER_AUTHORS', 'fr_CA', 'Envoyer une notification aux autres auteur-es', 'Mise à jour concernant votre soumission', '<p>Ce courriel a été envoyé à {$submittingAuthorName} par {$serverName} concernant {$submissionTitle}.</p>\n<p>Vous recevez une copie de cet avis car vous êtes identifié comme auteur-e de cette soumission. Toutes les instructions dans le message ci-dessous sont à l''intention de l''auteur-e de correspondance, {$submittingAuthorName}. </p><p>Aucune action n''est attendue de votre part.</p>\n\n{$messageToSubmittingAuthor}'), (95, 'EDITOR_DECISION_NOTIFY_OTHER_AUTHORS', 'mk', 'Известете ги другите автори', 'Обновување на вашиот поднесок', '<p>Следната е-пошта е испратена до {$submittingAuthorName} од {$serverName} во врска со „{$submissionTitle}“.</p>\n<p>Добивате копија од ова известување бидејќи сте идентификувани како автор на поднесокот. Сите инструкции во пораката подолу се наменети за авторот што поднесува, {$submittingAuthorName}, и во моментов не се бара никаква акција од вас.</p>\n\n{$messageToSubmittingAuthor}'), (96, 'EDITOR_DECISION_NOTIFY_OTHER_AUTHORS', 'nb_NO', '', 'En oppdatering angående din innlevering', '<p>Følgende e-post ble sendt til {$submittingAuthorName} fra {$journalName} angående {$submissionTitle}.</p>\n<p>Du mottar en kopi fordi du er blitt oppgitt som forfatter av denne innleveringen. Instruksjonene i e-posten er tiltenkt korresponderende forfatter, {$submittingAuthorName}, og du trenger ikke foreta deg noe på nåværende tidspunkt.</p>\n\n{$messageToSubmittingAuthor}'), (97, 'EDITOR_DECISION_NOTIFY_OTHER_AUTHORS', 'pt_BR', 'Notificar outros autores', 'Uma atualização sobre sua submissão', '<p>O seguinte e-mail foi enviado para {$submittingAuthorName} de {$serverName} sobre "{$submissionTitle}".</p>\n<p>Você está recebendo uma cópia desta notificação porque foi identificado como autor da submissão. Todas as instruções na mensagem abaixo são destinadas ao autor responsável pela submissão, {$submittingAuthorName}, e nenhuma ação é necessária de sua parte neste momento.</p>\n\n{$messageToSubmittingAuthor}'), (98, 'EDITOR_DECISION_NOTIFY_OTHER_AUTHORS', 'en', 'Notify Other Authors', 'An update regarding your submission', '<p>The following email was sent to {$submittingAuthorName} from {$serverName} regarding "{$submissionTitle}".</p>\n<p>You are receiving a copy of this notification because you are identified as an author of the submission. Any instructions in the message below are intended for the submitting author, {$submittingAuthorName}, and no action is required of you at this time.</p>\n\n{$messageToSubmittingAuthor}'), (99, 'STATISTICS_REPORT_NOTIFICATION', 'es', 'Notificación de informe de estadísticas', '', ''), (100, 'STATISTICS_REPORT_NOTIFICATION', 'fi', 'Ilmoitus toimitustyötä koskevasta raportista', '', ''), (101, 'STATISTICS_REPORT_NOTIFICATION', 'fr_CA', 'Notification sur les rapports statistiques', '', ''), (102, 'STATISTICS_REPORT_NOTIFICATION', 'mk', 'Известување за извештај за статистика', 'Активност на серверот на отпечатоци за {$month}, {$year}', '\n{$recipientName}, <br />\n<br />\nВашиот здравствен извештај за отпечатоци за {$month}, {$year} е достапен сега. Вашите клучни статистички податоци за овој месец се подолу.<br />\n<ul>\n <li>Нови поднесоци овој месец: {$newSubmissions}</li>\n <li>Одбиени поднесоци овој месец: {$declinedSubmissions}</li>\n <li>Прифатени поднесоци овој месец: {$acceptedSubmissions}</li>\n <li>Вкупно поднесоци на системот: {$totalSubmissions}</li>\n</ul>\nНајавете се на серверот со отпечатоци за да ги прегледате подеталните <a href="{$editorialStatsLink}">трендови</a> и <a href="{$publicationStatsLink}">објавените статистички податоци за отпечатоците</a>. Прикачена е целосна копија на трендовите за овој месец.<br />\n<br />\nСрдечен поздрав,<br />\n{$serverSignature}'), (103, 'STATISTICS_REPORT_NOTIFICATION', 'nb_NO', '', '', ''), (104, 'STATISTICS_REPORT_NOTIFICATION', 'pt_BR', 'Notificação do Relatório de Estatísticas', 'Atividade do servidor de pré-impressão para {$mês}, {$ano}', '\n{$recipientName}, <br />\n<br />\nSeu relatório dos preprints de {$month}, {$year} está disponível agora. Suas estatísticas principais para este mês estão abaixo.<br />\n<ul>\n <li>Novas submissões no mês: {$newSubmissions}</li>\n <li>Submissões rejeitadas no mês: {$declinedSubmissions}</li>\n <li>Submissões postadas no mês: {$acceptedSubmissions}</li>\n <li>Total de submissões no sistema: {$totalSubmissions}</li>\n</ul>\nFaça login no servidor de preprints para ver mais detalhes <a href="{$editorialStatsLink}">tendências</a> e <a href="{$publicationStatsLink}">estatística de preprints postados</a>. Uma cópia completa das maiores tendências deste mês está anexada.<br />\n<br />\nAtenciosamente,<br />\n{$serverSignature}'), (105, 'STATISTICS_REPORT_NOTIFICATION', 'en', 'Statistics Report Notification', 'Preprint Server activity for {$month}, {$year}', '\n{$recipientName}, <br />\n<br />\nYour preprint health report for {$month}, {$year} is now available. Your key stats for this month are below.<br />\n<ul>\n <li>New submissions this month: {$newSubmissions}</li>\n <li>Declined submissions this month: {$declinedSubmissions}</li>\n <li>Accepted submissions this month: {$acceptedSubmissions}</li>\n <li>Total submissions in the system: {$totalSubmissions}</li>\n</ul>\nLogin to the the preprint server to view more detailed <a href="{$editorialStatsLink}">trends</a> and <a href="{$publicationStatsLink}">posted preprint stats</a>. A full copy of this month''s trends is attached.<br />\n<br />\nSincerely,<br />\n{$serverSignature}'), (106, 'ANNOUNCEMENT', 'es', 'Nuevo aviso', '', ''), (107, 'ANNOUNCEMENT', 'fi', 'Uusi julkinen ilmoitus', '', ''), (108, 'ANNOUNCEMENT', 'fr_CA', 'Nouvelle annonce', '', ''), (109, 'ANNOUNCEMENT', 'mk', 'Ново соопштение', '{$announcementTitle}', '<b>{$announcementTitle}</b><br />\n<br />\n{$announcementSummary}<br />\n<br />\nПосетете ја нашата веб-страна за да го прочитате <a href="{$announcementUrl}">целосното известување</a>.'), (110, 'ANNOUNCEMENT', 'nb_NO', '', '', ''), (111, 'ANNOUNCEMENT', 'pt_BR', 'Novo Comunicado', '{$announcementTitle}', '<b>{$announcementTitle}</b><br />\n<br />\n{$announcementSummary}<br />\n<br />\nVisite nosso site para ler o <a href="{$announcementUrl}">anúncio completo</a>.'), (112, 'ANNOUNCEMENT', 'en', 'New Announcement', '{$announcementTitle}', '<b>{$announcementTitle}</b><br />\n<br />\n{$announcementSummary}<br />\n<br />\nVisit our website to read the <a href="{$announcementUrl}">full announcement</a>.'), (113, 'DISCUSSION_NOTIFICATION_PRODUCTION', 'es', 'Discusión (producción)', 'Mensaje sobre {$serverName}', 'Introduzca su mensaje.'), (114, 'DISCUSSION_NOTIFICATION_PRODUCTION', 'fi', 'Keskustelu (tuotanto)', 'Viesti julkaisua {$serverName} koskien', 'Kirjoita viesti.'), (115, 'DISCUSSION_NOTIFICATION_PRODUCTION', 'fr_CA', 'Discussion (production)', 'Un message à propos de la revue {$serverName}', 'Prière de saisir votre message.'), (116, 'DISCUSSION_NOTIFICATION_PRODUCTION', 'mk', 'Дискусија (Обработка)', 'Порака во врска со {$serverName}', 'Ве молиме внесете ја вашата порака.'), (117, 'DISCUSSION_NOTIFICATION_PRODUCTION', 'nb_NO', '', 'En beskjed angående {$serverName}', 'Skriv inn beskjeden din her.'), (118, 'DISCUSSION_NOTIFICATION_PRODUCTION', 'pt_BR', 'Discussão da Editoração', 'Uma mensagem sobre {$serverName}', 'Insira a sua mensagem por gentileza.'), (119, 'DISCUSSION_NOTIFICATION_PRODUCTION', 'en', 'Discussion (Production)', 'A message regarding {$serverName}', 'Please enter your message.'), (120, 'EDITOR_ASSIGN_PRODUCTION', 'es', 'Editor/a asignado', '', ''), (121, 'EDITOR_ASSIGN_PRODUCTION', 'fi', 'Toimittaja osoitettu', '', ''), (122, 'EDITOR_ASSIGN_PRODUCTION', 'fr_CA', 'Rédacteur-trice assigné', '', ''); INSERT INTO `email_templates_default_data` VALUES (123, 'EDITOR_ASSIGN_PRODUCTION', 'mk', 'Доделен уредник', 'Доделување модератор', '<p>Драг{$recipientName},</p><p>Следниов препринт ви е доделен Вам да го проследите низ процесот на проверка во вашата улога како модератор.</p><p><a href="{$submissionUrl}">{$submissionTitle}</a><br />{$authors}</p><p><b>Абстракт</b></p>{$submissionAbstract}<p>Ве молиме логирајте се во <a href="{$submissionUrl}">погледнете го препринтот</a>. Користете го Одделот за дискусии за да го контактирате авторот доколку имате било какви прашања.Ве молиме објавете го препринтот кога ќе сметате дека ги исполнува сите барања.</p><p>Ви благодариме однапред.</p><p>Топли поздрави,</p>{$serverSignature}'), (124, 'EDITOR_ASSIGN_PRODUCTION', 'nb_NO', '', '', ''), (125, 'EDITOR_ASSIGN_PRODUCTION', 'pt_BR', 'Editor Atribuído', 'Atribuição de moderador', '<p>Prezado(a) {$recipientName},</p><p>O preprint a seguir lhe foi designado com o papel de Moderador para que seja feita sua moderação.</p><p><a href="{$submissionUrl}">{$submissionTitle}</a><br />{$authors}</p><p><b>Resumo</b></p>{$submissionAbstract}<p>Por favor, faça login para <a href="{$submissionUrl}">visualizar o preprint</a>. Use a seção Discussões para entrar em contato com o(a) autor(a) caso tenha alguma dúvida. Por favor, poste o preprint uma vez que estiver cumprindo todos os requisitos.</p><p>Obrigado.</p><p>Atenciosamente,</p>{$serverSignature}'), (126, 'EDITOR_ASSIGN_PRODUCTION', 'en', 'Editor Assigned', 'You have been assigned as a moderator on a submission to {$serverName}', '<p>Dear {$recipientName},</p><p>The following preprint has been assigned to you to see through the screening process in your role as Moderator.</p><p><a href="{$submissionUrl}">{$submissionTitle}</a><br />{$authors}</p><p><b>Abstract</b></p>{$submissionAbstract}<p>Please login to <a href="{$submissionUrl}">view the preprint</a>. Use the Discussions section to contact the author if you have any questions. Please post the preprint once you are satisfied that it meets all requirements.</p><p>Thank you in advance.</p><p>Kind regards,</p>{$serverSignature}'), (127, 'VERSION_CREATED', 'es', 'Versión creada', 'Se ha creado una versión nueva de {$submissionTitle}', ''), (128, 'VERSION_CREATED', 'fi', 'Uusi versio luotu', '', ''), (129, 'VERSION_CREATED', 'fr_CA', 'Version créée', 'Une nouvelle version a été créée pour {$submissionTitle}', '<p>{$recipientName}, </p><p>Ceci est un courriel automatique de <a href="{$serverUrl}">{$serverName}</a> pour vous informer qu''une nouvelle version de votre soumission, {$submissionTitle}, a été créée. Vous pouvez consulter cette version à partir de votre tableau de bord de soumission:</p><p><a href="{$submissionUrl}">{$submissionTitle}</a></p><hr>'), (130, 'VERSION_CREATED', 'mk', 'Создадена верзија', 'Креирана е нова верзија за "{$submissionTitle}"', '<p>Почитуван {$recipientName}, </p><p>Ова е автоматизирана порака за да ве информира дека е создадена нова верзија на вашиот поднесок, "{$submissionTitle}". Оваа верзија може да ја погледнете од контролната табла за поднесување на следната врска:</p><p><a href="{$submissionUrl}">{$submissionTitle}</a></p><hr><p> Ова е автоматска е-пошта испратена од <a href="{$serverUrl}">{$serverName}</a>.</p>'), (131, 'VERSION_CREATED', 'nb_NO', '', 'En ny versjon ble opprettet for {$submissionTitle}', '<p>{$recipientName},</p><p>Dette er en automatisk melding for å informere deg om at en ny versjon av din innlevering, {$submissionTitle}, ble opprettet. Du kan se denne versjonen fra ditt innleveringsdashboard på følgende lenke:</p><p><a href="{$submissionUrl}">{$submissionTitle}</a></p><hr><p>Dette er en automatisk e-post sendt fra <a href="{$serverUrl}">{$serverName}</a>.</p>'), (132, 'VERSION_CREATED', 'pt_BR', 'Versão Criada', 'Uma nova versão foi criada para "{$submissionTitle}"', '<p>Prezado(a) {$recipientName}, </p><p>Esta é uma mensagem automática para informar que uma nova versão da sua submissão "{$submissionTitle}" foi criada. Você pode visualizar esta versão no painel da submissão no seguinte link:</p><p><a href="{$submissionUrl}">"{$submissionTitle}"</a></p><hr><p> Este é um e-mail automático enviado de <a href="{$serverUrl}">{$serverName}</a>.</p>'), (133, 'VERSION_CREATED', 'en', 'Version Created', 'A new version was created for "{$submissionTitle}"', '<p>Dear {$recipientName}, </p><p>This is an automated message to inform you that a new version of your submission, "{$submissionTitle}", was created. You can view this version from your submission dashboard at the following link:</p><p><a href="{$submissionUrl}">"{$submissionTitle}"</a></p><hr><p>This is an automatic email sent from <a href="{$serverUrl}">{$serverName}</a>.</p>'), (134, 'SUBMISSION_SAVED_FOR_LATER', 'es', 'Se guardó el envío para más adelante', 'Continuar su envío a {$serverName}', ''), (135, 'SUBMISSION_SAVED_FOR_LATER', 'fi', 'Käsikirjoitus tallennettu myöhempää täydentämistä varten', 'Jatka käsikirjoituksesi lähettämistä {$serverName} -lehteen', '<p>Hei {$recipientName},</p><p>käsikirjoituksesi tiedot on tallennettu järjestelmäämme, mutta ei ole vielä lähetetty toimitusprosessiin. Voit palata lähettämään käsikirjoituksesi milloin tahansa alla olevalla linkillä.</p><p><a href="{$submissionWizardUrl}">{$authorsShort} — {$submissionTitle}</a></p><hr><p>Tämä on automaattinen sähköposti <a href="{$serverUrl}">{$serverName}</a> -lehdestä.</p>'), (136, 'SUBMISSION_SAVED_FOR_LATER', 'fr_CA', 'Soumission incomplète sauvegardée', 'Reprendre votre soumission à {$serverName}', '<p>{$recipientName},</p><p>Les détails de votre soumission ont été enregistrés, mais vous ne l''avez pas encore finalisée. Vous pouvez le faire en cliquant sur le lien ci-dessous: </p><p><a href="{$submissionWizardUrl}">{$authorsShort} — {$submissionTitle}</a></p><hr><p>Ceci est un message automatique de <a href="{$serverUrl}">{$serverName}</a>.</p>'), (137, 'SUBMISSION_SAVED_FOR_LATER', 'mk', 'Поднесокот е зачуван за подоцна', 'Продолжи со поднесување на {$serverName}', '<p>Почитуван {$recipientName},</p><p>Деталите за вашето поднесување се зачувани во нашиот систем, но сè уште не е поднесен на разгледување. Може да се вратите за да го комплетирате вашето поднесување во секое време, следејќи ја врската подолу.</p><p><a href="{$submissionWizardUrl}">{$authorsShort} — "{$submissionTitle}"</a></p ><hr><p>Ова е автоматизирана е-пошта од <a href="{$serverUrl}">{$serverName}</a>.</p>'), (138, 'SUBMISSION_SAVED_FOR_LATER', 'nb_NO', '', '', ''), (139, 'SUBMISSION_SAVED_FOR_LATER', 'pt_BR', 'Submissão salva para mais tarde', 'Retome sua submissão para {$serverName}', '<p>Prezado(a) {$recipientName},</p><p>Os detalhes da sua submissão foram salvos em nosso sistema, mas ainda não foram submetidos para consideração. Você pode retornar para concluir sua submissão a qualquer momento seguindo o link abaixo.</p><p><a href="{$submissionWizardUrl}">{$authorsShort} — "{$submissionTitle}"</a></p ><hr><p>Este é um e-mail automático de <a href="{$serverUrl}">{$serverName}</a>.</p>'), (140, 'SUBMISSION_SAVED_FOR_LATER', 'en', 'Submission Saved for Later', 'Resume your submission to {$serverName}', '<p>Dear {$recipientName},</p><p>Your submission details have been saved in our system, but it has not yet been submitted for consideration. You can return to complete your submission at any time by following the link below.</p><p><a href="{$submissionWizardUrl}">{$authorsShort} — "{$submissionTitle}"</a></p><hr><p>This is an automated email from <a href="{$serverUrl}">{$serverName}</a>.</p>'), (141, 'SUBMISSION_NEEDS_EDITOR', 'es', 'El envío necesita un editor/a', 'Un envío nuevo necesita que le asignen un editor/a: {$submissionTitle}', ''), (142, 'SUBMISSION_NEEDS_EDITOR', 'fi', 'Käsikirjoitukselle tarvitaan toimittaja', 'Uudelle käsikirjoitukselle ({$submissionTitle}) täytyy valita toimittaja.', '<p>Hei {$recipientName},</p><p>Lehteen on tarjottu uusi käsikirjoitus, jolle ei ole vielä valittu toimittajaa.</p><p><a href="{$submissionUrl}">{$submissionTitle}</a><br />{$authors}</p><p><b>Abstract</b></p>{$submissionAbstract}<p>Valitse käsikirjoitukselle toimittaja klikkaamalla yllä olevasta linkistä.</p><hr><p>Tämä on automaattinen sähköposti <a href="{$serverUrl}">{$serverName}</a> -lehdestä.</p>'), (143, 'SUBMISSION_NEEDS_EDITOR', 'fr_CA', 'Soumission en attente de rédacteur-trice', 'Un-e rédacteur-trice doit être assigné-e à la nouvelle soumission : {$submissionTitle}', '<p>{$recipientName},</p><p>La soumission suivante a été soumise et aucun-e rédacteur-trice ne lui est assigné-e.</p><p><a href="{$submissionUrl}">{$submissionTitle}</a><br />{$authors}</p><p><b>Abstract</b></p>{$submissionAbstract}<p>S''il vous plait, assignez un-e rédacteur-trice qui sera responsable de la soumission. </p><hr><p>Ceci est un courriel automatique de <a href="{$serverUrl}">{$serverName}</a>.</p>'), (144, 'SUBMISSION_NEEDS_EDITOR', 'mk', 'Потребен е уредник за поднесокот', 'Треба да се назначи уредник за новиот поднесок: "{$submissionTitle}"', '<p>Почитуван {$recipientName},</p><p>Следниот поднесок е испратен и нема доделен уредник.</p><p><a href="{$submissionUrl}">"{$submissionTitle}"</a><br />{$authors}</p><p><b>Апстракт</b></p>{$submissionAbstract}<p>Ве молиме доделете уредник кој ќе биде одговорен за поднесувањето со кликнување на насловот погоре и доделување уредник во делот Учесници.</p><hr><p>Ова е автоматизирана е-пошта од <a href="{$serverUrl}">{$serverName}</a>. </p>'), (145, 'SUBMISSION_NEEDS_EDITOR', 'nb_NO', '', '', ''), (146, 'SUBMISSION_NEEDS_EDITOR', 'pt_BR', 'Editor de Necessidades de Submissão', 'Uma nova submissão precisa que um editor seja designado: "{$submissionTitle}"', '<p>Prezado(a) {$recipientName},</p><p>A submissão a seguir foi enviada e não há editor designado.</p><p><a href="{$submissionUrl}">"{$submissionTitle}"</a><br />{$authors}</p><p><b>Resumo</b></p>{$submissionAbstract}<p>Por favor, designe um editor que será responsável pela submissão clicando no título acima e designando um editor na seção Participantes.</p><hr><p>Este é um e-mail automático de <a href="{$serverUrl}">{$serverName}</a>. </p>'), (147, 'SUBMISSION_NEEDS_EDITOR', 'en', 'Submission Needs Editor', 'A new submission needs an editor to be assigned: "{$submissionTitle}"', '<p>Dear {$recipientName},</p><p>The following submission has been submitted and there is no editor assigned.</p><p><a href="{$submissionUrl}">"{$submissionTitle}"</a><br />{$authors}</p><p><b>Abstract</b></p>{$submissionAbstract}<p>Please assign an editor who will be responsible for the submission by clicking the title above and assigning an editor under the Participants section.</p><hr><p>This is an automated email from <a href="{$serverUrl}">{$serverName}</a>.</p>'), (148, 'CHANGE_EMAIL', 'es', 'Cambiar la dirección de correo electrónico de invitación', '', ''), (149, 'CHANGE_EMAIL', 'fi', '', '', ''), (150, 'CHANGE_EMAIL', 'fr_CA', 'Changer l''adresse courriel d''invitation', '', ''), (151, 'CHANGE_EMAIL', 'mk', 'Променете ја поканата за е-пошта', 'Потврдете го барањето за промена на е-поштата за контакт на сметката', '<p>Почитуван {$recipientName},</p><p>Ја добивате оваа е-порака затоа што некој побарал промена на вашата е-пошта во {$newEmail}.</p><p>Ако сте го направиле ова барање, ве молиме <a href="{$acceptInvitationUrl}">потврдете</a> промената на е-поштата.</p><p>Секогаш можете <a href="{$declineInvitationUrl}">да ја отфрлите </a> промената на оваа е-поштата.</p><p>Ве молиме слободно контактирајте ме со какви било прашања во врска со поднесувањето или процесот на рецензирање.</p><p>Со почит,</p>{$siteContactName}'), (152, 'CHANGE_EMAIL', 'nb_NO', '', '', ''), (153, 'CHANGE_EMAIL', 'pt_BR', 'Convite para alterar endereço de e-mail', 'Confirmar solicitação de alteração de e-mail de contato da conta', '<p>Prezado/a {$recipientName},</p><p>Você está recebendo este e-mail porque alguém solicitou uma alteração do seu e-mail para {$newEmail}.</p><p>Se você fez esta solicitação, <a href="{$acceptInvitationUrl}">confirme</a> a alteração do e-mail.</p><p>Você sempre pode <a href="{$declineInvitationUrl}">rejeitar</a> esta alteração de e-mail.</p><p>Sinta-se à vontade para entrar em contato comigo caso tenha alguma dúvida sobre a submissão ou o processo de avaliação.</p><p>Atenciosamente,</p>{$siteContactName}'), (154, 'CHANGE_EMAIL', 'en', 'Change Email Address Invitation', 'Confirm account contact email change request', '<p>Dear {$recipientName},</p><p>You are receiving this email because someone has requested a change of your email to {$newEmail}.</p><p>If you have made this request please <a href="{$acceptInvitationUrl}">confirm</a> the email change.</p><p>You can always <a href="{$declineInvitationUrl}">reject</a> this email change.</p><p>Please feel free to contact me with any questions about the submission or the review process.</p><p>Kind regards,</p>{$siteContactName}'), (155, 'ORCID_COLLECT_AUTHOR_ID', 'es', 'orcidCollectAuthorId', 'ORCID de envío', 'Estimado/a {$recipientName},\n<br/>\nSe le ha añadido como coautor/a de un artículo para {$serverName}. <br/>\nPara confirmar su autoría, añada su identificador ORCID a este envío mediante el siguiente enlace.<br/>\n<br/>\n<a href="{$authorOrcidUrl}"><img id="orcid-id-logo" src="https://info.orcid.org/wp-content/uploads/2020/12/ORCIDiD_icon16x16.png" width=''16'' height=''16'' alt="ORCID iD icon" style="display: block; margin: 0 .5em 0 0; padding: 0; float: left;"/>Registrar o conectar su identificador ORCID</a><br/>\n<br/>\n<br>\n<a href="{$orcidAboutUrl}">Puede encontrar más información sobre ORCID en {$serverName}</a><br/>\n<br/>\nSi tiene cualquier pregunta no dude en contactarme.<br/>\n<br/>\n{$principalContactSignature}<br/>\n'), (156, 'ORCID_COLLECT_AUTHOR_ID', 'fi', '', 'Käsikirjoituksen ORCID-tunnisteet', 'Arvoisa {$recipientName},<br/>\n<br/>\nTeidät mainitaan yhtenä kirjoittajana käsikirjoituksessa "{$submissionTitle}", joka on lähetetty julkaisuun {$serverName}.<br/>\n<br/>\nVarmistaaksesi tekijyytesi, ole hyvä ja lisää ORCID-tunnisteesi käsikirjoitukseen vierailemalla alla olevassa linkissä ja seuraamalla ohjeita.<br/>\n<br/>\n<a href="{$authorOrcidUrl}"><img id="orcid-id-logo" src="https://orcid.org/sites/default/files/images/orcid_16x16.png" width=''16'' height=''16'' alt="ORCID iD icon" style="display: block; margin: 0 .5em 0 0; padding: 0; float: left;"/>Rekisteröi tai yhdistä ORCID</a><br/>\n<br/>\n<br/>\n<a href="{$orcidAboutUrl}">Lisätietoja ORCID-tunnisteista julkaisussa {$serverName}</a><br/>\n<br/>\nMikäli teillä on jotain kysymyksiä, olkaa yhteydessä.<br/>\n<br/>\n{$principalContactSignature}<br/>\n'), (157, 'ORCID_COLLECT_AUTHOR_ID', 'fr_CA', 'orcidCollectAuthorId', 'Soumission ORCID', '{$recipientName},<br/>\n<br/>\nVous avez été inscrit ou inscrite en tant qu''auteur ou auteure pour un manuscrit soumis à {$serverName}.<br/>\nPour confirmer votre statut d''auteur ou d''auteure, veuillez ajouter votre identifiant ORCID à cette soumission en cliquant sur le lien ci-dessous.<br/>\n<br/>\n<a href="{$authorOrcidUrl}"><img id="orcid-id-logo" src="https://info.orcid.org/wp-content/uploads/2020/12/ORCIDiD_icon16x16.png" width=''16'' height=''16'' alt="icône identifiant ORCID" style="display: block; margin: 0 .5em 0 0; padding: 0; float: left;"/>Se connecter avec votre identifiant ORCID ou s''inscrire</a><br/>\n<br/>\n<br/>\n<a href="{$orcidAboutUrl}">Plus de renseignements sur votre identifiant ORCID dans {$serverName}</a><br/>\n<br/>\nSi vous avez des questions, veuillez communiquer avec nous.<br/>\n<br/>\n{$principalContactSignature}<br/>\n'), (158, 'ORCID_COLLECT_AUTHOR_ID', 'mk', 'Авторски orcidCollectAuthorId', 'Испраќање на ORCID', 'Почитуван {$recipientName},<br/>\n<br/>\nВие сте наведени како автор на поднесен ракопис до {$serverName}.<br/>\nЗа да го потврдите вашето авторство, додадете го вашиот ID на ORCID на овој поднесок со посета на врската дадена подолу. <br/>\n<br/>\n<a href="{$authorOrcidUrl}"><img id="orcid-id-logo" src="https://info.orcid.org/wp-content/uploads/2020/12/ORCIDiD_icon16x16.png" width=''16'' height=''16'' alt="ORCID iD icon" style="display: block; margin: 0 .5em 0 0; padding: 0; float: left;"/>Регистрирај се или поврзете го вашиот ORCID iD </a> <br />\n<br/>\n<br>\n<a href="{$orcidAboutUrl}"> Повеќе информации за ORCID на {$textName} </a> <br/>\n<br/>\nАко имате какви било прашања, контактирајте ме. <br/>\n<br/>\n{$principalContactSignature} <br/>\n'), (159, 'ORCID_COLLECT_AUTHOR_ID', 'nb_NO', '', 'ORCID for innlevering', 'Kjære {$recipientName}, <br />\n<br />\nDu er oppført som forfatter på en manusinnlevering til {$serverName}. <br />\nFor å bekrefte forfatterskapet ditt, vennligst legg til ORCID-ID-en din i denne innleveringen ved å gå til lenken nedenfor. <br />\n<br />\n<a href="{$authorOrcidUrl}"> <img id = "orcid-id-logo" src = "https://orcid.org/sites/default/files/images/orcid_16x16.png" width = ''16 '' height = ''16 ''alt = "ORCID iD icon" style = "display: block; margin: 0 .5em 0 0; padding: 0; float: left;" /> Registrer eller koble ORCID iD </a> <br />\n<br />\n<br />\n<a href="{$orcidAboutUrl}"> Mer informasjon om ORCID på {$serverName} </a> <br />\n<br />\nTa gjerne kontakt hvis du har spørsmål. <br />\n<br />\n{$principalContactSignature} <br />\n'), (160, 'ORCID_COLLECT_AUTHOR_ID', 'pt_BR', 'orcidCollectAuthorId', 'ORCID da submissão', 'Prezado(a) {$recipientName},<br>\n<br>\nVocê foi listada(o) como um coautor(a) em uma submissão de manuscrito "{$submissionTitle}" para {$serverName}.<br/>\nPara confirmar sua autoria, por favor, adicione sua id ORCID a esta submissão, visitando o link fornecido abaixo.<br/>\n<br/>\n<a href="{$authorOrcidUrl}"><img id="orcid-id-logo" src="https://info.orcid.org/wp-content/uploads/2020/12/ORCIDiD_icon16x16.png" width=''16'' height=''16'' alt="ORCID iD icon" style="display: block; margin: 0 .5em 0 0; padding: 0; float: left;"/>Registre ou conecte seu ORCID iD</a><br/>\n<br/>\n<br>\n<a href="{$orcidAboutUrl}">Mais informações sobre o ORCID em {$serverName}</a><br/>\n<br/>\nSe você tiver quaisquer dúvidas, por favor entre em contato comigo.<br/>\n<br/>\n{$principalContactSignature}<br/>\n'), (161, 'ORCID_COLLECT_AUTHOR_ID', 'en', 'orcidCollectAuthorId', 'Submission ORCID', 'Dear {$recipientName},<br/>\n<br/>\nYou have been listed as an author on a manuscript submission to {$serverName}.<br/>\nTo confirm your authorship, please add your ORCID id to this submission by visiting the link provided below.<br/>\n<br/>\n<a href="{$authorOrcidUrl}"><img id="orcid-id-logo" src="https://info.orcid.org/wp-content/uploads/2020/12/ORCIDiD_icon16x16.png" width=''16'' height=''16'' alt="ORCID iD icon" style="display: block; margin: 0 .5em 0 0; padding: 0; float: left;"/>Register or connect your ORCID iD</a><br/>\n<br/>\n<br>\n<a href="{$orcidAboutUrl}">More information about ORCID at {$serverName}</a><br/>\n<br/>\nIf you have any questions, please contact me.<br/>\n<br/>\n{$principalContactSignature}<br/>\n'), (162, 'ORCID_REQUEST_AUTHOR_AUTHORIZATION', 'es', 'orcidRequestAuthorAuthorization', 'Solicitando acceso de registro ORCID', 'Estimado/a {$recipientName},<br>\n<br>\nUsted ha sido incluido como autor en la presentación del manuscrito "{$submissionTitle}" a {$serverName}.\n<br>\n<br>\nPermítanos agregar su identificación ORCID a este envío y también agregar el mismo a su perfil ORCID en la publicación.<br>\nVisite el enlace al sitio web oficial de ORCID, inicie sesión con su perfil y autorice el acceso siguiendo las instrucciones.<br>\n<a href="{$authorOrcidUrl}"><img id="orcid-id-logo" src="https://info.orcid.org/wp-content/uploads/2020/12/ORCIDiD_icon16x16.png" width=''16'' height=''16'' alt="ORCID iD icon" style="display: block; margin: 0 .5em 0 0; padding: 0; float: left;"/>Registre o conecte su ORCID iD</a><br/>\n<br>\n<br>\n<a href="{$orcidAboutUrl}">Más acerca de ORCID en{$serverName}</a><br/>\n<br>\nSi tiene alguna pregunta, por favor póngase en contacto conmigo.<br>\n<br>\n{$principalContactSignature}<br>\n'), (163, 'ORCID_REQUEST_AUTHOR_AUTHORIZATION', 'fi', '', 'ORCID-pääsyn pyyntö', 'Dear {$recipientName},<br>\n<br/>\nTeidät mainitaan yhtenä kirjoittajana käsikirjoituksessa "{$submissionTitle}", joka on lähetetty julkaisuun {$serverName}.<br/>\n<br/>\nVarmistaaksesi tekijyytesi, ole hyvä ja lisää ORCID-tunnisteesi käsikirjoitukseen vierailemalla alla olevassa linkissä ja seuraamalla ohjeita. Artikkelin julkaisun jälkeen sitä koskevat tiedot voidaan liittää ORCID-tiliisi, jos olet antanut siihen luvan.<br/>\n<br/>\n<a href="{$authorOrcidUrl}"><img id="orcid-id-logo" src="https://orcid.org/sites/default/files/images/orcid_16x16.png" width=''16'' height=''16'' alt="ORCID iD icon" style="display: block; margin: 0 .5em 0 0; padding: 0; float: left;"/>Rekisteröi tai yhdistä ORCID</a><br/>\n<br/>\n<br/>\n<a href="{$orcidAboutUrl}">Lisätietoja ORCID-tunnisteista julkaisussa {$serverName}</a><br/>\n<br/>\nMikäli teillä on jotain kysymyksiä, olkaa yhteydessä.<br/>\n<br/>\n{$principalContactSignature}<br/>\n'), (164, 'ORCID_REQUEST_AUTHOR_AUTHORIZATION', 'fr_CA', 'orcidRequestAuthorAuthorization', 'Demande d''accès au dossier ORCID', '{$recipientName},<br/>\n<br/>\nVous avez été inscrit ou inscrite en tant qu''auteur ou auteure pour le manuscrit « {$submissionTitle} » soumis à {$serverName}.\n<br/>\n<br/>\nVeuillez nous autoriser à ajouter votre identifiant ORCID à cette soumission et à ajouter également la soumission à votre dossier ORCID suite à sa publication.\n<br/>\nSuivre le lien vers le site officiel ORCID, vous connecter avec votre profil et autoriser l''accès en suivant les instructions.<br/>\n<a href="{$authorOrcidUrl}"><img id="orcid-id-logo" src="https://info.orcid.org/wp-content/uploads/2020/12/ORCIDiD_icon16x16.png" width=''16'' height=''16'' alt="icône identifiant ORCID" style="display: block; margin: 0 .5em 0 0; padding: 0; float: left;"/>Se connecter avec votre identifiant ORCID ou s''inscrire</a><br/>\n<br/>\n<br/>\n<a href="{$orcidAboutUrl}">Plus de renseignements sur votre identifiant ORCID dans {$serverName}</a><br/>\n<br/>\nSi vous avez des questions, veuillez communiquer avec nous.<br/>\n<br/>\n{$principalContactSignature}<br/>\n'), (165, 'ORCID_REQUEST_AUTHOR_AUTHORIZATION', 'mk', 'Авторизација orcidRequestAuthorAuthorization', 'Барање пристап до запис ORCID', 'Почитуван {$ authorName}, <br>\n<br>\nВие сте наведени како автор на поднесувањето на ракописот „{$submissionTitle}“ до {$serverName}.\n<br>\n<br>\nВе молиме, дозволете ни да го додадеме вашиот ID на ORCID на овој поднесок и да го додадеме поднесувањето на вашиот ORCID профил на објавувањето. <br>\nПосетете ја врската до официјалната веб-страница на ORCID, најавете се со вашиот профил и овластете го пристапот следејќи ги упатствата. <br>\n<a href="{$authorOrcidUrl}"><img id="orcid-id-logo" src="https://info.orcid.org/sites/default/files/images/orcid_wp-content/uploads/2020/12/ORCIDiD_icon16x16.png" width=''16'' height=''16'' alt="ORCID iD icon" style="display: block; margin: 0 .5em 0 0; padding: 0; float: left;"/>Регистрирај се или Поврзи го ORCID iD </a> <br />\n<br>\n<br>\n<a href="{$orcidAboutUrl}"> Повеќе за ORCID на {$textName} </a> <br/>\n<br>\nАко имате какви било прашања, контактирајте ме. <br>\n<br>\n{$principalContactSignature} <br>\n'), (166, 'ORCID_REQUEST_AUTHOR_AUTHORIZATION', 'nb_NO', '', 'Forespørsel om tilgang til ORCID', 'Kjære {$recipientName}, <br />\n<br />\nDu er oppført som forfatter på manusinnleveringen "{$submissionTitle}" til {$serverName}. <br />\nFor å bekrefte forfatterskapet ditt, vennligst legg til ORCID-ID-en din i denne innleveringen ved å gå til lenken nedenfor. <br />\n<br />\n<a href="{$authorOrcidUrl}"> <img id = "orcid-id-logo" src = "https://orcid.org/sites/default/files/images/orcid_16x16.png" width = ''16 '' height = ''16 ''alt = "ORCID iD icon" style = "display: block; margin: 0 .5em 0 0; padding: 0; float: left;" /> Registrer eller koble ORCID iD </a> <br />\n<br />\n<br />\n<a href="{$orcidAboutUrl}"> Mer informasjon om ORCID på {$serverName} </a> <br />\n<br />\nTa gjerne kontakt hvis du har spørsmål. <br />\n<br />\n{$principalContactSignature} <br />\n'), (167, 'ORCID_REQUEST_AUTHOR_AUTHORIZATION', 'pt_BR', 'orcidRequestAuthorAuthorization', 'Solicitando acesso ao registro ORCID', 'Prezado(a) {$recipientName}, <br>\n<br>\nVocê foi listado como autor na submissão do manuscrito "{$submissionTitle}" para {$serverName}.\n<br>\n<br>\nPermita-nos adicionar seu ID do ORCID a essa submissão e também adicioná-lo ao seu perfil do ORCID na publicação. <br>\nVisite o link para o site oficial do ORCID, faça o login com seu perfil e autorize o acesso seguindo as instruções. <br>\n<a href="{$authorOrcidUrl}"> <img id ="orcid-id-logo" src = "https://info.orcid.org/wp-content/uploads/2020/12/ORCIDiD_icon16x16.png" width = ''16 '' height = ''16 '' alt = "Ícone ORCID iD" style = "display: block; margin: 0 .5em 0 0; padding: 0; float: left;" /> Registre ou conecte seu ORCID ID </a> <br/>\n<br>\n<br>\n<a href="{$orcidAboutUrl}"> Mais sobre o ORCID em {$serverName} </a> <br/>\n<br>\nSe você tiver alguma dúvida, entre em contato comigo. <br>\n<br>\n{$principalContactSignature} <br>\n'), (168, 'ORCID_REQUEST_AUTHOR_AUTHORIZATION', 'en', 'orcidRequestAuthorAuthorization', 'Requesting ORCID record access', 'Dear {$recipientName},<br>\n<br>\nYou have been listed as an author on the manuscript submission "{$submissionTitle}" to {$serverName}.\n<br>\n<br>\nPlease allow us to add your ORCID id to this submission and also to add the submission to your ORCID profile on publication.<br>\nVisit the link to the official ORCID website, login with your profile and authorize the access by following the instructions.<br>\n<br>\n<a href="{$authorOrcidUrl}" style="display: inline-flex; align-items: center; background-color: white; text-align: center; padding: 10px 20px; text-decoration: none; border-radius: 5px; border: 2px solid #d7d4d4;"><img id="orcid-id-logo" src="https://info.orcid.org/wp-content/uploads/2020/12/ORCIDiD_icon16x16.png" width=''16'' height=''16'' alt="ORCID iD icon" style="display: block; margin: 0 .5em 0 0; padding: 0; float: left;"/>Register or Connect your ORCID iD</a><br/>\n<br>\n<br>\nClick here to verify your account with ORCID: <a href="{$authorOrcidUrl}">{$authorOrcidUrl}.</a>\n<br>\n<br>\n<a href="{$orcidAboutUrl}">More about ORCID at {$serverName}</a><br/>\n<br>\n<br>\nIf you have any questions, please contact me.<br>\n<br>\n{$principalContactSignature}<br>\n'), (169, 'USER_ROLE_ASSIGNMENT_INVITATION', 'es', '', '', ''), (170, 'USER_ROLE_ASSIGNMENT_INVITATION', 'fi', '', '', ''), (171, 'USER_ROLE_ASSIGNMENT_INVITATION', 'fr_CA', '', '', ''), (172, 'USER_ROLE_ASSIGNMENT_INVITATION', 'mk', '', '', ''), (173, 'USER_ROLE_ASSIGNMENT_INVITATION', 'nb_NO', '', '', ''), (174, 'USER_ROLE_ASSIGNMENT_INVITATION', 'pt_BR', '', '', ''), (175, 'USER_ROLE_ASSIGNMENT_INVITATION', 'en', 'User Invited to Role Notification', 'You are invited to new roles', '<div class=''email-container''> <div class=''email-header''> <h2>Invitation to New Role</h2> </div> <div class=''email-content''> <p>Dear {$recipientName},</p> <p>In light of your expertise, you have been invited by {$inviterName} to take on new roles at {$serverName}</p> <p>At {$serverName}, we value your privacy. As such, we have taken steps to ensure that we are fully GDPR compliant. These steps include you being accountable to enter your own data and choosing who can see what information. For additional information on how we handled your data, please refer to our Privacy Policy.</p> <div>{$existingRoles}</div> <div>{$rolesAdded}</div> <p>On accepting the invite, you will be redirected to {$serverName}.</p> <p>Feel free to contact me with any questions about the process.</p> <p><a href=''{$acceptUrl}'' class=''btn btn-accept''>Accept Invitation</a></p> <p><a href=''{$declineUrl}'' class=''btn btn-decline''>Decline Invitation</a></p> <p>Kind regards,</p> <p>{$serverName}</p> </div></div><style>{$emailTemplateStyle}</style>'), (176, 'USER_ROLE_END', 'es', '', '', ''), (177, 'USER_ROLE_END', 'fi', '', '', ''), (178, 'USER_ROLE_END', 'fr_CA', '', '', ''), (179, 'USER_ROLE_END', 'mk', 'Известување за завршување на улогата на корисникот', 'Отстранети сте од улога', '<div class=''email-container''> <div class=''email-header''> <h2>Отстрането од улога</h2> </div> <div class=''email-content''> <p>Почитувани {$recipientName},</p> <p>Ви благодариме многу за учеството во улогата на {$roleRemoved} на {$serverName}.</p> <p>Ова е известување за да знаете дека сте отстранети од следнава улога во {$serverName}: <b>{$roleRemoved}</b>.</p> <p>Вашата сметка со {$serverName} е сè уште активна, а сите други улоги што претходно ги имавте се сè уште активни.</p> <p>Слободно контактирајте ме во врска со сите прашања поврзани со овој процес.</p> <p>Со почит,</p> <p>{$serverName}</p> </div></div><style>{$emailTemplateStyle}</style>'), (180, 'USER_ROLE_END', 'nb_NO', '', '', ''), (181, 'USER_ROLE_END', 'pt_BR', 'Notificação de término de papel de usuário', 'Você foi removido de um papel', '<div class=''email-container''> <div class=''email-header''> <h2>Removido de um papel</h2> </div> <div class=''email-content''> <p>Prezado/a {$recipientName},</p> <p>Muito obrigado por sua participação no papel de {$roleRemoved} em {$serverName}.</p> <p>Este é um aviso para informá-lo de que você foi removido do seguinte papel em {$serverName}: <b>{$roleRemoved}</b>.</p> <p>Sua conta em {$serverName} ainda está ativa e quaisquer outros papéis que você ocupou anteriormente ainda estão ativas.</p> <p>Sinta-se à vontade para entrar em contato comigo caso tenha alguma dúvida sobre o processo.</p> <p>Atenciosamente,</p> <p>{$serverName}</p> </div></div><style>{$emailTemplateStyle}</style>'), (182, 'USER_ROLE_END', 'en', 'User Role Ended Notification', 'You have been removed from a role', '<div class=''email-container''> <div class=''email-header''> <h2>Removed from a Role</h2> </div> <div class=''email-content''> <p>Dear {$recipientName},</p> <p>Thank you very much for your participation in the role of {$roleRemoved} at {$serverName}.</p> <p>This is a notice to let you know that you have been removed from the following role at {$serverName}: <b>{$roleRemoved}</b>.</p> <p>Your account with {$serverName} is still active and any other roles you previously held are still active.</p> <p>Feel free to contact me with any questions about the process.</p> <p>Kind regards,</p> <p>{$serverName}</p> </div></div><style>{$emailTemplateStyle}</style>'), (183, 'ORCID_REQUEST_UPDATE_SCOPE', 'es', '', '', ''), (184, 'ORCID_REQUEST_UPDATE_SCOPE', 'fi', '', '', ''), (185, 'ORCID_REQUEST_UPDATE_SCOPE', 'fr_CA', '', '', ''), (186, 'ORCID_REQUEST_UPDATE_SCOPE', 'mk', 'orcidRequestUpdateScope', 'Се бара ажуриран пристап до записот ORCID', 'Почитуван {$recipientName},<br>\n<br>\nВие сте наведени како соработник (автор или рецензент) на поднесокот на ракописот „{$submissionTitle}“ до {$serverName}.\n<br>\n<br>\nПретходно го овластивте {$serverName} да го наведе вашиот ORCID ID на страницата и бараме ажурирани дозволи за да го додадеме вашиот придонес на вашиот ORCID профил.<br>\nПосетете ја врската до официјалната веб-страница на ORCID, најавете се со вашиот профил и овластете го пристапот следејќи ги упатствата.<br>\n<br>\n<a href="{$authorOrcidUrl}" style="display: inline-flex; align-items: center; background-color: white; text-align: center; padding: 10px 20px; text-decoration: none; border-radius: 5px; border: 2px solid #dlogid"-74 с ИД</a><br/>\n<br>\n<br>\nКликнете овде за да ја ажурирате вашата сметка со ORCID: <a href="{$authorOrcidUrl}">{$authorOrcidUrl}.</a>\n<br>\n<br>\n<a href="{$orcidAboutUrl}">Повеќе за ORCID на {$serverName}</a><br/>\n<br>\n<br>\nАко имате какви било прашања, ве молиме контактирајте ме.<br>\n<br>\n{$principalContactSignature}<br>\n'), (187, 'ORCID_REQUEST_UPDATE_SCOPE', 'nb_NO', '', '', ''), (188, 'ORCID_REQUEST_UPDATE_SCOPE', 'pt_BR', 'orcidRequestUpdateScope', 'Solicitando acesso atualizado ao registro ORCID', 'Prezado/a {$recipientName},<br>\n<br>\nVocê está listado como um colaborador (autor ou revisor) na submissão do manuscrito "{$submissionTitle}" para {$serverName}.\n<br>\n<br>\nVocê autorizou anteriormente {$serverName} a listar seu identificador ORCID no site, e precisamos permissões renovadas para adicionar sua contribuição ao seu perfil ORCID.<br>\nVisite o link para o site oficial do ORCID, faça login com seu perfil e autorize o acesso seguindo as instruções.<br>\n<br>\n<a href="{$authorOrcidUrl}" style="display: inline-flex; align-items: center; background-color: white; text-align: center; padding: 10px 20px; text-decoration: none; border-radius: 5px; border: 2px solid #d7d4d4;"><img id="orcid-id-logo" src="https://info.orcid.org/wp-content/uploads/2020/12/ORCIDiD_icon16x16.png" width=''16'' height=''16'' alt="Ícone ORCID iD" style="display: block; margin: 0 .5em 0 0; padding: 0; float: left;"/>Registre ou conecte seu ORCID iD</a><br/>\n<br>\n<br>\nClique aqui para atualizar sua conta com ORCID: <a href="{$authorOrcidUrl}">{$authorOrcidUrl}.</a>\n<br>\n<br>\n<a href="{$orcidAboutUrl}">Mais sobre ORCID em {$serverName}</a><br/>\n<br>\n<br>\nSe você tiver alguma dúvida, favor me contatar.<br>\n<br>\n{$principalContactSignature}<br>\n'), (189, 'ORCID_REQUEST_UPDATE_SCOPE', 'en', 'orcidRequestUpdateScope', 'Requesting updated ORCID record access', 'Dear {$recipientName},<br>\n<br>\nYou are listed as a contributor (author or reviewer) on the manuscript submission "{$submissionTitle}" to {$serverName}.\n<br>\n<br>\nYou have previously authorized {$serverName} to list your ORCID id on the site, and we require updateded permissions to add your contribution to your ORCID profile.<br>\nVisit the link to the official ORCID website, login with your profile and authorize the access by following the instructions.<br>\n<br>\n<a href="{$authorOrcidUrl}" style="display: inline-flex; align-items: center; background-color: white; text-align: center; padding: 10px 20px; text-decoration: none; border-radius: 5px; border: 2px solid #d7d4d4;"><img id="orcid-id-logo" src="https://info.orcid.org/wp-content/uploads/2020/12/ORCIDiD_icon16x16.png" width=''16'' height=''16'' alt="ORCID iD icon" style="display: block; margin: 0 .5em 0 0; padding: 0; float: left;"/>Register or Connect your ORCID iD</a><br/>\n<br>\n<br>\nClick here to update your account with ORCID: <a href="{$authorOrcidUrl}">{$authorOrcidUrl}.</a>\n<br>\n<br>\n<a href="{$orcidAboutUrl}">More about ORCID at {$serverName}</a><br/>\n<br>\n<br>\nIf you have any questions, please contact me.<br>\n<br>\n{$principalContactSignature}<br>\n'); -- -------------------------------------------------------- -- -- Table structure for table `email_templates_settings` -- CREATE TABLE `email_templates_settings` ( `email_template_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `email_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, PRIMARY KEY (`email_template_setting_id`), UNIQUE KEY `email_templates_settings_unique` (`email_id`,`locale`,`setting_name`), KEY `email_templates_settings_email_id` (`email_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about custom email templates, including localized properties such as the subject and body.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `event_log` -- CREATE TABLE `event_log` ( `log_id` bigint(20) NOT NULL AUTO_INCREMENT, `assoc_type` bigint(20) NOT NULL, `assoc_id` bigint(20) NOT NULL, `user_id` bigint(20) DEFAULT NULL COMMENT 'NULL if it''s system or automated event', `date_logged` datetime NOT NULL, `event_type` bigint(20) DEFAULT NULL, `message` text, `is_translated` tinyint(1) DEFAULT NULL, PRIMARY KEY (`log_id`), KEY `event_log_user_id` (`user_id`), KEY `event_log_assoc` (`assoc_type`,`assoc_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A log of all events related to an object like a submission.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `event_log_settings` -- CREATE TABLE `event_log_settings` ( `event_log_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `log_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, PRIMARY KEY (`event_log_setting_id`), UNIQUE KEY `event_log_settings_unique` (`log_id`,`setting_name`,`locale`), KEY `event_log_settings_log_id` (`log_id`), KEY `event_log_settings_name_value` (`setting_name`(50),`setting_value`(150)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data about an event log entry. This data is commonly used to display information about an event to a user.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `connection` text NOT NULL, `queue` text NOT NULL, `payload` longtext NOT NULL, `exception` longtext NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A log of all failed jobs.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `files` -- CREATE TABLE `files` ( `file_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `path` varchar(255) NOT NULL, `mimetype` varchar(255) NOT NULL, PRIMARY KEY (`file_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Records information in the database about files tracked by the system, linking them to the local filesystem.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `filters` -- CREATE TABLE `filters` ( `filter_id` bigint(20) NOT NULL AUTO_INCREMENT, `filter_group_id` bigint(20) NOT NULL, `context_id` bigint(20) DEFAULT NULL, `display_name` varchar(255) DEFAULT NULL, `class_name` varchar(255) DEFAULT NULL, `is_template` smallint(6) NOT NULL DEFAULT '0', `parent_filter_id` bigint(20) DEFAULT NULL, `seq` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`filter_id`), KEY `filters_filter_group_id` (`filter_group_id`), KEY `filters_context_id` (`context_id`), KEY `filters_parent_filter_id` (`parent_filter_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Filters represent a transformation of a supported piece of data from one form to another, such as a PHP object into an XML document.' AUTO_INCREMENT=13 ; -- -- Dumping data for table `filters` -- INSERT INTO `filters` VALUES (1, 1, NULL, 'Crossref XML preprint export', 'APP\\plugins\\generic\\crossref\\filter\\PreprintCrossrefXmlFilter', 0, NULL, 0), (2, 2, NULL, 'Extract metadata from a(n) Submission', 'APP\\plugins\\metadata\\dc11\\filter\\Dc11SchemaPreprintAdapter', 0, NULL, 0), (3, 3, NULL, 'Native XML submission export', 'APP\\plugins\\importexport\\native\\filter\\PreprintNativeXmlFilter', 0, NULL, 0), (4, 4, NULL, 'Native XML submission import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlPreprintFilter', 0, NULL, 0), (5, 5, NULL, 'Native XML author export', 'APP\\plugins\\importexport\\native\\filter\\AuthorNativeXmlFilter', 0, NULL, 0), (6, 6, NULL, 'Native XML author import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlAuthorFilter', 0, NULL, 0), (7, 8, NULL, 'Native XML submission file import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlPreprintFileFilter', 0, NULL, 0), (8, 7, NULL, 'Native XML submission file export', 'PKP\\plugins\\importexport\\native\\filter\\SubmissionFileNativeXmlFilter', 0, NULL, 0), (9, 9, NULL, 'Native XML representation export', 'APP\\plugins\\importexport\\native\\filter\\PreprintGalleyNativeXmlFilter', 0, NULL, 0), (10, 10, NULL, 'Native XML representation import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlPreprintGalleyFilter', 0, NULL, 0), (11, 11, NULL, 'Native XML Publication export', 'APP\\plugins\\importexport\\native\\filter\\PublicationNativeXmlFilter', 0, NULL, 0), (12, 12, NULL, 'Native XML publication import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlPublicationFilter', 0, NULL, 0); -- -------------------------------------------------------- -- -- Table structure for table `filter_groups` -- CREATE TABLE `filter_groups` ( `filter_group_id` bigint(20) NOT NULL AUTO_INCREMENT, `symbolic` varchar(255) DEFAULT NULL, `display_name` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `input_type` varchar(255) DEFAULT NULL, `output_type` varchar(255) DEFAULT NULL, PRIMARY KEY (`filter_group_id`), UNIQUE KEY `filter_groups_symbolic` (`symbolic`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Filter groups are used to organized filters into named sets, which can be retrieved by the application for invocation.' AUTO_INCREMENT=13 ; -- -- Dumping data for table `filter_groups` -- INSERT INTO `filter_groups` VALUES (1, 'preprint=>crossref-xml', 'plugins.importexport.crossref.displayName', 'plugins.importexport.crossref.description', 'class::classes.submission.Submission[]', 'xml::schema(https://www.crossref.org/schemas/crossref5.4.0.xsd)'), (2, 'preprint=>dc11', 'plugins.metadata.dc11.preprintAdapter.displayName', 'plugins.metadata.dc11.preprintAdapter.description', 'class::classes.submission.Submission', 'metadata::APP\\plugins\\metadata\\dc11\\schema\\Dc11Schema(PREPRINT)'), (3, 'preprint=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.submission.Submission[]', 'xml::schema(plugins/importexport/native/native.xsd)'), (4, 'native-xml=>preprint', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.submission.Submission[]'), (5, 'author=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.author.Author[]', 'xml::schema(plugins/importexport/native/native.xsd)'), (6, 'native-xml=>author', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.author.Author[]'), (7, 'SubmissionFile=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::lib.pkp.classes.submissionFile.SubmissionFile', 'xml::schema(plugins/importexport/native/native.xsd)'), (8, 'native-xml=>SubmissionFile', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::lib.pkp.classes.submissionFile.SubmissionFile[]'), (9, 'preprint-galley=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::lib.pkp.classes.galley.Galley', 'xml::schema(plugins/importexport/native/native.xsd)'), (10, 'native-xml=>PreprintGalley', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::lib.pkp.classes.galley.Galley[]'), (11, 'publication=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.publication.Publication', 'xml::schema(plugins/importexport/native/native.xsd)'), (12, 'native-xml=>Publication', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.publication.Publication[]'); -- -------------------------------------------------------- -- -- Table structure for table `filter_settings` -- CREATE TABLE `filter_settings` ( `filter_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `filter_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, `setting_type` varchar(6) NOT NULL, PRIMARY KEY (`filter_setting_id`), UNIQUE KEY `filter_settings_unique` (`filter_id`,`locale`,`setting_name`), KEY `filter_settings_id` (`filter_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about filters, including localized content.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `genres` -- CREATE TABLE `genres` ( `genre_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `seq` bigint(20) NOT NULL, `enabled` smallint(6) NOT NULL DEFAULT '1', `category` bigint(20) NOT NULL DEFAULT '1', `dependent` smallint(6) NOT NULL DEFAULT '0', `supplementary` smallint(6) NOT NULL DEFAULT '0', `required` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Whether or not at least one file of this genre is required for a new submission.', `entry_key` varchar(30) DEFAULT NULL, PRIMARY KEY (`genre_id`), KEY `genres_context_id` (`context_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='The types of submission files configured for each context, such as Article Text, Data Set, Transcript, etc.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `genre_settings` -- CREATE TABLE `genre_settings` ( `genre_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `genre_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)', PRIMARY KEY (`genre_setting_id`), UNIQUE KEY `genre_settings_unique` (`genre_id`,`locale`,`setting_name`), KEY `genre_settings_genre_id` (`genre_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about file genres, including localized properties such as the genre name.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `highlights` -- CREATE TABLE `highlights` ( `highlight_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) DEFAULT NULL, `sequence` bigint(20) NOT NULL, `url` varchar(2047) NOT NULL, PRIMARY KEY (`highlight_id`), KEY `highlights_context_id` (`context_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Highlights are featured items that can be presented to users, for example on the homepage.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `highlight_settings` -- CREATE TABLE `highlight_settings` ( `highlight_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `highlight_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, PRIMARY KEY (`highlight_setting_id`), UNIQUE KEY `highlight_settings_unique` (`highlight_id`,`locale`,`setting_name`), KEY `highlight_settings_highlight_id` (`highlight_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about highlights, including localized properties like title and description.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `institutions` -- CREATE TABLE `institutions` ( `institution_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `ror` varchar(255) DEFAULT NULL COMMENT 'ROR (Research Organization Registry) ID', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`institution_id`), KEY `institutions_context_id` (`context_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Institutions for statistics and subscriptions.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `institution_ip` -- CREATE TABLE `institution_ip` ( `institution_ip_id` bigint(20) NOT NULL AUTO_INCREMENT, `institution_id` bigint(20) NOT NULL, `ip_string` varchar(40) NOT NULL, `ip_start` bigint(20) NOT NULL, `ip_end` bigint(20) DEFAULT NULL, PRIMARY KEY (`institution_ip_id`), KEY `institution_ip_institution_id` (`institution_id`), KEY `institution_ip_start` (`ip_start`), KEY `institution_ip_end` (`ip_end`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Records IP address ranges and associates them with institutions.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `institution_settings` -- CREATE TABLE `institution_settings` ( `institution_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `institution_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, PRIMARY KEY (`institution_setting_id`), UNIQUE KEY `institution_settings_unique` (`institution_id`,`locale`,`setting_name`), KEY `institution_settings_institution_id` (`institution_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about institutions, including localized properties like names.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `invitations` -- CREATE TABLE `invitations` ( `invitation_id` bigint(20) NOT NULL AUTO_INCREMENT, `key_hash` varchar(255) DEFAULT NULL, `type` varchar(255) NOT NULL, `user_id` bigint(20) DEFAULT NULL, `inviter_id` bigint(20) DEFAULT NULL, `expiry_date` datetime DEFAULT NULL, `payload` json DEFAULT NULL, `status` enum('INITIALIZED','PENDING','ACCEPTED','DECLINED','CANCELLED') NOT NULL, `email` varchar(255) DEFAULT NULL COMMENT 'When present, the email address of the invitation recipient; when null, user_id must be set and the email can be fetched from the users table.', `context_id` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`invitation_id`), KEY `invitations_user_id` (`user_id`), KEY `invitations_inviter_id` (`inviter_id`), KEY `invitations_context_id` (`context_id`), KEY `invitations_status_context_id_user_id_type_index` (`status`,`context_id`,`user_id`,`type`), KEY `invitations_expiry_date_index` (`expiry_date`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Invitations are sent to request a person (by email) to allow them to accept or reject an operation or position, such as a board membership or a submission peer review.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `queue` varchar(255) NOT NULL, `payload` longtext NOT NULL, `attempts` tinyint(3) unsigned NOT NULL, `reserved_at` int(10) unsigned DEFAULT NULL, `available_at` int(10) unsigned NOT NULL, `created_at` int(10) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `jobs_queue_reserved_at_index` (`queue`,`reserved_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='All pending or in-progress jobs.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `job_batches` -- CREATE TABLE `job_batches` ( `id` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `total_jobs` int(11) NOT NULL, `pending_jobs` int(11) NOT NULL, `failed_jobs` int(11) NOT NULL, `failed_job_ids` text NOT NULL, `options` mediumtext, `cancelled_at` int(11) DEFAULT NULL, `created_at` int(11) NOT NULL, `finished_at` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Job batches allow jobs to be collected into groups for managed processing.'; -- -------------------------------------------------------- -- -- Table structure for table `library_files` -- CREATE TABLE `library_files` ( `file_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `file_name` varchar(255) NOT NULL, `original_file_name` varchar(255) NOT NULL, `file_type` varchar(255) NOT NULL, `file_size` bigint(20) NOT NULL, `type` smallint(6) NOT NULL, `date_uploaded` datetime NOT NULL, `date_modified` datetime NOT NULL, `submission_id` bigint(20) DEFAULT NULL, `public_access` smallint(6) DEFAULT '0', PRIMARY KEY (`file_id`), KEY `library_files_context_id` (`context_id`), KEY `library_files_submission_id` (`submission_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Library files can be associated with the context (press/server/journal) or with individual submissions, and are typically forms, agreements, and other administrative documents that are not part of the scholarly content.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `library_file_settings` -- CREATE TABLE `library_file_settings` ( `library_file_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `file_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object|date)', PRIMARY KEY (`library_file_setting_id`), UNIQUE KEY `library_file_settings_unique` (`file_id`,`locale`,`setting_name`), KEY `library_file_settings_file_id` (`file_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about library files, including localized content such as names.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `metrics_context` -- CREATE TABLE `metrics_context` ( `metrics_context_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `context_id` bigint(20) NOT NULL, `date` date NOT NULL, `metric` int(11) NOT NULL, PRIMARY KEY (`metrics_context_id`), KEY `metrics_context_load_id` (`load_id`), KEY `metrics_context_context_id` (`context_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Daily statistics for views of the homepage.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `metrics_counter_submission_daily` -- CREATE TABLE `metrics_counter_submission_daily` ( `metrics_counter_submission_daily_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `context_id` bigint(20) NOT NULL, `submission_id` bigint(20) NOT NULL, `date` date NOT NULL, `metric_investigations` int(11) NOT NULL, `metric_investigations_unique` int(11) NOT NULL, `metric_requests` int(11) NOT NULL, `metric_requests_unique` int(11) NOT NULL, PRIMARY KEY (`metrics_counter_submission_daily_id`), UNIQUE KEY `msd_uc_load_id_context_id_submission_id_date` (`load_id`,`context_id`,`submission_id`,`date`), KEY `msd_load_id` (`load_id`), KEY `metrics_counter_submission_daily_context_id` (`context_id`), KEY `metrics_counter_submission_daily_submission_id` (`submission_id`), KEY `msd_context_id_submission_id` (`context_id`,`submission_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Daily statistics matching the COUNTER R5 protocol for views and downloads of published submissions and galleys.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `metrics_counter_submission_institution_daily` -- CREATE TABLE `metrics_counter_submission_institution_daily` ( `metrics_counter_submission_institution_daily_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `context_id` bigint(20) NOT NULL, `submission_id` bigint(20) NOT NULL, `institution_id` bigint(20) NOT NULL, `date` date NOT NULL, `metric_investigations` int(11) NOT NULL, `metric_investigations_unique` int(11) NOT NULL, `metric_requests` int(11) NOT NULL, `metric_requests_unique` int(11) NOT NULL, PRIMARY KEY (`metrics_counter_submission_institution_daily_id`), UNIQUE KEY `msid_uc_load_id_context_id_submission_id_institution_id_date` (`load_id`,`context_id`,`submission_id`,`institution_id`,`date`), KEY `msid_load_id` (`load_id`), KEY `msid_context_id` (`context_id`), KEY `msid_submission_id` (`submission_id`), KEY `msid_institution_id` (`institution_id`), KEY `msid_context_id_submission_id` (`context_id`,`submission_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Daily statistics matching the COUNTER R5 protocol for views and downloads from institutions.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `metrics_counter_submission_institution_monthly` -- CREATE TABLE `metrics_counter_submission_institution_monthly` ( `metrics_counter_submission_institution_monthly_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `submission_id` bigint(20) NOT NULL, `institution_id` bigint(20) NOT NULL, `month` int(11) NOT NULL, `metric_investigations` int(11) NOT NULL, `metric_investigations_unique` int(11) NOT NULL, `metric_requests` int(11) NOT NULL, `metric_requests_unique` int(11) NOT NULL, PRIMARY KEY (`metrics_counter_submission_institution_monthly_id`), UNIQUE KEY `msim_uc_context_id_submission_id_institution_id_month` (`context_id`,`submission_id`,`institution_id`,`month`), KEY `msim_context_id` (`context_id`), KEY `msim_submission_id` (`submission_id`), KEY `msim_institution_id` (`institution_id`), KEY `msim_context_id_submission_id` (`context_id`,`submission_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Monthly statistics matching the COUNTER R5 protocol for views and downloads from institutions.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `metrics_counter_submission_monthly` -- CREATE TABLE `metrics_counter_submission_monthly` ( `metrics_counter_submission_monthly_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `submission_id` bigint(20) NOT NULL, `month` int(11) NOT NULL, `metric_investigations` int(11) NOT NULL, `metric_investigations_unique` int(11) NOT NULL, `metric_requests` int(11) NOT NULL, `metric_requests_unique` int(11) NOT NULL, PRIMARY KEY (`metrics_counter_submission_monthly_id`), UNIQUE KEY `msm_uc_context_id_submission_id_month` (`context_id`,`submission_id`,`month`), KEY `metrics_counter_submission_monthly_context_id` (`context_id`), KEY `metrics_counter_submission_monthly_submission_id` (`submission_id`), KEY `msm_context_id_submission_id` (`context_id`,`submission_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Monthly statistics matching the COUNTER R5 protocol for views and downloads of published submissions and galleys.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `metrics_submission` -- CREATE TABLE `metrics_submission` ( `metrics_submission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `context_id` bigint(20) NOT NULL, `submission_id` bigint(20) NOT NULL, `representation_id` bigint(20) DEFAULT NULL, `submission_file_id` bigint(20) unsigned DEFAULT NULL, `file_type` bigint(20) DEFAULT NULL, `assoc_type` bigint(20) NOT NULL, `date` date NOT NULL, `metric` int(11) NOT NULL, PRIMARY KEY (`metrics_submission_id`), KEY `ms_load_id` (`load_id`), KEY `metrics_submission_context_id` (`context_id`), KEY `metrics_submission_submission_id` (`submission_id`), KEY `metrics_submission_representation_id` (`representation_id`), KEY `metrics_submission_submission_file_id` (`submission_file_id`), KEY `ms_context_id_submission_id_assoc_type_file_type` (`context_id`,`submission_id`,`assoc_type`,`file_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Daily statistics for views and downloads of published submissions and galleys.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `metrics_submission_geo_daily` -- CREATE TABLE `metrics_submission_geo_daily` ( `metrics_submission_geo_daily_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `context_id` bigint(20) NOT NULL, `submission_id` bigint(20) NOT NULL, `country` varchar(2) NOT NULL DEFAULT '', `region` varchar(3) NOT NULL DEFAULT '', `city` varchar(255) NOT NULL DEFAULT '', `date` date NOT NULL, `metric` int(11) NOT NULL, `metric_unique` int(11) NOT NULL, PRIMARY KEY (`metrics_submission_geo_daily_id`), UNIQUE KEY `msgd_uc_load_context_submission_c_r_c_date` (`load_id`,`context_id`,`submission_id`,`country`,`region`,`city`(80),`date`), KEY `msgd_load_id` (`load_id`), KEY `msgd_context_id` (`context_id`), KEY `msgd_submission_id` (`submission_id`), KEY `msgd_context_id_submission_id` (`context_id`,`submission_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Daily statistics by country, region and city for views and downloads of published submissions and galleys.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `metrics_submission_geo_monthly` -- CREATE TABLE `metrics_submission_geo_monthly` ( `metrics_submission_geo_monthly_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `submission_id` bigint(20) NOT NULL, `country` varchar(2) NOT NULL DEFAULT '', `region` varchar(3) NOT NULL DEFAULT '', `city` varchar(255) NOT NULL DEFAULT '', `month` int(11) NOT NULL, `metric` int(11) NOT NULL, `metric_unique` int(11) NOT NULL, PRIMARY KEY (`metrics_submission_geo_monthly_id`), UNIQUE KEY `msgm_uc_context_submission_c_r_c_month` (`context_id`,`submission_id`,`country`,`region`,`city`(80),`month`), KEY `msgm_context_id` (`context_id`), KEY `msgm_submission_id` (`submission_id`), KEY `msgm_context_id_submission_id` (`context_id`,`submission_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Monthly statistics by country, region and city for views and downloads of published submissions and galleys.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `navigation_menus` -- CREATE TABLE `navigation_menus` ( `navigation_menu_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) DEFAULT NULL, `area_name` varchar(255) DEFAULT '', `title` varchar(255) NOT NULL, PRIMARY KEY (`navigation_menu_id`), KEY `navigation_menus_context_id` (`context_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Navigation menus on the website are installed with the software as a default set, and can be customized.' AUTO_INCREMENT=2 ; -- -- Dumping data for table `navigation_menus` -- INSERT INTO `navigation_menus` VALUES (1, NULL, 'user', 'User Navigation Menu'); -- -------------------------------------------------------- -- -- Table structure for table `navigation_menu_items` -- CREATE TABLE `navigation_menu_items` ( `navigation_menu_item_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) DEFAULT NULL, `path` varchar(255) DEFAULT '', `type` varchar(255) DEFAULT '', PRIMARY KEY (`navigation_menu_item_id`), KEY `navigation_menu_items_context_id` (`context_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Navigation menu items are single elements within a navigation menu.' AUTO_INCREMENT=8 ; -- -- Dumping data for table `navigation_menu_items` -- INSERT INTO `navigation_menu_items` VALUES (1, NULL, NULL, 'NMI_TYPE_USER_REGISTER'), (2, NULL, NULL, 'NMI_TYPE_USER_LOGIN'), (3, NULL, NULL, 'NMI_TYPE_USER_DASHBOARD'), (4, NULL, NULL, 'NMI_TYPE_USER_DASHBOARD'), (5, NULL, NULL, 'NMI_TYPE_USER_PROFILE'), (6, NULL, NULL, 'NMI_TYPE_ADMINISTRATION'), (7, NULL, NULL, 'NMI_TYPE_USER_LOGOUT'); -- -------------------------------------------------------- -- -- Table structure for table `navigation_menu_item_assignments` -- CREATE TABLE `navigation_menu_item_assignments` ( `navigation_menu_item_assignment_id` bigint(20) NOT NULL AUTO_INCREMENT, `navigation_menu_id` bigint(20) NOT NULL, `navigation_menu_item_id` bigint(20) NOT NULL, `parent_id` bigint(20) DEFAULT NULL, `seq` bigint(20) DEFAULT '0', PRIMARY KEY (`navigation_menu_item_assignment_id`), KEY `navigation_menu_item_assignments_navigation_menu_id` (`navigation_menu_id`), KEY `navigation_menu_item_assignments_navigation_menu_item_id` (`navigation_menu_item_id`), KEY `navigation_menu_item_assignments_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Links navigation menu items to navigation menus.' AUTO_INCREMENT=8 ; -- -- Dumping data for table `navigation_menu_item_assignments` -- INSERT INTO `navigation_menu_item_assignments` VALUES (1, 1, 1, NULL, 0), (2, 1, 2, NULL, 1), (3, 1, 3, NULL, 2), (4, 1, 4, 3, 0), (5, 1, 5, 3, 1), (6, 1, 6, 3, 2), (7, 1, 7, 3, 3); -- -------------------------------------------------------- -- -- Table structure for table `navigation_menu_item_assignment_settings` -- CREATE TABLE `navigation_menu_item_assignment_settings` ( `navigation_menu_item_assignment_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `navigation_menu_item_assignment_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, `setting_type` varchar(6) NOT NULL, PRIMARY KEY (`navigation_menu_item_assignment_setting_id`), UNIQUE KEY `navigation_menu_item_assignment_settings_unique` (`navigation_menu_item_assignment_id`,`locale`,`setting_name`), KEY `navigation_menu_item_assignment_settings_n_m_i_a_id` (`navigation_menu_item_assignment_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about navigation menu item assignments to navigation menus, including localized content.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `navigation_menu_item_settings` -- CREATE TABLE `navigation_menu_item_settings` ( `navigation_menu_item_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `navigation_menu_item_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` longtext, `setting_type` varchar(6) NOT NULL, PRIMARY KEY (`navigation_menu_item_setting_id`), UNIQUE KEY `navigation_menu_item_settings_unique` (`navigation_menu_item_id`,`locale`,`setting_name`), KEY `navigation_menu_item_settings_navigation_menu_item_id` (`navigation_menu_item_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about navigation menu items, including localized content such as names.' AUTO_INCREMENT=8 ; -- -- Dumping data for table `navigation_menu_item_settings` -- INSERT INTO `navigation_menu_item_settings` VALUES (1, 1, '', 'titleLocaleKey', 'navigation.register', 'string'), (2, 2, '', 'titleLocaleKey', 'navigation.login', 'string'), (3, 3, '', 'titleLocaleKey', '{$loggedInUsername}', 'string'), (4, 4, '', 'titleLocaleKey', 'navigation.dashboard', 'string'), (5, 5, '', 'titleLocaleKey', 'common.viewProfile', 'string'), (6, 6, '', 'titleLocaleKey', 'navigation.admin', 'string'), (7, 7, '', 'titleLocaleKey', 'user.logOut', 'string'); -- -------------------------------------------------------- -- -- Table structure for table `notes` -- CREATE TABLE `notes` ( `note_id` bigint(20) NOT NULL AUTO_INCREMENT, `assoc_type` bigint(20) NOT NULL, `assoc_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `date_created` datetime NOT NULL, `date_modified` datetime DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `contents` text, PRIMARY KEY (`note_id`), KEY `notes_user_id` (`user_id`), KEY `notes_assoc` (`assoc_type`,`assoc_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Notes allow users to annotate associated entities, such as submissions.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `notification_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `level` bigint(20) NOT NULL, `type` bigint(20) NOT NULL, `date_created` datetime NOT NULL, `date_read` datetime DEFAULT NULL, `assoc_type` bigint(20) DEFAULT NULL, `assoc_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`notification_id`), KEY `notifications_context_id` (`context_id`), KEY `notifications_user_id` (`user_id`), KEY `notifications_context_id_user_id` (`context_id`,`user_id`,`level`), KEY `notifications_context_id_level` (`context_id`,`level`), KEY `notifications_assoc` (`assoc_type`,`assoc_id`), KEY `notifications_user_id_level` (`user_id`,`level`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='User notifications created during certain operations.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `notification_settings` -- CREATE TABLE `notification_settings` ( `notification_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `notification_id` bigint(20) NOT NULL, `locale` varchar(28) DEFAULT NULL, `setting_name` varchar(64) NOT NULL, `setting_value` mediumtext NOT NULL, `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)', PRIMARY KEY (`notification_setting_id`), UNIQUE KEY `notification_settings_unique` (`notification_id`,`locale`,`setting_name`), KEY `notification_settings_notification_id` (`notification_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about notifications, including localized properties.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `notification_subscription_settings` -- CREATE TABLE `notification_subscription_settings` ( `setting_id` bigint(20) NOT NULL AUTO_INCREMENT, `setting_name` varchar(64) NOT NULL, `setting_value` mediumtext NOT NULL, `user_id` bigint(20) NOT NULL, `context_id` bigint(20) DEFAULT NULL, `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)', PRIMARY KEY (`setting_id`), KEY `notification_subscription_settings_user_id` (`user_id`), KEY `notification_subscription_settings_context` (`context_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Which email notifications a user has chosen to unsubscribe from.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `oai_resumption_tokens` -- CREATE TABLE `oai_resumption_tokens` ( `oai_resumption_token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `token` varchar(32) NOT NULL, `expire` bigint(20) NOT NULL, `record_offset` int(11) NOT NULL, `params` text, PRIMARY KEY (`oai_resumption_token_id`), UNIQUE KEY `oai_resumption_tokens_unique` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='OAI resumption tokens are used to allow for pagination of large result sets into manageable pieces.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `plugin_settings` -- CREATE TABLE `plugin_settings` ( `plugin_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `plugin_name` varchar(80) NOT NULL, `context_id` bigint(20) DEFAULT NULL, `setting_name` varchar(80) NOT NULL, `setting_value` mediumtext, `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)', PRIMARY KEY (`plugin_setting_id`), UNIQUE KEY `plugin_settings_unique` (`plugin_name`,`context_id`,`setting_name`), KEY `plugin_settings_context_id` (`context_id`), KEY `plugin_settings_plugin_name` (`plugin_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about plugins, including localized properties. This table is frequently used to store plugin-specific configuration.' AUTO_INCREMENT=8 ; -- -- Dumping data for table `plugin_settings` -- INSERT INTO `plugin_settings` VALUES (1, 'defaultthemeplugin', NULL, 'enabled', '1', 'bool'), (2, 'tinymceplugin', NULL, 'enabled', '1', 'bool'), (3, 'usageeventplugin', NULL, 'enabled', '1', 'bool'), (4, 'developedbyblockplugin', NULL, 'enabled', '0', 'bool'), (5, 'developedbyblockplugin', NULL, 'seq', '0', 'int'), (6, 'languagetoggleblockplugin', NULL, 'enabled', '1', 'bool'), (7, 'languagetoggleblockplugin', NULL, 'seq', '4', 'int'); -- -------------------------------------------------------- -- -- Table structure for table `publications` -- CREATE TABLE `publications` ( `publication_id` bigint(20) NOT NULL AUTO_INCREMENT, `access_status` bigint(20) DEFAULT '0', `date_published` date DEFAULT NULL, `last_modified` datetime DEFAULT NULL, `primary_contact_id` bigint(20) DEFAULT NULL, `section_id` bigint(20) DEFAULT NULL, `submission_id` bigint(20) NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '1', `url_path` varchar(64) DEFAULT NULL, `version` bigint(20) DEFAULT NULL, `doi_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`publication_id`), KEY `publications_author_id` (`primary_contact_id`), KEY `publications_section_id` (`section_id`), KEY `publications_submission_id` (`submission_id`), KEY `publications_url_path` (`url_path`), KEY `publications_doi_id` (`doi_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Each publication is one version of a submission.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `publication_categories` -- CREATE TABLE `publication_categories` ( `publication_category_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `publication_id` bigint(20) NOT NULL, `category_id` bigint(20) NOT NULL, PRIMARY KEY (`publication_category_id`), UNIQUE KEY `publication_categories_id` (`publication_id`,`category_id`), KEY `publication_categories_publication_id` (`publication_id`), KEY `publication_categories_category_id` (`category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Associates publications (and thus submissions) with categories.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `publication_galleys` -- CREATE TABLE `publication_galleys` ( `galley_id` bigint(20) NOT NULL AUTO_INCREMENT, `locale` varchar(28) DEFAULT NULL, `publication_id` bigint(20) NOT NULL, `label` varchar(255) DEFAULT NULL, `submission_file_id` bigint(20) unsigned DEFAULT NULL, `seq` double NOT NULL DEFAULT '0', `remote_url` varchar(2047) DEFAULT NULL, `is_approved` tinyint(4) NOT NULL DEFAULT '0', `url_path` varchar(64) DEFAULT NULL, `doi_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`galley_id`), KEY `publication_galleys_publication_id` (`publication_id`), KEY `publication_galleys_submission_file_id` (`submission_file_id`), KEY `publication_galleys_url_path` (`url_path`), KEY `publication_galleys_doi_id` (`doi_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Publication galleys are representations of publications in a particular format, such as a PDF file.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `publication_galley_settings` -- CREATE TABLE `publication_galley_settings` ( `publication_galley_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `galley_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` text, PRIMARY KEY (`publication_galley_setting_id`), UNIQUE KEY `publication_galley_settings_unique` (`galley_id`,`locale`,`setting_name`), KEY `publication_galley_settings_galley_id` (`galley_id`), KEY `publication_galley_settings_name_value` (`setting_name`(50),`setting_value`(150)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about publication galleys, including localized properties such as labels.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `publication_settings` -- CREATE TABLE `publication_settings` ( `publication_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `publication_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, PRIMARY KEY (`publication_setting_id`), UNIQUE KEY `publication_settings_unique` (`publication_id`,`locale`,`setting_name`), KEY `publication_settings_name_value` (`setting_name`(50),`setting_value`(150)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about publications, including localized properties such as the title and abstract.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `queries` -- CREATE TABLE `queries` ( `query_id` bigint(20) NOT NULL AUTO_INCREMENT, `assoc_type` bigint(20) NOT NULL, `assoc_id` bigint(20) NOT NULL, `stage_id` smallint(6) NOT NULL, `seq` double NOT NULL DEFAULT '0', `date_posted` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `closed` smallint(6) NOT NULL DEFAULT '0', PRIMARY KEY (`query_id`), KEY `queries_assoc_id` (`assoc_type`,`assoc_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Discussions, usually related to a submission, created by editors, authors and other editorial staff.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `query_participants` -- CREATE TABLE `query_participants` ( `query_participant_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `query_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, PRIMARY KEY (`query_participant_id`), UNIQUE KEY `query_participants_unique` (`query_id`,`user_id`), KEY `query_participants_query_id` (`query_id`), KEY `query_participants_user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='The users assigned to a discussion.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `reviewer_suggestions` -- CREATE TABLE `reviewer_suggestions` ( `reviewer_suggestion_id` bigint(20) NOT NULL AUTO_INCREMENT, `suggesting_user_id` bigint(20) DEFAULT NULL COMMENT 'The user/author who has made the suggestion', `submission_id` bigint(20) NOT NULL COMMENT 'Submission at which the suggestion was made', `email` varchar(255) NOT NULL COMMENT 'Suggested reviewer email address', `orcid_id` varchar(255) DEFAULT NULL COMMENT 'Suggested reviewer optional Orcid Id', `approved_at` timestamp NULL DEFAULT NULL COMMENT 'If and when the suggestion approved to add/invite suggested_reviewer', `approver_id` bigint(20) DEFAULT NULL COMMENT 'The user who has approved the suggestion', `reviewer_id` bigint(20) DEFAULT NULL COMMENT 'The reviewer who has been added/invited through this suggestion', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`reviewer_suggestion_id`), KEY `reviewer_suggestions_suggesting_user_id` (`suggesting_user_id`), KEY `reviewer_suggestions_submission_id` (`submission_id`), KEY `reviewer_suggestions_approver_id_foreign` (`approver_id`), KEY `reviewer_suggestions_reviewer_id_foreign` (`reviewer_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Author suggested reviewers at the submission time' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `reviewer_suggestion_settings` -- CREATE TABLE `reviewer_suggestion_settings` ( `reviewer_suggestion_id` bigint(20) NOT NULL COMMENT 'The foreign key mapping of this setting to reviewer_suggestions table', `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, UNIQUE KEY `reviewer_suggestion_settings_unique` (`reviewer_suggestion_id`,`locale`,`setting_name`), KEY `reviewer_suggestion_settings_reviewer_suggestion_id` (`reviewer_suggestion_id`), KEY `reviewer_suggestion_settings_locale_setting_name_index` (`setting_name`,`locale`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reviewer suggestion settings table to contain multilingual or extra information'; -- -------------------------------------------------------- -- -- Table structure for table `review_assignments` -- CREATE TABLE `review_assignments` ( `review_id` bigint(20) NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) NOT NULL, `reviewer_id` bigint(20) NOT NULL, `competing_interests` text, `recommendation` smallint(6) DEFAULT NULL, `date_assigned` datetime DEFAULT NULL, `date_notified` datetime DEFAULT NULL, `date_confirmed` datetime DEFAULT NULL, `date_completed` datetime DEFAULT NULL, `date_considered` datetime DEFAULT NULL, `date_acknowledged` datetime DEFAULT NULL, `date_due` datetime DEFAULT NULL, `date_response_due` datetime DEFAULT NULL, `last_modified` datetime DEFAULT NULL, `reminder_was_automatic` smallint(6) NOT NULL DEFAULT '0', `declined` smallint(6) NOT NULL DEFAULT '0', `cancelled` smallint(6) NOT NULL DEFAULT '0', `date_cancelled` datetime DEFAULT NULL, `date_rated` datetime DEFAULT NULL, `date_reminded` datetime DEFAULT NULL, `quality` smallint(6) DEFAULT NULL, `review_round_id` bigint(20) NOT NULL, `stage_id` smallint(6) NOT NULL, `review_method` smallint(6) NOT NULL DEFAULT '1', `round` smallint(6) NOT NULL DEFAULT '1', `step` smallint(6) NOT NULL DEFAULT '1', `review_form_id` bigint(20) DEFAULT NULL, `considered` smallint(6) DEFAULT NULL, `request_resent` smallint(6) NOT NULL DEFAULT '0', PRIMARY KEY (`review_id`), KEY `review_assignments_submission_id` (`submission_id`), KEY `review_assignments_reviewer_id` (`reviewer_id`), KEY `review_assignment_reviewer_round` (`review_round_id`,`reviewer_id`), KEY `review_assignments_form_id` (`review_form_id`), KEY `review_assignments_reviewer_review` (`reviewer_id`,`review_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data about peer review assignments for all submissions.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `review_assignment_settings` -- CREATE TABLE `review_assignment_settings` ( `review_assignment_settings_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key.', `review_id` bigint(20) NOT NULL COMMENT 'Foreign key referencing record in review_assignments table', `locale` varchar(28) DEFAULT NULL COMMENT 'Locale key.', `setting_name` varchar(255) NOT NULL COMMENT 'Name of settings record.', `setting_value` mediumtext COMMENT 'Settings value.', PRIMARY KEY (`review_assignment_settings_id`), UNIQUE KEY `review_assignment_settings_unique` (`review_id`,`locale`,`setting_name`), KEY `review_assignment_settings_review_id` (`review_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `review_files` -- CREATE TABLE `review_files` ( `review_file_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `review_id` bigint(20) NOT NULL, `submission_file_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`review_file_id`), UNIQUE KEY `review_files_unique` (`review_id`,`submission_file_id`), KEY `review_files_review_id` (`review_id`), KEY `review_files_submission_file_id` (`submission_file_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of the submission files made available to each assigned reviewer.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `review_forms` -- CREATE TABLE `review_forms` ( `review_form_id` bigint(20) NOT NULL AUTO_INCREMENT, `assoc_type` bigint(20) NOT NULL, `assoc_id` bigint(20) NOT NULL, `seq` double DEFAULT NULL, `is_active` smallint(6) DEFAULT NULL, PRIMARY KEY (`review_form_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review forms provide custom templates for peer reviews with several types of questions.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `review_form_elements` -- CREATE TABLE `review_form_elements` ( `review_form_element_id` bigint(20) NOT NULL AUTO_INCREMENT, `review_form_id` bigint(20) NOT NULL, `seq` double DEFAULT NULL, `element_type` bigint(20) DEFAULT NULL, `required` smallint(6) DEFAULT NULL, `included` smallint(6) DEFAULT NULL, PRIMARY KEY (`review_form_element_id`), KEY `review_form_elements_review_form_id` (`review_form_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Each review form element represents a single question on a review form.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `review_form_element_settings` -- CREATE TABLE `review_form_element_settings` ( `review_form_element_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `review_form_element_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, `setting_type` varchar(6) NOT NULL, PRIMARY KEY (`review_form_element_setting_id`), UNIQUE KEY `review_form_element_settings_unique` (`review_form_element_id`,`locale`,`setting_name`), KEY `review_form_element_settings_review_form_element_id` (`review_form_element_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about review form elements, including localized content such as question text.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `review_form_responses` -- CREATE TABLE `review_form_responses` ( `review_form_response_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `review_form_element_id` bigint(20) NOT NULL, `review_id` bigint(20) NOT NULL, `response_type` varchar(6) DEFAULT NULL, `response_value` text, PRIMARY KEY (`review_form_response_id`), KEY `review_form_responses_review_form_element_id` (`review_form_element_id`), KEY `review_form_responses_review_id` (`review_id`), KEY `review_form_responses_unique` (`review_form_element_id`,`review_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Each review form response records a reviewer''s answer to a review form element associated with a peer review.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `review_form_settings` -- CREATE TABLE `review_form_settings` ( `review_form_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `review_form_id` bigint(20) NOT NULL, `locale` varchar(28) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, `setting_type` varchar(6) NOT NULL, PRIMARY KEY (`review_form_setting_id`), UNIQUE KEY `review_form_settings_unique` (`review_form_id`,`locale`,`setting_name`), KEY `review_form_settings_review_form_id` (`review_form_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about review forms, including localized content such as names.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `review_rounds` -- CREATE TABLE `review_rounds` ( `review_round_id` bigint(20) NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) NOT NULL, `stage_id` bigint(20) DEFAULT NULL, `round` smallint(6) NOT NULL, `review_revision` bigint(20) DEFAULT NULL, `status` bigint(20) DEFAULT NULL, PRIMARY KEY (`review_round_id`), UNIQUE KEY `review_rounds_submission_id_stage_id_round_pkey` (`submission_id`,`stage_id`,`round`), KEY `review_rounds_submission_id` (`submission_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Peer review assignments are organized into multiple rounds on a submission.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `review_round_files` -- CREATE TABLE `review_round_files` ( `review_round_file_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) NOT NULL, `review_round_id` bigint(20) NOT NULL, `stage_id` smallint(6) NOT NULL, `submission_file_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`review_round_file_id`), UNIQUE KEY `review_round_files_unique` (`submission_id`,`review_round_id`,`submission_file_id`), KEY `review_round_files_submission_id` (`submission_id`), KEY `review_round_files_review_round_id` (`review_round_id`), KEY `review_round_files_submission_file_id` (`submission_file_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Records the files made available to reviewers for a round of reviews. These can be further customized on a per review basis with review_files.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `rors` -- CREATE TABLE `rors` ( `ror_id` bigint(20) NOT NULL AUTO_INCREMENT, `ror` varchar(255) NOT NULL, `display_locale` varchar(28) NOT NULL, `is_active` smallint(6) NOT NULL DEFAULT '1', `search_phrase` mediumtext, PRIMARY KEY (`ror_id`), UNIQUE KEY `rors_unique` (`ror`), KEY `rors_display_locale` (`display_locale`), KEY `rors_is_active` (`is_active`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Ror registry dataset cache' AUTO_INCREMENT=117038 ; -- -- Dumping data for table `rors` -- INSERT INTO `rors` VALUES (1, 'https://ror.org/0002pcv65', 'en', 1, 'https://ror.org/0002pcv65 National University of Río Cuarto Universidad Nacional de Río Cuarto'), (2, 'https://ror.org/0003ewr82', 'no_lang_code', 1, 'https://ror.org/0003ewr82 Bundelkhand University'), (3, 'https://ror.org/0004gzs06', 'en', 1, 'https://ror.org/0004gzs06 Hokuyukai Neurology Hospital 医療法人北祐会 北祐会神経内科病院'), (4, 'https://ror.org/0006swh35', 'en', 1, 'https://ror.org/0006swh35 First Affiliated Hospital of Xiamen University 厦门大学附属第一医院'), (5, 'https://ror.org/000849h34', 'en', 1, 'https://ror.org/000849h34 Liverpool Heart and Chest Hospital'), (6, 'https://ror.org/0008s4w86', 'en', 1, 'https://ror.org/0008s4w86 Piedmont Atlanta Hospital'), (7, 'https://ror.org/000917t60', 'en', 1, 'https://ror.org/000917t60 Autonomous University of San Luis Potosí Universidad Autónoma de San Luis Potosí'), (8, 'https://ror.org/000a2sx58', 'en', 1, 'https://ror.org/000a2sx58 Centre for European Policy Studies'), (9, 'https://ror.org/000bvba82', 'no_lang_code', 1, 'https://ror.org/000bvba82 Biomarker Technologies (China) 百迈客生物科技'), (10, 'https://ror.org/000bxzc63', 'en', 1, 'https://ror.org/000bxzc63 Max Planck Institute for Medical Research Max-Planck-Institut für Medizinische Forschung'), (11, 'https://ror.org/000c39f30', 'en', 1, 'https://ror.org/000c39f30 Al Ain Hospital مستشفى العين'), (12, 'https://ror.org/000ezn412', 'en', 1, 'https://ror.org/000ezn412 Sawai Man Singh Hospital'), (13, 'https://ror.org/000f32327', 'en', 1, 'https://ror.org/000f32327 Saint Vincent Hospital'), (14, 'https://ror.org/000fvwg06', 'en', 1, 'https://ror.org/000fvwg06 Queen Sirikit National Institute of Child Health'), (15, 'https://ror.org/000jd8a09', 'no_lang_code', 1, 'https://ror.org/000jd8a09 Mafraq Hospital مستشفى المفرق'), (16, 'https://ror.org/000kb2a90', 'en', 1, 'https://ror.org/000kb2a90 Mymensingh Medical College Hospital ময়মনসিংহ মেডিকেল কলেজ'), (17, 'https://ror.org/000ke5995', 'en', 1, 'https://ror.org/000ke5995 Western Galilee Hospital'), (18, 'https://ror.org/000p7hm12', 'en', 1, 'https://ror.org/000p7hm12 National Skin Centre'), (19, 'https://ror.org/000pfrh90', 'en', 1, 'https://ror.org/000pfrh90 Baptist Hospital of Miami'), (20, 'https://ror.org/000qzf213', 'en', 1, 'https://ror.org/000qzf213 Korea University of Science and Technology 과학기술연합대학원대학교'), (21, 'https://ror.org/000rgm762', 'en', 1, 'https://ror.org/000rgm762 VA Connecticut Healthcare System'), (22, 'https://ror.org/000rs7940', 'fr', 1, 'https://ror.org/000rs7940 Hôpital de la Providence'), (23, 'https://ror.org/000rxe202', 'no_lang_code', 1, 'https://ror.org/000rxe202 Medical Decision Logic'), (24, 'https://ror.org/000tm9s39', 'fr', 1, 'https://ror.org/000tm9s39 Centre Hospitalier Saint-Charles'), (25, 'https://ror.org/000tqtb97', 'no_lang_code', 1, 'https://ror.org/000tqtb97 Rafik Hariri University Hospital مستشفى رفيق الحريري الجامعي'), (26, 'https://ror.org/000vg5909', 'en', 1, 'https://ror.org/000vg5909 Health & Medical Publishing Group'), (27, 'https://ror.org/000vjzq57', 'en', 1, 'https://ror.org/000vjzq57 Memphis VA Medical Center'), (28, 'https://ror.org/000vvpv33', 'en', 1, 'https://ror.org/000vvpv33 Social Insurance Yokohama Central Hospital 横浜中央病院'), (29, 'https://ror.org/000w57b95', 'en', 1, 'https://ror.org/000w57b95 Institute of Public Health Instituti i Shëndetit Publik'), (30, 'https://ror.org/000yct867', 'en', 1, 'https://ror.org/000yct867 Bridgeport Hospital'), (31, 'https://ror.org/000ywep40', 'en', 1, 'https://ror.org/000ywep40 NHS Tayside'), (32, 'https://ror.org/000zamq06', 'en', 1, 'https://ror.org/000zamq06 Franklin W. Olin College of Engineering'), (33, 'https://ror.org/0011azt19', 'en', 1, 'https://ror.org/0011azt19 Saint Agnes Hospital'), (34, 'https://ror.org/0011qv509', 'en', 1, 'https://ror.org/0011qv509 University of Tennessee Health Science Center'), (35, 'https://ror.org/0015hpp74', 'en', 1, 'https://ror.org/0015hpp74 Hannah Research Foundation'), (36, 'https://ror.org/0015hye09', 'no_lang_code', 1, 'https://ror.org/0015hye09 Tokyo Metropolitan Ohtsuka Hospital 東京都立大塚病院'), (37, 'https://ror.org/0015r4831', 'en', 1, 'https://ror.org/0015r4831 Government Medical College Bhavnagar'), (38, 'https://ror.org/00184ca40', 'no_lang_code', 1, 'https://ror.org/00184ca40 Ballard Power Systems (Canada)'), (39, 'https://ror.org/00186jw56', 'en', 1, 'https://ror.org/00186jw56 Northwestern Health Sciences University'), (40, 'https://ror.org/00186nd07', 'en', 1, 'https://ror.org/00186nd07 Gajara Raja Medical College'), (41, 'https://ror.org/00190t495', 'en', 1, 'https://ror.org/00190t495 National Center for Complementary and Integrative Health'), (42, 'https://ror.org/001b4cb05', 'en', 1, 'https://ror.org/001b4cb05 National University of Trujillo Universidad Nacional de Trujillo'), (43, 'https://ror.org/001be0c19', 'en', 1, 'https://ror.org/001be0c19 Centennial Medical Center'), (44, 'https://ror.org/001c9fg13', 'ro', 1, 'https://ror.org/001c9fg13 Unitatea Executiva Pentru Finantarea Invatamantului Superior Si A Cercetarii Stiintifice Universitare'), (45, 'https://ror.org/001c9gn96', 'en', 1, 'https://ror.org/001c9gn96 University of Science and Arts of Oklahoma'), (46, 'https://ror.org/001g7jx32', 'en', 1, 'https://ror.org/001g7jx32 New Britain General Hospital'), (47, 'https://ror.org/001hsnn10', 'en', 1, 'https://ror.org/001hsnn10 Medical Technology and Practice Patterns Institute'), (48, 'https://ror.org/001hv0k59', 'en', 1, 'https://ror.org/001hv0k59 Toyota Technological Institute 豊田工業大学'), (49, 'https://ror.org/001hz0050', 'en', 1, 'https://ror.org/001hz0050 Capital Regional District'), (50, 'https://ror.org/001m5qg34', 'en', 1, 'https://ror.org/001m5qg34 Darent Valley Hospital'), (51, 'https://ror.org/001rzdq81', 'no_lang_code', 1, 'https://ror.org/001rzdq81 State of The Art'), (52, 'https://ror.org/001v19997', 'tr', 1, 'https://ror.org/001v19997 Eskişehir Osmangazi Üniversitesi Tıp Fakültesi Hastanesi'), (53, 'https://ror.org/001v2ey71', 'en', 1, 'https://ror.org/001v2ey71 The Fourth People''s Hospital'), (54, 'https://ror.org/001wpa366', 'fr', 1, 'https://ror.org/001wpa366 HIA du Val-de-Grâce à Paris, Hôpital d''instruction des armées du Val-de-Grâce'), (55, 'https://ror.org/001x4vz59', 'en', 1, 'https://ror.org/001x4vz59 St Mary''s Hospital'), (56, 'https://ror.org/001xq1j98', 'en', 1, 'https://ror.org/001xq1j98 Covenant Health'), (57, 'https://ror.org/001yjqf23', 'en', 1, 'https://ror.org/001yjqf23 Kuang Tien General Hospital 光田綜合醫院'), (58, 'https://ror.org/001zf8v27', 'en', 1, 'https://ror.org/001zf8v27 Institute for Interdisciplinary Studies of Austrian Universities'), (59, 'https://ror.org/0020hse07', 'en', 1, 'https://ror.org/0020hse07 Aberdeen Maternity Hospital'), (60, 'https://ror.org/0020x6414', 'en', 1, 'https://ror.org/0020x6414 Hunter Medical Research Institute'), (61, 'https://ror.org/0022b3c04', 'en', 1, 'https://ror.org/0022b3c04 Nottingham City Hospital'), (62, 'https://ror.org/00243c192', 'en', 1, 'https://ror.org/00243c192 Monroe Community Hospital'), (63, 'https://ror.org/0024aa414', 'en', 1, 'https://ror.org/0024aa414 National Institute of Public Health 国立保健医療科学院'), (64, 'https://ror.org/0024qhz65', 'en', 1, 'https://ror.org/0024qhz65 Bir Hospital बीर अस्पताल'), (65, 'https://ror.org/0025e3007', 'no_lang_code', 1, 'https://ror.org/0025e3007 TIBCO Software (United States)'), (66, 'https://ror.org/0025g8755', 'en', 1, 'https://ror.org/0025g8755 Luigi Sacco Hospital Ospedale Luigi Sacco'), (67, 'https://ror.org/0026m8b31', 'it', 1, 'https://ror.org/0026m8b31 Ospedale San Paolo'), (68, 'https://ror.org/00274we69', 'no_lang_code', 1, 'https://ror.org/00274we69 Himchan Hospital 부평 힘찬병원'), (69, 'https://ror.org/0028g5429', 'en', 1, 'https://ror.org/0028g5429 Community Medical Center'), (70, 'https://ror.org/0029a9d62', 'en', 1, 'https://ror.org/0029a9d62 California Pacific University'), (71, 'https://ror.org/0029f7m05', 'en', 1, 'https://ror.org/0029f7m05 Geological Society of America'), (72, 'https://ror.org/0029n1t76', 'en', 1, 'https://ror.org/0029n1t76 Southern Taiwan University of Science and Technology'), (73, 'https://ror.org/002bjfj29', 'de', 1, 'https://ror.org/002bjfj29 München Klinik Schwabing'), (74, 'https://ror.org/002f2sy95', 'en', 1, 'https://ror.org/002f2sy95 Avila University'), (75, 'https://ror.org/002g9dc27', 'en', 1, 'https://ror.org/002g9dc27 Inoue Hospital 井上病院'), (76, 'https://ror.org/002gmks55', 'pt', 1, 'https://ror.org/002gmks55 Instituto Superior de Educação e Trabalho'), (77, 'https://ror.org/002hsbm82', 'en', 1, 'https://ror.org/002hsbm82 Tufts Medical Center'), (78, 'https://ror.org/002k8gm39', 'en', 1, 'https://ror.org/002k8gm39 Vikram University विक्रम विश्वविद्यालय'), (79, 'https://ror.org/002ksg449', 'en', 1, 'https://ror.org/002ksg449 Mary Crowley Cancer Research Center'), (80, 'https://ror.org/002nav185', 'en', 1, 'https://ror.org/002nav185 Seoul Medical Center 서울 의료원'), (81, 'https://ror.org/002q1t780', 'en', 1, 'https://ror.org/002q1t780 Henrietta Egleston Hospital for Children'), (82, 'https://ror.org/002rw7y37', 'no_lang_code', 1, 'https://ror.org/002rw7y37 Aoyama Gakuin University 青山学院大学'), (83, 'https://ror.org/002tz8e96', 'en', 1, 'https://ror.org/002tz8e96 Shaikh Zayed Hospital'), (84, 'https://ror.org/002x0mf51', 'tr', 1, 'https://ror.org/002x0mf51 Mareşal Çakmak Askeri Hastanesi'), (85, 'https://ror.org/002yfn631', 'en', 1, 'https://ror.org/002yfn631 Kuakini Medical Center'), (86, 'https://ror.org/002zf4a56', 'en', 1, 'https://ror.org/002zf4a56 Waikato Hospital'), (87, 'https://ror.org/002ztb251', 'en', 1, 'https://ror.org/002ztb251 Ganesh Shankar Vidyarthi Memorial Medical College गणेश शंकर विद्यार्थी मेमोरियल मेडिकल कॉलेज'), (88, 'https://ror.org/0030d2559', 'en', 1, 'https://ror.org/0030d2559 Escola Médico-Cirúrgica de Goa Goa Medical College'), (89, 'https://ror.org/0031afh91', 'en', 1, 'https://ror.org/0031afh91 Henan Provincial Institute of Occupational Health 职业健康河南省研究所'), (90, 'https://ror.org/0031nsg68', 'en', 1, 'https://ror.org/0031nsg68 Hankyong National University 한경대학교'), (91, 'https://ror.org/0032p1p15', 'en', 1, 'https://ror.org/0032p1p15 Chubu National Hospital 中部国立病院'), (92, 'https://ror.org/00337p258', 'no_lang_code', 1, 'https://ror.org/00337p258 Koshien University 甲子園大学'), (93, 'https://ror.org/00372qc85', 'en', 1, 'https://ror.org/00372qc85 National Institute of Biomedical Imaging and Bioengineering'), (94, 'https://ror.org/0037yf233', 'en', 1, 'https://ror.org/0037yf233 Exploratorium'), (95, 'https://ror.org/0038gz437', 'en', 1, 'https://ror.org/0038gz437 Newman University'), (96, 'https://ror.org/0038nst28', 'no_lang_code', 1, 'https://ror.org/0038nst28 Kwangju Christian Hospital 광주기독병원'), (97, 'https://ror.org/003ammk23', 'en', 1, 'https://ror.org/003ammk23 Walsh University'), (98, 'https://ror.org/003dzgw21', 'fr', 1, 'https://ror.org/003dzgw21 Centre Technique Des Industries De La Fonderie'), (99, 'https://ror.org/003g7k569', 'no_lang_code', 1, 'https://ror.org/003g7k569 Litron Laboratories (United States)'), (100, 'https://ror.org/003hhqx84', 'it', 1, 'https://ror.org/003hhqx84 Ospedale Antonio Cardarelli'), (101, 'https://ror.org/003hjp881', 'pt', 1, 'https://ror.org/003hjp881 Hospital Madre Teresa'), (102, 'https://ror.org/003j5cv40', 'en', 1, 'https://ror.org/003j5cv40 Haskins Laboratories'), (103, 'https://ror.org/003k75717', 'en', 1, 'https://ror.org/003k75717 Advocate Health Care'), (104, 'https://ror.org/003m0tv02', 'en', 1, 'https://ror.org/003m0tv02 Michigan Public Health Institute'), (105, 'https://ror.org/003mte806', 'pt', 1, 'https://ror.org/003mte806 Instituto Superior de Administração e Línguas'), (106, 'https://ror.org/003ncyx50', 'no_lang_code', 1, 'https://ror.org/003ncyx50 Lourdes Hospital'), (107, 'https://ror.org/003nj8h62', 'en', 1, 'https://ror.org/003nj8h62 L-Isptar San Luqa St. Luke''s Hospital'), (108, 'https://ror.org/003nvpm64', 'en', 1, 'https://ror.org/003nvpm64 Christchurch Hospital'), (109, 'https://ror.org/003rmx748', 'en', 1, 'https://ror.org/003rmx748 Holy Spirit Northside Private Hospital'), (110, 'https://ror.org/003sav189', 'de', 1, 'https://ror.org/003sav189 Institute for Information Technology Oldenburger Institut für Informatik'), (111, 'https://ror.org/003sav965', 'en', 1, 'https://ror.org/003sav965 Tianjin Medical University General Hospital 天津医科大学总医院'), (112, 'https://ror.org/003sphj24', 'en', 1, 'https://ror.org/003sphj24 Soroka Medical Center'), (113, 'https://ror.org/003sqpd76', 'en', 1, 'https://ror.org/003sqpd76 Agruicultural Research Institute'), (114, 'https://ror.org/003sw8164', 'en', 1, 'https://ror.org/003sw8164 Inland Hospital Sykehuset Innlandet'), (115, 'https://ror.org/003t0xc83', 'en', 1, 'https://ror.org/003t0xc83 Glenbrook Hospital'), (116, 'https://ror.org/003vfy751', 'fr', 1, 'https://ror.org/003vfy751 University of Burundi Université du Burundi'), (117, 'https://ror.org/003vkcj31', 'en', 1, 'https://ror.org/003vkcj31 University of Teacher Education Fukuoka 福岡教育大学'), (118, 'https://ror.org/003x8tf04', 'no_lang_code', 1, 'https://ror.org/003x8tf04 Profilarbed (Luxembourg)'), (119, 'https://ror.org/003zecf96', 'es', 1, 'https://ror.org/003zecf96 Hospital San Agustin'), (120, 'https://ror.org/004106086', 'en', 1, 'https://ror.org/004106086 Sendai Red Cross Hospital 仙台赤十字病院'), (121, 'https://ror.org/00414dg76', 'en', 1, 'https://ror.org/00414dg76 Rady Children''s Hospital-San Diego'), (122, 'https://ror.org/0041bpv82', 'en', 1, 'https://ror.org/0041bpv82 Hospital Sultanah Aminah Sultanah Aminah Hospital'), (123, 'https://ror.org/004350h06', 'en', 1, 'https://ror.org/004350h06 Saint Vincent Hospital'), (124, 'https://ror.org/00458wv14', 'en', 1, 'https://ror.org/00458wv14 Tianjin Beichen Hospital'), (125, 'https://ror.org/0046mja08', 'en', 1, 'https://ror.org/0046mja08 An-Najah National University جامعة النجاح الوطنية'), (126, 'https://ror.org/0048myj07', 'it', 1, 'https://ror.org/0048myj07 Ospedale del Ceppo'), (127, 'https://ror.org/0049erg63', 'en', 1, 'https://ror.org/0049erg63 Kookmin University 국민대학교'), (128, 'https://ror.org/004a7s815', 'sv', 1, 'https://ror.org/004a7s815 Blekingesjukhuset'), (129, 'https://ror.org/004cj7n30', 'en', 1, 'https://ror.org/004cj7n30 King''s Cross Hospital'), (130, 'https://ror.org/004dwfr15', 'en', 1, 'https://ror.org/004dwfr15 Kursk State Medical University Курский государственный медицинский университет'), (131, 'https://ror.org/004fmj330', 'no_lang_code', 1, 'https://ror.org/004fmj330 Technical Resources International (United States)'), (132, 'https://ror.org/004gqpt18', 'de', 1, 'https://ror.org/004gqpt18 Landeskrankenhaus Feldkirch'), (133, 'https://ror.org/004jktf35', 'en', 1, 'https://ror.org/004jktf35 Swedish Medical Center'), (134, 'https://ror.org/004kyan19', 'en', 1, 'https://ror.org/004kyan19 Maricopa County Community College District'), (135, 'https://ror.org/004nhy279', 'en', 1, 'https://ror.org/004nhy279 Barnet Hospital'), (136, 'https://ror.org/004q6ee74', 'no_lang_code', 1, 'https://ror.org/004q6ee74 Technical Research Associates (United States)'), (137, 'https://ror.org/004qj2391', 'es', 1, 'https://ror.org/004qj2391 Hospital General De Segovia'), (138, 'https://ror.org/004rs4477', 'en', 1, 'https://ror.org/004rs4477 Masonic Medical Research Laboratory'), (139, 'https://ror.org/004srrf86', 'en', 1, 'https://ror.org/004srrf86 Abilene Christian University Universidad Cristiana de Abilene'), (140, 'https://ror.org/004sxt390', 'en', 1, 'https://ror.org/004sxt390 North Park University'), (141, 'https://ror.org/004t34t94', 'no_lang_code', 1, 'https://ror.org/004t34t94 Tsuchiura Kyodo General Hospital 総合病院 土浦協同病院'), (142, 'https://ror.org/004we6052', 'en', 1, 'https://ror.org/004we6052 Holy Family Hospital'), (143, 'https://ror.org/0050r1b65', 'en', 1, 'https://ror.org/0050r1b65 Third Affiliated Hospital of Southern Medical University 南方医科大学第三附属医院'), (144, 'https://ror.org/0050ra204', 'it', 1, 'https://ror.org/0050ra204 Centro Studi Sui Sistemi Di Trasporto Spa'), (145, 'https://ror.org/00514rc81', 'en', 1, 'https://ror.org/00514rc81 Royal Hallamshire Hospital'), (146, 'https://ror.org/00520ze08', 'en', 1, 'https://ror.org/00520ze08 South Carolina State University'), (147, 'https://ror.org/0055d0g64', 'en', 1, 'https://ror.org/0055d0g64 Academia de la Fuerza Aérea de los Estados Unidos United States Air Force Academy'), (148, 'https://ror.org/0057da036', 'en', 1, 'https://ror.org/0057da036 Mercy San Juan Medical Center'), (149, 'https://ror.org/0057s8s52', 'en', 1, 'https://ror.org/0057s8s52 John D. Dingell VA Medical Center'), (150, 'https://ror.org/00582g326', 'en', 1, 'https://ror.org/00582g326 Indian Institute of Technology Roorkee भारतीय प्रौद्योगिकी संस्थान रुड़की இந்திய தொழில்நுட்பக் கழகம் ரூர்க்கி ఇండియన్ ఇన్స్టిట్యూట్ ఆఫ్ టెక్నాలజీ రూర్కీ ഇന്ത്യൻ ഇൻസ്റ്റിറ്റ്യൂട്ട് ഓഫ് ടെക്നോളജി റൂർക്കി'), (151, 'https://ror.org/005927371', 'en', 1, 'https://ror.org/005927371 Ching Kuo Institute of Management and Health 經國管理暨健康學院'), (152, 'https://ror.org/0059h1f24', 'en', 1, 'https://ror.org/0059h1f24 Prefectural University of Hiroshima 県立広島大学'), (153, 'https://ror.org/0059hys23', 'fr', 1, 'https://ror.org/0059hys23 Hôpital Farhat Hached'), (154, 'https://ror.org/005b2mc68', 'no_lang_code', 1, 'https://ror.org/005b2mc68 NEC (United Kingdom)'), (155, 'https://ror.org/005bty106', 'en', 1, 'https://ror.org/005bty106 Eulji University 을지대학교'), (156, 'https://ror.org/005ezrx44', 'en', 1, 'https://ror.org/005ezrx44 South-West State University Юго-Западный государственный университет'), (157, 'https://ror.org/005fgpm31', 'en', 1, 'https://ror.org/005fgpm31 Dayanand Medical College & Hospital'), (158, 'https://ror.org/005gkfa10', 'en', 1, 'https://ror.org/005gkfa10 National Changhua University of Education 國立彰化師範大學'), (159, 'https://ror.org/005h65c20', 'en', 1, 'https://ror.org/005h65c20 Metropolitan Hospital Center'), (160, 'https://ror.org/005h6qd35', 'en', 1, 'https://ror.org/005h6qd35 Government Medical College'), (161, 'https://ror.org/005qv5373', 'en', 1, 'https://ror.org/005qv5373 Wakayama Medical University 和歌山県立医科大学'), (162, 'https://ror.org/005qzv038', 'en', 1, 'https://ror.org/005qzv038 Munson Medical Center'), (163, 'https://ror.org/005r9p256', 'en', 1, 'https://ror.org/005r9p256 Royal Derby Hospital'), (164, 'https://ror.org/005s69p38', 'it', 1, 'https://ror.org/005s69p38 Azienda Ospedaliera Ospedale San Carlo Borromeo'), (165, 'https://ror.org/005t72d47', 'en', 1, 'https://ror.org/005t72d47 Antrim Area Hospital'), (166, 'https://ror.org/005tw0h26', 'en', 1, 'https://ror.org/005tw0h26 University Clinical Center of Kosovo'), (167, 'https://ror.org/005w9jb47', 'en', 1, 'https://ror.org/005w9jb47 Lawrence University Universidad Lawrence'), (168, 'https://ror.org/005wpyn57', 'en', 1, 'https://ror.org/005wpyn57 Children''s Hospital Mansoura University'), (169, 'https://ror.org/005yg7304', 'no_lang_code', 1, 'https://ror.org/005yg7304 STAR Analytical Services'), (170, 'https://ror.org/005ywsr52', 'en', 1, 'https://ror.org/005ywsr52 Friends University'), (171, 'https://ror.org/005zah758', 'en', 1, 'https://ror.org/005zah758 Southern Nazarene University'), (172, 'https://ror.org/0060t0j89', 'en', 1, 'https://ror.org/0060t0j89 Biblioteca Nacional de Medicina United States National Library of Medicine'), (173, 'https://ror.org/0065kgn45', 'en', 1, 'https://ror.org/0065kgn45 Center for Studying Health System Change'), (174, 'https://ror.org/0065mvt73', 'es', 1, 'https://ror.org/0065mvt73 Hospital Costa del Sol'), (175, 'https://ror.org/006776986', 'no_lang_code', 1, 'https://ror.org/006776986 Wonkwang University 원광대학교'), (176, 'https://ror.org/0067dx910', 'en', 1, 'https://ror.org/0067dx910 Missouri Baptist Medical Center'), (177, 'https://ror.org/00682eh61', 'en', 1, 'https://ror.org/00682eh61 Detroit Receiving Hospital'), (178, 'https://ror.org/0069p7h69', 'en', 1, 'https://ror.org/0069p7h69 Tokushima Breast Care Clinic とくしまブレストケアクリニック'), (179, 'https://ror.org/006bvjm48', 'en', 1, 'https://ror.org/006bvjm48 Hengyang Normal University'), (180, 'https://ror.org/006c1jc70', 'en', 1, 'https://ror.org/006c1jc70 UK Material Technology Research Institute'), (181, 'https://ror.org/006c6a937', 'no_lang_code', 1, 'https://ror.org/006c6a937 Intelligent Hearing Systems (United States)'), (182, 'https://ror.org/006cvnv84', 'en', 1, 'https://ror.org/006cvnv84 Social Science Research Council'), (183, 'https://ror.org/006f92m60', 'en', 1, 'https://ror.org/006f92m60 Duchess of Kent Children''s Hospital 大口環根德公爵夫人兒童醫院'), (184, 'https://ror.org/006g42111', 'en', 1, 'https://ror.org/006g42111 Birmingham–Southern College'), (185, 'https://ror.org/006gdh317', 'en', 1, 'https://ror.org/006gdh317 Meijo Hospital 名城病院'), (186, 'https://ror.org/006gvnw06', 'en', 1, 'https://ror.org/006gvnw06 North Dakota Department of Health'), (187, 'https://ror.org/006j1e620', 'en', 1, 'https://ror.org/006j1e620 Georgia Department of Human Services'), (188, 'https://ror.org/006jjmw19', 'en', 1, 'https://ror.org/006jjmw19 Hospital de la Universidad de Colorado University of Colorado Hospital'), (189, 'https://ror.org/006jxzx88', 'en', 1, 'https://ror.org/006jxzx88 Bond University'), (190, 'https://ror.org/006k2kk72', 'en', 1, 'https://ror.org/006k2kk72 Düsseldorf University Hospital Universitätsklinikum Düsseldorf'), (191, 'https://ror.org/006kce638', 'es', 1, 'https://ror.org/006kce638 Instituto Tecnológico del Calzado y Conexas'), (192, 'https://ror.org/006nc8n95', 'pt', 1, 'https://ror.org/006nc8n95 Mackenzie Presbyterian University Universidade Presbiteriana Mackenzie'), (193, 'https://ror.org/006pw7k84', 'en', 1, 'https://ror.org/006pw7k84 Ambrose Alli University Yunifásítì Ambrose Alli'), (194, 'https://ror.org/006qqk144', 'no_lang_code', 1, 'https://ror.org/006qqk144 Fukui Prefectural Hospital 福井県立病院'), (195, 'https://ror.org/006qssd78', 'pt', 1, 'https://ror.org/006qssd78 Universidade do Sul de Santa Catarina'), (196, 'https://ror.org/006rhxn50', 'no_lang_code', 1, 'https://ror.org/006rhxn50 FORCE Technology (Denmark)'), (197, 'https://ror.org/006t60p65', 'en', 1, 'https://ror.org/006t60p65 LeTourneau University'), (198, 'https://ror.org/006x15235', 'en', 1, 'https://ror.org/006x15235 Instituto Nacional de Engenharia, Tecnologia e Inovação National Institute of Engineering, Technology and Innovation'), (199, 'https://ror.org/006x9gw30', 'no_lang_code', 1, 'https://ror.org/006x9gw30 Koronis Biomedical Technologies (United States)'), (200, 'https://ror.org/006xsx833', 'nl', 1, 'https://ror.org/006xsx833 Geneeskundige en Gezondheidsdienst'), (201, 'https://ror.org/006xyf785', 'en', 1, 'https://ror.org/006xyf785 James A. Haley Veterans'' Hospital'), (202, 'https://ror.org/006y27614', 'en', 1, 'https://ror.org/006y27614 Keesler Medical Center'), (203, 'https://ror.org/006yqdy38', 'en', 1, 'https://ror.org/006yqdy38 Min Sheng General Hospital 敏盛綜合醫院'), (204, 'https://ror.org/0070ga397', 'en', 1, 'https://ror.org/0070ga397 John F. Kennedy Medical Center'), (205, 'https://ror.org/0071a2k97', 'en', 1, 'https://ror.org/0071a2k97 Queen Elizabeth II Medical Centre'), (206, 'https://ror.org/00756eb27', 'no_lang_code', 1, 'https://ror.org/00756eb27 Barlow Scientific'), (207, 'https://ror.org/0077fnc39', 'en', 1, 'https://ror.org/0077fnc39 Greater Baltimore Medical Center'), (208, 'https://ror.org/0077pzv34', 'en', 1, 'https://ror.org/0077pzv34 Manitoba Health'), (209, 'https://ror.org/0077tm911', 'en', 1, 'https://ror.org/0077tm911 Iowa Department of Human Services'), (210, 'https://ror.org/007b9cn27', 'en', 1, 'https://ror.org/007b9cn27 National Polytechnic University of Armenia Հայաստանի ազգային պոլիտեխնիկական համալսարան'), (211, 'https://ror.org/007dga614', 'en', 1, 'https://ror.org/007dga614 Bloomsburg University'), (212, 'https://ror.org/007e71662', 'en', 1, 'https://ror.org/007e71662 Miyagi Children''s Hospital 宮城県立こども病院'), (213, 'https://ror.org/007evha27', 'en', 1, 'https://ror.org/007evha27 Cooper Medical School of Rowan University'), (214, 'https://ror.org/007f1da21', 'en', 1, 'https://ror.org/007f1da21 University of Baghdad جامعة بغداد'), (215, 'https://ror.org/007fenw03', 'en', 1, 'https://ror.org/007fenw03 Government Medical College ഗവൺമെന്റ് മെഡിക്കൽ കോളേജ്, തിരുവനന്തപുരം'), (216, 'https://ror.org/007fyq698', 'en', 1, 'https://ror.org/007fyq698 VA Salt Lake City Healthcare System'), (217, 'https://ror.org/007h1g065', 'en', 1, 'https://ror.org/007h1g065 Universidad de Tampa University of Tampa'), (218, 'https://ror.org/007hzv648', 'fr', 1, 'https://ror.org/007hzv648 Hôpital Saint Lazare'), (219, 'https://ror.org/007jxr441', 'en', 1, 'https://ror.org/007jxr441 Society For Developmental Biology'), (220, 'https://ror.org/007n03h88', 'en', 1, 'https://ror.org/007n03h88 Purdue Research Foundation'), (221, 'https://ror.org/007sp7t15', 'en', 1, 'https://ror.org/007sp7t15 INTEGRIS Baptist Medical Center'), (222, 'https://ror.org/007tn5k56', 'en', 1, 'https://ror.org/007tn5k56 Seton Hall University'), (223, 'https://ror.org/007vcvm35', 'en', 1, 'https://ror.org/007vcvm35 North Karelia Central Hospital Pohjois-Karjalan Sairaanhoito- Ja Sosiaalipalvelujen Kuntayhtymä'), (224, 'https://ror.org/007x9se63', 'en', 1, 'https://ror.org/007x9se63 Center for Devices and Radiological Health'), (225, 'https://ror.org/007xad319', 'en', 1, 'https://ror.org/007xad319 Gezondheidsraad The Health Council of the Netherlands'), (226, 'https://ror.org/007xcwj53', 'de', 1, 'https://ror.org/007xcwj53 Klinikum Klagenfurt'), (227, 'https://ror.org/0080acb59', 'en', 1, 'https://ror.org/0080acb59 John Radcliffe Hospital'), (228, 'https://ror.org/00839we02', 'en', 1, 'https://ror.org/00839we02 Acadia University'), (229, 'https://ror.org/0084g8g60', 'tr', 1, 'https://ror.org/0084g8g60 Bayındır Hastanesi'), (230, 'https://ror.org/0084te143', 'fr', 1, 'https://ror.org/0084te143 Centre Hospitalier Universitaire de Besançon'), (231, 'https://ror.org/0086ms749', 'en', 1, 'https://ror.org/0086ms749 Arnold Palmer Hospital for Children'), (232, 'https://ror.org/0086rpr26', 'en', 1, 'https://ror.org/0086rpr26 University of Sargodha'), (233, 'https://ror.org/008a4de11', 'en', 1, 'https://ror.org/008a4de11 Manhattan Eye, Ear and Throat Hospital'), (234, 'https://ror.org/008c4hs90', 'no_lang_code', 1, 'https://ror.org/008c4hs90 Niigata Prefectural Shibata Hospital 新潟県立新発田病院'), (235, 'https://ror.org/008dmmd16', 'fr', 1, 'https://ror.org/008dmmd16 Hôpital Ophtalmique Jules-Gonin'), (236, 'https://ror.org/008encc97', 'en', 1, 'https://ror.org/008encc97 East–West Center'), (237, 'https://ror.org/008hybe55', 'en', 1, 'https://ror.org/008hybe55 JILA, Joint Institute for Laboratory Astrophysics'), (238, 'https://ror.org/008j59125', 'en', 1, 'https://ror.org/008j59125 Aintree University Hospital'), (239, 'https://ror.org/008jvv944', 'fr', 1, 'https://ror.org/008jvv944 Héma-Québec'), (240, 'https://ror.org/008ms5s18', 'en', 1, 'https://ror.org/008ms5s18 Lamar University'), (241, 'https://ror.org/008p85724', 'en', 1, 'https://ror.org/008p85724 Guangdong Province Stomatological Hospital 广东省口腔医院'), (242, 'https://ror.org/008pwh115', 'en', 1, 'https://ror.org/008pwh115 Florida Memorial University'), (243, 'https://ror.org/008r2d260', 'en', 1, 'https://ror.org/008r2d260 Louisiana State University Hospital'), (244, 'https://ror.org/008rqvc37', 'en', 1, 'https://ror.org/008rqvc37 Lata Medical Research Foundation'), (245, 'https://ror.org/008wtrs16', 'pt', 1, 'https://ror.org/008wtrs16 Instituto Superior de Ciências Educativas'), (246, 'https://ror.org/008x57b05', 'en', 1, 'https://ror.org/008x57b05 Universiteit Antwerpen University of Antwerp Universität Antwerpen Université d''Anvers'), (247, 'https://ror.org/008x85y42', 'no_lang_code', 1, 'https://ror.org/008x85y42 Hospital Bqyhallh بیمارستان بقیةالله'), (248, 'https://ror.org/008xr7e22', 'en', 1, 'https://ror.org/008xr7e22 Mercy Health System'), (249, 'https://ror.org/008zj0x80', 'en', 1, 'https://ror.org/008zj0x80 Hackensack University Medical Center'), (250, 'https://ror.org/0091mqf26', 'en', 1, 'https://ror.org/0091mqf26 Oita Medical Center 国立病院機構 大分医療センタ'), (251, 'https://ror.org/0092qhe76', 'no_lang_code', 1, 'https://ror.org/0092qhe76 Sanaria'), (252, 'https://ror.org/0093xcb35', 'en', 1, 'https://ror.org/0093xcb35 Ashikaga Red Cross Hospital 足利赤十字病院'), (253, 'https://ror.org/00944ve71', 'en', 1, 'https://ror.org/00944ve71 National Central University'), (254, 'https://ror.org/00947s692', 'en', 1, 'https://ror.org/00947s692 Kurashiki Central Hospital 倉敷中央病院'), (255, 'https://ror.org/00952fj37', 'en', 1, 'https://ror.org/00952fj37 Jinnah Postgraduate Medical Center'), (256, 'https://ror.org/009543z50', 'en', 1, 'https://ror.org/009543z50 Northwestern Memorial Hospital'), (257, 'https://ror.org/0098kke80', 'no_lang_code', 1, 'https://ror.org/0098kke80 Rakuten (Japan) 楽天株式会社'), (258, 'https://ror.org/0099kc363', 'en', 1, 'https://ror.org/0099kc363 Sardar Patel Medical College'), (259, 'https://ror.org/009afvb77', 'en', 1, 'https://ror.org/009afvb77 Provincial Laboratory of Public Health'), (260, 'https://ror.org/009at8f10', 'fr', 1, 'https://ror.org/009at8f10 Hôpital Laveran'), (261, 'https://ror.org/009c06z12', 'en', 1, 'https://ror.org/009c06z12 Intermountain Medical Center'), (262, 'https://ror.org/009djsq06', 'en', 1, 'https://ror.org/009djsq06 King Abdulaziz Medical City مدينة الملك عبد العزيز الطبية للحرس الوطني'), (263, 'https://ror.org/009e5cd49', 'en', 1, 'https://ror.org/009e5cd49 Sun Moon University 선문대학교'), (264, 'https://ror.org/009ek3139', 'en', 1, 'https://ror.org/009ek3139 Falun Hospital'), (265, 'https://ror.org/009erh992', 'en', 1, 'https://ror.org/009erh992 Sharp Rees-Stealy Medical Group'), (266, 'https://ror.org/009fhc817', 'pl', 1, 'https://ror.org/009fhc817 Szpital im Tadeusza Marciniaka'), (267, 'https://ror.org/009fnyh39', 'en', 1, 'https://ror.org/009fnyh39 Malabar Institute of Medical Sciences'), (268, 'https://ror.org/009gqrs30', 'pt', 1, 'https://ror.org/009gqrs30 Hospital Moinhos de Vento'), (269, 'https://ror.org/009hj8759', 'en', 1, 'https://ror.org/009hj8759 Grady Memorial Hospital'), (270, 'https://ror.org/009k7c907', 'en', 1, 'https://ror.org/009k7c907 Northern Health'), (271, 'https://ror.org/009nscf91', 'fr', 1, 'https://ror.org/009nscf91 Centre Hospitalier Universitaire Mohammed VI'), (272, 'https://ror.org/009p4eg54', 'en', 1, 'https://ror.org/009p4eg54 Tilka Manjhi Bhagalpur University तिलका मांझी भागलपुर विश्वविद्यालय'), (273, 'https://ror.org/009q6vg88', 'no_lang_code', 1, 'https://ror.org/009q6vg88 Virogenomics BioDevelopment (United States)'), (274, 'https://ror.org/009qqcw96', 'en', 1, 'https://ror.org/009qqcw96 Lehigh Valley Hospital Muhlenberg'), (275, 'https://ror.org/009raxq57', 'en', 1, 'https://ror.org/009raxq57 Mercy Medical Center'), (276, 'https://ror.org/009rt9f88', 'en', 1, 'https://ror.org/009rt9f88 Inova Loudoun Hospital'), (277, 'https://ror.org/009sa0g06', 'en', 1, 'https://ror.org/009sa0g06 Royal Liverpool and Broadgreen University Hospital NHS Trust'), (278, 'https://ror.org/009szpe27', 'en', 1, 'https://ror.org/009szpe27 Armed Forces Health Surveillance Center'), (279, 'https://ror.org/009vheq40', 'en', 1, 'https://ror.org/009vheq40 Churchill Hospital'), (280, 'https://ror.org/009x1kj44', 'pl', 1, 'https://ror.org/009x1kj44 University Children’s Hospital Uniwersytecki Szpital Dziecięcy'), (281, 'https://ror.org/009z5t729', 'en', 1, 'https://ror.org/009z5t729 Cook Children''s Medical Center'), (282, 'https://ror.org/00a0jsq62', 'en', 1, 'https://ror.org/00a0jsq62 London School of Hygiene & Tropical Medicine'), (283, 'https://ror.org/00a0pt066', 'en', 1, 'https://ror.org/00a0pt066 MultiCare Good Samaritan Hospital'), (284, 'https://ror.org/00a3dqw47', 'en', 1, 'https://ror.org/00a3dqw47 Eastern State Hospital'), (285, 'https://ror.org/00a43vs85', 'en', 1, 'https://ror.org/00a43vs85 Ya''an Polytechnic College 雅安职业技术学院'), (286, 'https://ror.org/00a53nq42', 'en', 1, 'https://ror.org/00a53nq42 Cancer Hospital of Shantou University Medical College 汕头大学医学院附属肿瘤医院'), (287, 'https://ror.org/00a858n67', 'en', 1, 'https://ror.org/00a858n67 Royal United Hospital'), (288, 'https://ror.org/00a8tg325', 'en', 1, 'https://ror.org/00a8tg325 Korea Institute of Radiological and Medical Sciences 한국 방사선 과학 연구소'), (289, 'https://ror.org/00a98yf63', 'en', 1, 'https://ror.org/00a98yf63 Second Affiliated Hospital of Guangzhou Medical University 广州医科大学附属第二医院'), (290, 'https://ror.org/00a99v816', 'no_lang_code', 1, 'https://ror.org/00a99v816'), (291, 'https://ror.org/00ac5y077', 'pt', 1, 'https://ror.org/00ac5y077 Instituto Superior Autónomo de Estudos Politécnicos'), (292, 'https://ror.org/00adjy062', 'no_lang_code', 1, 'https://ror.org/00adjy062 Performance Plants (Canada)'), (293, 'https://ror.org/00ae33288', 'en', 1, 'https://ror.org/00ae33288 London Metropolitan University'), (294, 'https://ror.org/00af3sa43', 'en', 1, 'https://ror.org/00af3sa43 Isfahan University of Technology دانشگاه صنعتی اصفهان'), (295, 'https://ror.org/00aff0y51', 'tr', 1, 'https://ror.org/00aff0y51 Dr. Behçet Uz Çocuk Hastalıkları Hastanesi'), (296, 'https://ror.org/00afgv297', 'es', 1, 'https://ror.org/00afgv297 Hospital General San Juan de Dios'), (297, 'https://ror.org/00aft1q37', 'en', 1, 'https://ror.org/00aft1q37 Sejong University 세종대학교'), (298, 'https://ror.org/00agkba13', 'en', 1, 'https://ror.org/00agkba13 Martha Jefferson Hospital'), (299, 'https://ror.org/00agrkd75', 'en', 1, 'https://ror.org/00agrkd75 Computing Research Association'), (300, 'https://ror.org/00ajg8537', 'tr', 1, 'https://ror.org/00ajg8537 Gaziantep Onkoloji Hastanesi'), (301, 'https://ror.org/00ajykz30', 'en', 1, 'https://ror.org/00ajykz30 UK Water Industry Research'), (302, 'https://ror.org/00akdyv48', 'en', 1, 'https://ror.org/00akdyv48 Centre médical de kettering Kettering Medical Center'), (303, 'https://ror.org/00apdsa62', 'en', 1, 'https://ror.org/00apdsa62 Privolzhsky Research Medical University Приволжский исследовательский медицинский университет'), (304, 'https://ror.org/00aqz1698', 'en', 1, 'https://ror.org/00aqz1698 Milwaukee Public Museum'), (305, 'https://ror.org/00aqz8k66', 'en', 1, 'https://ror.org/00aqz8k66 Florida Hospital Cancer Institute'), (306, 'https://ror.org/00asaax56', 'en', 1, 'https://ror.org/00asaax56 Accreditation Council for Graduate Medical Education'), (307, 'https://ror.org/00av3hs56', 'en', 1, 'https://ror.org/00av3hs56 Chubu Rosai Hospital 中部ろうさい病院'), (308, 'https://ror.org/00av5yz18', 'en', 1, 'https://ror.org/00av5yz18 Health and Safety Executive'), (309, 'https://ror.org/00awd9g61', 'en', 1, 'https://ror.org/00awd9g61 The Graduate Center, CUNY'), (310, 'https://ror.org/00azwtc53', 'no_lang_code', 1, 'https://ror.org/00azwtc53 Swedish Nuclear Fuel and Waste Management (Sweden)'), (311, 'https://ror.org/00b0m1444', 'en', 1, 'https://ror.org/00b0m1444 Loewenstein Hospital Rehabilitation Center'), (312, 'https://ror.org/00b4emx12', 'en', 1, 'https://ror.org/00b4emx12 North Shore Medical Center'), (313, 'https://ror.org/00b4wat71', 'en', 1, 'https://ror.org/00b4wat71 Shadyside Hospital'), (314, 'https://ror.org/00b7yvh50', 'en', 1, 'https://ror.org/00b7yvh50 Prefectural University of Kumamoto 熊本県立大学'), (315, 'https://ror.org/00b7zsw47', 'de', 1, 'https://ror.org/00b7zsw47 Klinik Schillerhöhe'), (316, 'https://ror.org/00baajx12', 'en', 1, 'https://ror.org/00baajx12 Rood and Riddle Equine Hospital'), (317, 'https://ror.org/00baak391', 'en', 1, 'https://ror.org/00baak391 National Human Genome Research Institute'), (318, 'https://ror.org/00bb01z14', 'en', 1, 'https://ror.org/00bb01z14 Vladivostok State Medical University Тихоокеанский государственный медицинский университет'), (319, 'https://ror.org/00bbeqy02', 'en', 1, 'https://ror.org/00bbeqy02 Guru Angad Dev Veterinary and Animal Sciences University ਗੁਰੂ ਅੰਗਦ ਦੇਵ ਵੈਟਨਰੀ ਅਤੇ ਐਨੀਮਲ ਸਾਇੰਸਜ਼ ਯੂਨੀਵਰਸਿਟੀ'), (320, 'https://ror.org/00bjck208', 'en', 1, 'https://ror.org/00bjck208 Glasgow Royal Infirmary'), (321, 'https://ror.org/00bkxry42', 'en', 1, 'https://ror.org/00bkxry42 Fraunhofer Institut für Mikrotechnik und Mikrosysteme Fraunhofer Institute for Microengineering and Microsystems'), (322, 'https://ror.org/00bmv4102', 'nl', 1, 'https://ror.org/00bmv4102 Emma Children’s Hospital Emma Kinderziekenhuis'), (323, 'https://ror.org/00bmzhb16', 'en', 1, 'https://ror.org/00bmzhb16 Gembloux Agro-Bio Tech'), (324, 'https://ror.org/00bpn0984', 'it', 1, 'https://ror.org/00bpn0984 Ospedale San Paolo'), (325, 'https://ror.org/00bq4rw46', 'es', 1, 'https://ror.org/00bq4rw46 Hospital Italiano de Buenos Aires'), (326, 'https://ror.org/00bq8v746', 'no_lang_code', 1, 'https://ror.org/00bq8v746 Aomori Prefectural Central Hospital 青森県立中央病院'), (327, 'https://ror.org/00bs3zm56', 'no_lang_code', 1, 'https://ror.org/00bs3zm56 Nagasaki Municipal Hospital 長崎みなとメディカルセンター市民病院'), (328, 'https://ror.org/00bsyjc58', 'en', 1, 'https://ror.org/00bsyjc58 Kanchi Mamunivar Centre for Post Graduate Studies'), (329, 'https://ror.org/00btty905', 'en', 1, 'https://ror.org/00btty905 Ireland Army Community Hospital'), (330, 'https://ror.org/00bwhj131', 'en', 1, 'https://ror.org/00bwhj131 Newark Beth Israel Medical Center'), (331, 'https://ror.org/00bx6dj65', 'en', 1, 'https://ror.org/00bx6dj65 Hosei University 法政大学'), (332, 'https://ror.org/00bx71042', 'en', 1, 'https://ror.org/00bx71042 Coombe Women & Infants University Hospital Ospidéal Ollscoile Ban agus Naíonán an Chúim'), (333, 'https://ror.org/00bxj7497', 'en', 1, 'https://ror.org/00bxj7497 Vidant Medical Center'), (334, 'https://ror.org/00bxsm637', 'no_lang_code', 1, 'https://ror.org/00bxsm637 MTU Aero Engines (Germany)'), (335, 'https://ror.org/00byr8j11', 'en', 1, 'https://ror.org/00byr8j11 National Science Teachers Association'), (336, 'https://ror.org/00bz3ax41', 'en', 1, 'https://ror.org/00bz3ax41 University of Dubuque Université de dubuque'), (337, 'https://ror.org/00bz6qm80', 'en', 1, 'https://ror.org/00bz6qm80 Dillard University'), (338, 'https://ror.org/00c01js51', 'en', 1, 'https://ror.org/00c01js51 The Ohio State University Wexner Medical Center'), (339, 'https://ror.org/00c051916', 'fr', 1, 'https://ror.org/00c051916 Centre Technique des Industries Mécaniques Technical Centre for Mechanical Industry'), (340, 'https://ror.org/00c099g34', 'en', 1, 'https://ror.org/00c099g34 First People''s Hospital of Yunnan Province 云南省第一人民医院'), (341, 'https://ror.org/00c879s84', 'en', 1, 'https://ror.org/00c879s84 Groote Schuur Hospital'), (342, 'https://ror.org/00c8t7d47', 'tr', 1, 'https://ror.org/00c8t7d47 Gülhane Askerî Tıp Akademisi'), (343, 'https://ror.org/00c8v4891', 'en', 1, 'https://ror.org/00c8v4891 Long Island Jewish Medical Center'), (344, 'https://ror.org/00c9syb98', 'en', 1, 'https://ror.org/00c9syb98 Merlin Park University Hospital'), (345, 'https://ror.org/00cb9nn43', 'en', 1, 'https://ror.org/00cb9nn43 American Dental Association'), (346, 'https://ror.org/00cb9w016', 'en', 1, 'https://ror.org/00cb9w016 Ain Shams University جامعة عين شمس'), (347, 'https://ror.org/00ccec020', 'pt', 1, 'https://ror.org/00ccec020 Universidade do Oeste Paulista University of Western São Paulo'), (348, 'https://ror.org/00cckeg37', 'en', 1, 'https://ror.org/00cckeg37 Southern Polytechnic State University'), (349, 'https://ror.org/00cd86r95', 'en', 1, 'https://ror.org/00cd86r95 Frontier Medical College فرنٹیئر میڈیکل کالج'), (350, 'https://ror.org/00cd9s024', 'en', 1, 'https://ror.org/00cd9s024 Shanghai Children''s Medical Center 上海儿童医学中心'), (351, 'https://ror.org/00cdwy346', 'en', 1, 'https://ror.org/00cdwy346 Freeman Hospital'), (352, 'https://ror.org/00cdz3124', 'es', 1, 'https://ror.org/00cdz3124 Hospital General Universitario Santa María del Rosell'), (353, 'https://ror.org/00ceh2v36', 'en', 1, 'https://ror.org/00ceh2v36 Hiratsuka City Hospital 平塚市民病院'), (354, 'https://ror.org/00cfdk448', 'en', 1, 'https://ror.org/00cfdk448 Royal Cornwall Hospital'), (355, 'https://ror.org/00cfm3y81', 'es', 1, 'https://ror.org/00cfm3y81 Hospital General Universitario Morales Meseguer'), (356, 'https://ror.org/00cgjx575', 'en', 1, 'https://ror.org/00cgjx575 TRTech'), (357, 'https://ror.org/00chbca67', 'en', 1, 'https://ror.org/00chbca67 Bhabha Atomic Research Center Hospital'), (358, 'https://ror.org/00chfja07', 'en', 1, 'https://ror.org/00chfja07 Seoul National University of Science and Technology 서울과학기술대학교'), (359, 'https://ror.org/00chxjy07', 'en', 1, 'https://ror.org/00chxjy07 Fundação Conservatório Regional de Gaia Gaia Regional Conservatory Foundation'), (360, 'https://ror.org/00cmfmh53', 'it', 1, 'https://ror.org/00cmfmh53 Azienda Ospedaliera G.Rummo'), (361, 'https://ror.org/00cmk4n56', 'it', 1, 'https://ror.org/00cmk4n56 Krankenhaus Bozen Ospedale di Bolzano'), (362, 'https://ror.org/00cr15z55', 'en', 1, 'https://ror.org/00cr15z55 St. Elizabeth''s Medical Center'), (363, 'https://ror.org/00cr96696', 'en', 1, 'https://ror.org/00cr96696 Center for Clinical Research and Prevention Center for Klinisk Forskning og Forebyggelse'), (364, 'https://ror.org/00ctk8b26', 'en', 1, 'https://ror.org/00ctk8b26 Bristol City Council'), (365, 'https://ror.org/00cwrhn79', 'en', 1, 'https://ror.org/00cwrhn79 Saint Vincent''s Catholic Medical Center'), (366, 'https://ror.org/00d0r9b26', 'hu', 1, 'https://ror.org/00d0r9b26 Heim Pál Gyermekkórház Pál Heim Children''s Hospital'), (367, 'https://ror.org/00d0zag42', 'no_lang_code', 1, 'https://ror.org/00d0zag42 Wooridul Hospital 우리들 병원'), (368, 'https://ror.org/00d264c35', 'en', 1, 'https://ror.org/00d264c35 Frederiksberg Hospital'), (369, 'https://ror.org/00d80zx46', 'en', 1, 'https://ror.org/00d80zx46 Chang Gung University'), (370, 'https://ror.org/00d973h41', 'en', 1, 'https://ror.org/00d973h41 Södertörn University Södertörns högskola'), (371, 'https://ror.org/00d9qf519', 'en', 1, 'https://ror.org/00d9qf519 Topiwala National Medical College & BYL Nair Charitable Hospital'), (372, 'https://ror.org/00dc7s858', 'en', 1, 'https://ror.org/00dc7s858 Jiangxi Agricultural University 江西农业大学'), (373, 'https://ror.org/00ded8656', 'en', 1, 'https://ror.org/00ded8656 Pine Rest Christian Mental Health Services'), (374, 'https://ror.org/00dfape04', 'en', 1, 'https://ror.org/00dfape04 Good Moonhwa Hospital 좋은문화병원'), (375, 'https://ror.org/00dpx3e98', 'en', 1, 'https://ror.org/00dpx3e98 American Meteorological Society'), (376, 'https://ror.org/00dr1cn74', 'en', 1, 'https://ror.org/00dr1cn74 Hangzhou Center for Disease Control and Prevention 杭州市疾病预防控制中心'), (377, 'https://ror.org/00dr54257', 'en', 1, 'https://ror.org/00dr54257 Alcorn State University'), (378, 'https://ror.org/00drynx17', 'en', 1, 'https://ror.org/00drynx17 Fukuoka Institute of Health and Environmental Sciences 福岡県保健環境研究所'), (379, 'https://ror.org/00dt08z19', 'en', 1, 'https://ror.org/00dt08z19 Argyll and Bute Hospital'), (380, 'https://ror.org/00dv9aw81', 'no_lang_code', 1, 'https://ror.org/00dv9aw81 Experimental Pathology Laboratories'), (381, 'https://ror.org/00dwz8y55', 'en', 1, 'https://ror.org/00dwz8y55 Sheppard Pratt Health System'), (382, 'https://ror.org/00e16h982', 'en', 1, 'https://ror.org/00e16h982 Osun State University'), (383, 'https://ror.org/00e49gy82', 'en', 1, 'https://ror.org/00e49gy82 China University of Political Science and Law 中国政法大学'), (384, 'https://ror.org/00e4zxr41', 'en', 1, 'https://ror.org/00e4zxr41 Ross University School of Veterinary Medicine'), (385, 'https://ror.org/00e7ez509', 'no_lang_code', 1, 'https://ror.org/00e7ez509 Daegu Fatima Hospital 대구파티마병원'), (386, 'https://ror.org/00e7taa66', 'en', 1, 'https://ror.org/00e7taa66 Ingalls Memorial Hospital'), (387, 'https://ror.org/00e7vmq69', 'en', 1, 'https://ror.org/00e7vmq69 Polytechnic University of the Philippines'), (388, 'https://ror.org/00e9xa106', 'en', 1, 'https://ror.org/00e9xa106 University of Maine at Machias'), (389, 'https://ror.org/00eekd641', 'en', 1, 'https://ror.org/00eekd641 Robert Wood Johnson University Hospital'), (390, 'https://ror.org/00eg8ch54', 'en', 1, 'https://ror.org/00eg8ch54 Hebrew Hospital'), (391, 'https://ror.org/00egdv862', 'no_lang_code', 1, 'https://ror.org/00egdv862 Hongik University 홍익대학교'), (392, 'https://ror.org/00eh7f421', 'no_lang_code', 1, 'https://ror.org/00eh7f421 E-Da Hospital'), (393, 'https://ror.org/00ek9j693', 'en', 1, 'https://ror.org/00ek9j693 Bloodworks Northwest'), (394, 'https://ror.org/00em04n91', 'en', 1, 'https://ror.org/00em04n91 Moscow State University of Civil Engineering Московский Государственный Строительный Университет'), (395, 'https://ror.org/00emz0366', 'no_lang_code', 1, 'https://ror.org/00emz0366 Woosuk University 우석대학교'), (396, 'https://ror.org/00en92979', 'en', 1, 'https://ror.org/00en92979 Kaohsiung Municipal Kai-Syuan Psychiatric Hospital'), (397, 'https://ror.org/00enq8e33', 'en', 1, 'https://ror.org/00enq8e33 Aurelia Hospital'), (398, 'https://ror.org/00envkz24', 'en', 1, 'https://ror.org/00envkz24 Greenlane Clinical Centre'), (399, 'https://ror.org/00ep78v21', 'en', 1, 'https://ror.org/00ep78v21 Advocate Good Samaritan Hospital'), (400, 'https://ror.org/00ey54k21', 'pt', 1, 'https://ror.org/00ey54k21 Universidade de Ribeirão Preto University of Ribeirão Preto'), (401, 'https://ror.org/00eyk9919', 'en', 1, 'https://ror.org/00eyk9919 Holy Family Hospital ہولی فیملی ہسپتال'), (402, 'https://ror.org/00eysw063', 'en', 1, 'https://ror.org/00eysw063 Liverpool Women''s Hospital'), (403, 'https://ror.org/00f1xkb20', 'no_lang_code', 1, 'https://ror.org/00f1xkb20 Robosoft (France)'), (404, 'https://ror.org/00f200z37', 'en', 1, 'https://ror.org/00f200z37 Chonnam National University Hospital'), (405, 'https://ror.org/00f2gwr16', 'en', 1, 'https://ror.org/00f2gwr16 Lankenau Medical Center'), (406, 'https://ror.org/00f2txz25', 'no_lang_code', 1, 'https://ror.org/00f2txz25 Kitasato University 北里大学'), (407, 'https://ror.org/00f2ymb10', 'en', 1, 'https://ror.org/00f2ymb10 Chesapeake Research Consortium'), (408, 'https://ror.org/00f2z7n96', 'en', 1, 'https://ror.org/00f2z7n96 RAND Corporation'), (409, 'https://ror.org/00f4kgf41', 'en', 1, 'https://ror.org/00f4kgf41 Gaziantep Children''s Hospital Gaziantep Çocuk Hastanesi'), (410, 'https://ror.org/00f93yb19', 'en', 1, 'https://ror.org/00f93yb19 McKay Dee Hospital'), (411, 'https://ror.org/00f9c2f73', 'en', 1, 'https://ror.org/00f9c2f73 GF Jooste Hospital'), (412, 'https://ror.org/00fb7mg36', 'no_lang_code', 1, 'https://ror.org/00fb7mg36 San-ikukai Hospital 賛育会病院'), (413, 'https://ror.org/00fbafs03', 'no_lang_code', 1, 'https://ror.org/00fbafs03 MBN Nanomaterialia (Italy)'), (414, 'https://ror.org/00fc19b96', 'en', 1, 'https://ror.org/00fc19b96 Aomori Rosai Hospital 青森労災病院'), (415, 'https://ror.org/00fd4q681', 'en', 1, 'https://ror.org/00fd4q681 Krishna Institute of Medical Sciences'), (416, 'https://ror.org/00fd9sj13', 'en', 1, 'https://ror.org/00fd9sj13 Daegu Catholic University Medical Center 대구가톨릭대학교병원 모바일'), (417, 'https://ror.org/00ff4bt20', 'en', 1, 'https://ror.org/00ff4bt20 Arcadia University'), (418, 'https://ror.org/00fg98b82', 'en', 1, 'https://ror.org/00fg98b82 Kaiser Permanente San Diego Medical Center'), (419, 'https://ror.org/00fgdyv87', 'no_lang_code', 1, 'https://ror.org/00fgdyv87 Hindu Rao Hospital'), (420, 'https://ror.org/00fh72m39', 'en', 1, 'https://ror.org/00fh72m39 Vladimir State University for the Humanities Владимирский государственный гуманитарный университет'), (421, 'https://ror.org/00fj3a809', 'en', 1, 'https://ror.org/00fj3a809 Good Samaritan Regional Medical Center'), (422, 'https://ror.org/00fjv1g65', 'en', 1, 'https://ror.org/00fjv1g65 Kunming Children''s Hospital 昆明市儿童医院'), (423, 'https://ror.org/00fk0yb75', 'en', 1, 'https://ror.org/00fk0yb75 Plastic Surgery Hospital'), (424, 'https://ror.org/00fpw9a48', 'no_lang_code', 1, 'https://ror.org/00fpw9a48 Hamburg Ship Model Basin Hamburgische Schiffbau-Versuchsanstalt (Germany)'), (425, 'https://ror.org/00fq5ev96', 'en', 1, 'https://ror.org/00fq5ev96 John B. Pierce Laboratory'), (426, 'https://ror.org/00fqdfs68', 'en', 1, 'https://ror.org/00fqdfs68 Kuopio University Hospital'), (427, 'https://ror.org/00fqdgv63', 'en', 1, 'https://ror.org/00fqdgv63 Lankenau Heart Institute'), (428, 'https://ror.org/00fqtfz78', 'en', 1, 'https://ror.org/00fqtfz78 Beebe Healthcare'), (429, 'https://ror.org/00ft41876', 'en', 1, 'https://ror.org/00ft41876 Marion duPont Scott Equine Medical Center'), (430, 'https://ror.org/00ftebr67', 'en', 1, 'https://ror.org/00ftebr67 Wesley Medical Center'); INSERT INTO `rors` VALUES (431, 'https://ror.org/00fthae95', 'en', 1, 'https://ror.org/00fthae95 Daping Hospital 第三军医大学大坪医院'), (432, 'https://ror.org/00ftwze80', 'en', 1, 'https://ror.org/00ftwze80 University Dental Hospital on Cardiff University'), (433, 'https://ror.org/00fv61j67', 'en', 1, 'https://ror.org/00fv61j67 MRC Laboratory for Molecular Cell Biology'), (434, 'https://ror.org/00fvyjk73', 'en', 1, 'https://ror.org/00fvyjk73 Colby College'), (435, 'https://ror.org/00fwdyt59', 'en', 1, 'https://ror.org/00fwdyt59 George Washington University Hospital'), (436, 'https://ror.org/00fwhaq79', 'en', 1, 'https://ror.org/00fwhaq79 Lee University'), (437, 'https://ror.org/00fxgea47', 'no_lang_code', 1, 'https://ror.org/00fxgea47 Novartis (China) 北京诺华制药有限公司'), (438, 'https://ror.org/00fz8k419', 'de', 1, 'https://ror.org/00fz8k419 HFR Freiburg Kantonsspital'), (439, 'https://ror.org/00g1rc256', 'en', 1, 'https://ror.org/00g1rc256 Central DuPage Hospital'), (440, 'https://ror.org/00g3pqv36', 'en', 1, 'https://ror.org/00g3pqv36 First Affiliated Hospital of Jiangxi Medical College'), (441, 'https://ror.org/00g578s43', 'no_lang_code', 1, 'https://ror.org/00g578s43 Oregon Center For Applied Science (United States)'), (442, 'https://ror.org/00g58cv73', 'en', 1, 'https://ror.org/00g58cv73 Chowan University'), (443, 'https://ror.org/00g651r29', 'en', 1, 'https://ror.org/00g651r29 Maimonides Medical Center'), (444, 'https://ror.org/00g6ka752', 'en', 1, 'https://ror.org/00g6ka752 Ferdowsi University of Mashhad دانشگاه فردوسی مشهد'), (445, 'https://ror.org/00g972x47', 'en', 1, 'https://ror.org/00g972x47 Usmanu Danfodiyo University Teaching Hospital, Sokoto'), (446, 'https://ror.org/00g9xaj16', 'en', 1, 'https://ror.org/00g9xaj16 Saint Agnes Medical Center'), (447, 'https://ror.org/00gahk913', 'en', 1, 'https://ror.org/00gahk913 Sendai Nishitaga National Hospital 国立病院機構仙台西多賀病院'), (448, 'https://ror.org/00gbcc509', 'en', 1, 'https://ror.org/00gbcc509 Gyeongsang National University Hospital'), (449, 'https://ror.org/00gdcs242', 'en', 1, 'https://ror.org/00gdcs242 MESA Hospital Mesa Hastanesi'), (450, 'https://ror.org/00gdxq105', 'en', 1, 'https://ror.org/00gdxq105 Vermont Department of Mental Health'), (451, 'https://ror.org/00gffbx54', 'fr', 1, 'https://ror.org/00gffbx54 Hôpital La Rabta المستشفى الجامعي الرابطة'), (452, 'https://ror.org/00ghjek97', 'en', 1, 'https://ror.org/00ghjek97 Orel State University named after I.S. Turgenev Орловский государственный университет имени И. С. Тургенева'), (453, 'https://ror.org/00gjahp83', 'en', 1, 'https://ror.org/00gjahp83 Midwestern Regional Medical Center'), (454, 'https://ror.org/00gkd5869', 'en', 1, 'https://ror.org/00gkd5869 Lagos University Teaching Hospital'), (455, 'https://ror.org/00gr1q288', 'en', 1, 'https://ror.org/00gr1q288 Tokai University Hachioji Hospital 東海大学医学部付属八王子病院'), (456, 'https://ror.org/00gs85y70', 'en', 1, 'https://ror.org/00gs85y70 Bellin Memorial Hospital'), (457, 'https://ror.org/00gtcbp88', 'pt', 1, 'https://ror.org/00gtcbp88 Universidade de Pernambuco University of Pernambuco'), (458, 'https://ror.org/00gv7aj90', 'es', 1, 'https://ror.org/00gv7aj90 Hospital Barros Luco-Trudeau'), (459, 'https://ror.org/00gvw6327', 'en', 1, 'https://ror.org/00gvw6327 King George''s Medical University छत्रपति शाहूजी महाराज आयुर्विज्ञान विश्वविद्यालय'), (460, 'https://ror.org/00gw6hy83', 'en', 1, 'https://ror.org/00gw6hy83 Rotherham General Hospital'), (461, 'https://ror.org/00h04da97', 'en', 1, 'https://ror.org/00h04da97 McNeese State University'), (462, 'https://ror.org/00h1apf46', 'fr', 1, 'https://ror.org/00h1apf46 Centre Hospitalier Universitaire de Yopougon'), (463, 'https://ror.org/00h2bj464', 'en', 1, 'https://ror.org/00h2bj464 Deaconess Hospital'), (464, 'https://ror.org/00h55v928', 'en', 1, 'https://ror.org/00h55v928 Helwan University جامعة حلوان'), (465, 'https://ror.org/00h7y2d26', 'no_lang_code', 1, 'https://ror.org/00h7y2d26 Sensimetrics Corporation'), (466, 'https://ror.org/00h85x510', 'no_lang_code', 1, 'https://ror.org/00h85x510 Tembec'), (467, 'https://ror.org/00h974d79', 'pt', 1, 'https://ror.org/00h974d79 Instituto de Estudos Superiores Financeiros e Fiscais'), (468, 'https://ror.org/00hb4yd20', 'en', 1, 'https://ror.org/00hb4yd20 MGMA Health Care Consulting Group'), (469, 'https://ror.org/00hbq5j06', 'no_lang_code', 1, 'https://ror.org/00hbq5j06 Ecogenomics (Japan)'), (470, 'https://ror.org/00hby5j36', 'pt', 1, 'https://ror.org/00hby5j36 Hospital Felício Rocho'), (471, 'https://ror.org/00hdf8e67', 'en', 1, 'https://ror.org/00hdf8e67 Jawaharlal Nehru Medical College'), (472, 'https://ror.org/00hfbva78', 'en', 1, 'https://ror.org/00hfbva78 General Hospital of Guangzhou Military Command 广州军区广州总医院'), (473, 'https://ror.org/00hhkn466', 'en', 1, 'https://ror.org/00hhkn466 Japan Society for the Promotion of Science 日本学術振興会'), (474, 'https://ror.org/00hhwej14', 'en', 1, 'https://ror.org/00hhwej14 Royal Hampshire County Hospital'), (475, 'https://ror.org/00hm23551', 'no_lang_code', 1, 'https://ror.org/00hm23551 Nishinomiya Municipal Central Hospital 西宮市立中央病院'), (476, 'https://ror.org/00hm9kt34', 'sv', 1, 'https://ror.org/00hm9kt34 Danderyds sjukhus'), (477, 'https://ror.org/00hmeez77', 'en', 1, 'https://ror.org/00hmeez77 Barzilai Medical Center'), (478, 'https://ror.org/00hn92440', 'en', 1, 'https://ror.org/00hn92440 Broomfield Hospital'), (479, 'https://ror.org/00hnyb151', 'no_lang_code', 1, 'https://ror.org/00hnyb151 Luna Innovations (United States)'), (480, 'https://ror.org/00hp6as40', 'en', 1, 'https://ror.org/00hp6as40 Mammoth Hospital'), (481, 'https://ror.org/00hpnj894', 'es', 1, 'https://ror.org/00hpnj894 Hospital Clínico Universitario de Valencia'), (482, 'https://ror.org/00hpqmv06', 'en', 1, 'https://ror.org/00hpqmv06 Ministry of Health'), (483, 'https://ror.org/00hqkan37', 'en', 1, 'https://ror.org/00hqkan37 Lebanese American University الجامعة اللبنانية الأمريكية'), (484, 'https://ror.org/00hswnf74', 'no_lang_code', 1, 'https://ror.org/00hswnf74 Shizuoka City Shimizu Hospital 静岡市立清水病院'), (485, 'https://ror.org/00htwgm11', 'en', 1, 'https://ror.org/00htwgm11 National University of Salta Universidad Nacional de Salta'), (486, 'https://ror.org/00hw84d70', 'en', 1, 'https://ror.org/00hw84d70 Baba Memorial Hospital 社会医療法人ペガサス 馬場記念病院'), (487, 'https://ror.org/00hwsxp30', 'tr', 1, 'https://ror.org/00hwsxp30 Ankara Fizik Tedavi ve Rehabilitasyon Eğitim ve Araştırma Hastanesi'), (488, 'https://ror.org/00hx9k210', 'en', 1, 'https://ror.org/00hx9k210 Sasebo City General Hospital 佐世保市総合医療センター'), (489, 'https://ror.org/00hysg385', 'en', 1, 'https://ror.org/00hysg385 Sinai Grace Hospital'), (490, 'https://ror.org/00j0b8v53', 'en', 1, 'https://ror.org/00j0b8v53 Regional Medical Research Center क्षेत्रीय आयुर्विगिनं अनुसंधान केंद्र'), (491, 'https://ror.org/00j0z5m32', 'en', 1, 'https://ror.org/00j0z5m32 Alabama Department of Public Health'), (492, 'https://ror.org/00j2n4x83', 'en', 1, 'https://ror.org/00j2n4x83 Narayana Dental College and Hospital'), (493, 'https://ror.org/00j2wht38', 'en', 1, 'https://ror.org/00j2wht38 Virginia Department of Health'), (494, 'https://ror.org/00j4k1h63', 'en', 1, 'https://ror.org/00j4k1h63 National Institute of Environmental Health Sciences'), (495, 'https://ror.org/00j4pe902', 'en', 1, 'https://ror.org/00j4pe902 Maharaja Krishna Chandra Gajapati Medical College and Hospital'), (496, 'https://ror.org/00j4pze04', 'es', 1, 'https://ror.org/00j4pze04 Hospital de Basurto'), (497, 'https://ror.org/00j6r8583', 'en', 1, 'https://ror.org/00j6r8583 Swami Keshwanand Rajasthan Agricultural University'), (498, 'https://ror.org/00j899309', 'no_lang_code', 1, 'https://ror.org/00j899309 Inflexxion (United States)'), (499, 'https://ror.org/00j8ram51', 'en', 1, 'https://ror.org/00j8ram51 Cambridge Military Hospital'), (500, 'https://ror.org/00j8xcs04', 'en', 1, 'https://ror.org/00j8xcs04 Sir Sayajirao General Hospital Medical College'), (501, 'https://ror.org/00j9c2840', 'en', 1, 'https://ror.org/00j9c2840 Oslo University Hospital'), (502, 'https://ror.org/00j9f7w81', 'es', 1, 'https://ror.org/00j9f7w81 Hospital Terrassa'), (503, 'https://ror.org/00jbkk316', 'en', 1, 'https://ror.org/00jbkk316 Buffalo VA Medical Center'), (504, 'https://ror.org/00jc57298', 'en', 1, 'https://ror.org/00jc57298 Central Baptist Hospital'), (505, 'https://ror.org/00jffx511', 'en', 1, 'https://ror.org/00jffx511 PRIST University'), (506, 'https://ror.org/00jh2w590', 'en', 1, 'https://ror.org/00jh2w590 New Mexico Department of Health'), (507, 'https://ror.org/00jhae347', 'no_lang_code', 1, 'https://ror.org/00jhae347 Medical Protective'), (508, 'https://ror.org/00jhyq802', 'en', 1, 'https://ror.org/00jhyq802 Regent University'), (509, 'https://ror.org/00jjeh629', 'en', 1, 'https://ror.org/00jjeh629 Harvard–MIT Division of Health Sciences and Technology'), (510, 'https://ror.org/00jjvav84', 'en', 1, 'https://ror.org/00jjvav84 The Hamner Institutes for Health Sciences'), (511, 'https://ror.org/00jk4qh27', 'no_lang_code', 1, 'https://ror.org/00jk4qh27 TECO'), (512, 'https://ror.org/00jkkm943', 'pt', 1, 'https://ror.org/00jkkm943 Instituto Superior Manuel Teixeira Gomes'), (513, 'https://ror.org/00jpae132', 'en', 1, 'https://ror.org/00jpae132 Hillingdon Hospital'), (514, 'https://ror.org/00jpq0w62', 'fr', 1, 'https://ror.org/00jpq0w62 Centre Hospitalier Universitaire de Tours'), (515, 'https://ror.org/00jq51013', 'en', 1, 'https://ror.org/00jq51013 Cardinal Glennon Children’s Medical Center'), (516, 'https://ror.org/00jv89z46', 'en', 1, 'https://ror.org/00jv89z46 Louisiana Board of Regents'), (517, 'https://ror.org/00jw56w10', 'nl', 1, 'https://ror.org/00jw56w10 Slingeland Ziekenhuis'), (518, 'https://ror.org/00jy2zq62', 'en', 1, 'https://ror.org/00jy2zq62 Gifu Prefectural Tajimi Hospital 岐阜県立多治見病院'), (519, 'https://ror.org/00jy5cn48', 'en', 1, 'https://ror.org/00jy5cn48 Meitan General Hospital 煤炭总医院'), (520, 'https://ror.org/00jy9e726', 'en', 1, 'https://ror.org/00jy9e726 Capital University'), (521, 'https://ror.org/00jyx0v10', 'en', 1, 'https://ror.org/00jyx0v10 Alfred I. duPont Hospital for Children'), (522, 'https://ror.org/00jzexr10', 'en', 1, 'https://ror.org/00jzexr10 Astrakhan State Technical University Астраханский государственный технический университет'), (523, 'https://ror.org/00k1crd82', 'en', 1, 'https://ror.org/00k1crd82 Museum of Science'), (524, 'https://ror.org/00k1xr956', 'en', 1, 'https://ror.org/00k1xr956 Grady Health System'), (525, 'https://ror.org/00k27zs44', 'no_lang_code', 1, 'https://ror.org/00k27zs44 Oxford Biomedical Research'), (526, 'https://ror.org/00k49k182', 'es', 1, 'https://ror.org/00k49k182 Hospital Virgen de la Luz'), (527, 'https://ror.org/00k57ac30', 'pt', 1, 'https://ror.org/00k57ac30 Instituto Superior de Novas Profissões'), (528, 'https://ror.org/00k5m1279', 'en', 1, 'https://ror.org/00k5m1279 West Virginia University at Parkersburg'), (529, 'https://ror.org/00k5vcj72', 'en', 1, 'https://ror.org/00k5vcj72 Molde Hospital Molde sjukehus'), (530, 'https://ror.org/00k7r7f88', 'en', 1, 'https://ror.org/00k7r7f88 Xuan Wu Hospital of the Capital Medical University 北京市老年病医疗研究中心'), (531, 'https://ror.org/00k7zpp15', 'en', 1, 'https://ror.org/00k7zpp15 California Animal Hospital'), (532, 'https://ror.org/00k8adf88', 'en', 1, 'https://ror.org/00k8adf88 Ahmedabad Civil Hospital'), (533, 'https://ror.org/00k8kp236', 'en', 1, 'https://ror.org/00k8kp236 Applied Technology Council'), (534, 'https://ror.org/00k9e1m49', 'en', 1, 'https://ror.org/00k9e1m49 Sri Devaraj Urs Medical College'), (535, 'https://ror.org/00kays408', 'pt', 1, 'https://ror.org/00kays408 Universidade Gama Filho, University Gama Filho'), (536, 'https://ror.org/00kde4z41', 'pt', 1, 'https://ror.org/00kde4z41 Lutheran University of Brazil Universidad Luterana de Brasil Universidade Luterana do Brasil'), (537, 'https://ror.org/00kfr4659', 'en', 1, 'https://ror.org/00kfr4659 Mito Red Cross Hospital 水戸赤十字病院'), (538, 'https://ror.org/00kg66g91', 'en', 1, 'https://ror.org/00kg66g91 Women & Children''s Hospital of Buffalo'), (539, 'https://ror.org/00kgerq53', 'en', 1, 'https://ror.org/00kgerq53 Hawaii Department of Health'), (540, 'https://ror.org/00khh5r84', 'en', 1, 'https://ror.org/00khh5r84 Tokyo Gakugei University 東京学芸大学'), (541, 'https://ror.org/00kmzgn35', 'en', 1, 'https://ror.org/00kmzgn35 Hawke''s Bay Hospital'), (542, 'https://ror.org/00kmzyw28', 'tr', 1, 'https://ror.org/00kmzyw28 Ankara Atatürk Eğitim ve Araştırma Hastanesi'), (543, 'https://ror.org/00kne5276', 'no_lang_code', 1, 'https://ror.org/00kne5276 Hektoen Institute'), (544, 'https://ror.org/00knyd990', 'en', 1, 'https://ror.org/00knyd990 UK Intelligent Systems Research Institute'), (545, 'https://ror.org/00krab219', 'en', 1, 'https://ror.org/00krab219 Nippon Medical School 日本医科大学'), (546, 'https://ror.org/00ktqrd38', 'en', 1, 'https://ror.org/00ktqrd38 Kyoto Prefectural University 京都府立大学'), (547, 'https://ror.org/00kv9pj15', 'no_lang_code', 1, 'https://ror.org/00kv9pj15 BT Group (United Kingdom)'), (548, 'https://ror.org/00kx7fe64', 'en', 1, 'https://ror.org/00kx7fe64 Fukui Red Cross Hospital 福井赤十字病院'), (549, 'https://ror.org/00ky3az31', 'en', 1, 'https://ror.org/00ky3az31 VA Puget Sound Health Care System'), (550, 'https://ror.org/00kym4953', 'no_lang_code', 1, 'https://ror.org/00kym4953 Gemite Group'), (551, 'https://ror.org/00kzych23', 'en', 1, 'https://ror.org/00kzych23 Nippon Sport Science University 日本体育大学'), (552, 'https://ror.org/00m1n2078', 'no_lang_code', 1, 'https://ror.org/00m1n2078 CAE (Canada)'), (553, 'https://ror.org/00m2ag473', 'en', 1, 'https://ror.org/00m2ag473 Archbold Biological Station'), (554, 'https://ror.org/00m2etp60', 'en', 1, 'https://ror.org/00m2etp60 Holy Family Hospital Nazareth'), (555, 'https://ror.org/00m4gxn44', 'en', 1, 'https://ror.org/00m4gxn44 Government Medical College'), (556, 'https://ror.org/00m4rwq02', 'en', 1, 'https://ror.org/00m4rwq02 Christopher Newport University'), (557, 'https://ror.org/00m5fzs56', 'en', 1, 'https://ror.org/00m5fzs56 Maebashi Red Cross Hospital 前橋赤十字病院'), (558, 'https://ror.org/00m72p590', 'en', 1, 'https://ror.org/00m72p590 Saint Joseph''s Hospital'), (559, 'https://ror.org/00m72wv30', 'en', 1, 'https://ror.org/00m72wv30 St. Joseph''s Hospital and Medical Center'), (560, 'https://ror.org/00m8prc86', 'no_lang_code', 1, 'https://ror.org/00m8prc86 Deutsche Telekom (Germany) German Telecom'), (561, 'https://ror.org/00m8tc820', 'en', 1, 'https://ror.org/00m8tc820 Kanazawa Medical Center 金沢医療センター'), (562, 'https://ror.org/00m9c2804', 'en', 1, 'https://ror.org/00m9c2804 Philadelphia College of Osteopathic Medicine'), (563, 'https://ror.org/00m9ydx43', 'en', 1, 'https://ror.org/00m9ydx43 National Hospital Organization Mito Medical Center 国立病院機構水戸医療センター'), (564, 'https://ror.org/00mbaq869', 'en', 1, 'https://ror.org/00mbaq869 Timescape Surveys'), (565, 'https://ror.org/00mbhee72', 'en', 1, 'https://ror.org/00mbhee72 University Medical Center of Princeton'), (566, 'https://ror.org/00mbsbt95', 'it', 1, 'https://ror.org/00mbsbt95 Ospedale San Giovanni Bellinzona'), (567, 'https://ror.org/00mc5wj35', 'en', 1, 'https://ror.org/00mc5wj35 Mudanjiang Medical University 牡丹江医学院'), (568, 'https://ror.org/00mc91w09', 'it', 1, 'https://ror.org/00mc91w09 Ospedale Cisanello'), (569, 'https://ror.org/00mch1v74', 'en', 1, 'https://ror.org/00mch1v74 John Muir Medical Center'), (570, 'https://ror.org/00mczdx43', 'en', 1, 'https://ror.org/00mczdx43 National University of San Luis Universidad Nacional de San Luis'), (571, 'https://ror.org/00md77g41', 'it', 1, 'https://ror.org/00md77g41 Casa Sollievo della Sofferenza Home for Relief of the Suffering'), (572, 'https://ror.org/00menq219', 'en', 1, 'https://ror.org/00menq219 Naruto University of Education 鳴門教育大学'), (573, 'https://ror.org/00meyvj69', 'en', 1, 'https://ror.org/00meyvj69 St. Lawrence River Institute of Environmental Sciences'), (574, 'https://ror.org/00mj4n083', 'en', 1, 'https://ror.org/00mj4n083 St. Francis Hospital'), (575, 'https://ror.org/00mj9k629', 'en', 1, 'https://ror.org/00mj9k629 Children''s Hospital Colorado'), (576, 'https://ror.org/00mjaaf25', 'en', 1, 'https://ror.org/00mjaaf25 National School of Public Health'), (577, 'https://ror.org/00mjawt10', 'en', 1, 'https://ror.org/00mjawt10 National Sun Yat-sen University'), (578, 'https://ror.org/00mmq5f59', 'en', 1, 'https://ror.org/00mmq5f59 Mahatma Phule Krishi Vidyapeeth'), (579, 'https://ror.org/00mns7k70', 'en', 1, 'https://ror.org/00mns7k70 Savannah State University Université d''État de Savannah'), (580, 'https://ror.org/00mrhvv69', 'en', 1, 'https://ror.org/00mrhvv69 Kementerian Kesihatan Singapura Ministry of Health சிங்கப்பூர் சுகாதார அமைச்சகம் 新加坡卫生部'), (581, 'https://ror.org/00mrw8k38', 'en', 1, 'https://ror.org/00mrw8k38 Ramkhamhaeng University มหาวิทยาลัยรามคำแหง'), (582, 'https://ror.org/00mtrzx11', 'es', 1, 'https://ror.org/00mtrzx11 Hospital Nacional Cayetano Heredia'), (583, 'https://ror.org/00mvp1q86', 'en', 1, 'https://ror.org/00mvp1q86 Hemwati Nandan Bahuguna Garhwal University गढ़वाल विश्वविद्यालय'), (584, 'https://ror.org/00mwdv335', 'en', 1, 'https://ror.org/00mwdv335 Académie new-yorkaise de médecine New York Academy of Medicine'), (585, 'https://ror.org/00mwhaw71', 'en', 1, 'https://ror.org/00mwhaw71 Mae Fah Luang University มหาวิทยาลัยแม่ฟ้าหลวง'), (586, 'https://ror.org/00mynj496', 'no_lang_code', 1, 'https://ror.org/00mynj496 Glazer Medical Solutions (United States)'), (587, 'https://ror.org/00mz0c648', 'en', 1, 'https://ror.org/00mz0c648 Boise VA Medical Center'), (588, 'https://ror.org/00n14a494', 'en', 1, 'https://ror.org/00n14a494 Korea Polar Research Institute 극지연구소'), (589, 'https://ror.org/00n1w4965', 'en', 1, 'https://ror.org/00n1w4965 MedStar Union Memorial Hospital'), (590, 'https://ror.org/00n2w1t65', 'en', 1, 'https://ror.org/00n2w1t65 Presbyterian Hospital'), (591, 'https://ror.org/00n3e1d98', 'en', 1, 'https://ror.org/00n3e1d98 Takasaki University of Health and Welfare 高崎健康福祉大学'), (592, 'https://ror.org/00n5htd36', 'en', 1, 'https://ror.org/00n5htd36 Westmar University'), (593, 'https://ror.org/00n8yb347', 'en', 1, 'https://ror.org/00n8yb347 Bệnh viện Chợ Rẫy Cho Ray Hospital'), (594, 'https://ror.org/00n9v4y14', 'en', 1, 'https://ror.org/00n9v4y14 Good Samaritan Hospital'), (595, 'https://ror.org/00nas2c56', 'no_lang_code', 1, 'https://ror.org/00nas2c56 Ericsson (Canada)'), (596, 'https://ror.org/00nebyg34', 'en', 1, 'https://ror.org/00nebyg34 Central Maine Medical Center'), (597, 'https://ror.org/00nf20x22', 'en', 1, 'https://ror.org/00nf20x22 Indira Gandhi Medical College and Research Institute'), (598, 'https://ror.org/00ng6k310', 'en', 1, 'https://ror.org/00ng6k310 Chapel Allerton Hospital'), (599, 'https://ror.org/00ngrq502', 'en', 1, 'https://ror.org/00ngrq502 Arak University دانشگاه اراک'), (600, 'https://ror.org/00nh9x179', 'en', 1, 'https://ror.org/00nh9x179 St Bartholomew''s Hospital'), (601, 'https://ror.org/00njz5525', 'en', 1, 'https://ror.org/00njz5525 Juravinski Hospital'), (602, 'https://ror.org/00nk17n43', 'en', 1, 'https://ror.org/00nk17n43 University of Maine at Presque Isle'), (603, 'https://ror.org/00nm7k655', 'en', 1, 'https://ror.org/00nm7k655 James Paget University Hospital'), (604, 'https://ror.org/00nmnnk78', 'en', 1, 'https://ror.org/00nmnnk78 University Medical Center of El Paso'), (605, 'https://ror.org/00nqxe643', 'en', 1, 'https://ror.org/00nqxe643 Cama and Albless Hospital'), (606, 'https://ror.org/00nr17z89', 'en', 1, 'https://ror.org/00nr17z89 VA Palo Alto Health Care System'), (607, 'https://ror.org/00nrgkr20', 'it', 1, 'https://ror.org/00nrgkr20 Cattinara Hospital Ospedale di Cattinara'), (608, 'https://ror.org/00nrtez23', 'it', 1, 'https://ror.org/00nrtez23 Azienda Ospedaliero Universitaria San Giovanni Battista'), (609, 'https://ror.org/00ns3e792', 'en', 1, 'https://ror.org/00ns3e792 King Edward Memorial Hospital'), (610, 'https://ror.org/00nsz0a92', 'en', 1, 'https://ror.org/00nsz0a92 Omaha VA Medical Center'), (611, 'https://ror.org/00nthx533', 'en', 1, 'https://ror.org/00nthx533 Geological Survey of India भारतीय भूवैज्ञानिक सर्वेक्षण'), (612, 'https://ror.org/00nvxt968', 'de', 1, 'https://ror.org/00nvxt968 Universitätsklinikum des Saarlandes'), (613, 'https://ror.org/00nwc4v84', 'tr', 1, 'https://ror.org/00nwc4v84 İstanbul Eğitim ve Araştırma Hastanesi'), (614, 'https://ror.org/00nx6aa03', 'en', 1, 'https://ror.org/00nx6aa03 Mater Research'), (615, 'https://ror.org/00nxna028', 'en', 1, 'https://ror.org/00nxna028 HR Wallingford'), (616, 'https://ror.org/00nyr7p12', 'en', 1, 'https://ror.org/00nyr7p12 Gauhati Medical College and Hospital গৌহাটী চিকিৎসা মহাবিদ্যালয়'), (617, 'https://ror.org/00nyxxr91', 'en', 1, 'https://ror.org/00nyxxr91 Peking University Cancer Hospital 北京大学肿瘤医院'), (618, 'https://ror.org/00nz9t738', 'en', 1, 'https://ror.org/00nz9t738 Ferrarotto Hospital'), (619, 'https://ror.org/00nzje529', 'en', 1, 'https://ror.org/00nzje529 Antioch University New England'), (620, 'https://ror.org/00p2tmy87', 'pt', 1, 'https://ror.org/00p2tmy87 Instituto Superior de Espinho'), (621, 'https://ror.org/00p2x3741', 'en', 1, 'https://ror.org/00p2x3741 Southend Hospital'), (622, 'https://ror.org/00p82hn55', 'en', 1, 'https://ror.org/00p82hn55 Salus University'), (623, 'https://ror.org/00p8b0t20', 'en', 1, 'https://ror.org/00p8b0t20 Belarusian State Medical University Беларускі дзяржаўны медыцынскі ўніверсітэт Белорусский государственный медицинский университет'), (624, 'https://ror.org/00p8xqj61', 'en', 1, 'https://ror.org/00p8xqj61 Karpov Institute of Physical Chemistry Акционерное общество Ордена Трудового Красного Знамени научно-исследовательский физико-химический институт имени Л.Я. Карпова'), (625, 'https://ror.org/00p9h0053', 'en', 1, 'https://ror.org/00p9h0053 Natural History Museum of Los Angeles County'), (626, 'https://ror.org/00paq4p43', 'en', 1, 'https://ror.org/00paq4p43 Bay Pines VA Healthcare System'), (627, 'https://ror.org/00pb8h375', 'en', 1, 'https://ror.org/00pb8h375 Bauman Moscow State Technical University Московский государственный технический университет имени Н. Э. Баумана'), (628, 'https://ror.org/00pbh0a34', 'en', 1, 'https://ror.org/00pbh0a34 British Museum Yr Amgueddfa Brydeinig'), (629, 'https://ror.org/00pcrz470', 'en', 1, 'https://ror.org/00pcrz470 Chengdu University of Traditional Chinese Medicine 成都中医药大学'), (630, 'https://ror.org/00pczg388', 'en', 1, 'https://ror.org/00pczg388 Sinclair Community College'), (631, 'https://ror.org/00pefnv05', 'en', 1, 'https://ror.org/00pefnv05 Museum of Heilongjiang Province 黑龙江省博物馆'), (632, 'https://ror.org/00pf0g237', 'no_lang_code', 1, 'https://ror.org/00pf0g237 Theragen'), (633, 'https://ror.org/00pg98t08', 'en', 1, 'https://ror.org/00pg98t08 Francis Marion University'), (634, 'https://ror.org/00pg9d188', 'en', 1, 'https://ror.org/00pg9d188 Al Noor Hospitals'), (635, 'https://ror.org/00pk1yr39', 'en', 1, 'https://ror.org/00pk1yr39 Sørlandet Hospital Arendal Sørlandet Sykehus HF'), (636, 'https://ror.org/00pmcf502', 'no_lang_code', 1, 'https://ror.org/00pmcf502 Talisman Energy'), (637, 'https://ror.org/00prpaj09', 'no_lang_code', 1, 'https://ror.org/00prpaj09 Alion Science and Technology (United States)'), (638, 'https://ror.org/00pw0pp06', 'en', 1, 'https://ror.org/00pw0pp06 Graz University Hospital Univ. Klinikum Graz'), (639, 'https://ror.org/00q09pe49', 'en', 1, 'https://ror.org/00q09pe49 National Taiwan University of Science and Technology'), (640, 'https://ror.org/00q38e504', 'no_lang_code', 1, 'https://ror.org/00q38e504 Lerdsin Hospital โรงพยาบาลเลิดสิน'), (641, 'https://ror.org/00q5txg88', 'en', 1, 'https://ror.org/00q5txg88 Plains Health Centre'), (642, 'https://ror.org/00q6w3x44', 'en', 1, 'https://ror.org/00q6w3x44 Ellis Hospital'), (643, 'https://ror.org/00q6wbs64', 'no_lang_code', 1, 'https://ror.org/00q6wbs64 Tianjin Huanhu Hospital 天津市环湖医院'), (644, 'https://ror.org/00q75av54', 'en', 1, 'https://ror.org/00q75av54 South Tyneside District Hospital'), (645, 'https://ror.org/00qctrq52', 'en', 1, 'https://ror.org/00qctrq52 Manipal College of Medical Sciences'), (646, 'https://ror.org/00qdkc036', 'no_lang_code', 1, 'https://ror.org/00qdkc036 Hoshigaoka Medical Center 星ヶ丘医療センター'), (647, 'https://ror.org/00qdsfq65', 'en', 1, 'https://ror.org/00qdsfq65 Korea National Institute of Health'), (648, 'https://ror.org/00qexeh70', 'en', 1, 'https://ror.org/00qexeh70 Middlesex Hospital'), (649, 'https://ror.org/00qezxe61', 'no_lang_code', 1, 'https://ror.org/00qezxe61 Ikeda Municipal Hospital 池田市立病院'), (650, 'https://ror.org/00qfq7b40', 'no_lang_code', 1, 'https://ror.org/00qfq7b40 PerkinElmer Biosignal'), (651, 'https://ror.org/00qhe6a56', 'no_lang_code', 1, 'https://ror.org/00qhe6a56 Miltenyi Biotec (Germany)'), (652, 'https://ror.org/00qkhxq50', 'en', 1, 'https://ror.org/00qkhxq50 Jessa Hospital Jessa Ziekenhuis'), (653, 'https://ror.org/00qm2vr07', 'en', 1, 'https://ror.org/00qm2vr07 Nakamura Gakuen University 中村学園大学'), (654, 'https://ror.org/00qmnd673', 'en', 1, 'https://ror.org/00qmnd673 Kindai University Hospital 近畿大学医学部 附属病院'), (655, 'https://ror.org/00qp1n828', 'en', 1, 'https://ror.org/00qp1n828 King George Hospital'), (656, 'https://ror.org/00qpv3w06', 'en', 1, 'https://ror.org/00qpv3w06 Amref Health Africa'), (657, 'https://ror.org/00qt4k071', 'it', 1, 'https://ror.org/00qt4k071 Ospedale San Filippo Neri'), (658, 'https://ror.org/00qt5ka73', 'no_lang_code', 1, 'https://ror.org/00qt5ka73 Arttic (France)'), (659, 'https://ror.org/00qvx5329', 'en', 1, 'https://ror.org/00qvx5329 Doheny Eye Institute'), (660, 'https://ror.org/00qwj7906', 'no_lang_code', 1, 'https://ror.org/00qwj7906 EA Technology'), (661, 'https://ror.org/00qwnam72', 'en', 1, 'https://ror.org/00qwnam72 Chiba Institute of Technology 千葉工業大学'), (662, 'https://ror.org/00qz24g20', 'en', 1, 'https://ror.org/00qz24g20 University of North Carolina Health Care'), (663, 'https://ror.org/00qzd4032', 'no_lang_code', 1, 'https://ror.org/00qzd4032 Quality Biological'), (664, 'https://ror.org/00r1hxj45', 'en', 1, 'https://ror.org/00r1hxj45 Noor Eye Hospital بیمارستان چشمپزشکی نور'), (665, 'https://ror.org/00r2gde63', 'en', 1, 'https://ror.org/00r2gde63 Ascamm Technologic Center Centro Tecnológico Ascamm'), (666, 'https://ror.org/00r59hk87', 'en', 1, 'https://ror.org/00r59hk87 North Kansas City Hospital'), (667, 'https://ror.org/00r5kgd36', 'en', 1, 'https://ror.org/00r5kgd36 Nenagh Hospital Ospidéal an Aonaigh'), (668, 'https://ror.org/00r5mr697', 'en', 1, 'https://ror.org/00r5mr697 Western New Mexico University'), (669, 'https://ror.org/00r66pz14', 'en', 1, 'https://ror.org/00r66pz14 Natural England'), (670, 'https://ror.org/00r67fz39', 'en', 1, 'https://ror.org/00r67fz39 Second Affiliated Hospital of Chongqing Medical University'), (671, 'https://ror.org/00r9g7t11', 'en', 1, 'https://ror.org/00r9g7t11 Oregon University System'), (672, 'https://ror.org/00ra1fg11', 'en', 1, 'https://ror.org/00ra1fg11 Pennsylvania Department of Health'), (673, 'https://ror.org/00rey4c89', 'no_lang_code', 1, 'https://ror.org/00rey4c89 General Electric (Canada)'), (674, 'https://ror.org/00rgv0036', 'en', 1, 'https://ror.org/00rgv0036 Cameron University'), (675, 'https://ror.org/00rh8m666', 'en', 1, 'https://ror.org/00rh8m666 Institute For Defense Analyses Instituto de Análisis de la Defensa'), (676, 'https://ror.org/00rkxs190', 'no_lang_code', 1, 'https://ror.org/00rkxs190 TDA Research (United States)'), (677, 'https://ror.org/00rm3wf49', 'en', 1, 'https://ror.org/00rm3wf49 Lilavati Hospital & Research Centre'), (678, 'https://ror.org/00rpfyx16', 'en', 1, 'https://ror.org/00rpfyx16 Belvidere Hospital'), (679, 'https://ror.org/00rsqg119', 'en', 1, 'https://ror.org/00rsqg119 King Edward VII Hospital'), (680, 'https://ror.org/00rt1d436', 'en', 1, 'https://ror.org/00rt1d436 American Psychological Association'), (681, 'https://ror.org/00rws8x56', 'en', 1, 'https://ror.org/00rws8x56 Gimpo Airport Wooridul Spine Hospital 서울우리들병원'), (682, 'https://ror.org/00rz5xc38', 'en', 1, 'https://ror.org/00rz5xc38 Mississippi Valley State University'), (683, 'https://ror.org/00rzeqe23', 'en', 1, 'https://ror.org/00rzeqe23 Institut postgraduálního vzdělávání ve zdravotnictví Institute for Postgraduate Medical Education'), (684, 'https://ror.org/00s31qp90', 'en', 1, 'https://ror.org/00s31qp90 Operation PAR'), (685, 'https://ror.org/00s4vhs88', 'es', 1, 'https://ror.org/00s4vhs88 Doctor Negrín University Hospital Hospital Universitario de Gran Canaria Doctor Negrín'), (686, 'https://ror.org/00s58vq35', 'en', 1, 'https://ror.org/00s58vq35 Instituto Superior Bissaya Barreto'), (687, 'https://ror.org/00s5x0w83', 'es', 1, 'https://ror.org/00s5x0w83 Almirante Nef Naval Hospital Hospital Naval Almirante Nef'), (688, 'https://ror.org/00s7qjp35', 'pt', 1, 'https://ror.org/00s7qjp35 Universidade Vale do Rio Verde'), (689, 'https://ror.org/00s9dpb54', 'en', 1, 'https://ror.org/00s9dpb54 Myongji University 명지대학교'), (690, 'https://ror.org/00sbqe313', 'en', 1, 'https://ror.org/00sbqe313 Sacred Heart Medical Center'), (691, 'https://ror.org/00se0qr64', 'en', 1, 'https://ror.org/00se0qr64 Summit Oaks Hospital'), (692, 'https://ror.org/00sf92s91', 'en', 1, 'https://ror.org/00sf92s91 Lehigh Valley Health Network'), (693, 'https://ror.org/00sge8677', 'en', 1, 'https://ror.org/00sge8677 BRAC University ব্র্যাক ইউনিভার্সিটি'), (694, 'https://ror.org/00sh4ma05', 'en', 1, 'https://ror.org/00sh4ma05 Southwestern Oregon Community College'), (695, 'https://ror.org/00shmxd32', 'en', 1, 'https://ror.org/00shmxd32 PBMA''s H.V. Desai Eye Hospital'), (696, 'https://ror.org/00skrw306', 'en', 1, 'https://ror.org/00skrw306 Colorado Department of Human Services'), (697, 'https://ror.org/00skwgg83', 'en', 1, 'https://ror.org/00skwgg83 Fukuoka Women''s University 福岡女子大学'), (698, 'https://ror.org/00sm8k518', 'it', 1, 'https://ror.org/00sm8k518 Azienda Ospedaliera Universitaria Integrata Verona'), (699, 'https://ror.org/00smwky98', 'no_lang_code', 1, 'https://ror.org/00smwky98 Tokushima Bunri University 徳島文理大学'), (700, 'https://ror.org/00snwj435', 'en', 1, 'https://ror.org/00snwj435 Shriners Hospitals for Children - Portland'), (701, 'https://ror.org/00spnmn10', 'no_lang_code', 1, 'https://ror.org/00spnmn10 Whalen Biomedical'), (702, 'https://ror.org/00spys463', 'en', 1, 'https://ror.org/00spys463 Los Angeles Medical Center'), (703, 'https://ror.org/00sqp6g97', 'fr', 1, 'https://ror.org/00sqp6g97 Centre hospitalier Emile Roux'), (704, 'https://ror.org/00swp5c87', 'en', 1, 'https://ror.org/00swp5c87 Gynuity Health Projects'), (705, 'https://ror.org/00swtwf35', 'en', 1, 'https://ror.org/00swtwf35 Chest Diseases Hospital المستشفى الصدري'), (706, 'https://ror.org/00swv7d52', 'en', 1, 'https://ror.org/00swv7d52 Penn Presbyterian Medical Center'), (707, 'https://ror.org/00sxe0e68', 'en', 1, 'https://ror.org/00sxe0e68 Harper University Hospital'), (708, 'https://ror.org/00t0h7472', 'pt', 1, 'https://ror.org/00t0h7472 Escola Superior de Educadores de Infância Maria Ulrich'), (709, 'https://ror.org/00t0n9020', 'en', 1, 'https://ror.org/00t0n9020 Kaplan Medical Center מרכז רפואי קפלן'), (710, 'https://ror.org/00t1xpx62', 'fr', 1, 'https://ror.org/00t1xpx62 Hôpital Kirchberg'), (711, 'https://ror.org/00t2n7611', 'da', 1, 'https://ror.org/00t2n7611 Roskilde Hospital Roskilde Sygehus'), (712, 'https://ror.org/00t30ch44', 'en', 1, 'https://ror.org/00t30ch44 Midwestern State University Université d''État du midwest'), (713, 'https://ror.org/00t3s0v26', 'en', 1, 'https://ror.org/00t3s0v26 Lok Nayak Jai Prakash Narayan Hospital'), (714, 'https://ror.org/00t47w971', 'en', 1, 'https://ror.org/00t47w971 Clayton State University'), (715, 'https://ror.org/00t60zh31', 'en', 1, 'https://ror.org/00t60zh31 Kaiser Permanente'), (716, 'https://ror.org/00t61fh47', 'en', 1, 'https://ror.org/00t61fh47 Ijinkai Takeda General Hospital 武田総合病院は'), (717, 'https://ror.org/00t9hhv14', 'en', 1, 'https://ror.org/00t9hhv14 University of South Carolina Upstate'), (718, 'https://ror.org/00tapj019', 'en', 1, 'https://ror.org/00tapj019 Asociación de Universidades Americanas Association des universités américaines Association of American Universities'), (719, 'https://ror.org/00tb6zr84', 'en', 1, 'https://ror.org/00tb6zr84 American School Health Association'), (720, 'https://ror.org/00tcmr651', 'en', 1, 'https://ror.org/00tcmr651 Kathmandu Medical College Teaching Hospital'), (721, 'https://ror.org/00tdzhd41', 'es', 1, 'https://ror.org/00tdzhd41 Hospital Fernández'), (722, 'https://ror.org/00te55z70', 'fi', 1, 'https://ror.org/00te55z70 Mikkelin keskussairaala'), (723, 'https://ror.org/00tfedq56', 'en', 1, 'https://ror.org/00tfedq56 Center for Medical, Agricultural and Veterinary Entomology'), (724, 'https://ror.org/00tg1yh20', 'no_lang_code', 1, 'https://ror.org/00tg1yh20 Aetna (United States)'), (725, 'https://ror.org/00tjv0s33', 'en', 1, 'https://ror.org/00tjv0s33 Keimyung University 계명대학교'), (726, 'https://ror.org/00tkrd758', 'en', 1, 'https://ror.org/00tkrd758 Gartnavel General Hospital'), (727, 'https://ror.org/00tnppw48', 'en', 1, 'https://ror.org/00tnppw48 Adran yr Amgylchedd, Bwyd a Materion Gwledig Department for Environment Food and Rural Affairs'), (728, 'https://ror.org/00tq7xg10', 'en', 1, 'https://ror.org/00tq7xg10 Suzuka University of Medical Science 鈴鹿医療科学大学'), (729, 'https://ror.org/00trhvv58', 'en', 1, 'https://ror.org/00trhvv58 Shriners Hospitals for Children - Greenville'), (730, 'https://ror.org/00tt53p64', 'en', 1, 'https://ror.org/00tt53p64 SRC'), (731, 'https://ror.org/00tta1k37', 'en', 1, 'https://ror.org/00tta1k37 Folktandvården Västra Götaland Public Dental Service Västra Götaland'), (732, 'https://ror.org/00tw3jy02', 'en', 1, 'https://ror.org/00tw3jy02 MRC Laboratory of Molecular Biology'), (733, 'https://ror.org/00tze5d69', 'en', 1, 'https://ror.org/00tze5d69 Teikyo University Hospital 帝京大学医学部附属病院'), (734, 'https://ror.org/00tzmb306', 'en', 1, 'https://ror.org/00tzmb306 Danish Maritime Institute'), (735, 'https://ror.org/00v3ak792', 'en', 1, 'https://ror.org/00v3ak792 Universidad de Dallas University of Dallas Université de Dallas'), (736, 'https://ror.org/00v4dac24', 'en', 1, 'https://ror.org/00v4dac24 Leeds Teaching Hospitals NHS Trust'), (737, 'https://ror.org/00v5h4y49', 'en', 1, 'https://ror.org/00v5h4y49 Derriford Hospital'), (738, 'https://ror.org/00v6af077', 'en', 1, 'https://ror.org/00v6af077 Calvary Hospital'), (739, 'https://ror.org/00v6s9648', 'en', 1, 'https://ror.org/00v6s9648 University of Worcester'), (740, 'https://ror.org/00v81k483', 'en', 1, 'https://ror.org/00v81k483 Mokpo National University 목포대학교'), (741, 'https://ror.org/00v8fdc16', 'en', 1, 'https://ror.org/00v8fdc16 Autonomous University of Queretaro Universidad Autónoma de Querétaro'), (742, 'https://ror.org/00var5q80', 'en', 1, 'https://ror.org/00var5q80 American Geophysical Union'), (743, 'https://ror.org/00vbnvy39', 'en', 1, 'https://ror.org/00vbnvy39 Montgomery General Hospital'), (744, 'https://ror.org/00vcyhn10', 'pt', 1, 'https://ror.org/00vcyhn10 Catholic University of Santos Universidade Católica de Santos'), (745, 'https://ror.org/00vdhsr35', 'en', 1, 'https://ror.org/00vdhsr35 Marywood University'), (746, 'https://ror.org/00vhhbt37', 'en', 1, 'https://ror.org/00vhhbt37 Howard Payne University'), (747, 'https://ror.org/00vhr7p75', 'en', 1, 'https://ror.org/00vhr7p75 Battle Hospital'), (748, 'https://ror.org/00vjb5165', 'en', 1, 'https://ror.org/00vjb5165 Ministry of Health'), (749, 'https://ror.org/00vkrxq08', 'en', 1, 'https://ror.org/00vkrxq08 University Malaya Medical Centre'), (750, 'https://ror.org/00vmdr162', 'en', 1, 'https://ror.org/00vmdr162 Kyoritsu Women''s University 共立女子大学'), (751, 'https://ror.org/00vmr1p37', 'en', 1, 'https://ror.org/00vmr1p37 Seacroft Hospital'), (752, 'https://ror.org/00vpv1x26', 'en', 1, 'https://ror.org/00vpv1x26 Tokyo Medical University Hachioji Medical Center 東京医科大学八王子医療センター'), (753, 'https://ror.org/00vpw9h05', 'en', 1, 'https://ror.org/00vpw9h05 Honolulu Community College'), (754, 'https://ror.org/00vqhxg21', 'no_lang_code', 1, 'https://ror.org/00vqhxg21 SMEC (Australia)'), (755, 'https://ror.org/00vv7qz60', 'no_lang_code', 1, 'https://ror.org/00vv7qz60 Fukuoka Hospital 福岡病院'), (756, 'https://ror.org/00vvvt117', 'en', 1, 'https://ror.org/00vvvt117 Sookmyung Women''s University 숙명여자대학교'), (757, 'https://ror.org/00vx2w009', 'en', 1, 'https://ror.org/00vx2w009 Lapin keskussairaala Lapland Central Hospital'), (758, 'https://ror.org/00vxe3x87', 'de', 1, 'https://ror.org/00vxe3x87 Sternwarte Stuttgart, Stuttgart Observatory'), (759, 'https://ror.org/00vyyx863', 'en', 1, 'https://ror.org/00vyyx863 Eastern Health'), (760, 'https://ror.org/00vznbp60', 'no_lang_code', 1, 'https://ror.org/00vznbp60 Alpha Universe'), (761, 'https://ror.org/00vzw9736', 'no_lang_code', 1, 'https://ror.org/00vzw9736 Kariya Toyota General Hospital 刈谷豊田総合病院'), (762, 'https://ror.org/00vzzhs86', 'no_lang_code', 1, 'https://ror.org/00vzzhs86 Sir Hurkisondas Nurrotumdas Medical Research Society'), (763, 'https://ror.org/00w1fsg08', 'en', 1, 'https://ror.org/00w1fsg08 Hyogo Prefectural Awaji Medical Center 兵庫県立淡路医療センター'), (764, 'https://ror.org/00w6bqp33', 'en', 1, 'https://ror.org/00w6bqp33 National University of Health Sciences'), (765, 'https://ror.org/00w6r1881', 'en', 1, 'https://ror.org/00w6r1881 Institute of Nanostructured Materials Istituto per lo Studio dei Materiali Nanostrutturati'), (766, 'https://ror.org/00w7dj406', 'en', 1, 'https://ror.org/00w7dj406 American Society of Health-System Pharmacists'), (767, 'https://ror.org/00w7vnc45', 'en', 1, 'https://ror.org/00w7vnc45 America''s Health Insurance Plans'), (768, 'https://ror.org/00w81q081', 'fr', 1, 'https://ror.org/00w81q081 Hôpital Albert Calmette'), (769, 'https://ror.org/00w93dg44', 'en', 1, 'https://ror.org/00w93dg44 Na Homolce Hospital Nemocnice Na Homolce'), (770, 'https://ror.org/00watgv28', 'en', 1, 'https://ror.org/00watgv28 College of Saint Benedict and Saint John''s University Collège de saint benedict et université de saint jean'), (771, 'https://ror.org/00wbzw723', 'en', 1, 'https://ror.org/00wbzw723 University of Washington Medical Center'), (772, 'https://ror.org/00wc07928', 'en', 1, 'https://ror.org/00wc07928 University of Lomé Université de Lomé'), (773, 'https://ror.org/00we60833', 'en', 1, 'https://ror.org/00we60833 Women''s & Children''s Health Research Institute'), (774, 'https://ror.org/00wejpz79', 'en', 1, 'https://ror.org/00wejpz79 Hyogo University of Teacher Education 兵庫教育大学'), (775, 'https://ror.org/00wemg618', 'en', 1, 'https://ror.org/00wemg618 Youjiang Medical College for Nationalities 右江民族医学院'), (776, 'https://ror.org/00wfvh315', 'en', 1, 'https://ror.org/00wfvh315 Charles Sturt University'), (777, 'https://ror.org/00wfvxt55', 'en', 1, 'https://ror.org/00wfvxt55 Minnesota Department of Human Services'), (778, 'https://ror.org/00wg2b048', 'en', 1, 'https://ror.org/00wg2b048 Royal University Hospital'), (779, 'https://ror.org/00whfdj78', 'no_lang_code', 1, 'https://ror.org/00whfdj78 BioTek (United States)'), (780, 'https://ror.org/00wk9vd23', 'en', 1, 'https://ror.org/00wk9vd23 Regionshospitalet Skive Skive Hospital'), (781, 'https://ror.org/00wkhef66', 'en', 1, 'https://ror.org/00wkhef66 Reinier de Graaf Hospital'), (782, 'https://ror.org/00wksha49', 'en', 1, 'https://ror.org/00wksha49 National Institute of Biological Sciences, Beijing 北京生命科学研究所'), (783, 'https://ror.org/00wm07d60', 'en', 1, 'https://ror.org/00wm07d60 Van Andel Institute'), (784, 'https://ror.org/00wmm6v75', 'en', 1, 'https://ror.org/00wmm6v75 American University of Beirut Medical Center'), (785, 'https://ror.org/00wn7d965', 'en', 1, 'https://ror.org/00wn7d965 University of Virginia Health System'), (786, 'https://ror.org/00wpte173', 'en', 1, 'https://ror.org/00wpte173 Grey Nuns Community Hospital'), (787, 'https://ror.org/00wr13y59', 'en', 1, 'https://ror.org/00wr13y59 Lutheran Medical Center'), (788, 'https://ror.org/00wspbn44', 'en', 1, 'https://ror.org/00wspbn44 Canterbury Health Laboratories'), (789, 'https://ror.org/00wt7xg39', 'no_lang_code', 1, 'https://ror.org/00wt7xg39 Westat (United States)'), (790, 'https://ror.org/00wtgx181', 'en', 1, 'https://ror.org/00wtgx181 Highland Hospital'), (791, 'https://ror.org/00wtq7t14', 'en', 1, 'https://ror.org/00wtq7t14 Governors State University'), (792, 'https://ror.org/00wygsf57', 'en', 1, 'https://ror.org/00wygsf57 Dongseo University 동서대학교'), (793, 'https://ror.org/00wys9y90', 'en', 1, 'https://ror.org/00wys9y90 Herlev Hospital'), (794, 'https://ror.org/00wyx7h61', 'en', 1, 'https://ror.org/00wyx7h61 Royal Alexandra Hospital'), (795, 'https://ror.org/00wzdr059', 'en', 1, 'https://ror.org/00wzdr059 St. Paul''s Hospital'), (796, 'https://ror.org/00wzt9y79', 'en', 1, 'https://ror.org/00wzt9y79 Ohio Cancer Research Associates'), (797, 'https://ror.org/00x396v48', 'en', 1, 'https://ror.org/00x396v48 Mendota Mental Health Institute'), (798, 'https://ror.org/00x3rpv59', 'en', 1, 'https://ror.org/00x3rpv59 Tomsk State Pedagogical University Томский государственный педагогический университет'), (799, 'https://ror.org/00x5b2p37', 'en', 1, 'https://ror.org/00x5b2p37 Carroll College'), (800, 'https://ror.org/00x8ccz20', 'en', 1, 'https://ror.org/00x8ccz20 University of Wisconsin–La Crosse Université du Wisconsin–La Crosse'), (801, 'https://ror.org/00xb4cb83', 'en', 1, 'https://ror.org/00xb4cb83 Southern Arizona VA Health Care System'), (802, 'https://ror.org/00xdn8y92', 'en', 1, 'https://ror.org/00xdn8y92 Punjabi University पंजाबी विश्वविद्यालय ਪੰਜਾਬੀ ਯੂਨੀਵਰਸਿਟੀ'), (803, 'https://ror.org/00xhz2q61', 'en', 1, 'https://ror.org/00xhz2q61 Seoul Veterans Hospital'), (804, 'https://ror.org/00xmkp704', 'en', 1, 'https://ror.org/00xmkp704 Ghent University Hospital Universitair Ziekenhuis Gent'), (805, 'https://ror.org/00xmn3c34', 'en', 1, 'https://ror.org/00xmn3c34 Monmouth Medical Center'), (806, 'https://ror.org/00xmzb398', 'pt', 1, 'https://ror.org/00xmzb398 Hospital Alemão Oswaldo Cruz'), (807, 'https://ror.org/00xnmcq32', 'en', 1, 'https://ror.org/00xnmcq32 Grey''s Hospital'), (808, 'https://ror.org/00xpcm295', 'en', 1, 'https://ror.org/00xpcm295 Wyoming State Department of Health'), (809, 'https://ror.org/00xwgyp12', 'pt', 1, 'https://ror.org/00xwgyp12 Federal Rural University of Rio de Janeiro Universidade Federal Rural do Rio de Janeiro'), (810, 'https://ror.org/00xyeez13', 'en', 1, 'https://ror.org/00xyeez13 Kunming University of Science and Technology 昆明理工大学'), (811, 'https://ror.org/00xz7ma09', 'fr', 1, 'https://ror.org/00xz7ma09 Hôpital régional'), (812, 'https://ror.org/00xznf773', 'en', 1, 'https://ror.org/00xznf773 Auburn Community Hospital'), (813, 'https://ror.org/00y1kmp77', 'en', 1, 'https://ror.org/00y1kmp77 NIMTS Hospital'), (814, 'https://ror.org/00y64dx33', 'en', 1, 'https://ror.org/00y64dx33 Monroe Carell Jr. Children''s Hospital'), (815, 'https://ror.org/00y6akb91', 'no_lang_code', 1, 'https://ror.org/00y6akb91 Revolution Analytics (United States)'), (816, 'https://ror.org/00ydm0027', 'en', 1, 'https://ror.org/00ydm0027 University of Maine at Farmington'), (817, 'https://ror.org/00yeama42', 'no_lang_code', 1, 'https://ror.org/00yeama42 Compact Membrane Systems (United States)'), (818, 'https://ror.org/00yep6g06', 'en', 1, 'https://ror.org/00yep6g06 Kaiser Foundation Hospital'), (819, 'https://ror.org/00yesn553', 'en', 1, 'https://ror.org/00yesn553 Iranian Institute for Health Sciences Research'), (820, 'https://ror.org/00yeysh84', 'en', 1, 'https://ror.org/00yeysh84 Lake Superior State University Université d''État du lac supérieur'), (821, 'https://ror.org/00yghrj63', 'en', 1, 'https://ror.org/00yghrj63 Hendrix College'), (822, 'https://ror.org/00ygzyy93', 'en', 1, 'https://ror.org/00ygzyy93 Independent University of Moscow Независимый Московский университет'), (823, 'https://ror.org/00yhnba62', 'en', 1, 'https://ror.org/00yhnba62 Qatar University Universidad de Catar جامعة قطر'), (824, 'https://ror.org/00yj3jn96', 'en', 1, 'https://ror.org/00yj3jn96 Hunterdon Medical Center'), (825, 'https://ror.org/00ykktm91', 'pt', 1, 'https://ror.org/00ykktm91 Instituto Superior de Línguas e Administração'), (826, 'https://ror.org/00ym4dr28', 'pt', 1, 'https://ror.org/00ym4dr28 Hospital Militar Principal'), (827, 'https://ror.org/00yp6m473', 'en', 1, 'https://ror.org/00yp6m473 Udmurt State University Удмуртский государственный университет'), (828, 'https://ror.org/00ys1hz88', 'en', 1, 'https://ror.org/00ys1hz88 Nagaoka University of Technology 長岡技術科学大学'), (829, 'https://ror.org/00ysvbp68', 'en', 1, 'https://ror.org/00ysvbp68 Institute of Post Graduate Medical Education and Research'), (830, 'https://ror.org/00yw5v481', 'en', 1, 'https://ror.org/00yw5v481 Prince George''s Community College'), (831, 'https://ror.org/00yx91b22', 'en', 1, 'https://ror.org/00yx91b22 Barnsley Hospital NHS Foundation Trust'), (832, 'https://ror.org/00yyp2526', 'en', 1, 'https://ror.org/00yyp2526 Silsoe Research Institute'), (833, 'https://ror.org/00z0drp11', 'no_lang_code', 1, 'https://ror.org/00z0drp11 Agnico Eagle (Canada)'), (834, 'https://ror.org/00z0ne711', 'en', 1, 'https://ror.org/00z0ne711 Saint Francis Hospital'), (835, 'https://ror.org/00z0xmg52', 'it', 1, 'https://ror.org/00z0xmg52 Ospedale Santa Maria alle Scotte Santa Maria alle Scotte Hospital'), (836, 'https://ror.org/00z1vyk43', 'en', 1, 'https://ror.org/00z1vyk43 King Fahd Armed Forces Hospital مستشفى الملك فهد للقوات المسلحة'), (837, 'https://ror.org/00z28d984', 'it', 1, 'https://ror.org/00z28d984 Azienda ospedaliera "Bianchi-Melacrino-Morelli"'), (838, 'https://ror.org/00z2qhk53', 'en', 1, 'https://ror.org/00z2qhk53 University of Wisconsin–Superior Université du Wisconsin–Superior'), (839, 'https://ror.org/00z769k62', 'pt', 1, 'https://ror.org/00z769k62 Hospital de Faro EPE'), (840, 'https://ror.org/00z847107', 'pt', 1, 'https://ror.org/00z847107 Escola Superior de Educação de Torres Novas'), (841, 'https://ror.org/00z9qkg54', 'en', 1, 'https://ror.org/00z9qkg54 Highland Hospital'), (842, 'https://ror.org/00z9zsj19', 'en', 1, 'https://ror.org/00z9zsj19 Butler Hospital'), (843, 'https://ror.org/00zat6v61', 'en', 1, 'https://ror.org/00zat6v61 Guangzhou Medical University 广州医科大学'), (844, 'https://ror.org/00zb26x20', 'en', 1, 'https://ror.org/00zb26x20 Ural State University of Economics Уральский государственный экономический университет'), (845, 'https://ror.org/00zbht122', 'es', 1, 'https://ror.org/00zbht122 Hospital Xeral Calde'), (846, 'https://ror.org/00zc7y345', 'pt', 1, 'https://ror.org/00zc7y345 Hospital de São José'), (847, 'https://ror.org/00zcy2665', 'en', 1, 'https://ror.org/00zcy2665 Vestfold University College'), (848, 'https://ror.org/00zdnkx70', 'en', 1, 'https://ror.org/00zdnkx70 National Tsing Hua University'), (849, 'https://ror.org/00zfzef50', 'en', 1, 'https://ror.org/00zfzef50 National Development and Research Institutes'), (850, 'https://ror.org/00zhvdn11', 'en', 1, 'https://ror.org/00zhvdn11 Tunghai University 東海大學'), (851, 'https://ror.org/00zjtek40', 'tr', 1, 'https://ror.org/00zjtek40 Dicle Üniversitesi Hastaneleri'), (852, 'https://ror.org/00znqwq11', 'en', 1, 'https://ror.org/00znqwq11 VA San Diego Healthcare System'), (853, 'https://ror.org/00zpz3d35', 'en', 1, 'https://ror.org/00zpz3d35 Nevill Hall Hospital'), (854, 'https://ror.org/00zq17821', 'en', 1, 'https://ror.org/00zq17821 General Hospital of Athens G. Genimatas'), (855, 'https://ror.org/00zrn3e14', 'es', 1, 'https://ror.org/00zrn3e14 Hospital del Salvador'), (856, 'https://ror.org/00zszzj16', 'en', 1, 'https://ror.org/00zszzj16 Al Amal Hospital Jeddah'), (857, 'https://ror.org/00ztyx381', 'en', 1, 'https://ror.org/00ztyx381 Latrobe Regional Hospital'), (858, 'https://ror.org/00zydn239', 'tr', 1, 'https://ror.org/00zydn239 Adana Numune Eğitim ve Araştırma Hastanesi'), (859, 'https://ror.org/00zyk6d86', 'es', 1, 'https://ror.org/00zyk6d86 Hospital Alto Deba'), (860, 'https://ror.org/00zz54311', 'en', 1, 'https://ror.org/00zz54311 Australian Centre for Sexual Health'), (861, 'https://ror.org/00zzcmy73', 'en', 1, 'https://ror.org/00zzcmy73 Hellenic Red Cross Ελληνικός Ερυθρός Σταυρός'), (862, 'https://ror.org/0101aa973', 'en', 1, 'https://ror.org/0101aa973 Hollywood Private Hospital'), (863, 'https://ror.org/0103a0295', 'no_lang_code', 1, 'https://ror.org/0103a0295 Teleflex (Canada)'), (864, 'https://ror.org/0103dxn66', 'no_lang_code', 1, 'https://ror.org/0103dxn66 Shanghai Changzheng Hospital'); INSERT INTO `rors` VALUES (865, 'https://ror.org/0103jbm17', 'en', 1, 'https://ror.org/0103jbm17 Golden Jubilee National Hospital'), (866, 'https://ror.org/010567a58', 'fr', 1, 'https://ror.org/010567a58 Centre Hospitalier Universitaire Amiens-Picardie'), (867, 'https://ror.org/01056ge55', 'en', 1, 'https://ror.org/01056ge55 Canisius College'), (868, 'https://ror.org/0105k4695', 'no_lang_code', 1, 'https://ror.org/0105k4695 Novogene Bioinformatics Institute'), (869, 'https://ror.org/0107t3e14', 'en', 1, 'https://ror.org/0107t3e14 Akron Children''s Hospital'), (870, 'https://ror.org/010826a91', 'en', 1, 'https://ror.org/010826a91 Shanghai Ninth People''s Hospital 上海第九人民医院'), (871, 'https://ror.org/0108e1t34', 'en', 1, 'https://ror.org/0108e1t34 Applied Research and Communications Fund'), (872, 'https://ror.org/0108gdg43', 'en', 1, 'https://ror.org/0108gdg43 Sri Ramachandra Institute of Higher Education and Research श्री रामचंद्र मेडिकल कालिज एवं अनुसंधान संस्थान சிறீ இராமச்சந்திரா மருத்துவக் கல்லூரி மற்றும் ஆய்வுக் கழகம்'), (873, 'https://ror.org/010acrp16', 'en', 1, 'https://ror.org/010acrp16 University of West Alabama'), (874, 'https://ror.org/010bdq555', 'en', 1, 'https://ror.org/010bdq555 Michigan Health Council'), (875, 'https://ror.org/010bsbc18', 'pt', 1, 'https://ror.org/010bsbc18 Hospital Prof. Dr. Fernando Fonseca'), (876, 'https://ror.org/010bv4c75', 'no_lang_code', 1, 'https://ror.org/010bv4c75 Tsukuba Memorial Hospital 筑波記念病院'), (877, 'https://ror.org/010d4kb47', 'it', 1, 'https://ror.org/010d4kb47 Ospedale Sant''Anna'), (878, 'https://ror.org/010ezwq65', 'no_lang_code', 1, 'https://ror.org/010ezwq65 Praxis (United States)'), (879, 'https://ror.org/010gbda42', 'en', 1, 'https://ror.org/010gbda42 Government Medical College and Hospital'), (880, 'https://ror.org/010gckf65', 'en', 1, 'https://ror.org/010gckf65 Sikkim Manipal University'), (881, 'https://ror.org/010gpfc02', 'no', 1, 'https://ror.org/010gpfc02 Bærum Sykehus'), (882, 'https://ror.org/010h7bv12', 'no_lang_code', 1, 'https://ror.org/010h7bv12 Integrated Plant Genetics (United States)'), (883, 'https://ror.org/010hq5p48', 'it', 1, 'https://ror.org/010hq5p48 Ospedale Sacro Cuore Don Calabria'), (884, 'https://ror.org/010jskt71', 'en', 1, 'https://ror.org/010jskt71 Embry–Riddle Aeronautical University'), (885, 'https://ror.org/010jx2260', 'en', 1, 'https://ror.org/010jx2260 National Institute of Agricultural Botany'), (886, 'https://ror.org/010kthv55', 'no_lang_code', 1, 'https://ror.org/010kthv55 Nakadōri General Hospital 中通総合病院'), (887, 'https://ror.org/010md9d18', 'en', 1, 'https://ror.org/010md9d18 Oklahoma City VA Medical Center'), (888, 'https://ror.org/010n41y16', 'en', 1, 'https://ror.org/010n41y16 Southeast Missouri State University'), (889, 'https://ror.org/010njnb56', 'en', 1, 'https://ror.org/010njnb56 Craig Hospital'), (890, 'https://ror.org/010ns0q29', 'en', 1, 'https://ror.org/010ns0q29 North Memorial Medical Center'), (891, 'https://ror.org/010q6ek40', 'tr', 1, 'https://ror.org/010q6ek40 Haseki Eğitim ve Araştırma Hastanesi'), (892, 'https://ror.org/010s72f83', 'en', 1, 'https://ror.org/010s72f83 South Infirmary Victoria University Hospital'), (893, 'https://ror.org/010tb3a87', 'en', 1, 'https://ror.org/010tb3a87 Nagatomi Neurosurgical Hospital 永冨脳神経外科病院'), (894, 'https://ror.org/010tmdc88', 'it', 1, 'https://ror.org/010tmdc88 Ospedale Maggiore Carlo Alberto Pizzardi'), (895, 'https://ror.org/010wh8q62', 'en', 1, 'https://ror.org/010wh8q62 Raja Isteri Pengiran Anak Saleha Hospital'), (896, 'https://ror.org/010zy0m59', 'en', 1, 'https://ror.org/010zy0m59 Kemerovo State Medical Academy Кемеровская государственная медицинская академия'), (897, 'https://ror.org/0112eam10', 'en', 1, 'https://ror.org/0112eam10 Canadian Institute for Health Information'), (898, 'https://ror.org/0112t7451', 'en', 1, 'https://ror.org/0112t7451 Presidio Ospedaliero San Salvatore - Pesaro San Salvatore Hospital'), (899, 'https://ror.org/0116mdr21', 'en', 1, 'https://ror.org/0116mdr21 Graduate Hospital'), (900, 'https://ror.org/0119j8n26', 'no_lang_code', 1, 'https://ror.org/0119j8n26 Glsynthesis'), (901, 'https://ror.org/011ac6r71', 'en', 1, 'https://ror.org/011ac6r71 Glanrhyd Hospital'), (902, 'https://ror.org/011apjk30', 'fr', 1, 'https://ror.org/011apjk30 Centre Hospitalier Universitaire Brugmann'), (903, 'https://ror.org/011as4z76', 'fr', 1, 'https://ror.org/011as4z76 Centre Hospitalier Jean-Rostand'), (904, 'https://ror.org/011bdtx65', 'en', 1, 'https://ror.org/011bdtx65 Cheng Shiu University'), (905, 'https://ror.org/011ezgm44', 'en', 1, 'https://ror.org/011ezgm44 Dowling College'), (906, 'https://ror.org/011fkz177', 'en', 1, 'https://ror.org/011fkz177 St. Luke''s Hospital'), (907, 'https://ror.org/011hn1c89', 'en', 1, 'https://ror.org/011hn1c89 National Hospital of Sri Lanka'), (908, 'https://ror.org/011hz4254', 'en', 1, 'https://ror.org/011hz4254 CRUK/MRC Oxford Institute for Radiation Oncology'), (909, 'https://ror.org/011jgwj89', 'en', 1, 'https://ror.org/011jgwj89 Iranian Academy of Medical Sciences فرهنگستان علوم پزشکی جمهوری اسلامی ایران'), (910, 'https://ror.org/011mkef94', 'en', 1, 'https://ror.org/011mkef94 Kaiser Permanente Walnut Creek Medical Center'), (911, 'https://ror.org/011p8xd65', 'en', 1, 'https://ror.org/011p8xd65 Prince Philip Dental Hospital 菲臘牙科醫院'), (912, 'https://ror.org/011qwff60', 'en', 1, 'https://ror.org/011qwff60 Riverview Medical Center'), (913, 'https://ror.org/011r34n61', 'en', 1, 'https://ror.org/011r34n61 Indira Gandhi Government Medical College & Hospital इंदिरा गांधी शासकीय वैद्यकीय महाविद्यालय व रुग्णालय'), (914, 'https://ror.org/011r8ce56', 'en', 1, 'https://ror.org/011r8ce56 Linyi People''s Hospital 临沂市人民医院'), (915, 'https://ror.org/011t2cn48', 'en', 1, 'https://ror.org/011t2cn48 St. Luke''s-Roosevelt Hospital Center'), (916, 'https://ror.org/011tm7n37', 'no_lang_code', 1, 'https://ror.org/011tm7n37 Panasonic (Japan) パナソニック'), (917, 'https://ror.org/011tz3351', 'en', 1, 'https://ror.org/011tz3351 Queens Hospital Center'), (918, 'https://ror.org/011x7hd11', 'de', 1, 'https://ror.org/011x7hd11 München Klinik Bogenhausen'), (919, 'https://ror.org/011xca688', 'en', 1, 'https://ror.org/011xca688 Himeji Dokkyo University 姫路獨協大学'), (920, 'https://ror.org/011xhcs96', 'en', 1, 'https://ror.org/011xhcs96 Affiliated Hospital of Xuzhou Medical College'), (921, 'https://ror.org/011ygts35', 'en', 1, 'https://ror.org/011ygts35 University Clinic of Traumatology'), (922, 'https://ror.org/0120mb525', 'nl', 1, 'https://ror.org/0120mb525 Spaarne Ziekenhuis'), (923, 'https://ror.org/0120w8n36', 'en', 1, 'https://ror.org/0120w8n36 Muhlenberg Regional Medical Center'), (924, 'https://ror.org/01233dh94', 'en', 1, 'https://ror.org/01233dh94 Prince Philip Hospital'), (925, 'https://ror.org/01244fm76', 'en', 1, 'https://ror.org/01244fm76 University of Tennessee at Martin'), (926, 'https://ror.org/0124e9159', 'sv', 1, 'https://ror.org/0124e9159 Hallands sjukhus Kungsbacka'), (927, 'https://ror.org/0125csy75', 'de', 1, 'https://ror.org/0125csy75 Klinikum Region Hannover'), (928, 'https://ror.org/0127ytz78', 'en', 1, 'https://ror.org/0127ytz78 Anqing Normal University 安庆师范学院'), (929, 'https://ror.org/012ae7p27', 'no_lang_code', 1, 'https://ror.org/012ae7p27 Italtel (Italy)'), (930, 'https://ror.org/012bh1w56', 'fr', 1, 'https://ror.org/012bh1w56 Hôpital 20 Août'), (931, 'https://ror.org/012bk6h61', 'da', 1, 'https://ror.org/012bk6h61 Medicinsk-historisk Museum i Næstved'), (932, 'https://ror.org/012dxyr07', 'en', 1, 'https://ror.org/012dxyr07 University of Agriculture in Krakow Uniwersytet Rolniczy im. Hugona Kołłątaja w Krakowie'), (933, 'https://ror.org/012eghd53', 'en', 1, 'https://ror.org/012eghd53 Rotorua Hospital'), (934, 'https://ror.org/012gg9483', 'pt', 1, 'https://ror.org/012gg9483 Universidade Cidade de São Paulo'), (935, 'https://ror.org/012habm93', 'pt', 1, 'https://ror.org/012habm93 Hospital de Egas Moniz'), (936, 'https://ror.org/012nfex57', 'no_lang_code', 1, 'https://ror.org/012nfex57 Rakuwakai Otowa Hospital 洛和会音羽病院'), (937, 'https://ror.org/012nkbb42', 'en', 1, 'https://ror.org/012nkbb42 St Vincent''s Health'), (938, 'https://ror.org/012p63287', 'en', 1, 'https://ror.org/012p63287 Rijksuniversiteit Groningen University of Groningen'), (939, 'https://ror.org/012qr1y49', 'en', 1, 'https://ror.org/012qr1y49 Ministry of Health وزارة الصحة'), (940, 'https://ror.org/012r5qt14', 'en', 1, 'https://ror.org/012r5qt14 Manitoba Pork Council'), (941, 'https://ror.org/012vbac09', 'en', 1, 'https://ror.org/012vbac09 Doctors Medical Center'), (942, 'https://ror.org/012wm7481', 'no_lang_code', 1, 'https://ror.org/012wm7481 Huadong Hospital 复旦大学附属华东医院'), (943, 'https://ror.org/012yc3523', 'no_lang_code', 1, 'https://ror.org/012yc3523 COM DEV International'), (944, 'https://ror.org/012zkqp76', 'en', 1, 'https://ror.org/012zkqp76 Delaware Division of Public Health'), (945, 'https://ror.org/0133j5m54', 'en', 1, 'https://ror.org/0133j5m54 Skellefteå Hospital Skellefteå Lasarett'), (946, 'https://ror.org/0137gef36', 'no_lang_code', 1, 'https://ror.org/0137gef36 Yogi Vemana University யோகி வேமனா பல்கலைக்கழகம் యోగి వేమన విశ్వవిద్యాలయం'), (947, 'https://ror.org/01381hr71', 'no_lang_code', 1, 'https://ror.org/01381hr71 Golder Associates (Canada)'), (948, 'https://ror.org/0138ysz16', 'en', 1, 'https://ror.org/0138ysz16 Gifu Municipal Hospital 岐阜市民病院'), (949, 'https://ror.org/013e0zm98', 'en', 1, 'https://ror.org/013e0zm98 Beijing Technology and Business University 北京工商大学'), (950, 'https://ror.org/013e4n276', 'en', 1, 'https://ror.org/013e4n276 Beijing Tongren Hospital 首都医科大学附属北京同仁医院'), (951, 'https://ror.org/013e76m06', 'no_lang_code', 1, 'https://ror.org/013e76m06 Kangbuk Samsung Hospital 강북삼성병원'), (952, 'https://ror.org/013e81n30', 'en', 1, 'https://ror.org/013e81n30 University of Alberta Hospital'), (953, 'https://ror.org/013ennz48', 'en', 1, 'https://ror.org/013ennz48 Lesley University'), (954, 'https://ror.org/013habd96', 'en', 1, 'https://ror.org/013habd96 Twin Cities Public Television'), (955, 'https://ror.org/013pk4y14', 'en', 1, 'https://ror.org/013pk4y14 Kazan State Medical University Казанский государственный медицинский университет'), (956, 'https://ror.org/013pz1582', 'en', 1, 'https://ror.org/013pz1582 Lewis & Clark College'), (957, 'https://ror.org/013q2cj53', 'en', 1, 'https://ror.org/013q2cj53 Universeum'), (958, 'https://ror.org/013qdbe28', 'tr', 1, 'https://ror.org/013qdbe28 Ankara Numune Eğitim ve Araştırma Hastanesi'), (959, 'https://ror.org/013qhbw17', 'fr', 1, 'https://ror.org/013qhbw17 Hôpital Mongi Slim'), (960, 'https://ror.org/013s4zk47', 'en', 1, 'https://ror.org/013s4zk47 Hiroshima General Hospital 広島総合病院'), (961, 'https://ror.org/013sgak22', 'en', 1, 'https://ror.org/013sgak22 Northwest Community Hospital'), (962, 'https://ror.org/013vyke20', 'en', 1, 'https://ror.org/013vyke20 Environment Agency Austria Umweltbundesamt'), (963, 'https://ror.org/013vzz882', 'en', 1, 'https://ror.org/013vzz882 Indraprastha Apollo Hospitals'), (964, 'https://ror.org/013wvjj62', 'en', 1, 'https://ror.org/013wvjj62 Yokohama Welfare Service Association'), (965, 'https://ror.org/013x5cp73', 'en', 1, 'https://ror.org/013x5cp73 Johns Hopkins All Children''s Hospital'), (966, 'https://ror.org/013zjb662', 'en', 1, 'https://ror.org/013zjb662 National University of Kaohsiung'), (967, 'https://ror.org/01435q086', 'es', 1, 'https://ror.org/01435q086 Hospital Universitario Fundación Alcorcón'), (968, 'https://ror.org/014405c23', 'pt', 1, 'https://ror.org/014405c23 Hospital do Espírito Santo'), (969, 'https://ror.org/0149j8908', 'pt', 1, 'https://ror.org/0149j8908 Universidade Santa Úrsula'), (970, 'https://ror.org/014f77s28', 'en', 1, 'https://ror.org/014f77s28 Cheng Hsin General Hospital'), (971, 'https://ror.org/014fz7968', 'en', 1, 'https://ror.org/014fz7968 Sojo University 崇城大学'), (972, 'https://ror.org/014gqa478', 'en', 1, 'https://ror.org/014gqa478 University Health Care System'), (973, 'https://ror.org/014haym76', 'no_lang_code', 1, 'https://ror.org/014haym76 Fukuoka Tokushukai Hospital 福岡徳洲会病院'), (974, 'https://ror.org/014mgn481', 'no_lang_code', 1, 'https://ror.org/014mgn481 Maizuru Municipal Hospital 市立舞鶴市民病院'), (975, 'https://ror.org/014n7rf11', 'en', 1, 'https://ror.org/014n7rf11 Moscow State Aviation Technological University Российский государственный технологический университет имени К. Э. Циолковского'), (976, 'https://ror.org/014nx0w70', 'es', 1, 'https://ror.org/014nx0w70 Hospital Universitario Austral'), (977, 'https://ror.org/014tckg45', 'en', 1, 'https://ror.org/014tckg45 Crichton Royal Hospital'), (978, 'https://ror.org/014ttpa29', 'en', 1, 'https://ror.org/014ttpa29 Bangour Village Hospital'), (979, 'https://ror.org/014v12a39', 'es', 1, 'https://ror.org/014v12a39 Health Research Institute of the Hospital Clínico San Carlos Instituto de Investigación Sanitaria del Hospital Clínico San Carlos'), (980, 'https://ror.org/014v2t028', 'en', 1, 'https://ror.org/014v2t028 Shandong Pingyi Tianyu Museum of Natural History 山东省天宇自然博物馆'), (981, 'https://ror.org/014wfj781', 'en', 1, 'https://ror.org/014wfj781 Jacksonville State University Université d''État de jacksonville'), (982, 'https://ror.org/014x8q810', 'de', 1, 'https://ror.org/014x8q810 Centre for Solar Energy and Hydrogen Research Baden-Württemberg Zentrum für Sonnenenergie- und Wasserstoff-Forschung Baden-Württemberg'), (983, 'https://ror.org/014xqzt56', 'no_lang_code', 1, 'https://ror.org/014xqzt56 Boramae Medical Center 보라매 병원'), (984, 'https://ror.org/01509dj67', 'en', 1, 'https://ror.org/01509dj67 MedStar Franklin Square Medical Center'), (985, 'https://ror.org/0150ewf57', 'en', 1, 'https://ror.org/0150ewf57 Dhaka Medical College and Hospital ঢাকা মেডিকেল কলেজ'), (986, 'https://ror.org/015178j52', 'en', 1, 'https://ror.org/015178j52 Wested'), (987, 'https://ror.org/0152bt112', 'en', 1, 'https://ror.org/0152bt112 Health Sciences and Nutrition'), (988, 'https://ror.org/0152hn881', 'en', 1, 'https://ror.org/0152hn881 Tianjin Medical University Cancer Institute and Hospital 天津医科大学肿瘤医院'), (989, 'https://ror.org/0152ray34', 'no_lang_code', 1, 'https://ror.org/0152ray34 Maharat Nakhon Ratchasima Hospital โรงพยาบาลมหาราชนครราชสีมา'), (990, 'https://ror.org/015566d55', 'en', 1, 'https://ror.org/015566d55 University of Azad Jammu and Kashmir'), (991, 'https://ror.org/015803449', 'en', 1, 'https://ror.org/015803449 South London and Maudsley NHS Foundation Trust'), (992, 'https://ror.org/0159cmf83', 'en', 1, 'https://ror.org/0159cmf83 St Peter''s Hospital'), (993, 'https://ror.org/015a1ak54', 'en', 1, 'https://ror.org/015a1ak54 York College, City University of New York'), (994, 'https://ror.org/015a6df35', 'no_lang_code', 1, 'https://ror.org/015a6df35 En Chu Kong Hospital 行天宮醫療志業醫療財團法人恩主公醫院'), (995, 'https://ror.org/015b6az38', 'en', 1, 'https://ror.org/015b6az38 Mackay Memorial Hospital 馬偕紀念醫院'), (996, 'https://ror.org/015dyrs73', 'en', 1, 'https://ror.org/015dyrs73 Queen Elizabeth Hospital'), (997, 'https://ror.org/015e6tf70', 'en', 1, 'https://ror.org/015e6tf70 Madonna Rehabilitation Hospital'), (998, 'https://ror.org/015h2da09', 'en', 1, 'https://ror.org/015h2da09 Boston Public Health Commission'), (999, 'https://ror.org/015j35893', 'en', 1, 'https://ror.org/015j35893 English Heritage'), (1000, 'https://ror.org/015nmh932', 'no_lang_code', 1, 'https://ror.org/015nmh932 Kai Research (United States)'), (1001, 'https://ror.org/015nth639', 'en', 1, 'https://ror.org/015nth639 MRC Cancer Unit'), (1002, 'https://ror.org/015nymp25', 'en', 1, 'https://ror.org/015nymp25 Edith Nourse Rogers Memorial Veterans Hospital'), (1003, 'https://ror.org/015qjqf64', 'en', 1, 'https://ror.org/015qjqf64 Stiftung Tierärztliche Hochschule Hannover University of Veterinary Medicine Hannover, Foundation'), (1004, 'https://ror.org/015qmyq14', 'en', 1, 'https://ror.org/015qmyq14 Catholic University of Health and Allied Sciences'), (1005, 'https://ror.org/015rc4h95', 'en', 1, 'https://ror.org/015rc4h95 Hamanomachi Hospital 浜の町病院'), (1006, 'https://ror.org/015tmw922', 'en', 1, 'https://ror.org/015tmw922 Providence Portland Medical Center'), (1007, 'https://ror.org/015v9d997', 'en', 1, 'https://ror.org/015v9d997 Jeonju University 전주대학교'), (1008, 'https://ror.org/015yzft41', 'pt', 1, 'https://ror.org/015yzft41 Instituto Superior Politécnico do Oeste'), (1009, 'https://ror.org/01600wh70', 'en', 1, 'https://ror.org/01600wh70 University of Toledo Medical Center'), (1010, 'https://ror.org/01605g366', 'en', 1, 'https://ror.org/01605g366 Kyoto City Hospital 京都市立病院'), (1011, 'https://ror.org/01616f936', 'en', 1, 'https://ror.org/01616f936 Jefferson College of Health Sciences'), (1012, 'https://ror.org/0163qhr63', 'en', 1, 'https://ror.org/0163qhr63 Hanusch Hospital Hanusch-Krankenhaus'), (1013, 'https://ror.org/0166mge61', 'es', 1, 'https://ror.org/0166mge61 Hospital San Juan de Dios'), (1014, 'https://ror.org/01673gn35', 'en', 1, 'https://ror.org/01673gn35 Affiliated Hospital of North Sichuan Medical College 川北医学院附属医院'), (1015, 'https://ror.org/0167c0661', 'no_lang_code', 1, 'https://ror.org/0167c0661 Exodus (Greece)'), (1016, 'https://ror.org/01683nj06', 'en', 1, 'https://ror.org/01683nj06 Mangla Hospital and Research Center'), (1017, 'https://ror.org/01692sz90', 'no_lang_code', 1, 'https://ror.org/01692sz90 Juntendo University 順天堂大学'), (1018, 'https://ror.org/0169n7f49', 'en', 1, 'https://ror.org/0169n7f49 251 Γενικό Νοσοκομείο Αεροπορίας Hellenic Airforce General Hospital'), (1019, 'https://ror.org/016a0n751', 'en', 1, 'https://ror.org/016a0n751 Azerbaijan Medical University Azərbaycan Tibb Universiteti Азербайджанский медицинский университет'), (1020, 'https://ror.org/016bbv872', 'en', 1, 'https://ror.org/016bbv872 Hahnemann University Hospital'), (1021, 'https://ror.org/016c9ds94', 'en', 1, 'https://ror.org/016c9ds94 Kanagawa Prefectural Institute of Public Health 神奈川県衛生研究所'), (1022, 'https://ror.org/016dxxy13', 'en', 1, 'https://ror.org/016dxxy13 Ministry of Health กระทรวงสาธารณสุข'), (1023, 'https://ror.org/016jc2h42', 'en', 1, 'https://ror.org/016jc2h42 Sint Lucas Andreas Hospital Sint Lucas Andreas Ziekenhuis'), (1024, 'https://ror.org/016je1253', 'en', 1, 'https://ror.org/016je1253 Government Medical College'), (1025, 'https://ror.org/016m8pd54', 'en', 1, 'https://ror.org/016m8pd54 Morgan Stanley Children''s Hospital'), (1026, 'https://ror.org/016nh4b93', 'en', 1, 'https://ror.org/016nh4b93 Mercy Children''s Hospital'), (1027, 'https://ror.org/016qd7r37', 'es', 1, 'https://ror.org/016qd7r37 Hospital Universitario de Maracaibo'), (1028, 'https://ror.org/016tyxe19', 'en', 1, 'https://ror.org/016tyxe19 New Mexico Highlands University'), (1029, 'https://ror.org/016v1bv58', 'es', 1, 'https://ror.org/016v1bv58 Hospital Clínico de la Universidad Católica'), (1030, 'https://ror.org/016yv6y68', 'en', 1, 'https://ror.org/016yv6y68 Dakota State University'), (1031, 'https://ror.org/016zre027', 'en', 1, 'https://ror.org/016zre027 University of Ontario Institute of Technology'), (1032, 'https://ror.org/01703db54', 'en', 1, 'https://ror.org/01703db54 National Institute of Advanced Industrial Science and Technology 産業技術総合研究所'), (1033, 'https://ror.org/0171atz91', 'no_lang_code', 1, 'https://ror.org/0171atz91 Iogen Corporation'), (1034, 'https://ror.org/01735bk60', 'sv', 1, 'https://ror.org/01735bk60 Göteborgs barnsjukhus'), (1035, 'https://ror.org/017383496', 'en', 1, 'https://ror.org/017383496 Aultman Hospital'), (1036, 'https://ror.org/0176arq92', 'en', 1, 'https://ror.org/0176arq92 Milwaukee VA Medical Center'), (1037, 'https://ror.org/0176jt031', 'en', 1, 'https://ror.org/0176jt031 Huston–Tillotson University'), (1038, 'https://ror.org/0176wfg98', 'en', 1, 'https://ror.org/0176wfg98 Gleneagles Hospital'), (1039, 'https://ror.org/0176x9269', 'no_lang_code', 1, 'https://ror.org/0176x9269 Hatyai Hospital โรงพยาบาลหาดใหญ่'), (1040, 'https://ror.org/0176yjw32', 'pt', 1, 'https://ror.org/0176yjw32 Federal University of Minas Gerais Universidade Federal de Minas Gerais Université fédérale du minas gerais'), (1041, 'https://ror.org/01786mp71', 'en', 1, 'https://ror.org/01786mp71 Institute of Agrobiological Sciences 生物機能利用研究部門'), (1042, 'https://ror.org/017b7j426', 'no_lang_code', 1, 'https://ror.org/017b7j426 Altera (United States)'), (1043, 'https://ror.org/017c6at71', 'en', 1, 'https://ror.org/017c6at71 University of North Carolina at Asheville'), (1044, 'https://ror.org/017c9f638', 'en', 1, 'https://ror.org/017c9f638 Burwood Hospital'), (1045, 'https://ror.org/017dm4063', 'en', 1, 'https://ror.org/017dm4063 Departamento de Salud Pública del Condado de Los Ángeles Los Angeles County Department of Public Health'), (1046, 'https://ror.org/017g36q02', 'en', 1, 'https://ror.org/017g36q02 Municipality of Amaroussion'), (1047, 'https://ror.org/017h1mj21', 'en', 1, 'https://ror.org/017h1mj21 Kaiser Permanente Hayward Medical Center'), (1048, 'https://ror.org/017hkng22', 'en', 1, 'https://ror.org/017hkng22 Ehime University 愛媛大学'), (1049, 'https://ror.org/017j2n938', 'en', 1, 'https://ror.org/017j2n938 Kobe Central Hospital 神戸中央病院'), (1050, 'https://ror.org/017kgtg39', 'en', 1, 'https://ror.org/017kgtg39 Fukuoka Children''s Hospital and Medical Center for Infectious Diseases 福岡市立こども病院'), (1051, 'https://ror.org/017m05e51', 'en', 1, 'https://ror.org/017m05e51 Health Policy Alternatives, Inc.'), (1052, 'https://ror.org/017ph0934', 'en', 1, 'https://ror.org/017ph0934 Ulusal ve Uluslararası Ekonomi Üniversitesi University of National and World Economy Университет за национално и световно стопанство'), (1053, 'https://ror.org/017pz3h73', 'en', 1, 'https://ror.org/017pz3h73 Urban Institute'), (1054, 'https://ror.org/017q2rt66', 'en', 1, 'https://ror.org/017q2rt66 Mercy University Hospital'), (1055, 'https://ror.org/017t1dh18', 'fr', 1, 'https://ror.org/017t1dh18 Hôpital Max Fourestier'), (1056, 'https://ror.org/017vgxg86', 'no_lang_code', 1, 'https://ror.org/017vgxg86 Ford (Germany)'), (1057, 'https://ror.org/017wcm924', 'en', 1, 'https://ror.org/017wcm924 University System of Georgia'), (1058, 'https://ror.org/017xnm587', 'en', 1, 'https://ror.org/017xnm587 Soongsil University 숭실대학교'), (1059, 'https://ror.org/017ztfb41', 'en', 1, 'https://ror.org/017ztfb41 San Francisco Department of Public Health'), (1060, 'https://ror.org/01818mf51', 'no_lang_code', 1, 'https://ror.org/01818mf51 Messerschmitt-Bölkow-Blohm (Germany)'), (1061, 'https://ror.org/018224621', 'en', 1, 'https://ror.org/018224621 American Academy of Arts and Sciences'), (1062, 'https://ror.org/018224j82', 'en', 1, 'https://ror.org/018224j82 Buena Vista University'), (1063, 'https://ror.org/0183m5185', 'en', 1, 'https://ror.org/0183m5185 Wonkwang University Medical Center 원광대학교병원'), (1064, 'https://ror.org/0184gbk60', 'en', 1, 'https://ror.org/0184gbk60 Steinbeis Foundation Steinbeis-Stiftung'), (1065, 'https://ror.org/0184p1881', 'en', 1, 'https://ror.org/0184p1881 Nevada Department of Health and Human Services'), (1066, 'https://ror.org/0187t0j49', 'en', 1, 'https://ror.org/0187t0j49 John Hunter Hospital'), (1067, 'https://ror.org/018dx8725', 'en', 1, 'https://ror.org/018dx8725 Sparrow Hospital'), (1068, 'https://ror.org/018k7fz65', 'en', 1, 'https://ror.org/018k7fz65 Ministry of Health ក្រសួងសុខាភិបាល'), (1069, 'https://ror.org/018mgzn65', 'en', 1, 'https://ror.org/018mgzn65 Baylor Medical Center at Garland'), (1070, 'https://ror.org/018pq0b08', 'no_lang_code', 1, 'https://ror.org/018pq0b08 Niigata Prefectural Central Hospital 新潟県立中央病院'), (1071, 'https://ror.org/018s10n18', 'en', 1, 'https://ror.org/018s10n18 Jewish Hospital'), (1072, 'https://ror.org/018s6xs98', 'en', 1, 'https://ror.org/018s6xs98 International Cooperative Administrative Support Services'), (1073, 'https://ror.org/018txrr13', 'en', 1, 'https://ror.org/018txrr13 VA Ann Arbor Healthcare System'), (1074, 'https://ror.org/018vqfn69', 'en', 1, 'https://ror.org/018vqfn69 Matsunami General Hospital 松波病院'), (1075, 'https://ror.org/0190kj665', 'es', 1, 'https://ror.org/0190kj665 Hospital General de Granollers'), (1076, 'https://ror.org/0193sb042', 'en', 1, 'https://ror.org/0193sb042 Henry Ford Hospital Hôpital henry ford'), (1077, 'https://ror.org/0195twz09', 'en', 1, 'https://ror.org/0195twz09 St. Luke''s Episcopal Hospital'), (1078, 'https://ror.org/019621n74', 'en', 1, 'https://ror.org/019621n74 Public Health Institute'), (1079, 'https://ror.org/019641589', 'en', 1, 'https://ror.org/019641589 Inje University Haeundae Paik Hospital 인제 대학교 해운대 백병원'), (1080, 'https://ror.org/019br0e98', 'no_lang_code', 1, 'https://ror.org/019br0e98 Metabolic Solutions'), (1081, 'https://ror.org/019bxes45', 'en', 1, 'https://ror.org/019bxes45 University Dental Hospital of Manchester'), (1082, 'https://ror.org/019bz1656', 'en', 1, 'https://ror.org/019bz1656 Clinical Center University of Sarajevo'), (1083, 'https://ror.org/019e4d354', 'en', 1, 'https://ror.org/019e4d354 Government Medical College ਸਰਕਾਰੀ ਮੈਡੀਕਲ ਕਾਲਜ'), (1084, 'https://ror.org/019e4dr88', 'en', 1, 'https://ror.org/019e4dr88 Erie County Medical Center'), (1085, 'https://ror.org/019f36t97', 'en', 1, 'https://ror.org/019f36t97 Royal Berkshire Hospital'), (1086, 'https://ror.org/019hb9542', 'en', 1, 'https://ror.org/019hb9542 St Helier Hospital'), (1087, 'https://ror.org/019ja9e37', 'no_lang_code', 1, 'https://ror.org/019ja9e37 Atomic Energy (Canada) Énergie atomique du Canada'), (1088, 'https://ror.org/019k4jq75', 'en', 1, 'https://ror.org/019k4jq75 Brooklyn College College de Brooklyn de la Universidad de la Ciudad de Nueva York'), (1089, 'https://ror.org/019kgqr73', 'en', 1, 'https://ror.org/019kgqr73 The University of Texas at Arlington Université du Texas à Arlington'), (1090, 'https://ror.org/019krky16', 'en', 1, 'https://ror.org/019krky16 Medical Group Management Association'), (1091, 'https://ror.org/019my5047', 'en', 1, 'https://ror.org/019my5047 Royal London Hospital'), (1092, 'https://ror.org/019myg640', 'de', 1, 'https://ror.org/019myg640 Krankenanstalt Rudolfstiftung der Stadt Wien'), (1093, 'https://ror.org/019rjbt98', 'en', 1, 'https://ror.org/019rjbt98 Colorado Department of Public Health and Environment'), (1094, 'https://ror.org/019s1t671', 'en', 1, 'https://ror.org/019s1t671 Montgomery County Department of Health and Human Services'), (1095, 'https://ror.org/019tq3436', 'en', 1, 'https://ror.org/019tq3436 Far Eastern Memorial Hospital'), (1096, 'https://ror.org/019tstz42', 'sv', 1, 'https://ror.org/019tstz42 Ersta sjukhus'), (1097, 'https://ror.org/019wt1929', 'en', 1, 'https://ror.org/019wt1929 Sheffield Hallam University'), (1098, 'https://ror.org/019x0cx75', 'no_lang_code', 1, 'https://ror.org/019x0cx75 Science and Engineering Services (United States)'), (1099, 'https://ror.org/019z71f50', 'en', 1, 'https://ror.org/019z71f50 National Taipei University of Nursing and Health Science 國立臺北護理健康大學'), (1100, 'https://ror.org/019z9dk17', 'en', 1, 'https://ror.org/019z9dk17 Mount Elizabeth Hospital மவுண்ட் எலிசபெத் மருத்துவமனை'), (1101, 'https://ror.org/019zp2770', 'en', 1, 'https://ror.org/019zp2770 Upstate University Hospital'), (1102, 'https://ror.org/01a0h9c53', 'no_lang_code', 1, 'https://ror.org/01a0h9c53 Kingston Process Metallurgy (Canada)'), (1103, 'https://ror.org/01a1mbs69', 'en', 1, 'https://ror.org/01a1mbs69 Princess of Wales Hospital'), (1104, 'https://ror.org/01a1x1d92', 'no_lang_code', 1, 'https://ror.org/01a1x1d92 Ruttonjee Hospital 律敦治醫院'), (1105, 'https://ror.org/01a3mef16', 'en', 1, 'https://ror.org/01a3mef16 Pondicherry University पॉन्डिचेरी विश्वविद्यालय புதுவைப் பல்கலைக்கழகம் పాండిచ్చేరి విశ్వవిద్యాలయం പോണ്ടിച്ചേരി സർവകലാശാല'), (1106, 'https://ror.org/01a3zyd02', 'it', 1, 'https://ror.org/01a3zyd02 Ospedale Regionale di Locarno'), (1107, 'https://ror.org/01a423692', 'no_lang_code', 1, 'https://ror.org/01a423692 Aastrom Biosciences (United States)'), (1108, 'https://ror.org/01a4bac78', 'en', 1, 'https://ror.org/01a4bac78 Cantox Health Sciences International'), (1109, 'https://ror.org/01a4d6k20', 'en', 1, 'https://ror.org/01a4d6k20 Jawaharlal Nehru Medical College'), (1110, 'https://ror.org/01a4gqp27', 'en', 1, 'https://ror.org/01a4gqp27 Harry S. Truman Memorial Veterans'' Hospital'), (1111, 'https://ror.org/01a6tsm75', 'en', 1, 'https://ror.org/01a6tsm75 Hillel Yaffe Medical Center'), (1112, 'https://ror.org/01adsjd47', 'no_lang_code', 1, 'https://ror.org/01adsjd47 Seonam University'), (1113, 'https://ror.org/01aeq1t78', 'en', 1, 'https://ror.org/01aeq1t78 Shriners Hospitals for Children - Cincinnati'), (1114, 'https://ror.org/01agth861', 'en', 1, 'https://ror.org/01agth861 American Association of Physics Teachers'), (1115, 'https://ror.org/01akfrh45', 'no_lang_code', 1, 'https://ror.org/01akfrh45 Farwaniya Hospital مستشفى الفروانية'), (1116, 'https://ror.org/01ans1m53', 'no_lang_code', 1, 'https://ror.org/01ans1m53 SomaGenics (United States)'), (1117, 'https://ror.org/01apd5369', 'en', 1, 'https://ror.org/01apd5369 John Paul II Hospital Krakowski Szpital Specjalistyczny im. Jana Pawła II'), (1118, 'https://ror.org/01apvbh93', 'en', 1, 'https://ror.org/01apvbh93 Akademiska sjukhuset Uppsala University Hospital'), (1119, 'https://ror.org/01ar9e455', 'en', 1, 'https://ror.org/01ar9e455 The Aerospace Corporation'), (1120, 'https://ror.org/01aryec24', 'en', 1, 'https://ror.org/01aryec24 Southeastern Oklahoma State University'), (1121, 'https://ror.org/01as10d06', 'en', 1, 'https://ror.org/01as10d06 Harrisburg Hospital'), (1122, 'https://ror.org/01atr9m08', 'no_lang_code', 1, 'https://ror.org/01atr9m08 Biotex (United States)'), (1123, 'https://ror.org/01atwky19', 'en', 1, 'https://ror.org/01atwky19 North Oaks Health System'), (1124, 'https://ror.org/01aw2gs83', 'en', 1, 'https://ror.org/01aw2gs83 Nagasaki Kawatana Medical Center 国立病院機構長崎川棚医療センター'), (1125, 'https://ror.org/01ayg2409', 'no_lang_code', 1, 'https://ror.org/01ayg2409 Juniata College'), (1126, 'https://ror.org/01ayqmq97', 'en', 1, 'https://ror.org/01ayqmq97 Rajendra Hospital'), (1127, 'https://ror.org/01azs0t89', 'es', 1, 'https://ror.org/01azs0t89 Hospital Carmen y Severo Ochoa'), (1128, 'https://ror.org/01b1c8m98', 'en', 1, 'https://ror.org/01b1c8m98 Ministry of Health وزارة الصحة'), (1129, 'https://ror.org/01b1r6152', 'en', 1, 'https://ror.org/01b1r6152 Kowloon Hospital 九龍醫院'), (1130, 'https://ror.org/01b2c5015', 'es', 1, 'https://ror.org/01b2c5015 Hospital Sierrallana'), (1131, 'https://ror.org/01b2wv937', 'en', 1, 'https://ror.org/01b2wv937 New York State Office of Mental Health'), (1132, 'https://ror.org/01b330649', 'no_lang_code', 1, 'https://ror.org/01b330649 Nova Research Company (United States)'), (1133, 'https://ror.org/01b3dvp57', 'en', 1, 'https://ror.org/01b3dvp57 Garvan Institute of Medical Research'), (1134, 'https://ror.org/01b5d7p48', 'no_lang_code', 1, 'https://ror.org/01b5d7p48 Schlumberger (France)'), (1135, 'https://ror.org/01b6d9h22', 'hr', 1, 'https://ror.org/01b6d9h22 Klinička bolnica Merkur'), (1136, 'https://ror.org/01b78mz79', 'pt', 1, 'https://ror.org/01b78mz79 Federal University of Santa Maria Universidad Federal de Santa María Universidade Federal de Santa Maria'), (1137, 'https://ror.org/01b8f4h92', 'no_lang_code', 1, 'https://ror.org/01b8f4h92 Athens Technology Center (Greece)'), (1138, 'https://ror.org/01b8kcc49', 'en', 1, 'https://ror.org/01b8kcc49 National Cheng Kung University'), (1139, 'https://ror.org/01banz567', 'en', 1, 'https://ror.org/01banz567 Kyushu University of Health and Welfare 九州保健福祉大学'), (1140, 'https://ror.org/01bbs6821', 'en', 1, 'https://ror.org/01bbs6821 Fisk University Universidad de Fisk'), (1141, 'https://ror.org/01bbyhp53', 'en', 1, 'https://ror.org/01bbyhp53 Basingstoke and North Hampshire Hospital'), (1142, 'https://ror.org/01bchmt70', 'fr', 1, 'https://ror.org/01bchmt70 Centre Hospitalier d''Orsay'), (1143, 'https://ror.org/01bcp3a67', 'en', 1, 'https://ror.org/01bcp3a67 Benenden Hospital'), (1144, 'https://ror.org/01bdr6121', 'en', 1, 'https://ror.org/01bdr6121 University of Guilan دانشگاه گیلان'), (1145, 'https://ror.org/01bgafn72', 'no_lang_code', 1, 'https://ror.org/01bgafn72 Hamad General Hospital'), (1146, 'https://ror.org/01bgds823', 'en', 1, 'https://ror.org/01bgds823 Affiliated Hospital of Chengde Medical College 承德医学院附属医院'), (1147, 'https://ror.org/01bhkfn26', 'en', 1, 'https://ror.org/01bhkfn26 Southern Command Hospital'), (1148, 'https://ror.org/01bk73674', 'en', 1, 'https://ror.org/01bk73674 Chengdu Military General Hospital 中国人民解放军成都军区总医院'), (1149, 'https://ror.org/01bkdwe73', 'pt', 1, 'https://ror.org/01bkdwe73 Hospital Heliópolis'), (1150, 'https://ror.org/01bmj6z20', 'en', 1, 'https://ror.org/01bmj6z20 Maesot General Hospital โรงพยาบาลแม่สอด'), (1151, 'https://ror.org/01bn4rh74', 'en', 1, 'https://ror.org/01bn4rh74 Heritage Valley Beaver'), (1152, 'https://ror.org/01bnyxq20', 'es', 1, 'https://ror.org/01bnyxq20 Hospital Ramos Mejía'), (1153, 'https://ror.org/01bry7z39', 'en', 1, 'https://ror.org/01bry7z39 Northwest Nazarene University'), (1154, 'https://ror.org/01bt82v32', 'en', 1, 'https://ror.org/01bt82v32 Northern Light Mercy Hospital'), (1155, 'https://ror.org/01bthtp68', 'no_lang_code', 1, 'https://ror.org/01bthtp68 Corixa Corporation'), (1156, 'https://ror.org/01btjc831', 'it', 1, 'https://ror.org/01btjc831 Ospedale San Giacomo Apostolo'), (1157, 'https://ror.org/01bvmk374', 'no_lang_code', 1, 'https://ror.org/01bvmk374 GIUNTI Intenational Division (Italy)'), (1158, 'https://ror.org/01bw9xe44', 'en', 1, 'https://ror.org/01bw9xe44 Academy of Georgofili Accademia dei Georgofili'), (1159, 'https://ror.org/01bx8ja67', 'no_lang_code', 1, 'https://ror.org/01bx8ja67 Maharaja Sayajirao University of Baroda મહારાજા સયાજીરાવ વિશ્વવિદ્યાલય மகாராஜா சாயாஜிராவ் பல்கலைக்கழகம்'), (1160, 'https://ror.org/01by1qv45', 'en', 1, 'https://ror.org/01by1qv45 Santa Casa Hospital'), (1161, 'https://ror.org/01byf4846', 'es', 1, 'https://ror.org/01byf4846 Fundación Hospital de Jove'), (1162, 'https://ror.org/01bywqg69', 'no_lang_code', 1, 'https://ror.org/01bywqg69 Automotive Fuel Cell Cooperation (Canada)'), (1163, 'https://ror.org/01bzpky79', 'en', 1, 'https://ror.org/01bzpky79 Ajou University Hospital 아주 대학교 병원'), (1164, 'https://ror.org/01c2dee93', 'en', 1, 'https://ror.org/01c2dee93 Baystate Franklin Medical Center'), (1165, 'https://ror.org/01c2wzp81', 'tr', 1, 'https://ror.org/01c2wzp81 Dr Lütfi Kırdar Kartal Eğitim ve Araştırma Hastanesi'), (1166, 'https://ror.org/01c3hyk82', 'en', 1, 'https://ror.org/01c3hyk82 Shih Chien University'), (1167, 'https://ror.org/01c524129', 'en', 1, 'https://ror.org/01c524129 King Fahd Military Medical Complex'), (1168, 'https://ror.org/01c5cqy87', 'en', 1, 'https://ror.org/01c5cqy87 General Hospital of Serres Γενικό Νοσοκομείο Σερρών'), (1169, 'https://ror.org/01c5j0443', 'fr', 1, 'https://ror.org/01c5j0443 Institut d''Économie Rurale'), (1170, 'https://ror.org/01c74sd89', 'no_lang_code', 1, 'https://ror.org/01c74sd89 STMicroelectronics (France)'), (1171, 'https://ror.org/01c804c94', 'no_lang_code', 1, 'https://ror.org/01c804c94 First Point Scientific'), (1172, 'https://ror.org/01cb0kd74', 'en', 1, 'https://ror.org/01cb0kd74 Royal Hospital for Children'), (1173, 'https://ror.org/01cgbsh11', 'en', 1, 'https://ror.org/01cgbsh11 Hutt Hospital'), (1174, 'https://ror.org/01ch4qb51', 'en', 1, 'https://ror.org/01ch4qb51 Mercy Hospital for Women'), (1175, 'https://ror.org/01cjd8n57', 'no_lang_code', 1, 'https://ror.org/01cjd8n57 Nagasaki Rousai Hospital 長崎労災病院'), (1176, 'https://ror.org/01ckz8750', 'no_lang_code', 1, 'https://ror.org/01ckz8750 Lickenbrock'), (1177, 'https://ror.org/01cmpkr67', 'no_lang_code', 1, 'https://ror.org/01cmpkr67 Materials Modification (United States)'), (1178, 'https://ror.org/01cpcy908', 'en', 1, 'https://ror.org/01cpcy908 McLaren Regional Medical Center'), (1179, 'https://ror.org/01cqcrc47', 'en', 1, 'https://ror.org/01cqcrc47 Rangsit University มหาวิทยาลัยรังสิต'), (1180, 'https://ror.org/01cqmqj90', 'en', 1, 'https://ror.org/01cqmqj90 Hadassah Medical Center مركز هداسا الطبي'), (1181, 'https://ror.org/01cqx0m58', 'en', 1, 'https://ror.org/01cqx0m58 Centro Italiano Ricerche Aerospaziali Italian Aerospace Research Centre'), (1182, 'https://ror.org/01cqxk816', 'en', 1, 'https://ror.org/01cqxk816 University of West Georgia'), (1183, 'https://ror.org/01ctb0h41', 'en', 1, 'https://ror.org/01ctb0h41 Triangle Coalition For Science and Technology Education'), (1184, 'https://ror.org/01cv0eh48', 'en', 1, 'https://ror.org/01cv0eh48 Royal Belfast Hospital for Sick Children'), (1185, 'https://ror.org/01cw77n16', 'en', 1, 'https://ror.org/01cw77n16 Fairfield Infectious Diseases Hospital'), (1186, 'https://ror.org/01cwbae71', 'en', 1, 'https://ror.org/01cwbae71 Hannam University 한남대학교'), (1187, 'https://ror.org/01cx2sj34', 'pl', 1, 'https://ror.org/01cx2sj34 Centrum Medyczne Kształcenia Podyplomowego'), (1188, 'https://ror.org/01cyv3m84', 'en', 1, 'https://ror.org/01cyv3m84 Ospedale di Santa Maria Nuova Santa Maria Nuova Hospital'), (1189, 'https://ror.org/01czx1v82', 'en', 1, 'https://ror.org/01czx1v82 Huzhou Central Hospital 湖州市中心医院'), (1190, 'https://ror.org/01d00rw04', 'en', 1, 'https://ror.org/01d00rw04 KPC Medical College and Hospital কেপিসি মেডিকাল কলেজ ও কে এস রায় টিবি হাসপাতাল'), (1191, 'https://ror.org/01d012874', 'es', 1, 'https://ror.org/01d012874 Clínica La Luz, Hospital La Luz'), (1192, 'https://ror.org/01d261e32', 'en', 1, 'https://ror.org/01d261e32 Furness General Hospital'), (1193, 'https://ror.org/01d2e9e05', 'en', 1, 'https://ror.org/01d2e9e05 Maternity and Children''s Hospital'), (1194, 'https://ror.org/01d2sy711', 'no_lang_code', 1, 'https://ror.org/01d2sy711 E-One Moli Energy (Canada)'), (1195, 'https://ror.org/01d3gh658', 'en', 1, 'https://ror.org/01d3gh658 Centraal Militair Hospitaal Central Military Hospital'), (1196, 'https://ror.org/01d59nd22', 'en', 1, 'https://ror.org/01d59nd22 Federal Ministry of Health وزارة الصحة الإتحادية'), (1197, 'https://ror.org/01d692d57', 'en', 1, 'https://ror.org/01d692d57 University of Sindh سندھ یونیورسٹی'), (1198, 'https://ror.org/01d86hn60', 'it', 1, 'https://ror.org/01d86hn60 Ospedale San Carlo'), (1199, 'https://ror.org/01d9cs377', 'en', 1, 'https://ror.org/01d9cs377 University Health System'), (1200, 'https://ror.org/01dcrt245', 'en', 1, 'https://ror.org/01dcrt245 Dubai Health Authority هيئة الصحة بدبي'), (1201, 'https://ror.org/01defpn95', 'en', 1, 'https://ror.org/01defpn95 Sathyabama Institute of Science and Technology சத்யபாமா பல்கலைக்கழகம் సత్యభామ విశ్వవిద్యాలయం'), (1202, 'https://ror.org/01df9ep43', 'en', 1, 'https://ror.org/01df9ep43 Era''s Lucknow Medical College and Hospital'), (1203, 'https://ror.org/01dgc8k02', 'it', 1, 'https://ror.org/01dgc8k02 Ospedale Cristo Re'), (1204, 'https://ror.org/01dgn5344', 'en', 1, 'https://ror.org/01dgn5344 Rider University Universidad Rider Université de rider'), (1205, 'https://ror.org/01djnr762', 'no_lang_code', 1, 'https://ror.org/01djnr762 Dalsa Corporation'), (1206, 'https://ror.org/01dk3f134', 'no_lang_code', 1, 'https://ror.org/01dk3f134 Tokyo Metropolitan Bokutoh Hospital 東京都立墨東病院'), (1207, 'https://ror.org/01dk7q852', 'no_lang_code', 1, 'https://ror.org/01dk7q852 Cardiovascular Center Hokkaido Ohno Hospital 心臓血管センター北海道大野病院'), (1208, 'https://ror.org/01dkn0c77', 'pt', 1, 'https://ror.org/01dkn0c77 Hospital Santa Izabel'), (1209, 'https://ror.org/01dkvrg87', 'en', 1, 'https://ror.org/01dkvrg87 Sabbatsberg Hospital Sabbatsbergs Sjukhus'), (1210, 'https://ror.org/01dm04760', 'en', 1, 'https://ror.org/01dm04760 Lexington VA Health Care System'), (1211, 'https://ror.org/01dm18990', 'en', 1, 'https://ror.org/01dm18990 Lakeshore Hospital'), (1212, 'https://ror.org/01dmyj570', 'en', 1, 'https://ror.org/01dmyj570 Shriners Hospitals for Children - Northern California'), (1213, 'https://ror.org/01dpw6893', 'en', 1, 'https://ror.org/01dpw6893 Scripps Memorial Hospital'), (1214, 'https://ror.org/01dqhdd78', 'en', 1, 'https://ror.org/01dqhdd78 Clatterbridge Hospital Ysbyty Clattebridge'), (1215, 'https://ror.org/01dspcb60', 'en', 1, 'https://ror.org/01dspcb60 Jiangxi Provincial People''s Hospital 江西省人民医院'), (1216, 'https://ror.org/01dsw4m23', 'en', 1, 'https://ror.org/01dsw4m23 Repatriation General Hospital'), (1217, 'https://ror.org/01dsy9055', 'en', 1, 'https://ror.org/01dsy9055 University Hospital Ayr'), (1218, 'https://ror.org/01dszvc69', 'en', 1, 'https://ror.org/01dszvc69 Sapporo Azabu Neurosurgical Hospital 札幌麻生脳神経外科病院'), (1219, 'https://ror.org/01dxm2p72', 'no_lang_code', 1, 'https://ror.org/01dxm2p72 Saipem (Italy) Società Anonima Italiana Perforazioni E Montaggi'), (1220, 'https://ror.org/01dzpsy49', 'en', 1, 'https://ror.org/01dzpsy49 Nara City Hospital 市立奈良病院'), (1221, 'https://ror.org/01e2avb80', 'en', 1, 'https://ror.org/01e2avb80 Prince George''s Hospital Center'), (1222, 'https://ror.org/01e320272', 'fr', 1, 'https://ror.org/01e320272 Hôpital Saint-Philibert'), (1223, 'https://ror.org/01e4pq116', 'fr', 1, 'https://ror.org/01e4pq116 Hôpital Saint Charles'), (1224, 'https://ror.org/01e4pq504', 'en', 1, 'https://ror.org/01e4pq504 Portland Community College'), (1225, 'https://ror.org/01e4z3q24', 'en', 1, 'https://ror.org/01e4z3q24 Priest Hospital โรงพยาบาลสงฆ์'), (1226, 'https://ror.org/01e5t7e46', 'no_lang_code', 1, 'https://ror.org/01e5t7e46 Nanomaterials Research (United States)'), (1227, 'https://ror.org/01e87ch81', 'en', 1, 'https://ror.org/01e87ch81 Oregon Museum of Science and Industry'), (1228, 'https://ror.org/01ec7xj20', 'en', 1, 'https://ror.org/01ec7xj20 Jaswant Rai Speciality Hospital'), (1229, 'https://ror.org/01ecnnp60', 'en', 1, 'https://ror.org/01ecnnp60 Jackson State University Université d''État de Jackson'), (1230, 'https://ror.org/01eedy375', 'en', 1, 'https://ror.org/01eedy375 Alabama State University'), (1231, 'https://ror.org/01eeehv22', 'no_lang_code', 1, 'https://ror.org/01eeehv22 Bell Helicopter Textron (Canada)'), (1232, 'https://ror.org/01eff5662', 'en', 1, 'https://ror.org/01eff5662 Beijing Chao-Yang Hospital 北京朝阳医院'), (1233, 'https://ror.org/01efrfk30', 'en', 1, 'https://ror.org/01efrfk30 Stetson University'), (1234, 'https://ror.org/01egdsz94', 'en', 1, 'https://ror.org/01egdsz94 Baptist Health System'), (1235, 'https://ror.org/01egmr022', 'no_lang_code', 1, 'https://ror.org/01egmr022 Nantong Tumor Hospital 南通市肿瘤医院'), (1236, 'https://ror.org/01ej92a17', 'en', 1, 'https://ror.org/01ej92a17 Sandviken Hospital Sandviken sykehus'), (1237, 'https://ror.org/01ejxf797', 'en', 1, 'https://ror.org/01ejxf797 Mohamed I University Université Mohammed Ier جامعة محمد الأول'), (1238, 'https://ror.org/01ek0ym72', 'pl', 1, 'https://ror.org/01ek0ym72 4. Wojskowy Szpital Kliniczny z Polikliniką'), (1239, 'https://ror.org/01ekg2j77', 'en', 1, 'https://ror.org/01ekg2j77 Blood Systems Research Institute'), (1240, 'https://ror.org/01eksj726', 'en', 1, 'https://ror.org/01eksj726 Konyang University Hospital 한양 대학교 병원'), (1241, 'https://ror.org/01emnh554', 'no_lang_code', 1, 'https://ror.org/01emnh554 Saga-Ken Medical Centre Koseikan 佐賀県医療センター好生館'), (1242, 'https://ror.org/01emtgd92', 'en', 1, 'https://ror.org/01emtgd92 Mansfield University'), (1243, 'https://ror.org/01emxrg90', 'pt', 1, 'https://ror.org/01emxrg90 Hospital Pedro Hispano'), (1244, 'https://ror.org/01eq8c489', 'en', 1, 'https://ror.org/01eq8c489 Lady Reading Hospital'), (1245, 'https://ror.org/01eqjmz45', 'en', 1, 'https://ror.org/01eqjmz45 Hokko Memorial Hospital 北光記念病院'), (1246, 'https://ror.org/01es3w453', 'no_lang_code', 1, 'https://ror.org/01es3w453 Northwest Media (United States)'), (1247, 'https://ror.org/01espdw89', 'en', 1, 'https://ror.org/01espdw89 Beijing Chest Hospital'), (1248, 'https://ror.org/01ev5nj79', 'es', 1, 'https://ror.org/01ev5nj79 Hospital Médica Sur'), (1249, 'https://ror.org/01ev6gy70', 'en', 1, 'https://ror.org/01ev6gy70 Escola Naval Portuguese Naval School'), (1250, 'https://ror.org/01evb6z23', 'en', 1, 'https://ror.org/01evb6z23 King University'), (1251, 'https://ror.org/01ew49p77', 'en', 1, 'https://ror.org/01ew49p77 Malcom Randall VA Medical Center'), (1252, 'https://ror.org/01eyb5f38', 'en', 1, 'https://ror.org/01eyb5f38 Kern Medical Center'), (1253, 'https://ror.org/01f4y0525', 'en', 1, 'https://ror.org/01f4y0525 College of Medical Sciences'), (1254, 'https://ror.org/01f97j659', 'en', 1, 'https://ror.org/01f97j659 Anyang Academy of Agricultural Sciences 安阳市农业科学院'), (1255, 'https://ror.org/01fbdn283', 'en', 1, 'https://ror.org/01fbdn283 Magee-Womens Hospital'), (1256, 'https://ror.org/01fbz6h17', 'en', 1, 'https://ror.org/01fbz6h17 Denver Health Medical Center'), (1257, 'https://ror.org/01fd8g905', 'en', 1, 'https://ror.org/01fd8g905 University of Montevallo'), (1258, 'https://ror.org/01fkbmk11', 'en', 1, 'https://ror.org/01fkbmk11 Maritime Research Institute Netherlands'), (1259, 'https://ror.org/01fksx040', 'en', 1, 'https://ror.org/01fksx040 Gaustad Hospital Gaustad Sykehus'), (1260, 'https://ror.org/01fm87m50', 'en', 1, 'https://ror.org/01fm87m50 Rambam Health Care Campus רמב"ם - הקריה הרפואית לבריאות האדם مشفى رمبام'), (1261, 'https://ror.org/01fmz4h16', 'no_lang_code', 1, 'https://ror.org/01fmz4h16 Hirosakiaiseikai Hospital 弘前愛成会病院'), (1262, 'https://ror.org/01fpnj063', 'en', 1, 'https://ror.org/01fpnj063 Catholic University of Korea 가톨릭대학교'), (1263, 'https://ror.org/01fv1ds98', 'no_lang_code', 1, 'https://ror.org/01fv1ds98 Yuan Ze University'), (1264, 'https://ror.org/01fvf0d84', 'en', 1, 'https://ror.org/01fvf0d84 Tajen University'), (1265, 'https://ror.org/01fvnb423', 'en', 1, 'https://ror.org/01fvnb423 Presbyterian Medical Center 예수병원'), (1266, 'https://ror.org/01fxd7077', 'en', 1, 'https://ror.org/01fxd7077 Center for Health Care Law'), (1267, 'https://ror.org/01fxdkm29', 'en', 1, 'https://ror.org/01fxdkm29 Doshisha University 同志社大学'), (1268, 'https://ror.org/01fzm0693', 'en', 1, 'https://ror.org/01fzm0693 Abbott Northwestern Hospital'), (1269, 'https://ror.org/01g171x08', 'en', 1, 'https://ror.org/01g171x08 Alice Ho Miu Ling Nethersole Hospital 雅麗氏何妙齡那打素醫院'), (1270, 'https://ror.org/01g246z62', 'en', 1, 'https://ror.org/01g246z62 International Union of Railways Union internationale des chemins de fer'), (1271, 'https://ror.org/01g2xkw11', 'pt', 1, 'https://ror.org/01g2xkw11 Instituto Superior de Gestão e Administração de Santarém'), (1272, 'https://ror.org/01g312x22', 'no_lang_code', 1, 'https://ror.org/01g312x22 BG Group (United Kingdom)'), (1273, 'https://ror.org/01g3pwn65', 'en', 1, 'https://ror.org/01g3pwn65 Mississippi Department of Mental Health'), (1274, 'https://ror.org/01g63ab19', 'en', 1, 'https://ror.org/01g63ab19 Northside Hospital'), (1275, 'https://ror.org/01g67by91', 'en', 1, 'https://ror.org/01g67by91 Mercer University Health Sciences Center'), (1276, 'https://ror.org/01gaptw32', 'es', 1, 'https://ror.org/01gaptw32 Hospital de Hellín'), (1277, 'https://ror.org/01gcc9p15', 'en', 1, 'https://ror.org/01gcc9p15 Saint John''s Health Center'), (1278, 'https://ror.org/01gd3da15', 'no_lang_code', 1, 'https://ror.org/01gd3da15 Stantec (Canada)'), (1279, 'https://ror.org/01gezbc84', 'en', 1, 'https://ror.org/01gezbc84 Japanese Red Cross Medical Center 日本赤十字社医療センター'), (1280, 'https://ror.org/01ggyr403', 'en', 1, 'https://ror.org/01ggyr403 Canadian Foundation for Healthcare Improvement'), (1281, 'https://ror.org/01ghsr491', 'no_lang_code', 1, 'https://ror.org/01ghsr491 Trevigen'), (1282, 'https://ror.org/01gqe3t73', 'no_lang_code', 1, 'https://ror.org/01gqe3t73 Sangji University 상지대학교'), (1283, 'https://ror.org/01grdhw06', 'en', 1, 'https://ror.org/01grdhw06 Center for Tuberculosis Control of Guangdong Province 广东省结核病控制'), (1284, 'https://ror.org/01grq2104', 'en', 1, 'https://ror.org/01grq2104 Torrey Pines Institute For Molecular Studies'), (1285, 'https://ror.org/01gst4g14', 'en', 1, 'https://ror.org/01gst4g14 New York City Department of Health and Mental Hygiene'), (1286, 'https://ror.org/01gt7sg63', 'pt', 1, 'https://ror.org/01gt7sg63 Universidade de Taubaté University of Taubaté'); INSERT INTO `rors` VALUES (1287, 'https://ror.org/01gvfxs59', 'en', 1, 'https://ror.org/01gvfxs59 National Sagamihara Hospital 国立病院機構相模原病院'), (1288, 'https://ror.org/01gxs7p86', 'en', 1, 'https://ror.org/01gxs7p86 Christiana Hospital'), (1289, 'https://ror.org/01gynte55', 'en', 1, 'https://ror.org/01gynte55 Sharp Memorial Hospital'), (1290, 'https://ror.org/01gzkdv90', 'en', 1, 'https://ror.org/01gzkdv90 Kun Shan University'), (1291, 'https://ror.org/01h0x7c18', 'en', 1, 'https://ror.org/01h0x7c18 PBR Laboratories'), (1292, 'https://ror.org/01h22ap11', 'en', 1, 'https://ror.org/01h22ap11 Penn State Milton S. Hershey Medical Center'), (1293, 'https://ror.org/01h29af62', 'no_lang_code', 1, 'https://ror.org/01h29af62 Spartan Bioscience (Canada)'), (1294, 'https://ror.org/01h2hg078', 'en', 1, 'https://ror.org/01h2hg078 Birjand University of Medical Sciences دانشگاه علوم پزشکی بیرجند'), (1295, 'https://ror.org/01h2jcs31', 'en', 1, 'https://ror.org/01h2jcs31 Jewish Hospital'), (1296, 'https://ror.org/01h4hqc60', 'en', 1, 'https://ror.org/01h4hqc60 Transylvania University'), (1297, 'https://ror.org/01h6pd645', 'no_lang_code', 1, 'https://ror.org/01h6pd645 SurModics (United States)'), (1298, 'https://ror.org/01h89k731', 'no_lang_code', 1, 'https://ror.org/01h89k731 TXT e-solutions (Italy)'), (1299, 'https://ror.org/01h9xtf29', 'no_lang_code', 1, 'https://ror.org/01h9xtf29 Friday Systems (United States)'), (1300, 'https://ror.org/01h9y0t02', 'en', 1, 'https://ror.org/01h9y0t02 Mount Sinai Hospital'), (1301, 'https://ror.org/01ha5h612', 'en', 1, 'https://ror.org/01ha5h612 Princess Margaret Rose Orthopaedic Hospital'), (1302, 'https://ror.org/01ha6bm93', 'no_lang_code', 1, 'https://ror.org/01ha6bm93 Progenra (United States)'), (1303, 'https://ror.org/01hcyya48', 'en', 1, 'https://ror.org/01hcyya48 Cincinnati Children''s Hospital Medical Center'), (1304, 'https://ror.org/01hhasq22', 'cs', 1, 'https://ror.org/01hhasq22 Výzkumný Ústav Zdraví Dítěte'), (1305, 'https://ror.org/01hhczc28', 'en', 1, 'https://ror.org/01hhczc28 University of Benin Teaching Hospital'), (1306, 'https://ror.org/01hkncq81', 'en', 1, 'https://ror.org/01hkncq81 Hiroshima City Asa Citizens Hospital 広島市立安佐市民病院'), (1307, 'https://ror.org/01hs43g67', 'en', 1, 'https://ror.org/01hs43g67 Mississippi University for Women'), (1308, 'https://ror.org/01hssm416', 'en', 1, 'https://ror.org/01hssm416 St John''s Hospital'), (1309, 'https://ror.org/01hsw0492', 'en', 1, 'https://ror.org/01hsw0492 Gesellschaft für Chemische Technik und Biotechnologie Society for Chemical Engineering and Biotechnology'), (1310, 'https://ror.org/01hy1ab69', 'en', 1, 'https://ror.org/01hy1ab69 Michigan Surgical Hospital'), (1311, 'https://ror.org/01hy4qx27', 'en', 1, 'https://ror.org/01hy4qx27 University of Minnesota, Duluth'), (1312, 'https://ror.org/01hyxtd05', 'no_lang_code', 1, 'https://ror.org/01hyxtd05 Neova Technologies Inc.'), (1313, 'https://ror.org/01hzdv945', 'en', 1, 'https://ror.org/01hzdv945 Chaudhary Charan Singh University चौधरी चरण सिंह विश्वविद्यालय சௌதரி சரண் சிங் பல்கலைக்கழகம்'), (1314, 'https://ror.org/01j0n2h15', 'en', 1, 'https://ror.org/01j0n2h15 Universidad de Phoenix University of Phoenix Université de phoenix'), (1315, 'https://ror.org/01j0qa041', 'it', 1, 'https://ror.org/01j0qa041 Ospedali Riuniti di Ancona'), (1316, 'https://ror.org/01j17xg39', 'en', 1, 'https://ror.org/01j17xg39 New York Hospital Queens'), (1317, 'https://ror.org/01j25h453', 'en', 1, 'https://ror.org/01j25h453 Kelowna General Hospital'), (1318, 'https://ror.org/01j6t9363', 'fr', 1, 'https://ror.org/01j6t9363 Hôpital Razi de La Manouba مستشفئ الرازي'), (1319, 'https://ror.org/01j780996', 'de', 1, 'https://ror.org/01j780996 Leopoldina Krankenhaus Schweinfurt'), (1320, 'https://ror.org/01j7azy31', 'tr', 1, 'https://ror.org/01j7azy31 Dr Sami Ulus Çocuk Sağlığı ve Hastalıkları Eğitim ve Araştırma Hastanesi'), (1321, 'https://ror.org/01j8kmv80', 'en', 1, 'https://ror.org/01j8kmv80 Golmud People''s Hospital 格尔木市人民医院'), (1322, 'https://ror.org/01ja5zt45', 'en', 1, 'https://ror.org/01ja5zt45 District of Columbia Department of Health'), (1323, 'https://ror.org/01jaaym28', 'en', 1, 'https://ror.org/01jaaym28 Shimane University 島根大学'), (1324, 'https://ror.org/01jckan13', 'en', 1, 'https://ror.org/01jckan13 Kin-ikyo Chuo Hospital 勤医協中央病院'), (1325, 'https://ror.org/01jdekv92', 'en', 1, 'https://ror.org/01jdekv92 Berkeley Geochronology Center'), (1326, 'https://ror.org/01je6q363', 'fr', 1, 'https://ror.org/01je6q363 Centre Technique Industriel De La Construction Metallique'), (1327, 'https://ror.org/01jfr3w16', 'en', 1, 'https://ror.org/01jfr3w16 Pacific Institute For Research and Evaluation'), (1328, 'https://ror.org/01jg3a168', 'en', 1, 'https://ror.org/01jg3a168 Gosford Hospital'), (1329, 'https://ror.org/01jh1mm11', 'en', 1, 'https://ror.org/01jh1mm11 Istanbul Florence Nightingale Hospital İstanbul Florence Nightingale Hastanesi'), (1330, 'https://ror.org/01jhgy173', 'en', 1, 'https://ror.org/01jhgy173 Kishiwada City Hospital 市立岸和田市民病院'), (1331, 'https://ror.org/01jhsfg10', 'pt', 1, 'https://ror.org/01jhsfg10 Hospital de Dona Estefânia'), (1332, 'https://ror.org/01jj26143', 'it', 1, 'https://ror.org/01jj26143 Hospital of the Holy Spirit Ospedale di Santo Spirito, Ospedale di Santo Spirito in Sassia'), (1333, 'https://ror.org/01jj2sr90', 'en', 1, 'https://ror.org/01jj2sr90 Broward Health Medical Center'), (1334, 'https://ror.org/01jjm6w53', 'en', 1, 'https://ror.org/01jjm6w53 Banner Desert Medical Center'), (1335, 'https://ror.org/01jk32r56', 'no_lang_code', 1, 'https://ror.org/01jk32r56 Sirehna'), (1336, 'https://ror.org/01jk6xr82', 'en', 1, 'https://ror.org/01jk6xr82 Rochester General Hospital'), (1337, 'https://ror.org/01jm17996', 'en', 1, 'https://ror.org/01jm17996 Mission Heritage Medical Group'), (1338, 'https://ror.org/01jm19r53', 'no_lang_code', 1, 'https://ror.org/01jm19r53 TuTech Innovation (Germany)'), (1339, 'https://ror.org/01jmd7f74', 'en', 1, 'https://ror.org/01jmd7f74 Chuvash State University Чувашский государственный университет имени И. Н. Ульянова'), (1340, 'https://ror.org/01jmsem62', 'es', 1, 'https://ror.org/01jmsem62 Hospital General Universitario de Elche'), (1341, 'https://ror.org/01jn2rz36', 'fr', 1, 'https://ror.org/01jn2rz36 Hôpital de Jolimont'), (1342, 'https://ror.org/01jpkw634', 'en', 1, 'https://ror.org/01jpkw634 Centro de Estudios Ambientales del Mediterráneo Mediterranean Center for Environmental Studies'), (1343, 'https://ror.org/01jqz8f37', 'en', 1, 'https://ror.org/01jqz8f37 Wayne Memorial Health System'), (1344, 'https://ror.org/01jtn9895', 'no_lang_code', 1, 'https://ror.org/01jtn9895 Osaka Ohtani University 大阪大谷大学'), (1345, 'https://ror.org/01k05jx47', 'en', 1, 'https://ror.org/01k05jx47 Mercy Catholic Medical Center'), (1346, 'https://ror.org/01k18gj34', 'en', 1, 'https://ror.org/01k18gj34 Ashworth College'), (1347, 'https://ror.org/01k1azd31', 'no_lang_code', 1, 'https://ror.org/01k1azd31 Kumamotorosaibyoin 熊本労災病院'), (1348, 'https://ror.org/01k1ea759', 'no_lang_code', 1, 'https://ror.org/01k1ea759 AUG Signals (Canada)'), (1349, 'https://ror.org/01k22c722', 'en', 1, 'https://ror.org/01k22c722 Dr. V. M. Government Medical College डॉ. वैशंपायन स्मृती शासकीय वैद्यकीय महाविद्यालय'), (1350, 'https://ror.org/01k5k4m02', 'en', 1, 'https://ror.org/01k5k4m02 Jan Evangelista Purkyně Military Medical Academy'), (1351, 'https://ror.org/01k6vxj52', 'en', 1, 'https://ror.org/01k6vxj52 Omsk State University Омский государственный университет имени Ф. М. Достоевского'), (1352, 'https://ror.org/01k7a6660', 'en', 1, 'https://ror.org/01k7a6660 Hennepin County Medical Center'), (1353, 'https://ror.org/01k8ej563', 'en', 1, 'https://ror.org/01k8ej563 Keio University Hospital 慶應義塾大学病院'), (1354, 'https://ror.org/01kbw1w05', 'no_lang_code', 1, 'https://ror.org/01kbw1w05 Infinite Biomedical Technologies (United States)'), (1355, 'https://ror.org/01kc65v41', 'it', 1, 'https://ror.org/01kc65v41 Fondazione "Ugo Bordoni" Ugo Bordoni Foundation'), (1356, 'https://ror.org/01kcq3761', 'en', 1, 'https://ror.org/01kcq3761 Kent Hospital'), (1357, 'https://ror.org/01kdnph40', 'es', 1, 'https://ror.org/01kdnph40 Hospital La Paloma'), (1358, 'https://ror.org/01kdvym37', 'de', 1, 'https://ror.org/01kdvym37 Battelle-Institut ev'), (1359, 'https://ror.org/01kgs1r94', 'no_lang_code', 1, 'https://ror.org/01kgs1r94 Electrical Geodesics (United States)'), (1360, 'https://ror.org/01kq6mv68', 'en', 1, 'https://ror.org/01kq6mv68 Second Affiliated Hospital of Kunming Medical College 昆明医科大学第二附属医院'), (1361, 'https://ror.org/01kq6ye20', 'en', 1, 'https://ror.org/01kq6ye20 Sansum Diabetes Research Institute'), (1362, 'https://ror.org/01kqjm533', 'en', 1, 'https://ror.org/01kqjm533 Kurihama Medical and Addiction Center 久里浜医療センター'), (1363, 'https://ror.org/01kr7aq59', 'en', 1, 'https://ror.org/01kr7aq59 Rivers State University'), (1364, 'https://ror.org/01krywm46', 'en', 1, 'https://ror.org/01krywm46 University of Virginia Children''s Hospital'), (1365, 'https://ror.org/01ks0bt75', 'en', 1, 'https://ror.org/01ks0bt75 Seoul National University Children''s Hospital 서울대학교어린이병원'), (1366, 'https://ror.org/01kta7d96', 'en', 1, 'https://ror.org/01kta7d96 McLean Hospital'), (1367, 'https://ror.org/01kvp0178', 'no_lang_code', 1, 'https://ror.org/01kvp0178 Ontario Power Generation'), (1368, 'https://ror.org/01kvtm035', 'en', 1, 'https://ror.org/01kvtm035 South Australia Pathology'), (1369, 'https://ror.org/01kw6jz33', 'no_lang_code', 1, 'https://ror.org/01kw6jz33 BGI Group (Japan)'), (1370, 'https://ror.org/01kxqsy59', 'no_lang_code', 1, 'https://ror.org/01kxqsy59 Atos (Spain)'), (1371, 'https://ror.org/01ky2n109', 'pt', 1, 'https://ror.org/01ky2n109 Hospital Federal dos Servidores do Estado'), (1372, 'https://ror.org/01kzgyz42', 'en', 1, 'https://ror.org/01kzgyz42 Qiqihar Medical University 齐齐哈尔医学院'), (1373, 'https://ror.org/01m006041', 'en', 1, 'https://ror.org/01m006041 Thiel College'), (1374, 'https://ror.org/01m1gv240', 'en', 1, 'https://ror.org/01m1gv240 King Fahad Specialist Hospital مستشفى الملك فهد التخصصي'), (1375, 'https://ror.org/01m1pv723', 'en', 1, 'https://ror.org/01m1pv723 Hôpitaux universitaires de Genève University Hospital of Geneva'), (1376, 'https://ror.org/01m1v6377', 'en', 1, 'https://ror.org/01m1v6377 Association Of Atlantic Universities'), (1377, 'https://ror.org/01m32d953', 'en', 1, 'https://ror.org/01m32d953 Copernicus Memorial Hospital'), (1378, 'https://ror.org/01m46xf39', 'en', 1, 'https://ror.org/01m46xf39 All India Institute of Hygiene and Public Health अखिल भारतीय स्वास्थ्य र्विज्ञान एवं जन स्वास्थ्य संस्थान'), (1379, 'https://ror.org/01m484026', 'no_lang_code', 1, 'https://ror.org/01m484026 Smithers Pira'), (1380, 'https://ror.org/01m7mrx20', 'es', 1, 'https://ror.org/01m7mrx20 Hospital Central Dr. Ignacio Morones Prieto'), (1381, 'https://ror.org/01mfrg562', 'en', 1, 'https://ror.org/01mfrg562 Dauphin Island Sea Lab'), (1382, 'https://ror.org/01mh1c318', 'en', 1, 'https://ror.org/01mh1c318 Federation of American Societies for Experimental Biology'), (1383, 'https://ror.org/01mhbkr88', 'en', 1, 'https://ror.org/01mhbkr88 St Martha''s Regional Hospital'), (1384, 'https://ror.org/01mpngw81', 'en', 1, 'https://ror.org/01mpngw81 Government Kilpauk Medical College கீழ்பாக்கம் மருத்துவக் கல்லூரி'), (1385, 'https://ror.org/01mqsmm97', 'es', 1, 'https://ror.org/01mqsmm97 Hospital Regional Universitario de Málaga'), (1386, 'https://ror.org/01mqvjv41', 'pt', 1, 'https://ror.org/01mqvjv41 Federal University of Mato Grosso Universidade Federal de Mato Grosso'), (1387, 'https://ror.org/01msdga41', 'no_lang_code', 1, 'https://ror.org/01msdga41 Dornier Flugzeugwerke (Germany)'), (1388, 'https://ror.org/01mtpwn71', 'no_lang_code', 1, 'https://ror.org/01mtpwn71 Adan Hospital مستشفى العدان'), (1389, 'https://ror.org/01mvmmg68', 'en', 1, 'https://ror.org/01mvmmg68 San Jacinto Methodist Hospital'), (1390, 'https://ror.org/01mxpdw03', 'en', 1, 'https://ror.org/01mxpdw03 First Affiliated Hospital of Guangzhou University of Chinese Medicine'), (1391, 'https://ror.org/01myv2z03', 'en', 1, 'https://ror.org/01myv2z03 Nayoro City General Hospital 名寄市立総合病院'), (1392, 'https://ror.org/01myv5196', 'en', 1, 'https://ror.org/01myv5196 Sivas Devlet Hastanesi Sivas State Hospital'), (1393, 'https://ror.org/01mz9wf40', 'en', 1, 'https://ror.org/01mz9wf40 Chu Shang Show Chwan Hospital'), (1394, 'https://ror.org/01n1j0f20', 'fr', 1, 'https://ror.org/01n1j0f20 Hôpital Aristide Le Dantec'), (1395, 'https://ror.org/01n260e81', 'en', 1, 'https://ror.org/01n260e81 Rancho Santa Ana Botanic Garden'), (1396, 'https://ror.org/01n2xwm51', 'en', 1, 'https://ror.org/01n2xwm51 Meyer Children''s Hospital Ospedale Pediatrico Meyer'), (1397, 'https://ror.org/01n67jr26', 'en', 1, 'https://ror.org/01n67jr26 Forest Department Sarawak'), (1398, 'https://ror.org/01n70p029', 'en', 1, 'https://ror.org/01n70p029 Birmingham and Midland Eye Centre'), (1399, 'https://ror.org/01n85qf05', 'pt', 1, 'https://ror.org/01n85qf05 Escola Superior de Enfermagem S. Francisco das Misericórdias'), (1400, 'https://ror.org/01na5rp93', 'no_lang_code', 1, 'https://ror.org/01na5rp93 Bioqual'), (1401, 'https://ror.org/01ncx3917', 'en', 1, 'https://ror.org/01ncx3917 Rosie Hospital'), (1402, 'https://ror.org/01nf63x62', 'en', 1, 'https://ror.org/01nf63x62 Institute of Global Environment and Society'), (1403, 'https://ror.org/01ng1yh19', 'en', 1, 'https://ror.org/01ng1yh19 Charlie Norwood VA Medical Center'), (1404, 'https://ror.org/01nhcyg40', 'no_lang_code', 1, 'https://ror.org/01nhcyg40 Nagoya Ekisaikai Hospital 名古屋掖済会病院'), (1405, 'https://ror.org/01nhrc260', 'en', 1, 'https://ror.org/01nhrc260 Froedtert Hospital'), (1406, 'https://ror.org/01nhzsw25', 'fr', 1, 'https://ror.org/01nhzsw25 Hydro-Québec'), (1407, 'https://ror.org/01nj4ek07', 'en', 1, 'https://ror.org/01nj4ek07 Hinchingbrooke Hospital'), (1408, 'https://ror.org/01nj8sa76', 'en', 1, 'https://ror.org/01nj8sa76 Royal Alexandra Hospital'), (1409, 'https://ror.org/01nn35n25', 'en', 1, 'https://ror.org/01nn35n25 Institute of Accelerating Systems and Applications Ινστιτούτο Επιταχυντικών Συστημάτων και Εφαρμογών'), (1410, 'https://ror.org/01npf0s58', 'en', 1, 'https://ror.org/01npf0s58 National Ilan University 國立宜蘭大學'), (1411, 'https://ror.org/01nph4h53', 'no_lang_code', 1, 'https://ror.org/01nph4h53 Aerodyne Research'), (1412, 'https://ror.org/01nr6fy72', 'en', 1, 'https://ror.org/01nr6fy72 Ljubljana University Medical Centre'), (1413, 'https://ror.org/01nthrq77', 'es', 1, 'https://ror.org/01nthrq77 Instituto Tecnologico Del Embalaje, Transporte Y Logistica'), (1414, 'https://ror.org/01nwsvf80', 'en', 1, 'https://ror.org/01nwsvf80 Shiga Medical Center for Children 子供のための滋賀医療センター'), (1415, 'https://ror.org/01nxjpd08', 'en', 1, 'https://ror.org/01nxjpd08 Vladimir State University Федеральное государственное бюджетное образовательное учреждение высшего образования Владимирский государственный университет имени Александра Григорьевича и Николая Григорьевича Столетовых'), (1416, 'https://ror.org/01nxv5c88', 'en', 1, 'https://ror.org/01nxv5c88 Second Affiliated Hospital of Nanchang University 南昌大学第二附属医院'), (1417, 'https://ror.org/01nyv7k26', 'en', 1, 'https://ror.org/01nyv7k26 Oita University 大分大学'), (1418, 'https://ror.org/01nzrqm94', 'en', 1, 'https://ror.org/01nzrqm94 Breach Candy Hospital'), (1419, 'https://ror.org/01p01k535', 'en', 1, 'https://ror.org/01p01k535 Taoyuan Armed Forces General Hospital 桃园武装部队总医院'), (1420, 'https://ror.org/01p0ttv97', 'en', 1, 'https://ror.org/01p0ttv97 Dickinson State University'), (1421, 'https://ror.org/01p2t4k13', 'en', 1, 'https://ror.org/01p2t4k13 Heilongjiang Center for Tuberculosis Control and Prevention'), (1422, 'https://ror.org/01p37he69', 'en', 1, 'https://ror.org/01p37he69 Kansas Wesleyan University'), (1423, 'https://ror.org/01p3tpn79', 'es', 1, 'https://ror.org/01p3tpn79 Hospital Universitari Arnau de Vilanova'), (1424, 'https://ror.org/01p7j6t08', 'en', 1, 'https://ror.org/01p7j6t08 Mississippi College'), (1425, 'https://ror.org/01p830915', 'en', 1, 'https://ror.org/01p830915 Morriston Hospital Ysbyty Treforus'), (1426, 'https://ror.org/01p8da469', 'it', 1, 'https://ror.org/01p8da469 Ospedale Amedeo di Savoia'), (1427, 'https://ror.org/01papkj44', 'en', 1, 'https://ror.org/01papkj44 University of Tabriz دانشگاه تبریز'), (1428, 'https://ror.org/01pd66220', 'en', 1, 'https://ror.org/01pd66220 302 Military Hospital of China 中国人民解放军第302医院'), (1429, 'https://ror.org/01phhgk62', 'en', 1, 'https://ror.org/01phhgk62 Boca Raton Regional Hospital'), (1430, 'https://ror.org/01phydj90', 'en', 1, 'https://ror.org/01phydj90 Akdeniz University Hospital Akdeniz Üniversitesi Hastanesi'), (1431, 'https://ror.org/01pj4nt72', 'en', 1, 'https://ror.org/01pj4nt72 Nordland Hospital'), (1432, 'https://ror.org/01pjjvq50', 'en', 1, 'https://ror.org/01pjjvq50 Eastbourne District General Hospital'), (1433, 'https://ror.org/01pm59m24', 'en', 1, 'https://ror.org/01pm59m24 Akashi Municipal City Hospital 明石市立市民病院'), (1434, 'https://ror.org/01pp15642', 'en', 1, 'https://ror.org/01pp15642 South Nassau Communities Hospital'), (1435, 'https://ror.org/01ppcnz44', 'tr', 1, 'https://ror.org/01ppcnz44 Antalya Eğitim ve Araştırma Hastanesi'), (1436, 'https://ror.org/01praqa56', 'en', 1, 'https://ror.org/01praqa56 National Institute of Occupational Health'), (1437, 'https://ror.org/01ps4ag81', 'no_lang_code', 1, 'https://ror.org/01ps4ag81 Fountain Biopharma (Taiwan)'), (1438, 'https://ror.org/01pvgz545', 'no_lang_code', 1, 'https://ror.org/01pvgz545 Ishikiriseiki Hospital 石切生喜病院'), (1439, 'https://ror.org/01px48m89', 'en', 1, 'https://ror.org/01px48m89 Bentley University'), (1440, 'https://ror.org/01px77p81', 'en', 1, 'https://ror.org/01px77p81 Sun Yat-sen Memorial Hospital'), (1441, 'https://ror.org/01pxg9d10', 'en', 1, 'https://ror.org/01pxg9d10 Meyer Children''s Hospital'), (1442, 'https://ror.org/01pxhdc49', 'en', 1, 'https://ror.org/01pxhdc49 Miyazaki Prefectural Hospital 宮崎県立病院'), (1443, 'https://ror.org/01pym8r61', 'en', 1, 'https://ror.org/01pym8r61 Centre for Research in Medical Entomology'), (1444, 'https://ror.org/01pzf6r50', 'en', 1, 'https://ror.org/01pzf6r50 Inje University Busan Paik Hospital'), (1445, 'https://ror.org/01pzjt917', 'eu', 1, 'https://ror.org/01pzjt917 Hospital Txagorritxu'), (1446, 'https://ror.org/01q046q46', 'fr', 1, 'https://ror.org/01q046q46 Hôpital Pierre Wertheimer'), (1447, 'https://ror.org/01q11am17', 'en', 1, 'https://ror.org/01q11am17 Roper Hospital'), (1448, 'https://ror.org/01q1jaw52', 'en', 1, 'https://ror.org/01q1jaw52 AHEPA University Hospital Πανεπιστημιακό Νοσοκομείο ΑΧΕΠΑ'), (1449, 'https://ror.org/01q1y4t48', 'en', 1, 'https://ror.org/01q1y4t48 Virginia Tech - Wake Forest University School of Biomedical Engineering & Sciences'), (1450, 'https://ror.org/01q2nz307', 'en', 1, 'https://ror.org/01q2nz307 Baystate Medical Center'), (1451, 'https://ror.org/01q2y2d42', 'en', 1, 'https://ror.org/01q2y2d42 Departamento de Salud y Servicios Sociales de los Estados Unidos Département de la santé et des services sociaux des États-unis State of Maine Department of Health and Human Services'), (1452, 'https://ror.org/01q4pk532', 'no_lang_code', 1, 'https://ror.org/01q4pk532 Hydro One (Canada)'), (1453, 'https://ror.org/01q6b3f33', 'no_lang_code', 1, 'https://ror.org/01q6b3f33 Al Omooma Hospital'), (1454, 'https://ror.org/01q6hrg49', 'it', 1, 'https://ror.org/01q6hrg49 Ospedale Garibaldi'), (1455, 'https://ror.org/01q750e89', 'nl', 1, 'https://ror.org/01q750e89 Elkerliek Ziekenhuis'), (1456, 'https://ror.org/01q8f6705', 'no_lang_code', 1, 'https://ror.org/01q8f6705 BASF (Germany)'), (1457, 'https://ror.org/01q9r1072', 'en', 1, 'https://ror.org/01q9r1072 Boys Town National Research Hospital'), (1458, 'https://ror.org/01qbebb31', 'en', 1, 'https://ror.org/01qbebb31 Papworth Hospital NHS Foundation Trust'), (1459, 'https://ror.org/01qc48765', 'en', 1, 'https://ror.org/01qc48765 Association of Academic Health Centers'), (1460, 'https://ror.org/01qcxb695', 'no_lang_code', 1, 'https://ror.org/01qcxb695 Mahosot Hospital'), (1461, 'https://ror.org/01qd3xc93', 'en', 1, 'https://ror.org/01qd3xc93 Fondazione Mario Negri Sud Mario Negri Sud Foundation'), (1462, 'https://ror.org/01qdp7m73', 'en', 1, 'https://ror.org/01qdp7m73 Bryn Mawr Rehabilitation Hospital'), (1463, 'https://ror.org/01qe4gr33', 'en', 1, 'https://ror.org/01qe4gr33 Family and Social Services Administration'), (1464, 'https://ror.org/01qe7f394', 'en', 1, 'https://ror.org/01qe7f394 Ministerio de Salud de Chile Ministry of Health'), (1465, 'https://ror.org/01qemgb02', 'en', 1, 'https://ror.org/01qemgb02 Manipal Teaching Hospital मणिपाल टीचिंग हस्पिटल'), (1466, 'https://ror.org/01qh26a66', 'en', 1, 'https://ror.org/01qh26a66 Sichuan Academy of Medical Sciences & Sichuan Provincial People''s Hospital 四川省中医药科学院'), (1467, 'https://ror.org/01qh83x04', 'sv', 1, 'https://ror.org/01qh83x04 Västmanlands sjukhus Västerås'), (1468, 'https://ror.org/01qn0gc28', 'en', 1, 'https://ror.org/01qn0gc28 Yuri Gagarin State Technical University of Saratov Саратовский государственный технический университет имени Ю. А. Гагарина'), (1469, 'https://ror.org/01qqxvf96', 'es', 1, 'https://ror.org/01qqxvf96 Hospital Español'), (1470, 'https://ror.org/01qr3vg91', 'en', 1, 'https://ror.org/01qr3vg91 Regional Medical Research Centre'), (1471, 'https://ror.org/01qr5a671', 'en', 1, 'https://ror.org/01qr5a671 Tohoku Fukushi University 東北福祉大学'), (1472, 'https://ror.org/01qt0gj86', 'lt', 1, 'https://ror.org/01qt0gj86 Lietuvos Bioetikos Komitetas Lithuanian Bioethics Committee'), (1473, 'https://ror.org/01qtc5416', 'en', 1, 'https://ror.org/01qtc5416 Federal Office of Public Health'), (1474, 'https://ror.org/01qtnxn83', 'en', 1, 'https://ror.org/01qtnxn83 Technical University of Nova Scotia'), (1475, 'https://ror.org/01qv3ba61', 'en', 1, 'https://ror.org/01qv3ba61 University of Port Harcourt Teaching Hospital'), (1476, 'https://ror.org/01qv3p587', 'no_lang_code', 1, 'https://ror.org/01qv3p587 Universal Stabilization Technologies'), (1477, 'https://ror.org/01qww1p93', 'en', 1, 'https://ror.org/01qww1p93 Dominican University'), (1478, 'https://ror.org/01qyd4k24', 'en', 1, 'https://ror.org/01qyd4k24 Hoseo University 호서대학교'), (1479, 'https://ror.org/01qz7fr76', 'en', 1, 'https://ror.org/01qz7fr76 Brighton and Sussex Medical School'), (1480, 'https://ror.org/01r024a98', 'en', 1, 'https://ror.org/01r024a98 Chung-Ang University 중앙대학교'), (1481, 'https://ror.org/01r05t925', 'tr', 1, 'https://ror.org/01r05t925 Ankara Onkoloji Eğitim ve Araştırma Hastanesi'), (1482, 'https://ror.org/01r0bpx56', 'no_lang_code', 1, 'https://ror.org/01r0bpx56 Hiratsuka Kyosai Hospital 平塚共済病院'), (1483, 'https://ror.org/01r2n9849', 'en', 1, 'https://ror.org/01r2n9849 Saint John''s Hospital'), (1484, 'https://ror.org/01r3kd649', 'tr', 1, 'https://ror.org/01r3kd649 S.B. Keçiören Eğitim ve Araştırma Hastanesi'), (1485, 'https://ror.org/01r4bn552', 'en', 1, 'https://ror.org/01r4bn552 Institut von karman de dynamique des fluides Von Karman Institut für Strömungsmechanik Von Karman Institute for Fluid Dynamics'), (1486, 'https://ror.org/01r89q997', 'en', 1, 'https://ror.org/01r89q997 Royal Victoria Regional Health Centre'), (1487, 'https://ror.org/01r8fpq52', 'en', 1, 'https://ror.org/01r8fpq52 Niigata City General Hospital 新潟市民病院'), (1488, 'https://ror.org/01r9be524', 'en', 1, 'https://ror.org/01r9be524 Bristol Hospital'), (1489, 'https://ror.org/01r9ea713', 'en', 1, 'https://ror.org/01r9ea713 Blackpool Victoria Hospital'), (1490, 'https://ror.org/01rabm487', 'pt', 1, 'https://ror.org/01rabm487 Hospital Nossa Senhora das Graças'), (1491, 'https://ror.org/01rahby95', 'en', 1, 'https://ror.org/01rahby95 Department of Human Services'), (1492, 'https://ror.org/01rb2ev69', 'no_lang_code', 1, 'https://ror.org/01rb2ev69 Inspiralia'), (1493, 'https://ror.org/01rb2st83', 'sk', 1, 'https://ror.org/01rb2st83 Univerzitná Nemocnica Louisa Pasteura'), (1494, 'https://ror.org/01rb4vv49', 'en', 1, 'https://ror.org/01rb4vv49 Shariati Hospital بیمارستان شریعتی'), (1495, 'https://ror.org/01rdjpj45', 'en', 1, 'https://ror.org/01rdjpj45 M. P. Shah Medical College શ્રી એમપી શાહ સરકારી મેડિકલ કોલેજ'), (1496, 'https://ror.org/01rdvwx15', 'en', 1, 'https://ror.org/01rdvwx15 Lee Memorial Hospital'), (1497, 'https://ror.org/01rf07780', 'es', 1, 'https://ror.org/01rf07780 Hospital Provincial de Conxo'), (1498, 'https://ror.org/01rf1rj96', 'en', 1, 'https://ror.org/01rf1rj96 Kangwon National University Hospital 강원대학교병원'), (1499, 'https://ror.org/01rm42p40', 'en', 1, 'https://ror.org/01rm42p40 University of Alabama at Birmingham Hospital'), (1500, 'https://ror.org/01rrd4612', 'no_lang_code', 1, 'https://ror.org/01rrd4612 Hiroshima Prefectural Hospital 県立広島病院'), (1501, 'https://ror.org/01rs0ht88', 'en', 1, 'https://ror.org/01rs0ht88 Ministry of Health and Medical Education'), (1502, 'https://ror.org/01rsda187', 'en', 1, 'https://ror.org/01rsda187 Mitate Hospital 見立病院'), (1503, 'https://ror.org/01rvf6k07', 'en', 1, 'https://ror.org/01rvf6k07 Military Hospital'), (1504, 'https://ror.org/01rwkhb30', 'en', 1, 'https://ror.org/01rwkhb30 Korea Institute of Materials Science'), (1505, 'https://ror.org/01rws6r75', 'en', 1, 'https://ror.org/01rws6r75 Ahvaz Jundishapur University of Medical Sciences دانشگاه علوم پزشکی جندیشاپور اهواز'), (1506, 'https://ror.org/01rx63s97', 'pt', 1, 'https://ror.org/01rx63s97 Guarulhos University'), (1507, 'https://ror.org/01rxfrp27', 'en', 1, 'https://ror.org/01rxfrp27 La Trobe University'), (1508, 'https://ror.org/01ry6tw68', 'no_lang_code', 1, 'https://ror.org/01ry6tw68 Balance Technology Consulting'), (1509, 'https://ror.org/01rzm0s68', 'en', 1, 'https://ror.org/01rzm0s68 Sentara Rockingham Memorial Hospital Medical Center'), (1510, 'https://ror.org/01s0phq15', 'en', 1, 'https://ror.org/01s0phq15 Inverclyde Royal Hospital'), (1511, 'https://ror.org/01s434164', 'en', 1, 'https://ror.org/01s434164 Nathan Kline Institute for Psychiatric Research'), (1512, 'https://ror.org/01s4cx283', 'no_lang_code', 1, 'https://ror.org/01s4cx283 Shizuoka Saiseikai General Hospital 静岡済生会総合病院'), (1513, 'https://ror.org/01s5axj25', 'en', 1, 'https://ror.org/01s5axj25 Lunenfeld-Tanenbaum Research Institute'), (1514, 'https://ror.org/01s5dt366', 'en', 1, 'https://ror.org/01s5dt366 University Hospital of Larissa'), (1515, 'https://ror.org/01s5r6w32', 'en', 1, 'https://ror.org/01s5r6w32 Central Arkansas Veterans Healthcare System'), (1516, 'https://ror.org/01s7jxc19', 'en', 1, 'https://ror.org/01s7jxc19 Miyagi University of Education 宮城教育大学'), (1517, 'https://ror.org/01s7w1z60', 'fr', 1, 'https://ror.org/01s7w1z60 Hotel Dieu Hospital'), (1518, 'https://ror.org/01s7y5e82', 'en', 1, 'https://ror.org/01s7y5e82 Ivan Franko Nemzeti Egyetem Lviv Lviv University Uniwersytet Lwowski Львовский национальный университет имени Ивана Франко Львівський національний університет імені Івана Франка'), (1519, 'https://ror.org/01s8xxq04', 'en', 1, 'https://ror.org/01s8xxq04 Eastern Oregon University'), (1520, 'https://ror.org/01s9rzk09', 'en', 1, 'https://ror.org/01s9rzk09 Kushiro Rosai Hospital 釧路ろうさい病院'), (1521, 'https://ror.org/01sgn8034', 'en', 1, 'https://ror.org/01sgn8034 Trinitas Regional Medical Center'), (1522, 'https://ror.org/01shhkn05', 'en', 1, 'https://ror.org/01shhkn05 East Orange VA Medical Center'), (1523, 'https://ror.org/01ska0k70', 'en', 1, 'https://ror.org/01ska0k70 Millard Fillmore Suburban Hospital'), (1524, 'https://ror.org/01skxn174', 'en', 1, 'https://ror.org/01skxn174 Lower Manhattan Hospital'), (1525, 'https://ror.org/01sm4s887', 'en', 1, 'https://ror.org/01sm4s887 Bundesinstitut für gesundheitlichen Verbraucherschutz und Veterinärmedizin Federal Institute for Health Protection of Consumers and Veterinary Medicine'), (1526, 'https://ror.org/01smmxq73', 'en', 1, 'https://ror.org/01smmxq73 Doctors Hospital'), (1527, 'https://ror.org/01smpj292', 'en', 1, 'https://ror.org/01smpj292 Arizona Department of Health Services'), (1528, 'https://ror.org/01sps7q28', 'en', 1, 'https://ror.org/01sps7q28 The University of Texas Health Science Center at Tyler'), (1529, 'https://ror.org/01sxtx626', 'en', 1, 'https://ror.org/01sxtx626 Ministry of Health Міністерство охорони здоров''я України'), (1530, 'https://ror.org/01sytk573', 'en', 1, 'https://ror.org/01sytk573 National Science Museum'), (1531, 'https://ror.org/01t0n3b84', 'it', 1, 'https://ror.org/01t0n3b84 Consorzio Pisa Ricerche'), (1532, 'https://ror.org/01t33qq42', 'en', 1, 'https://ror.org/01t33qq42 Arkansas Children''s Hospital'), (1533, 'https://ror.org/01t3emk15', 'en', 1, 'https://ror.org/01t3emk15 Central Chest Institute of Thailand'), (1534, 'https://ror.org/01t409e13', 'en', 1, 'https://ror.org/01t409e13 Regional Hospital Holstebro'), (1535, 'https://ror.org/01t54q348', 'en', 1, 'https://ror.org/01t54q348 Grantham Hospital 葛量洪醫院'), (1536, 'https://ror.org/01t5yh786', 'en', 1, 'https://ror.org/01t5yh786 Hôpital Universitaire Des Enfants Reine Fabiola Queen Fabiola Children''s University Hospital'), (1537, 'https://ror.org/01t69y763', 'en', 1, 'https://ror.org/01t69y763 St. Luke''s Hospital'), (1538, 'https://ror.org/01t6fdj11', 'en', 1, 'https://ror.org/01t6fdj11 Mary Free Bed Rehabilitation Hospital'), (1539, 'https://ror.org/01t6tyq74', 'en', 1, 'https://ror.org/01t6tyq74 Consortium of Universities for Research in Earthquake Engineering'), (1540, 'https://ror.org/01t817z14', 'en', 1, 'https://ror.org/01t817z14 University of Houston - Clear Lake'), (1541, 'https://ror.org/01t8svj65', 'en', 1, 'https://ror.org/01t8svj65 University of California San Francisco Medical Center'), (1542, 'https://ror.org/01tcy5w98', 'no_lang_code', 1, 'https://ror.org/01tcy5w98 Aurum Institute'), (1543, 'https://ror.org/01tek4f86', 'hu', 1, 'https://ror.org/01tek4f86 Bács-Kiskun Megyei Kórház'), (1544, 'https://ror.org/01thhk923', 'en', 1, 'https://ror.org/01thhk923 Dongshin University 동신대학교'), (1545, 'https://ror.org/01thzqc78', 'pt', 1, 'https://ror.org/01thzqc78 Universidade Sagrado Coração'), (1546, 'https://ror.org/01tj58m37', 'en', 1, 'https://ror.org/01tj58m37 Montana State University Billings'), (1547, 'https://ror.org/01tqqny90', 'en', 1, 'https://ror.org/01tqqny90 Nagasaki International University 長崎国際大学'), (1548, 'https://ror.org/01ttqjq76', 'en', 1, 'https://ror.org/01ttqjq76 North Wales Hospital'), (1549, 'https://ror.org/01v00e311', 'en', 1, 'https://ror.org/01v00e311 Hayashi Eye Hospital'), (1550, 'https://ror.org/01v0xk274', 'pt', 1, 'https://ror.org/01v0xk274 Universidade Ibirapuera'), (1551, 'https://ror.org/01v16x378', 'en', 1, 'https://ror.org/01v16x378 Command Hospital'), (1552, 'https://ror.org/01v27vf29', 'en', 1, 'https://ror.org/01v27vf29 Children''s Medical Center'), (1553, 'https://ror.org/01v49sd11', 'en', 1, 'https://ror.org/01v49sd11 Saint Louis University Hospital'), (1554, 'https://ror.org/01v4pc162', 'en', 1, 'https://ror.org/01v4pc162 National Board of Health and Welfare'), (1555, 'https://ror.org/01v5y3463', 'en', 1, 'https://ror.org/01v5y3463 Autonomous University of Campeche Universidad Autónoma de Campeche'), (1556, 'https://ror.org/01v62m802', 'en', 1, 'https://ror.org/01v62m802 Siena College'), (1557, 'https://ror.org/01v6gr187', 'no_lang_code', 1, 'https://ror.org/01v6gr187 Semex'), (1558, 'https://ror.org/01v7y5b55', 'en', 1, 'https://ror.org/01v7y5b55 Korea Maritime and Ocean University 한국해양대학교'), (1559, 'https://ror.org/01v8mb410', 'en', 1, 'https://ror.org/01v8mb410 National Sanyo Hospital 国立病院機構山口宇部医療センター'), (1560, 'https://ror.org/01v95tx09', 'en', 1, 'https://ror.org/01v95tx09 Shriners Hospitals for Children - Galveston'), (1561, 'https://ror.org/01v9g9c07', 'en', 1, 'https://ror.org/01v9g9c07 Mie University Hospital 三重大学病院'), (1562, 'https://ror.org/01va7e105', 'en', 1, 'https://ror.org/01va7e105 Ibis Reproductive Health'), (1563, 'https://ror.org/01vbmek33', 'en', 1, 'https://ror.org/01vbmek33 Kyung Hee University Medical Center'), (1564, 'https://ror.org/01vj9qy35', 'en', 1, 'https://ror.org/01vj9qy35 Christian Medical College'), (1565, 'https://ror.org/01vjd7j86', 'en', 1, 'https://ror.org/01vjd7j86 Federalni Zavod za geologiju The Federal Institute for Geology'), (1566, 'https://ror.org/01vjtf564', 'en', 1, 'https://ror.org/01vjtf564 Rabin Medical Center'), (1567, 'https://ror.org/01vk45p32', 'en', 1, 'https://ror.org/01vk45p32 Eiju General Hospital 永寿総合病院'), (1568, 'https://ror.org/01vka3a64', 'en', 1, 'https://ror.org/01vka3a64 CARE Hospitals'), (1569, 'https://ror.org/01vqqz948', 'fr', 1, 'https://ror.org/01vqqz948 Hopital Universitaire Hedi Chaker المستشفى الجامعي بصفاقس'), (1570, 'https://ror.org/01vr7z878', 'en', 1, 'https://ror.org/01vr7z878 Khyber Medical College'), (1571, 'https://ror.org/01vtn3k88', 'es', 1, 'https://ror.org/01vtn3k88 Hospital Pablo Tobon Uribe'), (1572, 'https://ror.org/01vv03303', 'en', 1, 'https://ror.org/01vv03303 King Abdul Aziz University Hospital'), (1573, 'https://ror.org/01vx7zt03', 'en', 1, 'https://ror.org/01vx7zt03 Addington Hospital'), (1574, 'https://ror.org/01vzp6a32', 'en', 1, 'https://ror.org/01vzp6a32 Korle Bu Teaching Hospital'), (1575, 'https://ror.org/01w0d5g70', 'en', 1, 'https://ror.org/01w0d5g70 University of Missouri–Kansas City'), (1576, 'https://ror.org/01w1pbe36', 'en', 1, 'https://ror.org/01w1pbe36 University of Maryland Global Campus'), (1577, 'https://ror.org/01w3ec513', 'en', 1, 'https://ror.org/01w3ec513 Arnot Ogden Medical Center'), (1578, 'https://ror.org/01w3xx622', 'en', 1, 'https://ror.org/01w3xx622 Lanzhou Army General Hospital 陆军总院'), (1579, 'https://ror.org/01w502745', 'nl', 1, 'https://ror.org/01w502745 Slotervaartziekenhuis'), (1580, 'https://ror.org/01w5s1t11', 'en', 1, 'https://ror.org/01w5s1t11 Buffalo Medical Group'), (1581, 'https://ror.org/01w62yz22', 'en', 1, 'https://ror.org/01w62yz22 Advanced Institute of Convergence Technology 차세대융합기술연구원'), (1582, 'https://ror.org/01w6vdf77', 'en', 1, 'https://ror.org/01w6vdf77 Gorgan University of Agricultural Sciences and Natural Resources دانشگاه علوم کشاورزی و منابع طبیعی گرگان'), (1583, 'https://ror.org/01w6wtk13', 'en', 1, 'https://ror.org/01w6wtk13 Shizuoka University 静岡大学'), (1584, 'https://ror.org/01w756144', 'en', 1, 'https://ror.org/01w756144 Meriter Hospital'), (1585, 'https://ror.org/01w8whh21', 'en', 1, 'https://ror.org/01w8whh21 University of Oklahoma Medical Center'), (1586, 'https://ror.org/01wc5x922', 'en', 1, 'https://ror.org/01wc5x922 Providence Sacred Heart Medical Center'), (1587, 'https://ror.org/01wcey047', 'en', 1, 'https://ror.org/01wcey047 Joseph Eye Hospital'), (1588, 'https://ror.org/01wdckv42', 'en', 1, 'https://ror.org/01wdckv42 Bayfront Medical Center'), (1589, 'https://ror.org/01wddqe20', 'en', 1, 'https://ror.org/01wddqe20 The Alfred Hospital'), (1590, 'https://ror.org/01wf0xv67', 'en', 1, 'https://ror.org/01wf0xv67 Eastern Command Hospital'), (1591, 'https://ror.org/01wgych27', 'en', 1, 'https://ror.org/01wgych27 Kaiser Permanente Riverside Medical Center'), (1592, 'https://ror.org/01whq8m38', 'en', 1, 'https://ror.org/01whq8m38 Mokwon University 목원대학교'), (1593, 'https://ror.org/01wjz9118', 'en', 1, 'https://ror.org/01wjz9118 Nizam''s Institute of Medical Sciences'), (1594, 'https://ror.org/01wmj1g45', 'en', 1, 'https://ror.org/01wmj1g45 Atlanta University Center'), (1595, 'https://ror.org/01wpkc438', 'en', 1, 'https://ror.org/01wpkc438 Canadian Foundation For The International Space University'), (1596, 'https://ror.org/01wpqwr25', 'en', 1, 'https://ror.org/01wpqwr25 Lemuel Shattuck Hospital'), (1597, 'https://ror.org/01wqrpc44', 'en', 1, 'https://ror.org/01wqrpc44 Kyushu Sangyo University 九州産業大学'), (1598, 'https://ror.org/01wrc0z23', 'en', 1, 'https://ror.org/01wrc0z23 Jersey City Medical Center'), (1599, 'https://ror.org/01wv1aw46', 'en', 1, 'https://ror.org/01wv1aw46 BongSeng Memorial Hospital 봉생병원입니다'), (1600, 'https://ror.org/01wx86652', 'en', 1, 'https://ror.org/01wx86652 Astley Ainslie Hospital'), (1601, 'https://ror.org/01wxddc07', 'en', 1, 'https://ror.org/01wxddc07 Katsushika Medical Center 葛飾医療センタ'), (1602, 'https://ror.org/01x18vk56', 'no_lang_code', 1, 'https://ror.org/01x18vk56 Sir Ganga Ram Hospital'), (1603, 'https://ror.org/01x21tj82', 'no_lang_code', 1, 'https://ror.org/01x21tj82 Microsoft (Netherlands)'), (1604, 'https://ror.org/01x24z140', 'en', 1, 'https://ror.org/01x24z140 Annamalai University अन्नामलाई विश्वविद्यालय ਅੰਨਾਮਲਾਈ ਯੂਨੀਵਰਸਿਟੀ அண்ணாமலைப் பல்கலைக்கழகம் അണ്ണാമലൈ സർവകലാശാല'), (1605, 'https://ror.org/01x2t4526', 'en', 1, 'https://ror.org/01x2t4526 Lee Memorial Health System'), (1606, 'https://ror.org/01x3f1613', 'en', 1, 'https://ror.org/01x3f1613 Driscoll Children''s Hospital'), (1607, 'https://ror.org/01x3jjv63', 'en', 1, 'https://ror.org/01x3jjv63 Uzhhorod National University Użhorodzki Uniwersytet Narodowy Ужгородский национальный университет Ужгородський національний університет'), (1608, 'https://ror.org/01x4whx42', 'en', 1, 'https://ror.org/01x4whx42 Sangmyung University 상명대학교'), (1609, 'https://ror.org/01x5yfk91', 'en', 1, 'https://ror.org/01x5yfk91 HealthONE Spalding Rehabilitation Hospital'), (1610, 'https://ror.org/01x66cn47', 'it', 1, 'https://ror.org/01x66cn47 Ospedale di Santa Maria dei Battuti'), (1611, 'https://ror.org/01x69an44', 'en', 1, 'https://ror.org/01x69an44 Children''s & Women''s Health Centre of British Columbia'), (1612, 'https://ror.org/01x8yyz38', 'en', 1, 'https://ror.org/01x8yyz38 Etelä-Karjalan keskussairaala South Karelia Central Hospital'), (1613, 'https://ror.org/01x9g5g52', 'no_lang_code', 1, 'https://ror.org/01x9g5g52 Ension'), (1614, 'https://ror.org/01xapny78', 'en', 1, 'https://ror.org/01xapny78 Cabrini Medical Center'), (1615, 'https://ror.org/01xar8k65', 'en', 1, 'https://ror.org/01xar8k65 Flower Hospital'), (1616, 'https://ror.org/01xb3t395', 'en', 1, 'https://ror.org/01xb3t395 Summa Akron City Hospital'), (1617, 'https://ror.org/01xd4z152', 'en', 1, 'https://ror.org/01xd4z152 Southwest Washington Medical Center'), (1618, 'https://ror.org/01xdjhe59', 'en', 1, 'https://ror.org/01xdjhe59 Iwata City Hospital 磐田市立総合病院'), (1619, 'https://ror.org/01xereq81', 'en', 1, 'https://ror.org/01xereq81 Jamaica Hospital'), (1620, 'https://ror.org/01xf83457', 'it', 1, 'https://ror.org/01xf83457 Azienda Ospedaliera San Gerardo'), (1621, 'https://ror.org/01xg9pd38', 'en', 1, 'https://ror.org/01xg9pd38 Fitzgerald Health Education Associates'), (1622, 'https://ror.org/01xhmje49', 'en', 1, 'https://ror.org/01xhmje49 Birmingham Dental Hospital'), (1623, 'https://ror.org/01xjqrm90', 'en', 1, 'https://ror.org/01xjqrm90 Umm al-Qura University جامعة أم القرى'), (1624, 'https://ror.org/01xkmcr24', 'de', 1, 'https://ror.org/01xkmcr24 Universitäts-Augenklinik Bonn'), (1625, 'https://ror.org/01xkzjp97', 'en', 1, 'https://ror.org/01xkzjp97 Health Promotion Board 新加坡保健促进局'), (1626, 'https://ror.org/01xm3qq33', 'de', 1, 'https://ror.org/01xm3qq33 Schulthess-Klinik'), (1627, 'https://ror.org/01xm4tt59', 'en', 1, 'https://ror.org/01xm4tt59 Woodruff Health Sciences Center'), (1628, 'https://ror.org/01xn4ac42', 'en', 1, 'https://ror.org/01xn4ac42 Brandon Regional Health Authority'), (1629, 'https://ror.org/01xngwb59', 'en', 1, 'https://ror.org/01xngwb59 Fortis Escorts Hospital'), (1630, 'https://ror.org/01xnhkz22', 'en', 1, 'https://ror.org/01xnhkz22 Scarborough General Hospital'), (1631, 'https://ror.org/01xnwqx93', 'en', 1, 'https://ror.org/01xnwqx93 University Hospital Bonn Universitätsklinikum Bonn'), (1632, 'https://ror.org/01xpt7p88', 'en', 1, 'https://ror.org/01xpt7p88 Menninger Clinic'), (1633, 'https://ror.org/01xq02v66', 'en', 1, 'https://ror.org/01xq02v66 Hasbro Children''s Hospital'), (1634, 'https://ror.org/01xqed412', 'en', 1, 'https://ror.org/01xqed412 Haywood Community Hospital'), (1635, 'https://ror.org/01xrazc29', 'en', 1, 'https://ror.org/01xrazc29 Jaipur National University'), (1636, 'https://ror.org/01xrnpj63', 'no_lang_code', 1, 'https://ror.org/01xrnpj63 Sahara Hospital'), (1637, 'https://ror.org/01xrsrd14', 'en', 1, 'https://ror.org/01xrsrd14 Meenakshi Mission Hospital and Research Centre'), (1638, 'https://ror.org/01xtjs520', 'fr', 1, 'https://ror.org/01xtjs520 Institut Laue-Langevin'), (1639, 'https://ror.org/01xtpc441', 'en', 1, 'https://ror.org/01xtpc441 Northport VA Medical Center'), (1640, 'https://ror.org/01xv1nn60', 'en', 1, 'https://ror.org/01xv1nn60 Taibah University جامعة طيبة'), (1641, 'https://ror.org/01xvcf081', 'en', 1, 'https://ror.org/01xvcf081 New York Blood Center'), (1642, 'https://ror.org/01xxd6b82', 'en', 1, 'https://ror.org/01xxd6b82 Kosair Children''s Hospital'), (1643, 'https://ror.org/01y3zfr79', 'en', 1, 'https://ror.org/01y3zfr79 National Institute of Nursing Research'), (1644, 'https://ror.org/01y4xm534', 'en', 1, 'https://ror.org/01y4xm534 Islamic Azad University, Karaj, Karaj Islamic Azad University دانشگاه آزاد اسلامی واحد کرج'), (1645, 'https://ror.org/01y8xtk20', 'en', 1, 'https://ror.org/01y8xtk20 Southwestern Oklahoma State University'), (1646, 'https://ror.org/01y8zn427', 'en', 1, 'https://ror.org/01y8zn427 Chittagong Medical College চট্টগ্রাম মেডিকেল কলেজ'), (1647, 'https://ror.org/01y946378', 'en', 1, 'https://ror.org/01y946378 Hospital Umum Sarawak Sarawak General Hospital'), (1648, 'https://ror.org/01yav5t22', 'en', 1, 'https://ror.org/01yav5t22 Conference Board Math Sciences'), (1649, 'https://ror.org/01ybfxd46', 'en', 1, 'https://ror.org/01ybfxd46 University Hospital Complex Of Vigo'), (1650, 'https://ror.org/01ybj8n97', 'en', 1, 'https://ror.org/01ybj8n97 Dundee Dental Hospital'), (1651, 'https://ror.org/01ycr6b80', 'en', 1, 'https://ror.org/01ycr6b80 Royal Liverpool University Hospital'), (1652, 'https://ror.org/01yedz573', 'en', 1, 'https://ror.org/01yedz573 Kunming General Hospital of Chengdu Military Command 成都军区昆明总医院'), (1653, 'https://ror.org/01yft1b10', 'en', 1, 'https://ror.org/01yft1b10 Catalyst Health Economics Consultants Ltd'), (1654, 'https://ror.org/01yhc9w15', 'en', 1, 'https://ror.org/01yhc9w15 Sherman Hospital'), (1655, 'https://ror.org/01yjy8p80', 'en', 1, 'https://ror.org/01yjy8p80 National University of Luján Universidad Nacional de Luján'), (1656, 'https://ror.org/01yjyvb35', 'en', 1, 'https://ror.org/01yjyvb35 Bemidji State University'), (1657, 'https://ror.org/01ym47j46', 'en', 1, 'https://ror.org/01ym47j46 Fulbourn Hospital'), (1658, 'https://ror.org/01yn28w07', 'no_lang_code', 1, 'https://ror.org/01yn28w07 General Hospital of Ioannina G. Hatzikosta Γενικό Νοσοκομείο Ιωαννίνων "Γ. Χατζηκώστα"'), (1659, 'https://ror.org/01yp8kc21', 'es', 1, 'https://ror.org/01yp8kc21 Hospital San Pedro de Alcántara'), (1660, 'https://ror.org/01ypwfg63', 'no_lang_code', 1, 'https://ror.org/01ypwfg63 Ecofys (Netherlands)'), (1661, 'https://ror.org/01yqewm58', 'en', 1, 'https://ror.org/01yqewm58 Kuban State University Кубанский государственный университет'), (1662, 'https://ror.org/01ysgtb61', 'en', 1, 'https://ror.org/01ysgtb61 Baqiyatallah University of Medical Sciences دانشگاه علوم پزشکی بقیةالله'), (1663, 'https://ror.org/01yth7f19', 'no_lang_code', 1, 'https://ror.org/01yth7f19 Kudanzaka Hospital 九段坂病院'), (1664, 'https://ror.org/01yvj7247', 'en', 1, 'https://ror.org/01yvj7247 Bnai Zion Medical Center מרכז רפואי בני ציון'), (1665, 'https://ror.org/01ywpxj09', 'en', 1, 'https://ror.org/01ywpxj09 Queen Victoria Hospital'), (1666, 'https://ror.org/01yxj7x74', 'en', 1, 'https://ror.org/01yxj7x74 University Clinic of Pulmonary and Allergic Diseases Golnik'), (1667, 'https://ror.org/01yytng49', 'en', 1, 'https://ror.org/01yytng49 Kanagawa Rehabilitation Hospital 神奈川リハビリテーション病院'), (1668, 'https://ror.org/01yyxv878', 'en', 1, 'https://ror.org/01yyxv878 Wingate University'), (1669, 'https://ror.org/01yzgg311', 'es', 1, 'https://ror.org/01yzgg311 Hospital Central de la Cruz Roja San José y Santa Adela'), (1670, 'https://ror.org/01yzz0f51', 'en', 1, 'https://ror.org/01yzz0f51 Chung Hua University'), (1671, 'https://ror.org/01z07eq06', 'en', 1, 'https://ror.org/01z07eq06 Hubei Polytechnic University 湖北理工学院'), (1672, 'https://ror.org/01z1dtf94', 'en', 1, 'https://ror.org/01z1dtf94 Shriners Hospitals for Children - Canada'), (1673, 'https://ror.org/01z3j3n30', 'en', 1, 'https://ror.org/01z3j3n30 Schneider Children''s Medical Center'), (1674, 'https://ror.org/01z4nnt86', 'en', 1, 'https://ror.org/01z4nnt86 Seoul National University Hospital 서울대학교병원'), (1675, 'https://ror.org/01z719741', 'en', 1, 'https://ror.org/01z719741 Scripps Clinic Medical Group'), (1676, 'https://ror.org/01z7mq587', 'tr', 1, 'https://ror.org/01z7mq587 Diyarbakır Askeri Hastanesi'), (1677, 'https://ror.org/01z83rb65', 'fr', 1, 'https://ror.org/01z83rb65 Adi Valor'), (1678, 'https://ror.org/01z8t1s57', 'en', 1, 'https://ror.org/01z8t1s57 International Center for Public Health'), (1679, 'https://ror.org/01z9vrt66', 'en', 1, 'https://ror.org/01z9vrt66 Okazaki City Hospital 岡崎市民病院'), (1680, 'https://ror.org/01za8fg18', 'en', 1, 'https://ror.org/01za8fg18 Lagos State University Yunifásítì Ìpínlẹ̀ Èkó'), (1681, 'https://ror.org/01zbeej63', 'fi', 1, 'https://ror.org/01zbeej63 Keski-Satakunnan Terveydenhuollon kuntayhtymä'), (1682, 'https://ror.org/01zbhpb91', 'en', 1, 'https://ror.org/01zbhpb91 Meenakshi Ammal Dental College and Hospital'), (1683, 'https://ror.org/01zbzxe52', 'en', 1, 'https://ror.org/01zbzxe52 Royal South Hants Hospital'), (1684, 'https://ror.org/01zc7k534', 'no_lang_code', 1, 'https://ror.org/01zc7k534 Koga Hospital 古賀病院'), (1685, 'https://ror.org/01zd7yk57', 'en', 1, 'https://ror.org/01zd7yk57 Louisville VA Medical Center'), (1686, 'https://ror.org/01zjsmf32', 'en', 1, 'https://ror.org/01zjsmf32 Government Rajaji Hospital'), (1687, 'https://ror.org/01zjvhn75', 'en', 1, 'https://ror.org/01zjvhn75 National Taiwan Sport University'), (1688, 'https://ror.org/01zkyz108', 'en', 1, 'https://ror.org/01zkyz108 Hospital Monte Sinaí Mount Sinai Hospital'), (1689, 'https://ror.org/01zmw6f28', 'it', 1, 'https://ror.org/01zmw6f28 Ospedale Santa Maria Annunziata'), (1690, 'https://ror.org/01znbfh26', 'fi', 1, 'https://ror.org/01znbfh26 Forssan Seudun Terveydenhuollon Kuntayhtymä'), (1691, 'https://ror.org/01zp13r18', 'en', 1, 'https://ror.org/01zp13r18 Research Medical Center'), (1692, 'https://ror.org/01zqccq48', 'en', 1, 'https://ror.org/01zqccq48 Daegu University 대구대학교'), (1693, 'https://ror.org/01zqcg218', 'en', 1, 'https://ror.org/01zqcg218 Kyung Hee University 경희대학교'), (1694, 'https://ror.org/01zqztb27', 'no_lang_code', 1, 'https://ror.org/01zqztb27 Caritas Medical Centre 明愛醫院'), (1695, 'https://ror.org/01zr6qe45', 'en', 1, 'https://ror.org/01zr6qe45 Colorado Center For Hospice and Palliative Care'), (1696, 'https://ror.org/01zt9a375', 'en', 1, 'https://ror.org/01zt9a375 Chosun University 조선대학교'), (1697, 'https://ror.org/01zvqw119', 'en', 1, 'https://ror.org/01zvqw119 Auckland University of Technology'), (1698, 'https://ror.org/01zx16v02', 'en', 1, 'https://ror.org/01zx16v02 Athens State University Université d''État d''athens'), (1699, 'https://ror.org/01zx5ww52', 'en', 1, 'https://ror.org/01zx5ww52 Inje University Ilsan Paik Hospital 인제 대학교 일산 백병원'), (1700, 'https://ror.org/01zxdeg39', 'en', 1, 'https://ror.org/01zxdeg39 Harvard Pilgrim Health Care'), (1701, 'https://ror.org/01zy11s57', 'en', 1, 'https://ror.org/01zy11s57 North Tyneside General Hospital'), (1702, 'https://ror.org/01zy69h55', 'en', 1, 'https://ror.org/01zy69h55 401 General Military Hospital of Athens 401 Γενικό Στρατιωτικό Νοσοκομείο Αθηνών'), (1703, 'https://ror.org/01zyevp23', 'en', 1, 'https://ror.org/01zyevp23 Musgrave Park Hospital'), (1704, 'https://ror.org/020268t49', 'de', 1, 'https://ror.org/020268t49 Papiertechnische Stiftung'), (1705, 'https://ror.org/0203evn05', 'en', 1, 'https://ror.org/0203evn05 Federation of American Hospitals'), (1706, 'https://ror.org/02049v059', 'hr', 1, 'https://ror.org/02049v059 Opća bolnica Karlovac'), (1707, 'https://ror.org/0204pdj19', 'en', 1, 'https://ror.org/0204pdj19 Institute For European Environmental Policy'), (1708, 'https://ror.org/0209dk158', 'en', 1, 'https://ror.org/0209dk158 Lowell Observatory'); INSERT INTO `rors` VALUES (1709, 'https://ror.org/020afzk37', 'no_lang_code', 1, 'https://ror.org/020afzk37 Mirus Bio (United States)'), (1710, 'https://ror.org/020b6jb08', 'en', 1, 'https://ror.org/020b6jb08 Canadian Mathematical Society'), (1711, 'https://ror.org/020cmsc29', 'en', 1, 'https://ror.org/020cmsc29 Rajendra Memorial Research Institute of Medical Sciences'), (1712, 'https://ror.org/020gwz349', 'no_lang_code', 1, 'https://ror.org/020gwz349 Herzog Hospital בית חולים הרצוג'), (1713, 'https://ror.org/020hchp05', 'en', 1, 'https://ror.org/020hchp05 Integrated Laboratory Systems, Inc.'), (1714, 'https://ror.org/020jbrt22', 'en', 1, 'https://ror.org/020jbrt22 Tbilisi State Medical University Թբիլիսիի պետական բժշկական համալսարան თბილისის სახელმწიფო სამედიცინო უნივერსიტეტი'), (1715, 'https://ror.org/020jkns84', 'en', 1, 'https://ror.org/020jkns84 Foundation University Medical College'), (1716, 'https://ror.org/020k76687', 'no_lang_code', 1, 'https://ror.org/020k76687 Autonomous Operator of Parisian Transports Régie Autonome des Transports Parisiens (France)'), (1717, 'https://ror.org/020k7fn51', 'no_lang_code', 1, 'https://ror.org/020k7fn51 Information Management Services'), (1718, 'https://ror.org/020m4km16', 'en', 1, 'https://ror.org/020m4km16 Bexar County Medical Examiner''s Office'), (1719, 'https://ror.org/020nckd56', 'pt', 1, 'https://ror.org/020nckd56 Instituto Superior de Ciências da Administração'), (1720, 'https://ror.org/020q46z35', 'en', 1, 'https://ror.org/020q46z35 University of Bangui Université de Bangui'), (1721, 'https://ror.org/020qgp237', 'no_lang_code', 1, 'https://ror.org/020qgp237 DuPont (Canada)'), (1722, 'https://ror.org/020rayx20', 'tr', 1, 'https://ror.org/020rayx20 Konya Eğitim ve Araştırma Hastanesi'), (1723, 'https://ror.org/020rmtx45', 'no_lang_code', 1, 'https://ror.org/020rmtx45 Envirogen (United States)'), (1724, 'https://ror.org/020rvjj03', 'en', 1, 'https://ror.org/020rvjj03 Satakunta Central Hospital'), (1725, 'https://ror.org/020rzx487', 'en', 1, 'https://ror.org/020rzx487 Sheba Medical Center'), (1726, 'https://ror.org/020sa1s57', 'en', 1, 'https://ror.org/020sa1s57 Aomori University of Health and Welfare 青森県立保健大学'), (1727, 'https://ror.org/020vmqv16', 'en', 1, 'https://ror.org/020vmqv16 Roosevelt University'), (1728, 'https://ror.org/020wf1g18', 'en', 1, 'https://ror.org/020wf1g18 Huron Hospital'), (1729, 'https://ror.org/0213f0637', 'it', 1, 'https://ror.org/0213f0637 Azienda Ospedaliero Universitaria Ospedali Riuniti'), (1730, 'https://ror.org/0217hb928', 'en', 1, 'https://ror.org/0217hb928 Middlebury College'), (1731, 'https://ror.org/02182hd81', 'pt', 1, 'https://ror.org/02182hd81 Escola do Serviço de Saúde Militar'), (1732, 'https://ror.org/021959v84', 'fr', 1, 'https://ror.org/021959v84 Hôpital Saint-André'), (1733, 'https://ror.org/0219djn76', 'en', 1, 'https://ror.org/0219djn76 Rush Children''s Hospital'), (1734, 'https://ror.org/0219m2k96', 'en', 1, 'https://ror.org/0219m2k96 Decision Research'), (1735, 'https://ror.org/0219xsk19', 'fr', 1, 'https://ror.org/0219xsk19 Hôpital Saint Joseph'), (1736, 'https://ror.org/021a7pw18', 'en', 1, 'https://ror.org/021a7pw18 New York City College of Technology'), (1737, 'https://ror.org/021aj5d10', 'en', 1, 'https://ror.org/021aj5d10 Dr. R. Ahmed Dental College and Hospital ডাঃ আর আহমেদ ডেন্টাল কলেজ ও হাসপাতাল'), (1738, 'https://ror.org/021bj7008', 'no_lang_code', 1, 'https://ror.org/021bj7008 Meitetsu Hospital 名鉄病院'), (1739, 'https://ror.org/021dmtc66', 'en', 1, 'https://ror.org/021dmtc66 Regional Hospital Horsens Regionshospitalet Horsens'), (1740, 'https://ror.org/021e5j056', 'en', 1, 'https://ror.org/021e5j056 Kuwait University جامعة الكويت'), (1741, 'https://ror.org/021jxzw96', 'it', 1, 'https://ror.org/021jxzw96 Azienda Ospedaliera S.Giuseppe Moscati'), (1742, 'https://ror.org/021kgjd57', 'en', 1, 'https://ror.org/021kgjd57 Long Beach Memorial Medical Center'), (1743, 'https://ror.org/021m54z79', 'no_lang_code', 1, 'https://ror.org/021m54z79 Takara (Japan) 宝ホールディングス株式会社'), (1744, 'https://ror.org/021nb2v44', 'en', 1, 'https://ror.org/021nb2v44 Medical College and Hospital, Kolkata कलकत्ता मेडिकल कॉलेज কলকাতা মেডিক্যাল কলেজ ও হাসপাতাল'), (1745, 'https://ror.org/021qvjc46', 'no_lang_code', 1, 'https://ror.org/021qvjc46 Physical Sciences (United States)'), (1746, 'https://ror.org/021rvrs67', 'ca', 1, 'https://ror.org/021rvrs67 Hospital Sant Pau i Santa Tecla'), (1747, 'https://ror.org/021wsw395', 'fr', 1, 'https://ror.org/021wsw395 Hôpital Fontmaure'), (1748, 'https://ror.org/021wvan87', 'no_lang_code', 1, 'https://ror.org/021wvan87 Qi2'), (1749, 'https://ror.org/021x6km63', 'en', 1, 'https://ror.org/021x6km63 Kirwan Health Campus'), (1750, 'https://ror.org/021zm6p18', 'en', 1, 'https://ror.org/021zm6p18 Norfolk and Norwich University Hospital'), (1751, 'https://ror.org/022261z88', 'en', 1, 'https://ror.org/022261z88 Evans Army Community Hospital'), (1752, 'https://ror.org/022296476', 'en', 1, 'https://ror.org/022296476 National Kyushu Medical Center 国立病院機構 九州医療センター'), (1753, 'https://ror.org/0222am037', 'it', 1, 'https://ror.org/0222am037 Ospedaliero Sirai'), (1754, 'https://ror.org/0222df516', 'en', 1, 'https://ror.org/0222df516 Probity Medical Research'), (1755, 'https://ror.org/0222p1e69', 'en', 1, 'https://ror.org/0222p1e69 Eugene Applebaum College of Pharmacy and Health Sciences'), (1756, 'https://ror.org/0223apb60', 'en', 1, 'https://ror.org/0223apb60 Mahatma Gandhi Memorial Medical College'), (1757, 'https://ror.org/0226env10', 'no_lang_code', 1, 'https://ror.org/0226env10 Sociometrics Corporation'), (1758, 'https://ror.org/0228w5t68', 'en', 1, 'https://ror.org/0228w5t68 KK Women''s and Children''s Hospital'), (1759, 'https://ror.org/0229c7854', 'en', 1, 'https://ror.org/0229c7854 Massachusetts Mental Health Center'), (1760, 'https://ror.org/022a11m05', 'no_lang_code', 1, 'https://ror.org/022a11m05 Iwaki Kyoritsu General Hospital いわき共立総合病院'), (1761, 'https://ror.org/022arq532', 'en', 1, 'https://ror.org/022arq532 Prince of Wales Hospital'), (1762, 'https://ror.org/022d5qt08', 'de', 1, 'https://ror.org/022d5qt08 Bundesforschungsinstitut für Kulturpflanzen, Julius Kühn-Institut Federal Research Centre for Cultivated Plants'), (1763, 'https://ror.org/022ekqa73', 'en', 1, 'https://ror.org/022ekqa73 National Animal Husbandry Service 全国畜牧总站'), (1764, 'https://ror.org/022em3k58', 'en', 1, 'https://ror.org/022em3k58 De Duve Instituut L''Institut de Duve de Duve Institute'), (1765, 'https://ror.org/022gnbj15', 'en', 1, 'https://ror.org/022gnbj15 Louisiana State University System'), (1766, 'https://ror.org/022h0tq76', 'en', 1, 'https://ror.org/022h0tq76 Kanagawa Children''s Medical Center 神奈川県立こども医療センター'), (1767, 'https://ror.org/022j3nr24', 'en', 1, 'https://ror.org/022j3nr24 Hospital central de Kamuzu Kamuzu Central Hospital'), (1768, 'https://ror.org/022jeg055', 'en', 1, 'https://ror.org/022jeg055 Dallas Diabetes Research Center'), (1769, 'https://ror.org/022k36x48', 'no_lang_code', 1, 'https://ror.org/022k36x48 Taylor Wimpey (United Kingdom)'), (1770, 'https://ror.org/022k8bt28', 'en', 1, 'https://ror.org/022k8bt28 Nishi Eye Hospital 西眼科病院'), (1771, 'https://ror.org/022mjvt30', 'en', 1, 'https://ror.org/022mjvt30 Japanese Red Cross Fukuoka Hospital 福岡赤十字病院'), (1772, 'https://ror.org/022mtcz62', 'en', 1, 'https://ror.org/022mtcz62 Melbourne Centre for Nanofabrication'), (1773, 'https://ror.org/022qy2d08', 'en', 1, 'https://ror.org/022qy2d08 Brenau University'), (1774, 'https://ror.org/022rkxt86', 'no_lang_code', 1, 'https://ror.org/022rkxt86 Trojan Technologies (Canada)'), (1775, 'https://ror.org/022swbj46', 'en', 1, 'https://ror.org/022swbj46 National Brain Research Centre राष्ट्रीय मस्तिष्क अनुसंधान केंद्र, मानेसर, हरियाणा'), (1776, 'https://ror.org/022v32y85', 'en', 1, 'https://ror.org/022v32y85 Andreas Sygros Hospital Ανδρέας Συγγρός Νοσοκομείο'), (1777, 'https://ror.org/022vd9g66', 'fr', 1, 'https://ror.org/022vd9g66 Hôpital Orthopédique de la Suisse Romande'), (1778, 'https://ror.org/022wqqf69', 'es', 1, 'https://ror.org/022wqqf69 Centre for Technical Research and Studies Centro de Estudios e Investigaciones Técnicas de Gipuzkoa'), (1779, 'https://ror.org/022xmez67', 'no_lang_code', 1, 'https://ror.org/022xmez67 Microbiotix (United States)'), (1780, 'https://ror.org/022yckc24', 'pt', 1, 'https://ror.org/022yckc24 Hospital Universitário Evangélico de Curitiba'), (1781, 'https://ror.org/022yvqh08', 'en', 1, 'https://ror.org/022yvqh08 University College Hospital, Ibadan'), (1782, 'https://ror.org/0230h1q47', 'en', 1, 'https://ror.org/0230h1q47 King Fahd Hospital of the University مستشفى جامعة الملك فيصل'), (1783, 'https://ror.org/0231d2y50', 'en', 1, 'https://ror.org/0231d2y50 Lenox Hill Hospital'), (1784, 'https://ror.org/0231m7n15', 'en', 1, 'https://ror.org/0231m7n15 Lake Regional Hospital'), (1785, 'https://ror.org/023733d09', 'es', 1, 'https://ror.org/023733d09 Hospital de l''Esperança'), (1786, 'https://ror.org/02378jc90', 'en', 1, 'https://ror.org/02378jc90 Raja Ramanna Centre for Advanced Technology राजा रामण्णा अत्याधुनिक तंत्रज्ञान केंद्र राजा रामन्ना प्रगत प्रौद्योगिकी केन्द्र രാജാ രാമണ്ണ സെന്റർ ഫോർ അഡ്വാൻസ്ഡ് ടെക്നോളജി'), (1787, 'https://ror.org/0238gtq84', 'en', 1, 'https://ror.org/0238gtq84 Rajavithi Hospital'), (1788, 'https://ror.org/0238gz740', 'en', 1, 'https://ror.org/0238gz740 Institute for Theoretical and Experimental Physics Институт теоретической и экспериментальной физики'), (1789, 'https://ror.org/023bq8521', 'en', 1, 'https://ror.org/023bq8521 Saint Petersburg State Electrotechnical University Санкт-Петербургский государственный электротехнический университет'), (1790, 'https://ror.org/023cara48', 'en', 1, 'https://ror.org/023cara48 Center for Epidemiology and Animal Health'), (1791, 'https://ror.org/023cbtv31', 'en', 1, 'https://ror.org/023cbtv31 Madrid Health Service Servicio Madrileño de Salud'), (1792, 'https://ror.org/023cpc062', 'no_lang_code', 1, 'https://ror.org/023cpc062 DNA Link (South Korea)'), (1793, 'https://ror.org/023dma244', 'en', 1, 'https://ror.org/023dma244 Colchester Hospital'), (1794, 'https://ror.org/023e6jq80', 'en', 1, 'https://ror.org/023e6jq80 Güven Hastanesi Güven Hospital'), (1795, 'https://ror.org/023fgmp71', 'en', 1, 'https://ror.org/023fgmp71 East Georgia State College'), (1796, 'https://ror.org/023gt0394', 'en', 1, 'https://ror.org/023gt0394 St Richard''s Hospital'), (1797, 'https://ror.org/023hj8v22', 'en', 1, 'https://ror.org/023hj8v22 Memorial Hospital'), (1798, 'https://ror.org/023kfg220', 'en', 1, 'https://ror.org/023kfg220 National Institute for Agro-Environmental Sciences 農業環境変動研究センター'), (1799, 'https://ror.org/023m35461', 'en', 1, 'https://ror.org/023m35461 Istanbul Bilim University İstanbul Bilim Üniversitesi'), (1800, 'https://ror.org/023pqj155', 'es', 1, 'https://ror.org/023pqj155 Hospital Santiago Apostol'), (1801, 'https://ror.org/023q4bk22', 'en', 1, 'https://ror.org/023q4bk22 Central Queensland University'), (1802, 'https://ror.org/023r6xh67', 'en', 1, 'https://ror.org/023r6xh67 Ignatius Hospital Sint Ignatiusziekenhuis'), (1803, 'https://ror.org/023wqmm33', 'en', 1, 'https://ror.org/023wqmm33 DeKalb Medical Center'), (1804, 'https://ror.org/023z51242', 'en', 1, 'https://ror.org/023z51242 Enterprise Ireland'), (1805, 'https://ror.org/023znxa73', 'en', 1, 'https://ror.org/023znxa73 St Petersburg University Санкт-Петербургский государственный университет'), (1806, 'https://ror.org/02405mj67', 'en', 1, 'https://ror.org/02405mj67 Belfast City Hospital'), (1807, 'https://ror.org/02408be69', 'en', 1, 'https://ror.org/02408be69 National Center of Hygiene Medical Ecology and Nutrition'), (1808, 'https://ror.org/0240cjw65', 'fr', 1, 'https://ror.org/0240cjw65 Polyclinique de Bordeaux-Tondu'), (1809, 'https://ror.org/0241b8f19', 'en', 1, 'https://ror.org/0241b8f19 Gomal University جامعہ گومل'), (1810, 'https://ror.org/0241gfe92', 'en', 1, 'https://ror.org/0241gfe92 University of Minnesota, Waseca'), (1811, 'https://ror.org/0242qs713', 'en', 1, 'https://ror.org/0242qs713 Birmingham VA Medical Center'), (1812, 'https://ror.org/02436cs38', 'no_lang_code', 1, 'https://ror.org/02436cs38 Unilever (Netherlands)'), (1813, 'https://ror.org/0243t3259', 'en', 1, 'https://ror.org/0243t3259 Militair Hospitaal Koningin Astrid Queen Astrid Military Hospital'), (1814, 'https://ror.org/0248gc218', 'en', 1, 'https://ror.org/0248gc218 Adler Planetarium'), (1815, 'https://ror.org/0249v7n71', 'en', 1, 'https://ror.org/0249v7n71 Institute for Computer Science and Control Magyar Tudományos Akadémia Számítástechnikai és Automatizálási Kutatóintézete'), (1816, 'https://ror.org/024amfv85', 'en', 1, 'https://ror.org/024amfv85 Federal Agency for Health and Social Development Федеральное агентство по здравоохранению и социальному развитию'), (1817, 'https://ror.org/024bsrp32', 'en', 1, 'https://ror.org/024bsrp32 Casa Colina Centers for Rehabilitation'), (1818, 'https://ror.org/024c2fq17', 'en', 1, 'https://ror.org/024c2fq17 Sharif University of Technology دانشگاه صنعتی شریف'), (1819, 'https://ror.org/024cn3w16', 'fr', 1, 'https://ror.org/024cn3w16 Centre Hospitalier Philippe Pinel'), (1820, 'https://ror.org/024daed65', 'no_lang_code', 1, 'https://ror.org/024daed65 Social and Scientific Systems (United States)'), (1821, 'https://ror.org/024esvk12', 'en', 1, 'https://ror.org/024esvk12 Saint Barnabas Medical Center'), (1822, 'https://ror.org/024eyyq66', 'en', 1, 'https://ror.org/024eyyq66 Armed Forces Hospital'), (1823, 'https://ror.org/024pgmp43', 'hu', 1, 'https://ror.org/024pgmp43 St. John''s Hospital Szent János Kórház'), (1824, 'https://ror.org/024q5j973', 'en', 1, 'https://ror.org/024q5j973 Hacettepe University Hospital'), (1825, 'https://ror.org/024ran220', 'en', 1, 'https://ror.org/024ran220 Kansai Rosai Hospital 関西ろうさい病院'), (1826, 'https://ror.org/024xs2z82', 'no_lang_code', 1, 'https://ror.org/024xs2z82 ArcelorMittal (France)'), (1827, 'https://ror.org/024xyyq03', 'en', 1, 'https://ror.org/024xyyq03 Nashville VA Medical Center'), (1828, 'https://ror.org/024yc3q36', 'en', 1, 'https://ror.org/024yc3q36 Tottori University 鳥取大学'), (1829, 'https://ror.org/024zq6d87', 'en', 1, 'https://ror.org/024zq6d87 Sisters of Mercy Health System'), (1830, 'https://ror.org/025020z88', 'en', 1, 'https://ror.org/025020z88 Hunan Cancer Hospital'), (1831, 'https://ror.org/0250jpt55', 'en', 1, 'https://ror.org/0250jpt55 Saurashtra University'), (1832, 'https://ror.org/0252jr437', 'no_lang_code', 1, 'https://ror.org/0252jr437 Starks Associates'), (1833, 'https://ror.org/02550n020', 'en', 1, 'https://ror.org/02550n020 European Synchrotron Radiation Facility'), (1834, 'https://ror.org/02558wk32', 'en', 1, 'https://ror.org/02558wk32 Islamic Azad University, Arak دانشگاه آزاد اسلامی واحد اراک'), (1835, 'https://ror.org/025714n80', 'es', 1, 'https://ror.org/025714n80 Hospital de Galdakao'), (1836, 'https://ror.org/025821s54', 'en', 1, 'https://ror.org/025821s54 University Hospital Coventry'), (1837, 'https://ror.org/0258b0610', 'en', 1, 'https://ror.org/0258b0610 Kansas Department of Health and Environment'), (1838, 'https://ror.org/0258h0g75', 'en', 1, 'https://ror.org/0258h0g75 Rajendra Institute of Medical Sciences'), (1839, 'https://ror.org/0259e4473', 'en', 1, 'https://ror.org/0259e4473 The Military General Hospital of Beijing PLA 中国人民解放军空军总医院'), (1840, 'https://ror.org/025bm0k33', 'no_lang_code', 1, 'https://ror.org/025bm0k33 Kawasaki Municipal Hospital 川崎市立川崎病院'), (1841, 'https://ror.org/025chrz76', 'en', 1, 'https://ror.org/025chrz76 Marshfield Clinic'), (1842, 'https://ror.org/025fyfd20', 'en', 1, 'https://ror.org/025fyfd20 Children''s Hospital of Zhejiang University'), (1843, 'https://ror.org/025h1m602', 'no_lang_code', 1, 'https://ror.org/025h1m602 Konkuk University 건국대학교'), (1844, 'https://ror.org/025kav035', 'en', 1, 'https://ror.org/025kav035 Ripon College'), (1845, 'https://ror.org/025kb2624', 'en', 1, 'https://ror.org/025kb2624 Ho Chi Minh City Medicine and Pharmacy University Trường Đại học Y Dược Thành phố Hồ Chí Minh Université de pharmacie et médecine d''hô-chi-minh-ville'), (1846, 'https://ror.org/025n13r50', 'en', 1, 'https://ror.org/025n13r50 Adelphi University'), (1847, 'https://ror.org/025nszc09', 'no_lang_code', 1, 'https://ror.org/025nszc09 Canadian Natural Resources'), (1848, 'https://ror.org/025ny1854', 'en', 1, 'https://ror.org/025ny1854 George Eliot Hospital'), (1849, 'https://ror.org/025q7sd17', 'es', 1, 'https://ror.org/025q7sd17 Hospital General Dr. Manuel Gea Gonzalez'), (1850, 'https://ror.org/025sdjb25', 'fr', 1, 'https://ror.org/025sdjb25 Centre Hospitalier et Universitaire de Brazzaville'), (1851, 'https://ror.org/025sthg37', 'en', 1, 'https://ror.org/025sthg37 Queen Elizabeth Central Hospital'), (1852, 'https://ror.org/025wfj672', 'en', 1, 'https://ror.org/025wfj672 MRC Unit the Gambia'), (1853, 'https://ror.org/025xmgt30', 'en', 1, 'https://ror.org/025xmgt30 Oregon Social Learning Center'), (1854, 'https://ror.org/025z8ah66', 'en', 1, 'https://ror.org/025z8ah66 Public Health Ontario Santé publique Ontario'), (1855, 'https://ror.org/0260bkf37', 'no_lang_code', 1, 'https://ror.org/0260bkf37 NuroRestore (United States)'), (1856, 'https://ror.org/0261g6j35', 'en', 1, 'https://ror.org/0261g6j35 Chaudhary Charan Singh Haryana Agricultural University चौधरी चरण सिंह हरियाणा कृषि विश्वविद्यालय சௌதரி சரண் சிங் அரியானா வேளாண்மை பல்கலைக்கழகம்'), (1857, 'https://ror.org/0262qgk29', 'en', 1, 'https://ror.org/0262qgk29 National Research Mordovia State University Мордовский государственный университет имени Н. П. Огарёва'), (1858, 'https://ror.org/026452768', 'no_lang_code', 1, 'https://ror.org/026452768 PTV Group (Germany)'), (1859, 'https://ror.org/026492508', 'en', 1, 'https://ror.org/026492508 Spalding University'), (1860, 'https://ror.org/0264d9934', 'en', 1, 'https://ror.org/0264d9934 Royal Aberdeen Children''s Hospital'), (1861, 'https://ror.org/0267zkr58', 'no_lang_code', 1, 'https://ror.org/0267zkr58 Safdarjang Hospital'), (1862, 'https://ror.org/0269fmf70', 'en', 1, 'https://ror.org/0269fmf70 St. Mary''s Hospital'), (1863, 'https://ror.org/026as0d42', 'es', 1, 'https://ror.org/026as0d42 Hospital Angeles Pedregal'), (1864, 'https://ror.org/026b7da27', 'en', 1, 'https://ror.org/026b7da27 Government Medical College'), (1865, 'https://ror.org/026dp0v66', 'en', 1, 'https://ror.org/026dp0v66 Union for International Cancer Control Union internationale contre le cancer'), (1866, 'https://ror.org/026dr4n55', 'en', 1, 'https://ror.org/026dr4n55 Federal Medical Centre'), (1867, 'https://ror.org/026e9yy16', 'en', 1, 'https://ror.org/026e9yy16 Affiliated Hospital of Qingdao University'), (1868, 'https://ror.org/026gtm069', 'en', 1, 'https://ror.org/026gtm069 Maryknoll Medical Center 메리놀병원'), (1869, 'https://ror.org/026mnhe80', 'en', 1, 'https://ror.org/026mnhe80 Chongqing Academy of Animal Science 重庆市畜牧科学院'), (1870, 'https://ror.org/026n33e29', 'en', 1, 'https://ror.org/026n33e29 Cohen Children''s Medical Center'), (1871, 'https://ror.org/026p6d134', 'en', 1, 'https://ror.org/026p6d134 Memorial Health University Medical Center'), (1872, 'https://ror.org/026qp7597', 'tr', 1, 'https://ror.org/026qp7597 Zekai Tahir Burak Kadın Sağlığı Eğitim ve Araştırma Hastanesi'), (1873, 'https://ror.org/026r1ac43', 'no_lang_code', 1, 'https://ror.org/026r1ac43 Fukuyama City Hospital 福山市民病院'), (1874, 'https://ror.org/026s99n34', 'en', 1, 'https://ror.org/026s99n34 West Virginia State Department of Health and Human Resources'), (1875, 'https://ror.org/026tktq31', 'en', 1, 'https://ror.org/026tktq31 Solapur University सोलापूर विद्यापीठ'), (1876, 'https://ror.org/026vvkz19', 'en', 1, 'https://ror.org/026vvkz19 National Interuniversity Consortium for the Physical Sciences of Matter'), (1877, 'https://ror.org/026xdcm93', 'en', 1, 'https://ror.org/026xdcm93 Royal Cornwall Hospital Trust'), (1878, 'https://ror.org/02722hp10', 'no_lang_code', 1, 'https://ror.org/02722hp10 Assaf Harofeh Medical Center'), (1879, 'https://ror.org/027487t94', 'en', 1, 'https://ror.org/027487t94 Aurora University'), (1880, 'https://ror.org/0277g6a74', 'en', 1, 'https://ror.org/0277g6a74 Douglass Hanly Moir Pathology'), (1881, 'https://ror.org/0277n1841', 'en', 1, 'https://ror.org/0277n1841 University of Tennessee Medical Center'), (1882, 'https://ror.org/027970q43', 'no_lang_code', 1, 'https://ror.org/027970q43 Emergent BioSolutions (United States)'), (1883, 'https://ror.org/02797hn66', 'en', 1, 'https://ror.org/02797hn66 Dr. Ram Manohar Lohia Avadh University डॉ राम मनोहर लोहिया अवध विश्वविद्यालय'), (1884, 'https://ror.org/027b0sp52', 'no_lang_code', 1, 'https://ror.org/027b0sp52 Kema International (Netherlands)'), (1885, 'https://ror.org/027dft319', 'en', 1, 'https://ror.org/027dft319 Bethesda Hospital East'), (1886, 'https://ror.org/027evcf19', 'tr', 1, 'https://ror.org/027evcf19 Özel Ortadoğu 19 Mayıs Hastanesi'), (1887, 'https://ror.org/027f9rb06', 'en', 1, 'https://ror.org/027f9rb06 Shimonoseki City Hospital 下関市立市民病院'), (1888, 'https://ror.org/027fvqp63', 'no_lang_code', 1, 'https://ror.org/027fvqp63 Emmes (United States)'), (1889, 'https://ror.org/027j9rp38', 'en', 1, 'https://ror.org/027j9rp38 Inje University Sanggye Paik Hospital'), (1890, 'https://ror.org/027mjht27', 'de', 1, 'https://ror.org/027mjht27 Institut Universitaire Kurt Bösch'), (1891, 'https://ror.org/027nene90', 'no_lang_code', 1, 'https://ror.org/027nene90 Sugiyama Jogakuen University 椙山女学園大学'), (1892, 'https://ror.org/027nk1z82', 'no_lang_code', 1, 'https://ror.org/027nk1z82 INRAD (United States)'), (1893, 'https://ror.org/027pqks09', 'no_lang_code', 1, 'https://ror.org/027pqks09 S&N (Germany)'), (1894, 'https://ror.org/027q9k466', 'en', 1, 'https://ror.org/027q9k466 Alexandra Hospital'), (1895, 'https://ror.org/027rkpb34', 'en', 1, 'https://ror.org/027rkpb34 Salford Royal Hospital'), (1896, 'https://ror.org/027rt1g28', 'no_lang_code', 1, 'https://ror.org/027rt1g28 Radiation Monitoring Devices (United States)'), (1897, 'https://ror.org/027ry4q41', 'en', 1, 'https://ror.org/027ry4q41 Miller Children''s & Women''s Hospital'), (1898, 'https://ror.org/027t58004', 'en', 1, 'https://ror.org/027t58004 Eastern Maine Medical Center'), (1899, 'https://ror.org/027tvqf96', 'no_lang_code', 1, 'https://ror.org/027tvqf96 CAS Software (Germany)'), (1900, 'https://ror.org/027v86y62', 'en', 1, 'https://ror.org/027v86y62 El Paso County Public Health'), (1901, 'https://ror.org/027wyhf03', 'hr', 1, 'https://ror.org/027wyhf03 Klinički Bolnički Centar Rijeka'), (1902, 'https://ror.org/027x3m696', 'en', 1, 'https://ror.org/027x3m696 Mother Teresa Hospital Qendra Spitalore Universitare Nene Tereza'), (1903, 'https://ror.org/027xnsa83', 'no_lang_code', 1, 'https://ror.org/027xnsa83 Prapokklao Hospital โรงพยาบาลพระปกเกล้า'), (1904, 'https://ror.org/027zf7h57', 'en', 1, 'https://ror.org/027zf7h57 Pusan National University Hospital'), (1905, 'https://ror.org/02827ca86', 'en', 1, 'https://ror.org/02827ca86 Prince of Wales Hospital'), (1906, 'https://ror.org/0282m7c06', 'no_lang_code', 1, 'https://ror.org/0282m7c06 University of Banja Luka Univerzitet u Banja Luci Универзитет у Бањој Луци'), (1907, 'https://ror.org/0282qcz50', 'en', 1, 'https://ror.org/0282qcz50 Children''s Hospital of Orange County'), (1908, 'https://ror.org/02834m470', 'en', 1, 'https://ror.org/02834m470 Chia Nan University of Pharmacy and Science'), (1909, 'https://ror.org/0283k4z65', 'en', 1, 'https://ror.org/0283k4z65 Anne Arundel Medical Center'), (1910, 'https://ror.org/02843s885', 'en', 1, 'https://ror.org/02843s885 Behavioral Tech Research, Inc.'), (1911, 'https://ror.org/0284e2q78', 'en', 1, 'https://ror.org/0284e2q78 American Red Cross Croix-rouge américaine Cruz Roja Americana'), (1912, 'https://ror.org/0284gmm72', 'fr', 1, 'https://ror.org/0284gmm72 Cité Internationale Universitaire de Paris'), (1913, 'https://ror.org/0285m5c69', 'nl', 1, 'https://ror.org/0285m5c69 De Wever-Ziekenhuis'), (1914, 'https://ror.org/0285prp25', 'en', 1, 'https://ror.org/0285prp25 NTT Medical Center NTT東日本関東病院'), (1915, 'https://ror.org/0286g6711', 'en', 1, 'https://ror.org/0286g6711 Shaoguan University 韶关学院'), (1916, 'https://ror.org/0287e5797', 'no_lang_code', 1, 'https://ror.org/0287e5797 Siemens (United Kingdom)'), (1917, 'https://ror.org/0287vk548', 'no_lang_code', 1, 'https://ror.org/0287vk548 Sequella (United States)'), (1918, 'https://ror.org/0288jxv49', 'en', 1, 'https://ror.org/0288jxv49 Institute of Development Studies'), (1919, 'https://ror.org/028d75n58', 'es', 1, 'https://ror.org/028d75n58 Hospital El Bierzo'), (1920, 'https://ror.org/028f19s63', 'en', 1, 'https://ror.org/028f19s63 Dairy Farmers Of Canada'), (1921, 'https://ror.org/028gzjv13', 'en', 1, 'https://ror.org/028gzjv13 Kaiser Permanente Center for Health Research'), (1922, 'https://ror.org/028hv5492', 'en', 1, 'https://ror.org/028hv5492 University Hospital Leipzig Universitätsklinikum Leipzig'), (1923, 'https://ror.org/028jc0449', 'en', 1, 'https://ror.org/028jc0449 Austrian Research Promotion Agency Österreichische Forschungsförderungsgesellschaft'), (1924, 'https://ror.org/028jh2126', 'en', 1, 'https://ror.org/028jh2126 Al al-Bayt University جامعة آل البيت'), (1925, 'https://ror.org/028jmfg90', 'it', 1, 'https://ror.org/028jmfg90 Ospedale Koelliker'), (1926, 'https://ror.org/028jrgj19', 'en', 1, 'https://ror.org/028jrgj19 Multnomah County Health Department'), (1927, 'https://ror.org/028nq5192', 'en', 1, 'https://ror.org/028nq5192 Affiliated Hospital of Jiangxi College of TCM 江西中医学院附属医院'), (1928, 'https://ror.org/028rvnd71', 'en', 1, 'https://ror.org/028rvnd71 Temple University Hospital'), (1929, 'https://ror.org/028sv9734', 'no_lang_code', 1, 'https://ror.org/028sv9734 PotashCorp (Canada)'), (1930, 'https://ror.org/028v4fg64', 'no_lang_code', 1, 'https://ror.org/028v4fg64 Vattenfall (Sweden)'), (1931, 'https://ror.org/028vv3s82', 'en', 1, 'https://ror.org/028vv3s82 East Surrey Hospital'), (1932, 'https://ror.org/028vxwa22', 'en', 1, 'https://ror.org/028vxwa22 Kyoto Prefectural University of Medicine 京都府立医科大学'), (1933, 'https://ror.org/028xtgx62', 'en', 1, 'https://ror.org/028xtgx62 Albert Schweitzer Hospital Hôpital albert-schweitzer'), (1934, 'https://ror.org/02917wp91', 'en', 1, 'https://ror.org/02917wp91 Hospital of the University of Pennsylvania'), (1935, 'https://ror.org/0291hsm26', 'en', 1, 'https://ror.org/0291hsm26 Asahikawa City Hospital 市立旭川病院'), (1936, 'https://ror.org/0292hc709', 'en', 1, 'https://ror.org/0292hc709 University of Santo Tomas Hospital'), (1937, 'https://ror.org/0293qmt12', 'en', 1, 'https://ror.org/0293qmt12 NC Department of Health and Human Services'), (1938, 'https://ror.org/02944xg79', 'en', 1, 'https://ror.org/02944xg79 Laconia Women''s Health Center'), (1939, 'https://ror.org/02952et24', 'en', 1, 'https://ror.org/02952et24 St. Barnabas Hospital'), (1940, 'https://ror.org/0296jvb66', 'no_lang_code', 1, 'https://ror.org/0296jvb66 WNET (United States)'), (1941, 'https://ror.org/0299dqs22', 'en', 1, 'https://ror.org/0299dqs22 JA Toride Medical Center JAとりで総合医療センター'), (1942, 'https://ror.org/0299ptp31', 'en', 1, 'https://ror.org/0299ptp31 Kaiser Permanente San Rafael Medical Center'), (1943, 'https://ror.org/029bp0k25', 'en', 1, 'https://ror.org/029bp0k25 University of Central Arkansas'), (1944, 'https://ror.org/029cz3039', 'en', 1, 'https://ror.org/029cz3039 Kijabe Hospital'), (1945, 'https://ror.org/029dttz57', 'en', 1, 'https://ror.org/029dttz57 Resurrection Medical Center'), (1946, 'https://ror.org/029es6637', 'en', 1, 'https://ror.org/029es6637 Alaska Native Tribal Health Consortium'), (1947, 'https://ror.org/029f8s748', 'en', 1, 'https://ror.org/029f8s748 Canadian Science Centre for Human and Animal Health'), (1948, 'https://ror.org/029gksw03', 'en', 1, 'https://ror.org/029gksw03 Semnan University دانشگاه سمنان'), (1949, 'https://ror.org/029gprt07', 'en', 1, 'https://ror.org/029gprt07 Dunedin Public Hospital'), (1950, 'https://ror.org/029gr6k74', 'en', 1, 'https://ror.org/029gr6k74 Medical Society of Delaware'), (1951, 'https://ror.org/029hept94', 'en', 1, 'https://ror.org/029hept94 Alexandra Hospital'), (1952, 'https://ror.org/029hzjx43', 'en', 1, 'https://ror.org/029hzjx43 Rappaport Family Institute for Research in the Medical Sciences'), (1953, 'https://ror.org/029jj9438', 'en', 1, 'https://ror.org/029jj9438 Troy University'), (1954, 'https://ror.org/029njb796', 'en', 1, 'https://ror.org/029njb796 Perm State University Пермский государственный университет'), (1955, 'https://ror.org/029nzwk08', 'en', 1, 'https://ror.org/029nzwk08 Levanger Hospital Sykehuset Levanger'), (1956, 'https://ror.org/029rx2040', 'en', 1, 'https://ror.org/029rx2040 Federal Medical Centre'), (1957, 'https://ror.org/029s9j634', 'en', 1, 'https://ror.org/029s9j634 Cairns Hospital'), (1958, 'https://ror.org/029t2gr02', 'no_lang_code', 1, 'https://ror.org/029t2gr02 Xenon Pharmaceuticals (Canada)'), (1959, 'https://ror.org/029tkqm80', 'en', 1, 'https://ror.org/029tkqm80 St. Vincent''s University Hospital'), (1960, 'https://ror.org/029tn5b56', 'en', 1, 'https://ror.org/029tn5b56 Regina General Hospital'), (1961, 'https://ror.org/029wb5j17', 'en', 1, 'https://ror.org/029wb5j17 Our Lady of the Lake University'), (1962, 'https://ror.org/029wq9x81', 'en', 1, 'https://ror.org/029wq9x81 Sichuan Cancer Hospital 四川省肿瘤研究所'), (1963, 'https://ror.org/029x6kq07', 'en', 1, 'https://ror.org/029x6kq07 Regina Qu''Appelle Health Region'), (1964, 'https://ror.org/02a1et264', 'en', 1, 'https://ror.org/02a1et264 Blackburn College'), (1965, 'https://ror.org/02a2vbq68', 'en', 1, 'https://ror.org/02a2vbq68 Nagoya Memorial Hospital 名古屋記念病院'), (1966, 'https://ror.org/02a37xs76', 'en', 1, 'https://ror.org/02a37xs76 Health Services Academy'), (1967, 'https://ror.org/02a5q3y73', 'es', 1, 'https://ror.org/02a5q3y73 Hospital Universitario HM Madrid'), (1968, 'https://ror.org/02a6g3h39', 'en', 1, 'https://ror.org/02a6g3h39 Hawler Medical University جامعة هولير الطبية'), (1969, 'https://ror.org/02a7yfb86', 'pt', 1, 'https://ror.org/02a7yfb86 Pontifícia Universidade Católica de Goiás Université pontificale catholique de goiás'), (1970, 'https://ror.org/02aa8kj12', 'en', 1, 'https://ror.org/02aa8kj12 The People''s Hospital of Guangxi Zhuang Autonomous Region 广西壮族自治区人民医院'), (1971, 'https://ror.org/02ab2dg68', 'en', 1, 'https://ror.org/02ab2dg68 Singleton Hospital Ysbyty Singleton'), (1972, 'https://ror.org/02adcah05', 'no_lang_code', 1, 'https://ror.org/02adcah05 Doty Scientific (United States)'), (1973, 'https://ror.org/02adg5v98', 'en', 1, 'https://ror.org/02adg5v98 Nagoya City University Hospital 名古屋市立大学病院'), (1974, 'https://ror.org/02aea0q64', 'pt', 1, 'https://ror.org/02aea0q64 IADE Superior de Marketing e Publicidade'), (1975, 'https://ror.org/02af4h012', 'en', 1, 'https://ror.org/02af4h012 Jadavpur University Université jadavpur यादवपुर विश्वविद्यालय যাদবপুর বিশ্ববিদ্যালয় ਜਾਦਵਪੁਰ ਯੂਨੀਵਰਸਿਟੀ જાદવપુર યુનિવર્સિટી జాదవ్ పూర్ విశ్వవిద్యాలయం ಜಾದವ್ ಪುರ ವಿಶ್ವವಿದ್ಯಾಲಯ'), (1976, 'https://ror.org/02afbf040', 'en', 1, 'https://ror.org/02afbf040 Karachi Medical and Dental College'), (1977, 'https://ror.org/02ahxbh87', 'en', 1, 'https://ror.org/02ahxbh87 Biomedical Primate Research Centre'), (1978, 'https://ror.org/02ajrkx50', 'en', 1, 'https://ror.org/02ajrkx50 St. Luke''s Hospital'), (1979, 'https://ror.org/02aknh966', 'en', 1, 'https://ror.org/02aknh966 Emory University Hospital Midtown'), (1980, 'https://ror.org/02amggm23', 'en', 1, 'https://ror.org/02amggm23 Trimbos Institute Trimbos instituut'), (1981, 'https://ror.org/02ap76n24', 'en', 1, 'https://ror.org/02ap76n24 Egyptian Universities Network شبكة الجامعات المصرية'), (1982, 'https://ror.org/02as1sh25', 'no_lang_code', 1, 'https://ror.org/02as1sh25 Dassault Aviation (France)'), (1983, 'https://ror.org/02aseym49', 'en', 1, 'https://ror.org/02aseym49 Australian Centre for Disease Preparedness'), (1984, 'https://ror.org/02atdvd89', 'en', 1, 'https://ror.org/02atdvd89 Sarasota Memorial Hospital'), (1985, 'https://ror.org/02atpex25', 'es', 1, 'https://ror.org/02atpex25 Hospital Rio Carrion'), (1986, 'https://ror.org/02ax13658', 'no_lang_code', 1, 'https://ror.org/02ax13658 Barkatullah University'), (1987, 'https://ror.org/02azxx136', 'en', 1, 'https://ror.org/02azxx136 University of Health Sciences Vientiane ມະຫາວິທະຍາໄລ ວິທະຍາສາດ ສຸຂະພາບ'), (1988, 'https://ror.org/02b48z609', 'en', 1, 'https://ror.org/02b48z609 University Cancer Center Hamburg Universitäres Cancer Center Hamburg'), (1989, 'https://ror.org/02b50zn53', 'en', 1, 'https://ror.org/02b50zn53 Université de wilberforce Wilberforce University'), (1990, 'https://ror.org/02b68mf79', 'it', 1, 'https://ror.org/02b68mf79 Ospedale Santa Maria'), (1991, 'https://ror.org/02b72da46', 'en', 1, 'https://ror.org/02b72da46 Abbasi Shaheed Hospital عباسی شهيد ہسپتال'), (1992, 'https://ror.org/02b730m35', 'pt', 1, 'https://ror.org/02b730m35 Instituto Superior de Ciências da Informação e da Administração'), (1993, 'https://ror.org/02b8m7s43', 'en', 1, 'https://ror.org/02b8m7s43 American Anthropological Association'), (1994, 'https://ror.org/02bcf5b42', 'no_lang_code', 1, 'https://ror.org/02bcf5b42 Foxconn (Japan)'), (1995, 'https://ror.org/02beve479', 'en', 1, 'https://ror.org/02beve479 La Salle University Universidad de la Salle Université la Salle'), (1996, 'https://ror.org/02bfqd210', 'en', 1, 'https://ror.org/02bfqd210 Regions Hospital'), (1997, 'https://ror.org/02bg8cb41', 'en', 1, 'https://ror.org/02bg8cb41 Alaska Native Medical Center'), (1998, 'https://ror.org/02bhk3j29', 'es', 1, 'https://ror.org/02bhk3j29 Hospital Virgen de la Concha'), (1999, 'https://ror.org/02bn0ev09', 'en', 1, 'https://ror.org/02bn0ev09 River Oaks Hospital'), (2000, 'https://ror.org/02bn97g32', 'en', 1, 'https://ror.org/02bn97g32 National Defense Medical Center'), (2001, 'https://ror.org/02bnz8785', 'en', 1, 'https://ror.org/02bnz8785 First Affiliated Hospital of Shantou University Medical College 汕头大学医学院第一附属医院'), (2002, 'https://ror.org/02bqrry13', 'en', 1, 'https://ror.org/02bqrry13 Jerry L. Pettis Memorial VA Medical Center'), (2003, 'https://ror.org/02bs0cv29', 'en', 1, 'https://ror.org/02bs0cv29 Oklahoma City University'), (2004, 'https://ror.org/02bste653', 'it', 1, 'https://ror.org/02bste653 Ospedale “M. Bufalini” di Cesena'), (2005, 'https://ror.org/02bwjrg36', 'en', 1, 'https://ror.org/02bwjrg36 Academia Nacional Superior de Orquestra'), (2006, 'https://ror.org/02bxrp522', 'en', 1, 'https://ror.org/02bxrp522 Knoxville College'), (2007, 'https://ror.org/02byvdx91', 'en', 1, 'https://ror.org/02byvdx91 Kobe Rosai Hospital 神戸労災病院'), (2008, 'https://ror.org/02byvsq24', 'en', 1, 'https://ror.org/02byvsq24 Community Regional Medical Center'), (2009, 'https://ror.org/02bz74262', 'no_lang_code', 1, 'https://ror.org/02bz74262 Hiram College'), (2010, 'https://ror.org/02bz7vk34', 'en', 1, 'https://ror.org/02bz7vk34 Kaiser Permanente Redwood City Medical Center'), (2011, 'https://ror.org/02bzkv281', 'en', 1, 'https://ror.org/02bzkv281 Chengde Medical University 承德医学院'), (2012, 'https://ror.org/02c1c4p76', 'en', 1, 'https://ror.org/02c1c4p76 Magee Rehabilitation Hospital'), (2013, 'https://ror.org/02c1pgm26', 'en', 1, 'https://ror.org/02c1pgm26 Royal Inland Hospital'), (2014, 'https://ror.org/02c2f8975', 'en', 1, 'https://ror.org/02c2f8975 University of Ulsan 울산대학교'), (2015, 'https://ror.org/02c8hpe74', 'en', 1, 'https://ror.org/02c8hpe74 James J. Peters VA Medical Center'), (2016, 'https://ror.org/02c8npj93', 'en', 1, 'https://ror.org/02c8npj93 General-Maternity District Hospital Helena Venizelou Περιφερειακό Γενικό Νοσοκομείο - Μαιευτήριο - "ΕΛΕΝΑ ΒΕΝΙΖΕΛΟΥ"'), (2017, 'https://ror.org/02c97ng92', 'no_lang_code', 1, 'https://ror.org/02c97ng92 ArcelorMittal (Canada)'), (2018, 'https://ror.org/02caez234', 'en', 1, 'https://ror.org/02caez234 Fuzhou Dermatosis Prevention Hospital 福州市皮肤病防治院'), (2019, 'https://ror.org/02cbk9w51', 'es', 1, 'https://ror.org/02cbk9w51 Hospital Nacional Dos de Mayo'), (2020, 'https://ror.org/02cc58y38', 'fr', 1, 'https://ror.org/02cc58y38 Hôpital Debrousse'), (2021, 'https://ror.org/02ccwf677', 'no_lang_code', 1, 'https://ror.org/02ccwf677 Proportional Technologies'), (2022, 'https://ror.org/02cetwy62', 'en', 1, 'https://ror.org/02cetwy62 Prince Charles Hospital'), (2023, 'https://ror.org/02cevbn07', 'en', 1, 'https://ror.org/02cevbn07 Mississippi State Medical Association'), (2024, 'https://ror.org/02cg59151', 'pt', 1, 'https://ror.org/02cg59151 Hospital Pulido Valente'), (2025, 'https://ror.org/02cjhb354', 'it', 1, 'https://ror.org/02cjhb354 Azienda Ospedaliera Santa Maria Degli Angeli'), (2026, 'https://ror.org/02ckh3s34', 'da', 1, 'https://ror.org/02ckh3s34 Herning Regional Hospital Regionshospitalet Herning'), (2027, 'https://ror.org/02cm2rk35', 'en', 1, 'https://ror.org/02cm2rk35 Raritan Bay Medical Center'), (2028, 'https://ror.org/02cpwdj94', 'en', 1, 'https://ror.org/02cpwdj94 Kerala Institute of Medical Sciences'), (2029, 'https://ror.org/02cpzy455', 'en', 1, 'https://ror.org/02cpzy455 424 General Military Hospital 424 Γενικό Στρατιωτικό Νοσοκομείο Θεσσαλονίκης'), (2030, 'https://ror.org/02cq7de70', 'en', 1, 'https://ror.org/02cq7de70 Counties Manukau District Health Board'), (2031, 'https://ror.org/02cqgeg62', 'no_lang_code', 1, 'https://ror.org/02cqgeg62 INRA Transfert (France)'), (2032, 'https://ror.org/02cqyyd50', 'en', 1, 'https://ror.org/02cqyyd50 Nottingham General Hospital'), (2033, 'https://ror.org/02crz6e12', 'en', 1, 'https://ror.org/02crz6e12 Singapore Eye Research Institute'), (2034, 'https://ror.org/02csf4f34', 'en', 1, 'https://ror.org/02csf4f34 Busan Medical Center 부산의료원'), (2035, 'https://ror.org/02ct12k14', 'no_lang_code', 1, 'https://ror.org/02ct12k14 Network Rail'), (2036, 'https://ror.org/02ct41q97', 'en', 1, 'https://ror.org/02ct41q97 John Brown University'), (2037, 'https://ror.org/02cv4ah81', 'en', 1, 'https://ror.org/02cv4ah81 Ishikawa Prefectural Central Hospital 石川県立中央病院'), (2038, 'https://ror.org/02cy9a842', 'en', 1, 'https://ror.org/02cy9a842 Carmel Medical Center'), (2039, 'https://ror.org/02d07gm56', 'en', 1, 'https://ror.org/02d07gm56 SUNY Korea 한국뉴욕주립대학교'), (2040, 'https://ror.org/02d09a271', 'pt', 1, 'https://ror.org/02d09a271 Positive University Universidade Positivo'), (2041, 'https://ror.org/02d0kps43', 'de', 1, 'https://ror.org/02d0kps43 UMIT - Private Universität für Gesundheitswissenschaften, Medizinische Informatik und Technik'), (2042, 'https://ror.org/02d0tyt78', 'en', 1, 'https://ror.org/02d0tyt78 Silpakorn University มหาวิทยาลัยศิลปากร'), (2043, 'https://ror.org/02d1ved90', 'tr', 1, 'https://ror.org/02d1ved90 Dokuz Eylül Üniversitesi Hastanesi'), (2044, 'https://ror.org/02d3bpj67', 'no_lang_code', 1, 'https://ror.org/02d3bpj67 Medical Physics Consultants'), (2045, 'https://ror.org/02d3k5845', 'en', 1, 'https://ror.org/02d3k5845 St Francis Medical Center'), (2046, 'https://ror.org/02d439m40', 'en', 1, 'https://ror.org/02d439m40 University Mental Health Research Institute'), (2047, 'https://ror.org/02d57ed54', 'en', 1, 'https://ror.org/02d57ed54 Sarojini Naidu Medical College सरोजिनी नायडू चिकित्सा महाविद्यालय'), (2048, 'https://ror.org/02d71t021', 'it', 1, 'https://ror.org/02d71t021 Consorzio Milano Ricerche'), (2049, 'https://ror.org/02d9k9g58', 'en', 1, 'https://ror.org/02d9k9g58 University of South Carolina Aiken'), (2050, 'https://ror.org/02dc47z81', 'pt', 1, 'https://ror.org/02dc47z81 Hospital São Teotónio'), (2051, 'https://ror.org/02dcp1550', 'en', 1, 'https://ror.org/02dcp1550 Central Texas Veterans Health Care System'), (2052, 'https://ror.org/02df8t483', 'no_lang_code', 1, 'https://ror.org/02df8t483 Bridgepoint (United Kingdom)'), (2053, 'https://ror.org/02dgbcj80', 'en', 1, 'https://ror.org/02dgbcj80 Southwest Baptist University'), (2054, 'https://ror.org/02dgmb809', 'no_lang_code', 1, 'https://ror.org/02dgmb809 Numerical Mechanics Applications International (Belgium)'), (2055, 'https://ror.org/02dktng58', 'en', 1, 'https://ror.org/02dktng58 Institute for Scientific Analysis'), (2056, 'https://ror.org/02dmc4h32', 'en', 1, 'https://ror.org/02dmc4h32 Providence St. Vincent Medical Center'), (2057, 'https://ror.org/02dpa2319', 'en', 1, 'https://ror.org/02dpa2319 Cornwall Regional Hospital'), (2058, 'https://ror.org/02dqqj223', 'en', 1, 'https://ror.org/02dqqj223 East Kent Hospitals University NHS Foundation Trust'), (2059, 'https://ror.org/02dr19631', 'en', 1, 'https://ror.org/02dr19631 Medical Radiological Research Center Медицинский радиологический научный центр'), (2060, 'https://ror.org/02dvs1389', 'en', 1, 'https://ror.org/02dvs1389 Laiko General Hospital of Athens'), (2061, 'https://ror.org/02e0bfh77', 'no_lang_code', 1, 'https://ror.org/02e0bfh77 Bio Chem Analysis Corporation (United States)'), (2062, 'https://ror.org/02e16g702', 'en', 1, 'https://ror.org/02e16g702 Hokkaido University 北海道大学'), (2063, 'https://ror.org/02e1cpg76', 'en', 1, 'https://ror.org/02e1cpg76 Hauptman-Woodward Medical Research Institute'), (2064, 'https://ror.org/02e1t6r96', 'en', 1, 'https://ror.org/02e1t6r96 Maryland Department of Health'), (2065, 'https://ror.org/02e22bh87', 'en', 1, 'https://ror.org/02e22bh87 Western Infirmary'), (2066, 'https://ror.org/02e2dtd78', 'en', 1, 'https://ror.org/02e2dtd78 Calcutta National Medical College and Hospital কলিকাতা জাতীয় আয়ুর্বিজ্ঞান বিদ্যামন্দির జాతీయ వైద్య కళాశాల'), (2067, 'https://ror.org/02e3mzq40', 'en', 1, 'https://ror.org/02e3mzq40 Middlesex London Health Unit'), (2068, 'https://ror.org/02e5pan03', 'en', 1, 'https://ror.org/02e5pan03 Charlton Memorial Hospital'), (2069, 'https://ror.org/02e8hzf44', 'en', 1, 'https://ror.org/02e8hzf44 Helsinki University Hospital'), (2070, 'https://ror.org/02e9zc863', 'en', 1, 'https://ror.org/02e9zc863 Kwangwoon University 광운대학교'), (2071, 'https://ror.org/02eb0rk31', 'en', 1, 'https://ror.org/02eb0rk31 Association for the Advancement of Artificial Intelligence'), (2072, 'https://ror.org/02egdz393', 'en', 1, 'https://ror.org/02egdz393 Rocky Mountain University of Health Professions'), (2073, 'https://ror.org/02ejsvn42', 'en', 1, 'https://ror.org/02ejsvn42 Comité Européen de Normalisation European Committee for Standardization'), (2074, 'https://ror.org/02emy8e21', 'en', 1, 'https://ror.org/02emy8e21 Kings County Hospital Center'), (2075, 'https://ror.org/02eqchk86', 'en', 1, 'https://ror.org/02eqchk86 Daejeon University 대전대학교'), (2076, 'https://ror.org/02erhaz63', 'en', 1, 'https://ror.org/02erhaz63 Lanzhou University Second Hospital'), (2077, 'https://ror.org/02etexs15', 'en', 1, 'https://ror.org/02etexs15 Children''s Hospital of New Orleans'), (2078, 'https://ror.org/02evem426', 'pt', 1, 'https://ror.org/02evem426 Escola Superior de Enfermagem de Santa Maria'), (2079, 'https://ror.org/02ew45630', 'en', 1, 'https://ror.org/02ew45630 Apollo Hospitals'), (2080, 'https://ror.org/02eyff421', 'en', 1, 'https://ror.org/02eyff421 Ministry of Health'), (2081, 'https://ror.org/02eypkr92', 'en', 1, 'https://ror.org/02eypkr92 Northwest Hospital and Medical Center'), (2082, 'https://ror.org/02f2vsx71', 'no_lang_code', 1, 'https://ror.org/02f2vsx71 Hungkuang University'), (2083, 'https://ror.org/02f30ff69', 'es', 1, 'https://ror.org/02f30ff69 Hospital General Universitario de Ciudad Real'), (2084, 'https://ror.org/02f38b560', 'pt', 1, 'https://ror.org/02f38b560 Hospital São Rafael'), (2085, 'https://ror.org/02f3b8e29', 'en', 1, 'https://ror.org/02f3b8e29 Alexandra Hospital 亚历山大医院'), (2086, 'https://ror.org/02f4tsf92', 'en', 1, 'https://ror.org/02f4tsf92 MRC Centre for Reproductive Health'), (2087, 'https://ror.org/02f6ghw27', 'fr', 1, 'https://ror.org/02f6ghw27 Hôpital Charles-Nicolle'), (2088, 'https://ror.org/02f9avj37', 'en', 1, 'https://ror.org/02f9avj37 Hanyang University Guri Hospital 한양대학교구리병원'), (2089, 'https://ror.org/02f9det96', 'en', 1, 'https://ror.org/02f9det96 University of Hildesheim Universität Hildesheim'), (2090, 'https://ror.org/02fjqfr36', 'en', 1, 'https://ror.org/02fjqfr36 Wildlife Conservation Society Indonesia'), (2091, 'https://ror.org/02fjy3w42', 'en', 1, 'https://ror.org/02fjy3w42 Ivanovo State University of Chemistry and Technology Ивановский государственный химико-технологический университет'), (2092, 'https://ror.org/02fkdpc07', 'fi', 1, 'https://ror.org/02fkdpc07 Kanta-Hämeen Keskussairaala'), (2093, 'https://ror.org/02fmkev06', 'en', 1, 'https://ror.org/02fmkev06 Building Research Establishment'), (2094, 'https://ror.org/02fnpv153', 'en', 1, 'https://ror.org/02fnpv153 American Association For Cancer Research'), (2095, 'https://ror.org/02fppms28', 'en', 1, 'https://ror.org/02fppms28 Missouri Department of Mental Health'), (2096, 'https://ror.org/02fsmcz03', 'en', 1, 'https://ror.org/02fsmcz03 First Teaching Hospital of Tianjin University of Traditional Chinese Medicine 中国传统医药的天津大学第一附属医院'), (2097, 'https://ror.org/02fsxgh46', 'fr', 1, 'https://ror.org/02fsxgh46 Hôpital l''Archet'), (2098, 'https://ror.org/02fv78a45', 'en', 1, 'https://ror.org/02fv78a45 Mother Teresa Women''s University அன்னை தெரசா மகளிர் பல்கலைக்கழகம்'), (2099, 'https://ror.org/02fv7x872', 'en', 1, 'https://ror.org/02fv7x872 Deenanath Mangeshkar Hospital and Research Center दीनानाथ मंगेशकर रुग्णालय'), (2100, 'https://ror.org/02fv8hj62', 'es', 1, 'https://ror.org/02fv8hj62 Tecnalia'), (2101, 'https://ror.org/02fvvnh95', 'en', 1, 'https://ror.org/02fvvnh95 Spenshult Hospital'), (2102, 'https://ror.org/02fw4cc98', 'en', 1, 'https://ror.org/02fw4cc98 Canadian Agency for Drugs and Technologies in Health'), (2103, 'https://ror.org/02fw9q305', 'en', 1, 'https://ror.org/02fw9q305 Norwich University of the Arts'), (2104, 'https://ror.org/02fwb6r86', 'no_lang_code', 1, 'https://ror.org/02fwb6r86 Intelligent Automation (United States)'), (2105, 'https://ror.org/02fxsj090', 'en', 1, 'https://ror.org/02fxsj090 Kaiser Permanente San Francisco Medical Center'), (2106, 'https://ror.org/02fyxjb45', 'en', 1, 'https://ror.org/02fyxjb45 Sri Krishnadevaraya University శ్రీ కృష్ణదేవరాయ విశ్వవిద్యాలయము'), (2107, 'https://ror.org/02fze0e77', 'en', 1, 'https://ror.org/02fze0e77 Star General Hospital 星総合病院'), (2108, 'https://ror.org/02fzxed89', 'en', 1, 'https://ror.org/02fzxed89 American Statistical Association'), (2109, 'https://ror.org/02g01ht84', 'en', 1, 'https://ror.org/02g01ht84 First Affiliated Hospital of Kunming Medical University'), (2110, 'https://ror.org/02g02rq35', 'en', 1, 'https://ror.org/02g02rq35 Centers for Medicare and Medicaid Services'), (2111, 'https://ror.org/02g1bg244', 'en', 1, 'https://ror.org/02g1bg244 Cheongju St. Mary''s Hospital 청주 성모 병원'), (2112, 'https://ror.org/02g2pz956', 'en', 1, 'https://ror.org/02g2pz956 Amager Hospital'), (2113, 'https://ror.org/02g397b52', 'en', 1, 'https://ror.org/02g397b52 Shriners Hospitals for Children - Boston'), (2114, 'https://ror.org/02g48bh60', 'en', 1, 'https://ror.org/02g48bh60 Chris Hani Baragwanath Hospital'), (2115, 'https://ror.org/02g6d4t03', 'de', 1, 'https://ror.org/02g6d4t03 Gesellschaft Fur Mathematik Und Datenverarbeitung'), (2116, 'https://ror.org/02g8ene02', 'en', 1, 'https://ror.org/02g8ene02 Federal Medical Centre'), (2117, 'https://ror.org/02gaqn537', 'en', 1, 'https://ror.org/02gaqn537 Royal Cornhill Hospital'), (2118, 'https://ror.org/02gar4w80', 'en', 1, 'https://ror.org/02gar4w80 University Library in Bratislava Univerzitná knižnica v Bratislave'), (2119, 'https://ror.org/02gcp3110', 'en', 1, 'https://ror.org/02gcp3110 Charing Cross Hospital'), (2120, 'https://ror.org/02ge60j37', 'en', 1, 'https://ror.org/02ge60j37 Scott & White Memorial Hospital'), (2121, 'https://ror.org/02gen2282', 'pt', 1, 'https://ror.org/02gen2282 Federal University from Jequitinhonha and Mucuri''s Valleys Universidade Federal dos Vales do Jequitinhonha e Mucuri'); INSERT INTO `rors` VALUES (2122, 'https://ror.org/02gj19t78', 'en', 1, 'https://ror.org/02gj19t78 Humber River Regional Hospital'), (2123, 'https://ror.org/02gj58768', 'en', 1, 'https://ror.org/02gj58768 Apollo Gleneagles Hospitals'), (2124, 'https://ror.org/02gjsze31', 'en', 1, 'https://ror.org/02gjsze31 St. Luke''s Magic Valley Medical Center'), (2125, 'https://ror.org/02gpdzc63', 'no_lang_code', 1, 'https://ror.org/02gpdzc63 Labor (Italy)'), (2126, 'https://ror.org/02grymn95', 'en', 1, 'https://ror.org/02grymn95 University of Arkansas – Fort Smith'), (2127, 'https://ror.org/02gw4vz38', 'en', 1, 'https://ror.org/02gw4vz38 Missouri Institute of Mental Health'), (2128, 'https://ror.org/02gxymm77', 'en', 1, 'https://ror.org/02gxymm77 Nakamura Memorial Hospital 中村記念病院'), (2129, 'https://ror.org/02gy6qp39', 'en', 1, 'https://ror.org/02gy6qp39 Allegheny General Hospital'), (2130, 'https://ror.org/02gzbg991', 'en', 1, 'https://ror.org/02gzbg991 Seattle Pacific University'), (2131, 'https://ror.org/02gzfb532', 'en', 1, 'https://ror.org/02gzfb532 Taipei City Hospital 臺北市政府'), (2132, 'https://ror.org/02gzhbc75', 'en', 1, 'https://ror.org/02gzhbc75 Matsudo City Hospital 松戸市立病院'), (2133, 'https://ror.org/02h1b1x27', 'en', 1, 'https://ror.org/02h1b1x27 Universidad de Los Andes University of the Andes'), (2134, 'https://ror.org/02h1scg40', 'en', 1, 'https://ror.org/02h1scg40 Maternal and Child Health Care Hospital of Bao''an 宝安区妇幼保健院'), (2135, 'https://ror.org/02h2j1586', 'en', 1, 'https://ror.org/02h2j1586 Beijing Anzhen Hospital 北京市心肺血管疾病研究所'), (2136, 'https://ror.org/02h2qwk37', 'en', 1, 'https://ror.org/02h2qwk37 St Vincent Medical Center'), (2137, 'https://ror.org/02h63je06', 'en', 1, 'https://ror.org/02h63je06 Quality Education for Minorities Network'), (2138, 'https://ror.org/02h6j4611', 'en', 1, 'https://ror.org/02h6j4611 Princess Margaret Hospital'), (2139, 'https://ror.org/02h7s7a86', 'en', 1, 'https://ror.org/02h7s7a86 Allen University'), (2140, 'https://ror.org/02h8a1848', 'en', 1, 'https://ror.org/02h8a1848 Ningxia Medical University 宁夏医科大学'), (2141, 'https://ror.org/02h905004', 'en', 1, 'https://ror.org/02h905004 Christiana Care Health System'), (2142, 'https://ror.org/02ha38c24', 'en', 1, 'https://ror.org/02ha38c24 San Joaquin General Hospital'), (2143, 'https://ror.org/02hbhxa68', 'no_lang_code', 1, 'https://ror.org/02hbhxa68 Airbus (United Kingdom)'), (2144, 'https://ror.org/02hbrab76', 'es', 1, 'https://ror.org/02hbrab76 Hospital de Clínicas "José de San Martín", Hospital de Clínicas José de San Martín'), (2145, 'https://ror.org/02he2nc27', 'en', 1, 'https://ror.org/02he2nc27 National Research Tomsk State University Национа́льный иссле́довательский То́мский госуда́рственный университе́т'), (2146, 'https://ror.org/02hfws565', 'en', 1, 'https://ror.org/02hfws565 Northwick Park Institute for Medical Research'), (2147, 'https://ror.org/02hjc7j46', 'en', 1, 'https://ror.org/02hjc7j46 Oogziekenhuis Rotterdam Rotterdam Eye Hospital'), (2148, 'https://ror.org/02hm3sf87', 'no_lang_code', 1, 'https://ror.org/02hm3sf87 European Institute For Research and Strategic Studies In Telecommunications'), (2149, 'https://ror.org/02hngyx35', 'en', 1, 'https://ror.org/02hngyx35 Rocky Mountain Hospital for Children'), (2150, 'https://ror.org/02hp4jd32', 'en', 1, 'https://ror.org/02hp4jd32 Summa Barberton Hospital'), (2151, 'https://ror.org/02hpatg29', 'en', 1, 'https://ror.org/02hpatg29 Fukuoka University Tsukushi Hospital 福岡大学筑紫病院'), (2152, 'https://ror.org/02hsexy86', 'en', 1, 'https://ror.org/02hsexy86 Riverside Methodist Hospital'), (2153, 'https://ror.org/02hsneh43', 'en', 1, 'https://ror.org/02hsneh43 Shizuoka City Hospital 静岡市立静岡病院'), (2154, 'https://ror.org/02hsq0e05', 'no_lang_code', 1, 'https://ror.org/02hsq0e05 EIC Laboratories'), (2155, 'https://ror.org/02hvsf428', 'nl', 1, 'https://ror.org/02hvsf428 Ziekenhuis Bethesda'), (2156, 'https://ror.org/02hw5fp67', 'en', 1, 'https://ror.org/02hw5fp67 National Institute for Environmental Studies 国立環境研究所'), (2157, 'https://ror.org/02hxrag63', 'en', 1, 'https://ror.org/02hxrag63 Memorial Medical Center'), (2158, 'https://ror.org/02hxrrn62', 'en', 1, 'https://ror.org/02hxrrn62 Interbalkan Medical Center Ιατρικό Διαβαλκανικό Κέντρο'), (2159, 'https://ror.org/02hy2mb20', 'no_lang_code', 1, 'https://ror.org/02hy2mb20 De Gezondheidsdienst voor Dieren'), (2160, 'https://ror.org/02hyxwa22', 'en', 1, 'https://ror.org/02hyxwa22 Center for Urban Population Health'), (2161, 'https://ror.org/02j3enb93', 'no_lang_code', 1, 'https://ror.org/02j3enb93 ArcelorMittal (Spain)'), (2162, 'https://ror.org/02j3zn476', 'en', 1, 'https://ror.org/02j3zn476 Grand River Hospital'), (2163, 'https://ror.org/02j4j5k41', 'en', 1, 'https://ror.org/02j4j5k41 John Muir Health'), (2164, 'https://ror.org/02j7h9426', 'no_lang_code', 1, 'https://ror.org/02j7h9426 Komagino Hospital 駒木野病院'), (2165, 'https://ror.org/02j8pe645', 'en', 1, 'https://ror.org/02j8pe645 National Academy of Sciences of Belarus Национальная академия наук Беларуси Нацыянальная акадэмія навук Беларусі'), (2166, 'https://ror.org/02jagkr09', 'en', 1, 'https://ror.org/02jagkr09 Gulbarga University गुलबर्गा विश्वविद्यालय குல்பர்கா பல்கலைக்கழகம் గుల్బర్గా విశ్వవిద్యాలయం ಗುಲ್ಬರ್ಗಾ ವಿಶ್ವವಿದ್ಯಾಲಯ'), (2167, 'https://ror.org/02jb3jv25', 'en', 1, 'https://ror.org/02jb3jv25 Yuanpei University 元培醫事科技大學'), (2168, 'https://ror.org/02jb7ng92', 'en', 1, 'https://ror.org/02jb7ng92 Moorgreen Hospital'), (2169, 'https://ror.org/02jbvhm37', 'en', 1, 'https://ror.org/02jbvhm37 Southeastern Universities Research Association'), (2170, 'https://ror.org/02jbzrw51', 'en', 1, 'https://ror.org/02jbzrw51 Gallup Indian Medical Center'), (2171, 'https://ror.org/02jed3n25', 'en', 1, 'https://ror.org/02jed3n25 Sacred Heart Hospital'), (2172, 'https://ror.org/02jeykk09', 'en', 1, 'https://ror.org/02jeykk09 Imam Khomeini International University دانشگاه بینالمللی امام خمینی'), (2173, 'https://ror.org/02jj7t426', 'en', 1, 'https://ror.org/02jj7t426 Dade County Medical Examiner Department'), (2174, 'https://ror.org/02jj9nh46', 'no_lang_code', 1, 'https://ror.org/02jj9nh46 Artron Bioresearch (Canada)'), (2175, 'https://ror.org/02jk5qe80', 'en', 1, 'https://ror.org/02jk5qe80 Aalborg Universitetshospital Aalborg University Hospital'), (2176, 'https://ror.org/02jmkw435', 'en', 1, 'https://ror.org/02jmkw435 Saratov State Medical University Саратовский государственный медицинский университет'), (2177, 'https://ror.org/02jn27q49', 'en', 1, 'https://ror.org/02jn27q49 Riverview Psychiatric Center'), (2178, 'https://ror.org/02jqapy19', 'en', 1, 'https://ror.org/02jqapy19 Qingdao Municipal Hospital'), (2179, 'https://ror.org/02jqn4a25', 'en', 1, 'https://ror.org/02jqn4a25 Ursinus College'), (2180, 'https://ror.org/02jqtg033', 'en', 1, 'https://ror.org/02jqtg033 Institute for Energy Technology'), (2181, 'https://ror.org/02jr6tp70', 'en', 1, 'https://ror.org/02jr6tp70 Azienda Ospedaliera Universitaria Federico II Federico II University Hospital'), (2182, 'https://ror.org/02js37d36', 'en', 1, 'https://ror.org/02js37d36 IBM Research - Zurich'), (2183, 'https://ror.org/02jv06474', 'en', 1, 'https://ror.org/02jv06474 Hanseo University'), (2184, 'https://ror.org/02jvh3a15', 'en', 1, 'https://ror.org/02jvh3a15 Diakonhjemmet Hospital'), (2185, 'https://ror.org/02jw82j47', 'en', 1, 'https://ror.org/02jw82j47 Kaiser Permanente Fontana Medical Center'), (2186, 'https://ror.org/02jwg2f21', 'en', 1, 'https://ror.org/02jwg2f21 Hammerfest Hospital Hammerfest Sykehus'), (2187, 'https://ror.org/02jwvs344', 'en', 1, 'https://ror.org/02jwvs344 Port Moresby General Hospital'), (2188, 'https://ror.org/02jww9n06', 'en', 1, 'https://ror.org/02jww9n06 Matsuyama Red Cross Hospital 松山赤十字病院'), (2189, 'https://ror.org/02jxw8995', 'no_lang_code', 1, 'https://ror.org/02jxw8995 Goroka Base Hospital'), (2190, 'https://ror.org/02jy1hx10', 'en', 1, 'https://ror.org/02jy1hx10 Makati Medical Center'), (2191, 'https://ror.org/02jygs973', 'en', 1, 'https://ror.org/02jygs973 Changes in Health Care Financing & Organization'), (2192, 'https://ror.org/02jz99c72', 'en', 1, 'https://ror.org/02jz99c72 Atlantic Health System'), (2193, 'https://ror.org/02jzt8c33', 'en', 1, 'https://ror.org/02jzt8c33 Children''s Hospital of Winnipeg'), (2194, 'https://ror.org/02k0t9a94', 'no_lang_code', 1, 'https://ror.org/02k0t9a94 Sankara Nethralaya'), (2195, 'https://ror.org/02k2v9264', 'es', 1, 'https://ror.org/02k2v9264 Hospital Luis Calvo Mackenna'), (2196, 'https://ror.org/02k46bn27', 'en', 1, 'https://ror.org/02k46bn27 Pfeiffer University'), (2197, 'https://ror.org/02k4h0b10', 'en', 1, 'https://ror.org/02k4h0b10 Rajshahi Medical College রাজশাহী মেডিকেল কলেজ'), (2198, 'https://ror.org/02k4w3g59', 'en', 1, 'https://ror.org/02k4w3g59 Helen Hayes Hospital'), (2199, 'https://ror.org/02k57ty04', 'de', 1, 'https://ror.org/02k57ty04 Klinikum Lüneburg'), (2200, 'https://ror.org/02k61s246', 'en', 1, 'https://ror.org/02k61s246 American Society for Cell Biology'), (2201, 'https://ror.org/02k72jz38', 'no_lang_code', 1, 'https://ror.org/02k72jz38 TagCyx Biotechnologies (Japan)'), (2202, 'https://ror.org/02k9jrs03', 'en', 1, 'https://ror.org/02k9jrs03 University Children’s Hospital Bern Universitätskinderklinik Bern'), (2203, 'https://ror.org/02kckde25', 'en', 1, 'https://ror.org/02kckde25 Earl K. Long Medical Center'), (2204, 'https://ror.org/02kcpr174', 'en', 1, 'https://ror.org/02kcpr174 MRC Human Immunology Unit'), (2205, 'https://ror.org/02ke5vh78', 'en', 1, 'https://ror.org/02ke5vh78 Tianjin Central Hospital of Gynecology Obstetrics 天津市中心妇产科医院'), (2206, 'https://ror.org/02kexp407', 'en', 1, 'https://ror.org/02kexp407 Miami Valley Hospital'), (2207, 'https://ror.org/02kf0fj54', 'no_lang_code', 1, 'https://ror.org/02kf0fj54 AnyGen (South Korea)'), (2208, 'https://ror.org/02kg81z20', 'en', 1, 'https://ror.org/02kg81z20 Universidad de La Verne University of La Verne'), (2209, 'https://ror.org/02khfkr46', 'en', 1, 'https://ror.org/02khfkr46 Institute of Electron Technology'), (2210, 'https://ror.org/02khzxe16', 'pt', 1, 'https://ror.org/02khzxe16 Instituto Superior de Comunicação Empresarial'), (2211, 'https://ror.org/02kjq0603', 'en', 1, 'https://ror.org/02kjq0603 American Bar Foundation'), (2212, 'https://ror.org/02kk6xv61', 'en', 1, 'https://ror.org/02kk6xv61 Creative England'), (2213, 'https://ror.org/02kk9ec90', 'en', 1, 'https://ror.org/02kk9ec90 Organization For Tropical Studies'), (2214, 'https://ror.org/02kswma64', 'it', 1, 'https://ror.org/02kswma64 Istituto Nazionale per la Fisica della Materia'), (2215, 'https://ror.org/02kta5139', 'es', 1, 'https://ror.org/02kta5139 Metropolitan Autonomous University Universidad Autónoma Metropolitana'), (2216, 'https://ror.org/02kwcpg86', 'en', 1, 'https://ror.org/02kwcpg86 Karlstad Central Hospital'), (2217, 'https://ror.org/02kxeh053', 'no_lang_code', 1, 'https://ror.org/02kxeh053 Veria General Hospital Γενικό Νοσοκομείο Ημαθίας'), (2218, 'https://ror.org/02kyckx55', 'en', 1, 'https://ror.org/02kyckx55 University of Akron'), (2219, 'https://ror.org/02kzxd152', 'en', 1, 'https://ror.org/02kzxd152 Medical University Plovdiv Medizinischen Universität Plovdiv Медицински университет - Пловдив'), (2220, 'https://ror.org/02m0p4y77', 'de', 1, 'https://ror.org/02m0p4y77 Klinikum Südstadt Rostock'), (2221, 'https://ror.org/02m11x738', 'en', 1, 'https://ror.org/02m11x738 Furtwangen University Hochschule Furtwangen'), (2222, 'https://ror.org/02m1efx83', 'no_lang_code', 1, 'https://ror.org/02m1efx83 Taconic (United States)'), (2223, 'https://ror.org/02m2znm35', 'en', 1, 'https://ror.org/02m2znm35 Soliman Fakeeh Hospital الدكتور سليمان فقية'), (2224, 'https://ror.org/02m4p8096', 'en', 1, 'https://ror.org/02m4p8096 Hochschule Kempten Kempten University of Applied Sciences'), (2225, 'https://ror.org/02m5e3762', 'no_lang_code', 1, 'https://ror.org/02m5e3762 Dr. Balabhai Nanavati Hospital'), (2226, 'https://ror.org/02m82p074', 'no_lang_code', 1, 'https://ror.org/02m82p074 Suez Canal University Université du Canal de Suez جامعة قناة السويس'), (2227, 'https://ror.org/02m9pj861', 'pt', 1, 'https://ror.org/02m9pj861 Hospital de Santo António'), (2228, 'https://ror.org/02maedm12', 'en', 1, 'https://ror.org/02maedm12 Rawalpindi Medical University'), (2229, 'https://ror.org/02mb9s657', 'en', 1, 'https://ror.org/02mb9s657 Hampden–Sydney College'), (2230, 'https://ror.org/02mby1820', 'it', 1, 'https://ror.org/02mby1820 Azienda USL di Bologna'), (2231, 'https://ror.org/02me73n88', 'en', 1, 'https://ror.org/02me73n88 Tribhuvan University Teaching Hospital'), (2232, 'https://ror.org/02mek6v69', 'fr', 1, 'https://ror.org/02mek6v69 Hôpital Bonnet'), (2233, 'https://ror.org/02mfapa96', 'en', 1, 'https://ror.org/02mfapa96 Acharya Nagarjuna University ఆచార్య నాగార్జున విశ్వవిద్యాలయం'), (2234, 'https://ror.org/02mg9y350', 'en', 1, 'https://ror.org/02mg9y350 Winona Medical Cosmetic Center 薇诺娜皮肤医疗美容中心'), (2235, 'https://ror.org/02mp2av58', 'en', 1, 'https://ror.org/02mp2av58 Universidad de Hawái en Hilo University of Hawaii at Hilo Université d''hawaï à hilo'), (2236, 'https://ror.org/02mrcx295', 'no_lang_code', 1, 'https://ror.org/02mrcx295 Creare (United States)'), (2237, 'https://ror.org/02mssnc42', 'no_lang_code', 1, 'https://ror.org/02mssnc42 Nagano Municipal Hospital 長野市民病院'), (2238, 'https://ror.org/02mtbrk18', 'en', 1, 'https://ror.org/02mtbrk18 Immaculata University'), (2239, 'https://ror.org/02mvsxw13', 'en', 1, 'https://ror.org/02mvsxw13 Kobe City Nishi-Kobe Medical Center 神戸市立西神戸医療センター'), (2240, 'https://ror.org/02mx8nz45', 'en', 1, 'https://ror.org/02mx8nz45 Bradley Hospital'), (2241, 'https://ror.org/02mxfm070', 'en', 1, 'https://ror.org/02mxfm070 St Joseph''s Hospital Health Center'), (2242, 'https://ror.org/02my3bx32', 'en', 1, 'https://ror.org/02my3bx32 Hubei University of Chinese Medicine 湖北中医药大学'), (2243, 'https://ror.org/02myg6142', 'en', 1, 'https://ror.org/02myg6142 Maryville University'), (2244, 'https://ror.org/02n10g966', 'en', 1, 'https://ror.org/02n10g966 Long Beach Animal Hospital'), (2245, 'https://ror.org/02n1cyj49', 'en', 1, 'https://ror.org/02n1cyj49 AdventHealth Orlando'), (2246, 'https://ror.org/02n22cc74', 'en', 1, 'https://ror.org/02n22cc74 Koshigaya Municipal Hospital 越谷市立病院'), (2247, 'https://ror.org/02n2ava60', 'en', 1, 'https://ror.org/02n2ava60 University of New England'), (2248, 'https://ror.org/02n5cs023', 'en', 1, 'https://ror.org/02n5cs023 Elizabeth City State University'), (2249, 'https://ror.org/02n73hp60', 'en', 1, 'https://ror.org/02n73hp60 Victoria General Hospital'), (2250, 'https://ror.org/02nbyhf94', 'no_lang_code', 1, 'https://ror.org/02nbyhf94 Coanda Research and Development Corporation (Canada)'), (2251, 'https://ror.org/02nckwn80', 'en', 1, 'https://ror.org/02nckwn80 Cheyney University of Pennsylvania Universidad de Cheyney de Pensilvania Université cheyney de pennsylvanie'), (2252, 'https://ror.org/02ndk3y82', 'en', 1, 'https://ror.org/02ndk3y82 Children''s Medical Center'), (2253, 'https://ror.org/02nh10f55', 'en', 1, 'https://ror.org/02nh10f55 Evanston Hospital'), (2254, 'https://ror.org/02npavb70', 'en', 1, 'https://ror.org/02npavb70 Shimane Prefectural Institute of Public Health and Environmental Sciences 島根県保健環境科学研究所'), (2255, 'https://ror.org/02npppw10', 'no_lang_code', 1, 'https://ror.org/02npppw10 BMT Group (United Kingdom)'), (2256, 'https://ror.org/02nqy8390', 'en', 1, 'https://ror.org/02nqy8390 Letterman Army Medical Center'), (2257, 'https://ror.org/02nr3fr97', 'en', 1, 'https://ror.org/02nr3fr97 Center for Biologics Evaluation and Research'), (2258, 'https://ror.org/02nren818', 'en', 1, 'https://ror.org/02nren818 Chestnut Hill Hospital'), (2259, 'https://ror.org/02ntgty32', 'en', 1, 'https://ror.org/02ntgty32 Flygtekniska försöksanstalten National Aeronautical Research Institute'), (2260, 'https://ror.org/02nvt4474', 'es', 1, 'https://ror.org/02nvt4474 Institute for Clinical Efectiveness and Health Policy Instituto de Efectividad Clínica y Sanitaria'), (2261, 'https://ror.org/02nx5r318', 'en', 1, 'https://ror.org/02nx5r318 College of New Jersey'), (2262, 'https://ror.org/02nycs597', 'en', 1, 'https://ror.org/02nycs597 Funabashi Municipal Medical Center 船橋市立医療センター'), (2263, 'https://ror.org/02nyfes25', 'en', 1, 'https://ror.org/02nyfes25 Science Museum of Minnesota'), (2264, 'https://ror.org/02nzaav06', 'es', 1, 'https://ror.org/02nzaav06 Hospital Luis Vernaza'), (2265, 'https://ror.org/02p23ar50', 'en', 1, 'https://ror.org/02p23ar50 Kent and Canterbury Hospital'), (2266, 'https://ror.org/02p47pe37', 'de', 1, 'https://ror.org/02p47pe37 Kaiser-Franz-Josef-Spital'), (2267, 'https://ror.org/02p599b54', 'en', 1, 'https://ror.org/02p599b54 Treatment Research Institute'), (2268, 'https://ror.org/02p620w18', 'en', 1, 'https://ror.org/02p620w18 Blood Center of Zhejiang Province 浙江省血液中心'), (2269, 'https://ror.org/02p6pjw94', 'en', 1, 'https://ror.org/02p6pjw94 Moncton Hospital'), (2270, 'https://ror.org/02p71fr67', 'en', 1, 'https://ror.org/02p71fr67 Monilek Hospital and Research Center'), (2271, 'https://ror.org/02p72h367', 'en', 1, 'https://ror.org/02p72h367 University of Cincinnati Medical Center'), (2272, 'https://ror.org/02p74z057', 'en', 1, 'https://ror.org/02p74z057 K S Hegde Medical Academy'), (2273, 'https://ror.org/02p9e5v87', 'en', 1, 'https://ror.org/02p9e5v87 Concord Hospital'), (2274, 'https://ror.org/02paek818', 'en', 1, 'https://ror.org/02paek818 Hutzel Women''s Hospital'), (2275, 'https://ror.org/02pagex14', 'en', 1, 'https://ror.org/02pagex14 Archimedes Foundation'), (2276, 'https://ror.org/02pb4g840', 'tr', 1, 'https://ror.org/02pb4g840 Bahriye Merkez Hastanesi, Kasımpaşa Asker Hastanesi'), (2277, 'https://ror.org/02pb9wz46', 'fr', 1, 'https://ror.org/02pb9wz46 Hôpital Léon Bérard'), (2278, 'https://ror.org/02pes1a77', 'de', 1, 'https://ror.org/02pes1a77 Krankenhaus der Elisabethinen'), (2279, 'https://ror.org/02pf50490', 'no_lang_code', 1, 'https://ror.org/02pf50490 Immunomedics (United States)'), (2280, 'https://ror.org/02pfhv998', 'no_lang_code', 1, 'https://ror.org/02pfhv998 Nongwoo Bio (South Korea)'), (2281, 'https://ror.org/02pfqts47', 'es', 1, 'https://ror.org/02pfqts47 Hospital Casa de Salud'), (2282, 'https://ror.org/02pg0e883', 'en', 1, 'https://ror.org/02pg0e883 University of Aizu 会津大学'), (2283, 'https://ror.org/02pgvzy25', 'en', 1, 'https://ror.org/02pgvzy25 Ming Chuan University'), (2284, 'https://ror.org/02phevt59', 'en', 1, 'https://ror.org/02phevt59 Fraunhofer Institute for Wind Energy Systems Fraunhofer-Institut für Windenergiesysteme'), (2285, 'https://ror.org/02pk13h45', 'en', 1, 'https://ror.org/02pk13h45 St George Hospital'), (2286, 'https://ror.org/02pkd6e53', 'no_lang_code', 1, 'https://ror.org/02pkd6e53 Deschutes Research'), (2287, 'https://ror.org/02pp7xn25', 'en', 1, 'https://ror.org/02pp7xn25 Punjab Government Dental College and Hospital'), (2288, 'https://ror.org/02ptw3r05', 'es', 1, 'https://ror.org/02ptw3r05 Hospital Universitario Son Dureta'), (2289, 'https://ror.org/02pyp8h55', 'en', 1, 'https://ror.org/02pyp8h55 Lions Gate Hospital'), (2290, 'https://ror.org/02q0qx558', 'en', 1, 'https://ror.org/02q0qx558 Health Resources Unlimited'), (2291, 'https://ror.org/02q1nnh04', 'en', 1, 'https://ror.org/02q1nnh04 St. Cloud VA Health Care System'), (2292, 'https://ror.org/02q291e51', 'no_lang_code', 1, 'https://ror.org/02q291e51 Suncor Energy (Canada)'), (2293, 'https://ror.org/02q2dn726', 'no_lang_code', 1, 'https://ror.org/02q2dn726 Sinte Gleska University'), (2294, 'https://ror.org/02q2rtn50', 'no_lang_code', 1, 'https://ror.org/02q2rtn50 Tangam Gaming Inc'), (2295, 'https://ror.org/02q3bak66', 'en', 1, 'https://ror.org/02q3bak66 Buckinghamshire New University Prifysgol Newydd Swydd Buckingham'), (2296, 'https://ror.org/02q404g62', 'en', 1, 'https://ror.org/02q404g62 Kaiser Permanente Sacramento Medical Center'), (2297, 'https://ror.org/02q5gkg61', 'en', 1, 'https://ror.org/02q5gkg61 Henderson State University Université d''État henderson'), (2298, 'https://ror.org/02q8h2f47', 'fr', 1, 'https://ror.org/02q8h2f47 Institut Technologique Forêt Cellulose Bois-Construction Ameublement'), (2299, 'https://ror.org/02q8vys74', 'en', 1, 'https://ror.org/02q8vys74 American Institute of Physics'), (2300, 'https://ror.org/02q97rh88', 'en', 1, 'https://ror.org/02q97rh88 Shotley Bridge Hospital'), (2301, 'https://ror.org/02qb5a654', 'en', 1, 'https://ror.org/02qb5a654 Somerset Medical Center'), (2302, 'https://ror.org/02qdbgx97', 'en', 1, 'https://ror.org/02qdbgx97 Geisinger Health System'), (2303, 'https://ror.org/02qeh3c90', 'en', 1, 'https://ror.org/02qeh3c90 University of Louisiana at Monroe Université de Louisiane à Monroe'), (2304, 'https://ror.org/02qeysd40', 'en', 1, 'https://ror.org/02qeysd40 Tacoma Community College'), (2305, 'https://ror.org/02qgq9x54', 'en', 1, 'https://ror.org/02qgq9x54 Sardar Patel Post Graduate Institute of Dental and Medical Sciences'), (2306, 'https://ror.org/02qnsw591', 'en', 1, 'https://ror.org/02qnsw591 Centre for European Economic Research Zentrum für Europäische Wirtschaftsforschung'), (2307, 'https://ror.org/02qp2hh41', 'en', 1, 'https://ror.org/02qp2hh41 Walden University'), (2308, 'https://ror.org/02qqemj91', 'en', 1, 'https://ror.org/02qqemj91 Jaipur Golden Hospital'), (2309, 'https://ror.org/02qsqdv65', 'no_lang_code', 1, 'https://ror.org/02qsqdv65 Alstom (United Kingdom)'), (2310, 'https://ror.org/02qv90y91', 'en', 1, 'https://ror.org/02qv90y91 Nagasaki Medical Center 長崎医療センター'), (2311, 'https://ror.org/02qvqb543', 'no_lang_code', 1, 'https://ror.org/02qvqb543 Aretaeio Hospital'), (2312, 'https://ror.org/02qx1ae98', 'en', 1, 'https://ror.org/02qx1ae98 First Affiliated Hospital of Xinjiang Medical University 新疆医科大学第一附属医院'), (2313, 'https://ror.org/02r247g67', 'en', 1, 'https://ror.org/02r247g67 People''s Hospital of Xinjiang Uygur Autonomous Region 新疆维吾尔自治区人民医院'), (2314, 'https://ror.org/02r2pcs39', 'en', 1, 'https://ror.org/02r2pcs39 Polyclinic Medical Center'), (2315, 'https://ror.org/02r2tq059', 'en', 1, 'https://ror.org/02r2tq059 Saraswati Dental College and Hospital'), (2316, 'https://ror.org/02r3xg590', 'en', 1, 'https://ror.org/02r3xg590 Kaiser Permanente Vallejo Medical Center'), (2317, 'https://ror.org/02r4khx44', 'en', 1, 'https://ror.org/02r4khx44 King Hussein Medical Center مدينة الحسين الطبية'), (2318, 'https://ror.org/02r581p42', 'pt', 1, 'https://ror.org/02r581p42 Hospital de Santa Cruz'), (2319, 'https://ror.org/02r5cmz65', 'en', 1, 'https://ror.org/02r5cmz65 Babol University of Medical Sciences دانشگاه علوم پزشکی بابل'), (2320, 'https://ror.org/02ra1fm11', 'no_lang_code', 1, 'https://ror.org/02ra1fm11 Thermal Technologies (United States)'), (2321, 'https://ror.org/02retg991', 'en', 1, 'https://ror.org/02retg991 University of Jammu जम्मू विश्वविद्यालय'), (2322, 'https://ror.org/02rfs1804', 'no_lang_code', 1, 'https://ror.org/02rfs1804 Shimada Municipal Hospital 島田市民病院'), (2323, 'https://ror.org/02rg6ka44', 'en', 1, 'https://ror.org/02rg6ka44 Southwest Bahia State University Universidad Estatal del Sudoeste de Bahía Universidade Estadual do Sudoeste da Bahia'), (2324, 'https://ror.org/02rg9ze43', 'en', 1, 'https://ror.org/02rg9ze43 Madonna University Université madonna'), (2325, 'https://ror.org/02rhp5f96', 'en', 1, 'https://ror.org/02rhp5f96 Mulago Hospital'), (2326, 'https://ror.org/02rjrn566', 'en', 1, 'https://ror.org/02rjrn566 Nishtar Medical College and Hospital'), (2327, 'https://ror.org/02rn1w290', 'en', 1, 'https://ror.org/02rn1w290 Princess Mary Maternity Hospital'), (2328, 'https://ror.org/02rn83489', 'en', 1, 'https://ror.org/02rn83489 Corniche Hospital مستشفى الكورنيش للأمومة'), (2329, 'https://ror.org/02rnep118', 'en', 1, 'https://ror.org/02rnep118 Queen''s Hospital'), (2330, 'https://ror.org/02rrbpf42', 'en', 1, 'https://ror.org/02rrbpf42 King Edward Medical University کنگ ایڈورڈ میڈیکل یونیورسٹی'), (2331, 'https://ror.org/02rsjqy82', 'en', 1, 'https://ror.org/02rsjqy82 Point Loma Nazarene University'), (2332, 'https://ror.org/02rsydb28', 'en', 1, 'https://ror.org/02rsydb28 Misericordia Community Hospital'), (2333, 'https://ror.org/02rw2zs46', 'en', 1, 'https://ror.org/02rw2zs46 Bai Jerbai Wadia Hospital for Children'), (2334, 'https://ror.org/02s0xcm55', 'it', 1, 'https://ror.org/02s0xcm55 Agency for the Promotion of European Research Agenzia per la Promozione della Ricerca Europea'), (2335, 'https://ror.org/02s1hvj37', 'en', 1, 'https://ror.org/02s1hvj37 Indiana University South Bend'), (2336, 'https://ror.org/02s280t43', 'en', 1, 'https://ror.org/02s280t43 New Hanover Regional Medical Center'), (2337, 'https://ror.org/02s3d7j94', 'en', 1, 'https://ror.org/02s3d7j94 Chang Jung Christian University'), (2338, 'https://ror.org/02s3xyj47', 'en', 1, 'https://ror.org/02s3xyj47 Qatif Central Hospital مستشفى القطيف المركزي'), (2339, 'https://ror.org/02s4j2a36', 'en', 1, 'https://ror.org/02s4j2a36 Conquest Hospital'), (2340, 'https://ror.org/02s4xaf90', 'en', 1, 'https://ror.org/02s4xaf90 Calgary General Hospital'), (2341, 'https://ror.org/02s5yma07', 'en', 1, 'https://ror.org/02s5yma07 Himachal Pradesh University'), (2342, 'https://ror.org/02s6h0431', 'it', 1, 'https://ror.org/02s6h0431 Circolo Hospital and Macchi Foundation Ospedale di Circolo e Fondazione Macchi'), (2343, 'https://ror.org/02s6w8y22', 'en', 1, 'https://ror.org/02s6w8y22 University of Bamako Université de Bamako'), (2344, 'https://ror.org/02s7c9e98', 'en', 1, 'https://ror.org/02s7c9e98 Fourth Affiliated Hospital of Harbin Medical University 哈尔滨医科大学第四附属医院'), (2345, 'https://ror.org/02s7et124', 'it', 1, 'https://ror.org/02s7et124 Azienda Ospedaliera Universitaria Senese'), (2346, 'https://ror.org/02s7fkk92', 'es', 1, 'https://ror.org/02s7fkk92 Hospital Arnau de Vilanova'), (2347, 'https://ror.org/02s7hnh67', 'en', 1, 'https://ror.org/02s7hnh67 Thammasat University Hospital โรงพยาบาลธรรมศาสตร์เฉลิมพระเกียรติ'), (2348, 'https://ror.org/02s8jk784', 'en', 1, 'https://ror.org/02s8jk784 PVS Memorial Hospital'), (2349, 'https://ror.org/02s8znz42', 'fr', 1, 'https://ror.org/02s8znz42 Centre Hospitalier de Mulhouse'), (2350, 'https://ror.org/02sb3pg33', 'en', 1, 'https://ror.org/02sb3pg33 Kaleida Health'), (2351, 'https://ror.org/02sc91t34', 'en', 1, 'https://ror.org/02sc91t34 American Association of Geographers'), (2352, 'https://ror.org/02sehzp52', 'en', 1, 'https://ror.org/02sehzp52 Belarusian State University of Informatics and Radioelectronics Беларускі дзяржаўны ўніверсітэт інфарматыкі і радыёэлектронікі Белорусский государственный университет информатики и радиоэлектроники'), (2353, 'https://ror.org/02sjnfb25', 'en', 1, 'https://ror.org/02sjnfb25 Versiti Blood Center of Wisconsin'), (2354, 'https://ror.org/02smkcg51', 'tr', 1, 'https://ror.org/02smkcg51 Bakırköy Dr.Sadi Konuk Eğitim ve Araştırma Hastanesi'), (2355, 'https://ror.org/02smq5q54', 'en', 1, 'https://ror.org/02smq5q54 Birmingham City Hospital'), (2356, 'https://ror.org/02smsax08', 'pt', 1, 'https://ror.org/02smsax08 Hospital Nossa Senhora da Conceição'), (2357, 'https://ror.org/02sn5gb64', 'en', 1, 'https://ror.org/02sn5gb64 Toyota Technological Institute at Chicago'), (2358, 'https://ror.org/02snf5j61', 'en', 1, 'https://ror.org/02snf5j61 University Hospital, Newark'), (2359, 'https://ror.org/02sp1z620', 'en', 1, 'https://ror.org/02sp1z620 Burke Medical Research Institute'), (2360, 'https://ror.org/02sp8x745', 'en', 1, 'https://ror.org/02sp8x745 Royal Jubilee Hospital'), (2361, 'https://ror.org/02srrbc50', 'en', 1, 'https://ror.org/02srrbc50 Erzurum Bölge Eğitim ve Araştırma Hastanesi Erzurum Regional Training and Research Hospital'), (2362, 'https://ror.org/02srt1z47', 'en', 1, 'https://ror.org/02srt1z47 Kansai Electric Power Hospital 関西電力病院'), (2363, 'https://ror.org/02ss35t63', 'en', 1, 'https://ror.org/02ss35t63 Emerson Hospital'), (2364, 'https://ror.org/02ssjh827', 'en', 1, 'https://ror.org/02ssjh827 Hôpital National de Niamey National Hospital Niamey'), (2365, 'https://ror.org/02sttfr93', 'en', 1, 'https://ror.org/02sttfr93 Kyushu Central Hospital of the Mutual Aid Association of Public School Teachers 公立学校共済組合 九州中央病院'), (2366, 'https://ror.org/02sxmkm79', 'en', 1, 'https://ror.org/02sxmkm79 Mercy Hospital'), (2367, 'https://ror.org/02sxy6c22', 'no_lang_code', 1, 'https://ror.org/02sxy6c22 Daehang Hospital 대항병원'), (2368, 'https://ror.org/02syg0q74', 'en', 1, 'https://ror.org/02syg0q74 Hirosaki University 弘前大学'), (2369, 'https://ror.org/02sz71d65', 'en', 1, 'https://ror.org/02sz71d65 Methodist Hospital'), (2370, 'https://ror.org/02t0qr014', 'en', 1, 'https://ror.org/02t0qr014 Universidad de Carolina del Norte en Wilmington University of North Carolina Wilmington Université de wilmington'), (2371, 'https://ror.org/02t36bt26', 'en', 1, 'https://ror.org/02t36bt26 Regional Institute of Medical Sciences'), (2372, 'https://ror.org/02t3sfp68', 'en', 1, 'https://ror.org/02t3sfp68 Sejong General Hospital 세종 병원'), (2373, 'https://ror.org/02t4f0726', 'no_lang_code', 1, 'https://ror.org/02t4f0726 Radikal Therapeutics'), (2374, 'https://ror.org/02t5j9303', 'en', 1, 'https://ror.org/02t5j9303 Lakehead Psychiatric Hospital'), (2375, 'https://ror.org/02t69m177', 'no_lang_code', 1, 'https://ror.org/02t69m177 Adipogen (South Korea)'), (2376, 'https://ror.org/02t96cy48', 'it', 1, 'https://ror.org/02t96cy48 Azienda Ospedaliera S.Maria'), (2377, 'https://ror.org/02tbz8k15', 'no_lang_code', 1, 'https://ror.org/02tbz8k15 University Research Co (United States)'), (2378, 'https://ror.org/02tc32w13', 'en', 1, 'https://ror.org/02tc32w13 Cumann Ollscoileanna Éireann Irish Universities Association'), (2379, 'https://ror.org/02tcape08', 'en', 1, 'https://ror.org/02tcape08 Xinjiang Academy of Animal Science 新疆维吾尔自治区畜牧科学院'), (2380, 'https://ror.org/02tdhvw55', 'tr', 1, 'https://ror.org/02tdhvw55 Fırat Üniversitesi Hastanesi'), (2381, 'https://ror.org/02tdmfk69', 'en', 1, 'https://ror.org/02tdmfk69 Belfast Health and Social Care Trust'), (2382, 'https://ror.org/02teamz63', 'en', 1, 'https://ror.org/02teamz63 La Rabida Children''s Hospital'), (2383, 'https://ror.org/02tj04e91', 'en', 1, 'https://ror.org/02tj04e91 Sydney Children''s Hospital'), (2384, 'https://ror.org/02tpgw303', 'en', 1, 'https://ror.org/02tpgw303 Institute for Systems Biology'), (2385, 'https://ror.org/02tsanh21', 'en', 1, 'https://ror.org/02tsanh21 National Cancer Center'), (2386, 'https://ror.org/02tse0z86', 'en', 1, 'https://ror.org/02tse0z86 Bryn Mawr Hospital'), (2387, 'https://ror.org/02tt4fr50', 'no_lang_code', 1, 'https://ror.org/02tt4fr50 Kanto Central Hospital 公立学校共済組合関東中央病院'), (2388, 'https://ror.org/02tvcev59', 'en', 1, 'https://ror.org/02tvcev59 La Nueva Escuela New School'), (2389, 'https://ror.org/02tvg0w73', 'en', 1, 'https://ror.org/02tvg0w73 Riverside Research Institute'), (2390, 'https://ror.org/02tvhd105', 'es', 1, 'https://ror.org/02tvhd105 Clemente Álvarez Emergency Hospital Hospital de Emergencias Dr. Clemente Álvarez'), (2391, 'https://ror.org/02tvvs825', 'en', 1, 'https://ror.org/02tvvs825 Robinson Memorial Hospital'), (2392, 'https://ror.org/02twt6343', 'fr', 1, 'https://ror.org/02twt6343 Hôpital Louis-H Lafontaine'), (2393, 'https://ror.org/02v3sdn51', 'en', 1, 'https://ror.org/02v3sdn51 MRC/CSO Social and Public Health Sciences Unit'), (2394, 'https://ror.org/02v3txv81', 'en', 1, 'https://ror.org/02v3txv81 Portland VA Medical Center'), (2395, 'https://ror.org/02v5mzt02', 'en', 1, 'https://ror.org/02v5mzt02 St David''s Medical Center'), (2396, 'https://ror.org/02v6ptf51', 'no_lang_code', 1, 'https://ror.org/02v6ptf51 Khoula Hospital مستشفى خولة'), (2397, 'https://ror.org/02v7qv571', 'en', 1, 'https://ror.org/02v7qv571 Santa Clara Valley Medical Center'), (2398, 'https://ror.org/02v8rz176', 'no_lang_code', 1, 'https://ror.org/02v8rz176 Guru Teg Bahadur Hospital'), (2399, 'https://ror.org/02v8yp068', 'no_lang_code', 1, 'https://ror.org/02v8yp068 Konyang University 건양대학교'), (2400, 'https://ror.org/02vaqnn82', 'en', 1, 'https://ror.org/02vaqnn82 Madras Medical Mission'), (2401, 'https://ror.org/02vb7sj25', 'en', 1, 'https://ror.org/02vb7sj25 Geneva College'), (2402, 'https://ror.org/02vbxt202', 'no_lang_code', 1, 'https://ror.org/02vbxt202 ThyssenKrupp (Germany)'), (2403, 'https://ror.org/02vdn8424', 'en', 1, 'https://ror.org/02vdn8424 Administration of Occupational Safety and Health Vinnueftirlitið'), (2404, 'https://ror.org/02vej5573', 'no_lang_code', 1, 'https://ror.org/02vej5573 Estácio (Brazil)'), (2405, 'https://ror.org/02verss31', 'en', 1, 'https://ror.org/02verss31 Chang Gung Memorial Hospital'), (2406, 'https://ror.org/02vfy4r65', 'en', 1, 'https://ror.org/02vfy4r65 Charleston Area Medical Center'), (2407, 'https://ror.org/02vgb0r89', 'en', 1, 'https://ror.org/02vgb0r89 Kinki Central Hospital 近畿中央病院'), (2408, 'https://ror.org/02vgs9327', 'en', 1, 'https://ror.org/02vgs9327 Kumamoto University Hospital 熊本大学医学部附属病院'), (2409, 'https://ror.org/02vj1vm13', 'en', 1, 'https://ror.org/02vj1vm13 Zhangzhou Normal University 闽南师范大学'), (2410, 'https://ror.org/02vjsj444', 'en', 1, 'https://ror.org/02vjsj444 Fort Sanders Regional Medical Center'), (2411, 'https://ror.org/02vn11j58', 'en', 1, 'https://ror.org/02vn11j58 Ulyanovsk State University Ульяновский государственный университет'), (2412, 'https://ror.org/02vn5as77', 'nl', 1, 'https://ror.org/02vn5as77 Streekziekenhuis Koningin Beatrix'), (2413, 'https://ror.org/02vnyaz83', 'en', 1, 'https://ror.org/02vnyaz83 Mills Peninsula Health Services'), (2414, 'https://ror.org/02vqh3346', 'en', 1, 'https://ror.org/02vqh3346 James Cook University Hospital'), (2415, 'https://ror.org/02vt4z508', 'en', 1, 'https://ror.org/02vt4z508 Jen-Ai Hospital 仁愛醫療財團法人'), (2416, 'https://ror.org/02vtd2q19', 'es', 1, 'https://ror.org/02vtd2q19 Hospital Universitario Reina Sofía Reina Sofia Hospital'), (2417, 'https://ror.org/02vtstx21', 'en', 1, 'https://ror.org/02vtstx21 Allen Hospital'), (2418, 'https://ror.org/02vvj6403', 'en', 1, 'https://ror.org/02vvj6403 Smolensk University for Humanities Смоленский гуманитарный университет'), (2419, 'https://ror.org/02vwnat91', 'en', 1, 'https://ror.org/02vwnat91 London South Bank University'), (2420, 'https://ror.org/02vxh6479', 'no_lang_code', 1, 'https://ror.org/02vxh6479 Fortis Hospital'), (2421, 'https://ror.org/02vzyrj94', 'en', 1, 'https://ror.org/02vzyrj94 Fairview Southdale Hospital'), (2422, 'https://ror.org/02w043707', 'en', 1, 'https://ror.org/02w043707 University of Aden جامعة عدن'), (2423, 'https://ror.org/02w1g0f30', 'en', 1, 'https://ror.org/02w1g0f30 Bashkir State Medical University Башкирский государственный медицинский университет'), (2424, 'https://ror.org/02w2vzn61', 'en', 1, 'https://ror.org/02w2vzn61 Ruchill Hospital'), (2425, 'https://ror.org/02w35z347', 'fr', 1, 'https://ror.org/02w35z347 Hôpital Gui de Chauliac'), (2426, 'https://ror.org/02w3g4478', 'en', 1, 'https://ror.org/02w3g4478 Keller Army Community Hospital'), (2427, 'https://ror.org/02w3gk008', 'en', 1, 'https://ror.org/02w3gk008 Silla University 신라대학교'), (2428, 'https://ror.org/02w4p5q74', 'en', 1, 'https://ror.org/02w4p5q74 Assam Medical College অসম চিকিৎসা মহাবিদ্যালয়'), (2429, 'https://ror.org/02w5pxz31', 'en', 1, 'https://ror.org/02w5pxz31 Assiut University Hospitals'), (2430, 'https://ror.org/02w7k5y22', 'en', 1, 'https://ror.org/02w7k5y22 Datta Meghe Institute of Medical Sciences'), (2431, 'https://ror.org/02w7x5c08', 'en', 1, 'https://ror.org/02w7x5c08 Royal Surrey County Hospital'), (2432, 'https://ror.org/02w8sz675', 'en', 1, 'https://ror.org/02w8sz675 Shriners Hospitals for Children - Tampa'), (2433, 'https://ror.org/02w8ws377', 'en', 1, 'https://ror.org/02w8ws377 Chung Yuan Christian University'), (2434, 'https://ror.org/02wa2wd05', 'en', 1, 'https://ror.org/02wa2wd05 Lagos State University Teaching Hospital'), (2435, 'https://ror.org/02wc1yz29', 'en', 1, 'https://ror.org/02wc1yz29 Eye & ENT Hospital of Fudan University'), (2436, 'https://ror.org/02wcweb64', 'en', 1, 'https://ror.org/02wcweb64 Larkin Community Hospital'), (2437, 'https://ror.org/02wdkng16', 'en', 1, 'https://ror.org/02wdkng16 Catholic Health Association of the United States'), (2438, 'https://ror.org/02wdp5k87', 'no_lang_code', 1, 'https://ror.org/02wdp5k87 Keskuslaboratorio'), (2439, 'https://ror.org/02wdwsb32', 'no_lang_code', 1, 'https://ror.org/02wdwsb32 GenVec'), (2440, 'https://ror.org/02wf9yg07', 'en', 1, 'https://ror.org/02wf9yg07 Chidicon Medical Center'), (2441, 'https://ror.org/02wg4pk78', 'no_lang_code', 1, 'https://ror.org/02wg4pk78 Produits forestiers Résolu Resolute Forest Products (Canada)'), (2442, 'https://ror.org/02wgfsz09', 'en', 1, 'https://ror.org/02wgfsz09 Grant Medical Center'), (2443, 'https://ror.org/02wjcw796', 'en', 1, 'https://ror.org/02wjcw796 Miyake Eye Hospital 眼科三宅病院'), (2444, 'https://ror.org/02wk1td69', 'pt', 1, 'https://ror.org/02wk1td69 Fundacao Universitaria Jose Bonifacio'), (2445, 'https://ror.org/02wkcrp04', 'en', 1, 'https://ror.org/02wkcrp04 Mazandaran University of Medical Sciences دانشگاه علوم پزشکی مازندران'), (2446, 'https://ror.org/02wnfwq15', 'es', 1, 'https://ror.org/02wnfwq15 Hospital General Yagüe'), (2447, 'https://ror.org/02wnxgj78', 'en', 1, 'https://ror.org/02wnxgj78 Chungbuk National University 충북대학교'), (2448, 'https://ror.org/02wtdvm35', 'en', 1, 'https://ror.org/02wtdvm35 Saskatchewan Health Authority'), (2449, 'https://ror.org/02wxcj895', 'en', 1, 'https://ror.org/02wxcj895 Chesterfield Royal Hospital'), (2450, 'https://ror.org/02wxzt832', 'no_lang_code', 1, 'https://ror.org/02wxzt832 Echelon Biosciences'), (2451, 'https://ror.org/02x0hgx61', 'fr', 1, 'https://ror.org/02x0hgx61 Hôpital Militaire Moulay Ismail'), (2452, 'https://ror.org/02x0wmd77', 'en', 1, 'https://ror.org/02x0wmd77 St. John’s Health Sciences Centre'), (2453, 'https://ror.org/02x1txb82', 'no_lang_code', 1, 'https://ror.org/02x1txb82 Hafez Hospital بیمارستان حافظ'), (2454, 'https://ror.org/02x1vjk79', 'pt', 1, 'https://ror.org/02x1vjk79 Pontifical Catholic University of Paraná Pontificia Universidad Católica de Paraná Pontifícia Universidade Católica do Paraná Université pontificale catholique du paraná'), (2455, 'https://ror.org/02x2aj034', 'en', 1, 'https://ror.org/02x2aj034 Millersville University'), (2456, 'https://ror.org/02x2kaq51', 'en', 1, 'https://ror.org/02x2kaq51 Florida Medical Entomology Laboratory'), (2457, 'https://ror.org/02x3erj71', 'no_lang_code', 1, 'https://ror.org/02x3erj71 Personal Improvement Computer Systems'), (2458, 'https://ror.org/02x3hmg72', 'en', 1, 'https://ror.org/02x3hmg72 Sawai ManSingh Medical College and Hospital'), (2459, 'https://ror.org/02x3skf39', 'en', 1, 'https://ror.org/02x3skf39 Bridgewater State University Université d''État de bridgewater'), (2460, 'https://ror.org/02x4pnt63', 'pt', 1, 'https://ror.org/02x4pnt63 Hospital Geral de Bonsucesso'), (2461, 'https://ror.org/02x581406', 'fr', 1, 'https://ror.org/02x581406 Hôpital Pellegrin'), (2462, 'https://ror.org/02x73b849', 'en', 1, 'https://ror.org/02x73b849 University of Electro-Communications 電気通信大学'), (2463, 'https://ror.org/02x91aj62', 'en', 1, 'https://ror.org/02x91aj62 Peter the Great St. Petersburg Polytechnic University Санкт-Петербургский политехнический университет Петра Великого'), (2464, 'https://ror.org/02xa5mk57', 'en', 1, 'https://ror.org/02xa5mk57 Brooklyn Hospital Center'), (2465, 'https://ror.org/02xag2b27', 'en', 1, 'https://ror.org/02xag2b27 Eastern New Mexico University'), (2466, 'https://ror.org/02xesw687', 'en', 1, 'https://ror.org/02xesw687 North Manchester General Hospital'), (2467, 'https://ror.org/02xf0fd83', 'en', 1, 'https://ror.org/02xf0fd83 JSS Medical College and Hospital'), (2468, 'https://ror.org/02xf7p935', 'en', 1, 'https://ror.org/02xf7p935 Incheon National University 인천대학교'), (2469, 'https://ror.org/02xgzjz11', 'en', 1, 'https://ror.org/02xgzjz11 Hanil General Hospital 한전병원'), (2470, 'https://ror.org/02xh9x144', 'en', 1, 'https://ror.org/02xh9x144 University of Prince Edward Island Université de l''Île-du-prince-Édouard'), (2471, 'https://ror.org/02xj89f04', 'pt', 1, 'https://ror.org/02xj89f04 Universidade Veiga de Almeida'), (2472, 'https://ror.org/02xkmx604', 'en', 1, 'https://ror.org/02xkmx604 Kosin University Gospel Hospital 고신대학교 복음병원'), (2473, 'https://ror.org/02xkx3e48', 'en', 1, 'https://ror.org/02xkx3e48 Queen Mary Hospital 瑪麗醫院'), (2474, 'https://ror.org/02xmq6r77', 'en', 1, 'https://ror.org/02xmq6r77 Kibi International University 吉備国際大学'), (2475, 'https://ror.org/02xpn4676', 'no_lang_code', 1, 'https://ror.org/02xpn4676 Micronet (United States)'), (2476, 'https://ror.org/02xtpdq88', 'es', 1, 'https://ror.org/02xtpdq88 Hospital Clínico de la Universidad de Chile'), (2477, 'https://ror.org/02xvk2686', 'en', 1, 'https://ror.org/02xvk2686 Muhimbili National Hospital'), (2478, 'https://ror.org/02xxgh713', 'en', 1, 'https://ror.org/02xxgh713 Sisters of Charity Hospital'), (2479, 'https://ror.org/02xyqwh78', 'no_lang_code', 1, 'https://ror.org/02xyqwh78 FEV (Germany)'), (2480, 'https://ror.org/02xz2v383', 'en', 1, 'https://ror.org/02xz2v383 National Council of Teachers of Mathematics'), (2481, 'https://ror.org/02y005z64', 'no_lang_code', 1, 'https://ror.org/02y005z64 Hokkaido hospital 北海道病院'), (2482, 'https://ror.org/02y041669', 'en', 1, 'https://ror.org/02y041669 Gannon University'), (2483, 'https://ror.org/02y070a55', 'en', 1, 'https://ror.org/02y070a55 Jackson Memorial Hospital'), (2484, 'https://ror.org/02y0es528', 'en', 1, 'https://ror.org/02y0es528 George Eliot Hospital NHS Trust'), (2485, 'https://ror.org/02y0wc381', 'en', 1, 'https://ror.org/02y0wc381 Pravara Institute of Medical Sciences'), (2486, 'https://ror.org/02y0x4c78', 'en', 1, 'https://ror.org/02y0x4c78 General Leonard Wood Army Community Hospital'), (2487, 'https://ror.org/02y2htg06', 'en', 1, 'https://ror.org/02y2htg06 Chi Mei Medical Center'), (2488, 'https://ror.org/02y4qch95', 'en', 1, 'https://ror.org/02y4qch95 Lovelace Medical Center'), (2489, 'https://ror.org/02y5qtc81', 'pt', 1, 'https://ror.org/02y5qtc81 Hospital Infantil Joana de Gusmão'), (2490, 'https://ror.org/02y9g2b52', 'en', 1, 'https://ror.org/02y9g2b52 Morehouse College'), (2491, 'https://ror.org/02y9nww90', 'en', 1, 'https://ror.org/02y9nww90 Chuo Kikuu cha Nairobi University of Nairobi'), (2492, 'https://ror.org/02y9x6z24', 'pt', 1, 'https://ror.org/02y9x6z24 Hospital de São Bernardo'), (2493, 'https://ror.org/02y9xvd02', 'en', 1, 'https://ror.org/02y9xvd02 Shenyang Medical College 沈阳医学院'), (2494, 'https://ror.org/02ya5qg51', 'no_lang_code', 1, 'https://ror.org/02ya5qg51 Electrosonics Medical'), (2495, 'https://ror.org/02yacz525', 'en', 1, 'https://ror.org/02yacz525 Dongzhimen Hospital Affiliated to Beijing University of Chinese Medicine 北京中医药大学东直门医院'), (2496, 'https://ror.org/02ybb5327', 'es', 1, 'https://ror.org/02ybb5327 Universidad Nacional Experimental Francisco de Miranda'), (2497, 'https://ror.org/02ybkn114', 'en', 1, 'https://ror.org/02ybkn114 Health Sciences Authority Penguasa Sains Kesihatan'), (2498, 'https://ror.org/02ybzrf68', 'en', 1, 'https://ror.org/02ybzrf68 Civil Hospital Karachi'), (2499, 'https://ror.org/02ycvrx49', 'en', 1, 'https://ror.org/02ycvrx49 Program for Appropriate Technology in Health'), (2500, 'https://ror.org/02ye8a398', 'en', 1, 'https://ror.org/02ye8a398 Keystone Symposia On Molecular and Cellular Biology'), (2501, 'https://ror.org/02yf2ch17', 'en', 1, 'https://ror.org/02yf2ch17 Carroll University'), (2502, 'https://ror.org/02yfanq70', 'en', 1, 'https://ror.org/02yfanq70 International Vaccine Institute'), (2503, 'https://ror.org/02yhdjx59', 'en', 1, 'https://ror.org/02yhdjx59 Interfaith Medical Center'), (2504, 'https://ror.org/02yj55q56', 'en', 1, 'https://ror.org/02yj55q56 Kunsan National University 군산대학교'), (2505, 'https://ror.org/02yjksy18', 'en', 1, 'https://ror.org/02yjksy18 Princess Anne Hospital'), (2506, 'https://ror.org/02yjrq169', 'en', 1, 'https://ror.org/02yjrq169 Savannah Technical College'), (2507, 'https://ror.org/02ynb0474', 'en', 1, 'https://ror.org/02ynb0474 Razi University دانشگاه رازی'), (2508, 'https://ror.org/02yq6my61', 'en', 1, 'https://ror.org/02yq6my61 Oklahoma Department of Mental Health and Substance Abuse Services'), (2509, 'https://ror.org/02ysppy04', 'tr', 1, 'https://ror.org/02ysppy04 Kayseri Eğitim ve Araştırma Hastanesi'), (2510, 'https://ror.org/02yvd4j36', 'en', 1, 'https://ror.org/02yvd4j36 Bundesamt für Strahlenschutz Federal Office for Radiation Protection'), (2511, 'https://ror.org/02yw7q747', 'en', 1, 'https://ror.org/02yw7q747 Palmetto Health Richland'), (2512, 'https://ror.org/02yx0mh38', 'en', 1, 'https://ror.org/02yx0mh38 University of Miami Hospital'), (2513, 'https://ror.org/02yx11005', 'en', 1, 'https://ror.org/02yx11005 Borders General Hospital'), (2514, 'https://ror.org/02yxyvn23', 'en', 1, 'https://ror.org/02yxyvn23 Mercy Medical Center North Iowa'), (2515, 'https://ror.org/02yyjwk88', 'no_lang_code', 1, 'https://ror.org/02yyjwk88 Kyowa-kako (Japan)'), (2516, 'https://ror.org/02yyv4c82', 'no_lang_code', 1, 'https://ror.org/02yyv4c82 Spire Corporation (United States)'), (2517, 'https://ror.org/02z125451', 'en', 1, 'https://ror.org/02z125451 Zhongshan Hospital of Xiamen University 厦门大学附属中山医院'), (2518, 'https://ror.org/02z2d6373', 'en', 1, 'https://ror.org/02z2d6373 Yunnan Academy of Agricultural Sciences 云南省农业科学院'), (2519, 'https://ror.org/02z310y44', 'en', 1, 'https://ror.org/02z310y44 Wheeling Jesuit University'), (2520, 'https://ror.org/02z58ft15', 'en', 1, 'https://ror.org/02z58ft15 University of Charleston Université de Charleston'), (2521, 'https://ror.org/02z5bnb65', 'en', 1, 'https://ror.org/02z5bnb65 College of Idaho'), (2522, 'https://ror.org/02z7dnx86', 'en', 1, 'https://ror.org/02z7dnx86 Japanese Red Cross Katsushika Maternity Hospital 日本赤十字社葛飾マタニティ病院'), (2523, 'https://ror.org/02z7qcb63', 'tr', 1, 'https://ror.org/02z7qcb63 Izmir Bozyaka Eğitim ve Araştırma Hastanesi'), (2524, 'https://ror.org/02z8mgx68', 'en', 1, 'https://ror.org/02z8mgx68 Exempla Saint Joseph Hospital'), (2525, 'https://ror.org/02z8t9146', 'en', 1, 'https://ror.org/02z8t9146 Mayo General Hospital'), (2526, 'https://ror.org/02z9d3e27', 'en', 1, 'https://ror.org/02z9d3e27 Dr. Mohan''s Diabetes Specialities Centre'), (2527, 'https://ror.org/02z9g9j20', 'en', 1, 'https://ror.org/02z9g9j20 BJC HealthCare'), (2528, 'https://ror.org/02z9t1k38', 'es', 1, 'https://ror.org/02z9t1k38 Universidad Anáhuac'), (2529, 'https://ror.org/02zc6c986', 'en', 1, 'https://ror.org/02zc6c986 Bethlem Royal Hospital'), (2530, 'https://ror.org/02zc85170', 'en', 1, 'https://ror.org/02zc85170 Babol Noshirvani University of Technology دانشگاه صنعتی نوشیروانی بابل'), (2531, 'https://ror.org/02ze5w302', 'en', 1, 'https://ror.org/02ze5w302 Tufts Children''s Hospital'), (2532, 'https://ror.org/02zfrea47', 'en', 1, 'https://ror.org/02zfrea47 Nacionalni Inštitut za Javno Zdravje National Institute of Public Health'), (2533, 'https://ror.org/02zg49d29', 'en', 1, 'https://ror.org/02zg49d29 Leicester General Hospital'), (2534, 'https://ror.org/02zg69r60', 'en', 1, 'https://ror.org/02zg69r60 Vancouver General Hospital'), (2535, 'https://ror.org/02zh77j65', 'en', 1, 'https://ror.org/02zh77j65 National Registry of Emergency Medical Technicians'), (2536, 'https://ror.org/02zha5019', 'en', 1, 'https://ror.org/02zha5019 Beijing Museum of Natural History 北京自然博物馆'), (2537, 'https://ror.org/02zme4e72', 'no_lang_code', 1, 'https://ror.org/02zme4e72 JEOL (Japan) 日本電子'), (2538, 'https://ror.org/02zn9x324', 'no_lang_code', 1, 'https://ror.org/02zn9x324 INTRASOFT International (Luxembourg)'), (2539, 'https://ror.org/02zpc2253', 'it', 1, 'https://ror.org/02zpc2253 Ospedale Santa Maria della Misericordia di Udine'), (2540, 'https://ror.org/02zrvx577', 'en', 1, 'https://ror.org/02zrvx577 University of Bahr El-Ghazal'), (2541, 'https://ror.org/02zvkba47', 'en', 1, 'https://ror.org/02zvkba47 National University of Comahue Universidad Nacional del Comahue'), (2542, 'https://ror.org/02zwb6n98', 'en', 1, 'https://ror.org/02zwb6n98 Hamad Medical Corporation'), (2543, 'https://ror.org/02zwxrr04', 'en', 1, 'https://ror.org/02zwxrr04 Sharp Grossmont Hospital'), (2544, 'https://ror.org/02zwyfg51', 'en', 1, 'https://ror.org/02zwyfg51 Virginia Union University'), (2545, 'https://ror.org/02zy72z44', 'no_lang_code', 1, 'https://ror.org/02zy72z44 Profectus Biosciences (United States)'), (2546, 'https://ror.org/02zzw8g45', 'en', 1, 'https://ror.org/02zzw8g45 Mayo Clinic Health System'), (2547, 'https://ror.org/0300pwe30', 'it', 1, 'https://ror.org/0300pwe30 Ospedale San Giovanni Bosco'); INSERT INTO `rors` VALUES (2548, 'https://ror.org/0300yd604', 'pt', 1, 'https://ror.org/0300yd604 Bahian School of Medicine and Public Health Escola Bahiana de Medicina e Saúde Pública'), (2549, 'https://ror.org/03025ga79', 'en', 1, 'https://ror.org/03025ga79 AC Camargo Hospital'), (2550, 'https://ror.org/03032jm09', 'en', 1, 'https://ror.org/03032jm09 Levine Children''s Hospital'), (2551, 'https://ror.org/0303y7a51', 'en', 1, 'https://ror.org/0303y7a51 Durban University of Technology Inyuvesi yasethekwini yezobuchwepheshe'), (2552, 'https://ror.org/03044am22', 'en', 1, 'https://ror.org/03044am22 Harrogate District Hospital'), (2553, 'https://ror.org/0304t8e63', 'pt', 1, 'https://ror.org/0304t8e63 Instituto Superior de Serviço Social do Porto'), (2554, 'https://ror.org/0305ndp35', 'no_lang_code', 1, 'https://ror.org/0305ndp35 MatTek Corporation (United States)'), (2555, 'https://ror.org/0306jgh11', 'en', 1, 'https://ror.org/0306jgh11 Association of Commonwealth Universities'), (2556, 'https://ror.org/0306r8m89', 'no_lang_code', 1, 'https://ror.org/0306r8m89 Enerkem (Canada)'), (2557, 'https://ror.org/0307h0f23', 'en', 1, 'https://ror.org/0307h0f23 Higher Institute of Police Sciences and Homeland Security Instituto Superior de Ciências Policiais e Segurança Interna'), (2558, 'https://ror.org/030b05n70', 'no_lang_code', 1, 'https://ror.org/030b05n70 123 Certification (Canada)'), (2559, 'https://ror.org/030d91z44', 'en', 1, 'https://ror.org/030d91z44 Royal Oldham Hospital'), (2560, 'https://ror.org/030e09f60', 'en', 1, 'https://ror.org/030e09f60 First Affiliated Hospital of Fujian Medical University 福建医科大学附属第一医院'), (2561, 'https://ror.org/030g3hg75', 'en', 1, 'https://ror.org/030g3hg75 Lankenau Institute for Medical Research'), (2562, 'https://ror.org/030j6qm79', 'en', 1, 'https://ror.org/030j6qm79 Northwick Park Hospital'), (2563, 'https://ror.org/030jhb479', 'en', 1, 'https://ror.org/030jhb479 Yunnan Nationalities University 云南民族大学'), (2564, 'https://ror.org/030kaa114', 'en', 1, 'https://ror.org/030kaa114 Alessandro Manzoni Hospital Ospedale Alessandro Manzoni'), (2565, 'https://ror.org/030m18266', 'en', 1, 'https://ror.org/030m18266 Tatung University 大同大學'), (2566, 'https://ror.org/030ma0n95', 'en', 1, 'https://ror.org/030ma0n95 Ralph H. Johnson VA Medical Center'), (2567, 'https://ror.org/030mbcp39', 'en', 1, 'https://ror.org/030mbcp39 Robert Jones and Agnes Hunt Orthopaedic Hospital'), (2568, 'https://ror.org/030p45079', 'no_lang_code', 1, 'https://ror.org/030p45079 Cleveland Medical Devices'), (2569, 'https://ror.org/030pk6463', 'no_lang_code', 1, 'https://ror.org/030pk6463 Univax (United States)'), (2570, 'https://ror.org/030pydv62', 'en', 1, 'https://ror.org/030pydv62 Norfolk State University Université d''État de norfolk'), (2571, 'https://ror.org/030rm3988', 'en', 1, 'https://ror.org/030rm3988 National Police Hospital 국립경찰병원'), (2572, 'https://ror.org/030s54078', 'en', 1, 'https://ror.org/030s54078 University of the Philippines Los Baños'), (2573, 'https://ror.org/030sc3x20', 'en', 1, 'https://ror.org/030sc3x20 First Affiliated Hospital of GuangXi Medical University'), (2574, 'https://ror.org/030tcms06', 'en', 1, 'https://ror.org/030tcms06 Rocky Mountain Biological Laboratory'), (2575, 'https://ror.org/030vg1t69', 'en', 1, 'https://ror.org/030vg1t69 Misr International University جامعة مصر الدولية'), (2576, 'https://ror.org/030wyr187', 'en', 1, 'https://ror.org/030wyr187 Finnish Institute of Occupational Health'), (2577, 'https://ror.org/0312m2266', 'en', 1, 'https://ror.org/0312m2266 University Hospital of Heraklion'), (2578, 'https://ror.org/0313f3w77', 'en', 1, 'https://ror.org/0313f3w77 Başkent University Hospital'), (2579, 'https://ror.org/0315ea826', 'en', 1, 'https://ror.org/0315ea826 Children''s Hospital Agia Sophia'), (2580, 'https://ror.org/031699d98', 'en', 1, 'https://ror.org/031699d98 Payame Noor University دانشگاه پیام نور'), (2581, 'https://ror.org/0317ekv86', 'en', 1, 'https://ror.org/0317ekv86 University of Bahrain جامعة البحرين'), (2582, 'https://ror.org/0317prg89', 'no_lang_code', 1, 'https://ror.org/0317prg89 Bastyr University'), (2583, 'https://ror.org/03181bn25', 'en', 1, 'https://ror.org/03181bn25 City College of San Francisco'), (2584, 'https://ror.org/031b7yx83', 'no_lang_code', 1, 'https://ror.org/031b7yx83 Lucigen Corporation'), (2585, 'https://ror.org/031bsb921', 'en', 1, 'https://ror.org/031bsb921 University of Mannheim Universität Mannheim'), (2586, 'https://ror.org/031e6xm45', 'es', 1, 'https://ror.org/031e6xm45 Universidad del Norte'), (2587, 'https://ror.org/031f8kt38', 'es', 1, 'https://ror.org/031f8kt38 Autonomous University of Hidalgo State Universidad Autónoma del Estado de Hidalgo'), (2588, 'https://ror.org/031g2ej16', 'no_lang_code', 1, 'https://ror.org/031g2ej16 Dow Chemical (Canada)'), (2589, 'https://ror.org/031hmx230', 'en', 1, 'https://ror.org/031hmx230 Tokyo Medical University Ibaraki Medical Center 東京医科大学茨城医療センター'), (2590, 'https://ror.org/031m0eg77', 'en', 1, 'https://ror.org/031m0eg77 Chung Hwa University of Medical Technology 中華醫事科技大學'), (2591, 'https://ror.org/031maes79', 'en', 1, 'https://ror.org/031maes79 Second Affiliated Hospital of Chengdu University of Traditional Chinese 成都中医药大学'), (2592, 'https://ror.org/031nbgr73', 'en', 1, 'https://ror.org/031nbgr73 Bedford Hospital NHS Trust'), (2593, 'https://ror.org/031pw0y55', 'en', 1, 'https://ror.org/031pw0y55 Dakota Wesleyan University'), (2594, 'https://ror.org/031sxg258', 'no_lang_code', 1, 'https://ror.org/031sxg258 Boehringer Ingelheim (Canada)'), (2595, 'https://ror.org/031w3f751', 'en', 1, 'https://ror.org/031w3f751 Tulane Medical Center'), (2596, 'https://ror.org/031wwqy14', 'en', 1, 'https://ror.org/031wwqy14 Sound Shore Medical Center'), (2597, 'https://ror.org/031xyzp67', 'en', 1, 'https://ror.org/031xyzp67 Social Security Children''s Hospital'), (2598, 'https://ror.org/031z68d90', 'fr', 1, 'https://ror.org/031z68d90 Institut Universitaire de Gériatrie de Montréal'), (2599, 'https://ror.org/031zc8d88', 'en', 1, 'https://ror.org/031zc8d88 City Hospital'), (2600, 'https://ror.org/0320rar10', 'en', 1, 'https://ror.org/0320rar10 MRIGlobal'), (2601, 'https://ror.org/0321tdt28', 'it', 1, 'https://ror.org/0321tdt28 Ospedale San Giovanni Antica Sede'), (2602, 'https://ror.org/032298f51', 'it', 1, 'https://ror.org/032298f51 Azienda Ospedaliera Sant''Andrea'), (2603, 'https://ror.org/0322mf940', 'en', 1, 'https://ror.org/0322mf940 Spartanburg Regional Medical Center'), (2604, 'https://ror.org/0322p7317', 'en', 1, 'https://ror.org/0322p7317 Kitakyushu Municipal Medical Center 北九州市立医療センター'), (2605, 'https://ror.org/03237y496', 'en', 1, 'https://ror.org/03237y496 Ahmadu Bello University Teaching Hospital'), (2606, 'https://ror.org/0327f3359', 'en', 1, 'https://ror.org/0327f3359 Anhui Agricultural University 安徽农业大学'), (2607, 'https://ror.org/032af5232', 'no_lang_code', 1, 'https://ror.org/032af5232 Gweru Provincial Hospital'), (2608, 'https://ror.org/032cjfs80', 'en', 1, 'https://ror.org/032cjfs80 Mind Research Network'), (2609, 'https://ror.org/032d59j24', 'en', 1, 'https://ror.org/032d59j24 Hospital Tan Tock Seng Tan Tock Seng Hospital மருத்துவமனையில்ல் 陈笃生医院'), (2610, 'https://ror.org/032fk0x53', 'en', 1, 'https://ror.org/032fk0x53 Urmia University دانشگاه ارومیه'), (2611, 'https://ror.org/032kmqj66', 'en', 1, 'https://ror.org/032kmqj66 Kettering General Hospital'), (2612, 'https://ror.org/032knn732', 'en', 1, 'https://ror.org/032knn732 Mayville State University'), (2613, 'https://ror.org/032kth403', 'en', 1, 'https://ror.org/032kth403 Rani Durgavati University'), (2614, 'https://ror.org/032m4kp77', 'en', 1, 'https://ror.org/032m4kp77 Iowa Department of Public Health'), (2615, 'https://ror.org/032nh7f71', 'en', 1, 'https://ror.org/032nh7f71 RTI Health Solutions'), (2616, 'https://ror.org/032p0xe91', 'no', 1, 'https://ror.org/032p0xe91 Privatsykehuset Haugesund'), (2617, 'https://ror.org/032ppma22', 'en', 1, 'https://ror.org/032ppma22 American Academy of Orthopaedic Surgeons'), (2618, 'https://ror.org/032q2fe98', 'en', 1, 'https://ror.org/032q2fe98 Michigan State Medical Society'), (2619, 'https://ror.org/032qfz281', 'en', 1, 'https://ror.org/032qfz281 Kaiser Permanente South San Francisco Medical Center'), (2620, 'https://ror.org/032x22645', 'en', 1, 'https://ror.org/032x22645 Zhongshan Hospital 中山医院'), (2621, 'https://ror.org/032xf8h46', 'en', 1, 'https://ror.org/032xf8h46 Kyonggi University 경기대학교'), (2622, 'https://ror.org/032y5zj91', 'en', 1, 'https://ror.org/032y5zj91 Military Medical Academy Военномедицинска академия'), (2623, 'https://ror.org/032zc6m47', 'en', 1, 'https://ror.org/032zc6m47 Bronson Methodist Hospital'), (2624, 'https://ror.org/0331pzy82', 'no_lang_code', 1, 'https://ror.org/0331pzy82 Miyata Eye Hospital 宮田眼科病院'), (2625, 'https://ror.org/033212v26', 'no_lang_code', 1, 'https://ror.org/033212v26 McPhee Research (United States)'), (2626, 'https://ror.org/0336f9q30', 'no_lang_code', 1, 'https://ror.org/0336f9q30 Suez (Canada)'), (2627, 'https://ror.org/03378k036', 'pt', 1, 'https://ror.org/03378k036 Institute of Higher Studies of Fafe Instituto de Estudos Superiores de Fafe LDA'), (2628, 'https://ror.org/03384k835', 'en', 1, 'https://ror.org/03384k835 Tokushima Red Cross Hospital 徳島赤十字病院'), (2629, 'https://ror.org/033dfb770', 'en', 1, 'https://ror.org/033dfb770 Fukuyama Cardiovascular Hospital 福山循環器病院'), (2630, 'https://ror.org/033gfa640', 'en', 1, 'https://ror.org/033gfa640 Royal Hospital Haslar'), (2631, 'https://ror.org/033kc7n58', 'no_lang_code', 1, 'https://ror.org/033kc7n58 Creusot-Loire Entreprises (France)'), (2632, 'https://ror.org/033t8gt11', 'en', 1, 'https://ror.org/033t8gt11 University of Forestry Лесотехнически университет'), (2633, 'https://ror.org/033tc5r37', 'en', 1, 'https://ror.org/033tc5r37 Institute of Dermatology & Venereology of the Yunnan Province'), (2634, 'https://ror.org/033vjpd42', 'en', 1, 'https://ror.org/033vjpd42 Belmont University'), (2635, 'https://ror.org/033vryh36', 'es', 1, 'https://ror.org/033vryh36 Tekniker'), (2636, 'https://ror.org/033xwx807', 'it', 1, 'https://ror.org/033xwx807 Policlinico Universitario di Catania'), (2637, 'https://ror.org/0340t0585', 'en', 1, 'https://ror.org/0340t0585 General Hospital of Shenyang Military Region 中国人民解放军沈阳军区总医院'), (2638, 'https://ror.org/0340wst14', 'en', 1, 'https://ror.org/0340wst14 Changzhi Medical College 长治医学院'), (2639, 'https://ror.org/0346ycw92', 'no_lang_code', 1, 'https://ror.org/0346ycw92 Saiseikai Central Hospital 東京都済生会中央病院'), (2640, 'https://ror.org/034adnw64', 'en', 1, 'https://ror.org/034adnw64 Durham VA Medical Center'), (2641, 'https://ror.org/034c1gc25', 'en', 1, 'https://ror.org/034c1gc25 Maine Medical Center'), (2642, 'https://ror.org/034c6s521', 'en', 1, 'https://ror.org/034c6s521 Amarillo VA Health Care System'), (2643, 'https://ror.org/034dczg46', 'en', 1, 'https://ror.org/034dczg46 Chandka Medical College'), (2644, 'https://ror.org/034de1n65', 'en', 1, 'https://ror.org/034de1n65 Utah Department of Health'), (2645, 'https://ror.org/034f0sr31', 'no_lang_code', 1, 'https://ror.org/034f0sr31 NuvOx Pharma (United States)'), (2646, 'https://ror.org/034fmtr90', 'en', 1, 'https://ror.org/034fmtr90 Empirica. Gesellschaft für Kommunikations- und Technologieforschung empirica - Communication and Technology Research'), (2647, 'https://ror.org/034pdr896', 'en', 1, 'https://ror.org/034pdr896 Dallas VA Medical Center'), (2648, 'https://ror.org/034t5cp02', 'en', 1, 'https://ror.org/034t5cp02 North Carolina Division of Public Health'), (2649, 'https://ror.org/034w83t88', 'tr', 1, 'https://ror.org/034w83t88 Özel Trakya Hastanesi'), (2650, 'https://ror.org/034xj0q80', 'en', 1, 'https://ror.org/034xj0q80 Orenburg State Medical Academy Оренбургский государственный медицинский университет'), (2651, 'https://ror.org/034zcbh25', 'tr', 1, 'https://ror.org/034zcbh25 Ergani Devlet Hastanesi'), (2652, 'https://ror.org/0351yd374', 'en', 1, 'https://ror.org/0351yd374 Shinkyo Hospital'), (2653, 'https://ror.org/0353kya20', 'pt', 1, 'https://ror.org/0353kya20 Hospital Curry Cabral'), (2654, 'https://ror.org/0353q6p88', 'en', 1, 'https://ror.org/0353q6p88 Sydney South West Area Health Service'), (2655, 'https://ror.org/0354m4207', 'no_lang_code', 1, 'https://ror.org/0354m4207 Kinexus Bioinformatics Corporation (Canada)'), (2656, 'https://ror.org/0356c4a29', 'en', 1, 'https://ror.org/0356c4a29 Läkemedelsverket Medical Products Agency'), (2657, 'https://ror.org/0357r2107', 'en', 1, 'https://ror.org/0357r2107 Ministry of Health'), (2658, 'https://ror.org/035a72598', 'en', 1, 'https://ror.org/035a72598 Lincoln Medical Center'), (2659, 'https://ror.org/035dmz332', 'en', 1, 'https://ror.org/035dmz332 World Health Organization - Australia'), (2660, 'https://ror.org/035gy9016', 'no_lang_code', 1, 'https://ror.org/035gy9016 Tecnatom (Spain)'), (2661, 'https://ror.org/035j0tq82', 'no_lang_code', 1, 'https://ror.org/035j0tq82 Orange (France)'), (2662, 'https://ror.org/035j3m047', 'en', 1, 'https://ror.org/035j3m047 New York Hall of Science'), (2663, 'https://ror.org/035khf156', 'en', 1, 'https://ror.org/035khf156 Hyogo Social Welfare Corporation 兵庫県立リハビリテーション中央病院'), (2664, 'https://ror.org/035mqap40', 'no_lang_code', 1, 'https://ror.org/035mqap40 Membrane Technology & Research (United States)'), (2665, 'https://ror.org/035n3nf68', 'en', 1, 'https://ror.org/035n3nf68 Security Forces Hospital'), (2666, 'https://ror.org/035p1zc77', 'en', 1, 'https://ror.org/035p1zc77 St John of Jerusalem Eye Hospital Group'), (2667, 'https://ror.org/035r7hb75', 'en', 1, 'https://ror.org/035r7hb75 Keimyung University Dongsan Medical Center 계명대학교 동산의료원'), (2668, 'https://ror.org/035rhx828', 'en', 1, 'https://ror.org/035rhx828 Kunming University 昆明学院'), (2669, 'https://ror.org/035t17984', 'en', 1, 'https://ror.org/035t17984 Beijing Jishuitan Hospital 北京市创伤骨科研究所'), (2670, 'https://ror.org/035vb3h42', 'en', 1, 'https://ror.org/035vb3h42 Kinderspital Zürich University Children''s Hospital Zurich'), (2671, 'https://ror.org/035xbsb93', 'en', 1, 'https://ror.org/035xbsb93 Al-Sabah Hospital'), (2672, 'https://ror.org/035xhk118', 'en', 1, 'https://ror.org/035xhk118 Audie L. Murphy Memorial VA Hospital'), (2673, 'https://ror.org/035y9xj66', 'en', 1, 'https://ror.org/035y9xj66 Consortium For Mathematics & Its Applications'), (2674, 'https://ror.org/035z2ew45', 'en', 1, 'https://ror.org/035z2ew45 Eastern Illinois University Université de l''illinois de l''est'), (2675, 'https://ror.org/035z6xf33', 'en', 1, 'https://ror.org/035z6xf33 Oklahoma Medical Research Foundation'), (2676, 'https://ror.org/0360cq027', 'en', 1, 'https://ror.org/0360cq027 LDS Hospital'), (2677, 'https://ror.org/0362za439', 'en', 1, 'https://ror.org/0362za439 Ministry of Health'), (2678, 'https://ror.org/03645mz20', 'nl', 1, 'https://ror.org/03645mz20 Stichting Technasium'), (2679, 'https://ror.org/0364a8z71', 'tr', 1, 'https://ror.org/0364a8z71 Denizli Devlet Hastanesi Denizli State Hospital'), (2680, 'https://ror.org/03661z977', 'no_lang_code', 1, 'https://ror.org/03661z977 HEF Groupe (France)'), (2681, 'https://ror.org/0367gm239', 'en', 1, 'https://ror.org/0367gm239 Eulji University Hospital 을지대학교병원'), (2682, 'https://ror.org/0367njg58', 'en', 1, 'https://ror.org/0367njg58 East Central University'), (2683, 'https://ror.org/0367sye10', 'nl', 1, 'https://ror.org/0367sye10 Atrium Medisch Centrum Parkstad'), (2684, 'https://ror.org/0368s4g32', 'en', 1, 'https://ror.org/0368s4g32 China Medical University Hospital'), (2685, 'https://ror.org/0369pvp92', 'no_lang_code', 1, 'https://ror.org/0369pvp92 Nanchang Hangkong University 南昌航空大学'), (2686, 'https://ror.org/0369st156', 'en', 1, 'https://ror.org/0369st156 Slippery Rock University'), (2687, 'https://ror.org/036a0e562', 'en', 1, 'https://ror.org/036a0e562 Baltimore VA Medical Center'), (2688, 'https://ror.org/036c27j91', 'en', 1, 'https://ror.org/036c27j91 Washington University Medical Center'), (2689, 'https://ror.org/036c3t778', 'en', 1, 'https://ror.org/036c3t778 Niigata Prefectural Museum of History 新潟県立歴史博物館'), (2690, 'https://ror.org/036dess41', 'pt', 1, 'https://ror.org/036dess41 Hospital do Desterro'), (2691, 'https://ror.org/036dkm174', 'es', 1, 'https://ror.org/036dkm174 Hospital Santa Caterina'), (2692, 'https://ror.org/036mbxj57', 'en', 1, 'https://ror.org/036mbxj57 Banff Mineral Springs Hospital'), (2693, 'https://ror.org/036njfn21', 'en', 1, 'https://ror.org/036njfn21 Ministry of Health'), (2694, 'https://ror.org/036nxkh98', 'en', 1, 'https://ror.org/036nxkh98 Carilion Roanoke Memorial Hospital'), (2695, 'https://ror.org/036qtaj98', 'en', 1, 'https://ror.org/036qtaj98 Greenwich Hospital'), (2696, 'https://ror.org/036s9kg65', 'en', 1, 'https://ror.org/036s9kg65 Monash Medical Centre'), (2697, 'https://ror.org/036sak533', 'en', 1, 'https://ror.org/036sak533 Southern Arkansas University'), (2698, 'https://ror.org/036sdak78', 'en', 1, 'https://ror.org/036sdak78 Educational Commission for Foreign Medical Graduates'), (2699, 'https://ror.org/036wxg427', 'no_lang_code', 1, 'https://ror.org/036wxg427 Jordan Hospital مستشفى الأردن'), (2700, 'https://ror.org/036yvre49', 'en', 1, 'https://ror.org/036yvre49 Kemerovo State University Кемеровский государственный университет'), (2701, 'https://ror.org/03720tm64', 'pt', 1, 'https://ror.org/03720tm64 Fundação Ricardo do Espírito Santo Silva'), (2702, 'https://ror.org/0372t5741', 'en', 1, 'https://ror.org/0372t5741 Gifu Pharmaceutical University 岐阜薬科大学'), (2703, 'https://ror.org/0373nm262', 'en', 1, 'https://ror.org/0373nm262 Kongju National University 공주대학교'), (2704, 'https://ror.org/03763ep67', 'en', 1, 'https://ror.org/03763ep67 Children''s Hospital of Pittsburgh'), (2705, 'https://ror.org/0376mc966', 'en', 1, 'https://ror.org/0376mc966 Haskell Indian Nations University'), (2706, 'https://ror.org/0376myh60', 'pt', 1, 'https://ror.org/0376myh60 Catholic University of Pelotas Universidade Católica de Pelotas'), (2707, 'https://ror.org/0376vhj74', 'en', 1, 'https://ror.org/0376vhj74 Lewis University'), (2708, 'https://ror.org/037767x92', 'en', 1, 'https://ror.org/037767x92 Himeji Medical Center 独立行政法人 国立病院機構 姫路医療センター'), (2709, 'https://ror.org/037a76178', 'en', 1, 'https://ror.org/037a76178 Handa City Hospital 半田市立半田病院'), (2710, 'https://ror.org/037d0vf92', 'en', 1, 'https://ror.org/037d0vf92 Nizhny Novgorod State Technical University Нижегородский государственный технический университет'), (2711, 'https://ror.org/037dvnz29', 'en', 1, 'https://ror.org/037dvnz29 Shriners Hospitals for Children - Houston'), (2712, 'https://ror.org/037f4ry86', 'en', 1, 'https://ror.org/037f4ry86 Regional West Medical Center'), (2713, 'https://ror.org/037m3rm63', 'en', 1, 'https://ror.org/037m3rm63 Japanese Red Cross Asahikawa Hospital 旭川赤十字病院'), (2714, 'https://ror.org/037m6e306', 'no_lang_code', 1, 'https://ror.org/037m6e306 Pera (United Kingdom)'), (2715, 'https://ror.org/037mpqg03', 'no_lang_code', 1, 'https://ror.org/037mpqg03 Xstrata (United Kingdom)'), (2716, 'https://ror.org/037nakk48', 'no_lang_code', 1, 'https://ror.org/037nakk48 Pinnacle Technology'), (2717, 'https://ror.org/037pmhh38', 'no_lang_code', 1, 'https://ror.org/037pmhh38 Physical Optics Corporation'), (2718, 'https://ror.org/037r57b62', 'en', 1, 'https://ror.org/037r57b62 Buddhist Tzu Chi General Hospital'), (2719, 'https://ror.org/037rt4a55', 'en', 1, 'https://ror.org/037rt4a55 National Academy of Agricultural Science 국립농업과학원'), (2720, 'https://ror.org/037s3ck33', 'en', 1, 'https://ror.org/037s3ck33 Shatin Hospital 沙田醫院'), (2721, 'https://ror.org/037s71n47', 'en', 1, 'https://ror.org/037s71n47 Imelda Hospital Imelda ziekenhuis'), (2722, 'https://ror.org/037v8w471', 'en', 1, 'https://ror.org/037v8w471 Memorial Hermann Institute for Rehabilitation and Research Foundation'), (2723, 'https://ror.org/037wegn60', 'en', 1, 'https://ror.org/037wegn60 University of the District of Columbia Université du district de columbia'), (2724, 'https://ror.org/037wq4b75', 'de', 1, 'https://ror.org/037wq4b75 Klinikum Ludwigshafen'), (2725, 'https://ror.org/037y5zq83', 'en', 1, 'https://ror.org/037y5zq83 Kolding Hospital'), (2726, 'https://ror.org/037ybm139', 'en', 1, 'https://ror.org/037ybm139 Baptist Medical Center Jacksonville'), (2727, 'https://ror.org/037ze7373', 'tr', 1, 'https://ror.org/037ze7373 Etlik Zübeyde Hanım Kadın Hastalıkları Eğitim ve Araştırma Hastanesi'), (2728, 'https://ror.org/0380w8h49', 'en', 1, 'https://ror.org/0380w8h49 Ealing Hospital NHS Trust'), (2729, 'https://ror.org/038152964', 'es', 1, 'https://ror.org/038152964 Hospital Riotinto'), (2730, 'https://ror.org/0382k6j58', 'en', 1, 'https://ror.org/0382k6j58 Nambu University'), (2731, 'https://ror.org/0382m3r69', 'en', 1, 'https://ror.org/0382m3r69 Dr Gray''s Hospital'), (2732, 'https://ror.org/038321296', 'en', 1, 'https://ror.org/038321296 Gladstone Institutes'), (2733, 'https://ror.org/0384ghs60', 'en', 1, 'https://ror.org/0384ghs60 National Center for Drug Screening 国家新药筛选中心'), (2734, 'https://ror.org/0389fv189', 'en', 1, 'https://ror.org/0389fv189 Guangxi Maternal and Child Health Hospital 广西妇幼保健院'), (2735, 'https://ror.org/0389pw608', 'en', 1, 'https://ror.org/0389pw608 Center for High Pressure Science and Technology Advanced Research 北京高压科学研究中心'), (2736, 'https://ror.org/0389pzc90', 'en', 1, 'https://ror.org/0389pzc90 Altai State Technical University Алтайский государственный технический университет имени И. И. Ползунова'), (2737, 'https://ror.org/038bgk418', 'en', 1, 'https://ror.org/038bgk418 Okayama Prefectural University 岡山県立大学'), (2738, 'https://ror.org/038c3w259', 'en', 1, 'https://ror.org/038c3w259 Kunming Medical University 昆明医科大学'), (2739, 'https://ror.org/038c5sp60', 'en', 1, 'https://ror.org/038c5sp60 Poudre Valley Hospital'), (2740, 'https://ror.org/038ckz871', 'no_lang_code', 1, 'https://ror.org/038ckz871 Kaneka (Japan) 株式会社カネカ'), (2741, 'https://ror.org/038cpkc46', 'en', 1, 'https://ror.org/038cpkc46 Northrop University'), (2742, 'https://ror.org/038d10y34', 'en', 1, 'https://ror.org/038d10y34 National Wildlife Health Center'), (2743, 'https://ror.org/038e9x269', 'no_lang_code', 1, 'https://ror.org/038e9x269 Kumaun University कुमाऊँ विश्वविद्यालय குமாவுன் பல்கலைக்கழகம்'), (2744, 'https://ror.org/038estk42', 'en', 1, 'https://ror.org/038estk42 Shinmatsudo Central General Hospital 新松戸中央総合病院'), (2745, 'https://ror.org/038fqcc39', 'en', 1, 'https://ror.org/038fqcc39 UPMC Hamot'), (2746, 'https://ror.org/038fwcw54', 'en', 1, 'https://ror.org/038fwcw54 National Satellite Ocean Application Service 国家卫星海洋应用中心'), (2747, 'https://ror.org/038h97h67', 'tr', 1, 'https://ror.org/038h97h67 Izmir Tepecik Eğitim ve Araştırma Hastanesi'), (2748, 'https://ror.org/038j9sn30', 'en', 1, 'https://ror.org/038j9sn30 Shanghai Institute of Hypertension'), (2749, 'https://ror.org/038jxf238', 'en', 1, 'https://ror.org/038jxf238 Natividad Medical Center'), (2750, 'https://ror.org/038mfx688', 'en', 1, 'https://ror.org/038mfx688 National Academy of Sciences'), (2751, 'https://ror.org/038mzt421', 'no_lang_code', 1, 'https://ror.org/038mzt421 Nerviano Medical Sciences'), (2752, 'https://ror.org/038nb9c73', 'en', 1, 'https://ror.org/038nb9c73 Olivet Nazarene University'), (2753, 'https://ror.org/038qbqz41', 'en', 1, 'https://ror.org/038qbqz41 Lovelace Respiratory Research Institute'), (2754, 'https://ror.org/038rhxb62', 'no_lang_code', 1, 'https://ror.org/038rhxb62 IM Systems (United States)'), (2755, 'https://ror.org/038v5dr76', 'en', 1, 'https://ror.org/038v5dr76 Rapid City Regional Hospital'), (2756, 'https://ror.org/038vg5g56', 'en', 1, 'https://ror.org/038vg5g56 Delaware County Memorial Hospital'), (2757, 'https://ror.org/038x2fh14', 'en', 1, 'https://ror.org/038x2fh14 Charles R. Drew University of Medicine and Science'), (2758, 'https://ror.org/038ygd080', 'en', 1, 'https://ror.org/038ygd080 Inner Mongolia Medical College Hospital 内蒙古医科大学附属医院'), (2759, 'https://ror.org/038yw9848', 'en', 1, 'https://ror.org/038yw9848 Kaiser Permanente Santa Clara Medical Center'), (2760, 'https://ror.org/038zf2n28', 'en', 1, 'https://ror.org/038zf2n28 Youngstown State University'), (2761, 'https://ror.org/0393ghj09', 'no_lang_code', 1, 'https://ror.org/0393ghj09 Habib hospital Thameur'), (2762, 'https://ror.org/03950pc16', 'en', 1, 'https://ror.org/03950pc16 Allergy and Asthma Medical Group and Research Center'), (2763, 'https://ror.org/03964hc96', 'en', 1, 'https://ror.org/03964hc96 Borgess Medical Center'), (2764, 'https://ror.org/0396v4y86', 'fr', 1, 'https://ror.org/0396v4y86 Hôpital Louis Pradel'), (2765, 'https://ror.org/039713658', 'en', 1, 'https://ror.org/039713658 First Affiliated Hospital of Chinese PLA General Hospital 中国人民解放军总医院第一附属医院'), (2766, 'https://ror.org/0397tsa92', 'en', 1, 'https://ror.org/0397tsa92 Clark Atlanta University'), (2767, 'https://ror.org/0398yj006', 'es', 1, 'https://ror.org/0398yj006 Hospital Muñiz, Hospital de Infecciosas “Dr. Francisco Javier Muñiz"'), (2768, 'https://ror.org/039ajs610', 'no_lang_code', 1, 'https://ror.org/039ajs610 Weyerhauser (Canada)'), (2769, 'https://ror.org/039bxh911', 'it', 1, 'https://ror.org/039bxh911 Ospedale Infermi di Rimini'), (2770, 'https://ror.org/039c6rk82', 'en', 1, 'https://ror.org/039c6rk82 Ninewells Hospital'), (2771, 'https://ror.org/039cbw303', 'no_lang_code', 1, 'https://ror.org/039cbw303 Dhaka Shishu Hospital'), (2772, 'https://ror.org/039dmez53', 'en', 1, 'https://ror.org/039dmez53 LeMoyne–Owen College'), (2773, 'https://ror.org/039efr729', 'pt', 1, 'https://ror.org/039efr729 Instituto Português de Administração de Marketing'), (2774, 'https://ror.org/039evc422', 'en', 1, 'https://ror.org/039evc422 Municipal Institute for Medical Research'), (2775, 'https://ror.org/039f7g519', 'en', 1, 'https://ror.org/039f7g519 Springfield Technical Community College'), (2776, 'https://ror.org/039h3vh71', 'en', 1, 'https://ror.org/039h3vh71 Capital and Coast District Health Board'), (2777, 'https://ror.org/039mhfq69', 'en', 1, 'https://ror.org/039mhfq69 Bangkok Hospital โรงพยาบาลกรุงเทพ'), (2778, 'https://ror.org/039nw9e11', 'en', 1, 'https://ror.org/039nw9e11 Third Affiliated Hospital of Zhengzhou University 郑州大学第三附属医院'), (2779, 'https://ror.org/039p7ck60', 'en', 1, 'https://ror.org/039p7ck60 Dongduk Women''s University 동덕여자대학교'), (2780, 'https://ror.org/039q00p63', 'en', 1, 'https://ror.org/039q00p63 Edward Francis Small Teaching Hospital'), (2781, 'https://ror.org/039ryp971', 'en', 1, 'https://ror.org/039ryp971 Grodno State Medical University Гродзенскі дзяржаўны медыцынскі універсітэт Гродненский государственный медицинский университет'), (2782, 'https://ror.org/039se3q37', 'en', 1, 'https://ror.org/039se3q37 County Hospital'), (2783, 'https://ror.org/039thcs93', 'en', 1, 'https://ror.org/039thcs93 Sri Venkateswara Institute of Medical Sciences'), (2784, 'https://ror.org/039tm4h11', 'en', 1, 'https://ror.org/039tm4h11 Sree Balaji Dental College and Hospital'), (2785, 'https://ror.org/039tzxh97', 'en', 1, 'https://ror.org/039tzxh97 Queen Elizabeth the Queen Mother Hospital'), (2786, 'https://ror.org/039xw7n32', 'en', 1, 'https://ror.org/039xw7n32 Istituto Universitario di Studi Europei University Institute of European Studies'), (2787, 'https://ror.org/039ygjf22', 'en', 1, 'https://ror.org/039ygjf22 Jikei University School of Medicine 東京慈恵会医科大学'), (2788, 'https://ror.org/039zd5s34', 'en', 1, 'https://ror.org/039zd5s34 Integral University Université intégrale de lucknow इंटीग्रल विश्वविद्यालय'), (2789, 'https://ror.org/03a1gte98', 'en', 1, 'https://ror.org/03a1gte98 Agence spatiale canadienne Canadian Space Agency'), (2790, 'https://ror.org/03a1rt493', 'en', 1, 'https://ror.org/03a1rt493 Kätilöopisto Maternity Hospital'), (2791, 'https://ror.org/03a23ch04', 'en', 1, 'https://ror.org/03a23ch04 Health Protection Surveillance Centre Lárionad Faire um Chosaint Sláinte'), (2792, 'https://ror.org/03a3qwm26', 'en', 1, 'https://ror.org/03a3qwm26 Augustana University'), (2793, 'https://ror.org/03a4vma36', 'en', 1, 'https://ror.org/03a4vma36 Queensborough Community College, CUNY'), (2794, 'https://ror.org/03a6a0a65', 'pt', 1, 'https://ror.org/03a6a0a65 Universidade do Oeste de Santa Catarina'), (2795, 'https://ror.org/03a6zw892', 'en', 1, 'https://ror.org/03a6zw892 Lurie Children''s Hospital'), (2796, 'https://ror.org/03a8gac78', 'es', 1, 'https://ror.org/03a8gac78 Hospital Del Mar'), (2797, 'https://ror.org/03aam9155', 'en', 1, 'https://ror.org/03aam9155 KLE University'), (2798, 'https://ror.org/03ac64295', 'en', 1, 'https://ror.org/03ac64295 American Society For Engineering Education'), (2799, 'https://ror.org/03acrxj66', 'en', 1, 'https://ror.org/03acrxj66 North Memorial Health Care'), (2800, 'https://ror.org/03ag59v15', 'pt', 1, 'https://ror.org/03ag59v15 Universidade Estadual de Ciências da Saúde de Alagoas'), (2801, 'https://ror.org/03ag5ed62', 'no_lang_code', 1, 'https://ror.org/03ag5ed62 Allied Technology (United States)'), (2802, 'https://ror.org/03am3jt82', 'sv', 1, 'https://ror.org/03am3jt82 Helsingborgs lasarett'), (2803, 'https://ror.org/03andr831', 'en', 1, 'https://ror.org/03andr831 Christian Brothers University'), (2804, 'https://ror.org/03ap6wx93', 'en', 1, 'https://ror.org/03ap6wx93 Queen''s Medical Centre'), (2805, 'https://ror.org/03apjks92', 'en', 1, 'https://ror.org/03apjks92 Martin Luther King, Jr. Multi-Service Ambulatory Care Center'), (2806, 'https://ror.org/03atxgt72', 'en', 1, 'https://ror.org/03atxgt72 Coney Island Hospital'), (2807, 'https://ror.org/03aw5sn18', 'en', 1, 'https://ror.org/03aw5sn18 University of California San Diego Medical Center'), (2808, 'https://ror.org/03awtex73', 'no_lang_code', 1, 'https://ror.org/03awtex73 Arup Group (United States)'), (2809, 'https://ror.org/03ay8b853', 'en', 1, 'https://ror.org/03ay8b853 Police General Hospital โรงพยาบาลตำรวจ'), (2810, 'https://ror.org/03ayf0c60', 'en', 1, 'https://ror.org/03ayf0c60 Kagawa Nutrition University 女子栄養大学'), (2811, 'https://ror.org/03aypnd11', 'en', 1, 'https://ror.org/03aypnd11 Ayub Medical College'), (2812, 'https://ror.org/03b2b5383', 'en', 1, 'https://ror.org/03b2b5383 Diana Princess of Wales Hospital'), (2813, 'https://ror.org/03b353k89', 'en', 1, 'https://ror.org/03b353k89 Saint Michael''s College'), (2814, 'https://ror.org/03b3qq257', 'es', 1, 'https://ror.org/03b3qq257 Hospital Padre Hurtado'), (2815, 'https://ror.org/03b48gv34', 'en', 1, 'https://ror.org/03b48gv34 University of Mary Washington Université de mary washington'), (2816, 'https://ror.org/03b5q4637', 'en', 1, 'https://ror.org/03b5q4637 Educational Testing Service'), (2817, 'https://ror.org/03b6sp482', 'en', 1, 'https://ror.org/03b6sp482 Southern University System'), (2818, 'https://ror.org/03b705z14', 'es', 1, 'https://ror.org/03b705z14 Hospital Vargas'), (2819, 'https://ror.org/03b7nc883', 'en', 1, 'https://ror.org/03b7nc883 Colmery-O''Neil VA Medical Center'), (2820, 'https://ror.org/03b982x90', 'en', 1, 'https://ror.org/03b982x90 Post Graduate Medical Institute'), (2821, 'https://ror.org/03bag5a72', 'en', 1, 'https://ror.org/03bag5a72 Ladoke Akintola University of Technology Teaching Hospital'), (2822, 'https://ror.org/03bahkk91', 'en', 1, 'https://ror.org/03bahkk91 Arkansas Tech University'), (2823, 'https://ror.org/03bfp2076', 'en', 1, 'https://ror.org/03bfp2076 Beckman Laser Institute and Medical Clinic'), (2824, 'https://ror.org/03bg2rq25', 'en', 1, 'https://ror.org/03bg2rq25 American Public Health Association'), (2825, 'https://ror.org/03bj8zh59', 'no_lang_code', 1, 'https://ror.org/03bj8zh59 Tata Steel (United Kingdom)'), (2826, 'https://ror.org/03bpc5f92', 'en', 1, 'https://ror.org/03bpc5f92 Institute for Medical Research'), (2827, 'https://ror.org/03bq2c460', 'no_lang_code', 1, 'https://ror.org/03bq2c460 Barrick Gold (Canada)'), (2828, 'https://ror.org/03bqt8z64', 'no_lang_code', 1, 'https://ror.org/03bqt8z64 National Institute of Technology'), (2829, 'https://ror.org/03bs2yy11', 'en', 1, 'https://ror.org/03bs2yy11 Queen Victoria Hospital NHS Foundation Trust'), (2830, 'https://ror.org/03btpnr35', 'en', 1, 'https://ror.org/03btpnr35 Shaukat Khanum Memorial Cancer Hospital and Research Center شوکت خانم یادگاری سرطان شفاخانہ اور مرکز تحقیق'), (2831, 'https://ror.org/03bvvnt49', 'en', 1, 'https://ror.org/03bvvnt49 National Taiwan Ocean University'), (2832, 'https://ror.org/03bvx5w91', 'it', 1, 'https://ror.org/03bvx5w91 Fondazione Eni Enrico Mattei'), (2833, 'https://ror.org/03bwf4y78', 'sk', 1, 'https://ror.org/03bwf4y78 Slovak National Library Slovenska Narodna Kniznica, Slovenská národná knižnica'), (2834, 'https://ror.org/03bwzch55', 'en', 1, 'https://ror.org/03bwzch55 Kyushu Dental University 九州歯科大学'), (2835, 'https://ror.org/03bx60s49', 'en', 1, 'https://ror.org/03bx60s49 Cancer Prevention Institute of California'), (2836, 'https://ror.org/03by16w37', 'en', 1, 'https://ror.org/03by16w37 Chonbuk National University Hospital'), (2837, 'https://ror.org/03byx8t68', 'en', 1, 'https://ror.org/03byx8t68 Clarke University'), (2838, 'https://ror.org/03bzbh797', 'en', 1, 'https://ror.org/03bzbh797 UPMC Montefiore'), (2839, 'https://ror.org/03bzz8q98', 'en', 1, 'https://ror.org/03bzz8q98 175th Hospital of People''s Liberation Army 解放军第175医院'), (2840, 'https://ror.org/03c23hy31', 'no_lang_code', 1, 'https://ror.org/03c23hy31 One Cell Systems (United States)'), (2841, 'https://ror.org/03c266r37', 'en', 1, 'https://ror.org/03c266r37 Gifu Prefectural General Medical Center 岐阜県総合医療センター'), (2842, 'https://ror.org/03c3d1v10', 'en', 1, 'https://ror.org/03c3d1v10 General University Hospital of Patras'), (2843, 'https://ror.org/03c622h45', 'en', 1, 'https://ror.org/03c622h45 National Academy for State Health Policy'), (2844, 'https://ror.org/03c648b36', 'en', 1, 'https://ror.org/03c648b36 Ehime Prefectural Central Hospital 愛媛県立中央病院'), (2845, 'https://ror.org/03c7caz94', 'en', 1, 'https://ror.org/03c7caz94 Sri Aurobindo Institute of Medical Sciences'), (2846, 'https://ror.org/03c8c9n80', 'en', 1, 'https://ror.org/03c8c9n80 Cathay General Hospital'), (2847, 'https://ror.org/03c8ed890', 'en', 1, 'https://ror.org/03c8ed890 Sewickley Valley Hospital'), (2848, 'https://ror.org/03c8vvr84', 'en', 1, 'https://ror.org/03c8vvr84 University of Western States'), (2849, 'https://ror.org/03ca99543', 'tr', 1, 'https://ror.org/03ca99543 SSK İhtisas Hastanesi'), (2850, 'https://ror.org/03cbwf726', 'en', 1, 'https://ror.org/03cbwf726 Lakeland Regional Medical Center'), (2851, 'https://ror.org/03cc0mm23', 'en', 1, 'https://ror.org/03cc0mm23 Nassau University Medical Center'), (2852, 'https://ror.org/03cf9xg09', 'en', 1, 'https://ror.org/03cf9xg09 California Institute for Medical Research'), (2853, 'https://ror.org/03cfvmk82', 'en', 1, 'https://ror.org/03cfvmk82 VA Sierra Nevada Health Care System'), (2854, 'https://ror.org/03cfz7739', 'no_lang_code', 1, 'https://ror.org/03cfz7739 Kawasaki Hospital 川崎病院'), (2855, 'https://ror.org/03chkg278', 'en', 1, 'https://ror.org/03chkg278 Coe College'), (2856, 'https://ror.org/03chnr738', 'en', 1, 'https://ror.org/03chnr738 Hope College'), (2857, 'https://ror.org/03cht9689', 'en', 1, 'https://ror.org/03cht9689 Royal Hospital'), (2858, 'https://ror.org/03cjj7d58', 'pt', 1, 'https://ror.org/03cjj7d58 Hospital Municipal Souza Aguiar'), (2859, 'https://ror.org/03cngf009', 'en', 1, 'https://ror.org/03cngf009 Craigavon Area Hospital'), (2860, 'https://ror.org/03cqd3e64', 'en', 1, 'https://ror.org/03cqd3e64 Connecticut Department of Public Health'), (2861, 'https://ror.org/03cqsth74', 'en', 1, 'https://ror.org/03cqsth74 Muhlenberg College'), (2862, 'https://ror.org/03cxsty68', 'pt', 1, 'https://ror.org/03cxsty68 Universidade Estadual do Centro-Oeste'), (2863, 'https://ror.org/03cyvdv85', 'en', 1, 'https://ror.org/03cyvdv85 First Affiliated Hospital of Wenzhou Medical University'), (2864, 'https://ror.org/03d0z1f54', 'no_lang_code', 1, 'https://ror.org/03d0z1f54 Electrosynthesis Company (United States)'), (2865, 'https://ror.org/03d1v2g75', 'no_lang_code', 1, 'https://ror.org/03d1v2g75 Epoch Biosciences (United States)'), (2866, 'https://ror.org/03d1wq758', 'en', 1, 'https://ror.org/03d1wq758 Maine Medical Center Research Institute'), (2867, 'https://ror.org/03d4d3711', 'en', 1, 'https://ror.org/03d4d3711 Central Taiwan University of Science and Technology'), (2868, 'https://ror.org/03d532p87', 'fr', 1, 'https://ror.org/03d532p87 Hôpital Xavier Arnozan'), (2869, 'https://ror.org/03d58dr58', 'en', 1, 'https://ror.org/03d58dr58 National Neuroscience Institute'), (2870, 'https://ror.org/03d5pp684', 'pt', 1, 'https://ror.org/03d5pp684 Escola Superior de Enfermagem de São José de Cluny'), (2871, 'https://ror.org/03d6dzy78', 'en', 1, 'https://ror.org/03d6dzy78 Karnataka Institute of Medical Sciences ಕರ್ನಾಟಕ ವೈದ್ಯಕೀಯ ವಿಜ್ಞಾನ ಸಂಸ್ಥೆ'), (2872, 'https://ror.org/03d7m4a98', 'no_lang_code', 1, 'https://ror.org/03d7m4a98 Ross Video (Canada)'), (2873, 'https://ror.org/03d8mqt26', 'en', 1, 'https://ror.org/03d8mqt26 Princess Royal University Hospital'), (2874, 'https://ror.org/03davap66', 'en', 1, 'https://ror.org/03davap66 Illinois State Museum'), (2875, 'https://ror.org/03db3by08', 'en', 1, 'https://ror.org/03db3by08 Northeast Radio Observatory Corporation'), (2876, 'https://ror.org/03dcdys28', 'en', 1, 'https://ror.org/03dcdys28 Alaska Department of Health and Social Services'), (2877, 'https://ror.org/03ddsp339', 'no_lang_code', 1, 'https://ror.org/03ddsp339 Pyrogenesis (Canada)'), (2878, 'https://ror.org/03ddz1316', 'en', 1, 'https://ror.org/03ddz1316 Anhui Provincial Center for Disease Control and Prevention 安徽省疾病预防控制中心'), (2879, 'https://ror.org/03dhz7247', 'en', 1, 'https://ror.org/03dhz7247 Research Centre for Medical Genetics'), (2880, 'https://ror.org/03djvm380', 'it', 1, 'https://ror.org/03djvm380 Ospedale Generale Regionale Francesco Miulli'), (2881, 'https://ror.org/03dke3h47', 'en', 1, 'https://ror.org/03dke3h47 Association of Science-Technology Centers'), (2882, 'https://ror.org/03dkpj951', 'en', 1, 'https://ror.org/03dkpj951 East Jefferson General Hospital'), (2883, 'https://ror.org/03dkyhy49', 'no_lang_code', 1, 'https://ror.org/03dkyhy49 Artann Laboratories, Inc.'), (2884, 'https://ror.org/03dm1pq74', 'en', 1, 'https://ror.org/03dm1pq74 Grant Medical College and Sir Jamshedjee Jeejeebhoy Group of Hospitals'), (2885, 'https://ror.org/03dm2se39', 'en', 1, 'https://ror.org/03dm2se39 Christ Hospital'), (2886, 'https://ror.org/03dnktm38', 'no_lang_code', 1, 'https://ror.org/03dnktm38 Scimar Engineering Ltd'), (2887, 'https://ror.org/03dqzan26', 'en', 1, 'https://ror.org/03dqzan26 Salem University'), (2888, 'https://ror.org/03dsc8d33', 'no_lang_code', 1, 'https://ror.org/03dsc8d33 Systems, Applications & Products in Data Processing (Germany)'), (2889, 'https://ror.org/03dsgss45', 'ca', 1, 'https://ror.org/03dsgss45 Hospital Mare de Déu de la Mercè'), (2890, 'https://ror.org/03dwvx056', 'tr', 1, 'https://ror.org/03dwvx056 Elazig Education and Research Hospital Elazığ Eğitim ve Araştırma Hastanesi'), (2891, 'https://ror.org/03dwx1z96', 'en', 1, 'https://ror.org/03dwx1z96 Maulana Azad Medical College மௌலானா ஆசாத் மருத்துவக் கல்லூரி'), (2892, 'https://ror.org/03dwxvb85', 'no_lang_code', 1, 'https://ror.org/03dwxvb85 Jamia Hamdard'), (2893, 'https://ror.org/03dx46b94', 'en', 1, 'https://ror.org/03dx46b94 Royal National Orthopaedic Hospital NHS Trust'), (2894, 'https://ror.org/03e05fb06', 'en', 1, 'https://ror.org/03e05fb06 DSO National Laboratories'), (2895, 'https://ror.org/03e1ayz78', 'en', 1, 'https://ror.org/03e1ayz78 University of Minnesota Medical Center'), (2896, 'https://ror.org/03e1xkn26', 'en', 1, 'https://ror.org/03e1xkn26 Florida Department of Health'), (2897, 'https://ror.org/03e269852', 'en', 1, 'https://ror.org/03e269852 Donetsk State University of Management Донецкий государственный университет управления Донецький державний університет управління'), (2898, 'https://ror.org/03e2qe334', 'no_lang_code', 1, 'https://ror.org/03e2qe334 Naresuan University มหาวิทยาลัยนเรศวร'), (2899, 'https://ror.org/03e36d037', 'es', 1, 'https://ror.org/03e36d037 ABC Medical Center Centro Médico ABC'), (2900, 'https://ror.org/03e4nh963', 'en', 1, 'https://ror.org/03e4nh963 Federal Medical Centre'), (2901, 'https://ror.org/03e8ncw23', 'en', 1, 'https://ror.org/03e8ncw23 Gunma Prefectural Institute of Public Health and Environmental Sciences 群馬県衛生環境研究所'), (2902, 'https://ror.org/03e8s1d88', 'en', 1, 'https://ror.org/03e8s1d88 Potsdam Institute for Climate Impact Research Potsdam-Institut für Klimafolgenforschung'), (2903, 'https://ror.org/03eaw8c11', 'en', 1, 'https://ror.org/03eaw8c11 Bethesda North Hospital'), (2904, 'https://ror.org/03ebg0v16', 'en', 1, 'https://ror.org/03ebg0v16 Boys Town'), (2905, 'https://ror.org/03edafd86', 'en', 1, 'https://ror.org/03edafd86 Bogomolets National Medical University Narodowy Medyczny Uniwersytet im. O.Bohomolca Национальный медицинский университет имени А. А. Богомольца Національний медичний університет імені Олександра Богомольця'), (2906, 'https://ror.org/03edth057', 'en', 1, 'https://ror.org/03edth057 Teikyo University Chiba Medical Center 帝京大学ちば総合医療センター'), (2907, 'https://ror.org/03efxpx82', 'it', 1, 'https://ror.org/03efxpx82 A. O. Ordine Mauriziano di Torino'), (2908, 'https://ror.org/03ej8bw49', 'en', 1, 'https://ror.org/03ej8bw49 Shanghai Changning Mental Health Center 长宁区精神卫生中心'), (2909, 'https://ror.org/03ej9xm26', 'pt', 1, 'https://ror.org/03ej9xm26 Hospital de Clínicas Universidade Federal do Paraná'), (2910, 'https://ror.org/03eksqx74', 'en', 1, 'https://ror.org/03eksqx74 Winthrop-University Hospital'), (2911, 'https://ror.org/03ekzka28', 'en', 1, 'https://ror.org/03ekzka28 Antioch University'), (2912, 'https://ror.org/03enmdz06', 'en', 1, 'https://ror.org/03enmdz06 California State University, Fresno Université d''État de Californie à Fresno'), (2913, 'https://ror.org/03ephvw84', 'en', 1, 'https://ror.org/03ephvw84 Dronning Ingrids Hospital Queen Ingrid''s Hospital'), (2914, 'https://ror.org/03er5cb38', 'en', 1, 'https://ror.org/03er5cb38 Moisio Hospital Moision Sairaala'), (2915, 'https://ror.org/03et1qs84', 'en', 1, 'https://ror.org/03et1qs84 Centre médical universitaire de loma linda Loma Linda University Medical Center'), (2916, 'https://ror.org/03ew6dd87', 'en', 1, 'https://ror.org/03ew6dd87 East Tennessee Children''s Hospital'), (2917, 'https://ror.org/03exgrk66', 'en', 1, 'https://ror.org/03exgrk66 Ewha Womans University Medical Center 이화여자대학교 목동병원'), (2918, 'https://ror.org/03exj3651', 'en', 1, 'https://ror.org/03exj3651 Littlemore Hospital'), (2919, 'https://ror.org/03ezzqh77', 'en', 1, 'https://ror.org/03ezzqh77 Iwate Biotechnology Research Center 財団法人 岩手生物工学研究センター'), (2920, 'https://ror.org/03f1ecr94', 'en', 1, 'https://ror.org/03f1ecr94 Saint Thomas Midtown Hospital'), (2921, 'https://ror.org/03f27y887', 'es', 1, 'https://ror.org/03f27y887 National University of Asuncion Universidad Nacional de Asunción'), (2922, 'https://ror.org/03f3jde70', 'en', 1, 'https://ror.org/03f3jde70 Jaamacada Ummada Soomaaliyeed Somali National University Università nazionale somala'), (2923, 'https://ror.org/03f8drh85', 'no_lang_code', 1, 'https://ror.org/03f8drh85 Haibara General Hospital 榛原総合病院'), (2924, 'https://ror.org/03f91xw18', 'en', 1, 'https://ror.org/03f91xw18 Museum of the Earth'), (2925, 'https://ror.org/03f94es11', 'pt', 1, 'https://ror.org/03f94es11 Instituto Superior Dom Afonso III'), (2926, 'https://ror.org/03fa2nf38', 'en', 1, 'https://ror.org/03fa2nf38 Methodist University'), (2927, 'https://ror.org/03fakbf87', 'en', 1, 'https://ror.org/03fakbf87 Colorado Permanente Medical Group'), (2928, 'https://ror.org/03fbkqs26', 'no_lang_code', 1, 'https://ror.org/03fbkqs26 Bombardier (Canada)'), (2929, 'https://ror.org/03fcpsq87', 'en', 1, 'https://ror.org/03fcpsq87 Providence University 靜宜大學'), (2930, 'https://ror.org/03feyt230', 'en', 1, 'https://ror.org/03feyt230 Tougaloo College'), (2931, 'https://ror.org/03ff06b47', 'en', 1, 'https://ror.org/03ff06b47 Hardin–Simmons University'), (2932, 'https://ror.org/03ffc6g28', 'en', 1, 'https://ror.org/03ffc6g28 Kagawa National Children''s Hospital 国立病院機構香川小児病院'), (2933, 'https://ror.org/03fgkzb55', 'en', 1, 'https://ror.org/03fgkzb55 Novant Health Presbyterian Medical Center'), (2934, 'https://ror.org/03fh7t044', 'en', 1, 'https://ror.org/03fh7t044 University of Benghazi جامعة بنغازي'), (2935, 'https://ror.org/03fhjvs31', 'en', 1, 'https://ror.org/03fhjvs31 Center for Molecular Medicine and Immunology'), (2936, 'https://ror.org/03fkc8c64', 'en', 1, 'https://ror.org/03fkc8c64 University of the West Indies'), (2937, 'https://ror.org/03fng6237', 'en', 1, 'https://ror.org/03fng6237 Black Hills State University'), (2938, 'https://ror.org/03fpqn433', 'es', 1, 'https://ror.org/03fpqn433 Hospital Juan Ramón Jiménez'), (2939, 'https://ror.org/03fr85h91', 'en', 1, 'https://ror.org/03fr85h91 University of Uyo Teaching Hospital'), (2940, 'https://ror.org/03fs4aq04', 'en', 1, 'https://ror.org/03fs4aq04 Institute of Fundamental Technological Research Instytut Podstawowych Problemów Techniki'), (2941, 'https://ror.org/03ftky336', 'en', 1, 'https://ror.org/03ftky336 Saitama International Medical Center 埼玉医科大学国際医療センター'), (2942, 'https://ror.org/03fvp2v86', 'en', 1, 'https://ror.org/03fvp2v86 Lokmanya Tilak Municipal General Hospital and Lokmanya Tilak Municipal Medical College'), (2943, 'https://ror.org/03fvyqb23', 'en', 1, 'https://ror.org/03fvyqb23 Baptist Health Louisville'), (2944, 'https://ror.org/03fwxcd28', 'en', 1, 'https://ror.org/03fwxcd28 Sentara Norfolk General Hospital'), (2945, 'https://ror.org/03fz4ce66', 'en', 1, 'https://ror.org/03fz4ce66 Shanghai Institute of Hematology 上海血液学研究所'), (2946, 'https://ror.org/03fz57f90', 'hu', 1, 'https://ror.org/03fz57f90 Markusovszky Egyetemi Oktatókórház'), (2947, 'https://ror.org/03fzyry86', 'es', 1, 'https://ror.org/03fzyry86 Hospital Universitari Sagrat Cor'), (2948, 'https://ror.org/03g1nep17', 'no_lang_code', 1, 'https://ror.org/03g1nep17 3M (Canada)'), (2949, 'https://ror.org/03g35dg18', 'en', 1, 'https://ror.org/03g35dg18 Delaware State University'), (2950, 'https://ror.org/03g4hym73', 'en', 1, 'https://ror.org/03g4hym73 University of Birjand دانشگاه بیرجند'), (2951, 'https://ror.org/03g8yqb46', 'fi', 1, 'https://ror.org/03g8yqb46 Keski-Pohjanmaan keskussairaala'), (2952, 'https://ror.org/03gb7n667', 'en', 1, 'https://ror.org/03gb7n667 University General Hospital Attikon ΠΑΝΕΠΙΣΤΗΜΙΑΚΟ ΓΕΝΙΚΟ ΝΟΣΟΚΟΜΕΙΟ "ΑΤΤΙΚΟΝ"'), (2953, 'https://ror.org/03gbbyk68', 'en', 1, 'https://ror.org/03gbbyk68 Holmes Regional Medical Center'), (2954, 'https://ror.org/03gd1jf50', 'en', 1, 'https://ror.org/03gd1jf50 Shaikh Khalifa Medical City مدينة الشيخ خليفة الطبية'), (2955, 'https://ror.org/03gd3wz76', 'en', 1, 'https://ror.org/03gd3wz76 Sher-i-Kashmir Institute of Medical Sciences شیرِ کشمیر انسٹیچیوٹ آف میڈیکل سائنسز'), (2956, 'https://ror.org/03gd6ja31', 'en', 1, 'https://ror.org/03gd6ja31 Al-Ameen Medical College'), (2957, 'https://ror.org/03gfmry48', 'en', 1, 'https://ror.org/03gfmry48 Sheppard and Enoch Pratt Hospital'), (2958, 'https://ror.org/03gfs5c49', 'en', 1, 'https://ror.org/03gfs5c49 Nordic School of Public Health'), (2959, 'https://ror.org/03gjyng84', 'no_lang_code', 1, 'https://ror.org/03gjyng84 Sierra Wireless (Canada)'), (2960, 'https://ror.org/03gk81f96', 'en', 1, 'https://ror.org/03gk81f96 Kaohsiung Medical University'), (2961, 'https://ror.org/03gke3141', 'en', 1, 'https://ror.org/03gke3141 World Technology Evaluation Center'), (2962, 'https://ror.org/03gpsj088', 'en', 1, 'https://ror.org/03gpsj088 Jacobs Institute of Women''s Health'), (2963, 'https://ror.org/03grgv984', 'en', 1, 'https://ror.org/03grgv984 University Centre of Legal Medicine'), (2964, 'https://ror.org/03grprm46', 'en', 1, 'https://ror.org/03grprm46 Clinical Emergency Hospital Bucharest Spitalul Clinic de Urgenta Bucuresti'), (2965, 'https://ror.org/03gtdcg60', 'en', 1, 'https://ror.org/03gtdcg60 Diego Portales University Universidad Diego Portales'), (2966, 'https://ror.org/03gvpk069', 'no_lang_code', 1, 'https://ror.org/03gvpk069 Edendale Hospital'), (2967, 'https://ror.org/03gzyz068', 'it', 1, 'https://ror.org/03gzyz068 Ospedale Annunziata di Cosenza'), (2968, 'https://ror.org/03h1jr755', 'en', 1, 'https://ror.org/03h1jr755 Argerich Hospital'), (2969, 'https://ror.org/03h2ajh11', 'en', 1, 'https://ror.org/03h2ajh11 Saint Francis Hospital & Medical Center'), (2970, 'https://ror.org/03h2bh287', 'en', 1, 'https://ror.org/03h2bh287 Oxford University Hospitals NHS Trust'); INSERT INTO `rors` VALUES (2971, 'https://ror.org/03h2c3g63', 'no_lang_code', 1, 'https://ror.org/03h2c3g63 Matériaux Blanchet'), (2972, 'https://ror.org/03h3yrx93', 'es', 1, 'https://ror.org/03h3yrx93 Hospital Pediátrico Moctezuma'), (2973, 'https://ror.org/03h4fx826', 'en', 1, 'https://ror.org/03h4fx826 Lehigh Valley Hospital'), (2974, 'https://ror.org/03h5v7z82', 'en', 1, 'https://ror.org/03h5v7z82 Connolly Hospital Blanchardstown Ospidéal Uí Chonghaile, Baile Bhlainséir'), (2975, 'https://ror.org/03hamhx47', 'en', 1, 'https://ror.org/03hamhx47 Universidad de Massachusetts Lowell University of Massachusetts Lowell'), (2976, 'https://ror.org/03haqmz43', 'fr', 1, 'https://ror.org/03haqmz43 Université Félix Houphouët-Boigny'), (2977, 'https://ror.org/03hbd7c15', 'no_lang_code', 1, 'https://ror.org/03hbd7c15 Therapeutics Systems Research Laboratories (United States)'), (2978, 'https://ror.org/03hj7dq77', 'it', 1, 'https://ror.org/03hj7dq77 Ospedale Sandro Pertini'), (2979, 'https://ror.org/03hkffh19', 'en', 1, 'https://ror.org/03hkffh19 Legacy Emanuel Medical Center'), (2980, 'https://ror.org/03hqrv489', 'no_lang_code', 1, 'https://ror.org/03hqrv489 Advanced Liquid Logic'), (2981, 'https://ror.org/03hrxmf69', 'en', 1, 'https://ror.org/03hrxmf69 Newton Wellesley Hospital'), (2982, 'https://ror.org/03hvxkc45', 'en', 1, 'https://ror.org/03hvxkc45 Bibra International'), (2983, 'https://ror.org/03hwe2705', 'en', 1, 'https://ror.org/03hwe2705 UCSF Benioff Children''s Hospital'), (2984, 'https://ror.org/03hwmxn85', 'en', 1, 'https://ror.org/03hwmxn85 Harvard Vanguard Medical Associates'), (2985, 'https://ror.org/03j05zz84', 'en', 1, 'https://ror.org/03j05zz84 Philadelphia VA Medical Center'), (2986, 'https://ror.org/03j2sb517', 'en', 1, 'https://ror.org/03j2sb517 Slade Hospital'), (2987, 'https://ror.org/03j2vsq41', 'en', 1, 'https://ror.org/03j2vsq41 Beijing Great Wall Hospital 北京市长城医院'), (2988, 'https://ror.org/03j3q5a83', 'en', 1, 'https://ror.org/03j3q5a83 Magellan Health'), (2989, 'https://ror.org/03j42gp22', 'en', 1, 'https://ror.org/03j42gp22 University HealthSystem Consortium'), (2990, 'https://ror.org/03j4rdg62', 'en', 1, 'https://ror.org/03j4rdg62 Mater Mothers'' Hospital'), (2991, 'https://ror.org/03j53f755', 'en', 1, 'https://ror.org/03j53f755 ''''Καραμανδάνειο'''' Γενικό Νοσοκομείο Παίδων Πατρών General Hospital Pediatric Karamandanio'), (2992, 'https://ror.org/03j554d90', 'en', 1, 'https://ror.org/03j554d90 M.S. Ramaiah Medical College'), (2993, 'https://ror.org/03j6rvb05', 'fr', 1, 'https://ror.org/03j6rvb05 Hôpital Ambroise-Paré'), (2994, 'https://ror.org/03j78my65', 'en', 1, 'https://ror.org/03j78my65 Kaiser Foundation Hospital'), (2995, 'https://ror.org/03j7khn53', 'en', 1, 'https://ror.org/03j7khn53 Shizuoka Red Cross Hospital 静岡赤十字病院'), (2996, 'https://ror.org/03j808814', 'no_lang_code', 1, 'https://ror.org/03j808814 Hokkaido Central Hospital 北海道中央病院'), (2997, 'https://ror.org/03j9npf54', 'en', 1, 'https://ror.org/03j9npf54 Geisinger Medical Center'), (2998, 'https://ror.org/03ja1ak26', 'en', 1, 'https://ror.org/03ja1ak26 MedStar Georgetown University Hospital'), (2999, 'https://ror.org/03ja8fa88', 'en', 1, 'https://ror.org/03ja8fa88 Doctors Hospital'), (3000, 'https://ror.org/03jachw67', 'en', 1, 'https://ror.org/03jachw67 Elliot Hospital'), (3001, 'https://ror.org/03jayhg97', 'no_lang_code', 1, 'https://ror.org/03jayhg97 Milad Hospital بیمارستان میلاد'), (3002, 'https://ror.org/03jb9b006', 'en', 1, 'https://ror.org/03jb9b006 Dwight D. Eisenhower VA Medical Center'), (3003, 'https://ror.org/03jckbw05', 'en', 1, 'https://ror.org/03jckbw05 First Affiliated Hospital of Chengdu Medical College 成都医学院第一附属医院'), (3004, 'https://ror.org/03jcxa214', 'en', 1, 'https://ror.org/03jcxa214 National Maternity Hospital'), (3005, 'https://ror.org/03jd3cd78', 'en', 1, 'https://ror.org/03jd3cd78 Kobe Children''s Hospital 兵庫県立こども病院'), (3006, 'https://ror.org/03jd4q354', 'it', 1, 'https://ror.org/03jd4q354 Ospedale G.B. Morgagni - L.Pierantoni'), (3007, 'https://ror.org/03je4r797', 'en', 1, 'https://ror.org/03je4r797 Luodong Poh-Ai Hospital 羅東博愛醫院'), (3008, 'https://ror.org/03jeg4p28', 'en', 1, 'https://ror.org/03jeg4p28 Cone Health'), (3009, 'https://ror.org/03jfzsd28', 'en', 1, 'https://ror.org/03jfzsd28 Shigei Medical Research Institute 重井医学研究所'), (3010, 'https://ror.org/03jg32m15', 'en', 1, 'https://ror.org/03jg32m15 Dorothea Dix Hospital'), (3011, 'https://ror.org/03jgh1p68', 'en', 1, 'https://ror.org/03jgh1p68 Abington Memorial Hospital'), (3012, 'https://ror.org/03jh5a977', 'en', 1, 'https://ror.org/03jh5a977 Center for Information Technology'), (3013, 'https://ror.org/03jhnpw59', 'en', 1, 'https://ror.org/03jhnpw59 Museum Of Northern Arizona'), (3014, 'https://ror.org/03jmdp146', 'en', 1, 'https://ror.org/03jmdp146 Motilal Nehru Medical College'), (3015, 'https://ror.org/03jmfdf59', 'en', 1, 'https://ror.org/03jmfdf59 Agency for Healthcare Research and Quality'), (3016, 'https://ror.org/03jpekd50', 'en', 1, 'https://ror.org/03jpekd50 Guangdong General Hospital 广东省老年医学研究所'), (3017, 'https://ror.org/03jpj9789', 'en', 1, 'https://ror.org/03jpj9789 Glan Clwyd Hospital Ysbyty Glan Clwyd'), (3018, 'https://ror.org/03jpkw355', 'pt', 1, 'https://ror.org/03jpkw355 Instituto de Soldadura e Qualidade'), (3019, 'https://ror.org/03jpm9j23', 'pt', 1, 'https://ror.org/03jpm9j23 Hospital da Luz'), (3020, 'https://ror.org/03jrn4k58', 'no_lang_code', 1, 'https://ror.org/03jrn4k58 GlaxoSmithKline (China)'), (3021, 'https://ror.org/03js6zg56', 'en', 1, 'https://ror.org/03js6zg56 University of Agricultural Sciences, Bangalore'), (3022, 'https://ror.org/03jss6s30', 'pt', 1, 'https://ror.org/03jss6s30 Dr. Euryclides Hospital de Jesus Zerbini'), (3023, 'https://ror.org/03jt4wj37', 'de', 1, 'https://ror.org/03jt4wj37 Universitätskliniken Salzburg'), (3024, 'https://ror.org/03jv28t80', 'no_lang_code', 1, 'https://ror.org/03jv28t80 Lynntech (United States)'), (3025, 'https://ror.org/03jv45898', 'no_lang_code', 1, 'https://ror.org/03jv45898 Aphios Corporation'), (3026, 'https://ror.org/03jyr9x65', 'en', 1, 'https://ror.org/03jyr9x65 The Open University of Japan 放送大学'), (3027, 'https://ror.org/03k1gyh28', 'no_lang_code', 1, 'https://ror.org/03k1gyh28 SNC-Lavalin (Canada)'), (3028, 'https://ror.org/03k25vb36', 'en', 1, 'https://ror.org/03k25vb36 Indiana State Department of Education'), (3029, 'https://ror.org/03k3bq214', 'en', 1, 'https://ror.org/03k3bq214 National Center of Biomedical Analysis 国家生物医学分析中心'), (3030, 'https://ror.org/03k6ngg59', 'en', 1, 'https://ror.org/03k6ngg59 Friarage Hospital'), (3031, 'https://ror.org/03k793y62', 'en', 1, 'https://ror.org/03k793y62 Agricultural University of Tirana Universiteti Bujqësor i Tiranës Γεωπονικό πανεπιστήμιο Τιράνων'), (3032, 'https://ror.org/03k8anr87', 'en', 1, 'https://ror.org/03k8anr87 Health South Rehabilitation Hospital'), (3033, 'https://ror.org/03ka27b61', 'en', 1, 'https://ror.org/03ka27b61 West Bengal University of Animal and Fishery Sciences पश्चिम बंगाल मत्स्य एवं पशुपालन विज्ञान विश्वविद्यालय পশ্চিমবঙ্গ প্রাণী ও মৎস্যবিজ্ঞান বিশ্ববিদ্যালয়'), (3034, 'https://ror.org/03kcsjh25', 'en', 1, 'https://ror.org/03kcsjh25 National Institute of Statistical Sciences'), (3035, 'https://ror.org/03kcxpp45', 'en', 1, 'https://ror.org/03kcxpp45 Iwakuni Medical Center 岩国医療センター'), (3036, 'https://ror.org/03ke6tv85', 'en', 1, 'https://ror.org/03ke6tv85 University of Southern Maine'), (3037, 'https://ror.org/03ke9vf24', 'en', 1, 'https://ror.org/03ke9vf24 Al-Arab Medical University جامعة العرب الطبية'), (3038, 'https://ror.org/03khjyh83', 'en', 1, 'https://ror.org/03khjyh83 Genome Research Foundation'), (3039, 'https://ror.org/03kkr2s40', 'en', 1, 'https://ror.org/03kkr2s40 Pondicherry Institute of Medical Sciences'), (3040, 'https://ror.org/03kmrjq19', 'en', 1, 'https://ror.org/03kmrjq19 Departamento de Salud y Servicios para las Personas Mayores del Estado de Nueva Jersey New Jersey Department of Health'), (3041, 'https://ror.org/03kpa7r53', 'en', 1, 'https://ror.org/03kpa7r53 Herttoniemi Hospital'), (3042, 'https://ror.org/03kpvby98', 'en', 1, 'https://ror.org/03kpvby98 MRC Unit for Lifelong Health and Ageing'), (3043, 'https://ror.org/03ks67450', 'en', 1, 'https://ror.org/03ks67450 Inova Alexandria Hospital'), (3044, 'https://ror.org/03kv7mk61', 'no_lang_code', 1, 'https://ror.org/03kv7mk61 MPC Computers (United States)'), (3045, 'https://ror.org/03kw9gc02', 'en', 1, 'https://ror.org/03kw9gc02 Aligarh Muslim University Université musulmane d''aligarh جامعہ علی گڑھ अलीगढ़ मुस्लिम विश्वविद्यालय আলিগড় মুসলিম বিশ্ববিদ্যালয় ਅਲੀਗੜ ਮੁਸਲਿਮ ਯੂਨੀਵਰਸਿਟੀ அலிகார் முஸ்லிம் பல்கலைக்கழகம் అలీఘర్ ముస్లిం విశ్వవిద్యాలయం ಅಲಿಘರ್ ಮುಸ್ಲಿಮ್ ವಿಶ್ವವಿದ್ಯಾಲಯ അലിഗഢ് മുസ്ലിം സർവകലാശാല'), (3046, 'https://ror.org/03kzpyr73', 'en', 1, 'https://ror.org/03kzpyr73 MedStar Good Samaritan Hospital'), (3047, 'https://ror.org/03m04df46', 'en', 1, 'https://ror.org/03m04df46 University Hospital Magdeburg Universitätsklinikum Magdeburg'), (3048, 'https://ror.org/03m2nqg26', 'fr', 1, 'https://ror.org/03m2nqg26 Centre Hospitalier Universitaire Hassan II'), (3049, 'https://ror.org/03m5bv793', 'en', 1, 'https://ror.org/03m5bv793 Marianjoy Rehabilitation Hospital'), (3050, 'https://ror.org/03m6tev69', 'en', 1, 'https://ror.org/03m6tev69 Morristown Medical Center'), (3051, 'https://ror.org/03m7azy07', 'en', 1, 'https://ror.org/03m7azy07 Nebraska Department of Health and Human Services'), (3052, 'https://ror.org/03m908832', 'en', 1, 'https://ror.org/03m908832 Lehman College'), (3053, 'https://ror.org/03m964n84', 'en', 1, 'https://ror.org/03m964n84 Aichi University of Education 愛知教育大学'), (3054, 'https://ror.org/03max4q92', 'tr', 1, 'https://ror.org/03max4q92 Izmir Atatürk Eğitim ve Araştırma Hastanesi'), (3055, 'https://ror.org/03mbq3y29', 'en', 1, 'https://ror.org/03mbq3y29 Lahey Hospital and Medical Center'), (3056, 'https://ror.org/03mccxv57', 'en', 1, 'https://ror.org/03mccxv57 Derbyshire Children''s Hospital'), (3057, 'https://ror.org/03mdzf107', 'en', 1, 'https://ror.org/03mdzf107 Amala Institute of Medical Sciences അമല ഇൻസ്റ്റിട്ട്യൂട്ട് ഓഫ് മെഡിക്കൽ സയൻസസ്'), (3058, 'https://ror.org/03mehsr39', 'en', 1, 'https://ror.org/03mehsr39 Hokushin General Hospital 北信総合病院'), (3059, 'https://ror.org/03mfyz684', 'en', 1, 'https://ror.org/03mfyz684 King County Medical Examiner''s Office'), (3060, 'https://ror.org/03mh75s52', 'en', 1, 'https://ror.org/03mh75s52 Hangzhou Red Cross Hospital 杭州市红十字会医院'), (3061, 'https://ror.org/03mjtdk61', 'en', 1, 'https://ror.org/03mjtdk61 Mater Health Services'), (3062, 'https://ror.org/03mmk1j33', 'no_lang_code', 1, 'https://ror.org/03mmk1j33 Blackberry (Canada)'), (3063, 'https://ror.org/03mnm0t94', 'en', 1, 'https://ror.org/03mnm0t94 University of Wisconsin–Eau Claire Université du Wisconsin à Eau Claire'), (3064, 'https://ror.org/03mnxwj46', 'en', 1, 'https://ror.org/03mnxwj46 Metropolitan State University of Denver'), (3065, 'https://ror.org/03mpekj96', 'en', 1, 'https://ror.org/03mpekj96 MSPCA-Angell'), (3066, 'https://ror.org/03msdae35', 'en', 1, 'https://ror.org/03msdae35 Minnesota State University Moorhead Université d''État du minnesota'), (3067, 'https://ror.org/03mstc592', 'en', 1, 'https://ror.org/03mstc592 European Molecular Biology Laboratory Europäisches Laboratorium für Molekularbiologie'), (3068, 'https://ror.org/03mt09h51', 'en', 1, 'https://ror.org/03mt09h51 Lyndon Baines Johnson Hospital'), (3069, 'https://ror.org/03mt12903', 'es', 1, 'https://ror.org/03mt12903 Hospital San Juan de Dios'), (3070, 'https://ror.org/03mtnpp42', 'it', 1, 'https://ror.org/03mtnpp42 Ospedale Cannizzaro'), (3071, 'https://ror.org/03mv07c21', 'no_lang_code', 1, 'https://ror.org/03mv07c21 Arthur D. Little (Czechia)'), (3072, 'https://ror.org/03mv9x076', 'en', 1, 'https://ror.org/03mv9x076 HCI International Medical Centre'), (3073, 'https://ror.org/03mwa7s65', 'en', 1, 'https://ror.org/03mwa7s65 Ministry of Health Labour and Welfare 厚生労働省'), (3074, 'https://ror.org/03mwnnn55', 'en', 1, 'https://ror.org/03mwnnn55 Charleston Southern University'), (3075, 'https://ror.org/03mx23f83', 'es', 1, 'https://ror.org/03mx23f83 Hospital Montecelo'), (3076, 'https://ror.org/03n0fp725', 'en', 1, 'https://ror.org/03n0fp725 Children''s Hospital at Montefiore'), (3077, 'https://ror.org/03n0nnh89', 'ms', 1, 'https://ror.org/03n0nnh89 Hospital Kuala Lumpur'), (3078, 'https://ror.org/03n20pp93', 'en', 1, 'https://ror.org/03n20pp93 Awadhesh Pratap Singh University अवधेश प्रताप सिंह विश्वविद्यालय'), (3079, 'https://ror.org/03n2ay196', 'en', 1, 'https://ror.org/03n2ay196 South Texas Veterans Health Care System'), (3080, 'https://ror.org/03n34rg04', 'en', 1, 'https://ror.org/03n34rg04 Elmhurst Hospital Center'), (3081, 'https://ror.org/03n35e656', 'no_lang_code', 1, 'https://ror.org/03n35e656 Shuguang Hospital'), (3082, 'https://ror.org/03n3pz732', 'en', 1, 'https://ror.org/03n3pz732 Medwin Hospital'), (3083, 'https://ror.org/03n5gdd09', 'en', 1, 'https://ror.org/03n5gdd09 Anhui Provincial Hospital'), (3084, 'https://ror.org/03n60ms07', 'it', 1, 'https://ror.org/03n60ms07 Ospedale G.F. Ingrassia'), (3085, 'https://ror.org/03n6cf849', 'no_lang_code', 1, 'https://ror.org/03n6cf849 Ricerca sul Sistema Energetico (Italy)'), (3086, 'https://ror.org/03n6vs369', 'fr', 1, 'https://ror.org/03n6vs369 Hôpital Avicenne'), (3087, 'https://ror.org/03n85hy63', 'es', 1, 'https://ror.org/03n85hy63 Hospital Militar Dr. Carlos Arvelo'), (3088, 'https://ror.org/03na8p459', 'no_lang_code', 1, 'https://ror.org/03na8p459 Yokohama Rosai Hospital 横浜労災病院'), (3089, 'https://ror.org/03navsr28', 'fr', 1, 'https://ror.org/03navsr28 Hôpital Mère-Enfant'), (3090, 'https://ror.org/03nc3zw41', 'en', 1, 'https://ror.org/03nc3zw41 Matsue Red Cross Hospital 松江赤十字病院'), (3091, 'https://ror.org/03ncj7n33', 'no_lang_code', 1, 'https://ror.org/03ncj7n33 Jordanian Universities Network (Jordan)'), (3092, 'https://ror.org/03ndmsg87', 'no_lang_code', 1, 'https://ror.org/03ndmsg87 Charles River Laboratories (United States)'), (3093, 'https://ror.org/03ne66j56', 'en', 1, 'https://ror.org/03ne66j56 Flushing Hospital Medical Center'), (3094, 'https://ror.org/03nj2kd75', 'en', 1, 'https://ror.org/03nj2kd75 Houston Health and Human Services Department'), (3095, 'https://ror.org/03np13864', 'en', 1, 'https://ror.org/03np13864 Universidad de Trinidad y Tobago University of Trinidad and Tobago'), (3096, 'https://ror.org/03npxtg86', 'en', 1, 'https://ror.org/03npxtg86 Queen Elizabeth Hospital'), (3097, 'https://ror.org/03nr55d93', 'en', 1, 'https://ror.org/03nr55d93 North West Armed Forces Hospital مستشفى القوات المسلحة بالشمالية'), (3098, 'https://ror.org/03nrgvp52', 'en', 1, 'https://ror.org/03nrgvp52 Centinela Hospital Medical Center'), (3099, 'https://ror.org/03nscjy42', 'no_lang_code', 1, 'https://ror.org/03nscjy42 General Electric (Denmark)'), (3100, 'https://ror.org/03nteze27', 'en', 1, 'https://ror.org/03nteze27 National Taiwan University Hospital'), (3101, 'https://ror.org/03nvpm562', 'en', 1, 'https://ror.org/03nvpm562 Shimane University Hospital 島根大学病院'), (3102, 'https://ror.org/03nw9hs25', 'en', 1, 'https://ror.org/03nw9hs25 Alberta Hospital Edmonton'), (3103, 'https://ror.org/03nysxh02', 'no_lang_code', 1, 'https://ror.org/03nysxh02 NovoMedix (United States)'), (3104, 'https://ror.org/03nzegx43', 'es', 1, 'https://ror.org/03nzegx43 Cruces University Hospital Hospital de Cruces'), (3105, 'https://ror.org/03nzj6y61', 'en', 1, 'https://ror.org/03nzj6y61 Health Net'), (3106, 'https://ror.org/03p09n514', 'no_lang_code', 1, 'https://ror.org/03p09n514 Danya International, Inc.'), (3107, 'https://ror.org/03p30f964', 'en', 1, 'https://ror.org/03p30f964 Lincoln County Hospital'), (3108, 'https://ror.org/03p43tq86', 'ms', 1, 'https://ror.org/03p43tq86 Hospital Selayang'), (3109, 'https://ror.org/03panb555', 'en', 1, 'https://ror.org/03panb555 Lanzhou University of Technology 兰州理工大学'), (3110, 'https://ror.org/03pdc2j75', 'tr', 1, 'https://ror.org/03pdc2j75 Haydarpaşa Numune Eğitim ve Araştırma Hastanesi'), (3111, 'https://ror.org/03pfmgq50', 'en', 1, 'https://ror.org/03pfmgq50 Fooyin University'), (3112, 'https://ror.org/03pjj1n42', 'en', 1, 'https://ror.org/03pjj1n42 Dhahran Health Center'), (3113, 'https://ror.org/03pm2yz25', 'en', 1, 'https://ror.org/03pm2yz25 Kumamoto Health Science University 熊本保健科学大学'), (3114, 'https://ror.org/03pmd4250', 'no_lang_code', 1, 'https://ror.org/03pmd4250 Shinko Hospital 神鋼記念病院'), (3115, 'https://ror.org/03pq6f684', 'en', 1, 'https://ror.org/03pq6f684 Asian Institute of Gastroenterology'), (3116, 'https://ror.org/03pshcc38', 'en', 1, 'https://ror.org/03pshcc38 Halton General Hospital'), (3117, 'https://ror.org/03psk2k71', 'sl', 1, 'https://ror.org/03psk2k71 Splošna Bolnišnica Celje'), (3118, 'https://ror.org/03pskkc12', 'en', 1, 'https://ror.org/03pskkc12 National Academy of Medical Sciences'), (3119, 'https://ror.org/03pw3x387', 'no_lang_code', 1, 'https://ror.org/03pw3x387 Gangneung Asan Hospital'), (3120, 'https://ror.org/03pwcc270', 'en', 1, 'https://ror.org/03pwcc270 Auburn University System'), (3121, 'https://ror.org/03px4ez74', 'en', 1, 'https://ror.org/03px4ez74 Zoological Society of London'), (3122, 'https://ror.org/03pz1p187', 'en', 1, 'https://ror.org/03pz1p187 Alberta Health'), (3123, 'https://ror.org/03pz7fw94', 'it', 1, 'https://ror.org/03pz7fw94 Azienda Sanitaria Ospedaliera S.Croce e Carle Cuneo'), (3124, 'https://ror.org/03pzgk858', 'en', 1, 'https://ror.org/03pzgk858 Hospital South West Jutland Sydvestjysk Sygehus'), (3125, 'https://ror.org/03q01be91', 'en', 1, 'https://ror.org/03q01be91 Fujieda Municipal General Hospital 藤枝市立総合病院'), (3126, 'https://ror.org/03q0mrg27', 'es', 1, 'https://ror.org/03q0mrg27 Hospital Can Misses'), (3127, 'https://ror.org/03q1gvb68', 'no_lang_code', 1, 'https://ror.org/03q1gvb68 Neoleukin Therapeutics (Canada)'), (3128, 'https://ror.org/03q21mh05', 'en', 1, 'https://ror.org/03q21mh05 Cairo University Université du Caire جامعة القاهرة'), (3129, 'https://ror.org/03q3gmk48', 'en', 1, 'https://ror.org/03q3gmk48 MedStar National Rehabilitation Hospital'), (3130, 'https://ror.org/03q3s7962', 'en', 1, 'https://ror.org/03q3s7962 Huizhou University 惠州学院'), (3131, 'https://ror.org/03q45zd70', 'en', 1, 'https://ror.org/03q45zd70 South Dakota Foundation for Medical Care'), (3132, 'https://ror.org/03q4p1y48', 'en', 1, 'https://ror.org/03q4p1y48 Haga Hospital HagaZiekenhuis'), (3133, 'https://ror.org/03q7y2p06', 'en', 1, 'https://ror.org/03q7y2p06 Ibaraki Prefectural Central Hospital 茨城県立中央病院'), (3134, 'https://ror.org/03qaqdm58', 'sv', 1, 'https://ror.org/03qaqdm58 Capio Lundby Sjukhus'), (3135, 'https://ror.org/03qg42k57', 'no_lang_code', 1, 'https://ror.org/03qg42k57 Ishinomaki Senshu University 石巻専修大学'), (3136, 'https://ror.org/03qgg3111', 'es', 1, 'https://ror.org/03qgg3111 Universidad Centroccidental Lisandro Alvarado'), (3137, 'https://ror.org/03qjk6p58', 'en', 1, 'https://ror.org/03qjk6p58 Dayton VA Medical Center'), (3138, 'https://ror.org/03qqbe534', 'en', 1, 'https://ror.org/03qqbe534 Korea National University of Transportation 한국교통대학교'), (3139, 'https://ror.org/03qrkhd32', 'en', 1, 'https://ror.org/03qrkhd32 Heilongjiang Provincial Hospital 黑龙江省医院'), (3140, 'https://ror.org/03qrrp624', 'en', 1, 'https://ror.org/03qrrp624 Hirosaki National Hospital 国立病院機構弘前病院'), (3141, 'https://ror.org/03qv5tx95', 'no_lang_code', 1, 'https://ror.org/03qv5tx95 Hygeia Hospital Υγεία'), (3142, 'https://ror.org/03qvtpc38', 'en', 1, 'https://ror.org/03qvtpc38 Dong-A University 동아대학교'), (3143, 'https://ror.org/03qwghy04', 'en', 1, 'https://ror.org/03qwghy04 Duran i Reynals Hospital'), (3144, 'https://ror.org/03qxkp346', 'pt', 1, 'https://ror.org/03qxkp346 Hospital of St. Francis Xavier'), (3145, 'https://ror.org/03qyxqf94', 'en', 1, 'https://ror.org/03qyxqf94 Little Company of Mary Hospital'), (3146, 'https://ror.org/03qz9vy49', 'no_lang_code', 1, 'https://ror.org/03qz9vy49 Photon Imaging (United States)'), (3147, 'https://ror.org/03r1zz567', 'en', 1, 'https://ror.org/03r1zz567 Idaho Department of Health and Welfare'), (3148, 'https://ror.org/03r24vd05', 'en', 1, 'https://ror.org/03r24vd05 Robert Morris University Universidad Robert Morris'), (3149, 'https://ror.org/03r30hs79', 'de', 1, 'https://ror.org/03r30hs79 Israelitisches Krankenhaus'), (3150, 'https://ror.org/03r419717', 'en', 1, 'https://ror.org/03r419717 Kementerian Kesehatan Ministry of Health'), (3151, 'https://ror.org/03r56rv89', 'en', 1, 'https://ror.org/03r56rv89 King Edward VIII Hospital'), (3152, 'https://ror.org/03r5mk904', 'pt', 1, 'https://ror.org/03r5mk904 Hospital Sírio-Libanês Syrian-Lebanese Hospital'), (3153, 'https://ror.org/03r6k1a05', 'en', 1, 'https://ror.org/03r6k1a05 Institute of Occupational Medicine'), (3154, 'https://ror.org/03r6qg857', 'en', 1, 'https://ror.org/03r6qg857 Cambridge Hospital'), (3155, 'https://ror.org/03r776098', 'en', 1, 'https://ror.org/03r776098 Saint Alphonsus Regional Medical Center'), (3156, 'https://ror.org/03r781319', 'en', 1, 'https://ror.org/03r781319 Bronovo Hospital Bronovo Ziekenhuis'), (3157, 'https://ror.org/03r7eh333', 'en', 1, 'https://ror.org/03r7eh333 Tulane Lakeside Hospital'), (3158, 'https://ror.org/03rbn9086', 'en', 1, 'https://ror.org/03rbn9086 Monmouth College'), (3159, 'https://ror.org/03rfbyn37', 'en', 1, 'https://ror.org/03rfbyn37 Northampton General Hospital'), (3160, 'https://ror.org/03rhyss57', 'en', 1, 'https://ror.org/03rhyss57 Day General Hospital بیمارستان دی'), (3161, 'https://ror.org/03rj2a342', 'en', 1, 'https://ror.org/03rj2a342 Good Samaritan Hospital'), (3162, 'https://ror.org/03rjt0z37', 'en', 1, 'https://ror.org/03rjt0z37 German University in Cairo الجامعة الألمانية بالقاهرة'), (3163, 'https://ror.org/03rmwy138', 'en', 1, 'https://ror.org/03rmwy138 Children''s Hospital Zagreb Klinika za Djecje bolesti Zagreb'), (3164, 'https://ror.org/03rppv730', 'en', 1, 'https://ror.org/03rppv730 Aga Khan University Hospital Nairobi'), (3165, 'https://ror.org/03rq2h425', 'no_lang_code', 1, 'https://ror.org/03rq2h425 Shimane Prefectural Central Hospital 島根県立中央病院'), (3166, 'https://ror.org/03rq50d77', 'en', 1, 'https://ror.org/03rq50d77 Royal Victoria Hospital'), (3167, 'https://ror.org/03rqm8n56', 'en', 1, 'https://ror.org/03rqm8n56 Ivanovo State University Ивановский государственный университет'), (3168, 'https://ror.org/03rr7q548', 'en', 1, 'https://ror.org/03rr7q548 Armstrong Atlantic State University'), (3169, 'https://ror.org/03rtgjq94', 'en', 1, 'https://ror.org/03rtgjq94 University of South Carolina System'), (3170, 'https://ror.org/03rx7qt61', 'en', 1, 'https://ror.org/03rx7qt61 Maryland State Medical Society'), (3171, 'https://ror.org/03rx9r010', 'en', 1, 'https://ror.org/03rx9r010 Carraway Methodist Medical Center'), (3172, 'https://ror.org/03s18mw09', 'it', 1, 'https://ror.org/03s18mw09 Ospedale L. Bonomo'), (3173, 'https://ror.org/03s2fmv96', 'en', 1, 'https://ror.org/03s2fmv96 Lancaster General Hospital'), (3174, 'https://ror.org/03s2gs602', 'en', 1, 'https://ror.org/03s2gs602 Kawasaki University of Medical Welfare 川崎医療福祉大学'), (3175, 'https://ror.org/03s32c292', 'en', 1, 'https://ror.org/03s32c292 Queen Elizabeth II Hospital'), (3176, 'https://ror.org/03s33gc98', 'it', 1, 'https://ror.org/03s33gc98 Ospedale Bassini'), (3177, 'https://ror.org/03s3dhf22', 'en', 1, 'https://ror.org/03s3dhf22 Centre hospitalier de St- Mary St Mary''s Hospital'), (3178, 'https://ror.org/03s5q0090', 'en', 1, 'https://ror.org/03s5q0090 Asan Medical Center 서울아산병원'), (3179, 'https://ror.org/03s5r4e84', 'en', 1, 'https://ror.org/03s5r4e84 VA NY Harbor Healthcare System'), (3180, 'https://ror.org/03s8txj32', 'en', 1, 'https://ror.org/03s8txj32 Second Affiliated Hospital of Harbin Medical University'), (3181, 'https://ror.org/03s9ada67', 'en', 1, 'https://ror.org/03s9ada67 HealthPartners'), (3182, 'https://ror.org/03s9jrm13', 'no_lang_code', 1, 'https://ror.org/03s9jrm13 Kwong Wah Hospital 廣華醫院'), (3183, 'https://ror.org/03sbc8x80', 'fr', 1, 'https://ror.org/03sbc8x80 Centre Hospitalier Universitaire Ibn Rochd'), (3184, 'https://ror.org/03sbhge02', 'en', 1, 'https://ror.org/03sbhge02 Hallym University 한림대학교'), (3185, 'https://ror.org/03sc99320', 'en', 1, 'https://ror.org/03sc99320 Hitachi General Hospital 日立総合病院'), (3186, 'https://ror.org/03scbek41', 'en', 1, 'https://ror.org/03scbek41 Royal Orthopaedic Hospital'), (3187, 'https://ror.org/03se9eg94', 'pt', 1, 'https://ror.org/03se9eg94 Hospital das Clínicas da Faculdade de Medicina da Universidade de São Paulo University of São Paulo Faculty of Medicine Clinics Hospital'), (3188, 'https://ror.org/03sf6p593', 'en', 1, 'https://ror.org/03sf6p593 Showa Women''s University 昭和女子大学'), (3189, 'https://ror.org/03sfkwk85', 'en', 1, 'https://ror.org/03sfkwk85 Rockefeller Foundation'), (3190, 'https://ror.org/03sfybe47', 'en', 1, 'https://ror.org/03sfybe47 BC Cancer Agency'), (3191, 'https://ror.org/03shav252', 'en', 1, 'https://ror.org/03shav252 Kazan State Technological University Казанский национальный исследовательский технологический университет'), (3192, 'https://ror.org/03sjjqm13', 'en', 1, 'https://ror.org/03sjjqm13 Inouye Eye Hospital 井上眼科病院'), (3193, 'https://ror.org/03sn6yr77', 'en', 1, 'https://ror.org/03sn6yr77 Point Blue Conservation Science'), (3194, 'https://ror.org/03snrmr61', 'en', 1, 'https://ror.org/03snrmr61 Genesys Regional Medical Center'), (3195, 'https://ror.org/03ss88z23', 'en', 1, 'https://ror.org/03ss88z23 Kagoshima University 鹿児島大学'), (3196, 'https://ror.org/03sswts20', 'en', 1, 'https://ror.org/03sswts20 University of Mobile Université de mobile'), (3197, 'https://ror.org/03ssyyt85', 'en', 1, 'https://ror.org/03ssyyt85 Ottawa County Health Department'), (3198, 'https://ror.org/03sz8rb35', 'es', 1, 'https://ror.org/03sz8rb35 Hospital General Universitario De Valencia'), (3199, 'https://ror.org/03t0zwh35', 'en', 1, 'https://ror.org/03t0zwh35 International Women''s Health Coalition'), (3200, 'https://ror.org/03t1yn780', 'en', 1, 'https://ror.org/03t1yn780 First Affiliated Hospital of Anhui Medical University'), (3201, 'https://ror.org/03t3q6164', 'en', 1, 'https://ror.org/03t3q6164 Rancho Los Amigos National Rehabilitation Center'), (3202, 'https://ror.org/03t3qg659', 'en', 1, 'https://ror.org/03t3qg659 Substance Abuse and Mental Health Services Administration'), (3203, 'https://ror.org/03t40cz74', 'no_lang_code', 1, 'https://ror.org/03t40cz74 Hypres (United States)'), (3204, 'https://ror.org/03t4gtw27', 'ro', 1, 'https://ror.org/03t4gtw27 Spitalul Clinic de Urgenta Sfantul Ioan'), (3205, 'https://ror.org/03t78za89', 'en', 1, 'https://ror.org/03t78za89 Regional Medical Center'), (3206, 'https://ror.org/03t7m8092', 'en', 1, 'https://ror.org/03t7m8092 Public Health Foundation Enterprises'), (3207, 'https://ror.org/03t8gvx47', 'en', 1, 'https://ror.org/03t8gvx47 Rampton Hospital'), (3208, 'https://ror.org/03tatzf36', 'en', 1, 'https://ror.org/03tatzf36 Shandong Eye Institute & Hospital 山东省眼科研究所青岛与医院'), (3209, 'https://ror.org/03tbh6y23', 'en', 1, 'https://ror.org/03tbh6y23 University of the Philippines Diliman'), (3210, 'https://ror.org/03tds6380', 'en', 1, 'https://ror.org/03tds6380 Ohio Department of Mental Health & Addiction Services'), (3211, 'https://ror.org/03teaad16', 'en', 1, 'https://ror.org/03teaad16 Rex Hospital'), (3212, 'https://ror.org/03tf96d34', 'it', 1, 'https://ror.org/03tf96d34 Azienda Ospedaliera Universitaria Policlinico "G. Martino"'), (3213, 'https://ror.org/03tfy3c27', 'es', 1, 'https://ror.org/03tfy3c27 Hospital Vega Baja'), (3214, 'https://ror.org/03tg0z446', 'en', 1, 'https://ror.org/03tg0z446 Odisha University of Agriculture and Technology उडिसा कृषि एवं प्रौद्योगिकी विश्वविद्यालय'), (3215, 'https://ror.org/03thhhv76', 'en', 1, 'https://ror.org/03thhhv76 American Type Culture Collection'), (3216, 'https://ror.org/03thzz813', 'en', 1, 'https://ror.org/03thzz813 Meikai University 明海大学'), (3217, 'https://ror.org/03tkfgy13', 'en', 1, 'https://ror.org/03tkfgy13 Simanogleio-Amalia Fleming General Hospital Σισμανόγλειο-Αμαλία Φλέμινγκ Γενικό Νοσοκομείο'), (3218, 'https://ror.org/03tktyg33', 'en', 1, 'https://ror.org/03tktyg33 Western Oklahoma State College'), (3219, 'https://ror.org/03tn5ee41', 'en', 1, 'https://ror.org/03tn5ee41 Benha University Université de Banha جامعة بنها'), (3220, 'https://ror.org/03tp0ty93', 'en', 1, 'https://ror.org/03tp0ty93 Geha Mental Health Center המרכז לבריאות הנפש גהה'), (3221, 'https://ror.org/03tqnz817', 'en', 1, 'https://ror.org/03tqnz817 Sachs'' Children and Youth Hospital'), (3222, 'https://ror.org/03tr4r126', 'en', 1, 'https://ror.org/03tr4r126 Narayan Medical College and Hospital'), (3223, 'https://ror.org/03tth1e03', 'en', 1, 'https://ror.org/03tth1e03 University of Life Sciences in Poznań Uniwersytet Przyrodniczy w Poznaniu'), (3224, 'https://ror.org/03tv0az53', 'en', 1, 'https://ror.org/03tv0az53 Fairfield General Hospital'), (3225, 'https://ror.org/03ty5px05', 'en', 1, 'https://ror.org/03ty5px05 Hunan Entry-Exit Inspection and Quarantine Bureau'), (3226, 'https://ror.org/03ty7jy62', 'en', 1, 'https://ror.org/03ty7jy62 Alexian Brothers Medical Center'), (3227, 'https://ror.org/03v188q73', 'en', 1, 'https://ror.org/03v188q73 Earthquake Engineering Research Institute'), (3228, 'https://ror.org/03v4m1x12', 'en', 1, 'https://ror.org/03v4m1x12 Damghan University دانشگاه دامغان'), (3229, 'https://ror.org/03v6t2982', 'en', 1, 'https://ror.org/03v6t2982 Moses Taylor Hospital'), (3230, 'https://ror.org/03v7hnv07', 'no_lang_code', 1, 'https://ror.org/03v7hnv07 Metaxa Hospital'), (3231, 'https://ror.org/03v85ar63', 'en', 1, 'https://ror.org/03v85ar63 Central University Hospital of Asturias'), (3232, 'https://ror.org/03v8v5y65', 'it', 1, 'https://ror.org/03v8v5y65 Consorzio Interuniversitario Nazionale per l''Informatica National Interuniversity Consortium for Informatics'), (3233, 'https://ror.org/03vaer060', 'en', 1, 'https://ror.org/03vaer060 MRC University of Glasgow Centre for Virus Research'), (3234, 'https://ror.org/03vamsh08', 'en', 1, 'https://ror.org/03vamsh08 County Durham and Darlington NHS Foundation Trust'), (3235, 'https://ror.org/03vb4dm14', 'en', 1, 'https://ror.org/03vb4dm14 Texas A&M University at Qatar جامعة تكساس أي اند إم'), (3236, 'https://ror.org/03vc5bf16', 'en', 1, 'https://ror.org/03vc5bf16 Cappagh National Orthopaedic Hospital'), (3237, 'https://ror.org/03vc89b25', 'en', 1, 'https://ror.org/03vc89b25 Osaka Bio Headquarters'), (3238, 'https://ror.org/03vd2y814', 'en', 1, 'https://ror.org/03vd2y814 Kitasato University Medical Center 北里大学メディカルセンター'), (3239, 'https://ror.org/03vdj0f87', 'en', 1, 'https://ror.org/03vdj0f87 AtlantiCare'), (3240, 'https://ror.org/03vf51s41', 'hr', 1, 'https://ror.org/03vf51s41 Klinički bolnički centar Osijek'), (3241, 'https://ror.org/03vgdd632', 'no_lang_code', 1, 'https://ror.org/03vgdd632 Ichor Medical Systems (United States)'), (3242, 'https://ror.org/03vgqy581', 'no_lang_code', 1, 'https://ror.org/03vgqy581 Asahikawa University 旭川大学'), (3243, 'https://ror.org/03vj41343', 'en', 1, 'https://ror.org/03vj41343 San Francicso Brain Research Institute & SAM Technology'), (3244, 'https://ror.org/03vj98x35', 'en', 1, 'https://ror.org/03vj98x35 Beijing Dao Pei Hospital 北京道培医院'), (3245, 'https://ror.org/03vjkf643', 'en', 1, 'https://ror.org/03vjkf643 Shanghai Tenth People''s Hospital 上海第十人民医院'), (3246, 'https://ror.org/03vkkz907', 'en', 1, 'https://ror.org/03vkkz907 Batra Hospital and Medical Research Centre'), (3247, 'https://ror.org/03vmdsx94', 'en', 1, 'https://ror.org/03vmdsx94 Nagara Medical Center 国立病院機構長良医療センター'), (3248, 'https://ror.org/03vn2ff22', 'en', 1, 'https://ror.org/03vn2ff22 Missouri Western State University'), (3249, 'https://ror.org/03vnftm46', 'no_lang_code', 1, 'https://ror.org/03vnftm46 Maxwell Sensors'), (3250, 'https://ror.org/03vnj0h28', 'en', 1, 'https://ror.org/03vnj0h28 Duke Children''s Hospital & Health Center'), (3251, 'https://ror.org/03vnshb93', 'en', 1, 'https://ror.org/03vnshb93 Transport for London'), (3252, 'https://ror.org/03vpd6e34', 'en', 1, 'https://ror.org/03vpd6e34 Hayatabad Medical Complex'), (3253, 'https://ror.org/03vt2s541', 'en', 1, 'https://ror.org/03vt2s541 Ministry of Health and Social Welfare'), (3254, 'https://ror.org/03vw2zn10', 'fr', 1, 'https://ror.org/03vw2zn10 Hôpital Saint-Vincent-de-Paul'), (3255, 'https://ror.org/03vwxd822', 'no_lang_code', 1, 'https://ror.org/03vwxd822 Chugoku Rosai Hospital 中国労災病院'), (3256, 'https://ror.org/03vz8ns51', 'en', 1, 'https://ror.org/03vz8ns51 Ziauddin University'), (3257, 'https://ror.org/03vzbgh69', 'en', 1, 'https://ror.org/03vzbgh69 University Medical Center Freiburg Universitätsklinikum Freiburg'), (3258, 'https://ror.org/03vzfth13', 'en', 1, 'https://ror.org/03vzfth13 Hospital for Special Care'), (3259, 'https://ror.org/03vzpaf33', 'en', 1, 'https://ror.org/03vzpaf33 Einstein Medical Center Philadelphia'), (3260, 'https://ror.org/03w0k0x36', 'en', 1, 'https://ror.org/03w0k0x36 Beijing Sport University 北京体育大学'), (3261, 'https://ror.org/03w0kj141', 'en', 1, 'https://ror.org/03w0kj141 Army Medical College'), (3262, 'https://ror.org/03w11wq45', 'es', 1, 'https://ror.org/03w11wq45 El Hospital General de Agudos Carlos G. Durand'), (3263, 'https://ror.org/03w1tbe79', 'no_lang_code', 1, 'https://ror.org/03w1tbe79 Molecular GPS Technologies (United States)'), (3264, 'https://ror.org/03w37n116', 'en', 1, 'https://ror.org/03w37n116 Alta Bates Summit Medical Center'), (3265, 'https://ror.org/03w44ff23', 'en', 1, 'https://ror.org/03w44ff23 Brigham and Women''s Faulkner Hospital'), (3266, 'https://ror.org/03w5gm511', 'en', 1, 'https://ror.org/03w5gm511 Adventist University of Health Sciences'), (3267, 'https://ror.org/03w5j8p12', 'en', 1, 'https://ror.org/03w5j8p12 Rega Institute for Medical Research'), (3268, 'https://ror.org/03w6p2n94', 'en', 1, 'https://ror.org/03w6p2n94 Bendigo Health'), (3269, 'https://ror.org/03w8m2977', 'no_lang_code', 1, 'https://ror.org/03w8m2977 Yibin University'), (3270, 'https://ror.org/03w94w157', 'en', 1, 'https://ror.org/03w94w157 Mater Private Hospital'), (3271, 'https://ror.org/03w9cdv26', 'no_lang_code', 1, 'https://ror.org/03w9cdv26 Maichin Dom Университетска акушеро-гинекологична болница “Майчин дом”'), (3272, 'https://ror.org/03wc8tg09', 'en', 1, 'https://ror.org/03wc8tg09 Jessop Hospital'), (3273, 'https://ror.org/03wckff62', 'no_lang_code', 1, 'https://ror.org/03wckff62 Southwest Sciences (United States)'), (3274, 'https://ror.org/03wed5r38', 'en', 1, 'https://ror.org/03wed5r38 Eginition Hospital'), (3275, 'https://ror.org/03wff9w51', 'en', 1, 'https://ror.org/03wff9w51 Sema Hastanesi Sema Hospital'), (3276, 'https://ror.org/03wg58p93', 'en', 1, 'https://ror.org/03wg58p93 Hamilton Medical Center'), (3277, 'https://ror.org/03wgfnb71', 'no_lang_code', 1, 'https://ror.org/03wgfnb71 Barron Associates (United States)'), (3278, 'https://ror.org/03wgqqb38', 'no_lang_code', 1, 'https://ror.org/03wgqqb38 Beijing HuiLongGuan Hospital 北京回龙观医院'), (3279, 'https://ror.org/03wgsss62', 'no_lang_code', 1, 'https://ror.org/03wgsss62 Aciéries Réunies de Burbach-Eich-Dudelange Arbed (Luxembourg) Vereinigte Stahlhütten Burbach-Eich-Düdelingen'), (3280, 'https://ror.org/03wkg3b53', 'en', 1, 'https://ror.org/03wkg3b53 National Eye Institute'), (3281, 'https://ror.org/03wkrdj07', 'no_lang_code', 1, 'https://ror.org/03wkrdj07 Anandaban Hospital'), (3282, 'https://ror.org/03wn09h25', 'no_lang_code', 1, 'https://ror.org/03wn09h25 Novelis (Canada)'), (3283, 'https://ror.org/03wq4px44', 'en', 1, 'https://ror.org/03wq4px44 North Medical Center 京都府立医科大学附属北部医療センター'), (3284, 'https://ror.org/03wwnw466', 'en', 1, 'https://ror.org/03wwnw466 Milpark Hospital'), (3285, 'https://ror.org/03wzyp716', 'en', 1, 'https://ror.org/03wzyp716 Mount Carmel Health'), (3286, 'https://ror.org/03x0d4x24', 'en', 1, 'https://ror.org/03x0d4x24 Pacific Northwest Diabetes Research Institute'), (3287, 'https://ror.org/03x1jna21', 'en', 1, 'https://ror.org/03x1jna21 Central China Normal University 华中师范大学'), (3288, 'https://ror.org/03x295n29', 'no_lang_code', 1, 'https://ror.org/03x295n29 Sant Parmanand Hospital'), (3289, 'https://ror.org/03x516a66', 'en', 1, 'https://ror.org/03x516a66 Bundesanstalt für Materialforschung und -prüfung Federal Institute For Materials Research and Testing'), (3290, 'https://ror.org/03x8jdc94', 'en', 1, 'https://ror.org/03x8jdc94 Lady Hardinge Medical College'), (3291, 'https://ror.org/03xbkmz44', 'en', 1, 'https://ror.org/03xbkmz44 Athens Naval & Veterans Hospital Ναυτικό Νοσοκομείο Αθηνών'), (3292, 'https://ror.org/03xg1f311', 'en', 1, 'https://ror.org/03xg1f311 Kansai University 関西大学'), (3293, 'https://ror.org/03xgh2v50', 'en', 1, 'https://ror.org/03xgh2v50 Toyama Prefectural University 富山県立大学'), (3294, 'https://ror.org/03xh40058', 'en', 1, 'https://ror.org/03xh40058 Ministry of Health وزارة الصحة'), (3295, 'https://ror.org/03xhrps63', 'en', 1, 'https://ror.org/03xhrps63 Central State University'), (3296, 'https://ror.org/03xhwyc44', 'en', 1, 'https://ror.org/03xhwyc44 Chongqing Emergency Medical Center 重庆市急救医疗中心'), (3297, 'https://ror.org/03xjacd83', 'en', 1, 'https://ror.org/03xjacd83 Cleveland Clinic'), (3298, 'https://ror.org/03xms6995', 'en', 1, 'https://ror.org/03xms6995 Central Police University'), (3299, 'https://ror.org/03xmsh521', 'en', 1, 'https://ror.org/03xmsh521 Bombay Hospital'), (3300, 'https://ror.org/03xp4dz54', 'en', 1, 'https://ror.org/03xp4dz54 Nebraska Wesleyan University'), (3301, 'https://ror.org/03xrts777', 'en', 1, 'https://ror.org/03xrts777 Shizuoka Medical Center 静岡医療センター'), (3302, 'https://ror.org/03xvpaf72', 'en', 1, 'https://ror.org/03xvpaf72 Wakasa History and Folklore Museum 福井県立 若狭歴史博物館'), (3303, 'https://ror.org/03xww6m08', 'en', 1, 'https://ror.org/03xww6m08 Nicolae Testemițanu State University of Medicine and Pharmacy Universitatea de Medicină și Farmacie Nicolae Testemițanu din Chișinău Государственный университет медицины и фармакологии имени Николая Тестемицяну'), (3304, 'https://ror.org/03xz3hj66', 'no_lang_code', 1, 'https://ror.org/03xz3hj66 Shonan Kamakura General Hospital 湘南鎌倉総合病院'), (3305, 'https://ror.org/03y1rev40', 'en', 1, 'https://ror.org/03y1rev40 Hyvinkää Hospital'), (3306, 'https://ror.org/03y2evj08', 'tr', 1, 'https://ror.org/03y2evj08 Göztepe Şafak Hastanesi'), (3307, 'https://ror.org/03y4myd35', 'en', 1, 'https://ror.org/03y4myd35 Infectious Disease Research Institute'), (3308, 'https://ror.org/03yb8aa18', 'it', 1, 'https://ror.org/03yb8aa18 Ospedale Santa Maria della Misericordia di Rovigo'), (3309, 'https://ror.org/03ycmew18', 'en', 1, 'https://ror.org/03ycmew18 Matsushita Memorial Hospital 松下記念病院'), (3310, 'https://ror.org/03ydkyb10', 'en', 1, 'https://ror.org/03ydkyb10 Sistema Universitario de Wisconsin University of Wisconsin System Université du Wisconsin'), (3311, 'https://ror.org/03ydmxb41', 'es', 1, 'https://ror.org/03ydmxb41 Hospital Alemán'), (3312, 'https://ror.org/03yegf956', 'en', 1, 'https://ror.org/03yegf956 Alice Springs Hospital'), (3313, 'https://ror.org/03yemaq40', 'en', 1, 'https://ror.org/03yemaq40 University of Findlay'), (3314, 'https://ror.org/03yjk2s16', 'fr', 1, 'https://ror.org/03yjk2s16 Centre Hospitalier National Universitaire de Fann'), (3315, 'https://ror.org/03yjkej49', 'en', 1, 'https://ror.org/03yjkej49 Center for Interuniversity Research and Analysis on Organizations'), (3316, 'https://ror.org/03yk5k102', 'en', 1, 'https://ror.org/03yk5k102 Institute of Child Health'), (3317, 'https://ror.org/03ynt1573', 'no_lang_code', 1, 'https://ror.org/03ynt1573 Ansaldo (Italy)'), (3318, 'https://ror.org/03ypbx660', 'no_lang_code', 1, 'https://ror.org/03ypbx660 Renji Hospital 上海交通大学医学院附属仁济医院'), (3319, 'https://ror.org/03ysk5e42', 'en', 1, 'https://ror.org/03ysk5e42 University of Suwon 수원대학교'), (3320, 'https://ror.org/03ysstz10', 'en', 1, 'https://ror.org/03ysstz10 Electronics and Telecommunications Research Institute 한국전자통신연구원'), (3321, 'https://ror.org/03yt4qx74', 'en', 1, 'https://ror.org/03yt4qx74 Kasumigaura Medical Center 霞ヶ浦医療センター'), (3322, 'https://ror.org/03yvcww04', 'en', 1, 'https://ror.org/03yvcww04 North Shore Hospital'), (3323, 'https://ror.org/03ywwzv91', 'no_lang_code', 1, 'https://ror.org/03ywwzv91 3C Institute'), (3324, 'https://ror.org/03yz7v531', 'en', 1, 'https://ror.org/03yz7v531 Mysore Medical College'), (3325, 'https://ror.org/03yzzaw34', 'it', 1, 'https://ror.org/03yzzaw34 Ospedale Regina Apostolorum'), (3326, 'https://ror.org/03z0bdc81', 'no_lang_code', 1, 'https://ror.org/03z0bdc81 Bundang Jesaeng Hospital 분당제생병원'), (3327, 'https://ror.org/03z27es23', 'en', 1, 'https://ror.org/03z27es23 Universidad Mayor de San Simón University of San Simón'), (3328, 'https://ror.org/03z2mza16', 'en', 1, 'https://ror.org/03z2mza16 Dewsbury and District Hospital'), (3329, 'https://ror.org/03z4rrt03', 'de', 1, 'https://ror.org/03z4rrt03 Lindenhofspital'), (3330, 'https://ror.org/03z6cqs20', 'es', 1, 'https://ror.org/03z6cqs20 Hospital Materno-Infantil'), (3331, 'https://ror.org/03z8sn326', 'en', 1, 'https://ror.org/03z8sn326 Women & Infants Hospital of Rhode Island'), (3332, 'https://ror.org/03z8x2j90', 'en', 1, 'https://ror.org/03z8x2j90 Frenchay Hospital'), (3333, 'https://ror.org/03zayce58', 'en', 1, 'https://ror.org/03zayce58 Princess Margaret Cancer Centre'), (3334, 'https://ror.org/03zeamg24', 'no_lang_code', 1, 'https://ror.org/03zeamg24 Kobe Asahi Hospital 神戸朝日病院'), (3335, 'https://ror.org/03zeek684', 'it', 1, 'https://ror.org/03zeek684 Consorzio Universitario In Ingegneria Della Qualita'), (3336, 'https://ror.org/03zeg3732', 'en', 1, 'https://ror.org/03zeg3732 Horton General Hospital'), (3337, 'https://ror.org/03zgmap36', 'en', 1, 'https://ror.org/03zgmap36 Easton Hospital'), (3338, 'https://ror.org/03zhhr656', 'en', 1, 'https://ror.org/03zhhr656 Kyoto University of Education 京都教育大学'), (3339, 'https://ror.org/03zhk7994', 'en', 1, 'https://ror.org/03zhk7994 London Chest Hospital'), (3340, 'https://ror.org/03zjj0p70', 'en', 1, 'https://ror.org/03zjj0p70 Population Council'), (3341, 'https://ror.org/03zkja782', 'en', 1, 'https://ror.org/03zkja782 Luton and Dunstable University Hospital NHS Foundation Trust'), (3342, 'https://ror.org/03zms7281', 'en', 1, 'https://ror.org/03zms7281 Good Samaritan Hospital'), (3343, 'https://ror.org/03zn9xk79', 'en', 1, 'https://ror.org/03zn9xk79 University Teaching Hospital'), (3344, 'https://ror.org/03zpnb459', 'no_lang_code', 1, 'https://ror.org/03zpnb459 Bikur Cholim Hospital'), (3345, 'https://ror.org/03zq81960', 'en', 1, 'https://ror.org/03zq81960 Hôpital général de kingston Kingston General Hospital'), (3346, 'https://ror.org/03zrwm897', 'en', 1, 'https://ror.org/03zrwm897 Technical University of Varna Технически университет - Варна'), (3347, 'https://ror.org/03zsbd109', 'en', 1, 'https://ror.org/03zsbd109 Hanwa Memorial Hospital 阪和記念病院'), (3348, 'https://ror.org/03zsjhd07', 'en', 1, 'https://ror.org/03zsjhd07 University of Arkansas at Pine Bluff Université de l''arkansas à pine bluff'), (3349, 'https://ror.org/03zstcc67', 'en', 1, 'https://ror.org/03zstcc67 Randolph–Macon College'), (3350, 'https://ror.org/03zvd4s03', 'en', 1, 'https://ror.org/03zvd4s03 WellStar Kennestone Hospital'), (3351, 'https://ror.org/03zwf0j41', 'en', 1, 'https://ror.org/03zwf0j41 Macclesfield District General Hospital'), (3352, 'https://ror.org/03zww1h73', 'en', 1, 'https://ror.org/03zww1h73 University Hospital of Ioannina'), (3353, 'https://ror.org/03zx0nf33', 'en', 1, 'https://ror.org/03zx0nf33 AcademyHealth'), (3354, 'https://ror.org/03zzj3f20', 'en', 1, 'https://ror.org/03zzj3f20 Fields Institute for Research in Mathematical Sciences'), (3355, 'https://ror.org/03zzjb946', 'en', 1, 'https://ror.org/03zzjb946 Nishinomiya Kyoritsu Neurosurgical Hospital 西宮協立脳神経外科病院'), (3356, 'https://ror.org/03zzvtn22', 'de', 1, 'https://ror.org/03zzvtn22 Klinikum im Friedrichshain'), (3357, 'https://ror.org/03zzyap02', 'en', 1, 'https://ror.org/03zzyap02 Tohoku Medical Megabank Organization 東北メディカル・メガバンク機構'), (3358, 'https://ror.org/03zzzks34', 'en', 1, 'https://ror.org/03zzzks34 Liverpool Hospital'), (3359, 'https://ror.org/0402ejh63', 'en', 1, 'https://ror.org/0402ejh63 La Jolla Institute For Molecular Medicine'), (3360, 'https://ror.org/0403w5x31', 'en', 1, 'https://ror.org/0403w5x31 Guglielmo da Saliceto Hospital'), (3361, 'https://ror.org/04043k259', 'en', 1, 'https://ror.org/04043k259 Austral University Universidad Austral'), (3362, 'https://ror.org/0404efv41', 'en', 1, 'https://ror.org/0404efv41 Mercy Medical Center'), (3363, 'https://ror.org/0405qn567', 'no_lang_code', 1, 'https://ror.org/0405qn567 Nerima General Hospital 練馬総合病院'), (3364, 'https://ror.org/0405thq08', 'en', 1, 'https://ror.org/0405thq08 Saint Ambrose University Université saint ambroise'), (3365, 'https://ror.org/0408b4j80', 'en', 1, 'https://ror.org/0408b4j80 B.J. Medical College'), (3366, 'https://ror.org/0408cp281', 'en', 1, 'https://ror.org/0408cp281 Delaware Department of Health and Social Services'), (3367, 'https://ror.org/0409zd934', 'en', 1, 'https://ror.org/0409zd934 Universidad de Cartagena University of Cartagena'), (3368, 'https://ror.org/040bb8882', 'pt', 1, 'https://ror.org/040bb8882 Hospital de São Marcos'), (3369, 'https://ror.org/040cn9093', 'en', 1, 'https://ror.org/040cn9093 Community Health Network'), (3370, 'https://ror.org/040cnym54', 'en', 1, 'https://ror.org/040cnym54 Pennington Biomedical Research Center'), (3371, 'https://ror.org/040cxgs87', 'no_lang_code', 1, 'https://ror.org/040cxgs87 Starlab Barcelona Sl'), (3372, 'https://ror.org/040d1yx23', 'no_lang_code', 1, 'https://ror.org/040d1yx23 Senvion SE (Germany)'), (3373, 'https://ror.org/040epzy68', 'en', 1, 'https://ror.org/040epzy68 Istanbul Memorial Hospital'), (3374, 'https://ror.org/040evg982', 'en', 1, 'https://ror.org/040evg982 Santobono Children''s Hospital'), (3375, 'https://ror.org/040f7tw31', 'no_lang_code', 1, 'https://ror.org/040f7tw31 Inuyama Chuo Hospital 犬山中央病院'), (3376, 'https://ror.org/040hwr020', 'en', 1, 'https://ror.org/040hwr020 Borough of Manhattan Community College'), (3377, 'https://ror.org/040jhkj51', 'fr', 1, 'https://ror.org/040jhkj51 Centre Hospitalier de Saint Jean de Dieu'), (3378, 'https://ror.org/040jk5g10', 'en', 1, 'https://ror.org/040jk5g10 Samuel Merritt University'), (3379, 'https://ror.org/040m2wv49', 'en', 1, 'https://ror.org/040m2wv49 Skaraborg Hospital Skaraborgs Sjukhus'), (3380, 'https://ror.org/040m56689', 'hu', 1, 'https://ror.org/040m56689 Baranya Megyei Kórház'), (3381, 'https://ror.org/040nggs60', 'en', 1, 'https://ror.org/040nggs60 West China Medical Center of Sichuan University 四川大学华西医学中心'), (3382, 'https://ror.org/040qhpb54', 'en', 1, 'https://ror.org/040qhpb54 Aomori University 青森大学'), (3383, 'https://ror.org/040qrra89', 'en', 1, 'https://ror.org/040qrra89 G.V. (Sonny) Montgomery VA Medical Center'), (3384, 'https://ror.org/040qxz868', 'no_lang_code', 1, 'https://ror.org/040qxz868 Chhatrapati Shahu Ji Maharaj University छत्रपति शाहूजी महाराज विश्वविद्यालय சத்ரபதி ஷாகுஜி மகராஜ் பல்கலைக்கழகம்'), (3385, 'https://ror.org/040r8fr65', 'en', 1, 'https://ror.org/040r8fr65 Aarhus University Hospital Skejby Sygehus'), (3386, 'https://ror.org/040vfm237', 'en', 1, 'https://ror.org/040vfm237 North West Regional Hospital'), (3387, 'https://ror.org/040vwpm13', 'en', 1, 'https://ror.org/040vwpm13 University of Houston System'), (3388, 'https://ror.org/040yv4379', 'fi', 1, 'https://ror.org/040yv4379 Kainuun keskussairaala'), (3389, 'https://ror.org/0411njj18', 'en', 1, 'https://ror.org/0411njj18 Ragas Dental College & Hospital'), (3390, 'https://ror.org/04133ks15', 'en', 1, 'https://ror.org/04133ks15 Ecpi University'), (3391, 'https://ror.org/0416des07', 'es', 1, 'https://ror.org/0416des07 Hospital Universitario Lucus Augusti'), (3392, 'https://ror.org/0416m3683', 'de', 1, 'https://ror.org/0416m3683 Institut für Rundfunktechnik'), (3393, 'https://ror.org/0417sdw47', 'en', 1, 'https://ror.org/0417sdw47 Korea Basic Science Institute'), (3394, 'https://ror.org/0418a3v02', 'en', 1, 'https://ror.org/0418a3v02 Setsunan University 摂南大学'), (3395, 'https://ror.org/0419bgt07', 'en', 1, 'https://ror.org/0419bgt07 University of Florida Health Science Center'); INSERT INTO `rors` VALUES (3396, 'https://ror.org/0419nfc77', 'en', 1, 'https://ror.org/0419nfc77 China Three Gorges University 三峡大学'), (3397, 'https://ror.org/041b40q78', 'no_lang_code', 1, 'https://ror.org/041b40q78 Olympus (Australia)'), (3398, 'https://ror.org/041bf1s37', 'no_lang_code', 1, 'https://ror.org/041bf1s37 Kanto Gakuin University 関東学院大学'), (3399, 'https://ror.org/041e85345', 'en', 1, 'https://ror.org/041e85345 Bhumibol Adulyadej Hospital โรงพยาบาลภูมิพลอดุลยเดช'), (3400, 'https://ror.org/041f0qb31', 'en', 1, 'https://ror.org/041f0qb31 University Hospital Crosshouse'), (3401, 'https://ror.org/041hae580', 'en', 1, 'https://ror.org/041hae580 Countess of Chester Hospital'), (3402, 'https://ror.org/041jw5813', 'en', 1, 'https://ror.org/041jw5813 University of San Carlos'), (3403, 'https://ror.org/041jyhr41', 'en', 1, 'https://ror.org/041jyhr41 Selly Oak Hospital'), (3404, 'https://ror.org/041m0cc93', 'en', 1, 'https://ror.org/041m0cc93 Providence VA Medical Center'), (3405, 'https://ror.org/041mbwk52', 'no_lang_code', 1, 'https://ror.org/041mbwk52 Fisher Bioservices (United States)'), (3406, 'https://ror.org/041tn5e09', 'no_lang_code', 1, 'https://ror.org/041tn5e09 Shinrakuen Hospital 信楽園病院'), (3407, 'https://ror.org/041wfjw90', 'en', 1, 'https://ror.org/041wfjw90 LungenClinic Grosshansdorf'), (3408, 'https://ror.org/04204gr61', 'en', 1, 'https://ror.org/04204gr61 Universidad de La Habana University of Havana'), (3409, 'https://ror.org/04219vz71', 'en', 1, 'https://ror.org/04219vz71 Silver Cross Hospital'), (3410, 'https://ror.org/0422nk691', 'no_lang_code', 1, 'https://ror.org/0422nk691 Fukujuji Hospital 複十字病院'), (3411, 'https://ror.org/0422q5a32', 'en', 1, 'https://ror.org/0422q5a32 Scripps Whittier Diabetes Institute'), (3412, 'https://ror.org/04253q669', 'en', 1, 'https://ror.org/04253q669 Medical City Children''s Hospital'), (3413, 'https://ror.org/0425pcn39', 'no_lang_code', 1, 'https://ror.org/0425pcn39 NeuroComp Systems (United States)'), (3414, 'https://ror.org/0427fee43', 'en', 1, 'https://ror.org/0427fee43 Maharani Laxmi Bai Medical College'), (3415, 'https://ror.org/0429d0v34', 'en', 1, 'https://ror.org/0429d0v34 China Animal Health and Epidemiology Center 中国动物卫生与流行病学中心'), (3416, 'https://ror.org/042asnw05', 'en', 1, 'https://ror.org/042asnw05 Castle Hill Hospital'), (3417, 'https://ror.org/042awg277', 'en', 1, 'https://ror.org/042awg277 MCNC Research and Development Institute'), (3418, 'https://ror.org/042bbge36', 'en', 1, 'https://ror.org/042bbge36 Nova Southeastern University Universidad de Nova Southeastern'), (3419, 'https://ror.org/042bdnm87', 'no_lang_code', 1, 'https://ror.org/042bdnm87 Svenskt Stål (Finland) Swedish Steel'), (3420, 'https://ror.org/042bhxs14', 'en', 1, 'https://ror.org/042bhxs14 Burdwan Medical College & Hospital'), (3421, 'https://ror.org/042ck3w97', 'en', 1, 'https://ror.org/042ck3w97 Hyogo Ion Beam Medical Center 兵庫県立粒子線医療センター'), (3422, 'https://ror.org/042ckra75', 'en', 1, 'https://ror.org/042ckra75 Research Foundation For Mental Hygiene'), (3423, 'https://ror.org/042e7c302', 'fr', 1, 'https://ror.org/042e7c302 Multitel'), (3424, 'https://ror.org/042fv2404', 'en', 1, 'https://ror.org/042fv2404 Musgrove Park Hospital'), (3425, 'https://ror.org/042jtt364', 'en', 1, 'https://ror.org/042jtt364 Air Force General Hospital PLA'), (3426, 'https://ror.org/042mrsz23', 'en', 1, 'https://ror.org/042mrsz23 Bangabandhu Sheikh Mujib Medical University বঙ্গবন্ধু শেখ মুজিব মেডিকেল বিশ্ববিদ্যালয়'), (3427, 'https://ror.org/042q8va29', 'no_lang_code', 1, 'https://ror.org/042q8va29 Sidenor (Greece) ΣΙΔΕΝΟΡ'), (3428, 'https://ror.org/042qjjy86', 'en', 1, 'https://ror.org/042qjjy86 Ministry of Health ကျန်းမာရေးဝန်ကြီးဌာန'), (3429, 'https://ror.org/042rz6s74', 'en', 1, 'https://ror.org/042rz6s74 Nissan Tamagawa Hospital 日産厚生会 玉川病院'), (3430, 'https://ror.org/042thbm45', 'en', 1, 'https://ror.org/042thbm45 Manly Hospital'), (3431, 'https://ror.org/042vq9b25', 'pt', 1, 'https://ror.org/042vq9b25 Instituto Superior de Educação e Ciências'), (3432, 'https://ror.org/042vvex07', 'en', 1, 'https://ror.org/042vvex07 Jos University Teaching Hospital'), (3433, 'https://ror.org/042x68w22', 'pt', 1, 'https://ror.org/042x68w22 Escola Superior de Enfermagem Dr. José Timóteo Montalvão Machado'), (3434, 'https://ror.org/042z7qa37', 'en', 1, 'https://ror.org/042z7qa37 McKendree University'), (3435, 'https://ror.org/043071f54', 'en', 1, 'https://ror.org/043071f54 University of Roehampton'), (3436, 'https://ror.org/0431v1017', 'fr', 1, 'https://ror.org/0431v1017 Hôpital Riviera-Chablais'), (3437, 'https://ror.org/0431x1p15', 'en', 1, 'https://ror.org/0431x1p15 Gunma Children''s Medical Center 群馬県立小児医療センター'), (3438, 'https://ror.org/0432p8t34', 'en', 1, 'https://ror.org/0432p8t34 Guangdong Academy of Medical Sciences'), (3439, 'https://ror.org/04330ze25', 'en', 1, 'https://ror.org/04330ze25 Ashford Hospital'), (3440, 'https://ror.org/0433abe34', 'en', 1, 'https://ror.org/0433abe34 K.N.Toosi University of Technology دانشگاه صنعتی خواجه نصیرالدین طوسی'), (3441, 'https://ror.org/0433kqc49', 'en', 1, 'https://ror.org/0433kqc49 Pukyong National University 부경대학교'), (3442, 'https://ror.org/04353mq94', 'en', 1, 'https://ror.org/04353mq94 Chungnam National University Hospital'), (3443, 'https://ror.org/043889z90', 'en', 1, 'https://ror.org/043889z90 The General Hospital of Heraklion "Venizeleio-Pananio" Γενικό Νοσοκομείο Ηρακλείου "Βενιζέλειο - Πανάνειο"'), (3444, 'https://ror.org/043brc084', 'en', 1, 'https://ror.org/043brc084 Kuo General Hospital 郭综合医院'), (3445, 'https://ror.org/043ckch24', 'en', 1, 'https://ror.org/043ckch24 Rehabilitation Hospital of Indiana'), (3446, 'https://ror.org/043dm5251', 'no_lang_code', 1, 'https://ror.org/043dm5251 Microfab Technologies (United States)'), (3447, 'https://ror.org/043e04s74', 'en', 1, 'https://ror.org/043e04s74 Civil Aerospace Medical Institute'), (3448, 'https://ror.org/043ek5g31', 'en', 1, 'https://ror.org/043ek5g31 Henan Cancer Hospital 河南省肿瘤医院'), (3449, 'https://ror.org/043eknq26', 'en', 1, 'https://ror.org/043eknq26 General Hospital of Nikea Γενικό Νοσοκομείο Νίκαιας'), (3450, 'https://ror.org/043h2w593', 'en', 1, 'https://ror.org/043h2w593 Akita Red Cross Hospital 秋田赤十字病院'), (3451, 'https://ror.org/043j9bc42', 'en', 1, 'https://ror.org/043j9bc42 Royal National Orthopaedic Hospital'), (3452, 'https://ror.org/043jqrs76', 'en', 1, 'https://ror.org/043jqrs76 Sunchon National University 순천대학교'), (3453, 'https://ror.org/043m85342', 'en', 1, 'https://ror.org/043m85342 Hospital Povisa Povisa Hospital'), (3454, 'https://ror.org/043mrw780', 'en', 1, 'https://ror.org/043mrw780 Institute For Community Research'), (3455, 'https://ror.org/043mzjj67', 'en', 1, 'https://ror.org/043mzjj67 Beaumont Hospital'), (3456, 'https://ror.org/043p8z282', 'en', 1, 'https://ror.org/043p8z282 JR Tokyo General Hospital JR東京総合病院'), (3457, 'https://ror.org/043ppnw54', 'it', 1, 'https://ror.org/043ppnw54 Ospedale San Donato'), (3458, 'https://ror.org/043qmbk61', 'en', 1, 'https://ror.org/043qmbk61 Arbor Research Collaborative for Health'), (3459, 'https://ror.org/043rjaw23', 'no_lang_code', 1, 'https://ror.org/043rjaw23 Profactor (Austria)'), (3460, 'https://ror.org/043sbvg03', 'en', 1, 'https://ror.org/043sbvg03 Eastern Hepatobiliary Surgery Hospital 东方肝胆外科医院'), (3461, 'https://ror.org/043xhwq03', 'en', 1, 'https://ror.org/043xhwq03 Carney Hospital'), (3462, 'https://ror.org/043yd1m08', 'en', 1, 'https://ror.org/043yd1m08 The Evergreen State College'), (3463, 'https://ror.org/043yy3r57', 'en', 1, 'https://ror.org/043yy3r57 Central India Institute of Medical Sciences'), (3464, 'https://ror.org/043z88g18', 'fr', 1, 'https://ror.org/043z88g18 Hôpital Sahloul'), (3465, 'https://ror.org/043zcrg65', 'en', 1, 'https://ror.org/043zcrg65 Birmingham Accident Hospital'), (3466, 'https://ror.org/0441cbj57', 'en', 1, 'https://ror.org/0441cbj57 National University of Life and Environmental Sciences of Ukraine Национальный университет биоресурсов и природопользования Національний університет біоресурсів і природокористування України'), (3467, 'https://ror.org/0443jbw36', 'en', 1, 'https://ror.org/0443jbw36 Bucheon St. Mary''s Hospital'), (3468, 'https://ror.org/0445ctr76', 'fr', 1, 'https://ror.org/0445ctr76 Hôpital des Diaconesses'), (3469, 'https://ror.org/0446vnd56', 'en', 1, 'https://ror.org/0446vnd56 Western Kentucky University'), (3470, 'https://ror.org/0446zdv37', 'en', 1, 'https://ror.org/0446zdv37 Oklahoma Panhandle State University'), (3471, 'https://ror.org/0447kww10', 'en', 1, 'https://ror.org/0447kww10 University of Miyazaki 宮崎大学'), (3472, 'https://ror.org/0449kf092', 'en', 1, 'https://ror.org/0449kf092 Prairie View A&M University'), (3473, 'https://ror.org/044a5dk27', 'en', 1, 'https://ror.org/044a5dk27 Universidad del Verbo Encarnado University of the Incarnate Word Université du verbe incarné'), (3474, 'https://ror.org/044ed7z69', 'en', 1, 'https://ror.org/044ed7z69 Ministry of Health and Child Welfare'), (3475, 'https://ror.org/044em4v11', 'en', 1, 'https://ror.org/044em4v11 Tennessee Department of Mental Health and Substance Abuse Services'), (3476, 'https://ror.org/044f69t13', 'en', 1, 'https://ror.org/044f69t13 Ministry of Natural Resources and Wildlife Ministère de l''Énergie et des Ressources naturelles'), (3477, 'https://ror.org/044fz2011', 'en', 1, 'https://ror.org/044fz2011 Rhode Island Department of Behavioral Healthcare, Developmental Disabilities and Hospitals'), (3478, 'https://ror.org/044hb6b32', 'fr', 1, 'https://ror.org/044hb6b32 Hôpital des Enfants'), (3479, 'https://ror.org/044kjp413', 'en', 1, 'https://ror.org/044kjp413 Severance Hospital 세브란스 병원'), (3480, 'https://ror.org/044kkfr75', 'sv', 1, 'https://ror.org/044kkfr75 AlbaNova'), (3481, 'https://ror.org/044p01n12', 'en', 1, 'https://ror.org/044p01n12 Vidant Health'), (3482, 'https://ror.org/044pc0j16', 'no_lang_code', 1, 'https://ror.org/044pc0j16 Mycologics'), (3483, 'https://ror.org/044pcn091', 'en', 1, 'https://ror.org/044pcn091 University of Mississippi Medical Center'), (3484, 'https://ror.org/044pfy487', 'en', 1, 'https://ror.org/044pfy487 Georgia Southwestern State University'), (3485, 'https://ror.org/044prn184', 'en', 1, 'https://ror.org/044prn184 Holy Family Hospital'), (3486, 'https://ror.org/044r07286', 'en', 1, 'https://ror.org/044r07286 Ouachita Baptist University'), (3487, 'https://ror.org/044r51149', 'en', 1, 'https://ror.org/044r51149 Hanoi School Of Public Health Trường Đại học Y tế công cộng'), (3488, 'https://ror.org/044s9gr80', 'en', 1, 'https://ror.org/044s9gr80 Japanese Red Cross Society, Japan 日本赤十字社'), (3489, 'https://ror.org/044sjfg03', 'en', 1, 'https://ror.org/044sjfg03 Frere Hospital'), (3490, 'https://ror.org/044t1gs69', 'es', 1, 'https://ror.org/044t1gs69 Centro de Alta Resolución San Millán'), (3491, 'https://ror.org/044v7v886', 'en', 1, 'https://ror.org/044v7v886 Advocate Children''s Hospital'), (3492, 'https://ror.org/044vy1d05', 'en', 1, 'https://ror.org/044vy1d05 Tokushima University 徳島大学'), (3493, 'https://ror.org/044wvm991', 'no_lang_code', 1, 'https://ror.org/044wvm991 Laniado Hospital'), (3494, 'https://ror.org/044ww3909', 'en', 1, 'https://ror.org/044ww3909 Boone Hospital Center'), (3495, 'https://ror.org/044xe8f87', 'en', 1, 'https://ror.org/044xe8f87 Queen Mary''s Hospital Sidcup'), (3496, 'https://ror.org/044ycg712', 'it', 1, 'https://ror.org/044ycg712 Ospedale dei Bambini Vittore Buzzi'), (3497, 'https://ror.org/04509n826', 'en', 1, 'https://ror.org/04509n826 Uganda Virus Research Institute'), (3498, 'https://ror.org/0454vek02', 'no_lang_code', 1, 'https://ror.org/0454vek02 National Society of French Railways Société Nationale des Chemins de Fer Français (France)'), (3499, 'https://ror.org/04551r843', 'en', 1, 'https://ror.org/04551r843 Ministry of Health'), (3500, 'https://ror.org/0457avm18', 'en', 1, 'https://ror.org/0457avm18 Bishop Auckland Hospital'), (3501, 'https://ror.org/0457edg47', 'no_lang_code', 1, 'https://ror.org/0457edg47 HREM Research (Japan) 有限会社 HREM'), (3502, 'https://ror.org/0457yg222', 'en', 1, 'https://ror.org/0457yg222 Acıbadem Kadıköy Hospital Kadıköy Hastanesi'), (3503, 'https://ror.org/0457zbj98', 'en', 1, 'https://ror.org/0457zbj98 University of Oklahoma Health Sciences Center'), (3504, 'https://ror.org/04580ts27', 'en', 1, 'https://ror.org/04580ts27 Geisinger Wyoming Valley Medical Center'), (3505, 'https://ror.org/045ae7j03', 'pt', 1, 'https://ror.org/045ae7j03 Universidade São Francisco University of San Francisco'), (3506, 'https://ror.org/045cqy185', 'en', 1, 'https://ror.org/045cqy185 Mamata Medical College'), (3507, 'https://ror.org/045czjy48', 'en', 1, 'https://ror.org/045czjy48 Cape Fear Valley Medical Center'), (3508, 'https://ror.org/045d4f586', 'tr', 1, 'https://ror.org/045d4f586 Ulucanlar Göz Eğitim ve Araştırma Hastanesi'), (3509, 'https://ror.org/045dgap26', 'en', 1, 'https://ror.org/045dgap26 Iowa Methodist Medical Center'), (3510, 'https://ror.org/045exnh37', 'no_lang_code', 1, 'https://ror.org/045exnh37 Portiuncula Hospital'), (3511, 'https://ror.org/045g3sx57', 'en', 1, 'https://ror.org/045g3sx57 Armed Forces Capital Hospital 國軍首都病院 국군수도병원'), (3512, 'https://ror.org/045gmmg53', 'de', 1, 'https://ror.org/045gmmg53 Max Rubner Institut'), (3513, 'https://ror.org/045h96a50', 'en', 1, 'https://ror.org/045h96a50 Cooperative Research Centre for Polymers'), (3514, 'https://ror.org/045kb1d14', 'en', 1, 'https://ror.org/045kb1d14 Kyoto Medical Center 京都医療センター'), (3515, 'https://ror.org/045kfbt16', 'no_lang_code', 1, 'https://ror.org/045kfbt16 Dibrugarh University ডিব্রুগড় বিশ্ববিদ্যালয়'), (3516, 'https://ror.org/045m9y072', 'en', 1, 'https://ror.org/045m9y072 Moses H Cone Memorial Hospital'), (3517, 'https://ror.org/045nawc23', 'nl', 1, 'https://ror.org/045nawc23 Tergooi'), (3518, 'https://ror.org/045nemn19', 'en', 1, 'https://ror.org/045nemn19 Ubon Ratchathani University มหาวิทยาลัยอุบลราชธานี'), (3519, 'https://ror.org/045r80n66', 'en', 1, 'https://ror.org/045r80n66 Cincinnati VA Medical Center'), (3520, 'https://ror.org/045r8zm03', 'en', 1, 'https://ror.org/045r8zm03 American Sociological Association'), (3521, 'https://ror.org/045rcvm30', 'en', 1, 'https://ror.org/045rcvm30 Kentucky Cabinet For Health and Family Services'), (3522, 'https://ror.org/045rd3583', 'no_lang_code', 1, 'https://ror.org/045rd3583 Koto Hospital 江東病院'), (3523, 'https://ror.org/045s3rx57', 'en', 1, 'https://ror.org/045s3rx57 Bedford Hospital'), (3524, 'https://ror.org/045v7ay82', 'en', 1, 'https://ror.org/045v7ay82 Chicago Department of Public Health'), (3525, 'https://ror.org/045vatr18', 'en', 1, 'https://ror.org/045vatr18 University of Ilorin Teaching Hospital'), (3526, 'https://ror.org/045wr3278', 'en', 1, 'https://ror.org/045wr3278 Daegu Haany University 대구한의대학교'), (3527, 'https://ror.org/045x76g34', 'en', 1, 'https://ror.org/045x76g34 McMurry University'), (3528, 'https://ror.org/045xjv649', 'en', 1, 'https://ror.org/045xjv649 Netaji Subhash Chandra Bose Medical College'), (3529, 'https://ror.org/0460a5x58', 'en', 1, 'https://ror.org/0460a5x58 Eugenides Hospital ΕΥΓΕΝΙΔΕΙΟ ΘΕΡΑΠΕΥΤΗΡΙΟ'), (3530, 'https://ror.org/0460fxw51', 'en', 1, 'https://ror.org/0460fxw51 Sacred Heart Hospital'), (3531, 'https://ror.org/0460s9920', 'en', 1, 'https://ror.org/0460s9920 Kyoto first Red Cross hospital 京都第一赤十字病院'), (3532, 'https://ror.org/0461cvh40', 'en', 1, 'https://ror.org/0461cvh40 Gangneung–Wonju National University 강릉원주대학교'), (3533, 'https://ror.org/0463dsf87', 'no_lang_code', 1, 'https://ror.org/0463dsf87 G. Papanikolaou General Hospital'), (3534, 'https://ror.org/046410650', 'en', 1, 'https://ror.org/046410650 Muskingum University'), (3535, 'https://ror.org/04661b187', 'en', 1, 'https://ror.org/04661b187 Beppu Medical Center 別府医療センター'), (3536, 'https://ror.org/0466c1b11', 'en', 1, 'https://ror.org/0466c1b11 Kobe City Medical Center West Hospital 神戸市立医療センター西市民病院'), (3537, 'https://ror.org/0467j3j44', 'it', 1, 'https://ror.org/0467j3j44 Ospedale di Belcolle'), (3538, 'https://ror.org/046865y68', 'no_lang_code', 1, 'https://ror.org/046865y68 Hanyang University 한양대학교'), (3539, 'https://ror.org/046a9q865', 'en', 1, 'https://ror.org/046a9q865 Space Science Institute'), (3540, 'https://ror.org/046a9t092', 'es', 1, 'https://ror.org/046a9t092 Hospital de Niños de la Santísima Trinidad'), (3541, 'https://ror.org/046aym564', 'en', 1, 'https://ror.org/046aym564 Lock Haven University'), (3542, 'https://ror.org/046bk9643', 'en', 1, 'https://ror.org/046bk9643 Government Medical College, Amritsar ਸਰਕਾਰੀ ਮੈਡੀਕਲ ਕਾਲਜ'), (3543, 'https://ror.org/046c18a90', 'en', 1, 'https://ror.org/046c18a90 Guangzhou Medical University Cancer Hospital 广州医科大学附属肿瘤医院'), (3544, 'https://ror.org/046db5297', 'en', 1, 'https://ror.org/046db5297 Sioux Valley Hospital'), (3545, 'https://ror.org/046e0q987', 'en', 1, 'https://ror.org/046e0q987 St Lawrence Hospital'), (3546, 'https://ror.org/046ekqm80', 'en', 1, 'https://ror.org/046ekqm80 Kentucky Community and Technical College System'), (3547, 'https://ror.org/046fa4y88', 'en', 1, 'https://ror.org/046fa4y88 The Heart Research Institute'), (3548, 'https://ror.org/046fm7598', 'en', 1, 'https://ror.org/046fm7598 Gunma University 群馬大学'), (3549, 'https://ror.org/046gme853', 'en', 1, 'https://ror.org/046gme853 Dandenong Hospital'), (3550, 'https://ror.org/046h7rx26', 'en', 1, 'https://ror.org/046h7rx26 Tri-Service General Hospital Songshan Branch'), (3551, 'https://ror.org/046jyn221', 'en', 1, 'https://ror.org/046jyn221 Mayo Hospital'), (3552, 'https://ror.org/046kb4y45', 'en', 1, 'https://ror.org/046kb4y45 University of Virginia Medical Center'), (3553, 'https://ror.org/046taf492', 'en', 1, 'https://ror.org/046taf492 St Mary''s Hospital'), (3554, 'https://ror.org/046vare28', 'de', 1, 'https://ror.org/046vare28 St. Josef-Hospital'), (3555, 'https://ror.org/046vje122', 'en', 1, 'https://ror.org/046vje122 MRC Biostatistics Unit'), (3556, 'https://ror.org/046w0kr18', 'it', 1, 'https://ror.org/046w0kr18 Azienda Ospedaliera Ospedale Civile di Legnano'), (3557, 'https://ror.org/046wwv897', 'es', 1, 'https://ror.org/046wwv897 Hospital Virgen del Camino'), (3558, 'https://ror.org/046x15q93', 'en', 1, 'https://ror.org/046x15q93 The 309th Hospital of Chinese People''s Liberation Army 中国人民解放军第三〇九医院'), (3559, 'https://ror.org/046yr0268', 'en', 1, 'https://ror.org/046yr0268 Heartland Regional Medical Center'), (3560, 'https://ror.org/046yvwt23', 'fr', 1, 'https://ror.org/046yvwt23 Hôpital Principal de Dakar'), (3561, 'https://ror.org/0470b8t84', 'en', 1, 'https://ror.org/0470b8t84 Capella University'), (3562, 'https://ror.org/0470men05', 'en', 1, 'https://ror.org/0470men05 Tainan Municipal Hospital 台南市立醫院'), (3563, 'https://ror.org/04718hx42', 'no_lang_code', 1, 'https://ror.org/04718hx42 Srinakharinwirot University มหาวิทยาลัยศรีนครินทรวิโรฒ'), (3564, 'https://ror.org/04748z305', 'en', 1, 'https://ror.org/04748z305 Taurida National V.I. Vernadsky University Tawrijski Uniwersytet Narodowy im. Władimira Wiernadskiego Таврический национальный университет имени В. И. Вернадского Таврійський національний університет імені В. І. Вернадського'), (3565, 'https://ror.org/0475w6974', 'no_lang_code', 1, 'https://ror.org/0475w6974 Kinjo Gakuin University 金城学院大学'), (3566, 'https://ror.org/04760qd13', 'tr', 1, 'https://ror.org/04760qd13 GATA Haydarpaşa Eğitim Hastanesi'), (3567, 'https://ror.org/0478ng049', 'en', 1, 'https://ror.org/0478ng049 Roger Williams Medical Center'), (3568, 'https://ror.org/047asq971', 'en', 1, 'https://ror.org/047asq971 Medical Research Institute of New Zealand'), (3569, 'https://ror.org/047b5av97', 'nl', 1, 'https://ror.org/047b5av97 Juliana Kinderziekenhuis'), (3570, 'https://ror.org/047g72407', 'en', 1, 'https://ror.org/047g72407 Eastern Nazarene College'), (3571, 'https://ror.org/047hsck20', 'en', 1, 'https://ror.org/047hsck20 Hesperia Hospital'), (3572, 'https://ror.org/047hxsy31', 'en', 1, 'https://ror.org/047hxsy31 Kaiser Permanente Anaheim Medical Center'), (3573, 'https://ror.org/047k06737', 'en', 1, 'https://ror.org/047k06737 South Dakota Department of Health'), (3574, 'https://ror.org/047k2at48', 'en', 1, 'https://ror.org/047k2at48 Al-Azhar University – Gaza جامعة الأزهر في غزة'), (3575, 'https://ror.org/047krn550', 'es', 1, 'https://ror.org/047krn550 Hospital César Milstein'), (3576, 'https://ror.org/047n0b268', 'en', 1, 'https://ror.org/047n0b268 Aichi Prefectural University 愛知県立大学'), (3577, 'https://ror.org/047qrb368', 'en', 1, 'https://ror.org/047qrb368 South Carolina State Governor''s Office'), (3578, 'https://ror.org/047sehh14', 'en', 1, 'https://ror.org/047sehh14 Himeji Red Cross Hospital 姫路赤十字病院'), (3579, 'https://ror.org/047tjmd17', 'en', 1, 'https://ror.org/047tjmd17 Coastal Area Health Education Center'), (3580, 'https://ror.org/047v2cv91', 'en', 1, 'https://ror.org/047v2cv91 Maidstone Hospital'), (3581, 'https://ror.org/047vb2x72', 'no_lang_code', 1, 'https://ror.org/047vb2x72 MATIMOP'), (3582, 'https://ror.org/047x96110', 'en', 1, 'https://ror.org/047x96110 Johannesburg Hospital'), (3583, 'https://ror.org/047xgg150', 'tr', 1, 'https://ror.org/047xgg150 Malatya Devlet Hastanesi'), (3584, 'https://ror.org/047yk3s18', 'en', 1, 'https://ror.org/047yk3s18 Catholic University of America Universidad Católica de América Université catholique d''amérique'), (3585, 'https://ror.org/047ypwv36', 'en', 1, 'https://ror.org/047ypwv36 Baghdad Medical City مدينة الطب'), (3586, 'https://ror.org/047z4n946', 'en', 1, 'https://ror.org/047z4n946 Semiconductor Research Corporation'), (3587, 'https://ror.org/04838xh83', 'es', 1, 'https://ror.org/04838xh83 Empresarios Agrupados'), (3588, 'https://ror.org/0483mr804', 'en', 1, 'https://ror.org/0483mr804 Carolinas Medical Center'), (3589, 'https://ror.org/0484pjq71', 'en', 1, 'https://ror.org/0484pjq71 Box Hill Hospital'), (3590, 'https://ror.org/0488ndr53', 'en', 1, 'https://ror.org/0488ndr53 Hairmyres Hospital'), (3591, 'https://ror.org/0489f6q08', 'en', 1, 'https://ror.org/0489f6q08 Cardiff and Vale University Health Board'), (3592, 'https://ror.org/048a96r61', 'en', 1, 'https://ror.org/048a96r61 Glenfield Hospital'), (3593, 'https://ror.org/048d1b238', 'en', 1, 'https://ror.org/048d1b238 Miami Children''s Hospital'), (3594, 'https://ror.org/048drzm61', 'en', 1, 'https://ror.org/048drzm61 Frostburg State University Université d''État de frostburg'), (3595, 'https://ror.org/048f17730', 'en', 1, 'https://ror.org/048f17730 Health Research and Educational Trust'), (3596, 'https://ror.org/048h7jv87', 'fr', 1, 'https://ror.org/048h7jv87 Centre Hospitalier Universitaire de Cocody'), (3597, 'https://ror.org/048hj2019', 'en', 1, 'https://ror.org/048hj2019 Joseph Brant Hospital'), (3598, 'https://ror.org/048j5n646', 'en', 1, 'https://ror.org/048j5n646 National Aerospace University – Kharkiv Aviation Institute Национальный аэрокосмический университет имени Н. Е. Жуковского Національний аерокосмічний університет імені М. Є. Жуковського Харківський авіаційний інститут'), (3599, 'https://ror.org/048jkwt53', 'en', 1, 'https://ror.org/048jkwt53 American Health Information Management Association'), (3600, 'https://ror.org/048nj0621', 'en', 1, 'https://ror.org/048nj0621 Fulton County Medical Examiner''s Office'), (3601, 'https://ror.org/048vjc278', 'en', 1, 'https://ror.org/048vjc278 AdventHealth Celebration'), (3602, 'https://ror.org/048xpjb02', 'en', 1, 'https://ror.org/048xpjb02 National Association of County and City Health Officials'), (3603, 'https://ror.org/048zq6v82', 'en', 1, 'https://ror.org/048zq6v82 Children''s Research Hospital 小児研究病院'), (3604, 'https://ror.org/04929s478', 'en', 1, 'https://ror.org/04929s478 NewYork–Presbyterian Brooklyn Methodist Hospital'), (3605, 'https://ror.org/0493bmq37', 'no_lang_code', 1, 'https://ror.org/0493bmq37 Fujifilm (Japan) 富士フイルム株式会社'), (3606, 'https://ror.org/0493caa98', 'no_lang_code', 1, 'https://ror.org/0493caa98 Lallemand (Canada)'), (3607, 'https://ror.org/0493hgw16', 'en', 1, 'https://ror.org/0493hgw16 National Institute on Minority Health and Health Disparities'), (3608, 'https://ror.org/0493tt883', 'en', 1, 'https://ror.org/0493tt883 Carl T. Hayden Veterans Affairs Medical Center'), (3609, 'https://ror.org/0494reh34', 'en', 1, 'https://ror.org/0494reh34 Millsaps College'), (3610, 'https://ror.org/0495efn48', 'en', 1, 'https://ror.org/0495efn48 Guangxi University for Nationalities 广西民族大学'), (3611, 'https://ror.org/0495vrm88', 'es', 1, 'https://ror.org/0495vrm88 Hospital Municipal de Badalona'), (3612, 'https://ror.org/04983z422', 'en', 1, 'https://ror.org/04983z422 Taishan Medical University 泰山医学院'), (3613, 'https://ror.org/049840423', 'en', 1, 'https://ror.org/049840423 Ministry of Health Министерство здравоохранения Республики Беларусь'), (3614, 'https://ror.org/049aadf12', 'en', 1, 'https://ror.org/049aadf12 Bezmialem Foundation University Medical Faculty Hospital Bezmiâlem Vakıf Üniversitesi Tıp Fakültesi Hastanesi'), (3615, 'https://ror.org/049ams583', 'en', 1, 'https://ror.org/049ams583 Northwestern State University Université d''État northwestern'), (3616, 'https://ror.org/049bdss47', 'en', 1, 'https://ror.org/049bdss47 Joanneum Research Joanneum Research Forschungsgesellschaft mbH'), (3617, 'https://ror.org/049cbmb74', 'en', 1, 'https://ror.org/049cbmb74 Children''s Hospital of Wisconsin'), (3618, 'https://ror.org/049dkqr57', 'en', 1, 'https://ror.org/049dkqr57 Ningxia Medical University General Hospital 宁夏医科大学总医院'), (3619, 'https://ror.org/049hmfa48', 'en', 1, 'https://ror.org/049hmfa48 Henry Mayo Newhall Memorial Hospital'), (3620, 'https://ror.org/049mpkx27', 'en', 1, 'https://ror.org/049mpkx27 Shriners Hospitals for Children - St. Louis'), (3621, 'https://ror.org/049pcfs17', 'en', 1, 'https://ror.org/049pcfs17 Indira Gandhi Institute of Medical Sciences'), (3622, 'https://ror.org/049peqw80', 'en', 1, 'https://ror.org/049peqw80 San Francisco VA Medical Center'), (3623, 'https://ror.org/049pfb863', 'en', 1, 'https://ror.org/049pfb863 Kent State University Université d''État de kent'), (3624, 'https://ror.org/049q0vg17', 'en', 1, 'https://ror.org/049q0vg17 Anqing City Hospital'), (3625, 'https://ror.org/049v7zy31', 'en', 1, 'https://ror.org/049v7zy31 Chiba Rosai Hospital 千葉労災病院'), (3626, 'https://ror.org/049w1th24', 'en', 1, 'https://ror.org/049w1th24 Doernbecher Children''s Hospital'), (3627, 'https://ror.org/049wjac82', 'en', 1, 'https://ror.org/049wjac82 Cooper University Hospital'), (3628, 'https://ror.org/049x01c36', 'en', 1, 'https://ror.org/049x01c36 Shaw University'), (3629, 'https://ror.org/049xx5c95', 'en', 1, 'https://ror.org/049xx5c95 Sultan Qaboos University Hospital مستشفى جامعة السلطان قابوس'), (3630, 'https://ror.org/049yc0897', 'en', 1, 'https://ror.org/049yc0897 Winston-Salem State University'), (3631, 'https://ror.org/049yfnz48', 'en', 1, 'https://ror.org/049yfnz48 Houston Medical Center'), (3632, 'https://ror.org/049yjqb12', 'en', 1, 'https://ror.org/049yjqb12 Communications and Information Technology Ontario'), (3633, 'https://ror.org/049zedh07', 'en', 1, 'https://ror.org/049zedh07 Robert Jones and Agnes Hunt Orthopaedic Hospital NHS Trust'), (3634, 'https://ror.org/049zrh188', 'en', 1, 'https://ror.org/049zrh188 Shanghai Sixth People''s Hospital 上海市第六人民医院'), (3635, 'https://ror.org/049ztct72', 'en', 1, 'https://ror.org/049ztct72 Medical University Pleven Медицински университет - Плевен'), (3636, 'https://ror.org/04a105t20', 'en', 1, 'https://ror.org/04a105t20 St. Mary''s Hospital'), (3637, 'https://ror.org/04a20gb33', 'en', 1, 'https://ror.org/04a20gb33 Hispanic Health Council'), (3638, 'https://ror.org/04a22qz44', 'en', 1, 'https://ror.org/04a22qz44 Seton Medical Center'), (3639, 'https://ror.org/04a3akw68', 'no_lang_code', 1, 'https://ror.org/04a3akw68 Airbus (Germany)'), (3640, 'https://ror.org/04a5hr295', 'es', 1, 'https://ror.org/04a5hr295 Complejo Hospitalario Universitario de Albacete Hospital General Universitario de Albacete'), (3641, 'https://ror.org/04a6gpn58', 'pt', 1, 'https://ror.org/04a6gpn58 Centro Universitário São Camilo'), (3642, 'https://ror.org/04aa89262', 'en', 1, 'https://ror.org/04aa89262 Radiolabs'), (3643, 'https://ror.org/04aaa2n62', 'en', 1, 'https://ror.org/04aaa2n62 Andrews University Universidad Andrews'), (3644, 'https://ror.org/04aaeds92', 'no_lang_code', 1, 'https://ror.org/04aaeds92 Israel Aerospace Industries (Israel)'), (3645, 'https://ror.org/04abjq359', 'es', 1, 'https://ror.org/04abjq359 Hospital Ruber Internacional'), (3646, 'https://ror.org/04abkkn33', 'pt', 1, 'https://ror.org/04abkkn33 Hospital Santo António dos Capuchos'), (3647, 'https://ror.org/04aj4sh46', 'en', 1, 'https://ror.org/04aj4sh46 Brookings Institution Institución Brookings'), (3648, 'https://ror.org/04am5a125', 'en', 1, 'https://ror.org/04am5a125 Mount Vernon Hospital'), (3649, 'https://ror.org/04anjm411', 'en', 1, 'https://ror.org/04anjm411 Instituto Superior D. Dinis'), (3650, 'https://ror.org/04ap0ew90', 'no_lang_code', 1, 'https://ror.org/04ap0ew90 Hlabisa Hospital'), (3651, 'https://ror.org/04ar23e02', 'en', 1, 'https://ror.org/04ar23e02 Kingston Hospital'), (3652, 'https://ror.org/04arkmn57', 'en', 1, 'https://ror.org/04arkmn57 University of Defence Univerzita Obrany'), (3653, 'https://ror.org/04at0zw32', 'en', 1, 'https://ror.org/04at0zw32 Jichi Medical University Hospital 自治医科大学附属病院'), (3654, 'https://ror.org/04aw32z04', 'en', 1, 'https://ror.org/04aw32z04 Poriya Medical Center בית חולים ברוך פדה'), (3655, 'https://ror.org/04ayype77', 'en', 1, 'https://ror.org/04ayype77 Wolfson Medical Center מרכז רפואי וולפסון'), (3656, 'https://ror.org/04azbjn80', 'en', 1, 'https://ror.org/04azbjn80 Guangdong University of Technology 广东工业大学'), (3657, 'https://ror.org/04aznd361', 'en', 1, 'https://ror.org/04aznd361 Government Medical College கோழிக்கோடு மருத்துவக் கல்லூரி ഗവൺമെന്റ് മെഡിക്കൽ കോളേജ്, കോഴിക്കോട്'), (3658, 'https://ror.org/04b0jw528', 'en', 1, 'https://ror.org/04b0jw528 Imakiire General Hospital 公益財団法人昭和会 今給黎総合病院'), (3659, 'https://ror.org/04b0ry431', 'es', 1, 'https://ror.org/04b0ry431 Hospital General de Elda'), (3660, 'https://ror.org/04b2fhx54', 'en', 1, 'https://ror.org/04b2fhx54 Seoul Women''s University 서울여자대학교'), (3661, 'https://ror.org/04b2pvs09', 'en', 1, 'https://ror.org/04b2pvs09 Rashid Hospital مستشفى راشد'), (3662, 'https://ror.org/04b3jmc64', 'en', 1, 'https://ror.org/04b3jmc64 Social Sciences Innovations'), (3663, 'https://ror.org/04b4hfb84', 'en', 1, 'https://ror.org/04b4hfb84 Green Pastures Hospital and Rehabilitation Centre'), (3664, 'https://ror.org/04b787h29', 'en', 1, 'https://ror.org/04b787h29 Santa Barbara Cottage Hospital'), (3665, 'https://ror.org/04b7w1811', 'en', 1, 'https://ror.org/04b7w1811 Yamaguchi Prefectural University 山口県立大学'), (3666, 'https://ror.org/04b8y3f13', 'no_lang_code', 1, 'https://ror.org/04b8y3f13 Alexandrovska Hospital университетска болница „Александровска'), (3667, 'https://ror.org/04ba73c73', 'no_lang_code', 1, 'https://ror.org/04ba73c73 MC3 (United States)'), (3668, 'https://ror.org/04bcdt432', 'pt', 1, 'https://ror.org/04bcdt432 European University of Lisbon Universidade Europeia'), (3669, 'https://ror.org/04bf33n91', 'en', 1, 'https://ror.org/04bf33n91 University of Balochistan جامعہ بلوچستان'), (3670, 'https://ror.org/04bg1hy68', 'en', 1, 'https://ror.org/04bg1hy68 Saint Thomas West Hospital'), (3671, 'https://ror.org/04bgfm609', 'en', 1, 'https://ror.org/04bgfm609 Stowers Institute for Medical Research'), (3672, 'https://ror.org/04bgfrg80', 'en', 1, 'https://ror.org/04bgfrg80 Ministry of Public Health Ministère de la Santé Publique du Cameroun'), (3673, 'https://ror.org/04bghze60', 'tr', 1, 'https://ror.org/04bghze60 Dışkapı Yıldırım Beyazıt Eğitim ve Araştırma Hastanesi'), (3674, 'https://ror.org/04bm03037', 'en', 1, 'https://ror.org/04bm03037 Genesis Medical Center'), (3675, 'https://ror.org/04bmgpj29', 'en', 1, 'https://ror.org/04bmgpj29 Walsall Manor Hospital'), (3676, 'https://ror.org/04bnbsh26', 'no_lang_code', 1, 'https://ror.org/04bnbsh26 Pingtung Christian Hospital 屏東基督教醫院'), (3677, 'https://ror.org/04bpf7m84', 'pt', 1, 'https://ror.org/04bpf7m84 Escola Superior de Saúde Ribeiro Sanches'), (3678, 'https://ror.org/04bqfk210', 'en', 1, 'https://ror.org/04bqfk210 Commonwealth Medical College'), (3679, 'https://ror.org/04bt00m07', 'en', 1, 'https://ror.org/04bt00m07 Mercy General Hospital'), (3680, 'https://ror.org/04c07bj87', 'en', 1, 'https://ror.org/04c07bj87 Institute of Mental Health'), (3681, 'https://ror.org/04c0a2j77', 'en', 1, 'https://ror.org/04c0a2j77 Memorial Hospital of Rhode Island'), (3682, 'https://ror.org/04c0sqe08', 'en', 1, 'https://ror.org/04c0sqe08 Truckee Meadows Community College'), (3683, 'https://ror.org/04c1d9r22', 'en', 1, 'https://ror.org/04c1d9r22 Services Institute of Medical Sciences سروسز انسٹیٹوٹ آف میڈیکل سائنسز ਸੈਰਵਿਸਜ਼ ਇੰਸਟਿਟਿਊਟ ਆਫ਼ ਮੈਡੀਕਲ ਸਾਈਨਸਜ਼'), (3684, 'https://ror.org/04c1dx793', 'en', 1, 'https://ror.org/04c1dx793 PSG Institute of Medical Sciences & Research'), (3685, 'https://ror.org/04c1s4764', 'es', 1, 'https://ror.org/04c1s4764 Hospital Monte Naranco'), (3686, 'https://ror.org/04c6bry31', 'en', 1, 'https://ror.org/04c6bry31 St. James''s Hospital'), (3687, 'https://ror.org/04can6445', 'no_lang_code', 1, 'https://ror.org/04can6445 P2D Bioscience (United States)'), (3688, 'https://ror.org/04cb32210', 'en', 1, 'https://ror.org/04cb32210 Scottish Rite Hospital'), (3689, 'https://ror.org/04cb4je22', 'en', 1, 'https://ror.org/04cb4je22 Ca'' Foncello Hospital'), (3690, 'https://ror.org/04cbm7s05', 'es', 1, 'https://ror.org/04cbm7s05 Hospital Universitario Insular de Gran Canaria'), (3691, 'https://ror.org/04cd75h10', 'en', 1, 'https://ror.org/04cd75h10 Iwate University 岩手大学'), (3692, 'https://ror.org/04cdn2797', 'en', 1, 'https://ror.org/04cdn2797 Banaras Hindu University Université hindoue de bénarès काशी हिन्दू विश् वविद्यालय কাশী হিন্দু বিশ্ববিদ্যালয় બનારસ હિંદુ યુનિવર્સિટી பனாரசு இந்து பல்கலைக்கழகம் బెనారస్ హిందూ విశ్వవిద్యాలయం ಬನಾರಸ್ ಹಿಂದೂ ವಿಶ್ವವಿದ್ಯಾನಿಲಯ ബനാറസ് ഹിന്ദു യൂണിവേഴ്സിറ്റി'), (3693, 'https://ror.org/04cepy814', 'es', 1, 'https://ror.org/04cepy814 Hospital Juárez de México'), (3694, 'https://ror.org/04cewr321', 'en', 1, 'https://ror.org/04cewr321 University of Vermont Medical Center'), (3695, 'https://ror.org/04cf4ba49', 'da', 1, 'https://ror.org/04cf4ba49 Holbæk Sygehus'), (3696, 'https://ror.org/04cfbdf66', 'no_lang_code', 1, 'https://ror.org/04cfbdf66 Shanghai GenomePilot Technology (China) 上海佰真生物科技有限公司'), (3697, 'https://ror.org/04cg70g73', 'en', 1, 'https://ror.org/04cg70g73 Atmospheric and Environmental Research'), (3698, 'https://ror.org/04cjdzt83', 'en', 1, 'https://ror.org/04cjdzt83 King Abdulaziz Hospital مستشفى الملك عبدالعزي'), (3699, 'https://ror.org/04cjgh922', 'no_lang_code', 1, 'https://ror.org/04cjgh922 Honeywell (Canada)'), (3700, 'https://ror.org/04ckgfr29', 'en', 1, 'https://ror.org/04ckgfr29 Sri Manakula Vinayagar Medical College and Hospital'), (3701, 'https://ror.org/04ckvpk15', 'fr', 1, 'https://ror.org/04ckvpk15 Hôpital Laennec'), (3702, 'https://ror.org/04cnfrn26', 'en', 1, 'https://ror.org/04cnfrn26 University of the Arts London'), (3703, 'https://ror.org/04cpf2p55', 'en', 1, 'https://ror.org/04cpf2p55 Bess Kaiser Hospital'), (3704, 'https://ror.org/04cqs5j56', 'en', 1, 'https://ror.org/04cqs5j56 Southern Illinois University Edwardsville'), (3705, 'https://ror.org/04crdae34', 'en', 1, 'https://ror.org/04crdae34 Mahatma Gandhi Institute of Medical Sciences महात्मा गांधी वैद्यकीय संस्था'), (3706, 'https://ror.org/04cs55d24', 'no_lang_code', 1, 'https://ror.org/04cs55d24 Charoenkrung Pracharak Hospital โรงพยาบาลเจริญกรุงประชารักษ์'), (3707, 'https://ror.org/04ctp9859', 'it', 1, 'https://ror.org/04ctp9859 Ospedale Maria Vittoria'), (3708, 'https://ror.org/04cwap208', 'en', 1, 'https://ror.org/04cwap208 Inner Mongolia University for Nationalities'), (3709, 'https://ror.org/04cxm4j25', 'en', 1, 'https://ror.org/04cxm4j25 Australian Catholic University'), (3710, 'https://ror.org/04cy4z909', 'es', 1, 'https://ror.org/04cy4z909 Hospital de Mataró'), (3711, 'https://ror.org/04cyk2a69', 'en', 1, 'https://ror.org/04cyk2a69 General de Jesus College'), (3712, 'https://ror.org/04czxss33', 'en', 1, 'https://ror.org/04czxss33 Dubai Hospital مستشفى دبـــي'), (3713, 'https://ror.org/04d0szq68', 'en', 1, 'https://ror.org/04d0szq68 Shaare Zedek Medical Center מרכז רפואי שערי צדק'), (3714, 'https://ror.org/04d45ra64', 'fr', 1, 'https://ror.org/04d45ra64 Hôpital du Hasenrain'), (3715, 'https://ror.org/04d4dxm04', 'fr', 1, 'https://ror.org/04d4dxm04 Société de Mathématiques Appliquées et de Sciences Humaines'), (3716, 'https://ror.org/04d52ej85', 'en', 1, 'https://ror.org/04d52ej85 Lawrence Technological University Université technologique lawrence'), (3717, 'https://ror.org/04d5k5771', 'en', 1, 'https://ror.org/04d5k5771 European Institute for Energy Research Europäisches Institut für Energieforschung'), (3718, 'https://ror.org/04d5w7479', 'en', 1, 'https://ror.org/04d5w7479 Aurora Health Care'), (3719, 'https://ror.org/04d6eav07', 'en', 1, 'https://ror.org/04d6eav07 Red Cross War Memorial Children''s Hospital'), (3720, 'https://ror.org/04d7e4m76', 'en', 1, 'https://ror.org/04d7e4m76 I-Shou University'), (3721, 'https://ror.org/04d7es448', 'it', 1, 'https://ror.org/04d7es448 Azienda Ospedaliera Universitaria "San Martino", Ospedale Policlinico San Martino'), (3722, 'https://ror.org/04d7ez939', 'en', 1, 'https://ror.org/04d7ez939 VA Eastern Colorado Health Care System'), (3723, 'https://ror.org/04d8ymc03', 'en', 1, 'https://ror.org/04d8ymc03 Doai Memorial Hospital 同愛記念病院'), (3724, 'https://ror.org/04d9g9604', 'en', 1, 'https://ror.org/04d9g9604 Sankt Hans Hospital'), (3725, 'https://ror.org/04dc8es52', 'de', 1, 'https://ror.org/04dc8es52 Klinik Donaustauf'), (3726, 'https://ror.org/04dd5bw95', 'en', 1, 'https://ror.org/04dd5bw95 Fujisawa City Hospital 藤沢市民病院'), (3727, 'https://ror.org/04df9p911', 'no_lang_code', 1, 'https://ror.org/04df9p911 Biorem Technologies (Canada)'), (3728, 'https://ror.org/04dhg0348', 'en', 1, 'https://ror.org/04dhg0348 Heidelberg Repatriation Hospital'), (3729, 'https://ror.org/04djj4v98', 'es', 1, 'https://ror.org/04djj4v98 Buenos Aires British Hospital Hospital Británico de Buenos Aires'), (3730, 'https://ror.org/04dm1cm79', 'de', 1, 'https://ror.org/04dm1cm79 Universitätsmedizin Rostock'), (3731, 'https://ror.org/04dms0022', 'fr', 1, 'https://ror.org/04dms0022 Hôpital de la Tour'), (3732, 'https://ror.org/04dngzj56', 'en', 1, 'https://ror.org/04dngzj56 American University of Armenia Հայաստանի ամերիկյան համալսարան'), (3733, 'https://ror.org/04dns5t03', 'en', 1, 'https://ror.org/04dns5t03 Brighton General Hospital'), (3734, 'https://ror.org/04dnsc767', 'en', 1, 'https://ror.org/04dnsc767 Burke Rehabilitation Hospital'), (3735, 'https://ror.org/04dp43p74', 'en', 1, 'https://ror.org/04dp43p74 Hangang Sacred Heart Hospital 한강 성심 병원'), (3736, 'https://ror.org/04drvxt59', 'en', 1, 'https://ror.org/04drvxt59 Beth Israel Deaconess Medical Center'), (3737, 'https://ror.org/04ds03q08', 'no_lang_code', 1, 'https://ror.org/04ds03q08 Mita Hospital 国際医療福祉大学三田病院'), (3738, 'https://ror.org/04dt6a039', 'en', 1, 'https://ror.org/04dt6a039 Military Medical Academy Војномедицинска академија'), (3739, 'https://ror.org/04dw1bf40', 'en', 1, 'https://ror.org/04dw1bf40 Mount Desert Island Biological Laboratory'), (3740, 'https://ror.org/04dwjqq87', 'en', 1, 'https://ror.org/04dwjqq87 Tanglewood Research'), (3741, 'https://ror.org/04dx82x73', 'en', 1, 'https://ror.org/04dx82x73 Nanning Normal University 南宁师范大学'), (3742, 'https://ror.org/04dzhx486', 'en', 1, 'https://ror.org/04dzhx486 Exeter Hospital'), (3743, 'https://ror.org/04dzpzw79', 'en', 1, 'https://ror.org/04dzpzw79 National Health Promotion Associates'), (3744, 'https://ror.org/04dzvew28', 'en', 1, 'https://ror.org/04dzvew28 Hackensack University Medical Center Mountainside'), (3745, 'https://ror.org/04dzvks42', 'en', 1, 'https://ror.org/04dzvks42 XinHua Hospital 上海交通大学医学院附属新华医院'), (3746, 'https://ror.org/04e0j1059', 'en', 1, 'https://ror.org/04e0j1059 Bethune-Cookman University'), (3747, 'https://ror.org/04e1w6923', 'fr', 1, 'https://ror.org/04e1w6923 Hôpital d''Hautepierre'), (3748, 'https://ror.org/04e2jep17', 'en', 1, 'https://ror.org/04e2jep17 Croydon University Hospital'), (3749, 'https://ror.org/04e2x2229', 'en', 1, 'https://ror.org/04e2x2229 Lala Lajpat Rai Memorial Medical College'), (3750, 'https://ror.org/04e4abg78', 'no_lang_code', 1, 'https://ror.org/04e4abg78 Nantan General Hospital 公立南丹病院'), (3751, 'https://ror.org/04e5j7m81', 'en', 1, 'https://ror.org/04e5j7m81 American Society of Mechanical Engineers'), (3752, 'https://ror.org/04e79zk25', 'en', 1, 'https://ror.org/04e79zk25 Institute for Medical Informatics and Biostatistics'), (3753, 'https://ror.org/04e7bpp71', 'no_lang_code', 1, 'https://ror.org/04e7bpp71 King Fahad Hospital Hufūf'), (3754, 'https://ror.org/04e857469', 'it', 1, 'https://ror.org/04e857469 Ospedale Regina Margherita Regina Margherita hospital'), (3755, 'https://ror.org/04e8jbs38', 'en', 1, 'https://ror.org/04e8jbs38 Helmut Schmidt University Helmut-Schmidt-Universität'), (3756, 'https://ror.org/04e8mq383', 'en', 1, 'https://ror.org/04e8mq383 Hyogo Prefectural Amagasaki General Medical Center 兵庫県立尼崎総合医療センター'), (3757, 'https://ror.org/04edns687', 'en', 1, 'https://ror.org/04edns687 Northeastern Illinois University'), (3758, 'https://ror.org/04ejkkg63', 'en', 1, 'https://ror.org/04ejkkg63 Ecologic Institute'), (3759, 'https://ror.org/04epb4p87', 'en', 1, 'https://ror.org/04epb4p87 Zhejiang Chinese Medical University 浙江中医药大学'), (3760, 'https://ror.org/04esata81', 'en', 1, 'https://ror.org/04esata81 European Science Foundation'), (3761, 'https://ror.org/04esb6v42', 'en', 1, 'https://ror.org/04esb6v42 Imam Hossein University دانشگاه امام حسین'), (3762, 'https://ror.org/04esegk75', 'en', 1, 'https://ror.org/04esegk75 Allina Health'), (3763, 'https://ror.org/04esvpn06', 'en', 1, 'https://ror.org/04esvpn06 Université d''État de virginie Virginia State University'), (3764, 'https://ror.org/04etaja30', 'no_lang_code', 1, 'https://ror.org/04etaja30 Beijing YouAn Hospital 北京佑安医院'), (3765, 'https://ror.org/04evcxq23', 'it', 1, 'https://ror.org/04evcxq23 Consorzio Nazionale Interuniversitario per i Trasporti e la Logistica'), (3766, 'https://ror.org/04evw4v13', 'pt', 1, 'https://ror.org/04evw4v13 Instituto Superior de Paços de Brandão'), (3767, 'https://ror.org/04ezg6d83', 'en', 1, 'https://ror.org/04ezg6d83 Toyohashi University of Technology 豊橋技術科学大学'), (3768, 'https://ror.org/04f3vmh71', 'tr', 1, 'https://ror.org/04f3vmh71 Medeniyet Üniversitesi Göztepe Eğitim ve Araştırma Hastanesi'), (3769, 'https://ror.org/04f4syj68', 'it', 1, 'https://ror.org/04f4syj68 Polo Universitario Città di Prato'), (3770, 'https://ror.org/04f558b63', 'pt', 1, 'https://ror.org/04f558b63 Centro Universitário Filadélfia'), (3771, 'https://ror.org/04f6p2t28', 'en', 1, 'https://ror.org/04f6p2t28 Hospital Labbafinejad بیمارستان لبافینژ'), (3772, 'https://ror.org/04f761z39', 'pt', 1, 'https://ror.org/04f761z39 Instituto Superior da Maia'), (3773, 'https://ror.org/04f812k67', 'en', 1, 'https://ror.org/04f812k67 Palo Alto University'), (3774, 'https://ror.org/04f86t017', 'es', 1, 'https://ror.org/04f86t017 Hospital de Especialidades'), (3775, 'https://ror.org/04f8gc808', 'no_lang_code', 1, 'https://ror.org/04f8gc808 Ganga Hospital'), (3776, 'https://ror.org/04f90ax67', 'en', 1, 'https://ror.org/04f90ax67 Ministry of Health and Population وزارة الصحة - الصفحة الرئيسية'), (3777, 'https://ror.org/04faw9m73', 'sv', 1, 'https://ror.org/04faw9m73 Hallands sjukhus Halmstad'), (3778, 'https://ror.org/04fbnx371', 'en', 1, 'https://ror.org/04fbnx371 West Virginia University Hospitals'), (3779, 'https://ror.org/04fc1dc24', 'en', 1, 'https://ror.org/04fc1dc24 Dorset County Hospital'), (3780, 'https://ror.org/04fdkjq44', 'en', 1, 'https://ror.org/04fdkjq44 Methodist University Hospital'), (3781, 'https://ror.org/04fkbqt11', 'ro', 1, 'https://ror.org/04fkbqt11 Hospital Colentina Spitalul Clinic Colentina'), (3782, 'https://ror.org/04fp78s33', 'en', 1, 'https://ror.org/04fp78s33 Hunter Holmes McGuire VA Medical Center'), (3783, 'https://ror.org/04fp9fm22', 'en', 1, 'https://ror.org/04fp9fm22 National University Hospital'), (3784, 'https://ror.org/04fpj6846', 'en', 1, 'https://ror.org/04fpj6846 Iowa Medical Society'), (3785, 'https://ror.org/04frzv033', 'en', 1, 'https://ror.org/04frzv033 Institute of Medical Biology'), (3786, 'https://ror.org/04fs4yy09', 'en', 1, 'https://ror.org/04fs4yy09 Lakewood Regional Medical Center'), (3787, 'https://ror.org/04fv66053', 'en', 1, 'https://ror.org/04fv66053 American Health Care Association'), (3788, 'https://ror.org/04fw3kw37', 'en', 1, 'https://ror.org/04fw3kw37 Shri Maharaja Hari Singh Hospital'), (3789, 'https://ror.org/04fwa4t58', 'en', 1, 'https://ror.org/04fwa4t58 Harefield Hospital'), (3790, 'https://ror.org/04fwyqr44', 'en', 1, 'https://ror.org/04fwyqr44 International Goodwill Hospital 国際親善総合病院'), (3791, 'https://ror.org/04fxknd68', 'en', 1, 'https://ror.org/04fxknd68 Catholic University of Daegu 대구가톨릭대학교'), (3792, 'https://ror.org/04fyasj17', 'en', 1, 'https://ror.org/04fyasj17 Nagoya Central Hospital 名古屋セントラル病院'), (3793, 'https://ror.org/04fybn584', 'en', 1, 'https://ror.org/04fybn584 Universidad del Cauca University of Cauca'), (3794, 'https://ror.org/04fz99q08', 'en', 1, 'https://ror.org/04fz99q08 Minami Wakayama Medical Center 国立病院機構南和歌山医療センタ'), (3795, 'https://ror.org/04g0bt697', 'en', 1, 'https://ror.org/04g0bt697 MultiCare Health System'), (3796, 'https://ror.org/04g27v387', 'ca', 1, 'https://ror.org/04g27v387 Hospital Universitari de Girona Doctor Josep Trueta Residencia Sanitaria de la Seguridad Social de Gerona'), (3797, 'https://ror.org/04g2hhm55', 'en', 1, 'https://ror.org/04g2hhm55 Birmingham General Hospital'), (3798, 'https://ror.org/04g33m791', 'en', 1, 'https://ror.org/04g33m791 Norrköping Hospital'), (3799, 'https://ror.org/04g3dn724', 'en', 1, 'https://ror.org/04g3dn724 Massachusetts Eye and Ear Infirmary'), (3800, 'https://ror.org/04g3stk86', 'sv', 1, 'https://ror.org/04g3stk86 Länssjukhuset i Kalmar'), (3801, 'https://ror.org/04g3z9997', 'en', 1, 'https://ror.org/04g3z9997 Kanchi Kamakoti CHILDS Trust Hospital'), (3802, 'https://ror.org/04g43x563', 'en', 1, 'https://ror.org/04g43x563 Minnesota Department of Health'), (3803, 'https://ror.org/04g525b43', 'en', 1, 'https://ror.org/04g525b43 First Pavlov State Medical University of St. Petersburg Первый Санкт-Петербургский государственный медицинский университет имени академика И. П. Павлова'), (3804, 'https://ror.org/04g7tnd56', 'en', 1, 'https://ror.org/04g7tnd56 North Maharashtra University उत्तर महाराष्ट्र विश्वविद्यालय'), (3805, 'https://ror.org/04g8hwy69', 'en', 1, 'https://ror.org/04g8hwy69 Holy Cross Hospital'), (3806, 'https://ror.org/04g9xj393', 'en', 1, 'https://ror.org/04g9xj393 Legacy Health'), (3807, 'https://ror.org/04gbhgc79', 'en', 1, 'https://ror.org/04gbhgc79 Hôpital Général de Montréal Montreal General Hospital'), (3808, 'https://ror.org/04gd4wn47', 'en', 1, 'https://ror.org/04gd4wn47 Arabian Gulf University جامعة الخليج العربي دانشگاه خلیج عربی'), (3809, 'https://ror.org/04gfeaw48', 'en', 1, 'https://ror.org/04gfeaw48 Southern Utah University'), (3810, 'https://ror.org/04gh26240', 'en', 1, 'https://ror.org/04gh26240 Mount Gould Hospital'), (3811, 'https://ror.org/04ghtpd15', 'en', 1, 'https://ror.org/04ghtpd15 Institute of Child Health ινστιτούτο υγείας του παιδιού'); INSERT INTO `rors` VALUES (3812, 'https://ror.org/04gjkkf30', 'en', 1, 'https://ror.org/04gjkkf30 Banner Sun Health Research Institute'), (3813, 'https://ror.org/04gknbs13', 'en', 1, 'https://ror.org/04gknbs13 National Chiayi University 國立嘉義大學'), (3814, 'https://ror.org/04gmtmm57', 'no_lang_code', 1, 'https://ror.org/04gmtmm57 Misgav Ladach מִשְׂגָּב לַדָּךְ'), (3815, 'https://ror.org/04gnvnd68', 'en', 1, 'https://ror.org/04gnvnd68 AnMed Health Medical Center'), (3816, 'https://ror.org/04gpcyk21', 'en', 1, 'https://ror.org/04gpcyk21 Japan Women''s University 日本女子大学'), (3817, 'https://ror.org/04gpfvy81', 'nl', 1, 'https://ror.org/04gpfvy81 Elisabeth-TweeSteden Ziekenhuis'), (3818, 'https://ror.org/04gqx4x78', 'it', 1, 'https://ror.org/04gqx4x78 Campus Bio-Medico University Università Campus Bio-Medico'), (3819, 'https://ror.org/04gr4mh63', 'en', 1, 'https://ror.org/04gr4mh63 Chung-Ang University Hospital 중앙대학교의료원'), (3820, 'https://ror.org/04grcvp20', 'no_lang_code', 1, 'https://ror.org/04grcvp20 Ingenieria Y Economia Del Transporte'), (3821, 'https://ror.org/04gs6xd08', 'en', 1, 'https://ror.org/04gs6xd08 Sjællands universitetshospital, Køge Zealand University Hospital Køge'), (3822, 'https://ror.org/04gt4je81', 'sv', 1, 'https://ror.org/04gt4je81 Lasarettet i Motala'), (3823, 'https://ror.org/04gw05r18', 'fr', 1, 'https://ror.org/04gw05r18 Centre Hospitalier Victor Dupouy'), (3824, 'https://ror.org/04gzbav43', 'en', 1, 'https://ror.org/04gzbav43 Amirkabir University of Technology دانشگاه صنعتی امیرکبیر'), (3825, 'https://ror.org/04h08p482', 'no_lang_code', 1, 'https://ror.org/04h08p482 Rolls-Royce (United Kingdom)'), (3826, 'https://ror.org/04h3ct388', 'en', 1, 'https://ror.org/04h3ct388 Imo State University Teaching Hospital'), (3827, 'https://ror.org/04h687w28', 'no_lang_code', 1, 'https://ror.org/04h687w28 Khalili Hospital بیمارستان خلیلی'), (3828, 'https://ror.org/04h74qb21', 'en', 1, 'https://ror.org/04h74qb21 Pilgrim Hospital'), (3829, 'https://ror.org/04h7nbn38', 'en', 1, 'https://ror.org/04h7nbn38 Canberra Hospital'), (3830, 'https://ror.org/04h8jph19', 'en', 1, 'https://ror.org/04h8jph19 Soon Chun Hyang University Cheonan Hospital 순천향대학교 천안병원'), (3831, 'https://ror.org/04hahwc19', 'en', 1, 'https://ror.org/04hahwc19 Meiji University of Integrative Medicine 明治国際医療大学'), (3832, 'https://ror.org/04hbpw172', 'en', 1, 'https://ror.org/04hbpw172 Punjab Medical College'), (3833, 'https://ror.org/04hcg0q34', 'en', 1, 'https://ror.org/04hcg0q34 Alameda Health System'), (3834, 'https://ror.org/04hgm3062', 'en', 1, 'https://ror.org/04hgm3062 Iowa City VA Health Care System'), (3835, 'https://ror.org/04hjf5k52', 'no_lang_code', 1, 'https://ror.org/04hjf5k52 Pivotal Labs'), (3836, 'https://ror.org/04hjn8p44', 'en', 1, 'https://ror.org/04hjn8p44 Staten Island University Hospital'), (3837, 'https://ror.org/04hk86037', 'en', 1, 'https://ror.org/04hk86037 Universidad de Matanzas "Camilo Cienfuegos" University of Matanzas, University of Matanzas "Camilo Cienfuegos"'), (3838, 'https://ror.org/04hnqrf16', 'en', 1, 'https://ror.org/04hnqrf16 National Center of Public Health and Analyses Национален център по обществено здраве и анализи'), (3839, 'https://ror.org/04hnrs676', 'pt', 1, 'https://ror.org/04hnrs676 Universidade de Mogi das Cruzes University of Mogi das Cruzes'), (3840, 'https://ror.org/04hp86393', 'no_lang_code', 1, 'https://ror.org/04hp86393 National Grid (United Kingdom)'), (3841, 'https://ror.org/04hsvgn43', 'en', 1, 'https://ror.org/04hsvgn43 Rangaraya Medical College'), (3842, 'https://ror.org/04hym7e04', 'en', 1, 'https://ror.org/04hym7e04 Al-Quds University אוניברסיטת אל-קודס جامعة القدس'), (3843, 'https://ror.org/04hzm4679', 'en', 1, 'https://ror.org/04hzm4679 National Institute for Occupational Health'), (3844, 'https://ror.org/04hzs7842', 'fr', 1, 'https://ror.org/04hzs7842 Centre Hospitalier Edmond Garcin'), (3845, 'https://ror.org/04hzsfs96', 'en', 1, 'https://ror.org/04hzsfs96 Hôpital adventiste porter Porter Adventist Hospital'), (3846, 'https://ror.org/04j0szy54', 'fr', 1, 'https://ror.org/04j0szy54 Hôpital Boucicaut'), (3847, 'https://ror.org/04j19h351', 'en', 1, 'https://ror.org/04j19h351 Chase Farm Hospital'), (3848, 'https://ror.org/04j1w0q97', 'en', 1, 'https://ror.org/04j1w0q97 Islamic University ইসলামী বিশ্ববিদ্যালয়'), (3849, 'https://ror.org/04j2cfe69', 'en', 1, 'https://ror.org/04j2cfe69 Tianjin Medical University Eye Hospital'), (3850, 'https://ror.org/04j339g17', 'en', 1, 'https://ror.org/04j339g17 Tokyo Teishin Hospital 東京逓信病院'), (3851, 'https://ror.org/04j36h363', 'en', 1, 'https://ror.org/04j36h363 Children''s Hospital & Medical Center'), (3852, 'https://ror.org/04j3vr751', 'en', 1, 'https://ror.org/04j3vr751 Hunan University of Technology'), (3853, 'https://ror.org/04j572391', 'en', 1, 'https://ror.org/04j572391 University Park Pathology Associates'), (3854, 'https://ror.org/04j6ay666', 'en', 1, 'https://ror.org/04j6ay666 Akashi Medical Center 明石医療センター'), (3855, 'https://ror.org/04j6dw954', 'en', 1, 'https://ror.org/04j6dw954 Have Dreams'), (3856, 'https://ror.org/04j71m034', 'en', 1, 'https://ror.org/04j71m034 Saint Francis Health System'), (3857, 'https://ror.org/04j7rhg40', 'no_lang_code', 1, 'https://ror.org/04j7rhg40 Prime Focus World'), (3858, 'https://ror.org/04j9bvy88', 'en', 1, 'https://ror.org/04j9bvy88 BG University Hospital Bergmannsheil Bochum BG Universitätsklinikum Bergmannsheil Bochum'), (3859, 'https://ror.org/04jc0r179', 'no_lang_code', 1, 'https://ror.org/04jc0r179 UK Coal'), (3860, 'https://ror.org/04jca3284', 'es', 1, 'https://ror.org/04jca3284 Hospital Metropolitano'), (3861, 'https://ror.org/04jdq2t93', 'en', 1, 'https://ror.org/04jdq2t93 Aaron Diamond AIDS Research Center'), (3862, 'https://ror.org/04je6yw13', 'en', 1, 'https://ror.org/04je6yw13 Cheikh Anta Diop University Université Cheikh Anta Diop'), (3863, 'https://ror.org/04jer6b34', 'en', 1, 'https://ror.org/04jer6b34 Washington State Board of Education'), (3864, 'https://ror.org/04jfnqt61', 'no_lang_code', 1, 'https://ror.org/04jfnqt61 Western Forest Products'), (3865, 'https://ror.org/04jjn8965', 'en', 1, 'https://ror.org/04jjn8965 Simpson College'), (3866, 'https://ror.org/04jkbnw46', 'en', 1, 'https://ror.org/04jkbnw46 Center for Infectious Disease Research'), (3867, 'https://ror.org/04jkk6t02', 'no_lang_code', 1, 'https://ror.org/04jkk6t02 IQuum (United States)'), (3868, 'https://ror.org/04jq4p608', 'pt', 1, 'https://ror.org/04jq4p608 Hospital Garcia de Orta'), (3869, 'https://ror.org/04jq72f57', 'en', 1, 'https://ror.org/04jq72f57 Royal Darwin Hospital'), (3870, 'https://ror.org/04jqj7p05', 'no_lang_code', 1, 'https://ror.org/04jqj7p05 Hitotsubashi University 一橋大学'), (3871, 'https://ror.org/04js17g72', 'en', 1, 'https://ror.org/04js17g72 Ifakara Health Institute'), (3872, 'https://ror.org/04jwmdy30', 'no_lang_code', 1, 'https://ror.org/04jwmdy30 XMG Studio (Canada)'), (3873, 'https://ror.org/04jx7r642', 'no_lang_code', 1, 'https://ror.org/04jx7r642 Process Research Ortech (Canada)'), (3874, 'https://ror.org/04jxcef68', 'en', 1, 'https://ror.org/04jxcef68 Royal Edinburgh Hospital'), (3875, 'https://ror.org/04jy8zw69', 'en', 1, 'https://ror.org/04jy8zw69 Yehuda Abarbanel Mental Health Center אברבנאל - המרכז לבריאות הנפש'), (3876, 'https://ror.org/04jyxq429', 'en', 1, 'https://ror.org/04jyxq429 Center for Research and Telecommunication Experimentation for Networked Communities'), (3877, 'https://ror.org/04jztag35', 'en', 1, 'https://ror.org/04jztag35 Peking Union Medical College Hospital 北京协和医院'), (3878, 'https://ror.org/04k093t90', 'en', 1, 'https://ror.org/04k093t90 Chaudhary Sarwan Kumar Himachal Pradesh Krishi Vishvavidyalaya'), (3879, 'https://ror.org/04k0yqc48', 'en', 1, 'https://ror.org/04k0yqc48 Buskerud University College'), (3880, 'https://ror.org/04k1cm432', 'en', 1, 'https://ror.org/04k1cm432 Saint Luke''s Hospital'), (3881, 'https://ror.org/04k1f6611', 'en', 1, 'https://ror.org/04k1f6611 Maccabi Health Care Services מכבי שירותי בריאות'), (3882, 'https://ror.org/04k26n974', 'pt', 1, 'https://ror.org/04k26n974 Instituto Superior Politécnico Gaya'), (3883, 'https://ror.org/04k3jt835', 'en', 1, 'https://ror.org/04k3jt835 Ronald Reagan UCLA Medical Center'), (3884, 'https://ror.org/04k4h9k07', 'en', 1, 'https://ror.org/04k4h9k07 Scripps Mercy Hospital'), (3885, 'https://ror.org/04k6zqn86', 'en', 1, 'https://ror.org/04k6zqn86 Beijing Hua Xin Hospital 北京华信医院'), (3886, 'https://ror.org/04k820v98', 'en', 1, 'https://ror.org/04k820v98 Saudi Aramco Medical Services Organization'), (3887, 'https://ror.org/04k8zab17', 'en', 1, 'https://ror.org/04k8zab17 Alliant International University'), (3888, 'https://ror.org/04kbvfy96', 'es', 1, 'https://ror.org/04kbvfy96 Hospital de Sagunto'), (3889, 'https://ror.org/04kg3w865', 'no_lang_code', 1, 'https://ror.org/04kg3w865 Phylonix (United States)'), (3890, 'https://ror.org/04kgg1090', 'en', 1, 'https://ror.org/04kgg1090 Pusan National University Yangsan Hospital 양산부산대학교병원'), (3891, 'https://ror.org/04kgqpx54', 'no_lang_code', 1, 'https://ror.org/04kgqpx54 Voestalpine (Austria)'), (3892, 'https://ror.org/04kjpp702', 'en', 1, 'https://ror.org/04kjpp702 Kaiser Permanente Santa Rosa Medical Center'), (3893, 'https://ror.org/04kk13p96', 'en', 1, 'https://ror.org/04kk13p96 Reading Hospital'), (3894, 'https://ror.org/04knhza04', 'en', 1, 'https://ror.org/04knhza04 KCMC Kilimanjaro Christian Medical Centre'), (3895, 'https://ror.org/04kt0yt69', 'tr', 1, 'https://ror.org/04kt0yt69 Etimesgut Asker Hastanesi'), (3896, 'https://ror.org/04kte4472', 'no_lang_code', 1, 'https://ror.org/04kte4472 Materials and Electrochemical Research (United States)'), (3897, 'https://ror.org/04kvh1910', 'en', 1, 'https://ror.org/04kvh1910 Resurrection Health Care'), (3898, 'https://ror.org/04ky9dq80', 'no_lang_code', 1, 'https://ror.org/04ky9dq80 Vaexjoe Energi Ab'), (3899, 'https://ror.org/04ky9n739', 'no_lang_code', 1, 'https://ror.org/04ky9n739 Beijing Chuiyangliu Hospital 北京市垂杨柳医院'), (3900, 'https://ror.org/04kzbp858', 'no_lang_code', 1, 'https://ror.org/04kzbp858 Agropur cooperative'), (3901, 'https://ror.org/04m0kdq23', 'it', 1, 'https://ror.org/04m0kdq23 Ospedale Sant''Anna'), (3902, 'https://ror.org/04m2hyg08', 'en', 1, 'https://ror.org/04m2hyg08 Maryland Science Center'), (3903, 'https://ror.org/04m3xd186', 'pt', 1, 'https://ror.org/04m3xd186 Centro Universitário de Belo Horizonte, Centro Universitário de belo Horizonte'), (3904, 'https://ror.org/04m61mj84', 'fr', 1, 'https://ror.org/04m61mj84 Centre Hospitalier Universitaire Henri-Mondor'), (3905, 'https://ror.org/04m88de33', 'en', 1, 'https://ror.org/04m88de33 Froedtert Menomonee Falls Hospital'), (3906, 'https://ror.org/04m8b1e20', 'en', 1, 'https://ror.org/04m8b1e20 Georgian Court University'), (3907, 'https://ror.org/04m8bh175', 'no_lang_code', 1, 'https://ror.org/04m8bh175 Advanced Fuel Research (United States)'), (3908, 'https://ror.org/04m8z4n60', 'en', 1, 'https://ror.org/04m8z4n60 Harris Health System'), (3909, 'https://ror.org/04mat8m15', 'fi', 1, 'https://ror.org/04mat8m15 Reumasäätiön sairaala'), (3910, 'https://ror.org/04mc30s43', 'no_lang_code', 1, 'https://ror.org/04mc30s43 Olivieri Foods'), (3911, 'https://ror.org/04mc4md34', 'tr', 1, 'https://ror.org/04mc4md34 Rize Devlet Hastanesi'), (3912, 'https://ror.org/04mc82d47', 'en', 1, 'https://ror.org/04mc82d47 Scientific Committee On Oceanic Research'), (3913, 'https://ror.org/04mdycw91', 'no_lang_code', 1, 'https://ror.org/04mdycw91 Eurofins (France)'), (3914, 'https://ror.org/04mf6js28', 'en', 1, 'https://ror.org/04mf6js28 Credit Valley Hospital'), (3915, 'https://ror.org/04mgjym08', 'en', 1, 'https://ror.org/04mgjym08 Institute of Occupational Medicine and Environmental Health Instytut Medycyny Pracy i Zdrowia Środowiskowego'), (3916, 'https://ror.org/04mh52z70', 'en', 1, 'https://ror.org/04mh52z70 Observatorio Astrofísico Smithsonian Smithsonian Astrophysical Observatory'), (3917, 'https://ror.org/04mhx6838', 'en', 1, 'https://ror.org/04mhx6838 National Institute on Deafness and Other Communication Disorders'), (3918, 'https://ror.org/04mkpd147', 'es', 1, 'https://ror.org/04mkpd147 Red Universitaria Nacional'), (3919, 'https://ror.org/04mm17p39', 'en', 1, 'https://ror.org/04mm17p39 Novant Health Forsyth Medical Center'), (3920, 'https://ror.org/04mpzkf73', 'en', 1, 'https://ror.org/04mpzkf73 Winthrop University'), (3921, 'https://ror.org/04mqy3p58', 'pt', 1, 'https://ror.org/04mqy3p58 Instituto de Engenharia de Sistemas e Computadores Investigação e Desenvolvimento'), (3922, 'https://ror.org/04mrdd905', 'en', 1, 'https://ror.org/04mrdd905 University of Wisconsin American Family Children''s Hospital'), (3923, 'https://ror.org/04mszwh44', 'en', 1, 'https://ror.org/04mszwh44 Gerontological Society of America'), (3924, 'https://ror.org/04mwdyf26', 'en', 1, 'https://ror.org/04mwdyf26 Al-Makassed Islamic Charitable Society Hospital'), (3925, 'https://ror.org/04mx3cr06', 'en', 1, 'https://ror.org/04mx3cr06 Leighton Hospital'), (3926, 'https://ror.org/04mxrtj31', 'en', 1, 'https://ror.org/04mxrtj31 Mater Children''s Hospital'), (3927, 'https://ror.org/04my10541', 'en', 1, 'https://ror.org/04my10541 Centre of Advanced Studies'), (3928, 'https://ror.org/04n4dcv16', 'en', 1, 'https://ror.org/04n4dcv16 Ardabil University of Medical Sciences دانشگاه علوم پزشکی اردبیل'), (3929, 'https://ror.org/04n4f3r80', 'en', 1, 'https://ror.org/04n4f3r80 Military Hospital of Tunis'), (3930, 'https://ror.org/04n76mm80', 'en', 1, 'https://ror.org/04n76mm80 Hanyang University Seoul Hospital'), (3931, 'https://ror.org/04n9z8z70', 'en', 1, 'https://ror.org/04n9z8z70 New Mexico VA Health Care System'), (3932, 'https://ror.org/04nbe0v26', 'en', 1, 'https://ror.org/04nbe0v26 Institute of Studies for the Integration of Systems l’Istituto di Studi per l’Integrazione dei Sistemi'), (3933, 'https://ror.org/04nc9r025', 'en', 1, 'https://ror.org/04nc9r025 Colonial War Memorial Hospital'), (3934, 'https://ror.org/04nctyb57', 'en', 1, 'https://ror.org/04nctyb57 Sharp Mary Birch Hospital for Women & Newborns'), (3935, 'https://ror.org/04ned8342', 'en', 1, 'https://ror.org/04ned8342 Saint Michael''s Medical Center'), (3936, 'https://ror.org/04nfc4n06', 'en', 1, 'https://ror.org/04nfc4n06 Franciscan Hospital for Children'), (3937, 'https://ror.org/04ngpga37', 'en', 1, 'https://ror.org/04ngpga37 Park University'), (3938, 'https://ror.org/04ngv0f69', 'en', 1, 'https://ror.org/04ngv0f69 Buffalo General Medical Center'), (3939, 'https://ror.org/04nj3w743', 'en', 1, 'https://ror.org/04nj3w743 German Kazakh University Kazakhstan-Nemis Universitet'), (3940, 'https://ror.org/04nn0sh76', 'en', 1, 'https://ror.org/04nn0sh76 Mogilev State University of Food Technologies Магілёўскі дзяржаўны ўніверсітэт харчавання'), (3941, 'https://ror.org/04npk0q16', 'en', 1, 'https://ror.org/04npk0q16 Animal Health Trust'), (3942, 'https://ror.org/04npss011', 'en', 1, 'https://ror.org/04npss011 Gandhi Medical College गांधी चिकित्सा महाविद्यालय, भोपाल గాంధీ వైద్య కళాశాల'), (3943, 'https://ror.org/04npwsp41', 'en', 1, 'https://ror.org/04npwsp41 Coriell Institute For Medical Research'), (3944, 'https://ror.org/04npy5k94', 'no_lang_code', 1, 'https://ror.org/04npy5k94 Intracom Telecom (Greece)'), (3945, 'https://ror.org/04nqv0v23', 'en', 1, 'https://ror.org/04nqv0v23 Lynn University'), (3946, 'https://ror.org/04nr0c858', 'es', 1, 'https://ror.org/04nr0c858 Hospital Vozandes'), (3947, 'https://ror.org/04nrjxa63', 'en', 1, 'https://ror.org/04nrjxa63 Shanghai Agrobiological Gene Center 上海市农业生物基因中心'), (3948, 'https://ror.org/04nrs5002', 'en', 1, 'https://ror.org/04nrs5002 Helen Joseph Hospital'), (3949, 'https://ror.org/04nt8b154', 'en', 1, 'https://ror.org/04nt8b154 Fukuoka University 福岡大学'), (3950, 'https://ror.org/04ntyjt11', 'en', 1, 'https://ror.org/04ntyjt11 Yeungnam University Medical Center 영남대학교병원'), (3951, 'https://ror.org/04nwm7739', 'en', 1, 'https://ror.org/04nwm7739 Oklahoma Baptist University'), (3952, 'https://ror.org/04nyf1f54', 'en', 1, 'https://ror.org/04nyf1f54 Shanghai Center For Bioinformation Technology 上海生物信息技术研究中心'), (3953, 'https://ror.org/04nzv4p86', 'it', 1, 'https://ror.org/04nzv4p86 Ospedale San Luigi Gonzaga'), (3954, 'https://ror.org/04p405e02', 'en', 1, 'https://ror.org/04p405e02 Biblioteca del Congreso de Estados Unidos Bibliothèque du Congrès Library of Congress'), (3955, 'https://ror.org/04p7nde68', 'en', 1, 'https://ror.org/04p7nde68 Hakodate Central General Hospital 函館中央病院'), (3956, 'https://ror.org/04pag4b70', 'fr', 1, 'https://ror.org/04pag4b70 Hôpital Jean-Verdier'), (3957, 'https://ror.org/04pc7j325', 'en', 1, 'https://ror.org/04pc7j325 Meir Medical Center מרכז רפואי מאיר'), (3958, 'https://ror.org/04pcmf738', 'en', 1, 'https://ror.org/04pcmf738 Kempegowda Institute of Medical Sciences ಕೆಂಪೇಗೌಡ ವೈದ್ಯಕೀಯ ವಿಜ್ಞಾನ ಸಂಸ್ಥೆ'), (3959, 'https://ror.org/04pd9b824', 'no_lang_code', 1, 'https://ror.org/04pd9b824 Doosan (United Kingdom)'), (3960, 'https://ror.org/04pf12f40', 'en', 1, 'https://ror.org/04pf12f40 Louisiana State University at Eunice Université d''État de louisiane à eunice'), (3961, 'https://ror.org/04pf1fm38', 'en', 1, 'https://ror.org/04pf1fm38 Seirei Social Welfare Community'), (3962, 'https://ror.org/04pne0d08', 'en', 1, 'https://ror.org/04pne0d08 Norton Medical Centre'), (3963, 'https://ror.org/04pqpfz42', 'en', 1, 'https://ror.org/04pqpfz42 National Medical Center'), (3964, 'https://ror.org/04pr9pz75', 'it', 1, 'https://ror.org/04pr9pz75 Azienda Ospedaliera San Giovanni Addolorata San Giovanni Addolorata Hospital'), (3965, 'https://ror.org/04ptbrd12', 'en', 1, 'https://ror.org/04ptbrd12 Guilan University of Medical Sciences دانشگاه علوم پزشکی گیلان'), (3966, 'https://ror.org/04pwc8466', 'en', 1, 'https://ror.org/04pwc8466 Johns Hopkins Bayview Medical Center'), (3967, 'https://ror.org/04py1g812', 'en', 1, 'https://ror.org/04py1g812 Jiangsu Province Hospital 江苏省人民医院'), (3968, 'https://ror.org/04pyb7y63', 'en', 1, 'https://ror.org/04pyb7y63 Fondazione Internazionale per la Ricerca Sulla Combustione International Flame Research Foundation'), (3969, 'https://ror.org/04pyrxz13', 'en', 1, 'https://ror.org/04pyrxz13 Southern California University of Health Sciences'), (3970, 'https://ror.org/04pysv427', 'en', 1, 'https://ror.org/04pysv427 Lady Ridgeway Hospital for Children லேடி ரிட்ஜ்வே வைத்தியசாலையில் රිජ්වේ ආර්යා ළමා රෝහල'), (3971, 'https://ror.org/04q48ey07', 'en', 1, 'https://ror.org/04q48ey07 National Institute of General Medical Sciences'), (3972, 'https://ror.org/04q9tew83', 'en', 1, 'https://ror.org/04q9tew83 Henry M. Jackson Foundation'), (3973, 'https://ror.org/04qbdwc31', 'en', 1, 'https://ror.org/04qbdwc31 Southport and Formby District General Hospital'), (3974, 'https://ror.org/04qcftj32', 'en', 1, 'https://ror.org/04qcftj32 UK Health and Environment Research Institute'), (3975, 'https://ror.org/04qdwp261', 'es', 1, 'https://ror.org/04qdwp261 Hospital Clinico San Borja Arriaran, Hospital San Borja Arriarán'), (3976, 'https://ror.org/04qesyg82', 'en', 1, 'https://ror.org/04qesyg82 Medical Education Institute'), (3977, 'https://ror.org/04qgcgz06', 'en', 1, 'https://ror.org/04qgcgz06 University Hospital of North Durham'), (3978, 'https://ror.org/04qj1gz53', 'de', 1, 'https://ror.org/04qj1gz53 Lukaskrankenhaus'), (3979, 'https://ror.org/04qjnvx31', 'en', 1, 'https://ror.org/04qjnvx31 Brentwood Biomedical Research Institute'), (3980, 'https://ror.org/04qk4yf71', 'en', 1, 'https://ror.org/04qk4yf71 Conemaugh Memorial Medical Center'), (3981, 'https://ror.org/04qkq2m54', 'en', 1, 'https://ror.org/04qkq2m54 National Yunlin University of Science and Technology'), (3982, 'https://ror.org/04qkymg17', 'no_lang_code', 1, 'https://ror.org/04qkymg17 Assuta Medical Center אסותא מרכזים רפואיים'), (3983, 'https://ror.org/04qm8ac48', 'en', 1, 'https://ror.org/04qm8ac48 Philadelphia Department of Public Health'), (3984, 'https://ror.org/04qma4821', 'pt', 1, 'https://ror.org/04qma4821 Hospital Pró-Cardíaco'), (3985, 'https://ror.org/04qmkfe11', 'en', 1, 'https://ror.org/04qmkfe11 VA St. Louis Health Care System'), (3986, 'https://ror.org/04qn0xg47', 'en', 1, 'https://ror.org/04qn0xg47 Kyungpook National University Hospital 경북대학교병원'), (3987, 'https://ror.org/04qpegs24', 'en', 1, 'https://ror.org/04qpegs24 Resources For The Future'), (3988, 'https://ror.org/04qs81248', 'en', 1, 'https://ror.org/04qs81248 Russells Hall Hospital'), (3989, 'https://ror.org/04qvdf239', 'tr', 1, 'https://ror.org/04qvdf239 Bozok Universitesi Bozok University'), (3990, 'https://ror.org/04qwmjc96', 'no_lang_code', 1, 'https://ror.org/04qwmjc96 BASF (Canada)'), (3991, 'https://ror.org/04qx1zg28', 'en', 1, 'https://ror.org/04qx1zg28 Redeemer University College'), (3992, 'https://ror.org/04r0kzx48', 'en', 1, 'https://ror.org/04r0kzx48 Baker University'), (3993, 'https://ror.org/04r17y386', 'en', 1, 'https://ror.org/04r17y386 Danish Health and Medicines Authority, National Board of Health Sundhedsstyrelsen'), (3994, 'https://ror.org/04r1x2k35', 'en', 1, 'https://ror.org/04r1x2k35 FH Kufstein University of Applied Sciences Kufstein'), (3995, 'https://ror.org/04r33pf22', 'en', 1, 'https://ror.org/04r33pf22 Guy''s Hospital'), (3996, 'https://ror.org/04r5ess67', 'en', 1, 'https://ror.org/04r5ess67 Sleep and Human Health Institute'), (3997, 'https://ror.org/04r69jb93', 'en', 1, 'https://ror.org/04r69jb93 Kokushikan University 国士舘大学'), (3998, 'https://ror.org/04r9qdk92', 'tr', 1, 'https://ror.org/04r9qdk92 Kudret Eye Hospital Kudret Göz Hastanesi'), (3999, 'https://ror.org/04rha3g10', 'en', 1, 'https://ror.org/04rha3g10 Queen Alexandra Hospital'), (4000, 'https://ror.org/04rhdtb47', 'en', 1, 'https://ror.org/04rhdtb47 Obstetrics and Gynecology Hospital of Fudan University 复旦大学附属妇产科医院'), (4001, 'https://ror.org/04rj5w171', 'en', 1, 'https://ror.org/04rj5w171 Olabisi Onabanjo University Teaching Hospital'), (4002, 'https://ror.org/04rmz8121', 'en', 1, 'https://ror.org/04rmz8121 Isra University'), (4003, 'https://ror.org/04rqpth59', 'en', 1, 'https://ror.org/04rqpth59 Boston Biomedical Research Institute'), (4004, 'https://ror.org/04rr42t68', 'nl', 1, 'https://ror.org/04rr42t68 Jeroen Bosch Ziekenhuis'), (4005, 'https://ror.org/04rsexf17', 'no_lang_code', 1, 'https://ror.org/04rsexf17 Stemcell Technologies'), (4006, 'https://ror.org/04rssyw40', 'en', 1, 'https://ror.org/04rssyw40 Universitatea de Științe Agronomice și Medicină Veterinară din București University of Agronomic Sciences and Veterinary Medicine of Bucharest'), (4007, 'https://ror.org/04rvm9c15', 'en', 1, 'https://ror.org/04rvm9c15 Southland Hospital'), (4008, 'https://ror.org/04rvms649', 'es', 1, 'https://ror.org/04rvms649 Hospital Nuestra Señora de Alarcos'), (4009, 'https://ror.org/04rx0dh54', 'en', 1, 'https://ror.org/04rx0dh54 Sansum Medical Clinic'), (4010, 'https://ror.org/04rxn4y96', 'no_lang_code', 1, 'https://ror.org/04rxn4y96 Cell and Tissue Systems (United States)'), (4011, 'https://ror.org/04s2yen12', 'en', 1, 'https://ror.org/04s2yen12 Letterkenny University Hospital Ospidéal Ginearálta Leitir Ceanainn'), (4012, 'https://ror.org/04s36qm86', 'en', 1, 'https://ror.org/04s36qm86 Chelyabinsk State University Челябинский государственный университет'), (4013, 'https://ror.org/04s4j9e43', 'en', 1, 'https://ror.org/04s4j9e43 Omar Bongo University Université Omar Bongo'), (4014, 'https://ror.org/04s5n7912', 'en', 1, 'https://ror.org/04s5n7912 Science Research Laboratory'), (4015, 'https://ror.org/04s7f5535', 'no_lang_code', 1, 'https://ror.org/04s7f5535 Beta Technology Limited'), (4016, 'https://ror.org/04s8a8w57', 'en', 1, 'https://ror.org/04s8a8w57 University Hospital of the West Indies'), (4017, 'https://ror.org/04s9hft57', 'en', 1, 'https://ror.org/04s9hft57 Quaid-i-Azam University جامعہ قائداعظم'), (4018, 'https://ror.org/04saq4y86', 'en', 1, 'https://ror.org/04saq4y86 Indira Gandhi Institute of Child Health'), (4019, 'https://ror.org/04sb8a726', 'no_lang_code', 1, 'https://ror.org/04sb8a726 Hôpital Antoine-Béclère'), (4020, 'https://ror.org/04sbcrt14', 'en', 1, 'https://ror.org/04sbcrt14 Bhavnagar University'), (4021, 'https://ror.org/04scbtr44', 'es', 1, 'https://ror.org/04scbtr44 Hospital Universitario de Fuenlabrada'), (4022, 'https://ror.org/04scfb908', 'en', 1, 'https://ror.org/04scfb908 Alfred Health'), (4023, 'https://ror.org/04sexa105', 'en', 1, 'https://ror.org/04sexa105 Qazvin University of Medical Sciences دانشگاه علوم پزشكي و خدمات درماني قزوین'), (4024, 'https://ror.org/04sfmcd28', 'fr', 1, 'https://ror.org/04sfmcd28 Centre Hospitalier Universitaire Pointe-à-Pitre'), (4025, 'https://ror.org/04sgkca59', 'en', 1, 'https://ror.org/04sgkca59 Funabashi Central Hospital 船橋中央病院'), (4026, 'https://ror.org/04sgy9050', 'pt', 1, 'https://ror.org/04sgy9050 Hospital Santa Marcelina'), (4027, 'https://ror.org/04sh9kd82', 'en', 1, 'https://ror.org/04sh9kd82 Starship Children''s Health'), (4028, 'https://ror.org/04shepe48', 'en', 1, 'https://ror.org/04shepe48 Chinese Culture University 中國文化大學'), (4029, 'https://ror.org/04sheqe49', 'en', 1, 'https://ror.org/04sheqe49 Daisy Hill Hospital Otharlann Chnoc na Nóiníní'), (4030, 'https://ror.org/04skjvf92', 'pt', 1, 'https://ror.org/04skjvf92 Hospital da Restauração'), (4031, 'https://ror.org/04skph061', 'en', 1, 'https://ror.org/04skph061 Hospital de la Universidad de Nuevo México University of New Mexico Hospital'), (4032, 'https://ror.org/04sq8k219', 'en', 1, 'https://ror.org/04sq8k219 University of Louisville Hospital'), (4033, 'https://ror.org/04sr36h49', 'no_lang_code', 1, 'https://ror.org/04sr36h49 Seeders (South Korea)'), (4034, 'https://ror.org/04ss1bw11', 'en', 1, 'https://ror.org/04ss1bw11 Tzu Chi University 慈濟大學'), (4035, 'https://ror.org/04ssfah06', 'es', 1, 'https://ror.org/04ssfah06 Hospital Virgen de los Lirios'), (4036, 'https://ror.org/04svdmv30', 'fr', 1, 'https://ror.org/04svdmv30 The Association of the European Rail Industry, Union des Industries Ferroviaires Européennes'), (4037, 'https://ror.org/04sx7v519', 'fr', 1, 'https://ror.org/04sx7v519 Hôtel-Dieu de Lyon'), (4038, 'https://ror.org/04sxj4848', 'en', 1, 'https://ror.org/04sxj4848 Sarah Lawrence College'), (4039, 'https://ror.org/04sz7qx51', 'fr', 1, 'https://ror.org/04sz7qx51 Centre Hospitalier Universitaire de Rabat-Salé'), (4040, 'https://ror.org/04sze3c15', 'en', 1, 'https://ror.org/04sze3c15 Yonsei University Health System'), (4041, 'https://ror.org/04szr1369', 'en', 1, 'https://ror.org/04szr1369 Guangzhou Chest Hospital 广州市胸科医院'), (4042, 'https://ror.org/04t23pb41', 'fr', 1, 'https://ror.org/04t23pb41 Hôpital Civil de Charleroi'), (4043, 'https://ror.org/04t41ec74', 'en', 1, 'https://ror.org/04t41ec74 Father Muller Medical College Hospital फादर म्युलर मेडिकल कॉलेज பாதர் முல்லெர் மெடிக்கல் காலேஜ் ఫాదర్ ముల్లెర్ మెడికల్ కాలేజ్ ಫಾದೆರ್ ಮುಲ್ಲರ್ ಮೆಡಿಕಲ್ ಕಾಳಜ್ ഫാദർ മുള്ളെർ മെഡിക്കൽ കോളേജ്'), (4044, 'https://ror.org/04t4jzh38', 'en', 1, 'https://ror.org/04t4jzh38 Notre Dame Seishin University ノートルダム清心女子大学'), (4045, 'https://ror.org/04t6r6d34', 'en', 1, 'https://ror.org/04t6r6d34 International Space University'), (4046, 'https://ror.org/04t6zb108', 'en', 1, 'https://ror.org/04t6zb108 University Hospitals Geneva Medical Center'), (4047, 'https://ror.org/04t77r183', 'es', 1, 'https://ror.org/04t77r183 Hospital Ludovica Hospital de Niños Superiora Sor María Ludovica'), (4048, 'https://ror.org/04tavf782', 'en', 1, 'https://ror.org/04tavf782 Beijing Computational Science Research Center 北京计算科学研究中心'), (4049, 'https://ror.org/04tbm0m52', 'en', 1, 'https://ror.org/04tbm0m52 Pinderfields Hospital'), (4050, 'https://ror.org/04tf4g123', 'en', 1, 'https://ror.org/04tf4g123 Sichuan Provincial Academy of Natural Resource Sciences 四川省自然资源科学院'), (4051, 'https://ror.org/04tft4718', 'no_lang_code', 1, 'https://ror.org/04tft4718 Tamkang University 淡江大學'), (4052, 'https://ror.org/04tm3k558', 'en', 1, 'https://ror.org/04tm3k558 Third Affiliated Hospital of Sun Yat-sen University'), (4053, 'https://ror.org/04tpqnr72', 'en', 1, 'https://ror.org/04tpqnr72 Harold Wood Hospital'), (4054, 'https://ror.org/04tprjr04', 'en', 1, 'https://ror.org/04tprjr04 Nippon Steel Yawata Memorial Hospital 製鉄記念八幡病院'), (4055, 'https://ror.org/04tqcn816', 'en', 1, 'https://ror.org/04tqcn816 Health Sciences University of Hokkaido 北海道医療大学'), (4056, 'https://ror.org/04tr09862', 'en', 1, 'https://ror.org/04tr09862 Sequoia Hospital'), (4057, 'https://ror.org/04ts4qa58', 'en', 1, 'https://ror.org/04ts4qa58 Changwon National University 창원대학교'), (4058, 'https://ror.org/04ttjf776', 'en', 1, 'https://ror.org/04ttjf776 RMIT University'), (4059, 'https://ror.org/04twccc71', 'en', 1, 'https://ror.org/04twccc71 National United University'), (4060, 'https://ror.org/04tzy5g14', 'en', 1, 'https://ror.org/04tzy5g14 Missouri Botanical Garden'), (4061, 'https://ror.org/04v00sg98', 'en', 1, 'https://ror.org/04v00sg98 VA Boston Healthcare System'), (4062, 'https://ror.org/04v0wnx78', 'tr', 1, 'https://ror.org/04v0wnx78 Dr. Siyami Ersek Göğüs Kalp Ve Damar Cerrahisi Eğitim Ve Araştırma Hastanesi'), (4063, 'https://ror.org/04v1j8c44', 'no_lang_code', 1, 'https://ror.org/04v1j8c44 Advanced Bioscience Laboratories (United States)'), (4064, 'https://ror.org/04v3sec91', 'en', 1, 'https://ror.org/04v3sec91 Saint Mary''s University of Minnesota'), (4065, 'https://ror.org/04v403p80', 'en', 1, 'https://ror.org/04v403p80 Consorzio Interuniversitario Risonanze Magnetiche di Metallo Proteine Interuniversity Consortium for Magnetic Resonance'), (4066, 'https://ror.org/04v91tb50', 'es', 1, 'https://ror.org/04v91tb50 Complejo Hospitalario Torrecárdenas'), (4067, 'https://ror.org/04v98kq37', 'no_lang_code', 1, 'https://ror.org/04v98kq37 Renault (France)'), (4068, 'https://ror.org/04va7bx33', 'en', 1, 'https://ror.org/04va7bx33 Killingbeck'), (4069, 'https://ror.org/04vcan916', 'en', 1, 'https://ror.org/04vcan916 Lev Hasharon Hospital מרכז רפואי לבריאות הנפש לב השרון'), (4070, 'https://ror.org/04vccmr34', 'nl', 1, 'https://ror.org/04vccmr34 Medisch Centrum Alkmaar'), (4071, 'https://ror.org/04vcxwm16', 'en', 1, 'https://ror.org/04vcxwm16 Mission Hospital'), (4072, 'https://ror.org/04vdpck27', 'en', 1, 'https://ror.org/04vdpck27 Catholic University of the Maule Universidad Católica del Maule'), (4073, 'https://ror.org/04vfsmv21', 'en', 1, 'https://ror.org/04vfsmv21 National Institutes of Health Clinical Center'), (4074, 'https://ror.org/04vfyfx73', 'no_lang_code', 1, 'https://ror.org/04vfyfx73 Teer Coatings (United Kingdom)'), (4075, 'https://ror.org/04vgkzj18', 'en', 1, 'https://ror.org/04vgkzj18 Ibaraki Prefectural University of Health Sciences 茨城県立医療大学'), (4076, 'https://ror.org/04vhsg885', 'en', 1, 'https://ror.org/04vhsg885 Allama Iqbal Medical College علامہ اقبال میڈیکل کالج'), (4077, 'https://ror.org/04vnz0695', 'no_lang_code', 1, 'https://ror.org/04vnz0695 Asahikawa Kosei Hospital 旭川厚生病院'), (4078, 'https://ror.org/04vq5kb54', 'en', 1, 'https://ror.org/04vq5kb54 UCLA Medical Center'), (4079, 'https://ror.org/04vqzd428', 'en', 1, 'https://ror.org/04vqzd428 Social Insurance Saitama Chuo Hospital 埼玉メディカルセンター'), (4080, 'https://ror.org/04vrsb288', 'en', 1, 'https://ror.org/04vrsb288 Far Eastern State Medical University Дальневосточный государственный медицинский университет'), (4081, 'https://ror.org/04vt4a111', 'en', 1, 'https://ror.org/04vt4a111 Behavioral Health Research Center of the Southwest'), (4082, 'https://ror.org/04vtx5s55', 'en', 1, 'https://ror.org/04vtx5s55 University of Malawi'), (4083, 'https://ror.org/04vxr4k74', 'no_lang_code', 1, 'https://ror.org/04vxr4k74 Sahmyook University 삼육대학교'), (4084, 'https://ror.org/04vy5s568', 'en', 1, 'https://ror.org/04vy5s568 La Universidad del Zulia University of Zulia'), (4085, 'https://ror.org/04w1m5n60', 'fr', 1, 'https://ror.org/04w1m5n60 Hôtel-Dieu de France'), (4086, 'https://ror.org/04w3ve464', 'no_lang_code', 1, 'https://ror.org/04w3ve464 Kyoto Katsura Hospital 京都桂病院'), (4087, 'https://ror.org/04w40b524', 'en', 1, 'https://ror.org/04w40b524 Abderrahmane Mami Hospital'), (4088, 'https://ror.org/04wa91k02', 'en', 1, 'https://ror.org/04wa91k02 Kuban State Medical University Кубанский государственный медицинский университет'), (4089, 'https://ror.org/04waphv22', 'en', 1, 'https://ror.org/04waphv22 Tamil Nadu Veterinary and Animal Sciences University தமிழ்நாடு கால்நடை மருத்துவ அறிவியல் பல்கலைக்கழகம்'), (4090, 'https://ror.org/04wbhy398', 'pl', 1, 'https://ror.org/04wbhy398 Wojewódzki Szpital Zespolony'), (4091, 'https://ror.org/04wbsx459', 'en', 1, 'https://ror.org/04wbsx459 Nambour General Hospital'), (4092, 'https://ror.org/04wc5jk96', 'en', 1, 'https://ror.org/04wc5jk96 Hôpital de Montréal pour enfants Montreal Children''s Hospital'), (4093, 'https://ror.org/04wd10e19', 'en', 1, 'https://ror.org/04wd10e19 Andong National University 안동대학교'), (4094, 'https://ror.org/04wd31514', 'no_lang_code', 1, 'https://ror.org/04wd31514 CFD Research Corporation (United States)'), (4095, 'https://ror.org/04whfy367', 'en', 1, 'https://ror.org/04whfy367 Memorial Hospital of South Bend'), (4096, 'https://ror.org/04wm83d45', 'en', 1, 'https://ror.org/04wm83d45 Selma University'), (4097, 'https://ror.org/04wmhsz10', 'en', 1, 'https://ror.org/04wmhsz10 Sandwell General Hospital'), (4098, 'https://ror.org/04wn28048', 'en', 1, 'https://ror.org/04wn28048 University of Tulsa Université de tulsa'), (4099, 'https://ror.org/04wngnd82', 'en', 1, 'https://ror.org/04wngnd82 University Heights Center'), (4100, 'https://ror.org/04wnwd012', 'en', 1, 'https://ror.org/04wnwd012 Education Development Center'), (4101, 'https://ror.org/04wpkfc35', 'fr', 1, 'https://ror.org/04wpkfc35 Hôpital d''Instruction des Armées Sainte-Anne'), (4102, 'https://ror.org/04wpmby09', 'en', 1, 'https://ror.org/04wpmby09 Memorial Regional Hospital'), (4103, 'https://ror.org/04wprr919', 'en', 1, 'https://ror.org/04wprr919 Athens Eye Hospital Οφθαλμολογικό Νοσοκομείο Αθηνών'), (4104, 'https://ror.org/04wrfcw61', 'en', 1, 'https://ror.org/04wrfcw61 Sanford USD Medical Center'), (4105, 'https://ror.org/04ws1n245', 'en', 1, 'https://ror.org/04ws1n245 King Fahad Hospital Jeddah مستشفى الملك فهد بجدة'), (4106, 'https://ror.org/04ws6z706', 'en', 1, 'https://ror.org/04ws6z706 Saint Xavier University'), (4107, 'https://ror.org/04wvkky61', 'en', 1, 'https://ror.org/04wvkky61 Southern General Hospital'), (4108, 'https://ror.org/04wwbpd10', 'no_lang_code', 1, 'https://ror.org/04wwbpd10 Biomedware (United States)'), (4109, 'https://ror.org/04wwg3z97', 'no_lang_code', 1, 'https://ror.org/04wwg3z97 Dammam Central Hospital مستشفى الدمام المركزي'), (4110, 'https://ror.org/04x0k0m51', 'en', 1, 'https://ror.org/04x0k0m51 Seokyeong University 서경대학교'), (4111, 'https://ror.org/04x0r0b44', 'en', 1, 'https://ror.org/04x0r0b44 Connecticut Department of Mental Health and Addiction Services'), (4112, 'https://ror.org/04x16j349', 'no_lang_code', 1, 'https://ror.org/04x16j349 Invotek'), (4113, 'https://ror.org/04x16yc34', 'no_lang_code', 1, 'https://ror.org/04x16yc34 Al Nahdha Hospital مستشفى النهضة'), (4114, 'https://ror.org/04x1ptk36', 'en', 1, 'https://ror.org/04x1ptk36 Ibis Reproductive Health'), (4115, 'https://ror.org/04x1z3t86', 'en', 1, 'https://ror.org/04x1z3t86 Mercy St. Vincent Medical Center'), (4116, 'https://ror.org/04x27ad97', 'en', 1, 'https://ror.org/04x27ad97 Baby Memorial Hospital'), (4117, 'https://ror.org/04x495f64', 'en', 1, 'https://ror.org/04x495f64 Rainbow Babies & Children''s Hospital'), (4118, 'https://ror.org/04x6tqs25', 'no_lang_code', 1, 'https://ror.org/04x6tqs25 Nova Chemicals (Canada)'), (4119, 'https://ror.org/04x744g62', 'en', 1, 'https://ror.org/04x744g62 Shin Kong WHS Memorial Hospital'), (4120, 'https://ror.org/04xbrv698', 'en', 1, 'https://ror.org/04xbrv698 Institut für Mobil- und Satellitenfunktechnik Institute for Mobile and Satellite Communication Technology'), (4121, 'https://ror.org/04xdbp773', 'no_lang_code', 1, 'https://ror.org/04xdbp773 Academic Edge'), (4122, 'https://ror.org/04xfhjr27', 'en', 1, 'https://ror.org/04xfhjr27 Great Western Hospital'), (4123, 'https://ror.org/04xfsbk97', 'en', 1, 'https://ror.org/04xfsbk97 Shenzhen Third People’s Hospital 深圳市第三人民医院'), (4124, 'https://ror.org/04xhnr923', 'no_lang_code', 1, 'https://ror.org/04xhnr923 Hyogo Prefectural Nishinomiya Hospital 兵庫県立西宮病院'), (4125, 'https://ror.org/04xnzxv25', 'en', 1, 'https://ror.org/04xnzxv25 Khyber Teaching Hospital'), (4126, 'https://ror.org/04xpmtk39', 'en', 1, 'https://ror.org/04xpmtk39 Southern Hills Medical Center'), (4127, 'https://ror.org/04xraxn18', 'en', 1, 'https://ror.org/04xraxn18 Fondazione Telethon Telethon Foundation'), (4128, 'https://ror.org/04xsjmh40', 'en', 1, 'https://ror.org/04xsjmh40 American Society for Microbiology'), (4129, 'https://ror.org/04xtpk854', 'en', 1, 'https://ror.org/04xtpk854 Manchester Royal Eye Hospital'), (4130, 'https://ror.org/04xv01a59', 'en', 1, 'https://ror.org/04xv01a59 The Pirbright Institute'), (4131, 'https://ror.org/04xv63e47', 'en', 1, 'https://ror.org/04xv63e47 Sin-Lau Christian Hospital'), (4132, 'https://ror.org/04xvkcm66', 'no_lang_code', 1, 'https://ror.org/04xvkcm66 Apption'), (4133, 'https://ror.org/04xz2c768', 'en', 1, 'https://ror.org/04xz2c768 R. K. Khan Hospital'), (4134, 'https://ror.org/04xze1462', 'no_lang_code', 1, 'https://ror.org/04xze1462 Nokia (Belgium)'), (4135, 'https://ror.org/04xzj3x20', 'en', 1, 'https://ror.org/04xzj3x20 LAC+USC Medical Center'), (4136, 'https://ror.org/04y28m257', 'no_lang_code', 1, 'https://ror.org/04y28m257 SOLINET'), (4137, 'https://ror.org/04y2gp806', 'en', 1, 'https://ror.org/04y2gp806 King Fahad Central Hospital مستشفى الملك فهد المركزي بجازان'), (4138, 'https://ror.org/04y2hdd14', 'no_lang_code', 1, 'https://ror.org/04y2hdd14 Amiri Hospital المستشفى الأميري'), (4139, 'https://ror.org/04y3ze847', 'en', 1, 'https://ror.org/04y3ze847 Ospidéal na hOllscoile, Luimneach University Hospital Limerick'), (4140, 'https://ror.org/04y6m3r89', 'en', 1, 'https://ror.org/04y6m3r89 Arkansas State Department of Human Services'), (4141, 'https://ror.org/04y71bh49', 'en', 1, 'https://ror.org/04y71bh49 Southern University at Shreveport'), (4142, 'https://ror.org/04y908s98', 'en', 1, 'https://ror.org/04y908s98 Government Medical College'), (4143, 'https://ror.org/04yajdn66', 'en', 1, 'https://ror.org/04yajdn66 Wuhan Medical Center for Women and Children'), (4144, 'https://ror.org/04yb7hq57', 'en', 1, 'https://ror.org/04yb7hq57 Stavropol State Medical University Ставропольский государственный медицинский университет'), (4145, 'https://ror.org/04ycpbx82', 'en', 1, 'https://ror.org/04ycpbx82 Prifysgol Westminster University of Westminster'), (4146, 'https://ror.org/04yd6pw26', 'en', 1, 'https://ror.org/04yd6pw26 Cape Cod Hospital'), (4147, 'https://ror.org/04yj19304', 'en', 1, 'https://ror.org/04yj19304 California Baptist University'), (4148, 'https://ror.org/04ymee833', 'en', 1, 'https://ror.org/04ymee833 Central Institute for the Deaf'), (4149, 'https://ror.org/04ymr6s03', 'en', 1, 'https://ror.org/04ymr6s03 Launceston General Hospital'), (4150, 'https://ror.org/04yrw5x43', 'it', 1, 'https://ror.org/04yrw5x43 Ospedale di Livorno'), (4151, 'https://ror.org/04ytrbh65', 'en', 1, 'https://ror.org/04ytrbh65 Osaka University of Health and Sport Sciences 大阪体育大学'), (4152, 'https://ror.org/04ywg3445', 'no_lang_code', 1, 'https://ror.org/04ywg3445 New England Biolabs (United States)'), (4153, 'https://ror.org/04yxtqc27', 'en', 1, 'https://ror.org/04yxtqc27 Caroline Chisholm Centre for Health Ethics'), (4154, 'https://ror.org/04yy7zb66', 'en', 1, 'https://ror.org/04yy7zb66 Centre for Mental Health'), (4155, 'https://ror.org/04yyp8h20', 'no_lang_code', 1, 'https://ror.org/04yyp8h20 Pilkington (United Kingdom)'), (4156, 'https://ror.org/04z18y971', 'no_lang_code', 1, 'https://ror.org/04z18y971 Jennerex Biotherapeutics (Canada)'), (4157, 'https://ror.org/04z1c5686', 'no_lang_code', 1, 'https://ror.org/04z1c5686 Encana (Canada)'), (4158, 'https://ror.org/04z4j3y75', 'fr', 1, 'https://ror.org/04z4j3y75 Institut Sénégalais de Recherches Agricoles'), (4159, 'https://ror.org/04z5vy146', 'en', 1, 'https://ror.org/04z5vy146 Carlo Forlanini Hospital'), (4160, 'https://ror.org/04z61sd03', 'en', 1, 'https://ror.org/04z61sd03 Alder Hey Children''s Hospital'), (4161, 'https://ror.org/04z7fc725', 'en', 1, 'https://ror.org/04z7fc725 St.John''s Medical College Hospital'), (4162, 'https://ror.org/04z89xx32', 'en', 1, 'https://ror.org/04z89xx32 Atlanta VA Medical Center'), (4163, 'https://ror.org/04z9w5078', 'no_lang_code', 1, 'https://ror.org/04z9w5078 Xerox (Canada)'), (4164, 'https://ror.org/04z9zma62', 'en', 1, 'https://ror.org/04z9zma62 American Hospital Association'), (4165, 'https://ror.org/04zah8g26', 'no_lang_code', 1, 'https://ror.org/04zah8g26 Pouliadis Associates Corporation'), (4166, 'https://ror.org/04zap7912', 'en', 1, 'https://ror.org/04zap7912 Yunnan University of Traditional Chinese Medicine 云南中医药大学'), (4167, 'https://ror.org/04zb59n70', 'en', 1, 'https://ror.org/04zb59n70 Leibniz Institute for Solid State and Materials Research Leibniz-Institut für Festkörper- und Werkstoffforschung Dresden'), (4168, 'https://ror.org/04zbgcp34', 'no_lang_code', 1, 'https://ror.org/04zbgcp34 Kantar Health (United States)'), (4169, 'https://ror.org/04zbkyt39', 'en', 1, 'https://ror.org/04zbkyt39 National Hispanic University'), (4170, 'https://ror.org/04zfmcq84', 'en', 1, 'https://ror.org/04zfmcq84 Children''s Mercy Hospital'), (4171, 'https://ror.org/04zgkpa58', 'en', 1, 'https://ror.org/04zgkpa58 Health Protection Scotland'), (4172, 'https://ror.org/04zgvbn76', 'en', 1, 'https://ror.org/04zgvbn76 Guthrie Hospice'), (4173, 'https://ror.org/04zgvy449', 'no_lang_code', 1, 'https://ror.org/04zgvy449 PSA Peugeot Citroën (France)'), (4174, 'https://ror.org/04zhhva53', 'en', 1, 'https://ror.org/04zhhva53 Thomas Jefferson University Hospital'), (4175, 'https://ror.org/04zjvnp94', 'en', 1, 'https://ror.org/04zjvnp94 Clalit Health Services שירותי בריאות כללית'), (4176, 'https://ror.org/04zkctn64', 'en', 1, 'https://ror.org/04zkctn64 University Hospital of Alexandroupolis'), (4177, 'https://ror.org/04zmppn46', 'en', 1, 'https://ror.org/04zmppn46 Public Health Solutions'), (4178, 'https://ror.org/04zn42r77', 'en', 1, 'https://ror.org/04zn42r77 Shahid Bahonar University of Kerman دانشگاه شهید باهنر کرمان'), (4179, 'https://ror.org/04zn9qp70', 'en', 1, 'https://ror.org/04zn9qp70 Pennsylvania Department of Human Services'), (4180, 'https://ror.org/04zpy9a42', 'en', 1, 'https://ror.org/04zpy9a42 Nil Ratan Sircar Medical College and Hospital नील रतन सरकार मेडिकल कॉलेज र अस्पताल'), (4181, 'https://ror.org/04zsytt76', 'en', 1, 'https://ror.org/04zsytt76 Wise & Munro Learning Research'), (4182, 'https://ror.org/04ztdzs79', 'en', 1, 'https://ror.org/04ztdzs79 Fenway Health'), (4183, 'https://ror.org/04zx3rq17', 'en', 1, 'https://ror.org/04zx3rq17 National Cheng Kung University Hospital'), (4184, 'https://ror.org/04zy7mm10', 'en', 1, 'https://ror.org/04zy7mm10 Canadian Dairy Network'), (4185, 'https://ror.org/04zyews33', 'no_lang_code', 1, 'https://ror.org/04zyews33 Baylis Medical (Canada)'), (4186, 'https://ror.org/04zygv656', 'en', 1, 'https://ror.org/04zygv656 Airedale General Hospital'), (4187, 'https://ror.org/04zyja509', 'pt', 1, 'https://ror.org/04zyja509 Universidade de Franca'), (4188, 'https://ror.org/04zz3m093', 'en', 1, 'https://ror.org/04zz3m093 KIST Medical College'), (4189, 'https://ror.org/04zzqmk94', 'en', 1, 'https://ror.org/04zzqmk94 Kintampo Health Research Centre'), (4190, 'https://ror.org/050113w36', 'en', 1, 'https://ror.org/050113w36 SRM Institute of Science and Technology திரு. இராமசாமி நினைவுப் பல்கலைக்கழகம்'), (4191, 'https://ror.org/05031qk94', 'en', 1, 'https://ror.org/05031qk94 Taipei Medical University'), (4192, 'https://ror.org/0504y0m80', 'en', 1, 'https://ror.org/0504y0m80 Polyclinic General Hospital'), (4193, 'https://ror.org/05087r129', 'en', 1, 'https://ror.org/05087r129 Hizen Psychiatric Center 肥前精神医療センター'), (4194, 'https://ror.org/0509tgg56', 'no_lang_code', 1, 'https://ror.org/0509tgg56 Airbus (Spain)'), (4195, 'https://ror.org/050adm910', 'no_lang_code', 1, 'https://ror.org/050adm910 Chiba Hokusou Hospital 日本医科大学千葉北総病院'), (4196, 'https://ror.org/050b05p79', 'en', 1, 'https://ror.org/050b05p79 Sriram Chandra Bhanja Medical College Hospital ଶ୍ରୀରାମ ଚନ୍ଦ୍ର ଭଞ୍ଜ ଭେଷଜ ମହାବିଦ୍ୟାଳୟ'), (4197, 'https://ror.org/050b31k83', 'en', 1, 'https://ror.org/050b31k83 Hunter New England Local Health District'), (4198, 'https://ror.org/050batv17', 'en', 1, 'https://ror.org/050batv17 Mater Hospital'), (4199, 'https://ror.org/050bd8661', 'en', 1, 'https://ror.org/050bd8661 Royal Surrey NHS Foundation Trust'), (4200, 'https://ror.org/050c9qp51', 'en', 1, 'https://ror.org/050c9qp51 Massachusetts Department of Public Health'), (4201, 'https://ror.org/050cwzy61', 'en', 1, 'https://ror.org/050cwzy61 St Mary''s Hospital'), (4202, 'https://ror.org/050fz5z96', 'en', 1, 'https://ror.org/050fz5z96 Washington DC VA Medical Center'), (4203, 'https://ror.org/050hwd209', 'en', 1, 'https://ror.org/050hwd209 Hokkaido Institute of Public Health 北海道立衛生研究所'), (4204, 'https://ror.org/050j2vm64', 'en', 1, 'https://ror.org/050j2vm64 Bangalore University Université de bangalore बंगलौर विश्वविद्यालय बंगळुरू विद्यापीठ பெங்களூர்ப் பல்கலைக்கழகம் బెంగుళూరు విశ్వవిద్యాలయం ಬೆಂಗಳೂರು ವಿಶ್ವವಿದ್ಯಾಲಯ'), (4205, 'https://ror.org/050jqep38', 'nl', 1, 'https://ror.org/050jqep38 Altrecht GGZ'), (4206, 'https://ror.org/050k2da37', 'en', 1, 'https://ror.org/050k2da37 Global Medical Imaging'), (4207, 'https://ror.org/050mdr969', 'en', 1, 'https://ror.org/050mdr969 Kansas City VA Medical Center'), (4208, 'https://ror.org/050nkg722', 'en', 1, 'https://ror.org/050nkg722 Oita University Hospital 大分大学医学部附属病院'), (4209, 'https://ror.org/050pqs331', 'en', 1, 'https://ror.org/050pqs331 MRC Human Nutrition Research'), (4210, 'https://ror.org/050qew682', 'no_lang_code', 1, 'https://ror.org/050qew682 Bolder Biotechnology, Inc.'), (4211, 'https://ror.org/050qpjf10', 'en', 1, 'https://ror.org/050qpjf10 Botsford Hospital'), (4212, 'https://ror.org/050rkhq40', 'en', 1, 'https://ror.org/050rkhq40 Jacksonville University Universidad de Jacksonville Université de jacksonville'), (4213, 'https://ror.org/050th9p79', 'en', 1, 'https://ror.org/050th9p79 Scunthorpe General Hospital'), (4214, 'https://ror.org/050w2g362', 'no_lang_code', 1, 'https://ror.org/050w2g362 Inovamais'), (4215, 'https://ror.org/050wjeh45', 'en', 1, 'https://ror.org/050wjeh45 Eisenhower Medical Center'), (4216, 'https://ror.org/050y0ba80', 'no_lang_code', 1, 'https://ror.org/050y0ba80 D''Appolonia (Italy)'), (4217, 'https://ror.org/050ztxn78', 'en', 1, 'https://ror.org/050ztxn78 Madras Medical College மதராசு மருத்துவக் கல்லூரி మద్రాస్ వైద్య కళాశాల'), (4218, 'https://ror.org/050zvc738', 'en', 1, 'https://ror.org/050zvc738 Agia Olga Hospital ΚΩΝΣΤΑΝΤΟΠΟΥΛΕΙΟ ΓΕΝΙΚΟ ΝΟΣΟΚΟΜΕΙΟ ΝΕΑΣ ΙΩΝΙΑΣ'), (4219, 'https://ror.org/0511k4970', 'en', 1, 'https://ror.org/0511k4970 Children''s Hospital أطفال مستشفى تونس'), (4220, 'https://ror.org/0511th722', 'fr', 1, 'https://ror.org/0511th722 Hôpital Albert-Chenevier'), (4221, 'https://ror.org/0511yej17', 'en', 1, 'https://ror.org/0511yej17 Dartmouth Institute for Health Policy and Clinical Practice'), (4222, 'https://ror.org/0511zqc76', 'en', 1, 'https://ror.org/0511zqc76 Chuo Kikuu cha Tumaini Tumaini University'), (4223, 'https://ror.org/0512xad50', 'en', 1, 'https://ror.org/0512xad50 American Academy of Pediatrics'), (4224, 'https://ror.org/0513nfd47', 'en', 1, 'https://ror.org/0513nfd47 Kootenai Medical Center'), (4225, 'https://ror.org/051525m98', 'en', 1, 'https://ror.org/051525m98 Mercy Medical Center'), (4226, 'https://ror.org/0516ah480', 'en', 1, 'https://ror.org/0516ah480 The Graduate University for Advanced Studies, SOKENDAI 総合研究大学院大学'), (4227, 'https://ror.org/051a97h21', 'no_lang_code', 1, 'https://ror.org/051a97h21 National Nuclear Corporation (United Kingdom)'), (4228, 'https://ror.org/051b68e86', 'en', 1, 'https://ror.org/051b68e86 Frankston Hospital'), (4229, 'https://ror.org/051b9c228', 'it', 1, 'https://ror.org/051b9c228 Ospedale Martini'); INSERT INTO `rors` VALUES (4230, 'https://ror.org/051c2ew73', 'es', 1, 'https://ror.org/051c2ew73 Hospital General de La Rioja'), (4231, 'https://ror.org/051cp7s36', 'en', 1, 'https://ror.org/051cp7s36 Fatima Jinnah Medical University فاطمہ جناح میڈیکل کالج'), (4232, 'https://ror.org/051dzw862', 'en', 1, 'https://ror.org/051dzw862 Gentofte Hospital'), (4233, 'https://ror.org/051fpt583', 'it', 1, 'https://ror.org/051fpt583 Ospedale Buccheri la Ferla Fatebenefratelli'), (4234, 'https://ror.org/051hvcm98', 'en', 1, 'https://ror.org/051hvcm98 Jiangsu Normal University 江苏师范大学'), (4235, 'https://ror.org/051j7cj03', 'en', 1, 'https://ror.org/051j7cj03 Minot State University Université d''État de minot'), (4236, 'https://ror.org/051j8zv27', 'no_lang_code', 1, 'https://ror.org/051j8zv27 Osaka Kyoiku University 大阪教育大学'), (4237, 'https://ror.org/051mda743', 'en', 1, 'https://ror.org/051mda743 Garrahan Hospital'), (4238, 'https://ror.org/051mn8706', 'en', 1, 'https://ror.org/051mn8706 Tumor Hospital of Guangxi Medical University 广西医科大学肿瘤医院'), (4239, 'https://ror.org/051qv3667', 'no_lang_code', 1, 'https://ror.org/051qv3667 Applus+ IDIADA (Spain) Institut d''Investigació Aplicada de l''Automòbil'), (4240, 'https://ror.org/051s3e988', 'fr', 1, 'https://ror.org/051s3e988 Hôpital Universitaire Dupuytren'), (4241, 'https://ror.org/051sezk39', 'no_lang_code', 1, 'https://ror.org/051sezk39 Micralyne'), (4242, 'https://ror.org/051smbs96', 'en', 1, 'https://ror.org/051smbs96 The University of Texas of the Permian Basin'), (4243, 'https://ror.org/051wnqr14', 'en', 1, 'https://ror.org/051wnqr14 Department of Defence'), (4244, 'https://ror.org/051xgzg37', 'en', 1, 'https://ror.org/051xgzg37 Stockholm Environment Institute'), (4245, 'https://ror.org/0520j5d52', 'no_lang_code', 1, 'https://ror.org/0520j5d52 Peptidream (Japan) ペプチドリーム'), (4246, 'https://ror.org/0522w3m69', 'no_lang_code', 1, 'https://ror.org/0522w3m69 Sinhgad Dental College and Hospital'), (4247, 'https://ror.org/0524j1g61', 'en', 1, 'https://ror.org/0524j1g61 Stoke Mandeville Hospital Ysbyty Stoke Mandeville'), (4248, 'https://ror.org/052578691', 'en', 1, 'https://ror.org/052578691 MRC Epidemiology Unit'), (4249, 'https://ror.org/0525h8d02', 'en', 1, 'https://ror.org/0525h8d02 New Mexico Regional Federal Medical Center'), (4250, 'https://ror.org/0525j6d32', 'en', 1, 'https://ror.org/0525j6d32 Nishijin Hospital 西陣病院'), (4251, 'https://ror.org/05275vm15', 'en', 1, 'https://ror.org/05275vm15 Gelre Hospitals Gelre Ziekenhuizen'), (4252, 'https://ror.org/05278be16', 'es', 1, 'https://ror.org/05278be16 Hospital del Niño'), (4253, 'https://ror.org/0527gjc91', 'en', 1, 'https://ror.org/0527gjc91 Temple Street Children''s University Hospital'), (4254, 'https://ror.org/052963a64', 'en', 1, 'https://ror.org/052963a64 Ohio Northern University'), (4255, 'https://ror.org/052dmyg58', 'en', 1, 'https://ror.org/052dmyg58 Greenville Memorial Hospital'), (4256, 'https://ror.org/052fdp564', 'no_lang_code', 1, 'https://ror.org/052fdp564 Enel (Italy)'), (4257, 'https://ror.org/052g5ww90', 'fr', 1, 'https://ror.org/052g5ww90 Hopital Universitaire Habib Bourguiba'), (4258, 'https://ror.org/052jt6v75', 'pl', 1, 'https://ror.org/052jt6v75 Wojewódzki Szpital Zespolony im. Jędrzeja Śniadeckiego'), (4259, 'https://ror.org/052k2q138', 'en', 1, 'https://ror.org/052k2q138 Shodair Children''s Hospital'), (4260, 'https://ror.org/052qqbc08', 'en', 1, 'https://ror.org/052qqbc08 Michael E. DeBakey VA Medical Center'), (4261, 'https://ror.org/052ra0j05', 'en', 1, 'https://ror.org/052ra0j05 Sinai Hospital'), (4262, 'https://ror.org/052vjje65', 'en', 1, 'https://ror.org/052vjje65 Royal Manchester Children''s Hospital'), (4263, 'https://ror.org/052vn2478', 'en', 1, 'https://ror.org/052vn2478 Liaocheng People''s Hospital 聊城市人民医院'), (4264, 'https://ror.org/052w06y65', 'no_lang_code', 1, 'https://ror.org/052w06y65 Jaslok Hospital'), (4265, 'https://ror.org/052w2jw50', 'fr', 1, 'https://ror.org/052w2jw50 Hôpital Saint-Jacques'), (4266, 'https://ror.org/052wqwf92', 'en', 1, 'https://ror.org/052wqwf92 Shuto General Hospital 周東総合病院'), (4267, 'https://ror.org/052zr0n46', 'en', 1, 'https://ror.org/052zr0n46 Institute for Medical Research and Occupational Health'), (4268, 'https://ror.org/0531xck41', 'en', 1, 'https://ror.org/0531xck41 Southeastern Louisiana University Universidad del Sudeste de Luisiana'), (4269, 'https://ror.org/05328fn02', 'en', 1, 'https://ror.org/05328fn02 Hermanos Ameijeiras Hospital Hospital Clínico Quirúrgico "Hermanos Ameijeiras"'), (4270, 'https://ror.org/0532h0d08', 'en', 1, 'https://ror.org/0532h0d08 Deaconess Hospital'), (4271, 'https://ror.org/0534awx66', 'en', 1, 'https://ror.org/0534awx66 Guangzhou Eighth People''s Hospital 广州市第八人民医院'), (4272, 'https://ror.org/0534dba08', 'en', 1, 'https://ror.org/0534dba08 Tamil University தமிழ்ப் பல்கலைக்கழகம், தஞ்சாவூர் തമിഴ് സർവകലാശാല'), (4273, 'https://ror.org/05359he25', 'no_lang_code', 1, 'https://ror.org/05359he25 Ibn Sina Hospital مستشفى ابن سينا'), (4274, 'https://ror.org/0535c1v66', 'en', 1, 'https://ror.org/0535c1v66 Assam University असम विश्वविद्यालय আসাম বিশ্ববিদ্যালয়'), (4275, 'https://ror.org/0535cbe18', 'en', 1, 'https://ror.org/0535cbe18 Kanazawa Medical University 金沢医科大学'), (4276, 'https://ror.org/05362x394', 'en', 1, 'https://ror.org/05362x394 MRC Toxicology Unit'), (4277, 'https://ror.org/053658081', 'en', 1, 'https://ror.org/053658081 Mitsubishi Kyoto Hospital 三菱京都病院'), (4278, 'https://ror.org/05368pf49', 'en', 1, 'https://ror.org/05368pf49 Institute of the Pupils of the Army Instituto dos Pupilos do Exército'), (4279, 'https://ror.org/05388sw24', 'en', 1, 'https://ror.org/05388sw24 University of South Alabama Medical Center'), (4280, 'https://ror.org/053bqv655', 'no_lang_code', 1, 'https://ror.org/053bqv655 STMicroelectronics (Italy)'), (4281, 'https://ror.org/053c75a48', 'en', 1, 'https://ror.org/053c75a48 East Texas Medical Center'), (4282, 'https://ror.org/053d3tv41', 'en', 1, 'https://ror.org/053d3tv41 International University of Health and Welfare 国際医療福祉大学'), (4283, 'https://ror.org/053d97e59', 'en', 1, 'https://ror.org/053d97e59 Kyung Hee University East-West Neo Medical Center 경희대학교 동서신의학병원 - 협진진료센터'), (4284, 'https://ror.org/053darw66', 'en', 1, 'https://ror.org/053darw66 Martha-Maria Hospital'), (4285, 'https://ror.org/053dkp921', 'en', 1, 'https://ror.org/053dkp921 Los Alamos Medical Center'), (4286, 'https://ror.org/053exzj86', 'en', 1, 'https://ror.org/053exzj86 Miriam Hospital'), (4287, 'https://ror.org/053eyjs84', 'en', 1, 'https://ror.org/053eyjs84 Princess Royal Maternity Hospital'), (4288, 'https://ror.org/053fh2363', 'en', 1, 'https://ror.org/053fh2363 Benedictine University'), (4289, 'https://ror.org/053fp5c05', 'en', 1, 'https://ror.org/053fp5c05 Ewha Womans University 이화여자대학교'), (4290, 'https://ror.org/053fx7g25', 'en', 1, 'https://ror.org/053fx7g25 Royal Bolton Hospital'), (4291, 'https://ror.org/053fzma23', 'en', 1, 'https://ror.org/053fzma23 Sichuan University of Science and Engineering 四川理工学院'), (4292, 'https://ror.org/053gjjp11', 'tr', 1, 'https://ror.org/053gjjp11 Pamukkale Üniversitesi Hastaneleri'), (4293, 'https://ror.org/053hkmn05', 'en', 1, 'https://ror.org/053hkmn05 Primary Children''s Hospital'), (4294, 'https://ror.org/053kccs63', 'en', 1, 'https://ror.org/053kccs63 Osaka Dental University 大阪歯科大学'), (4295, 'https://ror.org/053mxw461', 'en', 1, 'https://ror.org/053mxw461 Sevastopol National Technical University Севастопольский национальный технический университет Севастопольський національний технічний університет'), (4296, 'https://ror.org/053ny5136', 'no_lang_code', 1, 'https://ror.org/053ny5136 Fujitsu (United Kingdom)'), (4297, 'https://ror.org/053sj8m08', 'en', 1, 'https://ror.org/053sj8m08 Kenyatta National Hospital'), (4298, 'https://ror.org/053v1pf86', 'no_lang_code', 1, 'https://ror.org/053v1pf86 Biomedical Development Corporation'), (4299, 'https://ror.org/053vhdz56', 'en', 1, 'https://ror.org/053vhdz56 Ospedale di Santa Maria Nuova Santa Maria Nuova Hospital'), (4300, 'https://ror.org/053vynf43', 'en', 1, 'https://ror.org/053vynf43 King Khaled Hospital مستشفى الملك خالد'), (4301, 'https://ror.org/053xhbr86', 'en', 1, 'https://ror.org/053xhbr86 Ryhov Hospital Jönköping'), (4302, 'https://ror.org/0540c8n94', 'no_lang_code', 1, 'https://ror.org/0540c8n94 Soka Municipal Hospital 草加市立病院'), (4303, 'https://ror.org/05422jd13', 'en', 1, 'https://ror.org/05422jd13 University Children''s Hospital, Belgrade Univerzitetska dečja klinika u Beogradu'), (4304, 'https://ror.org/0542q3127', 'en', 1, 'https://ror.org/0542q3127 Lviv Polytechnic National University Politechnika Lwowska Национальный университет «Львовская политехника» Національний університет «Львівська політехніка»'), (4305, 'https://ror.org/054652k97', 'en', 1, 'https://ror.org/054652k97 Public Health – Seattle & King County'), (4306, 'https://ror.org/0546wew42', 'en', 1, 'https://ror.org/0546wew42 New Jersey City University'), (4307, 'https://ror.org/054876c03', 'tr', 1, 'https://ror.org/054876c03 Ankara Atatürk Göğüs Hastalıkları Ve Göğüs Cerrahisi Eğitim Ve Araştırma Hastanesi'), (4308, 'https://ror.org/0549ak978', 'en', 1, 'https://ror.org/0549ak978 Gifu Red Cross Hospital 岐阜赤十字病院'), (4309, 'https://ror.org/054bptx32', 'fr', 1, 'https://ror.org/054bptx32 Hôpital Maison Blanche'), (4310, 'https://ror.org/054dq5m81', 'no_lang_code', 1, 'https://ror.org/054dq5m81 Universal Hi-Tech Development'), (4311, 'https://ror.org/054e9ag92', 'en', 1, 'https://ror.org/054e9ag92 Chang Gung Children''s Hospital'), (4312, 'https://ror.org/054ekwz94', 'en', 1, 'https://ror.org/054ekwz94 Queen Margaret Hospital'), (4313, 'https://ror.org/054ezs277', 'en', 1, 'https://ror.org/054ezs277 Framingham Union Hospital'), (4314, 'https://ror.org/054gzqw08', 'en', 1, 'https://ror.org/054gzqw08 Central Connecticut State University Universidad Estatal de Connecticut Central'), (4315, 'https://ror.org/054kr1687', 'en', 1, 'https://ror.org/054kr1687 Holy Cross Hospital'), (4316, 'https://ror.org/054nax084', 'en', 1, 'https://ror.org/054nax084 Clinical Centre of Kragujevac Клинички центар Крагујевац'), (4317, 'https://ror.org/054p2n359', 'en', 1, 'https://ror.org/054p2n359 Arkansas Department of Health'), (4318, 'https://ror.org/054qnke07', 'en', 1, 'https://ror.org/054qnke07 Ningbo No.6 Hospital 宁波市第六医院'), (4319, 'https://ror.org/054zbmd26', 'en', 1, 'https://ror.org/054zbmd26 Hera General Hospital'), (4320, 'https://ror.org/054zv1w86', 'no_lang_code', 1, 'https://ror.org/054zv1w86 Glencore (Switzerland)'), (4321, 'https://ror.org/05529q263', 'en', 1, 'https://ror.org/05529q263 Chungbuk National University Hospital'), (4322, 'https://ror.org/055546q82', 'en', 1, 'https://ror.org/055546q82 Bộ Y tế (Việt Nam) Ministry of Health'), (4323, 'https://ror.org/05564r514', 'en', 1, 'https://ror.org/05564r514 Association of European Renewable Energy Research Centres'), (4324, 'https://ror.org/05586rd65', 'nl', 1, 'https://ror.org/05586rd65 Kiwa'), (4325, 'https://ror.org/055aebe25', 'no_lang_code', 1, 'https://ror.org/055aebe25 CRE Group (United States)'), (4326, 'https://ror.org/055awd420', 'fr', 1, 'https://ror.org/055awd420 Hôpital de Sion'), (4327, 'https://ror.org/055bpw879', 'en', 1, 'https://ror.org/055bpw879 MRC Cognition and Brain Sciences Unit'), (4328, 'https://ror.org/055d6gv91', 'en', 1, 'https://ror.org/055d6gv91 Middlemore Hospital'), (4329, 'https://ror.org/055epge17', 'en', 1, 'https://ror.org/055epge17 Arkansas Foundation for Medical Care'), (4330, 'https://ror.org/055f7t516', 'en', 1, 'https://ror.org/055f7t516 National Research University Higher School of Economics Высшая школа экономики Юғары иҡтисад мәктәбе'), (4331, 'https://ror.org/055fgjp51', 'no_lang_code', 1, 'https://ror.org/055fgjp51 Nimbus Landscape Materials (United States)'), (4332, 'https://ror.org/055gkcy74', 'en', 1, 'https://ror.org/055gkcy74 Union Hospital'), (4333, 'https://ror.org/055gq1960', 'no_lang_code', 1, 'https://ror.org/055gq1960 Ada Technologies (United States)'), (4334, 'https://ror.org/055hhmc29', 'en', 1, 'https://ror.org/055hhmc29 Oregon Department of Human Services'), (4335, 'https://ror.org/055k2e754', 'en', 1, 'https://ror.org/055k2e754 Baltimore County Department of Health'), (4336, 'https://ror.org/055m2tx54', 'en', 1, 'https://ror.org/055m2tx54 North Eastern Hill University نارتھ ایسٹ ہل یونیورسٹی'), (4337, 'https://ror.org/055mfda29', 'en', 1, 'https://ror.org/055mfda29 Earth and Space Research'), (4338, 'https://ror.org/055mfza47', 'en', 1, 'https://ror.org/055mfza47 Saint Peter''s University Hospital'), (4339, 'https://ror.org/055p2yz63', 'es', 1, 'https://ror.org/055p2yz63 Hospital General Universitario de Albacete'), (4340, 'https://ror.org/055redd10', 'it', 1, 'https://ror.org/055redd10 Azienda Ospedaliera di Desio e Vimercate'), (4341, 'https://ror.org/055vbxf86', 'en', 1, 'https://ror.org/055vbxf86 Addenbrooke''s Hospital'), (4342, 'https://ror.org/055xb4311', 'en', 1, 'https://ror.org/055xb4311 Austrian Agency for Health and Food Safety Österreichische Agentur für Gesundheit und Ernährungssicherheit'), (4343, 'https://ror.org/055y34y19', 'en', 1, 'https://ror.org/055y34y19 Rose Medical Center'), (4344, 'https://ror.org/055ysan77', 'no_lang_code', 1, 'https://ror.org/055ysan77 Klein Buendel (United States)'), (4345, 'https://ror.org/055zmrh94', 'en', 1, 'https://ror.org/055zmrh94 John Innes Centre'), (4346, 'https://ror.org/0560hqd63', 'it', 1, 'https://ror.org/0560hqd63 Ospedale Monaldi'), (4347, 'https://ror.org/0560xr487', 'en', 1, 'https://ror.org/0560xr487 DR. B.R.A. Institute Rotary Cancer Hospital'), (4348, 'https://ror.org/056221z03', 'en', 1, 'https://ror.org/056221z03 Centre Hospitalier Universitaire de Treichville University Hospital Medical Center at Treichville'), (4349, 'https://ror.org/0566w5t03', 'en', 1, 'https://ror.org/0566w5t03 United States Office of Personnel Management'), (4350, 'https://ror.org/0567p6j84', 'en', 1, 'https://ror.org/0567p6j84 Stanley Medical College இசுடான்லி மருத்துவக் கல்லூரி'), (4351, 'https://ror.org/0567w8j84', 'en', 1, 'https://ror.org/0567w8j84 Bowie State University'), (4352, 'https://ror.org/0569bbe51', 'en', 1, 'https://ror.org/0569bbe51 Connecticut Mental Health Center'), (4353, 'https://ror.org/056a2fb24', 'no_lang_code', 1, 'https://ror.org/056a2fb24 Nanoprobes (United States)'), (4354, 'https://ror.org/056cn0e37', 'en', 1, 'https://ror.org/056cn0e37 Seoul St. Mary''s Hospital'), (4355, 'https://ror.org/056d7mp27', 'no_lang_code', 1, 'https://ror.org/056d7mp27 Applied Biological Materials (Canada)'), (4356, 'https://ror.org/056dkgp19', 'en', 1, 'https://ror.org/056dkgp19 Health Forecasting'), (4357, 'https://ror.org/056ep7w45', 'en', 1, 'https://ror.org/056ep7w45 Siksha O Anusandhan University'), (4358, 'https://ror.org/056mx1477', 'en', 1, 'https://ror.org/056mx1477 Children''s Hospital at Dartmouth Hitchcock'), (4359, 'https://ror.org/056nn5n22', 'en', 1, 'https://ror.org/056nn5n22 Aurora Sinai Medical Center'), (4360, 'https://ror.org/056p2ex35', 'en', 1, 'https://ror.org/056p2ex35 Asir Central Hospital مستشفى عسير المركزي'), (4361, 'https://ror.org/056pbvy42', 'it', 1, 'https://ror.org/056pbvy42 Ospedale di Monfalcone'), (4362, 'https://ror.org/056pg9759', 'en', 1, 'https://ror.org/056pg9759 SSM Health Care'), (4363, 'https://ror.org/056phcb82', 'en', 1, 'https://ror.org/056phcb82 The Keystone Center'), (4364, 'https://ror.org/056q45h83', 'es', 1, 'https://ror.org/056q45h83 Hospital Doctor Hernán Henríquez Aravena'), (4365, 'https://ror.org/056r5vk88', 'en', 1, 'https://ror.org/056r5vk88 Penza State University Пензенский государственный университет'), (4366, 'https://ror.org/056rage58', 'en', 1, 'https://ror.org/056rage58 Indira Gandhi Medical College'), (4367, 'https://ror.org/056rp9e47', 'en', 1, 'https://ror.org/056rp9e47 Metropolitan State University'), (4368, 'https://ror.org/056rz0f32', 'no_lang_code', 1, 'https://ror.org/056rz0f32 Virtually Better'), (4369, 'https://ror.org/056sm7z81', 'en', 1, 'https://ror.org/056sm7z81 Council of Chief State School Officers'), (4370, 'https://ror.org/056t4gr41', 'no_lang_code', 1, 'https://ror.org/056t4gr41 Morinomiya Hospital もりのみや ほsぴたl'), (4371, 'https://ror.org/056t5qz59', 'no_lang_code', 1, 'https://ror.org/056t5qz59 Fortis Hospital'), (4372, 'https://ror.org/056tb3809', 'de', 1, 'https://ror.org/056tb3809 Kantonsspital Aarau'), (4373, 'https://ror.org/056v1sx90', 'en', 1, 'https://ror.org/056v1sx90 Nicosia General Hospital'), (4374, 'https://ror.org/056wg8a82', 'en', 1, 'https://ror.org/056wg8a82 Le Bonheur Children''s Hospital'), (4375, 'https://ror.org/056y2f070', 'no_lang_code', 1, 'https://ror.org/056y2f070 Agios Andreas Hospital Γενικό Νοσοκομείο Πατρών'), (4376, 'https://ror.org/056yje678', 'fr', 1, 'https://ror.org/056yje678 Hôpital Mustapha Pacha'), (4377, 'https://ror.org/056zv5g90', 'en', 1, 'https://ror.org/056zv5g90 Jinnah University for Women جناح یونیورسٹی برائے خواتین'), (4378, 'https://ror.org/05735fh94', 'en', 1, 'https://ror.org/05735fh94 Gujarat Ayurved University गुजरात आयुर्वेद विश्वविद्यालय ગુજરાત આયુર્વેદ યુનિવર્સિટી'), (4379, 'https://ror.org/0573hvw69', 'tr', 1, 'https://ror.org/0573hvw69 Farabi Hastanesi'), (4380, 'https://ror.org/0573ts924', 'en', 1, 'https://ror.org/0573ts924 Princess Royal Hospital'), (4381, 'https://ror.org/0574j1p50', 'ro', 1, 'https://ror.org/0574j1p50 Spitalul Clinic de Recuperare'), (4382, 'https://ror.org/05757k612', 'en', 1, 'https://ror.org/05757k612 Sree Chitra Thirunal Institute for Medical Sciences and Technology'), (4383, 'https://ror.org/0576bwz31', 'no_lang_code', 1, 'https://ror.org/0576bwz31 Aizawa Hospital 相澤病院'), (4384, 'https://ror.org/05783y657', 'en', 1, 'https://ror.org/05783y657 Smith-Kettlewell Eye Research Institute'), (4385, 'https://ror.org/057anza51', 'en', 1, 'https://ror.org/057anza51 Metropolitan University of Educational Sciences Universidad Metropolitana de Ciencias de la Educación'), (4386, 'https://ror.org/057ays557', 'no_lang_code', 1, 'https://ror.org/057ays557 Kestrel Corporation'), (4387, 'https://ror.org/057b2d479', 'pt', 1, 'https://ror.org/057b2d479 Hospital Maria Pia'), (4388, 'https://ror.org/057cm0m66', 'en', 1, 'https://ror.org/057cm0m66 Sismanoglio General Hospital Γενικό Νοσοκομείο Σισμανόγλειο'), (4389, 'https://ror.org/057d2v504', 'en', 1, 'https://ror.org/057d2v504 Kohat University of Science and Technology'), (4390, 'https://ror.org/057e34m22', 'en', 1, 'https://ror.org/057e34m22 University of Massachusetts Donahue Institute'), (4391, 'https://ror.org/057edve92', 'en', 1, 'https://ror.org/057edve92 Tokyo Yamate Medical Center 東京山手メディカルセンター'), (4392, 'https://ror.org/057ft1y03', 'no_lang_code', 1, 'https://ror.org/057ft1y03 Kochi Municipal Central Hospital 高知県立中央病院'), (4393, 'https://ror.org/057jp7h82', 'en', 1, 'https://ror.org/057jp7h82 IIT Research Institute'), (4394, 'https://ror.org/057n8mx64', 'en', 1, 'https://ror.org/057n8mx64 Ministry of Health وزارة الصحة'), (4395, 'https://ror.org/057nqxc22', 'en', 1, 'https://ror.org/057nqxc22 West Virginia Wesleyan College'), (4396, 'https://ror.org/057p7h461', 'en', 1, 'https://ror.org/057p7h461 Affiliated Hospital of Guangdong Medical College Hospital'), (4397, 'https://ror.org/057pdzy92', 'es', 1, 'https://ror.org/057pdzy92 Hospital del Trabajador'), (4398, 'https://ror.org/057q4rt57', 'en', 1, 'https://ror.org/057q4rt57 Hospital for Sick Children'), (4399, 'https://ror.org/057s4cx47', 'no_lang_code', 1, 'https://ror.org/057s4cx47 Katsumata Hospital 勝又病院'), (4400, 'https://ror.org/057seh071', 'en', 1, 'https://ror.org/057seh071 Franklin Institute'), (4401, 'https://ror.org/057v2pg43', 'fr', 1, 'https://ror.org/057v2pg43 Hôpital Saint-Michel'), (4402, 'https://ror.org/057vt8c33', 'fr', 1, 'https://ror.org/057vt8c33 Hôpital Paule de Viguier'), (4403, 'https://ror.org/057vy9683', 'en', 1, 'https://ror.org/057vy9683 Hamamatsu University 浜松大学'), (4404, 'https://ror.org/057wh9709', 'fr', 1, 'https://ror.org/057wh9709 Centre hospitalier Robert-Ballanger'), (4405, 'https://ror.org/057xx1h21', 'en', 1, 'https://ror.org/057xx1h21 Association Médicale Canadienne Canadian Medical Association'), (4406, 'https://ror.org/057y6sk36', 'en', 1, 'https://ror.org/057y6sk36 National Institute of Biomedical Genomics'), (4407, 'https://ror.org/057z0pt68', 'en', 1, 'https://ror.org/057z0pt68 Kansas Department for Children and Families'), (4408, 'https://ror.org/05819fq78', 'en', 1, 'https://ror.org/05819fq78 Punjab Institute of Medical Sciences'), (4409, 'https://ror.org/0582gcw47', 'en', 1, 'https://ror.org/0582gcw47 Medical Research Institute'), (4410, 'https://ror.org/05831wz16', 'en', 1, 'https://ror.org/05831wz16 Republic of Palau Ministry of Health'), (4411, 'https://ror.org/0583jne22', 'en', 1, 'https://ror.org/0583jne22 Northwest Research Associates'), (4412, 'https://ror.org/0584fj407', 'en', 1, 'https://ror.org/0584fj407 University of North Alabama'), (4413, 'https://ror.org/0586a5g03', 'no_lang_code', 1, 'https://ror.org/0586a5g03 Clinical Tools, Inc.'), (4414, 'https://ror.org/0586bt104', 'en', 1, 'https://ror.org/0586bt104 Southport and Ormskirk Hospital NHS Trust'), (4415, 'https://ror.org/0587whv30', 'no_lang_code', 1, 'https://ror.org/0587whv30 Nexeon (United Kingdom)'), (4416, 'https://ror.org/0589bxs97', 'en', 1, 'https://ror.org/0589bxs97 McGill University and Génome Québec Innovation Centre'), (4417, 'https://ror.org/058c4h389', 'no_lang_code', 1, 'https://ror.org/058c4h389 Atom Sciences'), (4418, 'https://ror.org/058fy8f68', 'en', 1, 'https://ror.org/058fy8f68 Govind Ballabh Pant Hospital'), (4419, 'https://ror.org/058hnhf91', 'en', 1, 'https://ror.org/058hnhf91 Oral Roberts University'), (4420, 'https://ror.org/058hsp657', 'en', 1, 'https://ror.org/058hsp657 Hospital of Lithuanian University of Health Sciences Kaunas Clinics Lietuvos sveikatos mokslų universiteto ligoninė Kauno klinikos'), (4421, 'https://ror.org/058kbr222', 'no_lang_code', 1, 'https://ror.org/058kbr222 Qurient (South Korea)'), (4422, 'https://ror.org/058ms9w43', 'en', 1, 'https://ror.org/058ms9w43 Fujian Provincial Cancer Hospital 福建省肿瘤医院'), (4423, 'https://ror.org/058p1kn93', 'en', 1, 'https://ror.org/058p1kn93 VA Long Beach Healthcare System'), (4424, 'https://ror.org/058pdbn81', 'no_lang_code', 1, 'https://ror.org/058pdbn81 Dankook University 단국대학교'), (4425, 'https://ror.org/058peea52', 'en', 1, 'https://ror.org/058peea52 Sharp Cabrillo Hospital'), (4426, 'https://ror.org/058prbp42', 'en', 1, 'https://ror.org/058prbp42 Shaikh Zayed Postgraduate Medical Institute شیخ زید پوسٹ گریجویٹ میڈیکل انسٹی ٹیوٹ'), (4427, 'https://ror.org/058q6m856', 'en', 1, 'https://ror.org/058q6m856 Medical Trust Hospital'), (4428, 'https://ror.org/058qp7v13', 'en', 1, 'https://ror.org/058qp7v13 BGS Global Hospital'), (4429, 'https://ror.org/058rkm744', 'en', 1, 'https://ror.org/058rkm744 Niabi Zoological Society'), (4430, 'https://ror.org/058rxv392', 'en', 1, 'https://ror.org/058rxv392 University Hospital of North Tees'), (4431, 'https://ror.org/058s20p71', 'en', 1, 'https://ror.org/058s20p71 Public Health Foundation of India భారత ప్రజారోగ్య సమాఖ్య'), (4432, 'https://ror.org/058s98e36', 'en', 1, 'https://ror.org/058s98e36 Promotion of Operational Links With Integrated Services'), (4433, 'https://ror.org/058td2q88', 'fr', 1, 'https://ror.org/058td2q88 Hôpital Foch'), (4434, 'https://ror.org/058w59113', 'en', 1, 'https://ror.org/058w59113 Des Moines University Université de des moines'), (4435, 'https://ror.org/058x7dy48', 'en', 1, 'https://ror.org/058x7dy48 Royal United Hospital Bath NHS Trust'), (4436, 'https://ror.org/058xqe166', 'en', 1, 'https://ror.org/058xqe166 Kingston Hospital NHS Trust'), (4437, 'https://ror.org/058ydcm32', 'en', 1, 'https://ror.org/058ydcm32 Kaiser Foundation Hospital'), (4438, 'https://ror.org/058yxq906', 'en', 1, 'https://ror.org/058yxq906 Nikko Memorial Hospital 日鋼記念病院'), (4439, 'https://ror.org/0595gz585', 'en', 1, 'https://ror.org/0595gz585 University of Gondar'), (4440, 'https://ror.org/0596qfc35', 'en', 1, 'https://ror.org/0596qfc35 Kaweah Delta Health Care District'), (4441, 'https://ror.org/0599zba67', 'tr', 1, 'https://ror.org/0599zba67 Kent Hastanesi Kent Hospital'), (4442, 'https://ror.org/059c3mv67', 'en', 1, 'https://ror.org/059c3mv67 Cambridge Health Alliance'), (4443, 'https://ror.org/059cjpv64', 'en', 1, 'https://ror.org/059cjpv64 Second Affiliated Hospital of Zhejiang University'), (4444, 'https://ror.org/059dkdx38', 'en', 1, 'https://ror.org/059dkdx38 National Taiwan Normal University'), (4445, 'https://ror.org/059dqb057', 'en', 1, 'https://ror.org/059dqb057 American Chemical Society'), (4446, 'https://ror.org/059ebsr57', 'es', 1, 'https://ror.org/059ebsr57 Hospital Universitario de San Vicente Fundación'), (4447, 'https://ror.org/059ex7y15', 'en', 1, 'https://ror.org/059ex7y15 Instytut Centrum Zdrowia Matki Polki w Łodzi Polish Mother’s Memorial Hospital Research Institute'), (4448, 'https://ror.org/059f2k568', 'en', 1, 'https://ror.org/059f2k568 Ministry of Health'), (4449, 'https://ror.org/059g69b28', 'en', 1, 'https://ror.org/059g69b28 Dong-Eui University 동의대학교'), (4450, 'https://ror.org/059h1d250', 'en', 1, 'https://ror.org/059h1d250 Muljibhai Patel Urological Hospital'), (4451, 'https://ror.org/059jq5127', 'en', 1, 'https://ror.org/059jq5127 Harborview Medical Center'), (4452, 'https://ror.org/059kfmf89', 'fr', 1, 'https://ror.org/059kfmf89 Centre hospitalier régional de la Citadelle'), (4453, 'https://ror.org/059qg2m13', 'en', 1, 'https://ror.org/059qg2m13 Japan Agency for Marine-Earth Science and Technology 海洋研究開発機構'), (4454, 'https://ror.org/059w0gb06', 'en', 1, 'https://ror.org/059w0gb06 Karakalpak State University'), (4455, 'https://ror.org/059wef195', 'en', 1, 'https://ror.org/059wef195 Nishi Niigata Chuo National Hospital 国立病院機構西新潟中央病院'), (4456, 'https://ror.org/059x21724', 'en', 1, 'https://ror.org/059x21724 University of Yamanashi 山梨大学'), (4457, 'https://ror.org/059x9n677', 'no_lang_code', 1, 'https://ror.org/059x9n677 Eulji General Hospital 을지대학교병원'), (4458, 'https://ror.org/059xepj08', 'en', 1, 'https://ror.org/059xepj08 Akron General Medical Center'), (4459, 'https://ror.org/059xmmg10', 'en', 1, 'https://ror.org/059xmmg10 Eastern Mennonite University'), (4460, 'https://ror.org/059xnz004', 'en', 1, 'https://ror.org/059xnz004 Christ Hospital'), (4461, 'https://ror.org/059y9v737', 'en', 1, 'https://ror.org/059y9v737 Central College'), (4462, 'https://ror.org/05a01hn31', 'en', 1, 'https://ror.org/05a01hn31 Mater Dei Hospital'), (4463, 'https://ror.org/05a064c11', 'no_lang_code', 1, 'https://ror.org/05a064c11 Caisson Laboratories (United States)'), (4464, 'https://ror.org/05a15z872', 'en', 1, 'https://ror.org/05a15z872 Samsung Medical Center'), (4465, 'https://ror.org/05a2agx14', 'en', 1, 'https://ror.org/05a2agx14 Crouse Hospital'), (4466, 'https://ror.org/05a3efx98', 'no_lang_code', 1, 'https://ror.org/05a3efx98 Metropolitan Hospital'), (4467, 'https://ror.org/05a3jmv43', 'no_lang_code', 1, 'https://ror.org/05a3jmv43 Format International Ltd'), (4468, 'https://ror.org/05a79ds67', 'no_lang_code', 1, 'https://ror.org/05a79ds67 Bhatia Hospital'), (4469, 'https://ror.org/05a7hcs31', 'en', 1, 'https://ror.org/05a7hcs31 Providence Health & Services Oregon and Southwest Washington'), (4470, 'https://ror.org/05a90fj07', 'en', 1, 'https://ror.org/05a90fj07 Ealing Hospital'), (4471, 'https://ror.org/05aczzj13', 'en', 1, 'https://ror.org/05aczzj13 Shumei University 秀明大学'), (4472, 'https://ror.org/05aem0d44', 'en', 1, 'https://ror.org/05aem0d44 Francis Hospital Franziskus Hospital Bielefeld'), (4473, 'https://ror.org/05aeshm06', 'en', 1, 'https://ror.org/05aeshm06 Governador Celso Ramos Hospital'), (4474, 'https://ror.org/05afnhv08', 'en', 1, 'https://ror.org/05afnhv08 Sapporo National Hospital 国立病院機構北海道がんセンター'), (4475, 'https://ror.org/05ahq3q81', 'en', 1, 'https://ror.org/05ahq3q81 Amersham Hospital'), (4476, 'https://ror.org/05ajyt645', 'en', 1, 'https://ror.org/05ajyt645 Japanese Red Cross Society Wakayama Medical Center 日本赤十字社和歌山医療センター'), (4477, 'https://ror.org/05am5g719', 'en', 1, 'https://ror.org/05am5g719 St Mark''s Hospital'), (4478, 'https://ror.org/05apdps44', 'en', 1, 'https://ror.org/05apdps44 Raigmore Hospital'), (4479, 'https://ror.org/05aqcx827', 'en', 1, 'https://ror.org/05aqcx827 Ayrshire Central Hospital'), (4480, 'https://ror.org/05arfhc56', 'en', 1, 'https://ror.org/05arfhc56 University of Rajasthan Université du rajasthan राजस्थान विश्वविद्यालय ਰਾਜਸਥਾਨ ਯੂਨੀਵਰਸਿਟੀ'), (4481, 'https://ror.org/05atemp08', 'en', 1, 'https://ror.org/05atemp08 MedStar Health'), (4482, 'https://ror.org/05atz9219', 'en', 1, 'https://ror.org/05atz9219 East Stroudsburg University Université de pennsylvanie d''east stroudsburg'), (4483, 'https://ror.org/05av4b478', 'en', 1, 'https://ror.org/05av4b478 Sri Dharmasthala Manjunatheshwara College of Dental Sciences & Hospital'), (4484, 'https://ror.org/05ayf4d73', 'en', 1, 'https://ror.org/05ayf4d73 Southlake Regional Health Center'), (4485, 'https://ror.org/05aykvr94', 'de', 1, 'https://ror.org/05aykvr94 Augusta Krankenhaus'), (4486, 'https://ror.org/05azzyk65', 'en', 1, 'https://ror.org/05azzyk65 Piedmont Athens Regional'), (4487, 'https://ror.org/05b01nv96', 'en', 1, 'https://ror.org/05b01nv96 Subang Jaya Medical Centre'), (4488, 'https://ror.org/05b0gpy83', 'en', 1, 'https://ror.org/05b0gpy83 Center for Forensic Mental Health, Chiba University 千葉大学 社会精神保健研究センター'), (4489, 'https://ror.org/05b45bk66', 'en', 1, 'https://ror.org/05b45bk66 Regional Environmental Center for Central and Eastern Europe'), (4490, 'https://ror.org/05b6ypc36', 'no_lang_code', 1, 'https://ror.org/05b6ypc36 Volvo (Sweden) Volvokoncernen'), (4491, 'https://ror.org/05b81av32', 'en', 1, 'https://ror.org/05b81av32 Luton and Dunstable Hospital'), (4492, 'https://ror.org/05b8yvg40', 'en', 1, 'https://ror.org/05b8yvg40 Barnsley Hospital'), (4493, 'https://ror.org/05bd2wa15', 'en', 1, 'https://ror.org/05bd2wa15 Shanghai Mental Health Center 上海市精神卫生中心'), (4494, 'https://ror.org/05bhd7f62', 'en', 1, 'https://ror.org/05bhd7f62 458th Hospital PLA 中国人民解放军第四五八'), (4495, 'https://ror.org/05bjm5v11', 'no_lang_code', 1, 'https://ror.org/05bjm5v11 Sibtech (United States)'), (4496, 'https://ror.org/05bpnne23', 'en', 1, 'https://ror.org/05bpnne23 MetroWest Medical Center'), (4497, 'https://ror.org/05bq1qp94', 'en', 1, 'https://ror.org/05bq1qp94 Forrest General Hospital'), (4498, 'https://ror.org/05brmpx55', 'en', 1, 'https://ror.org/05brmpx55 John F. Kennedy Medical Center'), (4499, 'https://ror.org/05bt0cf40', 'tr', 1, 'https://ror.org/05bt0cf40 Okmeydanı Eğitim ve Araştırma Hastanesi'), (4500, 'https://ror.org/05btaka91', 'no_lang_code', 1, 'https://ror.org/05btaka91 University of Veterinary Medicine in Košice Univerzita veterinárskeho lekárstva a farmácie v Košiciach'), (4501, 'https://ror.org/05bx1gz93', 'en', 1, 'https://ror.org/05bx1gz93 Utsunomiya University 宇都宮大学'), (4502, 'https://ror.org/05bxb3784', 'no_lang_code', 1, 'https://ror.org/05bxb3784 Academia Sinica 中央研究院'), (4503, 'https://ror.org/05by5hm18', 'en', 1, 'https://ror.org/05by5hm18 California State Polytechnic University Universidad Estatal Politécnica de California, Pomona Université d''État polytechnique de californie à pomona'), (4504, 'https://ror.org/05bz1tw26', 'pt', 1, 'https://ror.org/05bz1tw26 Hospital de Santa Maria'), (4505, 'https://ror.org/05c06ww48', 'no_lang_code', 1, 'https://ror.org/05c06ww48 Anjo Kosei Hospital 安城更生病院'), (4506, 'https://ror.org/05c2p1f98', 'hi', 1, 'https://ror.org/05c2p1f98 Devi Ahilya Vishwavidyalaya, देवि अहिल्या विश्वविद्यालय'), (4507, 'https://ror.org/05c3wfp46', 'en', 1, 'https://ror.org/05c3wfp46 Governor''s Institutes of Vermont'), (4508, 'https://ror.org/05c4nx247', 'en', 1, 'https://ror.org/05c4nx247 B.C. Women''s Hospital & Health Centre'), (4509, 'https://ror.org/05c5js686', 'en', 1, 'https://ror.org/05c5js686 Ashland University'), (4510, 'https://ror.org/05c8e3213', 'no_lang_code', 1, 'https://ror.org/05c8e3213 Saiseikai Fukuoka General Hospital 済生会福岡総合病院'), (4511, 'https://ror.org/05cetba26', 'en', 1, 'https://ror.org/05cetba26 Edward Hospital'), (4512, 'https://ror.org/05cggb038', 'no_lang_code', 1, 'https://ror.org/05cggb038 Teck (Canada)'), (4513, 'https://ror.org/05cqhmv85', 'en', 1, 'https://ror.org/05cqhmv85 SangStat Medical Corporation'), (4514, 'https://ror.org/05crbcr45', 'en', 1, 'https://ror.org/05crbcr45 Tokyo University of Agriculture 東京農業大学'), (4515, 'https://ror.org/05crs8s98', 'en', 1, 'https://ror.org/05crs8s98 Periyar University பெரியார் பல்கலைக்கழகம்'), (4516, 'https://ror.org/05csdwp88', 'en', 1, 'https://ror.org/05csdwp88 Greenslopes Private Hospital'), (4517, 'https://ror.org/05ct0ag17', 'en', 1, 'https://ror.org/05ct0ag17 Banner Estrella Medical Center'), (4518, 'https://ror.org/05ct3pv92', 'no_lang_code', 1, 'https://ror.org/05ct3pv92 Lanxess (Canada)'), (4519, 'https://ror.org/05cvd2j85', 'pt', 1, 'https://ror.org/05cvd2j85 Hospital de Santa Marta'), (4520, 'https://ror.org/05cwpz219', 'en', 1, 'https://ror.org/05cwpz219 Riverview Hospital'), (4521, 'https://ror.org/05cx69s52', 'en', 1, 'https://ror.org/05cx69s52 Command Hospital Air Force'), (4522, 'https://ror.org/05cz6df97', 'en', 1, 'https://ror.org/05cz6df97 Alabama Department of Mental Health'), (4523, 'https://ror.org/05d2xpa49', 'en', 1, 'https://ror.org/05d2xpa49 First Hospital of Lanzhou University'), (4524, 'https://ror.org/05d503a40', 'en', 1, 'https://ror.org/05d503a40 Iwate Prefectural Kamaishi Hospital'), (4525, 'https://ror.org/05d576879', 'en', 1, 'https://ror.org/05d576879 Southmead Hospital'), (4526, 'https://ror.org/05d5vvz89', 'en', 1, 'https://ror.org/05d5vvz89 First Affiliated Hospital of Jinan University 暨南大学附属第一医院'), (4527, 'https://ror.org/05d5yjx85', 'es', 1, 'https://ror.org/05d5yjx85 Hospital Militar de Santiago'), (4528, 'https://ror.org/05d6v2h63', 'fr', 1, 'https://ror.org/05d6v2h63 Hôpital Manchester'), (4529, 'https://ror.org/05d871a36', 'en', 1, 'https://ror.org/05d871a36 Saifee Hospital'), (4530, 'https://ror.org/05d9dtr71', 'en', 1, 'https://ror.org/05d9dtr71 Changhua Christian Hospital'), (4531, 'https://ror.org/05d9wmt54', 'no_lang_code', 1, 'https://ror.org/05d9wmt54 Mpilo Central Hospital'), (4532, 'https://ror.org/05db3sk67', 'en', 1, 'https://ror.org/05db3sk67 New Jewish Home'), (4533, 'https://ror.org/05dbe0q91', 'en', 1, 'https://ror.org/05dbe0q91 Warren Spring Laboratory'), (4534, 'https://ror.org/05dd3wr66', 'en', 1, 'https://ror.org/05dd3wr66 Huntsman Marine Science Centre'), (4535, 'https://ror.org/05deks119', 'en', 1, 'https://ror.org/05deks119 Mount Sinai Hospital'), (4536, 'https://ror.org/05dfcz246', 'en', 1, 'https://ror.org/05dfcz246 Tianjin University of Traditional Chinese Medicine 天津中医药大学'), (4537, 'https://ror.org/05dfdta49', 'en', 1, 'https://ror.org/05dfdta49 Aultman Health Foundation'), (4538, 'https://ror.org/05dfzd836', 'es', 1, 'https://ror.org/05dfzd836 Hospital Universitario Infanta Sofía'), (4539, 'https://ror.org/05dhw1e18', 'no_lang_code', 1, 'https://ror.org/05dhw1e18 Kinan Hospital'), (4540, 'https://ror.org/05dkqa017', 'en', 1, 'https://ror.org/05dkqa017 Hochschule Kaiserslautern University of Applied Sciences Kaiserslautern'), (4541, 'https://ror.org/05dm4ck87', 'en', 1, 'https://ror.org/05dm4ck87 Emory University Hospital'), (4542, 'https://ror.org/05dm6kv37', 'en', 1, 'https://ror.org/05dm6kv37 Institute of Child and Mother Health'), (4543, 'https://ror.org/05dna8580', 'de', 1, 'https://ror.org/05dna8580 VDI/VDE Innovation + Technik'), (4544, 'https://ror.org/05dp7wz77', 'en', 1, 'https://ror.org/05dp7wz77 Creative Health Care Management'), (4545, 'https://ror.org/05drcjw53', 'en', 1, 'https://ror.org/05drcjw53 Pai Chai University 배재대학교'), (4546, 'https://ror.org/05dsgrz38', 'en', 1, 'https://ror.org/05dsgrz38 Hawaii Permanente Medical Group'), (4547, 'https://ror.org/05dt3h538', 'en', 1, 'https://ror.org/05dt3h538 Hollins University'), (4548, 'https://ror.org/05dtqka83', 'hu', 1, 'https://ror.org/05dtqka83 Békés Megyei Központi Kórház'), (4549, 'https://ror.org/05dxmex87', 'en', 1, 'https://ror.org/05dxmex87 Minnesota Medical Association'), (4550, 'https://ror.org/05dzhka64', 'en', 1, 'https://ror.org/05dzhka64 Dr. Agarwal''s Eye Hospital'), (4551, 'https://ror.org/05dzsmt79', 'no', 1, 'https://ror.org/05dzsmt79 Helse Førde'), (4552, 'https://ror.org/05e1xz016', 'en', 1, 'https://ror.org/05e1xz016 Shalvata Mental Health Center המרכז לבריאות הנפש שלוותה'), (4553, 'https://ror.org/05e247w35', 'en', 1, 'https://ror.org/05e247w35 Morristown Hamblen Hospital Foundation'), (4554, 'https://ror.org/05e272m53', 'en', 1, 'https://ror.org/05e272m53 Munroe Regional Medical Center'), (4555, 'https://ror.org/05e3rkh95', 'en', 1, 'https://ror.org/05e3rkh95 Sweet Briar College'), (4556, 'https://ror.org/05e8jge82', 'en', 1, 'https://ror.org/05e8jge82 Auckland City Hospital'), (4557, 'https://ror.org/05eb9pt23', 'en', 1, 'https://ror.org/05eb9pt23 Methodist Dallas Medical Center'), (4558, 'https://ror.org/05ecec111', 'en', 1, 'https://ror.org/05ecec111 Bạch Mai Hospital Bệnh viện Bạch Mai'), (4559, 'https://ror.org/05echw708', 'en', 1, 'https://ror.org/05echw708 Archbishop Makarios III Hospital'), (4560, 'https://ror.org/05ed8xr15', 'fr', 1, 'https://ror.org/05ed8xr15 Centre Hospitalier Saint-Denis'), (4561, 'https://ror.org/05ee2qy47', 'en', 1, 'https://ror.org/05ee2qy47 Queen Elizabeth Hospital'), (4562, 'https://ror.org/05eer8g02', 'en', 1, 'https://ror.org/05eer8g02 Jimma University'), (4563, 'https://ror.org/05eewjw07', 'no_lang_code', 1, 'https://ror.org/05eewjw07 Bellbrook Labs (United States)'), (4564, 'https://ror.org/05ef11p71', 'en', 1, 'https://ror.org/05ef11p71 Grochowski Hospital'), (4565, 'https://ror.org/05efbh861', 'en', 1, 'https://ror.org/05efbh861 Prince Charles Hospital'), (4566, 'https://ror.org/05efsr055', 'en', 1, 'https://ror.org/05efsr055 Estonian Interuniversity Population Research Centre'), (4567, 'https://ror.org/05ehe6278', 'no_lang_code', 1, 'https://ror.org/05ehe6278 Cameco (Canada)'), (4568, 'https://ror.org/05ejbda19', 'en', 1, 'https://ror.org/05ejbda19 Kyoto Women''s University 京都女子大学'), (4569, 'https://ror.org/05ejygc42', 'en', 1, 'https://ror.org/05ejygc42 Foundation for Advancement of International Medical Education and Research'), (4570, 'https://ror.org/05ekwbr88', 'en', 1, 'https://ror.org/05ekwbr88 Chicago State University Université d''État de chicago'), (4571, 'https://ror.org/05en5nh73', 'en', 1, 'https://ror.org/05en5nh73 University of Seoul 서울시립대학교'), (4572, 'https://ror.org/05epcpp46', 'en', 1, 'https://ror.org/05epcpp46 Asahi University 朝日大学'), (4573, 'https://ror.org/05eq01d13', 'en', 1, 'https://ror.org/05eq01d13 Gold Coast Hospital'), (4574, 'https://ror.org/05eq41471', 'en', 1, 'https://ror.org/05eq41471 Veterans Health Administration'), (4575, 'https://ror.org/05eq86m59', 'en', 1, 'https://ror.org/05eq86m59 Lander University'), (4576, 'https://ror.org/05eqt7s39', 'en', 1, 'https://ror.org/05eqt7s39 Athens Information Technology'), (4577, 'https://ror.org/05eqxpf83', 'en', 1, 'https://ror.org/05eqxpf83 Soonchunhyang University Hospital'), (4578, 'https://ror.org/05eqycp84', 'en', 1, 'https://ror.org/05eqycp84 Cheng Ching Hospital 澄清湖医院'), (4579, 'https://ror.org/05et9pf90', 'en', 1, 'https://ror.org/05et9pf90 B.P. Koirala Institute of Health Sciences विपी कोइराला स्वास्थ्य विज्ञान प्रतिष्ठान'), (4580, 'https://ror.org/05ewdm369', 'en', 1, 'https://ror.org/05ewdm369 Secretariat of the Pacific Community'), (4581, 'https://ror.org/05exmrf24', 'en', 1, 'https://ror.org/05exmrf24 Coppin State University'), (4582, 'https://ror.org/05f2xwq77', 'en', 1, 'https://ror.org/05f2xwq77 Charles Clifford Dental Hospital'), (4583, 'https://ror.org/05f4fpj37', 'hr', 1, 'https://ror.org/05f4fpj37 Klinika za psihijatriju Vrapče'), (4584, 'https://ror.org/05faw8a11', 'en', 1, 'https://ror.org/05faw8a11 Shaughnessy Hospital'), (4585, 'https://ror.org/05fb8h434', 'pt', 1, 'https://ror.org/05fb8h434 Instituto Superior de Administração e Gestão'), (4586, 'https://ror.org/05fccw142', 'it', 1, 'https://ror.org/05fccw142 Ospedale San Pietro Fatebenefratelli'), (4587, 'https://ror.org/05fcfqq67', 'en', 1, 'https://ror.org/05fcfqq67 Oregon National Primate Research Center'), (4588, 'https://ror.org/05fcrn131', 'en', 1, 'https://ror.org/05fcrn131 University Hospital Llandough'), (4589, 'https://ror.org/05fde5z47', 'en', 1, 'https://ror.org/05fde5z47 Hampton University Université de hampton'), (4590, 'https://ror.org/05fe2n505', 'en', 1, 'https://ror.org/05fe2n505 Royal Sussex County Hospital'), (4591, 'https://ror.org/05fhtd457', 'es', 1, 'https://ror.org/05fhtd457 Hospital Central Militar'), (4592, 'https://ror.org/05fk0de79', 'en', 1, 'https://ror.org/05fk0de79 Bassett Medical Center'), (4593, 'https://ror.org/05fkq4848', 'fr', 1, 'https://ror.org/05fkq4848 Hôpital Civil, Strasbourg'), (4594, 'https://ror.org/05fmwts39', 'tr', 1, 'https://ror.org/05fmwts39 Şişli Etfal Eğitim ve Araştırma Hastanesi'), (4595, 'https://ror.org/05fnpxf31', 'en', 1, 'https://ror.org/05fnpxf31 Holy Name Medical Center'), (4596, 'https://ror.org/05fscjm95', 'en', 1, 'https://ror.org/05fscjm95 Jorvi Hospital Jorvin sairaala'), (4597, 'https://ror.org/05fwyj602', 'en', 1, 'https://ror.org/05fwyj602 St. Jerome''s University'), (4598, 'https://ror.org/05fx5mz56', 'en', 1, 'https://ror.org/05fx5mz56 University of Nigeria Teaching Hospital'), (4599, 'https://ror.org/05fyf7995', 'en', 1, 'https://ror.org/05fyf7995 R. G. Kar Medical College and Hospital'), (4600, 'https://ror.org/05fz2yc38', 'it', 1, 'https://ror.org/05fz2yc38 Ospedale Bellaria, Ospedale Bellaria "Carlo Alberto Pizzardi"'), (4601, 'https://ror.org/05g1mag11', 'en', 1, 'https://ror.org/05g1mag11 Hebei Normal University of Science and Technology 河北科技师范学院'), (4602, 'https://ror.org/05g2amy04', 'en', 1, 'https://ror.org/05g2amy04 Acıbadem Adana Hospital'), (4603, 'https://ror.org/05g2gkn28', 'en', 1, 'https://ror.org/05g2gkn28 Minoh City Hospital 箕面市立病院'), (4604, 'https://ror.org/05g3m5c29', 'en', 1, 'https://ror.org/05g3m5c29 Asanogawa General Hospital 浅ノ川総合病院'), (4605, 'https://ror.org/05g44an34', 'en', 1, 'https://ror.org/05g44an34 Long Beach City College'), (4606, 'https://ror.org/05g4mtv59', 'no_lang_code', 1, 'https://ror.org/05g4mtv59 Hewlett-Packard (United Kingdom)'), (4607, 'https://ror.org/05g5v7496', 'en', 1, 'https://ror.org/05g5v7496 Burnley General Teaching Hospital'), (4608, 'https://ror.org/05g6w6j42', 'en', 1, 'https://ror.org/05g6w6j42 Armed Forces Medical College ആംഡ് ഫോഴ്സസ് മെഡിക്കൽ കോളേജ്'), (4609, 'https://ror.org/05g91z486', 'no_lang_code', 1, 'https://ror.org/05g91z486 Organ Technologies (Japan) オーガンテクノロジーズ'), (4610, 'https://ror.org/05gba0366', 'en', 1, 'https://ror.org/05gba0366 Russian University of Transport Российский университет транспорта'), (4611, 'https://ror.org/05gbdc474', 'no_lang_code', 1, 'https://ror.org/05gbdc474 Sotiria General Hospital'), (4612, 'https://ror.org/05gbwr869', 'en', 1, 'https://ror.org/05gbwr869 First Affiliated Hospital of Nanchang University 南昌大学第一附属医院'), (4613, 'https://ror.org/05gcxpk23', 'en', 1, 'https://ror.org/05gcxpk23 Dong-A University Hospital 동아대학교의료원'), (4614, 'https://ror.org/05gehxw18', 'en', 1, 'https://ror.org/05gehxw18 Detroit Medical Center'), (4615, 'https://ror.org/05gf6dk22', 'pt', 1, 'https://ror.org/05gf6dk22 Base Hospital Hospital de Base'), (4616, 'https://ror.org/05gfebp73', 'en', 1, 'https://ror.org/05gfebp73 CSI Holdsworth Memorial Hospital'), (4617, 'https://ror.org/05gg4qm19', 'en', 1, 'https://ror.org/05gg4qm19 Yamagata University Hospital 山形大学医学部附属病院'), (4618, 'https://ror.org/05gh0na70', 'en', 1, 'https://ror.org/05gh0na70 Jinnah Medical & Dental College'), (4619, 'https://ror.org/05gh5ar80', 'en', 1, 'https://ror.org/05gh5ar80 Gloucestershire Royal Hospital'), (4620, 'https://ror.org/05gn4hz56', 'no_lang_code', 1, 'https://ror.org/05gn4hz56 Kishiwada Tokushukai Hospital 岸和田徳洲会病院'), (4621, 'https://ror.org/05gn84d31', 'es', 1, 'https://ror.org/05gn84d31 Hospital de León'), (4622, 'https://ror.org/05gnna589', 'it', 1, 'https://ror.org/05gnna589 Consorzio Nazionale Interuniversitario per la Nanoelettronica Interuniversity Consortium for Nanoelectronics'), (4623, 'https://ror.org/05gpmx630', 'no_lang_code', 1, 'https://ror.org/05gpmx630 ShinKokura Hospital 新小倉病院'), (4624, 'https://ror.org/05gqcbq50', 'en', 1, 'https://ror.org/05gqcbq50 Aspen Center For Physics Centre pour la physique d''aspen'), (4625, 'https://ror.org/05gr5bv62', 'no_lang_code', 1, 'https://ror.org/05gr5bv62 Vala Sciences (United States)'), (4626, 'https://ror.org/05gx19t11', 'en', 1, 'https://ror.org/05gx19t11 Evergreen Health Medical Center'), (4627, 'https://ror.org/05gzcpj23', 'pt', 1, 'https://ror.org/05gzcpj23 Escola Superior de Saúde do Alcoitão'), (4628, 'https://ror.org/05h0f1d70', 'en', 1, 'https://ror.org/05h0f1d70 C. S. Mott Children''s Hospital'), (4629, 'https://ror.org/05h29d328', 'en', 1, 'https://ror.org/05h29d328 Saint Francis Memorial Hospital'), (4630, 'https://ror.org/05h450y11', 'no_lang_code', 1, 'https://ror.org/05h450y11 Talaria (United States)'), (4631, 'https://ror.org/05h4zj272', 'en', 1, 'https://ror.org/05h4zj272 Harbor–UCLA Medical Center'), (4632, 'https://ror.org/05h7pem82', 'no_lang_code', 1, 'https://ror.org/05h7pem82 Bugando Medical Centre'), (4633, 'https://ror.org/05h8pvh61', 'fr', 1, 'https://ror.org/05h8pvh61 Hôpital Broussais'), (4634, 'https://ror.org/05h9pgm95', 'en', 1, 'https://ror.org/05h9pgm95 Kyungsung University 경성대학교'), (4635, 'https://ror.org/05hbrxp80', 'en', 1, 'https://ror.org/05hbrxp80 Agricultural Research Organization מנהל המחקר החקלאי - מרכז וולקני'), (4636, 'https://ror.org/05hh8d621', 'no_lang_code', 1, 'https://ror.org/05hh8d621 IBM (United States)'), (4637, 'https://ror.org/05hm0vv72', 'en', 1, 'https://ror.org/05hm0vv72 Shahjalal University of Science and Technology শাহজালাল বিজ্ঞান ও প্রযুক্তি বিশ্ববিদ্যালয়'), (4638, 'https://ror.org/05hm6ny55', 'en', 1, 'https://ror.org/05hm6ny55 Good Samaritan Hospital'), (4639, 'https://ror.org/05hmwx760', 'en', 1, 'https://ror.org/05hmwx760 Poultry Industry Council'), (4640, 'https://ror.org/05hn3aw08', 'en', 1, 'https://ror.org/05hn3aw08 Lincoln University - Missouri'), (4641, 'https://ror.org/05hnb4n85', 'en', 1, 'https://ror.org/05hnb4n85 Jeju National University 제주대학교'), (4642, 'https://ror.org/05hpt6x15', 'en', 1, 'https://ror.org/05hpt6x15 Riverside Regional Medical Center'), (4643, 'https://ror.org/05hrczs03', 'en', 1, 'https://ror.org/05hrczs03 American Association of University Women'), (4644, 'https://ror.org/05hrg0j24', 'en', 1, 'https://ror.org/05hrg0j24 Lister Hospital'), (4645, 'https://ror.org/05hs5r386', 'en', 1, 'https://ror.org/05hs5r386 Mathematical Sciences Research Institute'), (4646, 'https://ror.org/05hs7nx69', 'en', 1, 'https://ror.org/05hs7nx69 Social Insurance Futase Hospital 社会保険 二瀬病院'), (4647, 'https://ror.org/05htjfp05', 'en', 1, 'https://ror.org/05htjfp05 Loma Linda University Children''s Hospital'), (4648, 'https://ror.org/05hwn6x82', 'en', 1, 'https://ror.org/05hwn6x82 Spring Branch Medical Center'), (4649, 'https://ror.org/05hzgxd58', 'pt', 1, 'https://ror.org/05hzgxd58 Universidade de Uberaba'), (4650, 'https://ror.org/05j0w0e76', 'en', 1, 'https://ror.org/05j0w0e76 American Association For The Advancement of Science Asociación Estadounidense para el Avance de la Ciencia Association américaine pour l''avancement de la science'), (4651, 'https://ror.org/05j1gs298', 'en', 1, 'https://ror.org/05j1gs298 Erasmus Hospital Erasmus Ziekenhuis Hôpital Érasme'), (4652, 'https://ror.org/05j37e495', 'en', 1, 'https://ror.org/05j37e495 South Western Sydney Local Health District'), (4653, 'https://ror.org/05j4p5w63', 'en', 1, 'https://ror.org/05j4p5w63 MetroHealth Medical Center'), (4654, 'https://ror.org/05j5y0r89', 'en', 1, 'https://ror.org/05j5y0r89 Sir Paul Boffa Hospital'), (4655, 'https://ror.org/05j752d14', 'en', 1, 'https://ror.org/05j752d14 McLaughlin Research Institute'), (4656, 'https://ror.org/05j7rz205', 'en', 1, 'https://ror.org/05j7rz205 Halifax Health Medical Center'), (4657, 'https://ror.org/05j82jr52', 'en', 1, 'https://ror.org/05j82jr52 Gaylord Hospital'), (4658, 'https://ror.org/05j8hg602', 'en', 1, 'https://ror.org/05j8hg602 American Physical Society Société américaine de physique'), (4659, 'https://ror.org/05j8naw58', 'en', 1, 'https://ror.org/05j8naw58 Sinai Health System'); INSERT INTO `rors` VALUES (4660, 'https://ror.org/05j91v252', 'en', 1, 'https://ror.org/05j91v252 Oregon Research Institute'), (4661, 'https://ror.org/05japer20', 'en', 1, 'https://ror.org/05japer20 Wilson College'), (4662, 'https://ror.org/05jb57h29', 'en', 1, 'https://ror.org/05jb57h29 Hatanpaan Sairaala Hatanpää Hospital'), (4663, 'https://ror.org/05jbt9m15', 'en', 1, 'https://ror.org/05jbt9m15 Universidad de Arkansas University of Arkansas at Fayetteville Université de l''arkansas'), (4664, 'https://ror.org/05jbvqr49', 'no_lang_code', 1, 'https://ror.org/05jbvqr49 Gastops (Canada)'), (4665, 'https://ror.org/05jc5ee02', 'en', 1, 'https://ror.org/05jc5ee02 University of Minnesota Children''s Hospital'), (4666, 'https://ror.org/05jd2pj53', 'en', 1, 'https://ror.org/05jd2pj53 King Chulalongkorn Memorial Hospital โรงพยาบาลจุฬาลงกรณ์'), (4667, 'https://ror.org/05jeza980', 'no_lang_code', 1, 'https://ror.org/05jeza980 Rolls-Royce (Germany)'), (4668, 'https://ror.org/05jfq2w07', 'en', 1, 'https://ror.org/05jfq2w07 Scottish Universities Environmental Research Centre'), (4669, 'https://ror.org/05jg8yp15', 'en', 1, 'https://ror.org/05jg8yp15 Hammersmith Hospital'), (4670, 'https://ror.org/05jhpk184', 'en', 1, 'https://ror.org/05jhpk184 Memorial Hospital'), (4671, 'https://ror.org/05jk51a88', 'en', 1, 'https://ror.org/05jk51a88 Nihon University 日本大学'), (4672, 'https://ror.org/05jr18655', 'en', 1, 'https://ror.org/05jr18655 Self-Defense Forces Central Hospital 自衛隊中央病院'), (4673, 'https://ror.org/05jr1e079', 'no_lang_code', 1, 'https://ror.org/05jr1e079 Advanced Medical Electronics (United States)'), (4674, 'https://ror.org/05jse4442', 'it', 1, 'https://ror.org/05jse4442 Ospedale Santa Corona'), (4675, 'https://ror.org/05jt1df44', 'en', 1, 'https://ror.org/05jt1df44 Milton Keynes Hospital'), (4676, 'https://ror.org/05jtcqr88', 'no_lang_code', 1, 'https://ror.org/05jtcqr88 Thermo Fisher Scientific (China)'), (4677, 'https://ror.org/05jv5t769', 'en', 1, 'https://ror.org/05jv5t769 Eltron Research'), (4678, 'https://ror.org/05jvra197', 'no_lang_code', 1, 'https://ror.org/05jvra197 JA Shizuoka Koseiren ENSHU hospital じゃ しずおか こせいれん えんしゅ ほsぴたl'), (4679, 'https://ror.org/05jwhyp78', 'en', 1, 'https://ror.org/05jwhyp78 Good Samaritan Hospital Medical Center'), (4680, 'https://ror.org/05jxj5k51', 'no_lang_code', 1, 'https://ror.org/05jxj5k51 Eesti Innovatsiooni Instituut'), (4681, 'https://ror.org/05jyavm62', 'en', 1, 'https://ror.org/05jyavm62 Henrico Doctors'' Hospital'), (4682, 'https://ror.org/05jyrng31', 'en', 1, 'https://ror.org/05jyrng31 McMaster University Medical Centre'), (4683, 'https://ror.org/05jytgw54', 'en', 1, 'https://ror.org/05jytgw54 Gay Men''s Health Crisis'), (4684, 'https://ror.org/05k07p323', 'en', 1, 'https://ror.org/05k07p323 Texas Health Dallas'), (4685, 'https://ror.org/05k4mr860', 'en', 1, 'https://ror.org/05k4mr860 Saint John Regional Hospital'), (4686, 'https://ror.org/05k71ja87', 'en', 1, 'https://ror.org/05k71ja87 Statistics Canada Statistique Canada'), (4687, 'https://ror.org/05k7z2b58', 'en', 1, 'https://ror.org/05k7z2b58 Shriners Hospitals for Children Medical Center - Lexington'), (4688, 'https://ror.org/05k87vq12', 'no_lang_code', 1, 'https://ror.org/05k87vq12 Microsoft Research (United Kingdom)'), (4689, 'https://ror.org/05k8nw239', 'no_lang_code', 1, 'https://ror.org/05k8nw239 Western Research Company, Inc.'), (4690, 'https://ror.org/05k8pq072', 'pt', 1, 'https://ror.org/05k8pq072 Universidade Cruzeiro do Sul'), (4691, 'https://ror.org/05k9bck94', 'en', 1, 'https://ror.org/05k9bck94 Marietta Memorial Hospital'), (4692, 'https://ror.org/05kcb8115', 'it', 1, 'https://ror.org/05kcb8115 Consorzio Interuniversitario Per L''Ottimizzazione E La Ricerca Operativa'), (4693, 'https://ror.org/05kdz4d87', 'en', 1, 'https://ror.org/05kdz4d87 NHS Greater Glasgow and Clyde'), (4694, 'https://ror.org/05ked8481', 'en', 1, 'https://ror.org/05ked8481 University of South Carolina Beaufort'), (4695, 'https://ror.org/05kfvx519', 'fr', 1, 'https://ror.org/05kfvx519 Hôpital Albert Michallon'), (4696, 'https://ror.org/05kjeqc29', 'no_lang_code', 1, 'https://ror.org/05kjeqc29 Jahra Hospital مستشفى الجهراء'), (4697, 'https://ror.org/05kn6fr85', 'en', 1, 'https://ror.org/05kn6fr85 Government Medical College शासकीय वैद्यकीय महाविद्यालय व रुग्णालय, औरंगाबाद'), (4698, 'https://ror.org/05kpx1157', 'en', 1, 'https://ror.org/05kpx1157 Royal Preston Hospital'), (4699, 'https://ror.org/05kr7zx86', 'en', 1, 'https://ror.org/05kr7zx86 Georgia College & State University'), (4700, 'https://ror.org/05ks08368', 'en', 1, 'https://ror.org/05ks08368 Komfo Anokye Teaching Hospital'), (4701, 'https://ror.org/05ktv1y25', 'en', 1, 'https://ror.org/05ktv1y25 William Woods University'), (4702, 'https://ror.org/05kwh9e63', 'no_lang_code', 1, 'https://ror.org/05kwh9e63 Adenosine Therapeutics (United States)'), (4703, 'https://ror.org/05kwhtp56', 'es', 1, 'https://ror.org/05kwhtp56 Hospital Perpetuo Socorro'), (4704, 'https://ror.org/05kx1ke03', 'en', 1, 'https://ror.org/05kx1ke03 Narayana Health'), (4705, 'https://ror.org/05kxrms28', 'hu', 1, 'https://ror.org/05kxrms28 Bajcsy-Zsilinszky Kórház és Rendelőintézet'), (4706, 'https://ror.org/05kz7bw59', 'en', 1, 'https://ror.org/05kz7bw59 Kwai Chung Hospital 葵涌醫院'), (4707, 'https://ror.org/05kzadn81', 'en', 1, 'https://ror.org/05kzadn81 Nara Advanced Teachers College for Women, Nara Women''s University 奈良女子大学'), (4708, 'https://ror.org/05kzbz291', 'no_lang_code', 1, 'https://ror.org/05kzbz291 Nagoya Kyouritsu Hospital 名古屋共立病院'), (4709, 'https://ror.org/05kzjxq56', 'en', 1, 'https://ror.org/05kzjxq56 Chonnam National University 전남대학교'), (4710, 'https://ror.org/05m34fq04', 'no_lang_code', 1, 'https://ror.org/05m34fq04 Motorola (France)'), (4711, 'https://ror.org/05m3qrs33', 'en', 1, 'https://ror.org/05m3qrs33 Ipswich Hospital'), (4712, 'https://ror.org/05m4bwg25', 'no_lang_code', 1, 'https://ror.org/05m4bwg25 Shinonoi General Hospital 篠ノ井総合病院'), (4713, 'https://ror.org/05m4t4820', 'en', 1, 'https://ror.org/05m4t4820 Makassed General Hospital'), (4714, 'https://ror.org/05m5pc269', 'en', 1, 'https://ror.org/05m5pc269 Nepal Medical College Teaching Hospital नेपाल मेडिकल कलेज'), (4715, 'https://ror.org/05m5z4f19', 'en', 1, 'https://ror.org/05m5z4f19 Steel Construction Institute'), (4716, 'https://ror.org/05m64xs77', 'en', 1, 'https://ror.org/05m64xs77 Monklands Hospital'), (4717, 'https://ror.org/05m6e7d23', 'it', 1, 'https://ror.org/05m6e7d23 Ospedale San Giuseppe'), (4718, 'https://ror.org/05m7vf540', 'en', 1, 'https://ror.org/05m7vf540 Capital District Health Authority'), (4719, 'https://ror.org/05m7zw681', 'no_lang_code', 1, 'https://ror.org/05m7zw681 Rio Tinto (United Kingdom)'), (4720, 'https://ror.org/05m8d2x46', 'en', 1, 'https://ror.org/05m8d2x46 North Shore University Hospital'), (4721, 'https://ror.org/05ma4gw77', 'en', 1, 'https://ror.org/05ma4gw77 Universidad del Pacífico University of the Pacific Université du pacifique'), (4722, 'https://ror.org/05maved80', 'en', 1, 'https://ror.org/05maved80 Northwest Missouri State University'), (4723, 'https://ror.org/05mdb5j94', 'en', 1, 'https://ror.org/05mdb5j94 MedStar Harbor Hospital'), (4724, 'https://ror.org/05megpp22', 'pt', 1, 'https://ror.org/05megpp22 Hospital Geral de Fortaleza'), (4725, 'https://ror.org/05meqs994', 'no_lang_code', 1, 'https://ror.org/05meqs994 Innovation Research and Training'), (4726, 'https://ror.org/05mg61p80', 'en', 1, 'https://ror.org/05mg61p80 Englewood Hospital and Medical Center'), (4727, 'https://ror.org/05mgn5w61', 'no_lang_code', 1, 'https://ror.org/05mgn5w61 Hiraka General Hospital 平鹿総合病院'), (4728, 'https://ror.org/05mhswc23', 'en', 1, 'https://ror.org/05mhswc23 Kushiro City General Hospital 市立釧路総合病院'), (4729, 'https://ror.org/05mj6fy81', 'en', 1, 'https://ror.org/05mj6fy81 Universidad de Houston-Downtown University of Houston - Downtown'), (4730, 'https://ror.org/05mm0yv21', 'en', 1, 'https://ror.org/05mm0yv21 Nizhny Novgorod State Pedagogical University Нижегородский государственный технический университет им. Р. Е. Алексеева'), (4731, 'https://ror.org/05mmga691', 'fi', 1, 'https://ror.org/05mmga691 Kymenlaakson keskussairaala'), (4732, 'https://ror.org/05mnb6484', 'en', 1, 'https://ror.org/05mnb6484 Grambling State University Université d''État de grambling'), (4733, 'https://ror.org/05mpt6s70', 'no_lang_code', 1, 'https://ror.org/05mpt6s70 Applica Sprl'), (4734, 'https://ror.org/05mqksr19', 'en', 1, 'https://ror.org/05mqksr19 Catawba Valley Medical Center'), (4735, 'https://ror.org/05mryn396', 'no_lang_code', 1, 'https://ror.org/05mryn396 Manipal Hospital'), (4736, 'https://ror.org/05mshxb09', 'en', 1, 'https://ror.org/05mshxb09 Sheffield Children''s Hospital'), (4737, 'https://ror.org/05msy3z48', 'en', 1, 'https://ror.org/05msy3z48 Legacy Good Samaritan Medical Center'), (4738, 'https://ror.org/05mw4gk09', 'en', 1, 'https://ror.org/05mw4gk09 Rebecca Sieff Hospital'), (4739, 'https://ror.org/05myvb614', 'en', 1, 'https://ror.org/05myvb614 Miami VA Healthcare System'), (4740, 'https://ror.org/05mzkvr65', 'en', 1, 'https://ror.org/05mzkvr65 Skokie Hospital'), (4741, 'https://ror.org/05n0m7p40', 'fr', 1, 'https://ror.org/05n0m7p40 Hôpital El Ayachi'), (4742, 'https://ror.org/05n0wgt02', 'en', 1, 'https://ror.org/05n0wgt02 King Faisal Specialist Hospital & Research Centre مستشفى الملك فيصل التخصصي'), (4743, 'https://ror.org/05n13be63', 'en', 1, 'https://ror.org/05n13be63 Children''s Hospital of Fudan University'), (4744, 'https://ror.org/05n56ba96', 'en', 1, 'https://ror.org/05n56ba96 Latifa Hospital'), (4745, 'https://ror.org/05n5d3f06', 'en', 1, 'https://ror.org/05n5d3f06 Nagahama City Hospital 長浜市病院'), (4746, 'https://ror.org/05n5drh21', 'en', 1, 'https://ror.org/05n5drh21 George E. Wahlen Department of VA Medical Center'), (4747, 'https://ror.org/05n7t4h40', 'en', 1, 'https://ror.org/05n7t4h40 Henry Dunant Hospital'), (4748, 'https://ror.org/05n8n9378', 'en', 1, 'https://ror.org/05n8n9378 Eduardo Mondlane University Universidade Eduardo Mondlane'), (4749, 'https://ror.org/05n8v4z84', 'en', 1, 'https://ror.org/05n8v4z84 Milwaukee County Medical Complex'), (4750, 'https://ror.org/05n952b74', 'en', 1, 'https://ror.org/05n952b74 North Mississippi Medical Center'), (4751, 'https://ror.org/05n9fs062', 'no_lang_code', 1, 'https://ror.org/05n9fs062 Ghaem Hospital بیمارستان قائم'), (4752, 'https://ror.org/05na1sz60', 'en', 1, 'https://ror.org/05na1sz60 Mercy Medical Center'), (4753, 'https://ror.org/05nakwy60', 'en', 1, 'https://ror.org/05nakwy60 Ideta Eye Hospital 出田眼科病院'), (4754, 'https://ror.org/05nbsaj33', 'en', 1, 'https://ror.org/05nbsaj33 Bhopal Memorial Hospital & Research Centre'), (4755, 'https://ror.org/05ncvf986', 'en', 1, 'https://ror.org/05ncvf986 Sam Higginbottom Institute of Agriculture सैम हिग्गिनबॉटम कृषि, प्रौद्योगिकी एवं विज्ञान संस्थान അലഹബാദ് അഗ്രികൾച്ചറൽ ഇൻസ്റ്റിറ്റ്യൂട്ട്'), (4756, 'https://ror.org/05ndpad60', 'en', 1, 'https://ror.org/05ndpad60 University of Sioux Falls'), (4757, 'https://ror.org/05ne3s142', 'en', 1, 'https://ror.org/05ne3s142 Saint Petersburg Academic University Санкт-Петербургский академический университет — научно-образовательный центр нанотехнологий'), (4758, 'https://ror.org/05ne4t757', 'en', 1, 'https://ror.org/05ne4t757 Kent and Sussex Hospital'), (4759, 'https://ror.org/05nfzf209', 'es', 1, 'https://ror.org/05nfzf209 Hospital Universitario Infanta Leonor'), (4760, 'https://ror.org/05ngnkr69', 'no_lang_code', 1, 'https://ror.org/05ngnkr69 Ambergen (United States)'), (4761, 'https://ror.org/05nhkt138', 'tr', 1, 'https://ror.org/05nhkt138 Bursa Yuksek Ihtisas Egitim Ve Arastirma Hastanesi'), (4762, 'https://ror.org/05nkffb74', 'en', 1, 'https://ror.org/05nkffb74 Mubarak Al Kabeer Hospital'), (4763, 'https://ror.org/05nmfef18', 'en', 1, 'https://ror.org/05nmfef18 Hoag Memorial Hospital Presbyterian'), (4764, 'https://ror.org/05nmzkr23', 'en', 1, 'https://ror.org/05nmzkr23 Bankura Sammilani Medical College বাঁকুড়া সম্মিলনী মেডিক্যাল কলেজ'), (4765, 'https://ror.org/05npsb488', 'en', 1, 'https://ror.org/05npsb488 Foundation for Medical Research'), (4766, 'https://ror.org/05nrhca20', 'en', 1, 'https://ror.org/05nrhca20 West Australian Sleep Disorders Research Institute'), (4767, 'https://ror.org/05ns8wm63', 'no_lang_code', 1, 'https://ror.org/05ns8wm63 Abratech Corporation'), (4768, 'https://ror.org/05nsbhw27', 'en', 1, 'https://ror.org/05nsbhw27 Centre hospitalier pour enfants de l''est de l''Ontario Children''s Hospital of Eastern Ontario'), (4769, 'https://ror.org/05nter171', 'en', 1, 'https://ror.org/05nter171 Avera Health'), (4770, 'https://ror.org/05nv2rz39', 'en', 1, 'https://ror.org/05nv2rz39 University of Eswatini'), (4771, 'https://ror.org/05nvmzs58', 'pt', 1, 'https://ror.org/05nvmzs58 Universidade de Santo Amaro'), (4772, 'https://ror.org/05nx0xs09', 'en', 1, 'https://ror.org/05nx0xs09 Baoji University of Arts and Sciences 宝鸡文理学院'), (4773, 'https://ror.org/05nyenj39', 'de', 1, 'https://ror.org/05nyenj39 Asklepios Hospital Barmbek Asklepios Klinik Barmbek'), (4774, 'https://ror.org/05nygae07', 'pl', 1, 'https://ror.org/05nygae07 Okręgowy Szpital Kolejowy'), (4775, 'https://ror.org/05nz57427', 'en', 1, 'https://ror.org/05nz57427 Cardinal Stritch University'), (4776, 'https://ror.org/05nzesv70', 'en', 1, 'https://ror.org/05nzesv70 Royal Glamorgan Hospital'), (4777, 'https://ror.org/05p1frt18', 'en', 1, 'https://ror.org/05p1frt18 Glostrup Hospital'), (4778, 'https://ror.org/05p1phv38', 'en', 1, 'https://ror.org/05p1phv38 Huntington Medical Research Institutes'), (4779, 'https://ror.org/05p21z194', 'it', 1, 'https://ror.org/05p21z194 Azienda Ospedaliera Universitaria Policlinico "Paolo Giaccone" di Palermo'), (4780, 'https://ror.org/05p38yh32', 'en', 1, 'https://ror.org/05p38yh32 Hubei Cancer Hospital 湖北省肿瘤医院'), (4781, 'https://ror.org/05p48p517', 'en', 1, 'https://ror.org/05p48p517 Northern California Institute for Research and Education'), (4782, 'https://ror.org/05p4f7w60', 'en', 1, 'https://ror.org/05p4f7w60 University of the West Indies'), (4783, 'https://ror.org/05p89st11', 'en', 1, 'https://ror.org/05p89st11 American Geosciences Institute'), (4784, 'https://ror.org/05pcyqv21', 'no_lang_code', 1, 'https://ror.org/05pcyqv21 Petro-Canada'), (4785, 'https://ror.org/05peke140', 'es', 1, 'https://ror.org/05peke140 Hospital Virgen del Puerto'), (4786, 'https://ror.org/05pet2p92', 'no_lang_code', 1, 'https://ror.org/05pet2p92 Nishida Hospital 西田病院'), (4787, 'https://ror.org/05pfdp204', 'en', 1, 'https://ror.org/05pfdp204 Crozer-Keystone Health System'), (4788, 'https://ror.org/05pgywt51', 'en', 1, 'https://ror.org/05pgywt51 Queen Elizabeth Hospital'), (4789, 'https://ror.org/05ph11m41', 'en', 1, 'https://ror.org/05ph11m41 CTO Hospital Ospedale Centro Traumatologico Ortopedico'), (4790, 'https://ror.org/05pkzpg75', 'en', 1, 'https://ror.org/05pkzpg75 Ningbo First Hospital 宁波市第一医院'), (4791, 'https://ror.org/05pp39346', 'en', 1, 'https://ror.org/05pp39346 Haifa Medical Center'), (4792, 'https://ror.org/05prep819', 'en', 1, 'https://ror.org/05prep819 National Hsinchu University of Education'), (4793, 'https://ror.org/05pvryz52', 'no_lang_code', 1, 'https://ror.org/05pvryz52 IQ Solutions'), (4794, 'https://ror.org/05pwfyy15', 'en', 1, 'https://ror.org/05pwfyy15 National Centre for Research and Development'), (4795, 'https://ror.org/05pwsw714', 'en', 1, 'https://ror.org/05pwsw714 Hangzhou First People''s Hospital 杭州市第一人民医院'), (4796, 'https://ror.org/05py5qd41', 'en', 1, 'https://ror.org/05py5qd41 Lebanon Valley College'), (4797, 'https://ror.org/05q2e1368', 'no_lang_code', 1, 'https://ror.org/05q2e1368 ISA Associate'), (4798, 'https://ror.org/05q4veh78', 'no_lang_code', 1, 'https://ror.org/05q4veh78 Evangelismos Hospital'), (4799, 'https://ror.org/05q60vz69', 'en', 1, 'https://ror.org/05q60vz69 South African Medical Research Council'), (4800, 'https://ror.org/05q6tgt32', 'en', 1, 'https://ror.org/05q6tgt32 Kennedy Krieger Institute'), (4801, 'https://ror.org/05q7jp496', 'en', 1, 'https://ror.org/05q7jp496 South African Institute for Medical Research'), (4802, 'https://ror.org/05q87sg56', 'en', 1, 'https://ror.org/05q87sg56 Saint Joseph''s University Universidad de San José Université saint-joseph de philadelphie'), (4803, 'https://ror.org/05q8e6988', 'en', 1, 'https://ror.org/05q8e6988 Southern University at New Orleans'), (4804, 'https://ror.org/05q8mwj81', 'en', 1, 'https://ror.org/05q8mwj81 Hamilton General Hospital'), (4805, 'https://ror.org/05q9t1y70', 'no_lang_code', 1, 'https://ror.org/05q9t1y70 Siga Technologies (United States)'), (4806, 'https://ror.org/05qapqt30', 'en', 1, 'https://ror.org/05qapqt30 Montana Department of Public Health and Human Services'), (4807, 'https://ror.org/05qcjn862', 'en', 1, 'https://ror.org/05qcjn862 Greenbrier Valley Medical Center'), (4808, 'https://ror.org/05qderh61', 'en', 1, 'https://ror.org/05qderh61 University of Calabar Yunifásítì ìlú Calabar'), (4809, 'https://ror.org/05qe0pv23', 'no_lang_code', 1, 'https://ror.org/05qe0pv23 Kashiwa Municipal Hospital 柏市立柏病院'), (4810, 'https://ror.org/05qfq7p37', 'en', 1, 'https://ror.org/05qfq7p37 Sint Clara Ziekenhuis St Clara Hospital'), (4811, 'https://ror.org/05qj9p026', 'en', 1, 'https://ror.org/05qj9p026 Lu''an First People''s Hospital'), (4812, 'https://ror.org/05qk3dq04', 'en', 1, 'https://ror.org/05qk3dq04 Malta Council for Science and Technology'), (4813, 'https://ror.org/05qkf9y72', 'en', 1, 'https://ror.org/05qkf9y72 Government General Hospital'), (4814, 'https://ror.org/05qkm6m65', 'no_lang_code', 1, 'https://ror.org/05qkm6m65 Engi-Mat (United States)'), (4815, 'https://ror.org/05qkp7h42', 'en', 1, 'https://ror.org/05qkp7h42 Five Branches University'), (4816, 'https://ror.org/05qmezx22', 'no_lang_code', 1, 'https://ror.org/05qmezx22 Guelph Chemical Labs'), (4817, 'https://ror.org/05qmk4a18', 'en', 1, 'https://ror.org/05qmk4a18 Bangalore Medical College and Research Institute ಬೆಂಗಳೂರು ವೈದ್ಯಕೀಯ ವಿದ್ಯಾಲಯ'), (4818, 'https://ror.org/05qpen692', 'en', 1, 'https://ror.org/05qpen692 California Lutheran University'), (4819, 'https://ror.org/05qtccm96', 'ga', 1, 'https://ror.org/05qtccm96 Forbairt'), (4820, 'https://ror.org/05qx0rg92', 'no_lang_code', 1, 'https://ror.org/05qx0rg92 HealthMark Multimedia'), (4821, 'https://ror.org/05qye4525', 'en', 1, 'https://ror.org/05qye4525 Mercy Hospital'), (4822, 'https://ror.org/05qz2jt34', 'de', 1, 'https://ror.org/05qz2jt34 Bundeswehrkrankenhaus'), (4823, 'https://ror.org/05r3hm325', 'it', 1, 'https://ror.org/05r3hm325 Azienda Ospedaliera Carlo Poma'), (4824, 'https://ror.org/05r409z22', 'en', 1, 'https://ror.org/05r409z22 Northern General Hospital'), (4825, 'https://ror.org/05r5k8873', 'en', 1, 'https://ror.org/05r5k8873'), (4826, 'https://ror.org/05r6ndz30', 'en', 1, 'https://ror.org/05r6ndz30 Physicians for a National Health Program'), (4827, 'https://ror.org/05raceh98', 'no_lang_code', 1, 'https://ror.org/05raceh98 Shirasagi Hospital 白鷺病院'), (4828, 'https://ror.org/05rad4t93', 'en', 1, 'https://ror.org/05rad4t93 Gordon Research Conferences'), (4829, 'https://ror.org/05rbwvc13', 'en', 1, 'https://ror.org/05rbwvc13 Queen Elizabeth Hospital'), (4830, 'https://ror.org/05re2b915', 'en', 1, 'https://ror.org/05re2b915 European Road Transport Telematics Implementation Co-Ordination'), (4831, 'https://ror.org/05rejmm18', 'no_lang_code', 1, 'https://ror.org/05rejmm18 DELL (United States)'), (4832, 'https://ror.org/05rfek682', 'en', 1, 'https://ror.org/05rfek682 Kaiser Permanente Oakland Medical Center'), (4833, 'https://ror.org/05rfh1r09', 'en', 1, 'https://ror.org/05rfh1r09 Aquatic Animal Health Research Laboratory'), (4834, 'https://ror.org/05rkz5e28', 'no_lang_code', 1, 'https://ror.org/05rkz5e28 Toranomon Hospital 虎の門病院'), (4835, 'https://ror.org/05rm13h81', 'ms', 1, 'https://ror.org/05rm13h81 Hospital Tengku Ampuan Afzan'), (4836, 'https://ror.org/05rmxkq05', 'en', 1, 'https://ror.org/05rmxkq05 Dominican Hospital'), (4837, 'https://ror.org/05rq9gz82', 'en', 1, 'https://ror.org/05rq9gz82 303 Hospital of People''s Liberation Army 中国人民解放军303医院'), (4838, 'https://ror.org/05rsbck92', 'no_lang_code', 1, 'https://ror.org/05rsbck92 Kitano Hospital 北野病院'), (4839, 'https://ror.org/05rtdxx03', 'en', 1, 'https://ror.org/05rtdxx03 CHA Gangnam Medical Center'), (4840, 'https://ror.org/05rtvan68', 'en', 1, 'https://ror.org/05rtvan68 Royal University of Phnom Penh សាកលវិទ្យាល័យភូមិន្ទភ្នំពេញ'), (4841, 'https://ror.org/05rvey468', 'en', 1, 'https://ror.org/05rvey468 Oglethorpe University'), (4842, 'https://ror.org/05rw9t746', 'en', 1, 'https://ror.org/05rw9t746 IBM Research - Haifa'), (4843, 'https://ror.org/05ry42w04', 'en', 1, 'https://ror.org/05ry42w04 MedStar Washington Hospital Center'), (4844, 'https://ror.org/05ryv0s68', 'en', 1, 'https://ror.org/05ryv0s68 Euresearch Association'), (4845, 'https://ror.org/05rz49z56', 'en', 1, 'https://ror.org/05rz49z56 Smt. N.H.L. Municipal Medical College શ્રીમતી. એનએચએલ મ્યુનિસિપલ મેડિકલ કોલેજ'), (4846, 'https://ror.org/05rzmnp25', 'en', 1, 'https://ror.org/05rzmnp25 University of the Ryukyus University Hospital 琉球大学医学部附属病院'), (4847, 'https://ror.org/05s004555', 'en', 1, 'https://ror.org/05s004555 Favaloro University Universidad Favaloro'), (4848, 'https://ror.org/05s0ee237', 'en', 1, 'https://ror.org/05s0ee237 Morton Plant Hospital'), (4849, 'https://ror.org/05s3h8004', 'es', 1, 'https://ror.org/05s3h8004 Hospital Universitario Severo Ochoa'), (4850, 'https://ror.org/05s74hd65', 'en', 1, 'https://ror.org/05s74hd65 Oakwood University'), (4851, 'https://ror.org/05s7s9x02', 'no_lang_code', 1, 'https://ror.org/05s7s9x02 Lucideon (United Kingdom)'), (4852, 'https://ror.org/05s9f4d27', 'en', 1, 'https://ror.org/05s9f4d27 University of Wisconsin–Parkside Université du Wisconsin–Parkside'), (4853, 'https://ror.org/05sb0dh40', 'en', 1, 'https://ror.org/05sb0dh40 Aishin Memorial Hospital 愛心メモリアル病院'), (4854, 'https://ror.org/05sc3m345', 'en', 1, 'https://ror.org/05sc3m345 Hungarian Institute of Occupational Health Országos Munkahigiénés és Foglalkozásegészségügyi Intézet'), (4855, 'https://ror.org/05sep9w93', 'es', 1, 'https://ror.org/05sep9w93 Instituto Tecnológico de Aragón'), (4856, 'https://ror.org/05sgcwh30', 'fr', 1, 'https://ror.org/05sgcwh30 Ministère des Transports'), (4857, 'https://ror.org/05sgxk616', 'en', 1, 'https://ror.org/05sgxk616 Doctors Medical Center'), (4858, 'https://ror.org/05shfp710', 'en', 1, 'https://ror.org/05shfp710 Evangel University'), (4859, 'https://ror.org/05sj7yp62', 'en', 1, 'https://ror.org/05sj7yp62 Universidad de Carabobo University of Carabobo'), (4860, 'https://ror.org/05sk0a617', 'en', 1, 'https://ror.org/05sk0a617 Association of Schools of Allied Health Professions'), (4861, 'https://ror.org/05skj8r52', 'en', 1, 'https://ror.org/05skj8r52 Rutland Regional Medical Center'), (4862, 'https://ror.org/05sn8t512', 'en', 1, 'https://ror.org/05sn8t512 Hospital Authority 醫院管理局'), (4863, 'https://ror.org/05sqd3t97', 'en', 1, 'https://ror.org/05sqd3t97 Sistema universitario estatal de Florida State University System of Florida'), (4864, 'https://ror.org/05sv6pg41', 'en', 1, 'https://ror.org/05sv6pg41 University of Wisconsin–Stevens Point Université du Wisconsin–Stevens Point'), (4865, 'https://ror.org/05sy5w128', 'en', 1, 'https://ror.org/05sy5w128 Kumamoto Medical Center 熊本医療センター'), (4866, 'https://ror.org/05t3n1398', 'en', 1, 'https://ror.org/05t3n1398 Natural Resources Institute'), (4867, 'https://ror.org/05t4vgv93', 'no_lang_code', 1, 'https://ror.org/05t4vgv93 Rotunda Hospital'), (4868, 'https://ror.org/05t65ke24', 'en', 1, 'https://ror.org/05t65ke24 Sophiahemmet Hospital Sophiahemmet Sjukhus'), (4869, 'https://ror.org/05t6gpm70', 'en', 1, 'https://ror.org/05t6gpm70 University of California Davis Medical Center'), (4870, 'https://ror.org/05t70xh16', 'en', 1, 'https://ror.org/05t70xh16 Kyoto Sangyo University 京都産業大学'), (4871, 'https://ror.org/05t7jxa31', 'en', 1, 'https://ror.org/05t7jxa31 Institute for Cancer Prevention'), (4872, 'https://ror.org/05t8kxz54', 'en', 1, 'https://ror.org/05t8kxz54 Saddleback Memorial Medical Center'), (4873, 'https://ror.org/05t9mkx39', 'en', 1, 'https://ror.org/05t9mkx39 Touro University Nevada Université touro du nevada'), (4874, 'https://ror.org/05tby3y60', 'en', 1, 'https://ror.org/05tby3y60 Judge Baker Children''s Center'), (4875, 'https://ror.org/05tc07s46', 'en', 1, 'https://ror.org/05tc07s46 Matsuyama University 松山大学'), (4876, 'https://ror.org/05tdbce05', 'en', 1, 'https://ror.org/05tdbce05 Biological Sciences Curriculum Study'), (4877, 'https://ror.org/05te51w08', 'es', 1, 'https://ror.org/05te51w08 Hospital General de Niños Ricardo Gutierrez'), (4878, 'https://ror.org/05tkvpg69', 'es', 1, 'https://ror.org/05tkvpg69 Centro Agronomico Tropical de Investigacion y Ensenanza Catie'), (4879, 'https://ror.org/05tmv0d13', 'en', 1, 'https://ror.org/05tmv0d13 American Society of Civil Engineers'), (4880, 'https://ror.org/05tn05n57', 'en', 1, 'https://ror.org/05tn05n57 Hanyang University Medical Center 한양대학교병원 응급실'), (4881, 'https://ror.org/05tnvgk65', 'en', 1, 'https://ror.org/05tnvgk65 Northern State Medical University Северный государственный медицинский университет'), (4882, 'https://ror.org/05tqne909', 'no_lang_code', 1, 'https://ror.org/05tqne909 (주)인실리코젠 Insilicogen (South Korea)'), (4883, 'https://ror.org/05tqtd486', 'en', 1, 'https://ror.org/05tqtd486 Canterbury District Health Board'), (4884, 'https://ror.org/05ts0bd12', 'en', 1, 'https://ror.org/05ts0bd12 VA Northern California Health Care System'), (4885, 'https://ror.org/05tta9908', 'de', 1, 'https://ror.org/05tta9908 Children''s Hospital in Eastern Switzerland Ostschweizer Kinderspital'), (4886, 'https://ror.org/05twvab73', 'en', 1, 'https://ror.org/05twvab73 Jehangir Hospital'), (4887, 'https://ror.org/05txhk819', 'es', 1, 'https://ror.org/05txhk819 Hospital General de Agudos Dr. TEODORO ALVAREZ'), (4888, 'https://ror.org/05txkk980', 'es', 1, 'https://ror.org/05txkk980 Hospital Universitario Infanta Cristina'), (4889, 'https://ror.org/05txvbe22', 'en', 1, 'https://ror.org/05txvbe22 Federal Teaching Hospital Abakaliki'), (4890, 'https://ror.org/05tzr3y75', 'en', 1, 'https://ror.org/05tzr3y75 Kassala University جامعة كسلا'), (4891, 'https://ror.org/05v0qpv28', 'en', 1, 'https://ror.org/05v0qpv28 Dankook University Hospital 단국대학교의과대학부속병원'), (4892, 'https://ror.org/05v1y0t93', 'en', 1, 'https://ror.org/05v1y0t93 China Jiliang University'), (4893, 'https://ror.org/05v4bdf81', 'en', 1, 'https://ror.org/05v4bdf81 Southampton Hospital'), (4894, 'https://ror.org/05v4pjq26', 'en', 1, 'https://ror.org/05v4pjq26 Mahatma Gandhi Medical College and Research Institute'), (4895, 'https://ror.org/05v4pwe63', 'en', 1, 'https://ror.org/05v4pwe63 Canniesburn Hospital'), (4896, 'https://ror.org/05v558c44', 'it', 1, 'https://ror.org/05v558c44 Azienda Ospedaliera Fatebenefratelli e Oftalmico'), (4897, 'https://ror.org/05v55dh34', 'en', 1, 'https://ror.org/05v55dh34 Memorial Hospital'), (4898, 'https://ror.org/05v58y004', 'en', 1, 'https://ror.org/05v58y004 Shaoxing People''s Hospital 绍兴市人民医院'), (4899, 'https://ror.org/05v5wwy67', 'en', 1, 'https://ror.org/05v5wwy67 Hippocration General Hospital Γενικό Νοσοκομείο Αθηνών Ιπποκράτειο'), (4900, 'https://ror.org/05v6r7450', 'en', 1, 'https://ror.org/05v6r7450 Shanghai Skin Disease Hospital 上海皮肤病医院长宁区门诊部'), (4901, 'https://ror.org/05v7axt97', 'no_lang_code', 1, 'https://ror.org/05v7axt97 Resodyn Corporation (United States)'), (4902, 'https://ror.org/05v7bbe50', 'tr', 1, 'https://ror.org/05v7bbe50 Fatih Sultan Mehmet Eğitim Ve Araştırma Hastanesi'), (4903, 'https://ror.org/05v7jp327', 'en', 1, 'https://ror.org/05v7jp327 Atlanta Medical Center'), (4904, 'https://ror.org/05v7v1303', 'no_lang_code', 1, 'https://ror.org/05v7v1303 IRIS Educational Media'), (4905, 'https://ror.org/05v823t63', 'en', 1, 'https://ror.org/05v823t63 South Essex Partnership University Foundation NHS Trust'), (4906, 'https://ror.org/05va5gy74', 'en', 1, 'https://ror.org/05va5gy74 Royal National Hospital for Rheumatic Diseases'), (4907, 'https://ror.org/05vc4qy60', 'nl', 1, 'https://ror.org/05vc4qy60 Rijnland Ziekenhuis'), (4908, 'https://ror.org/05vchgv90', 'no_lang_code', 1, 'https://ror.org/05vchgv90 Kouseiren Takaoka Hospital 厚生連高岡病院'), (4909, 'https://ror.org/05vczwc13', 'en', 1, 'https://ror.org/05vczwc13 Deaconess Hospital'), (4910, 'https://ror.org/05vf56z40', 'en', 1, 'https://ror.org/05vf56z40 University of Tehran دانشگاه تهران'), (4911, 'https://ror.org/05vgmh969', 'pl', 1, 'https://ror.org/05vgmh969 Szpital Uniwersytecki w Krakowie'), (4912, 'https://ror.org/05vhczg54', 'en', 1, 'https://ror.org/05vhczg54 Feng Chia University'), (4913, 'https://ror.org/05vn3ca78', 'en', 1, 'https://ror.org/05vn3ca78 National Chung Hsing University'), (4914, 'https://ror.org/05vp5x049', 'en', 1, 'https://ror.org/05vp5x049 Children''s Hospital of Richmond at VCU'), (4915, 'https://ror.org/05vtzqy31', 'en', 1, 'https://ror.org/05vtzqy31 Deaconess Hospital'), (4916, 'https://ror.org/05vvzn852', 'en', 1, 'https://ror.org/05vvzn852 University of Kentucky HealthCare'), (4917, 'https://ror.org/05vxnmp88', 'en', 1, 'https://ror.org/05vxnmp88 Cheil General Hospital and Women''s Healthcare Center'), (4918, 'https://ror.org/05vy1kj95', 'en', 1, 'https://ror.org/05vy1kj95 American Mathematical Society Sociedad Estadounidense de Matemática'), (4919, 'https://ror.org/05vy2sc54', 'en', 1, 'https://ror.org/05vy2sc54 First Affiliated Hospital of Harbin Medical University'), (4920, 'https://ror.org/05vz28418', 'en', 1, 'https://ror.org/05vz28418 Southern Illinois University System Université de l''illinois du sud'), (4921, 'https://ror.org/05vzbfc95', 'en', 1, 'https://ror.org/05vzbfc95 Yeditepe University Hospital Yeditepe Üniversitesi Hastanesi'), (4922, 'https://ror.org/05vzqzh92', 'en', 1, 'https://ror.org/05vzqzh92 University of Minnesota Morris Université du minnesota à morris'), (4923, 'https://ror.org/05w0p9h92', 'en', 1, 'https://ror.org/05w0p9h92 Shenandoah University'), (4924, 'https://ror.org/05w1yqq10', 'en', 1, 'https://ror.org/05w1yqq10 Israel Defense Forces Medical Corps'), (4925, 'https://ror.org/05w3e4z48', 'en', 1, 'https://ror.org/05w3e4z48 New Cross Hospital'), (4926, 'https://ror.org/05w6fx554', 'ro', 1, 'https://ror.org/05w6fx554 Institutul Clinic Fundeni'), (4927, 'https://ror.org/05w6g2m14', 'en', 1, 'https://ror.org/05w6g2m14 Government Medical College'), (4928, 'https://ror.org/05wbx0564', 'en', 1, 'https://ror.org/05wbx0564 Chonburi Hospital โรงพยาบาลชลบุรี'), (4929, 'https://ror.org/05wc95s05', 'en', 1, 'https://ror.org/05wc95s05 Khoo Teck Puat Hospital'), (4930, 'https://ror.org/05wcbg446', 'en', 1, 'https://ror.org/05wcbg446 Sveučilišna klinička bolnica Mostar University Clinical Hospital Mostar'), (4931, 'https://ror.org/05wd11c32', 'en', 1, 'https://ror.org/05wd11c32 Research Corporation of The University of Hawaii'), (4932, 'https://ror.org/05wd86d64', 'it', 1, 'https://ror.org/05wd86d64 Ospedale San Bortolo'), (4933, 'https://ror.org/05we5gj17', 'en', 1, 'https://ror.org/05we5gj17 Inje University Seoul Paik Hospital 인제대학교백병원'), (4934, 'https://ror.org/05weahn72', 'en', 1, 'https://ror.org/05weahn72 Sri Venkateswara University جامعہ سری وینکٹیشورا श्री वेंकटेश्वर विश्वविद्यालय சிறீ வெங்கடேசுவரா பல்கலைக்கழகம் శ్రీ వేంకటేశ్వర విశ్వవిద్యాలయం'), (4935, 'https://ror.org/05wf8v135', 'en', 1, 'https://ror.org/05wf8v135 Bronglais General Hospital'), (4936, 'https://ror.org/05wfna922', 'tr', 1, 'https://ror.org/05wfna922 American Hospital Amerikan Hastanesi'), (4937, 'https://ror.org/05wjv2104', 'en', 1, 'https://ror.org/05wjv2104 University Hospital Innsbruck'), (4938, 'https://ror.org/05wnp6x23', 'en', 1, 'https://ror.org/05wnp6x23 Goa Dental College and Hospital'), (4939, 'https://ror.org/05wqbqy84', 'en', 1, 'https://ror.org/05wqbqy84 Aminu Kano Teaching Hospital'), (4940, 'https://ror.org/05wqhv079', 'en', 1, 'https://ror.org/05wqhv079 Mater Adult Hospital'), (4941, 'https://ror.org/05wr49d48', 'en', 1, 'https://ror.org/05wr49d48 Wakayama University 和歌山大学'), (4942, 'https://ror.org/05wrpbp17', 'en', 1, 'https://ror.org/05wrpbp17 Andalusian School of Public Health Escuela Andaluza de Salud Pública'), (4943, 'https://ror.org/05wstbs93', 'en', 1, 'https://ror.org/05wstbs93 Obihiro National Hospital 国立病院機構帯広病院'), (4944, 'https://ror.org/05wtx0016', 'no_lang_code', 1, 'https://ror.org/05wtx0016 Canon (Canada)'), (4945, 'https://ror.org/05wvk1430', 'en', 1, 'https://ror.org/05wvk1430 Municipal Hirakata City Hospital 市立枚方市民病院'), (4946, 'https://ror.org/05wyncb52', 'en', 1, 'https://ror.org/05wyncb52 Kings Mill Hospital'), (4947, 'https://ror.org/05wyq9e07', 'en', 1, 'https://ror.org/05wyq9e07 Stony Brook University Hospital'), (4948, 'https://ror.org/05x0h7m97', 'en', 1, 'https://ror.org/05x0h7m97 Ratchaburi Hospital โรงพยาบาลราชบุรี'), (4949, 'https://ror.org/05x0kmy47', 'no_lang_code', 1, 'https://ror.org/05x0kmy47 Shaanxi Yulin Energy Group'), (4950, 'https://ror.org/05x14am29', 'en', 1, 'https://ror.org/05x14am29 Escola Superior Gallaecia Gallaecia Higher School'), (4951, 'https://ror.org/05x2sza30', 'en', 1, 'https://ror.org/05x2sza30 Higashi Nagoya National Hospital 国立病院機構東名古屋病院'), (4952, 'https://ror.org/05x3tad86', 'no_lang_code', 1, 'https://ror.org/05x3tad86 Inotek Pharmaceuticals (United States)'), (4953, 'https://ror.org/05x3tq720', 'en', 1, 'https://ror.org/05x3tq720 Mennonite Christian Hospital 門諾醫院'), (4954, 'https://ror.org/05x57ne79', 'en', 1, 'https://ror.org/05x57ne79 Calderdale Royal Hospital'), (4955, 'https://ror.org/05x5g2972', 'en', 1, 'https://ror.org/05x5g2972 Crittenton Hospital Medical Center'), (4956, 'https://ror.org/05x6qnc69', 'en', 1, 'https://ror.org/05x6qnc69 Lebanese University Université Libanaise الجامعة اللبنانية'), (4957, 'https://ror.org/05x6qqf62', 'es', 1, 'https://ror.org/05x6qqf62 Hospital Valle del Nalón'), (4958, 'https://ror.org/05x8jna23', 'fr', 1, 'https://ror.org/05x8jna23 Hôpital de La Grave'), (4959, 'https://ror.org/05xanxb38', 'en', 1, 'https://ror.org/05xanxb38 Govt. Dental College & Hospital'), (4960, 'https://ror.org/05xaz0w84', 'en', 1, 'https://ror.org/05xaz0w84 Odessa National Polytechnic University Одесский национальный политехнический университет Одеський національний політехнічний університет'), (4961, 'https://ror.org/05xc56p63', 'en', 1, 'https://ror.org/05xc56p63 Royal Alexandra Children''s Hospital'), (4962, 'https://ror.org/05xcx0k58', 'en', 1, 'https://ror.org/05xcx0k58 Aga Khan University Hospital'), (4963, 'https://ror.org/05xcyt367', 'en', 1, 'https://ror.org/05xcyt367 Loyola University Medical Center'), (4964, 'https://ror.org/05xdd0k85', 'en', 1, 'https://ror.org/05xdd0k85 Cheltenham General Hospital'), (4965, 'https://ror.org/05xdxc763', 'en', 1, 'https://ror.org/05xdxc763 Advocate Children''s Hospital'), (4966, 'https://ror.org/05xeczx11', 'no_lang_code', 1, 'https://ror.org/05xeczx11 Curtiss-Wright (Canada)'), (4967, 'https://ror.org/05xf34x41', 'en', 1, 'https://ror.org/05xf34x41 South Carolina State Department of Mental Health'), (4968, 'https://ror.org/05xh7ac43', 'en', 1, 'https://ror.org/05xh7ac43 Kettering General Hospital NHS Trust'), (4969, 'https://ror.org/05xh86w23', 'en', 1, 'https://ror.org/05xh86w23 Gastroenterology Medical Center and Hospital'), (4970, 'https://ror.org/05xhkqs13', 'en', 1, 'https://ror.org/05xhkqs13 North Bengal Medical College and Hospital নর্থবেঙ্গল মেডিক্যাল কলেজ'), (4971, 'https://ror.org/05xhpce34', 'en', 1, 'https://ror.org/05xhpce34 St Göran''s Children''s Hospital'), (4972, 'https://ror.org/05xjxp170', 'en', 1, 'https://ror.org/05xjxp170 Lovelace Health System'), (4973, 'https://ror.org/05xmvmv34', 'es', 1, 'https://ror.org/05xmvmv34 Centro Sociosanitario Nuestra Señora del Pino'), (4974, 'https://ror.org/05xn9jy83', 'en', 1, 'https://ror.org/05xn9jy83 University of Arkansas at Monticello'), (4975, 'https://ror.org/05xrsn753', 'en', 1, 'https://ror.org/05xrsn753 Choithram Hospital and Research Centre'), (4976, 'https://ror.org/05xswp225', 'en', 1, 'https://ror.org/05xswp225 Khulna Medical College খুলনা মেডিকেল কলেজ'), (4977, 'https://ror.org/05xszy717', 'en', 1, 'https://ror.org/05xszy717 National Defense Academy of Japan 防衛大学校'), (4978, 'https://ror.org/05xtj6g89', 'en', 1, 'https://ror.org/05xtj6g89 Baptist Memorial Hospital'), (4979, 'https://ror.org/05xtmzc93', 'en', 1, 'https://ror.org/05xtmzc93 Baptist Medical Center Beaches'), (4980, 'https://ror.org/05xv0p989', 'tr', 1, 'https://ror.org/05xv0p989 Ege Üniversitesi Tıp Fakültesi Hastanesi'), (4981, 'https://ror.org/05xwc2w62', 'pt', 1, 'https://ror.org/05xwc2w62 Escola Superior de Educação de Almeida Garrett'), (4982, 'https://ror.org/05xxmnm27', 'en', 1, 'https://ror.org/05xxmnm27 Altnagelvin Area Hospital'), (4983, 'https://ror.org/05xysjr32', 'en', 1, 'https://ror.org/05xysjr32 Kessler Institute for Rehabilitation'), (4984, 'https://ror.org/05y06tg49', 'en', 1, 'https://ror.org/05y06tg49 October 6 University جامعة السادس من أكتوبر'), (4985, 'https://ror.org/05y26ar20', 'pt', 1, 'https://ror.org/05y26ar20 Universidade Regional do Cariri'), (4986, 'https://ror.org/05y33vv83', 'es', 1, 'https://ror.org/05y33vv83 Universidad del Desarrollo'), (4987, 'https://ror.org/05y50nr98', 'en', 1, 'https://ror.org/05y50nr98 Suffolk University Universidad de Suffolk'), (4988, 'https://ror.org/05y5qmm69', 'en', 1, 'https://ror.org/05y5qmm69 Heritage University'), (4989, 'https://ror.org/05y7e6905', 'no_lang_code', 1, 'https://ror.org/05y7e6905 Sahmyook Medical Center 삼육의료원서울병원'), (4990, 'https://ror.org/05y8s3144', 'no_lang_code', 1, 'https://ror.org/05y8s3144 TPL (United States)'), (4991, 'https://ror.org/05y999856', 'pt', 1, 'https://ror.org/05y999856 Hospital Mãe de Deus'), (4992, 'https://ror.org/05ybvz010', 'en', 1, 'https://ror.org/05ybvz010 Mater Dei Hospital'), (4993, 'https://ror.org/05yc6p159', 'en', 1, 'https://ror.org/05yc6p159 Yeungnam University 영남대학교'), (4994, 'https://ror.org/05ydecq02', 'en', 1, 'https://ror.org/05ydecq02 Urho Kaleva Kekkonen Institute'), (4995, 'https://ror.org/05ydxj072', 'en', 1, 'https://ror.org/05ydxj072 Hallym University Medical Center 한림대학교의료원'), (4996, 'https://ror.org/05yevkn97', 'en', 1, 'https://ror.org/05yevkn97 Sendai Kousei Hospital 仙台厚生病院'), (4997, 'https://ror.org/05yjz6y13', 'en', 1, 'https://ror.org/05yjz6y13 University Medical Center Rizk Hospital'), (4998, 'https://ror.org/05yjze111', 'en', 1, 'https://ror.org/05yjze111 Unity Hospital'), (4999, 'https://ror.org/05ym42410', 'en', 1, 'https://ror.org/05ym42410 Gansu Agricultural University 甘肃农业大学'), (5000, 'https://ror.org/05ymyxj51', 'en', 1, 'https://ror.org/05ymyxj51 Royal Columbian Hospital'), (5001, 'https://ror.org/0002vhf72', 'no_lang_code', 1, 'https://ror.org/0002vhf72 Galenea (United States)'), (5002, 'https://ror.org/0003zy991', 'en', 1, 'https://ror.org/0003zy991 York Hospital'), (5003, 'https://ror.org/0004bx792', 'no_lang_code', 1, 'https://ror.org/0004bx792 SignalChem (Canada)'), (5004, 'https://ror.org/0004ysa08', 'en', 1, 'https://ror.org/0004ysa08 Centre for innovative process engineering'), (5005, 'https://ror.org/0006jev58', 'no_lang_code', 1, 'https://ror.org/0006jev58 Alpha Technologies (Canada)'), (5006, 'https://ror.org/0006n3612', 'en', 1, 'https://ror.org/0006n3612 Oak Crest Institute of Science'), (5007, 'https://ror.org/0007tes83', 'no_lang_code', 1, 'https://ror.org/0007tes83 Tominaga hospital 富永病院'), (5008, 'https://ror.org/0008kdt06', 'en', 1, 'https://ror.org/0008kdt06 Hearthstone Alzheimer Care'), (5009, 'https://ror.org/00096h502', 'en', 1, 'https://ror.org/00096h502 Native American Cancer Research'), (5010, 'https://ror.org/000a1cz07', 'no_lang_code', 1, 'https://ror.org/000a1cz07 Fianium (United Kingdom)'), (5011, 'https://ror.org/000apqb71', 'en', 1, 'https://ror.org/000apqb71 Philadelphia Fire Department'), (5012, 'https://ror.org/000cxfw53', 'no_lang_code', 1, 'https://ror.org/000cxfw53 Aradigm (United States)'), (5013, 'https://ror.org/000czbn37', 'no_lang_code', 1, 'https://ror.org/000czbn37 iProgen Biotech (Canada)'), (5014, 'https://ror.org/000dhg681', 'no_lang_code', 1, 'https://ror.org/000dhg681 Stratonics (United States)'), (5015, 'https://ror.org/000dzg547', 'no_lang_code', 1, 'https://ror.org/000dzg547 Scientific Solutions (United States)'), (5016, 'https://ror.org/000e3j968', 'tr', 1, 'https://ror.org/000e3j968 Türkiye Yüksek İhtisas Hastanesi'), (5017, 'https://ror.org/000ep5m48', 'es', 1, 'https://ror.org/000ep5m48 Instituto de Salud Pública de Navarra'), (5018, 'https://ror.org/000fmbj50', 'en', 1, 'https://ror.org/000fmbj50 California Rural Indian Health Board'), (5019, 'https://ror.org/000g90y93', 'en', 1, 'https://ror.org/000g90y93 Fresno Unified School District'), (5020, 'https://ror.org/000jqak13', 'no_lang_code', 1, 'https://ror.org/000jqak13 ECBio (Portugal)'), (5021, 'https://ror.org/000qjjz95', 'en', 1, 'https://ror.org/000qjjz95 Park Centre for Mental Health'), (5022, 'https://ror.org/000smmv87', 'no_lang_code', 1, 'https://ror.org/000smmv87 Morinaga Institute of Biological Science'), (5023, 'https://ror.org/000vy8681', 'en', 1, 'https://ror.org/000vy8681 National Institute of Agricultural Science and Technology'), (5024, 'https://ror.org/000x99506', 'no_lang_code', 1, 'https://ror.org/000x99506 Biodynamic Research Corporation (United States)'), (5025, 'https://ror.org/000z4wj31', 'en', 1, 'https://ror.org/000z4wj31 Center for Naval Analyses'), (5026, 'https://ror.org/000zk0m89', 'no_lang_code', 1, 'https://ror.org/000zk0m89 Nanoco Technologies (United Kingdom)'), (5027, 'https://ror.org/000znb612', 'no_lang_code', 1, 'https://ror.org/000znb612 Banca Rìoghail na h-Alba Royal Bank of Scotland (United Kingdom)'), (5028, 'https://ror.org/001040h60', 'en', 1, 'https://ror.org/001040h60 American Indian Center'), (5029, 'https://ror.org/00109m582', 'en', 1, 'https://ror.org/00109m582 Community Connections'), (5030, 'https://ror.org/0010c1z81', 'de', 1, 'https://ror.org/0010c1z81 Deutsche Klinik für Diagnostik'), (5031, 'https://ror.org/0010ry587', 'no_lang_code', 1, 'https://ror.org/0010ry587 Ultra Electronics (Canada)'), (5032, 'https://ror.org/0011v4420', 'en', 1, 'https://ror.org/0011v4420 Zübeyde Hanim Maternity Hospital'), (5033, 'https://ror.org/0012w1115', 'no_lang_code', 1, 'https://ror.org/0012w1115 EcoMetrix'), (5034, 'https://ror.org/0014wkh93', 'no_lang_code', 1, 'https://ror.org/0014wkh93 Tucker-Davis Technologies (United States)'), (5035, 'https://ror.org/0015wff52', 'no_lang_code', 1, 'https://ror.org/0015wff52 Implant Sciences (United States)'), (5036, 'https://ror.org/0015zns27', 'no_lang_code', 1, 'https://ror.org/0015zns27 KCTS 9 (United States)'), (5037, 'https://ror.org/0016w2w54', 'en', 1, 'https://ror.org/0016w2w54 Des Moines Area Community College'), (5038, 'https://ror.org/0016z8240', 'no_lang_code', 1, 'https://ror.org/0016z8240 Liminal BioSciences (Canada)'), (5039, 'https://ror.org/00174r125', 'en', 1, 'https://ror.org/00174r125 Foundation for Blood Research'), (5040, 'https://ror.org/001cbt815', 'en', 1, 'https://ror.org/001cbt815 Mt. Hood Community College'), (5041, 'https://ror.org/001dsq926', 'no_lang_code', 1, 'https://ror.org/001dsq926 DeltaMetrics (United States)'), (5042, 'https://ror.org/001dw2225', 'en', 1, 'https://ror.org/001dw2225 Central Aerohydrodynamic Institute Центральный аэрогидродинамический институт имени профессора Н.Е. Жуковского'), (5043, 'https://ror.org/001fvka94', 'no_lang_code', 1, 'https://ror.org/001fvka94 Wilson Wolf Manufacturing (United States)'), (5044, 'https://ror.org/001kbwb95', 'no_lang_code', 1, 'https://ror.org/001kbwb95 Decision Demographics (United States)'), (5045, 'https://ror.org/001m3hq40', 'en', 1, 'https://ror.org/001m3hq40 Communication Matters'), (5046, 'https://ror.org/001s05659', 'en', 1, 'https://ror.org/001s05659 Blood Transfusion Centre of Slovenia'), (5047, 'https://ror.org/001s4dh65', 'no_lang_code', 1, 'https://ror.org/001s4dh65 Cambridge Scientific (United States)'), (5048, 'https://ror.org/001tmkc70', 'no_lang_code', 1, 'https://ror.org/001tmkc70 Ivoclar Vivadent (Liechtenstein)'), (5049, 'https://ror.org/001yedb91', 'no_lang_code', 1, 'https://ror.org/001yedb91 Actelion (Switzerland)'), (5050, 'https://ror.org/001ykb961', 'en', 1, 'https://ror.org/001ykb961 National Evolutionary Synthesis Center'), (5051, 'https://ror.org/00226bs07', 'no_lang_code', 1, 'https://ror.org/00226bs07 Scarab Genomics (United States)'), (5052, 'https://ror.org/002298757', 'no_lang_code', 1, 'https://ror.org/002298757 Allozyne (United States)'), (5053, 'https://ror.org/0023asr12', 'en', 1, 'https://ror.org/0023asr12 Singapore Science Park Taman Sains Singapura 新加坡科学园'), (5054, 'https://ror.org/0024cws33', 'en', 1, 'https://ror.org/0024cws33 Food Research Institute'), (5055, 'https://ror.org/0024cyb77', 'no_lang_code', 1, 'https://ror.org/0024cyb77 Stottler Henke Associates (United States)'), (5056, 'https://ror.org/002573656', 'no_lang_code', 1, 'https://ror.org/002573656 NeurAxon (Canada)'), (5057, 'https://ror.org/0027jd641', 'no_lang_code', 1, 'https://ror.org/0027jd641 Cell Culture Company (United States)'), (5058, 'https://ror.org/0028z3k74', 'en', 1, 'https://ror.org/0028z3k74 Orange County Research Center'), (5059, 'https://ror.org/002bnpr17', 'pt', 1, 'https://ror.org/002bnpr17 Fundação de Medicina Tropical'), (5060, 'https://ror.org/002cajb45', 'no_lang_code', 1, 'https://ror.org/002cajb45 Carterra (United States)'), (5061, 'https://ror.org/002feag21', 'en', 1, 'https://ror.org/002feag21 Bostwick Laboratories'), (5062, 'https://ror.org/002j9jj25', 'en', 1, 'https://ror.org/002j9jj25 Harrisburg Area Community College'), (5063, 'https://ror.org/002k3wk88', 'en', 1, 'https://ror.org/002k3wk88 National Medical Products Administration'), (5064, 'https://ror.org/002kdhq94', 'no_lang_code', 1, 'https://ror.org/002kdhq94 Online Technologies (United States)'), (5065, 'https://ror.org/002m5c441', 'no_lang_code', 1, 'https://ror.org/002m5c441 Xention (United Kingdom)'), (5066, 'https://ror.org/002mbwb34', 'en', 1, 'https://ror.org/002mbwb34 Passaic County Community College'), (5067, 'https://ror.org/002nf6q61', 'en', 1, 'https://ror.org/002nf6q61 Bandim Health Project Projecto de Saúde Bandim'), (5068, 'https://ror.org/002t6g510', 'en', 1, 'https://ror.org/002t6g510 Dick Young Productions'), (5069, 'https://ror.org/002vjkr06', 'en', 1, 'https://ror.org/002vjkr06 Pima Prevention Partnership'), (5070, 'https://ror.org/002xn3f27', 'no_lang_code', 1, 'https://ror.org/002xn3f27 SciberQuest (United States)'), (5071, 'https://ror.org/002y1bq07', 'en', 1, 'https://ror.org/002y1bq07 Madison Area Technical College'), (5072, 'https://ror.org/002yzpx87', 'no_lang_code', 1, 'https://ror.org/002yzpx87 BASF (United States)'), (5073, 'https://ror.org/0033n4009', 'no_lang_code', 1, 'https://ror.org/0033n4009 ABB (Sweden)'), (5074, 'https://ror.org/0034k3d56', 'en', 1, 'https://ror.org/0034k3d56 Department of Community and Human Services'), (5075, 'https://ror.org/0038zh709', 'it', 1, 'https://ror.org/0038zh709 Consorzio per Valutazioni Biologiche e Farmacologiche'), (5076, 'https://ror.org/0039ss191', 'no_lang_code', 1, 'https://ror.org/0039ss191 Altravax (United States)'), (5077, 'https://ror.org/003a79y48', 'en', 1, 'https://ror.org/003a79y48 Perm State Medical Academy Пермский государственный медицинский университет'), (5078, 'https://ror.org/003ck6433', 'en', 1, 'https://ror.org/003ck6433 National Microelectronics Institute'), (5079, 'https://ror.org/003dqcp70', 'no_lang_code', 1, 'https://ror.org/003dqcp70 Fujirebio (Belgium)'), (5080, 'https://ror.org/003fgzm76', 'en', 1, 'https://ror.org/003fgzm76 Mount Carmel College of Nursing'), (5081, 'https://ror.org/003frhn24', 'en', 1, 'https://ror.org/003frhn24 Amarillo College'), (5082, 'https://ror.org/003fzn994', 'no_lang_code', 1, 'https://ror.org/003fzn994 TMO Renewables (United Kingdom)'), (5083, 'https://ror.org/003g0xf19', 'en', 1, 'https://ror.org/003g0xf19 VA New Jersey Health Care System'), (5084, 'https://ror.org/003hr6w03', 'en', 1, 'https://ror.org/003hr6w03 MotherToBaby'), (5085, 'https://ror.org/003jsdw96', 'en', 1, 'https://ror.org/003jsdw96 Macedonian Academy of Sciences and Arts'), (5086, 'https://ror.org/003jtsa97', 'en', 1, 'https://ror.org/003jtsa97 St. Joseph''s Hospital'), (5087, 'https://ror.org/003kv9x13', 'en', 1, 'https://ror.org/003kv9x13 Health & Safety Laboratory'), (5088, 'https://ror.org/003mpgw14', 'en', 1, 'https://ror.org/003mpgw14 St. Elisabeth Hospital'), (5089, 'https://ror.org/003nnep52', 'pt', 1, 'https://ror.org/003nnep52 Irmandade da Santa Casa de Misericórdia de São Paulo'); INSERT INTO `rors` VALUES (5090, 'https://ror.org/003pdcw24', 'no_lang_code', 1, 'https://ror.org/003pdcw24 Vestas (Denmark)'), (5091, 'https://ror.org/003qr7703', 'en', 1, 'https://ror.org/003qr7703 Peijaksen sairaala Peijas Hospital'), (5092, 'https://ror.org/003tra577', 'en', 1, 'https://ror.org/003tra577 Arizona Office of the Governor'), (5093, 'https://ror.org/0042e5975', 'it', 1, 'https://ror.org/0042e5975 Istituto Nanoscienze'), (5094, 'https://ror.org/00485s352', 'no_lang_code', 1, 'https://ror.org/00485s352 Danaher (United Kingdom)'), (5095, 'https://ror.org/004a2wv92', 'en', 1, 'https://ror.org/004a2wv92 National Institute of Dental and Craniofacial Research'), (5096, 'https://ror.org/004aekm03', 'en', 1, 'https://ror.org/004aekm03 South Carolina HIV/AIDS Council'), (5097, 'https://ror.org/004amc442', 'en', 1, 'https://ror.org/004amc442 Orthopaedic Center'), (5098, 'https://ror.org/004cah429', 'no_lang_code', 1, 'https://ror.org/004cah429 Toyama Prefectural Central Hospital 富山県立中央病院'), (5099, 'https://ror.org/004ej3g52', 'en', 1, 'https://ror.org/004ej3g52 National Defense Medical College Hospital 防衛医科大学校病院'), (5100, 'https://ror.org/004ejmg69', 'no_lang_code', 1, 'https://ror.org/004ejmg69 Aerpio Pharmaceuticals (United States)'), (5101, 'https://ror.org/004es3518', 'no_lang_code', 1, 'https://ror.org/004es3518 Red Hill Studios'), (5102, 'https://ror.org/004g7tk16', 'en', 1, 'https://ror.org/004g7tk16 Canadian Fitness and Lifestyle Research Institute'), (5103, 'https://ror.org/004gw9825', 'en', 1, 'https://ror.org/004gw9825 Southeast Community College'), (5104, 'https://ror.org/004hfxk38', 'no_lang_code', 1, 'https://ror.org/004hfxk38 Theageneio General Hospital'), (5105, 'https://ror.org/004hxna20', 'en', 1, 'https://ror.org/004hxna20 Overlake Hospital Medical Center'), (5106, 'https://ror.org/004m2d892', 'no_lang_code', 1, 'https://ror.org/004m2d892 Impact Assessment'), (5107, 'https://ror.org/004n9sm55', 'en', 1, 'https://ror.org/004n9sm55 New England Center for Children'), (5108, 'https://ror.org/004pk7083', 'en', 1, 'https://ror.org/004pk7083 Cedars-Sinai Kerlan-Jobe Institute'), (5109, 'https://ror.org/004q7z165', 'en', 1, 'https://ror.org/004q7z165 New York College of Podiatric Medicine'), (5110, 'https://ror.org/004s94c80', 'pt', 1, 'https://ror.org/004s94c80 Biocant'), (5111, 'https://ror.org/004v7xm28', 'no_lang_code', 1, 'https://ror.org/004v7xm28 Modellium (Canada)'), (5112, 'https://ror.org/004vn8r55', 'es', 1, 'https://ror.org/004vn8r55 Centro Médico Nacional La Raza'), (5113, 'https://ror.org/004wdnc96', 'no_lang_code', 1, 'https://ror.org/004wdnc96 Siloam Biosciences (United States)'), (5114, 'https://ror.org/004wh0w58', 'en', 1, 'https://ror.org/004wh0w58 Guthrie Foundation'), (5115, 'https://ror.org/004x58208', 'en', 1, 'https://ror.org/004x58208 St. John Medical Center'), (5116, 'https://ror.org/004xj7429', 'no_lang_code', 1, 'https://ror.org/004xj7429 Ingenza (United Kingdom)'), (5117, 'https://ror.org/004zcwt94', 'no_lang_code', 1, 'https://ror.org/004zcwt94 Universal Sensors (United States)'), (5118, 'https://ror.org/004zwen25', 'no_lang_code', 1, 'https://ror.org/004zwen25 Intelligent Optical Systems (United States)'), (5119, 'https://ror.org/0050g6f93', 'en', 1, 'https://ror.org/0050g6f93 KKR Tohoku Kosai Hospital 東北公済病院'), (5120, 'https://ror.org/005296895', 'en', 1, 'https://ror.org/005296895 BOOMHealth'), (5121, 'https://ror.org/0053ctp29', 'it', 1, 'https://ror.org/0053ctp29 Ospedale Maggiore'), (5122, 'https://ror.org/0056qeq43', 'no_lang_code', 1, 'https://ror.org/0056qeq43 Toyonaka Municipal Hospital 市立豊中病院'), (5123, 'https://ror.org/0056x7z10', 'en', 1, 'https://ror.org/0056x7z10 Philander Smith College'), (5124, 'https://ror.org/0057tdk10', 'no_lang_code', 1, 'https://ror.org/0057tdk10 La Jolla Science Applications (United States)'), (5125, 'https://ror.org/0059mbq09', 'no_lang_code', 1, 'https://ror.org/0059mbq09 Integrity Testing Laboratory (Canada)'), (5126, 'https://ror.org/005avv954', 'en', 1, 'https://ror.org/005avv954 Shea Ear Clinic'), (5127, 'https://ror.org/005df7g82', 'en', 1, 'https://ror.org/005df7g82 Saudi Center for Organ Transplantation'), (5128, 'https://ror.org/005dyph89', 'en', 1, 'https://ror.org/005dyph89 Hawaii Agriculture Research Center'), (5129, 'https://ror.org/005e2bj09', 'en', 1, 'https://ror.org/005e2bj09 St.Petersburg V.M.Bekhterev Psychoneurological Research Institute Санкт-Петербургский научно-исследовательский психоневрологический институт им. В.М. Бехтерева'), (5130, 'https://ror.org/005f8zs60', 'no_lang_code', 1, 'https://ror.org/005f8zs60 Nanoptics (United States)'), (5131, 'https://ror.org/005fx5296', 'en', 1, 'https://ror.org/005fx5296 Austen Riggs Center'), (5132, 'https://ror.org/005j1v069', 'en', 1, 'https://ror.org/005j1v069 Pathfinder International'), (5133, 'https://ror.org/005k4dn45', 'en', 1, 'https://ror.org/005k4dn45 University of Arkansas Medical Center'), (5134, 'https://ror.org/005kew443', 'no_lang_code', 1, 'https://ror.org/005kew443 GC Image (United States)'), (5135, 'https://ror.org/005kxm139', 'no_lang_code', 1, 'https://ror.org/005kxm139 Bridge12 Technologies (United States)'), (5136, 'https://ror.org/005m2at17', 'en', 1, 'https://ror.org/005m2at17 Harvard Affiliated Emergency Medicine Residency'), (5137, 'https://ror.org/005nrbr06', 'no_lang_code', 1, 'https://ror.org/005nrbr06 Phrixus Pharmaceuticals (United States)'), (5138, 'https://ror.org/005pxtk56', 'no_lang_code', 1, 'https://ror.org/005pxtk56 Cabezon Group (United States)'), (5139, 'https://ror.org/005qf7j34', 'en', 1, 'https://ror.org/005qf7j34 Harlem United'), (5140, 'https://ror.org/005t0ps98', 'fr', 1, 'https://ror.org/005t0ps98 Institut Arnault Tzanck'), (5141, 'https://ror.org/005tjs461', 'en', 1, 'https://ror.org/005tjs461 American Association for the Study of Liver Diseases'), (5142, 'https://ror.org/005yt8w56', 'no_lang_code', 1, 'https://ror.org/005yt8w56 Opotek (United States) Opotek Incorporation'), (5143, 'https://ror.org/0060hwx87', 'no_lang_code', 1, 'https://ror.org/0060hwx87 Alliance Pharmaceutical (United States)'), (5144, 'https://ror.org/0062dz060', 'en', 1, 'https://ror.org/0062dz060 Norwich Research Park'), (5145, 'https://ror.org/00655dk85', 'en', 1, 'https://ror.org/00655dk85 Glasgow Life'), (5146, 'https://ror.org/0068vzv72', 'no_lang_code', 1, 'https://ror.org/0068vzv72 National Instruments (United Kingdom)'), (5147, 'https://ror.org/0069kqw53', 'en', 1, 'https://ror.org/0069kqw53 Environmental Research Institute of Michigan'), (5148, 'https://ror.org/006d11e04', 'no_lang_code', 1, 'https://ror.org/006d11e04 Agricultural Development Advisory Service (United Kingdom)'), (5149, 'https://ror.org/006dtpb58', 'en', 1, 'https://ror.org/006dtpb58 Monterey Peninsula College'), (5150, 'https://ror.org/006efkq12', 'de', 1, 'https://ror.org/006efkq12 Unfallkrankenhaus Wien Lorenz Böhler'), (5151, 'https://ror.org/006fc7318', 'no_lang_code', 1, 'https://ror.org/006fc7318 Cemka-Eval (France)'), (5152, 'https://ror.org/006gebr77', 'no_lang_code', 1, 'https://ror.org/006gebr77 Toxikon (United States)'), (5153, 'https://ror.org/006gfkv11', 'no_lang_code', 1, 'https://ror.org/006gfkv11 Stoelting (United States)'), (5154, 'https://ror.org/006gpqj72', 'no_lang_code', 1, 'https://ror.org/006gpqj72 rEVO Biologics (United States)'), (5155, 'https://ror.org/006hrz834', 'no_lang_code', 1, 'https://ror.org/006hrz834 Roche (Canada)'), (5156, 'https://ror.org/006jktr69', 'it', 1, 'https://ror.org/006jktr69 Azienda Ospedaliera di Perugia'), (5157, 'https://ror.org/006jzf029', 'no_lang_code', 1, 'https://ror.org/006jzf029 TriboFilm Research (United States)'), (5158, 'https://ror.org/006pq9r08', 'it', 1, 'https://ror.org/006pq9r08 Centro Cardiologico Monzino'), (5159, 'https://ror.org/006q1m605', 'no_lang_code', 1, 'https://ror.org/006q1m605 BlueInGreen (United States)'), (5160, 'https://ror.org/006qz8583', 'en', 1, 'https://ror.org/006qz8583 Mahatma Gandhi Kashi Vidyapith महात्मा गाँधी काशी विद्यापीठ மகாத்மா காந்தி காசி வித்யாபீடம்'), (5161, 'https://ror.org/006tyy056', 'no_lang_code', 1, 'https://ror.org/006tyy056 Integran (Canada)'), (5162, 'https://ror.org/006vvv981', 'no_lang_code', 1, 'https://ror.org/006vvv981 BioLegend (United States)'), (5163, 'https://ror.org/006ys0j28', 'no_lang_code', 1, 'https://ror.org/006ys0j28 VinTech (United States)'), (5164, 'https://ror.org/006zn3t30', 'en', 1, 'https://ror.org/006zn3t30 National Institute of Arthritis and Musculoskeletal and Skin Diseases'), (5165, 'https://ror.org/0070c9h23', 'en', 1, 'https://ror.org/0070c9h23 Latino Health Institute (United States)'), (5166, 'https://ror.org/0070nx673', 'no_lang_code', 1, 'https://ror.org/0070nx673 Okino Computer Graphics (Canada)'), (5167, 'https://ror.org/0071ct727', 'en', 1, 'https://ror.org/0071ct727 Saskatchewan Hospice Palliative Care Association'), (5168, 'https://ror.org/0072j3s02', 'no_lang_code', 1, 'https://ror.org/0072j3s02 Aster'), (5169, 'https://ror.org/0073h0969', 'no_lang_code', 1, 'https://ror.org/0073h0969 Indus Instruments (United States)'), (5170, 'https://ror.org/0073nm244', 'en', 1, 'https://ror.org/0073nm244 Loud Crow Interactive'), (5171, 'https://ror.org/0075mfb88', 'no_lang_code', 1, 'https://ror.org/0075mfb88 Sharp Laboratories of Europe (United Kingdom)'), (5172, 'https://ror.org/00770p954', 'en', 1, 'https://ror.org/00770p954 Healthcare Technology Systems'), (5173, 'https://ror.org/0077s8c55', 'en', 1, 'https://ror.org/0077s8c55 Gyeongsangnam-do Agricultural Research and Extension Services 경상남도농업기술원'), (5174, 'https://ror.org/0078ww552', 'no_lang_code', 1, 'https://ror.org/0078ww552 Cochlear (Switzerland)'), (5175, 'https://ror.org/007a5h107', 'en', 1, 'https://ror.org/007a5h107 Tawam Hospital مستشفى توام'), (5176, 'https://ror.org/007aah170', 'en', 1, 'https://ror.org/007aah170 Highline College'), (5177, 'https://ror.org/007app753', 'no_lang_code', 1, 'https://ror.org/007app753 Neuroscript (United States)'), (5178, 'https://ror.org/007b9a961', 'no_lang_code', 1, 'https://ror.org/007b9a961 KeraNetics (United States)'), (5179, 'https://ror.org/007bn8q13', 'en', 1, 'https://ror.org/007bn8q13 Association of State and Territorial Health Officials'), (5180, 'https://ror.org/007gj5v75', 'en', 1, 'https://ror.org/007gj5v75 Kanagawa Institute of Technology 神奈川工科大学'), (5181, 'https://ror.org/007jsya95', 'en', 1, 'https://ror.org/007jsya95 Hubbs-Sea World Research Institute'), (5182, 'https://ror.org/007m28f12', 'no_lang_code', 1, 'https://ror.org/007m28f12 Bio-Synthesis (United States)'), (5183, 'https://ror.org/007mg2f66', 'no_lang_code', 1, 'https://ror.org/007mg2f66 Prototypes (United States)'), (5184, 'https://ror.org/007mtxb37', 'no_lang_code', 1, 'https://ror.org/007mtxb37 Oceanit (United States)'), (5185, 'https://ror.org/007n45g27', 'en', 1, 'https://ror.org/007n45g27 Wellington Hospital'), (5186, 'https://ror.org/007paj431', 'en', 1, 'https://ror.org/007paj431 Maine Maritime Academy'), (5187, 'https://ror.org/007pyhw16', 'en', 1, 'https://ror.org/007pyhw16 Diamond Headache Clinic'), (5188, 'https://ror.org/007sw5k32', 'pt', 1, 'https://ror.org/007sw5k32 Centro de Genética Clínica'), (5189, 'https://ror.org/007wes890', 'it', 1, 'https://ror.org/007wes890 Istituto per lo Studio e la Prevenzione Oncologica'), (5190, 'https://ror.org/007yjv643', 'no_lang_code', 1, 'https://ror.org/007yjv643 Companhia União Fabril'), (5191, 'https://ror.org/00806hw79', 'en', 1, 'https://ror.org/00806hw79 Huddersfield Royal Infirmary'), (5192, 'https://ror.org/0080fc349', 'no_lang_code', 1, 'https://ror.org/0080fc349 JEOL (United Kingdom)'), (5193, 'https://ror.org/0081r6c67', 'no_lang_code', 1, 'https://ror.org/0081r6c67 Addcomp (Netherlands)'), (5194, 'https://ror.org/00840a568', 'no_lang_code', 1, 'https://ror.org/00840a568 Watershed Associates'), (5195, 'https://ror.org/0084bse20', 'sv', 1, 'https://ror.org/0084bse20 Sunderby sjukhus'), (5196, 'https://ror.org/0085yat49', 'en', 1, 'https://ror.org/0085yat49 City of Bradford Metropolitan District Council'), (5197, 'https://ror.org/0086b8v72', 'en', 1, 'https://ror.org/0086b8v72 International Neuroscience Institute'), (5198, 'https://ror.org/0087djs12', 'en', 1, 'https://ror.org/0087djs12 Max Planck Institute for Dynamics and Self-Organization Max-Planck-Institut für Dynamik und Selbstorganisation'), (5199, 'https://ror.org/0088p5f80', 'no_lang_code', 1, 'https://ror.org/0088p5f80 NeuroDx Development (United States)'), (5200, 'https://ror.org/008cz4337', 'da', 1, 'https://ror.org/008cz4337 Regionshospitalet Viborg Viborg Regional Hospital'), (5201, 'https://ror.org/008ebms37', 'en', 1, 'https://ror.org/008ebms37 Institute of Theoretical and Experimental Biophysics Федеральное государственное бюджетное учреждение науки Институт теоретической и экспериментальной биофизики Российской академии наук'), (5202, 'https://ror.org/008egzn26', 'pt', 1, 'https://ror.org/008egzn26 Centro Brasileiro de Estudos em Dermatologia'), (5203, 'https://ror.org/008ghcb80', 'en', 1, 'https://ror.org/008ghcb80 American Nurses Association'), (5204, 'https://ror.org/008h82p94', 'no_lang_code', 1, 'https://ror.org/008h82p94 Boston Applied Technologies (United States)'), (5205, 'https://ror.org/008k5ng46', 'en', 1, 'https://ror.org/008k5ng46 Central Council for Research in Ayurvedic Science'), (5206, 'https://ror.org/008kn1a71', 'en', 1, 'https://ror.org/008kn1a71 Sunnybrook Hospital'), (5207, 'https://ror.org/008qdc072', 'no_lang_code', 1, 'https://ror.org/008qdc072 Monteco (Canada)'), (5208, 'https://ror.org/008tdn922', 'no_lang_code', 1, 'https://ror.org/008tdn922 Premier Foods (United Kingdom)'), (5209, 'https://ror.org/008vjgw77', 'no_lang_code', 1, 'https://ror.org/008vjgw77 MediSpectra (United States)'), (5210, 'https://ror.org/008vp0c43', 'en', 1, 'https://ror.org/008vp0c43 Sunderland Eye Infirmary'), (5211, 'https://ror.org/008wcy231', 'en', 1, 'https://ror.org/008wcy231 Zensa Hospital'), (5212, 'https://ror.org/008x12972', 'en', 1, 'https://ror.org/008x12972 American Society for Reproductive Medicine'), (5213, 'https://ror.org/008y69805', 'no_lang_code', 1, 'https://ror.org/008y69805 Inscent (United States)'), (5214, 'https://ror.org/00911j719', 'en', 1, 'https://ror.org/00911j719 Tianjin Third Central Hospital 天津市第三中心医院'), (5215, 'https://ror.org/00918g650', 'en', 1, 'https://ror.org/00918g650 Confederation of National Associations of Tanners and Dressers of the European Community'), (5216, 'https://ror.org/0093s9g83', 'en', 1, 'https://ror.org/0093s9g83 Ministère du Travail Ontario Ministry of Labour'), (5217, 'https://ror.org/0094yx268', 'en', 1, 'https://ror.org/0094yx268 Philosophy of Science Association'), (5218, 'https://ror.org/0094yxj20', 'en', 1, 'https://ror.org/0094yxj20 National Association of School Nurses'), (5219, 'https://ror.org/0095q0x79', 'no_lang_code', 1, 'https://ror.org/0095q0x79 MAX Mobility (United States)'), (5220, 'https://ror.org/0097hz889', 'no_lang_code', 1, 'https://ror.org/0097hz889 ChemGreen Innovation (Canada)'), (5221, 'https://ror.org/0097wef15', 'no_lang_code', 1, 'https://ror.org/0097wef15 MacConnell Research (United States)'), (5222, 'https://ror.org/0097wyf31', 'no_lang_code', 1, 'https://ror.org/0097wyf31 Hitachi (United Kingdom)'), (5223, 'https://ror.org/00996xv77', 'en', 1, 'https://ror.org/00996xv77 Red Rocks Community College'), (5224, 'https://ror.org/009azd705', 'it', 1, 'https://ror.org/009azd705 Figli Adottivi e Genitori Naturali'), (5225, 'https://ror.org/009bsy196', 'en', 1, 'https://ror.org/009bsy196 Edinburgh Royal Infirmary'), (5226, 'https://ror.org/009ee8v97', 'no_lang_code', 1, 'https://ror.org/009ee8v97 Jet Process Corporation (United States)'), (5227, 'https://ror.org/009ezqy65', 'en', 1, 'https://ror.org/009ezqy65 National Institute of Health and Family Welfare राष्ट्रीय स्वास्थ्य और परिवार कल्याण संस्थान'), (5228, 'https://ror.org/009frj756', 'no_lang_code', 1, 'https://ror.org/009frj756 360pi (Canada)'), (5229, 'https://ror.org/009gw7733', 'en', 1, 'https://ror.org/009gw7733 National Renewable Energy Centre'), (5230, 'https://ror.org/009h0v784', 'it', 1, 'https://ror.org/009h0v784 Fondazione Istituto Neurologico Nazionale Casimiro Mondino'), (5231, 'https://ror.org/009ht6s65', 'no_lang_code', 1, 'https://ror.org/009ht6s65 Picarro (United States)'), (5232, 'https://ror.org/009j32424', 'en', 1, 'https://ror.org/009j32424 Institute of Livestock and Grassland Science 畜産研究部門'), (5233, 'https://ror.org/009jvpf03', 'no_lang_code', 1, 'https://ror.org/009jvpf03 Integrated DNA Technologies (United States)'), (5234, 'https://ror.org/009k2za57', 'no_lang_code', 1, 'https://ror.org/009k2za57 Chembio (United States)'), (5235, 'https://ror.org/009kr6r15', 'en', 1, 'https://ror.org/009kr6r15 Western General Hospital'), (5236, 'https://ror.org/009mb6m53', 'pt', 1, 'https://ror.org/009mb6m53 Instituto H. Ellis'), (5237, 'https://ror.org/009mjd053', 'no_lang_code', 1, 'https://ror.org/009mjd053 Advanced Circulatory System (United States)'), (5238, 'https://ror.org/009mk5659', 'en', 1, 'https://ror.org/009mk5659 American College of Surgeons'), (5239, 'https://ror.org/009n4a626', 'no_lang_code', 1, 'https://ror.org/009n4a626 StataCorp (United States)'), (5240, 'https://ror.org/009nbdt96', 'en', 1, 'https://ror.org/009nbdt96 St. Joseph Medical Center'), (5241, 'https://ror.org/009qffz28', 'en', 1, 'https://ror.org/009qffz28 Central Institute of Psychiatry केन्द्रीय मनश्चिकित्सा संस्थान'), (5242, 'https://ror.org/009rbsv73', 'en', 1, 'https://ror.org/009rbsv73 The Tech Interactive'), (5243, 'https://ror.org/009rf1452', 'en', 1, 'https://ror.org/009rf1452 San Francisco Film Society'), (5244, 'https://ror.org/009s7a550', 'en', 1, 'https://ror.org/009s7a550 Pamela Youde Nethersole Eastern Hospital 東區尤德夫人那打素醫院'), (5245, 'https://ror.org/009vh5d61', 'en', 1, 'https://ror.org/009vh5d61 Rollins College'), (5246, 'https://ror.org/009xkka62', 'no_lang_code', 1, 'https://ror.org/009xkka62 Sema Construction (United States)'), (5247, 'https://ror.org/009y6jy27', 'no_lang_code', 1, 'https://ror.org/009y6jy27 GVD Corporation (United States)'), (5248, 'https://ror.org/00a0kf832', 'en', 1, 'https://ror.org/00a0kf832 F.D. Ovcharenko Institute of Biocolloidal Chemistry Інститут біоколоїдної хімії ім. Ф. Д. Овчаренка'), (5249, 'https://ror.org/00a1a0x11', 'no_lang_code', 1, 'https://ror.org/00a1a0x11 Area Detector Systems Corporation (United States)'), (5250, 'https://ror.org/00a3bx267', 'en', 1, 'https://ror.org/00a3bx267 Toyama Institute of Health 富山県衛生研究所'), (5251, 'https://ror.org/00a4npp83', 'no_lang_code', 1, 'https://ror.org/00a4npp83 Dyson (United Kingdom)'), (5252, 'https://ror.org/00a56am39', 'en', 1, 'https://ror.org/00a56am39 Philippine General Hospital'), (5253, 'https://ror.org/00a6fbp85', 'en', 1, 'https://ror.org/00a6fbp85 P. D. Hinduja Hospital and Medical Research Centre'), (5254, 'https://ror.org/00a75q479', 'no_lang_code', 1, 'https://ror.org/00a75q479 Nature Technology Corporation (United States)'), (5255, 'https://ror.org/00aac7f28', 'no_lang_code', 1, 'https://ror.org/00aac7f28 Ion Physics (United States)'), (5256, 'https://ror.org/00ab7ks98', 'en', 1, 'https://ror.org/00ab7ks98 W.M. Keck Observatory'), (5257, 'https://ror.org/00afc8732', 'en', 1, 'https://ror.org/00afc8732 William Beaumont Army Medical Center'), (5258, 'https://ror.org/00afpvb68', 'fr', 1, 'https://ror.org/00afpvb68 Collège Shawinigan'), (5259, 'https://ror.org/00agtat91', 'de', 1, 'https://ror.org/00agtat91 Städtisches Klinikum Karlsruhe'), (5260, 'https://ror.org/00ah4xn57', 'en', 1, 'https://ror.org/00ah4xn57 Capital Allergy and Respiratory Disease Center'), (5261, 'https://ror.org/00ahe2k65', 'no_lang_code', 1, 'https://ror.org/00ahe2k65 Adasa (Spain)'), (5262, 'https://ror.org/00akhwn95', 'en', 1, 'https://ror.org/00akhwn95 Queen Saovabha Memorial Institute'), (5263, 'https://ror.org/00akjja53', 'no_lang_code', 1, 'https://ror.org/00akjja53 Atlas Elektronik (Germany)'), (5264, 'https://ror.org/00akkff67', 'no_lang_code', 1, 'https://ror.org/00akkff67 Phcc (United States)'), (5265, 'https://ror.org/00amjd520', 'en', 1, 'https://ror.org/00amjd520 Saint Vincent College'), (5266, 'https://ror.org/00an43c80', 'no_lang_code', 1, 'https://ror.org/00an43c80 SonaCare Medical (United States)'), (5267, 'https://ror.org/00anm2x55', 'en', 1, 'https://ror.org/00anm2x55 Ministry of Justice'), (5268, 'https://ror.org/00anthv74', 'no_lang_code', 1, 'https://ror.org/00anthv74 P&P Optica (Canada)'), (5269, 'https://ror.org/00aqgm431', 'en', 1, 'https://ror.org/00aqgm431 Island Peer Review Organization'), (5270, 'https://ror.org/00aqm2347', 'en', 1, 'https://ror.org/00aqm2347 Florence–Darlington Technical College'), (5271, 'https://ror.org/00ar79186', 'no_lang_code', 1, 'https://ror.org/00ar79186 Performance Polymer Solutions (United States)'), (5272, 'https://ror.org/00av7p167', 'en', 1, 'https://ror.org/00av7p167 Center for Science in the Public Interest (United States)'), (5273, 'https://ror.org/00awfs868', 'no_lang_code', 1, 'https://ror.org/00awfs868 FFA Sciences (United States)'), (5274, 'https://ror.org/00awxvj03', 'en', 1, 'https://ror.org/00awxvj03 Wakayama Rosai Hospital 和歌山ろうさい病院'), (5275, 'https://ror.org/00ay43505', 'fr', 1, 'https://ror.org/00ay43505 Institut de Virologie'), (5276, 'https://ror.org/00b0jfb70', 'no_lang_code', 1, 'https://ror.org/00b0jfb70 BM-Science'), (5277, 'https://ror.org/00b0t9z66', 'en', 1, 'https://ror.org/00b0t9z66 Vision Eye Institute'), (5278, 'https://ror.org/00b51s809', 'no_lang_code', 1, 'https://ror.org/00b51s809 InnerSea Technology (United States)'), (5279, 'https://ror.org/00b5ztt43', 'en', 1, 'https://ror.org/00b5ztt43 Rancho Santiago Community College District'), (5280, 'https://ror.org/00b605v51', 'no_lang_code', 1, 'https://ror.org/00b605v51 Mandel Scientific (Canada)'), (5281, 'https://ror.org/00b970e83', 'en', 1, 'https://ror.org/00b970e83 Fond du Lac Tribal and Community College'), (5282, 'https://ror.org/00b9w6n61', 'en', 1, 'https://ror.org/00b9w6n61 St. Francis Hospital'), (5283, 'https://ror.org/00baryp08', 'en', 1, 'https://ror.org/00baryp08 Association for Symbolic Logic'), (5284, 'https://ror.org/00bbdze26', 'en', 1, 'https://ror.org/00bbdze26 Ospidéal Ginearálta Loch Garman Wexford General Hospital'), (5285, 'https://ror.org/00bbe8x87', 'no_lang_code', 1, 'https://ror.org/00bbe8x87 Stallergenes Greer (France)'), (5286, 'https://ror.org/00bbqy387', 'en', 1, 'https://ror.org/00bbqy387 American Academy of Dermatology'), (5287, 'https://ror.org/00bcqra17', 'no_lang_code', 1, 'https://ror.org/00bcqra17 Local Data Company (United Kingdom)'), (5288, 'https://ror.org/00bdvg512', 'no_lang_code', 1, 'https://ror.org/00bdvg512 Juvaris BioTherapeutics (United States)'), (5289, 'https://ror.org/00berct97', 'no_lang_code', 1, 'https://ror.org/00berct97 NTT (Japan) 日本電信電話株式会社'), (5290, 'https://ror.org/00bewwj71', 'no_lang_code', 1, 'https://ror.org/00bewwj71 Cooperative Resources International (United States)'), (5291, 'https://ror.org/00bfb4h45', 'no_lang_code', 1, 'https://ror.org/00bfb4h45 Endacea (United States)'), (5292, 'https://ror.org/00bh4sk41', 'no_lang_code', 1, 'https://ror.org/00bh4sk41 Endomedix (United States)'), (5293, 'https://ror.org/00bma2332', 'en', 1, 'https://ror.org/00bma2332 Royal Institute of British Architects'), (5294, 'https://ror.org/00bmwjh97', 'en', 1, 'https://ror.org/00bmwjh97 St. James Hospital and Health Centers'), (5295, 'https://ror.org/00bmxak18', 'en', 1, 'https://ror.org/00bmxak18 Fukuoka Institute of Technology 福岡工業大学'), (5296, 'https://ror.org/00bnaq407', 'en', 1, 'https://ror.org/00bnaq407 North Sydney Orthopaedic and Sports Medicine Centre'), (5297, 'https://ror.org/00bnthp71', 'fr', 1, 'https://ror.org/00bnthp71 Institut de Recherche pour le Développement'), (5298, 'https://ror.org/00bppv849', 'en', 1, 'https://ror.org/00bppv849 National Partnership for Environmental Technology Education'), (5299, 'https://ror.org/00bqy3h17', 'en', 1, 'https://ror.org/00bqy3h17 Merrimack College'), (5300, 'https://ror.org/00bvzmn76', 'no_lang_code', 1, 'https://ror.org/00bvzmn76 Blackrock Microsystems (United States)'), (5301, 'https://ror.org/00bw4xw30', 'en', 1, 'https://ror.org/00bw4xw30 Institute of Experimental Cardiology'), (5302, 'https://ror.org/00bxgws88', 'en', 1, 'https://ror.org/00bxgws88 Cascade AIDS Project'), (5303, 'https://ror.org/00by7mn52', 'no_lang_code', 1, 'https://ror.org/00by7mn52 Allocadia (Canada)'), (5304, 'https://ror.org/00by9f077', 'en', 1, 'https://ror.org/00by9f077 Food Research Institute 食品総合研究所'), (5305, 'https://ror.org/00bycf367', 'en', 1, 'https://ror.org/00bycf367 Botanical Society of America'), (5306, 'https://ror.org/00byczw08', 'en', 1, 'https://ror.org/00byczw08 Penrose Hospital'), (5307, 'https://ror.org/00bz2pj54', 'no_lang_code', 1, 'https://ror.org/00bz2pj54 21st Century Therapeutics (United States)'), (5308, 'https://ror.org/00bzsst90', 'en', 1, 'https://ror.org/00bzsst90 Institute for Advanced Studies in Basic Sciences مرکز تحصیلات تکمیلی در علوم پایه زنجان'), (5309, 'https://ror.org/00c211r48', 'no_lang_code', 1, 'https://ror.org/00c211r48 Boulder Language Technologies (United States)'), (5310, 'https://ror.org/00c489v88', 'en', 1, 'https://ror.org/00c489v88 Academy of Medical Sciences'), (5311, 'https://ror.org/00cb06v13', 'no_lang_code', 1, 'https://ror.org/00cb06v13 ABB (United States)'), (5312, 'https://ror.org/00cfm3753', 'no_lang_code', 1, 'https://ror.org/00cfm3753 ANI Pharmaceuticals (United States)'), (5313, 'https://ror.org/00chzyy83', 'no_lang_code', 1, 'https://ror.org/00chzyy83 Virscio (United States)'), (5314, 'https://ror.org/00cm8nm15', 'en', 1, 'https://ror.org/00cm8nm15 University of California, Irvine Medical Center'), (5315, 'https://ror.org/00cnpxz07', 'en', 1, 'https://ror.org/00cnpxz07 Connecticut Business and Industry Association'), (5316, 'https://ror.org/00cpb6264', 'it', 1, 'https://ror.org/00cpb6264 Istituto Neurologico Mediterraneo'), (5317, 'https://ror.org/00csvwd48', 'no_lang_code', 1, 'https://ror.org/00csvwd48 Capstone Therapeutics (United States)'), (5318, 'https://ror.org/00ctbs693', 'en', 1, 'https://ror.org/00ctbs693 Yaroslavl State Medical Academy Ярославский государственный медицинский университет'), (5319, 'https://ror.org/00ctdh943', 'es', 1, 'https://ror.org/00ctdh943 Instituto Nacional de Perinatología National Institute of Perinatología Isidro Espinosa de los Reyes'), (5320, 'https://ror.org/00cvaph79', 'en', 1, 'https://ror.org/00cvaph79 BioNB'), (5321, 'https://ror.org/00cwrns71', 'en', 1, 'https://ror.org/00cwrns71 Indian Space Research Organisation भारतीय अंतराळ संशोधन संस्था भारतीय अंतरिक्ष अनुसंधान संगठन भारतीय अन्तरिक्ष अनुसन्धान संगठन ভারতীয় মহাকাশ গবেষণা সংস্থা ਇਸਰੋ ઇસરો இந்திய விண்வெளி ஆய்வு மையம் భారతీయ అంతరిక్ష పరిశోధనా సంస్థ ಭಾರತೀಯ ಬಾಹ್ಯಾಕಾಶ ಸಂಶೋಧನೆ ಸಂಸ್ಥೆ ഇന്ത്യൻ സ്പേസ് റിസർച്ച് ഓർഗനൈസേഷൻ'), (5322, 'https://ror.org/00cwwgn12', 'no_lang_code', 1, 'https://ror.org/00cwwgn12 Recombinant Technologies (United States)'), (5323, 'https://ror.org/00cyfck94', 'no_lang_code', 1, 'https://ror.org/00cyfck94 Parsons Brinckerhoff'), (5324, 'https://ror.org/00d00px90', 'en', 1, 'https://ror.org/00d00px90 Langley Environmental Partners Society'), (5325, 'https://ror.org/00d0rvy84', 'no_lang_code', 1, 'https://ror.org/00d0rvy84 Yokohama Minami Kyosai Hospital 横浜南共済病院'), (5326, 'https://ror.org/00d2efr72', 'no_lang_code', 1, 'https://ror.org/00d2efr72 PLx Pharma (United States)'), (5327, 'https://ror.org/00d2y1254', 'en', 1, 'https://ror.org/00d2y1254 Misericordia University'), (5328, 'https://ror.org/00d3vm134', 'en', 1, 'https://ror.org/00d3vm134 Archaeology Southwest'), (5329, 'https://ror.org/00d53ja24', 'no_lang_code', 1, 'https://ror.org/00d53ja24 Aspen Aerogels (United States)'), (5330, 'https://ror.org/00d67eh84', 'en', 1, 'https://ror.org/00d67eh84 Central Laboratory for Radiological Protection Centralnego Laboratorium Ochrony Radiologicznej'), (5331, 'https://ror.org/00da6z433', 'no_lang_code', 1, 'https://ror.org/00da6z433 Haematologic Technologies (United States)'), (5332, 'https://ror.org/00dbcz291', 'en', 1, 'https://ror.org/00dbcz291 St. Vincent Charity Hospital'), (5333, 'https://ror.org/00dbnf369', 'en', 1, 'https://ror.org/00dbnf369 National Marine Mammal Foundation'), (5334, 'https://ror.org/00dcv1019', 'en', 1, 'https://ror.org/00dcv1019 Allen Institute for Brain Science'), (5335, 'https://ror.org/00ddb6b18', 'en', 1, 'https://ror.org/00ddb6b18 Refugee and Immigrant Center'), (5336, 'https://ror.org/00death42', 'en', 1, 'https://ror.org/00death42 Administrative Staff College of India'), (5337, 'https://ror.org/00dg4je56', 'no_lang_code', 1, 'https://ror.org/00dg4je56 Thermal-Lube (Canada)'), (5338, 'https://ror.org/00dh4zq96', 'no_lang_code', 1, 'https://ror.org/00dh4zq96 TRIA Bioscience (United States)'), (5339, 'https://ror.org/00dhe8f29', 'no_lang_code', 1, 'https://ror.org/00dhe8f29 Gooch & Housego (United Kingdom)'), (5340, 'https://ror.org/00dhmq281', 'en', 1, 'https://ror.org/00dhmq281 Foothill College'), (5341, 'https://ror.org/00dj48n36', 'en', 1, 'https://ror.org/00dj48n36 Colorado Judicial Branch'), (5342, 'https://ror.org/00djyb934', 'no_lang_code', 1, 'https://ror.org/00djyb934 Oxford Lasers (United Kingdom)'), (5343, 'https://ror.org/00dmrtm29', 'en', 1, 'https://ror.org/00dmrtm29 New York City Health and Hospitals Corporation'), (5344, 'https://ror.org/00dnb8a67', 'fr', 1, 'https://ror.org/00dnb8a67 Science pour tous'), (5345, 'https://ror.org/00dncgb07', 'en', 1, 'https://ror.org/00dncgb07 Notre Dame of Maryland University'), (5346, 'https://ror.org/00dpysh46', 'en', 1, 'https://ror.org/00dpysh46 Conseil national d''éthique en recherche chez l''humain National Council on Ethics in Human Research'), (5347, 'https://ror.org/00dqmaq38', 'it', 1, 'https://ror.org/00dqmaq38 Oasi Maria SS'), (5348, 'https://ror.org/00dqq0p30', 'en', 1, 'https://ror.org/00dqq0p30 Texas State Technical College Harlingen'), (5349, 'https://ror.org/00dr4nw61', 'en', 1, 'https://ror.org/00dr4nw61 BC Research (Canada)'), (5350, 'https://ror.org/00dsap877', 'en', 1, 'https://ror.org/00dsap877 Sustrans'), (5351, 'https://ror.org/00dv9e751', 'no_lang_code', 1, 'https://ror.org/00dv9e751 Amplimmune (United States)'), (5352, 'https://ror.org/00dxv3745', 'en', 1, 'https://ror.org/00dxv3745 Hernia Center'), (5353, 'https://ror.org/00dym4p25', 'no_lang_code', 1, 'https://ror.org/00dym4p25 Hsiri Therapeutics (United States)'), (5354, 'https://ror.org/00e2hg029', 'no_lang_code', 1, 'https://ror.org/00e2hg029 Sterling Research Group (United States)'), (5355, 'https://ror.org/00e30t131', 'no_lang_code', 1, 'https://ror.org/00e30t131 Rowan Williams Davies & Irwin (Canada)'), (5356, 'https://ror.org/00e476874', 'en', 1, 'https://ror.org/00e476874 Agile Mind'), (5357, 'https://ror.org/00e4xmg89', 'en', 1, 'https://ror.org/00e4xmg89 Hipple Cancer Research Center'), (5358, 'https://ror.org/00e60hf45', 'en', 1, 'https://ror.org/00e60hf45 Ospidéal Naomh Damhnait St. Davnet''s Hospital'), (5359, 'https://ror.org/00e6gd695', 'en', 1, 'https://ror.org/00e6gd695 Arapahoe House'), (5360, 'https://ror.org/00e812q49', 'no_lang_code', 1, 'https://ror.org/00e812q49 Springboard (Canada)'), (5361, 'https://ror.org/00e8ar137', 'da', 1, 'https://ror.org/00e8ar137 Vejle Hospital Vejle Sygehus'), (5362, 'https://ror.org/00e8qrd29', 'en', 1, 'https://ror.org/00e8qrd29 Center for Clinical Studies'), (5363, 'https://ror.org/00edt5124', 'it', 1, 'https://ror.org/00edt5124 Ospedale degli Infermi'), (5364, 'https://ror.org/00edzwq44', 'en', 1, 'https://ror.org/00edzwq44 Academy of Radiology Research'), (5365, 'https://ror.org/00efy1453', 'en', 1, 'https://ror.org/00efy1453 Chief Dull Knife College'), (5366, 'https://ror.org/00eg81h43', 'en', 1, 'https://ror.org/00eg81h43 Institute of Physiology and Pathology of Hearing'), (5367, 'https://ror.org/00ejq5880', 'no_lang_code', 1, 'https://ror.org/00ejq5880 BioMedomics (United States)'), (5368, 'https://ror.org/00eksk721', 'en', 1, 'https://ror.org/00eksk721 National Environmental Health Association'), (5369, 'https://ror.org/00ekxed29', 'no_lang_code', 1, 'https://ror.org/00ekxed29 Horizon Research (United States)'), (5370, 'https://ror.org/00em27a94', 'pt', 1, 'https://ror.org/00em27a94 Instituto de Infectologia Emílio Ribas'), (5371, 'https://ror.org/00epxwq78', 'en', 1, 'https://ror.org/00epxwq78 Hamilton Regional Laboratory Medicine Program'), (5372, 'https://ror.org/00eqjxv60', 'no_lang_code', 1, 'https://ror.org/00eqjxv60 Capital Consulting Corporation (United States)'), (5373, 'https://ror.org/00er70d66', 'en', 1, 'https://ror.org/00er70d66 Center for Complex Infectious Diseases'), (5374, 'https://ror.org/00erg1394', 'en', 1, 'https://ror.org/00erg1394 National Audit Office'), (5375, 'https://ror.org/00es7k954', 'en', 1, 'https://ror.org/00es7k954 Columbia College - South Carolina'), (5376, 'https://ror.org/00et2zw97', 'en', 1, 'https://ror.org/00et2zw97 Matsumoto Livestock Hygiene Service Center'), (5377, 'https://ror.org/00evjd729', 'en', 1, 'https://ror.org/00evjd729 Australian Red Cross Lifeblood'), (5378, 'https://ror.org/00ew1b528', 'no_lang_code', 1, 'https://ror.org/00ew1b528 MycoLogic (Canada)'), (5379, 'https://ror.org/00exr1241', 'en', 1, 'https://ror.org/00exr1241 Joint Center for Structural Genomics'), (5380, 'https://ror.org/00f1vw968', 'en', 1, 'https://ror.org/00f1vw968 KentuckyOne Health'), (5381, 'https://ror.org/00f419y92', 'en', 1, 'https://ror.org/00f419y92 St. Luke''s Cataract and Laser Institute'), (5382, 'https://ror.org/00f4akz96', 'no_lang_code', 1, 'https://ror.org/00f4akz96 NVE Corporation (United States)'), (5383, 'https://ror.org/00f54ay49', 'en', 1, 'https://ror.org/00f54ay49 Wakefield Hospital'), (5384, 'https://ror.org/00f5bva59', 'en', 1, 'https://ror.org/00f5bva59 Swedish Medical Center'), (5385, 'https://ror.org/00f8dwt44', 'en', 1, 'https://ror.org/00f8dwt44 Institute of Electrochemistry and Energy Systems Институт по електрохимия и енергийни системи'), (5386, 'https://ror.org/00fb35g87', 'en', 1, 'https://ror.org/00fb35g87 Third Affiliated Hospital of Guangzhou Medical University 广州医科大学附属第三医院'), (5387, 'https://ror.org/00fby7m68', 'no_lang_code', 1, 'https://ror.org/00fby7m68 Air Canada'), (5388, 'https://ror.org/00fcszb13', 'no_lang_code', 1, 'https://ror.org/00fcszb13 Pacific Biosciences (United States)'), (5389, 'https://ror.org/00fd3za45', 'no_lang_code', 1, 'https://ror.org/00fd3za45 Adif (Spain)'), (5390, 'https://ror.org/00fd7nh45', 'no_lang_code', 1, 'https://ror.org/00fd7nh45 Yecuris (United States)'), (5391, 'https://ror.org/00fh58138', 'fr', 1, 'https://ror.org/00fh58138 Institut National de la Transfusion Sanguine National Institute of Blood Transfusion'), (5392, 'https://ror.org/00fjz2j91', 'en', 1, 'https://ror.org/00fjz2j91 Christian Community Health Center'), (5393, 'https://ror.org/00fm8vh73', 'no_lang_code', 1, 'https://ror.org/00fm8vh73 GigaGen (United States)'), (5394, 'https://ror.org/00fnk0q46', 'en', 1, 'https://ror.org/00fnk0q46 Academy of Medicine'), (5395, 'https://ror.org/00fpn0e94', 'sr', 1, 'https://ror.org/00fpn0e94 Clinical Center of Vojvodina Klinički centar Vojvodine'), (5396, 'https://ror.org/00fq5cm18', 'en', 1, 'https://ror.org/00fq5cm18 National Institute on Drug Abuse'), (5397, 'https://ror.org/00fre7r52', 'en', 1, 'https://ror.org/00fre7r52 Community Health Awareness Group'), (5398, 'https://ror.org/00frfm169', 'no_lang_code', 1, 'https://ror.org/00frfm169 Woomera Therapeutics'), (5399, 'https://ror.org/00frst980', 'en', 1, 'https://ror.org/00frst980 University of British Columbia Hospital'), (5400, 'https://ror.org/00frzd868', 'en', 1, 'https://ror.org/00frzd868 St. Francis Hospital'), (5401, 'https://ror.org/00fs7vk14', 'en', 1, 'https://ror.org/00fs7vk14 Consorzio TRAIN TRAIN Consortium'), (5402, 'https://ror.org/00fsrkw38', 'es', 1, 'https://ror.org/00fsrkw38 Hospital Quirón Teknon'), (5403, 'https://ror.org/00ftam505', 'en', 1, 'https://ror.org/00ftam505 Newcastle City Council'), (5404, 'https://ror.org/00ftv8552', 'en', 1, 'https://ror.org/00ftv8552 Center for Research in Environmental Epidemiology Centro de Investigación en Epidemiología Ambiental'), (5405, 'https://ror.org/00fyk6p56', 'no_lang_code', 1, 'https://ror.org/00fyk6p56 Moberg Research (United States)'), (5406, 'https://ror.org/00fzfzc37', 'en', 1, 'https://ror.org/00fzfzc37 Manchester VA Medical Center'), (5407, 'https://ror.org/00g0avy67', 'no_lang_code', 1, 'https://ror.org/00g0avy67 WinProbe (United States)'), (5408, 'https://ror.org/00g1g7t14', 'en', 1, 'https://ror.org/00g1g7t14 PHS Commissioned Officers Foundation'), (5409, 'https://ror.org/00g2tkw06', 'no_lang_code', 1, 'https://ror.org/00g2tkw06 Ford Motor Company (United States)'), (5410, 'https://ror.org/00g2vje79', 'no_lang_code', 1, 'https://ror.org/00g2vje79 Cornerstone Systems Northwest (United States)'), (5411, 'https://ror.org/00g3gq507', 'no_lang_code', 1, 'https://ror.org/00g3gq507 Taiga Biotechnologies (United States)'), (5412, 'https://ror.org/00g3wz802', 'no_lang_code', 1, 'https://ror.org/00g3wz802 Front Range Scientific Computations'), (5413, 'https://ror.org/00g3zjf64', 'en', 1, 'https://ror.org/00g3zjf64 Texas Endosurgery Institute'), (5414, 'https://ror.org/00g4tw789', 'en', 1, 'https://ror.org/00g4tw789 Hughston Clinic'), (5415, 'https://ror.org/00g5b0g93', 'en', 1, 'https://ror.org/00g5b0g93 Zunyi Medical University 遵义医学院'), (5416, 'https://ror.org/00g6vqe09', 'no_lang_code', 1, 'https://ror.org/00g6vqe09 Asuragen (United States)'), (5417, 'https://ror.org/00g6ztp19', 'en', 1, 'https://ror.org/00g6ztp19 Calgary Laboratory Services'), (5418, 'https://ror.org/00g741v42', 'en', 1, 'https://ror.org/00g741v42 Gansu University of Traditional Chinese Medicine 甘肃中医学院'), (5419, 'https://ror.org/00g81mg52', 'no_lang_code', 1, 'https://ror.org/00g81mg52 Columbus Technologies and Services (United States)'), (5420, 'https://ror.org/00gb8td65', 'no_lang_code', 1, 'https://ror.org/00gb8td65 Y Touring Theatre Company'), (5421, 'https://ror.org/00gban551', 'en', 1, 'https://ror.org/00gban551 Biomedical Research Foundation of the Academy of Athens'), (5422, 'https://ror.org/00gbb9377', 'en', 1, 'https://ror.org/00gbb9377 National Center on Institutions and Alternatives'), (5423, 'https://ror.org/00geypp27', 'no_lang_code', 1, 'https://ror.org/00geypp27 Novartis (France)'), (5424, 'https://ror.org/00gf2nq54', 'no_lang_code', 1, 'https://ror.org/00gf2nq54 Nordic Life Science Pipeline (Canada)'), (5425, 'https://ror.org/00gft1871', 'no_lang_code', 1, 'https://ror.org/00gft1871 Therapyx (United States)'), (5426, 'https://ror.org/00gfv6v51', 'sk', 1, 'https://ror.org/00gfv6v51 Národný Onkologický Ústav'), (5427, 'https://ror.org/00gg4aq64', 'fr', 1, 'https://ror.org/00gg4aq64 Centre Hospitalier Frèderic-Henri Manhès'), (5428, 'https://ror.org/00gkheh82', 'it', 1, 'https://ror.org/00gkheh82 Ospedale regionale di Lugano'), (5429, 'https://ror.org/00gktjq65', 'en', 1, 'https://ror.org/00gktjq65 National Institute of Cardiovascular Diseases'), (5430, 'https://ror.org/00gmz2d02', 'en', 1, 'https://ror.org/00gmz2d02 Institute of Chemical Biology and Fundamental Medicine Федеральное государственное бюджетное учреждение науки Институт химической биологии и фундаментальной медицины Сибирского отделения Российской академии наук'), (5431, 'https://ror.org/00gpcjc06', 'no_lang_code', 1, 'https://ror.org/00gpcjc06 Malesci (Italy)'), (5432, 'https://ror.org/00gqjdp23', 'en', 1, 'https://ror.org/00gqjdp23 Oita Red Cross Hospital 大分赤十字病院'), (5433, 'https://ror.org/00gs35582', 'en', 1, 'https://ror.org/00gs35582 Valencian Infertility Institute'), (5434, 'https://ror.org/00gwpva83', 'en', 1, 'https://ror.org/00gwpva83 Progress Educational Trust'), (5435, 'https://ror.org/00gygcg63', 'en', 1, 'https://ror.org/00gygcg63 East Bay Community Recovery Project'), (5436, 'https://ror.org/00gzhq402', 'no_lang_code', 1, 'https://ror.org/00gzhq402 Fugro (United States)'), (5437, 'https://ror.org/00h0zmy35', 'en', 1, 'https://ror.org/00h0zmy35 Bienestar'), (5438, 'https://ror.org/00h1gfz86', 'nl', 1, 'https://ror.org/00h1gfz86 AZ Klina'), (5439, 'https://ror.org/00h2tq173', 'no_lang_code', 1, 'https://ror.org/00h2tq173 Swami Vivekananda Yoga Anusandhana Samsthana'), (5440, 'https://ror.org/00h74hd82', 'en', 1, 'https://ror.org/00h74hd82 Denver Center for the Performing Arts'), (5441, 'https://ror.org/00h7p4v21', 'en', 1, 'https://ror.org/00h7p4v21 Sri Jayadeva Institute of Cardiovascular Sciences and Research'), (5442, 'https://ror.org/00h8z3z59', 'en', 1, 'https://ror.org/00h8z3z59 Hispanic Association of Colleges and Universities'), (5443, 'https://ror.org/00h92yy88', 'no_lang_code', 1, 'https://ror.org/00h92yy88 Arrayomics (United States)'), (5444, 'https://ror.org/00hcz6468', 'en', 1, 'https://ror.org/00hcz6468 Toyota Memorial Hospital トヨタ記念病院'), (5445, 'https://ror.org/00hezqs33', 'no_lang_code', 1, 'https://ror.org/00hezqs33 Film and Video Umbrella (United Kingdom)'), (5446, 'https://ror.org/00hf0cm69', 'no_lang_code', 1, 'https://ror.org/00hf0cm69 Adherent Technologies (United States)'), (5447, 'https://ror.org/00hh31m68', 'no_lang_code', 1, 'https://ror.org/00hh31m68 Advanced Mechanical Technology (United States)'), (5448, 'https://ror.org/00hm77b03', 'en', 1, 'https://ror.org/00hm77b03 Community College of Philadelphia'), (5449, 'https://ror.org/00hnd8b56', 'no_lang_code', 1, 'https://ror.org/00hnd8b56 Applied Research Corporation (United States)'), (5450, 'https://ror.org/00hntwx50', 'en', 1, 'https://ror.org/00hntwx50 Seattle Central College'), (5451, 'https://ror.org/00hp40m78', 'no_lang_code', 1, 'https://ror.org/00hp40m78 AAC (United States)'), (5452, 'https://ror.org/00hq79z10', 'no_lang_code', 1, 'https://ror.org/00hq79z10 Tianjin Nankai Hospital 天津市南开医院'), (5453, 'https://ror.org/00hq8sy61', 'en', 1, 'https://ror.org/00hq8sy61 National Institute for Children’s Health Quality'), (5454, 'https://ror.org/00hr54p22', 'en', 1, 'https://ror.org/00hr54p22 Osmania Medical College عثمانیہ میڈیکل کالج ఉస్మానియా మెడికల్ కాలేజీ'), (5455, 'https://ror.org/00hr6kp69', 'en', 1, 'https://ror.org/00hr6kp69 Emory Eye Center'), (5456, 'https://ror.org/00hr74637', 'no_lang_code', 1, 'https://ror.org/00hr74637 Science Approach (United States)'), (5457, 'https://ror.org/00hssfx27', 'no_lang_code', 1, 'https://ror.org/00hssfx27 Biothermal (United States)'), (5458, 'https://ror.org/00ht01r58', 'no_lang_code', 1, 'https://ror.org/00ht01r58 Wave 80 Biosciences (United States)'), (5459, 'https://ror.org/00ht2ab73', 'fr', 1, 'https://ror.org/00ht2ab73 Association Nationale de la Recherche et de la Technologie'), (5460, 'https://ror.org/00hveka38', 'en', 1, 'https://ror.org/00hveka38 Paine College'), (5461, 'https://ror.org/00hx3bk50', 'no_lang_code', 1, 'https://ror.org/00hx3bk50 Icogenex (United States)'), (5462, 'https://ror.org/00hy18g46', 'no_lang_code', 1, 'https://ror.org/00hy18g46 DEKK-TEC (United States)'), (5463, 'https://ror.org/00hyyhz65', 'no_lang_code', 1, 'https://ror.org/00hyyhz65 Source Signal Imaging'), (5464, 'https://ror.org/00j0kxp54', 'en', 1, 'https://ror.org/00j0kxp54 Russian Academy of Natural Sciences'), (5465, 'https://ror.org/00j10x245', 'no_lang_code', 1, 'https://ror.org/00j10x245 Plastic Logic (United Kingdom)'), (5466, 'https://ror.org/00j10yp83', 'en', 1, 'https://ror.org/00j10yp83 Rural Alaska Community Action Program'), (5467, 'https://ror.org/00j161312', 'en', 1, 'https://ror.org/00j161312 Guy''s and St Thomas'' NHS Foundation Trust'), (5468, 'https://ror.org/00j1c3r46', 'no_lang_code', 1, 'https://ror.org/00j1c3r46 Optym (United States)'), (5469, 'https://ror.org/00j1e7h38', 'en', 1, 'https://ror.org/00j1e7h38 W. Alton Jones Cell Science Center'), (5470, 'https://ror.org/00j1y9t40', 'fr', 1, 'https://ror.org/00j1y9t40 Laboratoire d''Enzymologie et Biochimie Structurales'), (5471, 'https://ror.org/00j2t0g84', 'no_lang_code', 1, 'https://ror.org/00j2t0g84 TMD Technologies (United Kingdom)'), (5472, 'https://ror.org/00j349n10', 'no_lang_code', 1, 'https://ror.org/00j349n10 GlySens (United States)'), (5473, 'https://ror.org/00j49rw24', 'en', 1, 'https://ror.org/00j49rw24 LRS Institute of Tuberculosis and Respiratory Diseases'), (5474, 'https://ror.org/00j631389', 'en', 1, 'https://ror.org/00j631389 New World Laboratories'), (5475, 'https://ror.org/00j6a4d92', 'en', 1, 'https://ror.org/00j6a4d92 Conseil Européen des Fédérations de l''Industrie Chimique European Chemical Industry Council'), (5476, 'https://ror.org/00j707644', 'it', 1, 'https://ror.org/00j707644 Azienda Ospedaliera San Camillo-Forlanini, Ospedale Carlo Forlanini'), (5477, 'https://ror.org/00j83wy46', 'no_lang_code', 1, 'https://ror.org/00j83wy46 Monsanto (United States)'), (5478, 'https://ror.org/00j998b38', 'no_lang_code', 1, 'https://ror.org/00j998b38 GT Advanced Technologies (United States)'), (5479, 'https://ror.org/00j99af28', 'no_lang_code', 1, 'https://ror.org/00j99af28 Metabolic Technologies (United States)'), (5480, 'https://ror.org/00j9wfd65', 'no_lang_code', 1, 'https://ror.org/00j9wfd65 KGL Skin Study Center'), (5481, 'https://ror.org/00ja2ye75', 'en', 1, 'https://ror.org/00ja2ye75 Salisbury NHS Foundation Trust'), (5482, 'https://ror.org/00jb1kj74', 'no_lang_code', 1, 'https://ror.org/00jb1kj74 Sensonics International (United States)'), (5483, 'https://ror.org/00jbqdn84', 'en', 1, 'https://ror.org/00jbqdn84 Oglala Sioux Tribal Council'), (5484, 'https://ror.org/00jc2kw33', 'en', 1, 'https://ror.org/00jc2kw33 National Center for Environmental Health'), (5485, 'https://ror.org/00jc42j13', 'en', 1, 'https://ror.org/00jc42j13 Mississippi Sports Medicine and Orthopaedic Center'), (5486, 'https://ror.org/00jg79r23', 'no_lang_code', 1, 'https://ror.org/00jg79r23 Information Ventures (United States)'), (5487, 'https://ror.org/00jh0pg84', 'en', 1, 'https://ror.org/00jh0pg84 Algebra Project'), (5488, 'https://ror.org/00jjs7680', 'en', 1, 'https://ror.org/00jjs7680 New Mexico Clinical Research & Osteoporosis Center'), (5489, 'https://ror.org/00jm9xh53', 'no_lang_code', 1, 'https://ror.org/00jm9xh53 Otsu Municipal Hospital 大津市民病院'), (5490, 'https://ror.org/00jse8x38', 'en', 1, 'https://ror.org/00jse8x38 National Quality Forum'), (5491, 'https://ror.org/00jshg714', 'de', 1, 'https://ror.org/00jshg714 Klinikum Aschaffenburg'), (5492, 'https://ror.org/00jtgnb29', 'en', 1, 'https://ror.org/00jtgnb29 American Board of Internal Medicine'), (5493, 'https://ror.org/00jtwsb29', 'en', 1, 'https://ror.org/00jtwsb29 Suburban Hospital'), (5494, 'https://ror.org/00jvgqq49', 'no_lang_code', 1, 'https://ror.org/00jvgqq49 Flexion Therapeutics (United States)'), (5495, 'https://ror.org/00jx6qy10', 'en', 1, 'https://ror.org/00jx6qy10 Maulana Azad Institute of Dental Sciences'), (5496, 'https://ror.org/00jz53350', 'no_lang_code', 1, 'https://ror.org/00jz53350 Centurion Biofuels (Canada)'), (5497, 'https://ror.org/00k0t0t25', 'en', 1, 'https://ror.org/00k0t0t25 BC Centre for Aquatic Health Sciences'), (5498, 'https://ror.org/00k0w7368', 'en', 1, 'https://ror.org/00k0w7368 Cooper Clinic'), (5499, 'https://ror.org/00k1mwv09', 'en', 1, 'https://ror.org/00k1mwv09 United States Congress'), (5500, 'https://ror.org/00k20np13', 'en', 1, 'https://ror.org/00k20np13 Austin Diagnostic Clinic'), (5501, 'https://ror.org/00k4ab982', 'en', 1, 'https://ror.org/00k4ab982 Dr. Bhim Rao Ambedkar University'), (5502, 'https://ror.org/00k59n723', 'en', 1, 'https://ror.org/00k59n723 South Dakota Academy of Science'), (5503, 'https://ror.org/00k5k8k03', 'no_lang_code', 1, 'https://ror.org/00k5k8k03 Tianjin Tianhe Hospital 天津市天和医院'), (5504, 'https://ror.org/00k6r3f30', 'pt', 1, 'https://ror.org/00k6r3f30 Centro Hospitalar de Lisboa Central'), (5505, 'https://ror.org/00k7h5c65', 'es', 1, 'https://ror.org/00k7h5c65 Instituto Nacional de Investigaciones Nucleares'), (5506, 'https://ror.org/00k7znw93', 'no_lang_code', 1, 'https://ror.org/00k7znw93 5T Torino (Italy)'), (5507, 'https://ror.org/00k8s2y27', 'en', 1, 'https://ror.org/00k8s2y27 Huntingdon College'), (5508, 'https://ror.org/00kar4g50', 'fr', 1, 'https://ror.org/00kar4g50 Agence de Médecine Préventive'), (5509, 'https://ror.org/00kb4qb80', 'en', 1, 'https://ror.org/00kb4qb80 Ogori Daiichi General Hospital 小郡第一総合病院'), (5510, 'https://ror.org/00ke7zh37', 'en', 1, 'https://ror.org/00ke7zh37 American Federation of Mineralogical Societies'), (5511, 'https://ror.org/00kftxm09', 'en', 1, 'https://ror.org/00kftxm09 Boreskov Institute of Catalysis, Institute of Catalysis Федеральное государственное бюджетное учреждение науки Институт катализа им. Г.К. Борескова Сибирского отделения Российской академии наук'), (5512, 'https://ror.org/00kh6pc76', 'it', 1, 'https://ror.org/00kh6pc76 Consorzio Venezia Ricerche'), (5513, 'https://ror.org/00kjr3917', 'en', 1, 'https://ror.org/00kjr3917 Ideon Science Park'), (5514, 'https://ror.org/00kkwkq76', 'no_lang_code', 1, 'https://ror.org/00kkwkq76 Pfizer (Sweden)'); INSERT INTO `rors` VALUES (5515, 'https://ror.org/00kn43d12', 'en', 1, 'https://ror.org/00kn43d12 National Centre for Research'), (5516, 'https://ror.org/00kpnax84', 'no_lang_code', 1, 'https://ror.org/00kpnax84 Heska (United States)'), (5517, 'https://ror.org/00kq7a553', 'en', 1, 'https://ror.org/00kq7a553 Finlay Institute'), (5518, 'https://ror.org/00ks5vt51', 'no_lang_code', 1, 'https://ror.org/00ks5vt51 ABB (Switzerland)'), (5519, 'https://ror.org/00ktagp72', 'no_lang_code', 1, 'https://ror.org/00ktagp72 Seralogix (United States)'), (5520, 'https://ror.org/00kv21794', 'en', 1, 'https://ror.org/00kv21794 Weil Institute of Critical Care Medicine'), (5521, 'https://ror.org/00kv87w35', 'it', 1, 'https://ror.org/00kv87w35 Istituto Nazionale per le Malattie Infettive Lazzaro Spallanzani'), (5522, 'https://ror.org/00kv9mr92', 'no_lang_code', 1, 'https://ror.org/00kv9mr92 Tri Y Environmental Research Institute (Canada)'), (5523, 'https://ror.org/00kvx4h58', 'en', 1, 'https://ror.org/00kvx4h58 Council on Social Work Education'), (5524, 'https://ror.org/00kx3fw88', 'es', 1, 'https://ror.org/00kx3fw88 Instituto Valenciano de Investigaciones Agrarias'), (5525, 'https://ror.org/00ky71f04', 'en', 1, 'https://ror.org/00ky71f04 Clinical Orthopaedics and Related Research'), (5526, 'https://ror.org/00kyj7k59', 'en', 1, 'https://ror.org/00kyj7k59 Fondation de recherches sur les blessures de la route Traffic Injury Research Foundation'), (5527, 'https://ror.org/00kz7vp63', 'en', 1, 'https://ror.org/00kz7vp63 Cincinnati Museum Center'), (5528, 'https://ror.org/00kzzgw26', 'en', 1, 'https://ror.org/00kzzgw26 Kennedy Center'), (5529, 'https://ror.org/00m129932', 'en', 1, 'https://ror.org/00m129932 Center for Research and Technology Thessaly'), (5530, 'https://ror.org/00m2wsh37', 'no_lang_code', 1, 'https://ror.org/00m2wsh37 PricewaterhouseCoopers (Canada)'), (5531, 'https://ror.org/00m4h6p50', 'en', 1, 'https://ror.org/00m4h6p50 Mental Health Center of Denver'), (5532, 'https://ror.org/00m79dm66', 'en', 1, 'https://ror.org/00m79dm66 Iona College'), (5533, 'https://ror.org/00m7zwx79', 'en', 1, 'https://ror.org/00m7zwx79 Trinity Mother Frances Hospitals and Clinics'), (5534, 'https://ror.org/00m860944', 'en', 1, 'https://ror.org/00m860944 St. Mary''s Hospital'), (5535, 'https://ror.org/00mamdf13', 'en', 1, 'https://ror.org/00mamdf13 Society for Advancement of Chicanos and Native Americans in Science'), (5536, 'https://ror.org/00mgp8v69', 'en', 1, 'https://ror.org/00mgp8v69 Carter Center'), (5537, 'https://ror.org/00mhxn926', 'en', 1, 'https://ror.org/00mhxn926 Comisión para la Seguridad de los Productos de Consumo de los Estados Unidos United States Consumer Product Safety Commission'), (5538, 'https://ror.org/00mjs6x71', 'no_lang_code', 1, 'https://ror.org/00mjs6x71 Advanced Technology and Research Corporation (United States)'), (5539, 'https://ror.org/00mktab21', 'no_lang_code', 1, 'https://ror.org/00mktab21 Virtalis (United Kingdom)'), (5540, 'https://ror.org/00mmdnd52', 'en', 1, 'https://ror.org/00mmdnd52 Applied Computer Security Associates'), (5541, 'https://ror.org/00mnwwq78', 'en', 1, 'https://ror.org/00mnwwq78 Wheelock College'), (5542, 'https://ror.org/00mrcjr06', 'en', 1, 'https://ror.org/00mrcjr06 St. Luke''s Hospital'), (5543, 'https://ror.org/00msb1w96', 'en', 1, 'https://ror.org/00msb1w96 St. Vincent''s Hospital 가톨릭대학교 성빈센트병원'), (5544, 'https://ror.org/00msez306', 'no_lang_code', 1, 'https://ror.org/00msez306 Superconductor Technologies (United States)'), (5545, 'https://ror.org/00mv9dj85', 'en', 1, 'https://ror.org/00mv9dj85 American Academy of Neurology'), (5546, 'https://ror.org/00mvwb842', 'en', 1, 'https://ror.org/00mvwb842 Neuropsychiatric Research Institute'), (5547, 'https://ror.org/00mwwa992', 'en', 1, 'https://ror.org/00mwwa992 Warde Medical Laboratory'), (5548, 'https://ror.org/00mz09160', 'en', 1, 'https://ror.org/00mz09160 Itasca Community College'), (5549, 'https://ror.org/00mzdcr22', 'no_lang_code', 1, 'https://ror.org/00mzdcr22 Giner (United States)'), (5550, 'https://ror.org/00n158h85', 'en', 1, 'https://ror.org/00n158h85 American Aging Association'), (5551, 'https://ror.org/00n208030', 'en', 1, 'https://ror.org/00n208030 St Mary''s University College'), (5552, 'https://ror.org/00n3egs77', 'en', 1, 'https://ror.org/00n3egs77 Takamatsu Red Cross Hospital 高松赤十字病院'), (5553, 'https://ror.org/00n5vrh51', 'no_lang_code', 1, 'https://ror.org/00n5vrh51 Tioma Therapeutics (United States)'), (5554, 'https://ror.org/00n6jcj93', 'it', 1, 'https://ror.org/00n6jcj93 Centro di Riferimento Oncologico della Basilicata'), (5555, 'https://ror.org/00n6v1c97', 'no_lang_code', 1, 'https://ror.org/00n6v1c97 Bayer (Belgium)'), (5556, 'https://ror.org/00n79r507', 'no_lang_code', 1, 'https://ror.org/00n79r507 Ambulatory Monitoring (United States)'), (5557, 'https://ror.org/00n83m850', 'no_lang_code', 1, 'https://ror.org/00n83m850 EcoSynthetix (Canada)'), (5558, 'https://ror.org/00n8qbq54', 'no_lang_code', 1, 'https://ror.org/00n8qbq54 Meadowlark Optics (United States)'), (5559, 'https://ror.org/00nahqd12', 'no_lang_code', 1, 'https://ror.org/00nahqd12 Continental (France)'), (5560, 'https://ror.org/00nat9r59', 'no_lang_code', 1, 'https://ror.org/00nat9r59 Novozymes (United Kingdom)'), (5561, 'https://ror.org/00nb5xj61', 'en', 1, 'https://ror.org/00nb5xj61 St. Andrews University'), (5562, 'https://ror.org/00nb6mq69', 'en', 1, 'https://ror.org/00nb6mq69 Chulabhorn Research Institute สถาบันวิจัยจุฬาภรณ์'), (5563, 'https://ror.org/00nbsvd35', 'no_lang_code', 1, 'https://ror.org/00nbsvd35 Vida Health Communications (United States)'), (5564, 'https://ror.org/00nc89j94', 'en', 1, 'https://ror.org/00nc89j94 Australian Council of Learned Academies'), (5565, 'https://ror.org/00ncer064', 'en', 1, 'https://ror.org/00ncer064 Women Medical College'), (5566, 'https://ror.org/00ncfk576', 'en', 1, 'https://ror.org/00ncfk576 Stockholm South General Hospital'), (5567, 'https://ror.org/00new7409', 'en', 1, 'https://ror.org/00new7409 New York Structural Biology Center'), (5568, 'https://ror.org/00nf8fy32', 'no_lang_code', 1, 'https://ror.org/00nf8fy32 Yamagata City Hospital Saiseikan 山形市立病院済生館'), (5569, 'https://ror.org/00nfck739', 'no_lang_code', 1, 'https://ror.org/00nfck739 Thermo Fisher Scientific (Sweden)'), (5570, 'https://ror.org/00nh64737', 'no_lang_code', 1, 'https://ror.org/00nh64737 PCAS (Canada)'), (5571, 'https://ror.org/00nhpk003', 'en', 1, 'https://ror.org/00nhpk003 Mount Auburn Hospital'), (5572, 'https://ror.org/00nkvag20', 'en', 1, 'https://ror.org/00nkvag20 Discovery Place'), (5573, 'https://ror.org/00nm4jw86', 'en', 1, 'https://ror.org/00nm4jw86 Benjamin Rose Institute on Aging'), (5574, 'https://ror.org/00nnh8h94', 'en', 1, 'https://ror.org/00nnh8h94 Red Cross Hospital'), (5575, 'https://ror.org/00nnyvd56', 'en', 1, 'https://ror.org/00nnyvd56 National Research Institute of Chinese Medicine 國立中國醫藥研究所'), (5576, 'https://ror.org/00np1gf38', 'en', 1, 'https://ror.org/00np1gf38 Philadelphia Fight'), (5577, 'https://ror.org/00nqqvk19', 'en', 1, 'https://ror.org/00nqqvk19 COMSATS University Islamabad کومسٹس انسٹیٹیوٹ آف انفارمیشن ٹیکنالوجی'), (5578, 'https://ror.org/00ns8qw04', 'en', 1, 'https://ror.org/00ns8qw04 Pushpawati Singhania Research Institute'), (5579, 'https://ror.org/00nsrak45', 'no_lang_code', 1, 'https://ror.org/00nsrak45 Edge Enterprises (United States)'), (5580, 'https://ror.org/00ntawd75', 'no_lang_code', 1, 'https://ror.org/00ntawd75 Aeiforia (Italy)'), (5581, 'https://ror.org/00nv9r617', 'en', 1, 'https://ror.org/00nv9r617 College of Saint Rose'), (5582, 'https://ror.org/00nvmqp29', 'no_lang_code', 1, 'https://ror.org/00nvmqp29 PlastiPure (United States)'), (5583, 'https://ror.org/00nvy8497', 'en', 1, 'https://ror.org/00nvy8497 Australia and New Zealand Dialysis and Transplant Registry'), (5584, 'https://ror.org/00nxxee52', 'no_lang_code', 1, 'https://ror.org/00nxxee52 HyperMed (United States)'), (5585, 'https://ror.org/00ny8jb29', 'en', 1, 'https://ror.org/00ny8jb29 Office of the Medical Examiner of Cook County'), (5586, 'https://ror.org/00p0qk069', 'en', 1, 'https://ror.org/00p0qk069 Center of Technology and Engineering for Nuclear Projects'), (5587, 'https://ror.org/00p18zw56', 'en', 1, 'https://ror.org/00p18zw56 Alder Hey Children''s NHS Foundation Trust'), (5588, 'https://ror.org/00p2bvc56', 'no_lang_code', 1, 'https://ror.org/00p2bvc56 Amphora NDT (United Kingdom)'), (5589, 'https://ror.org/00p2bx870', 'en', 1, 'https://ror.org/00p2bx870 Environment Agency Abu Dhabi هيئة البيئة'), (5590, 'https://ror.org/00p4dsm08', 'en', 1, 'https://ror.org/00p4dsm08 Virus Unit'), (5591, 'https://ror.org/00p511b69', 'en', 1, 'https://ror.org/00p511b69 Education Connection'), (5592, 'https://ror.org/00p7hvr94', 'no_lang_code', 1, 'https://ror.org/00p7hvr94 Agriculture Environmental Renewal Canada (Canada)'), (5593, 'https://ror.org/00p7krt52', 'it', 1, 'https://ror.org/00p7krt52 Ospedale Civile di Giaveno'), (5594, 'https://ror.org/00p8tz706', 'en', 1, 'https://ror.org/00p8tz706 Desert Botanical Garden'), (5595, 'https://ror.org/00p9rsf63', 'no_lang_code', 1, 'https://ror.org/00p9rsf63 Saaten Union (United Kingdom)'), (5596, 'https://ror.org/00pbdx741', 'en', 1, 'https://ror.org/00pbdx741 Cape Shoulder Institute'), (5597, 'https://ror.org/00pbjy126', 'no_lang_code', 1, 'https://ror.org/00pbjy126 EDJ Associates'), (5598, 'https://ror.org/00pfggx80', 'no_lang_code', 1, 'https://ror.org/00pfggx80 Sainsbury''s (United Kingdom)'), (5599, 'https://ror.org/00pft3n23', 'en', 1, 'https://ror.org/00pft3n23 City of Scientific Research and Technological Applications'), (5600, 'https://ror.org/00pfvfk73', 'en', 1, 'https://ror.org/00pfvfk73 Delaware Technical Community College'), (5601, 'https://ror.org/00ph3nz62', 'en', 1, 'https://ror.org/00ph3nz62 Eurotransplant'), (5602, 'https://ror.org/00phd3t88', 'en', 1, 'https://ror.org/00phd3t88 Northwest Clinical Research Center'), (5603, 'https://ror.org/00pke8311', 'en', 1, 'https://ror.org/00pke8311 Southern Arizona AIDS Foundation'), (5604, 'https://ror.org/00pm9hx30', 'pt', 1, 'https://ror.org/00pm9hx30 Faculdade de Medicina de Marília Faculty of Medicine of Marília'), (5605, 'https://ror.org/00pmfef67', 'en', 1, 'https://ror.org/00pmfef67 Camden County College'), (5606, 'https://ror.org/00pmncr36', 'en', 1, 'https://ror.org/00pmncr36 Ohio Dominican University'), (5607, 'https://ror.org/00pmt4r91', 'en', 1, 'https://ror.org/00pmt4r91 American Educational Research Association'), (5608, 'https://ror.org/00ppb2x90', 'en', 1, 'https://ror.org/00ppb2x90 Concordia College - Minnesota'), (5609, 'https://ror.org/00ppq4k21', 'en', 1, 'https://ror.org/00ppq4k21 Society of Toxicology'), (5610, 'https://ror.org/00pq3bb48', 'no_lang_code', 1, 'https://ror.org/00pq3bb48 Grove Instruments (United States)'), (5611, 'https://ror.org/00pq96s96', 'en', 1, 'https://ror.org/00pq96s96 UMass Memorial Health Care'), (5612, 'https://ror.org/00psab413', 'no_lang_code', 1, 'https://ror.org/00psab413 Eli Lilly (United Kingdom)'), (5613, 'https://ror.org/00pvmkr98', 'en', 1, 'https://ror.org/00pvmkr98 Cornea Research Foundation of America'), (5614, 'https://ror.org/00pwgnh47', 'en', 1, 'https://ror.org/00pwgnh47 Max Planck Institute of Colloids and Interfaces Max-Planck-Institut für Kolloid- und Grenzflächenforschung'), (5615, 'https://ror.org/00pwjth19', 'en', 1, 'https://ror.org/00pwjth19 Yukon Kuskokwim Health Corporation'), (5616, 'https://ror.org/00q0dz713', 'no_lang_code', 1, 'https://ror.org/00q0dz713 TeraView (United Kingdom)'), (5617, 'https://ror.org/00q0yh079', 'pt', 1, 'https://ror.org/00q0yh079 Institute of Radiation Protection and Dosimetry Instituto de Radioproteção e Dosimetria'), (5618, 'https://ror.org/00q1c3610', 'en', 1, 'https://ror.org/00q1c3610 Abisko Scientific Research Station'), (5619, 'https://ror.org/00q2xhk98', 'no_lang_code', 1, 'https://ror.org/00q2xhk98 Murty Pharmaceuticals (United States)'), (5620, 'https://ror.org/00q2yft10', 'no_lang_code', 1, 'https://ror.org/00q2yft10 Leap of Faith Technologies (United States)'), (5621, 'https://ror.org/00q3rb237', 'no_lang_code', 1, 'https://ror.org/00q3rb237 Larus Technologies (Canada)'), (5622, 'https://ror.org/00q545m27', 'no_lang_code', 1, 'https://ror.org/00q545m27 Campden BRI (United Kingdom)'), (5623, 'https://ror.org/00q5a4y91', 'no_lang_code', 1, 'https://ror.org/00q5a4y91 Innovative Targeting Solutions (Canada)'), (5624, 'https://ror.org/00q62jx03', 'no_lang_code', 1, 'https://ror.org/00q62jx03 23andMe (United States)'), (5625, 'https://ror.org/00q67qp92', 'es', 1, 'https://ror.org/00q67qp92 Fundación Cardiovascular de Colombia'), (5626, 'https://ror.org/00q6hxz03', 'no_lang_code', 1, 'https://ror.org/00q6hxz03 AST Products (United States)'), (5627, 'https://ror.org/00q72x252', 'en', 1, 'https://ror.org/00q72x252 Committee on Climate Change'), (5628, 'https://ror.org/00q873a22', 'en', 1, 'https://ror.org/00q873a22 County of Mendocino'), (5629, 'https://ror.org/00q9afj63', 'no_lang_code', 1, 'https://ror.org/00q9afj63 ARTSCO (United States)'), (5630, 'https://ror.org/00q9fjw02', 'no_lang_code', 1, 'https://ror.org/00q9fjw02 ECI Biotech (United States)'), (5631, 'https://ror.org/00qcr4910', 'no_lang_code', 1, 'https://ror.org/00qcr4910 Atkins (United Kingdom)'), (5632, 'https://ror.org/00qcsrr17', 'en', 1, 'https://ror.org/00qcsrr17 Wilhelminen Hospital Wilhelminenspital'), (5633, 'https://ror.org/00qd6sx31', 'no_lang_code', 1, 'https://ror.org/00qd6sx31 Orphagen Pharmaceuticals (United States)'), (5634, 'https://ror.org/00qd89360', 'no_lang_code', 1, 'https://ror.org/00qd89360 PicoCal (United States)'), (5635, 'https://ror.org/00qed5764', 'en', 1, 'https://ror.org/00qed5764 Plant Biotechnology Institute'), (5636, 'https://ror.org/00qeks103', 'en', 1, 'https://ror.org/00qeks103 Chris O’Brien Lifehouse'), (5637, 'https://ror.org/00qfg4234', 'no_lang_code', 1, 'https://ror.org/00qfg4234 Vcom3D (United States)'), (5638, 'https://ror.org/00qfnf017', 'es', 1, 'https://ror.org/00qfnf017 Colegio de Postgraduados'), (5639, 'https://ror.org/00qfz3b98', 'no_lang_code', 1, 'https://ror.org/00qfz3b98 Elsoms (United Kingdom)'), (5640, 'https://ror.org/00qjbvq93', 'no_lang_code', 1, 'https://ror.org/00qjbvq93 Actelion (United States)'), (5641, 'https://ror.org/00qnxjg67', 'en', 1, 'https://ror.org/00qnxjg67 East Midlands Development Agency'), (5642, 'https://ror.org/00qp2dq07', 'nl', 1, 'https://ror.org/00qp2dq07 Sticares InterACT'), (5643, 'https://ror.org/00qprmt30', 'no_lang_code', 1, 'https://ror.org/00qprmt30 Atactic Technologies (United States)'), (5644, 'https://ror.org/00qq2kd97', 'no_lang_code', 1, 'https://ror.org/00qq2kd97 Mikro Systems (United States)'), (5645, 'https://ror.org/00qr60202', 'en', 1, 'https://ror.org/00qr60202 New England Aquarium'), (5646, 'https://ror.org/00qs2ka20', 'en', 1, 'https://ror.org/00qs2ka20 East Los Angeles College'), (5647, 'https://ror.org/00qsgpr41', 'no_lang_code', 1, 'https://ror.org/00qsgpr41 ElectroChem (United States)'), (5648, 'https://ror.org/00qszmz13', 'no_lang_code', 1, 'https://ror.org/00qszmz13 Ion Beam Applications (United States)'), (5649, 'https://ror.org/00qxhe741', 'no_lang_code', 1, 'https://ror.org/00qxhe741 Techshot (United States)'), (5650, 'https://ror.org/00qxqw753', 'en', 1, 'https://ror.org/00qxqw753 San Mateo County Community College District'), (5651, 'https://ror.org/00qytmr47', 'no_lang_code', 1, 'https://ror.org/00qytmr47 INC Research (United States)'), (5652, 'https://ror.org/00qzn0672', 'no_lang_code', 1, 'https://ror.org/00qzn0672 Egis Pharmaceuticals (Hungary)'), (5653, 'https://ror.org/00r1m3r97', 'no_lang_code', 1, 'https://ror.org/00r1m3r97 Contento Trade (Italy)'), (5654, 'https://ror.org/00r2h0609', 'en', 1, 'https://ror.org/00r2h0609 Washington County Youth Service Bureau'), (5655, 'https://ror.org/00r2t6515', 'en', 1, 'https://ror.org/00r2t6515 Baranov Central Institute of Aviation Motor Development Центральный институт авиационного моторостроения им. П.И. Баранова'), (5656, 'https://ror.org/00r3xw008', 'en', 1, 'https://ror.org/00r3xw008 Michigan Headache and Neurological Institute'), (5657, 'https://ror.org/00r520291', 'en', 1, 'https://ror.org/00r520291 St. Joseph''s Hospital'), (5658, 'https://ror.org/00r5t2s16', 'en', 1, 'https://ror.org/00r5t2s16 Europdonor Foundation'), (5659, 'https://ror.org/00r633h38', 'no_lang_code', 1, 'https://ror.org/00r633h38 Centro Radiológico Computarizado Corporació Sanitària (Spain)'), (5660, 'https://ror.org/00r6a8318', 'en', 1, 'https://ror.org/00r6a8318 Center for Community Alternatives'), (5661, 'https://ror.org/00r8j9489', 'no_lang_code', 1, 'https://ror.org/00r8j9489 Thales (United Kingdom)'), (5662, 'https://ror.org/00raa0r66', 'en', 1, 'https://ror.org/00raa0r66 Women''s Hospital'), (5663, 'https://ror.org/00rbdbh54', 'no_lang_code', 1, 'https://ror.org/00rbdbh54 Orbital Research (United States)'), (5664, 'https://ror.org/00rbrz089', 'en', 1, 'https://ror.org/00rbrz089 Mental Health Association of Southeastern Pennsylvania'), (5665, 'https://ror.org/00rch4x96', 'no_lang_code', 1, 'https://ror.org/00rch4x96 ImmunoPrecise (Canada)'), (5666, 'https://ror.org/00reyxa23', 'no_lang_code', 1, 'https://ror.org/00reyxa23 Cenix BioScience (Germany)'), (5667, 'https://ror.org/00rfgpg89', 'en', 1, 'https://ror.org/00rfgpg89 Salem Hospital'), (5668, 'https://ror.org/00rgbr518', 'en', 1, 'https://ror.org/00rgbr518 Miami Dade College'), (5669, 'https://ror.org/00rhaks72', 'no_lang_code', 1, 'https://ror.org/00rhaks72 Tracer Technologies (United States)'), (5670, 'https://ror.org/00rjw0467', 'en', 1, 'https://ror.org/00rjw0467 St. Vincent Hospital'), (5671, 'https://ror.org/00rk1k743', 'en', 1, 'https://ror.org/00rk1k743 Cuban Neuroscience Center'), (5672, 'https://ror.org/00rkhrg48', 'no_lang_code', 1, 'https://ror.org/00rkhrg48 Synta Pharmaceuticals (United States)'), (5673, 'https://ror.org/00rpbf348', 'no_lang_code', 1, 'https://ror.org/00rpbf348 Guru Nanak Eye Centre'), (5674, 'https://ror.org/00rpwqe82', 'no_lang_code', 1, 'https://ror.org/00rpwqe82 NYSERNet (United States)'), (5675, 'https://ror.org/00rqgsb54', 'no_lang_code', 1, 'https://ror.org/00rqgsb54 Cyberkinetics (United States)'), (5676, 'https://ror.org/00rqtg495', 'en', 1, 'https://ror.org/00rqtg495 American Association for Dental Research'), (5677, 'https://ror.org/00rrzkj76', 'no_lang_code', 1, 'https://ror.org/00rrzkj76 Sorbent Technologies (United States)'), (5678, 'https://ror.org/00rs6n938', 'no_lang_code', 1, 'https://ror.org/00rs6n938 Lockheed Martin (Canada)'), (5679, 'https://ror.org/00rsqd019', 'no_lang_code', 1, 'https://ror.org/00rsqd019 Toyokawa City Hospital 豊川市民病院'), (5680, 'https://ror.org/00rt47041', 'no_lang_code', 1, 'https://ror.org/00rt47041 Vidasym (United States)'), (5681, 'https://ror.org/00s2dqx11', 'en', 1, 'https://ror.org/00s2dqx11 Indian Institute of Horticultural Research'), (5682, 'https://ror.org/00s3ndx20', 'no_lang_code', 1, 'https://ror.org/00s3ndx20 Innovative Surface Technologies (United States)'), (5683, 'https://ror.org/00s5h6z84', 'no_lang_code', 1, 'https://ror.org/00s5h6z84 INVIDI Technologies (Canada)'), (5684, 'https://ror.org/00s5kep86', 'en', 1, 'https://ror.org/00s5kep86 Society for Risk Analysis'), (5685, 'https://ror.org/00s7dq077', 'en', 1, 'https://ror.org/00s7dq077 Arctic Research Consortium of the United States'), (5686, 'https://ror.org/00s8bsd30', 'en', 1, 'https://ror.org/00s8bsd30 Via Christi Hospital St. Francis'), (5687, 'https://ror.org/00s9ea398', 'no_lang_code', 1, 'https://ror.org/00s9ea398 Asahi Chemical & Industry (Japan)'), (5688, 'https://ror.org/00s9hg791', 'en', 1, 'https://ror.org/00s9hg791 Polisher Research Institute'), (5689, 'https://ror.org/00s9v1h75', 'en', 1, 'https://ror.org/00s9v1h75 European Centre for Disease Prevention and Control Europeiskt centrum för förebyggande och kontroll av sjukdomar'), (5690, 'https://ror.org/00sbaqa70', 'en', 1, 'https://ror.org/00sbaqa70 American Urological Association'), (5691, 'https://ror.org/00sbyns81', 'en', 1, 'https://ror.org/00sbyns81 Miwa Hospital 三輪病院'), (5692, 'https://ror.org/00scjnx30', 'en', 1, 'https://ror.org/00scjnx30 Theiss Research'), (5693, 'https://ror.org/00sda2672', 'en', 1, 'https://ror.org/00sda2672 Edward Via College of Osteopathic Medicine'), (5694, 'https://ror.org/00sdy7y63', 'en', 1, 'https://ror.org/00sdy7y63 Center for Innovative Public Health Research'), (5695, 'https://ror.org/00sf3p382', 'no_lang_code', 1, 'https://ror.org/00sf3p382 Turner Consulting Group (United States)'), (5696, 'https://ror.org/00shfde47', 'no_lang_code', 1, 'https://ror.org/00shfde47 Orkla (Sweden)'), (5697, 'https://ror.org/00shfq002', 'no_lang_code', 1, 'https://ror.org/00shfq002 Syngenta (United States)'), (5698, 'https://ror.org/00shs7b79', 'en', 1, 'https://ror.org/00shs7b79 Northern Ohio Recovery Association'), (5699, 'https://ror.org/00shv0x82', 'en', 1, 'https://ror.org/00shv0x82 Deutsches Rheuma-Forschungszentrum Berlin German Rheumatism Research Centre'), (5700, 'https://ror.org/00shwmt46', 'no_lang_code', 1, 'https://ror.org/00shwmt46 Precision Therapeutics (United States)'), (5701, 'https://ror.org/00sj7sn30', 'pt', 1, 'https://ror.org/00sj7sn30 Prefeitura da Cidade do Rio de Janeiro'), (5702, 'https://ror.org/00skncc61', 'en', 1, 'https://ror.org/00skncc61 Institute For Ecology of Industrial Areas Instytut Ekologii Terenów Uprzemysłowionych'), (5703, 'https://ror.org/00smdp487', 'no_lang_code', 1, 'https://ror.org/00smdp487 Munich Leukemia Laboratory (Germany) Münchner Leukämielabor'), (5704, 'https://ror.org/00smq1v26', 'en', 1, 'https://ror.org/00smq1v26 Saitama Children''s Medical Center 埼玉県立小児医療センター'), (5705, 'https://ror.org/00sn0hb87', 'no_lang_code', 1, 'https://ror.org/00sn0hb87 Wavetrend (United Kingdom)'), (5706, 'https://ror.org/00sqdq844', 'en', 1, 'https://ror.org/00sqdq844 National Committee for Quality Assurance'), (5707, 'https://ror.org/00st10308', 'no_lang_code', 1, 'https://ror.org/00st10308 Behavioral Assessment Incorporation (United States)'), (5708, 'https://ror.org/00sty4r04', 'no_lang_code', 1, 'https://ror.org/00sty4r04 Colibri Technologies (Canada)'), (5709, 'https://ror.org/00swfce58', 'it', 1, 'https://ror.org/00swfce58 Ospedale di Rivoli'), (5710, 'https://ror.org/00swmft88', 'es', 1, 'https://ror.org/00swmft88 Centro Oncológico de Galicia'), (5711, 'https://ror.org/00t00te02', 'no_lang_code', 1, 'https://ror.org/00t00te02 Ford Motor Company (United Kingdom)'), (5712, 'https://ror.org/00t0fph81', 'no_lang_code', 1, 'https://ror.org/00t0fph81 HealthSim (United States)'), (5713, 'https://ror.org/00t0n1q40', 'en', 1, 'https://ror.org/00t0n1q40 National Network of Public Health Institutes'), (5714, 'https://ror.org/00t0z3q71', 'es', 1, 'https://ror.org/00t0z3q71 Hospital del Tórax Instituto Nacional del Tórax'), (5715, 'https://ror.org/00t3pr326', 'en', 1, 'https://ror.org/00t3pr326 British Council'), (5716, 'https://ror.org/00t6e2695', 'no_lang_code', 1, 'https://ror.org/00t6e2695 Emerson (United Kingdom)'), (5717, 'https://ror.org/00t6yjn93', 'en', 1, 'https://ror.org/00t6yjn93 Africare'), (5718, 'https://ror.org/00t7c0489', 'en', 1, 'https://ror.org/00t7c0489 Institute for Biological Sciences'), (5719, 'https://ror.org/00t8kk495', 'hr', 1, 'https://ror.org/00t8kk495 Klinička bolnica "Sveti Duh"'), (5720, 'https://ror.org/00t8xfq63', 'es', 1, 'https://ror.org/00t8xfq63 Center for Scientific Studies Centro de Estudios Científicos'), (5721, 'https://ror.org/00tb5pg67', 'en', 1, 'https://ror.org/00tb5pg67 Emory Clinic'), (5722, 'https://ror.org/00tbsgb37', 'no_lang_code', 1, 'https://ror.org/00tbsgb37 PAI Life Sciences (United States)'), (5723, 'https://ror.org/00tcb9k97', 'en', 1, 'https://ror.org/00tcb9k97 New York Eye and Ear Infirmary'), (5724, 'https://ror.org/00tct5242', 'no_lang_code', 1, 'https://ror.org/00tct5242 Polaris (United States)'), (5725, 'https://ror.org/00tdrjp82', 'en', 1, 'https://ror.org/00tdrjp82 Arizona Heart Institute'), (5726, 'https://ror.org/00tg1mz65', 'en', 1, 'https://ror.org/00tg1mz65 Porter Brook Medical Centre'), (5727, 'https://ror.org/00tgj2z09', 'en', 1, 'https://ror.org/00tgj2z09 Association of Information Technology Companies of Northern Greece'), (5728, 'https://ror.org/00tgps059', 'no_lang_code', 1, 'https://ror.org/00tgps059 Novosibirsk Institute of Organic Chemistry Историческая справка НИОХ'), (5729, 'https://ror.org/00tgygn49', 'en', 1, 'https://ror.org/00tgygn49 San Antonio Fighting Back'), (5730, 'https://ror.org/00thykc36', 'en', 1, 'https://ror.org/00thykc36 American Nurses Credentialing Center'), (5731, 'https://ror.org/00tjkp068', 'no_lang_code', 1, 'https://ror.org/00tjkp068 SimBiotic Software (United States)'), (5732, 'https://ror.org/00tqnwm57', 'en', 1, 'https://ror.org/00tqnwm57 Organisation mondiale de la santé World Health Organization - Denmark Всемирная организация здравоохранения'), (5733, 'https://ror.org/00trk2663', 'no_lang_code', 1, 'https://ror.org/00trk2663 PTAC (United States)'), (5734, 'https://ror.org/00trnhw76', 'en', 1, 'https://ror.org/00trnhw76 Tongde Hospital of Zhejiang Province 浙江省立同德医院'), (5735, 'https://ror.org/00trw9c49', 'en', 1, 'https://ror.org/00trw9c49 Fraunhofer Institute for Algorithms and Scientific Computing Fraunhofer-Institut für Algorithmen und Wissenschaftliches Rechnen SCAI'), (5736, 'https://ror.org/00tvt5664', 'en', 1, 'https://ror.org/00tvt5664 Croatian Institute of Transfusion Medicine Hrvatski Zavod za Transfuzijsku Medicinu'), (5737, 'https://ror.org/00twdh217', 'no_lang_code', 1, 'https://ror.org/00twdh217 Clarovita Nutrition (Canada)'), (5738, 'https://ror.org/00twjye57', 'en', 1, 'https://ror.org/00twjye57 Rochdale Infirmary'), (5739, 'https://ror.org/00txp6z67', 'en', 1, 'https://ror.org/00txp6z67 Prairie Agricultural Machinery Institute'), (5740, 'https://ror.org/00ty4jc02', 'en', 1, 'https://ror.org/00ty4jc02 St. Luke''s Hospital Foundation'), (5741, 'https://ror.org/00tye4g05', 'en', 1, 'https://ror.org/00tye4g05 Richmond Community College'), (5742, 'https://ror.org/00tz9e151', 'en', 1, 'https://ror.org/00tz9e151 Bakersfield College'), (5743, 'https://ror.org/00tzw6r97', 'no_lang_code', 1, 'https://ror.org/00tzw6r97 RC Electronics (United States)'), (5744, 'https://ror.org/00v1wt879', 'es', 1, 'https://ror.org/00v1wt879 National Transplant Organization Organización Nacional de Trasplantes'), (5745, 'https://ror.org/00v315t24', 'no_lang_code', 1, 'https://ror.org/00v315t24 Biopsy Sciences (United States)'), (5746, 'https://ror.org/00v47dk08', 'no_lang_code', 1, 'https://ror.org/00v47dk08 Ebara Hospital 東京都保健医療公社荏原病院'), (5747, 'https://ror.org/00v47pv90', 'en', 1, 'https://ror.org/00v47pv90 Baptist Health South Florida'), (5748, 'https://ror.org/00v6jq438', 'no_lang_code', 1, 'https://ror.org/00v6jq438 Cytograft Tissue Engineering (United States)'), (5749, 'https://ror.org/00v97d044', 'pt', 1, 'https://ror.org/00v97d044 Centre of Studies on Geography and Spatial Planning Centro de Estudos em Geografia e Ordenamento do Territorio'), (5750, 'https://ror.org/00vade776', 'en', 1, 'https://ror.org/00vade776 Public Health Management Corporation'), (5751, 'https://ror.org/00vaf6k96', 'en', 1, 'https://ror.org/00vaf6k96 College of Alameda'), (5752, 'https://ror.org/00vcszp55', 'en', 1, 'https://ror.org/00vcszp55 Arizona Geological Survey'), (5753, 'https://ror.org/00vcvf072', 'en', 1, 'https://ror.org/00vcvf072 Foundation for Advancements in Science and Education'), (5754, 'https://ror.org/00vev3847', 'no_lang_code', 1, 'https://ror.org/00vev3847 Marker Gene Technologies (United States)'), (5755, 'https://ror.org/00vfssf38', 'en', 1, 'https://ror.org/00vfssf38 Franklin County Genealogical & Historical Society'), (5756, 'https://ror.org/00vfty314', 'en', 1, 'https://ror.org/00vfty314 National Institute of Pathology'), (5757, 'https://ror.org/00vhf1v57', 'fr', 1, 'https://ror.org/00vhf1v57 Centre Hospitalier Universitaire de Tokoin'), (5758, 'https://ror.org/00vhfbm88', 'en', 1, 'https://ror.org/00vhfbm88 Edmonds Community College'), (5759, 'https://ror.org/00vhzxs21', 'no_lang_code', 1, 'https://ror.org/00vhzxs21 Immusoft (United States)'), (5760, 'https://ror.org/00vj57q03', 'en', 1, 'https://ror.org/00vj57q03 California Western School of Law'), (5761, 'https://ror.org/00vnwz606', 'en', 1, 'https://ror.org/00vnwz606 Dudley Observatory'), (5762, 'https://ror.org/00vr3xw76', 'en', 1, 'https://ror.org/00vr3xw76 Laser and Skin Surgery Center of Indiana'), (5763, 'https://ror.org/00vrgpy91', 'en', 1, 'https://ror.org/00vrgpy91 St. Petersburg College'), (5764, 'https://ror.org/00vrz7m04', 'no_lang_code', 1, 'https://ror.org/00vrz7m04 Aronora (United States)'), (5765, 'https://ror.org/00vsmb158', 'sl', 1, 'https://ror.org/00vsmb158 University Rehabilitation Institute Univerzitetni Rehabilitacijski Inštitut'), (5766, 'https://ror.org/00vvheq07', 'en', 1, 'https://ror.org/00vvheq07 Community Anti Drug Coalitions of America'), (5767, 'https://ror.org/00vzqmg54', 'en', 1, 'https://ror.org/00vzqmg54 Elizabeth Glaser Pediatric AIDS Foundation'), (5768, 'https://ror.org/00w0s7f65', 'no_lang_code', 1, 'https://ror.org/00w0s7f65 Apex Biomedical (United States)'), (5769, 'https://ror.org/00w1epr46', 'en', 1, 'https://ror.org/00w1epr46 RG Stone Urology & Laparoscopy Hospital आरजी स्टोन यूरोलॉजी और लैप्रोस्कोपी अस्पताल'), (5770, 'https://ror.org/00w230w05', 'no_lang_code', 1, 'https://ror.org/00w230w05 Vical (United States)'), (5771, 'https://ror.org/00w2qec28', 'no_lang_code', 1, 'https://ror.org/00w2qec28 6WIND (France)'), (5772, 'https://ror.org/00w2xsv89', 'no_lang_code', 1, 'https://ror.org/00w2xsv89 Advanced MRI Technologies (United States)'), (5773, 'https://ror.org/00w3hap50', 'pl', 1, 'https://ror.org/00w3hap50 Institute of Nuclear Chemistry and Technology Instytut Chemii i Techniki Jądrowej'), (5774, 'https://ror.org/00w3w6d37', 'en', 1, 'https://ror.org/00w3w6d37 Great Lakes Inter Tribal Council'), (5775, 'https://ror.org/00w4g1w45', 'en', 1, 'https://ror.org/00w4g1w45 Coalition for a Drug Free Hawaii'), (5776, 'https://ror.org/00w5rhv83', 'en', 1, 'https://ror.org/00w5rhv83 EdLab Group'), (5777, 'https://ror.org/00w7yp275', 'en', 1, 'https://ror.org/00w7yp275 Mississippi School for Mathematics and Science'), (5778, 'https://ror.org/00w8fet54', 'no_lang_code', 1, 'https://ror.org/00w8fet54 Kane Biotech (Canada)'), (5779, 'https://ror.org/00w9zab79', 'en', 1, 'https://ror.org/00w9zab79 New Mexico Resonance'), (5780, 'https://ror.org/00wbcgc67', 'no_lang_code', 1, 'https://ror.org/00wbcgc67 Johnson Matthey (United States)'), (5781, 'https://ror.org/00wbv7962', 'no_lang_code', 1, 'https://ror.org/00wbv7962 Environmental Consultants and Contractors'), (5782, 'https://ror.org/00wc5s136', 'en', 1, 'https://ror.org/00wc5s136 Mount Marty College'), (5783, 'https://ror.org/00wc6ay63', 'no_lang_code', 1, 'https://ror.org/00wc6ay63 KCI (United States)'), (5784, 'https://ror.org/00wcjep87', 'no_lang_code', 1, 'https://ror.org/00wcjep87 Genlantis (United States)'), (5785, 'https://ror.org/00wg15m47', 'no_lang_code', 1, 'https://ror.org/00wg15m47 Menssana Research (United States)'), (5786, 'https://ror.org/00wg9xe54', 'en', 1, 'https://ror.org/00wg9xe54 Chemical Diversity Research Institute Исследовательский Институт Химического Разнообразия'), (5787, 'https://ror.org/00wkay776', 'en', 1, 'https://ror.org/00wkay776 Carthage College'), (5788, 'https://ror.org/00wkf3d94', 'no_lang_code', 1, 'https://ror.org/00wkf3d94 Quintessence Biosciences (United States)'), (5789, 'https://ror.org/00wph9g26', 'no_lang_code', 1, 'https://ror.org/00wph9g26 Electronic BioSciences (United States)'), (5790, 'https://ror.org/00wqtx630', 'en', 1, 'https://ror.org/00wqtx630 South Carolina Technical College System'), (5791, 'https://ror.org/00wrset74', 'no_lang_code', 1, 'https://ror.org/00wrset74 Tejas Networks (India)'), (5792, 'https://ror.org/00wydxq38', 'pt', 1, 'https://ror.org/00wydxq38 Associacao Protectora dos Diabeticos de Portugal'), (5793, 'https://ror.org/00x0e3e82', 'fr', 1, 'https://ror.org/00x0e3e82 Institut Régional de Médecine Physique et de Réadaptation'), (5794, 'https://ror.org/00x19de83', 'en', 1, 'https://ror.org/00x19de83 International Centers for Excellence in Research'), (5795, 'https://ror.org/00x2ve368', 'en', 1, 'https://ror.org/00x2ve368 Tourette Association of America'), (5796, 'https://ror.org/00x3r9n64', 'en', 1, 'https://ror.org/00x3r9n64 Nezhat Medical Center'), (5797, 'https://ror.org/00x489z61', 'pt', 1, 'https://ror.org/00x489z61 Instituto Geográfico Português'), (5798, 'https://ror.org/00x5q3m40', 'fr', 1, 'https://ror.org/00x5q3m40 Institut Calot'), (5799, 'https://ror.org/00x8ee082', 'it', 1, 'https://ror.org/00x8ee082 Ospedale Civile Edoardo Agnelli'), (5800, 'https://ror.org/00xa0jd95', 'no_lang_code', 1, 'https://ror.org/00xa0jd95 Oralys (Canada)'), (5801, 'https://ror.org/00xc08717', 'en', 1, 'https://ror.org/00xc08717 Whitchurch Hospital'), (5802, 'https://ror.org/00xdqtv86', 'en', 1, 'https://ror.org/00xdqtv86 Association of Health Care Journalists'), (5803, 'https://ror.org/00xe5zs60', 'en', 1, 'https://ror.org/00xe5zs60 Birmingham Women''s Hospital'), (5804, 'https://ror.org/00xgvev73', 'es', 1, 'https://ror.org/00xgvev73 Instituto Nacional de Ciencias Médicas y Nutrición Salvador Zubirán National Institute of Medical Sciences and Nutrition Salvador Zubirán'), (5805, 'https://ror.org/00xgy0333', 'en', 1, 'https://ror.org/00xgy0333 Tanzania Food and Nutrition Center'), (5806, 'https://ror.org/00xh1ah97', 'en', 1, 'https://ror.org/00xh1ah97 Child Trends'), (5807, 'https://ror.org/00xh22n12', 'en', 1, 'https://ror.org/00xh22n12 Czech Environmental Information Agency'), (5808, 'https://ror.org/00xhxz289', 'en', 1, 'https://ror.org/00xhxz289 American Society for Pharmacology and Experimental Therapeutics'), (5809, 'https://ror.org/00xkqe770', 'en', 1, 'https://ror.org/00xkqe770 Epsom and St Helier University Hospitals NHS Trust'), (5810, 'https://ror.org/00xkqq585', 'en', 1, 'https://ror.org/00xkqq585 Our Lady of Lourdes Regional Medical Center'), (5811, 'https://ror.org/00xms2e58', 'en', 1, 'https://ror.org/00xms2e58 Hudson Valley Regional Emergency Medical Services Council'), (5812, 'https://ror.org/00xmtrb24', 'no_lang_code', 1, 'https://ror.org/00xmtrb24 LC Resources (United States)'), (5813, 'https://ror.org/00xpr6w96', 'en', 1, 'https://ror.org/00xpr6w96 Hough Ear Institute'), (5814, 'https://ror.org/00xspzv28', 'en', 1, 'https://ror.org/00xspzv28 Ohio Department of Agriculture'), (5815, 'https://ror.org/00xw3wc12', 'no_lang_code', 1, 'https://ror.org/00xw3wc12 RxBio (United States)'), (5816, 'https://ror.org/00xwgwv92', 'no_lang_code', 1, 'https://ror.org/00xwgwv92 Kelly Services (United States)'), (5817, 'https://ror.org/00xwww266', 'no_lang_code', 1, 'https://ror.org/00xwww266 Aeon Imaging (United States)'), (5818, 'https://ror.org/00xx9yn39', 'en', 1, 'https://ror.org/00xx9yn39 Fatima Jinnah Dental College'), (5819, 'https://ror.org/00xya3a34', 'en', 1, 'https://ror.org/00xya3a34 La Société royale du Canada Royal Society of Canada'), (5820, 'https://ror.org/00xz1cn67', 'no_lang_code', 1, 'https://ror.org/00xz1cn67 Saiseikai Kumamoto Hospital 済生会熊本病院'), (5821, 'https://ror.org/00xzbkw82', 'en', 1, 'https://ror.org/00xzbkw82 Ohkawara Neurosurgical Hospital 大川原脳神経外科病院'), (5822, 'https://ror.org/00y022594', 'en', 1, 'https://ror.org/00y022594 Eye and Ear Foundation'), (5823, 'https://ror.org/00y112q62', 'en', 1, 'https://ror.org/00y112q62 Wrightington Hospital'), (5824, 'https://ror.org/00y1ttm22', 'no_lang_code', 1, 'https://ror.org/00y1ttm22 Merck (France)'), (5825, 'https://ror.org/00y3cpn63', 'en', 1, 'https://ror.org/00y3cpn63 Tachikawa Medical Center 立川メディカルセンター'), (5826, 'https://ror.org/00y93ak93', 'en', 1, 'https://ror.org/00y93ak93 Shepherd University'), (5827, 'https://ror.org/00yascf89', 'no_lang_code', 1, 'https://ror.org/00yascf89 Intertek (Canada)'), (5828, 'https://ror.org/00yb09x74', 'en', 1, 'https://ror.org/00yb09x74 Informed Families'), (5829, 'https://ror.org/00ycg6x55', 'en', 1, 'https://ror.org/00ycg6x55 National Association for Biomedical Research'), (5830, 'https://ror.org/00yd9m083', 'it', 1, 'https://ror.org/00yd9m083 Istituto Nazionale di Ricerca per gli Alimenti e la Nutrizione'), (5831, 'https://ror.org/00yeap462', 'en', 1, 'https://ror.org/00yeap462 Research and Productivity Council'), (5832, 'https://ror.org/00yfcva70', 'en', 1, 'https://ror.org/00yfcva70 AeroSpace and Defence Industries Association of Europe'), (5833, 'https://ror.org/00yfpz909', 'en', 1, 'https://ror.org/00yfpz909 Unity Health System'), (5834, 'https://ror.org/00yn4km03', 'en', 1, 'https://ror.org/00yn4km03 Worthing Hospital'), (5835, 'https://ror.org/00yr70j54', 'en', 1, 'https://ror.org/00yr70j54 Tauranga Hospital'), (5836, 'https://ror.org/00ys1w968', 'no_lang_code', 1, 'https://ror.org/00ys1w968 AccelLab (Canada)'), (5837, 'https://ror.org/00ysjm146', 'en', 1, 'https://ror.org/00ysjm146 Mission to the Street for Christ'), (5838, 'https://ror.org/00yt6w794', 'no_lang_code', 1, 'https://ror.org/00yt6w794 Sierra Nevada Corporation (United States)'), (5839, 'https://ror.org/00ytr4473', 'no_lang_code', 1, 'https://ror.org/00ytr4473 Opmedic Group (Canada)'), (5840, 'https://ror.org/00yv3xr02', 'en', 1, 'https://ror.org/00yv3xr02 Ome Municipal General Hospital 青梅市立総合病院'), (5841, 'https://ror.org/00yy85n18', 'en', 1, 'https://ror.org/00yy85n18 College of St. Scholastica'), (5842, 'https://ror.org/00yzb1d91', 'en', 1, 'https://ror.org/00yzb1d91 Wyckoff Heights Medical Center'), (5843, 'https://ror.org/00yzwgc71', 'en', 1, 'https://ror.org/00yzwgc71 Southern California Coastal Water Research Project'), (5844, 'https://ror.org/00z0d6447', 'no_lang_code', 1, 'https://ror.org/00z0d6447 Kikkoman (Japan) キッコーマン株式会社'), (5845, 'https://ror.org/00z20c921', 'en', 1, 'https://ror.org/00z20c921 Harper Adams University'), (5846, 'https://ror.org/00z21v095', 'no_lang_code', 1, 'https://ror.org/00z21v095 Abbott (Canada)'), (5847, 'https://ror.org/00z7n1h55', 'en', 1, 'https://ror.org/00z7n1h55 State Research Center of Virology and Biotechnology VECTOR Федеральное бюджетное учреждение науки Государственный научный центр вирусологии и биотехнологии Вектор'), (5848, 'https://ror.org/00z7pm351', 'no_lang_code', 1, 'https://ror.org/00z7pm351 Advanced Photonic Crystals (United States)'), (5849, 'https://ror.org/00zcam334', 'no_lang_code', 1, 'https://ror.org/00zcam334 Clancy Docwra (United Kingdom)'), (5850, 'https://ror.org/00zdmbm57', 'no_lang_code', 1, 'https://ror.org/00zdmbm57 Premiere Global Services (United States)'), (5851, 'https://ror.org/00zerva91', 'en', 1, 'https://ror.org/00zerva91 St. Patrick Hospital'), (5852, 'https://ror.org/00zgt4y83', 'no_lang_code', 1, 'https://ror.org/00zgt4y83 MetaMedia Training International (United States)'), (5853, 'https://ror.org/00zn54j08', 'no_lang_code', 1, 'https://ror.org/00zn54j08 Kryton International (Canada)'), (5854, 'https://ror.org/00zpq6q43', 'no_lang_code', 1, 'https://ror.org/00zpq6q43 SWITCH Materials (Canada)'), (5855, 'https://ror.org/00zqnhb80', 'no_lang_code', 1, 'https://ror.org/00zqnhb80 Avensys (Canada)'), (5856, 'https://ror.org/00zrfhe30', 'nl', 1, 'https://ror.org/00zrfhe30 Onze Lieve Vrouwziekenhuis Hospital'), (5857, 'https://ror.org/00zw6et16', 'en', 1, 'https://ror.org/00zw6et16 Capital Institute of Pediatrics 首都儿科研究所'), (5858, 'https://ror.org/00zwq4e04', 'en', 1, 'https://ror.org/00zwq4e04 Cope Community Services'), (5859, 'https://ror.org/00zxfn928', 'no_lang_code', 1, 'https://ror.org/00zxfn928 Gratings Incorporated (United States)'), (5860, 'https://ror.org/00zzc5439', 'no_lang_code', 1, 'https://ror.org/00zzc5439 Molecular LogiX (United States)'), (5861, 'https://ror.org/0100f3q33', 'no_lang_code', 1, 'https://ror.org/0100f3q33 Biotest (Germany)'), (5862, 'https://ror.org/0100fcb78', 'en', 1, 'https://ror.org/0100fcb78 Arapahoe Community College'), (5863, 'https://ror.org/0100w6230', 'no_lang_code', 1, 'https://ror.org/0100w6230 Alacron (United States)'), (5864, 'https://ror.org/0102yp030', 'en', 1, 'https://ror.org/0102yp030 College of DuPage'), (5865, 'https://ror.org/01070pt38', 'fr', 1, 'https://ror.org/01070pt38 City College La Cité Collégiale'), (5866, 'https://ror.org/0107hzb54', 'en', 1, 'https://ror.org/0107hzb54 International Craniofacial Institute'), (5867, 'https://ror.org/0108cpj15', 'en', 1, 'https://ror.org/0108cpj15 High Institute for Education and Research in Transfusion Medicine موسسه عالی آموزشی و پژوهشی طب انتقال خون'), (5868, 'https://ror.org/010ab8p65', 'en', 1, 'https://ror.org/010ab8p65 Hopkins Architectes Hopkins Architects'), (5869, 'https://ror.org/010azec62', 'en', 1, 'https://ror.org/010azec62 Deborah Heart and Lung Center'), (5870, 'https://ror.org/010bfx043', 'no_lang_code', 1, 'https://ror.org/010bfx043 Conestoga Meat Packers (Canada)'), (5871, 'https://ror.org/010eax918', 'no_lang_code', 1, 'https://ror.org/010eax918 Syandus (United States)'), (5872, 'https://ror.org/010ehmn03', 'no_lang_code', 1, 'https://ror.org/010ehmn03 Viocare (United States)'), (5873, 'https://ror.org/010fbpe82', 'en', 1, 'https://ror.org/010fbpe82 Tianjin Economic-Technological Development Area 天津经济技术开发区'), (5874, 'https://ror.org/010g03x11', 'en', 1, 'https://ror.org/010g03x11 Toronto Public Health'), (5875, 'https://ror.org/010h0ab29', 'no_lang_code', 1, 'https://ror.org/010h0ab29 Dynamis Pharmaceuticals (United States)'), (5876, 'https://ror.org/010hx2v28', 'no_lang_code', 1, 'https://ror.org/010hx2v28 Inverness Research (United States)'), (5877, 'https://ror.org/010k65h15', 'en', 1, 'https://ror.org/010k65h15 Society for Canadian Women in Science and Technology'), (5878, 'https://ror.org/010pvqx55', 'en', 1, 'https://ror.org/010pvqx55 Danish Institute against Torture'), (5879, 'https://ror.org/010qwhr53', 'en', 1, 'https://ror.org/010qwhr53 Klinikum Nürnberg Nuremberg Hospital'), (5880, 'https://ror.org/010r07h95', 'no_lang_code', 1, 'https://ror.org/010r07h95 Halma Water Management (United Kingdom)'), (5881, 'https://ror.org/010s4nz55', 'en', 1, 'https://ror.org/010s4nz55 York General Hospital'), (5882, 'https://ror.org/010s5ca44', 'en', 1, 'https://ror.org/010s5ca44 Memphis Fire Services'), (5883, 'https://ror.org/010thz337', 'en', 1, 'https://ror.org/010thz337 Farmingdale State College'), (5884, 'https://ror.org/010vbnw08', 'no_lang_code', 1, 'https://ror.org/010vbnw08 Apotex Pharmachem (Canada)'), (5885, 'https://ror.org/0110df420', 'no_lang_code', 1, 'https://ror.org/0110df420 Aurora Flight Sciences (United States)'), (5886, 'https://ror.org/0111bj510', 'no_lang_code', 1, 'https://ror.org/0111bj510 Industrial Tomography Systems (United Kingdom)'), (5887, 'https://ror.org/0111gm575', 'en', 1, 'https://ror.org/0111gm575 Positive Living Society of British Columbia'), (5888, 'https://ror.org/01132tb14', 'no_lang_code', 1, 'https://ror.org/01132tb14 Cryomagnetics (United States)'), (5889, 'https://ror.org/0113kt106', 'en', 1, 'https://ror.org/0113kt106 Nine Circles Community Health Centre'), (5890, 'https://ror.org/01144y654', 'no_lang_code', 1, 'https://ror.org/01144y654 MASSolutions (Canada)'), (5891, 'https://ror.org/011471042', 'en', 1, 'https://ror.org/011471042 National Institute of Epidemiology'), (5892, 'https://ror.org/0114c6692', 'no_lang_code', 1, 'https://ror.org/0114c6692 Prediction Sciences (United States)'), (5893, 'https://ror.org/0115kp792', 'no_lang_code', 1, 'https://ror.org/0115kp792 Aptagen (United States)'), (5894, 'https://ror.org/0115psh64', 'no_lang_code', 1, 'https://ror.org/0115psh64 MMTC (United States)'), (5895, 'https://ror.org/0117yy678', 'no_lang_code', 1, 'https://ror.org/0117yy678 BIT-TECH (United States)'), (5896, 'https://ror.org/011akkh38', 'en', 1, 'https://ror.org/011akkh38 Australian Academy of the Humanities'), (5897, 'https://ror.org/011cabk38', 'it', 1, 'https://ror.org/011cabk38 Policlinico Umberto I'), (5898, 'https://ror.org/011e44004', 'en', 1, 'https://ror.org/011e44004 American Planning Association'), (5899, 'https://ror.org/011hsx378', 'no_lang_code', 1, 'https://ror.org/011hsx378 PortaScience (United States)'), (5900, 'https://ror.org/011htkb76', 'en', 1, 'https://ror.org/011htkb76 UPMC Health System'), (5901, 'https://ror.org/011krwa35', 'en', 1, 'https://ror.org/011krwa35 Urology Associates'), (5902, 'https://ror.org/011mar637', 'en', 1, 'https://ror.org/011mar637 National Cancer Institute of Thailand สถาบันมะเร็งแห่งชาติ'), (5903, 'https://ror.org/011ps1s60', 'en', 1, 'https://ror.org/011ps1s60 American College of Healthcare Executives'), (5904, 'https://ror.org/011qnyz94', 'fr', 1, 'https://ror.org/011qnyz94 Cégep de la Gaspésie et des Îles'), (5905, 'https://ror.org/011ssy811', 'en', 1, 'https://ror.org/011ssy811 International Prevention Research Institute'), (5906, 'https://ror.org/011t2v902', 'en', 1, 'https://ror.org/011t2v902 Carlow University'), (5907, 'https://ror.org/011tndv57', 'en', 1, 'https://ror.org/011tndv57 Kentucky Science Center'), (5908, 'https://ror.org/011vw2696', 'no_lang_code', 1, 'https://ror.org/011vw2696 Geospace Research (United States)'), (5909, 'https://ror.org/011yp0a52', 'en', 1, 'https://ror.org/011yp0a52 New York Law School'), (5910, 'https://ror.org/012057720', 'en', 1, 'https://ror.org/012057720 American Legacy Foundation'), (5911, 'https://ror.org/01220jp31', 'it', 1, 'https://ror.org/01220jp31 IRCCS Policlinico San Donato'), (5912, 'https://ror.org/012381002', 'en', 1, 'https://ror.org/012381002 Terasaki Foundation'), (5913, 'https://ror.org/0123zff28', 'en', 1, 'https://ror.org/0123zff28 EMO GVM Centro Cuore Columbus'), (5914, 'https://ror.org/0124gwh94', 'en', 1, 'https://ror.org/0124gwh94 AgResearch'), (5915, 'https://ror.org/0125b2w26', 'no_lang_code', 1, 'https://ror.org/0125b2w26 OmegaChem (Canada)'), (5916, 'https://ror.org/0125vzh18', 'no_lang_code', 1, 'https://ror.org/0125vzh18 Noble (United States)'), (5917, 'https://ror.org/0128ckf82', 'en', 1, 'https://ror.org/0128ckf82 Ferrum College'), (5918, 'https://ror.org/012a41834', 'en', 1, 'https://ror.org/012a41834 National Institute of Biological Resources'), (5919, 'https://ror.org/012c7gx93', 'no_lang_code', 1, 'https://ror.org/012c7gx93 Cerner (United States)'), (5920, 'https://ror.org/012e11c45', 'no_lang_code', 1, 'https://ror.org/012e11c45 JWK Corporation (United States)'), (5921, 'https://ror.org/012es9h30', 'no_lang_code', 1, 'https://ror.org/012es9h30 Gradient Lens Corporation (United States)'), (5922, 'https://ror.org/012fe8h22', 'en', 1, 'https://ror.org/012fe8h22 Neighborhood House'), (5923, 'https://ror.org/012fsht65', 'no_lang_code', 1, 'https://ror.org/012fsht65 Architecture Technology Corporation (United States)'), (5924, 'https://ror.org/012kdmp09', 'en', 1, 'https://ror.org/012kdmp09 Opća bolnica Zabok Zabok General Hospital'), (5925, 'https://ror.org/012khpt30', 'it', 1, 'https://ror.org/012khpt30 Fondazione G.B. Bietti G. B. Bietti Foundation'), (5926, 'https://ror.org/012mfbs12', 'en', 1, 'https://ror.org/012mfbs12 Bethel College'), (5927, 'https://ror.org/012p9gs30', 'en', 1, 'https://ror.org/012p9gs30 Santa Fe College'), (5928, 'https://ror.org/012vsjx26', 'no_lang_code', 1, 'https://ror.org/012vsjx26 Seacoast Science (United States)'), (5929, 'https://ror.org/012xcvh54', 'fr', 1, 'https://ror.org/012xcvh54 Cegep de Saint Jerome, Cégep de saint-jérôme Cegep of Saint Jérôme'), (5930, 'https://ror.org/012xhfk02', 'en', 1, 'https://ror.org/012xhfk02 LAM Foundation'), (5931, 'https://ror.org/012y1mj37', 'en', 1, 'https://ror.org/012y1mj37 Oglala Lakota College'), (5932, 'https://ror.org/012zm4p89', 'no_lang_code', 1, 'https://ror.org/012zm4p89 Energy Science Laboratories (United States)'), (5933, 'https://ror.org/01300np05', 'en', 1, 'https://ror.org/01300np05 Tokyo Dental College Ichikawa General Hospital 東京歯科大学 市川総合病院'), (5934, 'https://ror.org/0130d0563', 'en', 1, 'https://ror.org/0130d0563 Vaccine Research Institute of San Diego'), (5935, 'https://ror.org/0130vhy65', 'en', 1, 'https://ror.org/0130vhy65 Biomedical Research and Training Institute'), (5936, 'https://ror.org/01327qs39', 'en', 1, 'https://ror.org/01327qs39 WestCare Foundation'), (5937, 'https://ror.org/0132fct87', 'no_lang_code', 1, 'https://ror.org/0132fct87 Air Products (United Kingdom)'), (5938, 'https://ror.org/0132nee26', 'fr', 1, 'https://ror.org/0132nee26 Institut National d''Oncologie'), (5939, 'https://ror.org/0132qa516', 'en', 1, 'https://ror.org/0132qa516 Worcester Memorial Hospital'), (5940, 'https://ror.org/0132ynj18', 'en', 1, 'https://ror.org/0132ynj18 St. Joseph Hospital'), (5941, 'https://ror.org/0134j7f28', 'no_lang_code', 1, 'https://ror.org/0134j7f28 Orolia (United States)'), (5942, 'https://ror.org/0135ay670', 'en', 1, 'https://ror.org/0135ay670 Montgomery County Community College'), (5943, 'https://ror.org/0138w4412', 'en', 1, 'https://ror.org/0138w4412 Russian Research Center for Molecular Diagnostics and Therapy'), (5944, 'https://ror.org/013aq5m10', 'en', 1, 'https://ror.org/013aq5m10 Dubai Pharmacy College كلية دبي للصيدلة'), (5945, 'https://ror.org/013by2m91', 'no_lang_code', 1, 'https://ror.org/013by2m91 Synopsys (United States)'), (5946, 'https://ror.org/013cpfz63', 'no_lang_code', 1, 'https://ror.org/013cpfz63 Cel-Sci (United States)'), (5947, 'https://ror.org/013ed7841', 'en', 1, 'https://ror.org/013ed7841 American College of Physician Executives'), (5948, 'https://ror.org/013hwwd10', 'no_lang_code', 1, 'https://ror.org/013hwwd10 Surgical Specialties (Canada)'), (5949, 'https://ror.org/013phw743', 'en', 1, 'https://ror.org/013phw743 Council on Competitiveness'), (5950, 'https://ror.org/013rrw978', 'no_lang_code', 1, 'https://ror.org/013rrw978 Plexon (United States)'), (5951, 'https://ror.org/013s9ta35', 'en', 1, 'https://ror.org/013s9ta35 Wisconsin Heart Hospital'), (5952, 'https://ror.org/013t2n957', 'no_lang_code', 1, 'https://ror.org/013t2n957 Perrigo (United States)'); INSERT INTO `rors` VALUES (5953, 'https://ror.org/013v2jk78', 'en', 1, 'https://ror.org/013v2jk78 American Association of Poison Control Centers'), (5954, 'https://ror.org/013wkc921', 'it', 1, 'https://ror.org/013wkc921 Istituto Scientifico Romagnolo per lo Studio e la Cura dei Tumori'), (5955, 'https://ror.org/013xmn143', 'no_lang_code', 1, 'https://ror.org/013xmn143 Baxter (Austria)'), (5956, 'https://ror.org/013y4v758', 'en', 1, 'https://ror.org/013y4v758 Yokohama City Seibu Hospital'), (5957, 'https://ror.org/013zb0q67', 'en', 1, 'https://ror.org/013zb0q67 Anixter Center'), (5958, 'https://ror.org/014142c83', 'en', 1, 'https://ror.org/014142c83 National Institute for Food and Nutrition Science'), (5959, 'https://ror.org/0141egq93', 'no_lang_code', 1, 'https://ror.org/0141egq93 TRS Technologies (United States)'), (5960, 'https://ror.org/0141vav06', 'en', 1, 'https://ror.org/0141vav06 WAMC Northeast Public Radio'), (5961, 'https://ror.org/0144s0951', 'en', 1, 'https://ror.org/0144s0951 Zhejiang Cancer Hospital 浙江省肿瘤医院'), (5962, 'https://ror.org/0144z1077', 'no_lang_code', 1, 'https://ror.org/0144z1077 Iomai (United States)'), (5963, 'https://ror.org/0145s0423', 'es', 1, 'https://ror.org/0145s0423 Foundation for the Fight against Pediatric Neurological Disease Fundación para la Lucha contra las Enfermedades Neurológicas de la Infancia'), (5964, 'https://ror.org/0146tpy53', 'en', 1, 'https://ror.org/0146tpy53 Wellmont Health Systems'), (5965, 'https://ror.org/01479r334', 'en', 1, 'https://ror.org/01479r334 Henan Provincial Center for Disease Control and Prevention 河南省疾病预防控制中心'), (5966, 'https://ror.org/014936814', 'en', 1, 'https://ror.org/014936814 St. Luke''s Hospital Κλινική Άγιος Λουκάς'), (5967, 'https://ror.org/0149xpj56', 'en', 1, 'https://ror.org/0149xpj56 Midwest Cardiovascular Research Foundation'), (5968, 'https://ror.org/014a5gx79', 'en', 1, 'https://ror.org/014a5gx79 Departamento de Vivienda y Desarrollo Urbano de los Estados Unidos Département du logement et du développement urbain des États-unis United States Department of Housing and Urban Development'), (5969, 'https://ror.org/014aeyd41', 'no_lang_code', 1, 'https://ror.org/014aeyd41 Asahi Breweries (Japan) アサヒビール株式会社'), (5970, 'https://ror.org/014apwk83', 'es', 1, 'https://ror.org/014apwk83 Instituto de Estudios Avanzados'), (5971, 'https://ror.org/014bye436', 'no_lang_code', 1, 'https://ror.org/014bye436 Lucerna (United States)'), (5972, 'https://ror.org/014c2qb55', 'de', 1, 'https://ror.org/014c2qb55 Klinik Hirslanden'), (5973, 'https://ror.org/014c68a74', 'en', 1, 'https://ror.org/014c68a74 St. Louis VA Medical Center'), (5974, 'https://ror.org/014dkew11', 'no_lang_code', 1, 'https://ror.org/014dkew11 Environment and Health Group (United States)'), (5975, 'https://ror.org/014er3x17', 'en', 1, 'https://ror.org/014er3x17 Institute of Particle Physics'), (5976, 'https://ror.org/014fc7457', 'no_lang_code', 1, 'https://ror.org/014fc7457 PerkinElmer (United Kingdom)'), (5977, 'https://ror.org/014ft7z36', 'en', 1, 'https://ror.org/014ft7z36 Office of Disease Prevention and Health Promotion'), (5978, 'https://ror.org/014hs3c68', 'no_lang_code', 1, 'https://ror.org/014hs3c68 Lend Lease (United Kingdom)'), (5979, 'https://ror.org/014j33z40', 'en', 1, 'https://ror.org/014j33z40 National Hospital Abuja'), (5980, 'https://ror.org/014jgh757', 'no_lang_code', 1, 'https://ror.org/014jgh757 LAC Group (United States)'), (5981, 'https://ror.org/014jghh27', 'no_lang_code', 1, 'https://ror.org/014jghh27 Chelsea Technologies (United Kingdom)'), (5982, 'https://ror.org/014nm9q97', 'no_lang_code', 1, 'https://ror.org/014nm9q97 Sakai Municipal Hospital 堺市立総合医療センター'), (5983, 'https://ror.org/014pcm848', 'en', 1, 'https://ror.org/014pcm848 American Society of Nephrology'), (5984, 'https://ror.org/014qf4206', 'no_lang_code', 1, 'https://ror.org/014qf4206 Gradient (United States)'), (5985, 'https://ror.org/014t21j89', 'en', 1, 'https://ror.org/014t21j89 Sarah Cannon'), (5986, 'https://ror.org/014tb3433', 'en', 1, 'https://ror.org/014tb3433 Loma Linda Veterans Association for Research and Education'), (5987, 'https://ror.org/014tg6596', 'en', 1, 'https://ror.org/014tg6596 Victoria Hospital'), (5988, 'https://ror.org/014tted12', 'no_lang_code', 1, 'https://ror.org/014tted12 Systems Control (United States)'), (5989, 'https://ror.org/014vawd53', 'en', 1, 'https://ror.org/014vawd53 Genesis Laboratories'), (5990, 'https://ror.org/014xba990', 'no_lang_code', 1, 'https://ror.org/014xba990 Ateliers Nic. Georges (Luxembourg)'), (5991, 'https://ror.org/014y9yf82', 'no_lang_code', 1, 'https://ror.org/014y9yf82 Compuware (United States)'), (5992, 'https://ror.org/014yznv62', 'no_lang_code', 1, 'https://ror.org/014yznv62 TiNi Alloy (United States)'), (5993, 'https://ror.org/014ztwb11', 'fr', 1, 'https://ror.org/014ztwb11 Fédération des cégeps'), (5994, 'https://ror.org/0153sam53', 'en', 1, 'https://ror.org/0153sam53 Centre d''Étude et de Recherches Vétérinaires et Agrochimiques Centrum voor Onderzoek in Diergeneeskunde en Agrochemie Veterinary and Agrochemical Research Centre'), (5995, 'https://ror.org/0154zm466', 'da', 1, 'https://ror.org/0154zm466 Børneklinikken Randers'), (5996, 'https://ror.org/0155k7414', 'en', 1, 'https://ror.org/0155k7414 Cleveland Clinic Florida'), (5997, 'https://ror.org/0156f0c06', 'no_lang_code', 1, 'https://ror.org/0156f0c06 ICF International (United States)'), (5998, 'https://ror.org/0156rhd17', 'en', 1, 'https://ror.org/0156rhd17 Second Affiliated Hospital & Yuying Children''s Hospital of Wenzhou Medical University 温州医科大学附属第二医院'), (5999, 'https://ror.org/0157vkf66', 'en', 1, 'https://ror.org/0157vkf66 Rajiv Gandhi University of Health Sciences राजीव गांधी स्वास्थ्य विज्ञान विश्वविद्यालय'), (6000, 'https://ror.org/0159w2913', 'en', 1, 'https://ror.org/0159w2913 Korea Institute of Toxicology 안전성평가연구소'), (6001, 'https://ror.org/015ah0c92', 'en', 1, 'https://ror.org/015ah0c92 National Institute for Health and Care Excellence'), (6002, 'https://ror.org/015awat24', 'en', 1, 'https://ror.org/015awat24 Western State Hospital'), (6003, 'https://ror.org/015by2x28', 'en', 1, 'https://ror.org/015by2x28 North Dakota State College of Science'), (6004, 'https://ror.org/015er2861', 'en', 1, 'https://ror.org/015er2861 Vale of Leven District General Hospital'), (6005, 'https://ror.org/015exsf29', 'no_lang_code', 1, 'https://ror.org/015exsf29 Upsight (Canada)'), (6006, 'https://ror.org/015gdag92', 'en', 1, 'https://ror.org/015gdag92 Atlanta Allergy and Asthma Clinic'), (6007, 'https://ror.org/015h4rf69', 'en', 1, 'https://ror.org/015h4rf69 Niagara College'), (6008, 'https://ror.org/015jknj09', 'en', 1, 'https://ror.org/015jknj09 American Association of Physicists in Medicine'), (6009, 'https://ror.org/015mh9580', 'en', 1, 'https://ror.org/015mh9580 Chippewa Valley Technical College'), (6010, 'https://ror.org/015n0my11', 'en', 1, 'https://ror.org/015n0my11 Alabama Southern Community College'), (6011, 'https://ror.org/015pg1163', 'no_lang_code', 1, 'https://ror.org/015pg1163 Orcca Technology (United States)'), (6012, 'https://ror.org/015qy8r18', 'fr', 1, 'https://ror.org/015qy8r18 Centre Hospitalier Intercommunal de Poissy'), (6013, 'https://ror.org/015xbps36', 'en', 1, 'https://ror.org/015xbps36 Nordic Institute of Dental Materials'), (6014, 'https://ror.org/015ygrv52', 'en', 1, 'https://ror.org/015ygrv52 Hong Kong Jockey Club 香港賽馬會'), (6015, 'https://ror.org/015z80004', 'en', 1, 'https://ror.org/015z80004 Forensic Sciences Department'), (6016, 'https://ror.org/01601en76', 'fr', 1, 'https://ror.org/01601en76 Cegep de Sept Iles, Cégep de sept-Îles'), (6017, 'https://ror.org/0160cnc74', 'no_lang_code', 1, 'https://ror.org/0160cnc74 BioSci Research Canada (Canada)'), (6018, 'https://ror.org/0160sy147', 'no_lang_code', 1, 'https://ror.org/0160sy147 Robotiq (Canada)'), (6019, 'https://ror.org/0160vb289', 'no_lang_code', 1, 'https://ror.org/0160vb289 Tertl Studos (United States)'), (6020, 'https://ror.org/01616eq90', 'en', 1, 'https://ror.org/01616eq90 Gamalei Institute of Epidemiology and Microbiology Национальный исследовательский центр эпидемиологии и микробиологии имени почётного академика Н. Ф. Гамалеи'), (6021, 'https://ror.org/0162naz14', 'no_lang_code', 1, 'https://ror.org/0162naz14 EnviroSim (Canada)'), (6022, 'https://ror.org/01639jx86', 'no_lang_code', 1, 'https://ror.org/01639jx86 Ogikubo Hospital'), (6023, 'https://ror.org/01647vc39', 'no_lang_code', 1, 'https://ror.org/01647vc39 Behringwerke (Germany)'), (6024, 'https://ror.org/0164vc797', 'en', 1, 'https://ror.org/0164vc797 Vijayanagara Institute of Medical Sciences ವಿಜಯನಗರ ವೈದ್ಯಕೀಯ ವಿಜ್ಞಾನ ಸಂಸ್ಥೆ'), (6025, 'https://ror.org/01663qy58', 'en', 1, 'https://ror.org/01663qy58 Papageorgiou General Hospital'), (6026, 'https://ror.org/0168zt961', 'en', 1, 'https://ror.org/0168zt961 Asian and Pacific Islander American Health Forum'), (6027, 'https://ror.org/01699r503', 'en', 1, 'https://ror.org/01699r503 St. Margaret''s Hospital for Women'), (6028, 'https://ror.org/0169taq91', 'no_lang_code', 1, 'https://ror.org/0169taq91 Futures Group (United States)'), (6029, 'https://ror.org/016brq605', 'de', 1, 'https://ror.org/016brq605 Apherese Forschungsinstitut'), (6030, 'https://ror.org/016cdf784', 'no_lang_code', 1, 'https://ror.org/016cdf784 BioReliance (United States)'), (6031, 'https://ror.org/016chgx50', 'no_lang_code', 1, 'https://ror.org/016chgx50 Sasaki Institute 佐々木研究所'), (6032, 'https://ror.org/016cxc226', 'es', 1, 'https://ror.org/016cxc226 Complejo Hospitalario de Pontevedra'), (6033, 'https://ror.org/016d8zs37', 'en', 1, 'https://ror.org/016d8zs37 Methodist Healthcare'), (6034, 'https://ror.org/016dr6b81', 'en', 1, 'https://ror.org/016dr6b81 Waterbury Hospital'), (6035, 'https://ror.org/016hfp155', 'en', 1, 'https://ror.org/016hfp155 Institute of Biomedical Problems Федеральное государственное бюджетное учреждение науки Государственный научный центр Российской Федерации - Институт медико-биологических проблем Российской академии наук'), (6036, 'https://ror.org/016hnw741', 'no_lang_code', 1, 'https://ror.org/016hnw741 Centre for Technology Research & Innovation (Cyprus)'), (6037, 'https://ror.org/016jbz672', 'no_lang_code', 1, 'https://ror.org/016jbz672 MandalMed (United States)'), (6038, 'https://ror.org/016kk8e44', 'no_lang_code', 1, 'https://ror.org/016kk8e44 Ventria Bioscience (United States)'), (6039, 'https://ror.org/016mnbp44', 'no_lang_code', 1, 'https://ror.org/016mnbp44 Vi Technology (United States)'), (6040, 'https://ror.org/016n06b36', 'en', 1, 'https://ror.org/016n06b36 Franciscan Hammond Clinic'), (6041, 'https://ror.org/016n3sp21', 'en', 1, 'https://ror.org/016n3sp21 Society of British Water and Wastewater Industries'), (6042, 'https://ror.org/016p29p27', 'no_lang_code', 1, 'https://ror.org/016p29p27 TopoGEN (United States)'), (6043, 'https://ror.org/016pn1y21', 'no_lang_code', 1, 'https://ror.org/016pn1y21 Axcelon Biopolymers (Canada)'), (6044, 'https://ror.org/016pn2j58', 'en', 1, 'https://ror.org/016pn2j58 Amity Foundation'), (6045, 'https://ror.org/016s23c19', 'en', 1, 'https://ror.org/016s23c19 Morton Arboretum'), (6046, 'https://ror.org/016sds817', 'en', 1, 'https://ror.org/016sds817 Tiroler Krebsforschungsinstitut Tyrolean Cancer Research Institute'), (6047, 'https://ror.org/016t25n48', 'no_lang_code', 1, 'https://ror.org/016t25n48 Quasars (United States)'), (6048, 'https://ror.org/016t6qg15', 'no_lang_code', 1, 'https://ror.org/016t6qg15 PENTAX Medical Company (United States)'), (6049, 'https://ror.org/016tybp74', 'en', 1, 'https://ror.org/016tybp74 North Riding Infirmary'), (6050, 'https://ror.org/016tysf12', 'en', 1, 'https://ror.org/016tysf12 Western Technical College'), (6051, 'https://ror.org/017136v53', 'en', 1, 'https://ror.org/017136v53 Genomics Institute of the Novartis Research Foundation'), (6052, 'https://ror.org/0173mx324', 'en', 1, 'https://ror.org/0173mx324 Family Research Institute'), (6053, 'https://ror.org/0173xeq43', 'en', 1, 'https://ror.org/0173xeq43 Nottingham City Council'), (6054, 'https://ror.org/01743cc72', 'no_lang_code', 1, 'https://ror.org/01743cc72 Servelec Technologies (United Kingdom)'), (6055, 'https://ror.org/0174vdd62', 'no_lang_code', 1, 'https://ror.org/0174vdd62 Pasadero (United States)'), (6056, 'https://ror.org/0175ya539', 'en', 1, 'https://ror.org/0175ya539 Koninklijke Kentalis Royal Dutch Kentalis'), (6057, 'https://ror.org/0178xk096', 'en', 1, 'https://ror.org/0178xk096 International Institute for Population Sciences'), (6058, 'https://ror.org/017arrg98', 'en', 1, 'https://ror.org/017arrg98 Department of Alcohol, Drug, and Mental Health Services'), (6059, 'https://ror.org/017bd5k63', 'en', 1, 'https://ror.org/017bd5k63 Zuoying Armed Forces General Hospital 國軍高雄總醫院'), (6060, 'https://ror.org/017bedv79', 'en', 1, 'https://ror.org/017bedv79 Ruby Hall Clinic'), (6061, 'https://ror.org/017fh2655', 'es', 1, 'https://ror.org/017fh2655 Instituto Nacional de Enfermedades Respiratorias, Instituto Nacional de Enfermedades Respiratorias Ismael Cosío Villegas'), (6062, 'https://ror.org/017j6af40', 'it', 1, 'https://ror.org/017j6af40 Ospedale Humanitas Gradenigo'), (6063, 'https://ror.org/017je7s69', 'en', 1, 'https://ror.org/017je7s69 National Institute for Research in Reproductive Health राष्ट्रीय प्रजनन स्वास्थ्य अनुसंधान संस्थान'), (6064, 'https://ror.org/017m4b809', 'no_lang_code', 1, 'https://ror.org/017m4b809 NXP (United Kingdom)'), (6065, 'https://ror.org/017pcqs43', 'en', 1, 'https://ror.org/017pcqs43 D.I. Ivanovsky Institute of Virology Russian Academy of Medical Sciences НИИ вирусологии имени Д. И. Ивановского РАМН'), (6066, 'https://ror.org/017pqj756', 'no_lang_code', 1, 'https://ror.org/017pqj756 Vega Wave Systems (United States)'), (6067, 'https://ror.org/017shr829', 'no_lang_code', 1, 'https://ror.org/017shr829 LI-COR Biosciences (United States)'), (6068, 'https://ror.org/017spz608', 'no_lang_code', 1, 'https://ror.org/017spz608 Aker Arctic (Canada)'), (6069, 'https://ror.org/017tgty84', 'no_lang_code', 1, 'https://ror.org/017tgty84 SciAps (United States)'), (6070, 'https://ror.org/017vd4789', 'no_lang_code', 1, 'https://ror.org/017vd4789 Compugen (Israel) קומפיוג''ן'), (6071, 'https://ror.org/01820qp25', 'en', 1, 'https://ror.org/01820qp25 Ornsköldsvik Hospital Örnsköldsviks sjukhus'), (6072, 'https://ror.org/0183vre95', 'en', 1, 'https://ror.org/0183vre95 TiFN'), (6073, 'https://ror.org/0185sft94', 'no_lang_code', 1, 'https://ror.org/0185sft94 CW Optics (United States)'), (6074, 'https://ror.org/01864e038', 'en', 1, 'https://ror.org/01864e038 Montana Council of Teachers of Mathematics'), (6075, 'https://ror.org/0186yvf62', 'en', 1, 'https://ror.org/0186yvf62 Australian Academy of Science'), (6076, 'https://ror.org/0187fh156', 'de', 1, 'https://ror.org/0187fh156 Isar-Amper-Klinikum München-Ost'), (6077, 'https://ror.org/018azgd14', 'en', 1, 'https://ror.org/018azgd14 National Institute of Cholera and Enteric Diseases'), (6078, 'https://ror.org/018cxtf62', 'en', 1, 'https://ror.org/018cxtf62 Earlham Institute'), (6079, 'https://ror.org/018f35e53', 'en', 1, 'https://ror.org/018f35e53 Health Media Lab'), (6080, 'https://ror.org/018hk2b97', 'en', 1, 'https://ror.org/018hk2b97 Denver VA Medical Center'), (6081, 'https://ror.org/018j3hx85', 'pt', 1, 'https://ror.org/018j3hx85 Escola Superior de Tecnologia da Saúde de Coimbra'), (6082, 'https://ror.org/018kd1e03', 'en', 1, 'https://ror.org/018kd1e03 Wesley Hospital'), (6083, 'https://ror.org/018m20m74', 'en', 1, 'https://ror.org/018m20m74 Human BioMolecular Research Institute'), (6084, 'https://ror.org/018mrwd51', 'no_lang_code', 1, 'https://ror.org/018mrwd51 Advanced Computer System (Italy)'), (6085, 'https://ror.org/018nkky79', 'no_lang_code', 1, 'https://ror.org/018nkky79 Tuen Mun Hospital 屯門醫院'), (6086, 'https://ror.org/018pfsv20', 'en', 1, 'https://ror.org/018pfsv20 Lexington Richland Alcohol And Drug Abuse Council'), (6087, 'https://ror.org/018qep702', 'no_lang_code', 1, 'https://ror.org/018qep702 General Motors (Germany)'), (6088, 'https://ror.org/018r1es63', 'en', 1, 'https://ror.org/018r1es63 Massachusetts Bay Community College'), (6089, 'https://ror.org/018v91w71', 'en', 1, 'https://ror.org/018v91w71 Missouri Bone and Joint Center'), (6090, 'https://ror.org/018xkrg73', 'fr', 1, 'https://ror.org/018xkrg73 Collège d''Alma'), (6091, 'https://ror.org/018zaej71', 'it', 1, 'https://ror.org/018zaej71 Ospedale di San Donà di Piave'), (6092, 'https://ror.org/0190p7071', 'no_lang_code', 1, 'https://ror.org/0190p7071 General Electric (Sweden)'), (6093, 'https://ror.org/0195ge738', 'en', 1, 'https://ror.org/0195ge738 Access Community Health Network'), (6094, 'https://ror.org/0199g0r92', 'en', 1, 'https://ror.org/0199g0r92 Max Planck Institute for Metabolism Research Max-Planck-Institut für Stoffwechselforschung'), (6095, 'https://ror.org/019a0n503', 'no_lang_code', 1, 'https://ror.org/019a0n503 Cerestech (Canada)'), (6096, 'https://ror.org/019bpax96', 'en', 1, 'https://ror.org/019bpax96 Southern Governors Association'), (6097, 'https://ror.org/019fkcf66', 'en', 1, 'https://ror.org/019fkcf66 Guangzhou Blood Center'), (6098, 'https://ror.org/019kwgw50', 'no_lang_code', 1, 'https://ror.org/019kwgw50 Ionwerks (United States)'), (6099, 'https://ror.org/019m6fr90', 'no_lang_code', 1, 'https://ror.org/019m6fr90 New York Audio Productions (United States)'), (6100, 'https://ror.org/019mfbd19', 'no_lang_code', 1, 'https://ror.org/019mfbd19 Quest Clinical Research (United States)'), (6101, 'https://ror.org/019n8y489', 'en', 1, 'https://ror.org/019n8y489 Utah Valley Regional Medical Center'), (6102, 'https://ror.org/019nmf858', 'en', 1, 'https://ror.org/019nmf858 Central Potato Research Institute'), (6103, 'https://ror.org/019rsbe67', 'no_lang_code', 1, 'https://ror.org/019rsbe67 Jazz Pharmaceuticals (United States)'), (6104, 'https://ror.org/019wssg97', 'no_lang_code', 1, 'https://ror.org/019wssg97 Altana (Germany)'), (6105, 'https://ror.org/019x26026', 'en', 1, 'https://ror.org/019x26026 Uwajima City Hospital 宇和島市病院'), (6106, 'https://ror.org/019xfaf13', 'en', 1, 'https://ror.org/019xfaf13 Astronomical Society of the Pacific'), (6107, 'https://ror.org/019xgv883', 'en', 1, 'https://ror.org/019xgv883 Science East Association'), (6108, 'https://ror.org/019y5r485', 'no_lang_code', 1, 'https://ror.org/019y5r485 Nesher Technologies (United States)'), (6109, 'https://ror.org/01a079157', 'no_lang_code', 1, 'https://ror.org/01a079157 Siemens (Portugal)'), (6110, 'https://ror.org/01a0veq54', 'no_lang_code', 1, 'https://ror.org/01a0veq54 Sri Gokulam Hospital'), (6111, 'https://ror.org/01a0xxp39', 'en', 1, 'https://ror.org/01a0xxp39 Institute of Basic Biological Problems Федеральное государственное бюджетное учреждение науки Институт фундаментальных проблем биологии РАН'), (6112, 'https://ror.org/01a4p1q97', 'no_lang_code', 1, 'https://ror.org/01a4p1q97 LNKChemsolutions'), (6113, 'https://ror.org/01a4t3393', 'en', 1, 'https://ror.org/01a4t3393 Central Electricity Generating Board'), (6114, 'https://ror.org/01a6nzt97', 'no_lang_code', 1, 'https://ror.org/01a6nzt97 Cytobank (United States)'), (6115, 'https://ror.org/01a8ynn13', 'en', 1, 'https://ror.org/01a8ynn13 The Langton Grammar School for Boys'), (6116, 'https://ror.org/01a92vw29', 'lv', 1, 'https://ror.org/01a92vw29 Latvian Institute of Organic Synthesis Latvijas Organiskās Sintēzes Institūts'), (6117, 'https://ror.org/01ab3z839', 'en', 1, 'https://ror.org/01ab3z839 National Perinatal Information Center'), (6118, 'https://ror.org/01ab8nr44', 'en', 1, 'https://ror.org/01ab8nr44 Council on Undergraduate Research'), (6119, 'https://ror.org/01ac4hv54', 'it', 1, 'https://ror.org/01ac4hv54 Semeion Centro Ricerche di Scienze della Comunicazione'), (6120, 'https://ror.org/01ada6a49', 'no_lang_code', 1, 'https://ror.org/01ada6a49 Reaction Biology Corporation (United States)'), (6121, 'https://ror.org/01ae87070', 'it', 1, 'https://ror.org/01ae87070 Ospedale A. Perrino'), (6122, 'https://ror.org/01aegrf07', 'en', 1, 'https://ror.org/01aegrf07 Canadian AIDS Society Société Canadienne du Sida'), (6123, 'https://ror.org/01aetpp13', 'en', 1, 'https://ror.org/01aetpp13 Centre for Process Innovation'), (6124, 'https://ror.org/01ag6an54', 'en', 1, 'https://ror.org/01ag6an54 Cook Inlet Tribal Council'), (6125, 'https://ror.org/01ag7n936', 'es', 1, 'https://ror.org/01ag7n936 Centro Rosarino de Estudios Perinatales'), (6126, 'https://ror.org/01ahb7328', 'en', 1, 'https://ror.org/01ahb7328 Institute for Healthcare Improvement'), (6127, 'https://ror.org/01ajqvg59', 'en', 1, 'https://ror.org/01ajqvg59 United States Army Aeromedical Research Lab'), (6128, 'https://ror.org/01amarv06', 'en', 1, 'https://ror.org/01amarv06 v. Bodelschwing Foundation Bethel v. Bodelschwinghsche Stiftungen Bethel'), (6129, 'https://ror.org/01aptcd74', 'no_lang_code', 1, 'https://ror.org/01aptcd74 Sanofi (Canada)'), (6130, 'https://ror.org/01aq2db46', 'no_lang_code', 1, 'https://ror.org/01aq2db46 ImmuNext (United States)'), (6131, 'https://ror.org/01ask7p77', 'no_lang_code', 1, 'https://ror.org/01ask7p77 Sparos (Portugal)'), (6132, 'https://ror.org/01ass5t61', 'en', 1, 'https://ror.org/01ass5t61 Jean Hailes'), (6133, 'https://ror.org/01astg473', 'en', 1, 'https://ror.org/01astg473 Japan Biological Informatics Consortium 般社団法人バイオ産業情報化コンソーシアム'), (6134, 'https://ror.org/01ax1zp32', 'no_lang_code', 1, 'https://ror.org/01ax1zp32 CustomKYnetics (United States)'), (6135, 'https://ror.org/01ayagd95', 'no_lang_code', 1, 'https://ror.org/01ayagd95 Alternative Futures Associates'), (6136, 'https://ror.org/01azqfh67', 'en', 1, 'https://ror.org/01azqfh67 Together'), (6137, 'https://ror.org/01b09k795', 'en', 1, 'https://ror.org/01b09k795 APT Foundation'), (6138, 'https://ror.org/01b11x021', 'en', 1, 'https://ror.org/01b11x021 Hull and East Yorkshire Hospitals NHS Trust'), (6139, 'https://ror.org/01b1g5g41', 'en', 1, 'https://ror.org/01b1g5g41 Greater Manchester STEM Centre'), (6140, 'https://ror.org/01b4q9c55', 'hu', 1, 'https://ror.org/01b4q9c55 National Institute of Clinical Neurosciences Országos Idegsebészeti Tudományos Intézet'), (6141, 'https://ror.org/01b5xma27', 'en', 1, 'https://ror.org/01b5xma27 Greenfield Community College'), (6142, 'https://ror.org/01b9fyy36', 'en', 1, 'https://ror.org/01b9fyy36 Visions of Science Network for Learning'), (6143, 'https://ror.org/01b9qpe41', 'fr', 1, 'https://ror.org/01b9qpe41 Institut de Recherche en Opthalmologie'), (6144, 'https://ror.org/01bawqf59', 'en', 1, 'https://ror.org/01bawqf59 Shonan Institute of Technology 湘南工科大学'), (6145, 'https://ror.org/01bf9rw71', 'en', 1, 'https://ror.org/01bf9rw71 Max Planck Institute for the Physics of Complex Systems Max-Planck-Institut für Physik Komplexer Systeme'), (6146, 'https://ror.org/01bh4p295', 'en', 1, 'https://ror.org/01bh4p295 Erskine College'), (6147, 'https://ror.org/01bh91531', 'en', 1, 'https://ror.org/01bh91531 National Institute for Biotechnology and Genetic Engineering'), (6148, 'https://ror.org/01bjkkp81', 'no_lang_code', 1, 'https://ror.org/01bjkkp81 GNS Healthcare (United States)'), (6149, 'https://ror.org/01bjmbg26', 'en', 1, 'https://ror.org/01bjmbg26 Waterwise'), (6150, 'https://ror.org/01bk7pz18', 'no_lang_code', 1, 'https://ror.org/01bk7pz18 Tokushima Prefectural Central Hospital 徳島県立中央病院'), (6151, 'https://ror.org/01bk7tw31', 'en', 1, 'https://ror.org/01bk7tw31 Wireless Innovation Forum'), (6152, 'https://ror.org/01bnjyq25', 'de', 1, 'https://ror.org/01bnjyq25 GP Forschungsgruppe, Instituts für Grundlagen und Programmforschung'), (6153, 'https://ror.org/01bp1mp13', 'no_lang_code', 1, 'https://ror.org/01bp1mp13 Photodigm (United States)'), (6154, 'https://ror.org/01bpck236', 'no_lang_code', 1, 'https://ror.org/01bpck236 Global Relay (Canada)'), (6155, 'https://ror.org/01bqvsn34', 'en', 1, 'https://ror.org/01bqvsn34 Park Plaza Hospital'), (6156, 'https://ror.org/01brzkg31', 'no_lang_code', 1, 'https://ror.org/01brzkg31 InstaRecon (United States)'), (6157, 'https://ror.org/01bs8y378', 'no_lang_code', 1, 'https://ror.org/01bs8y378 Autoimmune Technologies (United States)'), (6158, 'https://ror.org/01bt01h96', 'en', 1, 'https://ror.org/01bt01h96 Environmental Law Institute'), (6159, 'https://ror.org/01btmdt42', 'no_lang_code', 1, 'https://ror.org/01btmdt42 Dynavax Technologies (United States)'), (6160, 'https://ror.org/01btzz102', 'en', 1, 'https://ror.org/01btzz102 University of Health Sciences and Pharmacy'), (6161, 'https://ror.org/01by6g473', 'en', 1, 'https://ror.org/01by6g473 Central Oregon Community College'), (6162, 'https://ror.org/01bz6xa25', 'no_lang_code', 1, 'https://ror.org/01bz6xa25 Rigaku (United Kingdom)'), (6163, 'https://ror.org/01bzgdw81', 'en', 1, 'https://ror.org/01bzgdw81 Indian Agricultural Research Institute भारतीय कृषि अनुसंधान संस्थान இந்திய வேளாண் ஆராய்ச்சிக் கழகம்'), (6164, 'https://ror.org/01c0hdt76', 'no_lang_code', 1, 'https://ror.org/01c0hdt76 Acumen (United States)'), (6165, 'https://ror.org/01c0rkd54', 'no_lang_code', 1, 'https://ror.org/01c0rkd54 Maine Molecular Quality Controls (United States)'), (6166, 'https://ror.org/01c1ce922', 'it', 1, 'https://ror.org/01c1ce922 Nuovo Ospedale San Giovanni di Dio'), (6167, 'https://ror.org/01c20ew23', 'en', 1, 'https://ror.org/01c20ew23 Genetics and IVF Institute'), (6168, 'https://ror.org/01c39ny75', 'no_lang_code', 1, 'https://ror.org/01c39ny75 OcuMetrics (United States)'), (6169, 'https://ror.org/01c3pwn40', 'no_lang_code', 1, 'https://ror.org/01c3pwn40 Kent Displays (United States)'), (6170, 'https://ror.org/01c44a921', 'en', 1, 'https://ror.org/01c44a921 Proteogenomics Research Institute for Systems Medicine'), (6171, 'https://ror.org/01c5r7j06', 'es', 1, 'https://ror.org/01c5r7j06 Instituto de Neurologia Y Neurocirugia'), (6172, 'https://ror.org/01c66cc89', 'en', 1, 'https://ror.org/01c66cc89 Prince Albert Grand Council'), (6173, 'https://ror.org/01c6k3h93', 'no_lang_code', 1, 'https://ror.org/01c6k3h93 Teva Pharmaceuticals (Canada)'), (6174, 'https://ror.org/01c7jsk34', 'en', 1, 'https://ror.org/01c7jsk34 National Institute for Pharmaceutical Research and Development'), (6175, 'https://ror.org/01c8cwz57', 'fr', 1, 'https://ror.org/01c8cwz57 Institut pour la Recherche sur le Cancer de Lille'), (6176, 'https://ror.org/01c997669', 'en', 1, 'https://ror.org/01c997669 Max Planck Institute for Chemical Physics of Solids Max-Planck-Institut für Chemische Physik Fester Stoffe'), (6177, 'https://ror.org/01c9wxw51', 'no_lang_code', 1, 'https://ror.org/01c9wxw51 ImQuest BioSciences (United States)'), (6178, 'https://ror.org/01cacm735', 'en', 1, 'https://ror.org/01cacm735 Fortis Escorts Heart Institute'), (6179, 'https://ror.org/01cegnf65', 'en', 1, 'https://ror.org/01cegnf65 American Indian Science and Engineering Society'), (6180, 'https://ror.org/01cf5z404', 'no_lang_code', 1, 'https://ror.org/01cf5z404 Robin Medical (United States)'), (6181, 'https://ror.org/01cfdy756', 'en', 1, 'https://ror.org/01cfdy756 Marie Selby Botanical Gardens'), (6182, 'https://ror.org/01chs2347', 'no_lang_code', 1, 'https://ror.org/01chs2347 Ingegneria dei Sistemi (United Kingdom)'), (6183, 'https://ror.org/01cj6ar20', 'no_lang_code', 1, 'https://ror.org/01cj6ar20 DiscoveryBioMed (United States)'), (6184, 'https://ror.org/01ck0pr88', 'en', 1, 'https://ror.org/01ck0pr88 Bradford Royal Infirmary'), (6185, 'https://ror.org/01ckbq028', 'en', 1, 'https://ror.org/01ckbq028 Whittington Hospital'), (6186, 'https://ror.org/01cmq9k07', 'no_lang_code', 1, 'https://ror.org/01cmq9k07 Institute for Learning Innovation (United States)'), (6187, 'https://ror.org/01cnxmm67', 'en', 1, 'https://ror.org/01cnxmm67 Morris Brown College'), (6188, 'https://ror.org/01cs14q41', 'en', 1, 'https://ror.org/01cs14q41 Glangwili General Hospital Ysbyty Cyffredinol Glangwili'), (6189, 'https://ror.org/01ctbbh52', 'en', 1, 'https://ror.org/01ctbbh52 Palmerston North Hospital'), (6190, 'https://ror.org/01cx4xa29', 'de', 1, 'https://ror.org/01cx4xa29 Fondation pour la Sécurité des Patients Stiftung Patientensicherheit Schweiz'), (6191, 'https://ror.org/01cyxs230', 'en', 1, 'https://ror.org/01cyxs230 Shanghai Blood Center'), (6192, 'https://ror.org/01cyzat07', 'en', 1, 'https://ror.org/01cyzat07 Wesley Guild Hospital'), (6193, 'https://ror.org/01d1kad18', 'no_lang_code', 1, 'https://ror.org/01d1kad18 Otaru Municipal Hospital 小樽市立病院'), (6194, 'https://ror.org/01d1m4h32', 'en', 1, 'https://ror.org/01d1m4h32 Samaritan Center'), (6195, 'https://ror.org/01d2yj180', 'no_lang_code', 1, 'https://ror.org/01d2yj180 Technology For Magnetic Resonance (United States)'), (6196, 'https://ror.org/01d3e8y10', 'en', 1, 'https://ror.org/01d3e8y10 International Institute of Anthropology'), (6197, 'https://ror.org/01d6tbx77', 'en', 1, 'https://ror.org/01d6tbx77 Worcestershire Royal Hospital'), (6198, 'https://ror.org/01d71vb80', 'en', 1, 'https://ror.org/01d71vb80 Fernández-Vega Ophthalmological Institute'), (6199, 'https://ror.org/01d9afc73', 'en', 1, 'https://ror.org/01d9afc73 Montrose Center'), (6200, 'https://ror.org/01d9xyz57', 'en', 1, 'https://ror.org/01d9xyz57 Paul Smith''s College'), (6201, 'https://ror.org/01dd0rh60', 'no_lang_code', 1, 'https://ror.org/01dd0rh60 NuvoGen Research (United States)'), (6202, 'https://ror.org/01ddmwy83', 'fr', 1, 'https://ror.org/01ddmwy83 Centre Ophtalmologique d''Imagerie et de Laser'), (6203, 'https://ror.org/01ddxdd19', 'no_lang_code', 1, 'https://ror.org/01ddxdd19 Constructions Industrielles de la Méditerranée (France)'), (6204, 'https://ror.org/01decj058', 'no_lang_code', 1, 'https://ror.org/01decj058 Dianon (United States)'), (6205, 'https://ror.org/01df0yh77', 'no_lang_code', 1, 'https://ror.org/01df0yh77 Condax (United States)'), (6206, 'https://ror.org/01dg04253', 'en', 1, 'https://ror.org/01dg04253 Institute of Bioorganic Chemistry Федеральное государственное бюджетное учреждение науки Институт биоорганической химии им. академиков М.М. Шемякина и Ю.А. Овчинникова Российской академии наук'), (6207, 'https://ror.org/01dgncy67', 'no_lang_code', 1, 'https://ror.org/01dgncy67 Saiseikai Shimonoseki General Hospital 山口県済生会下関総合病院'), (6208, 'https://ror.org/01dhwg439', 'no_lang_code', 1, 'https://ror.org/01dhwg439 Hauser (United States)'), (6209, 'https://ror.org/01dk0y732', 'no_lang_code', 1, 'https://ror.org/01dk0y732 Advanced Lightweight Engineering (Netherlands)'), (6210, 'https://ror.org/01dk36s50', 'pt', 1, 'https://ror.org/01dk36s50 Instituto Lauro de Souza Lima'), (6211, 'https://ror.org/01dk4b453', 'en', 1, 'https://ror.org/01dk4b453 Pasadena City College'), (6212, 'https://ror.org/01dk89r22', 'en', 1, 'https://ror.org/01dk89r22 City Colleges of Chicago Colegios Comunitarios de Chicago'), (6213, 'https://ror.org/01dm0m970', 'no_lang_code', 1, 'https://ror.org/01dm0m970 Alethia Biotherapeutics (Canada)'), (6214, 'https://ror.org/01dmjt679', 'en', 1, 'https://ror.org/01dmjt679 Roessingh Research and Development'), (6215, 'https://ror.org/01dp60j32', 'no_lang_code', 1, 'https://ror.org/01dp60j32 International Rectifier (United Kingdom)'), (6216, 'https://ror.org/01dp84930', 'no_lang_code', 1, 'https://ror.org/01dp84930 Indium Corporation (United States)'), (6217, 'https://ror.org/01dpfst30', 'no_lang_code', 1, 'https://ror.org/01dpfst30 MicroLink Devices (United States)'), (6218, 'https://ror.org/01dq23791', 'it', 1, 'https://ror.org/01dq23791 Ospedale Civile di Vittorio Veneto'), (6219, 'https://ror.org/01dqayp38', 'en', 1, 'https://ror.org/01dqayp38 College of Family Physicians of Canada Le Collège des Médecins de Famille du Canada'), (6220, 'https://ror.org/01dswgm35', 'en', 1, 'https://ror.org/01dswgm35 Talladega College'), (6221, 'https://ror.org/01dvp8b67', 'en', 1, 'https://ror.org/01dvp8b67 Combustion Institute'), (6222, 'https://ror.org/01dwzs847', 'no_lang_code', 1, 'https://ror.org/01dwzs847 Cell Gate (United States)'), (6223, 'https://ror.org/01dy2q607', 'it', 1, 'https://ror.org/01dy2q607 Istituto di Biomedicina e di Immunologia Molecolare Alberto Monroy'), (6224, 'https://ror.org/01e17d143', 'en', 1, 'https://ror.org/01e17d143 Institute of Organic Chemistry Instytut Chemii Organicznej PAN'), (6225, 'https://ror.org/01e2q0308', 'fr', 1, 'https://ror.org/01e2q0308 Hôpital de l''Antiquaille'), (6226, 'https://ror.org/01e47qp55', 'no_lang_code', 1, 'https://ror.org/01e47qp55 Mapp Biopharmaceutical (United States)'), (6227, 'https://ror.org/01e6deg73', 'en', 1, 'https://ror.org/01e6deg73 Baylor College of Medicine Children’s Foundation'), (6228, 'https://ror.org/01e70mw69', 'en', 1, 'https://ror.org/01e70mw69 Indian Institute of Toxicology Research भारतीय विषविज्ञान अनुसंधान संस्थान'), (6229, 'https://ror.org/01e8bdb34', 'no_lang_code', 1, 'https://ror.org/01e8bdb34 SRK Healthcare (United States)'), (6230, 'https://ror.org/01e8hcf19', 'en', 1, 'https://ror.org/01e8hcf19 American Ceramic Society'), (6231, 'https://ror.org/01e8tvg28', 'it', 1, 'https://ror.org/01e8tvg28 Fondazione Salvatore Maugeri'), (6232, 'https://ror.org/01e94xy17', 'en', 1, 'https://ror.org/01e94xy17 Northern New Mexico College'), (6233, 'https://ror.org/01eadrh05', 'en', 1, 'https://ror.org/01eadrh05 Oregon Clinic'), (6234, 'https://ror.org/01ecs7r71', 'no_lang_code', 1, 'https://ror.org/01ecs7r71 LungLife AI (United States)'), (6235, 'https://ror.org/01ef4m131', 'no_lang_code', 1, 'https://ror.org/01ef4m131 Sirnaomics (United States)'), (6236, 'https://ror.org/01egexe84', 'no_lang_code', 1, 'https://ror.org/01egexe84 Kardium (Canada)'), (6237, 'https://ror.org/01ek5c080', 'en', 1, 'https://ror.org/01ek5c080 Methodist Richardson Medical Center'), (6238, 'https://ror.org/01em4t310', 'no_lang_code', 1, 'https://ror.org/01em4t310 Analogue Theatre (United Kingdom)'), (6239, 'https://ror.org/01engnx74', 'en', 1, 'https://ror.org/01engnx74 Cystic Fibrosis Research Foundation'), (6240, 'https://ror.org/01eqrs044', 'no_lang_code', 1, 'https://ror.org/01eqrs044 Sensei Biotherapeutics (United States)'), (6241, 'https://ror.org/01ev8n617', 'en', 1, 'https://ror.org/01ev8n617 American Association of Variable Star Observers'), (6242, 'https://ror.org/01extmz43', 'fr', 1, 'https://ror.org/01extmz43 Centre hospitalier de Rouffach'), (6243, 'https://ror.org/01ez8ve21', 'en', 1, 'https://ror.org/01ez8ve21 Special Health Resources for Texas'), (6244, 'https://ror.org/01ezk2d60', 'no_lang_code', 1, 'https://ror.org/01ezk2d60 Indian Drugs and Pharmaceuticals Limited'), (6245, 'https://ror.org/01f02ys47', 'no_lang_code', 1, 'https://ror.org/01f02ys47 Gateway Community Services (United States)'), (6246, 'https://ror.org/01f0wmg23', 'en', 1, 'https://ror.org/01f0wmg23 Stone Child College'), (6247, 'https://ror.org/01f1j2n15', 'en', 1, 'https://ror.org/01f1j2n15 Educational Service District 112'), (6248, 'https://ror.org/01f2jgq77', 'en', 1, 'https://ror.org/01f2jgq77 H2O 4 All'), (6249, 'https://ror.org/01f3h2s79', 'no_lang_code', 1, 'https://ror.org/01f3h2s79 Agennix (United States)'), (6250, 'https://ror.org/01f3njc68', 'en', 1, 'https://ror.org/01f3njc68 National Maritime Museum'), (6251, 'https://ror.org/01f3qhk13', 'en', 1, 'https://ror.org/01f3qhk13 Riekes Center for Human Enhancement'), (6252, 'https://ror.org/01f7dp456', 'en', 1, 'https://ror.org/01f7dp456 Ministry of Food and Drug Safety'), (6253, 'https://ror.org/01f8vhd41', 'pt', 1, 'https://ror.org/01f8vhd41 Instituto Nacional de Metrologia, Qualidade e Tecnologia National Institute of Metrology Quality and Technology'), (6254, 'https://ror.org/01faz8m53', 'no_lang_code', 1, 'https://ror.org/01faz8m53 MicroOptical Engineering (United States)'), (6255, 'https://ror.org/01fbde567', 'en', 1, 'https://ror.org/01fbde567 Max Planck Institute of Molecular Plant Physiology Max-Planck-Institut für molekulare Pflanzenphysiologie'), (6256, 'https://ror.org/01fbet514', 'no_lang_code', 1, 'https://ror.org/01fbet514 BioChem Technology (United States)'), (6257, 'https://ror.org/01fbp1n03', 'no_lang_code', 1, 'https://ror.org/01fbp1n03 Synthecon (United States)'), (6258, 'https://ror.org/01fdz0a43', 'no_lang_code', 1, 'https://ror.org/01fdz0a43 Ribonomics (United States)'), (6259, 'https://ror.org/01fev7c67', 'en', 1, 'https://ror.org/01fev7c67 Confederation of European Forest Owners Confédération Européenne des Propriétaires Forestiers'), (6260, 'https://ror.org/01fgq8278', 'no_lang_code', 1, 'https://ror.org/01fgq8278 DSM (Switzerland)'), (6261, 'https://ror.org/01fh23w56', 'en', 1, 'https://ror.org/01fh23w56 Chicago Institute for Psychoanalysis'), (6262, 'https://ror.org/01fh9k283', 'es', 1, 'https://ror.org/01fh9k283 Fundación Instituto Valenciano de Oncología'), (6263, 'https://ror.org/01fk4js58', 'en', 1, 'https://ror.org/01fk4js58 Sacred Space Foundation'), (6264, 'https://ror.org/01fpjqs91', 'en', 1, 'https://ror.org/01fpjqs91 St. Joseph''s Hospital'), (6265, 'https://ror.org/01fptm710', 'pt', 1, 'https://ror.org/01fptm710 Instituto de Botânica'), (6266, 'https://ror.org/01ftkxq60', 'no_lang_code', 1, 'https://ror.org/01ftkxq60 Cytel (United States)'), (6267, 'https://ror.org/01fydjk85', 'no_lang_code', 1, 'https://ror.org/01fydjk85 Earth Images Foundation (United States)'), (6268, 'https://ror.org/01fz8x241', 'en', 1, 'https://ror.org/01fz8x241 National Hemophilia Foundation'), (6269, 'https://ror.org/01g0q1j14', 'en', 1, 'https://ror.org/01g0q1j14 Converse College'), (6270, 'https://ror.org/01g19gh26', 'no_lang_code', 1, 'https://ror.org/01g19gh26 Carter Printing Company (United States)'), (6271, 'https://ror.org/01g1che35', 'no_lang_code', 1, 'https://ror.org/01g1che35 Trudell Medical International (Canada)'), (6272, 'https://ror.org/01g1mnc10', 'no_lang_code', 1, 'https://ror.org/01g1mnc10 Transfusion and Transplantation Technologies (United States)'), (6273, 'https://ror.org/01g31bd79', 'en', 1, 'https://ror.org/01g31bd79 International Technology and Engineering Educators Association'), (6274, 'https://ror.org/01g4j3g78', 'en', 1, 'https://ror.org/01g4j3g78 Vanha Vaasa hospital Vanhan Vaasan Sairaala'), (6275, 'https://ror.org/01g7qth32', 'en', 1, 'https://ror.org/01g7qth32 Institute of Minerals and Materials Technology'), (6276, 'https://ror.org/01g7ypx22', 'en', 1, 'https://ror.org/01g7ypx22 Washington Department of Social and Health Services'), (6277, 'https://ror.org/01g8b9k67', 'en', 1, 'https://ror.org/01g8b9k67 Center for Image Processing in Education'), (6278, 'https://ror.org/01g8hb609', 'it', 1, 'https://ror.org/01g8hb609 Consorzio Catania Ricerche'), (6279, 'https://ror.org/01g9x3v85', 'en', 1, 'https://ror.org/01g9x3v85 Agencia Federal para el Manejo de Emergencias Federal Emergency Management Agency'), (6280, 'https://ror.org/01ga31z69', 'no_lang_code', 1, 'https://ror.org/01ga31z69 Cochlear (United States)'), (6281, 'https://ror.org/01gazqa80', 'pt', 1, 'https://ror.org/01gazqa80 Centro de Biotecnologia Agrícola e Agro Alimentar do Alentejo'), (6282, 'https://ror.org/01gchcj93', 'no_lang_code', 1, 'https://ror.org/01gchcj93 South Carolina ETV (United States)'), (6283, 'https://ror.org/01gckhp53', 'en', 1, 'https://ror.org/01gckhp53 Latvian Biomedical Research and Study Centre Latvijas Biomedicīnas Pētījumu un Studiju Centrs'), (6284, 'https://ror.org/01gfdf281', 'no_lang_code', 1, 'https://ror.org/01gfdf281 Agave BioSystems (United States)'), (6285, 'https://ror.org/01gh7yb82', 'no_lang_code', 1, 'https://ror.org/01gh7yb82 Center of Molecular Immunology (Cuba)'), (6286, 'https://ror.org/01gkkh788', 'no_lang_code', 1, 'https://ror.org/01gkkh788 National One Call (United Kingdom)'), (6287, 'https://ror.org/01gnjkm30', 'no_lang_code', 1, 'https://ror.org/01gnjkm30 Kapteyn Murnane Laboratories'), (6288, 'https://ror.org/01gp1hk26', 'en', 1, 'https://ror.org/01gp1hk26 North American Association of Central Cancer Registries'), (6289, 'https://ror.org/01gpjfw56', 'hu', 1, 'https://ror.org/01gpjfw56 Péterfy Sándor Utcai Kórház-Rendelőintézet és Baleseti Központ'), (6290, 'https://ror.org/01gq2tr09', 'fr', 1, 'https://ror.org/01gq2tr09 Association pour le Développement de la Recherche et de l''Innovation du Québec'), (6291, 'https://ror.org/01gqzkt51', 'no_lang_code', 1, 'https://ror.org/01gqzkt51 Second Foundation (United States)'), (6292, 'https://ror.org/01gswfc04', 'en', 1, 'https://ror.org/01gswfc04 El Paso Community College'), (6293, 'https://ror.org/01gvaa828', 'fr', 1, 'https://ror.org/01gvaa828 Hôpital d''Enfants'), (6294, 'https://ror.org/01gvm4v91', 'no_lang_code', 1, 'https://ror.org/01gvm4v91 Advanced Genetic Systems (United States)'), (6295, 'https://ror.org/01gwh4g82', 'en', 1, 'https://ror.org/01gwh4g82 Energy Saving Trust'), (6296, 'https://ror.org/01h0ca774', 'en', 1, 'https://ror.org/01h0ca774 Research Institute of Ophthalmology'), (6297, 'https://ror.org/01h0h7640', 'no_lang_code', 1, 'https://ror.org/01h0h7640 Tata Motors (United Kingdom)'), (6298, 'https://ror.org/01h1sgg38', 'no_lang_code', 1, 'https://ror.org/01h1sgg38 Meridian Instrument (United States)'), (6299, 'https://ror.org/01h42mb65', 'no_lang_code', 1, 'https://ror.org/01h42mb65 Medical Decision Modeling (United States)'), (6300, 'https://ror.org/01h65nt31', 'en', 1, 'https://ror.org/01h65nt31 St. Mark''s Hospital'), (6301, 'https://ror.org/01h8ey223', 'it', 1, 'https://ror.org/01h8ey223 MultiMedica'), (6302, 'https://ror.org/01h8tw896', 'no_lang_code', 1, 'https://ror.org/01h8tw896 Touch of Life Technologies (United States)'), (6303, 'https://ror.org/01h95gp06', 'no_lang_code', 1, 'https://ror.org/01h95gp06 FMC (United States)'), (6304, 'https://ror.org/01h96am38', 'en', 1, 'https://ror.org/01h96am38 Zeynep Kamil Hospital Zeynep Kamil Kadın ve Çocuk Hastalıkları Eğitim Ve Araştırma Hastanesi'), (6305, 'https://ror.org/01hbes477', 'en', 1, 'https://ror.org/01hbes477 Franciscan Health'), (6306, 'https://ror.org/01hdk3d05', 'en', 1, 'https://ror.org/01hdk3d05 San Antonio College'), (6307, 'https://ror.org/01heabd70', 'no_lang_code', 1, 'https://ror.org/01heabd70 Signum Biosciences (United States)'), (6308, 'https://ror.org/01hmaf534', 'en', 1, 'https://ror.org/01hmaf534 Northland College'), (6309, 'https://ror.org/01hnx4w34', 'en', 1, 'https://ror.org/01hnx4w34 Museu Nacional do Azulejo National Azulejo Museum'), (6310, 'https://ror.org/01hpb1x88', 'no_lang_code', 1, 'https://ror.org/01hpb1x88 EKOS Corporation'), (6311, 'https://ror.org/01hr7mm17', 'no_lang_code', 1, 'https://ror.org/01hr7mm17 Regis Technologies (United States)'), (6312, 'https://ror.org/01hrt5088', 'en', 1, 'https://ror.org/01hrt5088 Catawba College'), (6313, 'https://ror.org/01hs8x754', 'en', 1, 'https://ror.org/01hs8x754 Tygerberg Hospital'), (6314, 'https://ror.org/01htjvr84', 'en', 1, 'https://ror.org/01htjvr84 Institute of Primate Research'), (6315, 'https://ror.org/01hw8xc07', 'en', 1, 'https://ror.org/01hw8xc07 Northern Illinois Council on Alcohol and Substance Abuse'), (6316, 'https://ror.org/01hwxey28', 'en', 1, 'https://ror.org/01hwxey28 Volunteers of America Los Angeles'), (6317, 'https://ror.org/01hx92781', 'en', 1, 'https://ror.org/01hx92781 Children''s Tumor Foundation'), (6318, 'https://ror.org/01hzacg10', 'no_lang_code', 1, 'https://ror.org/01hzacg10 Meticube (Portugal)'), (6319, 'https://ror.org/01j1cwt71', 'en', 1, 'https://ror.org/01j1cwt71 Westminster College - Pennsylvania'), (6320, 'https://ror.org/01j1pyg35', 'no_lang_code', 1, 'https://ror.org/01j1pyg35 OriGene (United States)'), (6321, 'https://ror.org/01j538c21', 'no_lang_code', 1, 'https://ror.org/01j538c21 Evotec (United States)'), (6322, 'https://ror.org/01j8wfy63', 'no_lang_code', 1, 'https://ror.org/01j8wfy63 InnoSense (United States)'), (6323, 'https://ror.org/01j9bf827', 'en', 1, 'https://ror.org/01j9bf827 Zane State College'), (6324, 'https://ror.org/01j9pph68', 'en', 1, 'https://ror.org/01j9pph68 Orlando Regional Medical Center'), (6325, 'https://ror.org/01jbsjf80', 'es', 1, 'https://ror.org/01jbsjf80 Instituto Costarricense de Investigación y Enseñanza en Nutrición y Salud'), (6326, 'https://ror.org/01jgbgc06', 'en', 1, 'https://ror.org/01jgbgc06 A.V. Topchiev Institute of Petrochemical Synthesis Институт нефтехимического синтеза им. А.В.Топчиева'), (6327, 'https://ror.org/01jgdnq42', 'no_lang_code', 1, 'https://ror.org/01jgdnq42 OSI Systems (United States)'), (6328, 'https://ror.org/01jgzbz02', 'no_lang_code', 1, 'https://ror.org/01jgzbz02 Advanticsys (Spain)'), (6329, 'https://ror.org/01jm0aq25', 'en', 1, 'https://ror.org/01jm0aq25 Alaska Federation of Natives'), (6330, 'https://ror.org/01jnyam78', 'en', 1, 'https://ror.org/01jnyam78 Jarvis Christian College'), (6331, 'https://ror.org/01jpszw66', 'no_lang_code', 1, 'https://ror.org/01jpszw66 Cirrascale (United States)'), (6332, 'https://ror.org/01jq6tw89', 'no_lang_code', 1, 'https://ror.org/01jq6tw89 Argonon (United Kingdom)'), (6333, 'https://ror.org/01jt2bg47', 'no_lang_code', 1, 'https://ror.org/01jt2bg47 QUAD Engineering (Canada)'), (6334, 'https://ror.org/01jtghg16', 'no_lang_code', 1, 'https://ror.org/01jtghg16 DiscoveRx (United States)'), (6335, 'https://ror.org/01jv71z12', 'en', 1, 'https://ror.org/01jv71z12 International Society for Computational Biology'), (6336, 'https://ror.org/01jy3gh06', 'de', 1, 'https://ror.org/01jy3gh06 Hochrhein Institut für Rehabilitationsforschung'), (6337, 'https://ror.org/01k1ftz35', 'no_lang_code', 1, 'https://ror.org/01k1ftz35 Novartis (Japan) ノバルティス ファーマ株式会社'), (6338, 'https://ror.org/01k1p1v52', 'de', 1, 'https://ror.org/01k1p1v52 Klinikum Braunschweig'), (6339, 'https://ror.org/01k458340', 'no_lang_code', 1, 'https://ror.org/01k458340 Vancouver Biotech (Canada)'), (6340, 'https://ror.org/01k57xn28', 'sr', 1, 'https://ror.org/01k57xn28 Institut za kardiovaskularne bolesti Dedinje'), (6341, 'https://ror.org/01k5x4673', 'en', 1, 'https://ror.org/01k5x4673 Saint Francis Medical Center'), (6342, 'https://ror.org/01k6b9k02', 'en', 1, 'https://ror.org/01k6b9k02 Fuller Theological Seminary Seminario Teológico Fuller'), (6343, 'https://ror.org/01k703c10', 'fr', 1, 'https://ror.org/01k703c10 Centre Hospitalier de l''Agglomération de Nevers'), (6344, 'https://ror.org/01kfp4j62', 'no_lang_code', 1, 'https://ror.org/01kfp4j62 UNICOM Global (United States)'), (6345, 'https://ror.org/01khsr243', 'en', 1, 'https://ror.org/01khsr243 St. Peter''s Hospital'), (6346, 'https://ror.org/01kmcf465', 'fr', 1, 'https://ror.org/01kmcf465 Belgian Centre for Corrosion Study Centre Belge d''Etude de la Corrosion'), (6347, 'https://ror.org/01kn86d52', 'en', 1, 'https://ror.org/01kn86d52 Shelton State Community College'), (6348, 'https://ror.org/01kngac24', 'no_lang_code', 1, 'https://ror.org/01kngac24 A Thinking Ape (Canada)'), (6349, 'https://ror.org/01kpfrj42', 'no_lang_code', 1, 'https://ror.org/01kpfrj42 Potomac Photonics (United States)'), (6350, 'https://ror.org/01kq09n77', 'no_lang_code', 1, 'https://ror.org/01kq09n77 Altarum Institute'), (6351, 'https://ror.org/01ks7f963', 'en', 1, 'https://ror.org/01ks7f963 National Center for Disease Control राष्ट्रीय संसर्गजन्य रोग नियंत्रण संस्था'), (6352, 'https://ror.org/01kv8e326', 'en', 1, 'https://ror.org/01kv8e326 Kurashiki Medical Center 倉敷成人病センター'), (6353, 'https://ror.org/01m108388', 'no_lang_code', 1, 'https://ror.org/01m108388 Dimension Technologies (United States)'), (6354, 'https://ror.org/01m11yv70', 'no_lang_code', 1, 'https://ror.org/01m11yv70 Aktiv-Dry (United States)'), (6355, 'https://ror.org/01m178w43', 'en', 1, 'https://ror.org/01m178w43 Lahey Medical Center'), (6356, 'https://ror.org/01m260238', 'no_lang_code', 1, 'https://ror.org/01m260238 Ateknea Solutions (Spain)'), (6357, 'https://ror.org/01m2bq033', 'no_lang_code', 1, 'https://ror.org/01m2bq033 BlueRISC (United States)'), (6358, 'https://ror.org/01m2js356', 'en', 1, 'https://ror.org/01m2js356 Orthopaedic Hospital'), (6359, 'https://ror.org/01m30h796', 'no_lang_code', 1, 'https://ror.org/01m30h796 Sun Innovations (United States)'), (6360, 'https://ror.org/01m3kj726', 'en', 1, 'https://ror.org/01m3kj726 American Council on Education'), (6361, 'https://ror.org/01m9rk435', 'en', 1, 'https://ror.org/01m9rk435 Richmond University Medical Center'), (6362, 'https://ror.org/01mb01m85', 'no_lang_code', 1, 'https://ror.org/01mb01m85 HEICO (United States)'), (6363, 'https://ror.org/01mbxzz40', 'en', 1, 'https://ror.org/01mbxzz40 Arts Council England'), (6364, 'https://ror.org/01mc1qv75', 'no_lang_code', 1, 'https://ror.org/01mc1qv75 Kestrel Labs (United States)'), (6365, 'https://ror.org/01mdbyv68', 'en', 1, 'https://ror.org/01mdbyv68 Nuclear Decommissioning Authority'), (6366, 'https://ror.org/01met4463', 'no_lang_code', 1, 'https://ror.org/01met4463 Limagrain (United Kingdom)'), (6367, 'https://ror.org/01mhgyv56', 'es', 1, 'https://ror.org/01mhgyv56 Complejo Hospitalario de Cáceres'), (6368, 'https://ror.org/01mk1hj86', 'en', 1, 'https://ror.org/01mk1hj86 Paul Drude Institut für Festkörperelektronik Paul Drude Institute for Solid State Electronics'), (6369, 'https://ror.org/01mkye871', 'en', 1, 'https://ror.org/01mkye871 UPMC Altoona'), (6370, 'https://ror.org/01mmn7c12', 'no_lang_code', 1, 'https://ror.org/01mmn7c12 D-Wave Systems (Canada)'), (6371, 'https://ror.org/01mntwa59', 'no_lang_code', 1, 'https://ror.org/01mntwa59 Palatin Technologies (United States)'), (6372, 'https://ror.org/01mpm4k64', 'en', 1, 'https://ror.org/01mpm4k64 Central Research Institute of Epidemiology ФБУН Центральный НИИ эпидемиологии Роспотребнадзора'); INSERT INTO `rors` VALUES (6373, 'https://ror.org/01mq7rh19', 'no_lang_code', 1, 'https://ror.org/01mq7rh19 Biogate Laboratories (Canada)'), (6374, 'https://ror.org/01mq8sh52', 'en', 1, 'https://ror.org/01mq8sh52 Institute of Biophysics Федеральное государственное бюджетное учреждение науки Институт биофизики клетки Российской академии наук'), (6375, 'https://ror.org/01ms1q761', 'no_lang_code', 1, 'https://ror.org/01ms1q761 Bio Signal Group (United States)'), (6376, 'https://ror.org/01mtp2k51', 'no_lang_code', 1, 'https://ror.org/01mtp2k51 Sunstar (Japan) サンスター'), (6377, 'https://ror.org/01mvmtd83', 'en', 1, 'https://ror.org/01mvmtd83 Cicatelli Associates'), (6378, 'https://ror.org/01mw31v11', 'no_lang_code', 1, 'https://ror.org/01mw31v11 Simpleware (United Kingdom)'), (6379, 'https://ror.org/01mw6s018', 'it', 1, 'https://ror.org/01mw6s018 Casa di Cura Villa Garda'), (6380, 'https://ror.org/01myrq118', 'en', 1, 'https://ror.org/01myrq118 Hastings College'), (6381, 'https://ror.org/01n45xa04', 'en', 1, 'https://ror.org/01n45xa04 National Kidney Foundation'), (6382, 'https://ror.org/01n6e6j62', 'en', 1, 'https://ror.org/01n6e6j62 Agence des États-Unis pour le Développement International Agencia de los Estados Unidos para el Desarrollo Internacional United States Agency for International Development'), (6383, 'https://ror.org/01ncrbb53', 'no_lang_code', 1, 'https://ror.org/01ncrbb53 Gerber Technology (United States)'), (6384, 'https://ror.org/01nd9hr79', 'en', 1, 'https://ror.org/01nd9hr79 Forth Valley Royal Hospital'), (6385, 'https://ror.org/01nda5g26', 'no_lang_code', 1, 'https://ror.org/01nda5g26 KDH Research & Communication (United States)'), (6386, 'https://ror.org/01neevw97', 'fr', 1, 'https://ror.org/01neevw97 Clinique de Genolier'), (6387, 'https://ror.org/01nfdxd69', 'en', 1, 'https://ror.org/01nfdxd69 Institutet för Hälso- och Sjukvårdsekonomi Swedish Institute for Health Economics'), (6388, 'https://ror.org/01ng18e06', 'no_lang_code', 1, 'https://ror.org/01ng18e06 A K Industries (United Kingdom)'), (6389, 'https://ror.org/01njgag08', 'en', 1, 'https://ror.org/01njgag08 Japan Women''s College of Physical Education 日本女子体育大学'), (6390, 'https://ror.org/01nk4hm61', 'en', 1, 'https://ror.org/01nk4hm61 Mesa Community College'), (6391, 'https://ror.org/01nq1wn92', 'no_lang_code', 1, 'https://ror.org/01nq1wn92 VitaCyte (United States)'), (6392, 'https://ror.org/01nqc4p29', 'no_lang_code', 1, 'https://ror.org/01nqc4p29 Workplace Technologies Research'), (6393, 'https://ror.org/01nqsgv54', 'en', 1, 'https://ror.org/01nqsgv54 Headache & Pain Center of Palm Beach'), (6394, 'https://ror.org/01nsxt963', 'it', 1, 'https://ror.org/01nsxt963 Ospedale Civile Di Ivrea'), (6395, 'https://ror.org/01nw60f27', 'no_lang_code', 1, 'https://ror.org/01nw60f27 Saiseikai Wakakusa Hospital 済生会若草病院'), (6396, 'https://ror.org/01nzxq896', 'en', 1, 'https://ror.org/01nzxq896 VA North Texas Health Care System'), (6397, 'https://ror.org/01nzyv932', 'no_lang_code', 1, 'https://ror.org/01nzyv932 CDM Group (United States)'), (6398, 'https://ror.org/01p165j02', 'no_lang_code', 1, 'https://ror.org/01p165j02 Chemat Technology (United States)'), (6399, 'https://ror.org/01p19k166', 'en', 1, 'https://ror.org/01p19k166 Royal Victoria Infirmary'), (6400, 'https://ror.org/01p3q4q56', 'en', 1, 'https://ror.org/01p3q4q56 Institute of Cytology Федеральное государственное бюджетное учреждение науки Институт цитологии Российской академии наук'), (6401, 'https://ror.org/01p3rh655', 'en', 1, 'https://ror.org/01p3rh655 American Lung Association'), (6402, 'https://ror.org/01p4ajf23', 'no_lang_code', 1, 'https://ror.org/01p4ajf23 ANDE (United States)'), (6403, 'https://ror.org/01p4cne93', 'en', 1, 'https://ror.org/01p4cne93 National Center for Genome Resources'), (6404, 'https://ror.org/01p5m7v59', 'en', 1, 'https://ror.org/01p5m7v59 National Vaccine and Serum Institute'), (6405, 'https://ror.org/01p6fxr81', 'it', 1, 'https://ror.org/01p6fxr81 Cooperativa Sociale COOSS Marche Onlus'), (6406, 'https://ror.org/01p7aam65', 'no_lang_code', 1, 'https://ror.org/01p7aam65 FuelCell Energy (Canada)'), (6407, 'https://ror.org/01p7p3890', 'pt', 1, 'https://ror.org/01p7p3890 Faculdade de Ciências Médicas de Minas Gerais'), (6408, 'https://ror.org/01p7ws813', 'no_lang_code', 1, 'https://ror.org/01p7ws813 Adamis Pharmaceuticals (United States)'), (6409, 'https://ror.org/01p92hb48', 'en', 1, 'https://ror.org/01p92hb48 National Technical Information Service'), (6410, 'https://ror.org/01p9xjz77', 'en', 1, 'https://ror.org/01p9xjz77 College of Exploration'), (6411, 'https://ror.org/01pa88s49', 'no_lang_code', 1, 'https://ror.org/01pa88s49 Diamond Materials (United States)'), (6412, 'https://ror.org/01pbz7c04', 'en', 1, 'https://ror.org/01pbz7c04 Mediterranean Agronomic Institute of Chania'), (6413, 'https://ror.org/01pemhh03', 'en', 1, 'https://ror.org/01pemhh03 Association of Women''s Health Obstetric and Neonatal Nurses'), (6414, 'https://ror.org/01pewsd85', 'en', 1, 'https://ror.org/01pewsd85 Estonian Academy of Sciences'), (6415, 'https://ror.org/01pg2qx87', 'en', 1, 'https://ror.org/01pg2qx87 Cambridge City Council'), (6416, 'https://ror.org/01phfda22', 'no_lang_code', 1, 'https://ror.org/01phfda22 Nutreco (Canada)'), (6417, 'https://ror.org/01pj98103', 'no_lang_code', 1, 'https://ror.org/01pj98103 Vista Photonics (United States)'), (6418, 'https://ror.org/01pphqm45', 'en', 1, 'https://ror.org/01pphqm45 Kazan Institute of Biochemistry and Biophysics Федеральное государственное бюджетное учреждение науки Казанский институт биохимии и биофизики Казанского научного центра Российской академии наук'), (6419, 'https://ror.org/01ppsp263', 'en', 1, 'https://ror.org/01ppsp263 Toneyama National Hospital 刀根山国立病院'), (6420, 'https://ror.org/01pq38j30', 'en', 1, 'https://ror.org/01pq38j30 Bennington College'), (6421, 'https://ror.org/01ptddh35', 'en', 1, 'https://ror.org/01ptddh35 Island Institute'), (6422, 'https://ror.org/01ptsgx95', 'fr', 1, 'https://ror.org/01ptsgx95 Institut National d''Hygiène du Maroc'), (6423, 'https://ror.org/01pv1vb28', 'pl', 1, 'https://ror.org/01pv1vb28 Samodzielny Publiczny Centralny Szpital Kliniczny'), (6424, 'https://ror.org/01pv83h16', 'en', 1, 'https://ror.org/01pv83h16 Acadia Institute of Oceanography'), (6425, 'https://ror.org/01pveve47', 'en', 1, 'https://ror.org/01pveve47 United States Army Medical Research Institute of Infectious Diseases'), (6426, 'https://ror.org/01pw42d50', 'en', 1, 'https://ror.org/01pw42d50 Boxer Wachler Vision Institute'), (6427, 'https://ror.org/01pwbmp71', 'en', 1, 'https://ror.org/01pwbmp71 Schizophrenia Research Foundation'), (6428, 'https://ror.org/01pxap840', 'en', 1, 'https://ror.org/01pxap840 Royal Armouries'), (6429, 'https://ror.org/01pxz1r61', 'no_lang_code', 1, 'https://ror.org/01pxz1r61 Simonsen Laboratories'), (6430, 'https://ror.org/01q2ty078', 'no_lang_code', 1, 'https://ror.org/01q2ty078 Saku Central Hospital 佐久総合病院'), (6431, 'https://ror.org/01qcf5s69', 'no_lang_code', 1, 'https://ror.org/01qcf5s69 STMicroelectronics (Canada)'), (6432, 'https://ror.org/01qdw1m65', 'en', 1, 'https://ror.org/01qdw1m65 Passport to Knowledge'), (6433, 'https://ror.org/01qe4kz15', 'no_lang_code', 1, 'https://ror.org/01qe4kz15 Goldwind (China)'), (6434, 'https://ror.org/01qek3q18', 'en', 1, 'https://ror.org/01qek3q18 Central Electrochemical Research Institute'), (6435, 'https://ror.org/01qgthm82', 'no_lang_code', 1, 'https://ror.org/01qgthm82 zuChem (United States)'), (6436, 'https://ror.org/01qhm7e49', 'no_lang_code', 1, 'https://ror.org/01qhm7e49 Caterpillar (United States)'), (6437, 'https://ror.org/01qjd9x30', 'en', 1, 'https://ror.org/01qjd9x30 Forestry Commission Scotland'), (6438, 'https://ror.org/01qjmkr85', 'no_lang_code', 1, 'https://ror.org/01qjmkr85 Fonterra (New Zealand)'), (6439, 'https://ror.org/01qjvcb50', 'no_lang_code', 1, 'https://ror.org/01qjvcb50 Lpath (United States)'), (6440, 'https://ror.org/01qma4124', 'no_lang_code', 1, 'https://ror.org/01qma4124 JS Genetics (United States)'), (6441, 'https://ror.org/01qmkwf03', 'en', 1, 'https://ror.org/01qmkwf03 San Diego Biomedical Research Institute'), (6442, 'https://ror.org/01qnpp968', 'en', 1, 'https://ror.org/01qnpp968 New Mexico Consortium'), (6443, 'https://ror.org/01qqd5n29', 'en', 1, 'https://ror.org/01qqd5n29 Foundation for Advanced Education in the Sciences'), (6444, 'https://ror.org/01qr26m26', 'en', 1, 'https://ror.org/01qr26m26 Sirris'), (6445, 'https://ror.org/01qt7mp11', 'en', 1, 'https://ror.org/01qt7mp11 Miyagi Prefectural Hospital Organization 宮城県立病院機構'), (6446, 'https://ror.org/01qw0br74', 'en', 1, 'https://ror.org/01qw0br74 Agricultural Biotechnology Institute'), (6447, 'https://ror.org/01qwbfa84', 'en', 1, 'https://ror.org/01qwbfa84 Collège holland Holland College'), (6448, 'https://ror.org/01qz53q03', 'no_lang_code', 1, 'https://ror.org/01qz53q03 Mascoma (Canada)'), (6449, 'https://ror.org/01r3ez507', 'en', 1, 'https://ror.org/01r3ez507 Sterling Hospitals'), (6450, 'https://ror.org/01r3ztp10', 'en', 1, 'https://ror.org/01r3ztp10 Karachi Institute of Radiotherapy and Nuclear Medicine'), (6451, 'https://ror.org/01r5r0r56', 'en', 1, 'https://ror.org/01r5r0r56 Washington Adventist Hospital'), (6452, 'https://ror.org/01r6bzv07', 'en', 1, 'https://ror.org/01r6bzv07 Bogomoletz Institute of Physiology Інститут фізіології ім. О.О. Богомольця'), (6453, 'https://ror.org/01rcr9030', 'no_lang_code', 1, 'https://ror.org/01rcr9030 Consorcio Regional de Transportes de Madrid'), (6454, 'https://ror.org/01rde7a23', 'no_lang_code', 1, 'https://ror.org/01rde7a23 Fluxion Biosciences (United States)'), (6455, 'https://ror.org/01rdex851', 'no_lang_code', 1, 'https://ror.org/01rdex851 Arkema (United States)'), (6456, 'https://ror.org/01rdxvn05', 'no_lang_code', 1, 'https://ror.org/01rdxvn05 Galderma (United States)'), (6457, 'https://ror.org/01rg6cx71', 'no_lang_code', 1, 'https://ror.org/01rg6cx71 Yao Tokushukai General Hospital 八尾徳洲会総合病院'), (6458, 'https://ror.org/01rhc0n38', 'en', 1, 'https://ror.org/01rhc0n38 New Hampshire Hospital'), (6459, 'https://ror.org/01rhvcq39', 'no_lang_code', 1, 'https://ror.org/01rhvcq39 Seashell Technology (United States)'), (6460, 'https://ror.org/01rje3r53', 'fr', 1, 'https://ror.org/01rje3r53 Centre d''Étude du Polymorphisme Humain, Fondation Jean Dausset-CEPH'), (6461, 'https://ror.org/01rm4gj66', 'no_lang_code', 1, 'https://ror.org/01rm4gj66 SimQuest (United States)'), (6462, 'https://ror.org/01rm78x24', 'no_lang_code', 1, 'https://ror.org/01rm78x24 Applied Photonics (United Kingdom)'), (6463, 'https://ror.org/01rmpb303', 'no_lang_code', 1, 'https://ror.org/01rmpb303 Nautilus Biosciences (Canada)'), (6464, 'https://ror.org/01rqa5h24', 'es', 1, 'https://ror.org/01rqa5h24 Instituto de Diagnóstico e Investigaciones Metabólicas'), (6465, 'https://ror.org/01rqa9952', 'no_lang_code', 1, 'https://ror.org/01rqa9952 G & A Technical Software (United States)'), (6466, 'https://ror.org/01rqavq28', 'no_lang_code', 1, 'https://ror.org/01rqavq28 Fluidity Software (United States)'), (6467, 'https://ror.org/01rqyr540', 'en', 1, 'https://ror.org/01rqyr540 Institute of Molecular Biology and Genetics Інститут молекулярної біології і генетики'), (6468, 'https://ror.org/01rrcbe60', 'en', 1, 'https://ror.org/01rrcbe60 White Memorial Medical Center'), (6469, 'https://ror.org/01rsgws32', 'en', 1, 'https://ror.org/01rsgws32 Lycoming College'), (6470, 'https://ror.org/01rtyyz33', 'pt', 1, 'https://ror.org/01rtyyz33 Instituto de Medicina Integral Professor Fernando Figueira'), (6471, 'https://ror.org/01rvpy991', 'no_lang_code', 1, 'https://ror.org/01rvpy991 Hayashibara (Japan) 株式会社 林原'), (6472, 'https://ror.org/01rwv9j63', 'en', 1, 'https://ror.org/01rwv9j63 Operation UNITE'), (6473, 'https://ror.org/01rww7j93', 'en', 1, 'https://ror.org/01rww7j93 Tarzana Treatment Centers'), (6474, 'https://ror.org/01rx46r39', 'no_lang_code', 1, 'https://ror.org/01rx46r39 Science Take-Out (United States)'), (6475, 'https://ror.org/01rz37c55', 'en', 1, 'https://ror.org/01rz37c55 Bureau régional de l’OMS pour l’Europe Regionalbüro für Europa World Health Organization Regional Office for Europe'), (6476, 'https://ror.org/01rzx2627', 'en', 1, 'https://ror.org/01rzx2627 American College of Radiology'), (6477, 'https://ror.org/01s2jen95', 'en', 1, 'https://ror.org/01s2jen95 Center for Practical Bioethics'), (6478, 'https://ror.org/01s2wsy11', 'en', 1, 'https://ror.org/01s2wsy11 Chicago Association for Research and Education in Science'), (6479, 'https://ror.org/01s3wxs84', 'no_lang_code', 1, 'https://ror.org/01s3wxs84 Barrett Technology (United States)'), (6480, 'https://ror.org/01s4hex50', 'en', 1, 'https://ror.org/01s4hex50 Society of Automotive Engineers International'), (6481, 'https://ror.org/01s4ync39', 'no_lang_code', 1, 'https://ror.org/01s4ync39 AureoGen Biosciences (United States)'), (6482, 'https://ror.org/01s5ya894', 'en', 1, 'https://ror.org/01s5ya894 National Institute of Neurological Disorders and Stroke'), (6483, 'https://ror.org/01s6vf760', 'no_lang_code', 1, 'https://ror.org/01s6vf760 Tengion (United States)'), (6484, 'https://ror.org/01s8dqw53', 'en', 1, 'https://ror.org/01s8dqw53 West Virginia School of Osteopathic Medicine'), (6485, 'https://ror.org/01s8ppv52', 'no_lang_code', 1, 'https://ror.org/01s8ppv52 Incell Corporation (United States)'), (6486, 'https://ror.org/01s8vy398', 'en', 1, 'https://ror.org/01s8vy398 Parker University'), (6487, 'https://ror.org/01s9sxm36', 'en', 1, 'https://ror.org/01s9sxm36 Presbyterian College'), (6488, 'https://ror.org/01sb2fs58', 'en', 1, 'https://ror.org/01sb2fs58 Institute of Cardiology Федеральное государственное бюджетное научное учреждение Научно-исследовательский институт кардиологии'), (6489, 'https://ror.org/01scjva02', 'no_lang_code', 1, 'https://ror.org/01scjva02 Jeremy Benn Associates (United Kingdom)'), (6490, 'https://ror.org/01se4r077', 'en', 1, 'https://ror.org/01se4r077 Institute of Immunological Engineering'), (6491, 'https://ror.org/01se61h67', 'no_lang_code', 1, 'https://ror.org/01se61h67 Feilden Clegg Bradley Studios (United Kingdom)'), (6492, 'https://ror.org/01sgg2e20', 'en', 1, 'https://ror.org/01sgg2e20 Merit Network'), (6493, 'https://ror.org/01sgx5h42', 'en', 1, 'https://ror.org/01sgx5h42 Cuyahoga Community College'), (6494, 'https://ror.org/01shj3957', 'en', 1, 'https://ror.org/01shj3957 Red Deer College'), (6495, 'https://ror.org/01sj8qf84', 'en', 1, 'https://ror.org/01sj8qf84 Secrétariat du Conseil du Trésor du Canada Treasury Board of Canada Secretariat'), (6496, 'https://ror.org/01sjx9496', 'no_lang_code', 1, 'https://ror.org/01sjx9496 Pharmaceutical Product Development (United States)'), (6497, 'https://ror.org/01skvfg56', 'en', 1, 'https://ror.org/01skvfg56 Tallahassee Community College'), (6498, 'https://ror.org/01skwyh03', 'no_lang_code', 1, 'https://ror.org/01skwyh03 Nissan Chemical Corporation (Japan) 日産化学株式会社'), (6499, 'https://ror.org/01spwt212', 'en', 1, 'https://ror.org/01spwt212 Swiss Paraplegic Center'), (6500, 'https://ror.org/01srwdt35', 'en', 1, 'https://ror.org/01srwdt35 Center for Dermatology and Laser Surgery'), (6501, 'https://ror.org/01ssv2r52', 'no_lang_code', 1, 'https://ror.org/01ssv2r52 ImageCat (United States)'), (6502, 'https://ror.org/01st38774', 'no_lang_code', 1, 'https://ror.org/01st38774 Geninov (Canada)'), (6503, 'https://ror.org/01strh679', 'sr', 1, 'https://ror.org/01strh679 Klinički centar Niš, Клинички центар Ниш'), (6504, 'https://ror.org/01svwyw14', 'en', 1, 'https://ror.org/01svwyw14 Croatian Veterinary Institute Hrvatski veterinarski institut Zagreb'), (6505, 'https://ror.org/01sw9e110', 'en', 1, 'https://ror.org/01sw9e110 Howard Brown Health Center'), (6506, 'https://ror.org/01syx9t96', 'en', 1, 'https://ror.org/01syx9t96 Fond du Lac Reservation'), (6507, 'https://ror.org/01szgg304', 'en', 1, 'https://ror.org/01szgg304 Toyama City Hospital 富山市立富山市民病院'), (6508, 'https://ror.org/01t05fr30', 'en', 1, 'https://ror.org/01t05fr30 National Conference on Interstate Milk Shipments'), (6509, 'https://ror.org/01t0n2c80', 'de', 1, 'https://ror.org/01t0n2c80 Klinikum Oldenburg'), (6510, 'https://ror.org/01t1ct488', 'no_lang_code', 1, 'https://ror.org/01t1ct488 Verafin (Canada)'), (6511, 'https://ror.org/01t413275', 'en', 1, 'https://ror.org/01t413275 Sri Ramakrishna Institute of Paramedical Sciences'), (6512, 'https://ror.org/01t44n583', 'no_lang_code', 1, 'https://ror.org/01t44n583 MBio Diagnostics (United States)'), (6513, 'https://ror.org/01t4a3951', 'no_lang_code', 1, 'https://ror.org/01t4a3951 Treatment Innovations (United States)'), (6514, 'https://ror.org/01t5jw607', 'en', 1, 'https://ror.org/01t5jw607 Houston Independent School District'), (6515, 'https://ror.org/01t6qh616', 'en', 1, 'https://ror.org/01t6qh616 Shriners Hospitals for Children - Spokane'), (6516, 'https://ror.org/01t77y753', 'en', 1, 'https://ror.org/01t77y753 Regis College'), (6517, 'https://ror.org/01t8qhk85', 'en', 1, 'https://ror.org/01t8qhk85 Conestoga College'), (6518, 'https://ror.org/01t8vn565', 'fr', 1, 'https://ror.org/01t8vn565 Clinique de l''Yvette Yvette clinic'), (6519, 'https://ror.org/01ta8cw69', 'no_lang_code', 1, 'https://ror.org/01ta8cw69 White Point Systems (United States)'), (6520, 'https://ror.org/01tam1k81', 'en', 1, 'https://ror.org/01tam1k81 Healthcare Education Associates'), (6521, 'https://ror.org/01tay0360', 'en', 1, 'https://ror.org/01tay0360 Park Nicollet Health Services'), (6522, 'https://ror.org/01tbdbg27', 'en', 1, 'https://ror.org/01tbdbg27 City of York Council'), (6523, 'https://ror.org/01tbe3k42', 'no_lang_code', 1, 'https://ror.org/01tbe3k42 Alpha Genesis (United States)'), (6524, 'https://ror.org/01tbvb523', 'en', 1, 'https://ror.org/01tbvb523 Florida Orthopaedic Institute'), (6525, 'https://ror.org/01tcbxg35', 'no_lang_code', 1, 'https://ror.org/01tcbxg35 Circle Solutions'), (6526, 'https://ror.org/01teg2k73', 'en', 1, 'https://ror.org/01teg2k73 National Institute Of Hygiene And Epidemiology Viện Vệ sinh dịch tễ Trung ương'), (6527, 'https://ror.org/01th0ab46', 'en', 1, 'https://ror.org/01th0ab46 Institute for Family Health'), (6528, 'https://ror.org/01tqja591', 'no_lang_code', 1, 'https://ror.org/01tqja591 Morinaga (Japan) 森永製菓株式会社'), (6529, 'https://ror.org/01tt80y42', 'fr', 1, 'https://ror.org/01tt80y42 Hôpital privé Clairval'), (6530, 'https://ror.org/01ttgmj63', 'pt', 1, 'https://ror.org/01ttgmj63 Fundação Universitária de Cardiologia, Instituto de Cardiologia do Rio Grande do Sul'), (6531, 'https://ror.org/01ttkn505', 'en', 1, 'https://ror.org/01ttkn505 Biotechnical Services'), (6532, 'https://ror.org/01tv6se08', 'no_lang_code', 1, 'https://ror.org/01tv6se08 Prism Clinical Imaging (United States)'), (6533, 'https://ror.org/01tw7ew41', 'en', 1, 'https://ror.org/01tw7ew41 Surrey Place Centre'), (6534, 'https://ror.org/01twtwf23', 'no_lang_code', 1, 'https://ror.org/01twtwf23 Alberti''s Window (United States)'), (6535, 'https://ror.org/01twwfv38', 'en', 1, 'https://ror.org/01twwfv38 Valley Hospital'), (6536, 'https://ror.org/01txpgc43', 'no_lang_code', 1, 'https://ror.org/01txpgc43 Operational Technologies Corporation (United States)'), (6537, 'https://ror.org/01ty4bg86', 'en', 1, 'https://ror.org/01ty4bg86 Shanghai Cancer Institute'), (6538, 'https://ror.org/01tyr1g37', 'en', 1, 'https://ror.org/01tyr1g37 Institute for Biological Instrumentation Институт биологического приборостроения РАН'), (6539, 'https://ror.org/01v13p275', 'en', 1, 'https://ror.org/01v13p275 Watford General Hospital'), (6540, 'https://ror.org/01v3bqg10', 'no_lang_code', 1, 'https://ror.org/01v3bqg10 Shionogi (Japan) 塩野義製薬'), (6541, 'https://ror.org/01v4ea389', 'no_lang_code', 1, 'https://ror.org/01v4ea389 Sizewise (United States)'), (6542, 'https://ror.org/01v4tsw25', 'en', 1, 'https://ror.org/01v4tsw25 Engineering Conferences International'), (6543, 'https://ror.org/01v51gh79', 'no_lang_code', 1, 'https://ror.org/01v51gh79 NanoCellect Biomedical (United States)'), (6544, 'https://ror.org/01v5pfj68', 'no_lang_code', 1, 'https://ror.org/01v5pfj68 Sarver and Associates (United States)'), (6545, 'https://ror.org/01v66s741', 'no_lang_code', 1, 'https://ror.org/01v66s741 3D-Micromac (Germany)'), (6546, 'https://ror.org/01v76qw30', 'en', 1, 'https://ror.org/01v76qw30 Northlake Medical Center'), (6547, 'https://ror.org/01v791m31', 'no_lang_code', 1, 'https://ror.org/01v791m31 NEC (United States) NEC Corporation of America'), (6548, 'https://ror.org/01v7p8902', 'no_lang_code', 1, 'https://ror.org/01v7p8902 Interklinik'), (6549, 'https://ror.org/01v8a4s08', 'no_lang_code', 1, 'https://ror.org/01v8a4s08 RadioMedix (United States)'), (6550, 'https://ror.org/01v9kvt79', 'no_lang_code', 1, 'https://ror.org/01v9kvt79 Bracco (Switzerland)'), (6551, 'https://ror.org/01vepzj85', 'no_lang_code', 1, 'https://ror.org/01vepzj85 Roche (Japan) 中外製薬'), (6552, 'https://ror.org/01vfnp540', 'no_lang_code', 1, 'https://ror.org/01vfnp540 Immune Response BioPharma (United States)'), (6553, 'https://ror.org/01vgd5418', 'en', 1, 'https://ror.org/01vgd5418 Mississippi Gulf Coast Community College'), (6554, 'https://ror.org/01vj62p39', 'no_lang_code', 1, 'https://ror.org/01vj62p39 Cadence Biomedical (United States)'), (6555, 'https://ror.org/01vjhzs23', 'sk', 1, 'https://ror.org/01vjhzs23 Onkologický Ústav Svätej Alžbety'), (6556, 'https://ror.org/01vjngb81', 'en', 1, 'https://ror.org/01vjngb81 Valley Medical Center'), (6557, 'https://ror.org/01vmvt909', 'en', 1, 'https://ror.org/01vmvt909 National Migraine Centre'), (6558, 'https://ror.org/01vp49361', 'no_lang_code', 1, 'https://ror.org/01vp49361 Merck Serono (Switzerland)'), (6559, 'https://ror.org/01vqjmx11', 'en', 1, 'https://ror.org/01vqjmx11 Center for Economic and Policy Research'), (6560, 'https://ror.org/01vsg6m68', 'en', 1, 'https://ror.org/01vsg6m68 State Science and Technology Institute'), (6561, 'https://ror.org/01vt38y66', 'no_lang_code', 1, 'https://ror.org/01vt38y66 PhosphorTech (United States)'), (6562, 'https://ror.org/01vv3y523', 'en', 1, 'https://ror.org/01vv3y523 Torbay Hospital'), (6563, 'https://ror.org/01vv6sh78', 'no_lang_code', 1, 'https://ror.org/01vv6sh78 Cytex Therapeutics (United States)'), (6564, 'https://ror.org/01vva4430', 'en', 1, 'https://ror.org/01vva4430 Roland Institute of Pharmaceutical Sciences'), (6565, 'https://ror.org/01vvexy08', 'no_lang_code', 1, 'https://ror.org/01vvexy08 CHI Associates (United States)'), (6566, 'https://ror.org/01vwr6t80', 'en', 1, 'https://ror.org/01vwr6t80 Académie militaire de caroline du sud Citadel'), (6567, 'https://ror.org/01vyrje42', 'it', 1, 'https://ror.org/01vyrje42 Istituto Ortopedico Galeazzi'), (6568, 'https://ror.org/01vzd5j10', 'en', 1, 'https://ror.org/01vzd5j10 National Tuberculosis Institute'), (6569, 'https://ror.org/01w19ak89', 'en', 1, 'https://ror.org/01w19ak89 Max Planck Institute for Informatics Max-Planck-Institut für Informatik'), (6570, 'https://ror.org/01w7ahq52', 'no_lang_code', 1, 'https://ror.org/01w7ahq52 ACRI Group (France)'), (6571, 'https://ror.org/01w7yjk26', 'no_lang_code', 1, 'https://ror.org/01w7yjk26 Phoenix Science and Technology (United States)'), (6572, 'https://ror.org/01wakgv04', 'no_lang_code', 1, 'https://ror.org/01wakgv04 Naprogenix (United States)'), (6573, 'https://ror.org/01wc2qb11', 'en', 1, 'https://ror.org/01wc2qb11 Tri-County Health Department'), (6574, 'https://ror.org/01wfg6h04', 'en', 1, 'https://ror.org/01wfg6h04 Pharmo Institute'), (6575, 'https://ror.org/01wfk7k95', 'en', 1, 'https://ror.org/01wfk7k95 Area Cooperative Education Services'), (6576, 'https://ror.org/01wj8vf34', 'en', 1, 'https://ror.org/01wj8vf34 Raghudeep Eye Hospital'), (6577, 'https://ror.org/01wjn2x92', 'en', 1, 'https://ror.org/01wjn2x92 National Center for HIV/AIDS Viral Hepatitis STD and TB Prevention'), (6578, 'https://ror.org/01wm02973', 'no_lang_code', 1, 'https://ror.org/01wm02973 Foster-Miller (United States)'), (6579, 'https://ror.org/01wnfae18', 'en', 1, 'https://ror.org/01wnfae18 Central Research Institute केंद्रीय अनुसंधान संस्थान'), (6580, 'https://ror.org/01wq93z70', 'en', 1, 'https://ror.org/01wq93z70 Chinese National Human Genome Center'), (6581, 'https://ror.org/01wqae691', 'it', 1, 'https://ror.org/01wqae691 Institute for Animal Production System in Mediterranean Environment Istituto per il Sistema Produzione Animale in Ambiente Mediterraneo'), (6582, 'https://ror.org/01wwwe276', 'en', 1, 'https://ror.org/01wwwe276 National Centre for Atmospheric Science'), (6583, 'https://ror.org/01wx3gr42', 'en', 1, 'https://ror.org/01wx3gr42 Departamento de Educación de la Ciudad de Nueva York Département de l''Éducation de la ville de new york New York City Department of Education'), (6584, 'https://ror.org/01wxb8362', 'en', 1, 'https://ror.org/01wxb8362 Maria Cecilia Hospital'), (6585, 'https://ror.org/01wxzd328', 'no_lang_code', 1, 'https://ror.org/01wxzd328 Kunitachi Sakura Hospital 国立さくら病院'), (6586, 'https://ror.org/01wyqb997', 'fr', 1, 'https://ror.org/01wyqb997 Centre International de Recherches Médicales de Franceville'), (6587, 'https://ror.org/01x00nv07', 'fr', 1, 'https://ror.org/01x00nv07 Coalition des Organismes Communautaires Québécois de Lutte Contre le Sida'), (6588, 'https://ror.org/01x0vtk27', 'no_lang_code', 1, 'https://ror.org/01x0vtk27 Saneron CCEL Therapeutics (United States)'), (6589, 'https://ror.org/01x37cs02', 'en', 1, 'https://ror.org/01x37cs02 West Cumberland Hospital'), (6590, 'https://ror.org/01x59wb38', 'no_lang_code', 1, 'https://ror.org/01x59wb38 DesignMedix (United States)'), (6591, 'https://ror.org/01x5py295', 'no_lang_code', 1, 'https://ror.org/01x5py295 SC Solutions (United States)'), (6592, 'https://ror.org/01x62kg38', 'en', 1, 'https://ror.org/01x62kg38 Tianjin People''s Hospital 天津市人民医院'), (6593, 'https://ror.org/01x63gj61', 'en', 1, 'https://ror.org/01x63gj61 Hillsborough Community College'), (6594, 'https://ror.org/01x64pv72', 'en', 1, 'https://ror.org/01x64pv72 National Center for Environmental Assessment (EPA)'), (6595, 'https://ror.org/01x653j15', 'no_lang_code', 1, 'https://ror.org/01x653j15 ManTech International (United States)'), (6596, 'https://ror.org/01x693z07', 'no_lang_code', 1, 'https://ror.org/01x693z07 NovaSterilis (United States)'), (6597, 'https://ror.org/01x6n0t15', 'en', 1, 'https://ror.org/01x6n0t15 Papua New Guinea Institute of Medical Research'), (6598, 'https://ror.org/01x8bpc61', 'en', 1, 'https://ror.org/01x8bpc61 Saint Elizabeth Regional Medical Center'), (6599, 'https://ror.org/01x994m09', 'en', 1, 'https://ror.org/01x994m09 American Society For Testing and Materials'), (6600, 'https://ror.org/01x9bq055', 'no_lang_code', 1, 'https://ror.org/01x9bq055 Cairn Research (United Kingdom)'), (6601, 'https://ror.org/01xb4fs50', 'en', 1, 'https://ror.org/01xb4fs50 Korea Atomic Energy Research Institute 한국원자력연구원'), (6602, 'https://ror.org/01xd1rz53', 'en', 1, 'https://ror.org/01xd1rz53 National Association of State Mental Health Program Directors'), (6603, 'https://ror.org/01xd2tj29', 'no_lang_code', 1, 'https://ror.org/01xd2tj29 Weifang People''s Hospital 潍坊市人民医院'), (6604, 'https://ror.org/01xdq1k91', 'no_lang_code', 1, 'https://ror.org/01xdq1k91 Japan Tobacco (Japan) 日本たばこ産業株式会社'), (6605, 'https://ror.org/01xe86309', 'en', 1, 'https://ror.org/01xe86309 Instituto Nacional de Pesquisas da Amazônia National Institute of Amazonian Research'), (6606, 'https://ror.org/01xfgtq85', 'en', 1, 'https://ror.org/01xfgtq85 VA West Los Angeles Medical Center'), (6607, 'https://ror.org/01xgfaw76', 'en', 1, 'https://ror.org/01xgfaw76 Academy of Sciences Republic of Uzbekistan Oʻzbekiston Respublikasi Fanlar Akademiyasi Академия наук Узбекистана Академияи илмҳои Ӯзбакистон'), (6608, 'https://ror.org/01xgjqy82', 'no_lang_code', 1, 'https://ror.org/01xgjqy82 Nicoya Lifesciences (Canada)'), (6609, 'https://ror.org/01xh2bb57', 'no_lang_code', 1, 'https://ror.org/01xh2bb57 WisdomTools (United States)'), (6610, 'https://ror.org/01xk5xs43', 'no_lang_code', 1, 'https://ror.org/01xk5xs43 Carl Zeiss (United States)'), (6611, 'https://ror.org/01xpfz214', 'no_lang_code', 1, 'https://ror.org/01xpfz214 Team Industrial Services (United States)'), (6612, 'https://ror.org/01xpm4m93', 'no_lang_code', 1, 'https://ror.org/01xpm4m93 Robert Olson Consulting (United States)'), (6613, 'https://ror.org/01xqc9g05', 'en', 1, 'https://ror.org/01xqc9g05 University of Jamestown'), (6614, 'https://ror.org/01xz1f624', 'no_lang_code', 1, 'https://ror.org/01xz1f624 OFM Research (United States)'), (6615, 'https://ror.org/01xzapm83', 'no_lang_code', 1, 'https://ror.org/01xzapm83 Seamon (United States)'), (6616, 'https://ror.org/01y0mgq54', 'en', 1, 'https://ror.org/01y0mgq54 Elizabethtown College'), (6617, 'https://ror.org/01y2d1w05', 'en', 1, 'https://ror.org/01y2d1w05 St. Mary''s College of Maryland'), (6618, 'https://ror.org/01y3v6r39', 'en', 1, 'https://ror.org/01y3v6r39 Spine Institute of Louisiana'), (6619, 'https://ror.org/01y639h39', 'no_lang_code', 1, 'https://ror.org/01y639h39 Raptamer Discovery Group (United States)'), (6620, 'https://ror.org/01y720297', 'en', 1, 'https://ror.org/01y720297 Regional Medical Research Centre আঞ্চলিক চিকিৎসা গৱেষণা কেন্দ্ৰ, ডিব্ৰুগড়'), (6621, 'https://ror.org/01y7ahq16', 'no_lang_code', 1, 'https://ror.org/01y7ahq16 Technology Dynamics (United States)'), (6622, 'https://ror.org/01y8myk27', 'en', 1, 'https://ror.org/01y8myk27 Dominican College of Blauvelt'), (6623, 'https://ror.org/01y9arx16', 'en', 1, 'https://ror.org/01y9arx16 Max Planck Institut für Chemische Energiekonversion Max Planck Institute for Chemical Energy Conversion'), (6624, 'https://ror.org/01ybxrm80', 'en', 1, 'https://ror.org/01ybxrm80 Yodogawa Christian Hospital 淀川キリスト教病院'), (6625, 'https://ror.org/01yezas83', 'fr', 1, 'https://ror.org/01yezas83 Centre Eugène Marquis'), (6626, 'https://ror.org/01yfkcs46', 'it', 1, 'https://ror.org/01yfkcs46 CSI Piemonte'), (6627, 'https://ror.org/01ygdkx97', 'no_lang_code', 1, 'https://ror.org/01ygdkx97 American Life Science Pharmaceuticals (United States)'), (6628, 'https://ror.org/01yjs2h26', 'en', 1, 'https://ror.org/01yjs2h26 Design Council'), (6629, 'https://ror.org/01yn60017', 'en', 1, 'https://ror.org/01yn60017 Waukesha Memorial Hospital'), (6630, 'https://ror.org/01ynheb59', 'no_lang_code', 1, 'https://ror.org/01ynheb59 Sensor Electronics (United States)'), (6631, 'https://ror.org/01ynxg963', 'en', 1, 'https://ror.org/01ynxg963 Pacific Medical Research Foundation'), (6632, 'https://ror.org/01yq9ya27', 'en', 1, 'https://ror.org/01yq9ya27 Institute of Gene Biology Институт биологии гена'), (6633, 'https://ror.org/01yr73893', 'en', 1, 'https://ror.org/01yr73893 European Molecular Biology Laboratory'), (6634, 'https://ror.org/01yrmk064', 'en', 1, 'https://ror.org/01yrmk064 Guttmacher Institute'), (6635, 'https://ror.org/01yrmxe32', 'no_lang_code', 1, 'https://ror.org/01yrmxe32 NORAM (Canada)'), (6636, 'https://ror.org/01yttm365', 'no_lang_code', 1, 'https://ror.org/01yttm365 Viasystems (United States)'), (6637, 'https://ror.org/01yxvb356', 'no_lang_code', 1, 'https://ror.org/01yxvb356 Anacomp (United States)'), (6638, 'https://ror.org/01z142p52', 'es', 1, 'https://ror.org/01z142p52 Instituto Nacional de Rehabilitación Psicofísica'), (6639, 'https://ror.org/01z1z7017', 'de', 1, 'https://ror.org/01z1z7017 Forschungsinstitut für Kinderernährung'), (6640, 'https://ror.org/01z4haz29', 'no_lang_code', 1, 'https://ror.org/01z4haz29 Guild Associates (United States)'), (6641, 'https://ror.org/01z4n2m85', 'it', 1, 'https://ror.org/01z4n2m85 Istituto Scientifico Italiano Colonna Vertebrale Italian Scientific Institute for the Spine'), (6642, 'https://ror.org/01z5jvj74', 'en', 1, 'https://ror.org/01z5jvj74 ZNA Middelheim Hospital'), (6643, 'https://ror.org/01z6qpb13', 'pt', 1, 'https://ror.org/01z6qpb13 Faculdade de Ciências Médicas da Santa Casa de São Paulo'), (6644, 'https://ror.org/01z6vd941', 'no_lang_code', 1, 'https://ror.org/01z6vd941 Millar (United States)'), (6645, 'https://ror.org/01z850041', 'no_lang_code', 1, 'https://ror.org/01z850041 Technology Assessment and Transfer (United States)'), (6646, 'https://ror.org/01z89mt14', 'en', 1, 'https://ror.org/01z89mt14 Ottawa Regional Cancer Foundation'), (6647, 'https://ror.org/01z8hbn82', 'en', 1, 'https://ror.org/01z8hbn82 Diabetes & Glandular Disease Clinic'), (6648, 'https://ror.org/01zd81893', 'no_lang_code', 1, 'https://ror.org/01zd81893 Modulim (United States)'), (6649, 'https://ror.org/01zdgf096', 'en', 1, 'https://ror.org/01zdgf096 Baptist Health Care'), (6650, 'https://ror.org/01zdmh905', 'en', 1, 'https://ror.org/01zdmh905 Office of the Chief Medical Examiner'), (6651, 'https://ror.org/01zj9wm95', 'en', 1, 'https://ror.org/01zj9wm95 Yuan''s General Hospital 阮綜合醫院'), (6652, 'https://ror.org/01zpdb870', 'fr', 1, 'https://ror.org/01zpdb870 Centre Médical de Vidy'), (6653, 'https://ror.org/01zpg3b52', 'no_lang_code', 1, 'https://ror.org/01zpg3b52 Theradex Oncology (United States)'), (6654, 'https://ror.org/01zpyjx73', 'en', 1, 'https://ror.org/01zpyjx73 Renal Association'), (6655, 'https://ror.org/01zq3h513', 'it', 1, 'https://ror.org/01zq3h513 Ospedale Psichiatrico Paolo Pini'), (6656, 'https://ror.org/01zq90d67', 'en', 1, 'https://ror.org/01zq90d67 Institute for Marine Biosciences'), (6657, 'https://ror.org/01zr7w027', 'no_lang_code', 1, 'https://ror.org/01zr7w027 INFICON (United States)'), (6658, 'https://ror.org/01zt0tq34', 'no_lang_code', 1, 'https://ror.org/01zt0tq34 Alere (United States)'), (6659, 'https://ror.org/01zw2nq07', 'en', 1, 'https://ror.org/01zw2nq07 Indian Institute of Integrative Medicine'), (6660, 'https://ror.org/01zzhbb93', 'en', 1, 'https://ror.org/01zzhbb93 Linn Benton Community College'), (6661, 'https://ror.org/01zzqep61', 'it', 1, 'https://ror.org/01zzqep61 Istituto di Tipizzazione Tissutale e Problemi della Dialisi'), (6662, 'https://ror.org/0202bpc71', 'tr', 1, 'https://ror.org/0202bpc71 Türkiye Cumhuriyeti Devlet Demiryolları Hastanesi'), (6663, 'https://ror.org/0202zza47', 'en', 1, 'https://ror.org/0202zza47 Children’s Discovery Museum of San Jose'), (6664, 'https://ror.org/0203rjz92', 'no_lang_code', 1, 'https://ror.org/0203rjz92 Insmed (United States)'), (6665, 'https://ror.org/0204af661', 'no_lang_code', 1, 'https://ror.org/0204af661 EarthSky'), (6666, 'https://ror.org/0207cws49', 'no_lang_code', 1, 'https://ror.org/0207cws49 Oncor (United States)'), (6667, 'https://ror.org/0207yj108', 'en', 1, 'https://ror.org/0207yj108 Nashville State Community College'), (6668, 'https://ror.org/0208r0146', 'en', 1, 'https://ror.org/0208r0146 Parkland Memorial Hospital'), (6669, 'https://ror.org/020as7681', 'en', 1, 'https://ror.org/020as7681 Max Planck Institute for the Science of Light Max-Planck-Institut für die Physik des Lichts'), (6670, 'https://ror.org/020ave461', 'no_lang_code', 1, 'https://ror.org/020ave461 Proton (United Kingdom)'), (6671, 'https://ror.org/020bcb226', 'en', 1, 'https://ror.org/020bcb226 Oakton Community College'), (6672, 'https://ror.org/020cs8b78', 'en', 1, 'https://ror.org/020cs8b78 Global Hospitals'), (6673, 'https://ror.org/020d9fy55', 'en', 1, 'https://ror.org/020d9fy55 Gimbel Eye Centre'), (6674, 'https://ror.org/020eh2733', 'en', 1, 'https://ror.org/020eh2733 National Heart Hospital Национална кардиологична болница'), (6675, 'https://ror.org/020gf7g55', 'no_lang_code', 1, 'https://ror.org/020gf7g55 Mosaiques Diagnostics and Therapeutics (Germany)'), (6676, 'https://ror.org/020gftc86', 'en', 1, 'https://ror.org/020gftc86 Holy Names University'), (6677, 'https://ror.org/020h1bf56', 'en', 1, 'https://ror.org/020h1bf56 United States Public Health Service Commissioned Officers Association'), (6678, 'https://ror.org/020h1fj51', 'no_lang_code', 1, 'https://ror.org/020h1fj51 NDI Group (United States)'), (6679, 'https://ror.org/020k5bb13', 'it', 1, 'https://ror.org/020k5bb13 Ospedale dei Pellegrini'), (6680, 'https://ror.org/020mdmp08', 'en', 1, 'https://ror.org/020mdmp08 Student Assistance Services'), (6681, 'https://ror.org/020nhee14', 'fr', 1, 'https://ror.org/020nhee14 Collège Mérici Merici College'), (6682, 'https://ror.org/020nseq49', 'no_lang_code', 1, 'https://ror.org/020nseq49 DIApedia (United States)'), (6683, 'https://ror.org/020nzw227', 'no_lang_code', 1, 'https://ror.org/020nzw227 Cybernet Systems Corporation (United States)'), (6684, 'https://ror.org/020pekv35', 'en', 1, 'https://ror.org/020pekv35 Center for Applied Linguistics'), (6685, 'https://ror.org/020q1kr70', 'en', 1, 'https://ror.org/020q1kr70 Premier Community Health'), (6686, 'https://ror.org/020wjcq07', 'en', 1, 'https://ror.org/020wjcq07 Shibaura Institute of Technology 芝浦工業大学'), (6687, 'https://ror.org/020wnve48', 'no_lang_code', 1, 'https://ror.org/020wnve48 Spectris (United Kingdom)'), (6688, 'https://ror.org/020wypw95', 'no_lang_code', 1, 'https://ror.org/020wypw95 Lord Corporation (United States)'), (6689, 'https://ror.org/020xab067', 'en', 1, 'https://ror.org/020xab067 Alberta Community Council on HIV'), (6690, 'https://ror.org/02112mb03', 'it', 1, 'https://ror.org/02112mb03 Filippo Del Ponte Hospital Ospedale Filippo Del Ponte Varese'), (6691, 'https://ror.org/0211zmf46', 'en', 1, 'https://ror.org/0211zmf46 National Metallurgical Laboratory'), (6692, 'https://ror.org/02120t614', 'en', 1, 'https://ror.org/02120t614 Chiba Cancer Center 千葉県がんセンター'), (6693, 'https://ror.org/0212bzt20', 'no_lang_code', 1, 'https://ror.org/0212bzt20 DesignBuilder Software (United Kingdom)'), (6694, 'https://ror.org/0212h5y77', 'en', 1, 'https://ror.org/0212h5y77 Inova Fairfax Hospital'), (6695, 'https://ror.org/0215tke07', 'no_lang_code', 1, 'https://ror.org/0215tke07 Medical Imaging Applications (United States)'), (6696, 'https://ror.org/0217xr937', 'en', 1, 'https://ror.org/0217xr937 Aspen Global Change Institute'), (6697, 'https://ror.org/0219mbj11', 'no_lang_code', 1, 'https://ror.org/0219mbj11 Karo Pharma (Sweden)'), (6698, 'https://ror.org/021a7d287', 'en', 1, 'https://ror.org/021a7d287 Royal College of Surgeons of Edinburgh'), (6699, 'https://ror.org/021ctjg87', 'en', 1, 'https://ror.org/021ctjg87 Northern Territory Health Services'), (6700, 'https://ror.org/021e69h28', 'en', 1, 'https://ror.org/021e69h28 Adelphi Research'), (6701, 'https://ror.org/021f4qx93', 'en', 1, 'https://ror.org/021f4qx93 Noto General Hospital 公立能登総合病院'), (6702, 'https://ror.org/021g0dt18', 'no_lang_code', 1, 'https://ror.org/021g0dt18 International Trypanotolerance Centre'), (6703, 'https://ror.org/021gsjb92', 'no_lang_code', 1, 'https://ror.org/021gsjb92 Diacon (Canada)'), (6704, 'https://ror.org/021n8sy59', 'no_lang_code', 1, 'https://ror.org/021n8sy59 National Integrated Solutions (United Kingdom)'), (6705, 'https://ror.org/021nkvj61', 'no_lang_code', 1, 'https://ror.org/021nkvj61 MGS Research (United States)'), (6706, 'https://ror.org/021q72e63', 'no_lang_code', 1, 'https://ror.org/021q72e63 Novus Biologicals (United States)'), (6707, 'https://ror.org/021r5ns39', 'en', 1, 'https://ror.org/021r5ns39 National Environmental Engineering Research Institute'), (6708, 'https://ror.org/021rths28', 'en', 1, 'https://ror.org/021rths28 National Center for Chronic Disease Prevention and Health Promotion'), (6709, 'https://ror.org/021sagw45', 'no_lang_code', 1, 'https://ror.org/021sagw45 Nicolet Chartrand Knoll (Canada)'), (6710, 'https://ror.org/021spd704', 'en', 1, 'https://ror.org/021spd704 El Camino College'), (6711, 'https://ror.org/021w7cz98', 'en', 1, 'https://ror.org/021w7cz98 Posnick Center for Facial Plastic Surgery'), (6712, 'https://ror.org/021wvg932', 'no_lang_code', 1, 'https://ror.org/021wvg932 Center For Remote Sensing (United States)'), (6713, 'https://ror.org/021z7gb33', 'no_lang_code', 1, 'https://ror.org/021z7gb33 Evolutionary Genomics (United States)'), (6714, 'https://ror.org/021zg3m87', 'ro', 1, 'https://ror.org/021zg3m87 Institutul Oncologic Bucuresti'), (6715, 'https://ror.org/0220wzg80', 'no_lang_code', 1, 'https://ror.org/0220wzg80 South Australian Water Corporation'), (6716, 'https://ror.org/022194d90', 'no_lang_code', 1, 'https://ror.org/022194d90 Ajinomoto Althea (United States)'), (6717, 'https://ror.org/0221y9f82', 'no_lang_code', 1, 'https://ror.org/0221y9f82 Beneficial Designs (United States)'), (6718, 'https://ror.org/02237ny03', 'en', 1, 'https://ror.org/02237ny03 Taste and Smell Clinic'), (6719, 'https://ror.org/0224bx186', 'en', 1, 'https://ror.org/0224bx186 Nazareth College'), (6720, 'https://ror.org/0226ax553', 'en', 1, 'https://ror.org/0226ax553 St. Mary''s Medical Center'), (6721, 'https://ror.org/022c1xk47', 'no_lang_code', 1, 'https://ror.org/022c1xk47 Honda (Germany)'), (6722, 'https://ror.org/022ctzz37', 'no_lang_code', 1, 'https://ror.org/022ctzz37 Ohtsuka Eye Hospital 大塚眼科病院'), (6723, 'https://ror.org/022e9hp02', 'en', 1, 'https://ror.org/022e9hp02 Family Health Centers of San Diego'), (6724, 'https://ror.org/022fswr88', 'no_lang_code', 1, 'https://ror.org/022fswr88 New Span Opto-Technology (United States)'), (6725, 'https://ror.org/022fxd079', 'no_lang_code', 1, 'https://ror.org/022fxd079 Hexcel (United Kingdom)'), (6726, 'https://ror.org/022j4a796', 'en', 1, 'https://ror.org/022j4a796 Santa Barbara City College'), (6727, 'https://ror.org/022jc0g24', 'en', 1, 'https://ror.org/022jc0g24 Max Planck Institute for Developmental Biology Max-Planck-Institut für Entwicklungsbiologie'), (6728, 'https://ror.org/022jdjx35', 'no_lang_code', 1, 'https://ror.org/022jdjx35 Philip Morris International (Germany)'), (6729, 'https://ror.org/022m8zh32', 'en', 1, 'https://ror.org/022m8zh32 Grewal Eye Institute'), (6730, 'https://ror.org/022mrwt29', 'en', 1, 'https://ror.org/022mrwt29 Tzu Chi Foundation'), (6731, 'https://ror.org/022mzwp71', 'pt', 1, 'https://ror.org/022mzwp71 Instituto de Engenharia de Sistemas e Computadores Microsistemas e Nanotecnologias'), (6732, 'https://ror.org/022nh6s34', 'en', 1, 'https://ror.org/022nh6s34 Institute of Transplantation Sciences'), (6733, 'https://ror.org/022q4qx22', 'en', 1, 'https://ror.org/022q4qx22 Chicago Public Schools'), (6734, 'https://ror.org/022q5wf04', 'en', 1, 'https://ror.org/022q5wf04 County College of Morris'), (6735, 'https://ror.org/022r50851', 'en', 1, 'https://ror.org/022r50851 Steadman Clinic'), (6736, 'https://ror.org/022rrvm68', 'en', 1, 'https://ror.org/022rrvm68 Pavlov Institute of Physiology of the Russian Academy of Sciences Федеральное государственное бюджетное учреждение науки Институт физиологии им. И.П. Павлова Российской академии наук'), (6737, 'https://ror.org/022weqt39', 'no_lang_code', 1, 'https://ror.org/022weqt39 Planet Biotechnology (United States)'), (6738, 'https://ror.org/022xw8j65', 'en', 1, 'https://ror.org/022xw8j65 University of Mount Union Université de mount union'), (6739, 'https://ror.org/0230sdc57', 'no_lang_code', 1, 'https://ror.org/0230sdc57 Tanner Research (United States)'), (6740, 'https://ror.org/0232mk144', 'es', 1, 'https://ror.org/0232mk144 EsSALUD, Seguro Social de Salud del Perú'), (6741, 'https://ror.org/0234k0g56', 'no_lang_code', 1, 'https://ror.org/0234k0g56 HydraTek (Canada)'), (6742, 'https://ror.org/02358mx30', 'en', 1, 'https://ror.org/02358mx30 Institute for Safe Medication Practices'), (6743, 'https://ror.org/0235jet62', 'en', 1, 'https://ror.org/0235jet62 Akebono Clinic'), (6744, 'https://ror.org/0235kyq22', 'no_lang_code', 1, 'https://ror.org/0235kyq22 Petrobras (Brazil)'), (6745, 'https://ror.org/0235n3r56', 'en', 1, 'https://ror.org/0235n3r56 Let''s Talk Science'), (6746, 'https://ror.org/02385fa51', 'en', 1, 'https://ror.org/02385fa51 Max Planck Institute for Marine Microbiology Max-Planck-Institut für Marine Mikrobiologie'), (6747, 'https://ror.org/0238hgm18', 'no_lang_code', 1, 'https://ror.org/0238hgm18 GeneTrace Systems (United States)'), (6748, 'https://ror.org/0239g9287', 'en', 1, 'https://ror.org/0239g9287 East Bay Institute for Research & Education'), (6749, 'https://ror.org/0239skj46', 'en', 1, 'https://ror.org/0239skj46 Southeast Alaska Regional Health Consortium'), (6750, 'https://ror.org/023apm738', 'fr', 1, 'https://ror.org/023apm738 Centre d''Exploration et de Recherche Médicale par Emission de Positons'), (6751, 'https://ror.org/023bmvr81', 'no_lang_code', 1, 'https://ror.org/023bmvr81 Agenta Biotechnologies (United States)'), (6752, 'https://ror.org/023bn8s91', 'no_lang_code', 1, 'https://ror.org/023bn8s91 QED Labs'), (6753, 'https://ror.org/023cd6641', 'en', 1, 'https://ror.org/023cd6641 Michigan Department of Agriculture and Rural Development'), (6754, 'https://ror.org/023dbpz69', 'en', 1, 'https://ror.org/023dbpz69 National Association for Public Health Statistics and Information Systems'), (6755, 'https://ror.org/023dwm995', 'en', 1, 'https://ror.org/023dwm995 St. Thomas Hospital'), (6756, 'https://ror.org/023edjq13', 'no_lang_code', 1, 'https://ror.org/023edjq13 Johnson & Johnson (Germany)'), (6757, 'https://ror.org/023egfd39', 'no_lang_code', 1, 'https://ror.org/023egfd39 Onconova Therapeutics (United States)'), (6758, 'https://ror.org/023fm1q80', 'no_lang_code', 1, 'https://ror.org/023fm1q80 ON Semiconductor (Canada)'), (6759, 'https://ror.org/023j1kv28', 'en', 1, 'https://ror.org/023j1kv28 International Hearing Foundation'), (6760, 'https://ror.org/023mkm794', 'en', 1, 'https://ror.org/023mkm794 Sisseton Wahpeton College'), (6761, 'https://ror.org/023q7jh34', 'no_lang_code', 1, 'https://ror.org/023q7jh34 Hoare Lea (United Kingdom)'), (6762, 'https://ror.org/023q9w935', 'no_lang_code', 1, 'https://ror.org/023q9w935 INRIX (United Kingdom)'), (6763, 'https://ror.org/023sej223', 'en', 1, 'https://ror.org/023sej223 Nova Scotia Community College'), (6764, 'https://ror.org/023t9va96', 'no_lang_code', 1, 'https://ror.org/023t9va96 EKF Diagnostics (United States)'), (6765, 'https://ror.org/023v4bd62', 'en', 1, 'https://ror.org/023v4bd62 National Agriculture and Food Research Organization 農業・食品産業技術総合研究機構'), (6766, 'https://ror.org/023wdy559', 'tr', 1, 'https://ror.org/023wdy559 University of Health Sciences İstanbul Ümranyie Training and Research Hospital Ümraniye Eğitim ve Araştırma Hastanesi'), (6767, 'https://ror.org/023xsn018', 'it', 1, 'https://ror.org/023xsn018 Casa di Cura Columbus'), (6768, 'https://ror.org/023ymdw14', 'no_lang_code', 1, 'https://ror.org/023ymdw14 Canadian Electric Vehicles (Canada)'), (6769, 'https://ror.org/023zey656', 'en', 1, 'https://ror.org/023zey656 Biophysical Society'), (6770, 'https://ror.org/0240rwx68', 'en', 1, 'https://ror.org/0240rwx68 Istituto di Neuroscienze Neuroscience Institute'), (6771, 'https://ror.org/02419mc73', 'en', 1, 'https://ror.org/02419mc73 Boston VA Research Institute'), (6772, 'https://ror.org/0241wfp64', 'en', 1, 'https://ror.org/0241wfp64 Orthopedic Foot & Ankle Center'), (6773, 'https://ror.org/0243gzr89', 'en', 1, 'https://ror.org/0243gzr89 Max Planck Institut für Biologie Max Planck Institute for Biology'), (6774, 'https://ror.org/024712k05', 'no_lang_code', 1, 'https://ror.org/024712k05 Molsoft (United States)'), (6775, 'https://ror.org/0248cgv13', 'no_lang_code', 1, 'https://ror.org/0248cgv13 Optron Systems (United States)'), (6776, 'https://ror.org/0248zc213', 'en', 1, 'https://ror.org/0248zc213 Christus Health'), (6777, 'https://ror.org/0249jjk91', 'en', 1, 'https://ror.org/0249jjk91 Kuwait Cancer Control Center'), (6778, 'https://ror.org/024a9q404', 'no_lang_code', 1, 'https://ror.org/024a9q404 ALD NanoSolutions (United States)'), (6779, 'https://ror.org/024b7e967', 'en', 1, 'https://ror.org/024b7e967 Phoenix VA Health Care System'), (6780, 'https://ror.org/024dad879', 'no_lang_code', 1, 'https://ror.org/024dad879 Provid Pharmaceuticals (United States)'), (6781, 'https://ror.org/024en4403', 'en', 1, 'https://ror.org/024en4403 London Women''s Clinic'), (6782, 'https://ror.org/024es8b17', 'no_lang_code', 1, 'https://ror.org/024es8b17 Natural Selection (United States)'), (6783, 'https://ror.org/024hqjk04', 'es', 1, 'https://ror.org/024hqjk04 Administración Nacional de Laboratorios e Institutos de Salud'), (6784, 'https://ror.org/024kwpx52', 'no_lang_code', 1, 'https://ror.org/024kwpx52 Auritec Pharmaceuticals (United States)'), (6785, 'https://ror.org/024nkak84', 'en', 1, 'https://ror.org/024nkak84 Taiwan Adventist Hospital 台安医院'), (6786, 'https://ror.org/024sy5q53', 'en', 1, 'https://ror.org/024sy5q53 Nuffield Council on Bioethics'), (6787, 'https://ror.org/024weye46', 'en', 1, 'https://ror.org/024weye46 Conservation International'), (6788, 'https://ror.org/024xq8r45', 'no_lang_code', 1, 'https://ror.org/024xq8r45 Thermalin Diabetes (United States)'), (6789, 'https://ror.org/0251x9332', 'en', 1, 'https://ror.org/0251x9332 John Wesley Community Health Institute'), (6790, 'https://ror.org/0253ddj72', 'en', 1, 'https://ror.org/0253ddj72 Portland Cement Association'), (6791, 'https://ror.org/0255fcy13', 'en', 1, 'https://ror.org/0255fcy13 Warrington Hospital'), (6792, 'https://ror.org/0259axc43', 'no_lang_code', 1, 'https://ror.org/0259axc43 SeaWell Networks (Canada)'), (6793, 'https://ror.org/025fs6666', 'no_lang_code', 1, 'https://ror.org/025fs6666 Antigen Discovery (United States)'), (6794, 'https://ror.org/025jays06', 'no_lang_code', 1, 'https://ror.org/025jays06 Greenfield Research (Canada)'), (6795, 'https://ror.org/025m2a107', 'en', 1, 'https://ror.org/025m2a107 Institute for Veterinary Medical Research Állatorvos Tudományi Intézet'), (6796, 'https://ror.org/025ngyw60', 'en', 1, 'https://ror.org/025ngyw60 Doane University'); INSERT INTO `rors` VALUES (6797, 'https://ror.org/025pdmt14', 'no_lang_code', 1, 'https://ror.org/025pdmt14 Severn Trent (United Kingdom)'), (6798, 'https://ror.org/025qedy81', 'en', 1, 'https://ror.org/025qedy81 Children''s Health Ireland at Crumlin Sláinte Leanaí Éireann ag Cromghlinn'), (6799, 'https://ror.org/025qsw441', 'en', 1, 'https://ror.org/025qsw441 Deep River Science Academy'), (6800, 'https://ror.org/025rx1w27', 'no_lang_code', 1, 'https://ror.org/025rx1w27 IONICS Mass Spectrometry (Canada)'), (6801, 'https://ror.org/025s1b152', 'fr', 1, 'https://ror.org/025s1b152 Lille Catholic University Université Catholique de Lille'), (6802, 'https://ror.org/025tz0x98', 'en', 1, 'https://ror.org/025tz0x98 Heart Clinic of Louisiana'), (6803, 'https://ror.org/025vn3989', 'no_lang_code', 1, 'https://ror.org/025vn3989 GlaxoSmithKline (United States)'), (6804, 'https://ror.org/025w1ct43', 'en', 1, 'https://ror.org/025w1ct43 Tri-City Medical Center'), (6805, 'https://ror.org/025y0hb72', 'en', 1, 'https://ror.org/025y0hb72 Royal Astronomical Society of Canada'), (6806, 'https://ror.org/025yw0g63', 'en', 1, 'https://ror.org/025yw0g63 Clinical Immunology Society'), (6807, 'https://ror.org/025zbvz40', 'en', 1, 'https://ror.org/025zbvz40 Arizona Academy of Science'), (6808, 'https://ror.org/025zzpg41', 'no_lang_code', 1, 'https://ror.org/025zzpg41 BioFusionary Corporation (United States)'), (6809, 'https://ror.org/026365h19', 'no_lang_code', 1, 'https://ror.org/026365h19 Anvik Corporation (United States)'), (6810, 'https://ror.org/0263fes98', 'no_lang_code', 1, 'https://ror.org/0263fes98 Center for Value Based Medicine (United States)'), (6811, 'https://ror.org/0263jp665', 'fr', 1, 'https://ror.org/0263jp665 Hôpital René Huguenin'), (6812, 'https://ror.org/0265tbd09', 'no_lang_code', 1, 'https://ror.org/0265tbd09 Advanced Materials Technology (United States)'), (6813, 'https://ror.org/0266h1q26', 'en', 1, 'https://ror.org/0266h1q26 Norton Healthcare'), (6814, 'https://ror.org/026799x08', 'no_lang_code', 1, 'https://ror.org/026799x08 CyberFluor and Kronen Systems Incorporated'), (6815, 'https://ror.org/0269j3194', 'en', 1, 'https://ror.org/0269j3194 Global HIV Vaccine Enterprise'), (6816, 'https://ror.org/026a3nk20', 'en', 1, 'https://ror.org/026a3nk20 Sitaram Bhartia Institute of Science and Research'), (6817, 'https://ror.org/026atsz45', 'en', 1, 'https://ror.org/026atsz45 Montana Wyoming Tribal Leaders Council'), (6818, 'https://ror.org/026b6f512', 'no_lang_code', 1, 'https://ror.org/026b6f512 Tinderbox Consultants (United Kingdom)'), (6819, 'https://ror.org/026bd4t65', 'no_lang_code', 1, 'https://ror.org/026bd4t65 UT Dots (United States)'), (6820, 'https://ror.org/026ejyb70', 'en', 1, 'https://ror.org/026ejyb70 Oxford Centre for Computational Neuroscience'), (6821, 'https://ror.org/026jzqm86', 'en', 1, 'https://ror.org/026jzqm86 Productive Rehabilitation Institute of Dallas for Ergonomics'), (6822, 'https://ror.org/026mp1041', 'en', 1, 'https://ror.org/026mp1041 St. Joseph Hospital'), (6823, 'https://ror.org/026ms9533', 'en', 1, 'https://ror.org/026ms9533 Hazardous Materials Training and Research Institute'), (6824, 'https://ror.org/026nmvv73', 'en', 1, 'https://ror.org/026nmvv73 Max Planck Institute for Biological Cybernetics Max-Planck-Institut für Biologische Kybernetik'), (6825, 'https://ror.org/026prsd04', 'no_lang_code', 1, 'https://ror.org/026prsd04 CytoCure (United States)'), (6826, 'https://ror.org/026vpvt76', 'no_lang_code', 1, 'https://ror.org/026vpvt76 Geron (United States)'), (6827, 'https://ror.org/026x7hp94', 'no_lang_code', 1, 'https://ror.org/026x7hp94 Biopeptide (United States)'), (6828, 'https://ror.org/026zvyv64', 'no_lang_code', 1, 'https://ror.org/026zvyv64 Assystem (Germany)'), (6829, 'https://ror.org/0271yft62', 'no_lang_code', 1, 'https://ror.org/0271yft62 Harrington Software Associates'), (6830, 'https://ror.org/0272c7580', 'no_lang_code', 1, 'https://ror.org/0272c7580 NeoClone (United States)'), (6831, 'https://ror.org/0273kmy05', 'no_lang_code', 1, 'https://ror.org/0273kmy05 Passat (Canada)'), (6832, 'https://ror.org/0275fz765', 'en', 1, 'https://ror.org/0275fz765 National Aquarium'), (6833, 'https://ror.org/0276e1563', 'en', 1, 'https://ror.org/0276e1563 South Dakota Department of Social Services'), (6834, 'https://ror.org/0277xgb12', 'en', 1, 'https://ror.org/0277xgb12 Institute of Cytology and Genetics Федеральный исследовательский центр Институт цитологии и генетики Сибирского отделения Российской академии наук'), (6835, 'https://ror.org/027892803', 'no_lang_code', 1, 'https://ror.org/027892803 Boston Medical Products (United States)'), (6836, 'https://ror.org/027923343', 'en', 1, 'https://ror.org/027923343 Victorian Order of Nurses'), (6837, 'https://ror.org/0279fsn39', 'no_lang_code', 1, 'https://ror.org/0279fsn39 Aedas (United Kingdom)'), (6838, 'https://ror.org/027a0b050', 'no_lang_code', 1, 'https://ror.org/027a0b050 Integrated BioTherapeutics (United States)'), (6839, 'https://ror.org/027ade760', 'en', 1, 'https://ror.org/027ade760 Tabba Heart Institute'), (6840, 'https://ror.org/027akq961', 'fr', 1, 'https://ror.org/027akq961 Institut de la Main'), (6841, 'https://ror.org/027as9m12', 'en', 1, 'https://ror.org/027as9m12 Canadian Obesity Network Réseau Canadien en l’Obésité'), (6842, 'https://ror.org/027e41r21', 'no_lang_code', 1, 'https://ror.org/027e41r21 Chemica Technologies (United States)'), (6843, 'https://ror.org/027fjzp74', 'en', 1, 'https://ror.org/027fjzp74 Obihiro Kosei General Hospital 帯広厚生病院'), (6844, 'https://ror.org/027g3rh44', 'en', 1, 'https://ror.org/027g3rh44 New Economics Foundation'), (6845, 'https://ror.org/027grcd37', 'hu', 1, 'https://ror.org/027grcd37 Állami Szívkórház'), (6846, 'https://ror.org/027h1w574', 'en', 1, 'https://ror.org/027h1w574 Kidwai Memorial Institute of Oncology'), (6847, 'https://ror.org/027h69z40', 'no_lang_code', 1, 'https://ror.org/027h69z40 AlertMe (United Kingdom)'), (6848, 'https://ror.org/027hwkg23', 'en', 1, 'https://ror.org/027hwkg23 Engelhardt Institute of Molecular Biology Федеральное государственное бюджетное учреждение науки Институт молекулярной биологии им. В.А. Энгельгардта Российской академии наук'), (6849, 'https://ror.org/027j12e75', 'no_lang_code', 1, 'https://ror.org/027j12e75 Quantum Simulations (United States)'), (6850, 'https://ror.org/027mz0g68', 'en', 1, 'https://ror.org/027mz0g68 Salem VA Medical Center'), (6851, 'https://ror.org/027qenx56', 'no_lang_code', 1, 'https://ror.org/027qenx56 Capcom Vancouver (Canada)'), (6852, 'https://ror.org/027tbp210', 'en', 1, 'https://ror.org/027tbp210 Centre for Life'), (6853, 'https://ror.org/027tjex48', 'no_lang_code', 1, 'https://ror.org/027tjex48 Meiji (Japan) 明治'), (6854, 'https://ror.org/027zey487', 'no_lang_code', 1, 'https://ror.org/027zey487 Celdara Medical (United States)'), (6855, 'https://ror.org/0281e1q12', 'en', 1, 'https://ror.org/0281e1q12 Institute for Broadening Participation'), (6856, 'https://ror.org/0281jqk77', 'en', 1, 'https://ror.org/0281jqk77 Nuffield Foundation'), (6857, 'https://ror.org/0282bjj02', 'no_lang_code', 1, 'https://ror.org/0282bjj02 Promiliad Biopharma (United States)'), (6858, 'https://ror.org/0282s7q36', 'en', 1, 'https://ror.org/0282s7q36 Tenshi Hospital 天使病院'), (6859, 'https://ror.org/0284zjc89', 'no_lang_code', 1, 'https://ror.org/0284zjc89 Yokufukai Hospital 浴風会病院'), (6860, 'https://ror.org/0285qgt37', 'no_lang_code', 1, 'https://ror.org/0285qgt37 Applied System Technologies (United States)'), (6861, 'https://ror.org/0286exd49', 'no_lang_code', 1, 'https://ror.org/0286exd49 SaskTel (Canada)'), (6862, 'https://ror.org/0286xn075', 'no_lang_code', 1, 'https://ror.org/0286xn075 21st Century Medicine (United States)'), (6863, 'https://ror.org/028807987', 'en', 1, 'https://ror.org/028807987 Kyoto Research Park 京都リサーチパーク'), (6864, 'https://ror.org/02882ey95', 'en', 1, 'https://ror.org/02882ey95 Society for Academic Emergency Medicine'), (6865, 'https://ror.org/02889gd81', 'no_lang_code', 1, 'https://ror.org/02889gd81 Unicon Research (United States)'), (6866, 'https://ror.org/0288qta63', 'en', 1, 'https://ror.org/0288qta63 Hartwick College'), (6867, 'https://ror.org/0289bhn79', 'no_lang_code', 1, 'https://ror.org/0289bhn79 Telesensory (United States)'), (6868, 'https://ror.org/0289e7d92', 'en', 1, 'https://ror.org/0289e7d92 Belgian Road Research Centre'), (6869, 'https://ror.org/0289ggs32', 'es', 1, 'https://ror.org/0289ggs32 Administracion de los Servicios de Salud del Estado'), (6870, 'https://ror.org/028a3y923', 'no_lang_code', 1, 'https://ror.org/028a3y923 VisionQuest Biomedical (United States)'), (6871, 'https://ror.org/028ca6f22', 'en', 1, 'https://ror.org/028ca6f22 Clark Planetarium'), (6872, 'https://ror.org/028chtg69', 'no_lang_code', 1, 'https://ror.org/028chtg69 SVT Associates (United States)'), (6873, 'https://ror.org/028e1xc68', 'en', 1, 'https://ror.org/028e1xc68 Center for Clinical & Basic Research'), (6874, 'https://ror.org/028fd8812', 'en', 1, 'https://ror.org/028fd8812 Santa Clara Valley Health and Hospital System'), (6875, 'https://ror.org/028ffjf65', 'en', 1, 'https://ror.org/028ffjf65 Black Women’s Health Imperative'), (6876, 'https://ror.org/028k36c88', 'en', 1, 'https://ror.org/028k36c88 Science North'), (6877, 'https://ror.org/028mr0844', 'en', 1, 'https://ror.org/028mr0844 European Monitoring Centre for Drugs and Drug Addiction Observatório Europeu da Droga e da Toxicodependência'), (6878, 'https://ror.org/028my8947', 'en', 1, 'https://ror.org/028my8947 Chabot Space and Science Center'), (6879, 'https://ror.org/028p2na45', 'no_lang_code', 1, 'https://ror.org/028p2na45 MagneSensors (United States)'), (6880, 'https://ror.org/028q4nk39', 'no_lang_code', 1, 'https://ror.org/028q4nk39 Pipehawk (United Kingdom)'), (6881, 'https://ror.org/028qa3n13', 'en', 1, 'https://ror.org/028qa3n13 Indian Institute of Science Education and Research Pune भारतीय विज्ञान शिक्षा एवं अनुसंधान संस्थान, पुणे'), (6882, 'https://ror.org/028qd3f30', 'en', 1, 'https://ror.org/028qd3f30 Government Dental College & Research Institute'), (6883, 'https://ror.org/028rev379', 'en', 1, 'https://ror.org/028rev379 Policy Research Associates'), (6884, 'https://ror.org/028t43p77', 'en', 1, 'https://ror.org/028t43p77 Departamento del Tesoro de los Estados Unidos Département du trésor des États-unis United States Department of the Treasury'), (6885, 'https://ror.org/028tzq930', 'en', 1, 'https://ror.org/028tzq930 Kirkwood Community College'), (6886, 'https://ror.org/028zpwn78', 'fr', 1, 'https://ror.org/028zpwn78 Centre de Recherche et d’Information sur la Démocratie et l''Autonomie'), (6887, 'https://ror.org/0290kkw06', 'no_lang_code', 1, 'https://ror.org/0290kkw06 Applied Behavioral Research (United States)'), (6888, 'https://ror.org/0291gd333', 'no_lang_code', 1, 'https://ror.org/0291gd333 STATegics (United States)'), (6889, 'https://ror.org/02927dx12', 'en', 1, 'https://ror.org/02927dx12 Institute of Life Sciences'), (6890, 'https://ror.org/0292awh62', 'no_lang_code', 1, 'https://ror.org/0292awh62 Merck (Japan) メルク'), (6891, 'https://ror.org/0293t9757', 'no_lang_code', 1, 'https://ror.org/0293t9757 Droplet Measurement Technologies (United States)'), (6892, 'https://ror.org/0295s2632', 'en', 1, 'https://ror.org/0295s2632 La Comisión Latina sobre el SIDA Latino Commission on AIDS'), (6893, 'https://ror.org/02966z980', 'en', 1, 'https://ror.org/02966z980 Seminole State College of Florida'), (6894, 'https://ror.org/0296e0332', 'en', 1, 'https://ror.org/0296e0332 Iowa Department of Inspections and Appeals'), (6895, 'https://ror.org/0296esg18', 'en', 1, 'https://ror.org/0296esg18 Valencia College'), (6896, 'https://ror.org/0296s4x19', 'no_lang_code', 1, 'https://ror.org/0296s4x19 Orion Corporation (Finland) Orion Oyj'), (6897, 'https://ror.org/0298pes53', 'en', 1, 'https://ror.org/0298pes53 Korea Institute of Energy Research'), (6898, 'https://ror.org/02996zz79', 'en', 1, 'https://ror.org/02996zz79 Voorhees College'), (6899, 'https://ror.org/029aeh759', 'no_lang_code', 1, 'https://ror.org/029aeh759 Kromek (United States)'), (6900, 'https://ror.org/029dkfk52', 'no_lang_code', 1, 'https://ror.org/029dkfk52 Interlab (United States)'), (6901, 'https://ror.org/029fzbq43', 'no_lang_code', 1, 'https://ror.org/029fzbq43 Oita Prefectural Hospital 大分県立病院'), (6902, 'https://ror.org/029g5f696', 'no_lang_code', 1, 'https://ror.org/029g5f696 Cook General BioTechnology (United States)'), (6903, 'https://ror.org/029kax838', 'no_lang_code', 1, 'https://ror.org/029kax838 Muprime Technology (Canada)'), (6904, 'https://ror.org/029ndp841', 'no_lang_code', 1, 'https://ror.org/029ndp841 Ash Stevens (United States)'), (6905, 'https://ror.org/029nvrb94', 'en', 1, 'https://ror.org/029nvrb94 Singapore National Eye Center'), (6906, 'https://ror.org/029p1pm63', 'en', 1, 'https://ror.org/029p1pm63 Williams LifeSkills'), (6907, 'https://ror.org/029sr1j73', 'en', 1, 'https://ror.org/029sr1j73 Ospidéal Mhuire Lourdes Our Lady of Lourdes Hospital'), (6908, 'https://ror.org/029w5ya68', 'en', 1, 'https://ror.org/029w5ya68 European Neuroscience Institute Göttingen'), (6909, 'https://ror.org/029xxx628', 'en', 1, 'https://ror.org/029xxx628 Aquinas Institute of Theology'), (6910, 'https://ror.org/029ybkn33', 'no_lang_code', 1, 'https://ror.org/029ybkn33 Edenspace Systems (United States)'), (6911, 'https://ror.org/029yxsv15', 'en', 1, 'https://ror.org/029yxsv15 Society of General Physiologists'), (6912, 'https://ror.org/029z7h505', 'en', 1, 'https://ror.org/029z7h505 Salt Lake Community College'), (6913, 'https://ror.org/029zamy29', 'no_lang_code', 1, 'https://ror.org/029zamy29 Springer Nature (New Zealand)'), (6914, 'https://ror.org/029zb5621', 'en', 1, 'https://ror.org/029zb5621 Central Rice Research Institute'), (6915, 'https://ror.org/02a0k6s81', 'en', 1, 'https://ror.org/02a0k6s81 Tianjin Children''s Hospital 天津市儿童医院'), (6916, 'https://ror.org/02a0sqy81', 'en', 1, 'https://ror.org/02a0sqy81 Columbia Education'), (6917, 'https://ror.org/02a33b393', 'en', 1, 'https://ror.org/02a33b393 Max Planck Institute for Evolutionary Anthropology Max-Planck-Institut für Evolutionäre Anthropologie'), (6918, 'https://ror.org/02a4gss26', 'no_lang_code', 1, 'https://ror.org/02a4gss26 Sasol (South Africa)'), (6919, 'https://ror.org/02aawcy27', 'no_lang_code', 1, 'https://ror.org/02aawcy27 Navigen (United States)'), (6920, 'https://ror.org/02acb4z65', 'en', 1, 'https://ror.org/02acb4z65 Sequoia Foundation'), (6921, 'https://ror.org/02afj1h05', 'en', 1, 'https://ror.org/02afj1h05 Research Institute for Olympic Sports'), (6922, 'https://ror.org/02afjh072', 'en', 1, 'https://ror.org/02afjh072 Fraunhofer Institute for Applied Optics and Precision Engineering Fraunhofer-Institut für Angewandte Optik und Feinmechanik'), (6923, 'https://ror.org/02agkk742', 'en', 1, 'https://ror.org/02agkk742 National Institute of Indian Medical Heritage राष्ट्रीय भारतीय आयुर्विज्ञान संपदा संस्थान'), (6924, 'https://ror.org/02ah36853', 'en', 1, 'https://ror.org/02ah36853 Midwest Eye Institute'), (6925, 'https://ror.org/02aj0wy64', 'es', 1, 'https://ror.org/02aj0wy64 Centro Hospitalario Pereira Rossell, Hospital Pereira Rossell'), (6926, 'https://ror.org/02aqv1x10', 'en', 1, 'https://ror.org/02aqv1x10 Marie Curie'), (6927, 'https://ror.org/02aredd96', 'en', 1, 'https://ror.org/02aredd96 HIV Netherlands Australia Thailand Research Collaboration'), (6928, 'https://ror.org/02arg8v16', 'no_lang_code', 1, 'https://ror.org/02arg8v16 Enapter (Italy)'), (6929, 'https://ror.org/02av0ty63', 'no_lang_code', 1, 'https://ror.org/02av0ty63 Palladian Partners'), (6930, 'https://ror.org/02avws951', 'no_lang_code', 1, 'https://ror.org/02avws951 Fresenius Medical Care (United States)'), (6931, 'https://ror.org/02axars19', 'en', 1, 'https://ror.org/02axars19 Gansu Provincial Hospital 甘肃省人民医院'), (6932, 'https://ror.org/02axsa366', 'en', 1, 'https://ror.org/02axsa366 Santa Fe Community College'), (6933, 'https://ror.org/02azqtm75', 'en', 1, 'https://ror.org/02azqtm75 National Sanitation Foundation International'), (6934, 'https://ror.org/02azsay93', 'en', 1, 'https://ror.org/02azsay93 Pakistan Health Research Council مجلس البحوث الطبية في باكستان'), (6935, 'https://ror.org/02b10nq15', 'en', 1, 'https://ror.org/02b10nq15 Roskamp Institute'), (6936, 'https://ror.org/02b1qqv62', 'en', 1, 'https://ror.org/02b1qqv62 National Food Administration'), (6937, 'https://ror.org/02b2x6q12', 'en', 1, 'https://ror.org/02b2x6q12 AID Atlanta'), (6938, 'https://ror.org/02b4rb907', 'ro', 1, 'https://ror.org/02b4rb907 Institutul Național de Endocrinologie C.I. Parhon'), (6939, 'https://ror.org/02b5mfy68', 'it', 1, 'https://ror.org/02b5mfy68 Istituto Dermopatico dell''Immacolata'), (6940, 'https://ror.org/02b9pea19', 'en', 1, 'https://ror.org/02b9pea19 Coastal Bend Wellness Foundation'), (6941, 'https://ror.org/02bawng60', 'no_lang_code', 1, 'https://ror.org/02bawng60 Novasentis (United States)'), (6942, 'https://ror.org/02bbrpp66', 'no_lang_code', 1, 'https://ror.org/02bbrpp66 Convergent Manufacturing Technologies (Canada)'), (6943, 'https://ror.org/02be9aj39', 'en', 1, 'https://ror.org/02be9aj39 H. R. MacMillan Space Centre'), (6944, 'https://ror.org/02bf6t552', 'en', 1, 'https://ror.org/02bf6t552 American College of Chest Physicians'), (6945, 'https://ror.org/02bfrb046', 'no_lang_code', 1, 'https://ror.org/02bfrb046 Polysciences (United States)'), (6946, 'https://ror.org/02bj40x52', 'en', 1, 'https://ror.org/02bj40x52 Osaka Rosai Hospital 大阪労災病院'), (6947, 'https://ror.org/02bkd7d61', 'en', 1, 'https://ror.org/02bkd7d61 Hokkaido Agricultural Research Center 北海道農業研究センター'), (6948, 'https://ror.org/02bm24g42', 'es', 1, 'https://ror.org/02bm24g42 Asociación Civil Impacta Salud y Educación'), (6949, 'https://ror.org/02bm6g618', 'en', 1, 'https://ror.org/02bm6g618 Russell Sage College'), (6950, 'https://ror.org/02bmj6022', 'no_lang_code', 1, 'https://ror.org/02bmj6022 Omneuron (United States)'), (6951, 'https://ror.org/02bpm1n29', 'no_lang_code', 1, 'https://ror.org/02bpm1n29 Southeast TechInventures (United States)'), (6952, 'https://ror.org/02bpqmq41', 'en', 1, 'https://ror.org/02bpqmq41 China Rehabilitation Research Center'), (6953, 'https://ror.org/02brfgh04', 'en', 1, 'https://ror.org/02brfgh04 Institute of Human Behaviour and Allied Sciences'), (6954, 'https://ror.org/02brpaf34', 'it', 1, 'https://ror.org/02brpaf34 Istituto Ortopedico Gaetano Pini'), (6955, 'https://ror.org/02bsaqx63', 'en', 1, 'https://ror.org/02bsaqx63 House Clinic'), (6956, 'https://ror.org/02bt45m31', 'en', 1, 'https://ror.org/02bt45m31 American Medical Informatics Association'), (6957, 'https://ror.org/02bwfhj24', 'en', 1, 'https://ror.org/02bwfhj24 Center for Telepsychology'), (6958, 'https://ror.org/02bwppq44', 'no_lang_code', 1, 'https://ror.org/02bwppq44 Mo Sci Corporation (United States)'), (6959, 'https://ror.org/02bwz0282', 'no_lang_code', 1, 'https://ror.org/02bwz0282 GLC Biotechnology (United States)'), (6960, 'https://ror.org/02bx0ak73', 'en', 1, 'https://ror.org/02bx0ak73 Woodland Hills Medical Center'), (6961, 'https://ror.org/02byjcr11', 'en', 1, 'https://ror.org/02byjcr11 Fraunhofer Institut für Toxikologie und Experimentelle Medizin Fraunhofer Institute for Toxicology and Experimental Medicine'), (6962, 'https://ror.org/02bzq7389', 'en', 1, 'https://ror.org/02bzq7389 Howard Community College'), (6963, 'https://ror.org/02c1at876', 'no_lang_code', 1, 'https://ror.org/02c1at876 Martec (Canada)'), (6964, 'https://ror.org/02c22vc57', 'en', 1, 'https://ror.org/02c22vc57 Leibniz Institute for Prevention Research and Epidemiology - BIPS Leibniz-Institut für Präventionsforschung und Epidemiologie - BIPS'), (6965, 'https://ror.org/02c235t25', 'en', 1, 'https://ror.org/02c235t25 Northwest Indian College'), (6966, 'https://ror.org/02c241b98', 'en', 1, 'https://ror.org/02c241b98 Associated Skin Care Specialists'), (6967, 'https://ror.org/02c27v641', 'en', 1, 'https://ror.org/02c27v641 Northeastern Oklahoma A&M College'), (6968, 'https://ror.org/02c2e2v80', 'en', 1, 'https://ror.org/02c2e2v80 Institute of Biology and Immunology of Reproduction Институт по биология и имунология на размножаването'), (6969, 'https://ror.org/02c3hd322', 'en', 1, 'https://ror.org/02c3hd322 National Public Radio'), (6970, 'https://ror.org/02c495c76', 'en', 1, 'https://ror.org/02c495c76 St. Joseph’s University Medical Center'), (6971, 'https://ror.org/02c5bjt68', 'en', 1, 'https://ror.org/02c5bjt68 Community Rehabilitation Center'), (6972, 'https://ror.org/02c5sgb74', 'en', 1, 'https://ror.org/02c5sgb74 Collaborative Research Group'), (6973, 'https://ror.org/02c761853', 'no_lang_code', 1, 'https://ror.org/02c761853 Proto Corporation (United States)'), (6974, 'https://ror.org/02c93ee60', 'en', 1, 'https://ror.org/02c93ee60 Osaka Occupational Health Research Center 大阪労働衛生総合センター'), (6975, 'https://ror.org/02carhc19', 'fr', 1, 'https://ror.org/02carhc19 Centre Hospitalier de Tourcoing'), (6976, 'https://ror.org/02caytj08', 'en', 1, 'https://ror.org/02caytj08 Defense Advanced Research Projects Agency'), (6977, 'https://ror.org/02cbwht62', 'en', 1, 'https://ror.org/02cbwht62 Department of Services for Children Youth and their Families'), (6978, 'https://ror.org/02cf89s21', 'en', 1, 'https://ror.org/02cf89s21 Orthopaedic Hospital Speising Orthopädisches Spital Speising'), (6979, 'https://ror.org/02cfbec64', 'fr', 1, 'https://ror.org/02cfbec64 Hôpital Militaire Avicenne'), (6980, 'https://ror.org/02cfj6k65', 'no_lang_code', 1, 'https://ror.org/02cfj6k65 Watershed'), (6981, 'https://ror.org/02ch1zb66', 'en', 1, 'https://ror.org/02ch1zb66 Tianjin First Center Hospital 天津市第一中心医院'), (6982, 'https://ror.org/02chbx029', 'no_lang_code', 1, 'https://ror.org/02chbx029 Oji General Hospital 王子総合病院'), (6983, 'https://ror.org/02cmjqw34', 'en', 1, 'https://ror.org/02cmjqw34 My Brother''s Keeper'), (6984, 'https://ror.org/02cmyty27', 'en', 1, 'https://ror.org/02cmyty27 St. Joseph''s Hospital'), (6985, 'https://ror.org/02cs3sv23', 'sv', 1, 'https://ror.org/02cs3sv23 Uddevalla sjukhus'), (6986, 'https://ror.org/02csvyc65', 'no_lang_code', 1, 'https://ror.org/02csvyc65 IMRIS (Canada)'), (6987, 'https://ror.org/02cvrf195', 'no_lang_code', 1, 'https://ror.org/02cvrf195 Polestar Technologies (United States)'), (6988, 'https://ror.org/02czfmn65', 'en', 1, 'https://ror.org/02czfmn65 Thames Valley Children''s Centre'), (6989, 'https://ror.org/02d0e3p67', 'en', 1, 'https://ror.org/02d0e3p67 Wollongong Hospital'), (6990, 'https://ror.org/02d33pz63', 'no_lang_code', 1, 'https://ror.org/02d33pz63 CCS Associates (United States)'), (6991, 'https://ror.org/02d4g5x37', 'no_lang_code', 1, 'https://ror.org/02d4g5x37 Virginia Technologies (United States)'), (6992, 'https://ror.org/02d4qpq05', 'no_lang_code', 1, 'https://ror.org/02d4qpq05 Transgene (France)'), (6993, 'https://ror.org/02d4smc03', 'en', 1, 'https://ror.org/02d4smc03 GF Strong Rehabilitation Centre'), (6994, 'https://ror.org/02d4twb46', 'en', 1, 'https://ror.org/02d4twb46 Sound Health Options'), (6995, 'https://ror.org/02d6ew870', 'no_lang_code', 1, 'https://ror.org/02d6ew870 Baxter (United States)'), (6996, 'https://ror.org/02d7h9t50', 'no_lang_code', 1, 'https://ror.org/02d7h9t50 Consad (United States)'), (6997, 'https://ror.org/02d8ncy29', 'en', 1, 'https://ror.org/02d8ncy29 Yokkaichi Social Insurance Hospital 四日市羽津医療センター'), (6998, 'https://ror.org/02d93ae38', 'en', 1, 'https://ror.org/02d93ae38 Institute for Social Security and Services for State Workers Instituto de Seguridad y Servicios Sociales de los Trabajadores del Estado'), (6999, 'https://ror.org/02d9tbb08', 'en', 1, 'https://ror.org/02d9tbb08 Henry Ford College'), (7000, 'https://ror.org/02davtb12', 'it', 1, 'https://ror.org/02davtb12 Centro San Giovanni di Dio Fatebenefratelli'), (7001, 'https://ror.org/02dc0q644', 'en', 1, 'https://ror.org/02dc0q644 Psychological Health Associates'), (7002, 'https://ror.org/02dcdb854', 'no_lang_code', 1, 'https://ror.org/02dcdb854 SeraCare Life Sciences (United States)'), (7003, 'https://ror.org/02dgnkc37', 'no_lang_code', 1, 'https://ror.org/02dgnkc37 TDIC (United States)'), (7004, 'https://ror.org/02dk80w07', 'en', 1, 'https://ror.org/02dk80w07 Museu Nacional de Arte Antiga National Museum of Ancient Art'), (7005, 'https://ror.org/02dphst03', 'en', 1, 'https://ror.org/02dphst03 National Council for Science and the Environment'), (7006, 'https://ror.org/02dq1ca65', 'no_lang_code', 1, 'https://ror.org/02dq1ca65 Minerva Biotechnologies (United States)'), (7007, 'https://ror.org/02dqztz06', 'en', 1, 'https://ror.org/02dqztz06 Electric Power Research Institute'), (7008, 'https://ror.org/02dvgss50', 'en', 1, 'https://ror.org/02dvgss50 Stepping Hill Hospital'), (7009, 'https://ror.org/02dw7ch21', 'no_lang_code', 1, 'https://ror.org/02dw7ch21 Element Six (United Kingdom)'), (7010, 'https://ror.org/02dw95q60', 'en', 1, 'https://ror.org/02dw95q60 New York Heart Research Foundation'), (7011, 'https://ror.org/02dx8kd29', 'sr', 1, 'https://ror.org/02dx8kd29 Institut za Zdravstvenu Zastitu Majke i Deteta'), (7012, 'https://ror.org/02dy9y553', 'en', 1, 'https://ror.org/02dy9y553 Amrith Educational and Cultural Society'), (7013, 'https://ror.org/02dywg371', 'en', 1, 'https://ror.org/02dywg371 Del Mar College'), (7014, 'https://ror.org/02e1bds08', 'no_lang_code', 1, 'https://ror.org/02e1bds08 Corning (France)'), (7015, 'https://ror.org/02e1s7e95', 'en', 1, 'https://ror.org/02e1s7e95 Kettering Foundation'), (7016, 'https://ror.org/02e1syn97', 'en', 1, 'https://ror.org/02e1syn97 Glendale Community College'), (7017, 'https://ror.org/02e3ssq97', 'en', 1, 'https://ror.org/02e3ssq97 Don Carlo Gnocchi Foundation'), (7018, 'https://ror.org/02e463172', 'en', 1, 'https://ror.org/02e463172 American Cancer Society'), (7019, 'https://ror.org/02e560b93', 'de', 1, 'https://ror.org/02e560b93 Barmherzige Brüder Klinikum St. Elisabeth in Straubing'), (7020, 'https://ror.org/02e71kh42', 'en', 1, 'https://ror.org/02e71kh42 Oncology Nursing Society'), (7021, 'https://ror.org/02e891h43', 'en', 1, 'https://ror.org/02e891h43 Mount Mercy University'), (7022, 'https://ror.org/02e9za279', 'no_lang_code', 1, 'https://ror.org/02e9za279 Galen Research (United Kingdom)'), (7023, 'https://ror.org/02ebc4h13', 'no_lang_code', 1, 'https://ror.org/02ebc4h13 Inframat Corporation (United States)'), (7024, 'https://ror.org/02ecczf03', 'en', 1, 'https://ror.org/02ecczf03 Ontario AIDS Network'), (7025, 'https://ror.org/02ed5f444', 'no_lang_code', 1, 'https://ror.org/02ed5f444 Ligand Pharmaceuticals (United States)'), (7026, 'https://ror.org/02edt9m80', 'no_lang_code', 1, 'https://ror.org/02edt9m80 GT Urological (United States)'), (7027, 'https://ror.org/02edynn23', 'no_lang_code', 1, 'https://ror.org/02edynn23 BioFormatix (United States)'), (7028, 'https://ror.org/02ee2kk58', 'en', 1, 'https://ror.org/02ee2kk58 MUJHU Research Collaboration'), (7029, 'https://ror.org/02ega5r05', 'en', 1, 'https://ror.org/02ega5r05 Mendez National Institute of Transplantation'), (7030, 'https://ror.org/02ehan050', 'en', 1, 'https://ror.org/02ehan050 North Central College'), (7031, 'https://ror.org/02ehrn304', 'en', 1, 'https://ror.org/02ehrn304 Zayed Military Hospital مستشفى زايد العسكري'), (7032, 'https://ror.org/02eqka166', 'en', 1, 'https://ror.org/02eqka166 Mercy Medical Center'), (7033, 'https://ror.org/02er0sb79', 'en', 1, 'https://ror.org/02er0sb79 EuroEspes Biomedical Research Center'), (7034, 'https://ror.org/02es2jq57', 'fr', 1, 'https://ror.org/02es2jq57 Cegep Edouard Montpetit, Collège Édouard-Montpetit'), (7035, 'https://ror.org/02ev1p206', 'en', 1, 'https://ror.org/02ev1p206 Center for Renewable Energy Sources and Saving'), (7036, 'https://ror.org/02exhb815', 'no_lang_code', 1, 'https://ror.org/02exhb815 Royan Institute'), (7037, 'https://ror.org/02exxw634', 'en', 1, 'https://ror.org/02exxw634 Wartburg College'), (7038, 'https://ror.org/02ezaf703', 'en', 1, 'https://ror.org/02ezaf703 Uijeongbu St. Mary''s Hospital'), (7039, 'https://ror.org/02ezy5072', 'no_lang_code', 1, 'https://ror.org/02ezy5072 Amgen (Germany)'), (7040, 'https://ror.org/02f09jf04', 'en', 1, 'https://ror.org/02f09jf04 Fertility Medical Group'), (7041, 'https://ror.org/02f0ewv41', 'no_lang_code', 1, 'https://ror.org/02f0ewv41 OG Technologies (United States)'), (7042, 'https://ror.org/02f131c52', 'en', 1, 'https://ror.org/02f131c52 Adrian College'), (7043, 'https://ror.org/02f1dqm79', 'no_lang_code', 1, 'https://ror.org/02f1dqm79 Luminex (Canada)'), (7044, 'https://ror.org/02f23ya44', 'no_lang_code', 1, 'https://ror.org/02f23ya44 CleverSys (United States)'), (7045, 'https://ror.org/02f29yc36', 'en', 1, 'https://ror.org/02f29yc36 Webb Institute'), (7046, 'https://ror.org/02f2ddv05', 'no_lang_code', 1, 'https://ror.org/02f2ddv05 Blue Spurs (Canada)'), (7047, 'https://ror.org/02f3vqc77', 'en', 1, 'https://ror.org/02f3vqc77 Coastline Community College'), (7048, 'https://ror.org/02f51rf24', 'no_lang_code', 1, 'https://ror.org/02f51rf24 Regeneron (United States)'), (7049, 'https://ror.org/02f53md90', 'en', 1, 'https://ror.org/02f53md90 Tamworth Hospital'), (7050, 'https://ror.org/02f67ap41', 'en', 1, 'https://ror.org/02f67ap41 Presentation College'), (7051, 'https://ror.org/02f8ah997', 'en', 1, 'https://ror.org/02f8ah997 Transitional Learning Center'), (7052, 'https://ror.org/02f99v835', 'en', 1, 'https://ror.org/02f99v835 Deutsches Primatenzentrum German Primate Center'), (7053, 'https://ror.org/02fag2f73', 'en', 1, 'https://ror.org/02fag2f73 Randolph College'), (7054, 'https://ror.org/02fc7xd23', 'en', 1, 'https://ror.org/02fc7xd23 Shanghai Research Center for Acupuncture and Meridians 上海市针灸经络研究中心'), (7055, 'https://ror.org/02fd83219', 'no_lang_code', 1, 'https://ror.org/02fd83219 Fluorous Technologies (United States)'), (7056, 'https://ror.org/02fdhvf98', 'no_lang_code', 1, 'https://ror.org/02fdhvf98 Degenkolb (United States)'), (7057, 'https://ror.org/02fgvvg92', 'en', 1, 'https://ror.org/02fgvvg92 National Nutrition and Food Technology Research Institute'), (7058, 'https://ror.org/02fhhd636', 'no_lang_code', 1, 'https://ror.org/02fhhd636 Endres Machining Innovations (United States)'), (7059, 'https://ror.org/02fjffw59', 'no_lang_code', 1, 'https://ror.org/02fjffw59 X-ray Instrumentation Associates (United States)'), (7060, 'https://ror.org/02fm7xd67', 'no_lang_code', 1, 'https://ror.org/02fm7xd67 Delcam (United Kingdom)'), (7061, 'https://ror.org/02fn1q641', 'no_lang_code', 1, 'https://ror.org/02fn1q641 Affinity Water (United Kingdom)'), (7062, 'https://ror.org/02fn8j763', 'en', 1, 'https://ror.org/02fn8j763 Wangjing Hospital of China Academy of Chinese Medical Sciences 中国中医科学院望京医院'), (7063, 'https://ror.org/02fncne76', 'en', 1, 'https://ror.org/02fncne76 Kentucky Wesleyan College'), (7064, 'https://ror.org/02fprvw90', 'no_lang_code', 1, 'https://ror.org/02fprvw90 FoodChek Systems (Canada)'), (7065, 'https://ror.org/02frwff62', 'it', 1, 'https://ror.org/02frwff62 CTO Andrea Alesini'), (7066, 'https://ror.org/02frzq211', 'en', 1, 'https://ror.org/02frzq211 UK Biobank'), (7067, 'https://ror.org/02fwe2f11', 'en', 1, 'https://ror.org/02fwe2f11 Tung Wah Eastern Hospital 東華東院'), (7068, 'https://ror.org/02fywtq82', 'no_lang_code', 1, 'https://ror.org/02fywtq82 Organisation de Coordination pour la lutte contre les Endémies en Afrique Centrale'), (7069, 'https://ror.org/02fz4s018', 'en', 1, 'https://ror.org/02fz4s018 Heritage Foundation'), (7070, 'https://ror.org/02g5x8q86', 'en', 1, 'https://ror.org/02g5x8q86 Discovery Centre'), (7071, 'https://ror.org/02g6ngv74', 'no_lang_code', 1, 'https://ror.org/02g6ngv74 Curis (United States)'), (7072, 'https://ror.org/02g726t95', 'en', 1, 'https://ror.org/02g726t95 Global Neuroscience Initiative Foundation'), (7073, 'https://ror.org/02g82g140', 'es', 1, 'https://ror.org/02g82g140 Instituto Zaldivar'), (7074, 'https://ror.org/02g8p3m28', 'no_lang_code', 1, 'https://ror.org/02g8p3m28 Dr. Reddy''s Laboratories (United Kingdom)'), (7075, 'https://ror.org/02g9d5535', 'en', 1, 'https://ror.org/02g9d5535 Community Based Research Centre'), (7076, 'https://ror.org/02gan0k07', 'en', 1, 'https://ror.org/02gan0k07 Onassis Cardiac Surgery Center ΩΝΑΣΕΙΟ ΚΑΡΔΙΟΧΕΙΡΟΥΡΓΙΚΟ ΚΕΝΤΡΟ'), (7077, 'https://ror.org/02gb7bb36', 'en', 1, 'https://ror.org/02gb7bb36 Saint Joseph''s College of Maine'), (7078, 'https://ror.org/02gdqk794', 'en', 1, 'https://ror.org/02gdqk794 Royal Society of Medicine'), (7079, 'https://ror.org/02gdz0643', 'no_lang_code', 1, 'https://ror.org/02gdz0643 DCS Corporation (United States)'), (7080, 'https://ror.org/02gec1b57', 'no_lang_code', 1, 'https://ror.org/02gec1b57 Tsuyama Chuo Hospital 津山中央病院'), (7081, 'https://ror.org/02gfbpn70', 'en', 1, 'https://ror.org/02gfbpn70 Ofwat'), (7082, 'https://ror.org/02gffk937', 'en', 1, 'https://ror.org/02gffk937 Shriners Hospitals for Children - Erie'), (7083, 'https://ror.org/02gge8657', 'no_lang_code', 1, 'https://ror.org/02gge8657 Optra (United States)'), (7084, 'https://ror.org/02ggfyw45', 'en', 1, 'https://ror.org/02ggfyw45 Thai Red Cross Society'), (7085, 'https://ror.org/02gkj6c36', 'no_lang_code', 1, 'https://ror.org/02gkj6c36 Medigen (United States)'), (7086, 'https://ror.org/02gnvsm39', 'no_lang_code', 1, 'https://ror.org/02gnvsm39 Koester Performance Research (United States)'), (7087, 'https://ror.org/02gp6f150', 'no_lang_code', 1, 'https://ror.org/02gp6f150 Tissue Genesis (United States)'), (7088, 'https://ror.org/02gpxp602', 'no_lang_code', 1, 'https://ror.org/02gpxp602 M-Solv (United Kingdom)'), (7089, 'https://ror.org/02gr2sm80', 'no_lang_code', 1, 'https://ror.org/02gr2sm80 Aecom (United States)'), (7090, 'https://ror.org/02gv23t08', 'hu', 1, 'https://ror.org/02gv23t08 Toldy Ferenc Kórház'), (7091, 'https://ror.org/02gv7n749', 'en', 1, 'https://ror.org/02gv7n749 American Dental Education Association'), (7092, 'https://ror.org/02gv8a673', 'en', 1, 'https://ror.org/02gv8a673 Everett Community College'), (7093, 'https://ror.org/02gwxj243', 'no_lang_code', 1, 'https://ror.org/02gwxj243 bioMérieux (United States)'), (7094, 'https://ror.org/02gxffd98', 'no_lang_code', 1, 'https://ror.org/02gxffd98 Laing O''Rourke (United Kingdom)'), (7095, 'https://ror.org/02gxh1s15', 'en', 1, 'https://ror.org/02gxh1s15 St. Anthony Hospital'), (7096, 'https://ror.org/02gxky474', 'en', 1, 'https://ror.org/02gxky474 Association of State Supervisors of Mathematics'), (7097, 'https://ror.org/02gxn3220', 'no_lang_code', 1, 'https://ror.org/02gxn3220 Mohawk Innovative Technology (United States)'), (7098, 'https://ror.org/02gxtdy09', 'en', 1, 'https://ror.org/02gxtdy09 Brain Trauma Foundation'), (7099, 'https://ror.org/02gy8fc28', 'fr', 1, 'https://ror.org/02gy8fc28 Centre National Hospitalier et Universitaire Hubert Koutoukou MAGA'), (7100, 'https://ror.org/02h1dyg62', 'no_lang_code', 1, 'https://ror.org/02h1dyg62 Spencer Technologies (United States)'), (7101, 'https://ror.org/02h1nk258', 'en', 1, 'https://ror.org/02h1nk258 Max Planck Institute for Brain Research Max-Planck-Institut für Hirnforschung'), (7102, 'https://ror.org/02h1p2c43', 'en', 1, 'https://ror.org/02h1p2c43 Monterey County Health Department'), (7103, 'https://ror.org/02h2t4g21', 'en', 1, 'https://ror.org/02h2t4g21 Contra Costa Health Services'), (7104, 'https://ror.org/02h3se683', 'en', 1, 'https://ror.org/02h3se683 American College of Medical Genetics'), (7105, 'https://ror.org/02h4kdd20', 'en', 1, 'https://ror.org/02h4kdd20 St. Luke''s Medical Center'), (7106, 'https://ror.org/02h6h5y05', 'nl', 1, 'https://ror.org/02h6h5y05 Vincent Van Gogh Voor Geestelijke Gezondheidszorg'), (7107, 'https://ror.org/02h70he60', 'en', 1, 'https://ror.org/02h70he60 Okayama Red Cross General Hospital 岡山赤十字病院'), (7108, 'https://ror.org/02ha0t079', 'no_lang_code', 1, 'https://ror.org/02ha0t079 Crinetics Pharmaceuticals (United States)'), (7109, 'https://ror.org/02ha9tc40', 'en', 1, 'https://ror.org/02ha9tc40 Georgia Department of Community Health'), (7110, 'https://ror.org/02harxg26', 'no_lang_code', 1, 'https://ror.org/02harxg26 Educational Film Center (United States)'), (7111, 'https://ror.org/02hbfck57', 'en', 1, 'https://ror.org/02hbfck57 AARP'), (7112, 'https://ror.org/02hc70w10', 'en', 1, 'https://ror.org/02hc70w10 United Hospital'), (7113, 'https://ror.org/02hddbs82', 'no_lang_code', 1, 'https://ror.org/02hddbs82 NewsHour Productions (United States)'), (7114, 'https://ror.org/02hes1t22', 'no_lang_code', 1, 'https://ror.org/02hes1t22 Sapporo Holdings (Japan) サッポロホールディングス'), (7115, 'https://ror.org/02hh2th82', 'en', 1, 'https://ror.org/02hh2th82 Dumfries and Galloway Royal Infirmary'), (7116, 'https://ror.org/02hhsqf45', 'no_lang_code', 1, 'https://ror.org/02hhsqf45 Covance (United States)'), (7117, 'https://ror.org/02hk0xz87', 'no_lang_code', 1, 'https://ror.org/02hk0xz87 American Superconductor (United States)'), (7118, 'https://ror.org/02hmjce72', 'no_lang_code', 1, 'https://ror.org/02hmjce72 Medtronic (Netherlands)'), (7119, 'https://ror.org/02hqx5v55', 'en', 1, 'https://ror.org/02hqx5v55 Center for Environment and Development for the Arab Region and Europe'), (7120, 'https://ror.org/02hqxd823', 'no_lang_code', 1, 'https://ror.org/02hqxd823 MRF Geosystems (Canada)'), (7121, 'https://ror.org/02hssy432', 'it', 1, 'https://ror.org/02hssy432 Istituto Superiore di Sanità National Institute of Health'), (7122, 'https://ror.org/02ht85g63', 'no_lang_code', 1, 'https://ror.org/02ht85g63 A4F-Algafuel (Portugal)'), (7123, 'https://ror.org/02htbg024', 'no_lang_code', 1, 'https://ror.org/02htbg024 Creatv MicroTech (United States)'), (7124, 'https://ror.org/02hvk4n65', 'en', 1, 'https://ror.org/02hvk4n65 Princeton Baptist Medical Center'), (7125, 'https://ror.org/02hy8r734', 'en', 1, 'https://ror.org/02hy8r734 Clinical Trial Investigators'), (7126, 'https://ror.org/02hzxx398', 'en', 1, 'https://ror.org/02hzxx398 Central Veterinary Research Laboratory'), (7127, 'https://ror.org/02j2j9d52', 'no_lang_code', 1, 'https://ror.org/02j2j9d52 Prentke Romich Company (United States)'), (7128, 'https://ror.org/02j33yq05', 'en', 1, 'https://ror.org/02j33yq05 AIDS and Clinical Immunology Research Center'), (7129, 'https://ror.org/02j3xat32', 'no_lang_code', 1, 'https://ror.org/02j3xat32 National Iranian Oil Company (Iran) پژوهشگاه صنعت نفت'), (7130, 'https://ror.org/02j4gdg91', 'en', 1, 'https://ror.org/02j4gdg91 Vivekananda Institute of Medical Sciences'), (7131, 'https://ror.org/02j6cz137', 'en', 1, 'https://ror.org/02j6cz137 Institute of Dermatology สถาบันโรคผิวหนัง'), (7132, 'https://ror.org/02j7krq48', 'no_lang_code', 1, 'https://ror.org/02j7krq48 FONA International (Canada)'), (7133, 'https://ror.org/02j8r0p47', 'en', 1, 'https://ror.org/02j8r0p47 Woodend Hospital'), (7134, 'https://ror.org/02j8tmw16', 'en', 1, 'https://ror.org/02j8tmw16 Immunization Action Coalition'), (7135, 'https://ror.org/02jb8wy89', 'en', 1, 'https://ror.org/02jb8wy89 Connecticut Pre Engineering Program'), (7136, 'https://ror.org/02jdkag88', 'en', 1, 'https://ror.org/02jdkag88 Corporation for National Research Initiatives'), (7137, 'https://ror.org/02jf59571', 'en', 1, 'https://ror.org/02jf59571 Benaki Phytopathological Institute Μπενάκειο Φυτοπαθολογικό Ινστιτούτο'), (7138, 'https://ror.org/02jj1w915', 'en', 1, 'https://ror.org/02jj1w915 Broward College'), (7139, 'https://ror.org/02jkm3388', 'it', 1, 'https://ror.org/02jkm3388 Ministero degli Affari Esteri Ministry of Foreign Affairs and International Cooperation'), (7140, 'https://ror.org/02jq36h12', 'en', 1, 'https://ror.org/02jq36h12 Department of Agriculture and Food Western Australia'), (7141, 'https://ror.org/02jqpaq24', 'en', 1, 'https://ror.org/02jqpaq24 Centre for Chronic Disease Control'), (7142, 'https://ror.org/02jqwca63', 'fr', 1, 'https://ror.org/02jqwca63 Cegep regional de Lanaudiere, Cégep Régional de Lanaudière'), (7143, 'https://ror.org/02jr44c14', 'no_lang_code', 1, 'https://ror.org/02jr44c14 Sinmat (United States)'), (7144, 'https://ror.org/02js6ft04', 'no_lang_code', 1, 'https://ror.org/02js6ft04 Takara (United States)'), (7145, 'https://ror.org/02jxrxr40', 'no_lang_code', 1, 'https://ror.org/02jxrxr40 Policy Analysis (United States)'), (7146, 'https://ror.org/02jy1mq31', 'no_lang_code', 1, 'https://ror.org/02jy1mq31 Ondine Biopharma (United States)'), (7147, 'https://ror.org/02jzrsm59', 'en', 1, 'https://ror.org/02jzrsm59 National Institute on Alcohol Abuse and Alcoholism'), (7148, 'https://ror.org/02jzt6t86', 'en', 1, 'https://ror.org/02jzt6t86 Institute of Human Genetics Instytutu Genetyki Człowieka PAN'), (7149, 'https://ror.org/02k284p70', 'en', 1, 'https://ror.org/02k284p70 Academy of Scientific Research and Technology'), (7150, 'https://ror.org/02k4agj72', 'en', 1, 'https://ror.org/02k4agj72 Matrix Institute on Addictions'), (7151, 'https://ror.org/02k5g8c37', 'no_lang_code', 1, 'https://ror.org/02k5g8c37 BioDetection Instruments (United States)'), (7152, 'https://ror.org/02k5t6c64', 'en', 1, 'https://ror.org/02k5t6c64 PRA Health Sciences'), (7153, 'https://ror.org/02k7p6g32', 'no_lang_code', 1, 'https://ror.org/02k7p6g32 Analiza (United States)'), (7154, 'https://ror.org/02k9hra16', 'en', 1, 'https://ror.org/02k9hra16 Saskatchewan Seniors Mechanism'), (7155, 'https://ror.org/02kgm7r43', 'en', 1, 'https://ror.org/02kgm7r43 Blackfeet Community College'), (7156, 'https://ror.org/02khtdb43', 'en', 1, 'https://ror.org/02khtdb43 American Academy of Family Physicians'), (7157, 'https://ror.org/02khxjf35', 'no_lang_code', 1, 'https://ror.org/02khxjf35 United Environment and Energy (United States)'), (7158, 'https://ror.org/02kjgsq44', 'en', 1, 'https://ror.org/02kjgsq44 National Institute of Oncology'), (7159, 'https://ror.org/02kk3dq58', 'en', 1, 'https://ror.org/02kk3dq58 United Tribes Technical College'), (7160, 'https://ror.org/02kp7p620', 'en', 1, 'https://ror.org/02kp7p620 Central Leather Research Institute'), (7161, 'https://ror.org/02krr1j33', 'no_lang_code', 1, 'https://ror.org/02krr1j33 Telesage (United States)'), (7162, 'https://ror.org/02kspbq18', 'fr', 1, 'https://ror.org/02kspbq18 Château Gombert'), (7163, 'https://ror.org/02kv35z70', 'en', 1, 'https://ror.org/02kv35z70 Computer History Museum'), (7164, 'https://ror.org/02kvf6r88', 'no_lang_code', 1, 'https://ror.org/02kvf6r88 Hartley & Associates'), (7165, 'https://ror.org/02kvnjb40', 'en', 1, 'https://ror.org/02kvnjb40 European School of Oncology'), (7166, 'https://ror.org/02kxjqp24', 'no_lang_code', 1, 'https://ror.org/02kxjqp24 Certara (United States)'), (7167, 'https://ror.org/02kzr5g33', 'en', 1, 'https://ror.org/02kzr5g33 Zhejiang Hospital 浙江医院'), (7168, 'https://ror.org/02m15g174', 'en', 1, 'https://ror.org/02m15g174 Diabetes Care Center'), (7169, 'https://ror.org/02m1cy121', 'no_lang_code', 1, 'https://ror.org/02m1cy121 Prodrive (United Kingdom)'), (7170, 'https://ror.org/02m2as397', 'en', 1, 'https://ror.org/02m2as397 Centenary College of Louisiana'), (7171, 'https://ror.org/02m40r087', 'no_lang_code', 1, 'https://ror.org/02m40r087 Concepts NREC (United States)'), (7172, 'https://ror.org/02m444q29', 'no_lang_code', 1, 'https://ror.org/02m444q29 EEI Communications (United States)'), (7173, 'https://ror.org/02m4tvc13', 'fr', 1, 'https://ror.org/02m4tvc13 Comité Européen des Instructeurs de Plongée Professionnels European Committee of Professional Diving Instructors'), (7174, 'https://ror.org/02m5vdb88', 'en', 1, 'https://ror.org/02m5vdb88 Navajo Nation Division of Health'), (7175, 'https://ror.org/02m805769', 'fr', 1, 'https://ror.org/02m805769 Cegep de La Pocatiere, Cégep de la pocatière'), (7176, 'https://ror.org/02m8d5f73', 'no_lang_code', 1, 'https://ror.org/02m8d5f73 CytRx (United States)'), (7177, 'https://ror.org/02m9ewz37', 'no_lang_code', 1, 'https://ror.org/02m9ewz37 Sumitomo Hospital 一般財団法人住友病院'), (7178, 'https://ror.org/02mdxv534', 'fr', 1, 'https://ror.org/02mdxv534 Fondation Ophtalmologique Adolphe de Rothschild'), (7179, 'https://ror.org/02meqm098', 'en', 1, 'https://ror.org/02meqm098 National Center for Biotechnology Information'), (7180, 'https://ror.org/02mfa7r39', 'no_lang_code', 1, 'https://ror.org/02mfa7r39 Digital Payment Technologies (Canada)'), (7181, 'https://ror.org/02mgtg880', 'en', 1, 'https://ror.org/02mgtg880 Critical Path Institute'), (7182, 'https://ror.org/02mh82r78', 'no_lang_code', 1, 'https://ror.org/02mh82r78 Fermalogic (United States)'), (7183, 'https://ror.org/02mhf1b49', 'en', 1, 'https://ror.org/02mhf1b49 Wiley College'), (7184, 'https://ror.org/02mhxa927', 'en', 1, 'https://ror.org/02mhxa927 Zhujiang Hospital'), (7185, 'https://ror.org/02mn8sh47', 'en', 1, 'https://ror.org/02mn8sh47 Turtle Mountain Community College'), (7186, 'https://ror.org/02mnkv161', 'no_lang_code', 1, 'https://ror.org/02mnkv161 Applied Thin Films (United States)'), (7187, 'https://ror.org/02mp2w060', 'en', 1, 'https://ror.org/02mp2w060 Framingham State University Université d''État de framingham'), (7188, 'https://ror.org/02mpfs279', 'en', 1, 'https://ror.org/02mpfs279 Daejeon Sun Hospital 대전선병원'), (7189, 'https://ror.org/02mqbx112', 'en', 1, 'https://ror.org/02mqbx112 Institut National de Neurologie Mongi-Ben Hamida National Institute of Neurology Mongi-Ben Hamida'), (7190, 'https://ror.org/02ms6eb12', 'no_lang_code', 1, 'https://ror.org/02ms6eb12 Parirenyatwa Hospital'), (7191, 'https://ror.org/02mx39t82', 'en', 1, 'https://ror.org/02mx39t82 Association Vinçotte Nuclear, Nuclear Safety Institute'), (7192, 'https://ror.org/02mx9d065', 'it', 1, 'https://ror.org/02mx9d065 Consorzio per la Ricerca e l''Educazione Permanente'), (7193, 'https://ror.org/02mxbtp76', 'no_lang_code', 1, 'https://ror.org/02mxbtp76 Xemed (United States)'), (7194, 'https://ror.org/02mznah18', 'no_lang_code', 1, 'https://ror.org/02mznah18 Bioanalytical Systems (United States)'), (7195, 'https://ror.org/02n2p7c30', 'en', 1, 'https://ror.org/02n2p7c30 Canadian Association of Psychosocial Oncology'), (7196, 'https://ror.org/02n4wd178', 'no_lang_code', 1, 'https://ror.org/02n4wd178 Junk King (United States)'), (7197, 'https://ror.org/02n9cgn70', 'no_lang_code', 1, 'https://ror.org/02n9cgn70 SRA International (United States)'), (7198, 'https://ror.org/02naadr48', 'no_lang_code', 1, 'https://ror.org/02naadr48 Pearson (United States)'), (7199, 'https://ror.org/02navrb60', 'en', 1, 'https://ror.org/02navrb60 Lady of Mercy Medical Center'), (7200, 'https://ror.org/02neqps07', 'no_lang_code', 1, 'https://ror.org/02neqps07 Innovative Chemical and Environmental Technologies (United States)'), (7201, 'https://ror.org/02nfh0m56', 'en', 1, 'https://ror.org/02nfh0m56 Pittsburgh Public Schools'), (7202, 'https://ror.org/02njbjk47', 'en', 1, 'https://ror.org/02njbjk47 DHHS Alliance'), (7203, 'https://ror.org/02njpkz73', 'en', 1, 'https://ror.org/02njpkz73 Hull Royal Infirmary'), (7204, 'https://ror.org/02nknzn40', 'en', 1, 'https://ror.org/02nknzn40 Institute of Problems of Chemical Physics Институт проблем химической физики'), (7205, 'https://ror.org/02npvem89', 'en', 1, 'https://ror.org/02npvem89 Air & Waste Management Association'), (7206, 'https://ror.org/02nrhnf93', 'en', 1, 'https://ror.org/02nrhnf93 City Eye Centre'), (7207, 'https://ror.org/02ntheh91', 'es', 1, 'https://ror.org/02ntheh91 Instituto Venezolano de Investigaciones Científicas'), (7208, 'https://ror.org/02nw0wb75', 'en', 1, 'https://ror.org/02nw0wb75 Wycombe General Hospital'), (7209, 'https://ror.org/02nw48b86', 'en', 1, 'https://ror.org/02nw48b86 American Society of Hematology'), (7210, 'https://ror.org/02p014d02', 'en', 1, 'https://ror.org/02p014d02 American International College'), (7211, 'https://ror.org/02p0yhm49', 'no_lang_code', 1, 'https://ror.org/02p0yhm49 Simulations Plus (United States)'), (7212, 'https://ror.org/02p54vf94', 'en', 1, 'https://ror.org/02p54vf94 DGA Partners'), (7213, 'https://ror.org/02p5qdz58', 'no_lang_code', 1, 'https://ror.org/02p5qdz58 Insilicos (United States)'), (7214, 'https://ror.org/02p6vh725', 'en', 1, 'https://ror.org/02p6vh725 Mount Wachusett Community College'), (7215, 'https://ror.org/02p7gn625', 'fr', 1, 'https://ror.org/02p7gn625 Cégep de l''Abitibi Témiscamingue, Cégep de l''abitibi-témiscamingue'), (7216, 'https://ror.org/02p7sht55', 'en', 1, 'https://ror.org/02p7sht55 National Vital Statistics System'), (7217, 'https://ror.org/02pbkp259', 'no_lang_code', 1, 'https://ror.org/02pbkp259 Actian (United States)'), (7218, 'https://ror.org/02pbsk254', 'de', 1, 'https://ror.org/02pbsk254 Klinikum Lippe'), (7219, 'https://ror.org/02pdvpq69', 'no_lang_code', 1, 'https://ror.org/02pdvpq69 Affinergy (United States)'), (7220, 'https://ror.org/02peeh644', 'no_lang_code', 1, 'https://ror.org/02peeh644 HBP (United States)'), (7221, 'https://ror.org/02pf22978', 'no_lang_code', 1, 'https://ror.org/02pf22978 BioSense (United States)'), (7222, 'https://ror.org/02pfhsd84', 'en', 1, 'https://ror.org/02pfhsd84 A.V. Luikov Heat and Mass Transfer Institute Институт тепло- и массообмена имени А.В. Лыкова Национальной академии наук Беларуси'), (7223, 'https://ror.org/02phjfe17', 'no_lang_code', 1, 'https://ror.org/02phjfe17 Aridis Pharmaceuticals (United States)'), (7224, 'https://ror.org/02pj04690', 'en', 1, 'https://ror.org/02pj04690 Theda Clark Medical Center'), (7225, 'https://ror.org/02pmr4c75', 'en', 1, 'https://ror.org/02pmr4c75 Hastings Center'), (7226, 'https://ror.org/02pn0tx11', 'en', 1, 'https://ror.org/02pn0tx11 Aliviane'), (7227, 'https://ror.org/02pnmd628', 'en', 1, 'https://ror.org/02pnmd628 American Foundation for Donation and Transplantation'), (7228, 'https://ror.org/02pnxn245', 'en', 1, 'https://ror.org/02pnxn245 Texas State Technical College Waco'), (7229, 'https://ror.org/02pp1v282', 'no_lang_code', 1, 'https://ror.org/02pp1v282 AntiCancer (United States)'); INSERT INTO `rors` VALUES (7230, 'https://ror.org/02prqh017', 'en', 1, 'https://ror.org/02prqh017 Holon Institute of Technology'), (7231, 'https://ror.org/02pstqj22', 'en', 1, 'https://ror.org/02pstqj22 National Action Council for Minorities in Engineering'), (7232, 'https://ror.org/02pve7657', 'fr', 1, 'https://ror.org/02pve7657 Groupe Hospitalier du Havre'), (7233, 'https://ror.org/02pwnhd33', 'fr', 1, 'https://ror.org/02pwnhd33 Centre Jean Perrin'), (7234, 'https://ror.org/02py7c988', 'no_lang_code', 1, 'https://ror.org/02py7c988 DxRay (United States)'), (7235, 'https://ror.org/02pyrw675', 'no_lang_code', 1, 'https://ror.org/02pyrw675 Sensor Research and Development Corporation (United States)'), (7236, 'https://ror.org/02pyw0y06', 'en', 1, 'https://ror.org/02pyw0y06 Taos Orthopaedic Institute'), (7237, 'https://ror.org/02q2kqs69', 'en', 1, 'https://ror.org/02q2kqs69 Environmental Mutagenesis and Genomics Society'), (7238, 'https://ror.org/02q2pqb13', 'en', 1, 'https://ror.org/02q2pqb13 Cooperative Research Centre for Tissue Growth and Repair'), (7239, 'https://ror.org/02q49af68', 'en', 1, 'https://ror.org/02q49af68 Aberdeen Royal Infirmary'), (7240, 'https://ror.org/02q69x434', 'en', 1, 'https://ror.org/02q69x434 Peterborough City Hospital'), (7241, 'https://ror.org/02q76t874', 'no_lang_code', 1, 'https://ror.org/02q76t874 Akina (United States)'), (7242, 'https://ror.org/02q865m71', 'en', 1, 'https://ror.org/02q865m71 Diablo Valley College'), (7243, 'https://ror.org/02q8vhr64', 'en', 1, 'https://ror.org/02q8vhr64 Kobe City College of Technology 神戸市立工業高等専門学校'), (7244, 'https://ror.org/02q9ktd98', 'no_lang_code', 1, 'https://ror.org/02q9ktd98 Real Time Analyzers (United States)'), (7245, 'https://ror.org/02q9tvn08', 'en', 1, 'https://ror.org/02q9tvn08 Royal Institution of Chartered Surveyors'), (7246, 'https://ror.org/02qaw7v88', 'no_lang_code', 1, 'https://ror.org/02qaw7v88 Gold Standard Simulations (United Kingdom)'), (7247, 'https://ror.org/02qb5bp07', 'no_lang_code', 1, 'https://ror.org/02qb5bp07 Tornado Spectral Systems (Canada)'), (7248, 'https://ror.org/02qbhr955', 'ro', 1, 'https://ror.org/02qbhr955 Institutul Cantacuzino'), (7249, 'https://ror.org/02qbj0866', 'no_lang_code', 1, 'https://ror.org/02qbj0866 AiCure (United States)'), (7250, 'https://ror.org/02qdmsh42', 'en', 1, 'https://ror.org/02qdmsh42 Connecticut Department of Children and Families'), (7251, 'https://ror.org/02qf7zp16', 'en', 1, 'https://ror.org/02qf7zp16 Iowa Lakes Community College'), (7252, 'https://ror.org/02qgx4h83', 'no_lang_code', 1, 'https://ror.org/02qgx4h83 Immersion (United States)'), (7253, 'https://ror.org/02qhjcg87', 'en', 1, 'https://ror.org/02qhjcg87 Mason Parks & Recreation Foundation'), (7254, 'https://ror.org/02qjtm453', 'no_lang_code', 1, 'https://ror.org/02qjtm453 Natus (United States)'), (7255, 'https://ror.org/02qsnn284', 'en', 1, 'https://ror.org/02qsnn284 North Jersey Community Research Initiative'), (7256, 'https://ror.org/02qv6pw23', 'en', 1, 'https://ror.org/02qv6pw23 JMI Laboratories'), (7257, 'https://ror.org/02qwdzc67', 'en', 1, 'https://ror.org/02qwdzc67 Confederation of European Forest Owners'), (7258, 'https://ror.org/02qwvxs86', 'sv', 1, 'https://ror.org/02qwvxs86 Eastmaninstitutet The Eastman Institute'), (7259, 'https://ror.org/02r06yv13', 'no_lang_code', 1, 'https://ror.org/02r06yv13 FJE Enterprises (United States)'), (7260, 'https://ror.org/02r0rps05', 'it', 1, 'https://ror.org/02r0rps05 Ospedale Sant''Orsola di Brescia'), (7261, 'https://ror.org/02r5hv713', 'no_lang_code', 1, 'https://ror.org/02r5hv713 Vista Scientific (United States)'), (7262, 'https://ror.org/02r5scg33', 'no_lang_code', 1, 'https://ror.org/02r5scg33 Intel (Ireland)'), (7263, 'https://ror.org/02r96rf44', 'no_lang_code', 1, 'https://ror.org/02r96rf44 Qiagen (Germany)'), (7264, 'https://ror.org/02r9beq73', 'no_lang_code', 1, 'https://ror.org/02r9beq73 Loccioni (Italy)'), (7265, 'https://ror.org/02rb17w33', 'no_lang_code', 1, 'https://ror.org/02rb17w33 Wright Medical Technology (United States)'), (7266, 'https://ror.org/02rbfnr22', 'en', 1, 'https://ror.org/02rbfnr22 Max Planck Florida Institute for Neuroscience'), (7267, 'https://ror.org/02rbnw681', 'no_lang_code', 1, 'https://ror.org/02rbnw681 Platypus Technologies (United States)'), (7268, 'https://ror.org/02rdhhs90', 'en', 1, 'https://ror.org/02rdhhs90 Emmanuel College - Massachusetts'), (7269, 'https://ror.org/02res4f29', 'en', 1, 'https://ror.org/02res4f29 Overseas Development Institute'), (7270, 'https://ror.org/02revdf05', 'en', 1, 'https://ror.org/02revdf05 Moraine Valley Community College'), (7271, 'https://ror.org/02rgsw982', 'no_lang_code', 1, 'https://ror.org/02rgsw982 Apath (United States)'), (7272, 'https://ror.org/02rh7vj17', 'en', 1, 'https://ror.org/02rh7vj17 Alaska Department of Fish and Game'), (7273, 'https://ror.org/02rnyzs79', 'en', 1, 'https://ror.org/02rnyzs79 NatureServe'), (7274, 'https://ror.org/02rr12y45', 'en', 1, 'https://ror.org/02rr12y45 Press Ganey'), (7275, 'https://ror.org/02rr5zn35', 'no_lang_code', 1, 'https://ror.org/02rr5zn35 Uken (Canada)'), (7276, 'https://ror.org/02rthxz10', 'en', 1, 'https://ror.org/02rthxz10 St Vincent''s Clinic'), (7277, 'https://ror.org/02rxmd442', 'no_lang_code', 1, 'https://ror.org/02rxmd442 Glyndwr Innovations (United Kingdom)'), (7278, 'https://ror.org/02rxq9s71', 'no_lang_code', 1, 'https://ror.org/02rxq9s71 Wright Materials Research (United States)'), (7279, 'https://ror.org/02s04h872', 'no_lang_code', 1, 'https://ror.org/02s04h872 D. E. Shaw Research'), (7280, 'https://ror.org/02s0dm484', 'en', 1, 'https://ror.org/02s0dm484 Sunderland Royal Hospital'), (7281, 'https://ror.org/02s0pza74', 'en', 1, 'https://ror.org/02s0pza74 Hallands Sjukhus Varberg Varberg Hospital'), (7282, 'https://ror.org/02s1t7068', 'en', 1, 'https://ror.org/02s1t7068 Eastern Oklahoma State College'), (7283, 'https://ror.org/02s3g3z50', 'no_lang_code', 1, 'https://ror.org/02s3g3z50 Nokia (Portugal)'), (7284, 'https://ror.org/02s3j1d69', 'no_lang_code', 1, 'https://ror.org/02s3j1d69 VenatoRx Pharmaceuticals (United States)'), (7285, 'https://ror.org/02s4ke886', 'no_lang_code', 1, 'https://ror.org/02s4ke886 HemoShear (United States)'), (7286, 'https://ror.org/02s5pwd41', 'no_lang_code', 1, 'https://ror.org/02s5pwd41 DeltaQuest Foundation (United States)'), (7287, 'https://ror.org/02s5xnv22', 'en', 1, 'https://ror.org/02s5xnv22 Spinal Diagnostics and Treatment Center'), (7288, 'https://ror.org/02s619e80', 'no_lang_code', 1, 'https://ror.org/02s619e80 Dawkins Productions (United States)'), (7289, 'https://ror.org/02s61w335', 'it', 1, 'https://ror.org/02s61w335 Ospedale Regionale di Bellinzona e Valli Regional Hospital of Bellinzona and Valleys'), (7290, 'https://ror.org/02s61y919', 'en', 1, 'https://ror.org/02s61y919 Valley Breast Care & Woman''s Health Center'), (7291, 'https://ror.org/02sbj8547', 'en', 1, 'https://ror.org/02sbj8547 Waynesburg University'), (7292, 'https://ror.org/02sdw5w15', 'no_lang_code', 1, 'https://ror.org/02sdw5w15 Active Motif (United States)'), (7293, 'https://ror.org/02se3s925', 'en', 1, 'https://ror.org/02se3s925 Inova Children''s Hospital'), (7294, 'https://ror.org/02segr176', 'no_lang_code', 1, 'https://ror.org/02segr176 Applied Human Factors (United States)'), (7295, 'https://ror.org/02sepg748', 'en', 1, 'https://ror.org/02sepg748 Institute of Materials Research and Engineering'), (7296, 'https://ror.org/02sftpz67', 'no_lang_code', 1, 'https://ror.org/02sftpz67 AFC Energy (United Kingdom)'), (7297, 'https://ror.org/02sgk9b41', 'no_lang_code', 1, 'https://ror.org/02sgk9b41 SynZyme Technologies (United States)'), (7298, 'https://ror.org/02sgyhv62', 'en', 1, 'https://ror.org/02sgyhv62 California Family Health Council'), (7299, 'https://ror.org/02sh8ry89', 'no_lang_code', 1, 'https://ror.org/02sh8ry89 Wicab (United States)'), (7300, 'https://ror.org/02sjmdw37', 'en', 1, 'https://ror.org/02sjmdw37 Western Consortium for Public Health'), (7301, 'https://ror.org/02sjy2915', 'en', 1, 'https://ror.org/02sjy2915 Podiatry Institute'), (7302, 'https://ror.org/02sn8xp43', 'no_lang_code', 1, 'https://ror.org/02sn8xp43 Oxonica (United Kingdom)'), (7303, 'https://ror.org/02snwfx66', 'en', 1, 'https://ror.org/02snwfx66 Trafford General Hospital'), (7304, 'https://ror.org/02sptv349', 'en', 1, 'https://ror.org/02sptv349 National Institute for Women in Trades, Technology & Sciences'), (7305, 'https://ror.org/02srjnb65', 'no_lang_code', 1, 'https://ror.org/02srjnb65 Membrane Reactor Technologies (Canada)'), (7306, 'https://ror.org/02stwhg86', 'en', 1, 'https://ror.org/02stwhg86 St. Charles Medical Center'), (7307, 'https://ror.org/02stzb903', 'en', 1, 'https://ror.org/02stzb903 Victoria Hospital'), (7308, 'https://ror.org/02swxtp23', 'en', 1, 'https://ror.org/02swxtp23 National Acoustic Laboratories'), (7309, 'https://ror.org/02swzn148', 'en', 1, 'https://ror.org/02swzn148 Pain Management Center of Paducah'), (7310, 'https://ror.org/02symh967', 'no_lang_code', 1, 'https://ror.org/02symh967 Manhattan Scientifics (United States)'), (7311, 'https://ror.org/02t0zgq96', 'no_lang_code', 1, 'https://ror.org/02t0zgq96 ArmaGen (United States)'), (7312, 'https://ror.org/02t110213', 'en', 1, 'https://ror.org/02t110213 New England College of Optometry'), (7313, 'https://ror.org/02t1t6n83', 'en', 1, 'https://ror.org/02t1t6n83 Burdenko Neurosurgery Institute Федеральное государственное автономное учреждение Научно-исследовательский институт нейрохирургии имени академика Н.Н. Бурденко Министерства здравоохранения Российской Федерации'), (7314, 'https://ror.org/02t3wzq80', 'en', 1, 'https://ror.org/02t3wzq80 Palm Beach State College'), (7315, 'https://ror.org/02t6r9161', 'en', 1, 'https://ror.org/02t6r9161 Rust College'), (7316, 'https://ror.org/02t6xhx48', 'no_lang_code', 1, 'https://ror.org/02t6xhx48 Photozig (United States)'), (7317, 'https://ror.org/02t7c5797', 'en', 1, 'https://ror.org/02t7c5797 Connecticut Agricultural Experiment Station'), (7318, 'https://ror.org/02t7ex691', 'no_lang_code', 1, 'https://ror.org/02t7ex691 Minnetronix (United States)'), (7319, 'https://ror.org/02t7v8j62', 'en', 1, 'https://ror.org/02t7v8j62 City of Edinburgh Council'), (7320, 'https://ror.org/02tc4ww71', 'en', 1, 'https://ror.org/02tc4ww71 Peninsula Regional Medical Center'), (7321, 'https://ror.org/02tcncc65', 'en', 1, 'https://ror.org/02tcncc65 Centerforce'), (7322, 'https://ror.org/02td3ps96', 'en', 1, 'https://ror.org/02td3ps96 Dartmouth Psychiatric Research Center'), (7323, 'https://ror.org/02tdag098', 'no_lang_code', 1, 'https://ror.org/02tdag098 Mirna Therapeutics (United States)'), (7324, 'https://ror.org/02tfv4t78', 'no_lang_code', 1, 'https://ror.org/02tfv4t78 Corning (United States)'), (7325, 'https://ror.org/02tj9h434', 'en', 1, 'https://ror.org/02tj9h434 Allegany College of Maryland'), (7326, 'https://ror.org/02tmx5588', 'no_lang_code', 1, 'https://ror.org/02tmx5588 Danaher (United States)'), (7327, 'https://ror.org/02tn1ck84', 'en', 1, 'https://ror.org/02tn1ck84 National Eisteddfod of Wales'), (7328, 'https://ror.org/02tp2kq68', 'it', 1, 'https://ror.org/02tp2kq68 Fondazione Ospedale Salesi'), (7329, 'https://ror.org/02tqrck55', 'no_lang_code', 1, 'https://ror.org/02tqrck55 En''Urga (United States)'), (7330, 'https://ror.org/02tr01m06', 'no_lang_code', 1, 'https://ror.org/02tr01m06 International Severity Information Systems (United States)'), (7331, 'https://ror.org/02tre1223', 'en', 1, 'https://ror.org/02tre1223 William Harvey Hospital'), (7332, 'https://ror.org/02trgd202', 'ca', 1, 'https://ror.org/02trgd202 Institut Municipal d''Assistència Sanitària'), (7333, 'https://ror.org/02tryst02', 'no_lang_code', 1, 'https://ror.org/02tryst02 Agilent Technologies (United States)'), (7334, 'https://ror.org/02ts2hy13', 'en', 1, 'https://ror.org/02ts2hy13 National Association of Biology Teachers'), (7335, 'https://ror.org/02ts3bw45', 'no_lang_code', 1, 'https://ror.org/02ts3bw45 Plantvax (United States)'), (7336, 'https://ror.org/02ts3my48', 'no_lang_code', 1, 'https://ror.org/02ts3my48 Chem-Space Associates (United States)'), (7337, 'https://ror.org/02ts7ew79', 'en', 1, 'https://ror.org/02ts7ew79 West Suffolk Hospital'), (7338, 'https://ror.org/02ttgyc97', 'no_lang_code', 1, 'https://ror.org/02ttgyc97 dbaza health (United States)'), (7339, 'https://ror.org/02ttqd922', 'en', 1, 'https://ror.org/02ttqd922 Electrical and Computer Engineering Department Heads Association'), (7340, 'https://ror.org/02tw58061', 'en', 1, 'https://ror.org/02tw58061 Piedmont Virginia Community College'), (7341, 'https://ror.org/02twc7963', 'en', 1, 'https://ror.org/02twc7963 Aerospace Valley'), (7342, 'https://ror.org/02tyer376', 'en', 1, 'https://ror.org/02tyer376 Leibniz Institute DSMZ – German Collection of Microorganisms and Cell Cultures Leibniz-Institut DSMZ-Deutsche Sammlung von Mikroorganismen und Zellkulturen'), (7343, 'https://ror.org/02v02q390', 'no_lang_code', 1, 'https://ror.org/02v02q390 Aston Martin Lagonda (United Kingdom)'), (7344, 'https://ror.org/02v05yj51', 'en', 1, 'https://ror.org/02v05yj51 All Africa Leprosy Tuberculosis and Rehabilitation Training Centre'), (7345, 'https://ror.org/02v0be184', 'no_lang_code', 1, 'https://ror.org/02v0be184 Shioda General Hospital 汐田総合病院'), (7346, 'https://ror.org/02v0mj573', 'en', 1, 'https://ror.org/02v0mj573 Royal Albert Edward Infirmary'), (7347, 'https://ror.org/02v4ner66', 'fr', 1, 'https://ror.org/02v4ner66 Centre hospitalier Etterbeek-Ixelles'), (7348, 'https://ror.org/02v50dx14', 'no_lang_code', 1, 'https://ror.org/02v50dx14 Taiho Pharmaceutical (Japan) 大鵬薬品工業'), (7349, 'https://ror.org/02v6vej93', 'en', 1, 'https://ror.org/02v6vej93 Institute of Liver and Biliary Sciences'), (7350, 'https://ror.org/02v7j5a68', 'no_lang_code', 1, 'https://ror.org/02v7j5a68 Intelligent Fiber Optic Systems (United States)'), (7351, 'https://ror.org/02v81r985', 'no_lang_code', 1, 'https://ror.org/02v81r985 Ametek (United States)'), (7352, 'https://ror.org/02vaftm28', 'en', 1, 'https://ror.org/02vaftm28 Sea Education Association'), (7353, 'https://ror.org/02vajn858', 'en', 1, 'https://ror.org/02vajn858 CGH Medical Center'), (7354, 'https://ror.org/02vbwbd19', 'en', 1, 'https://ror.org/02vbwbd19 Campbell Clinic'), (7355, 'https://ror.org/02vd9xc25', 'no_lang_code', 1, 'https://ror.org/02vd9xc25 Avacta (United Kingdom)'), (7356, 'https://ror.org/02vdyxx64', 'no_lang_code', 1, 'https://ror.org/02vdyxx64 Verizon (United States)'), (7357, 'https://ror.org/02ved8513', 'en', 1, 'https://ror.org/02ved8513 Project HOPE'), (7358, 'https://ror.org/02vf4sk45', 'en', 1, 'https://ror.org/02vf4sk45 Institute of Evolutionary Physiology and Biochemistry Федеральное государственное бюджетное учреждение науки Институт эволюционной физиологии и биохимии им. И.М. Сеченова Российской академии наук'), (7359, 'https://ror.org/02vfnsn98', 'en', 1, 'https://ror.org/02vfnsn98 Lynn Health Science Institute'), (7360, 'https://ror.org/02vgfg208', 'en', 1, 'https://ror.org/02vgfg208 New Mexico Department of Human Services'), (7361, 'https://ror.org/02vhff552', 'en', 1, 'https://ror.org/02vhff552 Freshwater Fisheries Society of BC'), (7362, 'https://ror.org/02vhmfv49', 'en', 1, 'https://ror.org/02vhmfv49 United Christian Hospital'), (7363, 'https://ror.org/02vjt9x89', 'no_lang_code', 1, 'https://ror.org/02vjt9x89 SciTech Development (United States)'), (7364, 'https://ror.org/02vjx4k16', 'en', 1, 'https://ror.org/02vjx4k16 National Transport Hospital "Tzar Boris III" национална многопрофилна транспортна болница цар борис ііі'), (7365, 'https://ror.org/02vpkdk18', 'no_lang_code', 1, 'https://ror.org/02vpkdk18 Synergy Enterprises (United States)'), (7366, 'https://ror.org/02vpzy864', 'no_lang_code', 1, 'https://ror.org/02vpzy864 4D Soft (Hungary)'), (7367, 'https://ror.org/02vrwn188', 'en', 1, 'https://ror.org/02vrwn188 International Society for Infectious Diseases'), (7368, 'https://ror.org/02vsy6m37', 'en', 1, 'https://ror.org/02vsy6m37 Centre for Infectious Disease Research in Zambia'), (7369, 'https://ror.org/02vtgg877', 'no_lang_code', 1, 'https://ror.org/02vtgg877 Fusion (United States)'), (7370, 'https://ror.org/02vxngq63', 'en', 1, 'https://ror.org/02vxngq63 Latvian Academy of Sciences'), (7371, 'https://ror.org/02vydqh80', 'en', 1, 'https://ror.org/02vydqh80 Interstate Shellfish Sanitation Conference'), (7372, 'https://ror.org/02vz80y09', 'es', 1, 'https://ror.org/02vz80y09 Centro Medico Nacional Siglo XXI'), (7373, 'https://ror.org/02w335z67', 'no_lang_code', 1, 'https://ror.org/02w335z67 InterDigital (United States)'), (7374, 'https://ror.org/02w368938', 'no_lang_code', 1, 'https://ror.org/02w368938 PhysioGenix (United States)'), (7375, 'https://ror.org/02w38qn81', 'en', 1, 'https://ror.org/02w38qn81 Forum for the Future'), (7376, 'https://ror.org/02w6m7e50', 'de', 1, 'https://ror.org/02w6m7e50 University Heart Center Freiburg Universitäts-Herzzentrum Freiburg-Bad Krozingen'), (7377, 'https://ror.org/02w6r0892', 'fr', 1, 'https://ror.org/02w6r0892 Institut Philippe Pinel de Montréal Philippe Pinel Institute'), (7378, 'https://ror.org/02w7azg93', 'no_lang_code', 1, 'https://ror.org/02w7azg93 Chiba Cerebral and Cardiovascular Center 千葉県脳血管センタ'), (7379, 'https://ror.org/02w95ej18', 'en', 1, 'https://ror.org/02w95ej18 Suita Municipal Hospital 市立吹田市民病院'), (7380, 'https://ror.org/02wcc5n95', 'en', 1, 'https://ror.org/02wcc5n95 Association of Dutch Burn Centres Vereniging Samenwerkende Brandwondencentra'), (7381, 'https://ror.org/02wcma710', 'no_lang_code', 1, 'https://ror.org/02wcma710 Schafer Corporation (United States)'), (7382, 'https://ror.org/02wcqs336', 'en', 1, 'https://ror.org/02wcqs336 Jerusalem Mental Health Center המרכז לבריאות הנפש ירושלים'), (7383, 'https://ror.org/02wed1y10', 'no_lang_code', 1, 'https://ror.org/02wed1y10 Learning in Motion (United States)'), (7384, 'https://ror.org/02wfw7g10', 'no_lang_code', 1, 'https://ror.org/02wfw7g10 QM Power (United States)'), (7385, 'https://ror.org/02whkqx98', 'no_lang_code', 1, 'https://ror.org/02whkqx98 Social Solutions International (United States)'), (7386, 'https://ror.org/02wjx3n88', 'no_lang_code', 1, 'https://ror.org/02wjx3n88 Biomomentum (Canada)'), (7387, 'https://ror.org/02wkp0463', 'fr', 1, 'https://ror.org/02wkp0463 Service Régional Vaudois de Transfusion Sanguine'), (7388, 'https://ror.org/02wmjtd85', 'en', 1, 'https://ror.org/02wmjtd85 Notre Dame College'), (7389, 'https://ror.org/02wna9e57', 'pt', 1, 'https://ror.org/02wna9e57 Instituto Adolfo Lutz'), (7390, 'https://ror.org/02wndzd81', 'en', 1, 'https://ror.org/02wndzd81 Heart and Diabetes Center North Rhine-Westphalia Herz- und Diabeteszentrum Nordrhein-Westfalen'), (7391, 'https://ror.org/02wpa5731', 'en', 1, 'https://ror.org/02wpa5731 Takatsuki Red Cross Hospital 高槻赤十字病院'), (7392, 'https://ror.org/02wv0bc69', 'no_lang_code', 1, 'https://ror.org/02wv0bc69 DNA Polymerase Technology (United States)'), (7393, 'https://ror.org/02wv25745', 'no_lang_code', 1, 'https://ror.org/02wv25745 ParaTechs (United States)'), (7394, 'https://ror.org/02wvm8742', 'no_lang_code', 1, 'https://ror.org/02wvm8742 Montserrat Volcano Observatory'), (7395, 'https://ror.org/02wvnxv35', 'no_lang_code', 1, 'https://ror.org/02wvnxv35 Inflazyme (Canada)'), (7396, 'https://ror.org/02wxe0t87', 'es', 1, 'https://ror.org/02wxe0t87 Centro Español de Investigación Farmacoepidemiológica Spanish Centre for Pharmacoepidemiologic Research'), (7397, 'https://ror.org/02wxwab08', 'en', 1, 'https://ror.org/02wxwab08 Botanical Research Institute of Texas'), (7398, 'https://ror.org/02wxws056', 'no_lang_code', 1, 'https://ror.org/02wxws056 Dynamic Graphics (United States)'), (7399, 'https://ror.org/02wy9g851', 'no_lang_code', 1, 'https://ror.org/02wy9g851 Colibri Software (Canada)'), (7400, 'https://ror.org/02wzb5b52', 'en', 1, 'https://ror.org/02wzb5b52 Grand Forks Human Nutrition Research Center'), (7401, 'https://ror.org/02x1zab29', 'no_lang_code', 1, 'https://ror.org/02x1zab29 Chemring Technology Solutions (United Kingdom)'), (7402, 'https://ror.org/02x4k7z35', 'no_lang_code', 1, 'https://ror.org/02x4k7z35 Carepayment (United States)'), (7403, 'https://ror.org/02x4mx473', 'en', 1, 'https://ror.org/02x4mx473 Belgian Ceramic Research Centre'), (7404, 'https://ror.org/02x6aye26', 'en', 1, 'https://ror.org/02x6aye26 National Association of State Boards of Education'), (7405, 'https://ror.org/02x6fhe76', 'en', 1, 'https://ror.org/02x6fhe76 Transcultural Mental Health Institute'), (7406, 'https://ror.org/02x6y0g48', 'en', 1, 'https://ror.org/02x6y0g48 Ann Becker and Associates'), (7407, 'https://ror.org/02x9bj444', 'en', 1, 'https://ror.org/02x9bj444 Hampton VA Medical Center'), (7408, 'https://ror.org/02xbbj940', 'no_lang_code', 1, 'https://ror.org/02xbbj940 CASI Pharmaceuticals (United States)'), (7409, 'https://ror.org/02xdxmh23', 'en', 1, 'https://ror.org/02xdxmh23 San Jacinto College'), (7410, 'https://ror.org/02xe87f77', 'no_lang_code', 1, 'https://ror.org/02xe87f77 Yamagata Prefectural Central Hospital 山形県立中央病院'), (7411, 'https://ror.org/02xf69211', 'no_lang_code', 1, 'https://ror.org/02xf69211 XRSciences (United States)'), (7412, 'https://ror.org/02xfnnq52', 'no_lang_code', 1, 'https://ror.org/02xfnnq52 Bio Products Laboratory (United Kingdom)'), (7413, 'https://ror.org/02xh63p53', 'en', 1, 'https://ror.org/02xh63p53 American Board of Emergency Medicine'), (7414, 'https://ror.org/02xhxds14', 'no_lang_code', 1, 'https://ror.org/02xhxds14 Consarc Design Group (United Kingdom)'), (7415, 'https://ror.org/02xm4cz36', 'en', 1, 'https://ror.org/02xm4cz36 LaserVision'), (7416, 'https://ror.org/02xmjm585', 'no_lang_code', 1, 'https://ror.org/02xmjm585 Intelligent Mechatronic Systems (Canada)'), (7417, 'https://ror.org/02xnj2427', 'fr', 1, 'https://ror.org/02xnj2427 Hôpital de Ville-Évrard'), (7418, 'https://ror.org/02xp6nt38', 'en', 1, 'https://ror.org/02xp6nt38 Wheeling Hospital'), (7419, 'https://ror.org/02xqze381', 'it', 1, 'https://ror.org/02xqze381 Ospedale San Bassiano'), (7420, 'https://ror.org/02xrwdh93', 'en', 1, 'https://ror.org/02xrwdh93 Southern College of Optometry'), (7421, 'https://ror.org/02xryym68', 'no_lang_code', 1, 'https://ror.org/02xryym68 Ashwin-Ushas (United States)'), (7422, 'https://ror.org/02xs4hf68', 'no_lang_code', 1, 'https://ror.org/02xs4hf68 Incom (United States)'), (7423, 'https://ror.org/02xst6m67', 'no_lang_code', 1, 'https://ror.org/02xst6m67 XL Sci-Tech (United States)'), (7424, 'https://ror.org/02xvj0167', 'no_lang_code', 1, 'https://ror.org/02xvj0167 Lifepharms (United States)'), (7425, 'https://ror.org/02xwa6p02', 'no_lang_code', 1, 'https://ror.org/02xwa6p02 Cubist Pharmaceuticals (United States)'), (7426, 'https://ror.org/02xx07v13', 'fr', 1, 'https://ror.org/02xx07v13 Neurocentre Magendie'), (7427, 'https://ror.org/02xx54833', 'no_lang_code', 1, 'https://ror.org/02xx54833 HedgePath Pharmaceuticals (United States)'), (7428, 'https://ror.org/02xxpjq61', 'en', 1, 'https://ror.org/02xxpjq61 Indian Institute of Management Bangalore भारतीय प्रबंध संस्थान बेंगलूर இந்திய மேலாண்மை கழகம் பெங்களூரு ఇండియన్ ఇన్స్టిట్యూట్ ఆఫ్ మేనేజ్మెంట్ బెంగుళూరు ಇಂಡಿಯನ್ ಇನ್ಸ್ಟಿಟ್ಯೂಟ್ ಆಫ್ ಮ್ಯಾನೇಜ್ಮೆಂಟ್ ಬೆಂಗಳೂರು ഇന്ത്യൻ ഇൻസ്റ്റിറ്റ്യൂട്ട് ഓഫ് മാനേജ്മെന്റ്, ബാംഗ്ലൂർ'), (7429, 'https://ror.org/02xyffp85', 'en', 1, 'https://ror.org/02xyffp85 Fatima Mata National College ഫാത്തിമ മാതാ നാഷണൽ കോളേജ്'), (7430, 'https://ror.org/02y0wmd59', 'en', 1, 'https://ror.org/02y0wmd59 Children''s Heart Center Nevada'), (7431, 'https://ror.org/02y1jb308', 'en', 1, 'https://ror.org/02y1jb308 Telus World of Science'), (7432, 'https://ror.org/02y239j20', 'en', 1, 'https://ror.org/02y239j20 MentorNet'), (7433, 'https://ror.org/02y2p9e58', 'no_lang_code', 1, 'https://ror.org/02y2p9e58 Prognosys Biosciences (United States)'), (7434, 'https://ror.org/02y2qcy45', 'en', 1, 'https://ror.org/02y2qcy45 Phoebe Putney Memorial Hospital'), (7435, 'https://ror.org/02y41ps56', 'no_lang_code', 1, 'https://ror.org/02y41ps56 ImmuneXcite (United States)'), (7436, 'https://ror.org/02y447018', 'en', 1, 'https://ror.org/02y447018 Canadian Council on Animal Care'), (7437, 'https://ror.org/02y5b7h51', 'no_lang_code', 1, 'https://ror.org/02y5b7h51 Collagen Matrix (United States)'), (7438, 'https://ror.org/02y85r186', 'en', 1, 'https://ror.org/02y85r186 Ohio County Behavioral Health Authorities'), (7439, 'https://ror.org/02y8r3y04', 'no_lang_code', 1, 'https://ror.org/02y8r3y04 Life Prediction Technologies (Canada)'), (7440, 'https://ror.org/02y9ayd76', 'en', 1, 'https://ror.org/02y9ayd76 Vokkaligara Sangha Dental College & Hospital'), (7441, 'https://ror.org/02ybbzx72', 'en', 1, 'https://ror.org/02ybbzx72 Consortium de Recherche et Innovations en Bioprocédés Industriels au Québec Quebec Consortium for Industrial Bioprocess Research and Innovation'), (7442, 'https://ror.org/02ycgwy86', 'es', 1, 'https://ror.org/02ycgwy86 Profamilia'), (7443, 'https://ror.org/02ycq1t04', 'no_lang_code', 1, 'https://ror.org/02ycq1t04 ABS Materials (United States)'), (7444, 'https://ror.org/02ydc1657', 'it', 1, 'https://ror.org/02ydc1657 Gruppo di Ricerca Geriatrica'), (7445, 'https://ror.org/02yfw7119', 'fr', 1, 'https://ror.org/02yfw7119 Fondation de Rothschild'), (7446, 'https://ror.org/02ygwnf45', 'no_lang_code', 1, 'https://ror.org/02ygwnf45 Public Data Queries (United States)'), (7447, 'https://ror.org/02yh9se80', 'en', 1, 'https://ror.org/02yh9se80 Russell Sage Foundation'), (7448, 'https://ror.org/02yhx1447', 'en', 1, 'https://ror.org/02yhx1447 Western Pennsylvania Hospital'), (7449, 'https://ror.org/02yj6hv88', 'no_lang_code', 1, 'https://ror.org/02yj6hv88 Pharis Biotec (Germany)'), (7450, 'https://ror.org/02yk9rt54', 'en', 1, 'https://ror.org/02yk9rt54 Blast Theory'), (7451, 'https://ror.org/02ym2t546', 'en', 1, 'https://ror.org/02ym2t546 Milwaukee Area Technical College'), (7452, 'https://ror.org/02ymmdj85', 'en', 1, 'https://ror.org/02ymmdj85 Robert Wood Johnson Foundation'), (7453, 'https://ror.org/02yp59539', 'en', 1, 'https://ror.org/02yp59539 Clinical Trials and Surveys Corporation'), (7454, 'https://ror.org/02yqf2n67', 'en', 1, 'https://ror.org/02yqf2n67 American Indian Higher Education Consortium'), (7455, 'https://ror.org/02yrkyr74', 'no_lang_code', 1, 'https://ror.org/02yrkyr74 Data Voice Exchange (United States)'), (7456, 'https://ror.org/02yry4472', 'en', 1, 'https://ror.org/02yry4472 All-China Sports Federation'), (7457, 'https://ror.org/02ys1c285', 'en', 1, 'https://ror.org/02ys1c285 Development Center for Biotechnology'), (7458, 'https://ror.org/02ythcz79', 'en', 1, 'https://ror.org/02ythcz79 American Society for Cybernetics'), (7459, 'https://ror.org/02yw59f42', 'en', 1, 'https://ror.org/02yw59f42 Central New Mexico Community College'), (7460, 'https://ror.org/02yx0gd46', 'no_lang_code', 1, 'https://ror.org/02yx0gd46 Biomedical Frontiers (United States)'), (7461, 'https://ror.org/02yx4yb97', 'no_lang_code', 1, 'https://ror.org/02yx4yb97 Epigen Biosciences (United States)'), (7462, 'https://ror.org/02yxan022', 'no_lang_code', 1, 'https://ror.org/02yxan022 Quanser (Canada)'), (7463, 'https://ror.org/02yz66a54', 'no_lang_code', 1, 'https://ror.org/02yz66a54 NovelMed Therapeutics (United States)'), (7464, 'https://ror.org/02yzma536', 'no_lang_code', 1, 'https://ror.org/02yzma536 Infrared Fiber Systems (United States)'), (7465, 'https://ror.org/02z2dfb58', 'en', 1, 'https://ror.org/02z2dfb58 CeMM Research Center for Molecular Medicine'), (7466, 'https://ror.org/02z2r2t61', 'no_lang_code', 1, 'https://ror.org/02z2r2t61 Rockland Immunochemicals (United States)'), (7467, 'https://ror.org/02z36x226', 'no_lang_code', 1, 'https://ror.org/02z36x226 Vancouver Enterprise Forum'), (7468, 'https://ror.org/02z384071', 'en', 1, 'https://ror.org/02z384071 American Political Science Association'), (7469, 'https://ror.org/02z40ce29', 'en', 1, 'https://ror.org/02z40ce29 Red River College'), (7470, 'https://ror.org/02z6ck570', 'no_lang_code', 1, 'https://ror.org/02z6ck570 IPL (Canada)'), (7471, 'https://ror.org/02z6cxz02', 'en', 1, 'https://ror.org/02z6cxz02 Warwick Hospital'), (7472, 'https://ror.org/02z87mf86', 'en', 1, 'https://ror.org/02z87mf86 Mountain Home VA Healthcare System'), (7473, 'https://ror.org/02z8v3172', 'no_lang_code', 1, 'https://ror.org/02z8v3172 Systex (United States)'), (7474, 'https://ror.org/02z95d405', 'de', 1, 'https://ror.org/02z95d405 Institut für Klinische Forschung und Entwicklung'), (7475, 'https://ror.org/02z9b2w17', 'sv', 1, 'https://ror.org/02z9b2w17 Länssjukhuset Sundsvall-Härnösand'), (7476, 'https://ror.org/02z9mtw38', 'en', 1, 'https://ror.org/02z9mtw38 Tapestry Health'), (7477, 'https://ror.org/02zan5e48', 'en', 1, 'https://ror.org/02zan5e48 Menorah Park Center for Senior Living'), (7478, 'https://ror.org/02zdz1m23', 'en', 1, 'https://ror.org/02zdz1m23 Ministry of Agriculture, Forestry and Fisheries 農林水産省'), (7479, 'https://ror.org/02zdz9s16', 'en', 1, 'https://ror.org/02zdz9s16 Ackerman Institute for the Family'), (7480, 'https://ror.org/02zepah98', 'en', 1, 'https://ror.org/02zepah98 Hand and Wrist Center of Houston'), (7481, 'https://ror.org/02zhhtj16', 'en', 1, 'https://ror.org/02zhhtj16 West Virginia High Technology Consortium Foundation'), (7482, 'https://ror.org/02zhjb475', 'en', 1, 'https://ror.org/02zhjb475 Thompson Cancer Survival Center'), (7483, 'https://ror.org/02zhwmh74', 'en', 1, 'https://ror.org/02zhwmh74 Cincinnati Eye Institute'), (7484, 'https://ror.org/02zhyrb63', 'en', 1, 'https://ror.org/02zhyrb63 Institute of Immunology'), (7485, 'https://ror.org/02zm13s10', 'en', 1, 'https://ror.org/02zm13s10 Applied Genetics Laboratories'), (7486, 'https://ror.org/02zmajt19', 'it', 1, 'https://ror.org/02zmajt19 Casa di cura Pierangeli'), (7487, 'https://ror.org/02zn7mc21', 'en', 1, 'https://ror.org/02zn7mc21 Medical Care Development'), (7488, 'https://ror.org/02zq8st27', 'en', 1, 'https://ror.org/02zq8st27 Butte College'), (7489, 'https://ror.org/02zv3n642', 'en', 1, 'https://ror.org/02zv3n642 Institute for Facial Esthetics'), (7490, 'https://ror.org/02zz8mw60', 'no_lang_code', 1, 'https://ror.org/02zz8mw60 GlaxoSmithKline (Canada)'), (7491, 'https://ror.org/02zzfj172', 'en', 1, 'https://ror.org/02zzfj172 Wuhan Asia Heart Hospital 武汉亚洲心脏病医院'), (7492, 'https://ror.org/0304xwq55', 'en', 1, 'https://ror.org/0304xwq55 Education Training And Research'), (7493, 'https://ror.org/030637x68', 'en', 1, 'https://ror.org/030637x68 Sussex Eye Hospital'), (7494, 'https://ror.org/0309ps652', 'no_lang_code', 1, 'https://ror.org/0309ps652 CyberLogic (United States)'), (7495, 'https://ror.org/030anrr19', 'no_lang_code', 1, 'https://ror.org/030anrr19 Thermo Fisher Scientific (Lithuania)'), (7496, 'https://ror.org/030cz2x22', 'no_lang_code', 1, 'https://ror.org/030cz2x22 Interactive Drama (United States)'), (7497, 'https://ror.org/030gs7n75', 'no_lang_code', 1, 'https://ror.org/030gs7n75 Seccuris (Canada)'), (7498, 'https://ror.org/030h0wa62', 'no_lang_code', 1, 'https://ror.org/030h0wa62 JBS International (United States)'), (7499, 'https://ror.org/030h6t573', 'no_lang_code', 1, 'https://ror.org/030h6t573 DNAtrix (United States)'), (7500, 'https://ror.org/030mbxz29', 'en', 1, 'https://ror.org/030mbxz29 Carter Center'), (7501, 'https://ror.org/030mgn080', 'en', 1, 'https://ror.org/030mgn080 Anderson Orthopaedic Clinic'), (7502, 'https://ror.org/030n06868', 'no_lang_code', 1, 'https://ror.org/030n06868 RiboMed Biotechnologies (United States)'), (7503, 'https://ror.org/030n38z97', 'en', 1, 'https://ror.org/030n38z97 International Laser Center'), (7504, 'https://ror.org/030p0vr95', 'no_lang_code', 1, 'https://ror.org/030p0vr95 Proton OnSite (United States)'), (7505, 'https://ror.org/030p6ep86', 'no_lang_code', 1, 'https://ror.org/030p6ep86 Aecom (United Kingdom)'), (7506, 'https://ror.org/030pj1w51', 'en', 1, 'https://ror.org/030pj1w51 Uzsoki Hospital Uzsoki Utcai Kórház'), (7507, 'https://ror.org/030pv4h84', 'en', 1, 'https://ror.org/030pv4h84 Albertus Magnus College'), (7508, 'https://ror.org/030qq9y73', 'en', 1, 'https://ror.org/030qq9y73 Hachinohe National College of Technology 八戸工業高等専門学校 庶務課'), (7509, 'https://ror.org/030wd1008', 'no_lang_code', 1, 'https://ror.org/030wd1008 Orbis Biosciences (United States)'), (7510, 'https://ror.org/030y83r80', 'en', 1, 'https://ror.org/030y83r80 Louisville Metabolic and Atherosclerosis Research Center'), (7511, 'https://ror.org/030ygs139', 'no_lang_code', 1, 'https://ror.org/030ygs139 RAGT Seeds (United Kingdom)'), (7512, 'https://ror.org/030yyf771', 'no_lang_code', 1, 'https://ror.org/030yyf771 Sun Pharma (India)'), (7513, 'https://ror.org/030zc7t66', 'no_lang_code', 1, 'https://ror.org/030zc7t66 Sunovion (United States)'), (7514, 'https://ror.org/031056b37', 'no_lang_code', 1, 'https://ror.org/031056b37 TomoWave Laboratories (United States)'), (7515, 'https://ror.org/0310bxj37', 'no_lang_code', 1, 'https://ror.org/0310bxj37 Synageva BioPharma (United States)'), (7516, 'https://ror.org/0311xw623', 'no_lang_code', 1, 'https://ror.org/0311xw623 PharmaSeq (United States)'), (7517, 'https://ror.org/0312k4k82', 'en', 1, 'https://ror.org/0312k4k82 Massachusetts Eye Research and Surgery Institute'), (7518, 'https://ror.org/0315pp027', 'en', 1, 'https://ror.org/0315pp027 Math Learning Center'), (7519, 'https://ror.org/0315s4978', 'fr', 1, 'https://ror.org/0315s4978 Centre de Médecine Préventive'), (7520, 'https://ror.org/0315wyw46', 'en', 1, 'https://ror.org/0315wyw46 Sheldon Jackson College'), (7521, 'https://ror.org/0317zws63', 'en', 1, 'https://ror.org/0317zws63 Ministry of Public Order and Citizen Protection Υπουργείο Δημόσιας Τάξης και Προστασίας του Πολίτη'), (7522, 'https://ror.org/0319xcm09', 'no_lang_code', 1, 'https://ror.org/0319xcm09 Peter Brett Associates'), (7523, 'https://ror.org/031a6wg34', 'en', 1, 'https://ror.org/031a6wg34 Saskatchewan Health Quality Council'), (7524, 'https://ror.org/031bpvz69', 'no_lang_code', 1, 'https://ror.org/031bpvz69 Gene Check (United States)'), (7525, 'https://ror.org/031bsx066', 'en', 1, 'https://ror.org/031bsx066 DaVinci Institute'), (7526, 'https://ror.org/031c2cm83', 'en', 1, 'https://ror.org/031c2cm83 Department of Justice'), (7527, 'https://ror.org/031exby54', 'no_lang_code', 1, 'https://ror.org/031exby54 Sea Run Holdings (United States)'), (7528, 'https://ror.org/031m32a82', 'en', 1, 'https://ror.org/031m32a82 Athens International Airport Διεθνής Αερολιμένας Αθηνών «Ελευθέριος Βενιζέλος»'), (7529, 'https://ror.org/031vg5s58', 'en', 1, 'https://ror.org/031vg5s58 Peru State College'), (7530, 'https://ror.org/031vxrj29', 'en', 1, 'https://ror.org/031vxrj29 National Institute of Malaria Research राष्ट्रीय मलेरिया अनुसंधान संस्थान'), (7531, 'https://ror.org/031x12x59', 'de', 1, 'https://ror.org/031x12x59 Katholisches Klinikum Koblenz'), (7532, 'https://ror.org/031yk2194', 'en', 1, 'https://ror.org/031yk2194 Bangur Institute of Neurosciences'), (7533, 'https://ror.org/031ywxc85', 'no_lang_code', 1, 'https://ror.org/031ywxc85 Alexion Pharmaceuticals (United States)'), (7534, 'https://ror.org/031yz7195', 'en', 1, 'https://ror.org/031yz7195 Centre de Recherche Interdisciplinaire en Réadaptation Centre for Interdisciplinary Research in Rehabilitation'), (7535, 'https://ror.org/03210bg97', 'no_lang_code', 1, 'https://ror.org/03210bg97 Dynex Semiconductor (United Kingdom)'), (7536, 'https://ror.org/0322xet82', 'en', 1, 'https://ror.org/0322xet82 National Center for Healthy Housing'), (7537, 'https://ror.org/0324dy645', 'no_lang_code', 1, 'https://ror.org/0324dy645 Radiant Creative Group'), (7538, 'https://ror.org/03257r210', 'fi', 1, 'https://ror.org/03257r210 Kuopion Liikuntalääketieteen Tutkimuslaitos'), (7539, 'https://ror.org/0326f0a78', 'en', 1, 'https://ror.org/0326f0a78 Indepth Network'), (7540, 'https://ror.org/03294gc92', 'no_lang_code', 1, 'https://ror.org/03294gc92 Audiology (United States)'), (7541, 'https://ror.org/032b4kq73', 'no_lang_code', 1, 'https://ror.org/032b4kq73 SoyMeds (United States)'), (7542, 'https://ror.org/032bvxc76', 'no_lang_code', 1, 'https://ror.org/032bvxc76 Lakes Environmental (Canada)'), (7543, 'https://ror.org/032d3jq51', 'en', 1, 'https://ror.org/032d3jq51 Waikato District Health Board'), (7544, 'https://ror.org/032e0fv91', 'en', 1, 'https://ror.org/032e0fv91 St. Patrick''s Hospital'), (7545, 'https://ror.org/032h8td77', 'no_lang_code', 1, 'https://ror.org/032h8td77 InBios International (United States)'), (7546, 'https://ror.org/032hhgs28', 'no_lang_code', 1, 'https://ror.org/032hhgs28 Caldic (Canada)'), (7547, 'https://ror.org/032hvdr57', 'en', 1, 'https://ror.org/032hvdr57 Gordon-Conwell Theological Seminary'), (7548, 'https://ror.org/032jtv165', 'no_lang_code', 1, 'https://ror.org/032jtv165 Hawaii Biotech (United States)'), (7549, 'https://ror.org/032msy923', 'no_lang_code', 1, 'https://ror.org/032msy923 Santen (Japan) 参天製薬株式会社'), (7550, 'https://ror.org/032mw2t40', 'no_lang_code', 1, 'https://ror.org/032mw2t40 Shifa Biomedical (United States)'), (7551, 'https://ror.org/032s9tg47', 'en', 1, 'https://ror.org/032s9tg47 Cooperative Research Centre for Beef Genetic Technologies'), (7552, 'https://ror.org/032t9vq81', 'no_lang_code', 1, 'https://ror.org/032t9vq81 Shasta Crystals (United States)'), (7553, 'https://ror.org/032w3wj13', 'en', 1, 'https://ror.org/032w3wj13 Research Institute for Production Development 般財団法人生産開発科学研究所'), (7554, 'https://ror.org/032w6bp80', 'no_lang_code', 1, 'https://ror.org/032w6bp80 State Volunteer Mutual Insurance (United States)'), (7555, 'https://ror.org/032y7r881', 'en', 1, 'https://ror.org/032y7r881 IntraHealth International'), (7556, 'https://ror.org/032z49242', 'no_lang_code', 1, 'https://ror.org/032z49242 Senecio Software (United States)'), (7557, 'https://ror.org/0331x8t04', 'nl', 1, 'https://ror.org/0331x8t04 Zaans Medisch Centrum'), (7558, 'https://ror.org/0332k3m42', 'en', 1, 'https://ror.org/0332k3m42 Syracuse VA Medical Center'), (7559, 'https://ror.org/03337hf32', 'no_lang_code', 1, 'https://ror.org/03337hf32 AugmenTech (United States)'), (7560, 'https://ror.org/0333j1f77', 'no_lang_code', 1, 'https://ror.org/0333j1f77 Lentigen Technology (United States)'), (7561, 'https://ror.org/033647p67', 'en', 1, 'https://ror.org/033647p67 Otsu Red Cross Hospital 大津赤十字病院'), (7562, 'https://ror.org/03364yv75', 'it', 1, 'https://ror.org/03364yv75 Ospedaliera di Piacenza'), (7563, 'https://ror.org/0336jnw26', 'en', 1, 'https://ror.org/0336jnw26 Pittsburgh Tissue Engineering Initiative'), (7564, 'https://ror.org/033c6ba10', 'en', 1, 'https://ror.org/033c6ba10 Southcentral Foundation'), (7565, 'https://ror.org/033c74k08', 'no_lang_code', 1, 'https://ror.org/033c74k08 Intuitive Biosciences (United States)'), (7566, 'https://ror.org/033cjdk78', 'en', 1, 'https://ror.org/033cjdk78 Green Valley High School'), (7567, 'https://ror.org/033fn9j44', 'en', 1, 'https://ror.org/033fn9j44 Shriners Hospitals for Children - Chicago'), (7568, 'https://ror.org/033fyh879', 'no_lang_code', 1, 'https://ror.org/033fyh879 Omicia (United States)'), (7569, 'https://ror.org/033h8cb51', 'no_lang_code', 1, 'https://ror.org/033h8cb51 Cardiome (Canada)'), (7570, 'https://ror.org/033jcqk26', 'en', 1, 'https://ror.org/033jcqk26 National Archives Yr Archifau Cenedlaethol'), (7571, 'https://ror.org/033js5093', 'no_lang_code', 1, 'https://ror.org/033js5093 Gunma Saiseikai Maebashi Hospital 群馬県済生会前橋病院'), (7572, 'https://ror.org/033m8b439', 'en', 1, 'https://ror.org/033m8b439 California Institute for Regenerative Medicine'), (7573, 'https://ror.org/033mjf763', 'it', 1, 'https://ror.org/033mjf763 Ospedale per gli Infermi'), (7574, 'https://ror.org/033n9f723', 'no_lang_code', 1, 'https://ror.org/033n9f723 Polyglot Systems (United States)'), (7575, 'https://ror.org/033nw2736', 'no_lang_code', 1, 'https://ror.org/033nw2736 Taisho Pharmaceutical (Japan) 大正製薬'), (7576, 'https://ror.org/033q64q73', 'en', 1, 'https://ror.org/033q64q73 Cypress Health Region'), (7577, 'https://ror.org/033r53w79', 'no_lang_code', 1, 'https://ror.org/033r53w79 Halsall (Canada)'), (7578, 'https://ror.org/033rjjc73', 'en', 1, 'https://ror.org/033rjjc73 Park Nicollet Methodist Hospital'), (7579, 'https://ror.org/033sk1c45', 'en', 1, 'https://ror.org/033sk1c45 Prestera Center'), (7580, 'https://ror.org/033ssdc55', 'no_lang_code', 1, 'https://ror.org/033ssdc55 Unisys (United States)'), (7581, 'https://ror.org/033w59g46', 'en', 1, 'https://ror.org/033w59g46 Ministry of Agriculture, Food and Rural Affairs Ministère de l''Agriculture, de l''Alimenntation et des Affaires Rurales'), (7582, 'https://ror.org/0342mgc93', 'en', 1, 'https://ror.org/0342mgc93 Alaska Department of Environmental Conservation'), (7583, 'https://ror.org/03436rn68', 'en', 1, 'https://ror.org/03436rn68 Wentworth Douglass Hospital'), (7584, 'https://ror.org/0343gdk92', 'en', 1, 'https://ror.org/0343gdk92 Dorn Research Institute'), (7585, 'https://ror.org/03446fm19', 'en', 1, 'https://ror.org/03446fm19 OrthoCarolina'), (7586, 'https://ror.org/0345rff82', 'no_lang_code', 1, 'https://ror.org/0345rff82 Evident Point (Canada)'), (7587, 'https://ror.org/0347fy350', 'en', 1, 'https://ror.org/0347fy350 Rothamsted Research'), (7588, 'https://ror.org/0348rpk45', 'no_lang_code', 1, 'https://ror.org/0348rpk45 InXsol (United States)'), (7589, 'https://ror.org/034948b51', 'en', 1, 'https://ror.org/034948b51 Calhoun Community College'), (7590, 'https://ror.org/034a7fc11', 'no_lang_code', 1, 'https://ror.org/034a7fc11 Copernicus Therapeutics (United States)'), (7591, 'https://ror.org/034b18290', 'no_lang_code', 1, 'https://ror.org/034b18290 Precision Combustion (United States)'), (7592, 'https://ror.org/034c0gr54', 'en', 1, 'https://ror.org/034c0gr54 Oklahoma Foundation for Digestive Research'), (7593, 'https://ror.org/034dvzk32', 'en', 1, 'https://ror.org/034dvzk32 Marin Health and Human Services'), (7594, 'https://ror.org/034fbm741', 'no_lang_code', 1, 'https://ror.org/034fbm741 eSpin Technologies (United States)'), (7595, 'https://ror.org/034hh2e11', 'en', 1, 'https://ror.org/034hh2e11 Amgueddfa Victoria ac Albert Victoria and Albert Museum'), (7596, 'https://ror.org/034ja4661', 'no_lang_code', 1, 'https://ror.org/034ja4661 Educational Service Incorporation'), (7597, 'https://ror.org/034jwje45', 'no_lang_code', 1, 'https://ror.org/034jwje45 Yukioka Hospital 行岡病院'), (7598, 'https://ror.org/034jwm186', 'en', 1, 'https://ror.org/034jwm186 Aletheia House'), (7599, 'https://ror.org/034kxvk28', 'no_lang_code', 1, 'https://ror.org/034kxvk28 Galderma (France)'), (7600, 'https://ror.org/034nvrd87', 'en', 1, 'https://ror.org/034nvrd87 Royal Berkshire NHS Foundation Trust'), (7601, 'https://ror.org/034pcpg38', 'en', 1, 'https://ror.org/034pcpg38 Bard College at Simon''s Rock'), (7602, 'https://ror.org/034pm2g80', 'en', 1, 'https://ror.org/034pm2g80 Colegios Comunitarios del Condado de Dallas Dallas County Community College District'), (7603, 'https://ror.org/034s15752', 'en', 1, 'https://ror.org/034s15752 Academy for Educational Development'), (7604, 'https://ror.org/034s1fw96', 'en', 1, 'https://ror.org/034s1fw96 Yokohama Municipal Citizen''s Hospital 横浜市営市民病院'), (7605, 'https://ror.org/034vefz29', 'no_lang_code', 1, 'https://ror.org/034vefz29 Rehabtek (United States)'), (7606, 'https://ror.org/034wxcc35', 'en', 1, 'https://ror.org/034wxcc35 European Organisation for Research and Treatment of Cancer Organisation européenne pour la recherche et le traitement du cancer'), (7607, 'https://ror.org/034x2fx50', 'en', 1, 'https://ror.org/034x2fx50 Information and Communication Technologies Centre'), (7608, 'https://ror.org/034xvzb47', 'en', 1, 'https://ror.org/034xvzb47 United States Food and Drug Administration'), (7609, 'https://ror.org/034xych09', 'en', 1, 'https://ror.org/034xych09 Winchester Science Centre'), (7610, 'https://ror.org/034y1g063', 'en', 1, 'https://ror.org/034y1g063 New York State Office of Alcoholism and Substance Abuse Services'), (7611, 'https://ror.org/034y7by63', 'no_lang_code', 1, 'https://ror.org/034y7by63 Lineage Cell Therapeutics (United States)'), (7612, 'https://ror.org/0350vc126', 'en', 1, 'https://ror.org/0350vc126 River Region Human Services'), (7613, 'https://ror.org/03535yg39', 'en', 1, 'https://ror.org/03535yg39 American Occupational Therapy Association'), (7614, 'https://ror.org/0353yar19', 'en', 1, 'https://ror.org/0353yar19 Dr. Daneshbod Labratory'), (7615, 'https://ror.org/0353zfd89', 'en', 1, 'https://ror.org/0353zfd89 Sultan Qaboos Hospital مستشفى السلطان قابوس'), (7616, 'https://ror.org/03561g010', 'no_lang_code', 1, 'https://ror.org/03561g010 Canadian Green Tech (Canada)'), (7617, 'https://ror.org/035756473', 'en', 1, 'https://ror.org/035756473 Trinity Washington University Universidad Trinity Washington'), (7618, 'https://ror.org/0357g8536', 'no_lang_code', 1, 'https://ror.org/0357g8536 Clearpath Robotics (Canada)'), (7619, 'https://ror.org/03583w097', 'no_lang_code', 1, 'https://ror.org/03583w097 System Biosciences (United States)'), (7620, 'https://ror.org/0358b9334', 'en', 1, 'https://ror.org/0358b9334 Pakistan Institute of Medical Sciences پاکستان طبی سائنس انسٹی ٹیوٹ'), (7621, 'https://ror.org/0359jxf05', 'no_lang_code', 1, 'https://ror.org/0359jxf05 ImmuRx (United States)'), (7622, 'https://ror.org/0359s0245', 'no_lang_code', 1, 'https://ror.org/0359s0245 Continental (Germany)'), (7623, 'https://ror.org/035aej353', 'en', 1, 'https://ror.org/035aej353 Lorain County Community College'), (7624, 'https://ror.org/035cynm43', 'en', 1, 'https://ror.org/035cynm43 Foundation for Research into Traditional Chinese Medicine'), (7625, 'https://ror.org/035djg835', 'no_lang_code', 1, 'https://ror.org/035djg835 National Recovery Technologies (United States)'), (7626, 'https://ror.org/035dkke52', 'no_lang_code', 1, 'https://ror.org/035dkke52 Scisys (United Kingdom)'), (7627, 'https://ror.org/035dpw102', 'en', 1, 'https://ror.org/035dpw102 Sage College of Albany'), (7628, 'https://ror.org/035fp5e48', 'en', 1, 'https://ror.org/035fp5e48 Scientific Consulting Group'), (7629, 'https://ror.org/035gyn125', 'en', 1, 'https://ror.org/035gyn125 Trenton Psychiatric Hospital'), (7630, 'https://ror.org/035h6e956', 'en', 1, 'https://ror.org/035h6e956 College of American Pathologists'), (7631, 'https://ror.org/035hd8d68', 'en', 1, 'https://ror.org/035hd8d68 Shepherd Center'), (7632, 'https://ror.org/035hvd463', 'en', 1, 'https://ror.org/035hvd463 Université adventiste de washington Washington Adventist University'), (7633, 'https://ror.org/035qh5653', 'en', 1, 'https://ror.org/035qh5653 M.G. Kholodny Institute of Botany'), (7634, 'https://ror.org/035vrxy57', 'en', 1, 'https://ror.org/035vrxy57 Micro and Nanotechnology Innovation Centre'), (7635, 'https://ror.org/035wemy73', 'no_lang_code', 1, 'https://ror.org/035wemy73 Bellus Health (Canada)'), (7636, 'https://ror.org/035wk0p43', 'no_lang_code', 1, 'https://ror.org/035wk0p43 E.ON (United States)'), (7637, 'https://ror.org/035zrdg08', 'no_lang_code', 1, 'https://ror.org/035zrdg08 MassTech (United States)'), (7638, 'https://ror.org/0361tej78', 'no_lang_code', 1, 'https://ror.org/0361tej78 Urigen Pharmaceuticals (United States)'), (7639, 'https://ror.org/0362v0107', 'en', 1, 'https://ror.org/0362v0107 Family and Medical Counseling Service'), (7640, 'https://ror.org/036300c37', 'en', 1, 'https://ror.org/036300c37 Indiana Academy of Science'), (7641, 'https://ror.org/036482385', 'en', 1, 'https://ror.org/036482385 United Engineering Foundation'), (7642, 'https://ror.org/0366e1296', 'en', 1, 'https://ror.org/0366e1296 Association of Chief Police Officers'), (7643, 'https://ror.org/0366h3j49', 'no_lang_code', 1, 'https://ror.org/0366h3j49 Geotechnical Observations (United Kingdom)'), (7644, 'https://ror.org/03671qm90', 'en', 1, 'https://ror.org/03671qm90 American College of Physicians'), (7645, 'https://ror.org/03674y156', 'es', 1, 'https://ror.org/03674y156 Instituto Nacional de Enfermedades Neoplásicas'), (7646, 'https://ror.org/0367d2222', 'en', 1, 'https://ror.org/0367d2222 Tao Yuan General Hospital 桃園醫院'), (7647, 'https://ror.org/0368qtc02', 'no_lang_code', 1, 'https://ror.org/0368qtc02 Nestlé (United States)'), (7648, 'https://ror.org/036bdjm06', 'en', 1, 'https://ror.org/036bdjm06 Techniquest'), (7649, 'https://ror.org/036bpjh12', 'en', 1, 'https://ror.org/036bpjh12 American Association of Blood Banks'), (7650, 'https://ror.org/036dfq243', 'no_lang_code', 1, 'https://ror.org/036dfq243 Vion Pharmaceuticals (United States)'), (7651, 'https://ror.org/036dv6j71', 'no_lang_code', 1, 'https://ror.org/036dv6j71 Human Computer Interaction (Switzerland)'), (7652, 'https://ror.org/036gc1b60', 'no_lang_code', 1, 'https://ror.org/036gc1b60 Renewable Energy Systems (United States)'), (7653, 'https://ror.org/036gvnq39', 'en', 1, 'https://ror.org/036gvnq39 Ministry of Manpower 新加坡人力部'), (7654, 'https://ror.org/036kn0x67', 'en', 1, 'https://ror.org/036kn0x67 Dean McGee Eye Institute'), (7655, 'https://ror.org/036kqs922', 'en', 1, 'https://ror.org/036kqs922 Institute of Contemporary Psychoanalysis'), (7656, 'https://ror.org/036mg3k91', 'no_lang_code', 1, 'https://ror.org/036mg3k91 Compound Semiconductor Technologies (United Kingdom)'), (7657, 'https://ror.org/036p1cm16', 'en', 1, 'https://ror.org/036p1cm16 Karnataka Veterinary Animal and Fisheries Sciences University कर्नाटक वेटेरिनरी, मत्स्य पालन र पशु विज्ञान विश्वविद्यालय'); INSERT INTO `rors` VALUES (7658, 'https://ror.org/036qcfm37', 'en', 1, 'https://ror.org/036qcfm37 Academy for Science and Design'), (7659, 'https://ror.org/036svm011', 'en', 1, 'https://ror.org/036svm011 Southern Nevada Health District'), (7660, 'https://ror.org/036vj6108', 'no_lang_code', 1, 'https://ror.org/036vj6108 SFC Fluidics (United States)'), (7661, 'https://ror.org/036vmnd51', 'en', 1, 'https://ror.org/036vmnd51 Bishop State Community College'), (7662, 'https://ror.org/036w5wx69', 'en', 1, 'https://ror.org/036w5wx69 Bio Behavioral Institute'), (7663, 'https://ror.org/036wqaf87', 'no_lang_code', 1, 'https://ror.org/036wqaf87 ProteinSimple (United States)'), (7664, 'https://ror.org/036x02d82', 'en', 1, 'https://ror.org/036x02d82 Tyne and Wear Archives and Museums'), (7665, 'https://ror.org/036x6dk73', 'en', 1, 'https://ror.org/036x6dk73 North American Primary Care Research Group'), (7666, 'https://ror.org/036ygzs59', 'en', 1, 'https://ror.org/036ygzs59 Northwestern Medical Faculty Foundation'), (7667, 'https://ror.org/036ypft38', 'pt', 1, 'https://ror.org/036ypft38 Centro Hospitalar de Lisboa Ocidental'), (7668, 'https://ror.org/036z11b33', 'en', 1, 'https://ror.org/036z11b33 Shriners Hospitals for Children - Philadelphia'), (7669, 'https://ror.org/036zx6482', 'en', 1, 'https://ror.org/036zx6482 United States Drug Testing Laboratories'), (7670, 'https://ror.org/036zxgb71', 'en', 1, 'https://ror.org/036zxgb71 Institute for the Study of Learning and Expertise'), (7671, 'https://ror.org/03700pg61', 'en', 1, 'https://ror.org/03700pg61 Yedikule Göğüs Hastalıkları ve Göğüs Cerrahisi Eğitim ve Araştırma Hastanesi Yedikule Teaching Hospital'), (7672, 'https://ror.org/0370dwx56', 'it', 1, 'https://ror.org/0370dwx56 Istituto Zooprofilattico Sperimentale della Sardegna'), (7673, 'https://ror.org/0370sjj75', 'no_lang_code', 1, 'https://ror.org/0370sjj75 Optum (United States)'), (7674, 'https://ror.org/03734cd59', 'es', 1, 'https://ror.org/03734cd59 Instituto Nacional de Rehabilitación National Institute of Rehabilitation'), (7675, 'https://ror.org/0373e3z25', 'en', 1, 'https://ror.org/0373e3z25 Virginia Museum of Natural History'), (7676, 'https://ror.org/037403209', 'en', 1, 'https://ror.org/037403209 Gunma Prefectural Cardiovascular Center 群馬県立心臓血管センター'), (7677, 'https://ror.org/0374p0y44', 'no_lang_code', 1, 'https://ror.org/0374p0y44 ReproCELL (United States)'), (7678, 'https://ror.org/0374t0s90', 'no_lang_code', 1, 'https://ror.org/0374t0s90 Jim Metzner Productions (United States)'), (7679, 'https://ror.org/0375f4d26', 'en', 1, 'https://ror.org/0375f4d26 Alzheimer''s Association'), (7680, 'https://ror.org/0378e9394', 'no_lang_code', 1, 'https://ror.org/0378e9394 Saitama Municipal Hospital さいたま市立病院'), (7681, 'https://ror.org/0378g3743', 'en', 1, 'https://ror.org/0378g3743 Animal and Plant Health Agency'), (7682, 'https://ror.org/0378zg266', 'en', 1, 'https://ror.org/0378zg266 Nyack Hospital'), (7683, 'https://ror.org/03791d618', 'no_lang_code', 1, 'https://ror.org/03791d618 Kimberly-Clark (United States)'), (7684, 'https://ror.org/037asfw97', 'en', 1, 'https://ror.org/037asfw97 Tri County Technical College'), (7685, 'https://ror.org/037b79526', 'no_lang_code', 1, 'https://ror.org/037b79526 Synedgen (United States)'), (7686, 'https://ror.org/037bj9005', 'no_lang_code', 1, 'https://ror.org/037bj9005 Global Convergence (United States)'), (7687, 'https://ror.org/037c0br92', 'en', 1, 'https://ror.org/037c0br92 Guangzhou Institute of Dermatology'), (7688, 'https://ror.org/037egvh70', 'en', 1, 'https://ror.org/037egvh70 Wishaw General Hospital'), (7689, 'https://ror.org/037jprb08', 'sv', 1, 'https://ror.org/037jprb08 Centrallasarettet Växjö'), (7690, 'https://ror.org/037kgpk38', 'en', 1, 'https://ror.org/037kgpk38 William Jewell College'), (7691, 'https://ror.org/037m83a38', 'en', 1, 'https://ror.org/037m83a38 Royal Institution of Great Britain'), (7692, 'https://ror.org/037mmnn19', 'en', 1, 'https://ror.org/037mmnn19 American Sports Medicine Institute'), (7693, 'https://ror.org/037ndkh53', 'no_lang_code', 1, 'https://ror.org/037ndkh53 Biomedical Research Models (United States)'), (7694, 'https://ror.org/037sxey58', 'no_lang_code', 1, 'https://ror.org/037sxey58 Amunix (United States)'), (7695, 'https://ror.org/037wv7h91', 'en', 1, 'https://ror.org/037wv7h91 Ohta Nishinouchi Hospital 太田西ノ内病院'), (7696, 'https://ror.org/037x4vd23', 'en', 1, 'https://ror.org/037x4vd23 Teaching Hospital Kandy මහනුවර ශික්ෂණ රෝහල'), (7697, 'https://ror.org/037xafn82', 'en', 1, 'https://ror.org/037xafn82 William S. Middleton Memorial Veterans Hospital'), (7698, 'https://ror.org/037xccs34', 'en', 1, 'https://ror.org/037xccs34 Chitose Institute of Science and Technology 千歳科学技術大学'), (7699, 'https://ror.org/037xte462', 'no_lang_code', 1, 'https://ror.org/037xte462 Talaris Therapeutics (United States)'), (7700, 'https://ror.org/037y13578', 'en', 1, 'https://ror.org/037y13578 West Park Healthcare Centre'), (7701, 'https://ror.org/037yff262', 'no_lang_code', 1, 'https://ror.org/037yff262 Tokyo Metropolitan Matsuzawa Hospital 東京都立松沢病院'), (7702, 'https://ror.org/037ytpe94', 'no_lang_code', 1, 'https://ror.org/037ytpe94 OEpic Semiconductors (United States)'), (7703, 'https://ror.org/03828wc37', 'no_lang_code', 1, 'https://ror.org/03828wc37 Public Health Television (United States)'), (7704, 'https://ror.org/0384y3666', 'en', 1, 'https://ror.org/0384y3666 Police Forensic Science Laboratory Dundee'), (7705, 'https://ror.org/0385es521', 'no_lang_code', 1, 'https://ror.org/0385es521 Boston Scientific (United States)'), (7706, 'https://ror.org/03865vt17', 'no_lang_code', 1, 'https://ror.org/03865vt17 Advaxis (United States)'), (7707, 'https://ror.org/03868wc59', 'en', 1, 'https://ror.org/03868wc59 Middlesex County College'), (7708, 'https://ror.org/0387jng26', 'en', 1, 'https://ror.org/0387jng26 Max Planck Institute for Human Cognitive and Brain Sciences Max-Planck-Institut für Kognitions- und Neurowissenschaften'), (7709, 'https://ror.org/038aete71', 'no_lang_code', 1, 'https://ror.org/038aete71 Advanced Diamond Technologies (United States)'), (7710, 'https://ror.org/038c39g95', 'en', 1, 'https://ror.org/038c39g95 Allegheny Valley Hospital'), (7711, 'https://ror.org/038dgnc07', 'no_lang_code', 1, 'https://ror.org/038dgnc07 Cygnus (United States)'), (7712, 'https://ror.org/038e2g226', 'no_lang_code', 1, 'https://ror.org/038e2g226 Fujitsu (Japan) 富士通株式会社'), (7713, 'https://ror.org/038emx233', 'no_lang_code', 1, 'https://ror.org/038emx233 EMT Associates (United States)'), (7714, 'https://ror.org/038eqqh78', 'no_lang_code', 1, 'https://ror.org/038eqqh78 Lockheed Martin Orincon (United States)'), (7715, 'https://ror.org/038espn32', 'en', 1, 'https://ror.org/038espn32 CARE USA'), (7716, 'https://ror.org/038ftrz90', 'en', 1, 'https://ror.org/038ftrz90 Western Attica General Hospital'), (7717, 'https://ror.org/038gwk587', 'en', 1, 'https://ror.org/038gwk587 Centerstone'), (7718, 'https://ror.org/038hqfn26', 'no_lang_code', 1, 'https://ror.org/038hqfn26 Alkermes (United States)'), (7719, 'https://ror.org/038hwjs80', 'en', 1, 'https://ror.org/038hwjs80 Pacific Tower'), (7720, 'https://ror.org/038jnd853', 'en', 1, 'https://ror.org/038jnd853 Sher Fertility'), (7721, 'https://ror.org/038jzvs45', 'en', 1, 'https://ror.org/038jzvs45 Psychiatric Foundation of North Carolina'), (7722, 'https://ror.org/038kja517', 'en', 1, 'https://ror.org/038kja517 Hydrologic Research Center'), (7723, 'https://ror.org/038kxkq33', 'no_lang_code', 1, 'https://ror.org/038kxkq33 Teijin (Japan) 帝人株式会社'), (7724, 'https://ror.org/038mdqs58', 'en', 1, 'https://ror.org/038mdqs58 D.F. Chebotarev Institute of Gerontology Інститут геронтології ім. Д.Ф.Чеботарьова'), (7725, 'https://ror.org/038naac42', 'no_lang_code', 1, 'https://ror.org/038naac42 AdipoGenix (United States)'), (7726, 'https://ror.org/038s2v152', 'no_lang_code', 1, 'https://ror.org/038s2v152 Ciencia (United States)'), (7727, 'https://ror.org/038sjwf38', 'no_lang_code', 1, 'https://ror.org/038sjwf38 Takeda (Norway)'), (7728, 'https://ror.org/038srm946', 'no_lang_code', 1, 'https://ror.org/038srm946 Mantech (Canada)'), (7729, 'https://ror.org/038tp0t62', 'en', 1, 'https://ror.org/038tp0t62 Las Vegas Institute'), (7730, 'https://ror.org/038vngd42', 'fr', 1, 'https://ror.org/038vngd42 Centre Hospitalier Universitaire de Kigali University Teaching Hospital of Kigali'), (7731, 'https://ror.org/038wghp07', 'no_lang_code', 1, 'https://ror.org/038wghp07 Norgen Biotek Corporation (Canada)'), (7732, 'https://ror.org/038x9td67', 'en', 1, 'https://ror.org/038x9td67 Institute for Atomic and Molecular Physics'), (7733, 'https://ror.org/038xkzz47', 'no_lang_code', 1, 'https://ror.org/038xkzz47 Viro Dynamics (United States)'), (7734, 'https://ror.org/038z5mp14', 'en', 1, 'https://ror.org/038z5mp14 Organisation des États Américains Organización de los Estados Americanos Organization of American States Organização dos Estados Americanos'), (7735, 'https://ror.org/0390tt424', 'en', 1, 'https://ror.org/0390tt424 HealthCare Interactive'), (7736, 'https://ror.org/0392txn84', 'no_lang_code', 1, 'https://ror.org/0392txn84 Stemmatters (Portugal)'), (7737, 'https://ror.org/0393c0k55', 'no_lang_code', 1, 'https://ror.org/0393c0k55 Cooper and Company (United States)'), (7738, 'https://ror.org/0393mwb72', 'no_lang_code', 1, 'https://ror.org/0393mwb72 United Utilities (United Kingdom)'), (7739, 'https://ror.org/0396gxt62', 'no_lang_code', 1, 'https://ror.org/0396gxt62 Motorola (United Kingdom)'), (7740, 'https://ror.org/039922k61', 'en', 1, 'https://ror.org/039922k61 Kenya Agricultural Research Institute'), (7741, 'https://ror.org/0399pn486', 'en', 1, 'https://ror.org/0399pn486 McREL International'), (7742, 'https://ror.org/039bbm920', 'en', 1, 'https://ror.org/039bbm920 National Audubon Society'), (7743, 'https://ror.org/039cthy03', 'en', 1, 'https://ror.org/039cthy03 Bamfield Marine Sciences Centre'), (7744, 'https://ror.org/039d1mp60', 'en', 1, 'https://ror.org/039d1mp60 Central Glass and Ceramic Research Institute'), (7745, 'https://ror.org/039ekp273', 'en', 1, 'https://ror.org/039ekp273 Institute of Cellular and Intracellular Symbiosis Федеральное государственное бюджетное учреждение науки Институт биофизики клетки Российской академии наук'), (7746, 'https://ror.org/039fp5n52', 'en', 1, 'https://ror.org/039fp5n52 At Bristol'), (7747, 'https://ror.org/039h53162', 'fr', 1, 'https://ror.org/039h53162 Centre hospitalier de Tulle'), (7748, 'https://ror.org/039hmr469', 'en', 1, 'https://ror.org/039hmr469 Ono Clinic 小野クリニック'), (7749, 'https://ror.org/039hqe943', 'no_lang_code', 1, 'https://ror.org/039hqe943 MedShape (United States)'), (7750, 'https://ror.org/039k6f508', 'en', 1, 'https://ror.org/039k6f508 Korea Electronics Technology Institute'), (7751, 'https://ror.org/039k9pj72', 'en', 1, 'https://ror.org/039k9pj72 T. D. Medical College'), (7752, 'https://ror.org/039q6xk02', 'en', 1, 'https://ror.org/039q6xk02 Moss Rehabilitation Hospital'), (7753, 'https://ror.org/039qtv212', 'en', 1, 'https://ror.org/039qtv212 Federal Correctional Institution Schuylkill'), (7754, 'https://ror.org/039s6n838', 'no_lang_code', 1, 'https://ror.org/039s6n838 Novartis (United Kingdom)'), (7755, 'https://ror.org/039xdnp48', 'no_lang_code', 1, 'https://ror.org/039xdnp48 Takano Hospital 高野病院'), (7756, 'https://ror.org/039y7c549', 'en', 1, 'https://ror.org/039y7c549 Piedmont Technical College'), (7757, 'https://ror.org/039yn6r46', 'en', 1, 'https://ror.org/039yn6r46 Linguistic Society of America'), (7758, 'https://ror.org/03a0ckw61', 'en', 1, 'https://ror.org/03a0ckw61 Long Island Association for AIDS Care'), (7759, 'https://ror.org/03a1weg76', 'no_lang_code', 1, 'https://ror.org/03a1weg76 AdvR (United States)'), (7760, 'https://ror.org/03a1yfb59', 'en', 1, 'https://ror.org/03a1yfb59 Lynchburg Family Medicine'), (7761, 'https://ror.org/03a2szg51', 'no_lang_code', 1, 'https://ror.org/03a2szg51 Saiseikai Utsunomiya hospital 済生会宇都宮病院'), (7762, 'https://ror.org/03a2tpf77', 'en', 1, 'https://ror.org/03a2tpf77 Pelosi Medical Center'), (7763, 'https://ror.org/03a3t3y67', 'en', 1, 'https://ror.org/03a3t3y67 Houston Institute for Clinical Research'), (7764, 'https://ror.org/03a4d7t12', 'en', 1, 'https://ror.org/03a4d7t12 Saitama Cancer Center 埼玉県立がんセンター'), (7765, 'https://ror.org/03a654521', 'no_lang_code', 1, 'https://ror.org/03a654521 Faraday Technology (United States)'), (7766, 'https://ror.org/03a71g847', 'en', 1, 'https://ror.org/03a71g847 Valley Hospital Medical Center'), (7767, 'https://ror.org/03a7bpg58', 'en', 1, 'https://ror.org/03a7bpg58 Convención de la Farmacopea de Estados Unidos United States Pharmacopeial Convention'), (7768, 'https://ror.org/03a8gee76', 'en', 1, 'https://ror.org/03a8gee76 National JALMA Institute for Leprosy & Other Mycobacterial Diseases'), (7769, 'https://ror.org/03a9ezp59', 'no_lang_code', 1, 'https://ror.org/03a9ezp59 Adrianor'), (7770, 'https://ror.org/03abz4556', 'no_lang_code', 1, 'https://ror.org/03abz4556 Cortex Pharmaceuticals (United States)'), (7771, 'https://ror.org/03ac8kh32', 'no_lang_code', 1, 'https://ror.org/03ac8kh32 BioPAL (United States)'), (7772, 'https://ror.org/03aes2233', 'en', 1, 'https://ror.org/03aes2233 Education Coordinating Council'), (7773, 'https://ror.org/03af1ns45', 'it', 1, 'https://ror.org/03af1ns45 Ospedale di Circolo di Busto Arsizio'), (7774, 'https://ror.org/03afd8w19', 'pt', 1, 'https://ror.org/03afd8w19 Secretaria da Saúde'), (7775, 'https://ror.org/03ah8pc29', 'no_lang_code', 1, 'https://ror.org/03ah8pc29 Hyperion Technologies (Canada)'), (7776, 'https://ror.org/03ahd9g67', 'en', 1, 'https://ror.org/03ahd9g67 Coker College'), (7777, 'https://ror.org/03ahxgm89', 'no_lang_code', 1, 'https://ror.org/03ahxgm89 Sommer Materials Research (United States)'), (7778, 'https://ror.org/03ap5bg83', 'en', 1, 'https://ror.org/03ap5bg83 National Dairy Research Institute राष्ट्रीय डेरी अनुसंधान संस्थान'), (7779, 'https://ror.org/03apz2q12', 'en', 1, 'https://ror.org/03apz2q12 Institute of Molecular Genetics Федеральное государственное бюджетное учреждение науки Институт молекулярной генетики Российской академии наук'), (7780, 'https://ror.org/03ate3e03', 'en', 1, 'https://ror.org/03ate3e03 Max Planck Institute for Molecular Genetics Max-Planck-Institut für Molekulare Genetik'), (7781, 'https://ror.org/03av0zr92', 'no_lang_code', 1, 'https://ror.org/03av0zr92 Germinal (United Kingdom)'), (7782, 'https://ror.org/03awpb417', 'en', 1, 'https://ror.org/03awpb417 Entomological Society of America'), (7783, 'https://ror.org/03ax9j741', 'en', 1, 'https://ror.org/03ax9j741 Council of State and Territorial Epidemiologists'), (7784, 'https://ror.org/03ay27p09', 'en', 1, 'https://ror.org/03ay27p09 European Brain Research Institute'), (7785, 'https://ror.org/03aygfv62', 'en', 1, 'https://ror.org/03aygfv62 Scotch Whisky Research Institute'), (7786, 'https://ror.org/03aywkz50', 'en', 1, 'https://ror.org/03aywkz50 Bethel College - Kansas'), (7787, 'https://ror.org/03az52a93', 'en', 1, 'https://ror.org/03az52a93 Family Medicine Residency of Idaho'), (7788, 'https://ror.org/03az79194', 'fr', 1, 'https://ror.org/03az79194 Laboratoire National Henri Becquerel'), (7789, 'https://ror.org/03azk3n24', 'en', 1, 'https://ror.org/03azk3n24 Headache Wellness Center'), (7790, 'https://ror.org/03b082n16', 'no_lang_code', 1, 'https://ror.org/03b082n16 Genia Photonics (Canada)'), (7791, 'https://ror.org/03b0k9c14', 'en', 1, 'https://ror.org/03b0k9c14 University Hospital Augsburg Universitätsklinikum Augsburg'), (7792, 'https://ror.org/03b286288', 'en', 1, 'https://ror.org/03b286288 Baltimore City Community College'), (7793, 'https://ror.org/03b2h3x98', 'de', 1, 'https://ror.org/03b2h3x98 Paul Gerhardt Diakonie'), (7794, 'https://ror.org/03b2j2z26', 'no_lang_code', 1, 'https://ror.org/03b2j2z26 Dakota Technologies (United States)'), (7795, 'https://ror.org/03b41zp34', 'en', 1, 'https://ror.org/03b41zp34 Liberty Science Center'), (7796, 'https://ror.org/03b436430', 'en', 1, 'https://ror.org/03b436430 Hospital de la Universidad de Utah University of Utah Hospital'), (7797, 'https://ror.org/03b68pn69', 'no_lang_code', 1, 'https://ror.org/03b68pn69 Epitope (United States)'), (7798, 'https://ror.org/03bbd8g15', 'en', 1, 'https://ror.org/03bbd8g15 Society of General Internal Medicine'), (7799, 'https://ror.org/03bcvkf46', 'en', 1, 'https://ror.org/03bcvkf46 Fleet Science Center'), (7800, 'https://ror.org/03be17v50', 'en', 1, 'https://ror.org/03be17v50 Southern California Alcohol and Drug Programs'), (7801, 'https://ror.org/03be69002', 'en', 1, 'https://ror.org/03be69002 Finnish Brain Research and Rehabilitation Center Neuron'), (7802, 'https://ror.org/03bf2nz41', 'fr', 1, 'https://ror.org/03bf2nz41 Centre Hospitalier du Mans'), (7803, 'https://ror.org/03bg65591', 'en', 1, 'https://ror.org/03bg65591 Susquehanna Health'), (7804, 'https://ror.org/03bhap014', 'it', 1, 'https://ror.org/03bhap014 Centro Diagnostico Italiano'), (7805, 'https://ror.org/03bhj4j04', 'en', 1, 'https://ror.org/03bhj4j04 Lyndon State College'), (7806, 'https://ror.org/03bj7kr91', 'en', 1, 'https://ror.org/03bj7kr91 Boston Public Schools'), (7807, 'https://ror.org/03bndes49', 'no_lang_code', 1, 'https://ror.org/03bndes49 Thermo Fisher Scientific (United Kingdom)'), (7808, 'https://ror.org/03bnt5240', 'en', 1, 'https://ror.org/03bnt5240 College of Menominee Nation'), (7809, 'https://ror.org/03bs18y54', 'no_lang_code', 1, 'https://ror.org/03bs18y54 Infosys (India)'), (7810, 'https://ror.org/03bs5zb68', 'no_lang_code', 1, 'https://ror.org/03bs5zb68 Tsubame Rosai Hospital'), (7811, 'https://ror.org/03btaj690', 'no_lang_code', 1, 'https://ror.org/03btaj690 Numazu City Hospital 沼津市立病院'), (7812, 'https://ror.org/03btasp49', 'en', 1, 'https://ror.org/03btasp49 National Space Centre'), (7813, 'https://ror.org/03bvhwx18', 'en', 1, 'https://ror.org/03bvhwx18 Association for Women in Science'), (7814, 'https://ror.org/03bvq6y88', 'en', 1, 'https://ror.org/03bvq6y88 Wagner College'), (7815, 'https://ror.org/03by7ks57', 'fr', 1, 'https://ror.org/03by7ks57 Cégep André Laurendeau, Cégep andré-laurendeau'), (7816, 'https://ror.org/03bygaq51', 'no_lang_code', 1, 'https://ror.org/03bygaq51 Takeda (United States) 武田薬品工業株式会社, Takeda Yakuhin Kōgyō kabushiki gaisha'), (7817, 'https://ror.org/03bz9t645', 'en', 1, 'https://ror.org/03bz9t645 Bedford Institute of Oceanography'), (7818, 'https://ror.org/03bzqy127', 'en', 1, 'https://ror.org/03bzqy127 Gwinnett Coalition for Health & Human Services'), (7819, 'https://ror.org/03c09x508', 'es', 1, 'https://ror.org/03c09x508 Ministerio de Salud'), (7820, 'https://ror.org/03c24n351', 'en', 1, 'https://ror.org/03c24n351 Armed Forces Institute of Pathology'), (7821, 'https://ror.org/03c3s0k29', 'en', 1, 'https://ror.org/03c3s0k29 Yamaguchi Red Cross Hospital 山口赤十字病院'), (7822, 'https://ror.org/03c4kec23', 'en', 1, 'https://ror.org/03c4kec23 Lyon College'), (7823, 'https://ror.org/03c69q147', 'en', 1, 'https://ror.org/03c69q147 Wake Technical Community College'), (7824, 'https://ror.org/03cc62s85', 'no_lang_code', 1, 'https://ror.org/03cc62s85 Scottish Water (United Kingdom)'), (7825, 'https://ror.org/03cd6bd87', 'en', 1, 'https://ror.org/03cd6bd87 South Carolina Research Authority'), (7826, 'https://ror.org/03cegwq60', 'en', 1, 'https://ror.org/03cegwq60 McMaster Children''s Hospital'), (7827, 'https://ror.org/03cfg5z67', 'en', 1, 'https://ror.org/03cfg5z67 Florida Department of Children and Families'), (7828, 'https://ror.org/03cfgct89', 'en', 1, 'https://ror.org/03cfgct89 Women in Engineering ProActive Network'), (7829, 'https://ror.org/03cfsae23', 'no_lang_code', 1, 'https://ror.org/03cfsae23 QR Pharma (United States)'), (7830, 'https://ror.org/03ckh6215', 'en', 1, 'https://ror.org/03ckh6215 National Institute of Genetic Engineering and Biotechnology پژوهشگاه ملي مهندسي ژنتيك و زيست فناوري'), (7831, 'https://ror.org/03cks4g33', 'en', 1, 'https://ror.org/03cks4g33 Haymarket Center'), (7832, 'https://ror.org/03cmtga52', 'no_lang_code', 1, 'https://ror.org/03cmtga52 IB Innovation Consortium (Italy)'), (7833, 'https://ror.org/03cpeth56', 'no_lang_code', 1, 'https://ror.org/03cpeth56 Costain (United Kingdom)'), (7834, 'https://ror.org/03crdwy95', 'en', 1, 'https://ror.org/03crdwy95 Greater Manchester Police'), (7835, 'https://ror.org/03csd5507', 'no_lang_code', 1, 'https://ror.org/03csd5507 Morgan Stanley (United Kingdom)'), (7836, 'https://ror.org/03cth7012', 'en', 1, 'https://ror.org/03cth7012 Bronx Veterans Medical Research Foundation'), (7837, 'https://ror.org/03cw63y62', 'en', 1, 'https://ror.org/03cw63y62 Women''s College Hospital'), (7838, 'https://ror.org/03cyjvc50', 'en', 1, 'https://ror.org/03cyjvc50 Curry College'), (7839, 'https://ror.org/03d0hdn85', 'en', 1, 'https://ror.org/03d0hdn85 Istanbul Eye Hospital İstanbul Göz Hastanesi'), (7840, 'https://ror.org/03d33vh19', 'no_lang_code', 1, 'https://ror.org/03d33vh19 3E (Belgium)'), (7841, 'https://ror.org/03d4tjj21', 'no_lang_code', 1, 'https://ror.org/03d4tjj21 Vivo Biosciences (United States)'), (7842, 'https://ror.org/03d507062', 'no_lang_code', 1, 'https://ror.org/03d507062 Walsh Group'), (7843, 'https://ror.org/03d5v2a18', 'no_lang_code', 1, 'https://ror.org/03d5v2a18 CanAm Bioresearch (Canada)'), (7844, 'https://ror.org/03da3g825', 'no_lang_code', 1, 'https://ror.org/03da3g825 Shiseido Group (Japan) 株式会社資生堂'), (7845, 'https://ror.org/03dakdm13', 'en', 1, 'https://ror.org/03dakdm13 St. John''s College'), (7846, 'https://ror.org/03dbjaj38', 'no_lang_code', 1, 'https://ror.org/03dbjaj38 ArchieMD (United States)'), (7847, 'https://ror.org/03dc7cm27', 'no_lang_code', 1, 'https://ror.org/03dc7cm27 XOMA (United States)'), (7848, 'https://ror.org/03dcs5c38', 'no_lang_code', 1, 'https://ror.org/03dcs5c38 TimeDomain CVD (United States)'), (7849, 'https://ror.org/03ddan440', 'no_lang_code', 1, 'https://ror.org/03ddan440 Arthur D. Little (United States)'), (7850, 'https://ror.org/03ddbnh33', 'no_lang_code', 1, 'https://ror.org/03ddbnh33 Qinetiq (United States)'), (7851, 'https://ror.org/03dfzxf19', 'no_lang_code', 1, 'https://ror.org/03dfzxf19 Agilent Technologies (United Kingdom)'), (7852, 'https://ror.org/03dnydg98', 'no_lang_code', 1, 'https://ror.org/03dnydg98 VirRx (United States)'), (7853, 'https://ror.org/03dpjp116', 'en', 1, 'https://ror.org/03dpjp116 Nagano College of Nursing 長野県看護大学'), (7854, 'https://ror.org/03dpvmw27', 'en', 1, 'https://ror.org/03dpvmw27 Research Institute for Fragrance Materials'), (7855, 'https://ror.org/03dqpq202', 'no_lang_code', 1, 'https://ror.org/03dqpq202 MPI Research (United States)'), (7856, 'https://ror.org/03drznb24', 'en', 1, 'https://ror.org/03drznb24 Winter Haven Hospital'), (7857, 'https://ror.org/03dtejd64', 'en', 1, 'https://ror.org/03dtejd64 Fraunhofer USA Center for Molecular Biotechnology'), (7858, 'https://ror.org/03dwhj404', 'no_lang_code', 1, 'https://ror.org/03dwhj404 Agenus (United States)'), (7859, 'https://ror.org/03dy10t98', 'en', 1, 'https://ror.org/03dy10t98 National Geophysical Research Institute राष्ट्रीय भूभौतिकीय अनुसंधान संस्थान జాతీయ భూభౌతిక పరిశోధనా సంస్థ നാഷണൽ ജിയോഫിസിക്കൽ റിസർച്ച് ഇൻസ്റ്റിറ്റ്യൂട്ട്,ഹൈദരാബാദ്'), (7860, 'https://ror.org/03dywwh47', 'es', 1, 'https://ror.org/03dywwh47 Instituto de la Visión'), (7861, 'https://ror.org/03dzg6f89', 'en', 1, 'https://ror.org/03dzg6f89 Bevill State Community College'), (7862, 'https://ror.org/03e04g978', 'en', 1, 'https://ror.org/03e04g978 Tanzania Commission for Science and Technology Tume ya Sayansi na Teknolojia Tanzania'), (7863, 'https://ror.org/03e0mxz52', 'no_lang_code', 1, 'https://ror.org/03e0mxz52 Intelligent Energy (United Kingdom)'), (7864, 'https://ror.org/03e0t3214', 'no_lang_code', 1, 'https://ror.org/03e0t3214 Materials and Systems Research (United States)'), (7865, 'https://ror.org/03e17k064', 'en', 1, 'https://ror.org/03e17k064 Saint Louis Science Center'), (7866, 'https://ror.org/03e59a529', 'en', 1, 'https://ror.org/03e59a529 Molecular Cardiology and Neuromuscular Institute'), (7867, 'https://ror.org/03e5aen17', 'no_lang_code', 1, 'https://ror.org/03e5aen17 ProteoSys (Germany)'), (7868, 'https://ror.org/03e5eem51', 'en', 1, 'https://ror.org/03e5eem51 Budker Institute of Nuclear Physics Институт ядерной физики'), (7869, 'https://ror.org/03e7xy909', 'en', 1, 'https://ror.org/03e7xy909 People’s University'), (7870, 'https://ror.org/03e8gpx64', 'no_lang_code', 1, 'https://ror.org/03e8gpx64 MetroLaser (United States)'), (7871, 'https://ror.org/03ec4j852', 'en', 1, 'https://ror.org/03ec4j852 St. Luke’s Boise Medical Center'), (7872, 'https://ror.org/03eg72e39', 'en', 1, 'https://ror.org/03eg72e39 Tochigi Cancer Center 栃木県立がんセンター'), (7873, 'https://ror.org/03egepy41', 'no_lang_code', 1, 'https://ror.org/03egepy41 DMetrix (United States)'), (7874, 'https://ror.org/03eh6tj73', 'en', 1, 'https://ror.org/03eh6tj73 Guangxi Veterinary Research Institute'), (7875, 'https://ror.org/03ehcbt32', 'no_lang_code', 1, 'https://ror.org/03ehcbt32 Saiseikai Suita Hospital 大阪府済生会吹田病院'), (7876, 'https://ror.org/03ehegt04', 'en', 1, 'https://ror.org/03ehegt04 Wisconsin Department of Agriculture Trade and Consumer Protection'), (7877, 'https://ror.org/03ehse820', 'da', 1, 'https://ror.org/03ehse820 Dansk Sundhedsinstitut, Dansk Sygehus Institut'), (7878, 'https://ror.org/03ehzxb24', 'en', 1, 'https://ror.org/03ehzxb24 St. Francis Medical Center'), (7879, 'https://ror.org/03ej8cj80', 'en', 1, 'https://ror.org/03ej8cj80 Quincy College'), (7880, 'https://ror.org/03em9pc54', 'en', 1, 'https://ror.org/03em9pc54 Iowa Central Community College'), (7881, 'https://ror.org/03ene5287', 'en', 1, 'https://ror.org/03ene5287 Orange County Healthcare Agency'), (7882, 'https://ror.org/03ep7eq57', 'no_lang_code', 1, 'https://ror.org/03ep7eq57 iQmetrix (Canada)'), (7883, 'https://ror.org/03epr9q14', 'en', 1, 'https://ror.org/03epr9q14 Center for Culture and Experience Economy'), (7884, 'https://ror.org/03eqc1p67', 'fr', 1, 'https://ror.org/03eqc1p67 Clinique de la Défense'), (7885, 'https://ror.org/03eqttr49', 'en', 1, 'https://ror.org/03eqttr49 Research Triangle Park Foundation'), (7886, 'https://ror.org/03er2hr05', 'no_lang_code', 1, 'https://ror.org/03er2hr05 Critical Software (Portugal)'), (7887, 'https://ror.org/03erxwz83', 'no_lang_code', 1, 'https://ror.org/03erxwz83 Syncrotronics Corporation (United States)'), (7888, 'https://ror.org/03etema57', 'en', 1, 'https://ror.org/03etema57 Association for Institutional Research'), (7889, 'https://ror.org/03etg4523', 'no_lang_code', 1, 'https://ror.org/03etg4523 Teva Pharmaceuticals (United States)'), (7890, 'https://ror.org/03etmv771', 'no_lang_code', 1, 'https://ror.org/03etmv771 LightBridge Healthcare Research (United States)'), (7891, 'https://ror.org/03evkbw14', 'es', 1, 'https://ror.org/03evkbw14 Corporación para Investigaciones Biológicas'), (7892, 'https://ror.org/03exvmb50', 'no_lang_code', 1, 'https://ror.org/03exvmb50 Neocera (United States)'), (7893, 'https://ror.org/03eydna48', 'en', 1, 'https://ror.org/03eydna48 St. Joseph Hospital'), (7894, 'https://ror.org/03eykgw84', 'no_lang_code', 1, 'https://ror.org/03eykgw84 Fujirebio (Japan) 富士レビオ株式会社'), (7895, 'https://ror.org/03ez2en98', 'en', 1, 'https://ror.org/03ez2en98 Vaccine & Gene Therapy Institute of Florida'), (7896, 'https://ror.org/03ezapm74', 'es', 1, 'https://ror.org/03ezapm74 Fundación Santa Fe de Bogotá'), (7897, 'https://ror.org/03f0b2d64', 'no_lang_code', 1, 'https://ror.org/03f0b2d64 Evans Analytical Group (United States)'), (7898, 'https://ror.org/03f1nf684', 'no_lang_code', 1, 'https://ror.org/03f1nf684 Fillauer (United States)'), (7899, 'https://ror.org/03f47x024', 'en', 1, 'https://ror.org/03f47x024 ECRI Institute'), (7900, 'https://ror.org/03f61zm76', 'en', 1, 'https://ror.org/03f61zm76 Det Nationale Forskningscenter for Arbejdsmiljø National Research Centre for the Working Environment'), (7901, 'https://ror.org/03f8h8g06', 'en', 1, 'https://ror.org/03f8h8g06 Basic NWFL'), (7902, 'https://ror.org/03f98n803', 'en', 1, 'https://ror.org/03f98n803 Canadian Institute for Energy Training Institut Canadien de Formation en Energie'), (7903, 'https://ror.org/03f9vhh95', 'en', 1, 'https://ror.org/03f9vhh95 Durham College'), (7904, 'https://ror.org/03fa0tr49', 'no_lang_code', 1, 'https://ror.org/03fa0tr49 A&G Pharmaceutical (United States)'), (7905, 'https://ror.org/03fag5224', 'en', 1, 'https://ror.org/03fag5224 West Bengal University of Health Sciences पश्चिम बंगाल स्वास्थ्य विज्ञान विश्वविद्यालय পশ্চিমবঙ্গ স্বাস্থ্যবিজ্ঞান বিশ্ববিদ্যালয়'), (7906, 'https://ror.org/03fan2n27', 'en', 1, 'https://ror.org/03fan2n27 St. Stephen’s Hospital'), (7907, 'https://ror.org/03fbqtm75', 'no_lang_code', 1, 'https://ror.org/03fbqtm75 Dassault Systèmes (United States)'), (7908, 'https://ror.org/03fcgva33', 'en', 1, 'https://ror.org/03fcgva33 Westchester Medical Center'), (7909, 'https://ror.org/03fd07264', 'no_lang_code', 1, 'https://ror.org/03fd07264 Lake Shore Cryotronics (United States)'), (7910, 'https://ror.org/03fef0h61', 'no_lang_code', 1, 'https://ror.org/03fef0h61 Luminex (United States)'), (7911, 'https://ror.org/03fftr154', 'es', 1, 'https://ror.org/03fftr154 Instituto Ramón y Cajal de Investigación Sanitaria'), (7912, 'https://ror.org/03fmvqd28', 'no_lang_code', 1, 'https://ror.org/03fmvqd28 BioMarin (United States)'), (7913, 'https://ror.org/03fwae819', 'en', 1, 'https://ror.org/03fwae819 Canadian AIDS Treatment Information Exchange'), (7914, 'https://ror.org/03fz0tx04', 'no_lang_code', 1, 'https://ror.org/03fz0tx04 ProteoTech (United States)'), (7915, 'https://ror.org/03g1zvc89', 'en', 1, 'https://ror.org/03g1zvc89 Valley Baptist Medical Center'), (7916, 'https://ror.org/03g4bqt50', 'no_lang_code', 1, 'https://ror.org/03g4bqt50 Sigmovir Biosystems (United States)'), (7917, 'https://ror.org/03g75kz98', 'no_lang_code', 1, 'https://ror.org/03g75kz98 PricewaterhouseCoopers (United States)'), (7918, 'https://ror.org/03g7j7v29', 'no_lang_code', 1, 'https://ror.org/03g7j7v29 Tascon Industries (United States)'), (7919, 'https://ror.org/03g7wzf21', 'no_lang_code', 1, 'https://ror.org/03g7wzf21 Emergent BioSolutions (Canada)'), (7920, 'https://ror.org/03g99t434', 'en', 1, 'https://ror.org/03g99t434 Casa Esperanza'), (7921, 'https://ror.org/03gcg7j68', 'en', 1, 'https://ror.org/03gcg7j68 Cincinnati Sportsmedicine and Orthopaedic Center'), (7922, 'https://ror.org/03gd5jm66', 'en', 1, 'https://ror.org/03gd5jm66 Texas Scottish Rite Hospital for Children'), (7923, 'https://ror.org/03gdmdz23', 'no_lang_code', 1, 'https://ror.org/03gdmdz23 Optimum Technologies (United States)'), (7924, 'https://ror.org/03gf87416', 'no_lang_code', 1, 'https://ror.org/03gf87416 Advanced MicroLabs (United States)'), (7925, 'https://ror.org/03ghnvz91', 'en', 1, 'https://ror.org/03ghnvz91 West Palm Beach VA Medical Center'), (7926, 'https://ror.org/03gk3wr33', 'no_lang_code', 1, 'https://ror.org/03gk3wr33 Biostruxs (United States)'), (7927, 'https://ror.org/03gkbdq83', 'en', 1, 'https://ror.org/03gkbdq83 Education and Research Institute'), (7928, 'https://ror.org/03gm8jc79', 'no_lang_code', 1, 'https://ror.org/03gm8jc79 Mabvax Therapeutics (United States)'), (7929, 'https://ror.org/03gmf8x48', 'en', 1, 'https://ror.org/03gmf8x48 National Conference of State Legislatures'), (7930, 'https://ror.org/03gnehp03', 'en', 1, 'https://ror.org/03gnehp03 National Institute for Health Development Tervise Arengu Instituut'), (7931, 'https://ror.org/03gp5b411', 'en', 1, 'https://ror.org/03gp5b411 Baycrest Hospital'), (7932, 'https://ror.org/03gphk318', 'no_lang_code', 1, 'https://ror.org/03gphk318 Tetramer Technologies (United States)'), (7933, 'https://ror.org/03gpw5a44', 'fr', 1, 'https://ror.org/03gpw5a44 Centre Orthopédique Santy'), (7934, 'https://ror.org/03grsxg62', 'no_lang_code', 1, 'https://ror.org/03grsxg62 Computational Physics (United States)'), (7935, 'https://ror.org/03gsa2724', 'en', 1, 'https://ror.org/03gsa2724 Texas Lutheran University'), (7936, 'https://ror.org/03gsmwj46', 'no_lang_code', 1, 'https://ror.org/03gsmwj46 Market Intelligence Strategy Centre (Australia)'), (7937, 'https://ror.org/03gt88b08', 'en', 1, 'https://ror.org/03gt88b08 Institute of Plant Physiology and Genetics Институт по физиология на растенията и генетика'), (7938, 'https://ror.org/03gw72402', 'no_lang_code', 1, 'https://ror.org/03gw72402 Socratech (United States)'), (7939, 'https://ror.org/03gx6zj11', 'es', 1, 'https://ror.org/03gx6zj11 Instituto Nacional de Salud'), (7940, 'https://ror.org/03gyzpb04', 'no_lang_code', 1, 'https://ror.org/03gyzpb04 ALK-Abelló (Denmark)'), (7941, 'https://ror.org/03gzjnf17', 'no_lang_code', 1, 'https://ror.org/03gzjnf17 Zywie (United States)'), (7942, 'https://ror.org/03gzw3461', 'en', 1, 'https://ror.org/03gzw3461 Illinois Department of Human Services'), (7943, 'https://ror.org/03h1gw307', 'en', 1, 'https://ror.org/03h1gw307 Ospedale S. Eugenio St. Eugenio Hospital'), (7944, 'https://ror.org/03h7x4635', 'no_lang_code', 1, 'https://ror.org/03h7x4635 L3Harris (Canada)'), (7945, 'https://ror.org/03h9w6s56', 'no_lang_code', 1, 'https://ror.org/03h9w6s56 OptoSonics (United States)'), (7946, 'https://ror.org/03hdhbn34', 'no_lang_code', 1, 'https://ror.org/03hdhbn34 DNA Software (United States)'), (7947, 'https://ror.org/03hdkx955', 'no_lang_code', 1, 'https://ror.org/03hdkx955 Medicago (Canada)'), (7948, 'https://ror.org/03heckw12', 'no_lang_code', 1, 'https://ror.org/03heckw12 Response Biomedical (Canada)'), (7949, 'https://ror.org/03hf41361', 'en', 1, 'https://ror.org/03hf41361 Fowler Kennedy Sport Medicine Clinic'), (7950, 'https://ror.org/03hgang94', 'en', 1, 'https://ror.org/03hgang94 Developmental Studies Center'), (7951, 'https://ror.org/03hgf4f46', 'no_lang_code', 1, 'https://ror.org/03hgf4f46 Conecta'), (7952, 'https://ror.org/03hggzq81', 'en', 1, 'https://ror.org/03hggzq81 Didi Hirsch Mental Health Services'), (7953, 'https://ror.org/03hj3bw29', 'no_lang_code', 1, 'https://ror.org/03hj3bw29 H & N Instruments (United States)'), (7954, 'https://ror.org/03hmdtw84', 'no_lang_code', 1, 'https://ror.org/03hmdtw84 CPS Research'), (7955, 'https://ror.org/03hnz5h47', 'no_lang_code', 1, 'https://ror.org/03hnz5h47 Forecasting International (United States)'), (7956, 'https://ror.org/03hp55s21', 'no_lang_code', 1, 'https://ror.org/03hp55s21 Mircom Technologies (Canada)'), (7957, 'https://ror.org/03hp60511', 'en', 1, 'https://ror.org/03hp60511 New North Citizens Council'), (7958, 'https://ror.org/03hp93w41', 'no_lang_code', 1, 'https://ror.org/03hp93w41 Aegera Therapeutics (Canada)'), (7959, 'https://ror.org/03hpmwj60', 'en', 1, 'https://ror.org/03hpmwj60 Health and Hospital Corporation'), (7960, 'https://ror.org/03hq46410', 'pt', 1, 'https://ror.org/03hq46410 Instituto Nacional de Saúde'), (7961, 'https://ror.org/03hqq4p77', 'en', 1, 'https://ror.org/03hqq4p77 Society for Public Health Education'), (7962, 'https://ror.org/03hsk1q51', 'en', 1, 'https://ror.org/03hsk1q51 National Coalition of STD Directors'), (7963, 'https://ror.org/03htsdy94', 'fr', 1, 'https://ror.org/03htsdy94 Centre Hospitalier de la Côte Basque'), (7964, 'https://ror.org/03htten57', 'no_lang_code', 1, 'https://ror.org/03htten57 Westinghouse Electric (Sweden)'), (7965, 'https://ror.org/03hvygv29', 'en', 1, 'https://ror.org/03hvygv29 Quality of Life Research Center'), (7966, 'https://ror.org/03hw58c96', 'no_lang_code', 1, 'https://ror.org/03hw58c96 Scott Sabolich Prosthetics And Research (United States)'), (7967, 'https://ror.org/03hwje554', 'en', 1, 'https://ror.org/03hwje554 Sheffield Kidney Institute'), (7968, 'https://ror.org/03hxefz97', 'no_lang_code', 1, 'https://ror.org/03hxefz97 ViewPlus (United States)'), (7969, 'https://ror.org/03j3jr069', 'no_lang_code', 1, 'https://ror.org/03j3jr069 DSM (United States)'), (7970, 'https://ror.org/03j45zm42', 'no_lang_code', 1, 'https://ror.org/03j45zm42 Nitek (United States)'), (7971, 'https://ror.org/03j6e9476', 'no_lang_code', 1, 'https://ror.org/03j6e9476 Lipella Pharmaceuticals (United States)'), (7972, 'https://ror.org/03j7mxz67', 'no_lang_code', 1, 'https://ror.org/03j7mxz67 Omega Optics (United States)'), (7973, 'https://ror.org/03j7t7330', 'en', 1, 'https://ror.org/03j7t7330 St. Joseph''s Children''s Hospital'), (7974, 'https://ror.org/03j85fc72', 'en', 1, 'https://ror.org/03j85fc72 Fraunhofer Institute for Molecular Biology and Applied Ecology Fraunhofer-Institut für Molekularbiologie und Angewandte Oekologie'), (7975, 'https://ror.org/03j9gnb02', 'no_lang_code', 1, 'https://ror.org/03j9gnb02 Ocutech (United States)'), (7976, 'https://ror.org/03jbf6q27', 'en', 1, 'https://ror.org/03jbf6q27 Max-Born-Institut für Nichtlineare Optik und Kurzzeitspektroskopie Max-Born-Institute for Nonlinear Optics and Short Pulse Spectroscopy'), (7977, 'https://ror.org/03jbk2g75', 'en', 1, 'https://ror.org/03jbk2g75 Daytona State College'), (7978, 'https://ror.org/03jc0y470', 'en', 1, 'https://ror.org/03jc0y470 United Hospital Fund'), (7979, 'https://ror.org/03jcpfa62', 'en', 1, 'https://ror.org/03jcpfa62 V.P. Komisarenko Institute of Endocrinology and Metabolism Інститут ендокринології та обміну речовин ім. В.П. Комісаренка'), (7980, 'https://ror.org/03jcrb831', 'no_lang_code', 1, 'https://ror.org/03jcrb831 Behavioral Research Incorporated (United States)'), (7981, 'https://ror.org/03je0y772', 'de', 1, 'https://ror.org/03je0y772 Institut für biologische Forschung'), (7982, 'https://ror.org/03jfagf20', 'en', 1, 'https://ror.org/03jfagf20 Canadian Memorial Chiropractic College'), (7983, 'https://ror.org/03jg6a761', 'en', 1, 'https://ror.org/03jg6a761 Southeast Louisiana Veterans Health Care System'), (7984, 'https://ror.org/03jg6sy07', 'en', 1, 'https://ror.org/03jg6sy07 Shriners Hospitals for Children - Honolulu'), (7985, 'https://ror.org/03jgd5t29', 'no_lang_code', 1, 'https://ror.org/03jgd5t29 Astri Polska (Poland)'), (7986, 'https://ror.org/03jgjt094', 'en', 1, 'https://ror.org/03jgjt094 Algonquin College Collège Algonquin'), (7987, 'https://ror.org/03jkz2y73', 'en', 1, 'https://ror.org/03jkz2y73 Leicester Royal Infirmary'), (7988, 'https://ror.org/03jmm5353', 'en', 1, 'https://ror.org/03jmm5353 Lines for Life'), (7989, 'https://ror.org/03jnf0b15', 'en', 1, 'https://ror.org/03jnf0b15 Natural Science Collections Alliance'), (7990, 'https://ror.org/03jnj0435', 'no_lang_code', 1, 'https://ror.org/03jnj0435 Scottish and Southern Energy (United Kingdom)'), (7991, 'https://ror.org/03jnpvg57', 'fr', 1, 'https://ror.org/03jnpvg57 Association francophone pour le savoir'), (7992, 'https://ror.org/03jp8j090', 'no_lang_code', 1, 'https://ror.org/03jp8j090 Christie (Canada)'), (7993, 'https://ror.org/03jsg8m50', 'no_lang_code', 1, 'https://ror.org/03jsg8m50 DOSECC Exploration Services (United States)'), (7994, 'https://ror.org/03jt74a36', 'en', 1, 'https://ror.org/03jt74a36 China Institute of Veterinary Drug Control 中国兽医药品监察所'), (7995, 'https://ror.org/03jth0z95', 'no_lang_code', 1, 'https://ror.org/03jth0z95 Natural Pharmacia International (United States)'), (7996, 'https://ror.org/03jtqwv36', 'en', 1, 'https://ror.org/03jtqwv36 Aspire Academy أكاديمية أسباير'), (7997, 'https://ror.org/03jvpn714', 'it', 1, 'https://ror.org/03jvpn714 Consorzio Roma Ricerche'), (7998, 'https://ror.org/03jwzwq24', 'no_lang_code', 1, 'https://ror.org/03jwzwq24 Xerox (United States)'), (7999, 'https://ror.org/03jza6h92', 'en', 1, 'https://ror.org/03jza6h92 University of Abuja Teaching Hospital'), (8000, 'https://ror.org/03k0jff29', 'en', 1, 'https://ror.org/03k0jff29 Thunder Bay Regional Health Sciences Centre'), (8001, 'https://ror.org/03k14e164', 'en', 1, 'https://ror.org/03k14e164 Zhejiang Provincial People''s Hospital'), (8002, 'https://ror.org/03k285c10', 'no_lang_code', 1, 'https://ror.org/03k285c10 Polaris Motion (Canada)'), (8003, 'https://ror.org/03k36hk88', 'no_lang_code', 1, 'https://ror.org/03k36hk88 Yokkaichi Municipal Hospital 市立四日市病院'), (8004, 'https://ror.org/03k3qs503', 'en', 1, 'https://ror.org/03k3qs503 American Society of Andrology'), (8005, 'https://ror.org/03k45vj26', 'no_lang_code', 1, 'https://ror.org/03k45vj26 NovoBiotic Pharmaceuticals'), (8006, 'https://ror.org/03k4zc121', 'no_lang_code', 1, 'https://ror.org/03k4zc121 Cell Signaling Technology (United States)'), (8007, 'https://ror.org/03k51eb57', 'en', 1, 'https://ror.org/03k51eb57 Withybush General Hospital Ysbyty Cyffredinol Llwynhelyg'), (8008, 'https://ror.org/03k61re15', 'no_lang_code', 1, 'https://ror.org/03k61re15 MicroTransponder (United States)'), (8009, 'https://ror.org/03k6q9261', 'en', 1, 'https://ror.org/03k6q9261 St. Mary''s Medical Center'), (8010, 'https://ror.org/03k7szx23', 'en', 1, 'https://ror.org/03k7szx23 Royal Geographical Society'), (8011, 'https://ror.org/03k7veg12', 'no_lang_code', 1, 'https://ror.org/03k7veg12 Odawara Municipal Hospital 小田原市立病院'), (8012, 'https://ror.org/03k84rm07', 'en', 1, 'https://ror.org/03k84rm07 Center for Environmental Health'), (8013, 'https://ror.org/03k9qs827', 'en', 1, 'https://ror.org/03k9qs827 Fritz Haber Institute of the Max Planck Society Fritz-Haber-Institut der Max-Planck-Gesellschaft'), (8014, 'https://ror.org/03k9r6w77', 'no_lang_code', 1, 'https://ror.org/03k9r6w77 FTSE (Japan)'), (8015, 'https://ror.org/03kaqgs21', 'no_lang_code', 1, 'https://ror.org/03kaqgs21 Eutropics Pharmaceuticals (United States)'), (8016, 'https://ror.org/03kbjzx15', 'no_lang_code', 1, 'https://ror.org/03kbjzx15 Immersion (Canada)'), (8017, 'https://ror.org/03kdkbm65', 'en', 1, 'https://ror.org/03kdkbm65 American Society for Parenteral and Enteral Nutrition'), (8018, 'https://ror.org/03ke74b46', 'no_lang_code', 1, 'https://ror.org/03ke74b46 Welichem Biotech (Canada)'), (8019, 'https://ror.org/03keahk34', 'no_lang_code', 1, 'https://ror.org/03keahk34 Auerbach Associates (United States)'), (8020, 'https://ror.org/03ken7w58', 'en', 1, 'https://ror.org/03ken7w58 Virginia Wesleyan College'), (8021, 'https://ror.org/03kh4zk18', 'no_lang_code', 1, 'https://ror.org/03kh4zk18 Weinberg Medical Physics (United States)'), (8022, 'https://ror.org/03kjpzv42', 'en', 1, 'https://ror.org/03kjpzv42 Centro Espacial John F. Kennedy Kennedy Space Center'), (8023, 'https://ror.org/03kkzdv75', 'en', 1, 'https://ror.org/03kkzdv75 Clinicians Report Foundation'), (8024, 'https://ror.org/03kned690', 'no_lang_code', 1, 'https://ror.org/03kned690 Athersys (United States)'), (8025, 'https://ror.org/03kp8gv86', 'en', 1, 'https://ror.org/03kp8gv86 Visiting Nurse Service of New York'), (8026, 'https://ror.org/03kr30n36', 'en', 1, 'https://ror.org/03kr30n36 Manchester Royal Infirmary'), (8027, 'https://ror.org/03ks1vk59', 'it', 1, 'https://ror.org/03ks1vk59 Centro di Riferimento Oncologico'), (8028, 'https://ror.org/03ks2a131', 'no_lang_code', 1, 'https://ror.org/03ks2a131 Mitre (United States)'), (8029, 'https://ror.org/03kt2r684', 'en', 1, 'https://ror.org/03kt2r684 H.T. Harvey & Associates'), (8030, 'https://ror.org/03kxv9c43', 'no_lang_code', 1, 'https://ror.org/03kxv9c43 Astro-Med (United States)'), (8031, 'https://ror.org/03kxwet38', 'no_lang_code', 1, 'https://ror.org/03kxwet38 Antigen Express (United States)'), (8032, 'https://ror.org/03kz7sc12', 'en', 1, 'https://ror.org/03kz7sc12 Rothman Institute'), (8033, 'https://ror.org/03m2zdn30', 'no_lang_code', 1, 'https://ror.org/03m2zdn30 Plentyoffish Media (Canada)'), (8034, 'https://ror.org/03m4mbh87', 'no_lang_code', 1, 'https://ror.org/03m4mbh87 Reliable Biopharmaceutical Corporation (United States)'), (8035, 'https://ror.org/03m52v505', 'en', 1, 'https://ror.org/03m52v505 Suffolk County Department of Health Services'), (8036, 'https://ror.org/03m5fme96', 'en', 1, 'https://ror.org/03m5fme96 Nagahama Institute of Bio-Science and Technology 長浜バイオ大学'), (8037, 'https://ror.org/03m5rvq73', 'no_lang_code', 1, 'https://ror.org/03m5rvq73 Zen Bio (United States)'), (8038, 'https://ror.org/03m7mhz19', 'no_lang_code', 1, 'https://ror.org/03m7mhz19 Ferring Pharmaceuticals (Denmark)'), (8039, 'https://ror.org/03m7pt185', 'en', 1, 'https://ror.org/03m7pt185 Bay Zoltán Alkalmazott Kutatási Közhasznú Nonprofit Kft Bay Zoltán Foundation for Applied Research'), (8040, 'https://ror.org/03m8b9646', 'en', 1, 'https://ror.org/03m8b9646 Tilganga Institute of Ophthalmology तिलगंगा आँखाकेन्द्र'), (8041, 'https://ror.org/03mante79', 'no_lang_code', 1, 'https://ror.org/03mante79 Advantagene (United States)'), (8042, 'https://ror.org/03mcw4334', 'es', 1, 'https://ror.org/03mcw4334 Direccion General de Epidemiologia'), (8043, 'https://ror.org/03md96v89', 'en', 1, 'https://ror.org/03md96v89 National Trust'), (8044, 'https://ror.org/03me92s48', 'no_lang_code', 1, 'https://ror.org/03me92s48 Bechtel (United States)'), (8045, 'https://ror.org/03mex2a54', 'no_lang_code', 1, 'https://ror.org/03mex2a54 BioStrategies (United States)'), (8046, 'https://ror.org/03mf1cy35', 'en', 1, 'https://ror.org/03mf1cy35 Manchester College'), (8047, 'https://ror.org/03mgv7521', 'en', 1, 'https://ror.org/03mgv7521 Fort Worth Museum of Science and History'), (8048, 'https://ror.org/03mk1ty71', 'en', 1, 'https://ror.org/03mk1ty71 Abacus Health Solutions'), (8049, 'https://ror.org/03mk3s709', 'hu', 1, 'https://ror.org/03mk3s709 Országos Pszichiátriai és Neurológiai Intézet'), (8050, 'https://ror.org/03mm5qn83', 'en', 1, 'https://ror.org/03mm5qn83 Occupational Safety & Health Administration'), (8051, 'https://ror.org/03mnq7x91', 'no_lang_code', 1, 'https://ror.org/03mnq7x91 Lundin Mining (Portugal)'), (8052, 'https://ror.org/03mpa4w20', 'en', 1, 'https://ror.org/03mpa4w20 Okinawa Prefectural Chubu Hospital 沖縄県立中部病院'), (8053, 'https://ror.org/03ms7cf36', 'en', 1, 'https://ror.org/03ms7cf36 TB Alliance'), (8054, 'https://ror.org/03msykc12', 'en', 1, 'https://ror.org/03msykc12 Steadman Philippon Research Institute'), (8055, 'https://ror.org/03mvdc478', 'en', 1, 'https://ror.org/03mvdc478 Pennsylvania Hospital'), (8056, 'https://ror.org/03mwfxd89', 'no_lang_code', 1, 'https://ror.org/03mwfxd89 GrammaTech (United States)'), (8057, 'https://ror.org/03mx8d427', 'en', 1, 'https://ror.org/03mx8d427 Instituto Nacional de Saúde Dr. Ricardo Jorge National Institute of Health Dr. Ricardo Jorge'), (8058, 'https://ror.org/03mxm6g77', 'en', 1, 'https://ror.org/03mxm6g77 Tomah VA Medical Center'), (8059, 'https://ror.org/03mxv9643', 'en', 1, 'https://ror.org/03mxv9643 Onslow Memorial Hospital'), (8060, 'https://ror.org/03mz0by90', 'no_lang_code', 1, 'https://ror.org/03mz0by90 Consolidated Safety Services-Dynamac (United States)'), (8061, 'https://ror.org/03mz9mq20', 'tr', 1, 'https://ror.org/03mz9mq20 Adli Tıp Kurumu'), (8062, 'https://ror.org/03n0d3a30', 'en', 1, 'https://ror.org/03n0d3a30 Dallas County'), (8063, 'https://ror.org/03n0dgh22', 'en', 1, 'https://ror.org/03n0dgh22 Fort Peck Community College'), (8064, 'https://ror.org/03n2bnb89', 'es', 1, 'https://ror.org/03n2bnb89 Hospital Intermutual de Levante'), (8065, 'https://ror.org/03n37y445', 'no_lang_code', 1, 'https://ror.org/03n37y445 AgentSheets (United States)'), (8066, 'https://ror.org/03n3jmy18', 'no_lang_code', 1, 'https://ror.org/03n3jmy18 Avanti Polar Lipids (United States)'), (8067, 'https://ror.org/03n52gt10', 'en', 1, 'https://ror.org/03n52gt10 Millennium Pain Center'), (8068, 'https://ror.org/03n5jt416', 'no_lang_code', 1, 'https://ror.org/03n5jt416 Capsugel (United States)'), (8069, 'https://ror.org/03n87wv50', 'no_lang_code', 1, 'https://ror.org/03n87wv50 Applied BioPhysics (United States)'), (8070, 'https://ror.org/03n92bt27', 'en', 1, 'https://ror.org/03n92bt27 Overton Brooks VA Medical Center'), (8071, 'https://ror.org/03n9kxm25', 'en', 1, 'https://ror.org/03n9kxm25 Delaware County Community College'), (8072, 'https://ror.org/03n9vvh94', 'no_lang_code', 1, 'https://ror.org/03n9vvh94 ActionDog (United Kingdom)'), (8073, 'https://ror.org/03naxgw71', 'en', 1, 'https://ror.org/03naxgw71 Reformar'), (8074, 'https://ror.org/03nd0nz77', 'en', 1, 'https://ror.org/03nd0nz77 Kagoshima Medical Center 鹿児島医療センター'), (8075, 'https://ror.org/03ndwvd63', 'en', 1, 'https://ror.org/03ndwvd63 Fairview Developmental Center'), (8076, 'https://ror.org/03neybp41', 'it', 1, 'https://ror.org/03neybp41 Ospedale Microcitemico'), (8077, 'https://ror.org/03nfebx47', 'no_lang_code', 1, 'https://ror.org/03nfebx47 Terpenoid Therapeutics (United States)'), (8078, 'https://ror.org/03ngp7731', 'no_lang_code', 1, 'https://ror.org/03ngp7731 Advanced Cooling Technologies (United States)'), (8079, 'https://ror.org/03nk8rb41', 'en', 1, 'https://ror.org/03nk8rb41 Yukon River Inter Tribal Watershed Council'), (8080, 'https://ror.org/03nkdc513', 'no_lang_code', 1, 'https://ror.org/03nkdc513 Sabbagh Associates'), (8081, 'https://ror.org/03nkzyy47', 'en', 1, 'https://ror.org/03nkzyy47 Paradise Valley Hospital'), (8082, 'https://ror.org/03nmpxq27', 'en', 1, 'https://ror.org/03nmpxq27 Georgia Department of Agriculture'), (8083, 'https://ror.org/03npmaw37', 'de', 1, 'https://ror.org/03npmaw37 Wunschbaby Institut für Kinderwunsch'), (8084, 'https://ror.org/03npzn484', 'no_lang_code', 1, 'https://ror.org/03npzn484 CorpoGen (Colombia)'), (8085, 'https://ror.org/03nqny130', 'no_lang_code', 1, 'https://ror.org/03nqny130 Willis Towers Watson (United Kingdom)'), (8086, 'https://ror.org/03nr3ve48', 'no_lang_code', 1, 'https://ror.org/03nr3ve48 Advanced Brain Monitoring (United States)'), (8087, 'https://ror.org/03nrae010', 'no_lang_code', 1, 'https://ror.org/03nrae010 Orthocare Innovations (United States)'); INSERT INTO `rors` VALUES (8088, 'https://ror.org/03nrb5p64', 'en', 1, 'https://ror.org/03nrb5p64 Adalet Bakanlığı Ministry of Justice'), (8089, 'https://ror.org/03nrvep03', 'no_lang_code', 1, 'https://ror.org/03nrvep03 MetaMateria (United States)'), (8090, 'https://ror.org/03nsnsd97', 'no_lang_code', 1, 'https://ror.org/03nsnsd97 Celaya, Emparanza y Galdos Internacional (Spain)'), (8091, 'https://ror.org/03nv5gj57', 'en', 1, 'https://ror.org/03nv5gj57 Bethany College - Kansas'), (8092, 'https://ror.org/03nxga177', 'no_lang_code', 1, 'https://ror.org/03nxga177 Sigma Technologies (United States)'), (8093, 'https://ror.org/03nyxbd27', 'en', 1, 'https://ror.org/03nyxbd27 Reproductive Medicine Associates of New Jersey'), (8094, 'https://ror.org/03nz5jq66', 'no_lang_code', 1, 'https://ror.org/03nz5jq66 Geotab (Canada)'), (8095, 'https://ror.org/03nzdk586', 'en', 1, 'https://ror.org/03nzdk586 Cooperative Clinical Drug Research and Development'), (8096, 'https://ror.org/03p0nzr60', 'no_lang_code', 1, 'https://ror.org/03p0nzr60 NanoComposix (United States)'), (8097, 'https://ror.org/03p15s250', 'en', 1, 'https://ror.org/03p15s250 National Center for Health Statistics'), (8098, 'https://ror.org/03p1zz409', 'no_lang_code', 1, 'https://ror.org/03p1zz409 Envigo (Germany)'), (8099, 'https://ror.org/03p5x8053', 'no_lang_code', 1, 'https://ror.org/03p5x8053 Cell Preservation Services (United States)'), (8100, 'https://ror.org/03p64mj41', 'en', 1, 'https://ror.org/03p64mj41 Greenwood Genetic Center'), (8101, 'https://ror.org/03p6fpw74', 'en', 1, 'https://ror.org/03p6fpw74 Summa Health System'), (8102, 'https://ror.org/03p711j77', 'en', 1, 'https://ror.org/03p711j77 Australian Institute of Nuclear Science and Engineering'), (8103, 'https://ror.org/03p81a485', 'no_lang_code', 1, 'https://ror.org/03p81a485 Altor BioScience (United States)'), (8104, 'https://ror.org/03pa87f90', 'fr', 1, 'https://ror.org/03pa87f90 Institut Claudius Regaud'), (8105, 'https://ror.org/03pe98v12', 'en', 1, 'https://ror.org/03pe98v12 Surgical Materials Testing Laboratory'), (8106, 'https://ror.org/03pfshj32', 'de', 1, 'https://ror.org/03pfshj32 Munich Municipal Hospital Group München Klinik'), (8107, 'https://ror.org/03pfy5b07', 'no_lang_code', 1, 'https://ror.org/03pfy5b07 Edvotek (United States)'), (8108, 'https://ror.org/03pghek18', 'en', 1, 'https://ror.org/03pghek18 Bristol Institute for Transfusion Sciences'), (8109, 'https://ror.org/03pgm1r86', 'en', 1, 'https://ror.org/03pgm1r86 American College of Cardiology'), (8110, 'https://ror.org/03phkbp27', 'en', 1, 'https://ror.org/03phkbp27 Wolters Kluwer Health'), (8111, 'https://ror.org/03pj30e67', 'no_lang_code', 1, 'https://ror.org/03pj30e67 Saiseikai Nakatsu Hospital 大阪府済生会中津病院'), (8112, 'https://ror.org/03pjgt842', 'en', 1, 'https://ror.org/03pjgt842 Shriners for Children Medical Center - Pasadena'), (8113, 'https://ror.org/03pjwtr87', 'en', 1, 'https://ror.org/03pjwtr87 Canadian College of Naturopathic Medicine'), (8114, 'https://ror.org/03pp86w19', 'en', 1, 'https://ror.org/03pp86w19 Beatson West of Scotland Cancer Centre'), (8115, 'https://ror.org/03prr0814', 'en', 1, 'https://ror.org/03prr0814 Defence Food Research Laboratory रक्षा खाद्य शोध प्रयोगशाला'), (8116, 'https://ror.org/03pszb036', 'en', 1, 'https://ror.org/03pszb036 Asbury University'), (8117, 'https://ror.org/03ptehc98', 'en', 1, 'https://ror.org/03ptehc98 Southern Regional Area Health Education Centers'), (8118, 'https://ror.org/03px2kh57', 'fr', 1, 'https://ror.org/03px2kh57 Institut de Médecine Tropicale du Service de Santé des Armées'), (8119, 'https://ror.org/03pxsqj18', 'en', 1, 'https://ror.org/03pxsqj18 Hebrew Home of Greater Washington'), (8120, 'https://ror.org/03pxz9p87', 'en', 1, 'https://ror.org/03pxz9p87 Institut International de Recherche sur les Politiques Alimentaires Instituto Internacional de Investigación sobre Políticas Alimentarias International Food Policy Research Institute'), (8121, 'https://ror.org/03pzbeq42', 'en', 1, 'https://ror.org/03pzbeq42 Youth Science Canada'), (8122, 'https://ror.org/03q2s1r54', 'en', 1, 'https://ror.org/03q2s1r54 National Institute of Ayurveda राष्ट्रीय आयुर्विज्ञान संस्थान'), (8123, 'https://ror.org/03q358129', 'no_lang_code', 1, 'https://ror.org/03q358129 Active Signal Technologies (United States)'), (8124, 'https://ror.org/03q43d318', 'no_lang_code', 1, 'https://ror.org/03q43d318 iTherX (United States)'), (8125, 'https://ror.org/03q452953', 'no_lang_code', 1, 'https://ror.org/03q452953 ING Robotic Aviation'), (8126, 'https://ror.org/03q47r263', 'no_lang_code', 1, 'https://ror.org/03q47r263 DMH Associates (United States)'), (8127, 'https://ror.org/03q50jp21', 'no_lang_code', 1, 'https://ror.org/03q50jp21 Colgate-Palmolive (United States)'), (8128, 'https://ror.org/03q5ywq18', 'no_lang_code', 1, 'https://ror.org/03q5ywq18 Conversion Energy Enterprises (United States)'), (8129, 'https://ror.org/03q6ms497', 'no_lang_code', 1, 'https://ror.org/03q6ms497 Schlumberger (United Kingdom)'), (8130, 'https://ror.org/03q73zg62', 'no_lang_code', 1, 'https://ror.org/03q73zg62 Cirrus Logic (United Kingdom)'), (8131, 'https://ror.org/03q7hxz75', 'en', 1, 'https://ror.org/03q7hxz75 Tachikawa Hospital 立川病院'), (8132, 'https://ror.org/03q82br40', 'sv', 1, 'https://ror.org/03q82br40 Vrinnevi Hospital Vrinnevisjukhuset i Norrköping'), (8133, 'https://ror.org/03q8fh922', 'pl', 1, 'https://ror.org/03q8fh922 Military Institute of Hygiene and Epidemiology Wojskowy Instytut Higieny i Epidemiologii'), (8134, 'https://ror.org/03q94pb14', 'no_lang_code', 1, 'https://ror.org/03q94pb14 Beckham Company (United States)'), (8135, 'https://ror.org/03qaq7791', 'no_lang_code', 1, 'https://ror.org/03qaq7791 Tristan Technologies (United States)'), (8136, 'https://ror.org/03qeabs35', 'en', 1, 'https://ror.org/03qeabs35 Anderson Orthopaedic Research Institute'), (8137, 'https://ror.org/03qj07681', 'no_lang_code', 1, 'https://ror.org/03qj07681 Epirus Biopharmaceuticals (United States)'), (8138, 'https://ror.org/03qk02j94', 'en', 1, 'https://ror.org/03qk02j94 West Jefferson Medical Center'), (8139, 'https://ror.org/03qkaf287', 'en', 1, 'https://ror.org/03qkaf287 Gila River Indian Community'), (8140, 'https://ror.org/03qkhyr66', 'no_lang_code', 1, 'https://ror.org/03qkhyr66 Novozymes (United States)'), (8141, 'https://ror.org/03qkymy66', 'no_lang_code', 1, 'https://ror.org/03qkymy66 Polaris Health Direction'), (8142, 'https://ror.org/03qmsrr79', 'no_lang_code', 1, 'https://ror.org/03qmsrr79 Steris (United States)'), (8143, 'https://ror.org/03qpaq263', 'sv', 1, 'https://ror.org/03qpaq263 Vårdcentralen Teleborg'), (8144, 'https://ror.org/03qpd8w66', 'it', 1, 'https://ror.org/03qpd8w66 Institute of Molecular Genetics Luigi Luca Cavalli-Sforza Istituto di Genetica Molecolare'), (8145, 'https://ror.org/03qqc4d32', 'no_lang_code', 1, 'https://ror.org/03qqc4d32 QLT (Canada)'), (8146, 'https://ror.org/03qs03z89', 'en', 1, 'https://ror.org/03qs03z89 Progeria Research Foundation'), (8147, 'https://ror.org/03qsrxk46', 'no_lang_code', 1, 'https://ror.org/03qsrxk46 Giro (Canada)'), (8148, 'https://ror.org/03qvjfg54', 'en', 1, 'https://ror.org/03qvjfg54 Notre Dame de Namur University Université notre-dame-de-namur'), (8149, 'https://ror.org/03qvxap92', 'no_lang_code', 1, 'https://ror.org/03qvxap92 Kodak (United Kingdom)'), (8150, 'https://ror.org/03qw8q135', 'no_lang_code', 1, 'https://ror.org/03qw8q135 Transposagen Biopharmaceuticals (United States)'), (8151, 'https://ror.org/03qwfxy81', 'en', 1, 'https://ror.org/03qwfxy81 National Disease Research Interchange'), (8152, 'https://ror.org/03qwkzw23', 'en', 1, 'https://ror.org/03qwkzw23 Valley Presbyterian Hospital'), (8153, 'https://ror.org/03qx1c439', 'en', 1, 'https://ror.org/03qx1c439 Wayne Memorial Hospital'), (8154, 'https://ror.org/03qxwgf98', 'es', 1, 'https://ror.org/03qxwgf98 Center for Genetic Engineering and Biotechnology Centro de Ingeniería Genética y Biotecnología'), (8155, 'https://ror.org/03qz04022', 'en', 1, 'https://ror.org/03qz04022 Council of State Governments'), (8156, 'https://ror.org/03qz3ng87', 'en', 1, 'https://ror.org/03qz3ng87 Inter-Tribal Council of Michigan'), (8157, 'https://ror.org/03qz4w368', 'no_lang_code', 1, 'https://ror.org/03qz4w368 PowerWorld (United States)'), (8158, 'https://ror.org/03qzgjs85', 'no_lang_code', 1, 'https://ror.org/03qzgjs85 Abeome Corporation (United States)'), (8159, 'https://ror.org/03r0xxt78', 'en', 1, 'https://ror.org/03r0xxt78 AIDS Committee of Toronto'), (8160, 'https://ror.org/03r35eh66', 'no_lang_code', 1, 'https://ror.org/03r35eh66 Michigan Molecular Institute (United States)'), (8161, 'https://ror.org/03r5ecg75', 'no_lang_code', 1, 'https://ror.org/03r5ecg75 Noble Life Sciences (United States)'), (8162, 'https://ror.org/03ravcp64', 'no_lang_code', 1, 'https://ror.org/03ravcp64 Etubics (United States)'), (8163, 'https://ror.org/03rbjx398', 'en', 1, 'https://ror.org/03rbjx398 National Suicide Research Foundation'), (8164, 'https://ror.org/03rbsqr59', 'en', 1, 'https://ror.org/03rbsqr59 Diné College'), (8165, 'https://ror.org/03rctck52', 'no_lang_code', 1, 'https://ror.org/03rctck52 MyScience (United Kingdom)'), (8166, 'https://ror.org/03rdrc196', 'no_lang_code', 1, 'https://ror.org/03rdrc196 Parallel Synthesis Technologies (United States)'), (8167, 'https://ror.org/03re1za85', 'en', 1, 'https://ror.org/03re1za85 Québec International'), (8168, 'https://ror.org/03re9hr91', 'no_lang_code', 1, 'https://ror.org/03re9hr91 Peake DeLancey Printers (United States)'), (8169, 'https://ror.org/03rezj286', 'en', 1, 'https://ror.org/03rezj286 Chemical Pharmaceutical Research Institute'), (8170, 'https://ror.org/03rharq04', 'en', 1, 'https://ror.org/03rharq04 Rath Research Institute'), (8171, 'https://ror.org/03rjjzx12', 'it', 1, 'https://ror.org/03rjjzx12 Ospedale di Mirano'), (8172, 'https://ror.org/03rppzy62', 'no_lang_code', 1, 'https://ror.org/03rppzy62 Thromgen (United States)'), (8173, 'https://ror.org/03rrfzx46', 'de', 1, 'https://ror.org/03rrfzx46 Allgemeine Unfallversicherungsanstalt'), (8174, 'https://ror.org/03rs0fg31', 'en', 1, 'https://ror.org/03rs0fg31 Materials Science & Engineering'), (8175, 'https://ror.org/03rs11m37', 'no_lang_code', 1, 'https://ror.org/03rs11m37 Levret'), (8176, 'https://ror.org/03rt40634', 'en', 1, 'https://ror.org/03rt40634 AIDS Service Center of New York City'), (8177, 'https://ror.org/03rvph505', 'en', 1, 'https://ror.org/03rvph505 Bacone College'), (8178, 'https://ror.org/03rw53777', 'no_lang_code', 1, 'https://ror.org/03rw53777 CyberTech (United States)'), (8179, 'https://ror.org/03rx00z90', 'no_lang_code', 1, 'https://ror.org/03rx00z90 Sakurabashi Watanabe Hospital 桜橋渡辺病院'), (8180, 'https://ror.org/03rxt9r79', 'en', 1, 'https://ror.org/03rxt9r79 Computer Aids for Chemical Engineering'), (8181, 'https://ror.org/03ryhm704', 'no_lang_code', 1, 'https://ror.org/03ryhm704 DuPont (United Kingdom)'), (8182, 'https://ror.org/03rytet35', 'no_lang_code', 1, 'https://ror.org/03rytet35 KMS Fusion (United States)'), (8183, 'https://ror.org/03rzh5w77', 'no_lang_code', 1, 'https://ror.org/03rzh5w77 Utsi Electronics (United Kingdom)'), (8184, 'https://ror.org/03rzm8h15', 'en', 1, 'https://ror.org/03rzm8h15 Hyogo Brain and Heart Center 兵庫県立姫路循環器病センター'), (8185, 'https://ror.org/03s0w0d38', 'no_lang_code', 1, 'https://ror.org/03s0w0d38 VideoMining (United States)'), (8186, 'https://ror.org/03s4b7629', 'no_lang_code', 1, 'https://ror.org/03s4b7629 Nanomaterials & Nanofabrication Laboratories (United States)'), (8187, 'https://ror.org/03s4hbs71', 'en', 1, 'https://ror.org/03s4hbs71 New England Board of Higher Education'), (8188, 'https://ror.org/03s7rt838', 'no_lang_code', 1, 'https://ror.org/03s7rt838 Nottingham Scientific (United Kingdom)'), (8189, 'https://ror.org/03s8c8p36', 'no_lang_code', 1, 'https://ror.org/03s8c8p36 Continuum Dynamics (United States)'), (8190, 'https://ror.org/03s96eq95', 'en', 1, 'https://ror.org/03s96eq95 Tacoma/Valley Radiation Oncology Centers'), (8191, 'https://ror.org/03savhj63', 'no_lang_code', 1, 'https://ror.org/03savhj63 Exocell (United States)'), (8192, 'https://ror.org/03se9cq71', 'no_lang_code', 1, 'https://ror.org/03se9cq71 Panasonic (United Kingdom)'), (8193, 'https://ror.org/03sfb9j07', 'en', 1, 'https://ror.org/03sfb9j07 China University of Science and Technology 中華科技大學'), (8194, 'https://ror.org/03sgbh608', 'en', 1, 'https://ror.org/03sgbh608 La Jolla Bioengineering Institute'), (8195, 'https://ror.org/03sgtek58', 'en', 1, 'https://ror.org/03sgtek58 China Institute of Sport Science 国家体育总局体育科学研究所'), (8196, 'https://ror.org/03shg3b96', 'en', 1, 'https://ror.org/03shg3b96 Stanley Street Treatment and Resources'), (8197, 'https://ror.org/03shyvb83', 'en', 1, 'https://ror.org/03shyvb83 Hope Heart Institute'), (8198, 'https://ror.org/03sjfjv85', 'no_lang_code', 1, 'https://ror.org/03sjfjv85 Phenomenome Discoveries (Canada)'), (8199, 'https://ror.org/03skrcz21', 'en', 1, 'https://ror.org/03skrcz21 Joint Commission'), (8200, 'https://ror.org/03sm16s30', 'en', 1, 'https://ror.org/03sm16s30 Toronto East General Hospital'), (8201, 'https://ror.org/03sn3te07', 'it', 1, 'https://ror.org/03sn3te07 Società Italiana di Medicina Generale'), (8202, 'https://ror.org/03snky177', 'en', 1, 'https://ror.org/03snky177 New Victoria Theatre'), (8203, 'https://ror.org/03sqbp894', 'no_lang_code', 1, 'https://ror.org/03sqbp894 GlaxoSmithKline (Switzerland)'), (8204, 'https://ror.org/03sqq2g46', 'en', 1, 'https://ror.org/03sqq2g46 Retina Foundation of the Southwest'), (8205, 'https://ror.org/03srd4412', 'en', 1, 'https://ror.org/03srd4412 Center for HIV and Hepatogastroenterology Medizinisches Versorgungszentrum'), (8206, 'https://ror.org/03st5df34', 'no_lang_code', 1, 'https://ror.org/03st5df34 World Precision Instruments (United States)'), (8207, 'https://ror.org/03svd1086', 'no_lang_code', 1, 'https://ror.org/03svd1086 Jarvik Heart (United States)'), (8208, 'https://ror.org/03swwwm05', 'en', 1, 'https://ror.org/03swwwm05 Health Services Center'), (8209, 'https://ror.org/03sxe1905', 'no_lang_code', 1, 'https://ror.org/03sxe1905 FibroGen (United States)'), (8210, 'https://ror.org/03sxmk145', 'fr', 1, 'https://ror.org/03sxmk145 Images & Réseaux'), (8211, 'https://ror.org/03t12ts08', 'en', 1, 'https://ror.org/03t12ts08 Kunming Institute of Precious Metals'), (8212, 'https://ror.org/03t1jzs40', 'it', 1, 'https://ror.org/03t1jzs40 IRCCS Materno Infantile Burlo Garofolo, Ospedale Infantile Burlo Garofolo'), (8213, 'https://ror.org/03t3e7k14', 'en', 1, 'https://ror.org/03t3e7k14 International Society for Experimental Hematology'), (8214, 'https://ror.org/03t4znc65', 'en', 1, 'https://ror.org/03t4znc65 DairyNZ'), (8215, 'https://ror.org/03t56ts61', 'en', 1, 'https://ror.org/03t56ts61 Livingstone College'), (8216, 'https://ror.org/03t6ffp13', 'en', 1, 'https://ror.org/03t6ffp13 Yuli Veterans Hospital 七月退伍军人医院'), (8217, 'https://ror.org/03t995d97', 'en', 1, 'https://ror.org/03t995d97 St. Joseph Health System'), (8218, 'https://ror.org/03t9z1b27', 'en', 1, 'https://ror.org/03t9z1b27 Utah Department of Human Services'), (8219, 'https://ror.org/03te4pe27', 'no_lang_code', 1, 'https://ror.org/03te4pe27 Umpqua Research Company (United States)'), (8220, 'https://ror.org/03tebt685', 'en', 1, 'https://ror.org/03tebt685 Malawi-Liverpool-Wellcome Trust Clinical Research Programme'), (8221, 'https://ror.org/03tghjn41', 'no_lang_code', 1, 'https://ror.org/03tghjn41 Ocular Surface Center'), (8222, 'https://ror.org/03tgpkr96', 'no_lang_code', 1, 'https://ror.org/03tgpkr96 Tactus Technology (United States)'), (8223, 'https://ror.org/03tgvv724', 'en', 1, 'https://ror.org/03tgvv724 Swedish Covenant Hospital'), (8224, 'https://ror.org/03tj54q36', 'no_lang_code', 1, 'https://ror.org/03tj54q36 Translink (United Kingdom)'), (8225, 'https://ror.org/03tj9dz52', 'en', 1, 'https://ror.org/03tj9dz52 Stillman College'), (8226, 'https://ror.org/03tjj1227', 'en', 1, 'https://ror.org/03tjj1227 Tsukuba Medical Center Hospital 筑波メディカルセンター病院'), (8227, 'https://ror.org/03tmrv747', 'no_lang_code', 1, 'https://ror.org/03tmrv747 Pro Change Behavior Systems (United States)'), (8228, 'https://ror.org/03tmy2526', 'en', 1, 'https://ror.org/03tmy2526 Gundersen Lutheran Hospital'), (8229, 'https://ror.org/03tns0030', 'en', 1, 'https://ror.org/03tns0030 Environmental Protection Agency'), (8230, 'https://ror.org/03ts76x74', 'en', 1, 'https://ror.org/03ts76x74 White Mountains Community College'), (8231, 'https://ror.org/03tsfw439', 'no_lang_code', 1, 'https://ror.org/03tsfw439 Saint-Gobain (United States)'), (8232, 'https://ror.org/03tvzhc42', 'no_lang_code', 1, 'https://ror.org/03tvzhc42 Vesticon (United States)'), (8233, 'https://ror.org/03txk6b49', 'en', 1, 'https://ror.org/03txk6b49 St. Luke''s Hospital'), (8234, 'https://ror.org/03tz9bp03', 'no_lang_code', 1, 'https://ror.org/03tz9bp03 Sharklet Technologies (United States)'), (8235, 'https://ror.org/03tzkeq32', 'no_lang_code', 1, 'https://ror.org/03tzkeq32 Enzo Biochem (United States)'), (8236, 'https://ror.org/03v08em34', 'en', 1, 'https://ror.org/03v08em34 Maaruti College of Dental sciences & Research Center'), (8237, 'https://ror.org/03v2wv079', 'en', 1, 'https://ror.org/03v2wv079 Colorado Center for Reproductive Medicine'), (8238, 'https://ror.org/03v351c14', 'en', 1, 'https://ror.org/03v351c14 International Center for Research on Women'), (8239, 'https://ror.org/03v4j1n69', 'no_lang_code', 1, 'https://ror.org/03v4j1n69 WRc (United Kingdom)'), (8240, 'https://ror.org/03v53q116', 'no_lang_code', 1, 'https://ror.org/03v53q116 ProSci Incorporated (United States)'), (8241, 'https://ror.org/03v5sbh78', 'en', 1, 'https://ror.org/03v5sbh78 Swami Devi Dyal Hospital and Dental College'), (8242, 'https://ror.org/03v6a2j28', 'en', 1, 'https://ror.org/03v6a2j28 Trillium Health Centre'), (8243, 'https://ror.org/03v6ftq03', 'en', 1, 'https://ror.org/03v6ftq03 International Rescue Committee'), (8244, 'https://ror.org/03v7zx932', 'en', 1, 'https://ror.org/03v7zx932 Girls Incorporated'), (8245, 'https://ror.org/03v861t80', 'no_lang_code', 1, 'https://ror.org/03v861t80 Atmel (United States)'), (8246, 'https://ror.org/03vetm947', 'no_lang_code', 1, 'https://ror.org/03vetm947 Isowater Corporation (Canada)'), (8247, 'https://ror.org/03vfany12', 'no_lang_code', 1, 'https://ror.org/03vfany12 Crosslight Software (Canada)'), (8248, 'https://ror.org/03vj54r15', 'no_lang_code', 1, 'https://ror.org/03vj54r15 Dot Metrics Technologies (United States)'), (8249, 'https://ror.org/03vj88s15', 'fr', 1, 'https://ror.org/03vj88s15 Centre d''Etudes Prospectives et d''Informations Internationales'), (8250, 'https://ror.org/03vk7ns50', 'en', 1, 'https://ror.org/03vk7ns50 Alwar Pharmacy College'), (8251, 'https://ror.org/03vk8p158', 'en', 1, 'https://ror.org/03vk8p158 Block Center'), (8252, 'https://ror.org/03vmatd47', 'no_lang_code', 1, 'https://ror.org/03vmatd47 Safran Electronics (Canada)'), (8253, 'https://ror.org/03vmc0n61', 'en', 1, 'https://ror.org/03vmc0n61 Galiano Conservancy Association'), (8254, 'https://ror.org/03vmrxk92', 'en', 1, 'https://ror.org/03vmrxk92 State Research Center for Applied Microbiology and Biotechnology Федеральное бюджетное учреждение науки Государственный научный центр прикладной микробиологии и биотехнологии'), (8255, 'https://ror.org/03vpj4s62', 'en', 1, 'https://ror.org/03vpj4s62 Max Planck Institute of Molecular Physiology Max-Planck-Institut für Molekulare Physiologie'), (8256, 'https://ror.org/03vpkt967', 'en', 1, 'https://ror.org/03vpkt967 Lancaster Theological Seminary, United Church of Christ'), (8257, 'https://ror.org/03vqk1b90', 'hu', 1, 'https://ror.org/03vqk1b90 Petz Aladár Megyei Oktató Kórház'), (8258, 'https://ror.org/03vs98h61', 'en', 1, 'https://ror.org/03vs98h61 Cardiopulmonary Research Science and Technology Institute'), (8259, 'https://ror.org/03vtp2091', 'no_lang_code', 1, 'https://ror.org/03vtp2091 NeuroBioTex (United States)'), (8260, 'https://ror.org/03vw5xy77', 'en', 1, 'https://ror.org/03vw5xy77 Northwest Portland Area Indian Health Board'), (8261, 'https://ror.org/03vwrbq09', 'no_lang_code', 1, 'https://ror.org/03vwrbq09 EyePoint Pharmaceuticals (United States)'), (8262, 'https://ror.org/03vypx625', 'en', 1, 'https://ror.org/03vypx625 Burton Hospitals NHS Foundation Trust'), (8263, 'https://ror.org/03w1r6s74', 'no_lang_code', 1, 'https://ror.org/03w1r6s74 Exponents (United States)'), (8264, 'https://ror.org/03w3ng559', 'no_lang_code', 1, 'https://ror.org/03w3ng559 InPore Vape Technologies (United States)'), (8265, 'https://ror.org/03w40n140', 'no_lang_code', 1, 'https://ror.org/03w40n140 Simbex (United States)'), (8266, 'https://ror.org/03w418j08', 'en', 1, 'https://ror.org/03w418j08 Centre Hospitalier de Libreville Libreville Hospital'), (8267, 'https://ror.org/03w5ry680', 'no_lang_code', 1, 'https://ror.org/03w5ry680 ASL Analytical (United States)'), (8268, 'https://ror.org/03w5zay18', 'no_lang_code', 1, 'https://ror.org/03w5zay18 Vortant Technologies (United States)'), (8269, 'https://ror.org/03w69rv70', 'en', 1, 'https://ror.org/03w69rv70 Eastern Iowa Community College'), (8270, 'https://ror.org/03w6e0c57', 'pt', 1, 'https://ror.org/03w6e0c57 Estrutura de Missão para os Assuntos do Mar'), (8271, 'https://ror.org/03w6g4z68', 'no_lang_code', 1, 'https://ror.org/03w6g4z68 Innovative Micro Technology (United States)'), (8272, 'https://ror.org/03w6pea42', 'en', 1, 'https://ror.org/03w6pea42 National Dental Centre of Singapore'), (8273, 'https://ror.org/03wbhj477', 'en', 1, 'https://ror.org/03wbhj477 Upsala College'), (8274, 'https://ror.org/03wbjv906', 'en', 1, 'https://ror.org/03wbjv906 Southwest Tennessee Community College'), (8275, 'https://ror.org/03wbrqz31', 'en', 1, 'https://ror.org/03wbrqz31 Saddleback College'), (8276, 'https://ror.org/03we1zb10', 'en', 1, 'https://ror.org/03we1zb10 Warneford Hospital'), (8277, 'https://ror.org/03wgxjb31', 'no_lang_code', 1, 'https://ror.org/03wgxjb31 United Therapeutics (United States)'), (8278, 'https://ror.org/03wjr6873', 'en', 1, 'https://ror.org/03wjr6873 VA Central California Health Care System'), (8279, 'https://ror.org/03wjvct24', 'en', 1, 'https://ror.org/03wjvct24 Fairbanks Native Association'), (8280, 'https://ror.org/03wjz0p55', 'no_lang_code', 1, 'https://ror.org/03wjz0p55 LaunchPoint Technologies (United States)'), (8281, 'https://ror.org/03wmmfz90', 'en', 1, 'https://ror.org/03wmmfz90 Tennessee Department of Health'), (8282, 'https://ror.org/03wmzb046', 'no_lang_code', 1, 'https://ror.org/03wmzb046 Iridian Spectral Technologies (Canada)'), (8283, 'https://ror.org/03wnrjx87', 'en', 1, 'https://ror.org/03wnrjx87 Royal Society Y Gymdeithas Frenhinol'), (8284, 'https://ror.org/03wqxws86', 'no_lang_code', 1, 'https://ror.org/03wqxws86 Teine Keijinkai Hospital 渓仁会グループ'), (8285, 'https://ror.org/03wr23878', 'no_lang_code', 1, 'https://ror.org/03wr23878 Greater Saskatoon Chamber of Commerce'), (8286, 'https://ror.org/03wsa4e80', 'no_lang_code', 1, 'https://ror.org/03wsa4e80 BioSurfaces (United States)'), (8287, 'https://ror.org/03wtr1427', 'no_lang_code', 1, 'https://ror.org/03wtr1427 NovaLipids (Canada)'), (8288, 'https://ror.org/03ww9z667', 'en', 1, 'https://ror.org/03ww9z667 Institute for Disabilities Research and Training'), (8289, 'https://ror.org/03wwbp431', 'en', 1, 'https://ror.org/03wwbp431 Victoria General Hospital'), (8290, 'https://ror.org/03wxx8465', 'no_lang_code', 1, 'https://ror.org/03wxx8465 Mt. San Antonio College'), (8291, 'https://ror.org/03wzeak38', 'en', 1, 'https://ror.org/03wzeak38 Institute of Nutrition of Central America and Panama Instituto de Nutrición de Centro América y Panamá'), (8292, 'https://ror.org/03x1cjm87', 'en', 1, 'https://ror.org/03x1cjm87 Population Services International'), (8293, 'https://ror.org/03x3mpp61', 'en', 1, 'https://ror.org/03x3mpp61 Indian Grassland and Fodder Research Institute'), (8294, 'https://ror.org/03x510769', 'en', 1, 'https://ror.org/03x510769 Recovery Consultants of Atlanta'), (8295, 'https://ror.org/03x9xd924', 'en', 1, 'https://ror.org/03x9xd924 Consortium GARR'), (8296, 'https://ror.org/03xab3392', 'no_lang_code', 1, 'https://ror.org/03xab3392 PSIwebware (United States)'), (8297, 'https://ror.org/03xcn0p72', 'en', 1, 'https://ror.org/03xcn0p72 Institute of Himalayan Bioresource Technology'), (8298, 'https://ror.org/03xddgg98', 'en', 1, 'https://ror.org/03xddgg98 Instituto Mexicano del Seguro Social Mexican Social Security Institute'), (8299, 'https://ror.org/03xey5e12', 'en', 1, 'https://ror.org/03xey5e12 Human Resources Research Organization'), (8300, 'https://ror.org/03xf9c316', 'no_lang_code', 1, 'https://ror.org/03xf9c316 NanoSonic (United States)'), (8301, 'https://ror.org/03xgnzp28', 'en', 1, 'https://ror.org/03xgnzp28 Colorado Center for Bone Research'), (8302, 'https://ror.org/03xha5352', 'no_lang_code', 1, 'https://ror.org/03xha5352 Carl Zeiss (United Kingdom)'), (8303, 'https://ror.org/03xm3wq50', 'no_lang_code', 1, 'https://ror.org/03xm3wq50 Doctors Company (United States)'), (8304, 'https://ror.org/03xm51a29', 'no_lang_code', 1, 'https://ror.org/03xm51a29 Electrovaya (Canada)'), (8305, 'https://ror.org/03xmkea05', 'en', 1, 'https://ror.org/03xmkea05 Applied Science and Technology Research Institute'), (8306, 'https://ror.org/03xndpk42', 'no_lang_code', 1, 'https://ror.org/03xndpk42 NexTalk (United States)'), (8307, 'https://ror.org/03xpd8a12', 'no_lang_code', 1, 'https://ror.org/03xpd8a12 MédiMabs (Canada)'), (8308, 'https://ror.org/03xpwxy65', 'no_lang_code', 1, 'https://ror.org/03xpwxy65 DiaMedica (Canada)'), (8309, 'https://ror.org/03xq12h43', 'en', 1, 'https://ror.org/03xq12h43 Institute of Noetic Sciences'), (8310, 'https://ror.org/03xr1d353', 'no_lang_code', 1, 'https://ror.org/03xr1d353 BioLinx (United States)'), (8311, 'https://ror.org/03xs15s33', 'es', 1, 'https://ror.org/03xs15s33 Comisión Honoraria de Lucha contra el cáncer'), (8312, 'https://ror.org/03xs9yg50', 'en', 1, 'https://ror.org/03xs9yg50 Rural Development Administration'), (8313, 'https://ror.org/03xtz2n86', 'en', 1, 'https://ror.org/03xtz2n86 European Society for Medical Oncology'), (8314, 'https://ror.org/03xwja043', 'no_lang_code', 1, 'https://ror.org/03xwja043 Pacific Design Technologies (United States)'), (8315, 'https://ror.org/03xwv0k70', 'es', 1, 'https://ror.org/03xwv0k70 Institute of Ocular Microsurgery Instituto de Microcirugía Ocular'), (8316, 'https://ror.org/03xwzwa59', 'en', 1, 'https://ror.org/03xwzwa59 Behavior Therapy Associates'), (8317, 'https://ror.org/03y122s09', 'en', 1, 'https://ror.org/03y122s09 Tropical Diseases Research Centre'), (8318, 'https://ror.org/03y3f2317', 'no_lang_code', 1, 'https://ror.org/03y3f2317 Daniel H. Wagner Associates (United States)'), (8319, 'https://ror.org/03y3pdm07', 'en', 1, 'https://ror.org/03y3pdm07 Veterans Biomedical Research Institute'), (8320, 'https://ror.org/03y3xcd57', 'no_lang_code', 1, 'https://ror.org/03y3xcd57 Acadian Seaplants (Canada)'), (8321, 'https://ror.org/03y756411', 'no_lang_code', 1, 'https://ror.org/03y756411 Pulse Biosciences (United States)'), (8322, 'https://ror.org/03y76pe29', 'no_lang_code', 1, 'https://ror.org/03y76pe29 Albany Molecular Research (United States)'), (8323, 'https://ror.org/03y7h1693', 'en', 1, 'https://ror.org/03y7h1693 Kinderwunsch Zentrum Linz Women''s General Hospital'), (8324, 'https://ror.org/03y7ycy60', 'sv', 1, 'https://ror.org/03y7ycy60 Norra Älvsborgs Länssjukhus Northern Älvsborg county hospital'), (8325, 'https://ror.org/03y98mn81', 'no_lang_code', 1, 'https://ror.org/03y98mn81 L.B. Foster Rail Technologies (Canada)'), (8326, 'https://ror.org/03ya6pd97', 'no_lang_code', 1, 'https://ror.org/03ya6pd97 PDL BioPharma (United States)'), (8327, 'https://ror.org/03yab7k30', 'no_lang_code', 1, 'https://ror.org/03yab7k30 Cell2B (Portugal)'), (8328, 'https://ror.org/03yb78887', 'en', 1, 'https://ror.org/03yb78887 Specialised Hospital for Active Treatment of Oncology Специализираната Болница за Активно лечение по Онкология'), (8329, 'https://ror.org/03ybc3s94', 'en', 1, 'https://ror.org/03ybc3s94 Maria Mitchell Association'), (8330, 'https://ror.org/03ycef978', 'en', 1, 'https://ror.org/03ycef978 Wordsley Hospital'), (8331, 'https://ror.org/03ycpex79', 'en', 1, 'https://ror.org/03ycpex79 Beijing Red Cross Blood Center'), (8332, 'https://ror.org/03ydekn03', 'no_lang_code', 1, 'https://ror.org/03ydekn03 Fukui CardioVascular Center 医療法人 福井心臓血圧センター 福井循環器病院'), (8333, 'https://ror.org/03yebgx31', 'no_lang_code', 1, 'https://ror.org/03yebgx31 AbleNet (United States)'), (8334, 'https://ror.org/03yfgnq74', 'no_lang_code', 1, 'https://ror.org/03yfgnq74 Summit (United Kingdom)'), (8335, 'https://ror.org/03yjg6e54', 'no_lang_code', 1, 'https://ror.org/03yjg6e54 Motion Control (United States)'), (8336, 'https://ror.org/03ymtp346', 'no_lang_code', 1, 'https://ror.org/03ymtp346 Insight Genetics (United States)'), (8337, 'https://ror.org/03yp8z857', 'en', 1, 'https://ror.org/03yp8z857 University of Missouri Health System'), (8338, 'https://ror.org/03ypdje89', 'fr', 1, 'https://ror.org/03ypdje89 Centre de Santé et de Services Sociaux Cavendish'), (8339, 'https://ror.org/03yr0pg70', 'en', 1, 'https://ror.org/03yr0pg70 Biomedical Research Institute'), (8340, 'https://ror.org/03yr6s895', 'no_lang_code', 1, 'https://ror.org/03yr6s895 Genomas (United States)'), (8341, 'https://ror.org/03yr8h660', 'no_lang_code', 1, 'https://ror.org/03yr8h660 E.ON (United Kingdom)'), (8342, 'https://ror.org/03yshc124', 'en', 1, 'https://ror.org/03yshc124 Employee Benefit Research Institute'), (8343, 'https://ror.org/03yt1ez60', 'no_lang_code', 1, 'https://ror.org/03yt1ez60 Cisco Systems (United States)'), (8344, 'https://ror.org/03ytdtb31', 'no_lang_code', 1, 'https://ror.org/03ytdtb31 Sanofi (Germany)'), (8345, 'https://ror.org/03yvcsz89', 'en', 1, 'https://ror.org/03yvcsz89 Arizona Department of Education'), (8346, 'https://ror.org/03yx6z589', 'en', 1, 'https://ror.org/03yx6z589 American Society of International Law'), (8347, 'https://ror.org/03yxyad36', 'no_lang_code', 1, 'https://ror.org/03yxyad36 ABS Consulting (United States)'), (8348, 'https://ror.org/03yzb9c23', 'no_lang_code', 1, 'https://ror.org/03yzb9c23 ProThera Biologics (United States)'), (8349, 'https://ror.org/03z0x0n35', 'no_lang_code', 1, 'https://ror.org/03z0x0n35 Pharmaceutical Formulations (United States)'), (8350, 'https://ror.org/03z23rf32', 'pl', 1, 'https://ror.org/03z23rf32 Instytut Ekspertyz Sądowych'), (8351, 'https://ror.org/03z50d035', 'no_lang_code', 1, 'https://ror.org/03z50d035 Actuated Medical (United States)'), (8352, 'https://ror.org/03z5px561', 'en', 1, 'https://ror.org/03z5px561 Center for Occupational and Environmental Neurology'), (8353, 'https://ror.org/03z5xhq25', 'no_lang_code', 1, 'https://ror.org/03z5xhq25 FHC (United States)'), (8354, 'https://ror.org/03z6z3n38', 'en', 1, 'https://ror.org/03z6z3n38 VA Loma Linda Healthcare System'), (8355, 'https://ror.org/03z9p8659', 'no_lang_code', 1, 'https://ror.org/03z9p8659 Accelopment (Switzerland)'), (8356, 'https://ror.org/03zd4p313', 'en', 1, 'https://ror.org/03zd4p313 Norwich Community Hospital'), (8357, 'https://ror.org/03zd7qx32', 'cs', 1, 'https://ror.org/03zd7qx32 Institute for the Care of Mother and Child Ústav pro Péči o Matku a Dítě'), (8358, 'https://ror.org/03zg6y353', 'en', 1, 'https://ror.org/03zg6y353 American Enterprise Institute'), (8359, 'https://ror.org/03zgwe847', 'en', 1, 'https://ror.org/03zgwe847 Kaiser Family Foundation'), (8360, 'https://ror.org/03zhmy467', 'en', 1, 'https://ror.org/03zhmy467 San Gallicano Hospital'), (8361, 'https://ror.org/03zhs1016', 'no_lang_code', 1, 'https://ror.org/03zhs1016 Primorigen Biosciences (United States)'), (8362, 'https://ror.org/03zj0ps89', 'en', 1, 'https://ror.org/03zj0ps89 Vardhman Mahavir Medical College & Safdarjung Hospital वर्धमान महावीर मेडिकल कॉलेज और सफदरजंग अस्पताल'), (8363, 'https://ror.org/03zk93y09', 'no_lang_code', 1, 'https://ror.org/03zk93y09 Gaudenzia (United States)'), (8364, 'https://ror.org/03zk9v026', 'en', 1, 'https://ror.org/03zk9v026 Sutter Medical Center'), (8365, 'https://ror.org/03zkyqa82', 'no_lang_code', 1, 'https://ror.org/03zkyqa82 SeaStar Solutions (Canada)'), (8366, 'https://ror.org/03zm9zy91', 'no_lang_code', 1, 'https://ror.org/03zm9zy91 MayaTech (United States)'), (8367, 'https://ror.org/03zpeyw73', 'en', 1, 'https://ror.org/03zpeyw73 The Society for Post-Acute and Long-Term Care Medicine'), (8368, 'https://ror.org/03zpmpz54', 'en', 1, 'https://ror.org/03zpmpz54 Twin Cities Spine Center'), (8369, 'https://ror.org/03zqwq749', 'no_lang_code', 1, 'https://ror.org/03zqwq749 ID-FISH Technology (United States)'), (8370, 'https://ror.org/03zry8t95', 'en', 1, 'https://ror.org/03zry8t95 National Business Group on Health'), (8371, 'https://ror.org/03zsdhz84', 'no_lang_code', 1, 'https://ror.org/03zsdhz84 LabCorp (United States)'), (8372, 'https://ror.org/03zsmr311', 'no_lang_code', 1, 'https://ror.org/03zsmr311 White Design (United Kingdom)'), (8373, 'https://ror.org/03zsq2967', 'en', 1, 'https://ror.org/03zsq2967 Association of Asian Pacific Community Health Organizations'), (8374, 'https://ror.org/03zsxwj64', 'en', 1, 'https://ror.org/03zsxwj64 Royal Society of Arts'), (8375, 'https://ror.org/03ztsz823', 'sk', 1, 'https://ror.org/03ztsz823 Ocná klinika'), (8376, 'https://ror.org/03zxtdc90', 'es', 1, 'https://ror.org/03zxtdc90 Centro Nacional de Investigaciones Científicas'), (8377, 'https://ror.org/03zzyhb42', 'en', 1, 'https://ror.org/03zzyhb42 Laser and Skin Surgery Center of New York'), (8378, 'https://ror.org/0400czs74', 'no_lang_code', 1, 'https://ror.org/0400czs74 Vivonics (United States)'), (8379, 'https://ror.org/0401p8597', 'en', 1, 'https://ror.org/0401p8597 Withington Community Hospital'), (8380, 'https://ror.org/0402h1193', 'no_lang_code', 1, 'https://ror.org/0402h1193 Hiden Analytical (United Kingdom)'), (8381, 'https://ror.org/0402pb169', 'en', 1, 'https://ror.org/0402pb169 Institution of Civil Engineers'), (8382, 'https://ror.org/0403qcr87', 'en', 1, 'https://ror.org/0403qcr87 Asian Institute of Technology สถาบันเทคโนโลยีแห่งเอเชีย'), (8383, 'https://ror.org/0404v4f94', 'it', 1, 'https://ror.org/0404v4f94 Cassa di Risparmio in Bologna'), (8384, 'https://ror.org/0405c6r31', 'en', 1, 'https://ror.org/0405c6r31 College Board'), (8385, 'https://ror.org/0405trq15', 'en', 1, 'https://ror.org/0405trq15 Institute of Environmental Science and Research'), (8386, 'https://ror.org/04072nk43', 'en', 1, 'https://ror.org/04072nk43 Human Media'), (8387, 'https://ror.org/0407e4e37', 'pl', 1, 'https://ror.org/0407e4e37 Instytut Zywnosci Zywienia National Food and Nutrition Institute'), (8388, 'https://ror.org/0407ex783', 'en', 1, 'https://ror.org/0407ex783 National Organization for Drug Control and Research'), (8389, 'https://ror.org/0408mbg90', 'en', 1, 'https://ror.org/0408mbg90 Electrochemical Society'), (8390, 'https://ror.org/040dd7568', 'en', 1, 'https://ror.org/040dd7568 Arthritis and Rheumatology Clinics of Kansas'), (8391, 'https://ror.org/040dky007', 'en', 1, 'https://ror.org/040dky007 Indian Institute of Chemical Technology ఇండియన్ ఇనిస్టిట్యూట్ ఆఫ్ కెమికల్ టెక్నాలజీ ഇന്ത്യൻ ഇൻസ്ററിററ്യൂട്ട് ഓഫ് കെമിക്കൽ ടെക്നോളജി, ഹൈദ്രബാദ്'), (8392, 'https://ror.org/040dxse86', 'en', 1, 'https://ror.org/040dxse86 National Institute of Rheumatic Diseases'), (8393, 'https://ror.org/040e0d212', 'en', 1, 'https://ror.org/040e0d212 Tuscaloosa VA Medical Center'), (8394, 'https://ror.org/040fscg47', 'en', 1, 'https://ror.org/040fscg47 Texas Orthopedic Hospital'), (8395, 'https://ror.org/040fwvd70', 'en', 1, 'https://ror.org/040fwvd70 Little Big Horn College'), (8396, 'https://ror.org/040g9jc92', 'en', 1, 'https://ror.org/040g9jc92 Serving Children and Adults in Need'), (8397, 'https://ror.org/040hka494', 'fr', 1, 'https://ror.org/040hka494 Cegep de Matane, Cégep de matane'), (8398, 'https://ror.org/040ktyf25', 'no_lang_code', 1, 'https://ror.org/040ktyf25 JP Laboratories (United States)'), (8399, 'https://ror.org/040qebh26', 'en', 1, 'https://ror.org/040qebh26 Kirklees Council'), (8400, 'https://ror.org/040s79h05', 'no_lang_code', 1, 'https://ror.org/040s79h05 Cenergia (Denmark)'), (8401, 'https://ror.org/040s7at76', 'en', 1, 'https://ror.org/040s7at76 Hackensack University Medical Center at Pascack Valley'), (8402, 'https://ror.org/040ty4453', 'en', 1, 'https://ror.org/040ty4453 Mount St. Mary''s University'), (8403, 'https://ror.org/040w4gz36', 'en', 1, 'https://ror.org/040w4gz36 Yukon University'), (8404, 'https://ror.org/040wrkp27', 'en', 1, 'https://ror.org/040wrkp27 Institute of Biomedical Chemistry Научно-исследовательский институт биомедицинской химии имени В.Н. Ореховича'), (8405, 'https://ror.org/040ztay26', 'en', 1, 'https://ror.org/040ztay26 Greenville Technical College'), (8406, 'https://ror.org/0411byy62', 'nl', 1, 'https://ror.org/0411byy62 AZ Sint-Blasius'), (8407, 'https://ror.org/0411v1p84', 'no_lang_code', 1, 'https://ror.org/0411v1p84 Estée Lauder (United States)'), (8408, 'https://ror.org/0412gk840', 'en', 1, 'https://ror.org/0412gk840 Peterson & Smith Equine Hospital'), (8409, 'https://ror.org/0413dyq61', 'no_lang_code', 1, 'https://ror.org/0413dyq61 Expression Therapeutics (United States)'), (8410, 'https://ror.org/0413xn342', 'en', 1, 'https://ror.org/0413xn342 Houston Advanced Research Center'), (8411, 'https://ror.org/04154pe94', 'en', 1, 'https://ror.org/04154pe94 Kanagawa Cardiovascular and Respiratory Center 神奈川県立循環器呼吸器病センター'), (8412, 'https://ror.org/0416mbc73', 'en', 1, 'https://ror.org/0416mbc73 College of Physicians of Philadelphia'), (8413, 'https://ror.org/04172mv97', 'en', 1, 'https://ror.org/04172mv97 Association For Women in Mathematics'), (8414, 'https://ror.org/041841277', 'en', 1, 'https://ror.org/041841277 Iolani School'), (8415, 'https://ror.org/0418mwz44', 'no_lang_code', 1, 'https://ror.org/0418mwz44 Petro Geotech (Canada)'), (8416, 'https://ror.org/0418y1915', 'no_lang_code', 1, 'https://ror.org/0418y1915 Photonic BioSystems (United States)'), (8417, 'https://ror.org/0418yqg16', 'en', 1, 'https://ror.org/0418yqg16 National Institute of Pharmaceutical Education and Research नेशनल इंस्टिट्यूट ऑफ फार्मास्यूटिकल एजुकेशन एंड रिसर्च నేషనల్ ఇన్స్టిట్యూట్ ఆఫ్ ఫార్మస్యూటికల్ ఎడ్యుకేషన్'), (8418, 'https://ror.org/0419gy550', 'no_lang_code', 1, 'https://ror.org/0419gy550 Minamiaoyama Eye Clinic 南青山アイクリニック'), (8419, 'https://ror.org/041d00r55', 'en', 1, 'https://ror.org/041d00r55 Galveston College'), (8420, 'https://ror.org/041d9vd15', 'en', 1, 'https://ror.org/041d9vd15 Her Majesty''s Government Communications Centre'), (8421, 'https://ror.org/041ehbk97', 'no_lang_code', 1, 'https://ror.org/041ehbk97 Cambrian Innovation (United States)'), (8422, 'https://ror.org/041g66k42', 'no_lang_code', 1, 'https://ror.org/041g66k42 ImmuneChem (Canada)'), (8423, 'https://ror.org/041jk5w53', 'en', 1, 'https://ror.org/041jk5w53 Otto Wagner Hospital Otto Wagner Spital'), (8424, 'https://ror.org/041jmaw90', 'en', 1, 'https://ror.org/041jmaw90 San Juan College'), (8425, 'https://ror.org/041jswc25', 'en', 1, 'https://ror.org/041jswc25 Central Research Institute of Electric Power Industry 電力中央研究所'), (8426, 'https://ror.org/041m74w67', 'en', 1, 'https://ror.org/041m74w67 Wellborn Road Veterinary Medical Center'), (8427, 'https://ror.org/041np7397', 'no_lang_code', 1, 'https://ror.org/041np7397 SolPowered Energy Corporation (Canada)'), (8428, 'https://ror.org/041tfc254', 'no_lang_code', 1, 'https://ror.org/041tfc254 Comply (United States)'), (8429, 'https://ror.org/041xnf417', 'en', 1, 'https://ror.org/041xnf417 Audubon Nature Institute'), (8430, 'https://ror.org/041yet549', 'en', 1, 'https://ror.org/041yet549 Community Health Action of Staten Island'), (8431, 'https://ror.org/0420yf673', 'en', 1, 'https://ror.org/0420yf673 Whatcom Community College'), (8432, 'https://ror.org/0421dgn24', 'en', 1, 'https://ror.org/0421dgn24 Taipei Municipal Women and Children''s Hospital'), (8433, 'https://ror.org/0421jm542', 'no_lang_code', 1, 'https://ror.org/0421jm542 MagMutual (United States)'), (8434, 'https://ror.org/0423jvm15', 'en', 1, 'https://ror.org/0423jvm15 Upton Hospital'), (8435, 'https://ror.org/04244wn07', 'en', 1, 'https://ror.org/04244wn07 Nutrition Foundation of India'), (8436, 'https://ror.org/0424g0k78', 'it', 1, 'https://ror.org/0424g0k78 Istituto Giannina Gaslini'), (8437, 'https://ror.org/04254kj61', 'en', 1, 'https://ror.org/04254kj61 Social Science Education Consortium'), (8438, 'https://ror.org/04255rd16', 'en', 1, 'https://ror.org/04255rd16 Central Remedial Clinic'), (8439, 'https://ror.org/0425pdj49', 'en', 1, 'https://ror.org/0425pdj49 National Institute of Cardiovascular Diseases'), (8440, 'https://ror.org/0427p8a79', 'no_lang_code', 1, 'https://ror.org/0427p8a79 IMMCO Diagnostics (United States)'), (8441, 'https://ror.org/0428qnk54', 'no_lang_code', 1, 'https://ror.org/0428qnk54 W. L. Gore & Associates (United States)'), (8442, 'https://ror.org/042930e44', 'no_lang_code', 1, 'https://ror.org/042930e44 Centrose (United States)'), (8443, 'https://ror.org/042c70y92', 'no_lang_code', 1, 'https://ror.org/042c70y92 Fujimoto Pharmaceutical Corporation (Japan)'), (8444, 'https://ror.org/042dhbd43', 'en', 1, 'https://ror.org/042dhbd43 Southwestern College - California'), (8445, 'https://ror.org/042eghf65', 'en', 1, 'https://ror.org/042eghf65 North Carolina Institute of Medicine'), (8446, 'https://ror.org/042few790', 'en', 1, 'https://ror.org/042few790 Département de la protection de l''environnement du new jersey New Jersey Department of Environmental Protection'), (8447, 'https://ror.org/042fn4q48', 'en', 1, 'https://ror.org/042fn4q48 Bismarck State College'), (8448, 'https://ror.org/042hae950', 'no_lang_code', 1, 'https://ror.org/042hae950 Molecules for Health (United States)'), (8449, 'https://ror.org/042j06y04', 'no_lang_code', 1, 'https://ror.org/042j06y04 Nikon (United Kingdom)'), (8450, 'https://ror.org/042j5ge28', 'no_lang_code', 1, 'https://ror.org/042j5ge28 Global Vaccines (United States)'), (8451, 'https://ror.org/042jh0r75', 'no_lang_code', 1, 'https://ror.org/042jh0r75 Imaging Systems Technology (United States)'), (8452, 'https://ror.org/042jpy919', 'pt', 1, 'https://ror.org/042jpy919 Centro Hospitalar de Vila Nova de Gaia'), (8453, 'https://ror.org/042q5aq71', 'no_lang_code', 1, 'https://ror.org/042q5aq71 BiologicsMD (United States)'), (8454, 'https://ror.org/042qbkd11', 'fr', 1, 'https://ror.org/042qbkd11 ADERSE, Association pour le Développement de l''Enseignement et de la Recherche sur la Responsabilité Sociale de l''Entreprise Association for the Development of Education and Research on Corporate Social Responsibility'), (8455, 'https://ror.org/042sjqp29', 'en', 1, 'https://ror.org/042sjqp29 Tanana Chiefs Conference'), (8456, 'https://ror.org/042ssp221', 'en', 1, 'https://ror.org/042ssp221 Methodist Rehabilitation Center'), (8457, 'https://ror.org/042tmwe79', 'no_lang_code', 1, 'https://ror.org/042tmwe79 Virtual Centre of Excellence In Mobile and Personal Communications'), (8458, 'https://ror.org/042x6s220', 'no_lang_code', 1, 'https://ror.org/042x6s220 HTG Molecular Diagnostics (United States)'), (8459, 'https://ror.org/0431cb905', 'pl', 1, 'https://ror.org/0431cb905 Instytut Gruźlicy i Chorób Płuc'), (8460, 'https://ror.org/0431mgz06', 'en', 1, 'https://ror.org/0431mgz06 Southern California Institute for Research and Education'), (8461, 'https://ror.org/0432hdr79', 'fr', 1, 'https://ror.org/0432hdr79 Cégep Garneau'), (8462, 'https://ror.org/0432wt807', 'en', 1, 'https://ror.org/0432wt807 San Dieguito Alliance'), (8463, 'https://ror.org/0433qgv28', 'en', 1, 'https://ror.org/0433qgv28 Wisconsin Medical Society'), (8464, 'https://ror.org/0434dpa13', 'no_lang_code', 1, 'https://ror.org/0434dpa13 Decision Systems (United States)'), (8465, 'https://ror.org/04363qc87', 'no_lang_code', 1, 'https://ror.org/04363qc87 Auxagen (United States)'), (8466, 'https://ror.org/0437r6x66', 'no_lang_code', 1, 'https://ror.org/0437r6x66 Tottori Prefectural Central Hospital 鳥取県立中央病院'), (8467, 'https://ror.org/043953r63', 'en', 1, 'https://ror.org/043953r63 Auburn School District'), (8468, 'https://ror.org/043a93608', 'no_lang_code', 1, 'https://ror.org/043a93608 Oceans Limited (Canada)'), (8469, 'https://ror.org/043bhwh19', 'it', 1, 'https://ror.org/043bhwh19 Istituto Nazionale Biostrutture e Biosistemi'), (8470, 'https://ror.org/043ccws83', 'en', 1, 'https://ror.org/043ccws83 American Society for Neurochemistry'), (8471, 'https://ror.org/043cec594', 'no_lang_code', 1, 'https://ror.org/043cec594 AstraZeneca (United States)'), (8472, 'https://ror.org/043cx5970', 'en', 1, 'https://ror.org/043cx5970 Glynn Hospitality Group'), (8473, 'https://ror.org/043es1b40', 'en', 1, 'https://ror.org/043es1b40 Technological Assistance Institute for Intellectual Disability'), (8474, 'https://ror.org/043f04882', 'en', 1, 'https://ror.org/043f04882 Institute of Mathematical Statistics'), (8475, 'https://ror.org/043fzsj95', 'en', 1, 'https://ror.org/043fzsj95 Spring Hill College'), (8476, 'https://ror.org/043h2ky09', 'no_lang_code', 1, 'https://ror.org/043h2ky09 Precigen (United States)'), (8477, 'https://ror.org/043j17q40', 'en', 1, 'https://ror.org/043j17q40 San Antonio State Chest Hospital'), (8478, 'https://ror.org/043j3s676', 'en', 1, 'https://ror.org/043j3s676 Fetal Medicine Foundation of America'), (8479, 'https://ror.org/043j90n04', 'en', 1, 'https://ror.org/043j90n04 MRC Prion Unit'), (8480, 'https://ror.org/043q2sq69', 'no_lang_code', 1, 'https://ror.org/043q2sq69 Isto Biologics (United States)'), (8481, 'https://ror.org/043qn6y55', 'no_lang_code', 1, 'https://ror.org/043qn6y55 OPKO Health (Canada)'), (8482, 'https://ror.org/043tf3791', 'en', 1, 'https://ror.org/043tf3791 Washington Educational Telecommunications Association'), (8483, 'https://ror.org/043xmyg25', 'en', 1, 'https://ror.org/043xmyg25 Murray State College'), (8484, 'https://ror.org/043y3sk06', 'en', 1, 'https://ror.org/043y3sk06 Ohio Heart & Vascular Center'), (8485, 'https://ror.org/043z1y058', 'no_lang_code', 1, 'https://ror.org/043z1y058 atesio (Germany)'), (8486, 'https://ror.org/04410kq54', 'en', 1, 'https://ror.org/04410kq54 Society for Neuroscience'), (8487, 'https://ror.org/0442wxc77', 'no_lang_code', 1, 'https://ror.org/0442wxc77 STMicroelectronics (United Kingdom)'), (8488, 'https://ror.org/0445at860', 'it', 1, 'https://ror.org/0445at860 Istituto Zooprofilattico Sperimentale dell''Umbria e delle Marche'), (8489, 'https://ror.org/0445tpa77', 'no_lang_code', 1, 'https://ror.org/0445tpa77 Institute of Bioengineering Technologies (United States)'), (8490, 'https://ror.org/0445x0472', 'en', 1, 'https://ror.org/0445x0472 Centre de recherches pour le développement international International Development Research Centre'), (8491, 'https://ror.org/04461gd92', 'en', 1, 'https://ror.org/04461gd92 Salmaniya Medical Complex مجمع السلمانية الطبي'), (8492, 'https://ror.org/04462nt90', 'no_lang_code', 1, 'https://ror.org/04462nt90 Ross Laboratories (United States)'), (8493, 'https://ror.org/0448gbh81', 'en', 1, 'https://ror.org/0448gbh81 International Epidemiology Institute'), (8494, 'https://ror.org/0449h4696', 'en', 1, 'https://ror.org/0449h4696 Graduate School Neurosciences Amsterdam Rotterdam'), (8495, 'https://ror.org/0449k9183', 'tr', 1, 'https://ror.org/0449k9183 Turgut Ozal Medical Center Turgut Özal Tıp Merkezi'), (8496, 'https://ror.org/044bp3769', 'no_lang_code', 1, 'https://ror.org/044bp3769 United Biomedical (United States)'), (8497, 'https://ror.org/044bsy795', 'en', 1, 'https://ror.org/044bsy795 Insall Scott Kelly Institute'), (8498, 'https://ror.org/044cqax96', 'no_lang_code', 1, 'https://ror.org/044cqax96 Helicos Biosciences (United States)'), (8499, 'https://ror.org/044g3zk14', 'en', 1, 'https://ror.org/044g3zk14 Max Planck Institute for Plant Breeding Research Max-Planck-Institut für Pflanzenzüchtungsforschung'), (8500, 'https://ror.org/044gv5910', 'en', 1, 'https://ror.org/044gv5910 Institute of Statistical Science, Academia Sinica 中央研究院 統計科學研究所'), (8501, 'https://ror.org/044jp1563', 'no_lang_code', 1, 'https://ror.org/044jp1563 Analysis Group (United States)'), (8502, 'https://ror.org/044k1pg15', 'no_lang_code', 1, 'https://ror.org/044k1pg15 Cynosure (United States)'), (8503, 'https://ror.org/044m46d61', 'en', 1, 'https://ror.org/044m46d61 Technological Educational Institute of Athens Τεχνολογικό Εκπαιδευτικό Ίδρυμα Αθήνας'), (8504, 'https://ror.org/044n33410', 'fr', 1, 'https://ror.org/044n33410 Association Française de Normalisation'), (8505, 'https://ror.org/044p9gt09', 'no_lang_code', 1, 'https://ror.org/044p9gt09 MEG-3 (Canada)'), (8506, 'https://ror.org/044pzyk69', 'en', 1, 'https://ror.org/044pzyk69 North American Vascular Biology Organization'), (8507, 'https://ror.org/044t9d979', 'en', 1, 'https://ror.org/044t9d979 Substance Abuse Foundation'), (8508, 'https://ror.org/044tz3m61', 'en', 1, 'https://ror.org/044tz3m61 Austin Community College'), (8509, 'https://ror.org/044xrc068', 'en', 1, 'https://ror.org/044xrc068 Toronto Centre for Phenogenomics'), (8510, 'https://ror.org/044zkrt47', 'en', 1, 'https://ror.org/044zkrt47 National Institute of Health of Thailand สถาบันวิจัยวิทยาศาสตร์สาธารณสุข'), (8511, 'https://ror.org/044zr5266', 'en', 1, 'https://ror.org/044zr5266 Peggy Notebaert Nature Museum'), (8512, 'https://ror.org/04507cg26', 'en', 1, 'https://ror.org/04507cg26 Svenska beredning för medicinsk utvärdering Health Care Swedish Council on Technology Assessment in Health Care'); INSERT INTO `rors` VALUES (8513, 'https://ror.org/04523n645', 'no_lang_code', 1, 'https://ror.org/04523n645 REALITY Publishing (United States)'), (8514, 'https://ror.org/0452q7b74', 'no_lang_code', 1, 'https://ror.org/0452q7b74 Tungs'' Taichung MetroHarbor Hospital 童綜合醫院'), (8515, 'https://ror.org/0453c4485', 'fr', 1, 'https://ror.org/0453c4485 Institut Cardiovasculaire Paris Sud'), (8516, 'https://ror.org/0456p3190', 'no_lang_code', 1, 'https://ror.org/0456p3190 VWR International (United States)'), (8517, 'https://ror.org/0457d9w72', 'en', 1, 'https://ror.org/0457d9w72 National Cancer Center of Georgia'), (8518, 'https://ror.org/0458r0456', 'no_lang_code', 1, 'https://ror.org/0458r0456 RxSight (United States)'), (8519, 'https://ror.org/045bbxm74', 'en', 1, 'https://ror.org/045bbxm74 Tamil Nadu Government Dental College and Hospital'), (8520, 'https://ror.org/045ckq244', 'no_lang_code', 1, 'https://ror.org/045ckq244 Transcendent Endeavors (United States)'), (8521, 'https://ror.org/045dv2h94', 'de', 1, 'https://ror.org/045dv2h94 Klinikum Ludwigsburg'), (8522, 'https://ror.org/045ej2q36', 'en', 1, 'https://ror.org/045ej2q36 Capitol Technology University'), (8523, 'https://ror.org/045hp7z16', 'it', 1, 'https://ror.org/045hp7z16 Società per l’Assistenza al Malato Oncologico Terminale'), (8524, 'https://ror.org/045jb6x14', 'en', 1, 'https://ror.org/045jb6x14 Sundaram Medical Foundation'), (8525, 'https://ror.org/045kj3z89', 'no_lang_code', 1, 'https://ror.org/045kj3z89 Terragon Environmental Technologies (Canada)'), (8526, 'https://ror.org/045mbap50', 'no_lang_code', 1, 'https://ror.org/045mbap50 Twin Star Medical (United States)'), (8527, 'https://ror.org/045nvsg67', 'no_lang_code', 1, 'https://ror.org/045nvsg67 Athena Group (United States)'), (8528, 'https://ror.org/045p13n28', 'no_lang_code', 1, 'https://ror.org/045p13n28 Bossa Nova Technologies (United States)'), (8529, 'https://ror.org/045r85r62', 'no_lang_code', 1, 'https://ror.org/045r85r62 Symbiotech (United States)'), (8530, 'https://ror.org/045rtab03', 'no_lang_code', 1, 'https://ror.org/045rtab03 Amorfix (Canada)'), (8531, 'https://ror.org/045v29b75', 'no_lang_code', 1, 'https://ror.org/045v29b75 Bioo Scientific (United States)'), (8532, 'https://ror.org/045vz2p90', 'no_lang_code', 1, 'https://ror.org/045vz2p90 Intrafinity (Canada)'), (8533, 'https://ror.org/045wcpc71', 'en', 1, 'https://ror.org/045wcpc71 Leicestershire Partnership NHS Trust'), (8534, 'https://ror.org/045xtrm66', 'en', 1, 'https://ror.org/045xtrm66 American Osteopathic Association'), (8535, 'https://ror.org/045zy3z54', 'en', 1, 'https://ror.org/045zy3z54 Lambton College'), (8536, 'https://ror.org/04601vy80', 'en', 1, 'https://ror.org/04601vy80 Al-Ameen College of Pharmacy'), (8537, 'https://ror.org/0460vf117', 'en', 1, 'https://ror.org/0460vf117 Neurosciences Institute'), (8538, 'https://ror.org/0462bbw13', 'no_lang_code', 1, 'https://ror.org/0462bbw13 CorSolutions (United States)'), (8539, 'https://ror.org/04639mh45', 'no_lang_code', 1, 'https://ror.org/04639mh45 ChemMotif (United States)'), (8540, 'https://ror.org/0464edn46', 'en', 1, 'https://ror.org/0464edn46 King''s College - Pennsylvania'), (8541, 'https://ror.org/0464y8713', 'no_lang_code', 1, 'https://ror.org/0464y8713 Trinity Investments (Japan)'), (8542, 'https://ror.org/04657zp85', 'no_lang_code', 1, 'https://ror.org/04657zp85 Optivia Biotechnology (United States)'), (8543, 'https://ror.org/0466ddw04', 'no_lang_code', 1, 'https://ror.org/0466ddw04 PRP Architects (United Kingdom)'), (8544, 'https://ror.org/0466fwq98', 'en', 1, 'https://ror.org/0466fwq98 St. Mary Medical Center'), (8545, 'https://ror.org/04679fh62', 'en', 1, 'https://ror.org/04679fh62 Lake Erie College of Osteopathic Medicine'), (8546, 'https://ror.org/04681ap34', 'en', 1, 'https://ror.org/04681ap34 Indiana Hand to Shoulder Center'), (8547, 'https://ror.org/0468k6j36', 'en', 1, 'https://ror.org/0468k6j36 Institute of Psychiatry and Neurology'), (8548, 'https://ror.org/0468mqv58', 'no_lang_code', 1, 'https://ror.org/0468mqv58 URS Corporation (United Kingdom)'), (8549, 'https://ror.org/046bfkz44', 'it', 1, 'https://ror.org/046bfkz44 Cefriel'), (8550, 'https://ror.org/046dm7t24', 'en', 1, 'https://ror.org/046dm7t24 Cumberland Infirmary'), (8551, 'https://ror.org/046fq2b74', 'en', 1, 'https://ror.org/046fq2b74 Healthcare Financial Management Association'), (8552, 'https://ror.org/046jf3z18', 'no_lang_code', 1, 'https://ror.org/046jf3z18 Micro Magnetics (United States)'), (8553, 'https://ror.org/046km1t51', 'no_lang_code', 1, 'https://ror.org/046km1t51 SABMiller (United Kingdom)'), (8554, 'https://ror.org/046q1p146', 'en', 1, 'https://ror.org/046q1p146 La Clinica del Pueblo'), (8555, 'https://ror.org/046v9f126', 'no_lang_code', 1, 'https://ror.org/046v9f126 Material Sciences (United States)'), (8556, 'https://ror.org/046wvwe48', 'en', 1, 'https://ror.org/046wvwe48 Eden Medical'), (8557, 'https://ror.org/046yyq968', 'en', 1, 'https://ror.org/046yyq968 Defence Research Laboratory रक्षा अनुसंधान प्रयोगशाला'), (8558, 'https://ror.org/046zy3905', 'en', 1, 'https://ror.org/046zy3905 Tzaneion General Hospital'), (8559, 'https://ror.org/047398454', 'no_lang_code', 1, 'https://ror.org/047398454 MWH (United Kingdom)'), (8560, 'https://ror.org/04742vj55', 'en', 1, 'https://ror.org/04742vj55 Cardiff Royal Infirmary'), (8561, 'https://ror.org/0474gs458', 'en', 1, 'https://ror.org/0474gs458 RCSI & UCD Malaysia Campus'), (8562, 'https://ror.org/04770s302', 'en', 1, 'https://ror.org/04770s302 Centro Internacional de Restauración Neurológica International Center of Neurologic Restoration'), (8563, 'https://ror.org/0477qng16', 'no_lang_code', 1, 'https://ror.org/0477qng16 Fox Learning Systems (United States)'), (8564, 'https://ror.org/04780k350', 'no_lang_code', 1, 'https://ror.org/04780k350 PharmaIN (United States)'), (8565, 'https://ror.org/047a9ch09', 'en', 1, 'https://ror.org/047a9ch09 Guangxi Center for Disease Prevention and Control 广西壮族自治区疾病预防控制中心'), (8566, 'https://ror.org/047ae9605', 'en', 1, 'https://ror.org/047ae9605 Taleghani General Hospital بیمارستان طالقانی تهران'), (8567, 'https://ror.org/047c3xe48', 'no_lang_code', 1, 'https://ror.org/047c3xe48 Advanced Imaging Research (United States)'), (8568, 'https://ror.org/047c53f83', 'en', 1, 'https://ror.org/047c53f83 Wuhan Children''s Hospital 武汉市儿童医院'), (8569, 'https://ror.org/047c5ks69', 'en', 1, 'https://ror.org/047c5ks69 Sunny Hill Health Centre for Children'), (8570, 'https://ror.org/047cmjs63', 'en', 1, 'https://ror.org/047cmjs63 Campbellsville University Université de campbellsville'), (8571, 'https://ror.org/047cmqg95', 'en', 1, 'https://ror.org/047cmqg95 Virginia Department of Agriculture and Consumer Services'), (8572, 'https://ror.org/047dcfg79', 'no_lang_code', 1, 'https://ror.org/047dcfg79 Integrated Environmental Solutions (United Kingdom)'), (8573, 'https://ror.org/047jxj944', 'no_lang_code', 1, 'https://ror.org/047jxj944 Vaccinex (United States)'), (8574, 'https://ror.org/047khcd84', 'no_lang_code', 1, 'https://ror.org/047khcd84 Jacobs (United Kingdom)'), (8575, 'https://ror.org/047m7vj12', 'no_lang_code', 1, 'https://ror.org/047m7vj12 InSituTec (United States)'), (8576, 'https://ror.org/047mvza98', 'en', 1, 'https://ror.org/047mvza98 Bangladesh Institute of Research and Rehabilitation for Diabetes Endocrine and Metabolic Disorders বারডেম'), (8577, 'https://ror.org/047mw6m75', 'no_lang_code', 1, 'https://ror.org/047mw6m75 Aerosol Dynamics (United States)'), (8578, 'https://ror.org/047n4ns40', 'en', 1, 'https://ror.org/047n4ns40 Taipei Municipal YangMing Hospital 台北市立阳明医院'), (8579, 'https://ror.org/047na1w09', 'no_lang_code', 1, 'https://ror.org/047na1w09 Patheon (Canada)'), (8580, 'https://ror.org/047pts877', 'no_lang_code', 1, 'https://ror.org/047pts877 Cellecta (United States)'), (8581, 'https://ror.org/047qvvw08', 'en', 1, 'https://ror.org/047qvvw08 Central Forensic Science Laboratory'), (8582, 'https://ror.org/047r3w252', 'no_lang_code', 1, 'https://ror.org/047r3w252 Nano-C (United States)'), (8583, 'https://ror.org/047s1ww61', 'en', 1, 'https://ror.org/047s1ww61 Ise Red Cross Hospital 日本赤十字社 伊勢赤十字病院'), (8584, 'https://ror.org/047s7ag77', 'pt', 1, 'https://ror.org/047s7ag77 Faculdade de Medicina do ABC'), (8585, 'https://ror.org/047tyac06', 'no_lang_code', 1, 'https://ror.org/047tyac06 Wilson Energy (United Kingdom)'), (8586, 'https://ror.org/047wwd089', 'en', 1, 'https://ror.org/047wwd089 Fairmont State University Université d''État de fairmont'), (8587, 'https://ror.org/04804s519', 'no_lang_code', 1, 'https://ror.org/04804s519 MIRA (United Kingdom)'), (8588, 'https://ror.org/0480rm766', 'no_lang_code', 1, 'https://ror.org/0480rm766 NeurOp (United States)'), (8589, 'https://ror.org/0486jtg80', 'no_lang_code', 1, 'https://ror.org/0486jtg80 Chimera Technologies (United States)'), (8590, 'https://ror.org/0488cct49', 'en', 1, 'https://ror.org/0488cct49 Orlando Health'), (8591, 'https://ror.org/0488dyp14', 'fr', 1, 'https://ror.org/0488dyp14 Centre Hospitalier de Cannes'), (8592, 'https://ror.org/0488w7k92', 'no_lang_code', 1, 'https://ror.org/0488w7k92 Targazyme (United States)'), (8593, 'https://ror.org/0489f0s93', 'en', 1, 'https://ror.org/0489f0s93 Institute of Protein Research Федеральное государственное бюджетное учреждение науки Институт белка Российской академии наук'), (8594, 'https://ror.org/048bsds49', 'no_lang_code', 1, 'https://ror.org/048bsds49 Osel (United States)'), (8595, 'https://ror.org/048dt4c25', 'en', 1, 'https://ror.org/048dt4c25 Taipei Municipal Jen-Ai Hospital'), (8596, 'https://ror.org/048g78j50', 'fr', 1, 'https://ror.org/048g78j50 Groupe Hospitalier Intercommunal Le Raincy Montfermeil'), (8597, 'https://ror.org/048n5xe95', 'fr', 1, 'https://ror.org/048n5xe95 Centre d''Enseignement et de Recherches des Industries Alimentaires et Chimiques'), (8598, 'https://ror.org/048p0t707', 'no_lang_code', 1, 'https://ror.org/048p0t707 GenProMarkers (United States)'), (8599, 'https://ror.org/048pv7s22', 'nl', 1, 'https://ror.org/048pv7s22 AZ Maria Middelares'), (8600, 'https://ror.org/048pwcs59', 'en', 1, 'https://ror.org/048pwcs59 Regional Plant Resource Centre'), (8601, 'https://ror.org/048rwjb21', 'en', 1, 'https://ror.org/048rwjb21 Eindhoven Cancer Registry'), (8602, 'https://ror.org/048sjbt91', 'en', 1, 'https://ror.org/048sjbt91 John Hunter Children''s Hospital'), (8603, 'https://ror.org/048vjr484', 'en', 1, 'https://ror.org/048vjr484 Florence Nightingale Museum'), (8604, 'https://ror.org/048w01909', 'no_lang_code', 1, 'https://ror.org/048w01909 Cellex (United States)'), (8605, 'https://ror.org/048w9r832', 'en', 1, 'https://ror.org/048w9r832 Albany Law School Faculté de droit d''albany'), (8606, 'https://ror.org/048wd7x80', 'no_lang_code', 1, 'https://ror.org/048wd7x80 Waters (United Kingdom)'), (8607, 'https://ror.org/048x1b229', 'no_lang_code', 1, 'https://ror.org/048x1b229 Exelus (United States)'), (8608, 'https://ror.org/048xh4t74', 'no_lang_code', 1, 'https://ror.org/048xh4t74 Thermofin (Canada)'), (8609, 'https://ror.org/0490dah44', 'no_lang_code', 1, 'https://ror.org/0490dah44 Epigenomics (Germany)'), (8610, 'https://ror.org/0491c4v30', 'en', 1, 'https://ror.org/0491c4v30 Wildlife Trusts'), (8611, 'https://ror.org/0491h6661', 'no_lang_code', 1, 'https://ror.org/0491h6661 Celerion (Canada)'), (8612, 'https://ror.org/0492sec70', 'en', 1, 'https://ror.org/0492sec70 Western Interstate Commission for Higher Education'), (8613, 'https://ror.org/0492sjc74', 'en', 1, 'https://ror.org/0492sjc74 Max Planck Institute for the History of Science Max-Planck-Institut für Wissenschaftsgeschichte'), (8614, 'https://ror.org/0492zc296', 'en', 1, 'https://ror.org/0492zc296 Richmond Behavioral Health Authority'), (8615, 'https://ror.org/0494qe247', 'en', 1, 'https://ror.org/0494qe247 Canadian Breast Cancer Network'), (8616, 'https://ror.org/0494xx745', 'no_lang_code', 1, 'https://ror.org/0494xx745 wTe Corporation (United States)'), (8617, 'https://ror.org/0497h1m47', 'no_lang_code', 1, 'https://ror.org/0497h1m47 Key Tech (United States)'), (8618, 'https://ror.org/0499qzy56', 'no_lang_code', 1, 'https://ror.org/0499qzy56 Extrel (United States)'), (8619, 'https://ror.org/0499w7e46', 'en', 1, 'https://ror.org/0499w7e46 Kelsey-Seybold Clinic'), (8620, 'https://ror.org/049aafr84', 'no_lang_code', 1, 'https://ror.org/049aafr84 Azevan Pharmaceuticals (United States)'), (8621, 'https://ror.org/049ayz521', 'en', 1, 'https://ror.org/049ayz521 South African Brain Research Institute'), (8622, 'https://ror.org/049b5zq94', 'no_lang_code', 1, 'https://ror.org/049b5zq94 Teledyne Technologies (France)'), (8623, 'https://ror.org/049b6am17', 'no_lang_code', 1, 'https://ror.org/049b6am17 Essex and Suffolk Water (United Kingdom)'), (8624, 'https://ror.org/049bgw803', 'en', 1, 'https://ror.org/049bgw803 Tuality Community Hospital'), (8625, 'https://ror.org/049bv9m09', 'no_lang_code', 1, 'https://ror.org/049bv9m09 Molecular Kinetics (United States)'), (8626, 'https://ror.org/049c4fz76', 'no_lang_code', 1, 'https://ror.org/049c4fz76 Spectrasonics (United States)'), (8627, 'https://ror.org/049gbsq65', 'no_lang_code', 1, 'https://ror.org/049gbsq65 AbsInt (Germany)'), (8628, 'https://ror.org/049hfye85', 'no_lang_code', 1, 'https://ror.org/049hfye85 Acoustic MedSystems (United States)'), (8629, 'https://ror.org/049kbch38', 'en', 1, 'https://ror.org/049kbch38 Cartlann Náisiúnta na hÉireann National Archives'), (8630, 'https://ror.org/049knzm77', 'en', 1, 'https://ror.org/049knzm77 Sturdy Memorial Hospital'), (8631, 'https://ror.org/049mgby18', 'en', 1, 'https://ror.org/049mgby18 National Institute of Child Health'), (8632, 'https://ror.org/049r42y35', 'no_lang_code', 1, 'https://ror.org/049r42y35 Skanska (United Kingdom)'), (8633, 'https://ror.org/049t33881', 'no_lang_code', 1, 'https://ror.org/049t33881 Science Education Solutions (United States)'), (8634, 'https://ror.org/049tcsg76', 'en', 1, 'https://ror.org/049tcsg76 Institute for the Future'), (8635, 'https://ror.org/049tfmr46', 'no_lang_code', 1, 'https://ror.org/049tfmr46 Kelda Group (United Kingdom)'), (8636, 'https://ror.org/049tzhz49', 'en', 1, 'https://ror.org/049tzhz49 Ackerman Academy of Dermatopathology'), (8637, 'https://ror.org/049xm8r65', 'en', 1, 'https://ror.org/049xm8r65 Royal National Institute of Blind'), (8638, 'https://ror.org/049yfvx60', 'no_lang_code', 1, 'https://ror.org/049yfvx60 Yokosuka Kyosai Hospital 横須賀共済病院'), (8639, 'https://ror.org/049yzyv96', 'en', 1, 'https://ror.org/049yzyv96 VA Central Iowa Health Care System'), (8640, 'https://ror.org/049zatd98', 'no_lang_code', 1, 'https://ror.org/049zatd98 Oxford Instruments (United Kingdom)'), (8641, 'https://ror.org/049zx1n75', 'en', 1, 'https://ror.org/049zx1n75 Koo Foundation Sun Yat-Sen Cancer Center'), (8642, 'https://ror.org/04a0qsn58', 'en', 1, 'https://ror.org/04a0qsn58 St. Margaret Memorial Hospital'), (8643, 'https://ror.org/04a0tbx19', 'no_lang_code', 1, 'https://ror.org/04a0tbx19 Environmental Design Solutions Limited (United Kingdom)'), (8644, 'https://ror.org/04a2ebf76', 'no_lang_code', 1, 'https://ror.org/04a2ebf76 FM Technologies (United States)'), (8645, 'https://ror.org/04a2yjk98', 'no_lang_code', 1, 'https://ror.org/04a2yjk98 Lundbeck (United States)'), (8646, 'https://ror.org/04a390q32', 'en', 1, 'https://ror.org/04a390q32 TMJ Association'), (8647, 'https://ror.org/04a5eyp42', 'en', 1, 'https://ror.org/04a5eyp42 Toyama Rosai Hospital 富山労災病院'), (8648, 'https://ror.org/04a5sdn89', 'no_lang_code', 1, 'https://ror.org/04a5sdn89 Magellan BioScience (United States)'), (8649, 'https://ror.org/04a6hmw67', 'no_lang_code', 1, 'https://ror.org/04a6hmw67 Neostem (United States)'), (8650, 'https://ror.org/04a6tv155', 'en', 1, 'https://ror.org/04a6tv155 Bethany College - West Virginia'), (8651, 'https://ror.org/04a7hz119', 'en', 1, 'https://ror.org/04a7hz119 Orange County Bar Foundation'), (8652, 'https://ror.org/04a839673', 'no_lang_code', 1, 'https://ror.org/04a839673 Orkla (Norway)'), (8653, 'https://ror.org/04a8rag37', 'en', 1, 'https://ror.org/04a8rag37 Drug Safety Research Unit'), (8654, 'https://ror.org/04ag73z67', 'no_lang_code', 1, 'https://ror.org/04ag73z67 Waterloo CFD Engineering Consulting'), (8655, 'https://ror.org/04agfm627', 'en', 1, 'https://ror.org/04agfm627 EngenderHealth'), (8656, 'https://ror.org/04ahd9r49', 'no_lang_code', 1, 'https://ror.org/04ahd9r49 Celator Pharmaceuticals (Canada)'), (8657, 'https://ror.org/04akq1s78', 'no_lang_code', 1, 'https://ror.org/04akq1s78 Mound Laser & Photonics Center (United States)'), (8658, 'https://ror.org/04akqfa40', 'no_lang_code', 1, 'https://ror.org/04akqfa40 Chung Hsiao Municipal Hospital'), (8659, 'https://ror.org/04amahm38', 'no_lang_code', 1, 'https://ror.org/04amahm38 ENVIRON (United States)'), (8660, 'https://ror.org/04anb9w92', 'en', 1, 'https://ror.org/04anb9w92 Kronos Longevity Research Institute'), (8661, 'https://ror.org/04anx0s86', 'no_lang_code', 1, 'https://ror.org/04anx0s86 Originus (United States)'), (8662, 'https://ror.org/04aq4w176', 'no_lang_code', 1, 'https://ror.org/04aq4w176 TheraSource (United States)'), (8663, 'https://ror.org/04aty2659', 'en', 1, 'https://ror.org/04aty2659 Moscow State University of Fine Chemical Technologies Московский государственный университет тонких химических технологий имени М. В. Ломоносова'), (8664, 'https://ror.org/04aw6vq52', 'en', 1, 'https://ror.org/04aw6vq52 Texas Back Institute'), (8665, 'https://ror.org/04awqpv94', 'no_lang_code', 1, 'https://ror.org/04awqpv94 Talking Lights (United States)'), (8666, 'https://ror.org/04axb7e79', 'no_lang_code', 1, 'https://ror.org/04axb7e79 Siemens (United States)'), (8667, 'https://ror.org/04b05q786', 'no_lang_code', 1, 'https://ror.org/04b05q786 KineMed (United States)'), (8668, 'https://ror.org/04b1gft39', 'en', 1, 'https://ror.org/04b1gft39 Collège harper Harper College'), (8669, 'https://ror.org/04b1sh213', 'en', 1, 'https://ror.org/04b1sh213 National Institute for Viral Disease Control and Prevention'), (8670, 'https://ror.org/04b33je61', 'no_lang_code', 1, 'https://ror.org/04b33je61 InterScience (United States)'), (8671, 'https://ror.org/04b4sq284', 'no_lang_code', 1, 'https://ror.org/04b4sq284 Collaborative Drug Discovery (United States)'), (8672, 'https://ror.org/04b5pvj95', 'no_lang_code', 1, 'https://ror.org/04b5pvj95 ISCA Technologies (United States)'), (8673, 'https://ror.org/04b5yth62', 'en', 1, 'https://ror.org/04b5yth62 Tokyo Rinkai Hospital 東京臨海病院'), (8674, 'https://ror.org/04b7web15', 'en', 1, 'https://ror.org/04b7web15 Wm. Jennings Bryan Dorn VA Medical Center'), (8675, 'https://ror.org/04b94yv02', 'en', 1, 'https://ror.org/04b94yv02 Fortune Society'), (8676, 'https://ror.org/04bagh120', 'en', 1, 'https://ror.org/04bagh120 Saint George Hospital'), (8677, 'https://ror.org/04bb8wd84', 'fr', 1, 'https://ror.org/04bb8wd84 Institut Océanographique'), (8678, 'https://ror.org/04bbk5g16', 'en', 1, 'https://ror.org/04bbk5g16 International Centre for Infectious Diseases'), (8679, 'https://ror.org/04bcw2e70', 'no_lang_code', 1, 'https://ror.org/04bcw2e70 Ameriprise Financial (United States)'), (8680, 'https://ror.org/04bf30x64', 'en', 1, 'https://ror.org/04bf30x64 Allegheny County'), (8681, 'https://ror.org/04bmzpd39', 'en', 1, 'https://ror.org/04bmzpd39 Pakistan Institute of Nuclear Science and Technology'), (8682, 'https://ror.org/04bqdez48', 'no_lang_code', 1, 'https://ror.org/04bqdez48 Structured Materials Industries (United States)'), (8683, 'https://ror.org/04bqh5m06', 'en', 1, 'https://ror.org/04bqh5m06 National Geographic Society'), (8684, 'https://ror.org/04brs8j34', 'no_lang_code', 1, 'https://ror.org/04brs8j34 Bionetics (United States)'), (8685, 'https://ror.org/04bw2xb41', 'no_lang_code', 1, 'https://ror.org/04bw2xb41 Infotech Soft (United States)'), (8686, 'https://ror.org/04bwfkw08', 'fr', 1, 'https://ror.org/04bwfkw08 Collège Lionel Groulx, Collège lionel-groulx'), (8687, 'https://ror.org/04bxavq22', 'en', 1, 'https://ror.org/04bxavq22 USMMA Alumni Association and Foundation'), (8688, 'https://ror.org/04bxc4617', 'en', 1, 'https://ror.org/04bxc4617 Frédéric Joliot-Curie National Research Institute for Radiobiology and Radiohygiene'), (8689, 'https://ror.org/04byfq980', 'no_lang_code', 1, 'https://ror.org/04byfq980 Nanotek Instruments (United States)'), (8690, 'https://ror.org/04byxyr05', 'en', 1, 'https://ror.org/04byxyr05 Eunice Kennedy Shriver National Institute of Child Health and Human Development'), (8691, 'https://ror.org/04c1def54', 'no_lang_code', 1, 'https://ror.org/04c1def54 ElSohly Laboratories (United States)'), (8692, 'https://ror.org/04c39t964', 'en', 1, 'https://ror.org/04c39t964 Olympic Park Sports Medicine Centre'), (8693, 'https://ror.org/04c3yce28', 'fr', 1, 'https://ror.org/04c3yce28 Centre Hospitalier Le Vinatier'), (8694, 'https://ror.org/04c51sp70', 'en', 1, 'https://ror.org/04c51sp70 Orthopaedic Research of Virginia'), (8695, 'https://ror.org/04c5xat66', 'no_lang_code', 1, 'https://ror.org/04c5xat66 Megger (United Kingdom)'), (8696, 'https://ror.org/04c644459', 'it', 1, 'https://ror.org/04c644459 Israelite Hospital Ospedale Israelitico'), (8697, 'https://ror.org/04c7ypr30', 'en', 1, 'https://ror.org/04c7ypr30 College of the North Atlantic'), (8698, 'https://ror.org/04c91wj10', 'en', 1, 'https://ror.org/04c91wj10 Seattle Institute for Biomedical and Clinical Research'), (8699, 'https://ror.org/04c9pv832', 'de', 1, 'https://ror.org/04c9pv832 Krankenhaus Salem'), (8700, 'https://ror.org/04cd6wt71', 'no_lang_code', 1, 'https://ror.org/04cd6wt71 Kent SeaTech Corporation (United States)'), (8701, 'https://ror.org/04cfb2973', 'en', 1, 'https://ror.org/04cfb2973 Aberdeen City Council'), (8702, 'https://ror.org/04cgfe294', 'no_lang_code', 1, 'https://ror.org/04cgfe294 Lonza (United Kingdom)'), (8703, 'https://ror.org/04ch01631', 'en', 1, 'https://ror.org/04ch01631 Ministry of Social Affairs and Social Services משרד הרווחה והשירותים החברתיים'), (8704, 'https://ror.org/04ch35a22', 'en', 1, 'https://ror.org/04ch35a22 American Society for Nutrition'), (8705, 'https://ror.org/04cheq228', 'en', 1, 'https://ror.org/04cheq228 American College of Gastroenterology'), (8706, 'https://ror.org/04cj8wf50', 'no_lang_code', 1, 'https://ror.org/04cj8wf50 APT Therapeutics (United States)'), (8707, 'https://ror.org/04cjpzj07', 'en', 1, 'https://ror.org/04cjpzj07 Meiho University'), (8708, 'https://ror.org/04cmadr83', 'en', 1, 'https://ror.org/04cmadr83 Okayama Rosai Hospital 岡山労災病院'), (8709, 'https://ror.org/04cmd9g05', 'no_lang_code', 1, 'https://ror.org/04cmd9g05 20/20 GeneSystem (United States)'), (8710, 'https://ror.org/04cn8d339', 'pl', 1, 'https://ror.org/04cn8d339 Krakowskie Centrum Rehabilitacji'), (8711, 'https://ror.org/04cnj4456', 'en', 1, 'https://ror.org/04cnj4456 Parkview Health'), (8712, 'https://ror.org/04cpjyv67', 'en', 1, 'https://ror.org/04cpjyv67 Australian Academy of Technological Sciences and Engineering'), (8713, 'https://ror.org/04cq3yd71', 'no_lang_code', 1, 'https://ror.org/04cq3yd71 Banyan Biomarkers (United States)'), (8714, 'https://ror.org/04ct7vj52', 'en', 1, 'https://ror.org/04ct7vj52 Council for Chemical Research'), (8715, 'https://ror.org/04cv8g472', 'no_lang_code', 1, 'https://ror.org/04cv8g472 Systems Technology (United States)'), (8716, 'https://ror.org/04cxbp585', 'en', 1, 'https://ror.org/04cxbp585 Special Service for Groups'), (8717, 'https://ror.org/04cxn3n47', 'en', 1, 'https://ror.org/04cxn3n47 American Institute of Architects'), (8718, 'https://ror.org/04cxvfq51', 'it', 1, 'https://ror.org/04cxvfq51 CoRiTeL'), (8719, 'https://ror.org/04cxz3q70', 'no_lang_code', 1, 'https://ror.org/04cxz3q70 CarboMer (United States)'), (8720, 'https://ror.org/04cy1f506', 'no_lang_code', 1, 'https://ror.org/04cy1f506 Optimum Therapeutics (United States)'), (8721, 'https://ror.org/04czhsq43', 'es', 1, 'https://ror.org/04czhsq43 Center for Medical Education and Clinical Research Norberto Quirno Centro de Educación Médica e Investigaciones Clínicas Norberto Quirno'), (8722, 'https://ror.org/04d0f7957', 'en', 1, 'https://ror.org/04d0f7957 Association of Public Health Laboratories'), (8723, 'https://ror.org/04d0rfg41', 'en', 1, 'https://ror.org/04d0rfg41 St. Paul''s Hospital'), (8724, 'https://ror.org/04d7p4z08', 'no_lang_code', 1, 'https://ror.org/04d7p4z08 Odyssey Trust'), (8725, 'https://ror.org/04d95rj19', 'en', 1, 'https://ror.org/04d95rj19 Glasgow Science Centre'), (8726, 'https://ror.org/04dbmrm19', 'no_lang_code', 1, 'https://ror.org/04dbmrm19 Bristol-Myers Squibb (Japan) ブリストル・マイヤーズ スクイブ'), (8727, 'https://ror.org/04dc68s79', 'no_lang_code', 1, 'https://ror.org/04dc68s79 Magellan Aerospace (Canada)'), (8728, 'https://ror.org/04deknx22', 'fr', 1, 'https://ror.org/04deknx22 Centre Hospitalier Intercommunal de Villeneuve-Saint-Georges'), (8729, 'https://ror.org/04deyvw92', 'en', 1, 'https://ror.org/04deyvw92 Kestrel Institute'), (8730, 'https://ror.org/04dfe6667', 'en', 1, 'https://ror.org/04dfe6667 Human Gene Therapy Research Institute'), (8731, 'https://ror.org/04dhbjd70', 'no_lang_code', 1, 'https://ror.org/04dhbjd70 SatCon Technology Corporation (United States)'), (8732, 'https://ror.org/04dj5bz65', 'no_lang_code', 1, 'https://ror.org/04dj5bz65 OncoImmune (United States)'), (8733, 'https://ror.org/04djwpq60', 'no_lang_code', 1, 'https://ror.org/04djwpq60 Cellerant Therapeutics (United States)'), (8734, 'https://ror.org/04dkns738', 'no_lang_code', 1, 'https://ror.org/04dkns738 Procter & Gamble (United States)'), (8735, 'https://ror.org/04dm6ed68', 'en', 1, 'https://ror.org/04dm6ed68 Birmingham City Council'), (8736, 'https://ror.org/04dmca004', 'no_lang_code', 1, 'https://ror.org/04dmca004 Vesuvius (United Kingdom)'), (8737, 'https://ror.org/04dq0c560', 'no_lang_code', 1, 'https://ror.org/04dq0c560 IMPCO Technologies (Canada)'), (8738, 'https://ror.org/04dq56617', 'en', 1, 'https://ror.org/04dq56617 Max Planck Institute of Psychiatry Max-Planck-Institut für Psychiatrie'), (8739, 'https://ror.org/04ds2ap82', 'en', 1, 'https://ror.org/04ds2ap82 Vector Control Research Centre'), (8740, 'https://ror.org/04ds6er14', 'pt', 1, 'https://ror.org/04ds6er14 Faculdade Evangélica do Paraná'), (8741, 'https://ror.org/04dxcby13', 'fr', 1, 'https://ror.org/04dxcby13 Centre de Chirurgie Plastique'), (8742, 'https://ror.org/04dxvrs36', 'no_lang_code', 1, 'https://ror.org/04dxvrs36 HemoCleanse (United States)'), (8743, 'https://ror.org/04dzdm737', 'no_lang_code', 1, 'https://ror.org/04dzdm737 deCODE Genetics (Iceland) Íslensk erfðagreining'), (8744, 'https://ror.org/04e13h619', 'no_lang_code', 1, 'https://ror.org/04e13h619 NovaFlux (United States)'), (8745, 'https://ror.org/04e4dw336', 'no_lang_code', 1, 'https://ror.org/04e4dw336 C-Tech Innovation (United Kingdom)'), (8746, 'https://ror.org/04e4jbv10', 'fr', 1, 'https://ror.org/04e4jbv10 Institut de Recherche Robert-Sauvé en Santé et en Sécurité du Travail Occupational Health and Safety Research Institute'), (8747, 'https://ror.org/04e602778', 'en', 1, 'https://ror.org/04e602778 Maryville College'), (8748, 'https://ror.org/04e7jg064', 'no_lang_code', 1, 'https://ror.org/04e7jg064 Pennon Group (United Kingdom)'), (8749, 'https://ror.org/04e8ge149', 'no_lang_code', 1, 'https://ror.org/04e8ge149 Rocky Mountain Bicycles (Canada)'), (8750, 'https://ror.org/04e9wrg64', 'en', 1, 'https://ror.org/04e9wrg64 Collinge and Associates'), (8751, 'https://ror.org/04e9z4a61', 'no_lang_code', 1, 'https://ror.org/04e9z4a61 Zynex (United States)'), (8752, 'https://ror.org/04eb1br47', 'no_lang_code', 1, 'https://ror.org/04eb1br47 Lectenz Bio (United States)'), (8753, 'https://ror.org/04ed5sj24', 'no_lang_code', 1, 'https://ror.org/04ed5sj24 Associated Compiler Experts (Netherlands)'), (8754, 'https://ror.org/04ek06320', 'en', 1, 'https://ror.org/04ek06320 Energy and Resources Institute ஆற்றல் மற்றும் வளங்கள் நிறுவனம்'), (8755, 'https://ror.org/04ek3zb20', 'de', 1, 'https://ror.org/04ek3zb20 Max Grundig Hospital Max Grundig Klinik'), (8756, 'https://ror.org/04em2yk17', 'en', 1, 'https://ror.org/04em2yk17 Moredun Foundation'), (8757, 'https://ror.org/04emv5a43', 'en', 1, 'https://ror.org/04emv5a43 Tokyo Metropolitan Geriatric Hospital 東京都健康長寿医療センター'), (8758, 'https://ror.org/04enbdd69', 'no_lang_code', 1, 'https://ror.org/04enbdd69 Charles River Associates'), (8759, 'https://ror.org/04eq2dr50', 'en', 1, 'https://ror.org/04eq2dr50 American Society of Human Genetics'), (8760, 'https://ror.org/04eq38828', 'en', 1, 'https://ror.org/04eq38828 Arts Catalyst'), (8761, 'https://ror.org/04er97976', 'no_lang_code', 1, 'https://ror.org/04er97976 Nanotherapeutics (United States)'), (8762, 'https://ror.org/04erv1b58', 'en', 1, 'https://ror.org/04erv1b58 College of New Rochelle'), (8763, 'https://ror.org/04et59085', 'en', 1, 'https://ror.org/04et59085 Institute of Education Sciences'), (8764, 'https://ror.org/04etz5w53', 'no_lang_code', 1, 'https://ror.org/04etz5w53 QuantTera (United States)'), (8765, 'https://ror.org/04evmpa20', 'no_lang_code', 1, 'https://ror.org/04evmpa20 Vajira Hospital วชิรพยาบาล'), (8766, 'https://ror.org/04ewhdd57', 'no_lang_code', 1, 'https://ror.org/04ewhdd57 Dendritech (United States)'), (8767, 'https://ror.org/04excst21', 'no_lang_code', 1, 'https://ror.org/04excst21 Bruker (Germany)'), (8768, 'https://ror.org/04exhr452', 'en', 1, 'https://ror.org/04exhr452 Los Angeles Unified School District'), (8769, 'https://ror.org/04f03nc30', 'nl', 1, 'https://ror.org/04f03nc30 Adelante'), (8770, 'https://ror.org/04f1y4a64', 'es', 1, 'https://ror.org/04f1y4a64 Complejo Hospitalario de Ourense'), (8771, 'https://ror.org/04f2ksb75', 'no_lang_code', 1, 'https://ror.org/04f2ksb75 Fundação Estadual de Produção e Pesquisa em Saúde'), (8772, 'https://ror.org/04f2pye70', 'en', 1, 'https://ror.org/04f2pye70 St. Jude Medical Center'), (8773, 'https://ror.org/04f3c9a86', 'no_lang_code', 1, 'https://ror.org/04f3c9a86 LumArray (United States)'), (8774, 'https://ror.org/04f3tp286', 'no_lang_code', 1, 'https://ror.org/04f3tp286 Innovative BioTherapies (United States)'), (8775, 'https://ror.org/04f49a463', 'en', 1, 'https://ror.org/04f49a463 American Society of Plant Biologists'), (8776, 'https://ror.org/04f49ff35', 'en', 1, 'https://ror.org/04f49ff35 National Center for Nanoscience and Technology 国家纳米科学中心'), (8777, 'https://ror.org/04f5kwf34', 'no_lang_code', 1, 'https://ror.org/04f5kwf34 Mediomics (United States)'), (8778, 'https://ror.org/04f7srh33', 'no_lang_code', 1, 'https://ror.org/04f7srh33 Micropharma (Canada)'), (8779, 'https://ror.org/04fc9fa94', 'no_lang_code', 1, 'https://ror.org/04fc9fa94 Sensor Electronic Technology (United States)'), (8780, 'https://ror.org/04ffkmr54', 'en', 1, 'https://ror.org/04ffkmr54 Pellissippi State Community College'), (8781, 'https://ror.org/04ffs2p40', 'en', 1, 'https://ror.org/04ffs2p40 Aspire Health Partners'), (8782, 'https://ror.org/04fj0p555', 'en', 1, 'https://ror.org/04fj0p555 Tata Main Hospital'), (8783, 'https://ror.org/04fj42v97', 'no_lang_code', 1, 'https://ror.org/04fj42v97 Consulectra (Germany)'), (8784, 'https://ror.org/04fj60j89', 'no_lang_code', 1, 'https://ror.org/04fj60j89 SeaLite Engineering (United States)'), (8785, 'https://ror.org/04fjkxc67', 'de', 1, 'https://ror.org/04fjkxc67 Helios Kliniken'), (8786, 'https://ror.org/04fkhzr23', 'no_lang_code', 1, 'https://ror.org/04fkhzr23 Novan Therapeutics (United States)'), (8787, 'https://ror.org/04fkqaq03', 'en', 1, 'https://ror.org/04fkqaq03 Rehabilitation Engineering and Assistive Technology Society of North America'), (8788, 'https://ror.org/04fktme39', 'en', 1, 'https://ror.org/04fktme39 Cleveland University'), (8789, 'https://ror.org/04fm85d87', 'en', 1, 'https://ror.org/04fm85d87 Brevard County Board of County Commissioners'), (8790, 'https://ror.org/04fnfq325', 'en', 1, 'https://ror.org/04fnfq325 Center for Creative Leadership'), (8791, 'https://ror.org/04fp8ns78', 'en', 1, 'https://ror.org/04fp8ns78 Bijwerkingen Centrum Lareb Netherlands Pharmacovigilance Centre Lareb'), (8792, 'https://ror.org/04fpt0902', 'no_lang_code', 1, 'https://ror.org/04fpt0902 TLC Precision Wafer Technology (United States)'), (8793, 'https://ror.org/04fqrjs59', 'en', 1, 'https://ror.org/04fqrjs59 Society of Hispanic Professional Engineers Foundation'), (8794, 'https://ror.org/04ft1w637', 'en', 1, 'https://ror.org/04ft1w637 Palmetto General Hospital'), (8795, 'https://ror.org/04fv4f289', 'hu', 1, 'https://ror.org/04fv4f289 Bűnügyi Szakértői és Kutatóintézet Hungarian Institute for Forensic Sciences'), (8796, 'https://ror.org/04fvmv716', 'it', 1, 'https://ror.org/04fvmv716 Ospedale Vito Fazzi'), (8797, 'https://ror.org/04fwbrn28', 'no_lang_code', 1, 'https://ror.org/04fwbrn28 Phoenicia Biosciences (United States)'), (8798, 'https://ror.org/04fzbxp95', 'en', 1, 'https://ror.org/04fzbxp95 Defence Institute of Physiology and Allied Sciences कार्यकी और संबद्ध विज्ञान रक्षा संस्थान'), (8799, 'https://ror.org/04g1yv196', 'no_lang_code', 1, 'https://ror.org/04g1yv196 Ag-West Bio (Canada)'), (8800, 'https://ror.org/04g3ks144', 'no_lang_code', 1, 'https://ror.org/04g3ks144 Rogue Research (Canada)'), (8801, 'https://ror.org/04g3t6s80', 'en', 1, 'https://ror.org/04g3t6s80 National Institute of Occupational Health'), (8802, 'https://ror.org/04g47ec58', 'fr', 1, 'https://ror.org/04g47ec58 Société Française de Rhumatologie'), (8803, 'https://ror.org/04g4kf576', 'en', 1, 'https://ror.org/04g4kf576 Institute for Health and Recovery'), (8804, 'https://ror.org/04g4p0a45', 'no_lang_code', 1, 'https://ror.org/04g4p0a45 Lonza (United States)'), (8805, 'https://ror.org/04g5g7m78', 'en', 1, 'https://ror.org/04g5g7m78 Saskatchewan Disease Control Laboratory'), (8806, 'https://ror.org/04g8dtp60', 'no_lang_code', 1, 'https://ror.org/04g8dtp60 Quidel Corporation (United States)'), (8807, 'https://ror.org/04g9sfv84', 'en', 1, 'https://ror.org/04g9sfv84 Syrian Center for Tobacco Studies'), (8808, 'https://ror.org/04gbz7s91', 'en', 1, 'https://ror.org/04gbz7s91 Our Lady of Lourdes Medical Center'), (8809, 'https://ror.org/04gcgef90', 'no_lang_code', 1, 'https://ror.org/04gcgef90 Levin Group (United States)'), (8810, 'https://ror.org/04gdk0x87', 'en', 1, 'https://ror.org/04gdk0x87 Bloomfield College'), (8811, 'https://ror.org/04ge7ee10', 'en', 1, 'https://ror.org/04ge7ee10 San Diego Museum of Man'), (8812, 'https://ror.org/04ggm9668', 'no_lang_code', 1, 'https://ror.org/04ggm9668 Degge Group (United States)'), (8813, 'https://ror.org/04gsrvr64', 'en', 1, 'https://ror.org/04gsrvr64 Adelphi Laboratory Center'), (8814, 'https://ror.org/04gt45789', 'en', 1, 'https://ror.org/04gt45789 American Congress of Obstetricians and Gynecologists'), (8815, 'https://ror.org/04gtb5g92', 'no_lang_code', 1, 'https://ror.org/04gtb5g92 Thomas Keating Ltd'), (8816, 'https://ror.org/04gtf4q04', 'no_lang_code', 1, 'https://ror.org/04gtf4q04 Knowledge Based Systems (United States)'), (8817, 'https://ror.org/04gwjw495', 'no_lang_code', 1, 'https://ror.org/04gwjw495 VHA (United States)'), (8818, 'https://ror.org/04gy43j76', 'no_lang_code', 1, 'https://ror.org/04gy43j76 Advanced Scientific Concepts (United States)'), (8819, 'https://ror.org/04gydfb09', 'no_lang_code', 1, 'https://ror.org/04gydfb09 Material Methods (United States)'), (8820, 'https://ror.org/04h1pxn55', 'no_lang_code', 1, 'https://ror.org/04h1pxn55 TRUMPF (United Kingdom)'), (8821, 'https://ror.org/04h2yy041', 'en', 1, 'https://ror.org/04h2yy041 Sesame Workshop'), (8822, 'https://ror.org/04h5rh289', 'no_lang_code', 1, 'https://ror.org/04h5rh289 CorTechs Labs (United States)'), (8823, 'https://ror.org/04h6axt23', 'en', 1, 'https://ror.org/04h6axt23 National Veterinary Research Institute'), (8824, 'https://ror.org/04h7kta22', 'en', 1, 'https://ror.org/04h7kta22 Visiting Nurse Associations of America'), (8825, 'https://ror.org/04hadk112', 'en', 1, 'https://ror.org/04hadk112 Institute of Genetics and Biophysics Istituto di Genetica e Biofisica'), (8826, 'https://ror.org/04hbf1w31', 'no_lang_code', 1, 'https://ror.org/04hbf1w31 Bridger Photonics (United States)'), (8827, 'https://ror.org/04hbhf775', 'en', 1, 'https://ror.org/04hbhf775 Frontier Science & Technology Research Foundation'), (8828, 'https://ror.org/04hbp2s71', 'en', 1, 'https://ror.org/04hbp2s71 Wisconsin Division of Public Health'), (8829, 'https://ror.org/04hd4qy94', 'it', 1, 'https://ror.org/04hd4qy94 Ospedale SS. Annunziata'), (8830, 'https://ror.org/04hj57858', 'en', 1, 'https://ror.org/04hj57858 Tokyo Metropolitan Children''s Medical Center 東京都子供の医療センター'), (8831, 'https://ror.org/04hk9tp23', 'no_lang_code', 1, 'https://ror.org/04hk9tp23 AquaTerra (United Kingdom)'), (8832, 'https://ror.org/04hmqap24', 'en', 1, 'https://ror.org/04hmqap24 Netherlands Institute for Innovative Ocular Surgery'), (8833, 'https://ror.org/04hmrvg91', 'no_lang_code', 1, 'https://ror.org/04hmrvg91 Dover (United States)'), (8834, 'https://ror.org/04hn89439', 'la', 1, 'https://ror.org/04hn89439 Civita'), (8835, 'https://ror.org/04hn9xh52', 'no_lang_code', 1, 'https://ror.org/04hn9xh52 Bionova Holding Corporation (United States)'), (8836, 'https://ror.org/04hrjej96', 'en', 1, 'https://ror.org/04hrjej96 Leeds General Infirmary'), (8837, 'https://ror.org/04hs39d68', 'no_lang_code', 1, 'https://ror.org/04hs39d68 Pattern Discovery Technologies (Canada)'), (8838, 'https://ror.org/04hsdam77', 'en', 1, 'https://ror.org/04hsdam77 Center for Disease Control'), (8839, 'https://ror.org/04hw63k11', 'no_lang_code', 1, 'https://ror.org/04hw63k11 Critical Pharmaceuticals (United Kingdom)'), (8840, 'https://ror.org/04hw9y579', 'no_lang_code', 1, 'https://ror.org/04hw9y579 Pall Corporation (United Kingdom)'), (8841, 'https://ror.org/04hxcaz34', 'en', 1, 'https://ror.org/04hxcaz34 National Institute of Water and Atmospheric Research'), (8842, 'https://ror.org/04hxfjk77', 'no_lang_code', 1, 'https://ror.org/04hxfjk77 Immtech Pharmaceuticals (United States)'), (8843, 'https://ror.org/04hzvka15', 'en', 1, 'https://ror.org/04hzvka15 Barraquer Opthalmology Center Clínica Oftalmológica Barraquer'), (8844, 'https://ror.org/04j3f6252', 'en', 1, 'https://ror.org/04j3f6252 Change Happens'), (8845, 'https://ror.org/04j3jhk11', 'en', 1, 'https://ror.org/04j3jhk11 San Antonio Uniformed Services Health Education Consortium'), (8846, 'https://ror.org/04j5ay321', 'en', 1, 'https://ror.org/04j5ay321 Clinical and Laboratory Standards Institute'), (8847, 'https://ror.org/04j6jb515', 'it', 1, 'https://ror.org/04j6jb515 Istituti Fisioterapici Ospitalieri'), (8848, 'https://ror.org/04j9w6p53', 'en', 1, 'https://ror.org/04j9w6p53 Thrombosis and Atherosclerosis Research Institute'), (8849, 'https://ror.org/04j9yn198', 'en', 1, 'https://ror.org/04j9yn198 Tianjin Hospital 天津市天津医院'), (8850, 'https://ror.org/04jbmee34', 'en', 1, 'https://ror.org/04jbmee34 Graham International Implant Institute'), (8851, 'https://ror.org/04je9aj22', 'en', 1, 'https://ror.org/04je9aj22 Osborne Head and Neck Institute'), (8852, 'https://ror.org/04jg4z821', 'no_lang_code', 1, 'https://ror.org/04jg4z821 Okayama Central Hospital 岡山中央病院'), (8853, 'https://ror.org/04jjkfw48', 'en', 1, 'https://ror.org/04jjkfw48 Tirat Carmel Mental Health Center המרכז לבריאות הנפש'), (8854, 'https://ror.org/04jjp2118', 'no_lang_code', 1, 'https://ror.org/04jjp2118 Serco (United Kingdom)'), (8855, 'https://ror.org/04jk2jb97', 'en', 1, 'https://ror.org/04jk2jb97 Swiss Paraplegic Research'), (8856, 'https://ror.org/04jkbm032', 'en', 1, 'https://ror.org/04jkbm032 Stratheden Hospital'), (8857, 'https://ror.org/04jpa5e08', 'en', 1, 'https://ror.org/04jpa5e08 TriHealth'), (8858, 'https://ror.org/04jq2r740', 'en', 1, 'https://ror.org/04jq2r740 Museum of Science and Industry'), (8859, 'https://ror.org/04jqjkn20', 'no_lang_code', 1, 'https://ror.org/04jqjkn20 Data Management Services (United States)'), (8860, 'https://ror.org/04jqk5a71', 'no_lang_code', 1, 'https://ror.org/04jqk5a71 COI Ceramics (United States)'), (8861, 'https://ror.org/04jsm3g94', 'en', 1, 'https://ror.org/04jsm3g94 Saving Sight'), (8862, 'https://ror.org/04jswqb94', 'en', 1, 'https://ror.org/04jswqb94 Defence Science and Technology Laboratory'), (8863, 'https://ror.org/04jwhvn72', 'no_lang_code', 1, 'https://ror.org/04jwhvn72 TechLab (United States)'), (8864, 'https://ror.org/04jxh5943', 'no_lang_code', 1, 'https://ror.org/04jxh5943 Hyper Tech Research (United States)'), (8865, 'https://ror.org/04jzxg282', 'no_lang_code', 1, 'https://ror.org/04jzxg282 Atmospheric and Space Technology Research Associates (United States)'), (8866, 'https://ror.org/04k0jj762', 'no_lang_code', 1, 'https://ror.org/04k0jj762 General Dynamics (United Kingdom)'), (8867, 'https://ror.org/04k4bwp19', 'no_lang_code', 1, 'https://ror.org/04k4bwp19 Q-Track Corporation (United States)'), (8868, 'https://ror.org/04k4vsv28', 'de', 1, 'https://ror.org/04k4vsv28 Sana Klinikum Offenbach'), (8869, 'https://ror.org/04k6d6v57', 'no_lang_code', 1, 'https://ror.org/04k6d6v57 CJ America (United States)'), (8870, 'https://ror.org/04k6fcm51', 'no_lang_code', 1, 'https://ror.org/04k6fcm51 King Shaw Associates (United Kingdom)'), (8871, 'https://ror.org/04k6mhf37', 'no_lang_code', 1, 'https://ror.org/04k6mhf37 Pelamis Wave Power (United Kingdom)'), (8872, 'https://ror.org/04k7qar56', 'en', 1, 'https://ror.org/04k7qar56 Ministry of Health Ministério da Saúde'), (8873, 'https://ror.org/04k8cb995', 'no_lang_code', 1, 'https://ror.org/04k8cb995 MD Precision (Canada)'), (8874, 'https://ror.org/04k9e4w52', 'en', 1, 'https://ror.org/04k9e4w52 Waterford Institute'), (8875, 'https://ror.org/04k9pkv35', 'en', 1, 'https://ror.org/04k9pkv35 Foundation for Independent Higher Education'), (8876, 'https://ror.org/04ka38w49', 'da', 1, 'https://ror.org/04ka38w49 Svendborg Sygehus'), (8877, 'https://ror.org/04kbvxz10', 'en', 1, 'https://ror.org/04kbvxz10 Biocor Institute Biocor Instituto'), (8878, 'https://ror.org/04kc77756', 'en', 1, 'https://ror.org/04kc77756 St Louis Community College'), (8879, 'https://ror.org/04kcn9y49', 'en', 1, 'https://ror.org/04kcn9y49 Eye Institute of Utah'), (8880, 'https://ror.org/04kcs0d25', 'pt', 1, 'https://ror.org/04kcs0d25 Agência Para a Energia'), (8881, 'https://ror.org/04khs0d04', 'en', 1, 'https://ror.org/04khs0d04 Amyotrophic Lateral Sclerosis Therapy Development Institute'), (8882, 'https://ror.org/04kkvt144', 'no_lang_code', 1, 'https://ror.org/04kkvt144 GlobeImmune (United States)'), (8883, 'https://ror.org/04km0f390', 'no_lang_code', 1, 'https://ror.org/04km0f390 North East of England Process Industry Cluster (United Kingdom)'), (8884, 'https://ror.org/04kn0zf27', 'en', 1, 'https://ror.org/04kn0zf27 Silesian Center for Heart Disease'), (8885, 'https://ror.org/04kpc8y09', 'en', 1, 'https://ror.org/04kpc8y09 Local Government Commission'), (8886, 'https://ror.org/04krwby50', 'no_lang_code', 1, 'https://ror.org/04krwby50 Yokohama Municipal Minato Red Cross Hospital 横浜市立みなと赤十字病院'), (8887, 'https://ror.org/04kt4r851', 'no_lang_code', 1, 'https://ror.org/04kt4r851 IPAC Chemicals (Canada)'), (8888, 'https://ror.org/04ktqp584', 'no_lang_code', 1, 'https://ror.org/04ktqp584 Philips (United Kingdom)'), (8889, 'https://ror.org/04kv3gd50', 'no_lang_code', 1, 'https://ror.org/04kv3gd50 Magor (Canada)'), (8890, 'https://ror.org/04kzhn079', 'en', 1, 'https://ror.org/04kzhn079 St. Joseph''s Hospital'), (8891, 'https://ror.org/04m21na87', 'no_lang_code', 1, 'https://ror.org/04m21na87 Genomatica (United States)'), (8892, 'https://ror.org/04m2ehp75', 'en', 1, 'https://ror.org/04m2ehp75 Seven Counties Services'), (8893, 'https://ror.org/04m647t46', 'no_lang_code', 1, 'https://ror.org/04m647t46 Pd Ld (United States)'), (8894, 'https://ror.org/04m828n09', 'en', 1, 'https://ror.org/04m828n09 EAC Network'), (8895, 'https://ror.org/04m83yd87', 'en', 1, 'https://ror.org/04m83yd87 Sports Science Institute of South Africa'), (8896, 'https://ror.org/04mbf8e26', 'en', 1, 'https://ror.org/04mbf8e26 Methodist Sports Medicine'), (8897, 'https://ror.org/04mdnw291', 'en', 1, 'https://ror.org/04mdnw291 Miles College'), (8898, 'https://ror.org/04mg00432', 'no_lang_code', 1, 'https://ror.org/04mg00432 Morphonix (United States)'), (8899, 'https://ror.org/04mg7f574', 'en', 1, 'https://ror.org/04mg7f574 Molecular Biology Consortium'), (8900, 'https://ror.org/04mge0977', 'no_lang_code', 1, 'https://ror.org/04mge0977 Syntrix Biosystems (United States)'), (8901, 'https://ror.org/04mhxc747', 'no_lang_code', 1, 'https://ror.org/04mhxc747 Gencoa (United Kingdom)'), (8902, 'https://ror.org/04mj0y667', 'en', 1, 'https://ror.org/04mj0y667 Ministry of Agriculture, Livestock, and Food Supply Ministério da Agricultura, Pecuária e Abastecimento'), (8903, 'https://ror.org/04mmd4777', 'en', 1, 'https://ror.org/04mmd4777 Museum of Life and Science'), (8904, 'https://ror.org/04mmv7r89', 'en', 1, 'https://ror.org/04mmv7r89 Chadron State College'), (8905, 'https://ror.org/04mq9p732', 'en', 1, 'https://ror.org/04mq9p732 Wholistic Stress Control Institute'), (8906, 'https://ror.org/04mt1cz50', 'en', 1, 'https://ror.org/04mt1cz50 Chartered Institution of Civil Engineering Surveyors'), (8907, 'https://ror.org/04mvd3r15', 'no_lang_code', 1, 'https://ror.org/04mvd3r15 Stratus Aeronautics (Canada)'), (8908, 'https://ror.org/04mw29y93', 'en', 1, 'https://ror.org/04mw29y93 Turku City Hospital Turun kaupunginsairaala'), (8909, 'https://ror.org/04mx3g858', 'en', 1, 'https://ror.org/04mx3g858 Silverstein Institute'), (8910, 'https://ror.org/04mxcvp24', 'es', 1, 'https://ror.org/04mxcvp24 Instituto de Neurología de Buenos Aires'), (8911, 'https://ror.org/04myhcv14', 'en', 1, 'https://ror.org/04myhcv14 National Egg Regulatory Officials'), (8912, 'https://ror.org/04mymaj38', 'en', 1, 'https://ror.org/04mymaj38 Point Richmond Tech Center'), (8913, 'https://ror.org/04mzvw485', 'en', 1, 'https://ror.org/04mzvw485 Thai Moogambigai Dental College and Hospital'), (8914, 'https://ror.org/04n3aca14', 'no_lang_code', 1, 'https://ror.org/04n3aca14 Owlstone Medical (United Kingdom)'), (8915, 'https://ror.org/04n50f417', 'no_lang_code', 1, 'https://ror.org/04n50f417 RWE (United Kingdom)'), (8916, 'https://ror.org/04n6qtb21', 'en', 1, 'https://ror.org/04n6qtb21 National Institute of Fitness and Sports in Kanoya 鹿屋体育大学'), (8917, 'https://ror.org/04n7g4f11', 'en', 1, 'https://ror.org/04n7g4f11 Rochester Area Foundation'), (8918, 'https://ror.org/04n7k1343', 'en', 1, 'https://ror.org/04n7k1343 American Pain Society'), (8919, 'https://ror.org/04n7py080', 'en', 1, 'https://ror.org/04n7py080 National Institute for Mathematical Sciences'), (8920, 'https://ror.org/04na12j70', 'no_lang_code', 1, 'https://ror.org/04na12j70 Alchem Laboratories (United States)'), (8921, 'https://ror.org/04nah6p89', 'no_lang_code', 1, 'https://ror.org/04nah6p89 eHuman (United States)'), (8922, 'https://ror.org/04nc7qn91', 'en', 1, 'https://ror.org/04nc7qn91 Town and Country Planning Association'), (8923, 'https://ror.org/04ng6c812', 'no_lang_code', 1, 'https://ror.org/04ng6c812 Buffalo BioLabs'), (8924, 'https://ror.org/04nhm0g90', 'fr', 1, 'https://ror.org/04nhm0g90 Centre Muraz'), (8925, 'https://ror.org/04nmkye62', 'en', 1, 'https://ror.org/04nmkye62 Heartland Health Region'), (8926, 'https://ror.org/04nmqte89', 'no_lang_code', 1, 'https://ror.org/04nmqte89 Santec Systems (United States)'), (8927, 'https://ror.org/04npefg86', 'en', 1, 'https://ror.org/04npefg86 Lake County'), (8928, 'https://ror.org/04npym748', 'no_lang_code', 1, 'https://ror.org/04npym748 Humanitas (United States)'), (8929, 'https://ror.org/04nq4c835', 'no_lang_code', 1, 'https://ror.org/04nq4c835 Okayama Saiseikai General Hospital 岡山済生会総合病院'), (8930, 'https://ror.org/04ntc3565', 'no_lang_code', 1, 'https://ror.org/04ntc3565 Advanced Materials and Devices (United States)'), (8931, 'https://ror.org/04nvba109', 'no_lang_code', 1, 'https://ror.org/04nvba109 CSL (Germany)'), (8932, 'https://ror.org/04nw8w376', 'no_lang_code', 1, 'https://ror.org/04nw8w376 Leatherhead Food Research'), (8933, 'https://ror.org/04nwrtj56', 'fr', 1, 'https://ror.org/04nwrtj56 Centre d’Étude et de Valorisation des Algues'), (8934, 'https://ror.org/04nx04y60', 'en', 1, 'https://ror.org/04nx04y60 Taichung Armed Forces General Hospital 國軍臺中總醫院'), (8935, 'https://ror.org/04nz2pc13', 'en', 1, 'https://ror.org/04nz2pc13 Council for the Advancement of Science Writing'), (8936, 'https://ror.org/04p00tq71', 'en', 1, 'https://ror.org/04p00tq71 Research Institute of Innovative Technology for the Earth 地球環境産業技術研究機構'), (8937, 'https://ror.org/04p25v506', 'en', 1, 'https://ror.org/04p25v506 Montshire Museum of Science'), (8938, 'https://ror.org/04p335086', 'en', 1, 'https://ror.org/04p335086 Carbon Trust'), (8939, 'https://ror.org/04p36vs32', 'no_lang_code', 1, 'https://ror.org/04p36vs32 Scott Instrument Company (United States)'), (8940, 'https://ror.org/04p42v615', 'no_lang_code', 1, 'https://ror.org/04p42v615 HiretheWorld (Canada)'), (8941, 'https://ror.org/04p45sn64', 'en', 1, 'https://ror.org/04p45sn64 Canards Illimités Canada Ducks Unlimited Canada'), (8942, 'https://ror.org/04p4fvj07', 'no_lang_code', 1, 'https://ror.org/04p4fvj07 Brain Insights (United States)'), (8943, 'https://ror.org/04p4s5b35', 'en', 1, 'https://ror.org/04p4s5b35 St. John''s Hospital'), (8944, 'https://ror.org/04p8w0f39', 'no_lang_code', 1, 'https://ror.org/04p8w0f39 Westinghouse Electric (United States)'), (8945, 'https://ror.org/04pa5pz64', 'de', 1, 'https://ror.org/04pa5pz64 Sozialstiftung Bamberg'), (8946, 'https://ror.org/04paq1j76', 'no_lang_code', 1, 'https://ror.org/04paq1j76 ScienceScope (United Kingdom)'), (8947, 'https://ror.org/04pb6gq71', 'en', 1, 'https://ror.org/04pb6gq71 Orthopedic Specialty Hospital'), (8948, 'https://ror.org/04pc31859', 'en', 1, 'https://ror.org/04pc31859 Stobhill Hospital'), (8949, 'https://ror.org/04pcj0h26', 'en', 1, 'https://ror.org/04pcj0h26 Actua'), (8950, 'https://ror.org/04phskp39', 'en', 1, 'https://ror.org/04phskp39 American Council of Learned Societies'); INSERT INTO `rors` VALUES (8951, 'https://ror.org/04phyf746', 'en', 1, 'https://ror.org/04phyf746 Wolters Kluwer Health'), (8952, 'https://ror.org/04pj26y96', 'pt', 1, 'https://ror.org/04pj26y96 Instituto de Moléstias Cardiovasculares'), (8953, 'https://ror.org/04pm5zx37', 'en', 1, 'https://ror.org/04pm5zx37 Sasha Bruce Youthwork'), (8954, 'https://ror.org/04pmaae27', 'en', 1, 'https://ror.org/04pmaae27 Illinois College of Optometry'), (8955, 'https://ror.org/04pmdg365', 'en', 1, 'https://ror.org/04pmdg365 Ulster Hospital'), (8956, 'https://ror.org/04pq45e89', 'en', 1, 'https://ror.org/04pq45e89 Detroit Area Pre College Engineering Program'), (8957, 'https://ror.org/04pr6dn97', 'no_lang_code', 1, 'https://ror.org/04pr6dn97 Arbutus Biopharma (Canada)'), (8958, 'https://ror.org/04pshv774', 'no_lang_code', 1, 'https://ror.org/04pshv774 Field Diagnostic Services (United States)'), (8959, 'https://ror.org/04pvxsf55', 'en', 1, 'https://ror.org/04pvxsf55 Lexington Clinic'), (8960, 'https://ror.org/04q0ntn52', 'pt', 1, 'https://ror.org/04q0ntn52 Instituto de Neurologia de Curitiba'), (8961, 'https://ror.org/04q1yyt92', 'en', 1, 'https://ror.org/04q1yyt92 Zoological Society of San Diego'), (8962, 'https://ror.org/04q4jqq66', 'no_lang_code', 1, 'https://ror.org/04q4jqq66 3T Ophthalmics (United States)'), (8963, 'https://ror.org/04q92cj22', 'no_lang_code', 1, 'https://ror.org/04q92cj22 Atmel (France)'), (8964, 'https://ror.org/04qadzg65', 'no_lang_code', 1, 'https://ror.org/04qadzg65 CardioFocus (United States)'), (8965, 'https://ror.org/04qatqr61', 'en', 1, 'https://ror.org/04qatqr61 Myers-JDC-Brookdale Institute'), (8966, 'https://ror.org/04qce9v53', 'no_lang_code', 1, 'https://ror.org/04qce9v53 Integra LifeSciences (United States)'), (8967, 'https://ror.org/04qcpkd70', 'en', 1, 'https://ror.org/04qcpkd70 Institute of Bioinformatics and Applied Biotechnology'), (8968, 'https://ror.org/04qg15997', 'en', 1, 'https://ror.org/04qg15997 Bourn Hall Clinic'), (8969, 'https://ror.org/04qkyx850', 'no_lang_code', 1, 'https://ror.org/04qkyx850 Social Sectors Development Strategies (United States)'), (8970, 'https://ror.org/04qpstv89', 'en', 1, 'https://ror.org/04qpstv89 National Veterinary Research and Quarantine Service'), (8971, 'https://ror.org/04qqcs583', 'en', 1, 'https://ror.org/04qqcs583 National Hospital of Pediatrics'), (8972, 'https://ror.org/04qs5en05', 'en', 1, 'https://ror.org/04qs5en05 West Bengal State University পশ্চিমবঙ্গ রাষ্ট্রীয় বিশ্ববিদ্যালয়'), (8973, 'https://ror.org/04qst6c17', 'en', 1, 'https://ror.org/04qst6c17 Peralta Community College District'), (8974, 'https://ror.org/04qwgkn39', 'es', 1, 'https://ror.org/04qwgkn39 Institut Kaplan'), (8975, 'https://ror.org/04qxdaz55', 'no_lang_code', 1, 'https://ror.org/04qxdaz55 Fortis Hospital'), (8976, 'https://ror.org/04qz8gp36', 'no_lang_code', 1, 'https://ror.org/04qz8gp36 Split Engineering (United States)'), (8977, 'https://ror.org/04r08t069', 'en', 1, 'https://ror.org/04r08t069 Independent Colleges Office'), (8978, 'https://ror.org/04r0hqv79', 'en', 1, 'https://ror.org/04r0hqv79 Rhode Island Spine Center'), (8979, 'https://ror.org/04r14bj23', 'en', 1, 'https://ror.org/04r14bj23 DigiBC (Canada)'), (8980, 'https://ror.org/04r28v857', 'en', 1, 'https://ror.org/04r28v857 California Institute for Biomedical Research'), (8981, 'https://ror.org/04r2r8477', 'fr', 1, 'https://ror.org/04r2r8477 ADERA'), (8982, 'https://ror.org/04r3ebn54', 'en', 1, 'https://ror.org/04r3ebn54 Oklahoma Foundation for Medical Quality'), (8983, 'https://ror.org/04r61xa45', 'no_lang_code', 1, 'https://ror.org/04r61xa45 Saiseikai Ibaraki Hospital 大阪府済生会茨木病院'), (8984, 'https://ror.org/04r739x86', 'no_lang_code', 1, 'https://ror.org/04r739x86 Bruker (United States)'), (8985, 'https://ror.org/04r9x1a08', 'no_lang_code', 1, 'https://ror.org/04r9x1a08 AstraZeneca (United Kingdom)'), (8986, 'https://ror.org/04r9y8d38', 'no_lang_code', 1, 'https://ror.org/04r9y8d38 Wellstat (United States)'), (8987, 'https://ror.org/04raazs21', 'no_lang_code', 1, 'https://ror.org/04raazs21 Cumberland Pharmaceuticals (United States)'), (8988, 'https://ror.org/04rcqnp59', 'no_lang_code', 1, 'https://ror.org/04rcqnp59 Heidelberg University'), (8989, 'https://ror.org/04rfqrp30', 'no_lang_code', 1, 'https://ror.org/04rfqrp30 Eion (Canada)'), (8990, 'https://ror.org/04rj6an25', 'en', 1, 'https://ror.org/04rj6an25 Alberta Science Network'), (8991, 'https://ror.org/04rjtde10', 'no_lang_code', 1, 'https://ror.org/04rjtde10 Perceptronics Solutions (United States)'), (8992, 'https://ror.org/04rk4wk39', 'no_lang_code', 1, 'https://ror.org/04rk4wk39 Phytronix (Canada)'), (8993, 'https://ror.org/04rn3ph18', 'no_lang_code', 1, 'https://ror.org/04rn3ph18 Kodak (United States)'), (8994, 'https://ror.org/04rqx2b83', 'no_lang_code', 1, 'https://ror.org/04rqx2b83 Apogee Biotechnology (United States)'), (8995, 'https://ror.org/04rt7ps04', 'en', 1, 'https://ror.org/04rt7ps04 Parkland Health & Hospital System'), (8996, 'https://ror.org/04rtkc841', 'no_lang_code', 1, 'https://ror.org/04rtkc841 Molecular Oncology (United States)'), (8997, 'https://ror.org/04rw71s91', 'en', 1, 'https://ror.org/04rw71s91 North Carolina State Education Assistance Authority'), (8998, 'https://ror.org/04rx8g170', 'en', 1, 'https://ror.org/04rx8g170 Joseph Rowntree Foundation'), (8999, 'https://ror.org/04ry4r880', 'en', 1, 'https://ror.org/04ry4r880 Central Tuber Crops Research Institute'), (9000, 'https://ror.org/04rymkk69', 'en', 1, 'https://ror.org/04rymkk69 Muroran Institute of Technology 室蘭工業大学'), (9001, 'https://ror.org/04s04em45', 'en', 1, 'https://ror.org/04s04em45 Defiance College'), (9002, 'https://ror.org/04s14qs93', 'en', 1, 'https://ror.org/04s14qs93 Asian American Recovery Services'), (9003, 'https://ror.org/04s1s3432', 'en', 1, 'https://ror.org/04s1s3432 Nevada Division of Public and Behavioral Health'), (9004, 'https://ror.org/04s298h25', 'no_lang_code', 1, 'https://ror.org/04s298h25 CemeCon (Germany)'), (9005, 'https://ror.org/04s2z4291', 'en', 1, 'https://ror.org/04s2z4291 Nederlands Forensisch Instituut Netherlands Forensic Institute'), (9006, 'https://ror.org/04s42tp09', 'en', 1, 'https://ror.org/04s42tp09 Macomb Community College'), (9007, 'https://ror.org/04s4jww20', 'no_lang_code', 1, 'https://ror.org/04s4jww20 Qiagen (United States)'), (9008, 'https://ror.org/04s4z3495', 'no_lang_code', 1, 'https://ror.org/04s4z3495 Circulatory Technology (United States)'), (9009, 'https://ror.org/04s55st49', 'en', 1, 'https://ror.org/04s55st49 Tate'), (9010, 'https://ror.org/04sadrh19', 'en', 1, 'https://ror.org/04sadrh19 Hindu College of Pharmacy'), (9011, 'https://ror.org/04sah3q11', 'en', 1, 'https://ror.org/04sah3q11 St. Francis Medical Center'), (9012, 'https://ror.org/04sapgw72', 'no_lang_code', 1, 'https://ror.org/04sapgw72 Sumitomo Dainippon Pharma (Japan) 大日本住友製薬株式会社'), (9013, 'https://ror.org/04sbz4e56', 'no_lang_code', 1, 'https://ror.org/04sbz4e56 Clod Ensemble (United Kingdom)'), (9014, 'https://ror.org/04sf10b93', 'no_lang_code', 1, 'https://ror.org/04sf10b93 ITI Energy (United Kingdom)'), (9015, 'https://ror.org/04sg1k490', 'en', 1, 'https://ror.org/04sg1k490 Gabrichevsky Institute of Epidemiology and Microbiology Московский научно-исследовательский институт эпидемиологии и микробиологии им.Г.Н.Габричевского'), (9016, 'https://ror.org/04sj2m437', 'no_lang_code', 1, 'https://ror.org/04sj2m437 TechEn (United States)'), (9017, 'https://ror.org/04sjb2j71', 'en', 1, 'https://ror.org/04sjb2j71 Museum of Science and Industry'), (9018, 'https://ror.org/04sjg0283', 'en', 1, 'https://ror.org/04sjg0283 Contra Costa Community College District'), (9019, 'https://ror.org/04sk8z888', 'no_lang_code', 1, 'https://ror.org/04sk8z888 EP (United States)'), (9020, 'https://ror.org/04sm60f26', 'en', 1, 'https://ror.org/04sm60f26 Defence Research and Development Establishment இந்திய பாதுகாப்பு ஆராய்ச்சி மேம்பாட்டு தொழிலகம்'), (9021, 'https://ror.org/04sme7s65', 'no_lang_code', 1, 'https://ror.org/04sme7s65 Altria (United States)'), (9022, 'https://ror.org/04snwmr98', 'en', 1, 'https://ror.org/04snwmr98 Tusculum College'), (9023, 'https://ror.org/04sp6ec60', 'en', 1, 'https://ror.org/04sp6ec60 Fast Track Drugs and Biologics'), (9024, 'https://ror.org/04sp9ac55', 'no_lang_code', 1, 'https://ror.org/04sp9ac55 Ogilvy Public Relations (United States)'), (9025, 'https://ror.org/04spxqa35', 'pt', 1, 'https://ror.org/04spxqa35 Instituto Dante Pazzanese de Cardiologia'), (9026, 'https://ror.org/04sr9ds30', 'no_lang_code', 1, 'https://ror.org/04sr9ds30 Luxfer Group (United Kingdom)'), (9027, 'https://ror.org/04srpvh96', 'en', 1, 'https://ror.org/04srpvh96 Cabrillo College'), (9028, 'https://ror.org/04srtdn04', 'no_lang_code', 1, 'https://ror.org/04srtdn04 Weidlinger Associates (United States)'), (9029, 'https://ror.org/04ss3cm03', 'fr', 1, 'https://ror.org/04ss3cm03 Centre Hospitalier Laennec'), (9030, 'https://ror.org/04stdpt78', 'en', 1, 'https://ror.org/04stdpt78 Endokrinologický ústav Institute of Endocrinology'), (9031, 'https://ror.org/04svanq44', 'en', 1, 'https://ror.org/04svanq44 Winchester Medical Center'), (9032, 'https://ror.org/04sw0kk79', 'en', 1, 'https://ror.org/04sw0kk79 Vancouver Aquarium'), (9033, 'https://ror.org/04swxtn38', 'no_lang_code', 1, 'https://ror.org/04swxtn38 Mimosa Acoustics (United States)'), (9034, 'https://ror.org/04sxjet04', 'no_lang_code', 1, 'https://ror.org/04sxjet04 Medical Discovery Partners (United States)'), (9035, 'https://ror.org/04sxsgm54', 'en', 1, 'https://ror.org/04sxsgm54 Comisión Interamericana del Atún Tropical Inter-American Tropical Tuna Commission'), (9036, 'https://ror.org/04sy08330', 'en', 1, 'https://ror.org/04sy08330 AdventHealth Tampa'), (9037, 'https://ror.org/04sydm273', 'it', 1, 'https://ror.org/04sydm273 Sapienza Innovazione'), (9038, 'https://ror.org/04szpx527', 'no_lang_code', 1, 'https://ror.org/04szpx527 Araim Pharmaceuticals (United States)'), (9039, 'https://ror.org/04t0s7x83', 'en', 1, 'https://ror.org/04t0s7x83 National Institute of Mental Health 国立精神衛生研究所'), (9040, 'https://ror.org/04t18m760', 'en', 1, 'https://ror.org/04t18m760 National Institute of Nutrition Viện Dinh Dưỡng Quốc Gia'), (9041, 'https://ror.org/04t24x986', 'no_lang_code', 1, 'https://ror.org/04t24x986 Novartis (Austria)'), (9042, 'https://ror.org/04t28w240', 'no_lang_code', 1, 'https://ror.org/04t28w240 GlycoMira Therapeutics (United States)'), (9043, 'https://ror.org/04t5sqe26', 'no_lang_code', 1, 'https://ror.org/04t5sqe26 Molecular Design International (United States)'), (9044, 'https://ror.org/04t610980', 'en', 1, 'https://ror.org/04t610980 Appalachian College Association'), (9045, 'https://ror.org/04t8qjg16', 'en', 1, 'https://ror.org/04t8qjg16 Central Drug Research Institute केन्द्रीय औषधि अनुसंधान संस्थान కేంద్రీయ ఔషధ పరిశోధనా సంస్థ'), (9046, 'https://ror.org/04t9p3q02', 'no_lang_code', 1, 'https://ror.org/04t9p3q02 Protein Potential (United States)'), (9047, 'https://ror.org/04taw4g76', 'no_lang_code', 1, 'https://ror.org/04taw4g76 Sofina Foods (Canada)'), (9048, 'https://ror.org/04tf8qk07', 'en', 1, 'https://ror.org/04tf8qk07 Mountain Empire Community College'), (9049, 'https://ror.org/04tfmhy61', 'no_lang_code', 1, 'https://ror.org/04tfmhy61 Pipeline Industries Guild (United Kingdom)'), (9050, 'https://ror.org/04tgdzw08', 'no_lang_code', 1, 'https://ror.org/04tgdzw08 Control Technology Incorporation (United States)'), (9051, 'https://ror.org/04tgrpw60', 'en', 1, 'https://ror.org/04tgrpw60 Zhengzhou People''s Hospital 郑州人民医院网站'), (9052, 'https://ror.org/04thckx15', 'en', 1, 'https://ror.org/04thckx15 Michigan Ear Institute'), (9053, 'https://ror.org/04tj7zv24', 'en', 1, 'https://ror.org/04tj7zv24 BPP University'), (9054, 'https://ror.org/04tjehp55', 'no_lang_code', 1, 'https://ror.org/04tjehp55 Herman Miller (United States)'), (9055, 'https://ror.org/04tk6mg68', 'en', 1, 'https://ror.org/04tk6mg68 Alcohol Research Group'), (9056, 'https://ror.org/04tkt0z61', 'no_lang_code', 1, 'https://ror.org/04tkt0z61 Toyooka Hospital 豊岡病院'), (9057, 'https://ror.org/04tmafy09', 'en', 1, 'https://ror.org/04tmafy09 Asian Cultural Council'), (9058, 'https://ror.org/04tmqcr52', 'no_lang_code', 1, 'https://ror.org/04tmqcr52 Viva Pharmaceutical (Canada)'), (9059, 'https://ror.org/04tn6gn60', 'no_lang_code', 1, 'https://ror.org/04tn6gn60 Advanced Tissue (United States)'), (9060, 'https://ror.org/04tnq4461', 'no_lang_code', 1, 'https://ror.org/04tnq4461 A&L Canada Laboratories (Canada)'), (9061, 'https://ror.org/04tnxs674', 'no_lang_code', 1, 'https://ror.org/04tnxs674 Saltire Software (United States)'), (9062, 'https://ror.org/04tq0y441', 'no_lang_code', 1, 'https://ror.org/04tq0y441 Poly Med (United States)'), (9063, 'https://ror.org/04tsjk726', 'nl', 1, 'https://ror.org/04tsjk726 Rijndam Revalidatiecentrum'), (9064, 'https://ror.org/04tv1fa62', 'fr', 1, 'https://ror.org/04tv1fa62 Centre National de la Médecine et des Sciences des Sports'), (9065, 'https://ror.org/04tw5da48', 'en', 1, 'https://ror.org/04tw5da48 Eastern Florida State College'), (9066, 'https://ror.org/04tw91v16', 'es', 1, 'https://ror.org/04tw91v16 Institute of Nutrition and Food Hygiene Instituto de Nutricion e Higiene de los Alimentos'), (9067, 'https://ror.org/04txpk391', 'no_lang_code', 1, 'https://ror.org/04txpk391 Superconducting Systems (United States)'), (9068, 'https://ror.org/04ty78924', 'no_lang_code', 1, 'https://ror.org/04ty78924 Karyopharm Therapeutics (United States)'), (9069, 'https://ror.org/04tz1ar37', 'no_lang_code', 1, 'https://ror.org/04tz1ar37 ITN Energy Systems (United States)'), (9070, 'https://ror.org/04tzjpc47', 'no_lang_code', 1, 'https://ror.org/04tzjpc47 Ebert and Associates'), (9071, 'https://ror.org/04v04aa35', 'en', 1, 'https://ror.org/04v04aa35 Tarrant County College'), (9072, 'https://ror.org/04v1wg214', 'en', 1, 'https://ror.org/04v1wg214 Tucson Orthopaedic Institute'), (9073, 'https://ror.org/04v24dh28', 'en', 1, 'https://ror.org/04v24dh28 Sumitomo Besshi Hospital 住友別子病院'), (9074, 'https://ror.org/04v357j08', 'no_lang_code', 1, 'https://ror.org/04v357j08 Biosearch Technologies (United States)'), (9075, 'https://ror.org/04v44vh53', 'en', 1, 'https://ror.org/04v44vh53 Bank Street College of Education'), (9076, 'https://ror.org/04v5h9g23', 'no_lang_code', 1, 'https://ror.org/04v5h9g23 Fu Associates (United States)'), (9077, 'https://ror.org/04v6bh038', 'en', 1, 'https://ror.org/04v6bh038 Fukuoka Industrial Technology Center 福岡県工業技術センター'), (9078, 'https://ror.org/04v9x0m20', 'no_lang_code', 1, 'https://ror.org/04v9x0m20 Convergent Engineering (United States)'), (9079, 'https://ror.org/04vcfk007', 'en', 1, 'https://ror.org/04vcfk007 Mohave Community College'), (9080, 'https://ror.org/04vcx5150', 'no_lang_code', 1, 'https://ror.org/04vcx5150 Applied Energetics (United States)'), (9081, 'https://ror.org/04ve0xd91', 'en', 1, 'https://ror.org/04ve0xd91 Cheltenham Festivals'), (9082, 'https://ror.org/04vfjws05', 'no_lang_code', 1, 'https://ror.org/04vfjws05 NovaDigm Therapeutics (United States)'), (9083, 'https://ror.org/04vge0w88', 'no_lang_code', 1, 'https://ror.org/04vge0w88 BioVectra (Canada)'), (9084, 'https://ror.org/04vgpn643', 'en', 1, 'https://ror.org/04vgpn643 Belmont Center for Comprehensive Treatment'), (9085, 'https://ror.org/04vh1tq58', 'de', 1, 'https://ror.org/04vh1tq58 Friedrich Miescher Laboratory, Friedrich-Miescher-Laboratorium für Biologische Arbeitsgruppen in der Max-Planck-Gesellschaft'), (9086, 'https://ror.org/04vkhtf23', 'no_lang_code', 1, 'https://ror.org/04vkhtf23 Crucell Johnson & Johnson (Netherlands)'), (9087, 'https://ror.org/04vnpzv66', 'en', 1, 'https://ror.org/04vnpzv66 Pinkus Dermatopathology Laboratory'), (9088, 'https://ror.org/04vpcaw67', 'en', 1, 'https://ror.org/04vpcaw67 International Water Management Institute'), (9089, 'https://ror.org/04vpnmr86', 'no_lang_code', 1, 'https://ror.org/04vpnmr86 Applied Research Associates (United States)'), (9090, 'https://ror.org/04vvh7p27', 'no_lang_code', 1, 'https://ror.org/04vvh7p27 Eisai (Japan) エーザイ株式会社'), (9091, 'https://ror.org/04vwk8m55', 'no_lang_code', 1, 'https://ror.org/04vwk8m55 Ansun BioPharma (United States)'), (9092, 'https://ror.org/04vxrkc13', 'en', 1, 'https://ror.org/04vxrkc13 Constructing Excellence'), (9093, 'https://ror.org/04vzpy492', 'en', 1, 'https://ror.org/04vzpy492 Orange County Heart Institute and Research Center'), (9094, 'https://ror.org/04w3f9b42', 'no_lang_code', 1, 'https://ror.org/04w3f9b42 Takarazuka City Hospital 宝塚市立病院'), (9095, 'https://ror.org/04w4aze46', 'en', 1, 'https://ror.org/04w4aze46 LaGrange College'), (9096, 'https://ror.org/04w5cyc72', 'no_lang_code', 1, 'https://ror.org/04w5cyc72 Diffinity Genomics (United States)'), (9097, 'https://ror.org/04w65cc78', 'en', 1, 'https://ror.org/04w65cc78 Centre For Irish and European Security'), (9098, 'https://ror.org/04w6hwt48', 'en', 1, 'https://ror.org/04w6hwt48 MalariaGEN'), (9099, 'https://ror.org/04w7p1s44', 'no_lang_code', 1, 'https://ror.org/04w7p1s44 Rohde & Schwarz (United Kingdom)'), (9100, 'https://ror.org/04w8tvc97', 'no_lang_code', 1, 'https://ror.org/04w8tvc97 Nanospectra Biosciences (United States)'), (9101, 'https://ror.org/04wadq306', 'en', 1, 'https://ror.org/04wadq306 Candiolo Cancer Institute Istituto di Candiolo'), (9102, 'https://ror.org/04waktx26', 'no_lang_code', 1, 'https://ror.org/04waktx26 ABB (United Kingdom)'), (9103, 'https://ror.org/04wb8fh44', 'no', 1, 'https://ror.org/04wb8fh44 Center for Crisis Psychology Senter for Krisepsykologi'), (9104, 'https://ror.org/04wbpm451', 'no_lang_code', 1, 'https://ror.org/04wbpm451 La Jolla Pharmaceutical (United States)'), (9105, 'https://ror.org/04wfdx194', 'en', 1, 'https://ror.org/04wfdx194 Standing to Achieve New Directions'), (9106, 'https://ror.org/04wg18j80', 'de', 1, 'https://ror.org/04wg18j80 Klinikum Saarbrücken'), (9107, 'https://ror.org/04wga4j73', 'en', 1, 'https://ror.org/04wga4j73 Gold Skin Care Center'), (9108, 'https://ror.org/04wgpdw48', 'en', 1, 'https://ror.org/04wgpdw48 impulse.brussels'), (9109, 'https://ror.org/04wjd1a07', 'en', 1, 'https://ror.org/04wjd1a07 Nordland Hospital Trust Nordlandssykehuset'), (9110, 'https://ror.org/04wjhaz81', 'no_lang_code', 1, 'https://ror.org/04wjhaz81 Sengenia (United Kingdom)'), (9111, 'https://ror.org/04wkjxj31', 'en', 1, 'https://ror.org/04wkjxj31 Phoenix Houses of New England'), (9112, 'https://ror.org/04wndes40', 'en', 1, 'https://ror.org/04wndes40 Pacific Health Foundation'), (9113, 'https://ror.org/04wp1zv12', 'no_lang_code', 1, 'https://ror.org/04wp1zv12 Mercator MedSystems (United States)'), (9114, 'https://ror.org/04ws26165', 'fr', 1, 'https://ror.org/04ws26165 Belgische Wissenschaftsinstitut für Öffentliche Gesundheit Institut Scientifique de Santé Publique Scientific Institute of Public Health Wetenschappelijk Instituut Volksgezondheid'), (9115, 'https://ror.org/04wtgxd69', 'en', 1, 'https://ror.org/04wtgxd69 Civil Aviation Authority'), (9116, 'https://ror.org/04wwrrg31', 'no_lang_code', 1, 'https://ror.org/04wwrrg31 AstraZeneca (Sweden)'), (9117, 'https://ror.org/04wytkh98', 'it', 1, 'https://ror.org/04wytkh98 Azienda Ospedaliera Sant’Antonio Abate di Gallarate'), (9118, 'https://ror.org/04wzh0d51', 'en', 1, 'https://ror.org/04wzh0d51 Northern Virginia Community College'), (9119, 'https://ror.org/04x0hrd32', 'en', 1, 'https://ror.org/04x0hrd32 Rhode Island Department of Children, Youth & Families'), (9120, 'https://ror.org/04x0wqd92', 'en', 1, 'https://ror.org/04x0wqd92 Tokyo Rosai Hospital 東京労災病院'), (9121, 'https://ror.org/04x1fkv72', 'no_lang_code', 1, 'https://ror.org/04x1fkv72 Istituto De Angeli (Italy)'), (9122, 'https://ror.org/04x1grb60', 'en', 1, 'https://ror.org/04x1grb60 Dutch College of General Practitioners Nederlands Huisartsen Genootschap'), (9123, 'https://ror.org/04x2tmv91', 'en', 1, 'https://ror.org/04x2tmv91 Piedmont HealthCare'), (9124, 'https://ror.org/04x41ba23', 'en', 1, 'https://ror.org/04x41ba23 Captain James A. Lovell Federal Health Care Center'), (9125, 'https://ror.org/04x436h61', 'en', 1, 'https://ror.org/04x436h61 Skin and Cancer Foundation'), (9126, 'https://ror.org/04x4fb889', 'no_lang_code', 1, 'https://ror.org/04x4fb889 Lasmed (United States)'), (9127, 'https://ror.org/04x4v8p40', 'no_lang_code', 1, 'https://ror.org/04x4v8p40 Pfizer (United Kingdom)'), (9128, 'https://ror.org/04x5cyt12', 'no_lang_code', 1, 'https://ror.org/04x5cyt12 Sunny BioDiscovery (United States)'), (9129, 'https://ror.org/04x5jxk30', 'no_lang_code', 1, 'https://ror.org/04x5jxk30 Aptose Biosciences (Canada)'), (9130, 'https://ror.org/04x65hs26', 'en', 1, 'https://ror.org/04x65hs26 Cyfoeth Naturiol Cymru Natural Resources Wales'), (9131, 'https://ror.org/04x89rx63', 'en', 1, 'https://ror.org/04x89rx63 Triton College'), (9132, 'https://ror.org/04xdr5k48', 'en', 1, 'https://ror.org/04xdr5k48 DDL Diagnostic Laboratory'), (9133, 'https://ror.org/04xeg9z08', 'en', 1, 'https://ror.org/04xeg9z08 Instituto Nacional de Salud Mental National Institute of Mental Health'), (9134, 'https://ror.org/04xf9by37', 'no_lang_code', 1, 'https://ror.org/04xf9by37 Reveo (United States)'), (9135, 'https://ror.org/04xfbcg47', 'no_lang_code', 1, 'https://ror.org/04xfbcg47 Fox Chase Chemical Diversity Center'), (9136, 'https://ror.org/04xfypm71', 'no_lang_code', 1, 'https://ror.org/04xfypm71 Aptuit (Italy)'), (9137, 'https://ror.org/04xgb0s62', 'en', 1, 'https://ror.org/04xgb0s62 Elms College'), (9138, 'https://ror.org/04xgmns80', 'no_lang_code', 1, 'https://ror.org/04xgmns80 PermSelect (United States)'), (9139, 'https://ror.org/04xk4hz96', 'pt', 1, 'https://ror.org/04xk4hz96 Instituto Evandro Chagas'), (9140, 'https://ror.org/04xmnzw38', 'de', 1, 'https://ror.org/04xmnzw38 Chemotherapeutisches Forschungsinstitut Georg-Speyer-Haus, Georg Speyer Haus'), (9141, 'https://ror.org/04xq28y48', 'no_lang_code', 1, 'https://ror.org/04xq28y48 NeuroWave Systems (United States)'), (9142, 'https://ror.org/04xreqs31', 'en', 1, 'https://ror.org/04xreqs31 Institute for Research in Fundamental Sciences پژوهشگاه دانشهای بنیادی'), (9143, 'https://ror.org/04xsveh31', 'en', 1, 'https://ror.org/04xsveh31 Academy of the Social Sciences in Australia'), (9144, 'https://ror.org/04xve2a23', 'no_lang_code', 1, 'https://ror.org/04xve2a23 Genesegues (United States)'), (9145, 'https://ror.org/04xwmf991', 'en', 1, 'https://ror.org/04xwmf991 Institute for Myeloma & Bone Cancer Research'), (9146, 'https://ror.org/04xx1tc24', 'en', 1, 'https://ror.org/04xx1tc24 Max Planck Institute for Biology of Ageing Max-Planck-Institut für Biologie des Alterns'), (9147, 'https://ror.org/04xz4db24', 'no_lang_code', 1, 'https://ror.org/04xz4db24 Caelum Research Corporation (United States)'), (9148, 'https://ror.org/04y0sey15', 'en', 1, 'https://ror.org/04y0sey15 Oasis of Hope Hospital'), (9149, 'https://ror.org/04y4dgs58', 'no_lang_code', 1, 'https://ror.org/04y4dgs58 Sitar (United States)'), (9150, 'https://ror.org/04y4k8j69', 'no_lang_code', 1, 'https://ror.org/04y4k8j69 Xoran Technologies (United States)'), (9151, 'https://ror.org/04y727f83', 'en', 1, 'https://ror.org/04y727f83 Bucks County Division of Human Services'), (9152, 'https://ror.org/04y798z66', 'fr', 1, 'https://ror.org/04y798z66 Laboratoire National de Santé'), (9153, 'https://ror.org/04y93q769', 'no_lang_code', 1, 'https://ror.org/04y93q769 Aciont (United States)'), (9154, 'https://ror.org/04ye60n79', 'en', 1, 'https://ror.org/04ye60n79 Tikur Anbessa Hospital ጥቁር አንበሳ ሆስፒታል'), (9155, 'https://ror.org/04yg3w958', 'es', 1, 'https://ror.org/04yg3w958 Centro Médico Docente La Trinidad'), (9156, 'https://ror.org/04ygywa46', 'en', 1, 'https://ror.org/04ygywa46 Montana State University–Northern'), (9157, 'https://ror.org/04yh8wr33', 'en', 1, 'https://ror.org/04yh8wr33 Cure Spinal Muscular Atrophy'), (9158, 'https://ror.org/04yqm9y25', 'en', 1, 'https://ror.org/04yqm9y25 Child and Family Research Institute'), (9159, 'https://ror.org/04yqxq902', 'no_lang_code', 1, 'https://ror.org/04yqxq902 APD Life Sciences (United States)'), (9160, 'https://ror.org/04yt6jn66', 'en', 1, 'https://ror.org/04yt6jn66 National Rehabilitation Center 국립재활원'), (9161, 'https://ror.org/04yv5fh97', 'no_lang_code', 1, 'https://ror.org/04yv5fh97 Demtroys (Canada)'), (9162, 'https://ror.org/04yv8m152', 'no_lang_code', 1, 'https://ror.org/04yv8m152 Reaction Engineering International (United States)'), (9163, 'https://ror.org/04yveyc27', 'en', 1, 'https://ror.org/04yveyc27 Tosei General Hospital 公立陶生病院'), (9164, 'https://ror.org/04yvrj177', 'en', 1, 'https://ror.org/04yvrj177 European Society of Concurrent Enterprising Network Società Europea di Rete Concorrente Simultanea'), (9165, 'https://ror.org/04ywgwn19', 'no_lang_code', 1, 'https://ror.org/04ywgwn19 Neurobehavioral Research (United States)'), (9166, 'https://ror.org/04ywn3c84', 'no_lang_code', 1, 'https://ror.org/04ywn3c84 James Cropper (United Kingdom)'), (9167, 'https://ror.org/04yxwc698', 'en', 1, 'https://ror.org/04yxwc698 Cardiovascular Research Foundation'), (9168, 'https://ror.org/04yy0dd12', 'en', 1, 'https://ror.org/04yy0dd12 Animal Diseases Research Institute'), (9169, 'https://ror.org/04yyrj242', 'no_lang_code', 1, 'https://ror.org/04yyrj242 Monsanto (United Kingdom)'), (9170, 'https://ror.org/04yzcpd71', 'no_lang_code', 1, 'https://ror.org/04yzcpd71 Janssen (Belgium)'), (9171, 'https://ror.org/04z1nmb83', 'en', 1, 'https://ror.org/04z1nmb83 College of the Mainland'), (9172, 'https://ror.org/04z3gk160', 'no_lang_code', 1, 'https://ror.org/04z3gk160 Detroit R&D (United States)'), (9173, 'https://ror.org/04z664d45', 'en', 1, 'https://ror.org/04z664d45 Collège whittier Whittier College'), (9174, 'https://ror.org/04z7ybt59', 'no_lang_code', 1, 'https://ror.org/04z7ybt59 Spectros Corporation (United States)'), (9175, 'https://ror.org/04z9dde49', 'no_lang_code', 1, 'https://ror.org/04z9dde49 Cogmation Robotics (Canada)'), (9176, 'https://ror.org/04za2st18', 'en', 1, 'https://ror.org/04za2st18 National Health Service Scotland'), (9177, 'https://ror.org/04za49532', 'en', 1, 'https://ror.org/04za49532 Conference Board'), (9178, 'https://ror.org/04zahys21', 'en', 1, 'https://ror.org/04zahys21 National Association of Health Data Organizations'), (9179, 'https://ror.org/04zbejj85', 'en', 1, 'https://ror.org/04zbejj85 Ibaraki Prefectural Livestock Center 畜産センター/茨城県'), (9180, 'https://ror.org/04zd6dy90', 'no_lang_code', 1, 'https://ror.org/04zd6dy90 Applied Sciences (United States)'), (9181, 'https://ror.org/04zegtq13', 'en', 1, 'https://ror.org/04zegtq13 Franklin Regional Council of Governments'), (9182, 'https://ror.org/04zh19w51', 'en', 1, 'https://ror.org/04zh19w51 Metropolitan Police Service'), (9183, 'https://ror.org/04zhxxe39', 'en', 1, 'https://ror.org/04zhxxe39 Osys Technology'), (9184, 'https://ror.org/04zk9fe75', 'en', 1, 'https://ror.org/04zk9fe75 Arthritis Foundation'), (9185, 'https://ror.org/04zkc6t29', 'en', 1, 'https://ror.org/04zkc6t29 Fukuoka Dental College 福岡歯科大学'), (9186, 'https://ror.org/04znr7t37', 'en', 1, 'https://ror.org/04znr7t37 Cankdeska Cikana Community College'), (9187, 'https://ror.org/04zpfy292', 'no_lang_code', 1, 'https://ror.org/04zpfy292 Neurotronics (United States)'), (9188, 'https://ror.org/04zpjj182', 'de', 1, 'https://ror.org/04zpjj182 Klinikum Ernst von Bergmann'), (9189, 'https://ror.org/04zqrtt67', 'en', 1, 'https://ror.org/04zqrtt67 National Co-ordinating Centre for Public Engagement'), (9190, 'https://ror.org/04zs6dw65', 'en', 1, 'https://ror.org/04zs6dw65 Pacific Resources for Education and Learning'), (9191, 'https://ror.org/04zttqy84', 'no_lang_code', 1, 'https://ror.org/04zttqy84 Predictive Biology (United States)'), (9192, 'https://ror.org/04zw11527', 'en', 1, 'https://ror.org/04zw11527 National Institute of Plant Genome Research'), (9193, 'https://ror.org/04zw4rj10', 'no_lang_code', 1, 'https://ror.org/04zw4rj10 Arzeda (United States)'), (9194, 'https://ror.org/0502a2655', 'en', 1, 'https://ror.org/0502a2655 National Institute for Occupational Safety and Health'), (9195, 'https://ror.org/0503gyy63', 'es', 1, 'https://ror.org/0503gyy63 Parque Tecnológico de la Salud'), (9196, 'https://ror.org/0505r1x13', 'no_lang_code', 1, 'https://ror.org/0505r1x13 Affymax (United States)'), (9197, 'https://ror.org/0506jb942', 'no_lang_code', 1, 'https://ror.org/0506jb942 Cardno (United States)'), (9198, 'https://ror.org/0506v2b24', 'no_lang_code', 1, 'https://ror.org/0506v2b24 STRATA Skin Sciences (United States)'), (9199, 'https://ror.org/0508zfs37', 'no_lang_code', 1, 'https://ror.org/0508zfs37 Porter Novelli (United States)'), (9200, 'https://ror.org/050b6eh04', 'en', 1, 'https://ror.org/050b6eh04 Fertility Center of Las Vegas'), (9201, 'https://ror.org/050bs5t91', 'no_lang_code', 1, 'https://ror.org/050bs5t91 Neuro Device Innovations (United States)'), (9202, 'https://ror.org/050dg4y92', 'en', 1, 'https://ror.org/050dg4y92 National Alliance for Hispanic Health'), (9203, 'https://ror.org/050eja791', 'no_lang_code', 1, 'https://ror.org/050eja791 Ajinomoto (Russia) Аджиномото'), (9204, 'https://ror.org/050ey5v22', 'no_lang_code', 1, 'https://ror.org/050ey5v22 Health Decisions (United States)'), (9205, 'https://ror.org/050f37r96', 'no_lang_code', 1, 'https://ror.org/050f37r96 Arbor Vita (United States)'), (9206, 'https://ror.org/050hhcw63', 'en', 1, 'https://ror.org/050hhcw63 Accents On Health'), (9207, 'https://ror.org/050hscv31', 'en', 1, 'https://ror.org/050hscv31 Nemours Children''s Clinic'), (9208, 'https://ror.org/050kc8e49', 'no_lang_code', 1, 'https://ror.org/050kc8e49 Technology International Incorporated of Virginia (United States)'), (9209, 'https://ror.org/050n5zj41', 'no_lang_code', 1, 'https://ror.org/050n5zj41 NeuroNexus (United States)'), (9210, 'https://ror.org/050nq0931', 'en', 1, 'https://ror.org/050nq0931 Association of Occupational and Environmental Clinics'), (9211, 'https://ror.org/050prqy77', 'no_lang_code', 1, 'https://ror.org/050prqy77 Enzon Pharmaceuticals (United States)'), (9212, 'https://ror.org/050pxrb04', 'es', 1, 'https://ror.org/050pxrb04 Instituto de Cardiología y Cirugía Cardiovascular'), (9213, 'https://ror.org/050ssvp08', 'en', 1, 'https://ror.org/050ssvp08 Ohio Academy of Science'), (9214, 'https://ror.org/050t0wk48', 'no_lang_code', 1, 'https://ror.org/050t0wk48 Tasktop Technologies (Canada)'), (9215, 'https://ror.org/050wn8768', 'no_lang_code', 1, 'https://ror.org/050wn8768 BrightOutcome (United States)'), (9216, 'https://ror.org/050x9d346', 'en', 1, 'https://ror.org/050x9d346 Age UK'), (9217, 'https://ror.org/05113n960', 'en', 1, 'https://ror.org/05113n960 Lane Community College'), (9218, 'https://ror.org/051269613', 'en', 1, 'https://ror.org/051269613 National Forensic Institute'), (9219, 'https://ror.org/0513ya078', 'no_lang_code', 1, 'https://ror.org/0513ya078 TerraBioGen (Canada)'), (9220, 'https://ror.org/0514swh36', 'en', 1, 'https://ror.org/0514swh36 HealthRIGHT 360'), (9221, 'https://ror.org/0517kdv58', 'no_lang_code', 1, 'https://ror.org/0517kdv58 Newton Labs (United States)'), (9222, 'https://ror.org/051ae7717', 'nl', 1, 'https://ror.org/051ae7717 Stichting Epilepsie Instellingen Nederland'), (9223, 'https://ror.org/051cjrp31', 'no_lang_code', 1, 'https://ror.org/051cjrp31 McGuireWoods'), (9224, 'https://ror.org/051de0s21', 'no_lang_code', 1, 'https://ror.org/051de0s21 Sartorius (United Kingdom)'), (9225, 'https://ror.org/051dmmq45', 'no_lang_code', 1, 'https://ror.org/051dmmq45 NuPotential (United States)'), (9226, 'https://ror.org/051fq1m45', 'en', 1, 'https://ror.org/051fq1m45 Massachusetts Executive Office of Health and Human Services'), (9227, 'https://ror.org/051hx5h67', 'en', 1, 'https://ror.org/051hx5h67 Kidney Centre'), (9228, 'https://ror.org/051jtz490', 'no_lang_code', 1, 'https://ror.org/051jtz490 Thoratec Corporation (United States)'), (9229, 'https://ror.org/051jx6464', 'en', 1, 'https://ror.org/051jx6464 Waianae Coast Comprehensive Health Center'), (9230, 'https://ror.org/051mrhb02', 'hu', 1, 'https://ror.org/051mrhb02 Országos Korányi Tbc és Pulmonológiai Intézet'), (9231, 'https://ror.org/051nxfa23', 'de', 1, 'https://ror.org/051nxfa23 St. Franziskus Hospital'), (9232, 'https://ror.org/051ppg660', 'en', 1, 'https://ror.org/051ppg660 National Institute of Animal Health 動物衛生研究部門'), (9233, 'https://ror.org/051pzmv95', 'en', 1, 'https://ror.org/051pzmv95 Yamaguchi Prefecture Central Hospital 山口県立総合医療センター'), (9234, 'https://ror.org/051vg8924', 'en', 1, 'https://ror.org/051vg8924 Boston Children''s Museum'), (9235, 'https://ror.org/051y01w95', 'no_lang_code', 1, 'https://ror.org/051y01w95 Site Vision Surveys (United Kingdom)'), (9236, 'https://ror.org/051zy3f83', 'no_lang_code', 1, 'https://ror.org/051zy3f83 Chrysalis BioTherapeutics (United States)'), (9237, 'https://ror.org/052193f04', 'no_lang_code', 1, 'https://ror.org/052193f04 Biolog (United States)'), (9238, 'https://ror.org/0521rfb23', 'en', 1, 'https://ror.org/0521rfb23 Lincoln University - Pennsylvania Universidad Lincoln'), (9239, 'https://ror.org/0522mgp14', 'en', 1, 'https://ror.org/0522mgp14 Wesley Long Hospital'), (9240, 'https://ror.org/052333450', 'no_lang_code', 1, 'https://ror.org/052333450 Electro Energy (United States)'), (9241, 'https://ror.org/0524z5q72', 'en', 1, 'https://ror.org/0524z5q72 Sindh Institute of Urology and Transplantation'), (9242, 'https://ror.org/0525r6t88', 'no_lang_code', 1, 'https://ror.org/0525r6t88 Chiral Photonics (United States)'), (9243, 'https://ror.org/05261sq16', 'en', 1, 'https://ror.org/05261sq16 Royal Blackburn Teaching Hospital'), (9244, 'https://ror.org/0527dhk70', 'no_lang_code', 1, 'https://ror.org/0527dhk70 Athens Research and Technology (United States)'), (9245, 'https://ror.org/0527eje21', 'no_lang_code', 1, 'https://ror.org/0527eje21 Thrombodyne (United States)'), (9246, 'https://ror.org/0527mfk98', 'en', 1, 'https://ror.org/0527mfk98 Central Institute of Medicinal and Aromatic Plants केन्द्रीय औषधीय एवं सगंध पौधा संस्थान സെൻട്രൽ ഇൻസ്റ്റിറ്റ്യൂട്ട് ഓഫ് മെഡിസിനൽ ആന്റ് അരോമാറ്റിക് പ്ലാൻറ്സ്'), (9247, 'https://ror.org/052ahj806', 'fr', 1, 'https://ror.org/052ahj806 Centre de Génétique Moléculaire'), (9248, 'https://ror.org/052arry73', 'en', 1, 'https://ror.org/052arry73 Panagiotis & Aglaia Kyriakou Children''s Hospital'), (9249, 'https://ror.org/052ay3140', 'no_lang_code', 1, 'https://ror.org/052ay3140 Active Space Technologies (Portugal)'), (9250, 'https://ror.org/052cjbe24', 'en', 1, 'https://ror.org/052cjbe24 National Institute of Oceanography and Fisheries'), (9251, 'https://ror.org/052crws06', 'en', 1, 'https://ror.org/052crws06 Vocational Instruction Project Community Services'), (9252, 'https://ror.org/052d1a351', 'de', 1, 'https://ror.org/052d1a351 Museum für Naturkunde Museum für Naturkunde - Leibniz Institute for Evolution and Biodiversity Science'), (9253, 'https://ror.org/052d4jz71', 'no_lang_code', 1, 'https://ror.org/052d4jz71 CHI Systems (United States)'), (9254, 'https://ror.org/052e6h087', 'pt', 1, 'https://ror.org/052e6h087 Faculdade de Medicina de São José do Rio Preto Faculty of Medicine of São José do Rio Preto'), (9255, 'https://ror.org/052efn961', 'en', 1, 'https://ror.org/052efn961 Arkansas Academy of Science'), (9256, 'https://ror.org/052emna24', 'no_lang_code', 1, 'https://ror.org/052emna24 Hepatitis B Foundation'), (9257, 'https://ror.org/052gypd56', 'en', 1, 'https://ror.org/052gypd56 Nuclear Threat Initiative'), (9258, 'https://ror.org/052gyrt19', 'no_lang_code', 1, 'https://ror.org/052gyrt19 Polatomic (United States)'), (9259, 'https://ror.org/052k56z27', 'en', 1, 'https://ror.org/052k56z27 Austin College'), (9260, 'https://ror.org/052qet256', 'no_lang_code', 1, 'https://ror.org/052qet256 Organix (United States)'), (9261, 'https://ror.org/052r7yf45', 'en', 1, 'https://ror.org/052r7yf45 Institute of Chemical Kinetics and Combustion Федеральное государственное бюджетное учреждение науки Институт химической кинетики и горения им. В.В. Воеводского Сибирского отделения Российской академии наук'), (9262, 'https://ror.org/052sh1z51', 'no_lang_code', 1, 'https://ror.org/052sh1z51 MAST Carbon (United Kingdom)'), (9263, 'https://ror.org/052v1k340', 'no_lang_code', 1, 'https://ror.org/052v1k340 DSM (Canada)'), (9264, 'https://ror.org/052v1zn95', 'no_lang_code', 1, 'https://ror.org/052v1zn95 Linde (United Kingdom)'), (9265, 'https://ror.org/052vt9742', 'en', 1, 'https://ror.org/052vt9742 St. Joseph Medical Center'), (9266, 'https://ror.org/052x1xp04', 'no_lang_code', 1, 'https://ror.org/052x1xp04 Total Child Health (United States)'), (9267, 'https://ror.org/052x5ps19', 'en', 1, 'https://ror.org/052x5ps19 Foundation for Applied Molecular Evolution'), (9268, 'https://ror.org/052yz6z95', 'en', 1, 'https://ror.org/052yz6z95 Trident Technical College'), (9269, 'https://ror.org/052zay176', 'en', 1, 'https://ror.org/052zay176 Asian and Pacific Islander Wellness Center'), (9270, 'https://ror.org/0530d6n45', 'en', 1, 'https://ror.org/0530d6n45 National Center for Clinical Laboratories'), (9271, 'https://ror.org/05324v822', 'en', 1, 'https://ror.org/05324v822 Actuarial Research Corporation'), (9272, 'https://ror.org/0532mvt92', 'no_lang_code', 1, 'https://ror.org/0532mvt92 LKT Laboratories (United States)'), (9273, 'https://ror.org/0532tps88', 'it', 1, 'https://ror.org/0532tps88 Ospedale Eugenio Morelli'), (9274, 'https://ror.org/0534bc363', 'fr', 1, 'https://ror.org/0534bc363 Centre Cardiologique du Nord'), (9275, 'https://ror.org/05355vt65', 'pt', 1, 'https://ror.org/05355vt65 Secretaria Municipal de Saúde'), (9276, 'https://ror.org/0535c3537', 'no_lang_code', 1, 'https://ror.org/0535c3537 Mitsubishi Chemical Holdings Mitsubishi Chemical Holdings (Japan) 株式会社三菱ケミカルホールディングス'), (9277, 'https://ror.org/0538gdx71', 'en', 1, 'https://ror.org/0538gdx71 Jawaharlal Nehru Centre for Advanced Scientific Research'), (9278, 'https://ror.org/053ad7h16', 'no_lang_code', 1, 'https://ror.org/053ad7h16 Saiseikai Shigaken Hospital 済生会滋賀県病院'), (9279, 'https://ror.org/053apnz82', 'en', 1, 'https://ror.org/053apnz82 School for Advanced Research'), (9280, 'https://ror.org/053asbv83', 'en', 1, 'https://ror.org/053asbv83 American Academy of Cosmetic Dentistry'), (9281, 'https://ror.org/053bg5z25', 'en', 1, 'https://ror.org/053bg5z25 New England Complex Systems Institute'), (9282, 'https://ror.org/053cd8j25', 'no_lang_code', 1, 'https://ror.org/053cd8j25 Osmania General Hospital ఉస్మానియా జనరల్ హాస్పిటల్'), (9283, 'https://ror.org/053cdw390', 'no_lang_code', 1, 'https://ror.org/053cdw390 Toujinkai Hospital 吉祥寺あさひ病院は'), (9284, 'https://ror.org/053ef7v72', 'no_lang_code', 1, 'https://ror.org/053ef7v72 Fractal Systems (Canada)'), (9285, 'https://ror.org/053efmw82', 'no_lang_code', 1, 'https://ror.org/053efmw82 Precision Optics Corporation (United States)'), (9286, 'https://ror.org/053ehy143', 'no_lang_code', 1, 'https://ror.org/053ehy143 Airak (United States)'), (9287, 'https://ror.org/053f3rt53', 'en', 1, 'https://ror.org/053f3rt53 Favaloro Foundation'), (9288, 'https://ror.org/053frny31', 'no_lang_code', 1, 'https://ror.org/053frny31 Photek (United Kingdom)'), (9289, 'https://ror.org/053g6zg46', 'en', 1, 'https://ror.org/053g6zg46 Institute of Crop Science 次世代作物開発研究センター'), (9290, 'https://ror.org/053h7gw81', 'en', 1, 'https://ror.org/053h7gw81 Swami Vivekanand Subharti University'), (9291, 'https://ror.org/053k5y417', 'en', 1, 'https://ror.org/053k5y417 Institute for Molecular Medicine'), (9292, 'https://ror.org/053nef216', 'no_lang_code', 1, 'https://ror.org/053nef216 Vescent Photonics (United States)'), (9293, 'https://ror.org/053nfh638', 'en', 1, 'https://ror.org/053nfh638 Center for Severe Weather Research'), (9294, 'https://ror.org/053pe9m10', 'en', 1, 'https://ror.org/053pe9m10 Canadian Coalition for Global Health Research'), (9295, 'https://ror.org/053qgsf62', 'no_lang_code', 1, 'https://ror.org/053qgsf62 MATECH (United States)'), (9296, 'https://ror.org/053re1s95', 'no_lang_code', 1, 'https://ror.org/053re1s95 Beryllium (United States)'), (9297, 'https://ror.org/053rfa017', 'en', 1, 'https://ror.org/053rfa017 Institute for Infocomm Research'), (9298, 'https://ror.org/053t8wp47', 'no_lang_code', 1, 'https://ror.org/053t8wp47 Advanta Seeds (Netherlands)'), (9299, 'https://ror.org/053v8b344', 'en', 1, 'https://ror.org/053v8b344 Economic Policy Institute'), (9300, 'https://ror.org/053vdeh68', 'en', 1, 'https://ror.org/053vdeh68 St. Luke''s Hospital'), (9301, 'https://ror.org/053vvhn22', 'en', 1, 'https://ror.org/053vvhn22 Whiston Hospital'), (9302, 'https://ror.org/053wdqs10', 'fr', 1, 'https://ror.org/053wdqs10 Institut Alfred Fournier'), (9303, 'https://ror.org/053y9xq02', 'en', 1, 'https://ror.org/053y9xq02 Pandit Bhagwat Dayal Sharma Post Graduate Institute of Medical Sciences'), (9304, 'https://ror.org/053zey189', 'en', 1, 'https://ror.org/053zey189 Takayama Red Cross Hospital 高山赤十字病院'), (9305, 'https://ror.org/05414wx82', 'no_lang_code', 1, 'https://ror.org/05414wx82 Sasken (India)'), (9306, 'https://ror.org/0541a3n79', 'en', 1, 'https://ror.org/0541a3n79 International Crops Research Institute for the Semi-Arid Tropics'), (9307, 'https://ror.org/0542yj463', 'no_lang_code', 1, 'https://ror.org/0542yj463 Guided Therapeutics (United States)'), (9308, 'https://ror.org/05434fs92', 'en', 1, 'https://ror.org/05434fs92 Brookhaven Science Associates'), (9309, 'https://ror.org/05450eg98', 'en', 1, 'https://ror.org/05450eg98 Alamo Colleges'), (9310, 'https://ror.org/0545sd266', 'no_lang_code', 1, 'https://ror.org/0545sd266 PAREXEL International (France)'), (9311, 'https://ror.org/05476d639', 'es', 1, 'https://ror.org/05476d639 Instituto Cardiovascular de Buenos Aires'), (9312, 'https://ror.org/0547sz392', 'en', 1, 'https://ror.org/0547sz392 American Thoracic Society'), (9313, 'https://ror.org/0548qkv95', 'no_lang_code', 1, 'https://ror.org/0548qkv95 DNASTAR (United States)'), (9314, 'https://ror.org/054abn387', 'no_lang_code', 1, 'https://ror.org/054abn387 Dimera (United States)'), (9315, 'https://ror.org/054cjrc07', 'no_lang_code', 1, 'https://ror.org/054cjrc07 Quantronix (United States)'), (9316, 'https://ror.org/054d19q51', 'en', 1, 'https://ror.org/054d19q51 Council of Graduate Schools'), (9317, 'https://ror.org/054fjvz18', 'en', 1, 'https://ror.org/054fjvz18 Center for American Archeology'), (9318, 'https://ror.org/054hmd463', 'no_lang_code', 1, 'https://ror.org/054hmd463 Toshiba (United Kingdom)'), (9319, 'https://ror.org/054k4qn06', 'no_lang_code', 1, 'https://ror.org/054k4qn06 Advanced Ceramics Manufacturing (United States)'), (9320, 'https://ror.org/054kmhw06', 'en', 1, 'https://ror.org/054kmhw06 Western Institute For Biomedical Research'), (9321, 'https://ror.org/054q9r058', 'no_lang_code', 1, 'https://ror.org/054q9r058 Envigo (United States)'), (9322, 'https://ror.org/054rn8r20', 'en', 1, 'https://ror.org/054rn8r20 San Francisco Community Clinic Consortium'), (9323, 'https://ror.org/054s8nj77', 'en', 1, 'https://ror.org/054s8nj77 Innovative Designs in Environments for an Aging Society'), (9324, 'https://ror.org/054sgna66', 'en', 1, 'https://ror.org/054sgna66 Institute of Biochemistry'), (9325, 'https://ror.org/054spa083', 'en', 1, 'https://ror.org/054spa083 Oregon Health Authority'), (9326, 'https://ror.org/054tgm925', 'en', 1, 'https://ror.org/054tgm925 Aspirus Wausau Hospital'), (9327, 'https://ror.org/054vepm81', 'en', 1, 'https://ror.org/054vepm81 Southern Colorado Clinic'), (9328, 'https://ror.org/054wd3532', 'en', 1, 'https://ror.org/054wd3532 Native American Rehabilitation Association'), (9329, 'https://ror.org/054wvh509', 'no_lang_code', 1, 'https://ror.org/054wvh509 InDevR (United States)'), (9330, 'https://ror.org/054xfn086', 'no_lang_code', 1, 'https://ror.org/054xfn086 Supercon (United States)'), (9331, 'https://ror.org/054ye0e45', 'it', 1, 'https://ror.org/054ye0e45 Istituto di Analisi dei Sistemi ed Informatica Antonio Ruberti'), (9332, 'https://ror.org/054z08865', 'en', 1, 'https://ror.org/054z08865 Hyogo Prefectural Cancer Center 兵庫県立がんセンター'), (9333, 'https://ror.org/054z5aj03', 'no_lang_code', 1, 'https://ror.org/054z5aj03 Ateknea Solutions (Hungary)'), (9334, 'https://ror.org/0550f5p69', 'no_lang_code', 1, 'https://ror.org/0550f5p69 MultiCell Technologies (United States)'), (9335, 'https://ror.org/0550hnq49', 'en', 1, 'https://ror.org/0550hnq49 Samuel S Fels Fund'), (9336, 'https://ror.org/0554dgq35', 'en', 1, 'https://ror.org/0554dgq35 Georgia Department of Behavioral Health and Developmental Disabilities'), (9337, 'https://ror.org/0556kt608', 'en', 1, 'https://ror.org/0556kt608 Institut International d''Agriculture Tropicale International Institute of Tropical Agriculture'), (9338, 'https://ror.org/05571bq02', 'en', 1, 'https://ror.org/05571bq02 Teratology Society'), (9339, 'https://ror.org/0558q2529', 'en', 1, 'https://ror.org/0558q2529 Manchester City Council'), (9340, 'https://ror.org/0559h9k50', 'en', 1, 'https://ror.org/0559h9k50 Gatorade Sports Science Institute'), (9341, 'https://ror.org/055a6nt34', 'it', 1, 'https://ror.org/055a6nt34 Servizio Sanitario Nazionale'), (9342, 'https://ror.org/055bcma36', 'en', 1, 'https://ror.org/055bcma36 Hospital Venereal and Skin Diseases Thessaloniki Νοσοκομείο Αφροδισίων & Δερματικών Νόσων Θεσσαλονίκης'), (9343, 'https://ror.org/055dn7q89', 'no_lang_code', 1, 'https://ror.org/055dn7q89 Neuros Medical (United States)'), (9344, 'https://ror.org/055epcp86', 'en', 1, 'https://ror.org/055epcp86 Pankey Institute'), (9345, 'https://ror.org/055geks33', 'en', 1, 'https://ror.org/055geks33 United States Breastfeeding Committee'), (9346, 'https://ror.org/055h5ke26', 'no_lang_code', 1, 'https://ror.org/055h5ke26 Centre for Computational Continuum Mechanics (Slovenia)'), (9347, 'https://ror.org/055hfb865', 'en', 1, 'https://ror.org/055hfb865 Carlsberg Laboratory'), (9348, 'https://ror.org/055keby75', 'no_lang_code', 1, 'https://ror.org/055keby75 Walter Knoll (Germany)'), (9349, 'https://ror.org/055kr0e44', 'no_lang_code', 1, 'https://ror.org/055kr0e44 ADVA Optical Networking (Germany)'), (9350, 'https://ror.org/055kym783', 'en', 1, 'https://ror.org/055kym783 Southern New England Rehabilitation Center'), (9351, 'https://ror.org/055m51988', 'no_lang_code', 1, 'https://ror.org/055m51988 Ohkubo Hospital 大久保病院'), (9352, 'https://ror.org/055ne9q08', 'en', 1, 'https://ror.org/055ne9q08 Wentworth Hospital'), (9353, 'https://ror.org/055nj6202', 'fr', 1, 'https://ror.org/055nj6202 Les Scientifines'), (9354, 'https://ror.org/055p38x79', 'en', 1, 'https://ror.org/055p38x79 Ontario Tobacco Research Unit Unite de Recherche sur le Tabac de L''Ontario'), (9355, 'https://ror.org/055qxpb63', 'no_lang_code', 1, 'https://ror.org/055qxpb63 EpiVax (United States)'), (9356, 'https://ror.org/055sayf44', 'no_lang_code', 1, 'https://ror.org/055sayf44 Analogic (Canada)'), (9357, 'https://ror.org/055sg7x74', 'en', 1, 'https://ror.org/055sg7x74 Headache Care Center'), (9358, 'https://ror.org/055t7f808', 'en', 1, 'https://ror.org/055t7f808 Hellenic Center for Disease Control & Prevention'), (9359, 'https://ror.org/055ttwk14', 'en', 1, 'https://ror.org/055ttwk14 Organisation mondiale de la santé World Health Organization - Egypt Всемирная организация здравоохранения'), (9360, 'https://ror.org/055yerj39', 'en', 1, 'https://ror.org/055yerj39 Roy Castle Lung Cancer Foundation'), (9361, 'https://ror.org/0562sdw81', 'en', 1, 'https://ror.org/0562sdw81 Phillips Academy'), (9362, 'https://ror.org/0568x1w36', 'no_lang_code', 1, 'https://ror.org/0568x1w36 Industrial Science & Technology Network (United States)'), (9363, 'https://ror.org/05695qy17', 'pl', 1, 'https://ror.org/05695qy17 Instytut Farmaceutyczny'), (9364, 'https://ror.org/056d0k256', 'en', 1, 'https://ror.org/056d0k256 Sterling College - Vermont'), (9365, 'https://ror.org/056ffv270', 'en', 1, 'https://ror.org/056ffv270 Imperial College Healthcare NHS Trust'), (9366, 'https://ror.org/056gzgs71', 'no_lang_code', 1, 'https://ror.org/056gzgs71 Huawei Technologies (United Kingdom)'), (9367, 'https://ror.org/056m5ng69', 'it', 1, 'https://ror.org/056m5ng69 Ospedale degli Infermi'), (9368, 'https://ror.org/056mnr244', 'en', 1, 'https://ror.org/056mnr244 Punjab Institute of Cardiology'), (9369, 'https://ror.org/056nm0533', 'en', 1, 'https://ror.org/056nm0533 Cooper University Health Care'), (9370, 'https://ror.org/056nq0726', 'en', 1, 'https://ror.org/056nq0726 Royal Lancaster Infirmary'), (9371, 'https://ror.org/056pyfd10', 'no_lang_code', 1, 'https://ror.org/056pyfd10 Agile Sciences (United States)'), (9372, 'https://ror.org/056qqqn18', 'en', 1, 'https://ror.org/056qqqn18 National Disaster Medical Center 国立病院機構災害医療センター'), (9373, 'https://ror.org/056qyhq36', 'en', 1, 'https://ror.org/056qyhq36 Preferred Family Healthcare'), (9374, 'https://ror.org/056v48353', 'en', 1, 'https://ror.org/056v48353 Northern Alberta Institute of Technology'), (9375, 'https://ror.org/056y35868', 'en', 1, 'https://ror.org/056y35868 New Zealand College of Chiropractic'), (9376, 'https://ror.org/056za9j29', 'en', 1, 'https://ror.org/056za9j29 Korea Center for Disease Control and Prevention'), (9377, 'https://ror.org/0570hc946', 'no_lang_code', 1, 'https://ror.org/0570hc946 Targeson (United States)'), (9378, 'https://ror.org/0576hnt37', 'fr', 1, 'https://ror.org/0576hnt37 Québec Science (Canada)'), (9379, 'https://ror.org/0577pn814', 'en', 1, 'https://ror.org/0577pn814 Newberry College'), (9380, 'https://ror.org/0579hfc41', 'no_lang_code', 1, 'https://ror.org/0579hfc41 Ansys (United Kingdom)'); INSERT INTO `rors` VALUES (9381, 'https://ror.org/057bx8w90', 'no_lang_code', 1, 'https://ror.org/057bx8w90 Kinder Magic Software (United States)'), (9382, 'https://ror.org/057by3h53', 'en', 1, 'https://ror.org/057by3h53 Houston Headache & Neurological Institute'), (9383, 'https://ror.org/057fsw088', 'no_lang_code', 1, 'https://ror.org/057fsw088 Recon Instruments (Canada)'), (9384, 'https://ror.org/057g30m29', 'no_lang_code', 1, 'https://ror.org/057g30m29 2B Technologies (United States)'), (9385, 'https://ror.org/057gt1g02', 'no_lang_code', 1, 'https://ror.org/057gt1g02 3D Molecular Designs (United States)'), (9386, 'https://ror.org/057hbdz28', 'en', 1, 'https://ror.org/057hbdz28 Tochigi Medical Center 栃木医療センター'), (9387, 'https://ror.org/057jpj338', 'no_lang_code', 1, 'https://ror.org/057jpj338 Pall Corporation (United States)'), (9388, 'https://ror.org/057k4vd77', 'en', 1, 'https://ror.org/057k4vd77 Hungarian Meat Research Institute'), (9389, 'https://ror.org/057kyc739', 'en', 1, 'https://ror.org/057kyc739 Vitalant'), (9390, 'https://ror.org/057m69507', 'no_lang_code', 1, 'https://ror.org/057m69507 Titanium Metals Corporation (United Kingdom)'), (9391, 'https://ror.org/057n4xq60', 'en', 1, 'https://ror.org/057n4xq60 Institute of Higher Nervous Activity and Neurophysiology Федеральное государственное бюджетное учреждение науки Институт высшей нервной деятельности и нейрофизиологии Российской академии наук'), (9392, 'https://ror.org/057pedz06', 'en', 1, 'https://ror.org/057pedz06 Lee College'), (9393, 'https://ror.org/057pf1v38', 'en', 1, 'https://ror.org/057pf1v38 Foundation for Health Care Quality'), (9394, 'https://ror.org/057q4mw47', 'en', 1, 'https://ror.org/057q4mw47 Lloyd''s Register Foundation'), (9395, 'https://ror.org/057r09725', 'no_lang_code', 1, 'https://ror.org/057r09725 McKesson (United States)'), (9396, 'https://ror.org/057v10231', 'no_lang_code', 1, 'https://ror.org/057v10231 AdvanSource Biomaterials (United States)'), (9397, 'https://ror.org/057vc9k50', 'en', 1, 'https://ror.org/057vc9k50 Tai Po Hospital 大埔醫院'), (9398, 'https://ror.org/057xckz35', 'no_lang_code', 1, 'https://ror.org/057xckz35 Papa Ola Lokahi'), (9399, 'https://ror.org/057xmsr27', 'en', 1, 'https://ror.org/057xmsr27 Virginia Commonwealth University Medical Center'), (9400, 'https://ror.org/057xs4529', 'en', 1, 'https://ror.org/057xs4529 Island Health'), (9401, 'https://ror.org/057yn3648', 'no_lang_code', 1, 'https://ror.org/057yn3648 Pro Ed (United States)'), (9402, 'https://ror.org/0580rag35', 'it', 1, 'https://ror.org/0580rag35 Frascati Scienza'), (9403, 'https://ror.org/0581b6d66', 'en', 1, 'https://ror.org/0581b6d66 Fleming College'), (9404, 'https://ror.org/0583ded52', 'en', 1, 'https://ror.org/0583ded52 North Dakota Department of Human Services'), (9405, 'https://ror.org/0583j8v67', 'en', 1, 'https://ror.org/0583j8v67 Strong Memorial Hospital'), (9406, 'https://ror.org/0584why53', 'en', 1, 'https://ror.org/0584why53 Hagerstown Community College'), (9407, 'https://ror.org/0584zt830', 'no_lang_code', 1, 'https://ror.org/0584zt830 EndoShape (United States)'), (9408, 'https://ror.org/0586k5242', 'no_lang_code', 1, 'https://ror.org/0586k5242 Kirin (Japan) キリン株式会社'), (9409, 'https://ror.org/058aed112', 'en', 1, 'https://ror.org/058aed112 Los Angeles Community College District'), (9410, 'https://ror.org/058c0g260', 'en', 1, 'https://ror.org/058c0g260 Neuroscience Education Institute'), (9411, 'https://ror.org/058dc0w16', 'en', 1, 'https://ror.org/058dc0w16 Beijing Center for Disease Prevention and Control 北京市疾病预防控制中心'), (9412, 'https://ror.org/058deva64', 'no_lang_code', 1, 'https://ror.org/058deva64 Bio Concept Laboratories (United States)'), (9413, 'https://ror.org/058dk4619', 'no_lang_code', 1, 'https://ror.org/058dk4619 Endocyte (United States)'), (9414, 'https://ror.org/058etpm79', 'no_lang_code', 1, 'https://ror.org/058etpm79 Sion Power (United States)'), (9415, 'https://ror.org/058eyth26', 'no_lang_code', 1, 'https://ror.org/058eyth26 Vemco (Canada)'), (9416, 'https://ror.org/058hbcp36', 'no_lang_code', 1, 'https://ror.org/058hbcp36 Empirical Technologies (United States)'), (9417, 'https://ror.org/058kdrc56', 'en', 1, 'https://ror.org/058kdrc56 National Center of Radiobiology and Radiation Protection Национален център по радиобиология и радиационна защита'), (9418, 'https://ror.org/058ndjg49', 'en', 1, 'https://ror.org/058ndjg49 Logan University'), (9419, 'https://ror.org/058pkw062', 'en', 1, 'https://ror.org/058pkw062 New York State Unified Court System'), (9420, 'https://ror.org/058qmst67', 'fr', 1, 'https://ror.org/058qmst67 Hôpital Saint Roch'), (9421, 'https://ror.org/058sedk89', 'no_lang_code', 1, 'https://ror.org/058sedk89 Laureate Learning Systems (United States)'), (9422, 'https://ror.org/058t40d22', 'en', 1, 'https://ror.org/058t40d22 Central Leprosy Teaching & Research Institute'), (9423, 'https://ror.org/058vcb964', 'it', 1, 'https://ror.org/058vcb964 Casa di Cura Villa Bianca'), (9424, 'https://ror.org/058xqwv02', 'en', 1, 'https://ror.org/058xqwv02 Voluntary Health Services Hospital'), (9425, 'https://ror.org/058xvac60', 'en', 1, 'https://ror.org/058xvac60 Baltimore Washington Center for Psychoanalysis'), (9426, 'https://ror.org/0590kp014', 'en', 1, 'https://ror.org/0590kp014 African Field Epidemiology Network'), (9427, 'https://ror.org/0593f3b93', 'en', 1, 'https://ror.org/0593f3b93 Michigan Psychoanalytic Institute'), (9428, 'https://ror.org/0593p4448', 'en', 1, 'https://ror.org/0593p4448 International Rice Research Institute'), (9429, 'https://ror.org/05952x620', 'en', 1, 'https://ror.org/05952x620 Institute of Occupational Safety Zavod za varstvo pri delu'), (9430, 'https://ror.org/0598xyq26', 'no_lang_code', 1, 'https://ror.org/0598xyq26 TransGenex Nanobiotech (United States)'), (9431, 'https://ror.org/05998w930', 'en', 1, 'https://ror.org/05998w930 Council on Environmental Quality'), (9432, 'https://ror.org/0599dmq43', 'en', 1, 'https://ror.org/0599dmq43 Indian Institute of Spices Research'), (9433, 'https://ror.org/059bxva30', 'no_lang_code', 1, 'https://ror.org/059bxva30 Therapeutic Proteins International (United States)'), (9434, 'https://ror.org/059gk7j33', 'no_lang_code', 1, 'https://ror.org/059gk7j33 Imperial Innovations (United Kingdom)'), (9435, 'https://ror.org/059j9s184', 'en', 1, 'https://ror.org/059j9s184 Lone Star College'), (9436, 'https://ror.org/059jfth35', 'de', 1, 'https://ror.org/059jfth35 Klinikum Stuttgart'), (9437, 'https://ror.org/059jg0v11', 'en', 1, 'https://ror.org/059jg0v11 Reitan Neuropsychology Laboratory'), (9438, 'https://ror.org/059kxna68', 'no_lang_code', 1, 'https://ror.org/059kxna68 ActivBiotics (United States)'), (9439, 'https://ror.org/059kzn841', 'en', 1, 'https://ror.org/059kzn841 Rocky Mountain MS Center'), (9440, 'https://ror.org/059mgez24', 'en', 1, 'https://ror.org/059mgez24 National Institute of Veterinary Research'), (9441, 'https://ror.org/059nz2x67', 'en', 1, 'https://ror.org/059nz2x67 New Jersey Department of Human Services'), (9442, 'https://ror.org/059q0e640', 'no_lang_code', 1, 'https://ror.org/059q0e640 Conciaricerca'), (9443, 'https://ror.org/059r8r572', 'en', 1, 'https://ror.org/059r8r572 Johnson County Community College'), (9444, 'https://ror.org/059rn9488', 'no_lang_code', 1, 'https://ror.org/059rn9488 Hewlett-Packard (United States)'), (9445, 'https://ror.org/059rw1510', 'no_lang_code', 1, 'https://ror.org/059rw1510 Ekso Bionics (United States)'), (9446, 'https://ror.org/059sp8j34', 'es', 1, 'https://ror.org/059sp8j34 Instituto Politécnico Nacional National Polytechnic Institute'), (9447, 'https://ror.org/059t16j93', 'no_lang_code', 1, 'https://ror.org/059t16j93 Takatsuki General Hospital 高槻病院'), (9448, 'https://ror.org/059tkh055', 'no_lang_code', 1, 'https://ror.org/059tkh055 MYcroarray (United States)'), (9449, 'https://ror.org/059vag305', 'no_lang_code', 1, 'https://ror.org/059vag305 Covance (United Kingdom)'), (9450, 'https://ror.org/059x8vm09', 'en', 1, 'https://ror.org/059x8vm09 Gujarat Technological University'), (9451, 'https://ror.org/059xgqj73', 'en', 1, 'https://ror.org/059xgqj73 Society for Prevention Research'), (9452, 'https://ror.org/059xksf83', 'no_lang_code', 1, 'https://ror.org/059xksf83 Balfour Beatty (United Kingdom)'), (9453, 'https://ror.org/059yd5j13', 'en', 1, 'https://ror.org/059yd5j13 Georgetown College'), (9454, 'https://ror.org/059zrjt20', 'no_lang_code', 1, 'https://ror.org/059zrjt20 TandemLaunch (Canada)'), (9455, 'https://ror.org/059zyyv27', 'en', 1, 'https://ror.org/059zyyv27 Meta House'), (9456, 'https://ror.org/05a11cb13', 'en', 1, 'https://ror.org/05a11cb13 Gadsden State Community College'), (9457, 'https://ror.org/05a15fa50', 'en', 1, 'https://ror.org/05a15fa50 National Museum Wales'), (9458, 'https://ror.org/05a2kh390', 'no_lang_code', 1, 'https://ror.org/05a2kh390 Pulmokine (United States)'), (9459, 'https://ror.org/05a33dk65', 'no_lang_code', 1, 'https://ror.org/05a33dk65 Aquilent (United States)'), (9460, 'https://ror.org/05a3z6914', 'no_lang_code', 1, 'https://ror.org/05a3z6914 Schrodinger (United States)'), (9461, 'https://ror.org/05a409v92', 'no_lang_code', 1, 'https://ror.org/05a409v92 BioPhyZica (United States)'), (9462, 'https://ror.org/05a6emh10', 'en', 1, 'https://ror.org/05a6emh10 Osteogenesis Imperfecta Foundation'), (9463, 'https://ror.org/05a6ey653', 'en', 1, 'https://ror.org/05a6ey653 Dakota County Technical College'), (9464, 'https://ror.org/05a9hae73', 'es', 1, 'https://ror.org/05a9hae73 Instituto de Medicina Tropical “Pedro Kourí”'), (9465, 'https://ror.org/05acynk65', 'en', 1, 'https://ror.org/05acynk65 Centre of Biotechnology of Sfax'), (9466, 'https://ror.org/05ad30n04', 'no_lang_code', 1, 'https://ror.org/05ad30n04 Alceon Corporation (United States)'), (9467, 'https://ror.org/05addee68', 'no_lang_code', 1, 'https://ror.org/05addee68 General Motors (United States)'), (9468, 'https://ror.org/05adsq794', 'en', 1, 'https://ror.org/05adsq794 D''Youville College'), (9469, 'https://ror.org/05agtcg56', 'en', 1, 'https://ror.org/05agtcg56 Mary Bird Perkins Cancer Center'), (9470, 'https://ror.org/05akaw061', 'no_lang_code', 1, 'https://ror.org/05akaw061 Tekna Plasma Systems (Canada)'), (9471, 'https://ror.org/05akcvn61', 'en', 1, 'https://ror.org/05akcvn61 Korea National Tuberculosis Association'), (9472, 'https://ror.org/05amq4n56', 'no_lang_code', 1, 'https://ror.org/05amq4n56 Biological Monitoring Incorporated (United States)'), (9473, 'https://ror.org/05an61k54', 'en', 1, 'https://ror.org/05an61k54 Bellin College'), (9474, 'https://ror.org/05and0d04', 'no_lang_code', 1, 'https://ror.org/05and0d04 Therametric Technologies (United States)'), (9475, 'https://ror.org/05aqjad88', 'no_lang_code', 1, 'https://ror.org/05aqjad88 Astraea Therapeutics (United States)'), (9476, 'https://ror.org/05arxpe18', 'en', 1, 'https://ror.org/05arxpe18 Billings Clinic'), (9477, 'https://ror.org/05asn5035', 'en', 1, 'https://ror.org/05asn5035 Tokyo National Hospital 国立病院機構東京病院'), (9478, 'https://ror.org/05avmsq62', 'en', 1, 'https://ror.org/05avmsq62 Center for Human Reproduction'), (9479, 'https://ror.org/05awtjt98', 'en', 1, 'https://ror.org/05awtjt98 Pulmonary Hypertension Association'), (9480, 'https://ror.org/05ax3zh38', 'en', 1, 'https://ror.org/05ax3zh38 VA Maryland Health Care System'), (9481, 'https://ror.org/05axs7x03', 'en', 1, 'https://ror.org/05axs7x03 Indian River State College'), (9482, 'https://ror.org/05azenf09', 'en', 1, 'https://ror.org/05azenf09 New York Psychoanalytic Society and Institute'), (9483, 'https://ror.org/05b021m32', 'en', 1, 'https://ror.org/05b021m32 Alta Bates Summit Medical Center'), (9484, 'https://ror.org/05b1skj70', 'no_lang_code', 1, 'https://ror.org/05b1skj70 Sciencetech (Canada)'), (9485, 'https://ror.org/05b2g5r95', 'en', 1, 'https://ror.org/05b2g5r95 GateWay Community College'), (9486, 'https://ror.org/05b4xr322', 'en', 1, 'https://ror.org/05b4xr322 Houston Area Community Services'), (9487, 'https://ror.org/05b56f310', 'en', 1, 'https://ror.org/05b56f310 Transport Scotland'), (9488, 'https://ror.org/05b58tt16', 'en', 1, 'https://ror.org/05b58tt16 Normandale Community College'), (9489, 'https://ror.org/05b5q0t82', 'it', 1, 'https://ror.org/05b5q0t82 Azienda Ospedaliera Ospedali Riuniti Papardo Piemonte'), (9490, 'https://ror.org/05b68f622', 'no_lang_code', 1, 'https://ror.org/05b68f622 Process Simulations Limited (Canada)'), (9491, 'https://ror.org/05b6w4f42', 'no_lang_code', 1, 'https://ror.org/05b6w4f42 Nordion (Canada)'), (9492, 'https://ror.org/05b7p8k90', 'en', 1, 'https://ror.org/05b7p8k90 Instytut Immunologii i Terapii Doświadczalnej Ludwik Hirszfeld Institute of Immunology and Experimental Therapy'), (9493, 'https://ror.org/05b8d3w18', 'en', 1, 'https://ror.org/05b8d3w18 Max Planck Institute of Molecular Cell Biology and Genetics Max-Planck-Institut für Molekulare Zellbiologie und Genetik'), (9494, 'https://ror.org/05b923192', 'no_lang_code', 1, 'https://ror.org/05b923192 Premitec (United States)'), (9495, 'https://ror.org/05bb2q223', 'no_lang_code', 1, 'https://ror.org/05bb2q223 BioStar Systems (United States)'), (9496, 'https://ror.org/05bdncw68', 'no_lang_code', 1, 'https://ror.org/05bdncw68 BioFine International (Canada)'), (9497, 'https://ror.org/05be2cn20', 'en', 1, 'https://ror.org/05be2cn20 Center for Occupational Research and Development'), (9498, 'https://ror.org/05be98497', 'en', 1, 'https://ror.org/05be98497 Okinawa Prefectural Institute of Health and Environment 健康と環境の沖縄県立大学'), (9499, 'https://ror.org/05bfmm624', 'no_lang_code', 1, 'https://ror.org/05bfmm624 AlphaVax (United States)'), (9500, 'https://ror.org/05bgcav40', 'en', 1, 'https://ror.org/05bgcav40 National Taichung University of Science and Technology'), (9501, 'https://ror.org/05bh7ff72', 'fr', 1, 'https://ror.org/05bh7ff72 Centre d’Economie rurale'), (9502, 'https://ror.org/05bhsww40', 'en', 1, 'https://ror.org/05bhsww40 Scripps Health'), (9503, 'https://ror.org/05bjbww34', 'en', 1, 'https://ror.org/05bjbww34 Korea Forest Service'), (9504, 'https://ror.org/05bjd0w70', 'en', 1, 'https://ror.org/05bjd0w70 Chestnut Hill College'), (9505, 'https://ror.org/05bjen692', 'en', 1, 'https://ror.org/05bjen692 Center for Cancer Research'), (9506, 'https://ror.org/05bk0hn37', 'no_lang_code', 1, 'https://ror.org/05bk0hn37 Biota Pharmaceuticals (United States)'), (9507, 'https://ror.org/05bkc5375', 'en', 1, 'https://ror.org/05bkc5375 National Institute for Interdisciplinary Science and Technology നാഷണൽ ഇൻസ്ററിററ്യൂട്ട് ഫോർ ഇൻറർ ഡിസിപ്ളിനറി സയൻസ് അൻഡ് ടെക്നോളജി, തിരുവനന്തപുരം'), (9508, 'https://ror.org/05bm26z17', 'no_lang_code', 1, 'https://ror.org/05bm26z17 Maxeler Technologies (United Kingdom)'), (9509, 'https://ror.org/05bmcfg03', 'en', 1, 'https://ror.org/05bmcfg03 Patricia and Phillip Frost Museum of Science'), (9510, 'https://ror.org/05bnyxr41', 'no_lang_code', 1, 'https://ror.org/05bnyxr41 Norbord (Canada)'), (9511, 'https://ror.org/05bp3jx78', 'en', 1, 'https://ror.org/05bp3jx78 Tokyo Metropolitan Kiyose Children''s Hospital 東京都立小児総合医療センター'), (9512, 'https://ror.org/05bqk3m74', 'en', 1, 'https://ror.org/05bqk3m74 European Network of Science Centres and Museums'), (9513, 'https://ror.org/05bsers28', 'fr', 1, 'https://ror.org/05bsers28 Cegep de Victoriaville, Cégep de victoriaville'), (9514, 'https://ror.org/05bts0a67', 'en', 1, 'https://ror.org/05bts0a67 National Academy of Medicine'), (9515, 'https://ror.org/05bx2yj81', 'en', 1, 'https://ror.org/05bx2yj81 Salisbury District Hospital'), (9516, 'https://ror.org/05by4rq81', 'es', 1, 'https://ror.org/05by4rq81 Instituto de Investigación Nutricional'), (9517, 'https://ror.org/05bznb153', 'no_lang_code', 1, 'https://ror.org/05bznb153 Romny Scientific (United States)'), (9518, 'https://ror.org/05c0j1j47', 'no_lang_code', 1, 'https://ror.org/05c0j1j47 MPB Technologies & Communications (Canada)'), (9519, 'https://ror.org/05c244n89', 'no_lang_code', 1, 'https://ror.org/05c244n89 Cedrat Technologies (France)'), (9520, 'https://ror.org/05c27eq92', 'no_lang_code', 1, 'https://ror.org/05c27eq92 Thomas Swan (United Kingdom)'), (9521, 'https://ror.org/05c2mc090', 'no_lang_code', 1, 'https://ror.org/05c2mc090 Immunovaccine (Canada)'), (9522, 'https://ror.org/05c2ymw43', 'no_lang_code', 1, 'https://ror.org/05c2ymw43 Genaera (United States)'), (9523, 'https://ror.org/05c32fk96', 'no_lang_code', 1, 'https://ror.org/05c32fk96 Atkinson Noland and Associates (United States)'), (9524, 'https://ror.org/05c37ft41', 'no_lang_code', 1, 'https://ror.org/05c37ft41 Agiltron (United States)'), (9525, 'https://ror.org/05c5e7249', 'en', 1, 'https://ror.org/05c5e7249 United States Military Entrance Processing Command'), (9526, 'https://ror.org/05ca9hc42', 'no_lang_code', 1, 'https://ror.org/05ca9hc42 Bentley (Canada)'), (9527, 'https://ror.org/05cajf655', 'en', 1, 'https://ror.org/05cajf655 Southwest College of Naturopathic Medicine & Health Sciences'), (9528, 'https://ror.org/05canvq15', 'no_lang_code', 1, 'https://ror.org/05canvq15 Predictive Science (United States)'), (9529, 'https://ror.org/05caz9x08', 'no_lang_code', 1, 'https://ror.org/05caz9x08 ATiT (Belgium)'), (9530, 'https://ror.org/05ccach65', 'en', 1, 'https://ror.org/05ccach65 Gerald P. Murphy Cancer Foundation'), (9531, 'https://ror.org/05cd81677', 'en', 1, 'https://ror.org/05cd81677 Association of Bay Area Governments'), (9532, 'https://ror.org/05cdppq10', 'no_lang_code', 1, 'https://ror.org/05cdppq10 Theralogix (United States)'), (9533, 'https://ror.org/05cf1h383', 'en', 1, 'https://ror.org/05cf1h383 Association of Maternal and Child Health Programs'), (9534, 'https://ror.org/05cfcmn93', 'no_lang_code', 1, 'https://ror.org/05cfcmn93 AeroVironment (United States)'), (9535, 'https://ror.org/05cg3j211', 'it', 1, 'https://ror.org/05cg3j211 Fondazione Andrea Cesalpino'), (9536, 'https://ror.org/05chw4760', 'no_lang_code', 1, 'https://ror.org/05chw4760 Tekion (Canada)'), (9537, 'https://ror.org/05chwyh56', 'en', 1, 'https://ror.org/05chwyh56 Princess Alexandra Hospital'), (9538, 'https://ror.org/05cj88g33', 'en', 1, 'https://ror.org/05cj88g33 American Association of Engineering Societies'), (9539, 'https://ror.org/05cjk9k86', 'pt', 1, 'https://ror.org/05cjk9k86 Fundação Pró-Sangue Hemocentro de São Paulo'), (9540, 'https://ror.org/05cjt1n05', 'nl', 1, 'https://ror.org/05cjt1n05 Instituut voor Landbouw en Visserijonderzoek'), (9541, 'https://ror.org/05cnc7n16', 'no_lang_code', 1, 'https://ror.org/05cnc7n16 Newton Scientific Incorporation (United States)'), (9542, 'https://ror.org/05cnqje12', 'no_lang_code', 1, 'https://ror.org/05cnqje12 Molecular Targeting Technologies (United States)'), (9543, 'https://ror.org/05cqe9350', 'no_lang_code', 1, 'https://ror.org/05cqe9350 Xijing Hospital 西京医院'), (9544, 'https://ror.org/05crd7855', 'en', 1, 'https://ror.org/05crd7855 Prescott College'), (9545, 'https://ror.org/05csqsw96', 'no_lang_code', 1, 'https://ror.org/05csqsw96 Mendel Biotechnology (United States)'), (9546, 'https://ror.org/05ct4fn38', 'en', 1, 'https://ror.org/05ct4fn38 Beijing Academy of Science and Technology 北京市电加工研究所'), (9547, 'https://ror.org/05cvxat96', 'en', 1, 'https://ror.org/05cvxat96 Walton Centre'), (9548, 'https://ror.org/05cvz6v56', 'no_lang_code', 1, 'https://ror.org/05cvz6v56 StemCells (United States)'), (9549, 'https://ror.org/05cw2qj02', 'en', 1, 'https://ror.org/05cw2qj02 Cambrian College'), (9550, 'https://ror.org/05cw2ys85', 'no_lang_code', 1, 'https://ror.org/05cw2ys85 Ecovative Design (United States)'), (9551, 'https://ror.org/05cwghy20', 'no_lang_code', 1, 'https://ror.org/05cwghy20 Zen-Noh (Japan) 全国農業協同組合連合会'), (9552, 'https://ror.org/05cx8ry19', 'no_lang_code', 1, 'https://ror.org/05cx8ry19 Neural Signals (United States)'), (9553, 'https://ror.org/05d0qsh22', 'no_lang_code', 1, 'https://ror.org/05d0qsh22 Advanced Cell Technology (United States)'), (9554, 'https://ror.org/05d4gem91', 'no_lang_code', 1, 'https://ror.org/05d4gem91 BLH Technologies (United States)'), (9555, 'https://ror.org/05d5x4r54', 'no_lang_code', 1, 'https://ror.org/05d5x4r54 Sani Marc (Canada)'), (9556, 'https://ror.org/05d692120', 'en', 1, 'https://ror.org/05d692120 Lawson State Community College'), (9557, 'https://ror.org/05d7pr418', 'en', 1, 'https://ror.org/05d7pr418 Wesleyan College'), (9558, 'https://ror.org/05d8b8w20', 'en', 1, 'https://ror.org/05d8b8w20 Plano Orthopedic Sports Medicine & Spine Center'), (9559, 'https://ror.org/05d8zd458', 'en', 1, 'https://ror.org/05d8zd458 Truman Medical Center'), (9560, 'https://ror.org/05d9ms657', 'es', 1, 'https://ror.org/05d9ms657 Sociedad Española de Cardiología'), (9561, 'https://ror.org/05db0nr49', 'en', 1, 'https://ror.org/05db0nr49 San Francisco Center for Psychoanalysis'), (9562, 'https://ror.org/05dd1kk08', 'no_lang_code', 1, 'https://ror.org/05dd1kk08 Suraj Eye Institute'), (9563, 'https://ror.org/05ddg7v64', 'nl', 1, 'https://ror.org/05ddg7v64 Nederlands Instituut Voor Zuivel Oonderzoek'), (9564, 'https://ror.org/05de34168', 'no_lang_code', 1, 'https://ror.org/05de34168 Ganeden Biotech (United States)'), (9565, 'https://ror.org/05denqv03', 'fr', 1, 'https://ror.org/05denqv03 Centre de Robotique Intégrée d''Ile de France'), (9566, 'https://ror.org/05dfgqr03', 'en', 1, 'https://ror.org/05dfgqr03 AltaMed'), (9567, 'https://ror.org/05dfnrn76', 'de', 1, 'https://ror.org/05dfnrn76 IFT Institut für Therapieforschung Institute for Therapy and Health Research'), (9568, 'https://ror.org/05dj1xv70', 'en', 1, 'https://ror.org/05dj1xv70 Academy of Nutrition and Dietetics'), (9569, 'https://ror.org/05dkjfz60', 'en', 1, 'https://ror.org/05dkjfz60 Kumoh National Institute of Technology 금오공과대학교'), (9570, 'https://ror.org/05dpzfc16', 'nl', 1, 'https://ror.org/05dpzfc16 Ziekenhuisnetwerk Antwerpen Stuivenberg'), (9571, 'https://ror.org/05dqmqj96', 'es', 1, 'https://ror.org/05dqmqj96 Instituto Chileno de Medicina Reproductiva'), (9572, 'https://ror.org/05drhbp30', 'no_lang_code', 1, 'https://ror.org/05drhbp30 GMA Industries (United States)'), (9573, 'https://ror.org/05drnnd98', 'en', 1, 'https://ror.org/05drnnd98 National Center for Epidemiology Országos Epidemiológiai Központ'), (9574, 'https://ror.org/05drpm847', 'it', 1, 'https://ror.org/05drpm847 Ospedale Civile di Venezia'), (9575, 'https://ror.org/05ds0kz06', 'en', 1, 'https://ror.org/05ds0kz06 Boston Psychoanalytic Society and Institute'), (9576, 'https://ror.org/05dwj7825', 'it', 1, 'https://ror.org/05dwj7825 Fondazione IRCCS Istituto Nazionale dei Tumori'), (9577, 'https://ror.org/05dyqe421', 'en', 1, 'https://ror.org/05dyqe421 Knowle West Media Centre'), (9578, 'https://ror.org/05e168j76', 'en', 1, 'https://ror.org/05e168j76 Bristol Community College'), (9579, 'https://ror.org/05e1mzh65', 'no_lang_code', 1, 'https://ror.org/05e1mzh65 Ophir Corporation (United States)'), (9580, 'https://ror.org/05e2txa39', 'no_lang_code', 1, 'https://ror.org/05e2txa39 Exemplar Genetics (United States)'), (9581, 'https://ror.org/05e456743', 'en', 1, 'https://ror.org/05e456743 Lovelace Clinic Foundation Research'), (9582, 'https://ror.org/05e4dfg87', 'no_lang_code', 1, 'https://ror.org/05e4dfg87 Skyre (United States)'), (9583, 'https://ror.org/05e4r8189', 'en', 1, 'https://ror.org/05e4r8189 Cuyahoga County Board of Health'), (9584, 'https://ror.org/05e5waw95', 'en', 1, 'https://ror.org/05e5waw95 Elmhurst College'), (9585, 'https://ror.org/05e6mjz86', 'no_lang_code', 1, 'https://ror.org/05e6mjz86 Creative Electron (United States)'), (9586, 'https://ror.org/05e8s8534', 'fr', 1, 'https://ror.org/05e8s8534 Institut Jules Bordet'), (9587, 'https://ror.org/05ear3j66', 'no_lang_code', 1, 'https://ror.org/05ear3j66 Dynaflow (United States)'), (9588, 'https://ror.org/05eb35r14', 'en', 1, 'https://ror.org/05eb35r14 Roseman University of Health Sciences'), (9589, 'https://ror.org/05ebz1r33', 'en', 1, 'https://ror.org/05ebz1r33 Big Little Science Centre'), (9590, 'https://ror.org/05eca5w86', 'en', 1, 'https://ror.org/05eca5w86 Riverside Community College District'), (9591, 'https://ror.org/05ech9204', 'en', 1, 'https://ror.org/05ech9204 St. John Fisher College'), (9592, 'https://ror.org/05eef5147', 'en', 1, 'https://ror.org/05eef5147 DNA EpiCenter'), (9593, 'https://ror.org/05ef28661', 'en', 1, 'https://ror.org/05ef28661 Institute of Genomics and Integrative Biology'), (9594, 'https://ror.org/05efr5n38', 'en', 1, 'https://ror.org/05efr5n38 Taranaki Base Hospital'), (9595, 'https://ror.org/05em3zk56', 'en', 1, 'https://ror.org/05em3zk56 National Minority AIDS Council'), (9596, 'https://ror.org/05ent1n34', 'no_lang_code', 1, 'https://ror.org/05ent1n34 Cytoskeleton (United States)'), (9597, 'https://ror.org/05epvtb78', 'no_lang_code', 1, 'https://ror.org/05epvtb78 Parion Sciences (United States)'), (9598, 'https://ror.org/05eqk2j25', 'en', 1, 'https://ror.org/05eqk2j25 Fraunhofer Portugal Research'), (9599, 'https://ror.org/05es84h77', 'no_lang_code', 1, 'https://ror.org/05es84h77 Segue Corporation (United States)'), (9600, 'https://ror.org/05etrx234', 'en', 1, 'https://ror.org/05etrx234 National AIDS Research Institute'), (9601, 'https://ror.org/05eyymj94', 'fr', 1, 'https://ror.org/05eyymj94 L’École Supérieure de Biotechnologie de Strasbourg, École Supérieure de Biotechnologie de Strasbourg'), (9602, 'https://ror.org/05ez4gg94', 'en', 1, 'https://ror.org/05ez4gg94 Alberta Centre for Advanced MNT Products (Canada)'), (9603, 'https://ror.org/05ezt9354', 'en', 1, 'https://ror.org/05ezt9354 La Jolla Infectious Disease Institute'), (9604, 'https://ror.org/05f0q4986', 'no_lang_code', 1, 'https://ror.org/05f0q4986 Council on Alcohol and Drugs (United States)'), (9605, 'https://ror.org/05f1fs902', 'no_lang_code', 1, 'https://ror.org/05f1fs902 Rocky Mountain Research (United States)'), (9606, 'https://ror.org/05f21rh68', 'en', 1, 'https://ror.org/05f21rh68 Lincoln Land Community College'), (9607, 'https://ror.org/05f2xbq60', 'en', 1, 'https://ror.org/05f2xbq60 Crohn''s and Colitis Foundation'), (9608, 'https://ror.org/05f37kp03', 'en', 1, 'https://ror.org/05f37kp03 Chemeketa Community College'), (9609, 'https://ror.org/05f4e7p75', 'no_lang_code', 1, 'https://ror.org/05f4e7p75 Visual Health Solutions (United States)'), (9610, 'https://ror.org/05f4w0r25', 'no_lang_code', 1, 'https://ror.org/05f4w0r25 M Squared Lasers (United Kingdom)'), (9611, 'https://ror.org/05f705338', 'no_lang_code', 1, 'https://ror.org/05f705338 PharmIdeas (Canada)'), (9612, 'https://ror.org/05f7kgd45', 'en', 1, 'https://ror.org/05f7kgd45 Rothberg Institute For Childhood Diseases'), (9613, 'https://ror.org/05f87be95', 'en', 1, 'https://ror.org/05f87be95 Tucson Medical Center'), (9614, 'https://ror.org/05f8zcs55', 'en', 1, 'https://ror.org/05f8zcs55 Institute of Biocybernetics and Biomedical Engineering'), (9615, 'https://ror.org/05f9h3891', 'en', 1, 'https://ror.org/05f9h3891 Woman''s Hospital'), (9616, 'https://ror.org/05fbr1r82', 'no_lang_code', 1, 'https://ror.org/05fbr1r82 UTRON Kinetics (United States)'), (9617, 'https://ror.org/05fep6742', 'en', 1, 'https://ror.org/05fep6742 Midwest Orthopaedic Research Foundation'), (9618, 'https://ror.org/05feyya22', 'no_lang_code', 1, 'https://ror.org/05feyya22 Cancer Genetics (United States)'), (9619, 'https://ror.org/05ffsv137', 'no_lang_code', 1, 'https://ror.org/05ffsv137 Light Age (United States)'), (9620, 'https://ror.org/05fhv2c54', 'en', 1, 'https://ror.org/05fhv2c54 Charitable Infirmary'), (9621, 'https://ror.org/05fr7hy44', 'no_lang_code', 1, 'https://ror.org/05fr7hy44 Radisys (Canada)'), (9622, 'https://ror.org/05frf9c55', 'en', 1, 'https://ror.org/05frf9c55 Merri Creek Management Committee'), (9623, 'https://ror.org/05ft74b02', 'no_lang_code', 1, 'https://ror.org/05ft74b02 Photoswitch Biosciences (United States)'), (9624, 'https://ror.org/05ftwc327', 'en', 1, 'https://ror.org/05ftwc327 International Tomography Center Федеральное государственное бюджетное учреждение науки Институт Международный томографический центр Сибирского отделения Российской академии наук'), (9625, 'https://ror.org/05fv8sy52', 'en', 1, 'https://ror.org/05fv8sy52 Tzu Chi College of Technology 慈濟技術學院'), (9626, 'https://ror.org/05fxhrw65', 'en', 1, 'https://ror.org/05fxhrw65 Endocrine Society'), (9627, 'https://ror.org/05g2n4m79', 'no_lang_code', 1, 'https://ror.org/05g2n4m79 Intuitive Surgical (United States)'), (9628, 'https://ror.org/05g42cb02', 'en', 1, 'https://ror.org/05g42cb02 Netcare Sunninghill Hospital'), (9629, 'https://ror.org/05g8vd955', 'no_lang_code', 1, 'https://ror.org/05g8vd955 KWS (United Kingdom)'), (9630, 'https://ror.org/05gabt952', 'hu', 1, 'https://ror.org/05gabt952 Országos Reumatológiai és Fizioterápiás Intézet'), (9631, 'https://ror.org/05gbnpz65', 'en', 1, 'https://ror.org/05gbnpz65 Institute of Cell Biophysics Федеральное государственное бюджетное учреждение науки Институт биофизики клетки Российской академии наук'), (9632, 'https://ror.org/05gcn3678', 'en', 1, 'https://ror.org/05gcn3678 Whittemore Peterson Institute'), (9633, 'https://ror.org/05gcq4j10', 'en', 1, 'https://ror.org/05gcq4j10 Clatterbridge Cancer Centre NHS Foundation Trust'), (9634, 'https://ror.org/05gd4rg64', 'no_lang_code', 1, 'https://ror.org/05gd4rg64 InterPhases Solar (United States)'), (9635, 'https://ror.org/05gedqb32', 'no_lang_code', 1, 'https://ror.org/05gedqb32 GlaxoSmithKline (Germany)'), (9636, 'https://ror.org/05gekvn04', 'en', 1, 'https://ror.org/05gekvn04 Bradford Teaching Hospitals NHS Foundation Trust'), (9637, 'https://ror.org/05gf8nd15', 'en', 1, 'https://ror.org/05gf8nd15 Parkland College'), (9638, 'https://ror.org/05ggej879', 'no_lang_code', 1, 'https://ror.org/05ggej879 HeartVista (United States)'), (9639, 'https://ror.org/05ggkk749', 'en', 1, 'https://ror.org/05ggkk749 Center for Applied Special Technology'), (9640, 'https://ror.org/05ggvgr57', 'no_lang_code', 1, 'https://ror.org/05ggvgr57 Repligen (United States)'), (9641, 'https://ror.org/05gh7zh89', 'no_lang_code', 1, 'https://ror.org/05gh7zh89 Protasis (United States)'), (9642, 'https://ror.org/05gkz0v31', 'it', 1, 'https://ror.org/05gkz0v31 Istituto Cantonale di Patologia'), (9643, 'https://ror.org/05gr4yv49', 'en', 1, 'https://ror.org/05gr4yv49 Bellevue College'), (9644, 'https://ror.org/05gtpxs59', 'en', 1, 'https://ror.org/05gtpxs59 Aichi Prefectural Government 愛知県'), (9645, 'https://ror.org/05gy1hc18', 'en', 1, 'https://ror.org/05gy1hc18 Advocates for Youth'), (9646, 'https://ror.org/05h1kgg64', 'en', 1, 'https://ror.org/05h1kgg64 National Institute of Health'), (9647, 'https://ror.org/05h2kgw82', 'no_lang_code', 1, 'https://ror.org/05h2kgw82 SciMed Technologies (Canada)'), (9648, 'https://ror.org/05h3c9j32', 'no_lang_code', 1, 'https://ror.org/05h3c9j32 Allied Innovative Systems (United States)'), (9649, 'https://ror.org/05h3de220', 'en', 1, 'https://ror.org/05h3de220 Mount Saint Mary College'), (9650, 'https://ror.org/05h6g8g36', 'en', 1, 'https://ror.org/05h6g8g36 Association of Food and Drug Officials'), (9651, 'https://ror.org/05h6r6f02', 'no_lang_code', 1, 'https://ror.org/05h6r6f02 Saiseikai Yahata General Hospital 福岡県済生会八幡総合病院'), (9652, 'https://ror.org/05h8pb290', 'fr', 1, 'https://ror.org/05h8pb290 Institut National de Criminalistique et de Criminologie Nationaal Instituut voor Criminalistiek en Criminologie'), (9653, 'https://ror.org/05h9b8n23', 'no_lang_code', 1, 'https://ror.org/05h9b8n23 Diagnostics for the Real World (United States)'), (9654, 'https://ror.org/05hacyq28', 'en', 1, 'https://ror.org/05hacyq28 Kessler Foundation'), (9655, 'https://ror.org/05hatwc22', 'en', 1, 'https://ror.org/05hatwc22 Palladin Institute of Biochemistry Інститут біохімії ім О.В Палладіна'), (9656, 'https://ror.org/05hb2h012', 'no_lang_code', 1, 'https://ror.org/05hb2h012 Arietis (United States)'), (9657, 'https://ror.org/05hb58293', 'no_lang_code', 1, 'https://ror.org/05hb58293 Immunotope (United States)'), (9658, 'https://ror.org/05hb9gz45', 'en', 1, 'https://ror.org/05hb9gz45 Calspan-University of Buffalo Research Center'), (9659, 'https://ror.org/05hek7k69', 'it', 1, 'https://ror.org/05hek7k69 Azienda di Rilievo Nazionale ed Alta Specializzazione'), (9660, 'https://ror.org/05hfrht78', 'no_lang_code', 1, 'https://ror.org/05hfrht78 Vista Engineering (United States)'), (9661, 'https://ror.org/05hgh7849', 'no_lang_code', 1, 'https://ror.org/05hgh7849 Walker (United States)'), (9662, 'https://ror.org/05hgzy544', 'no_lang_code', 1, 'https://ror.org/05hgzy544 Yokohama Sakae Kyosai Hospital 横浜栄共済病院'), (9663, 'https://ror.org/05hkmas65', 'en', 1, 'https://ror.org/05hkmas65 Baptist Hospital 침례병원'), (9664, 'https://ror.org/05hmeb585', 'no_lang_code', 1, 'https://ror.org/05hmeb585 Loadpoint (United Kingdom)'), (9665, 'https://ror.org/05hmfw828', 'fr', 1, 'https://ror.org/05hmfw828 Centre Antoine Lacassagne'), (9666, 'https://ror.org/05hnmtf25', 'en', 1, 'https://ror.org/05hnmtf25 Shorter University'), (9667, 'https://ror.org/05hpcxv81', 'no_lang_code', 1, 'https://ror.org/05hpcxv81 Puresyn (United States)'), (9668, 'https://ror.org/05hqmfv86', 'en', 1, 'https://ror.org/05hqmfv86 Student Pugwash USA'), (9669, 'https://ror.org/05hr7qe62', 'no_lang_code', 1, 'https://ror.org/05hr7qe62 Genetika Федеральное государственное унитарное предприятие Государственный научно-исследовательский институт генетики и селекции промышленных микроорганизмов'), (9670, 'https://ror.org/05hx1vp23', 'en', 1, 'https://ror.org/05hx1vp23 Institute of Cytology and Preventive Oncology'), (9671, 'https://ror.org/05hzjby53', 'no_lang_code', 1, 'https://ror.org/05hzjby53 Potomac Affinity Proteins (United States)'), (9672, 'https://ror.org/05j0wr821', 'no_lang_code', 1, 'https://ror.org/05j0wr821 Oxford Instruments (Canada)'), (9673, 'https://ror.org/05j1fg548', 'en', 1, 'https://ror.org/05j1fg548 Indiana Hemophilia and Thrombosis Center'), (9674, 'https://ror.org/05j1w2b44', 'de', 1, 'https://ror.org/05j1w2b44 Klinikum Bremen-Mitte'), (9675, 'https://ror.org/05j27jv73', 'en', 1, 'https://ror.org/05j27jv73 Northampton Community College'), (9676, 'https://ror.org/05j2wxx71', 'en', 1, 'https://ror.org/05j2wxx71 Western Maine Health'), (9677, 'https://ror.org/05j34rw34', 'en', 1, 'https://ror.org/05j34rw34 El Dorado Hills Community Vision'), (9678, 'https://ror.org/05j40pq70', 'en', 1, 'https://ror.org/05j40pq70 Saitama Red Cross Hospital さいたま赤十字病院'), (9679, 'https://ror.org/05j4k4050', 'no_lang_code', 1, 'https://ror.org/05j4k4050 Innoval Technology (United Kingdom)'), (9680, 'https://ror.org/05j4prr94', 'es', 1, 'https://ror.org/05j4prr94 Instituto Médico La Floresta'), (9681, 'https://ror.org/05j8x4n38', 'en', 1, 'https://ror.org/05j8x4n38 San Francisco General Hospital'), (9682, 'https://ror.org/05jbyqz27', 'fr', 1, 'https://ror.org/05jbyqz27 Museum of Man Musée de l''Homme'), (9683, 'https://ror.org/05jccej20', 'fr', 1, 'https://ror.org/05jccej20 Centre Hospitalier Régional de Huy'), (9684, 'https://ror.org/05jckef59', 'no_lang_code', 1, 'https://ror.org/05jckef59 Rimage Corporation (United States)'), (9685, 'https://ror.org/05jd5ze73', 'en', 1, 'https://ror.org/05jd5ze73 Joliet Junior College'), (9686, 'https://ror.org/05je2tx78', 'en', 1, 'https://ror.org/05je2tx78 National Center for Immunization and Respiratory Diseases'), (9687, 'https://ror.org/05jf3ct62', 'en', 1, 'https://ror.org/05jf3ct62 Ohlone College'), (9688, 'https://ror.org/05jg03a59', 'en', 1, 'https://ror.org/05jg03a59 Butterfly Conservation'), (9689, 'https://ror.org/05jg9pj51', 'en', 1, 'https://ror.org/05jg9pj51 Plant Industry'), (9690, 'https://ror.org/05jgy0m16', 'no_lang_code', 1, 'https://ror.org/05jgy0m16 Meso Scale Discovery (United States)'), (9691, 'https://ror.org/05jgyck31', 'en', 1, 'https://ror.org/05jgyck31 San Antonio Metropolitan Health District'), (9692, 'https://ror.org/05jjfxd82', 'en', 1, 'https://ror.org/05jjfxd82 New Mexico Museum of Natural History Foundation'), (9693, 'https://ror.org/05jn35f24', 'no_lang_code', 1, 'https://ror.org/05jn35f24 Thinktank'), (9694, 'https://ror.org/05jr4qt09', 'en', 1, 'https://ror.org/05jr4qt09 Stamford Hospital'), (9695, 'https://ror.org/05jsgsm79', 'en', 1, 'https://ror.org/05jsgsm79 Evergreen Valley College'), (9696, 'https://ror.org/05jvgwr81', 'en', 1, 'https://ror.org/05jvgwr81 National Institute of Medical Rehabilitation Országos Orvosi Rehabilitációs Intézet'), (9697, 'https://ror.org/05jvwsc13', 'no_lang_code', 1, 'https://ror.org/05jvwsc13 Terra Nova Learning Systems (United States)'), (9698, 'https://ror.org/05jyj3645', 'no_lang_code', 1, 'https://ror.org/05jyj3645 Evergen Biotechnologies (United States)'), (9699, 'https://ror.org/05jyway09', 'no_lang_code', 1, 'https://ror.org/05jyway09 Layton BioScience (United States)'), (9700, 'https://ror.org/05k1smr06', 'cs', 1, 'https://ror.org/05k1smr06 Nemocnice Šternberk'), (9701, 'https://ror.org/05k1yyh03', 'no_lang_code', 1, 'https://ror.org/05k1yyh03 Human Genome Sciences (United States)'), (9702, 'https://ror.org/05k2ttb40', 'no_lang_code', 1, 'https://ror.org/05k2ttb40 ACTeon Environment (France)'), (9703, 'https://ror.org/05k2xsz75', 'es', 1, 'https://ror.org/05k2xsz75 Academia Nacional de Medicina Buenos Aires National Academy of Medicine'), (9704, 'https://ror.org/05k4a7g87', 'en', 1, 'https://ror.org/05k4a7g87 National Kidney and Transplant Institute'), (9705, 'https://ror.org/05k637k59', 'es', 1, 'https://ror.org/05k637k59 Instituto Nacional de Neurología y Neurocirugía National Institute of Neurology and Neurosurgery'), (9706, 'https://ror.org/05k7cyf48', 'en', 1, 'https://ror.org/05k7cyf48 Clinical Research Management'), (9707, 'https://ror.org/05k8s4246', 'en', 1, 'https://ror.org/05k8s4246 La Frontera Arizona'), (9708, 'https://ror.org/05k91zb11', 'no_lang_code', 1, 'https://ror.org/05k91zb11 Sony Corporation (United States)'), (9709, 'https://ror.org/05kbvgd57', 'fr', 1, 'https://ror.org/05kbvgd57 Banque Populaire'), (9710, 'https://ror.org/05kffp613', 'no_lang_code', 1, 'https://ror.org/05kffp613 Boehringer Ingelheim (United States)'), (9711, 'https://ror.org/05kh5wx29', 'en', 1, 'https://ror.org/05kh5wx29 Agrifood Research Finland'), (9712, 'https://ror.org/05kk38g92', 'no_lang_code', 1, 'https://ror.org/05kk38g92 Fairfield Crystal Technology (United States)'), (9713, 'https://ror.org/05knjzg24', 'no_lang_code', 1, 'https://ror.org/05knjzg24 Glycobia (United States)'), (9714, 'https://ror.org/05kpczz35', 'no_lang_code', 1, 'https://ror.org/05kpczz35 Hexagon (United Kingdom)'), (9715, 'https://ror.org/05kq0x475', 'no_lang_code', 1, 'https://ror.org/05kq0x475 ProSensus (Canada)'), (9716, 'https://ror.org/05krxy197', 'en', 1, 'https://ror.org/05krxy197 Profil Institut für Stoffwechselforschung Profil Institute for Metabolic Research'), (9717, 'https://ror.org/05kv34a53', 'no_lang_code', 1, 'https://ror.org/05kv34a53 East Malling Research (United Kingdom)'), (9718, 'https://ror.org/05kvs8e70', 'no_lang_code', 1, 'https://ror.org/05kvs8e70 Sunnyside Sea Farms (United States)'), (9719, 'https://ror.org/05kvxgx64', 'en', 1, 'https://ror.org/05kvxgx64 The AIDS Support Organization'), (9720, 'https://ror.org/05kwjwj05', 'en', 1, 'https://ror.org/05kwjwj05 Scripps Clinic'), (9721, 'https://ror.org/05kwwke37', 'en', 1, 'https://ror.org/05kwwke37 Hertfordshire County Council'), (9722, 'https://ror.org/05kx0wb86', 'en', 1, 'https://ror.org/05kx0wb86 York Central Hospital'), (9723, 'https://ror.org/05m0yjz71', 'no_lang_code', 1, 'https://ror.org/05m0yjz71 TRW Automotive (United Kingdom)'), (9724, 'https://ror.org/05m25pj04', 'sr', 1, 'https://ror.org/05m25pj04 Institut za zdravstvenu zaštitu dece i omladine Vojvodine'), (9725, 'https://ror.org/05m5j6s60', 'en', 1, 'https://ror.org/05m5j6s60 University of Saint Joseph Université saint joseph'), (9726, 'https://ror.org/05m6c4y02', 'en', 1, 'https://ror.org/05m6c4y02 St. Tammany Parish Public School System'), (9727, 'https://ror.org/05m762q77', 'no_lang_code', 1, 'https://ror.org/05m762q77 Tianjin haihe hospital 天津市海河医院'), (9728, 'https://ror.org/05m7r3n78', 'no_lang_code', 1, 'https://ror.org/05m7r3n78 Otemae Hospital 大手前病院'), (9729, 'https://ror.org/05m8hpg39', 'en', 1, 'https://ror.org/05m8hpg39 London First'), (9730, 'https://ror.org/05mbkbj54', 'en', 1, 'https://ror.org/05mbkbj54 Departamento de Trabajo de los Estados Unidos Département du travail des États-unis United States Department of Labor'), (9731, 'https://ror.org/05mbqa235', 'en', 1, 'https://ror.org/05mbqa235 Ecosystem Sciences'), (9732, 'https://ror.org/05megwx07', 'en', 1, 'https://ror.org/05megwx07 Southern California Orthopedic Institute'), (9733, 'https://ror.org/05mgcmd27', 'no_lang_code', 1, 'https://ror.org/05mgcmd27 Medpace (United States)'), (9734, 'https://ror.org/05mgfq941', 'en', 1, 'https://ror.org/05mgfq941 Stroke Association'), (9735, 'https://ror.org/05mgrg543', 'no_lang_code', 1, 'https://ror.org/05mgrg543 Salford Systems (United States)'), (9736, 'https://ror.org/05mh3a113', 'no_lang_code', 1, 'https://ror.org/05mh3a113 BioElectronics (United States)'), (9737, 'https://ror.org/05mhde728', 'no_lang_code', 1, 'https://ror.org/05mhde728 John Lewis Partnership (United Kingdom)'), (9738, 'https://ror.org/05mk5sy16', 'no_lang_code', 1, 'https://ror.org/05mk5sy16 K&A Wireless (United States)'), (9739, 'https://ror.org/05mk8am30', 'en', 1, 'https://ror.org/05mk8am30 National Safety Council'), (9740, 'https://ror.org/05mm5v065', 'en', 1, 'https://ror.org/05mm5v065 Sheffield City Council'), (9741, 'https://ror.org/05mmkk893', 'en', 1, 'https://ror.org/05mmkk893 Center for Facial Appearances'), (9742, 'https://ror.org/05mnftd11', 'en', 1, 'https://ror.org/05mnftd11 Center for Prevention and Counseling'), (9743, 'https://ror.org/05mnq7966', 'es', 1, 'https://ror.org/05mnq7966 Complejo Asistencial Universitario de Palencia'), (9744, 'https://ror.org/05mq2fa89', 'no_lang_code', 1, 'https://ror.org/05mq2fa89 Ultramet (United States)'), (9745, 'https://ror.org/05mqgrb58', 'en', 1, 'https://ror.org/05mqgrb58 Papworth Hospital'), (9746, 'https://ror.org/05mqpm182', 'no_lang_code', 1, 'https://ror.org/05mqpm182 De La Rue (United Kingdom)'), (9747, 'https://ror.org/05mr3er35', 'no_lang_code', 1, 'https://ror.org/05mr3er35 Ocean NanoTech (United States)'), (9748, 'https://ror.org/05mt2wq31', 'de', 1, 'https://ror.org/05mt2wq31 Klinikum Leverkusen'), (9749, 'https://ror.org/05mt84656', 'no_lang_code', 1, 'https://ror.org/05mt84656 Phifer Smith (United States)'), (9750, 'https://ror.org/05mw5ed57', 'no_lang_code', 1, 'https://ror.org/05mw5ed57 Baxter (Sweden)'), (9751, 'https://ror.org/05mxb6722', 'no_lang_code', 1, 'https://ror.org/05mxb6722 CD-adapco (United Kingdom)'), (9752, 'https://ror.org/05n4v8450', 'no_lang_code', 1, 'https://ror.org/05n4v8450 Martingale Research (United States)'), (9753, 'https://ror.org/05n629g02', 'en', 1, 'https://ror.org/05n629g02 Molecular Research Institute'), (9754, 'https://ror.org/05n8ah907', 'no_lang_code', 1, 'https://ror.org/05n8ah907 Unilever (United Kingdom)'), (9755, 'https://ror.org/05n8mkf20', 'no_lang_code', 1, 'https://ror.org/05n8mkf20 ImmuCell (United States)'), (9756, 'https://ror.org/05nda1d55', 'en', 1, 'https://ror.org/05nda1d55 Sichuan Center for Disease Control and Prevention 四川省疾病预防控制中心'), (9757, 'https://ror.org/05nen6796', 'no_lang_code', 1, 'https://ror.org/05nen6796 Synergy Pharmaceuticals (United States)'), (9758, 'https://ror.org/05nfbwk10', 'no_lang_code', 1, 'https://ror.org/05nfbwk10 Encode Bio (United States)'), (9759, 'https://ror.org/05ng48n08', 'no_lang_code', 1, 'https://ror.org/05ng48n08 AvantGen (United States)'), (9760, 'https://ror.org/05nh3s110', 'no_lang_code', 1, 'https://ror.org/05nh3s110 Vascular Vision Pharmaceutical (United States)'), (9761, 'https://ror.org/05nhzbw35', 'it', 1, 'https://ror.org/05nhzbw35 Ospedale Valduce'), (9762, 'https://ror.org/05nkqs567', 'en', 1, 'https://ror.org/05nkqs567 Reproductive Genetics Institute'), (9763, 'https://ror.org/05nns5525', 'no_lang_code', 1, 'https://ror.org/05nns5525 Adelard'), (9764, 'https://ror.org/05nq89q24', 'en', 1, 'https://ror.org/05nq89q24 Institute for Fermentation 発酵研究所'), (9765, 'https://ror.org/05nq8z503', 'en', 1, 'https://ror.org/05nq8z503 Preventive Medicine Research Institute'), (9766, 'https://ror.org/05nr3de46', 'en', 1, 'https://ror.org/05nr3de46 Onomichi General Hospital 尾道総合病院'), (9767, 'https://ror.org/05nstty25', 'en', 1, 'https://ror.org/05nstty25 Perth Royal Infirmary'), (9768, 'https://ror.org/05nvv0w48', 'en', 1, 'https://ror.org/05nvv0w48 Arizona Institute for Bone & Joint Disorders'), (9769, 'https://ror.org/05nwcje70', 'no_lang_code', 1, 'https://ror.org/05nwcje70 Hans Tech (United States)'), (9770, 'https://ror.org/05nyma565', 'en', 1, 'https://ror.org/05nyma565 Tokyo Metropolitan Police Hospital 東京警察病院'), (9771, 'https://ror.org/05nzdz804', 'no_lang_code', 1, 'https://ror.org/05nzdz804 James Bell Associates (United States)'), (9772, 'https://ror.org/05p0pmx78', 'no_lang_code', 1, 'https://ror.org/05p0pmx78 Akonni Biosystems (United States)'), (9773, 'https://ror.org/05p35vd42', 'no_lang_code', 1, 'https://ror.org/05p35vd42 AbleLink Technologies (United States)'), (9774, 'https://ror.org/05p3vnz07', 'no_lang_code', 1, 'https://ror.org/05p3vnz07 Wound Care Strategies (United States)'), (9775, 'https://ror.org/05p40t847', 'en', 1, 'https://ror.org/05p40t847 Newcastle upon Tyne Hospitals NHS Foundation Trust'), (9776, 'https://ror.org/05p4bxh84', 'en', 1, 'https://ror.org/05p4bxh84 Stockholm Gerontology Research Center Foundation'), (9777, 'https://ror.org/05p4qy423', 'pt', 1, 'https://ror.org/05p4qy423 Biological Institute Instituto Biológico'), (9778, 'https://ror.org/05p5zy927', 'no_lang_code', 1, 'https://ror.org/05p5zy927 BioSpeech (United States)'), (9779, 'https://ror.org/05p668j08', 'en', 1, 'https://ror.org/05p668j08 Ospidéal Ginearálta Naomh Lúcás St. Luke''s General Hospital'), (9780, 'https://ror.org/05p7dhc22', 'en', 1, 'https://ror.org/05p7dhc22 Centre for Innovation Studies'), (9781, 'https://ror.org/05p81fj60', 'no_lang_code', 1, 'https://ror.org/05p81fj60 Aixtron (United Kingdom)'), (9782, 'https://ror.org/05p83my93', 'en', 1, 'https://ror.org/05p83my93 Vancouver Hospital and Health Sciences Centre'), (9783, 'https://ror.org/05p8kt313', 'no_lang_code', 1, 'https://ror.org/05p8kt313 Eli Lilly (Canada)'), (9784, 'https://ror.org/05pa4pa04', 'en', 1, 'https://ror.org/05pa4pa04 Courtesy Travel Service'), (9785, 'https://ror.org/05pacqm37', 'en', 1, 'https://ror.org/05pacqm37 Bluffton University Universidad de Bluffton'), (9786, 'https://ror.org/05pc9cb65', 'no_lang_code', 1, 'https://ror.org/05pc9cb65 Tung Wah Hospital 東華醫院'), (9787, 'https://ror.org/05petyd50', 'no_lang_code', 1, 'https://ror.org/05petyd50 Minnow Environmental (Canada)'), (9788, 'https://ror.org/05pgv5n44', 'no_lang_code', 1, 'https://ror.org/05pgv5n44 John Snow (United States)'), (9789, 'https://ror.org/05phfhs05', 'en', 1, 'https://ror.org/05phfhs05 Action for Boston Community Development'), (9790, 'https://ror.org/05pjsgx75', 'en', 1, 'https://ror.org/05pjsgx75 Indian Institute of Technology Kanpur Institut indien de technologie de kanpur भारतीय तंत्रज्ञान संस्था, कानपूर भारतीय प्रौद्योगिकी संस्थान कानपुर আইআইটি কানপুর இந்திய தொழில்நுட்பக் கழகம் கான்பூர் ഇന്ത്യൻ ഇൻസ്റ്റിറ്റ്യൂട്ട് ഓഫ് ടെക്നോളജി കാൺപൂർ'), (9791, 'https://ror.org/05pkanq60', 'en', 1, 'https://ror.org/05pkanq60 Alfa Institute of Biomedical Sciences Άλφα Ινστιτούτο Βιοϊατρικών Επιστημών'), (9792, 'https://ror.org/05pkeac16', 'no_lang_code', 1, 'https://ror.org/05pkeac16 UCB Pharma (Germany) Union chimique belge'), (9793, 'https://ror.org/05pkhhn92', 'en', 1, 'https://ror.org/05pkhhn92 New Hampshire Department of Health and Human Services'), (9794, 'https://ror.org/05pm5jp51', 'no_lang_code', 1, 'https://ror.org/05pm5jp51 SIMmersion (United States)'), (9795, 'https://ror.org/05pm6yf19', 'no_lang_code', 1, 'https://ror.org/05pm6yf19 Iris AO (United States)'), (9796, 'https://ror.org/05pm71w80', 'no_lang_code', 1, 'https://ror.org/05pm71w80 Pfizer (Japan) ファイザ'), (9797, 'https://ror.org/05pnhhe27', 'en', 1, 'https://ror.org/05pnhhe27 National Association of State Alcohol and Drug Abuse Directors'), (9798, 'https://ror.org/05pp5b412', 'en', 1, 'https://ror.org/05pp5b412 Beijing Proteome Research Center'), (9799, 'https://ror.org/05pp7s587', 'en', 1, 'https://ror.org/05pp7s587 Vermont Agency of Human Services'), (9800, 'https://ror.org/05pqvh594', 'no_lang_code', 1, 'https://ror.org/05pqvh594 NEI Corporation (United States)'), (9801, 'https://ror.org/05prpy113', 'no_lang_code', 1, 'https://ror.org/05prpy113 Nanosys (United States)'), (9802, 'https://ror.org/05prysf28', 'en', 1, 'https://ror.org/05prysf28 Minisiteri y''Ubuzima Ministry of Health Ministère de la Santé'), (9803, 'https://ror.org/05prywb43', 'no_lang_code', 1, 'https://ror.org/05prywb43 Centre d''Expertise du Bâtiment et des Travaux Publics (France)'), (9804, 'https://ror.org/05psc8795', 'en', 1, 'https://ror.org/05psc8795 Santa Barbara Museum of Natural History'), (9805, 'https://ror.org/05pw69n24', 'no_lang_code', 1, 'https://ror.org/05pw69n24 Astellas Pharma (United States)'), (9806, 'https://ror.org/05pxjag90', 'en', 1, 'https://ror.org/05pxjag90 Denver Federal Center'), (9807, 'https://ror.org/05pz32j92', 'no_lang_code', 1, 'https://ror.org/05pz32j92 Kent Optronics (United States)'), (9808, 'https://ror.org/05pzb3403', 'en', 1, 'https://ror.org/05pzb3403 National Governors Association'); INSERT INTO `rors` VALUES (9809, 'https://ror.org/05pzvw552', 'en', 1, 'https://ror.org/05pzvw552 SoundVision Productions'), (9810, 'https://ror.org/05q07rr84', 'no_lang_code', 1, 'https://ror.org/05q07rr84 Ricardo (United Kingdom)'), (9811, 'https://ror.org/05q0t6358', 'en', 1, 'https://ror.org/05q0t6358 World Health Organization - Philippines'), (9812, 'https://ror.org/05q1wf970', 'en', 1, 'https://ror.org/05q1wf970 Bogolyubov Institute for Theoretical Physics Інститут теоретичної фізики ім. М.М. Боголюбова'), (9813, 'https://ror.org/05q3e5911', 'no_lang_code', 1, 'https://ror.org/05q3e5911 Tantalus Systems (Canada)'), (9814, 'https://ror.org/05q4hby07', 'no_lang_code', 1, 'https://ror.org/05q4hby07 SINTX Technologies (United States)'), (9815, 'https://ror.org/05q5em355', 'no_lang_code', 1, 'https://ror.org/05q5em355 Morpho (United States)'), (9816, 'https://ror.org/05q707b66', 'no_lang_code', 1, 'https://ror.org/05q707b66 PhiloMetron (United States)'), (9817, 'https://ror.org/05q7t7f13', 'en', 1, 'https://ror.org/05q7t7f13 Center For Reconstructive Urethral Surgery Centro di Chirurgia Ricostruttiva dell''Uretra'), (9818, 'https://ror.org/05q882j59', 'en', 1, 'https://ror.org/05q882j59 Scientists in School'), (9819, 'https://ror.org/05q895y58', 'en', 1, 'https://ror.org/05q895y58 Lisbon Geographic Society Sociedade de Geografia de Lisboa'), (9820, 'https://ror.org/05q9ht188', 'en', 1, 'https://ror.org/05q9ht188 Stark State College'), (9821, 'https://ror.org/05qa36453', 'en', 1, 'https://ror.org/05qa36453 Olmsted Medical Center'), (9822, 'https://ror.org/05qagj590', 'no_lang_code', 1, 'https://ror.org/05qagj590 Allele Biotechnology (United States)'), (9823, 'https://ror.org/05qcjd272', 'no_lang_code', 1, 'https://ror.org/05qcjd272 Reynolds American (United States)'), (9824, 'https://ror.org/05qevt293', 'no_lang_code', 1, 'https://ror.org/05qevt293 HealthMedia (United States)'), (9825, 'https://ror.org/05qfnkv67', 'en', 1, 'https://ror.org/05qfnkv67 St. Vincent''s Medical Center'), (9826, 'https://ror.org/05qg48n69', 'no_lang_code', 1, 'https://ror.org/05qg48n69 Scott Bader (United Kingdom)'), (9827, 'https://ror.org/05qg5f850', 'en', 1, 'https://ror.org/05qg5f850 American Association of Community Colleges'), (9828, 'https://ror.org/05qgtg165', 'en', 1, 'https://ror.org/05qgtg165 Sitting Bull College'), (9829, 'https://ror.org/05qgz5a90', 'cs', 1, 'https://ror.org/05qgz5a90 Ocní klinika'), (9830, 'https://ror.org/05qhdx204', 'en', 1, 'https://ror.org/05qhdx204 Manhattanville College'), (9831, 'https://ror.org/05qjgkw66', 'no_lang_code', 1, 'https://ror.org/05qjgkw66 Cosmos Corporation (United States)'), (9832, 'https://ror.org/05qjz5228', 'fr', 1, 'https://ror.org/05qjz5228 Institut Jean Godinot'), (9833, 'https://ror.org/05qkm5r52', 'no_lang_code', 1, 'https://ror.org/05qkm5r52 21c Consultancy (United Kingdom)'), (9834, 'https://ror.org/05qmxat05', 'en', 1, 'https://ror.org/05qmxat05 Consorcio de Salud y Social de Cataluña Consortium for Health and Social Catalonia'), (9835, 'https://ror.org/05qnbjn88', 'no_lang_code', 1, 'https://ror.org/05qnbjn88 Opal-Rt Technologies (Canada)'), (9836, 'https://ror.org/05qpxvt33', 'fr', 1, 'https://ror.org/05qpxvt33 Café Scientifique'), (9837, 'https://ror.org/05qqty169', 'en', 1, 'https://ror.org/05qqty169 Lehigh Carbon Community College'), (9838, 'https://ror.org/05qt2r430', 'en', 1, 'https://ror.org/05qt2r430 Education Commission of the States'), (9839, 'https://ror.org/05qv76t63', 'en', 1, 'https://ror.org/05qv76t63 Construction Industry Research and Information Association'), (9840, 'https://ror.org/05qv7gx64', 'en', 1, 'https://ror.org/05qv7gx64 Western Hospital'), (9841, 'https://ror.org/05qvwqt73', 'no_lang_code', 1, 'https://ror.org/05qvwqt73 IntraMedical Imaging (United States)'), (9842, 'https://ror.org/05qx0rc07', 'it', 1, 'https://ror.org/05qx0rc07 Istituto di Ricerche Chimiche e Biochimiche G. Ronzoni'), (9843, 'https://ror.org/05qydhq49', 'en', 1, 'https://ror.org/05qydhq49 Duluth Clinic'), (9844, 'https://ror.org/05qzbtg69', 'no_lang_code', 1, 'https://ror.org/05qzbtg69 Ineos (United Kingdom)'), (9845, 'https://ror.org/05qzgry88', 'en', 1, 'https://ror.org/05qzgry88 Accreditation Board for Engineering and Technology'), (9846, 'https://ror.org/05r286q94', 'en', 1, 'https://ror.org/05r286q94 Yamanashi Prefectural Central Hospital 山梨県立中央病院'), (9847, 'https://ror.org/05r3ht428', 'en', 1, 'https://ror.org/05r3ht428 Bunker Hill Community College'), (9848, 'https://ror.org/05r4dzd29', 'no_lang_code', 1, 'https://ror.org/05r4dzd29 Organizational Wellness and Learning Systems'), (9849, 'https://ror.org/05r6rhh75', 'no_lang_code', 1, 'https://ror.org/05r6rhh75 Synthasome (United States)'), (9850, 'https://ror.org/05r7f8853', 'it', 1, 'https://ror.org/05r7f8853 Istituto Zooprofilattico Sperimentale del Mezzogiorno'), (9851, 'https://ror.org/05r88rg69', 'pl', 1, 'https://ror.org/05r88rg69 Instytut Sportu'), (9852, 'https://ror.org/05r8vsn81', 'en', 1, 'https://ror.org/05r8vsn81 Borgess Health'), (9853, 'https://ror.org/05r99t981', 'en', 1, 'https://ror.org/05r99t981 Segawa Neurological Clinic for Children 子供のための瀬川神経学クリニック'), (9854, 'https://ror.org/05r9v1368', 'en', 1, 'https://ror.org/05r9v1368 Tianjin Chest Hospital 天津市胸科医院'), (9855, 'https://ror.org/05rckx884', 'no_lang_code', 1, 'https://ror.org/05rckx884 American Express (United States)'), (9856, 'https://ror.org/05rcxtd95', 'it', 1, 'https://ror.org/05rcxtd95 Fondazione Santa Lucia'), (9857, 'https://ror.org/05rdrc984', 'en', 1, 'https://ror.org/05rdrc984 AIDS United'), (9858, 'https://ror.org/05re2xe18', 'no_lang_code', 1, 'https://ror.org/05re2xe18 Bio Tissue (United States)'), (9859, 'https://ror.org/05rebpx60', 'no_lang_code', 1, 'https://ror.org/05rebpx60 National Underground Assets Group'), (9860, 'https://ror.org/05resfq34', 'en', 1, 'https://ror.org/05resfq34 Overlook Medical Center'), (9861, 'https://ror.org/05rex1605', 'no_lang_code', 1, 'https://ror.org/05rex1605 3D Systems (United States)'), (9862, 'https://ror.org/05rjtkb31', 'en', 1, 'https://ror.org/05rjtkb31 Winn Army Community Hospital'), (9863, 'https://ror.org/05rke7t32', 'en', 1, 'https://ror.org/05rke7t32 Animal, Food and Health Sciences'), (9864, 'https://ror.org/05rnhf031', 'no_lang_code', 1, 'https://ror.org/05rnhf031 ACell (United States)'), (9865, 'https://ror.org/05rpsf244', 'en', 1, 'https://ror.org/05rpsf244 Israel Oceanographic and Limnological Research'), (9866, 'https://ror.org/05rsf2c37', 'it', 1, 'https://ror.org/05rsf2c37 Ospedali Riuniti Umberto I'), (9867, 'https://ror.org/05rt5vh72', 'no_lang_code', 1, 'https://ror.org/05rt5vh72 Logical Semantics (United States)'), (9868, 'https://ror.org/05rtsja45', 'no_lang_code', 1, 'https://ror.org/05rtsja45 NanoScale Corporation (United States)'), (9869, 'https://ror.org/05rv6kp38', 'no_lang_code', 1, 'https://ror.org/05rv6kp38 TriLink BioTechnologies (United States)'), (9870, 'https://ror.org/05rvwbr49', 'en', 1, 'https://ror.org/05rvwbr49 APLA Health'), (9871, 'https://ror.org/05s184768', 'fr', 1, 'https://ror.org/05s184768 Centre de Documentation de Recherche et d''Expérimentation sur les Pollutions Accidentelles des Eaux Centre of Documentation, Research and Experimentation on Accidental Water Pollution'), (9872, 'https://ror.org/05s4s1f68', 'no_lang_code', 1, 'https://ror.org/05s4s1f68 Epicenter Software (United States)'), (9873, 'https://ror.org/05s65ce35', 'en', 1, 'https://ror.org/05s65ce35 Tanabe Research Laboratories'), (9874, 'https://ror.org/05s793832', 'no_lang_code', 1, 'https://ror.org/05s793832 PMD Scientific (United States)'), (9875, 'https://ror.org/05sa8gf57', 'en', 1, 'https://ror.org/05sa8gf57 Native American Health Center'), (9876, 'https://ror.org/05san5604', 'no_lang_code', 1, 'https://ror.org/05san5604 Philips (Germany)'), (9877, 'https://ror.org/05sc9ba13', 'en', 1, 'https://ror.org/05sc9ba13 Montgomery County Public Schools'), (9878, 'https://ror.org/05sejp741', 'no_lang_code', 1, 'https://ror.org/05sejp741 Consulintel (Spain)'), (9879, 'https://ror.org/05sgcvx90', 'en', 1, 'https://ror.org/05sgcvx90 Cleveland Metropolitan School District'), (9880, 'https://ror.org/05shq4n12', 'en', 1, 'https://ror.org/05shq4n12 Centre for Cellular and Molecular Biology உயிரணு மற்றும் மூலக்கூறு உயிரியல் மையம் സെന്റർ ഫോർ സെല്ലുലാർ ആന്റ് മോളിക്യുലർ ബയോളജി'), (9881, 'https://ror.org/05skkwg31', 'no_lang_code', 1, 'https://ror.org/05skkwg31 Digestive Care (United States)'), (9882, 'https://ror.org/05spgfz39', 'no_lang_code', 1, 'https://ror.org/05spgfz39 Soligenix (United States)'), (9883, 'https://ror.org/05sq1nj46', 'en', 1, 'https://ror.org/05sq1nj46 Palomar Medical Center'), (9884, 'https://ror.org/05srfkv34', 'en', 1, 'https://ror.org/05srfkv34 Chelyabinsk State Medical Academy Южно-Уральский государственный медицинский университет'), (9885, 'https://ror.org/05srnyf79', 'en', 1, 'https://ror.org/05srnyf79 Maine Mathematics and Science Alliance'), (9886, 'https://ror.org/05ss99d25', 'en', 1, 'https://ror.org/05ss99d25 Tampa Bay Research Institute'), (9887, 'https://ror.org/05sshfw48', 'en', 1, 'https://ror.org/05sshfw48 Pacific Health Research and Education Institute'), (9888, 'https://ror.org/05stnhf77', 'en', 1, 'https://ror.org/05stnhf77 Shanghai Academy of Environmental Sciences 上海市环境科学研究院'), (9889, 'https://ror.org/05svaqs46', 'no_lang_code', 1, 'https://ror.org/05svaqs46 Psychology Software Tools (United States)'), (9890, 'https://ror.org/05svxk822', 'en', 1, 'https://ror.org/05svxk822 San Jose City College'), (9891, 'https://ror.org/05sxp6402', 'no_lang_code', 1, 'https://ror.org/05sxp6402 Oxford Gene Technology (United Kingdom)'), (9892, 'https://ror.org/05szzwt63', 'en', 1, 'https://ror.org/05szzwt63 Industrial Technology Research Institute 工業技術硏究院'), (9893, 'https://ror.org/05t0c7p82', 'it', 1, 'https://ror.org/05t0c7p82 Azienda Ospedaliera G. Brotzu'), (9894, 'https://ror.org/05t1tdx84', 'no_lang_code', 1, 'https://ror.org/05t1tdx84 Tissue Genetics (United States)'), (9895, 'https://ror.org/05t1yee64', 'no_lang_code', 1, 'https://ror.org/05t1yee64 Hospital Fatuma Bourguiba Monastir Hôpital Universitaire Fattouma-Bourguiba de Monastir'), (9896, 'https://ror.org/05t2trr67', 'en', 1, 'https://ror.org/05t2trr67 Miami Hand Center'), (9897, 'https://ror.org/05t43jk30', 'en', 1, 'https://ror.org/05t43jk30 Colorado Center for Nursing Excellence'), (9898, 'https://ror.org/05t4ef339', 'en', 1, 'https://ror.org/05t4ef339 Northern Arizona VA Health Care System'), (9899, 'https://ror.org/05t626n88', 'en', 1, 'https://ror.org/05t626n88 Suwa Red Cross Hospital 諏訪赤十字病院'), (9900, 'https://ror.org/05t871q54', 'no_lang_code', 1, 'https://ror.org/05t871q54 Resonance Research (United States)'), (9901, 'https://ror.org/05t8d2s47', 'en', 1, 'https://ror.org/05t8d2s47 American College of Emergency Physicians'), (9902, 'https://ror.org/05ta9zy41', 'en', 1, 'https://ror.org/05ta9zy41 Self Reliance Foundation'), (9903, 'https://ror.org/05tacab76', 'en', 1, 'https://ror.org/05tacab76 Bath Institute for Rheumatic Diseases'), (9904, 'https://ror.org/05tb9de28', 'no_lang_code', 1, 'https://ror.org/05tb9de28 Charlesson (United States)'), (9905, 'https://ror.org/05tcd6p82', 'en', 1, 'https://ror.org/05tcd6p82 Shady Grove Fertility Center'), (9906, 'https://ror.org/05td03w87', 'en', 1, 'https://ror.org/05td03w87 College of the Canyons'), (9907, 'https://ror.org/05tdnf273', 'en', 1, 'https://ror.org/05tdnf273 Insurance Institute for Highway Safety'), (9908, 'https://ror.org/05tj1jy10', 'en', 1, 'https://ror.org/05tj1jy10 Texas Nerve and Paralysis Institute'), (9909, 'https://ror.org/05tj22n53', 'en', 1, 'https://ror.org/05tj22n53 AGE Platform Europe'), (9910, 'https://ror.org/05tjbsh85', 'en', 1, 'https://ror.org/05tjbsh85 Ministry of Justice 法務省'), (9911, 'https://ror.org/05tkjm312', 'no_lang_code', 1, 'https://ror.org/05tkjm312 DiagnoCure (Canada)'), (9912, 'https://ror.org/05tqt7092', 'en', 1, 'https://ror.org/05tqt7092 Jefferson State Community College'), (9913, 'https://ror.org/05tt05r27', 'no_lang_code', 1, 'https://ror.org/05tt05r27 Oulu Deaconess Institute Oulun diakonissalaitos'), (9914, 'https://ror.org/05tvanj47', 'fr', 1, 'https://ror.org/05tvanj47 Institut Louis Malardé'), (9915, 'https://ror.org/05twrtk66', 'no_lang_code', 1, 'https://ror.org/05twrtk66 Fermionics (United States)'), (9916, 'https://ror.org/05twxmr11', 'no_lang_code', 1, 'https://ror.org/05twxmr11 Brooks Automation (United States)'), (9917, 'https://ror.org/05ty6vv60', 'en', 1, 'https://ror.org/05ty6vv60 Tropical Population Health Unit'), (9918, 'https://ror.org/05tzq2c96', 'it', 1, 'https://ror.org/05tzq2c96 Centro Neurolesi Bonino Pulejo'), (9919, 'https://ror.org/05v0e5774', 'en', 1, 'https://ror.org/05v0e5774 Piedmont Reference Center for Epidemiology and Cancer Prevention'), (9920, 'https://ror.org/05v1dya15', 'fr', 1, 'https://ror.org/05v1dya15 Centre de Recherches et des Technologies des Eaux'), (9921, 'https://ror.org/05v48bz32', 'it', 1, 'https://ror.org/05v48bz32 Nuovo Ospedale di Prato'), (9922, 'https://ror.org/05v4bk714', 'en', 1, 'https://ror.org/05v4bk714 Animal Technology Institute Taiwan'), (9923, 'https://ror.org/05v4j1v63', 'no_lang_code', 1, 'https://ror.org/05v4j1v63 Takanoko Hospital'), (9924, 'https://ror.org/05v4j5439', 'no_lang_code', 1, 'https://ror.org/05v4j5439 Kopin Corporation (United States)'), (9925, 'https://ror.org/05v4ned20', 'no_lang_code', 1, 'https://ror.org/05v4ned20 iSign Solutions (United States)'), (9926, 'https://ror.org/05v6jj657', 'en', 1, 'https://ror.org/05v6jj657 Office of Chief Medical Examiner'), (9927, 'https://ror.org/05v7p8344', 'no_lang_code', 1, 'https://ror.org/05v7p8344 West Portal Software (United States)'), (9928, 'https://ror.org/05vefar40', 'en', 1, 'https://ror.org/05vefar40 Organisation mondiale de la santé World Health Organization - India Всемирная организация здравоохранения'), (9929, 'https://ror.org/05vfrxy92', 'en', 1, 'https://ror.org/05vfrxy92 American Rock Mechanics Association'), (9930, 'https://ror.org/05vga3150', 'no_lang_code', 1, 'https://ror.org/05vga3150 Trophogen (United States)'), (9931, 'https://ror.org/05vgb7p23', 'en', 1, 'https://ror.org/05vgb7p23 American Psychiatric Association'), (9932, 'https://ror.org/05vharc92', 'en', 1, 'https://ror.org/05vharc92 College Ahuntsic Collège ahuntsic'), (9933, 'https://ror.org/05vhg8j56', 'en', 1, 'https://ror.org/05vhg8j56'), (9934, 'https://ror.org/05vj5p117', 'no_lang_code', 1, 'https://ror.org/05vj5p117 Synkera Technologies (United States)'), (9935, 'https://ror.org/05vj78j16', 'en', 1, 'https://ror.org/05vj78j16 Society of American Foresters'), (9936, 'https://ror.org/05vm6be10', 'no_lang_code', 1, 'https://ror.org/05vm6be10 Lipman Hearne (United States)'), (9937, 'https://ror.org/05vm76w92', 'en', 1, 'https://ror.org/05vm76w92 Biotechnology Research Institute 中国农业科学院生物技术研究所'), (9938, 'https://ror.org/05vmcbf05', 'en', 1, 'https://ror.org/05vmcbf05 Pakistan Council of Scientific & Industrial Research'), (9939, 'https://ror.org/05vmv8m79', 'en', 1, 'https://ror.org/05vmv8m79 Frankfurt Institute for Advanced Studies'), (9940, 'https://ror.org/05vpsdj37', 'en', 1, 'https://ror.org/05vpsdj37 Wythenshawe Hospital'), (9941, 'https://ror.org/05vqfs419', 'en', 1, 'https://ror.org/05vqfs419 National Museums Liverpool'), (9942, 'https://ror.org/05vts7w23', 'en', 1, 'https://ror.org/05vts7w23 Nanaji Deshmukh Veterinary Science University'), (9943, 'https://ror.org/05vv5ch57', 'en', 1, 'https://ror.org/05vv5ch57 National Center of Infectious and Parasitic Diseases Националният център по заразни и паразитни болести'), (9944, 'https://ror.org/05vvg9554', 'en', 1, 'https://ror.org/05vvg9554 Planetary Science Institute'), (9945, 'https://ror.org/05w07vs91', 'it', 1, 'https://ror.org/05w07vs91 Istituti Ospitalieri di Cremona'), (9946, 'https://ror.org/05w1mrz55', 'en', 1, 'https://ror.org/05w1mrz55 Parkinson''s Institute and Clinical Center'), (9947, 'https://ror.org/05w1q1c88', 'it', 1, 'https://ror.org/05w1q1c88 Policlinico San Matteo Fondazione'), (9948, 'https://ror.org/05w1q8228', 'no_lang_code', 1, 'https://ror.org/05w1q8228 Senex Biotechnology (United States)'), (9949, 'https://ror.org/05w44gx91', 'fr', 1, 'https://ror.org/05w44gx91 Réseau Technoscience'), (9950, 'https://ror.org/05w6wfp17', 'en', 1, 'https://ror.org/05w6wfp17 Bhabha Atomic Research Centre Centre de recherche atomique de bhabha भाभा अणुसंशोधन केंद्र भाभा परमाणु अनुसंधान केन्द्र பாபா அணு ஆராய்ச்சி மையம் ಭಾಭಾ ಅಣು ಸಂಶೋಧನಾ ಕೇಂದ್ರ ഭാഭാ ആണവ ഗവേഷണ കേന്ദ്രം'), (9951, 'https://ror.org/05w7pd234', 'no_lang_code', 1, 'https://ror.org/05w7pd234 Texas Retina Associates (United States)'), (9952, 'https://ror.org/05w90nk74', 'en', 1, 'https://ror.org/05w90nk74 Stollery Children''s Hospital'), (9953, 'https://ror.org/05wcvd955', 'no_lang_code', 1, 'https://ror.org/05wcvd955 Gallomanor (United Kingdom)'), (9954, 'https://ror.org/05wm6w245', 'en', 1, 'https://ror.org/05wm6w245 Lakeland College'), (9955, 'https://ror.org/05wngc118', 'no_lang_code', 1, 'https://ror.org/05wngc118 Fuel Theatre (United Kingdom)'), (9956, 'https://ror.org/05wnk7791', 'no_lang_code', 1, 'https://ror.org/05wnk7791 CrossChasm Technologies (Canada)'), (9957, 'https://ror.org/05wnkdq49', 'en', 1, 'https://ror.org/05wnkdq49 National Energy Foundation'), (9958, 'https://ror.org/05wr6e156', 'no_lang_code', 1, 'https://ror.org/05wr6e156 Bruce Technologies (United States)'), (9959, 'https://ror.org/05wrnja28', 'no_lang_code', 1, 'https://ror.org/05wrnja28 Tepha (United States)'), (9960, 'https://ror.org/05ws4x937', 'no_lang_code', 1, 'https://ror.org/05ws4x937 Optelian (Canada)'), (9961, 'https://ror.org/05wzrja17', 'no_lang_code', 1, 'https://ror.org/05wzrja17 Abcam (United Kingdom)'), (9962, 'https://ror.org/05x0at146', 'en', 1, 'https://ror.org/05x0at146 Santa Barbara Botanic Garden'), (9963, 'https://ror.org/05x20ta98', 'no_lang_code', 1, 'https://ror.org/05x20ta98 Information Management Consultants (United States)'), (9964, 'https://ror.org/05x546h56', 'no_lang_code', 1, 'https://ror.org/05x546h56 NexTech Materials (United States)'), (9965, 'https://ror.org/05x7pyy46', 'en', 1, 'https://ror.org/05x7pyy46 St. Louis Testing Laboratories'), (9966, 'https://ror.org/05x8xdg58', 'en', 1, 'https://ror.org/05x8xdg58 St. Mary''s Hospital'), (9967, 'https://ror.org/05x923c26', 'en', 1, 'https://ror.org/05x923c26 Central Environmental and Food Science Research Institute'), (9968, 'https://ror.org/05xb57658', 'no_lang_code', 1, 'https://ror.org/05xb57658 Aviagen (United Kingdom)'), (9969, 'https://ror.org/05xemxk04', 'en', 1, 'https://ror.org/05xemxk04 Metropolitan Drug Commission'), (9970, 'https://ror.org/05xf94514', 'en', 1, 'https://ror.org/05xf94514 United States Public Health Service'), (9971, 'https://ror.org/05xgfg578', 'en', 1, 'https://ror.org/05xgfg578 Partnership Group for Science and Engineering'), (9972, 'https://ror.org/05xnecb03', 'en', 1, 'https://ror.org/05xnecb03 St. Mary''s Health Center'), (9973, 'https://ror.org/05xnnea38', 'en', 1, 'https://ror.org/05xnnea38 Swiss Epilepsy Center'), (9974, 'https://ror.org/05xnsth60', 'no_lang_code', 1, 'https://ror.org/05xnsth60 Network Technologies (United States)'), (9975, 'https://ror.org/05xpxan20', 'no_lang_code', 1, 'https://ror.org/05xpxan20 TechniScan (United States)'), (9976, 'https://ror.org/05xq19q44', 'en', 1, 'https://ror.org/05xq19q44 Ministry of the Environment and Water Resources 新加坡环境及水源部'), (9977, 'https://ror.org/05xr0q537', 'es', 1, 'https://ror.org/05xr0q537 Clínica Ruiz'), (9978, 'https://ror.org/05xrhs889', 'no_lang_code', 1, 'https://ror.org/05xrhs889 Photon Etc (Canada)'), (9979, 'https://ror.org/05xrj1c85', 'no_lang_code', 1, 'https://ror.org/05xrj1c85 Gamma Medica (United States)'), (9980, 'https://ror.org/05xt49662', 'en', 1, 'https://ror.org/05xt49662 Penteli General Children''s Hospital Νοσοκομείο Παίδων Πεντέλης'), (9981, 'https://ror.org/05xt51492', 'no_lang_code', 1, 'https://ror.org/05xt51492 Octane (Canada)'), (9982, 'https://ror.org/05xv66680', 'en', 1, 'https://ror.org/05xv66680 Royal Rehabilitation Centre'), (9983, 'https://ror.org/05xvgzf10', 'it', 1, 'https://ror.org/05xvgzf10 Ospedale Maggiore di Chieri'), (9984, 'https://ror.org/05xvz3022', 'no_lang_code', 1, 'https://ror.org/05xvz3022 Transonic Systems (United States)'), (9985, 'https://ror.org/05xzvft44', 'it', 1, 'https://ror.org/05xzvft44 Associazione Nazionale Costruttori di Macchine e Stampi per Materie Plastiche e Gomma, Assocomaplast Italian Plastics and Rubber Processing Machinery and Moulds Manufacturers'' Association'), (9986, 'https://ror.org/05y1qcf54', 'en', 1, 'https://ror.org/05y1qcf54 Agricultural Institute Magyar Tudományos Akadémia Mezőgazdasági Kutató Intézet'), (9987, 'https://ror.org/05y2ajc95', 'en', 1, 'https://ror.org/05y2ajc95 Forest Preserves of Cook County'), (9988, 'https://ror.org/05y2d8w36', 'no_lang_code', 1, 'https://ror.org/05y2d8w36 Biomedica Management (United States)'), (9989, 'https://ror.org/05y2hka35', 'en', 1, 'https://ror.org/05y2hka35 Santa Fe University of Art and Design Universidad de Arte y Diseño de Santa Fe'), (9990, 'https://ror.org/05y2m0c09', 'en', 1, 'https://ror.org/05y2m0c09 Institute for Medical Research'), (9991, 'https://ror.org/05y9zzm67', 'en', 1, 'https://ror.org/05y9zzm67 Henri Gastaut Hospital'), (9992, 'https://ror.org/05yab6874', 'no_lang_code', 1, 'https://ror.org/05yab6874 Varian Associates Varian Medical Systems (United States)'), (9993, 'https://ror.org/05yavwk90', 'en', 1, 'https://ror.org/05yavwk90 Northwest College'), (9994, 'https://ror.org/05ydq5158', 'no_lang_code', 1, 'https://ror.org/05ydq5158 Spangle Associates'), (9995, 'https://ror.org/05yeg2858', 'no_lang_code', 1, 'https://ror.org/05yeg2858 ABB (Germany)'), (9996, 'https://ror.org/05yfrba80', 'en', 1, 'https://ror.org/05yfrba80 Science Museum'), (9997, 'https://ror.org/05yhj6j64', 'en', 1, 'https://ror.org/05yhj6j64 Food Industry Research and Development Institute'), (9998, 'https://ror.org/05yjan319', 'no_lang_code', 1, 'https://ror.org/05yjan319 Simulent (Canada)'), (9999, 'https://ror.org/05yn9cj95', 'no', 1, 'https://ror.org/05yn9cj95 Sørlandet Hospital Sørlandet Sykehus'), (10000, 'https://ror.org/05yqbk328', 'en', 1, 'https://ror.org/05yqbk328 Genetica DNA Laboratories'), (10001, 'https://ror.org/0001j6637', 'no_lang_code', 1, 'https://ror.org/0001j6637 Tethers Unlimited (United States)'), (10002, 'https://ror.org/00046rb12', 'no_lang_code', 1, 'https://ror.org/00046rb12 Rescoll (France)'), (10003, 'https://ror.org/0005tvh12', 'en', 1, 'https://ror.org/0005tvh12 Institutul National de Hidrologie si Gospodarire a Apelor National Institute of Hydrology and Water Management'), (10004, 'https://ror.org/0006xs696', 'en', 1, 'https://ror.org/0006xs696 Ele''s Place'), (10005, 'https://ror.org/000714v43', 'no_lang_code', 1, 'https://ror.org/000714v43 Studsvik (Sweden)'), (10006, 'https://ror.org/00073my17', 'no_lang_code', 1, 'https://ror.org/00073my17 BioWorks (United States)'), (10007, 'https://ror.org/0008smw05', 'en', 1, 'https://ror.org/0008smw05 BreakOUT'), (10008, 'https://ror.org/0009gvn90', 'en', 1, 'https://ror.org/0009gvn90 Georgia Breast Cancer Coalition Fund'), (10009, 'https://ror.org/0009wsb17', 'en', 1, 'https://ror.org/0009wsb17 A N Bach Institute of Biochemistry Институт биохимии им. А.Н.Баха'), (10010, 'https://ror.org/000a1tn51', 'en', 1, 'https://ror.org/000a1tn51 Health Effects Institute'), (10011, 'https://ror.org/000bdn450', 'no_lang_code', 1, 'https://ror.org/000bdn450 Syngenta (United Kingdom)'), (10012, 'https://ror.org/000en4h24', 'no_lang_code', 1, 'https://ror.org/000en4h24 Panasonic (Germany)'), (10013, 'https://ror.org/000etmf12', 'no_lang_code', 1, 'https://ror.org/000etmf12 Sequans Communications (France)'), (10014, 'https://ror.org/000hmzc02', 'no_lang_code', 1, 'https://ror.org/000hmzc02 Myostin Therapeutics (Australia)'), (10015, 'https://ror.org/000hva629', 'no_lang_code', 1, 'https://ror.org/000hva629 Inhibikase Therapeutics (United States)'), (10016, 'https://ror.org/000kzf191', 'en', 1, 'https://ror.org/000kzf191 Burke County Public Schools'), (10017, 'https://ror.org/000mrza07', 'no_lang_code', 1, 'https://ror.org/000mrza07 AVEO Oncology (United States)'), (10018, 'https://ror.org/000ncdv93', 'en', 1, 'https://ror.org/000ncdv93 Swedish National Board of Fisheries'), (10019, 'https://ror.org/000psz759', 'en', 1, 'https://ror.org/000psz759 Marymount Manhattan College'), (10020, 'https://ror.org/000q08p21', 'no_lang_code', 1, 'https://ror.org/000q08p21 Schott (Germany)'), (10021, 'https://ror.org/000qvv970', 'en', 1, 'https://ror.org/000qvv970 Qualifications and Curriculum Authority'), (10022, 'https://ror.org/000r61a05', 'en', 1, 'https://ror.org/000r61a05 American Federation for Aging Research'), (10023, 'https://ror.org/000rag760', 'en', 1, 'https://ror.org/000rag760 Habitat for Humanity of Greater Charlottesville'), (10024, 'https://ror.org/000rkhy86', 'en', 1, 'https://ror.org/000rkhy86 Connecting to Care'), (10025, 'https://ror.org/000rr7w48', 'en', 1, 'https://ror.org/000rr7w48 Halászati és Öntözési Kutatóintézet Research Institute for Fisheries and Aquaculture'), (10026, 'https://ror.org/000sb6642', 'no_lang_code', 1, 'https://ror.org/000sb6642 Satellite Observing Systems (United Kingdom)'), (10027, 'https://ror.org/000sfad56', 'en', 1, 'https://ror.org/000sfad56 Institute of Physics Instytut Fizyki PAN'), (10028, 'https://ror.org/000skyh95', 'en', 1, 'https://ror.org/000skyh95 Manitoga'), (10029, 'https://ror.org/000v2n186', 'en', 1, 'https://ror.org/000v2n186 Center for Information and Study on Clinical Research Participation'), (10030, 'https://ror.org/000yp3j43', 'no_lang_code', 1, 'https://ror.org/000yp3j43 Rupprecht Consult - Forschung & Beratung'), (10031, 'https://ror.org/0011aqx02', 'en', 1, 'https://ror.org/0011aqx02 Maine Hospice Council'), (10032, 'https://ror.org/00139ex69', 'no_lang_code', 1, 'https://ror.org/00139ex69 Sensonor (Norway)'), (10033, 'https://ror.org/0013dsy11', 'no_lang_code', 1, 'https://ror.org/0013dsy11 RWTÜV (Germany) Rheinisch-Westfälische Technische Überwachungsverein'), (10034, 'https://ror.org/0013zhk30', 'en', 1, 'https://ror.org/0013zhk30 Institute of Food Science'), (10035, 'https://ror.org/0015k4a59', 'en', 1, 'https://ror.org/0015k4a59 Cognitive Systems Research Institute'), (10036, 'https://ror.org/0016bkz03', 'no_lang_code', 1, 'https://ror.org/0016bkz03 Lisnave (Portugal)'), (10037, 'https://ror.org/0016qw586', 'en', 1, 'https://ror.org/0016qw586 First In Families of North Carolina'), (10038, 'https://ror.org/0017nnr12', 'en', 1, 'https://ror.org/0017nnr12 Strategic Solutions International'), (10039, 'https://ror.org/001b7ye13', 'en', 1, 'https://ror.org/001b7ye13 Building Services Research and Information Association'), (10040, 'https://ror.org/001c8fh75', 'en', 1, 'https://ror.org/001c8fh75 Cal Poly Corporation'), (10041, 'https://ror.org/001dd4s60', 'no_lang_code', 1, 'https://ror.org/001dd4s60 Microsoft (Germany)'), (10042, 'https://ror.org/001g74t27', 'no_lang_code', 1, 'https://ror.org/001g74t27 Heckmann (Germany)'), (10043, 'https://ror.org/001g7ce71', 'no_lang_code', 1, 'https://ror.org/001g7ce71 Biomass Technology Group (Netherlands)'), (10044, 'https://ror.org/001gk4004', 'it', 1, 'https://ror.org/001gk4004 Istituto per la Ricerca Sociale'), (10045, 'https://ror.org/001hzk554', 'en', 1, 'https://ror.org/001hzk554 Boston Back Bay Plastic Surgery'), (10046, 'https://ror.org/001j0nz10', 'en', 1, 'https://ror.org/001j0nz10 Inter-Faith Food Shuttle'), (10047, 'https://ror.org/001kp4y75', 'no_lang_code', 1, 'https://ror.org/001kp4y75 Avanzare (Spain)'), (10048, 'https://ror.org/001m7ja14', 'no_lang_code', 1, 'https://ror.org/001m7ja14 FIT Consulting (Italy)'), (10049, 'https://ror.org/001mfwh65', 'en', 1, 'https://ror.org/001mfwh65 International Scientific Council for Island Development'), (10050, 'https://ror.org/001q3y090', 'no_lang_code', 1, 'https://ror.org/001q3y090 Creativa (Italy) Creativa Impresa di Comunicazione srl'), (10051, 'https://ror.org/001qfrp14', 'en', 1, 'https://ror.org/001qfrp14 Abilities In Motion'), (10052, 'https://ror.org/001s48x24', 'en', 1, 'https://ror.org/001s48x24 Independent Living Resources'), (10053, 'https://ror.org/001vg8g70', 'en', 1, 'https://ror.org/001vg8g70'), (10054, 'https://ror.org/001vv9g35', 'en', 1, 'https://ror.org/001vv9g35 Athens Land Trust'), (10055, 'https://ror.org/001vwrk73', 'en', 1, 'https://ror.org/001vwrk73 Flashes of Hope'), (10056, 'https://ror.org/001ydyr37', 'no_lang_code', 1, 'https://ror.org/001ydyr37 Técnicas Reunidas (Spain)'), (10057, 'https://ror.org/001zna302', 'no_lang_code', 1, 'https://ror.org/001zna302 NanoMed Targeting Systems (United States)'), (10058, 'https://ror.org/00200ya62', 'en', 1, 'https://ror.org/00200ya62 National Ageing Research Institute'), (10059, 'https://ror.org/0022pfg65', 'en', 1, 'https://ror.org/0022pfg65 Nightingales Medical Trust'), (10060, 'https://ror.org/0022r5p04', 'en', 1, 'https://ror.org/0022r5p04 NeuroMedical Center'), (10061, 'https://ror.org/00233x252', 'no_lang_code', 1, 'https://ror.org/00233x252 Qiagen (Denmark)'), (10062, 'https://ror.org/0023q4k34', 'en', 1, 'https://ror.org/0023q4k34 Trilateral Research & Consulting'), (10063, 'https://ror.org/0024x0915', 'en', 1, 'https://ror.org/0024x0915 Math for America'), (10064, 'https://ror.org/00266dp40', 'nl', 1, 'https://ror.org/00266dp40 Novay'), (10065, 'https://ror.org/00273wp13', 'en', 1, 'https://ror.org/00273wp13 Energy Cities'), (10066, 'https://ror.org/0027k1m19', 'en', 1, 'https://ror.org/0027k1m19 WateReuse Association'), (10067, 'https://ror.org/0027v6s71', 'no_lang_code', 1, 'https://ror.org/0027v6s71 INTRASOFT International (Greece)'), (10068, 'https://ror.org/00292bn75', 'en', 1, 'https://ror.org/00292bn75 Note-Able Music Therapy Services'), (10069, 'https://ror.org/00298sd14', 'no_lang_code', 1, 'https://ror.org/00298sd14 Battelle Ingenieurtechnik (Germany)'), (10070, 'https://ror.org/002adfz67', 'no_lang_code', 1, 'https://ror.org/002adfz67 Lonza (Switzerland)'), (10071, 'https://ror.org/002cv1w36', 'en', 1, 'https://ror.org/002cv1w36 Australian Foundation for Diabetes Research'), (10072, 'https://ror.org/002czwf36', 'en', 1, 'https://ror.org/002czwf36 MelroseWakefield Healthcare'), (10073, 'https://ror.org/002e5bb83', 'no_lang_code', 1, 'https://ror.org/002e5bb83 Hexis (Switzerland)'), (10074, 'https://ror.org/002eet613', 'en', 1, 'https://ror.org/002eet613 Center Point'), (10075, 'https://ror.org/002fen565', 'no_lang_code', 1, 'https://ror.org/002fen565 BC Platforms (Finland)'), (10076, 'https://ror.org/002k2wg65', 'no_lang_code', 1, 'https://ror.org/002k2wg65 EntroGen (United States)'), (10077, 'https://ror.org/002m7jd84', 'en', 1, 'https://ror.org/002m7jd84 Catholic Charities'), (10078, 'https://ror.org/002nw1r81', 'es', 1, 'https://ror.org/002nw1r81 Andalusian Public Foundation for Health Research in Biomedicine and Malaga Fundación Pública Andaluza para la Investigación de Málaga en Biomedicina y Salud'), (10079, 'https://ror.org/002q0aa23', 'en', 1, 'https://ror.org/002q0aa23 Princeton Child Development Institute'), (10080, 'https://ror.org/002r82k07', 'en', 1, 'https://ror.org/002r82k07 Mercy Clinic Neurology'), (10081, 'https://ror.org/002trzq62', 'en', 1, 'https://ror.org/002trzq62 Community Health Works'), (10082, 'https://ror.org/002w0jp71', 'en', 1, 'https://ror.org/002w0jp71 Institut für Weltraumforschung Space Research Institute'), (10083, 'https://ror.org/002wpy368', 'en', 1, 'https://ror.org/002wpy368 Young Foundation'), (10084, 'https://ror.org/002wx9n23', 'no_lang_code', 1, 'https://ror.org/002wx9n23 Gruppo Riva (Italy)'), (10085, 'https://ror.org/002z0cd60', 'no_lang_code', 1, 'https://ror.org/002z0cd60 Schneider Electric (France)'), (10086, 'https://ror.org/00300j256', 'en', 1, 'https://ror.org/00300j256 Fulbright Association'), (10087, 'https://ror.org/0033pqk03', 'en', 1, 'https://ror.org/0033pqk03 Tubman'), (10088, 'https://ror.org/0034r9358', 'en', 1, 'https://ror.org/0034r9358 Southeast Georgia Health System'), (10089, 'https://ror.org/003518063', 'no_lang_code', 1, 'https://ror.org/003518063 ComputIT (Norway)'), (10090, 'https://ror.org/0035nx336', 'en', 1, 'https://ror.org/0035nx336 Finansdepartementet Ministry of Finance'), (10091, 'https://ror.org/0036jx294', 'no_lang_code', 1, 'https://ror.org/0036jx294 Farmington Pharma Development (United States)'), (10092, 'https://ror.org/0037f4615', 'no_lang_code', 1, 'https://ror.org/0037f4615 Cvergenx (United States)'), (10093, 'https://ror.org/0037fa039', 'no_lang_code', 1, 'https://ror.org/0037fa039 Avantune (Italy)'), (10094, 'https://ror.org/003b78q25', 'en', 1, 'https://ror.org/003b78q25 Wye College'), (10095, 'https://ror.org/003bqs817', 'no_lang_code', 1, 'https://ror.org/003bqs817 Owl Biomedical (United States)'), (10096, 'https://ror.org/003c3rr61', 'no_lang_code', 1, 'https://ror.org/003c3rr61 Diehl (Germany)'), (10097, 'https://ror.org/003cpzf24', 'en', 1, 'https://ror.org/003cpzf24 Chess in the Schools'), (10098, 'https://ror.org/003dvmy85', 'en', 1, 'https://ror.org/003dvmy85 Central Council of the Tlingit and Haida Indian Tribes of Alaska'), (10099, 'https://ror.org/003e85j37', 'en', 1, 'https://ror.org/003e85j37 Nothing But Nets'), (10100, 'https://ror.org/003eebv14', 'no_lang_code', 1, 'https://ror.org/003eebv14 Sylics (Netherlands)'), (10101, 'https://ror.org/003fvp964', 'en', 1, 'https://ror.org/003fvp964 Institute of Computer Science Instytut Podstaw Informatyki'), (10102, 'https://ror.org/003g9tn92', 'no_lang_code', 1, 'https://ror.org/003g9tn92 Hellenic Petroleum (Greece)'), (10103, 'https://ror.org/003g9x449', 'en', 1, 'https://ror.org/003g9x449 BC Wheelchair Sports Association'), (10104, 'https://ror.org/003gevz29', 'en', 1, 'https://ror.org/003gevz29 Camden Children''s Garden'), (10105, 'https://ror.org/003h0ev22', 'nl', 1, 'https://ror.org/003h0ev22 Gemeente Amsterdam'), (10106, 'https://ror.org/003j7nn34', 'no_lang_code', 1, 'https://ror.org/003j7nn34 EnerSys (United States)'), (10107, 'https://ror.org/003ka3k75', 'no_lang_code', 1, 'https://ror.org/003ka3k75 Principia (France)'), (10108, 'https://ror.org/003kb2e24', 'en', 1, 'https://ror.org/003kb2e24 National Hospice Foundation'), (10109, 'https://ror.org/003kxr082', 'no_lang_code', 1, 'https://ror.org/003kxr082 British Airways (United Kingdom)'), (10110, 'https://ror.org/003mdrz16', 'en', 1, 'https://ror.org/003mdrz16 Institute of American Indian Arts'), (10111, 'https://ror.org/003p7hq46', 'en', 1, 'https://ror.org/003p7hq46 Drummond Public Schools'), (10112, 'https://ror.org/003pqgx54', 'no_lang_code', 1, 'https://ror.org/003pqgx54 SMR Engineering and Development (Switzerland)'), (10113, 'https://ror.org/003qqj197', 'no_lang_code', 1, 'https://ror.org/003qqj197 Visidyne (United States)'), (10114, 'https://ror.org/003r3ng51', 'en', 1, 'https://ror.org/003r3ng51 Tift County School District'), (10115, 'https://ror.org/003s1y583', 'no_lang_code', 1, 'https://ror.org/003s1y583 Saphyrion (Switzerland)'), (10116, 'https://ror.org/003sztp18', 'en', 1, 'https://ror.org/003sztp18 Breathe California Golden Gate Public Health Partnership'), (10117, 'https://ror.org/003t61x02', 'en', 1, 'https://ror.org/003t61x02 Bristlecone Family Resources'), (10118, 'https://ror.org/003v2c511', 'no_lang_code', 1, 'https://ror.org/003v2c511 Allgemeine Elektrizitäts Gesellschaft (Germany) General Electricity Company'), (10119, 'https://ror.org/00406q532', 'en', 1, 'https://ror.org/00406q532 Providence Alaska Medical Center'), (10120, 'https://ror.org/0040b6869', 'en', 1, 'https://ror.org/0040b6869 International Brain Research Organization Organisation internationale de recherche sur le cerveau'), (10121, 'https://ror.org/0042p7m09', 'no_lang_code', 1, 'https://ror.org/0042p7m09 Nivalis Therapeutics (United States)'), (10122, 'https://ror.org/0044m1c71', 'no_lang_code', 1, 'https://ror.org/0044m1c71 Conceptivity (Switzerland)'), (10123, 'https://ror.org/0044vax59', 'no_lang_code', 1, 'https://ror.org/0044vax59 GEA Group (Germany)'), (10124, 'https://ror.org/0046pcp30', 'no_lang_code', 1, 'https://ror.org/0046pcp30 Gwent Group (United Kingdom)'), (10125, 'https://ror.org/004718x66', 'en', 1, 'https://ror.org/004718x66 American Himalayan Foundation'), (10126, 'https://ror.org/0048c7h22', 'no_lang_code', 1, 'https://ror.org/0048c7h22 Tecnologías Servicios Telemáticos y Sistemas'), (10127, 'https://ror.org/00497h462', 'no_lang_code', 1, 'https://ror.org/00497h462 Hewlett-Packard (France)'), (10128, 'https://ror.org/0049h1m27', 'no_lang_code', 1, 'https://ror.org/0049h1m27 Otto Group (Germany)'), (10129, 'https://ror.org/004anj868', 'en', 1, 'https://ror.org/004anj868 Danish National Centre for Social Research Det Nationale Forskningscenter for Velfærd'), (10130, 'https://ror.org/004b1aw93', 'no_lang_code', 1, 'https://ror.org/004b1aw93 Keshet Dance Company (United States)'), (10131, 'https://ror.org/004er7684', 'no_lang_code', 1, 'https://ror.org/004er7684 Luxilon (Belgium)'), (10132, 'https://ror.org/004f1q697', 'no_lang_code', 1, 'https://ror.org/004f1q697 Innovation (Latvia)'), (10133, 'https://ror.org/004fch170', 'en', 1, 'https://ror.org/004fch170 Clara Martin Center'), (10134, 'https://ror.org/004g36n56', 'no_lang_code', 1, 'https://ror.org/004g36n56 Software (Germany)'), (10135, 'https://ror.org/004gvby26', 'no_lang_code', 1, 'https://ror.org/004gvby26 Solaronix (Switzerland)'), (10136, 'https://ror.org/004hkm505', 'no_lang_code', 1, 'https://ror.org/004hkm505 Pacific Biodiesel (United States)'), (10137, 'https://ror.org/004htp828', 'en', 1, 'https://ror.org/004htp828 Cambodian Association of America'), (10138, 'https://ror.org/004j5ke68', 'en', 1, 'https://ror.org/004j5ke68 CNL World'), (10139, 'https://ror.org/004m17078', 'en', 1, 'https://ror.org/004m17078 Resources for Independence Central Valley'), (10140, 'https://ror.org/004np0e76', 'no_lang_code', 1, 'https://ror.org/004np0e76 Dornier (Germany)'), (10141, 'https://ror.org/004qf6v24', 'en', 1, 'https://ror.org/004qf6v24 United Charitable'), (10142, 'https://ror.org/004qxjv96', 'en', 1, 'https://ror.org/004qxjv96 Concern Worldwide'), (10143, 'https://ror.org/004rej139', 'fr', 1, 'https://ror.org/004rej139 Centre National de Recherches Météorologiques'), (10144, 'https://ror.org/004vck917', 'en', 1, 'https://ror.org/004vck917 Winston County Self Help Cooperative'), (10145, 'https://ror.org/004y0gv29', 'en', 1, 'https://ror.org/004y0gv29 Community Breast Care Project'), (10146, 'https://ror.org/004y9hm48', 'en', 1, 'https://ror.org/004y9hm48 Mighty4 Arts Foundation'), (10147, 'https://ror.org/00503gj66', 'no_lang_code', 1, 'https://ror.org/00503gj66 Microvi Biotechnologies (United States)'), (10148, 'https://ror.org/00509dp49', 'en', 1, 'https://ror.org/00509dp49 Any Baby Can'), (10149, 'https://ror.org/0051tdp65', 'en', 1, 'https://ror.org/0051tdp65 Beacon Health System'), (10150, 'https://ror.org/00526y629', 'no_lang_code', 1, 'https://ror.org/00526y629 SES (Luxembourg)'), (10151, 'https://ror.org/00535yn06', 'no_lang_code', 1, 'https://ror.org/00535yn06 Telscom (Switzerland)'), (10152, 'https://ror.org/0053hg536', 'en', 1, 'https://ror.org/0053hg536 Arkana Laboratories'), (10153, 'https://ror.org/0053krp57', 'en', 1, 'https://ror.org/0053krp57 Children''s Brain Tumor Foundation'), (10154, 'https://ror.org/005574r46', 'no_lang_code', 1, 'https://ror.org/005574r46 Italsolar (Italy)'), (10155, 'https://ror.org/00566zb37', 'en', 1, 'https://ror.org/00566zb37 Desi Geestman Foundation'), (10156, 'https://ror.org/0057wrw58', 'no_lang_code', 1, 'https://ror.org/0057wrw58 Solintel (Spain)'), (10157, 'https://ror.org/005aym849', 'en', 1, 'https://ror.org/005aym849 Yakima Valley Community College'), (10158, 'https://ror.org/005bg5z56', 'no_lang_code', 1, 'https://ror.org/005bg5z56 Prima Industrie (Italy)'), (10159, 'https://ror.org/005cxtt77', 'no_lang_code', 1, 'https://ror.org/005cxtt77 Enertechnix (United States)'), (10160, 'https://ror.org/005e54928', 'no_lang_code', 1, 'https://ror.org/005e54928 Kjobenhavns Telefon Aktieselskab (Denmark)'), (10161, 'https://ror.org/005f16662', 'en', 1, 'https://ror.org/005f16662 FishBase Information and Research Group'), (10162, 'https://ror.org/005gk6w44', 'no_lang_code', 1, 'https://ror.org/005gk6w44 Biocentras (Lithuania)'), (10163, 'https://ror.org/005jham19', 'no_lang_code', 1, 'https://ror.org/005jham19 Ente Nazionale Assistenza al Volo (Italy)'), (10164, 'https://ror.org/005m1kj18', 'en', 1, 'https://ror.org/005m1kj18 Bay Mills Community College'), (10165, 'https://ror.org/005mr0595', 'no_lang_code', 1, 'https://ror.org/005mr0595 Technology Holding (United States)'), (10166, 'https://ror.org/005p0t446', 'eu', 1, 'https://ror.org/005p0t446 Institute for Applied Ecology Oeko Institut'), (10167, 'https://ror.org/005r3ak92', 'es', 1, 'https://ror.org/005r3ak92 Fondo Centroamericano de Mujeres'), (10168, 'https://ror.org/005sd3904', 'no_lang_code', 1, 'https://ror.org/005sd3904 Enviscope (Germany)'), (10169, 'https://ror.org/005spvz56', 'en', 1, 'https://ror.org/005spvz56 North Country Hospital'), (10170, 'https://ror.org/005w2t155', 'no_lang_code', 1, 'https://ror.org/005w2t155 Norsk Elektro Optikk (Norway)'), (10171, 'https://ror.org/005wy0t74', 'en', 1, 'https://ror.org/005wy0t74 Luxinnovation'), (10172, 'https://ror.org/005ypgw33', 'no_lang_code', 1, 'https://ror.org/005ypgw33 ISRA Vision Parsytec (Germany)'), (10173, 'https://ror.org/005ypw517', 'en', 1, 'https://ror.org/005ypw517 Men''s Health Network'), (10174, 'https://ror.org/0060eqh22', 'en', 1, 'https://ror.org/0060eqh22 Adelante Mujeres'), (10175, 'https://ror.org/00618cy28', 'en', 1, 'https://ror.org/00618cy28 Haitian American Association Against Cancer'), (10176, 'https://ror.org/00659dh25', 'en', 1, 'https://ror.org/00659dh25 Arizona Sonora Desert Museum'), (10177, 'https://ror.org/00672e058', 'en', 1, 'https://ror.org/00672e058 Allen Temple Baptist Church'), (10178, 'https://ror.org/0067eyh19', 'en', 1, 'https://ror.org/0067eyh19 LAND studio'), (10179, 'https://ror.org/0067mxm07', 'en', 1, 'https://ror.org/0067mxm07 Global Autism Project'), (10180, 'https://ror.org/0069cx113', 'no_lang_code', 1, 'https://ror.org/0069cx113 Terradue (Italy)'), (10181, 'https://ror.org/006c77f48', 'en', 1, 'https://ror.org/006c77f48 Institute of Applied Mathematics and Mechanics'), (10182, 'https://ror.org/006c8zj95', 'en', 1, 'https://ror.org/006c8zj95 President''s Council of Advisors on Science and Technology'), (10183, 'https://ror.org/006dmc180', 'en', 1, 'https://ror.org/006dmc180 Joint Institute for VLBI ERIC'), (10184, 'https://ror.org/006dpe828', 'en', 1, 'https://ror.org/006dpe828 University of California Hastings College of the Law École de droit hastings de l''université de californie'), (10185, 'https://ror.org/006eg4f53', 'en', 1, 'https://ror.org/006eg4f53 Boca Raton Museum of Art'), (10186, 'https://ror.org/006f4zn23', 'en', 1, 'https://ror.org/006f4zn23 Institute for Physics and Power Engineering Государственный научный центр Российской Федерации Физико-энергетический институт, ГНЦ РФ-ФЭИ'), (10187, 'https://ror.org/006gmw843', 'en', 1, 'https://ror.org/006gmw843 Community Reach of Montgomery County'), (10188, 'https://ror.org/006gxgq80', 'no_lang_code', 1, 'https://ror.org/006gxgq80 Omniform (Belgium)'), (10189, 'https://ror.org/006h87a74', 'no_lang_code', 1, 'https://ror.org/006h87a74 Veolia (Denmark)'), (10190, 'https://ror.org/006kghv09', 'no_lang_code', 1, 'https://ror.org/006kghv09 Synergie Informatique'), (10191, 'https://ror.org/006m5mj32', 'it', 1, 'https://ror.org/006m5mj32 Istituto di Sociologia Internazionale di Gorizia'), (10192, 'https://ror.org/006p7ys96', 'no_lang_code', 1, 'https://ror.org/006p7ys96 Metos (Austria)'), (10193, 'https://ror.org/006r49z69', 'no_lang_code', 1, 'https://ror.org/006r49z69 NVision Solutions (United States)'), (10194, 'https://ror.org/006r5gc68', 'en', 1, 'https://ror.org/006r5gc68 Breast Cancer Care and Research Fund'), (10195, 'https://ror.org/006y04m02', 'no_lang_code', 1, 'https://ror.org/006y04m02 Separex (France)'), (10196, 'https://ror.org/0070dz419', 'en', 1, 'https://ror.org/0070dz419 AbilityPLUS'), (10197, 'https://ror.org/007398w55', 'en', 1, 'https://ror.org/007398w55 Australasia Paediatric Endocrine Group'), (10198, 'https://ror.org/0076zct58', 'en', 1, 'https://ror.org/0076zct58 Anhalt University of Applied Sciences Hochschule Anhalt'), (10199, 'https://ror.org/00780ev46', 'no_lang_code', 1, 'https://ror.org/00780ev46 Mobycon'), (10200, 'https://ror.org/0079ca173', 'en', 1, 'https://ror.org/0079ca173 Door to Hope'), (10201, 'https://ror.org/0079phc76', 'en', 1, 'https://ror.org/0079phc76 Greater Faith Baptist Church'), (10202, 'https://ror.org/007agsn16', 'en', 1, 'https://ror.org/007agsn16 Cardinal Ritter Senior Services'), (10203, 'https://ror.org/007bef738', 'no_lang_code', 1, 'https://ror.org/007bef738 Kala Pharmaceuticals (United States)'), (10204, 'https://ror.org/007d8wc49', 'no_lang_code', 1, 'https://ror.org/007d8wc49 Coastal Anesthesiology Consultants (United States)'), (10205, 'https://ror.org/007dpey41', 'en', 1, 'https://ror.org/007dpey41 NC Little Memorial Hospice'), (10206, 'https://ror.org/007hxks16', 'en', 1, 'https://ror.org/007hxks16 Leonia Public Schools'), (10207, 'https://ror.org/007k2q988', 'no_lang_code', 1, 'https://ror.org/007k2q988 Arecor (United Kingdom)'), (10208, 'https://ror.org/007n8tg79', 'no_lang_code', 1, 'https://ror.org/007n8tg79 DanSteel (Denmark)'), (10209, 'https://ror.org/007nfvg13', 'en', 1, 'https://ror.org/007nfvg13 LivingWell Cancer Resource Center'), (10210, 'https://ror.org/007nspy92', 'en', 1, 'https://ror.org/007nspy92 Regional Center for Information and Scientific Development'), (10211, 'https://ror.org/007qdqj47', 'en', 1, 'https://ror.org/007qdqj47 Department of Health and Wellness Promotion'), (10212, 'https://ror.org/007r56b43', 'en', 1, 'https://ror.org/007r56b43 Endeavor Charter School'), (10213, 'https://ror.org/007rawr89', 'en', 1, 'https://ror.org/007rawr89 Augusta University Health'), (10214, 'https://ror.org/007rmqd49', 'en', 1, 'https://ror.org/007rmqd49 National Bone Marrow Transplant Link'), (10215, 'https://ror.org/007sjp271', 'en', 1, 'https://ror.org/007sjp271 Los Angeles Neighborhood Land Trust'), (10216, 'https://ror.org/007st1w34', 'no_lang_code', 1, 'https://ror.org/007st1w34 Piksel (Italy)'), (10217, 'https://ror.org/007t1w466', 'en', 1, 'https://ror.org/007t1w466 Orthopaedic Research Laboratories'), (10218, 'https://ror.org/007tnc411', 'no_lang_code', 1, 'https://ror.org/007tnc411 Ottobock (Germany)'), (10219, 'https://ror.org/007vhwd23', 'en', 1, 'https://ror.org/007vhwd23 Cathedral Church of Saint John the Divine'), (10220, 'https://ror.org/007vvfj24', 'en', 1, 'https://ror.org/007vvfj24 Círculo de Vida'), (10221, 'https://ror.org/007yc7a13', 'no_lang_code', 1, 'https://ror.org/007yc7a13 Brimatech (Austria)'), (10222, 'https://ror.org/0082ybm03', 'en', 1, 'https://ror.org/0082ybm03 Texas Tech University System'), (10223, 'https://ror.org/0083ncs46', 'en', 1, 'https://ror.org/0083ncs46 Fraunhofer Institute for Applied Solid State Physics Fraunhofer-Institut für Angewandte Festkörperphysik'), (10224, 'https://ror.org/0084q6j82', 'no_lang_code', 1, 'https://ror.org/0084q6j82 Wask Engineering (United States)'), (10225, 'https://ror.org/00862c839', 'no_lang_code', 1, 'https://ror.org/00862c839 Ricardo AEA (Netherlands)'), (10226, 'https://ror.org/0086w0z14', 'de', 1, 'https://ror.org/0086w0z14 Forschungsinstitut für Edelmetalle und Metallchemie Research Institute for Precious Metals and Metal Chemistry'), (10227, 'https://ror.org/00878ar41', 'en', 1, 'https://ror.org/00878ar41 Comanche County Juvenile Bureau'), (10228, 'https://ror.org/0088fqs38', 'en', 1, 'https://ror.org/0088fqs38 HealthNet TPO'), (10229, 'https://ror.org/00893gj13', 'no_lang_code', 1, 'https://ror.org/00893gj13 In JeT ApS (Denmark)'), (10230, 'https://ror.org/0089q3791', 'no_lang_code', 1, 'https://ror.org/0089q3791 José Mateo Ballet Theatre (United States)'), (10231, 'https://ror.org/008a8ch32', 'no_lang_code', 1, 'https://ror.org/008a8ch32 KitoZyme (Belgium)'), (10232, 'https://ror.org/008d28s71', 'en', 1, 'https://ror.org/008d28s71 Hinds Community College'), (10233, 'https://ror.org/008e03r59', 'en', 1, 'https://ror.org/008e03r59 Palo Alto Veterans Institute for Research'), (10234, 'https://ror.org/008gaha58', 'no_lang_code', 1, 'https://ror.org/008gaha58 Ionicon Analytik (Austria)'), (10235, 'https://ror.org/008jvtm10', 'en', 1, 'https://ror.org/008jvtm10 Carmel Research Center'), (10236, 'https://ror.org/008q6py59', 'no_lang_code', 1, 'https://ror.org/008q6py59 Project in Solar Energy (Germany)'), (10237, 'https://ror.org/008qy0g71', 'en', 1, 'https://ror.org/008qy0g71 Renown Children''s Hospital'), (10238, 'https://ror.org/008rx8a22', 'en', 1, 'https://ror.org/008rx8a22 Sampson County Schools'), (10239, 'https://ror.org/008s8js48', 'en', 1, 'https://ror.org/008s8js48 Central Coast Center for Independent Living'), (10240, 'https://ror.org/008sqe405', 'en', 1, 'https://ror.org/008sqe405 Children''s Hospital Srebrnjak Dječja Bolnica Srebrnjak'), (10241, 'https://ror.org/008srgs73', 'en', 1, 'https://ror.org/008srgs73 Inland Empire Concerned African American Churches'), (10242, 'https://ror.org/008tsd037', 'en', 1, 'https://ror.org/008tsd037 Memorial Medical Center'), (10243, 'https://ror.org/008vgsq37', 'en', 1, 'https://ror.org/008vgsq37 National Council of Negro Women'), (10244, 'https://ror.org/008wfp513', 'no_lang_code', 1, 'https://ror.org/008wfp513 Buck Consultants International'), (10245, 'https://ror.org/008zr4d33', 'en', 1, 'https://ror.org/008zr4d33 Galilee Missionary Baptist Church'), (10246, 'https://ror.org/008zvz098', 'en', 1, 'https://ror.org/008zvz098 New America'); INSERT INTO `rors` VALUES (10247, 'https://ror.org/0090j2029', 'en', 1, 'https://ror.org/0090j2029 Hospital Universiti Sains Malaysia, Universiti Sains Malaysia School of Medical Science'), (10248, 'https://ror.org/0091xv072', 'no_lang_code', 1, 'https://ror.org/0091xv072 Eramet (France)'), (10249, 'https://ror.org/00927nm35', 'no_lang_code', 1, 'https://ror.org/00927nm35 Applied Nanotech (United States)'), (10250, 'https://ror.org/0092p0v85', 'en', 1, 'https://ror.org/0092p0v85 Breast International Group'), (10251, 'https://ror.org/00940ss05', 'en', 1, 'https://ror.org/00940ss05 Shields Valley Public Schools'), (10252, 'https://ror.org/00962x353', 'no_lang_code', 1, 'https://ror.org/00962x353 Luossavaara-Kiirunavaara Aktiebolag (Sweden)'), (10253, 'https://ror.org/00975k008', 'no_lang_code', 1, 'https://ror.org/00975k008 Dancing Wheels (United States)'), (10254, 'https://ror.org/0098cf282', 'no_lang_code', 1, 'https://ror.org/0098cf282 N8 Medical (United States)'), (10255, 'https://ror.org/009c3x903', 'en', 1, 'https://ror.org/009c3x903 New England Cancer Specialists'), (10256, 'https://ror.org/009cgyv75', 'it', 1, 'https://ror.org/009cgyv75 Consorzio Multi-Ente per la promozione e l''adozione di Tecnologie di calcolo Avanzato'), (10257, 'https://ror.org/009h1mf85', 'en', 1, 'https://ror.org/009h1mf85 Newark Museum'), (10258, 'https://ror.org/009htht73', 'en', 1, 'https://ror.org/009htht73 Alicia Rose Victorious Foundation'), (10259, 'https://ror.org/009jmw315', 'en', 1, 'https://ror.org/009jmw315 Northwest Georgia Regional Cancer Coalition'), (10260, 'https://ror.org/009jz9e24', 'en', 1, 'https://ror.org/009jz9e24 Pangaea Global AIDS Foundation'), (10261, 'https://ror.org/009n2kd47', 'no_lang_code', 1, 'https://ror.org/009n2kd47 Toulon Var Technologies (France)'), (10262, 'https://ror.org/009s7cn04', 'en', 1, 'https://ror.org/009s7cn04 Nick Simons Institute'), (10263, 'https://ror.org/009txp447', 'no_lang_code', 1, 'https://ror.org/009txp447 PureTemp (United States)'), (10264, 'https://ror.org/009v14c36', 'no_lang_code', 1, 'https://ror.org/009v14c36 Ferioli & Gianotti (Italy)'), (10265, 'https://ror.org/009vreb09', 'no_lang_code', 1, 'https://ror.org/009vreb09 Uniscan Instruments (United Kingdom)'), (10266, 'https://ror.org/009z2hr67', 'en', 1, 'https://ror.org/009z2hr67 SLO Food Bank'), (10267, 'https://ror.org/009za6q24', 'en', 1, 'https://ror.org/009za6q24 Teach For America'), (10268, 'https://ror.org/00a06kx42', 'en', 1, 'https://ror.org/00a06kx42 La Porte Hospital'), (10269, 'https://ror.org/00a0vzn71', 'en', 1, 'https://ror.org/00a0vzn71 Arthur Ashe Learning Center'), (10270, 'https://ror.org/00a17cp45', 'no_lang_code', 1, 'https://ror.org/00a17cp45 Tecnología Navarra de Nanoproductos (Spain)'), (10271, 'https://ror.org/00a20h625', 'en', 1, 'https://ror.org/00a20h625 Capital Region Medical Center'), (10272, 'https://ror.org/00a34rj81', 'no_lang_code', 1, 'https://ror.org/00a34rj81 Bax & Willems'), (10273, 'https://ror.org/00a3hks83', 'no_lang_code', 1, 'https://ror.org/00a3hks83 Housey Pharmaceutical Research Laboratories'), (10274, 'https://ror.org/00a65ez32', 'en', 1, 'https://ror.org/00a65ez32 State Hermitage Museum Госуда́рственный Эрмита́ж'), (10275, 'https://ror.org/00a6bz625', 'no_lang_code', 1, 'https://ror.org/00a6bz625 Rete Europea Dell’Innovazione (Italy)'), (10276, 'https://ror.org/00a98dc55', 'en', 1, 'https://ror.org/00a98dc55 CombiMatrix'), (10277, 'https://ror.org/00a9t7j25', 'en', 1, 'https://ror.org/00a9t7j25 Lars Research Institute'), (10278, 'https://ror.org/00aakch57', 'no_lang_code', 1, 'https://ror.org/00aakch57 Terres OléoPro (France)'), (10279, 'https://ror.org/00aanwc55', 'en', 1, 'https://ror.org/00aanwc55 International Society for Augmentative and Alternative Communication'), (10280, 'https://ror.org/00abwfk08', 'en', 1, 'https://ror.org/00abwfk08 Howard Area Community Center'), (10281, 'https://ror.org/00acdsz41', 'no_lang_code', 1, 'https://ror.org/00acdsz41 Paragon (Malta)'), (10282, 'https://ror.org/00acg6793', 'en', 1, 'https://ror.org/00acg6793 Community Support Network'), (10283, 'https://ror.org/00acgme86', 'no_lang_code', 1, 'https://ror.org/00acgme86 France Développement Conseil (France)'), (10284, 'https://ror.org/00afc1337', 'en', 1, 'https://ror.org/00afc1337 Aspira'), (10285, 'https://ror.org/00ag5y002', 'it', 1, 'https://ror.org/00ag5y002 Istituto Nazionale per Studi ed Esperienze di Architettura Navale'), (10286, 'https://ror.org/00agqps10', 'en', 1, 'https://ror.org/00agqps10 Consolidated Tribal Health Project'), (10287, 'https://ror.org/00ah8d329', 'no_lang_code', 1, 'https://ror.org/00ah8d329 Oxford Computer Consultants (United Kingdom)'), (10288, 'https://ror.org/00ahajr35', 'en', 1, 'https://ror.org/00ahajr35 Capital City Area Health Education Center'), (10289, 'https://ror.org/00aj26w03', 'en', 1, 'https://ror.org/00aj26w03 Paint Research Association'), (10290, 'https://ror.org/00aj75s74', 'en', 1, 'https://ror.org/00aj75s74 Belmont Abbey College'), (10291, 'https://ror.org/00aj9x431', 'en', 1, 'https://ror.org/00aj9x431 Region of Western Greece Περιφέρεια Δυτικής Ελλάδας'), (10292, 'https://ror.org/00an0vn46', 'no_lang_code', 1, 'https://ror.org/00an0vn46 Raidió Teilifís Éireann (Ireland)'), (10293, 'https://ror.org/00ansy136', 'no_lang_code', 1, 'https://ror.org/00ansy136 Saaten Union (Germany)'), (10294, 'https://ror.org/00avzve25', 'no_lang_code', 1, 'https://ror.org/00avzve25 Edelweiss Gestão Empresarial (Brazil)'), (10295, 'https://ror.org/00awqjx60', 'no_lang_code', 1, 'https://ror.org/00awqjx60 Softeam Cadextan'), (10296, 'https://ror.org/00ax59295', 'en', 1, 'https://ror.org/00ax59295 Cystic Fibrosis Foundation'), (10297, 'https://ror.org/00azr2q62', 'no_lang_code', 1, 'https://ror.org/00azr2q62 METALogic (Belgium)'), (10298, 'https://ror.org/00aztzy37', 'no_lang_code', 1, 'https://ror.org/00aztzy37 El.En. Group (Italy)'), (10299, 'https://ror.org/00b06wh69', 'no_lang_code', 1, 'https://ror.org/00b06wh69 Austrian Broadcasting Österreichischer Rundfunk'), (10300, 'https://ror.org/00b0aes62', 'en', 1, 'https://ror.org/00b0aes62 Indian Health Council'), (10301, 'https://ror.org/00b0jb681', 'en', 1, 'https://ror.org/00b0jb681 Krasnoyarsk State Medical University Государственное бюджетное образовательное учреждение высшего профессионального образования Красноярский государственный медицинский университет имени профессора В.Ф. Войно-Ясенецкого Министерства здравоохранения Российской Федерации'), (10302, 'https://ror.org/00b1drk46', 'no_lang_code', 1, 'https://ror.org/00b1drk46 Asper Biotech (Estonia)'), (10303, 'https://ror.org/00b37k984', 'en', 1, 'https://ror.org/00b37k984 Elixir Fund'), (10304, 'https://ror.org/00b4jn519', 'en', 1, 'https://ror.org/00b4jn519 United Way of Greater Portland'), (10305, 'https://ror.org/00b8bzq64', 'no_lang_code', 1, 'https://ror.org/00b8bzq64 Oncos Therapeutics (Finland)'), (10306, 'https://ror.org/00b8kjk28', 'no_lang_code', 1, 'https://ror.org/00b8kjk28 Praxis'), (10307, 'https://ror.org/00b970z32', 'no_lang_code', 1, 'https://ror.org/00b970z32 Orion Genomics (United States)'), (10308, 'https://ror.org/00b9qa162', 'no_lang_code', 1, 'https://ror.org/00b9qa162 Keraplast Technologies (United States)'), (10309, 'https://ror.org/00baer621', 'en', 1, 'https://ror.org/00baer621 Bon Secours Health System'), (10310, 'https://ror.org/00beq0325', 'pt', 1, 'https://ror.org/00beq0325 Centro Tecnológico do Calçado de Portugal'), (10311, 'https://ror.org/00bgp5g67', 'no_lang_code', 1, 'https://ror.org/00bgp5g67 iFyber (United States)'), (10312, 'https://ror.org/00bh09051', 'no_lang_code', 1, 'https://ror.org/00bh09051 Logit Systems (Norway)'), (10313, 'https://ror.org/00bjwbm70', 'en', 1, 'https://ror.org/00bjwbm70 International Society for Optical Engineering'), (10314, 'https://ror.org/00bpbqe63', 'en', 1, 'https://ror.org/00bpbqe63 Pildo Labs'), (10315, 'https://ror.org/00brd1934', 'no_lang_code', 1, 'https://ror.org/00brd1934 Intelligentsia Consultants'), (10316, 'https://ror.org/00brvts71', 'en', 1, 'https://ror.org/00brvts71 HP Family Medical Clinic'), (10317, 'https://ror.org/00bvn9584', 'no_lang_code', 1, 'https://ror.org/00bvn9584 FOV Fabrics (Sweden)'), (10318, 'https://ror.org/00bvpsj93', 'en', 1, 'https://ror.org/00bvpsj93 European Trade Union Confederation'), (10319, 'https://ror.org/00by51808', 'no_lang_code', 1, 'https://ror.org/00by51808 Mölnlycke Health Care (United States)'), (10320, 'https://ror.org/00bz41f09', 'en', 1, 'https://ror.org/00bz41f09 Afghan Coalition'), (10321, 'https://ror.org/00bz7xw94', 'en', 1, 'https://ror.org/00bz7xw94 Literacy for Environmental Justice'), (10322, 'https://ror.org/00bzst557', 'en', 1, 'https://ror.org/00bzst557 Communities In Schools of Orange County'), (10323, 'https://ror.org/00c0q9724', 'en', 1, 'https://ror.org/00c0q9724 Health Care Management Group'), (10324, 'https://ror.org/00c26wt35', 'en', 1, 'https://ror.org/00c26wt35 Maine-Dartmouth Family Medicine Residency'), (10325, 'https://ror.org/00c4fej53', 'en', 1, 'https://ror.org/00c4fej53 West Virginia Department of Agriculture'), (10326, 'https://ror.org/00c6b1k17', 'no_lang_code', 1, 'https://ror.org/00c6b1k17 Capgemini (Belgium)'), (10327, 'https://ror.org/00c6h1169', 'en', 1, 'https://ror.org/00c6h1169 Genesis Counseling Centers'), (10328, 'https://ror.org/00c74hc78', 'en', 1, 'https://ror.org/00c74hc78 HaitiChildren'), (10329, 'https://ror.org/00c8n3h65', 'en', 1, 'https://ror.org/00c8n3h65 European Respiratory Society'), (10330, 'https://ror.org/00c97z041', 'no_lang_code', 1, 'https://ror.org/00c97z041 Engie (Belgium)'), (10331, 'https://ror.org/00ca7az78', 'no_lang_code', 1, 'https://ror.org/00ca7az78 BIC Bratislava (Slovakia)'), (10332, 'https://ror.org/00caks861', 'en', 1, 'https://ror.org/00caks861 Bedford VA Research Corporation'), (10333, 'https://ror.org/00ccz3w83', 'no_lang_code', 1, 'https://ror.org/00ccz3w83 Eco Composites (United States)'), (10334, 'https://ror.org/00cdtrb49', 'en', 1, 'https://ror.org/00cdtrb49 Oregon College of Oriental Medicine'), (10335, 'https://ror.org/00cgdz126', 'it', 1, 'https://ror.org/00cgdz126 Italian Union of the Blind and Partially Sighted Unione Italiana dei Ciechi e degli Ipovedenti'), (10336, 'https://ror.org/00chw7248', 'no_lang_code', 1, 'https://ror.org/00chw7248 Motorola (Italy)'), (10337, 'https://ror.org/00ckx8y08', 'no_lang_code', 1, 'https://ror.org/00ckx8y08 Berliner Nanotest und Design'), (10338, 'https://ror.org/00cp8tk34', 'no_lang_code', 1, 'https://ror.org/00cp8tk34 Infor (Netherlands)'), (10339, 'https://ror.org/00cpcby17', 'no_lang_code', 1, 'https://ror.org/00cpcby17 Centre Technique Cuir Chaussure Maroquinerie (France)'), (10340, 'https://ror.org/00cpkx252', 'en', 1, 'https://ror.org/00cpkx252 Charles County Public Schools'), (10341, 'https://ror.org/00cqg9869', 'en', 1, 'https://ror.org/00cqg9869 Region One Mental Health'), (10342, 'https://ror.org/00cswhr36', 'no_lang_code', 1, 'https://ror.org/00cswhr36 ISA Pharmaceuticals (Netherlands)'), (10343, 'https://ror.org/00ctvyy53', 'en', 1, 'https://ror.org/00ctvyy53 Local Government Management Agency'), (10344, 'https://ror.org/00cvfgp24', 'no_lang_code', 1, 'https://ror.org/00cvfgp24 Endocrine Technology (United States)'), (10345, 'https://ror.org/00czgcw56', 'en', 1, 'https://ror.org/00czgcw56 Madras Diabetes Research Foundation'), (10346, 'https://ror.org/00d1wxk10', 'en', 1, 'https://ror.org/00d1wxk10 Reel Recovery'), (10347, 'https://ror.org/00d34nb45', 'no_lang_code', 1, 'https://ror.org/00d34nb45 Technology Application Network (United Kingdom)'), (10348, 'https://ror.org/00d4wef72', 'en', 1, 'https://ror.org/00d4wef72 Kendra''s Kisses'), (10349, 'https://ror.org/00d5z2352', 'no_lang_code', 1, 'https://ror.org/00d5z2352 Bekaert (Belgium)'), (10350, 'https://ror.org/00d68nb44', 'en', 1, 'https://ror.org/00d68nb44 GrassrootsHealth'), (10351, 'https://ror.org/00d73ba28', 'no_lang_code', 1, 'https://ror.org/00d73ba28 Oncomatryx (Spain)'), (10352, 'https://ror.org/00d7mpc92', 'en', 1, 'https://ror.org/00d7mpc92 PENTA Foundation'), (10353, 'https://ror.org/00d8qva59', 'en', 1, 'https://ror.org/00d8qva59 Maine Adaptive Sports & Recreation'), (10354, 'https://ror.org/00d9pfn36', 'en', 1, 'https://ror.org/00d9pfn36 George Eliava Institute of Bacteriophage, Microbiology and Virology'), (10355, 'https://ror.org/00d9spg57', 'it', 1, 'https://ror.org/00d9spg57 Agenzia dei Trasporti Autoferrotranviari del Comune'), (10356, 'https://ror.org/00d9y2633', 'no_lang_code', 1, 'https://ror.org/00d9y2633 NTT (Italy)'), (10357, 'https://ror.org/00daztz68', 'no_lang_code', 1, 'https://ror.org/00daztz68 Kostopulos Dream Foundation'), (10358, 'https://ror.org/00de6v257', 'no_lang_code', 1, 'https://ror.org/00de6v257 Envisa (France)'), (10359, 'https://ror.org/00dk11h96', 'en', 1, 'https://ror.org/00dk11h96 New Jersey Department of Agriculture'), (10360, 'https://ror.org/00dkszm12', 'no_lang_code', 1, 'https://ror.org/00dkszm12 Dantec Dynamics (Germany)'), (10361, 'https://ror.org/00dmmws82', 'en', 1, 'https://ror.org/00dmmws82 American Childhood Cancer Organization'), (10362, 'https://ror.org/00dmq5618', 'no_lang_code', 1, 'https://ror.org/00dmq5618 Compagnie Maritime d''Expertises (France)'), (10363, 'https://ror.org/00dn4v959', 'en', 1, 'https://ror.org/00dn4v959 Baptist Health Floyd'), (10364, 'https://ror.org/00dq6jh04', 'en', 1, 'https://ror.org/00dq6jh04 Health Trust'), (10365, 'https://ror.org/00dqasn30', 'en', 1, 'https://ror.org/00dqasn30 Kathmandu Valley Preservation Trust'), (10366, 'https://ror.org/00dqfzf20', 'en', 1, 'https://ror.org/00dqfzf20 Barnets borg Helsinki Children''s Hospital Lastenlinna'), (10367, 'https://ror.org/00drc7v15', 'en', 1, 'https://ror.org/00drc7v15 Sustainable Food Center'), (10368, 'https://ror.org/00ds1n976', 'en', 1, 'https://ror.org/00ds1n976 Baltimore Medical System'), (10369, 'https://ror.org/00dsh2014', 'en', 1, 'https://ror.org/00dsh2014 Placer School for Adults'), (10370, 'https://ror.org/00dt2y198', 'en', 1, 'https://ror.org/00dt2y198 Malta Information Technology Agency'), (10371, 'https://ror.org/00dtfmh68', 'en', 1, 'https://ror.org/00dtfmh68 Mobile County Public Schools'), (10372, 'https://ror.org/00dw1nx81', 'en', 1, 'https://ror.org/00dw1nx81 British Plastics Federation'), (10373, 'https://ror.org/00dzkep57', 'no_lang_code', 1, 'https://ror.org/00dzkep57 Rijk Zwaan (Netherlands)'), (10374, 'https://ror.org/00e0nxq90', 'en', 1, 'https://ror.org/00e0nxq90 Care International Sri Lanka'), (10375, 'https://ror.org/00e0tnc81', 'en', 1, 'https://ror.org/00e0tnc81 ManageBGL'), (10376, 'https://ror.org/00e2z2v91', 'de', 1, 'https://ror.org/00e2z2v91 Kuratorium für Technik und Bauwesen in der Landwirtschaft'), (10377, 'https://ror.org/00e4qtq76', 'fr', 1, 'https://ror.org/00e4qtq76 Ministère de la Santé Publique et Action Sociale'), (10378, 'https://ror.org/00e67e117', 'en', 1, 'https://ror.org/00e67e117 Angel Flight South Central'), (10379, 'https://ror.org/00e7f1j69', 'no_lang_code', 1, 'https://ror.org/00e7f1j69 Capstan (United States)'), (10380, 'https://ror.org/00e7hrn50', 'no_lang_code', 1, 'https://ror.org/00e7hrn50 LUSAS (United Kingdom)'), (10381, 'https://ror.org/00e84bb93', 'no_lang_code', 1, 'https://ror.org/00e84bb93 Xnano Sciences (United States)'), (10382, 'https://ror.org/00e95rr56', 'en', 1, 'https://ror.org/00e95rr56 Eyes Wide Open International'), (10383, 'https://ror.org/00e960c03', 'no_lang_code', 1, 'https://ror.org/00e960c03 Blue Sun (United States)'), (10384, 'https://ror.org/00ea6js36', 'en', 1, 'https://ror.org/00ea6js36 Heritage Ranch'), (10385, 'https://ror.org/00eb0j070', 'en', 1, 'https://ror.org/00eb0j070 Cancer Family Care'), (10386, 'https://ror.org/00eb1e195', 'en', 1, 'https://ror.org/00eb1e195 Institute of Physical Chemistry Институт по физикохимия'), (10387, 'https://ror.org/00ebf8055', 'en', 1, 'https://ror.org/00ebf8055 Chinese Christian Herald Crusades'), (10388, 'https://ror.org/00ebjwx84', 'en', 1, 'https://ror.org/00ebjwx84 Cultural Humanitarian Fund Sukhumi'), (10389, 'https://ror.org/00eczry62', 'no_lang_code', 1, 'https://ror.org/00eczry62 Troutlodge (United States)'), (10390, 'https://ror.org/00ed6s086', 'en', 1, 'https://ror.org/00ed6s086 Cancer Services of Northeast Indiana'), (10391, 'https://ror.org/00eehvf61', 'no_lang_code', 1, 'https://ror.org/00eehvf61 HKV (Netherlands)'), (10392, 'https://ror.org/00ef3rg49', 'en', 1, 'https://ror.org/00ef3rg49 Arizona Veterans Research and Education Foundation'), (10393, 'https://ror.org/00ek95971', 'no_lang_code', 1, 'https://ror.org/00ek95971 Cosytec (France)'), (10394, 'https://ror.org/00emqem64', 'no_lang_code', 1, 'https://ror.org/00emqem64 Primmbiotech (Italy)'), (10395, 'https://ror.org/00epmfe95', 'no_lang_code', 1, 'https://ror.org/00epmfe95 PhoeniX Software (Netherlands)'), (10396, 'https://ror.org/00eptcw48', 'en', 1, 'https://ror.org/00eptcw48 Agri Analysis'), (10397, 'https://ror.org/00esbrz24', 'en', 1, 'https://ror.org/00esbrz24 Coconino Community College Foundation'), (10398, 'https://ror.org/00et1y633', 'en', 1, 'https://ror.org/00et1y633 Anti Domestic Violence Coalition'), (10399, 'https://ror.org/00evcdx62', 'es', 1, 'https://ror.org/00evcdx62 Asociación para el Desarrollo Integral Comunitario'), (10400, 'https://ror.org/00evgsc59', 'no_lang_code', 1, 'https://ror.org/00evgsc59 Babcock & Wilcox (Denmark)'), (10401, 'https://ror.org/00ewj2q24', 'en', 1, 'https://ror.org/00ewj2q24 NextSteps Chicago'), (10402, 'https://ror.org/00eyn9595', 'no_lang_code', 1, 'https://ror.org/00eyn9595 Malsch TechnoValuation'), (10403, 'https://ror.org/00f0ppx79', 'en', 1, 'https://ror.org/00f0ppx79 O''Brien Institute'), (10404, 'https://ror.org/00f55ed39', 'no_lang_code', 1, 'https://ror.org/00f55ed39 Eurosense (Belgium)'), (10405, 'https://ror.org/00f70np64', 'en', 1, 'https://ror.org/00f70np64 Pain and Rehabilitation Medicine'), (10406, 'https://ror.org/00f76x039', 'en', 1, 'https://ror.org/00f76x039 Nemours Children’s Clinic'), (10407, 'https://ror.org/00fadxs59', 'en', 1, 'https://ror.org/00fadxs59 National Institute of Aerospace'), (10408, 'https://ror.org/00fb7yx07', 'en', 1, 'https://ror.org/00fb7yx07 Institute of High Pressure Physics Instytut Wysokich Ciśnień'), (10409, 'https://ror.org/00fbze943', 'en', 1, 'https://ror.org/00fbze943 Arcetri Astrophysical Observatory Osservatorio Astrofisico di Arcetri'), (10410, 'https://ror.org/00fd6f737', 'en', 1, 'https://ror.org/00fd6f737 Institute for Security Studies'), (10411, 'https://ror.org/00fey2y98', 'no_lang_code', 1, 'https://ror.org/00fey2y98 Technical Software Consulting'), (10412, 'https://ror.org/00fgrt128', 'no_lang_code', 1, 'https://ror.org/00fgrt128 synergo'), (10413, 'https://ror.org/00fmr3e85', 'en', 1, 'https://ror.org/00fmr3e85 American Folk Art Museum'), (10414, 'https://ror.org/00fp8c217', 'en', 1, 'https://ror.org/00fp8c217 Mazor Mental Health Center המרכז הרפואי לבריאות הנפש מזור'), (10415, 'https://ror.org/00fqa4327', 'no_lang_code', 1, 'https://ror.org/00fqa4327 ActiveSite Pharmaceuticals (United States)'), (10416, 'https://ror.org/00fr0gw86', 'en', 1, 'https://ror.org/00fr0gw86 Calmar Pain Relief'), (10417, 'https://ror.org/00frxwd04', 'en', 1, 'https://ror.org/00frxwd04 Pathways Behavioral Services'), (10418, 'https://ror.org/00fvm0x93', 'en', 1, 'https://ror.org/00fvm0x93 National September 11 Memorial and Museum'), (10419, 'https://ror.org/00fwghy33', 'en', 1, 'https://ror.org/00fwghy33 Georgian Research and Educational Networking Association'), (10420, 'https://ror.org/00fwv2w85', 'no_lang_code', 1, 'https://ror.org/00fwv2w85 Micro Resist Technology (Germany)'), (10421, 'https://ror.org/00fxe2a68', 'en', 1, 'https://ror.org/00fxe2a68 Observa Science in Society'), (10422, 'https://ror.org/00fyk9n62', 'en', 1, 'https://ror.org/00fyk9n62 Foundation of the Hellenic World'), (10423, 'https://ror.org/00fzzvj42', 'no_lang_code', 1, 'https://ror.org/00fzzvj42 Veneto Nanotech (Italy)'), (10424, 'https://ror.org/00g0ddq73', 'no_lang_code', 1, 'https://ror.org/00g0ddq73 Inmarsat (United Kingdom)'), (10425, 'https://ror.org/00g3f1n02', 'en', 1, 'https://ror.org/00g3f1n02 African American Health Institute of San Bernardino County'), (10426, 'https://ror.org/00g3zpx26', 'no_lang_code', 1, 'https://ror.org/00g3zpx26 Mainstream Engineering Corporation (United States)'), (10427, 'https://ror.org/00g4qvs35', 'en', 1, 'https://ror.org/00g4qvs35 Institute of Logistics and Warehousing'), (10428, 'https://ror.org/00g5s5c73', 'en', 1, 'https://ror.org/00g5s5c73 Fremont County Public Health'), (10429, 'https://ror.org/00g656d67', 'en', 1, 'https://ror.org/00g656d67 Leibniz-Institut für Neue Materialien Leibniz-Institute for New Materials'), (10430, 'https://ror.org/00g8m1t29', 'no_lang_code', 1, 'https://ror.org/00g8m1t29 Varian Medical Systems (United Kingdom)'), (10431, 'https://ror.org/00g8wpx06', 'en', 1, 'https://ror.org/00g8wpx06 LGI Consulting'), (10432, 'https://ror.org/00gbze925', 'no_lang_code', 1, 'https://ror.org/00gbze925 Lucchini Idromeccanica (Italy)'), (10433, 'https://ror.org/00gcnz094', 'en', 1, 'https://ror.org/00gcnz094 Global Technology Community'), (10434, 'https://ror.org/00gd6jw56', 'en', 1, 'https://ror.org/00gd6jw56 Lone Star Paralysis Foundation'), (10435, 'https://ror.org/00ge54051', 'en', 1, 'https://ror.org/00ge54051 Mvskoke Food Sovereignty Initiative'), (10436, 'https://ror.org/00gf55f61', 'no_lang_code', 1, 'https://ror.org/00gf55f61 Opexa Therapeutics (United States)'), (10437, 'https://ror.org/00ghc0f97', 'en', 1, 'https://ror.org/00ghc0f97 Thuringian Institute of Textile and Plastics Research Thüringisches Institut für Textil- und Kunststoff-Forschung Rudolstadt'), (10438, 'https://ror.org/00gj9hs42', 'no_lang_code', 1, 'https://ror.org/00gj9hs42 BioPulping International (United States)'), (10439, 'https://ror.org/00gkv5g08', 'en', 1, 'https://ror.org/00gkv5g08 Our School at Blair Grocery'), (10440, 'https://ror.org/00gkzpk47', 'no_lang_code', 1, 'https://ror.org/00gkzpk47 Advanced Biological Marketing (United States)'), (10441, 'https://ror.org/00gnfkx95', 'no_lang_code', 1, 'https://ror.org/00gnfkx95 Sandvik (United States)'), (10442, 'https://ror.org/00gpdgm12', 'en', 1, 'https://ror.org/00gpdgm12 La Semilla Food Center'), (10443, 'https://ror.org/00gr8kx33', 'no_lang_code', 1, 'https://ror.org/00gr8kx33 Istituto Giordano'), (10444, 'https://ror.org/00gsbmb44', 'no_lang_code', 1, 'https://ror.org/00gsbmb44 Renewable Energy Systems (United Kingdom)'), (10445, 'https://ror.org/00gwz0j29', 'no_lang_code', 1, 'https://ror.org/00gwz0j29 Biotronics (United States)'), (10446, 'https://ror.org/00gyf5945', 'en', 1, 'https://ror.org/00gyf5945 Ministry of Agriculture Nature and Food Quality'), (10447, 'https://ror.org/00gywet31', 'en', 1, 'https://ror.org/00gywet31 National Institute of Geophysics, Geodesy and Geography Национален институт по геофизика, геодезия и география'), (10448, 'https://ror.org/00h2d8k73', 'en', 1, 'https://ror.org/00h2d8k73 Hospitality Homes'), (10449, 'https://ror.org/00h741k48', 'no_lang_code', 1, 'https://ror.org/00h741k48 Mitergy (United States)'), (10450, 'https://ror.org/00h9r4759', 'no_lang_code', 1, 'https://ror.org/00h9r4759 Flowtech International (Sweden)'), (10451, 'https://ror.org/00ha29405', 'no_lang_code', 1, 'https://ror.org/00ha29405 Soil Born Farms Urban Agriculture & Education Project (United States)'), (10452, 'https://ror.org/00hdnr317', 'en', 1, 'https://ror.org/00hdnr317 Danube Delta National Institute for Research and Development Institutul National de Cercetare Dezvoltare Delta Dunarii'), (10453, 'https://ror.org/00hdz1808', 'no_lang_code', 1, 'https://ror.org/00hdz1808 Arelis (France)'), (10454, 'https://ror.org/00hef7f20', 'en', 1, 'https://ror.org/00hef7f20 Finnish Transport Agency'), (10455, 'https://ror.org/00hh6j532', 'en', 1, 'https://ror.org/00hh6j532 National Institute of Child Health Országos Gyermek Egészségügyi Intézet'), (10456, 'https://ror.org/00hjks330', 'en', 1, 'https://ror.org/00hjks330 Koninklijke Sterrenwacht van België Königliche Sternwarte von Belgien Observatoire royal de belgique Royal Observatory of Belgium'), (10457, 'https://ror.org/00hm3qq49', 'no_lang_code', 1, 'https://ror.org/00hm3qq49 Eolas (Ireland)'), (10458, 'https://ror.org/00hn1zk59', 'en', 1, 'https://ror.org/00hn1zk59 Guiding Lights Caregiver Support Center'), (10459, 'https://ror.org/00hncq557', 'en', 1, 'https://ror.org/00hncq557 University of Maryland Charles Regional Medical Center'), (10460, 'https://ror.org/00hqdve77', 'no_lang_code', 1, 'https://ror.org/00hqdve77 Morgan Advanced Materials (United Kingdom)'), (10461, 'https://ror.org/00hqnxt08', 'no_lang_code', 1, 'https://ror.org/00hqnxt08 Murmansk Marine Biological Institute'), (10462, 'https://ror.org/00hw1e768', 'no_lang_code', 1, 'https://ror.org/00hw1e768 Radex Heraklith Industriebeteiligungs (Germany)'), (10463, 'https://ror.org/00hx55359', 'en', 1, 'https://ror.org/00hx55359 Meridian Plastic Surgeons'), (10464, 'https://ror.org/00hxd4r57', 'en', 1, 'https://ror.org/00hxd4r57 Cradle of Forestry'), (10465, 'https://ror.org/00hxj5n33', 'de', 1, 'https://ror.org/00hxj5n33 Deutsches Institut für Normung German Institute for Standardization'), (10466, 'https://ror.org/00hxw4g76', 'en', 1, 'https://ror.org/00hxw4g76 Helping Hands Monkey Helpers'), (10467, 'https://ror.org/00hyc4r79', 'no_lang_code', 1, 'https://ror.org/00hyc4r79 Rivertop Renewables (United States)'), (10468, 'https://ror.org/00hyf3k92', 'en', 1, 'https://ror.org/00hyf3k92 Ethiopian Community Development Council'), (10469, 'https://ror.org/00hzxcy85', 'no_lang_code', 1, 'https://ror.org/00hzxcy85 Syngenta (Netherlands)'), (10470, 'https://ror.org/00j2xe242', 'no_lang_code', 1, 'https://ror.org/00j2xe242 Innovative System und Informationstechnologien (Germany)'), (10471, 'https://ror.org/00j37m859', 'en', 1, 'https://ror.org/00j37m859 Pain Relief and Palliative Care Society'), (10472, 'https://ror.org/00j39nx61', 'no_lang_code', 1, 'https://ror.org/00j39nx61 Collegium Budapest'), (10473, 'https://ror.org/00j7csj22', 'en', 1, 'https://ror.org/00j7csj22 California Teaching Fellows Foundation'), (10474, 'https://ror.org/00j8h1h21', 'en', 1, 'https://ror.org/00j8h1h21 Indian Health Care Resource Center of Tulsa'), (10475, 'https://ror.org/00jbe9340', 'nl', 1, 'https://ror.org/00jbe9340 Dienst voor Wetenschappelijke en Technische Informatie Scientific and Technical Information Service Service d''Information Scientifique et Technique'), (10476, 'https://ror.org/00jbx2e92', 'en', 1, 'https://ror.org/00jbx2e92 Institute of Organic Chemistry with Centre of Phytochemistry Институт по органична химия с Център по фитохимия'), (10477, 'https://ror.org/00jc3sx68', 'en', 1, 'https://ror.org/00jc3sx68 Ecumenical Ministries of Oregon'), (10478, 'https://ror.org/00jeje538', 'no_lang_code', 1, 'https://ror.org/00jeje538 Comarch (Poland)'), (10479, 'https://ror.org/00jf50v81', 'no_lang_code', 1, 'https://ror.org/00jf50v81 Altaeros (United States)'), (10480, 'https://ror.org/00jf98d65', 'no_lang_code', 1, 'https://ror.org/00jf98d65 MolMed (Italy)'), (10481, 'https://ror.org/00jg4ch48', 'en', 1, 'https://ror.org/00jg4ch48 Indiana Cancer Registrars Association'), (10482, 'https://ror.org/00jg7pf63', 'en', 1, 'https://ror.org/00jg7pf63 Iowa City VA Medical Research Foundation'), (10483, 'https://ror.org/00jk68903', 'en', 1, 'https://ror.org/00jk68903 North East Community Center'), (10484, 'https://ror.org/00jk8a678', 'en', 1, 'https://ror.org/00jk8a678 St. Patrick Catholic High School'), (10485, 'https://ror.org/00jr5xv14', 'no_lang_code', 1, 'https://ror.org/00jr5xv14 MerMec (Italy)'), (10486, 'https://ror.org/00jsack41', 'en', 1, 'https://ror.org/00jsack41 Carteret County Public School System'), (10487, 'https://ror.org/00jt1e157', 'en', 1, 'https://ror.org/00jt1e157 Institute for Reproductive Health'), (10488, 'https://ror.org/00jtd6f03', 'en', 1, 'https://ror.org/00jtd6f03 Court Appointed Special Advocates of Union County'), (10489, 'https://ror.org/00jv1ms45', 'no_lang_code', 1, 'https://ror.org/00jv1ms45 Gradalis (United States)'), (10490, 'https://ror.org/00k1bh470', 'en', 1, 'https://ror.org/00k1bh470 National Wild Turkey Federation'), (10491, 'https://ror.org/00k4pey18', 'no_lang_code', 1, 'https://ror.org/00k4pey18 Cancer Targeted Technology (United States)'), (10492, 'https://ror.org/00k67dg75', 'no_lang_code', 1, 'https://ror.org/00k67dg75 RTC North (United Kingdom)'), (10493, 'https://ror.org/00k86s890', 'en', 1, 'https://ror.org/00k86s890 Foundation for the National Institutes of Health'), (10494, 'https://ror.org/00k8bwh32', 'no_lang_code', 1, 'https://ror.org/00k8bwh32 Amrita Therapeutics (India)'), (10495, 'https://ror.org/00k8nkz10', 'no_lang_code', 1, 'https://ror.org/00k8nkz10 LioniX (Netherlands)'), (10496, 'https://ror.org/00k94y497', 'en', 1, 'https://ror.org/00k94y497 Onslow County School System'), (10497, 'https://ror.org/00k9s8x90', 'no_lang_code', 1, 'https://ror.org/00k9s8x90 Hexagon (Belgium)'), (10498, 'https://ror.org/00ka0dh64', 'en', 1, 'https://ror.org/00ka0dh64 Granada Hills Community Hospital'), (10499, 'https://ror.org/00kb2qn83', 'en', 1, 'https://ror.org/00kb2qn83 Setauket Neighborhood House'), (10500, 'https://ror.org/00kb94k03', 'no_lang_code', 1, 'https://ror.org/00kb94k03 Sensing & Control Systems (Spain)'), (10501, 'https://ror.org/00kdpsr48', 'en', 1, 'https://ror.org/00kdpsr48 Rend Lake College'), (10502, 'https://ror.org/00kg9vk05', 'no_lang_code', 1, 'https://ror.org/00kg9vk05 Bionovo (United States)'), (10503, 'https://ror.org/00khy9f46', 'no_lang_code', 1, 'https://ror.org/00khy9f46 Sonoma Technology (United States)'), (10504, 'https://ror.org/00km9rx91', 'no_lang_code', 1, 'https://ror.org/00km9rx91 Altos Therapeutics (United States)'), (10505, 'https://ror.org/00kmz4377', 'en', 1, 'https://ror.org/00kmz4377 HealthEast Care System'), (10506, 'https://ror.org/00kn9sz43', 'no_lang_code', 1, 'https://ror.org/00kn9sz43 TransFurans Chemicals (Belgium)'), (10507, 'https://ror.org/00ks0ea23', 'en', 1, 'https://ror.org/00ks0ea23 Technological Educational Institute of Piraeus Τεχνολογικό Εκπαιδευτικό Ίδρυμα Πειραιά'), (10508, 'https://ror.org/00ks34y49', 'en', 1, 'https://ror.org/00ks34y49 Rafiki Coalition'), (10509, 'https://ror.org/00kss4e25', 'nl', 1, 'https://ror.org/00kss4e25 GZA Ziekenhuizen Campus Sint-Augustinus'), (10510, 'https://ror.org/00kt2k176', 'no_lang_code', 1, 'https://ror.org/00kt2k176 My25'), (10511, 'https://ror.org/00kt61z96', 'no_lang_code', 1, 'https://ror.org/00kt61z96 Optoelectronica-2001 (Romania)'), (10512, 'https://ror.org/00kznd563', 'no_lang_code', 1, 'https://ror.org/00kznd563 Ingeniería de Sistemas para la Defensa de España'), (10513, 'https://ror.org/00m1xxq98', 'en', 1, 'https://ror.org/00m1xxq98 Grassroots Gardens WNY'), (10514, 'https://ror.org/00m2evs52', 'no_lang_code', 1, 'https://ror.org/00m2evs52 Meiko (United Kingdom)'), (10515, 'https://ror.org/00m2rg630', 'en', 1, 'https://ror.org/00m2rg630 Kenosha County Department of Human Services'), (10516, 'https://ror.org/00m2x0g47', 'no_lang_code', 1, 'https://ror.org/00m2x0g47 Intel (Germany)'), (10517, 'https://ror.org/00m4fb445', 'en', 1, 'https://ror.org/00m4fb445 Neurology Associates of Arlington'), (10518, 'https://ror.org/00m6eb133', 'no_lang_code', 1, 'https://ror.org/00m6eb133 Custodix (Belgium)'), (10519, 'https://ror.org/00m6wsr38', 'no_lang_code', 1, 'https://ror.org/00m6wsr38 Masilamea Press (New Zealand)'), (10520, 'https://ror.org/00m71bz66', 'it', 1, 'https://ror.org/00m71bz66 Fondazione Idis Città della Scienza'), (10521, 'https://ror.org/00m783666', 'en', 1, 'https://ror.org/00m783666 WV Caring'), (10522, 'https://ror.org/00m8shp48', 'en', 1, 'https://ror.org/00m8shp48 Brea Fire Department'), (10523, 'https://ror.org/00maqzy82', 'no_lang_code', 1, 'https://ror.org/00maqzy82 Sika (Switzerland)'), (10524, 'https://ror.org/00mg9ng87', 'no_lang_code', 1, 'https://ror.org/00mg9ng87 Subsea 7 (France)'), (10525, 'https://ror.org/00mgb3084', 'no_lang_code', 1, 'https://ror.org/00mgb3084 Alkeus Pharmaceuticals (United States)'), (10526, 'https://ror.org/00mkc7476', 'no_lang_code', 1, 'https://ror.org/00mkc7476 Targeting Innovation'), (10527, 'https://ror.org/00mkstx48', 'no_lang_code', 1, 'https://ror.org/00mkstx48 Grontmij (Denmark)'), (10528, 'https://ror.org/00mkxfc22', 'no_lang_code', 1, 'https://ror.org/00mkxfc22 Heliophysics'), (10529, 'https://ror.org/00mneww03', 'en', 1, 'https://ror.org/00mneww03 Institute of Ecology and Botany Ökológiai és Botanikai Intézet'), (10530, 'https://ror.org/00mp87510', 'no_lang_code', 1, 'https://ror.org/00mp87510 BPE Unternehmensbeteiligungen (Germany)'), (10531, 'https://ror.org/00msdr558', 'en', 1, 'https://ror.org/00msdr558 Miles Perret Cancer Services'), (10532, 'https://ror.org/00mshdz97', 'en', 1, 'https://ror.org/00mshdz97 Cities On Internet Association'), (10533, 'https://ror.org/00mtnme46', 'en', 1, 'https://ror.org/00mtnme46 Northern Neurosciences'), (10534, 'https://ror.org/00mw3fh49', 'en', 1, 'https://ror.org/00mw3fh49 Iḷisaġvik College'), (10535, 'https://ror.org/00mwjng53', 'en', 1, 'https://ror.org/00mwjng53 South Dakota Discovery Center'), (10536, 'https://ror.org/00my6s217', 'en', 1, 'https://ror.org/00my6s217 ScienceSouth'), (10537, 'https://ror.org/00myyb874', 'en', 1, 'https://ror.org/00myyb874 Heart of Passion'), (10538, 'https://ror.org/00n2d9253', 'no_lang_code', 1, 'https://ror.org/00n2d9253 Veolia (Sweden)'), (10539, 'https://ror.org/00n4jbh84', 'en', 1, 'https://ror.org/00n4jbh84 Institute of Electronics, Computer and Telecommunication Engineering Istituto di Elettronica e di lngegneria dell''Informazione e delle Telecomunicazioni'), (10540, 'https://ror.org/00n4nbp68', 'en', 1, 'https://ror.org/00n4nbp68 OSF HealthCare'), (10541, 'https://ror.org/00n5jbe50', 'en', 1, 'https://ror.org/00n5jbe50 Natividad Foundation'), (10542, 'https://ror.org/00n5szt64', 'no_lang_code', 1, 'https://ror.org/00n5szt64 Neuro-Zone (Italy)'), (10543, 'https://ror.org/00n63p259', 'no_lang_code', 1, 'https://ror.org/00n63p259 Napa (Finland)'), (10544, 'https://ror.org/00n876k34', 'no_lang_code', 1, 'https://ror.org/00n876k34 Beta-O2 Technologies (Israel)'), (10545, 'https://ror.org/00n87rr37', 'en', 1, 'https://ror.org/00n87rr37 Danish Technological Institute'), (10546, 'https://ror.org/00n8vvc37', 'pt', 1, 'https://ror.org/00n8vvc37 Ministério da Justiça'), (10547, 'https://ror.org/00na7mj62', 'no_lang_code', 1, 'https://ror.org/00na7mj62 BD Technologie (United States)'), (10548, 'https://ror.org/00nbf6509', 'no_lang_code', 1, 'https://ror.org/00nbf6509 Ocean Renewable Power Company (United States)'), (10549, 'https://ror.org/00ngjbr32', 'no_lang_code', 1, 'https://ror.org/00ngjbr32 Nokia (Spain)'), (10550, 'https://ror.org/00njrf990', 'en', 1, 'https://ror.org/00njrf990 Creating Hope'), (10551, 'https://ror.org/00nkgjn49', 'no_lang_code', 1, 'https://ror.org/00nkgjn49 ManRos Therapeutics (France)'), (10552, 'https://ror.org/00nkkkz19', 'no_lang_code', 1, 'https://ror.org/00nkkkz19 CeramTec (Germany)'), (10553, 'https://ror.org/00nn73a81', 'es', 1, 'https://ror.org/00nn73a81 Centro Nacional de Información Geográfica'), (10554, 'https://ror.org/00nqfs885', 'en', 1, 'https://ror.org/00nqfs885 Brazosport Health Foundation'), (10555, 'https://ror.org/00nqqjw80', 'en', 1, 'https://ror.org/00nqqjw80 Federation of Southern Cooperatives Land Assistance Fund'), (10556, 'https://ror.org/00nrppk36', 'no_lang_code', 1, 'https://ror.org/00nrppk36 Ozmosis Research (Canada)'), (10557, 'https://ror.org/00nt7fq33', 'en', 1, 'https://ror.org/00nt7fq33 Baltimore Adapted Recreation and Sports'), (10558, 'https://ror.org/00ntj2053', 'no_lang_code', 1, 'https://ror.org/00ntj2053 Funkwerk (Germany)'), (10559, 'https://ror.org/00nw7tq55', 'en', 1, 'https://ror.org/00nw7tq55 Mount Nittany Medical Center'), (10560, 'https://ror.org/00nxghy76', 'no_lang_code', 1, 'https://ror.org/00nxghy76 Scriba Nanotecnologie (Italy)'), (10561, 'https://ror.org/00nxp2634', 'fr', 1, 'https://ror.org/00nxp2634 Association de Coordination Technique Pour l''Industrie Agroalimentaire'), (10562, 'https://ror.org/00nxqj779', 'en', 1, 'https://ror.org/00nxqj779 Cincinnati Health Department'), (10563, 'https://ror.org/00ny8df12', 'fr', 1, 'https://ror.org/00ny8df12 French Institute of International Relations Institut Français des Relations Internationales'), (10564, 'https://ror.org/00nzvtd14', 'en', 1, 'https://ror.org/00nzvtd14 Bluegrass Care Navigators'), (10565, 'https://ror.org/00p1cga29', 'en', 1, 'https://ror.org/00p1cga29 Austrian Society for Systems Engineering and Automation'), (10566, 'https://ror.org/00p2hg467', 'en', 1, 'https://ror.org/00p2hg467 Institut für die Wissenschaften vom Menschen Institute of Human Sciences'), (10567, 'https://ror.org/00p5kvd83', 'en', 1, 'https://ror.org/00p5kvd83 Calallen Independent School District'), (10568, 'https://ror.org/00p66nq73', 'no_lang_code', 1, 'https://ror.org/00p66nq73 Amphos 21 (Spain)'), (10569, 'https://ror.org/00payck90', 'no_lang_code', 1, 'https://ror.org/00payck90 Mountain Meadow Wool Mill (United States)'), (10570, 'https://ror.org/00pfg3v73', 'en', 1, 'https://ror.org/00pfg3v73 Paralyzed Veterans of America'), (10571, 'https://ror.org/00pgy3a44', 'no_lang_code', 1, 'https://ror.org/00pgy3a44 Ion Beam Applications (Belgium)'), (10572, 'https://ror.org/00pgzg313', 'no_lang_code', 1, 'https://ror.org/00pgzg313 Ponimanie'), (10573, 'https://ror.org/00ph65r66', 'en', 1, 'https://ror.org/00ph65r66 Institute of Geodesy and Cartography'), (10574, 'https://ror.org/00pj6x992', 'en', 1, 'https://ror.org/00pj6x992 IEA Clean Coal Centre'), (10575, 'https://ror.org/00pnhy634', 'en', 1, 'https://ror.org/00pnhy634 The Entrepreneurs Foundation of Central Texas'), (10576, 'https://ror.org/00pp54p18', 'no_lang_code', 1, 'https://ror.org/00pp54p18 Transport & Mobility Leuven (Belgium)'), (10577, 'https://ror.org/00pqbn444', 'en', 1, 'https://ror.org/00pqbn444 Partners in Care Foundation'), (10578, 'https://ror.org/00prce717', 'no_lang_code', 1, 'https://ror.org/00prce717 Daithi O’Murchu Marine Research Station'), (10579, 'https://ror.org/00prewq47', 'en', 1, 'https://ror.org/00prewq47 Dr Dozo Laboratories'), (10580, 'https://ror.org/00prgcp98', 'pt', 1, 'https://ror.org/00prgcp98 Hospital do Câncer III'), (10581, 'https://ror.org/00pvgrv63', 'no_lang_code', 1, 'https://ror.org/00pvgrv63 Panasonic (United States)'), (10582, 'https://ror.org/00pw35t73', 'en', 1, 'https://ror.org/00pw35t73 Agriculture and Land Based Training Association'), (10583, 'https://ror.org/00pwnqr91', 'en', 1, 'https://ror.org/00pwnqr91 Diagnostics For All'), (10584, 'https://ror.org/00pwny267', 'en', 1, 'https://ror.org/00pwny267 European Telecommunications Standards Institute'), (10585, 'https://ror.org/00pxmse48', 'en', 1, 'https://ror.org/00pxmse48 Allergy, Asthma and Clinical Research Center'), (10586, 'https://ror.org/00pyx4s45', 'lv', 1, 'https://ror.org/00pyx4s45 Latvijas Valsts Agrārās Ekonomikas Institūts'), (10587, 'https://ror.org/00q1c1v42', 'en', 1, 'https://ror.org/00q1c1v42 Opportunity Foundation of America'), (10588, 'https://ror.org/00q1rsz50', 'no_lang_code', 1, 'https://ror.org/00q1rsz50 Optimat (United Kingdom)'), (10589, 'https://ror.org/00q1wqg27', 'en', 1, 'https://ror.org/00q1wqg27 Community In Action'), (10590, 'https://ror.org/00q6d2f90', 'pt', 1, 'https://ror.org/00q6d2f90 Agencia Regional da Energia e Ambiente da Regiao Autonoma da Madeira Regional Agency for Energy and Environment of the Autonomous Region of Madeira'), (10591, 'https://ror.org/00q6xg564', 'en', 1, 'https://ror.org/00q6xg564 Felicity House'), (10592, 'https://ror.org/00q77d008', 'no_lang_code', 1, 'https://ror.org/00q77d008 Hispasat (Spain)'), (10593, 'https://ror.org/00qaxgn38', 'en', 1, 'https://ror.org/00qaxgn38 Millennium Health and Human Services'), (10594, 'https://ror.org/00qc61c04', 'en', 1, 'https://ror.org/00qc61c04 New Frontier'), (10595, 'https://ror.org/00qcztw05', 'en', 1, 'https://ror.org/00qcztw05 Ministry of Health of the Republic of Uzbekistan Ўзбекистон Республикаси Соғлиқни сақлаш вазирлиги'), (10596, 'https://ror.org/00qd3cs31', 'no_lang_code', 1, 'https://ror.org/00qd3cs31 Dimos Athinaion Epicheirisi Michanografisis (Greece)'), (10597, 'https://ror.org/00qhf2g66', 'no_lang_code', 1, 'https://ror.org/00qhf2g66 ICI Caldaie (Italy)'), (10598, 'https://ror.org/00qhyxs61', 'no_lang_code', 1, 'https://ror.org/00qhyxs61 BioTracking (United States)'), (10599, 'https://ror.org/00qkeey15', 'en', 1, 'https://ror.org/00qkeey15 WindEurope'), (10600, 'https://ror.org/00qkqnk52', 'no_lang_code', 1, 'https://ror.org/00qkqnk52 Language Technology Centre'), (10601, 'https://ror.org/00qmezm19', 'en', 1, 'https://ror.org/00qmezm19 Europa Donna'), (10602, 'https://ror.org/00qmxzv90', 'en', 1, 'https://ror.org/00qmxzv90 Nordic Folkecenter for Renewable Energy'), (10603, 'https://ror.org/00qpx5a29', 'no_lang_code', 1, 'https://ror.org/00qpx5a29 Metallisation (United Kingdom)'), (10604, 'https://ror.org/00qrgc437', 'en', 1, 'https://ror.org/00qrgc437 International Symposium on Neural Regeneration'), (10605, 'https://ror.org/00qsm3z32', 'en', 1, 'https://ror.org/00qsm3z32 B.I. Stepanov Institute of Physics Інстытут фізікі імя Б.І. Сцяпанава'), (10606, 'https://ror.org/00qsswh65', 'no_lang_code', 1, 'https://ror.org/00qsswh65 Edif Group (United Kingdom)'), (10607, 'https://ror.org/00qsx7902', 'no_lang_code', 1, 'https://ror.org/00qsx7902 Trellis Growing Systems'), (10608, 'https://ror.org/00qt7y372', 'no_lang_code', 1, 'https://ror.org/00qt7y372 Biozoon (Germany)'), (10609, 'https://ror.org/00qxtrj15', 'no_lang_code', 1, 'https://ror.org/00qxtrj15 VSN International (United Kingdom)'), (10610, 'https://ror.org/00r06ws05', 'en', 1, 'https://ror.org/00r06ws05 Club Young Scientists'), (10611, 'https://ror.org/00r0jqe29', 'en', 1, 'https://ror.org/00r0jqe29 British Science Association'), (10612, 'https://ror.org/00r254y42', 'no_lang_code', 1, 'https://ror.org/00r254y42 Piaggio (Italy)'), (10613, 'https://ror.org/00r33es57', 'no_lang_code', 1, 'https://ror.org/00r33es57 Sea and Reef Aquaculture (United States)'), (10614, 'https://ror.org/00r5dn664', 'en', 1, 'https://ror.org/00r5dn664 Caporal Assistance Network'), (10615, 'https://ror.org/00r5tk108', 'no_lang_code', 1, 'https://ror.org/00r5tk108 Fricke und Mallah Microwave Technology (Germany) Fricke und Mallah Microwave Technology GmbH'), (10616, 'https://ror.org/00r68c937', 'en', 1, 'https://ror.org/00r68c937 Evergreen Behavioral Health'), (10617, 'https://ror.org/00r7b5207', 'en', 1, 'https://ror.org/00r7b5207 Ministry of Public Security המשרד לביטחון הפנים وزارة الأمن الداخلي'), (10618, 'https://ror.org/00r9k8q20', 'en', 1, 'https://ror.org/00r9k8q20 Museum and Institute of Zoology Muzeum i Instytut Zoologii PAN'), (10619, 'https://ror.org/00ra5vp36', 'no_lang_code', 1, 'https://ror.org/00ra5vp36 Magneto Special Anodes (Netherlands)'), (10620, 'https://ror.org/00rbe9q66', 'no_lang_code', 1, 'https://ror.org/00rbe9q66 TriaGnoSys (Germany)'), (10621, 'https://ror.org/00rbjw379', 'it', 1, 'https://ror.org/00rbjw379 Istituto per lo Sviluppo della Formazione Professionale dei Lavoratori'), (10622, 'https://ror.org/00reard48', 'en', 1, 'https://ror.org/00reard48 Agency for Science, Innovation and Technology'), (10623, 'https://ror.org/00reav381', 'en', 1, 'https://ror.org/00reav381 The Garden Church'), (10624, 'https://ror.org/00renxe14', 'en', 1, 'https://ror.org/00renxe14 Services for Independent Living'), (10625, 'https://ror.org/00rgz6j19', 'no_lang_code', 1, 'https://ror.org/00rgz6j19 Upper Austrian Research'), (10626, 'https://ror.org/00rhgsx64', 'no_lang_code', 1, 'https://ror.org/00rhgsx64 Prisma Electronics (Greece)'), (10627, 'https://ror.org/00rhtct89', 'en', 1, 'https://ror.org/00rhtct89 McLaren Macomb'), (10628, 'https://ror.org/00rj43d51', 'en', 1, 'https://ror.org/00rj43d51 Lithuanian Innovation Centre'), (10629, 'https://ror.org/00rn5y796', 'en', 1, 'https://ror.org/00rn5y796 Hillcrest Clinics'), (10630, 'https://ror.org/00rn8rb77', 'en', 1, 'https://ror.org/00rn8rb77 Comprehensive Autism and related Disabilities Education and Training'), (10631, 'https://ror.org/00rnasn15', 'no_lang_code', 1, 'https://ror.org/00rnasn15 Caregiver Technologies (United States)'), (10632, 'https://ror.org/00rqqmc76', 'en', 1, 'https://ror.org/00rqqmc76 European Food Information Resource'), (10633, 'https://ror.org/00rsre537', 'en', 1, 'https://ror.org/00rsre537 Indigenous Education Institute'), (10634, 'https://ror.org/00rt22t88', 'en', 1, 'https://ror.org/00rt22t88 St. Alexius Heart and Lung Clinic'), (10635, 'https://ror.org/00s0xa683', 'en', 1, 'https://ror.org/00s0xa683 Journey Museum'), (10636, 'https://ror.org/00s0zqz85', 'en', 1, 'https://ror.org/00s0zqz85 Child Health Corporation of America'), (10637, 'https://ror.org/00s16gd65', 'en', 1, 'https://ror.org/00s16gd65 Child Guidance Center'), (10638, 'https://ror.org/00s1q1t70', 'en', 1, 'https://ror.org/00s1q1t70 Institute of Earthquake Prediction Theory and Mathematical Geophysics Федеральное государственное бюджетное учреждение науки Институт теории прогноза землетрясений и математической геофизики Российской академии наук (ИТПЗ РАН)'), (10639, 'https://ror.org/00s2g6856', 'en', 1, 'https://ror.org/00s2g6856 Fairmont City Library Center'), (10640, 'https://ror.org/00s2j5046', 'en', 1, 'https://ror.org/00s2j5046 Institute of Molecular Bioimaging and Physiology Istituto di Bioimmagini e Fisiologia Molecolare'), (10641, 'https://ror.org/00s5ck612', 'en', 1, 'https://ror.org/00s5ck612 Accessible Space'), (10642, 'https://ror.org/00s5rhn58', 'en', 1, 'https://ror.org/00s5rhn58 Karla J. Williams Foundation'), (10643, 'https://ror.org/00s6sp697', 'no_lang_code', 1, 'https://ror.org/00s6sp697 Integrasys (Spain)'), (10644, 'https://ror.org/00s8fdk31', 'no_lang_code', 1, 'https://ror.org/00s8fdk31 Decom (Slovakia)'), (10645, 'https://ror.org/00s9rks70', 'no_lang_code', 1, 'https://ror.org/00s9rks70 Telmat (France)'), (10646, 'https://ror.org/00saxze38', 'en', 1, 'https://ror.org/00saxze38 Loma Linda University Health Care'), (10647, 'https://ror.org/00sb06w67', 'no_lang_code', 1, 'https://ror.org/00sb06w67 HiTec Marketing'), (10648, 'https://ror.org/00scmkj28', 'no_lang_code', 1, 'https://ror.org/00scmkj28 Natex Prozesstechnologie (Austria)'), (10649, 'https://ror.org/00sehw297', 'no_lang_code', 1, 'https://ror.org/00sehw297 Beactica (Sweden)'), (10650, 'https://ror.org/00sexkk33', 'no_lang_code', 1, 'https://ror.org/00sexkk33 Siemens (Romania)'), (10651, 'https://ror.org/00sf0vm37', 'en', 1, 'https://ror.org/00sf0vm37 Oakville Public Library'), (10652, 'https://ror.org/00sgqf002', 'no_lang_code', 1, 'https://ror.org/00sgqf002 Horiba (France)'), (10653, 'https://ror.org/00sj63039', 'en', 1, 'https://ror.org/00sj63039 International Partnership for Microbicides'), (10654, 'https://ror.org/00sp0dx83', 'en', 1, 'https://ror.org/00sp0dx83 National Rehabilitation Association'), (10655, 'https://ror.org/00spbya24', 'no_lang_code', 1, 'https://ror.org/00spbya24 Lewis and Clark Pharmaceuticals (United States)'), (10656, 'https://ror.org/00sry8k12', 'no_lang_code', 1, 'https://ror.org/00sry8k12 MyTeam Triumph'), (10657, 'https://ror.org/00ssxa384', 'no_lang_code', 1, 'https://ror.org/00ssxa384 Eclexys (Switzerland)'), (10658, 'https://ror.org/00st4js56', 'en', 1, 'https://ror.org/00st4js56 Friends of Scott'), (10659, 'https://ror.org/00stexf29', 'no_lang_code', 1, 'https://ror.org/00stexf29 Alstom (Germany)'), (10660, 'https://ror.org/00str1b42', 'en', 1, 'https://ror.org/00str1b42 Houston County'), (10661, 'https://ror.org/00stv9r10', 'no_lang_code', 1, 'https://ror.org/00stv9r10 Fidia (Italy)'), (10662, 'https://ror.org/00svj4w50', 'no_lang_code', 1, 'https://ror.org/00svj4w50 ANA Aeroportos de Portugal (Portugal)'), (10663, 'https://ror.org/00sxa9670', 'no_lang_code', 1, 'https://ror.org/00sxa9670 Agdia (United States)'), (10664, 'https://ror.org/00sxjp357', 'no_lang_code', 1, 'https://ror.org/00sxjp357 Innovation Engineering (Italy)'), (10665, 'https://ror.org/00sze5p60', 'no_lang_code', 1, 'https://ror.org/00sze5p60 AquaGreen (United States)'), (10666, 'https://ror.org/00t3x1b09', 'no_lang_code', 1, 'https://ror.org/00t3x1b09 Bioazul (Spain)'), (10667, 'https://ror.org/00t5fgd66', 'en', 1, 'https://ror.org/00t5fgd66 Gardens at Post Hill'), (10668, 'https://ror.org/00t6rnw77', 'no_lang_code', 1, 'https://ror.org/00t6rnw77 Research and Environmental Devices (Italy)'), (10669, 'https://ror.org/00t7c6f62', 'en', 1, 'https://ror.org/00t7c6f62 Institute of Molecular Biology Институт по молекулярна биология'), (10670, 'https://ror.org/00t9eec57', 'no_lang_code', 1, 'https://ror.org/00t9eec57 Geonardo (Hungary)'), (10671, 'https://ror.org/00t9ms296', 'no_lang_code', 1, 'https://ror.org/00t9ms296 Toptica Photonics (Germany)'), (10672, 'https://ror.org/00tc93763', 'no_lang_code', 1, 'https://ror.org/00tc93763 Materialise (Belgium)'), (10673, 'https://ror.org/00td3ns83', 'no_lang_code', 1, 'https://ror.org/00td3ns83 SIVECO (Romania)'), (10674, 'https://ror.org/00te84g16', 'en', 1, 'https://ror.org/00te84g16 Valley Forge Military Academy and College'), (10675, 'https://ror.org/00thc5937', 'es', 1, 'https://ror.org/00thc5937 Fundación Ramón Domínguez'), (10676, 'https://ror.org/00the9035', 'no_lang_code', 1, 'https://ror.org/00the9035 Alsa Corporation (United States)'), (10677, 'https://ror.org/00thqng93', 'no_lang_code', 1, 'https://ror.org/00thqng93 Open Knowledge (United Kingdom)'), (10678, 'https://ror.org/00tjjak64', 'en', 1, 'https://ror.org/00tjjak64 Centexbel'), (10679, 'https://ror.org/00tjsgg12', 'en', 1, 'https://ror.org/00tjsgg12 Mixteco Indígena Community Organizing Project'), (10680, 'https://ror.org/00tk4hv41', 'no_lang_code', 1, 'https://ror.org/00tk4hv41 Thin Air Nitrogen Solutions (United States)'), (10681, 'https://ror.org/00tm6q440', 'no_lang_code', 1, 'https://ror.org/00tm6q440 DeskArtes (Finland)'); INSERT INTO `rors` VALUES (10682, 'https://ror.org/00tq8h369', 'no_lang_code', 1, 'https://ror.org/00tq8h369 Elisa (Finland)'), (10683, 'https://ror.org/00tvcfv48', 'no_lang_code', 1, 'https://ror.org/00tvcfv48 Galson Sciences'), (10684, 'https://ror.org/00tw2t359', 'en', 1, 'https://ror.org/00tw2t359 Mathematics Foundation of America'), (10685, 'https://ror.org/00twv1w80', 'no_lang_code', 1, 'https://ror.org/00twv1w80 Pasquali Macchine Agricole (Italy)'), (10686, 'https://ror.org/00tx1bt94', 'en', 1, 'https://ror.org/00tx1bt94 Homer Soil and Water Conservation District'), (10687, 'https://ror.org/00tyzcb87', 'no_lang_code', 1, 'https://ror.org/00tyzcb87 Bureau van Dijk (Belgium)'), (10688, 'https://ror.org/00tzgse53', 'no_lang_code', 1, 'https://ror.org/00tzgse53 Noldus Information Technology'), (10689, 'https://ror.org/00tzr1w49', 'no_lang_code', 1, 'https://ror.org/00tzr1w49 InnospeXion (Denmark)'), (10690, 'https://ror.org/00v0x8839', 'no_lang_code', 1, 'https://ror.org/00v0x8839 Ab Medica (Italy)'), (10691, 'https://ror.org/00v3vnk20', 'en', 1, 'https://ror.org/00v3vnk20 National Wheelchair Basketball Association'), (10692, 'https://ror.org/00v60dj89', 'no_lang_code', 1, 'https://ror.org/00v60dj89 Indoor Biotechnologies (United States)'), (10693, 'https://ror.org/00v75px85', 'en', 1, 'https://ror.org/00v75px85 Women’s Environmental Institute'), (10694, 'https://ror.org/00v7esy82', 'no_lang_code', 1, 'https://ror.org/00v7esy82 Visual Components (Finland)'), (10695, 'https://ror.org/00v859w32', 'en', 1, 'https://ror.org/00v859w32 Achieve Tahoe'), (10696, 'https://ror.org/00vaehf87', 'en', 1, 'https://ror.org/00vaehf87 Museum of Science and Industry'), (10697, 'https://ror.org/00vbmtf51', 'eu', 1, 'https://ror.org/00vbmtf51 Matia Fundazioa'), (10698, 'https://ror.org/00vcg0k36', 'en', 1, 'https://ror.org/00vcg0k36 EASN Technology Innovation Services BVBA'), (10699, 'https://ror.org/00vcvx959', 'es', 1, 'https://ror.org/00vcvx959 Forem'), (10700, 'https://ror.org/00vdcfb98', 'en', 1, 'https://ror.org/00vdcfb98 Kaiser Permanente Castle Medical Center'), (10701, 'https://ror.org/00vfkb556', 'en', 1, 'https://ror.org/00vfkb556 European Centre for Information on Marine Science and Technology'), (10702, 'https://ror.org/00vjdb429', 'en', 1, 'https://ror.org/00vjdb429 Community Health Centers of Pinellas'), (10703, 'https://ror.org/00vke5218', 'en', 1, 'https://ror.org/00vke5218 East Palo Alto Kids Foundation'), (10704, 'https://ror.org/00vn2bg94', 'en', 1, 'https://ror.org/00vn2bg94 Agricultural Information Management'), (10705, 'https://ror.org/00vpq6g39', 'no_lang_code', 1, 'https://ror.org/00vpq6g39 Indra (Spain)'), (10706, 'https://ror.org/00vqvet05', 'en', 1, 'https://ror.org/00vqvet05 Cornerstone Evaluation Associates'), (10707, 'https://ror.org/00vqwjw35', 'en', 1, 'https://ror.org/00vqwjw35 European Research and Project Office'), (10708, 'https://ror.org/00vrcw253', 'no_lang_code', 1, 'https://ror.org/00vrcw253 Kōkua Kalihi Valley'), (10709, 'https://ror.org/00vsg3p53', 'en', 1, 'https://ror.org/00vsg3p53 Institute of Mathematics Інстытут матэматыкі НАН Беларусі'), (10710, 'https://ror.org/00vtxwn66', 'en', 1, 'https://ror.org/00vtxwn66 Maryland State Department of Education'), (10711, 'https://ror.org/00vvr2385', 'no_lang_code', 1, 'https://ror.org/00vvr2385 Agora Systems (Spain)'), (10712, 'https://ror.org/00vxakc26', 'en', 1, 'https://ror.org/00vxakc26 Milwaukee Teacher Education Center'), (10713, 'https://ror.org/00vxsqn95', 'en', 1, 'https://ror.org/00vxsqn95 Archdiocese of New Orleans'), (10714, 'https://ror.org/00w18ah57', 'en', 1, 'https://ror.org/00w18ah57 Lesotho Planned Parenthood Association'), (10715, 'https://ror.org/00w1a0259', 'en', 1, 'https://ror.org/00w1a0259 Mercy Hospital'), (10716, 'https://ror.org/00w1pae29', 'en', 1, 'https://ror.org/00w1pae29 ProMedica Charles and Virginia Hickman Hospital'), (10717, 'https://ror.org/00w205b62', 'en', 1, 'https://ror.org/00w205b62 Renown Health'), (10718, 'https://ror.org/00w3cxa42', 'no_lang_code', 1, 'https://ror.org/00w3cxa42 Exide Technologies (Spain)'), (10719, 'https://ror.org/00w437z14', 'no_lang_code', 1, 'https://ror.org/00w437z14 Water Insight (Netherlands)'), (10720, 'https://ror.org/00w4csr50', 'de', 1, 'https://ror.org/00w4csr50 Landwirtschaftliche Untersuchungs- und Forschungsanstalt Speyer'), (10721, 'https://ror.org/00w4cxg78', 'no_lang_code', 1, 'https://ror.org/00w4cxg78 Breakthrough'), (10722, 'https://ror.org/00w4gjq77', 'en', 1, 'https://ror.org/00w4gjq77 Interfaith Center of New York'), (10723, 'https://ror.org/00w5mh812', 'no_lang_code', 1, 'https://ror.org/00w5mh812 Kineta (United States)'), (10724, 'https://ror.org/00w603c79', 'en', 1, 'https://ror.org/00w603c79 Institutul Național de Cercetare-Dezvoltare Pentru Protecția Mediului National Institute for Research and Development in Environmental Protection'), (10725, 'https://ror.org/00w7vs376', 'en', 1, 'https://ror.org/00w7vs376 Inland Northwest Health Services'), (10726, 'https://ror.org/00wbgx826', 'en', 1, 'https://ror.org/00wbgx826 STEM Forward'), (10727, 'https://ror.org/00wcraf05', 'en', 1, 'https://ror.org/00wcraf05 New Haven Family Alliance'), (10728, 'https://ror.org/00wdf2875', 'en', 1, 'https://ror.org/00wdf2875 IHE Europe'), (10729, 'https://ror.org/00we1gw23', 'en', 1, 'https://ror.org/00we1gw23 MIND Research Institute'), (10730, 'https://ror.org/00we3bs91', 'no_lang_code', 1, 'https://ror.org/00we3bs91 DuPont (Netherlands)'), (10731, 'https://ror.org/00wecdr93', 'no_lang_code', 1, 'https://ror.org/00wecdr93 Lamellar Biomedical (United Kingdom)'), (10732, 'https://ror.org/00wfqnx07', 'no_lang_code', 1, 'https://ror.org/00wfqnx07 OndaVia (United States)'), (10733, 'https://ror.org/00wgdxy37', 'en', 1, 'https://ror.org/00wgdxy37 Appalachian Mountain Advocates'), (10734, 'https://ror.org/00wh1kc42', 'en', 1, 'https://ror.org/00wh1kc42 Community Partners of South Florida'), (10735, 'https://ror.org/00whma289', 'no_lang_code', 1, 'https://ror.org/00whma289 LafargeHolcim (Greece)'), (10736, 'https://ror.org/00wm3b005', 'no_lang_code', 1, 'https://ror.org/00wm3b005 STMicroelectronics (Switzerland)'), (10737, 'https://ror.org/00wq6x378', 'no_lang_code', 1, 'https://ror.org/00wq6x378 Quantech ATZ (Spain)'), (10738, 'https://ror.org/00wqp8t15', 'en', 1, 'https://ror.org/00wqp8t15 Federal College of Education, Kano'), (10739, 'https://ror.org/00wscys22', 'no_lang_code', 1, 'https://ror.org/00wscys22 Innovhub (Italy)'), (10740, 'https://ror.org/00wtmxk58', 'no_lang_code', 1, 'https://ror.org/00wtmxk58 Element Materials Technology (United Kingdom)'), (10741, 'https://ror.org/00wtsha39', 'en', 1, 'https://ror.org/00wtsha39 Cancer Services of Grant County'), (10742, 'https://ror.org/00wxh7d23', 'no_lang_code', 1, 'https://ror.org/00wxh7d23 Catator (Sweden)'), (10743, 'https://ror.org/00wy5qj82', 'no_lang_code', 1, 'https://ror.org/00wy5qj82 Skytek (Ireland)'), (10744, 'https://ror.org/00wzdat64', 'en', 1, 'https://ror.org/00wzdat64 Instituto Familiar de la Raza'), (10745, 'https://ror.org/00wzstx67', 'no_lang_code', 1, 'https://ror.org/00wzstx67 Vodafone (Spain)'), (10746, 'https://ror.org/00x1q5565', 'en', 1, 'https://ror.org/00x1q5565 Bryan Health'), (10747, 'https://ror.org/00x20bn20', 'en', 1, 'https://ror.org/00x20bn20 Basavatarakam Indo American Cancer Hospital and Research Institute'), (10748, 'https://ror.org/00x2xws80', 'no_lang_code', 1, 'https://ror.org/00x2xws80 Jobst Technologies (Germany)'), (10749, 'https://ror.org/00x2yxc55', 'no_lang_code', 1, 'https://ror.org/00x2yxc55 Artelia (France)'), (10750, 'https://ror.org/00x584494', 'en', 1, 'https://ror.org/00x584494 American Association on Health and Disability'), (10751, 'https://ror.org/00x5dwt18', 'no_lang_code', 1, 'https://ror.org/00x5dwt18 CARSA (Spain)'), (10752, 'https://ror.org/00x731t70', 'en', 1, 'https://ror.org/00x731t70 Clinica Sierra Vista'), (10753, 'https://ror.org/00x856k20', 'no_lang_code', 1, 'https://ror.org/00x856k20 ImmuneWorks (United States)'), (10754, 'https://ror.org/00x8zak80', 'en', 1, 'https://ror.org/00x8zak80 National Institute of Population Studies'), (10755, 'https://ror.org/00xaj7311', 'no_lang_code', 1, 'https://ror.org/00xaj7311 Lumicell (United States)'), (10756, 'https://ror.org/00xaskn96', 'no_lang_code', 1, 'https://ror.org/00xaskn96 Everest Technologies (United States)'), (10757, 'https://ror.org/00xbray82', 'no_lang_code', 1, 'https://ror.org/00xbray82 CSK Food Enrichment (Netherlands)'), (10758, 'https://ror.org/00xcabq98', 'no_lang_code', 1, 'https://ror.org/00xcabq98 NanotecMARIN (Germany)'), (10759, 'https://ror.org/00xcb4r23', 'no_lang_code', 1, 'https://ror.org/00xcb4r23 Thermo Technologies (United Kingdom)'), (10760, 'https://ror.org/00xctsq42', 'no_lang_code', 1, 'https://ror.org/00xctsq42 ONA Electroerosion (Spain)'), (10761, 'https://ror.org/00xeqw708', 'en', 1, 'https://ror.org/00xeqw708 Camp Quality New Jersey'), (10762, 'https://ror.org/00xgaya81', 'en', 1, 'https://ror.org/00xgaya81 Bipartisan Policy Center'), (10763, 'https://ror.org/00xh3h995', 'en', 1, 'https://ror.org/00xh3h995 Institute of Agricultural Economics'), (10764, 'https://ror.org/00xhrnd80', 'en', 1, 'https://ror.org/00xhrnd80 North Country Home Health & Hospice Agency'), (10765, 'https://ror.org/00xj74h46', 'en', 1, 'https://ror.org/00xj74h46 Care India'), (10766, 'https://ror.org/00xq5mb92', 'no_lang_code', 1, 'https://ror.org/00xq5mb92 Color Line (Norway)'), (10767, 'https://ror.org/00xqcpg12', 'no_lang_code', 1, 'https://ror.org/00xqcpg12 Solvay (Italy)'), (10768, 'https://ror.org/00xr4zj07', 'en', 1, 'https://ror.org/00xr4zj07 Cancer Care Association Sri Lanka'), (10769, 'https://ror.org/00xse2697', 'en', 1, 'https://ror.org/00xse2697 Alliance for Community Research and Development'), (10770, 'https://ror.org/00xwb4n23', 'en', 1, 'https://ror.org/00xwb4n23 Partners In Care'), (10771, 'https://ror.org/00xwx2b45', 'en', 1, 'https://ror.org/00xwx2b45 Pushing Boundaries'), (10772, 'https://ror.org/00xxrkp20', 'en', 1, 'https://ror.org/00xxrkp20 Delmont Public Library'), (10773, 'https://ror.org/00xz1ct52', 'en', 1, 'https://ror.org/00xz1ct52 The Brooklyn Rail'), (10774, 'https://ror.org/00y27y405', 'en', 1, 'https://ror.org/00y27y405 Tulsa Economic Development Corporation'), (10775, 'https://ror.org/00y321w89', 'nl', 1, 'https://ror.org/00y321w89 Ministerie van de Vlaamse Gemeenschap'), (10776, 'https://ror.org/00y4rzv07', 'en', 1, 'https://ror.org/00y4rzv07 European rail Research Network of EXcellence'), (10777, 'https://ror.org/00y59j716', 'en', 1, 'https://ror.org/00y59j716 Central Asia Institute'), (10778, 'https://ror.org/00y6ae410', 'no_lang_code', 1, 'https://ror.org/00y6ae410 Arvens Technology (United States)'), (10779, 'https://ror.org/00yawqy54', 'en', 1, 'https://ror.org/00yawqy54 Community Health for Asian Americans'), (10780, 'https://ror.org/00ycd5r70', 'no_lang_code', 1, 'https://ror.org/00ycd5r70 DonorsChoose'), (10781, 'https://ror.org/00yj85a82', 'en', 1, 'https://ror.org/00yj85a82 Midwest Organic & Sustainable Education Service'), (10782, 'https://ror.org/00yjpbd42', 'en', 1, 'https://ror.org/00yjpbd42 Ride 2 Recovery'), (10783, 'https://ror.org/00yk21455', 'en', 1, 'https://ror.org/00yk21455 Police Service of Northern Ireland'), (10784, 'https://ror.org/00ykwy443', 'no_lang_code', 1, 'https://ror.org/00ykwy443 Curewize Health'), (10785, 'https://ror.org/00ymmrt60', 'no_lang_code', 1, 'https://ror.org/00ymmrt60 C2N Diagnostics (United States)'), (10786, 'https://ror.org/00yps2t15', 'no_lang_code', 1, 'https://ror.org/00yps2t15 Gasera (Finland)'), (10787, 'https://ror.org/00yssnc44', 'de', 1, 'https://ror.org/00yssnc44 Paul Ehrlich Institut, Paul-Ehrlich-Institut – Bundesinstitut für Impfstoffe und biomedizinische Arzneimittel'), (10788, 'https://ror.org/00yw8fx90', 'en', 1, 'https://ror.org/00yw8fx90 Indo-American Center'), (10789, 'https://ror.org/00z0kkz74', 'no_lang_code', 1, 'https://ror.org/00z0kkz74 Accelerated Medical Diagnostics (United States)'), (10790, 'https://ror.org/00z24kr14', 'en', 1, 'https://ror.org/00z24kr14 Institute for Language and Speech Processing'), (10791, 'https://ror.org/00z299818', 'no_lang_code', 1, 'https://ror.org/00z299818 Vinci (United Kingdom)'), (10792, 'https://ror.org/00z908q62', 'en', 1, 'https://ror.org/00z908q62 Institute for Transport Sciences'), (10793, 'https://ror.org/00z9nr722', 'en', 1, 'https://ror.org/00z9nr722 Common Good City Farm'), (10794, 'https://ror.org/00za5w074', 'en', 1, 'https://ror.org/00za5w074 Family Service League'), (10795, 'https://ror.org/00zb4pn27', 'no_lang_code', 1, 'https://ror.org/00zb4pn27 Magna (Austria)'), (10796, 'https://ror.org/00zbcp540', 'en', 1, 'https://ror.org/00zbcp540 Burlington School District'), (10797, 'https://ror.org/00zbjch89', 'no_lang_code', 1, 'https://ror.org/00zbjch89 Beacon Tech (Israel)'), (10798, 'https://ror.org/00zbvyk98', 'no_lang_code', 1, 'https://ror.org/00zbvyk98 TIE Kinetix (Netherlands)'), (10799, 'https://ror.org/00zc8x182', 'en', 1, 'https://ror.org/00zc8x182 Food System Economic Partnership'), (10800, 'https://ror.org/00zceqt96', 'en', 1, 'https://ror.org/00zceqt96 Radiophysical Research Institute Научно-исследовательский радиофизический институт'), (10801, 'https://ror.org/00zecds36', 'no_lang_code', 1, 'https://ror.org/00zecds36 Smart Homes'), (10802, 'https://ror.org/00zep6618', 'en', 1, 'https://ror.org/00zep6618 United Nations Interregional Crime and Justice Research Institute'), (10803, 'https://ror.org/00zffgs92', 'no_lang_code', 1, 'https://ror.org/00zffgs92 Anotec Engineering (Spain)'), (10804, 'https://ror.org/00zfw3j31', 'en', 1, 'https://ror.org/00zfw3j31 Singleimage'), (10805, 'https://ror.org/00zh4ns47', 'no_lang_code', 1, 'https://ror.org/00zh4ns47 Marion Technologies (France)'), (10806, 'https://ror.org/00zh7c888', 'en', 1, 'https://ror.org/00zh7c888 Lindholmen Science Park'), (10807, 'https://ror.org/00zk4a122', 'en', 1, 'https://ror.org/00zk4a122 Larta Institute'), (10808, 'https://ror.org/00zk9q198', 'en', 1, 'https://ror.org/00zk9q198 Disabled Sailing Association of British Columbia'), (10809, 'https://ror.org/00zkzkq53', 'en', 1, 'https://ror.org/00zkzkq53 International Information Management Corporation'), (10810, 'https://ror.org/00zrv0342', 'no_lang_code', 1, 'https://ror.org/00zrv0342 Sinergis (Italy)'), (10811, 'https://ror.org/00zvs5g09', 'no_lang_code', 1, 'https://ror.org/00zvs5g09 Flexiant (United Kingdom)'), (10812, 'https://ror.org/00zwgqz39', 'es', 1, 'https://ror.org/00zwgqz39 Fundación Severo Ochoa'), (10813, 'https://ror.org/00zxhvp59', 'en', 1, 'https://ror.org/00zxhvp59 Mid Atlantic Wheelchair Athletic Association'), (10814, 'https://ror.org/00zzgy689', 'en', 1, 'https://ror.org/00zzgy689 Global and Regional Asperger Syndrome Partnership'), (10815, 'https://ror.org/0100csr53', 'no_lang_code', 1, 'https://ror.org/0100csr53 Watchfrog (France)'), (10816, 'https://ror.org/0100ngp47', 'no_lang_code', 1, 'https://ror.org/0100ngp47 Ikv++ Technologies (Germany)'), (10817, 'https://ror.org/0100s4h81', 'en', 1, 'https://ror.org/0100s4h81 Baltimore City Public Schools'), (10818, 'https://ror.org/0100x5843', 'en', 1, 'https://ror.org/0100x5843 Advanced Health Care of Aurora'), (10819, 'https://ror.org/0101ywa49', 'en', 1, 'https://ror.org/0101ywa49 ASK Childhood Cancer Foundation'), (10820, 'https://ror.org/01024mn06', 'no_lang_code', 1, 'https://ror.org/01024mn06 Dutch Railways Nederlandse Spoorwegen'), (10821, 'https://ror.org/0103ez066', 'en', 1, 'https://ror.org/0103ez066 Jameson Memorial Hospital'), (10822, 'https://ror.org/0103ezj12', 'no_lang_code', 1, 'https://ror.org/0103ezj12 Swarco (Italy)'), (10823, 'https://ror.org/0104bde61', 'no_lang_code', 1, 'https://ror.org/0104bde61 PCA Engineers'), (10824, 'https://ror.org/0105khm66', 'en', 1, 'https://ror.org/0105khm66 Alliance of People with disAbilities'), (10825, 'https://ror.org/0106f6f93', 'en', 1, 'https://ror.org/0106f6f93 European Technology Development'), (10826, 'https://ror.org/0106nz743', 'no_lang_code', 1, 'https://ror.org/0106nz743 Cisco Systems (Netherlands)'), (10827, 'https://ror.org/0107epm19', 'no_lang_code', 1, 'https://ror.org/0107epm19 Makaha Studios (United States)'), (10828, 'https://ror.org/0107w4315', 'en', 1, 'https://ror.org/0107w4315 University of Colorado Health'), (10829, 'https://ror.org/0108txz43', 'no_lang_code', 1, 'https://ror.org/0108txz43 Vaillant (Germany)'), (10830, 'https://ror.org/0109e3y78', 'no_lang_code', 1, 'https://ror.org/0109e3y78 Bluegreen Strategy (Italy)'), (10831, 'https://ror.org/0109ptn93', 'no_lang_code', 1, 'https://ror.org/0109ptn93 TES Electronic Solutions (Germany)'), (10832, 'https://ror.org/010a92934', 'en', 1, 'https://ror.org/010a92934 Champlain Valley Physicians Hospital'), (10833, 'https://ror.org/010c8ab15', 'en', 1, 'https://ror.org/010c8ab15 Health Education Council'), (10834, 'https://ror.org/010c8c923', 'no_lang_code', 1, 'https://ror.org/010c8c923 KGHM Cuprum (Poland) KGHM Cuprum sp. z o.o. Centrum Badawczo - Rozwojowe'), (10835, 'https://ror.org/010fbtk71', 'no_lang_code', 1, 'https://ror.org/010fbtk71 IPCOS (Netherlands)'), (10836, 'https://ror.org/010j4r258', 'no_lang_code', 1, 'https://ror.org/010j4r258 EIM Sensor (United States)'), (10837, 'https://ror.org/010jn4k46', 'en', 1, 'https://ror.org/010jn4k46 Frantsevich Institute for Problems in Materials Science Інституту проблем матеріалознавства ім. І.М. Францевича'), (10838, 'https://ror.org/010p49b38', 'no_lang_code', 1, 'https://ror.org/010p49b38 GeoVille (Austria)'), (10839, 'https://ror.org/010pkhb41', 'es', 1, 'https://ror.org/010pkhb41 Association Instituto Tecnológico Metalmecánico'), (10840, 'https://ror.org/010sykp39', 'en', 1, 'https://ror.org/010sykp39 Community Food Bank'), (10841, 'https://ror.org/010v7x554', 'no_lang_code', 1, 'https://ror.org/010v7x554 Firsthand Foods (United States)'), (10842, 'https://ror.org/010wj4y69', 'en', 1, 'https://ror.org/010wj4y69 Childhood Leukemia Foundation'), (10843, 'https://ror.org/010ypq317', 'en', 1, 'https://ror.org/010ypq317 NHS Highland'), (10844, 'https://ror.org/010z5hk55', 'no_lang_code', 1, 'https://ror.org/010z5hk55 Controlled Chemicals (United States)'), (10845, 'https://ror.org/010z87j47', 'en', 1, 'https://ror.org/010z87j47 Camp Twin Lakes'), (10846, 'https://ror.org/01107ae84', 'en', 1, 'https://ror.org/01107ae84 Des Moines University Osteopathic Medical Center'), (10847, 'https://ror.org/0110tsr95', 'no_lang_code', 1, 'https://ror.org/0110tsr95 Energy and Environmental Consultancy'), (10848, 'https://ror.org/0112g6h79', 'en', 1, 'https://ror.org/0112g6h79 Iringa Development of Youth Disabled and Children Care'), (10849, 'https://ror.org/0114r0003', 'no_lang_code', 1, 'https://ror.org/0114r0003 NortonLifeLock (Ireland)'), (10850, 'https://ror.org/0114t5q03', 'en', 1, 'https://ror.org/0114t5q03 Gorlin Syndrome Alliance'), (10851, 'https://ror.org/0116mgp30', 'no_lang_code', 1, 'https://ror.org/0116mgp30 ALFA PI (Greece)'), (10852, 'https://ror.org/011724532', 'en', 1, 'https://ror.org/011724532 Center for Independent Living'), (10853, 'https://ror.org/011728q79', 'en', 1, 'https://ror.org/011728q79 Foundation Fighting Blindness'), (10854, 'https://ror.org/01177md87', 'en', 1, 'https://ror.org/01177md87 EXPAND Beyond'), (10855, 'https://ror.org/01177pa98', 'en', 1, 'https://ror.org/01177pa98 Mars Society'), (10856, 'https://ror.org/0117w1x13', 'en', 1, 'https://ror.org/0117w1x13 Athens Nurses Clinic'), (10857, 'https://ror.org/01188mx28', 'en', 1, 'https://ror.org/01188mx28 Marine Hydrophysical Institute'), (10858, 'https://ror.org/0118wgv88', 'en', 1, 'https://ror.org/0118wgv88 New Hanover County Schools'), (10859, 'https://ror.org/011adb956', 'fr', 1, 'https://ror.org/011adb956 Centre Hospito Universitaire de Sétif'), (10860, 'https://ror.org/011azg567', 'en', 1, 'https://ror.org/011azg567 Regional Cancer Center, Thiruvananthapuram'), (10861, 'https://ror.org/011bjxg73', 'en', 1, 'https://ror.org/011bjxg73 La Casa Norte'), (10862, 'https://ror.org/011c97447', 'en', 1, 'https://ror.org/011c97447 Newton Symphony Orchestra'), (10863, 'https://ror.org/011cheg80', 'no_lang_code', 1, 'https://ror.org/011cheg80 Omniox (United States)'), (10864, 'https://ror.org/011fzp843', 'no_lang_code', 1, 'https://ror.org/011fzp843 Ericsson (Serbia)'), (10865, 'https://ror.org/011k0sc34', 'no_lang_code', 1, 'https://ror.org/011k0sc34 Atlantia (Italy)'), (10866, 'https://ror.org/011kc7436', 'no_lang_code', 1, 'https://ror.org/011kc7436 I2 air fluid innovation (United States)'), (10867, 'https://ror.org/011rkt464', 'no_lang_code', 1, 'https://ror.org/011rkt464 Greentech (France)'), (10868, 'https://ror.org/011rxtm45', 'no_lang_code', 1, 'https://ror.org/011rxtm45 Exelis (United States)'), (10869, 'https://ror.org/011sk7b78', 'no_lang_code', 1, 'https://ror.org/011sk7b78 Smart High Tech (Sweden)'), (10870, 'https://ror.org/011t3k538', 'no_lang_code', 1, 'https://ror.org/011t3k538 SAIL LABS Technology (Austria)'), (10871, 'https://ror.org/011tnb136', 'en', 1, 'https://ror.org/011tnb136 Carolina Veterinary Specialists'), (10872, 'https://ror.org/011tyvx62', 'en', 1, 'https://ror.org/011tyvx62 Groundwork Hudson Valley'), (10873, 'https://ror.org/011wwxv17', 'no_lang_code', 1, 'https://ror.org/011wwxv17 TopGaN (Poland)'), (10874, 'https://ror.org/011xa1033', 'en', 1, 'https://ror.org/011xa1033 Albuquerque Area Indian Health Board'), (10875, 'https://ror.org/011xw5c92', 'pl', 1, 'https://ror.org/011xw5c92 Instytut Budownictwa Mechanizacji i Elektryfikacji Rolnictwa'), (10876, 'https://ror.org/011yjrc39', 'no_lang_code', 1, 'https://ror.org/011yjrc39 Equipos Nucleares (Spain)'), (10877, 'https://ror.org/011zg5725', 'pt', 1, 'https://ror.org/011zg5725 Centro Tecnológico das Indústrias Têxtil e do Vestuário de Portugal Technological Centre for the Portuguese Textile and Clothing Industry'), (10878, 'https://ror.org/011zr3t28', 'en', 1, 'https://ror.org/011zr3t28 Rio Grande Valley Science Association'), (10879, 'https://ror.org/0120jh079', 'no_lang_code', 1, 'https://ror.org/0120jh079 Honeywell (United Kingdom)'), (10880, 'https://ror.org/0122epm04', 'en', 1, 'https://ror.org/0122epm04 EuroHealthNet'), (10881, 'https://ror.org/01235k409', 'en', 1, 'https://ror.org/01235k409 Polish National Energy Conservation Agency'), (10882, 'https://ror.org/0123nke06', 'no_lang_code', 1, 'https://ror.org/0123nke06 JRC Capital Management (Germany)'), (10883, 'https://ror.org/0123ya036', 'en', 1, 'https://ror.org/0123ya036 National Biodiesel Board'), (10884, 'https://ror.org/01240pn49', 'en', 1, 'https://ror.org/01240pn49 Menlo School'), (10885, 'https://ror.org/0125xqd86', 'en', 1, 'https://ror.org/0125xqd86 INTEGRIS Southwest Medical Center'), (10886, 'https://ror.org/0126jpc81', 'en', 1, 'https://ror.org/0126jpc81 Flathead Valley Community College'), (10887, 'https://ror.org/012bn4v93', 'no_lang_code', 1, 'https://ror.org/012bn4v93 Agilent Technologies (Belgium)'), (10888, 'https://ror.org/012cahw96', 'no_lang_code', 1, 'https://ror.org/012cahw96 Space Systems Finland (Finland)'), (10889, 'https://ror.org/012e9j548', 'en', 1, 'https://ror.org/012e9j548 OhioHealth'), (10890, 'https://ror.org/012gye839', 'en', 1, 'https://ror.org/012gye839 Bwrdd Iechyd Lleol Hywel Dda Hywel Dda University Health Board'), (10891, 'https://ror.org/012jkf693', 'no_lang_code', 1, 'https://ror.org/012jkf693 E.ON Sverige (Sweden)'), (10892, 'https://ror.org/012jq2614', 'en', 1, 'https://ror.org/012jq2614 Gateway Confluence Wheelchair Sports Foundation'), (10893, 'https://ror.org/012kq3b54', 'en', 1, 'https://ror.org/012kq3b54 Horizon Home Care and Hospice'), (10894, 'https://ror.org/012mvd861', 'no_lang_code', 1, 'https://ror.org/012mvd861 National Air Traffic Services (United Kingdom)'), (10895, 'https://ror.org/012nb8s32', 'no_lang_code', 1, 'https://ror.org/012nb8s32 GKN (Germany)'), (10896, 'https://ror.org/012p5cj16', 'no_lang_code', 1, 'https://ror.org/012p5cj16 DIAD Group (Italy)'), (10897, 'https://ror.org/012pxe355', 'no_lang_code', 1, 'https://ror.org/012pxe355 Net7 (Italy)'), (10898, 'https://ror.org/012q3xq08', 'no_lang_code', 1, 'https://ror.org/012q3xq08 Menck (Germany)'), (10899, 'https://ror.org/012r0vb97', 'en', 1, 'https://ror.org/012r0vb97 The Lower Eastside Girls Club'), (10900, 'https://ror.org/012t5jf53', 'no_lang_code', 1, 'https://ror.org/012t5jf53 Worm Power (United States)'), (10901, 'https://ror.org/012t91r40', 'fr', 1, 'https://ror.org/012t91r40 Institut de Microbiologie de la Méditerranée'), (10902, 'https://ror.org/012th4177', 'es', 1, 'https://ror.org/012th4177 Fundación Universidad Empresa'), (10903, 'https://ror.org/012thdv08', 'no_lang_code', 1, 'https://ror.org/012thdv08 Zueblin (Germany)'), (10904, 'https://ror.org/012v3yp34', 'no_lang_code', 1, 'https://ror.org/012v3yp34 CINAR (Greece)'), (10905, 'https://ror.org/012vnhm21', 'no_lang_code', 1, 'https://ror.org/012vnhm21 OrphageniX (United States)'), (10906, 'https://ror.org/012w2p114', 'en', 1, 'https://ror.org/012w2p114 Kent County Health Department'), (10907, 'https://ror.org/012wakq07', 'no_lang_code', 1, 'https://ror.org/012wakq07 Thermo Fisher Scientific (Switzerland)'), (10908, 'https://ror.org/012xa3j60', 'en', 1, 'https://ror.org/012xa3j60 Children''s Therapy Center'), (10909, 'https://ror.org/012xttn04', 'no_lang_code', 1, 'https://ror.org/012xttn04 Centro Ricerche Produzioni Animali'), (10910, 'https://ror.org/012yz6164', 'en', 1, 'https://ror.org/012yz6164 Make-A-Wish Foundation'), (10911, 'https://ror.org/012z9nd72', 'en', 1, 'https://ror.org/012z9nd72 Franklin County Community Development Corporation'), (10912, 'https://ror.org/0130wtk42', 'en', 1, 'https://ror.org/0130wtk42 Foundation for International Environmental Law and Development'), (10913, 'https://ror.org/0131c1w17', 'en', 1, 'https://ror.org/0131c1w17 Harlem Children''s Zone'), (10914, 'https://ror.org/0132g7q26', 'en', 1, 'https://ror.org/0132g7q26 Old Westbury Gardens'), (10915, 'https://ror.org/0138k6z33', 'en', 1, 'https://ror.org/0138k6z33 Planned Parenthood Hudson Peconic'), (10916, 'https://ror.org/0139zfs13', 'en', 1, 'https://ror.org/0139zfs13 Kohala Center'), (10917, 'https://ror.org/013b70286', 'en', 1, 'https://ror.org/013b70286 Denver Hospice'), (10918, 'https://ror.org/013dthz53', 'en', 1, 'https://ror.org/013dthz53 Missouri Farm Bureau'), (10919, 'https://ror.org/013fdsd98', 'no_lang_code', 1, 'https://ror.org/013fdsd98 Sirti (Italy)'), (10920, 'https://ror.org/013gjg633', 'no_lang_code', 1, 'https://ror.org/013gjg633 E.ON (Germany)'), (10921, 'https://ror.org/013gkrj37', 'no_lang_code', 1, 'https://ror.org/013gkrj37 GKI Economic Research (Hungary)'), (10922, 'https://ror.org/013h0sc84', 'no_lang_code', 1, 'https://ror.org/013h0sc84 Cellular Engineering Technologies (United States)'), (10923, 'https://ror.org/013jy5726', 'en', 1, 'https://ror.org/013jy5726 Illinois Area Health Education Center'), (10924, 'https://ror.org/013kffh65', 'no_lang_code', 1, 'https://ror.org/013kffh65 IRD Fuel Cells (Denmark)'), (10925, 'https://ror.org/013nb7b55', 'no_lang_code', 1, 'https://ror.org/013nb7b55 Terna (Italy)'), (10926, 'https://ror.org/013p72785', 'en', 1, 'https://ror.org/013p72785 Chapel Hill Training Outreach Project'), (10927, 'https://ror.org/013pd3a75', 'en', 1, 'https://ror.org/013pd3a75 Jewish Community Center in Manhattan'), (10928, 'https://ror.org/013q4fg29', 'en', 1, 'https://ror.org/013q4fg29 Community Servings'), (10929, 'https://ror.org/013rtxr98', 'no_lang_code', 1, 'https://ror.org/013rtxr98 General Electric (Austria)'), (10930, 'https://ror.org/013v8tf96', 'en', 1, 'https://ror.org/013v8tf96 Winer Observatory'), (10931, 'https://ror.org/013yab158', 'en', 1, 'https://ror.org/013yab158 Hartnell College'), (10932, 'https://ror.org/013z7wp67', 'en', 1, 'https://ror.org/013z7wp67 Saginaw Chippewa Indian Tribal Council'), (10933, 'https://ror.org/013ze3m78', 'no_lang_code', 1, 'https://ror.org/013ze3m78 Cientive Group (United States)'), (10934, 'https://ror.org/0140kyc52', 'no_lang_code', 1, 'https://ror.org/0140kyc52 InsectiGen (United States)'), (10935, 'https://ror.org/0141avd06', 'no_lang_code', 1, 'https://ror.org/0141avd06 RISA Sicherheitsanalysen'), (10936, 'https://ror.org/0142es516', 'en', 1, 'https://ror.org/0142es516 Gillette Children''s Specialty Healthcare'), (10937, 'https://ror.org/0143vhw21', 'en', 1, 'https://ror.org/0143vhw21 Baba Farid University of Health Sciences ਬਾਬਾ ਫਰੀਦ ਯੂਨੀਵਰਸਿਟੀ ਆਫ਼ ਹੈਲਥ ਸਾਇੰਸਿਜ਼'), (10938, 'https://ror.org/0145t7b41', 'en', 1, 'https://ror.org/0145t7b41 Cheshire Medical Center'), (10939, 'https://ror.org/0146hqc14', 'en', 1, 'https://ror.org/0146hqc14 Brain and Spinal Injury Trust Fund Commission'), (10940, 'https://ror.org/0148agt43', 'en', 1, 'https://ror.org/0148agt43 Texas/Mexico Border Coalition'), (10941, 'https://ror.org/01491cv93', 'en', 1, 'https://ror.org/01491cv93 Boston Cancer Policy Institute'), (10942, 'https://ror.org/0149b4c62', 'en', 1, 'https://ror.org/0149b4c62 Long Island Junior Soccer League'), (10943, 'https://ror.org/014a5cc29', 'no_lang_code', 1, 'https://ror.org/014a5cc29 Liebherr (France)'), (10944, 'https://ror.org/014b45274', 'en', 1, 'https://ror.org/014b45274 Catapult'), (10945, 'https://ror.org/014b6hs81', 'no_lang_code', 1, 'https://ror.org/014b6hs81 Prometheus Research (United States)'), (10946, 'https://ror.org/014bgkg42', 'en', 1, 'https://ror.org/014bgkg42 George Mark Children''s House'), (10947, 'https://ror.org/014c0sj69', 'en', 1, 'https://ror.org/014c0sj69 Sanilac Intermediate School District'), (10948, 'https://ror.org/014fc3d26', 'en', 1, 'https://ror.org/014fc3d26 Chemo Comfort'), (10949, 'https://ror.org/014gfj521', 'no_lang_code', 1, 'https://ror.org/014gfj521 CyberColloids'), (10950, 'https://ror.org/014j38041', 'en', 1, 'https://ror.org/014j38041 La Clinica de La Raza'), (10951, 'https://ror.org/014kk5w35', 'no_lang_code', 1, 'https://ror.org/014kk5w35 ZOZ Group (Germany)'), (10952, 'https://ror.org/014ktjg17', 'en', 1, 'https://ror.org/014ktjg17 White Plains Hospital'), (10953, 'https://ror.org/014mewn70', 'fr', 1, 'https://ror.org/014mewn70 Federal Overheidsdienst voor Informatie - en Communicatietechnologie Föderaler Öffentlichter Dienst Informations- und Kommunikationstechnologie Information and Communication Technology Federal Public Service Service Public Fédéral Technologie de l''Information et de la Communication'), (10954, 'https://ror.org/014pnzp14', 'en', 1, 'https://ror.org/014pnzp14 Elder Services of the Merrimack Valley'), (10955, 'https://ror.org/014q65q44', 'en', 1, 'https://ror.org/014q65q44 Patient-Centered Outcomes Research Institute'), (10956, 'https://ror.org/014q7gt78', 'en', 1, 'https://ror.org/014q7gt78 Ministero della Giustizia Ministry of Justice'), (10957, 'https://ror.org/014r6zg48', 'en', 1, 'https://ror.org/014r6zg48 Neighborhood Health'), (10958, 'https://ror.org/014tnef40', 'en', 1, 'https://ror.org/014tnef40 Hosparus'), (10959, 'https://ror.org/014xsa662', 'no_lang_code', 1, 'https://ror.org/014xsa662 All Things Bugs (United States)'), (10960, 'https://ror.org/014z5x149', 'en', 1, 'https://ror.org/014z5x149 Institute for Economic Research Inštitut za Ekonomska Raziskovanja'), (10961, 'https://ror.org/014zp7s14', 'en', 1, 'https://ror.org/014zp7s14 Dream Foundation'), (10962, 'https://ror.org/0150tj573', 'de', 1, 'https://ror.org/0150tj573 Deutsche Bundespost German Federal Post Office'), (10963, 'https://ror.org/0150zzy74', 'en', 1, 'https://ror.org/0150zzy74 New England Disabled Sports'), (10964, 'https://ror.org/0152zh161', 'en', 1, 'https://ror.org/0152zh161 Caroline Church of Brookhaven'), (10965, 'https://ror.org/0153wm704', 'en', 1, 'https://ror.org/0153wm704 Goryeb Children''s Hospital'), (10966, 'https://ror.org/0154eyq57', 'no_lang_code', 1, 'https://ror.org/0154eyq57 Quad County Corn Processors (United States)'), (10967, 'https://ror.org/0154hjf68', 'it', 1, 'https://ror.org/0154hjf68 Fondazione Mons Arrigo Mazzali'), (10968, 'https://ror.org/01575p865', 'en', 1, 'https://ror.org/01575p865 Cancer Research And Biostatistics'), (10969, 'https://ror.org/01579r607', 'en', 1, 'https://ror.org/01579r607 Mahoning County Educational Service Center'), (10970, 'https://ror.org/01595ga64', 'no_lang_code', 1, 'https://ror.org/01595ga64 Cowi (Norway)'), (10971, 'https://ror.org/0159ban23', 'no_lang_code', 1, 'https://ror.org/0159ban23 Vermon (France)'), (10972, 'https://ror.org/015akvv41', 'en', 1, 'https://ror.org/015akvv41 Community Care Partners'), (10973, 'https://ror.org/015bz4634', 'no_lang_code', 1, 'https://ror.org/015bz4634 Agfa-Gevaert (Belgium)'), (10974, 'https://ror.org/015cdqj77', 'en', 1, 'https://ror.org/015cdqj77 United Medical Center'), (10975, 'https://ror.org/015drk921', 'en', 1, 'https://ror.org/015drk921 Patients First'), (10976, 'https://ror.org/015eafn72', 'en', 1, 'https://ror.org/015eafn72 Candlelighters of West Texas & Southern New Mexico'), (10977, 'https://ror.org/015enq107', 'en', 1, 'https://ror.org/015enq107 Gallery North'), (10978, 'https://ror.org/015fpqf51', 'no_lang_code', 1, 'https://ror.org/015fpqf51 Warrington Certification (United Kingdom)'), (10979, 'https://ror.org/015gqee34', 'no_lang_code', 1, 'https://ror.org/015gqee34 NANOfutures (Belgium)'), (10980, 'https://ror.org/015k31167', 'no_lang_code', 1, 'https://ror.org/015k31167 BLC Leather Technology Centre'), (10981, 'https://ror.org/015m6xt73', 'no_lang_code', 1, 'https://ror.org/015m6xt73 Gruppo CLAS (Italy)'), (10982, 'https://ror.org/015q69778', 'no_lang_code', 1, 'https://ror.org/015q69778 MS Biotec (United States)'), (10983, 'https://ror.org/015sh1j12', 'no_lang_code', 1, 'https://ror.org/015sh1j12 Juniper Networks (Ireland)'), (10984, 'https://ror.org/015sr5294', 'en', 1, 'https://ror.org/015sr5294 Balarat Outdoor Education'), (10985, 'https://ror.org/015v43a21', 'es', 1, 'https://ror.org/015v43a21 Centro de Investigación en Alimentación y Desarrollo'), (10986, 'https://ror.org/015v8hy06', 'no_lang_code', 1, 'https://ror.org/015v8hy06 Taylor Shellfish Farms (United States)'), (10987, 'https://ror.org/015w2wb33', 'no_lang_code', 1, 'https://ror.org/015w2wb33 Atos (France)'), (10988, 'https://ror.org/015wgq606', 'no_lang_code', 1, 'https://ror.org/015wgq606 Work Research Centre'), (10989, 'https://ror.org/015xega74', 'en', 1, 'https://ror.org/015xega74 Children''s Music Fund'), (10990, 'https://ror.org/015xym232', 'no_lang_code', 1, 'https://ror.org/015xym232 Pintail (Ireland)'), (10991, 'https://ror.org/0160wm621', 'no_lang_code', 1, 'https://ror.org/0160wm621 Green Tech Labs (United States)'), (10992, 'https://ror.org/01628rf48', 'en', 1, 'https://ror.org/01628rf48 ChangeLab Solutions'), (10993, 'https://ror.org/0163bsq78', 'de', 1, 'https://ror.org/0163bsq78 Development Centre for Ship Technology and Transport Systems Entwicklungszentrum für Schiffstechnik und Transportsysteme, Versuchsanstalt für Binnenschiffbau'), (10994, 'https://ror.org/01652xx78', 'no_lang_code', 1, 'https://ror.org/01652xx78 Stam (Italy)'), (10995, 'https://ror.org/0165dap44', 'no_lang_code', 1, 'https://ror.org/0165dap44 CF consulting Finanziamenti Unione Europea'), (10996, 'https://ror.org/0165ws896', 'en', 1, 'https://ror.org/0165ws896 Hope Through Grace'), (10997, 'https://ror.org/016a12m25', 'fr', 1, 'https://ror.org/016a12m25 Comité Scientifique et Technique des Industries Climatiques'), (10998, 'https://ror.org/016dza536', 'en', 1, 'https://ror.org/016dza536 For Inspiration and Recognition of Science and Technology'), (10999, 'https://ror.org/016g6pe62', 'en', 1, 'https://ror.org/016g6pe62 Challenge Alaska'), (11000, 'https://ror.org/016jdw248', 'en', 1, 'https://ror.org/016jdw248 Carolyn Dorfman Dance Company'), (11001, 'https://ror.org/016jjjq38', 'no_lang_code', 1, 'https://ror.org/016jjjq38 Eltropuls (United Kingdom)'), (11002, 'https://ror.org/016jzy244', 'en', 1, 'https://ror.org/016jzy244 Catholic Family Center'), (11003, 'https://ror.org/016p00020', 'no_lang_code', 1, 'https://ror.org/016p00020 Computerised Information Technology (United Kingdom)'), (11004, 'https://ror.org/016pz0d03', 'no_lang_code', 1, 'https://ror.org/016pz0d03 HS-Art Digital Service (Austria)'), (11005, 'https://ror.org/016tr2j79', 'no_lang_code', 1, 'https://ror.org/016tr2j79 Uni Research (Norway)'), (11006, 'https://ror.org/016v0dh58', 'no_lang_code', 1, 'https://ror.org/016v0dh58 Teks (France)'), (11007, 'https://ror.org/016v3mm55', 'no_lang_code', 1, 'https://ror.org/016v3mm55 CognIT (Norway)'), (11008, 'https://ror.org/016yyk170', 'en', 1, 'https://ror.org/016yyk170 Lennox-Gastaut Syndrome Foundation'), (11009, 'https://ror.org/0170ntk37', 'no_lang_code', 1, 'https://ror.org/0170ntk37 Vienna Consulting Engineers (Austria)'), (11010, 'https://ror.org/01714zp28', 'no_lang_code', 1, 'https://ror.org/01714zp28 Prometheus Energy (United States)'), (11011, 'https://ror.org/0171n6z35', 'en', 1, 'https://ror.org/0171n6z35 EvergreenHealth Foundation'), (11012, 'https://ror.org/0171vtm86', 'no_lang_code', 1, 'https://ror.org/0171vtm86 SGS (Netherlands)'), (11013, 'https://ror.org/01746zk69', 'en', 1, 'https://ror.org/01746zk69 National Advocates for Pregnant Women'), (11014, 'https://ror.org/01749ew24', 'en', 1, 'https://ror.org/01749ew24 Friends of the North Carolina Maritime Museum'), (11015, 'https://ror.org/01764fn91', 'no_lang_code', 1, 'https://ror.org/01764fn91 Pan Genome Systems (United States)'), (11016, 'https://ror.org/0178m6t08', 'no_lang_code', 1, 'https://ror.org/0178m6t08 Correanayak (Spain)'), (11017, 'https://ror.org/017977v32', 'no_lang_code', 1, 'https://ror.org/017977v32 Alstom (Switzerland)'), (11018, 'https://ror.org/01797xg87', 'no_lang_code', 1, 'https://ror.org/01797xg87 MEI Research (United States)'), (11019, 'https://ror.org/0179d7111', 'en', 1, 'https://ror.org/0179d7111 Promise Project'), (11020, 'https://ror.org/0179z8203', 'no_lang_code', 1, 'https://ror.org/0179z8203 Flabeg (Germany)'), (11021, 'https://ror.org/017artp82', 'no_lang_code', 1, 'https://ror.org/017artp82 Electricity Authority of Cyprus (Cyprus)'), (11022, 'https://ror.org/017b91861', 'it', 1, 'https://ror.org/017b91861 Fondazione Golgi Cenci'), (11023, 'https://ror.org/017ctmv39', 'no_lang_code', 1, 'https://ror.org/017ctmv39 AkzoNobel (Netherlands)'), (11024, 'https://ror.org/017d1a722', 'no_lang_code', 1, 'https://ror.org/017d1a722 Caprion (Canada)'), (11025, 'https://ror.org/017ddyz63', 'no_lang_code', 1, 'https://ror.org/017ddyz63 INTRASOFT International (Belgium)'), (11026, 'https://ror.org/017e5fj79', 'en', 1, 'https://ror.org/017e5fj79 Covenant Children''s Hospital'), (11027, 'https://ror.org/017epgn33', 'no_lang_code', 1, 'https://ror.org/017epgn33 Ambiente Italia (Italy)'), (11028, 'https://ror.org/017f23p13', 'en', 1, 'https://ror.org/017f23p13 B.P. Koirala Memorial Cancer Hospital बी.पी. कोइराला मेमोरियल क्यान्सर हस्पिटल'), (11029, 'https://ror.org/017gjr957', 'en', 1, 'https://ror.org/017gjr957 Pro Bono Counseling Project'), (11030, 'https://ror.org/017hmby02', 'en', 1, 'https://ror.org/017hmby02 Verwey Jonker Institute'), (11031, 'https://ror.org/017m81f09', 'no_lang_code', 1, 'https://ror.org/017m81f09 Technopolis'), (11032, 'https://ror.org/017maz245', 'en', 1, 'https://ror.org/017maz245 Cheshire Home'), (11033, 'https://ror.org/017phwt11', 'en', 1, 'https://ror.org/017phwt11 Bladen County Schools'), (11034, 'https://ror.org/017prpf68', 'no_lang_code', 1, 'https://ror.org/017prpf68 OneGift'), (11035, 'https://ror.org/017qjec28', 'en', 1, 'https://ror.org/017qjec28 VATT Institute for Economic Research'), (11036, 'https://ror.org/017r9q421', 'no_lang_code', 1, 'https://ror.org/017r9q421 Genoway (France)'), (11037, 'https://ror.org/017sx9325', 'no_lang_code', 1, 'https://ror.org/017sx9325 Air Liquide (Germany)'), (11038, 'https://ror.org/017t18r89', 'en', 1, 'https://ror.org/017t18r89 Fighting Chance'), (11039, 'https://ror.org/017t82m28', 'no_lang_code', 1, 'https://ror.org/017t82m28 Angimmune (United States)'), (11040, 'https://ror.org/017t84284', 'en', 1, 'https://ror.org/017t84284 Northeast Organic Farming Association of New Jersey'), (11041, 'https://ror.org/017vn3365', 'no_lang_code', 1, 'https://ror.org/017vn3365 Stichting Hout Research (Netherlands)'), (11042, 'https://ror.org/017w6as65', 'en', 1, 'https://ror.org/017w6as65 Staunton Creative Community Fund'), (11043, 'https://ror.org/017xb4c21', 'fr', 1, 'https://ror.org/017xb4c21 Group For Research and Technology Exchanges Groupe de Recherches et d''Echanges Technologiques'), (11044, 'https://ror.org/017xncd55', 'en', 1, 'https://ror.org/017xncd55 MaineHealth'), (11045, 'https://ror.org/017yvv646', 'en', 1, 'https://ror.org/017yvv646 Brain Injury Association of Mississippi'), (11046, 'https://ror.org/0183pp169', 'en', 1, 'https://ror.org/0183pp169 Ability Production'), (11047, 'https://ror.org/0184sq126', 'no_lang_code', 1, 'https://ror.org/0184sq126 Irion & Junker Project Management Irion and Junker Projektmanagement'), (11048, 'https://ror.org/0185drb55', 'en', 1, 'https://ror.org/0185drb55 Alzheimer''s Drug Discovery Foundation'), (11049, 'https://ror.org/01866as23', 'no_lang_code', 1, 'https://ror.org/01866as23 TDF (France)'), (11050, 'https://ror.org/0187tsx41', 'no_lang_code', 1, 'https://ror.org/0187tsx41 Sigma Space (United States)'), (11051, 'https://ror.org/018br7a38', 'en', 1, 'https://ror.org/018br7a38 Walton County School District'), (11052, 'https://ror.org/018d8dx68', 'no_lang_code', 1, 'https://ror.org/018d8dx68 Tritecc (Romania)'), (11053, 'https://ror.org/018dcfg43', 'en', 1, 'https://ror.org/018dcfg43 Penn Highlands Healthcare'), (11054, 'https://ror.org/018dp3302', 'en', 1, 'https://ror.org/018dp3302 Coyote Canyon Rehabilitation Center'), (11055, 'https://ror.org/018dzn802', 'en', 1, 'https://ror.org/018dzn802 Bhubaneswar Borooah Cancer Institute'), (11056, 'https://ror.org/018gt7b78', 'no_lang_code', 1, 'https://ror.org/018gt7b78 WLB Limited (Cyprus)'), (11057, 'https://ror.org/018kgyq04', 'no_lang_code', 1, 'https://ror.org/018kgyq04 Roal (Finland)'), (11058, 'https://ror.org/018n9jg91', 'no_lang_code', 1, 'https://ror.org/018n9jg91 InterSoft (Slovakia)'), (11059, 'https://ror.org/018q0y068', 'no_lang_code', 1, 'https://ror.org/018q0y068 MJC2 (United Kingdom)'), (11060, 'https://ror.org/018q3fa22', 'en', 1, 'https://ror.org/018q3fa22 Centre for Research in Engineering Surface Technology'), (11061, 'https://ror.org/018qv1e85', 'no_lang_code', 1, 'https://ror.org/018qv1e85 PreSens Precision Sensing (Germany)'), (11062, 'https://ror.org/018rhs370', 'no_lang_code', 1, 'https://ror.org/018rhs370 IFC Research (United Kingdom)'), (11063, 'https://ror.org/018sya243', 'en', 1, 'https://ror.org/018sya243 Deutsch Institute'), (11064, 'https://ror.org/018t3ct36', 'no_lang_code', 1, 'https://ror.org/018t3ct36 Rapita Systems (United Kingdom)'), (11065, 'https://ror.org/018t53266', 'en', 1, 'https://ror.org/018t53266 Power Paws Assistance Dogs'), (11066, 'https://ror.org/018vx9t46', 'en', 1, 'https://ror.org/018vx9t46 Mazumdar Shaw Medical Centre'), (11067, 'https://ror.org/0190g0e24', 'no_lang_code', 1, 'https://ror.org/0190g0e24 Xsens (Netherlands)'), (11068, 'https://ror.org/0192jdh06', 'no_lang_code', 1, 'https://ror.org/0192jdh06 Satways (Greece)'), (11069, 'https://ror.org/0192zc472', 'en', 1, 'https://ror.org/0192zc472 Ocean Classroom'), (11070, 'https://ror.org/01950ke92', 'no_lang_code', 1, 'https://ror.org/01950ke92 Concentration Heat and Momentum (United Kingdom)'), (11071, 'https://ror.org/0195q0f30', 'no_lang_code', 1, 'https://ror.org/0195q0f30 Materials Industrial Research and Technology Development Centre (Greece) Εταιρεία'), (11072, 'https://ror.org/0195yp903', 'en', 1, 'https://ror.org/0195yp903 Society for In Vitro Biology'), (11073, 'https://ror.org/01965fb20', 'no_lang_code', 1, 'https://ror.org/01965fb20 Protection des Métaux (France)'), (11074, 'https://ror.org/01996x261', 'en', 1, 'https://ror.org/01996x261 Breckenridge Outdoor Education Center'), (11075, 'https://ror.org/0199x1096', 'en', 1, 'https://ror.org/0199x1096 Shipbuilders & Shiprepairers Association'), (11076, 'https://ror.org/019dhev54', 'en', 1, 'https://ror.org/019dhev54 Granite State Independent Living'), (11077, 'https://ror.org/019ejf125', 'no_lang_code', 1, 'https://ror.org/019ejf125 Ormazabal (Switzerland)'), (11078, 'https://ror.org/019frbz80', 'no_lang_code', 1, 'https://ror.org/019frbz80 Specim (Finland)'), (11079, 'https://ror.org/019g7bh20', 'no_lang_code', 1, 'https://ror.org/019g7bh20 Paratek Pharmaceuticals (United States)'), (11080, 'https://ror.org/019hc5667', 'en', 1, 'https://ror.org/019hc5667 FareStart'), (11081, 'https://ror.org/019knvq46', 'en', 1, 'https://ror.org/019knvq46 Emmanuel Cancer Foundation'), (11082, 'https://ror.org/019ksbk73', 'en', 1, 'https://ror.org/019ksbk73 Hospice of the Upstate'), (11083, 'https://ror.org/019m53d79', 'en', 1, 'https://ror.org/019m53d79 Capital of Texas Team Survivor'), (11084, 'https://ror.org/019n7yz73', 'en', 1, 'https://ror.org/019n7yz73 Conway Regional Health System'), (11085, 'https://ror.org/019nbqv12', 'no_lang_code', 1, 'https://ror.org/019nbqv12 Technosam (Romania)'), (11086, 'https://ror.org/019p95v81', 'en', 1, 'https://ror.org/019p95v81 HOPE European Hospital and Healthcare Federation'), (11087, 'https://ror.org/019rb1136', 'no_lang_code', 1, 'https://ror.org/019rb1136 L-Up'), (11088, 'https://ror.org/019ssje31', 'en', 1, 'https://ror.org/019ssje31 Essentia Health'), (11089, 'https://ror.org/019tbwb44', 'no_lang_code', 1, 'https://ror.org/019tbwb44 Faseroptische Systeme Messtechnik (Germany)'), (11090, 'https://ror.org/019tk8j65', 'no_lang_code', 1, 'https://ror.org/019tk8j65 Triphase (Belgium)'), (11091, 'https://ror.org/019tkx431', 'no_lang_code', 1, 'https://ror.org/019tkx431 Kraftanlagen (Germany)'), (11092, 'https://ror.org/019xk8h36', 'no_lang_code', 1, 'https://ror.org/019xk8h36 Axxam (Italy)'), (11093, 'https://ror.org/019xkjn34', 'no_lang_code', 1, 'https://ror.org/019xkjn34 Intertek (Sweden)'), (11094, 'https://ror.org/019zszt41', 'en', 1, 'https://ror.org/019zszt41 South Routt School District'), (11095, 'https://ror.org/01a0heb61', 'no_lang_code', 1, 'https://ror.org/01a0heb61 Allakos (United States)'), (11096, 'https://ror.org/01a1kj410', 'no_lang_code', 1, 'https://ror.org/01a1kj410 Planetek Italia'), (11097, 'https://ror.org/01a1xfd09', 'en', 1, 'https://ror.org/01a1xfd09 Institute for Nuclear Research Институт ядерных исследований'), (11098, 'https://ror.org/01a2qtx28', 'en', 1, 'https://ror.org/01a2qtx28 Lili Claire Foundation'), (11099, 'https://ror.org/01a3n7y93', 'no_lang_code', 1, 'https://ror.org/01a3n7y93 Advanced Management Solutions (Greece)'), (11100, 'https://ror.org/01a3sz723', 'ro', 1, 'https://ror.org/01a3sz723 Center of International Projects Centrul de Proiecte Internaţionale'), (11101, 'https://ror.org/01a3t6k91', 'en', 1, 'https://ror.org/01a3t6k91 Colorado Cattlemen''s Association'), (11102, 'https://ror.org/01a58n762', 'no_lang_code', 1, 'https://ror.org/01a58n762 Wärtsilä (Germany)'), (11103, 'https://ror.org/01a6cr462', 'de', 1, 'https://ror.org/01a6cr462 Forschungsinstitut für schnellwachsende Baumarten'), (11104, 'https://ror.org/01a70q325', 'no_lang_code', 1, 'https://ror.org/01a70q325 Fluidda (United States)'), (11105, 'https://ror.org/01a7b6660', 'no_lang_code', 1, 'https://ror.org/01a7b6660 Stresstech (Finland)'), (11106, 'https://ror.org/01a81w125', 'en', 1, 'https://ror.org/01a81w125 Planned Parenthood Association of Liberia'), (11107, 'https://ror.org/01aabt454', 'en', 1, 'https://ror.org/01aabt454 Mark Codner, MD Plastic Surgery'), (11108, 'https://ror.org/01abzmh24', 'no_lang_code', 1, 'https://ror.org/01abzmh24 Prototech (Norway)'), (11109, 'https://ror.org/01adgby89', 'no_lang_code', 1, 'https://ror.org/01adgby89 Orgelbau Mühleisen (Germany)'), (11110, 'https://ror.org/01ag8d960', 'no_lang_code', 1, 'https://ror.org/01ag8d960 Global Security Intelligence (United Kingdom)'), (11111, 'https://ror.org/01ajjny45', 'no_lang_code', 1, 'https://ror.org/01ajjny45 Nanologica (Sweden)'), (11112, 'https://ror.org/01akx8n77', 'no_lang_code', 1, 'https://ror.org/01akx8n77 Dendritic Cell Research (India)'), (11113, 'https://ror.org/01anprz44', 'no_lang_code', 1, 'https://ror.org/01anprz44 Cell Machines (United States)'), (11114, 'https://ror.org/01aqcn407', 'en', 1, 'https://ror.org/01aqcn407 New Orleans Musicians Assistance Foundation'), (11115, 'https://ror.org/01ar5xt70', 'en', 1, 'https://ror.org/01ar5xt70 Bloomington Health Foundation'), (11116, 'https://ror.org/01av4dy75', 'en', 1, 'https://ror.org/01av4dy75 Baptist Health Foundation'), (11117, 'https://ror.org/01avjet51', 'en', 1, 'https://ror.org/01avjet51 St. Patrick Roman Catholic Church'), (11118, 'https://ror.org/01avrgx42', 'en', 1, 'https://ror.org/01avrgx42 Horizons Community Solutions'), (11119, 'https://ror.org/01awdzs62', 'no_lang_code', 1, 'https://ror.org/01awdzs62 Larco (Greece)'), (11120, 'https://ror.org/01awnfh35', 'en', 1, 'https://ror.org/01awnfh35 Citizens United for Research in Epilepsy'), (11121, 'https://ror.org/01ay7an66', 'no_lang_code', 1, 'https://ror.org/01ay7an66 VERO Biotech (United States)'), (11122, 'https://ror.org/01aysdw42', 'en', 1, 'https://ror.org/01aysdw42 St Mary''s Hospital'), (11123, 'https://ror.org/01aznms81', 'en', 1, 'https://ror.org/01aznms81 CentraState Healthcare Foundation'), (11124, 'https://ror.org/01b0md462', 'no_lang_code', 1, 'https://ror.org/01b0md462 Plumbline Coaching & Consulting (United States)'), (11125, 'https://ror.org/01b3b0r57', 'en', 1, 'https://ror.org/01b3b0r57 Parent Advocacy Coalition for Educational Rights'), (11126, 'https://ror.org/01b3n9g22', 'it', 1, 'https://ror.org/01b3n9g22 Fondazione Gimema Onlus'), (11127, 'https://ror.org/01b5dy719', 'en', 1, 'https://ror.org/01b5dy719 Institute of Mathematics and Informatics'), (11128, 'https://ror.org/01b6xgg59', 'en', 1, 'https://ror.org/01b6xgg59 iXscient'), (11129, 'https://ror.org/01b7jd097', 'ga', 1, 'https://ror.org/01b7jd097 An Garda Síochána'), (11130, 'https://ror.org/01b9zn241', 'no_lang_code', 1, 'https://ror.org/01b9zn241 WhyHunger'), (11131, 'https://ror.org/01ba2ff92', 'no_lang_code', 1, 'https://ror.org/01ba2ff92 Biopico Systems (United States)'), (11132, 'https://ror.org/01bbb9w98', 'en', 1, 'https://ror.org/01bbb9w98 East Harlem Tutorial Program'), (11133, 'https://ror.org/01bbba959', 'en', 1, 'https://ror.org/01bbba959 Pink Ribbons Project'); INSERT INTO `rors` VALUES (11134, 'https://ror.org/01bbs9f03', 'no_lang_code', 1, 'https://ror.org/01bbs9f03 Celsus Therapeutics (United Kingdom)'), (11135, 'https://ror.org/01bcgtw38', 'en', 1, 'https://ror.org/01bcgtw38 St. Luke''s Clinic'), (11136, 'https://ror.org/01bcnv283', 'en', 1, 'https://ror.org/01bcnv283 Los Angeles Centers for Alcohol and Drug Abuse'), (11137, 'https://ror.org/01bd8yz25', 'en', 1, 'https://ror.org/01bd8yz25 Afterschool Alliance'), (11138, 'https://ror.org/01bdddp98', 'no_lang_code', 1, 'https://ror.org/01bdddp98 FeyeCon (Netherlands)'), (11139, 'https://ror.org/01be0e870', 'no_lang_code', 1, 'https://ror.org/01be0e870 Nutrition 21 (United States)'), (11140, 'https://ror.org/01bf0r740', 'en', 1, 'https://ror.org/01bf0r740 Arms Wide Open Community Development Corporation'), (11141, 'https://ror.org/01bhfvx80', 'pt', 1, 'https://ror.org/01bhfvx80 Gestos'), (11142, 'https://ror.org/01bjdg534', 'en', 1, 'https://ror.org/01bjdg534 Teens Living with Cancer'), (11143, 'https://ror.org/01bkx5q50', 'en', 1, 'https://ror.org/01bkx5q50 Centre for Technological Research of Crete'), (11144, 'https://ror.org/01bss2h67', 'no_lang_code', 1, 'https://ror.org/01bss2h67 PE International (Germany)'), (11145, 'https://ror.org/01bswen66', 'no_lang_code', 1, 'https://ror.org/01bswen66 Hudson Simulation Service'), (11146, 'https://ror.org/01bv1r935', 'no_lang_code', 1, 'https://ror.org/01bv1r935 MBDA (France)'), (11147, 'https://ror.org/01bvfdq42', 'no_lang_code', 1, 'https://ror.org/01bvfdq42 Lantiq (Germany)'), (11148, 'https://ror.org/01bwznq34', 'en', 1, 'https://ror.org/01bwznq34 Gila Regional Medical Center'), (11149, 'https://ror.org/01c0de609', 'no_lang_code', 1, 'https://ror.org/01c0de609 IMIX Vision Support Systems (Netherlands)'), (11150, 'https://ror.org/01c0hr456', 'no_lang_code', 1, 'https://ror.org/01c0hr456 Glötzl (Germany)'), (11151, 'https://ror.org/01c0k9408', 'en', 1, 'https://ror.org/01c0k9408 Life University'), (11152, 'https://ror.org/01c0x3431', 'no_lang_code', 1, 'https://ror.org/01c0x3431 OSRAM (Germany)'), (11153, 'https://ror.org/01c1z6p98', 'no_lang_code', 1, 'https://ror.org/01c1z6p98 Advanced Inhalation Therapies (Israel)'), (11154, 'https://ror.org/01c3e9r47', 'no_lang_code', 1, 'https://ror.org/01c3e9r47 Biodel (United States)'), (11155, 'https://ror.org/01c3fwx83', 'en', 1, 'https://ror.org/01c3fwx83 Miracle League of Blair County'), (11156, 'https://ror.org/01c3nm063', 'no_lang_code', 1, 'https://ror.org/01c3nm063 Kiksapa Consulting (United States)'), (11157, 'https://ror.org/01c3rah98', 'en', 1, 'https://ror.org/01c3rah98 Heroes on Horseback'), (11158, 'https://ror.org/01c3w3270', 'en', 1, 'https://ror.org/01c3w3270 Institute of Cognitive and Brain Sciences'), (11159, 'https://ror.org/01c4g1b02', 'en', 1, 'https://ror.org/01c4g1b02 Great Northern Services'), (11160, 'https://ror.org/01c55m435', 'no_lang_code', 1, 'https://ror.org/01c55m435 Castle Rock Geotech (United Kingdom)'), (11161, 'https://ror.org/01c5aqt35', 'no_lang_code', 1, 'https://ror.org/01c5aqt35 Danone (Netherlands)'), (11162, 'https://ror.org/01c6ycm57', 'no_lang_code', 1, 'https://ror.org/01c6ycm57 EnBiotix (United States)'), (11163, 'https://ror.org/01c79fd45', 'no_lang_code', 1, 'https://ror.org/01c79fd45 Space (Italy)'), (11164, 'https://ror.org/01c7ad114', 'en', 1, 'https://ror.org/01c7ad114 Elizabeth City Pasquotank Public Schools'), (11165, 'https://ror.org/01c93rd67', 'en', 1, 'https://ror.org/01c93rd67 The House of Praise'), (11166, 'https://ror.org/01cc8wa14', 'en', 1, 'https://ror.org/01cc8wa14 Parker Jewish Institute for Health Care and Rehabilitation'), (11167, 'https://ror.org/01ccbsb07', 'en', 1, 'https://ror.org/01ccbsb07 United Institute of Informatics Problems'), (11168, 'https://ror.org/01ccwxx16', 'en', 1, 'https://ror.org/01ccwxx16 San Diego Hospice and The Institute for Palliative Medicine'), (11169, 'https://ror.org/01cebzr82', 'no_lang_code', 1, 'https://ror.org/01cebzr82 GAF AG'), (11170, 'https://ror.org/01cfgbq85', 'it', 1, 'https://ror.org/01cfgbq85 Azienda Sanitaria di Firenze'), (11171, 'https://ror.org/01cjkdm63', 'fr', 1, 'https://ror.org/01cjkdm63 Houillères de Lorraine'), (11172, 'https://ror.org/01cm1nq79', 'en', 1, 'https://ror.org/01cm1nq79 Brunswick County Schools'), (11173, 'https://ror.org/01cmxpj21', 'no_lang_code', 1, 'https://ror.org/01cmxpj21 SupraPolix (Netherlands)'), (11174, 'https://ror.org/01cpp8w55', 'en', 1, 'https://ror.org/01cpp8w55 Institute for Washington’s Future'), (11175, 'https://ror.org/01crmyn45', 'en', 1, 'https://ror.org/01crmyn45 Dream Catchers Therapeutic Riding'), (11176, 'https://ror.org/01csgpy33', 'en', 1, 'https://ror.org/01csgpy33 Methodist Le Bonheur Healthcare'), (11177, 'https://ror.org/01csjkt09', 'fr', 1, 'https://ror.org/01csjkt09 Institut de l’Elevage'), (11178, 'https://ror.org/01ctvj234', 'no_lang_code', 1, 'https://ror.org/01ctvj234 Nedstack fuel cell technology (Netherlands)'), (11179, 'https://ror.org/01cwasn33', 'no_lang_code', 1, 'https://ror.org/01cwasn33 Vodafone (Greece)'), (11180, 'https://ror.org/01cwv5f90', 'en', 1, 'https://ror.org/01cwv5f90 Northeast Health'), (11181, 'https://ror.org/01cys2m19', 'en', 1, 'https://ror.org/01cys2m19 Chiricahua Community Health Centers'), (11182, 'https://ror.org/01czwga19', 'fr', 1, 'https://ror.org/01czwga19 Fondation Leducq Leducq Foundation'), (11183, 'https://ror.org/01d0ay026', 'en', 1, 'https://ror.org/01d0ay026 Florida West Coast Resource Conservation and Development'), (11184, 'https://ror.org/01d1vqp66', 'en', 1, 'https://ror.org/01d1vqp66 Regional Health'), (11185, 'https://ror.org/01d2cs775', 'en', 1, 'https://ror.org/01d2cs775 Desert AIDS Project'), (11186, 'https://ror.org/01d35cw23', 'en', 1, 'https://ror.org/01d35cw23 Burroughs Wellcome Fund'), (11187, 'https://ror.org/01d54xp37', 'pt', 1, 'https://ror.org/01d54xp37 Fundmed Pesquisa, Ensino e Inovacao'), (11188, 'https://ror.org/01d76dn02', 'no_lang_code', 1, 'https://ror.org/01d76dn02 Rolling Hills Research (United States)'), (11189, 'https://ror.org/01d8y3h50', 'en', 1, 'https://ror.org/01d8y3h50 First Giving'), (11190, 'https://ror.org/01d9fmv96', 'en', 1, 'https://ror.org/01d9fmv96 Girls Educational and Mentoring Services'), (11191, 'https://ror.org/01d9x6s51', 'fr', 1, 'https://ror.org/01d9x6s51 Centre Technique de l''Industrie du Bois'), (11192, 'https://ror.org/01d9zj202', 'no_lang_code', 1, 'https://ror.org/01d9zj202 Tech4i2'), (11193, 'https://ror.org/01dd6b484', 'en', 1, 'https://ror.org/01dd6b484 McLoughlin Consulting'), (11194, 'https://ror.org/01de1e381', 'no_lang_code', 1, 'https://ror.org/01de1e381 Help Service - Remote Sensing (Czechia)'), (11195, 'https://ror.org/01dfd3f84', 'it', 1, 'https://ror.org/01dfd3f84 Fondazione Matilde Tettamanti Menotti De Marchi'), (11196, 'https://ror.org/01dhk3z45', 'en', 1, 'https://ror.org/01dhk3z45 Hydrogen Fuel Cells and Electro-Mobility in European Regions'), (11197, 'https://ror.org/01dj30h14', 'en', 1, 'https://ror.org/01dj30h14 Mines Rescue Service'), (11198, 'https://ror.org/01djrwd47', 'en', 1, 'https://ror.org/01djrwd47 Breathe California of Los Angeles County'), (11199, 'https://ror.org/01dknz144', 'en', 1, 'https://ror.org/01dknz144 Solid Ground'), (11200, 'https://ror.org/01dn4kx94', 'no_lang_code', 1, 'https://ror.org/01dn4kx94 Sparqle International (Netherlands)'), (11201, 'https://ror.org/01dns9649', 'en', 1, 'https://ror.org/01dns9649 Project Open Hand'), (11202, 'https://ror.org/01drcxb91', 'no_lang_code', 1, 'https://ror.org/01drcxb91 Sirma Group (Bulgaria)'), (11203, 'https://ror.org/01drqkt97', 'no_lang_code', 1, 'https://ror.org/01drqkt97 KeraNor (Norway)'), (11204, 'https://ror.org/01dwm7q20', 'en', 1, 'https://ror.org/01dwm7q20 DAWN Center for Independent Living'), (11205, 'https://ror.org/01dxazx51', 'en', 1, 'https://ror.org/01dxazx51 Centre for Community Justice and Development'), (11206, 'https://ror.org/01dzdzt70', 'no_lang_code', 1, 'https://ror.org/01dzdzt70 SensL (Ireland)'), (11207, 'https://ror.org/01e1qb944', 'no_lang_code', 1, 'https://ror.org/01e1qb944 Athira Pharma (United States)'), (11208, 'https://ror.org/01e1zk141', 'en', 1, 'https://ror.org/01e1zk141 Southern New Hampshire Services'), (11209, 'https://ror.org/01e2a5576', 'en', 1, 'https://ror.org/01e2a5576 Medical Center Hospital'), (11210, 'https://ror.org/01e3jga91', 'no_lang_code', 1, 'https://ror.org/01e3jga91 Exelixis (United States)'), (11211, 'https://ror.org/01e92na05', 'en', 1, 'https://ror.org/01e92na05 Frontier Science Foundation'), (11212, 'https://ror.org/01eaddk85', 'no_lang_code', 1, 'https://ror.org/01eaddk85 Selected Electronic Technologies (Germany)'), (11213, 'https://ror.org/01ec6j128', 'it', 1, 'https://ror.org/01ec6j128 La Forza del Silenzio'), (11214, 'https://ror.org/01edwz996', 'en', 1, 'https://ror.org/01edwz996 Brown County Public Health Department'), (11215, 'https://ror.org/01efz0w18', 'en', 1, 'https://ror.org/01efz0w18 Greater Kansas City Spinal Cord Injury Association'), (11216, 'https://ror.org/01eg6rs81', 'en', 1, 'https://ror.org/01eg6rs81 Aspen University'), (11217, 'https://ror.org/01egf3y42', 'no_lang_code', 1, 'https://ror.org/01egf3y42 Technikon (Austria)'), (11218, 'https://ror.org/01ehv8p24', 'no_lang_code', 1, 'https://ror.org/01ehv8p24 Optel (Poland)'), (11219, 'https://ror.org/01ej02438', 'en', 1, 'https://ror.org/01ej02438 Florida Technical College'), (11220, 'https://ror.org/01ej5d124', 'pt', 1, 'https://ror.org/01ej5d124 Grupo Realizar'), (11221, 'https://ror.org/01ejfgc23', 'en', 1, 'https://ror.org/01ejfgc23 Ministry of Higher Education and Scientific Research Ministère de l''Enseignement supérieur et de la Recherche scientifique وزارة التعليم العالي والبحث العلمي'), (11222, 'https://ror.org/01en79h04', 'en', 1, 'https://ror.org/01en79h04 Sam Schmidt Paralysis Foundation'), (11223, 'https://ror.org/01ert7s69', 'en', 1, 'https://ror.org/01ert7s69 Orpheus Chamber Orchestra'), (11224, 'https://ror.org/01exe5p59', 'en', 1, 'https://ror.org/01exe5p59 Eastern Oregon Center for Independent Living'), (11225, 'https://ror.org/01exzfh46', 'en', 1, 'https://ror.org/01exzfh46 Can Do Multiple Sclerosis'), (11226, 'https://ror.org/01ey27e46', 'no_lang_code', 1, 'https://ror.org/01ey27e46 Biopac (United Kingdom)'), (11227, 'https://ror.org/01eycqy43', 'en', 1, 'https://ror.org/01eycqy43 Northwest Hospital'), (11228, 'https://ror.org/01eywxa39', 'en', 1, 'https://ror.org/01eywxa39 Lexington Medical Center'), (11229, 'https://ror.org/01ezk0q28', 'no_lang_code', 1, 'https://ror.org/01ezk0q28 Vitrociset (Italy)'), (11230, 'https://ror.org/01ezsr216', 'no_lang_code', 1, 'https://ror.org/01ezsr216 Monocrom (Spain)'), (11231, 'https://ror.org/01f0ynj82', 'en', 1, 'https://ror.org/01f0ynj82 Erie Neighborhood House'), (11232, 'https://ror.org/01f2jad04', 'no_lang_code', 1, 'https://ror.org/01f2jad04 Saarstahl (Germany)'), (11233, 'https://ror.org/01f6f4a30', 'no_lang_code', 1, 'https://ror.org/01f6f4a30 Capital Meeting Planning'), (11234, 'https://ror.org/01f7q1k19', 'no_lang_code', 1, 'https://ror.org/01f7q1k19 DKI Plast (Denmark)'), (11235, 'https://ror.org/01f9mc681', 'en', 1, 'https://ror.org/01f9mc681 Vienna Science and Technology Fund Wiener Wissenschafts Forschungs und Technologiefonds'), (11236, 'https://ror.org/01fafrd63', 'no_lang_code', 1, 'https://ror.org/01fafrd63 Oclaro (United Kingdom)'), (11237, 'https://ror.org/01famp260', 'no_lang_code', 1, 'https://ror.org/01famp260 BOC (Austria)'), (11238, 'https://ror.org/01farpt19', 'no_lang_code', 1, 'https://ror.org/01farpt19 Danaher (France)'), (11239, 'https://ror.org/01faxnv78', 'no_lang_code', 1, 'https://ror.org/01faxnv78 Tractebel Engineering (Belgium)'), (11240, 'https://ror.org/01fb4jv08', 'en', 1, 'https://ror.org/01fb4jv08 Guam Communications Network'), (11241, 'https://ror.org/01feaq157', 'en', 1, 'https://ror.org/01feaq157 Cathedral Health Services'), (11242, 'https://ror.org/01ffb7n67', 'no_lang_code', 1, 'https://ror.org/01ffb7n67 Outokumpu (Finland)'), (11243, 'https://ror.org/01ffncx77', 'en', 1, 'https://ror.org/01ffncx77 United Teen Equality Center'), (11244, 'https://ror.org/01fmdar07', 'nl', 1, 'https://ror.org/01fmdar07 Borstkankervereniging Nederland Breast Cancer Association Netherlands'), (11245, 'https://ror.org/01fmj4m76', 'no_lang_code', 1, 'https://ror.org/01fmj4m76 Urban Tilth'), (11246, 'https://ror.org/01fn48q65', 'en', 1, 'https://ror.org/01fn48q65 Independent Centre for Privacy Protection Unabhängige Landeszentrum für Datenschutz Schleswig-Holstein'), (11247, 'https://ror.org/01fnp9w45', 'no_lang_code', 1, 'https://ror.org/01fnp9w45 Calzoni (Italy)'), (11248, 'https://ror.org/01fpn5341', 'en', 1, 'https://ror.org/01fpn5341 Lady of the Sea General Hospital'), (11249, 'https://ror.org/01fqgdy56', 'en', 1, 'https://ror.org/01fqgdy56 Baikov Institute of Metallurgy and Materials Science Федеральное государственное бюджетное учреждение науки Институт металлургии и материаловедения им. А.А. Байкова Российской академии наук'), (11250, 'https://ror.org/01fqrb109', 'en', 1, 'https://ror.org/01fqrb109 Zhejiang Energy Research Institute 浙江省能源研究所'), (11251, 'https://ror.org/01fqs5523', 'en', 1, 'https://ror.org/01fqs5523 Pisgah Astronomical Research Institute'), (11252, 'https://ror.org/01fr3an09', 'no_lang_code', 1, 'https://ror.org/01fr3an09 BMT Group (Netherlands)'), (11253, 'https://ror.org/01fsfar50', 'no_lang_code', 1, 'https://ror.org/01fsfar50 Ascepion Pharmaceuticals (China)'), (11254, 'https://ror.org/01ft5dd14', 'en', 1, 'https://ror.org/01ft5dd14 Netaji Subhas Chandra Bose Cancer Research Institute'), (11255, 'https://ror.org/01fv2rv38', 'no_lang_code', 1, 'https://ror.org/01fv2rv38 Sigma Orionis (France)'), (11256, 'https://ror.org/01fv8s797', 'no_lang_code', 1, 'https://ror.org/01fv8s797 JobTrain'), (11257, 'https://ror.org/01fvg1z63', 'en', 1, 'https://ror.org/01fvg1z63 Joint Muscle Medical Care and Research Institute'), (11258, 'https://ror.org/01fx4eg39', 'en', 1, 'https://ror.org/01fx4eg39 HCG Cancer Hospital ಹೆಲ್ತ್ಕೇರ್ ಗ್ಲೋಬಲ್ ಎಂಟರ್ಪ್ರೈಸಸ್ ಲಿಮಿಟೆಡ್'), (11259, 'https://ror.org/01fx7my02', 'no_lang_code', 1, 'https://ror.org/01fx7my02 Contax (United States)'), (11260, 'https://ror.org/01fyz1w35', 'en', 1, 'https://ror.org/01fyz1w35 Eastside Technical Center'), (11261, 'https://ror.org/01g02w781', 'en', 1, 'https://ror.org/01g02w781 Help Hope Live'), (11262, 'https://ror.org/01g5kcp58', 'en', 1, 'https://ror.org/01g5kcp58 Rural Resources'), (11263, 'https://ror.org/01g5vqq31', 'es', 1, 'https://ror.org/01g5vqq31 FundAyuda'), (11264, 'https://ror.org/01g77xz63', 'no_lang_code', 1, 'https://ror.org/01g77xz63 Falcon Genomics (United States)'), (11265, 'https://ror.org/01g7b8d30', 'en', 1, 'https://ror.org/01g7b8d30 Journey''s End Refugee Services'), (11266, 'https://ror.org/01gcdtm70', 'fr', 1, 'https://ror.org/01gcdtm70 Institut Scientifique de Service Public'), (11267, 'https://ror.org/01ge84v72', 'en', 1, 'https://ror.org/01ge84v72 Climate Central'), (11268, 'https://ror.org/01ge9a191', 'no_lang_code', 1, 'https://ror.org/01ge9a191 iCo Therapeutics (Canada)'), (11269, 'https://ror.org/01gf2gn61', 'en', 1, 'https://ror.org/01gf2gn61 VASCOG Society'), (11270, 'https://ror.org/01gg7p150', 'en', 1, 'https://ror.org/01gg7p150 CARE Canada'), (11271, 'https://ror.org/01ghh2407', 'no_lang_code', 1, 'https://ror.org/01ghh2407 Hubble Telemedical (United States)'), (11272, 'https://ror.org/01gjav456', 'no_lang_code', 1, 'https://ror.org/01gjav456 Alluvium Biosciences (United States)'), (11273, 'https://ror.org/01gjr8a79', 'no_lang_code', 1, 'https://ror.org/01gjr8a79 Eutema Technology Management'), (11274, 'https://ror.org/01gjxc467', 'no_lang_code', 1, 'https://ror.org/01gjxc467 Cognisense Labs (United States)'), (11275, 'https://ror.org/01gk6p474', 'no_lang_code', 1, 'https://ror.org/01gk6p474 Martel'), (11276, 'https://ror.org/01gkt5r55', 'no_lang_code', 1, 'https://ror.org/01gkt5r55 Ropardo (Romania)'), (11277, 'https://ror.org/01gmgva47', 'en', 1, 'https://ror.org/01gmgva47 Autoimmunity Research Foundation'), (11278, 'https://ror.org/01gpc1r56', 'en', 1, 'https://ror.org/01gpc1r56 H.Buniatian Institute of Biochemistry'), (11279, 'https://ror.org/01gq5z667', 'no_lang_code', 1, 'https://ror.org/01gq5z667 BYG Systems (United Kingdom)'), (11280, 'https://ror.org/01gt37935', 'no_lang_code', 1, 'https://ror.org/01gt37935 Linnet Biopharmaceuticals (United States)'), (11281, 'https://ror.org/01gtk7283', 'en', 1, 'https://ror.org/01gtk7283 DC Cancer Consortium'), (11282, 'https://ror.org/01gtybw70', 'en', 1, 'https://ror.org/01gtybw70 Georgia Regents Medical Center'), (11283, 'https://ror.org/01gw93c31', 'en', 1, 'https://ror.org/01gw93c31 Mashantucket Pequot Tribal Nation'), (11284, 'https://ror.org/01gxjn621', 'no_lang_code', 1, 'https://ror.org/01gxjn621 Prolong Pharmaceuticals (United States)'), (11285, 'https://ror.org/01gxqm489', 'en', 1, 'https://ror.org/01gxqm489 Community Involved in Sustaining Agriculture'), (11286, 'https://ror.org/01gxrtw55', 'en', 1, 'https://ror.org/01gxrtw55 E.O. Paton Electric Welding Institute Інститут електрозварювання ім.Є.О.Патона'), (11287, 'https://ror.org/01gxyxc07', 'no_lang_code', 1, 'https://ror.org/01gxyxc07 Hoerbiger (Sweden)'), (11288, 'https://ror.org/01gy3es16', 'no_lang_code', 1, 'https://ror.org/01gy3es16 Asher Consulting (United States)'), (11289, 'https://ror.org/01gy41z17', 'no_lang_code', 1, 'https://ror.org/01gy41z17 Compliment Corporation (United States)'), (11290, 'https://ror.org/01gykcx29', 'en', 1, 'https://ror.org/01gykcx29 Minnesota Association of Deaf Citizens'), (11291, 'https://ror.org/01gykgk63', 'no_lang_code', 1, 'https://ror.org/01gykgk63 Rio Tinto (France)'), (11292, 'https://ror.org/01gyrte54', 'en', 1, 'https://ror.org/01gyrte54 Jobs for the Future'), (11293, 'https://ror.org/01gyw2394', 'no_lang_code', 1, 'https://ror.org/01gyw2394 Gestione Sistemi per l’Informatica (Italy)'), (11294, 'https://ror.org/01h2bfe37', 'en', 1, 'https://ror.org/01h2bfe37 Chocowinity Primary School'), (11295, 'https://ror.org/01h4rpv44', 'no_lang_code', 1, 'https://ror.org/01h4rpv44 Ericsson (Netherlands)'), (11296, 'https://ror.org/01h5zkn46', 'no_lang_code', 1, 'https://ror.org/01h5zkn46 Teledyne Technologies (Denmark)'), (11297, 'https://ror.org/01h8my706', 'no_lang_code', 1, 'https://ror.org/01h8my706 Ascometal (France)'), (11298, 'https://ror.org/01h8mzz32', 'en', 1, 'https://ror.org/01h8mzz32 Institute of Metals and Technology Inštitut za Kovinske Materiale in Tehnologije'), (11299, 'https://ror.org/01hahmf81', 'en', 1, 'https://ror.org/01hahmf81 Clear Creek Independent School District'), (11300, 'https://ror.org/01hb96w20', 'en', 1, 'https://ror.org/01hb96w20 TuBerculosis Vaccine Initiative'), (11301, 'https://ror.org/01hcxsy48', 'no_lang_code', 1, 'https://ror.org/01hcxsy48 Sony (Germany)'), (11302, 'https://ror.org/01hec2e25', 'no_lang_code', 1, 'https://ror.org/01hec2e25 Westscape Wholesale Nursery (United States)'), (11303, 'https://ror.org/01herdm14', 'en', 1, 'https://ror.org/01herdm14 Marian University - Wisconsin'), (11304, 'https://ror.org/01hfgte37', 'en', 1, 'https://ror.org/01hfgte37 Eastern Cooperative Oncology Group'), (11305, 'https://ror.org/01hfq7m30', 'en', 1, 'https://ror.org/01hfq7m30 Capital District Center for Independence'), (11306, 'https://ror.org/01hk1xf64', 'en', 1, 'https://ror.org/01hk1xf64 Central Connecticut Regional Planning Agency'), (11307, 'https://ror.org/01hng0h35', 'no_lang_code', 1, 'https://ror.org/01hng0h35 Teletel (Greece)'), (11308, 'https://ror.org/01hny1h96', 'no_lang_code', 1, 'https://ror.org/01hny1h96 Efkon (Austria)'), (11309, 'https://ror.org/01hpbhh43', 'es', 1, 'https://ror.org/01hpbhh43 Fundación de Estudios de Economía Aplicada'), (11310, 'https://ror.org/01hsm6g97', 'en', 1, 'https://ror.org/01hsm6g97 CARE International in Vietnam'), (11311, 'https://ror.org/01htf3d94', 'no_lang_code', 1, 'https://ror.org/01htf3d94 SarTec (United States)'), (11312, 'https://ror.org/01hv1yg09', 'en', 1, 'https://ror.org/01hv1yg09 Albany Research Institute'), (11313, 'https://ror.org/01hv5h172', 'en', 1, 'https://ror.org/01hv5h172 Pfeiffer Medical Center'), (11314, 'https://ror.org/01hvt7y65', 'no_lang_code', 1, 'https://ror.org/01hvt7y65 Texinov (France)'), (11315, 'https://ror.org/01hz5c771', 'en', 1, 'https://ror.org/01hz5c771 Institute of Geography Федеральное государственное бюджетное учреждение науки Институт географии Российской Академии наук'), (11316, 'https://ror.org/01j043w21', 'en', 1, 'https://ror.org/01j043w21 Mitochondria Research and Medicine Society'), (11317, 'https://ror.org/01j145b31', 'no_lang_code', 1, 'https://ror.org/01j145b31 Mesurex (Spain)'), (11318, 'https://ror.org/01j39zs89', 'no_lang_code', 1, 'https://ror.org/01j39zs89 GVS (Italy)'), (11319, 'https://ror.org/01j3vsz59', 'en', 1, 'https://ror.org/01j3vsz59 Atlanta Diabetes Associates'), (11320, 'https://ror.org/01j4j8g47', 'en', 1, 'https://ror.org/01j4j8g47 Dalton State College'), (11321, 'https://ror.org/01j5c7b20', 'en', 1, 'https://ror.org/01j5c7b20 Potomac Massage Training Institute'), (11322, 'https://ror.org/01j5y9c13', 'en', 1, 'https://ror.org/01j5y9c13 Dwight School'), (11323, 'https://ror.org/01j5zzr31', 'en', 1, 'https://ror.org/01j5zzr31 Open Group'), (11324, 'https://ror.org/01j8e0w91', 'no_lang_code', 1, 'https://ror.org/01j8e0w91 SuGanit Systems (United States)'), (11325, 'https://ror.org/01j8hda60', 'no_lang_code', 1, 'https://ror.org/01j8hda60 Native American Cancer Initiatives (United States)'), (11326, 'https://ror.org/01j9a7z15', 'no_lang_code', 1, 'https://ror.org/01j9a7z15 Nutrient Recovery and Upcycling (United States)'), (11327, 'https://ror.org/01j9p4g53', 'en', 1, 'https://ror.org/01j9p4g53 Children''s Home and Aid'), (11328, 'https://ror.org/01jaw0925', 'en', 1, 'https://ror.org/01jaw0925 Mount Sinai Queens'), (11329, 'https://ror.org/01je1cm35', 'en', 1, 'https://ror.org/01je1cm35 Sofia Energy Centre'), (11330, 'https://ror.org/01jejyf30', 'no_lang_code', 1, 'https://ror.org/01jejyf30 Exquadrum (United States)'), (11331, 'https://ror.org/01jemb993', 'en', 1, 'https://ror.org/01jemb993 Semenov Institute of Chemical Physics Институт химической физики имени Н. Н. Семёнова'), (11332, 'https://ror.org/01jgbmq74', 'no_lang_code', 1, 'https://ror.org/01jgbmq74 AskBio (United States)'), (11333, 'https://ror.org/01jj7aa83', 'no_lang_code', 1, 'https://ror.org/01jj7aa83 Environmental Protection Engineering (Greece)'), (11334, 'https://ror.org/01jmfgs20', 'en', 1, 'https://ror.org/01jmfgs20 Baltimore Healthy Start'), (11335, 'https://ror.org/01jnqsa93', 'en', 1, 'https://ror.org/01jnqsa93 CAMC Health Education and Research Institute'), (11336, 'https://ror.org/01jpp1g73', 'no_lang_code', 1, 'https://ror.org/01jpp1g73 Sulzer (Switzerland)'), (11337, 'https://ror.org/01jpwx826', 'no_lang_code', 1, 'https://ror.org/01jpwx826 Greencore (Ireland)'), (11338, 'https://ror.org/01jq9eh12', 'en', 1, 'https://ror.org/01jq9eh12 Magnesium Research Institute'), (11339, 'https://ror.org/01jqc8e14', 'en', 1, 'https://ror.org/01jqc8e14 Kalpana Chawla Government Medical College and Hospital कल्पना चावला गवर्नमेंट मेडिकल कॉलेज व अस्पताल'), (11340, 'https://ror.org/01jsfqj27', 'en', 1, 'https://ror.org/01jsfqj27 IPM Institute of North America'), (11341, 'https://ror.org/01jt0gz40', 'no_lang_code', 1, 'https://ror.org/01jt0gz40 UmbraGroup (Italy)'), (11342, 'https://ror.org/01jtjy335', 'en', 1, 'https://ror.org/01jtjy335 Equal Hope'), (11343, 'https://ror.org/01jv1zx50', 'it', 1, 'https://ror.org/01jv1zx50 Istituto Superiore delle Comunicazioni e delle Tecnologie Dell''Informazione'), (11344, 'https://ror.org/01jw1z094', 'en', 1, 'https://ror.org/01jw1z094 Asheboro City Schools'), (11345, 'https://ror.org/01jwz9x72', 'en', 1, 'https://ror.org/01jwz9x72 North Shore Child & Family Guidance Center'), (11346, 'https://ror.org/01jxhxv92', 'no_lang_code', 1, 'https://ror.org/01jxhxv92 CSL (United States)'), (11347, 'https://ror.org/01jy49h31', 'no_lang_code', 1, 'https://ror.org/01jy49h31 Autoliv (Sweden)'), (11348, 'https://ror.org/01jyh4590', 'no_lang_code', 1, 'https://ror.org/01jyh4590 Solvay (France)'), (11349, 'https://ror.org/01k0v6g02', 'no_lang_code', 1, 'https://ror.org/01k0v6g02 SURFsara (Netherlands) Stichting Academisch Rekencentrum Amsterdam'), (11350, 'https://ror.org/01k0w6g34', 'no_lang_code', 1, 'https://ror.org/01k0w6g34 NeuroHealing Pharmaceuticals (United States)'), (11351, 'https://ror.org/01k164012', 'en', 1, 'https://ror.org/01k164012 Canadian Centre on Disability Studies'), (11352, 'https://ror.org/01k1b2g25', 'en', 1, 'https://ror.org/01k1b2g25 Alberta Cancer Foundation'), (11353, 'https://ror.org/01k2xa905', 'en', 1, 'https://ror.org/01k2xa905 Integrate Autism Employment Advisors'), (11354, 'https://ror.org/01k379e18', 'no_lang_code', 1, 'https://ror.org/01k379e18 Nutrasorb (United States)'), (11355, 'https://ror.org/01k4vzb64', 'no_lang_code', 1, 'https://ror.org/01k4vzb64 Endo Pharmaceuticals (United States)'), (11356, 'https://ror.org/01k5bte77', 'en', 1, 'https://ror.org/01k5bte77 Marshall Medical Center'), (11357, 'https://ror.org/01k6bda33', 'no_lang_code', 1, 'https://ror.org/01k6bda33 Colibri (Netherlands)'), (11358, 'https://ror.org/01k7b2e64', 'en', 1, 'https://ror.org/01k7b2e64 AdMeTech Foundation'), (11359, 'https://ror.org/01k9hhd91', 'no_lang_code', 1, 'https://ror.org/01k9hhd91 TÜV SÜD (Germany)'), (11360, 'https://ror.org/01kc31v38', 'no_lang_code', 1, 'https://ror.org/01kc31v38 Exact Sciences (United States)'), (11361, 'https://ror.org/01kdb6822', 'en', 1, 'https://ror.org/01kdb6822 Corvallis Environmental Center'), (11362, 'https://ror.org/01kg1j482', 'no_lang_code', 1, 'https://ror.org/01kg1j482 Geotek (United Kingdom)'), (11363, 'https://ror.org/01kj2rq74', 'no_lang_code', 1, 'https://ror.org/01kj2rq74 Internal Systems Limited (United Kingdom)'), (11364, 'https://ror.org/01kjj9155', 'en', 1, 'https://ror.org/01kjj9155 Baton Rouge General Foundation'), (11365, 'https://ror.org/01kjqa704', 'no_lang_code', 1, 'https://ror.org/01kjqa704 B''nai Jeshurun'), (11366, 'https://ror.org/01kkw3w51', 'no_lang_code', 1, 'https://ror.org/01kkw3w51 Grupo Inmark'), (11367, 'https://ror.org/01kmgjw27', 'en', 1, 'https://ror.org/01kmgjw27 Children''s Home Association of Illinois'), (11368, 'https://ror.org/01knh8k33', 'no_lang_code', 1, 'https://ror.org/01knh8k33 Madatech'), (11369, 'https://ror.org/01knqhy07', 'en', 1, 'https://ror.org/01knqhy07 New Pisgah Community Service Organization'), (11370, 'https://ror.org/01knvr232', 'en', 1, 'https://ror.org/01knvr232 Leonia United'), (11371, 'https://ror.org/01kpm1136', 'en', 1, 'https://ror.org/01kpm1136 Research Institute for Endocrine Sciences پژوهشکده علوم غدد درون ریز و متابولیسم'), (11372, 'https://ror.org/01kstvd89', 'no_lang_code', 1, 'https://ror.org/01kstvd89 Bio-Nucleonics (United States)'), (11373, 'https://ror.org/01ktsbe92', 'no_lang_code', 1, 'https://ror.org/01ktsbe92 HJ Science and Technology (United States)'), (11374, 'https://ror.org/01ky55e50', 'no_lang_code', 1, 'https://ror.org/01ky55e50 Lagardère (France)'), (11375, 'https://ror.org/01kydft86', 'no_lang_code', 1, 'https://ror.org/01kydft86 Teamwork Technology (Netherlands)'), (11376, 'https://ror.org/01kys6733', 'en', 1, 'https://ror.org/01kys6733 Danish Emergency Management Agency'), (11377, 'https://ror.org/01kze5v62', 'no_lang_code', 1, 'https://ror.org/01kze5v62 WWOZ'), (11378, 'https://ror.org/01kzrk477', 'no_lang_code', 1, 'https://ror.org/01kzrk477 KPN (Netherlands)'), (11379, 'https://ror.org/01m03eg97', 'en', 1, 'https://ror.org/01m03eg97 Double ARC'), (11380, 'https://ror.org/01m1s8509', 'no_lang_code', 1, 'https://ror.org/01m1s8509 Chaperone Therapeutics (United States)'), (11381, 'https://ror.org/01m3xga44', 'en', 1, 'https://ror.org/01m3xga44 Evergreen Community Charter School'), (11382, 'https://ror.org/01m417e54', 'en', 1, 'https://ror.org/01m417e54 Indiana Cancer Consortium'), (11383, 'https://ror.org/01m693m08', 'no_lang_code', 1, 'https://ror.org/01m693m08 European Transonic Windtunnel (Germany)'), (11384, 'https://ror.org/01m7qnr31', 'es', 1, 'https://ror.org/01m7qnr31 Ente Vasco de la Energía'), (11385, 'https://ror.org/01m9n8h83', 'en', 1, 'https://ror.org/01m9n8h83 Bayhealth Foundation'), (11386, 'https://ror.org/01mbq8h61', 'en', 1, 'https://ror.org/01mbq8h61 Palm Beach Children''s Hospital'), (11387, 'https://ror.org/01mcasz62', 'en', 1, 'https://ror.org/01mcasz62 International Society for Biosafety Research'), (11388, 'https://ror.org/01mcqw380', 'en', 1, 'https://ror.org/01mcqw380 Institute of Hydroengineering Instytut Budownictwa Wodnego PAN'), (11389, 'https://ror.org/01mf77203', 'en', 1, 'https://ror.org/01mf77203 The Blue Hill Meteorological Observatory'), (11390, 'https://ror.org/01mff3b34', 'no_lang_code', 1, 'https://ror.org/01mff3b34 Sigmoid Pharma (Ireland)'), (11391, 'https://ror.org/01mfmr054', 'en', 1, 'https://ror.org/01mfmr054 Institute for Macromolecular Studies Istituto per lo Studio delle Macromolecole'), (11392, 'https://ror.org/01mgpv175', 'no_lang_code', 1, 'https://ror.org/01mgpv175 Novaphos (United States)'), (11393, 'https://ror.org/01mjpgb45', 'en', 1, 'https://ror.org/01mjpgb45 Native American Advocacy Program'), (11394, 'https://ror.org/01mk2vf40', 'no_lang_code', 1, 'https://ror.org/01mk2vf40 AgSquared (United States)'), (11395, 'https://ror.org/01mkbdh17', 'en', 1, 'https://ror.org/01mkbdh17 Columbia County Commission on Children and Families'), (11396, 'https://ror.org/01mpzhk41', 'no_lang_code', 1, 'https://ror.org/01mpzhk41 Subsea Technologies (United Kingdom)'), (11397, 'https://ror.org/01mr3bk23', 'no_lang_code', 1, 'https://ror.org/01mr3bk23 Transportes Inovação e Sistemas (Portugal)'), (11398, 'https://ror.org/01mrv7b35', 'en', 1, 'https://ror.org/01mrv7b35 Golisano Foundation'), (11399, 'https://ror.org/01ms40349', 'no_lang_code', 1, 'https://ror.org/01ms40349 Knowledge Centre for Agriculture'), (11400, 'https://ror.org/01mssdk07', 'no_lang_code', 1, 'https://ror.org/01mssdk07 Enterprise Science and Computing (United States)'), (11401, 'https://ror.org/01mv6bt66', 'no_lang_code', 1, 'https://ror.org/01mv6bt66 Chr. Hansen (Denmark)'), (11402, 'https://ror.org/01mvsby80', 'pt', 1, 'https://ror.org/01mvsby80 Agencia de Inovacao, Agência Nacional de Inovação'), (11403, 'https://ror.org/01myse432', 'en', 1, 'https://ror.org/01myse432 Cultivating Community'), (11404, 'https://ror.org/01myz2x40', 'en', 1, 'https://ror.org/01myz2x40 Akbaraly Foundation'), (11405, 'https://ror.org/01mzc3z63', 'en', 1, 'https://ror.org/01mzc3z63 Research Institute for Knowledge Systems'), (11406, 'https://ror.org/01n0jwg88', 'no_lang_code', 1, 'https://ror.org/01n0jwg88 Synapse (Spain)'), (11407, 'https://ror.org/01n1rg855', 'en', 1, 'https://ror.org/01n1rg855 Statistics Finland Statistikcentralen Tilastokeskus'), (11408, 'https://ror.org/01n2sky78', 'en', 1, 'https://ror.org/01n2sky78 Ovarian Cancer National Alliance'), (11409, 'https://ror.org/01n42m123', 'no_lang_code', 1, 'https://ror.org/01n42m123 Forschungsgesellschaft Kraftfahrwesen Aachen (Germany)'), (11410, 'https://ror.org/01n47re51', 'no_lang_code', 1, 'https://ror.org/01n47re51 Paragon (Greece)'), (11411, 'https://ror.org/01n71ry70', 'en', 1, 'https://ror.org/01n71ry70 CenterState Chamber of Commerce'), (11412, 'https://ror.org/01n7gem85', 'de', 1, 'https://ror.org/01n7gem85 Deutsche Nationalbibliothek German National Library'), (11413, 'https://ror.org/01n8cxz90', 'no_lang_code', 1, 'https://ror.org/01n8cxz90 Holland Institute of Traffic Technology'), (11414, 'https://ror.org/01naa4k48', 'no_lang_code', 1, 'https://ror.org/01naa4k48 Dunreidy Engneering (Ireland)'), (11415, 'https://ror.org/01nath242', 'en', 1, 'https://ror.org/01nath242 Joyce Theater'), (11416, 'https://ror.org/01nb7ex83', 'no_lang_code', 1, 'https://ror.org/01nb7ex83 Longevity Biotech (United States)'), (11417, 'https://ror.org/01nbx5962', 'en', 1, 'https://ror.org/01nbx5962 Blue Ridge Independent Living Center'), (11418, 'https://ror.org/01ncnk871', 'no_lang_code', 1, 'https://ror.org/01ncnk871 LNL Technology (Turkey)'), (11419, 'https://ror.org/01nf48187', 'en', 1, 'https://ror.org/01nf48187 Pike County Health Department'), (11420, 'https://ror.org/01nhjmy83', 'no_lang_code', 1, 'https://ror.org/01nhjmy83 Modern e Technologies (Lithuania)'), (11421, 'https://ror.org/01njr2r38', 'en', 1, 'https://ror.org/01njr2r38 Hurley Foundation'), (11422, 'https://ror.org/01nksd110', 'en', 1, 'https://ror.org/01nksd110 Euclid Network'), (11423, 'https://ror.org/01nm6em79', 'no_lang_code', 1, 'https://ror.org/01nm6em79 Philogen (Italy)'), (11424, 'https://ror.org/01nn5wh27', 'no_lang_code', 1, 'https://ror.org/01nn5wh27 Just Food (United States)'), (11425, 'https://ror.org/01npchg06', 'en', 1, 'https://ror.org/01npchg06 California Consortium of Addiction Programs and Professionals'), (11426, 'https://ror.org/01nq9yz29', 'no_lang_code', 1, 'https://ror.org/01nq9yz29 Inasco (Greece)'), (11427, 'https://ror.org/01nrn0142', 'en', 1, 'https://ror.org/01nrn0142 Bedford Research Foundation'), (11428, 'https://ror.org/01nwrs673', 'en', 1, 'https://ror.org/01nwrs673 Reset Therapeutics'), (11429, 'https://ror.org/01nx9mw61', 'no_lang_code', 1, 'https://ror.org/01nx9mw61 Space Hellas (Greece)'), (11430, 'https://ror.org/01nyatq71', 'en', 1, 'https://ror.org/01nyatq71 Institute of Molecular Biology and Pathology Istituto di Biologia e Patologia Molecolare'), (11431, 'https://ror.org/01nz9qm02', 'en', 1, 'https://ror.org/01nz9qm02 Genesis Foundation'), (11432, 'https://ror.org/01p2hdb49', 'en', 1, 'https://ror.org/01p2hdb49 Aquarium of the Pacific'), (11433, 'https://ror.org/01p3qv245', 'en', 1, 'https://ror.org/01p3qv245 HealthRight International'), (11434, 'https://ror.org/01p6hjg61', 'es', 1, 'https://ror.org/01p6hjg61 Fundación Ciencia and Vida'), (11435, 'https://ror.org/01p7r2f35', 'en', 1, 'https://ror.org/01p7r2f35 Athletes Joined Against Spondylitis'), (11436, 'https://ror.org/01p7z6793', 'en', 1, 'https://ror.org/01p7z6793 Children''s Cancer and Blood Foundation'), (11437, 'https://ror.org/01p89z653', 'no_lang_code', 1, 'https://ror.org/01p89z653 IMA Materialforschung und Anwendungstechnik'), (11438, 'https://ror.org/01p8br322', 'no_lang_code', 1, 'https://ror.org/01p8br322 Biomarker Strategies (United States)'), (11439, 'https://ror.org/01p8dnv11', 'no_lang_code', 1, 'https://ror.org/01p8dnv11 Israel Electric (Israel) חברת החשמל לישראל'), (11440, 'https://ror.org/01p8nr933', 'no_lang_code', 1, 'https://ror.org/01p8nr933 Clean Plus (United States)'), (11441, 'https://ror.org/01p9zxq79', 'en', 1, 'https://ror.org/01p9zxq79 Walla Walla Community College'), (11442, 'https://ror.org/01pabpn74', 'en', 1, 'https://ror.org/01pabpn74 Brickhouse Equestrian Center'), (11443, 'https://ror.org/01pbevv17', 'en', 1, 'https://ror.org/01pbevv17 Attogen Biomedical Research'), (11444, 'https://ror.org/01pcn0155', 'en', 1, 'https://ror.org/01pcn0155 Open Door Family Medical Center'), (11445, 'https://ror.org/01pge6c20', 'no_lang_code', 1, 'https://ror.org/01pge6c20 Vermicon (Germany)'), (11446, 'https://ror.org/01phpae37', 'en', 1, 'https://ror.org/01phpae37 Multidisciplinary Association for Psychedelic Studies'), (11447, 'https://ror.org/01phq2394', 'no_lang_code', 1, 'https://ror.org/01phq2394 JustGive'), (11448, 'https://ror.org/01pjwgv56', 'no_lang_code', 1, 'https://ror.org/01pjwgv56 Smart Material (Germany)'), (11449, 'https://ror.org/01pnrv279', 'hu', 1, 'https://ror.org/01pnrv279 Orszagos Kornyezetegeszsegugyi Intezet'), (11450, 'https://ror.org/01pq15308', 'de', 1, 'https://ror.org/01pq15308 Biochemisches Institut für Umweltcarcinogene'), (11451, 'https://ror.org/01ptc4g94', 'en', 1, 'https://ror.org/01ptc4g94 BlazeSports America'), (11452, 'https://ror.org/01pvdcq70', 'no_lang_code', 1, 'https://ror.org/01pvdcq70 Precision BioSciences (United States)'), (11453, 'https://ror.org/01pvjb298', 'fr', 1, 'https://ror.org/01pvjb298 Centre Interprofessionnel de Techniques d''Études de la Pollution Atmosphérique'), (11454, 'https://ror.org/01pww5j30', 'no_lang_code', 1, 'https://ror.org/01pww5j30 Tyrolit (Austria)'), (11455, 'https://ror.org/01pxre019', 'en', 1, 'https://ror.org/01pxre019 Epilepsy Foundation'), (11456, 'https://ror.org/01pz08h78', 'no_lang_code', 1, 'https://ror.org/01pz08h78 Innovation Pathways'), (11457, 'https://ror.org/01pz6j040', 'no_lang_code', 1, 'https://ror.org/01pz6j040 Wood Group Kenny'), (11458, 'https://ror.org/01q1eja83', 'en', 1, 'https://ror.org/01q1eja83 Treasure Valley Community College'), (11459, 'https://ror.org/01q1paq98', 'no_lang_code', 1, 'https://ror.org/01q1paq98 Avanti (United Kingdom)'), (11460, 'https://ror.org/01q24qh92', 'en', 1, 'https://ror.org/01q24qh92 Ben Archer Health Centers'), (11461, 'https://ror.org/01q2q9h07', 'no_lang_code', 1, 'https://ror.org/01q2q9h07 International Mining Consultants'), (11462, 'https://ror.org/01q3fhc22', 'en', 1, 'https://ror.org/01q3fhc22 Delaware Department of Education'), (11463, 'https://ror.org/01q3p8f34', 'no_lang_code', 1, 'https://ror.org/01q3p8f34 Inflammatory Response Research (United States)'), (11464, 'https://ror.org/01q3zpq21', 'en', 1, 'https://ror.org/01q3zpq21 Ibis Reproductive Health'), (11465, 'https://ror.org/01q61vc37', 'no_lang_code', 1, 'https://ror.org/01q61vc37 Devan (Portugal)'), (11466, 'https://ror.org/01q8k8p90', 'en', 1, 'https://ror.org/01q8k8p90 Cyprus Institute'), (11467, 'https://ror.org/01q97y624', 'en', 1, 'https://ror.org/01q97y624 Sea Europe'), (11468, 'https://ror.org/01q9b3c10', 'no_lang_code', 1, 'https://ror.org/01q9b3c10 COMHAR'), (11469, 'https://ror.org/01q9g5r39', 'fr', 1, 'https://ror.org/01q9g5r39 Réseau Africain pour le Développement Intégré'), (11470, 'https://ror.org/01qa6hr76', 'en', 1, 'https://ror.org/01qa6hr76 Institute for Clinical Social Work'), (11471, 'https://ror.org/01qavh626', 'en', 1, 'https://ror.org/01qavh626 Diocese of Lansing'), (11472, 'https://ror.org/01qben656', 'en', 1, 'https://ror.org/01qben656 Global Opportunities Unlimited'), (11473, 'https://ror.org/01qc5zk84', 'no_lang_code', 1, 'https://ror.org/01qc5zk84 Chulabhorn Hospital โรงพยาบาลจุฬาภรณ์'), (11474, 'https://ror.org/01qckt681', 'en', 1, 'https://ror.org/01qckt681 Rural Community Development Resources'), (11475, 'https://ror.org/01qd5ms12', 'no_lang_code', 1, 'https://ror.org/01qd5ms12 Titan Cement (Greece) Όμιλος Τσιμέντων Τιτάν'), (11476, 'https://ror.org/01qe7ag50', 'no_lang_code', 1, 'https://ror.org/01qe7ag50 Euroimmun Medizinische Labordiagnostika (Germany)'), (11477, 'https://ror.org/01qeqe711', 'pt', 1, 'https://ror.org/01qeqe711 Fundação do Câncer'), (11478, 'https://ror.org/01qf41w60', 'en', 1, 'https://ror.org/01qf41w60 European Small Hydropower Association'), (11479, 'https://ror.org/01qh9gp70', 'en', 1, 'https://ror.org/01qh9gp70 Partnership for Health Analytic Research'), (11480, 'https://ror.org/01qj1sq68', 'en', 1, 'https://ror.org/01qj1sq68 Center for Diagnosis and Research on Alzheimer''s Disease Centre Diagnostique & Recherche en Alzheimer'), (11481, 'https://ror.org/01qk1bx90', 'no_lang_code', 1, 'https://ror.org/01qk1bx90 Environics Oy (Finland)'), (11482, 'https://ror.org/01qkn1y38', 'no_lang_code', 1, 'https://ror.org/01qkn1y38 Deutsche Telekom (Spain)'), (11483, 'https://ror.org/01qm6x409', 'no_lang_code', 1, 'https://ror.org/01qm6x409 Esbensen Consulting Engineers (Denmark)'), (11484, 'https://ror.org/01qn2q426', 'no_lang_code', 1, 'https://ror.org/01qn2q426 FirstString Research (United States)'), (11485, 'https://ror.org/01qn49q19', 'no_lang_code', 1, 'https://ror.org/01qn49q19 Magillem Design Services'), (11486, 'https://ror.org/01qngz494', 'no_lang_code', 1, 'https://ror.org/01qngz494 Digital Development Communications International (United States)'), (11487, 'https://ror.org/01qp3cj59', 'en', 1, 'https://ror.org/01qp3cj59 International Network for Cancer Treatment and Research'), (11488, 'https://ror.org/01qqbs339', 'en', 1, 'https://ror.org/01qqbs339 Chicago Child Care Society'), (11489, 'https://ror.org/01qr8rz09', 'en', 1, 'https://ror.org/01qr8rz09 Lori Arquilla Andersen Foundation'), (11490, 'https://ror.org/01qtasp15', 'en', 1, 'https://ror.org/01qtasp15 European Southern Observatory Europäische Südsternwarte'), (11491, 'https://ror.org/01qv87150', 'en', 1, 'https://ror.org/01qv87150 European School of Haematology'), (11492, 'https://ror.org/01qxbf653', 'no_lang_code', 1, 'https://ror.org/01qxbf653 Insects Limited (United States)'), (11493, 'https://ror.org/01qxm2j98', 'en', 1, 'https://ror.org/01qxm2j98 Institute of Agrophysics, Polish Academy of Sciences'), (11494, 'https://ror.org/01qyx9v32', 'no_lang_code', 1, 'https://ror.org/01qyx9v32 Prairie Gold (United States)'), (11495, 'https://ror.org/01qz23849', 'en', 1, 'https://ror.org/01qz23849 Center for Wellness and Achievement in Education'), (11496, 'https://ror.org/01r0ge295', 'en', 1, 'https://ror.org/01r0ge295 John F. Kennedy Memorial Foundation'), (11497, 'https://ror.org/01r23yy10', 'sk', 1, 'https://ror.org/01r23yy10 Soil Science and Conservation Research Institute Výskumný Ústav Pôdoznalectva a Ochrany Pôdy'), (11498, 'https://ror.org/01r2apt44', 'no_lang_code', 1, 'https://ror.org/01r2apt44 Grace (Germany)'), (11499, 'https://ror.org/01r2j1v82', 'en', 1, 'https://ror.org/01r2j1v82 Ministry of State Ministère d''État'), (11500, 'https://ror.org/01r2tv445', 'no_lang_code', 1, 'https://ror.org/01r2tv445 Annam Biosciences (United States)'), (11501, 'https://ror.org/01r3hzs43', 'es', 1, 'https://ror.org/01r3hzs43 Instituto de la Memoria Depresión y Enfermedades de Riesgo'), (11502, 'https://ror.org/01r4g9k61', 'no_lang_code', 1, 'https://ror.org/01r4g9k61 Hewlett-Packard (Italy)'), (11503, 'https://ror.org/01r5d6p07', 'no_lang_code', 1, 'https://ror.org/01r5d6p07 Nederlandse Gasunie (Netherlands)'), (11504, 'https://ror.org/01rcprz82', 'no_lang_code', 1, 'https://ror.org/01rcprz82 Tea Spot (United States)'), (11505, 'https://ror.org/01rd6m198', 'en', 1, 'https://ror.org/01rd6m198 BioFact Environmental Health Research Center'), (11506, 'https://ror.org/01resg468', 'no_lang_code', 1, 'https://ror.org/01resg468 Nokia (Netherlands)'), (11507, 'https://ror.org/01rf9hd69', 'en', 1, 'https://ror.org/01rf9hd69 Healthy African American Families II'), (11508, 'https://ror.org/01rfsrc09', 'no_lang_code', 1, 'https://ror.org/01rfsrc09 Evektor (Czechia)'), (11509, 'https://ror.org/01rgnfy66', 'fi', 1, 'https://ror.org/01rgnfy66 Heureka'), (11510, 'https://ror.org/01rje5224', 'en', 1, 'https://ror.org/01rje5224 Marian Regional Medical Center'), (11511, 'https://ror.org/01rkw5k87', 'no_lang_code', 1, 'https://ror.org/01rkw5k87 Kerntechnische Hilfsdienst (Germany)'), (11512, 'https://ror.org/01rnsc454', 'no_lang_code', 1, 'https://ror.org/01rnsc454 Sefar (Switzerland)'), (11513, 'https://ror.org/01rnvev51', 'it', 1, 'https://ror.org/01rnvev51 Fondazione Politecnico di Milano'), (11514, 'https://ror.org/01rp7pv55', 'no_lang_code', 1, 'https://ror.org/01rp7pv55 Security Technology Competence Centre'), (11515, 'https://ror.org/01rprk677', 'en', 1, 'https://ror.org/01rprk677 First Descents'), (11516, 'https://ror.org/01rqg5073', 'no_lang_code', 1, 'https://ror.org/01rqg5073 BioRealm (United States)'), (11517, 'https://ror.org/01rt1dv70', 'no_lang_code', 1, 'https://ror.org/01rt1dv70 Lionex (Germany)'), (11518, 'https://ror.org/01rw6jj79', 'no_lang_code', 1, 'https://ror.org/01rw6jj79 Lighting Innovation (United States)'), (11519, 'https://ror.org/01rwphz66', 'en', 1, 'https://ror.org/01rwphz66 National Academy of Sciences of the Republic of Kazakhstan Национальная академия наук Казахстана Қазақстан Республикасының Ұлттық ғылым академиясы'), (11520, 'https://ror.org/01rx0vn38', 'en', 1, 'https://ror.org/01rx0vn38 Ministry of Transport Samferdselsdepartementet Samferdsledepartementet'), (11521, 'https://ror.org/01rxpfa84', 'en', 1, 'https://ror.org/01rxpfa84 IndependenceFirst'), (11522, 'https://ror.org/01rxwr703', 'en', 1, 'https://ror.org/01rxwr703 Cultural Heritage Agency of Netherlands Instituut Collectie Nederland'), (11523, 'https://ror.org/01ryyex45', 'no_lang_code', 1, 'https://ror.org/01ryyex45 NeurAccel Biosciences (United States)'), (11524, 'https://ror.org/01rz4nb07', 'en', 1, 'https://ror.org/01rz4nb07 Bureau fédéral du Plan Federal Planning Bureau Het Federaal Planbureau'), (11525, 'https://ror.org/01rzn6m24', 'en', 1, 'https://ror.org/01rzn6m24 Women''s Community Revitalization Project'), (11526, 'https://ror.org/01s1vhe62', 'en', 1, 'https://ror.org/01s1vhe62 International Alliance of ALS/MND Associations'), (11527, 'https://ror.org/01s383j21', 'en', 1, 'https://ror.org/01s383j21 Keiser University'), (11528, 'https://ror.org/01s3qp186', 'es', 1, 'https://ror.org/01s3qp186 Aragon Hydrogen Foundation Fundación Hidrógeno Aragón'), (11529, 'https://ror.org/01s4j6j10', 'no_lang_code', 1, 'https://ror.org/01s4j6j10 Process Systems Enterprise (United Kingdom)'), (11530, 'https://ror.org/01s5g3b18', 'de', 1, 'https://ror.org/01s5g3b18 Nova Institut'), (11531, 'https://ror.org/01s8feq26', 'no_lang_code', 1, 'https://ror.org/01s8feq26 KickinNutrition.TV (United States)'), (11532, 'https://ror.org/01s9pe276', 'en', 1, 'https://ror.org/01s9pe276 Affinity Medical Group'), (11533, 'https://ror.org/01sa63389', 'ro', 1, 'https://ror.org/01sa63389 Administraţia Naţională de Meteorologie'), (11534, 'https://ror.org/01sa7d916', 'no_lang_code', 1, 'https://ror.org/01sa7d916 Altium''s (Netherlands)'), (11535, 'https://ror.org/01sc2zj52', 'no_lang_code', 1, 'https://ror.org/01sc2zj52 Ardeje (France)'), (11536, 'https://ror.org/01sed6k96', 'no_lang_code', 1, 'https://ror.org/01sed6k96 Euram (United Kingdom)'), (11537, 'https://ror.org/01shjyx24', 'no_lang_code', 1, 'https://ror.org/01shjyx24 Cambridge Environmental Research Consultants (United Kingdom)'), (11538, 'https://ror.org/01sm7ww29', 'no_lang_code', 1, 'https://ror.org/01sm7ww29 Zenon (Greece)'), (11539, 'https://ror.org/01smpy304', 'no_lang_code', 1, 'https://ror.org/01smpy304 Connexios (India)'), (11540, 'https://ror.org/01sr61k19', 'es', 1, 'https://ror.org/01sr61k19 Instituto Catalán de Tecnología'), (11541, 'https://ror.org/01srqm736', 'en', 1, 'https://ror.org/01srqm736 Nia Association'), (11542, 'https://ror.org/01stake94', 'no_lang_code', 1, 'https://ror.org/01stake94 D2S International (Belgium)'), (11543, 'https://ror.org/01svwxb64', 'no_lang_code', 1, 'https://ror.org/01svwxb64 Rhea (Belgium)'), (11544, 'https://ror.org/01sydw166', 'en', 1, 'https://ror.org/01sydw166 Oklahoma Brain Tumor Foundation'), (11545, 'https://ror.org/01syn7y20', 'no_lang_code', 1, 'https://ror.org/01syn7y20 Stratec (Belgium)'), (11546, 'https://ror.org/01szw1r19', 'no_lang_code', 1, 'https://ror.org/01szw1r19 Pacific World Discovery (United States)'), (11547, 'https://ror.org/01t00dc98', 'en', 1, 'https://ror.org/01t00dc98 Aging in America'), (11548, 'https://ror.org/01t1g3y18', 'en', 1, 'https://ror.org/01t1g3y18 International Life Sciences Institute Europe'), (11549, 'https://ror.org/01t264m74', 'it', 1, 'https://ror.org/01t264m74 Istituto Nazionale per l''Assicurazione Contro gli Infortuni sul Lavoro'), (11550, 'https://ror.org/01t2cn246', 'en', 1, 'https://ror.org/01t2cn246 Asociatia pentru libertate si egalitate de gen Association for Liberty and Equality of Gender'), (11551, 'https://ror.org/01t3w2017', 'no_lang_code', 1, 'https://ror.org/01t3w2017 GrassRoots Biotechnology (United States)'), (11552, 'https://ror.org/01t6t6k62', 'no_lang_code', 1, 'https://ror.org/01t6t6k62 Quanta System (Italy)'), (11553, 'https://ror.org/01t9de358', 'en', 1, 'https://ror.org/01t9de358 Rocky Mountain College'), (11554, 'https://ror.org/01tbwpy88', 'en', 1, 'https://ror.org/01tbwpy88 Centre for European Security Strategies'), (11555, 'https://ror.org/01tbz5160', 'en', 1, 'https://ror.org/01tbz5160 National Nurses Association of Kenya'), (11556, 'https://ror.org/01tdsae39', 'no_lang_code', 1, 'https://ror.org/01tdsae39 Medtronic (Spain)'), (11557, 'https://ror.org/01tfkms29', 'no_lang_code', 1, 'https://ror.org/01tfkms29 Alfamicro (Portugal)'), (11558, 'https://ror.org/01thff661', 'no', 1, 'https://ror.org/01thff661 Nasjonalt Kunnskapssenter for Helsetjenesten Norwegian Knowledge Centre for the Health Services'), (11559, 'https://ror.org/01thy5064', 'no_lang_code', 1, 'https://ror.org/01thy5064 Biosensor (Italy)'), (11560, 'https://ror.org/01thz0w07', 'en', 1, 'https://ror.org/01thz0w07 Wessex Institute of Technology'), (11561, 'https://ror.org/01tndze11', 'no_lang_code', 1, 'https://ror.org/01tndze11 Multi-Duti Manufacturing (United States)'), (11562, 'https://ror.org/01trfzy92', 'nl', 1, 'https://ror.org/01trfzy92 Korps Landelijke Politiediensten National Police Services Agency'), (11563, 'https://ror.org/01tw0g194', 'es', 1, 'https://ror.org/01tw0g194 General Union of Workers Unión General de Trabajadores'), (11564, 'https://ror.org/01tx2ss52', 'en', 1, 'https://ror.org/01tx2ss52 European Center for Information and Communication Technologies'), (11565, 'https://ror.org/01txgmm25', 'es', 1, 'https://ror.org/01txgmm25 Instituto Canario de Ciencias Marinas'), (11566, 'https://ror.org/01txptp23', 'no_lang_code', 1, 'https://ror.org/01txptp23 Solartec (Czechia)'), (11567, 'https://ror.org/01txw1935', 'no_lang_code', 1, 'https://ror.org/01txw1935 DormaTarg (United States)'), (11568, 'https://ror.org/01v000k46', 'en', 1, 'https://ror.org/01v000k46 Alleghany County Schools'), (11569, 'https://ror.org/01v27sx82', 'en', 1, 'https://ror.org/01v27sx82 New Hellenic Radio, Internet and Television'), (11570, 'https://ror.org/01v28qr30', 'en', 1, 'https://ror.org/01v28qr30 Jazz Foundation of America'), (11571, 'https://ror.org/01v3dd888', 'en', 1, 'https://ror.org/01v3dd888 Uncommon Good'), (11572, 'https://ror.org/01v4tq883', 'en', 1, 'https://ror.org/01v4tq883 Florida A&M University - Florida State University College of Engineering'), (11573, 'https://ror.org/01v5dfh74', 'en', 1, 'https://ror.org/01v5dfh74 Community Teamwork'); INSERT INTO `rors` VALUES (11574, 'https://ror.org/01v5sfq52', 'en', 1, 'https://ror.org/01v5sfq52 Cigarette Butt Pollution Project'), (11575, 'https://ror.org/01v8y3819', 'no_lang_code', 1, 'https://ror.org/01v8y3819 Aries Scientific (United States)'), (11576, 'https://ror.org/01vajwv02', 'en', 1, 'https://ror.org/01vajwv02 Community Health and Emergency Services'), (11577, 'https://ror.org/01vaykv86', 'en', 1, 'https://ror.org/01vaykv86 Facial Plastics Surgery Associates'), (11578, 'https://ror.org/01vbm2c42', 'no_lang_code', 1, 'https://ror.org/01vbm2c42 Software Research and Development Consulting'), (11579, 'https://ror.org/01vc5az52', 'no_lang_code', 1, 'https://ror.org/01vc5az52 Kasiak Research (India)'), (11580, 'https://ror.org/01vetdz59', 'no_lang_code', 1, 'https://ror.org/01vetdz59 Klöckner (Germany)'), (11581, 'https://ror.org/01vjc3s29', 'no_lang_code', 1, 'https://ror.org/01vjc3s29 AOA Apparatebau Gauting (Germany)'), (11582, 'https://ror.org/01vkzj587', 'en', 1, 'https://ror.org/01vkzj587 Yerevan State Medical University Երևանի պետական բժշկական համալսարան'), (11583, 'https://ror.org/01vp8h012', 'no_lang_code', 1, 'https://ror.org/01vp8h012 Remote Sensing Systems (United States)'), (11584, 'https://ror.org/01vqw4208', 'no_lang_code', 1, 'https://ror.org/01vqw4208 Hope Afloat'), (11585, 'https://ror.org/01vrvwk03', 'en', 1, 'https://ror.org/01vrvwk03 Colby Community College'), (11586, 'https://ror.org/01vs9w702', 'no_lang_code', 1, 'https://ror.org/01vs9w702 Stora Enso (Finland)'), (11587, 'https://ror.org/01vv0xf90', 'en', 1, 'https://ror.org/01vv0xf90 Avalon Nature Preserve'), (11588, 'https://ror.org/01vw1d787', 'en', 1, 'https://ror.org/01vw1d787 Dorothy Jemison Foundation for Excellence'), (11589, 'https://ror.org/01vxknj13', 'no_lang_code', 1, 'https://ror.org/01vxknj13 ASML (Netherlands)'), (11590, 'https://ror.org/01vya7y20', 'en', 1, 'https://ror.org/01vya7y20 The Recovery Center'), (11591, 'https://ror.org/01w00gh50', 'no_lang_code', 1, 'https://ror.org/01w00gh50 Immunome (United States)'), (11592, 'https://ror.org/01w20ws49', 'en', 1, 'https://ror.org/01w20ws49 First Step Foundation'), (11593, 'https://ror.org/01w58mc13', 'it', 1, 'https://ror.org/01w58mc13 Federazione delle Associazioni Scientifiche e Tecniche'), (11594, 'https://ror.org/01w5cmk23', 'en', 1, 'https://ror.org/01w5cmk23 Lorain County Joint Vocational School'), (11595, 'https://ror.org/01w5zd681', 'no_lang_code', 1, 'https://ror.org/01w5zd681 Belgonucleaire (Belgium)'), (11596, 'https://ror.org/01w7r8m15', 'no_lang_code', 1, 'https://ror.org/01w7r8m15 QPS (Austria)'), (11597, 'https://ror.org/01w8exq52', 'no_lang_code', 1, 'https://ror.org/01w8exq52 Amyndas Pharmaceuticals (United States)'), (11598, 'https://ror.org/01wan7431', 'no_lang_code', 1, 'https://ror.org/01wan7431 Schneider Electric (Spain)'), (11599, 'https://ror.org/01wc38255', 'en', 1, 'https://ror.org/01wc38255 Applied Research Institute for Prospective Technologies'), (11600, 'https://ror.org/01weg4r24', 'no_lang_code', 1, 'https://ror.org/01weg4r24 Naturalia & Biologia'), (11601, 'https://ror.org/01wen3r86', 'no_lang_code', 1, 'https://ror.org/01wen3r86 Boliden (Sweden)'), (11602, 'https://ror.org/01wer7646', 'no_lang_code', 1, 'https://ror.org/01wer7646 Mastercard (Belgium)'), (11603, 'https://ror.org/01wffm716', 'no_lang_code', 1, 'https://ror.org/01wffm716 Rübig (Austria)'), (11604, 'https://ror.org/01wpszx77', 'en', 1, 'https://ror.org/01wpszx77 Combined Community Action'), (11605, 'https://ror.org/01wpzjj95', 'no_lang_code', 1, 'https://ror.org/01wpzjj95 Tofwerk (Switzerland)'), (11606, 'https://ror.org/01wrh2n21', 'en', 1, 'https://ror.org/01wrh2n21 Hellenic Foundation for European and Foreign Policy'), (11607, 'https://ror.org/01wt1m959', 'en', 1, 'https://ror.org/01wt1m959 Prince George''s County Health Department'), (11608, 'https://ror.org/01wtk7843', 'en', 1, 'https://ror.org/01wtk7843 Chapel Haven Schleifer Center'), (11609, 'https://ror.org/01wv0r403', 'en', 1, 'https://ror.org/01wv0r403 Center on Race, Poverty and the Environment'), (11610, 'https://ror.org/01ww0ej05', 'no_lang_code', 1, 'https://ror.org/01ww0ej05 AFRY (Austria)'), (11611, 'https://ror.org/01ww5qq62', 'en', 1, 'https://ror.org/01ww5qq62 Pathway School'), (11612, 'https://ror.org/01wwajd53', 'no_lang_code', 1, 'https://ror.org/01wwajd53 OHB (Italy)'), (11613, 'https://ror.org/01wzgqz67', 'en', 1, 'https://ror.org/01wzgqz67 Earth Learning'), (11614, 'https://ror.org/01wzjne83', 'en', 1, 'https://ror.org/01wzjne83 Mille Lacs Band of Ojibwe'), (11615, 'https://ror.org/01x22fc24', 'en', 1, 'https://ror.org/01x22fc24 Aunt Martha’s Health and Wellness'), (11616, 'https://ror.org/01x25y074', 'en', 1, 'https://ror.org/01x25y074 Northern Nevada Children''s Cancer Foundation'), (11617, 'https://ror.org/01x4vnn38', 'es', 1, 'https://ror.org/01x4vnn38 Instituto Andaluz de Tecnología'), (11618, 'https://ror.org/01x544h30', 'no_lang_code', 1, 'https://ror.org/01x544h30 Roche (Italy)'), (11619, 'https://ror.org/01x5y8335', 'no_lang_code', 1, 'https://ror.org/01x5y8335 Granta Design (United Kingdom)'), (11620, 'https://ror.org/01x6ha460', 'en', 1, 'https://ror.org/01x6ha460 Land For Good'), (11621, 'https://ror.org/01x8pzm10', 'no_lang_code', 1, 'https://ror.org/01x8pzm10 Harley-Davidson (United States)'), (11622, 'https://ror.org/01x9zv505', 'en', 1, 'https://ror.org/01x9zv505 Fatebenefratelli Hospital Ospedale San Giovanni Calibita Fatebenefratelli'), (11623, 'https://ror.org/01xbt9y54', 'no_lang_code', 1, 'https://ror.org/01xbt9y54 Genias Benelux (Netherlands)'), (11624, 'https://ror.org/01xby9e36', 'no_lang_code', 1, 'https://ror.org/01xby9e36 Webraska (France)'), (11625, 'https://ror.org/01xd2ey78', 'en', 1, 'https://ror.org/01xd2ey78 Crossroads Community Hospital'), (11626, 'https://ror.org/01xe60d06', 'en', 1, 'https://ror.org/01xe60d06 New Mexico Mathematics, Engineering, and Science Achievement'), (11627, 'https://ror.org/01xedye63', 'no_lang_code', 1, 'https://ror.org/01xedye63 Modern Meadow (United States)'), (11628, 'https://ror.org/01xetyj79', 'no_lang_code', 1, 'https://ror.org/01xetyj79 Youngstown Neighborhood Development Corporation (United States)'), (11629, 'https://ror.org/01xfba851', 'no_lang_code', 1, 'https://ror.org/01xfba851 Ilva (Italy)'), (11630, 'https://ror.org/01xfp7f88', 'no_lang_code', 1, 'https://ror.org/01xfp7f88 Innovative Orbital Design (United States)'), (11631, 'https://ror.org/01xgdvm53', 'en', 1, 'https://ror.org/01xgdvm53 Bhagwan Mahaveer Cancer Hospital and Research Centre'), (11632, 'https://ror.org/01xjn4f21', 'en', 1, 'https://ror.org/01xjn4f21 CancerCare'), (11633, 'https://ror.org/01xm2ex71', 'no_lang_code', 1, 'https://ror.org/01xm2ex71 Ocean Era (United States)'), (11634, 'https://ror.org/01xmz1b70', 'en', 1, 'https://ror.org/01xmz1b70 Bay Area Community Health Advisory Council'), (11635, 'https://ror.org/01xn7cv95', 'no_lang_code', 1, 'https://ror.org/01xn7cv95 Logistics Management Institute (United States)'), (11636, 'https://ror.org/01xq50d72', 'en', 1, 'https://ror.org/01xq50d72 Community Medical Center'), (11637, 'https://ror.org/01xrr0m34', 'no_lang_code', 1, 'https://ror.org/01xrr0m34 One River Grants (United States)'), (11638, 'https://ror.org/01xrrhw27', 'en', 1, 'https://ror.org/01xrrhw27 Astella Development'), (11639, 'https://ror.org/01xscrc43', 'no_lang_code', 1, 'https://ror.org/01xscrc43 Solvay (Germany)'), (11640, 'https://ror.org/01xtprm05', 'en', 1, 'https://ror.org/01xtprm05 Mercer County Health Department'), (11641, 'https://ror.org/01xwshp02', 'en', 1, 'https://ror.org/01xwshp02 Institute for Magnetospheric Physics'), (11642, 'https://ror.org/01y07bp24', 'de', 1, 'https://ror.org/01y07bp24 VDEh-Betriebsforschungsinstitut'), (11643, 'https://ror.org/01y13ze91', 'no_lang_code', 1, 'https://ror.org/01y13ze91 SKF (Netherlands)'), (11644, 'https://ror.org/01y23cm11', 'en', 1, 'https://ror.org/01y23cm11 All Out Adventures'), (11645, 'https://ror.org/01y32sp40', 'no_lang_code', 1, 'https://ror.org/01y32sp40 Europäisches Centrum für Mechatronik (Germany)'), (11646, 'https://ror.org/01y42sa33', 'en', 1, 'https://ror.org/01y42sa33 Astraea Lesbian Foundation For Justice'), (11647, 'https://ror.org/01y6mff13', 'en', 1, 'https://ror.org/01y6mff13 Resource Foundation'), (11648, 'https://ror.org/01y719f35', 'en', 1, 'https://ror.org/01y719f35 DeKalb County Health Department'), (11649, 'https://ror.org/01y8j7579', 'en', 1, 'https://ror.org/01y8j7579 National 4-H Council'), (11650, 'https://ror.org/01ycgxf29', 'en', 1, 'https://ror.org/01ycgxf29 Hertz Foundation'), (11651, 'https://ror.org/01yex6672', 'no_lang_code', 1, 'https://ror.org/01yex6672 GlycoMimetics (United States)'), (11652, 'https://ror.org/01yg57d71', 'en', 1, 'https://ror.org/01yg57d71 Institute of Neurological Sciences Istituto di Scienze Neurologiche'), (11653, 'https://ror.org/01ygt4x13', 'en', 1, 'https://ror.org/01ygt4x13 Child Protection Network'), (11654, 'https://ror.org/01ygx9r32', 'en', 1, 'https://ror.org/01ygx9r32 European Forum for Good Clinical Practice'), (11655, 'https://ror.org/01yjcee19', 'en', 1, 'https://ror.org/01yjcee19 Cancer Alliance of Naples'), (11656, 'https://ror.org/01ykqc562', 'en', 1, 'https://ror.org/01ykqc562 Innocence Project'), (11657, 'https://ror.org/01ykwyj07', 'no_lang_code', 1, 'https://ror.org/01ykwyj07 4Cs Breeding Technologies (United States)'), (11658, 'https://ror.org/01ynvwr63', 'es', 1, 'https://ror.org/01ynvwr63 HM Hospitales'), (11659, 'https://ror.org/01yq97131', 'no_lang_code', 1, 'https://ror.org/01yq97131 Intellicell Biosciences (United States)'), (11660, 'https://ror.org/01yrms264', 'en', 1, 'https://ror.org/01yrms264 Little Angels Early Childhood Center'), (11661, 'https://ror.org/01ys7qn31', 'no_lang_code', 1, 'https://ror.org/01ys7qn31 LivaNova (Italy)'), (11662, 'https://ror.org/01yt7p923', 'en', 1, 'https://ror.org/01yt7p923 Laboratory for Personalized Molecular Medicine'), (11663, 'https://ror.org/01ytrmn44', 'en', 1, 'https://ror.org/01ytrmn44 C. Thomas Clagett, Jr. Memorial Clinic and Regatta'), (11664, 'https://ror.org/01yvphs19', 'en', 1, 'https://ror.org/01yvphs19 Move United'), (11665, 'https://ror.org/01ywqj763', 'en', 1, 'https://ror.org/01ywqj763 Jannus'), (11666, 'https://ror.org/01yxq8q59', 'en', 1, 'https://ror.org/01yxq8q59 Nuestras Raices'), (11667, 'https://ror.org/01yxr7f17', 'no_lang_code', 1, 'https://ror.org/01yxr7f17 Finovatis (France)'), (11668, 'https://ror.org/01yxrjg25', 'en', 1, 'https://ror.org/01yxrjg25 National Center for Disease Control and Public Health დაავადებათა კონტროლისა და საზოგადოებრივი ჯანმრთელობის ეროვნული ცენტრი'), (11669, 'https://ror.org/01yxtmr67', 'no_lang_code', 1, 'https://ror.org/01yxtmr67 Prana Biotechnology (Australia)'), (11670, 'https://ror.org/01yzrt577', 'no_lang_code', 1, 'https://ror.org/01yzrt577 Genedata (Switzerland)'), (11671, 'https://ror.org/01z0fyn90', 'en', 1, 'https://ror.org/01z0fyn90 Cancer Patients Alliance for Clinical Trials & Survivorship'), (11672, 'https://ror.org/01z0rq434', 'no_lang_code', 1, 'https://ror.org/01z0rq434 National Center for Defense Manufacturing and Machining (United States)'), (11673, 'https://ror.org/01z1c5862', 'en', 1, 'https://ror.org/01z1c5862 College Opportunity Resources for Education'), (11674, 'https://ror.org/01z3jep38', 'en', 1, 'https://ror.org/01z3jep38 German Cement Works Association Verein Deutscher Zementwerke'), (11675, 'https://ror.org/01z3mbd29', 'en', 1, 'https://ror.org/01z3mbd29 Cape Fear Museum'), (11676, 'https://ror.org/01z3wjy47', 'en', 1, 'https://ror.org/01z3wjy47 National Alliance on Mental Illness'), (11677, 'https://ror.org/01z4ww589', 'en', 1, 'https://ror.org/01z4ww589 Chippewa County Health Department'), (11678, 'https://ror.org/01z528276', 'en', 1, 'https://ror.org/01z528276 Emilio Nares Foundation'), (11679, 'https://ror.org/01z63yw09', 'en', 1, 'https://ror.org/01z63yw09 Legacy of Legends Foundation'), (11680, 'https://ror.org/01z89r872', 'en', 1, 'https://ror.org/01z89r872 EmpowerTech'), (11681, 'https://ror.org/01z9q0k32', 'en', 1, 'https://ror.org/01z9q0k32 LIFE/RUN Center for Independent Living'), (11682, 'https://ror.org/01zd0qk20', 'en', 1, 'https://ror.org/01zd0qk20 Clay County Health Department'), (11683, 'https://ror.org/01zd6r658', 'en', 1, 'https://ror.org/01zd6r658 Empire State Honey Producers Association'), (11684, 'https://ror.org/01zgmxw25', 'en', 1, 'https://ror.org/01zgmxw25 Chapters Health System'), (11685, 'https://ror.org/01zhcwk43', 'no_lang_code', 1, 'https://ror.org/01zhcwk43 Digital Dispatch (Finland)'), (11686, 'https://ror.org/01zje5g50', 'no_lang_code', 1, 'https://ror.org/01zje5g50 Fugro (Norway)'), (11687, 'https://ror.org/01zkc2t07', 'en', 1, 'https://ror.org/01zkc2t07 Addario Lung Cancer Medical Institute'), (11688, 'https://ror.org/01zksz530', 'bs', 1, 'https://ror.org/01zksz530 Natural History Museum of Montenegro Prirodnjacki Muzej Crne Gore'), (11689, 'https://ror.org/01zmv6c05', 'en', 1, 'https://ror.org/01zmv6c05 Center for Research on the Changing Earth System'), (11690, 'https://ror.org/01zmvpz61', 'no_lang_code', 1, 'https://ror.org/01zmvpz61 Julia Group'), (11691, 'https://ror.org/01zn5h954', 'en', 1, 'https://ror.org/01zn5h954 Irv and Shellys Fresh Picks'), (11692, 'https://ror.org/01zp93540', 'no_lang_code', 1, 'https://ror.org/01zp93540 Pemaquid Oyster Company (United States)'), (11693, 'https://ror.org/01zpbb709', 'en', 1, 'https://ror.org/01zpbb709 CRDF Global'), (11694, 'https://ror.org/01zpsbf45', 'en', 1, 'https://ror.org/01zpsbf45 CHRISTUS St. Michael Health System'), (11695, 'https://ror.org/01ztccg37', 'no_lang_code', 1, 'https://ror.org/01ztccg37 Permafuels (United States)'), (11696, 'https://ror.org/01zw4be88', 'no_lang_code', 1, 'https://ror.org/01zw4be88 Fincantieri (Italy)'), (11697, 'https://ror.org/0203ne570', 'en', 1, 'https://ror.org/0203ne570 Recirculating Farms Coalition'), (11698, 'https://ror.org/0206gap17', 'no_lang_code', 1, 'https://ror.org/0206gap17 Innovative Space Propulsion Systems (United States)'), (11699, 'https://ror.org/0206kf863', 'no_lang_code', 1, 'https://ror.org/0206kf863 Link Consulting'), (11700, 'https://ror.org/0208ywa45', 'en', 1, 'https://ror.org/0208ywa45 Gathering 4 Gardner'), (11701, 'https://ror.org/0209tfn22', 'no_lang_code', 1, 'https://ror.org/0209tfn22 Airial Conseil (France)'), (11702, 'https://ror.org/0209tmn27', 'en', 1, 'https://ror.org/0209tmn27 Coalition for Compassionate Care of California'), (11703, 'https://ror.org/0209vy811', 'en', 1, 'https://ror.org/0209vy811 Illinois Valley Ear Nose and Throat'), (11704, 'https://ror.org/020ccak28', 'en', 1, 'https://ror.org/020ccak28 Port Jefferson Lions Club'), (11705, 'https://ror.org/020cpqb94', 'en', 1, 'https://ror.org/020cpqb94 Helsingin ja Uudenmaan Sairaanhoitopiiri Hospital District of Helsinki and Uusimaa'), (11706, 'https://ror.org/020dxsp50', 'no_lang_code', 1, 'https://ror.org/020dxsp50 Q Free (Norway)'), (11707, 'https://ror.org/020e1a811', 'no_lang_code', 1, 'https://ror.org/020e1a811 SAES Group (Italy)'), (11708, 'https://ror.org/020fhwg86', 'en', 1, 'https://ror.org/020fhwg86 NextStep Fitness'), (11709, 'https://ror.org/020g75c03', 'no_lang_code', 1, 'https://ror.org/020g75c03 Takara (Sweden)'), (11710, 'https://ror.org/020g9v513', 'en', 1, 'https://ror.org/020g9v513 Ohio Pain Initiative'), (11711, 'https://ror.org/020ktq245', 'no_lang_code', 1, 'https://ror.org/020ktq245 Symphony Technology (United States)'), (11712, 'https://ror.org/020mgne32', 'no_lang_code', 1, 'https://ror.org/020mgne32 NCC (Sweden)'), (11713, 'https://ror.org/020n75m55', 'en', 1, 'https://ror.org/020n75m55 Camp Aldersgate'), (11714, 'https://ror.org/020n82m84', 'en', 1, 'https://ror.org/020n82m84 AISECT University आईसेक्ट विश्वविद्यालय'), (11715, 'https://ror.org/020njkh42', 'en', 1, 'https://ror.org/020njkh42 NEOMED Institute'), (11716, 'https://ror.org/020ptwy31', 'it', 1, 'https://ror.org/020ptwy31 Agenzia per l''Italia Digitale'), (11717, 'https://ror.org/020qj1b53', 'en', 1, 'https://ror.org/020qj1b53 Helping Hand Society'), (11718, 'https://ror.org/020tnvw92', 'no_lang_code', 1, 'https://ror.org/020tnvw92 Safran (Belgium)'), (11719, 'https://ror.org/020wan993', 'en', 1, 'https://ror.org/020wan993 Childline South Africa'), (11720, 'https://ror.org/020x9tr75', 'en', 1, 'https://ror.org/020x9tr75 Pine Belt Mental Healthcare Resources'), (11721, 'https://ror.org/02124b921', 'en', 1, 'https://ror.org/02124b921 American Phytopathological Society'), (11722, 'https://ror.org/0212gej90', 'no_lang_code', 1, 'https://ror.org/0212gej90 ON Semiconductor (Belgium)'), (11723, 'https://ror.org/0213kp011', 'no_lang_code', 1, 'https://ror.org/0213kp011 Empresa de Desenvolvimento Mineiro (Portugal)'), (11724, 'https://ror.org/02148sc68', 'en', 1, 'https://ror.org/02148sc68 Gaston County Schools'), (11725, 'https://ror.org/0214aaw69', 'en', 1, 'https://ror.org/0214aaw69 City Parks Foundation'), (11726, 'https://ror.org/021598a46', 'no_lang_code', 1, 'https://ror.org/021598a46 3C Cattle Feeders (United States)'), (11727, 'https://ror.org/02167je34', 'no_lang_code', 1, 'https://ror.org/02167je34 Biogas and Electric (United States)'), (11728, 'https://ror.org/0216hp691', 'en', 1, 'https://ror.org/0216hp691 Institute for Sociology MTA Társadalomtudományi Kutatóközpont Szociológiai Intézet'), (11729, 'https://ror.org/0218v2420', 'en', 1, 'https://ror.org/0218v2420 Association of German Engineers Verein Deutscher Ingenieure'), (11730, 'https://ror.org/0219k5g76', 'en', 1, 'https://ror.org/0219k5g76 Bombay College of Pharmacy'), (11731, 'https://ror.org/021amba89', 'en', 1, 'https://ror.org/021amba89 New York Collaborates for Autism'), (11732, 'https://ror.org/021b9pa93', 'no_lang_code', 1, 'https://ror.org/021b9pa93 Siempelkamp (Germany)'), (11733, 'https://ror.org/021bvhv31', 'en', 1, 'https://ror.org/021bvhv31 Florida Agriculture in the Classroom'), (11734, 'https://ror.org/021enqb55', 'en', 1, 'https://ror.org/021enqb55 Parents With A Purpose'), (11735, 'https://ror.org/021f1r958', 'no_lang_code', 1, 'https://ror.org/021f1r958 Schunk (Germany)'), (11736, 'https://ror.org/021h49x90', 'en', 1, 'https://ror.org/021h49x90 No Wooden Nickels'), (11737, 'https://ror.org/021hb4q36', 'no_lang_code', 1, 'https://ror.org/021hb4q36 Mb Air Systems (United Kingdom)'), (11738, 'https://ror.org/021k09d21', 'no_lang_code', 1, 'https://ror.org/021k09d21 Ajat (Finland)'), (11739, 'https://ror.org/021kqv911', 'no_lang_code', 1, 'https://ror.org/021kqv911 Exactheat (United States)'), (11740, 'https://ror.org/021m39404', 'en', 1, 'https://ror.org/021m39404 Legal Clinic for the Disabled'), (11741, 'https://ror.org/021nxch78', 'no_lang_code', 1, 'https://ror.org/021nxch78 BCT (Germany)'), (11742, 'https://ror.org/021pq8x94', 'en', 1, 'https://ror.org/021pq8x94 JD Breast Cancer Foundation'), (11743, 'https://ror.org/021swwa08', 'hu', 1, 'https://ror.org/021swwa08 Bethesda Gyermekkórház, Magyarországi Református Egyház Bethesda Gyermekkórháza'), (11744, 'https://ror.org/021t5mt46', 'es', 1, 'https://ror.org/021t5mt46 Centro de Información y Desarrollo de la Mujer'), (11745, 'https://ror.org/021vp7p61', 'no_lang_code', 1, 'https://ror.org/021vp7p61 GTD (Spain)'), (11746, 'https://ror.org/021wbbm64', 'no_lang_code', 1, 'https://ror.org/021wbbm64 ZF Friedrichshafen (Germany)'), (11747, 'https://ror.org/021x5j769', 'en', 1, 'https://ror.org/021x5j769 Horry County Schools'), (11748, 'https://ror.org/021ztkr23', 'no_lang_code', 1, 'https://ror.org/021ztkr23 Synopsys (Germany)'), (11749, 'https://ror.org/021zy4d72', 'en', 1, 'https://ror.org/021zy4d72 World Foundation for Medical Research and Prevention'), (11750, 'https://ror.org/022182y05', 'en', 1, 'https://ror.org/022182y05 Maine Organic Farmers and Gardeners Association'), (11751, 'https://ror.org/0223p7w87', 'en', 1, 'https://ror.org/0223p7w87 Adaptive Adventures'), (11752, 'https://ror.org/02242hs05', 'pt', 1, 'https://ror.org/02242hs05 Centro Tecnológico das Indústrias do Couro Leather Technological Center'), (11753, 'https://ror.org/0224dd234', 'en', 1, 'https://ror.org/0224dd234 Piraeus Port Authority'), (11754, 'https://ror.org/0226s8t61', 'en', 1, 'https://ror.org/0226s8t61 Halleck Creek Ranch'), (11755, 'https://ror.org/022aswt06', 'en', 1, 'https://ror.org/022aswt06 Heartland Head Start'), (11756, 'https://ror.org/022c13n15', 'en', 1, 'https://ror.org/022c13n15 Health Alliance International'), (11757, 'https://ror.org/022c7bq15', 'no_lang_code', 1, 'https://ror.org/022c7bq15 AOS Products (United Kingdom)'), (11758, 'https://ror.org/022cany03', 'en', 1, 'https://ror.org/022cany03 Health Promotion Council'), (11759, 'https://ror.org/022cm1781', 'no_lang_code', 1, 'https://ror.org/022cm1781 Alpha Thames Subsea (United Kingdom)'), (11760, 'https://ror.org/022cw9c39', 'no_lang_code', 1, 'https://ror.org/022cw9c39 Venezia Tecnologie (Italy)'), (11761, 'https://ror.org/022de2f17', 'en', 1, 'https://ror.org/022de2f17 Elizabethtown Community Hospital'), (11762, 'https://ror.org/022ew7d45', 'en', 1, 'https://ror.org/022ew7d45 FRIDA The Young Feminist Fund'), (11763, 'https://ror.org/022f21j22', 'en', 1, 'https://ror.org/022f21j22 Mount Hagen Provincial Hospital'), (11764, 'https://ror.org/022gwqv30', 'en', 1, 'https://ror.org/022gwqv30 Breast and GYN Health Project'), (11765, 'https://ror.org/022j8kh09', 'no_lang_code', 1, 'https://ror.org/022j8kh09 TetraPlan'), (11766, 'https://ror.org/022ky1t43', 'en', 1, 'https://ror.org/022ky1t43 Hope House Ministries'), (11767, 'https://ror.org/022m0cc63', 'en', 1, 'https://ror.org/022m0cc63 Bay Clinic'), (11768, 'https://ror.org/022mnfq26', 'en', 1, 'https://ror.org/022mnfq26 Stone Barns Center for Food & Agriculture'), (11769, 'https://ror.org/022nbxr62', 'en', 1, 'https://ror.org/022nbxr62 MaineGeneral Medical Center'), (11770, 'https://ror.org/022r8xe61', 'es', 1, 'https://ror.org/022r8xe61 Centro Español de Metrología'), (11771, 'https://ror.org/022sedm79', 'en', 1, 'https://ror.org/022sedm79 PathStone'), (11772, 'https://ror.org/022sh6v50', 'en', 1, 'https://ror.org/022sh6v50 Colorado Consortium for Earth and Space Science Education'), (11773, 'https://ror.org/022wvzp87', 'en', 1, 'https://ror.org/022wvzp87 Amsterdam Nursing Home'), (11774, 'https://ror.org/022zgjn81', 'no_lang_code', 1, 'https://ror.org/022zgjn81 AccuDava (United States)'), (11775, 'https://ror.org/022zv0672', 'it', 1, 'https://ror.org/022zv0672 Institute for Environmental Protection and Research Istituto Superiore per la Protezione e la Ricerca Ambientale'), (11776, 'https://ror.org/0231ar939', 'no_lang_code', 1, 'https://ror.org/0231ar939 Earth Networks (United States)'), (11777, 'https://ror.org/0232wt504', 'no_lang_code', 1, 'https://ror.org/0232wt504 RAG Aktiengesellschaft (Germany)'), (11778, 'https://ror.org/02341fy35', 'no_lang_code', 1, 'https://ror.org/02341fy35 Innovision (Denmark)'), (11779, 'https://ror.org/0236px434', 'no_lang_code', 1, 'https://ror.org/0236px434 Follica (United States)'), (11780, 'https://ror.org/02394fh52', 'no_lang_code', 1, 'https://ror.org/02394fh52 Pennsylvania Center for Beef Excellence'), (11781, 'https://ror.org/023bbvw72', 'en', 1, 'https://ror.org/023bbvw72 Southern Ute Community Action Programs'), (11782, 'https://ror.org/023cq0m22', 'no_lang_code', 1, 'https://ror.org/023cq0m22 Brain Tools (United States)'), (11783, 'https://ror.org/023f9bb65', 'no_lang_code', 1, 'https://ror.org/023f9bb65 Liebherr (Germany)'), (11784, 'https://ror.org/023h3sg77', 'no_lang_code', 1, 'https://ror.org/023h3sg77 Carnival Corporation (United Kingdom)'), (11785, 'https://ror.org/023k1pq97', 'no_lang_code', 1, 'https://ror.org/023k1pq97 Bombardier (Germany)'), (11786, 'https://ror.org/023kbzw23', 'no_lang_code', 1, 'https://ror.org/023kbzw23 BioEnergetics (United States)'), (11787, 'https://ror.org/023kmpc59', 'en', 1, 'https://ror.org/023kmpc59 Ministero delle Politiche Agricole, Alimentari e Forestali Ministry of Agricultural, Food and Forestry Policies'), (11788, 'https://ror.org/023ktd084', 'en', 1, 'https://ror.org/023ktd084 Ministarstvo nauke Ministry of Science'), (11789, 'https://ror.org/023kvjk64', 'no_lang_code', 1, 'https://ror.org/023kvjk64 Wärtsilä (Switzerland)'), (11790, 'https://ror.org/023phzf28', 'no_lang_code', 1, 'https://ror.org/023phzf28 Technology and Management Services (Switzerland)'), (11791, 'https://ror.org/023qcs349', 'en', 1, 'https://ror.org/023qcs349 Rehabilitation Institute of Kansas City'), (11792, 'https://ror.org/023wb1e36', 'no_lang_code', 1, 'https://ror.org/023wb1e36 AurimMed (United States)'), (11793, 'https://ror.org/023wxgq18', 'en', 1, 'https://ror.org/023wxgq18 Ivano-Frankivsk National Medical University Івано-Франківський національний медичний університет'), (11794, 'https://ror.org/023xbne13', 'fr', 1, 'https://ror.org/023xbne13 Industrial Economics Institute Institut d''Économie Industrielle'), (11795, 'https://ror.org/023xbxt82', 'en', 1, 'https://ror.org/023xbxt82 Live Healthy DeKalb County'), (11796, 'https://ror.org/023zgnb96', 'no_lang_code', 1, 'https://ror.org/023zgnb96 Dyadic (Netherlands)'), (11797, 'https://ror.org/0240jmg04', 'no_lang_code', 1, 'https://ror.org/0240jmg04 Olink Bioscience (Sweden)'), (11798, 'https://ror.org/024328p12', 'en', 1, 'https://ror.org/024328p12 Long Island Association'), (11799, 'https://ror.org/0243qcr03', 'no_lang_code', 1, 'https://ror.org/0243qcr03 Archetypon'), (11800, 'https://ror.org/0244gtc77', 'en', 1, 'https://ror.org/0244gtc77 Advanced ENT and Allergy'), (11801, 'https://ror.org/0244v0536', 'en', 1, 'https://ror.org/0244v0536 Republican Oncological Clinical Dispensary Республиканский клинический онкологический диспансер'), (11802, 'https://ror.org/0244yg551', 'en', 1, 'https://ror.org/0244yg551 Ashe Memorial Hospital'), (11803, 'https://ror.org/0246b8v59', 'en', 1, 'https://ror.org/0246b8v59 Linking Employment, Abilities and Potential'), (11804, 'https://ror.org/0247j5w40', 'en', 1, 'https://ror.org/0247j5w40 NorthEast Ohio Neighborhood Health Services'), (11805, 'https://ror.org/0249wjr08', 'en', 1, 'https://ror.org/0249wjr08 Al Shehab institution for Comprehensive Development'), (11806, 'https://ror.org/024a6d298', 'en', 1, 'https://ror.org/024a6d298 AmeriCares'), (11807, 'https://ror.org/024avgr28', 'fr', 1, 'https://ror.org/024avgr28 Association Shifa des Maladies NeuroMusculaires'), (11808, 'https://ror.org/024cwn342', 'en', 1, 'https://ror.org/024cwn342 Pennsylvania Horticultural Society'), (11809, 'https://ror.org/024fjxd56', 'en', 1, 'https://ror.org/024fjxd56 Gibson Area Hospital and Health Services'), (11810, 'https://ror.org/024jz7t88', 'en', 1, 'https://ror.org/024jz7t88 Whittier Street Health Center'), (11811, 'https://ror.org/024kx0v68', 'no_lang_code', 1, 'https://ror.org/024kx0v68 Seat (Spain) Sociedad Española de Automóviles de Turismo'), (11812, 'https://ror.org/024n70r63', 'en', 1, 'https://ror.org/024n70r63 Living Independently Now Center'), (11813, 'https://ror.org/024natw76', 'en', 1, 'https://ror.org/024natw76 Chez Panisse Restaurant and Cafe'), (11814, 'https://ror.org/024pwg683', 'no_lang_code', 1, 'https://ror.org/024pwg683 GenXPro (Germany)'), (11815, 'https://ror.org/024s09f91', 'fr', 1, 'https://ror.org/024s09f91 French Institute of Textiles and Clothing Institut Français du Textile et de l''Habillement'), (11816, 'https://ror.org/024sjxd14', 'pt', 1, 'https://ror.org/024sjxd14 Agencia para a Modernizacao Administrativa'), (11817, 'https://ror.org/024txyd33', 'pt', 1, 'https://ror.org/024txyd33 Lisboa E-Nova - Agência Municipal de Energia e Ambiente'), (11818, 'https://ror.org/024tzkr53', 'no_lang_code', 1, 'https://ror.org/024tzkr53 PrimeTel (Cyprus)'), (11819, 'https://ror.org/024vgq576', 'en', 1, 'https://ror.org/024vgq576 Girls on the Run of Central Illinois'), (11820, 'https://ror.org/024vvee04', 'en', 1, 'https://ror.org/024vvee04 Hendrick Medical Center'), (11821, 'https://ror.org/024z3s669', 'en', 1, 'https://ror.org/024z3s669 Orange County Public Schools'), (11822, 'https://ror.org/024z8dm78', 'no_lang_code', 1, 'https://ror.org/024z8dm78 NDT Consultants (United Kingdom)'), (11823, 'https://ror.org/02528vg72', 'no_lang_code', 1, 'https://ror.org/02528vg72 Star Roses and Plants (United States)'), (11824, 'https://ror.org/0252gzq20', 'en', 1, 'https://ror.org/0252gzq20 Aquinas College - Michigan'), (11825, 'https://ror.org/0252rqe04', 'en', 1, 'https://ror.org/0252rqe04 International Anesthesia Research Society'), (11826, 'https://ror.org/0252zek10', 'en', 1, 'https://ror.org/0252zek10 Bike and Build'), (11827, 'https://ror.org/0255frr43', 'en', 1, 'https://ror.org/0255frr43 Cooke School and Institute'), (11828, 'https://ror.org/0256wzd68', 'no_lang_code', 1, 'https://ror.org/0256wzd68 In2 Search Interfaces Development (United Kingdom)'), (11829, 'https://ror.org/0258a2f50', 'en', 1, 'https://ror.org/0258a2f50 Institute of Software Systems Інститут програмних систем'), (11830, 'https://ror.org/02595h974', 'en', 1, 'https://ror.org/02595h974 Lincoln Parish School Board'), (11831, 'https://ror.org/02596hw49', 'en', 1, 'https://ror.org/02596hw49 Cancer Resource Centers of Mendocino County'), (11832, 'https://ror.org/0259s7f07', 'en', 1, 'https://ror.org/0259s7f07 Angelic Organics Learning Center'), (11833, 'https://ror.org/025aa9m53', 'no_lang_code', 1, 'https://ror.org/025aa9m53 Volkswagen Group (Czechia)'), (11834, 'https://ror.org/025c4cf84', 'en', 1, 'https://ror.org/025c4cf84 Parkland Foundation'), (11835, 'https://ror.org/025fmv139', 'no_lang_code', 1, 'https://ror.org/025fmv139 Smithers Rapra (United Kingdom)'), (11836, 'https://ror.org/025g9s518', 'en', 1, 'https://ror.org/025g9s518 New England Anti-Vivisection Society'), (11837, 'https://ror.org/025h55v52', 'en', 1, 'https://ror.org/025h55v52 Collections Trust'), (11838, 'https://ror.org/025j1vp15', 'en', 1, 'https://ror.org/025j1vp15 Guardian Angel Homes'), (11839, 'https://ror.org/025kz2973', 'en', 1, 'https://ror.org/025kz2973 Punjab Technical University ਪੰਜਾਬ ਟੈਕਨੀਕਲ ਯੂਨੀਵਰਸਿਟੀ'), (11840, 'https://ror.org/025n0cr27', 'en', 1, 'https://ror.org/025n0cr27 ProMedica Russell J. Ebeid Children''s Hospital'), (11841, 'https://ror.org/025n4zp83', 'no_lang_code', 1, 'https://ror.org/025n4zp83 LivaNova (France)'), (11842, 'https://ror.org/025q2xt16', 'en', 1, 'https://ror.org/025q2xt16 Dean Health Systems'), (11843, 'https://ror.org/025rqhb96', 'no_lang_code', 1, 'https://ror.org/025rqhb96 Teleport Sachsen-Anhalt'), (11844, 'https://ror.org/025sfn416', 'no_lang_code', 1, 'https://ror.org/025sfn416 Harmon Brook Farm (United States)'), (11845, 'https://ror.org/025zp6t95', 'no_lang_code', 1, 'https://ror.org/025zp6t95 Holmes Halls Processors (United Kingdom)'), (11846, 'https://ror.org/0261rqq02', 'en', 1, 'https://ror.org/0261rqq02 Wayne County Regional Educational Service Agency'), (11847, 'https://ror.org/0262pp157', 'en', 1, 'https://ror.org/0262pp157 Research Institute of the Finnish Economy'), (11848, 'https://ror.org/0263dr507', 'en', 1, 'https://ror.org/0263dr507 Science Center of Iowa'), (11849, 'https://ror.org/02669nb20', 'no_lang_code', 1, 'https://ror.org/02669nb20 Abertis Infraestructuras (Spain)'), (11850, 'https://ror.org/02677w923', 'no_lang_code', 1, 'https://ror.org/02677w923 Slot Consulting'), (11851, 'https://ror.org/0268h4j55', 'no_lang_code', 1, 'https://ror.org/0268h4j55 NXP (Germany)'), (11852, 'https://ror.org/0268js065', 'no_lang_code', 1, 'https://ror.org/0268js065 Melissa Food'), (11853, 'https://ror.org/02690tv45', 'en', 1, 'https://ror.org/02690tv45 The Wildlife Society'), (11854, 'https://ror.org/026ad7v11', 'en', 1, 'https://ror.org/026ad7v11 AutismCare Nepal Society'), (11855, 'https://ror.org/026apfz04', 'no_lang_code', 1, 'https://ror.org/026apfz04 Tova Industries (United States)'), (11856, 'https://ror.org/026b3nr59', 'no_lang_code', 1, 'https://ror.org/026b3nr59 Sims Brothers (United States)'), (11857, 'https://ror.org/026cc4t87', 'en', 1, 'https://ror.org/026cc4t87 Swedish Institute of Steel Construction'), (11858, 'https://ror.org/026ctmx57', 'no_lang_code', 1, 'https://ror.org/026ctmx57 Institut de Soudure'), (11859, 'https://ror.org/026djsb11', 'no_lang_code', 1, 'https://ror.org/026djsb11 Space Environment Technologies (United States)'), (11860, 'https://ror.org/026gzzy53', 'no_lang_code', 1, 'https://ror.org/026gzzy53 Grado Zero Espace (Italy)'), (11861, 'https://ror.org/026h6d543', 'es', 1, 'https://ror.org/026h6d543 Ayuntamiento de Madrid'), (11862, 'https://ror.org/026hzcb48', 'en', 1, 'https://ror.org/026hzcb48 HOPE Clinic'), (11863, 'https://ror.org/026jgjr74', 'no_lang_code', 1, 'https://ror.org/026jgjr74 Spectral Sciences (United States)'), (11864, 'https://ror.org/026jj6489', 'en', 1, 'https://ror.org/026jj6489 Mission Children''s Hospital'), (11865, 'https://ror.org/026jjgn48', 'fr', 1, 'https://ror.org/026jjgn48 Regional Energy and Environment Egency Rhônalpénergie Environnement'), (11866, 'https://ror.org/026jqpc47', 'en', 1, 'https://ror.org/026jqpc47 North Fork Breast Health Coalition'), (11867, 'https://ror.org/026kac972', 'en', 1, 'https://ror.org/026kac972 Alpine Learning Group'), (11868, 'https://ror.org/026meq292', 'no_lang_code', 1, 'https://ror.org/026meq292 Össur (Iceland)'), (11869, 'https://ror.org/026nftk33', 'de', 1, 'https://ror.org/026nftk33 Forschungszentrum Telekommunikation Wien Telecommunications Research Center Vienna'), (11870, 'https://ror.org/026ngk018', 'en', 1, 'https://ror.org/026ngk018 Illinois Stewardship Alliance'), (11871, 'https://ror.org/026peqa79', 'en', 1, 'https://ror.org/026peqa79 Goodwill of Orange County'), (11872, 'https://ror.org/026vqrv05', 'no_lang_code', 1, 'https://ror.org/026vqrv05 Stab Vida (Portugal)'), (11873, 'https://ror.org/027176q05', 'en', 1, 'https://ror.org/027176q05 St. Francis Medical Center'), (11874, 'https://ror.org/027635d79', 'en', 1, 'https://ror.org/027635d79 Boonshoft Museum of Discovery'), (11875, 'https://ror.org/027956n88', 'no_lang_code', 1, 'https://ror.org/027956n88 Figo (Netherlands)'), (11876, 'https://ror.org/027f7xa47', 'no_lang_code', 1, 'https://ror.org/027f7xa47 Procter & Gamble (Belgium)'), (11877, 'https://ror.org/027hawx96', 'en', 1, 'https://ror.org/027hawx96 Children''s Health & Research Foundation'), (11878, 'https://ror.org/027jzke82', 'it', 1, 'https://ror.org/027jzke82 Central Institute for the Union Catalogue of Italian Libraries and for Bibliographic Information Istituto Centrale per il Catalogo Unico delle Biblioteche Italiane e per le Informazioni Bibliografiche'), (11879, 'https://ror.org/027n3xb46', 'no_lang_code', 1, 'https://ror.org/027n3xb46 Ericsson (Italy)'), (11880, 'https://ror.org/027pcre83', 'en', 1, 'https://ror.org/027pcre83 Space Frontier Foundation'), (11881, 'https://ror.org/027pgkr79', 'en', 1, 'https://ror.org/027pgkr79 Northeast Organic Farming Association of New York'), (11882, 'https://ror.org/027pk6j83', 'en', 1, 'https://ror.org/027pk6j83 Madrid Institute for Advanced Studies'), (11883, 'https://ror.org/027q7en43', 'en', 1, 'https://ror.org/027q7en43 American Association of Neuropathologists'), (11884, 'https://ror.org/027rtfv09', 'en', 1, 'https://ror.org/027rtfv09 Jewish Hospital and St. Mary''s HealthCare'), (11885, 'https://ror.org/027thnp44', 'en', 1, 'https://ror.org/027thnp44 Trust IT Services'), (11886, 'https://ror.org/027vk9s44', 'en', 1, 'https://ror.org/027vk9s44 Organic Seed Alliance'), (11887, 'https://ror.org/027xetj30', 'no_lang_code', 1, 'https://ror.org/027xetj30 Reflective X Ray Optics'), (11888, 'https://ror.org/027xf9k42', 'no_lang_code', 1, 'https://ror.org/027xf9k42 DuPont (Norway)'), (11889, 'https://ror.org/027xpc035', 'no_lang_code', 1, 'https://ror.org/027xpc035 Trialog (France)'), (11890, 'https://ror.org/0281y1011', 'en', 1, 'https://ror.org/0281y1011 Latvian State Institute of Wood Chemistry'), (11891, 'https://ror.org/0283c7q62', 'en', 1, 'https://ror.org/0283c7q62 Spinal Cord Injury Alberta'), (11892, 'https://ror.org/0284hgn97', 'no_lang_code', 1, 'https://ror.org/0284hgn97 Genesis Biotechnologies (United States)'), (11893, 'https://ror.org/0286eck14', 'it', 1, 'https://ror.org/0286eck14 Istituto Agronomico Mediterraneo di Bari Mediterranean Agronomic Institute of Bari'), (11894, 'https://ror.org/0288vq897', 'no_lang_code', 1, 'https://ror.org/0288vq897 ITPEnergised Group (United Kingdom)'), (11895, 'https://ror.org/028caqe42', 'pt', 1, 'https://ror.org/028caqe42 Instituto Nacional de Matemática Pura e Aplicada National Institute for Pure and Applied Mathematics'), (11896, 'https://ror.org/028cbaf58', 'en', 1, 'https://ror.org/028cbaf58 Practical Farmers of Iowa'), (11897, 'https://ror.org/028cpyy94', 'en', 1, 'https://ror.org/028cpyy94 Fundación Mercy Care Mercy Care Foundation'), (11898, 'https://ror.org/028g82q49', 'en', 1, 'https://ror.org/028g82q49 Boat People SOS'), (11899, 'https://ror.org/028g94h04', 'en', 1, 'https://ror.org/028g94h04 New York Sustainable Agriculture Working Group'), (11900, 'https://ror.org/028gm7992', 'en', 1, 'https://ror.org/028gm7992 Jefferson University Hospitals'), (11901, 'https://ror.org/028h2sf55', 'en', 1, 'https://ror.org/028h2sf55 McDowell County Schools'), (11902, 'https://ror.org/028javr49', 'en', 1, 'https://ror.org/028javr49 Distrito Escolar Unificado de Long Beach Long Beach Unified School District'), (11903, 'https://ror.org/028jy6j07', 'no_lang_code', 1, 'https://ror.org/028jy6j07 Biothera (United States)'), (11904, 'https://ror.org/028jzvt36', 'no_lang_code', 1, 'https://ror.org/028jzvt36 Ibeo Automotive Systems (Germany)'), (11905, 'https://ror.org/028k9m233', 'no_lang_code', 1, 'https://ror.org/028k9m233 Safibra (Czechia)'), (11906, 'https://ror.org/028nv1219', 'no_lang_code', 1, 'https://ror.org/028nv1219 Tecnitest (Spain)'), (11907, 'https://ror.org/028pcv110', 'en', 1, 'https://ror.org/028pcv110 Planned Parenthood of Metropolitan Washington'), (11908, 'https://ror.org/028v5rf11', 'en', 1, 'https://ror.org/028v5rf11 Global AIDS Interfaith Alliance'), (11909, 'https://ror.org/028xy2x79', 'no_lang_code', 1, 'https://ror.org/028xy2x79 Belden (United Kingdom)'), (11910, 'https://ror.org/028yyha11', 'no_lang_code', 1, 'https://ror.org/028yyha11 GMI Aero (France)'), (11911, 'https://ror.org/0290x3782', 'no_lang_code', 1, 'https://ror.org/0290x3782 PV Crystalox Solar (United Kingdom)'), (11912, 'https://ror.org/029255j70', 'en', 1, 'https://ror.org/029255j70 Cape Fear Valley Health System'), (11913, 'https://ror.org/0292ppt25', 'en', 1, 'https://ror.org/0292ppt25 Gifts to Share'), (11914, 'https://ror.org/02965na35', 'en', 1, 'https://ror.org/02965na35 Coastal Steward Long Island'), (11915, 'https://ror.org/0297j9z42', 'no_lang_code', 1, 'https://ror.org/0297j9z42 GeoVantage (United States)'), (11916, 'https://ror.org/0297sbd31', 'no_lang_code', 1, 'https://ror.org/0297sbd31 Honeywell (Czechia)'), (11917, 'https://ror.org/0299n0h85', 'en', 1, 'https://ror.org/0299n0h85 City Bar Justice Center'), (11918, 'https://ror.org/029a54f25', 'en', 1, 'https://ror.org/029a54f25 Cancer Institute of New South Wales'), (11919, 'https://ror.org/029benr66', 'en', 1, 'https://ror.org/029benr66 Austrian Energy Agency Österreichische Energieagentur'), (11920, 'https://ror.org/029bpx402', 'en', 1, 'https://ror.org/029bpx402 Calhoun County Health Department'), (11921, 'https://ror.org/029c3cd83', 'en', 1, 'https://ror.org/029c3cd83 Foundation for Rehabilitation Equipment and Endowment'), (11922, 'https://ror.org/029e6xb19', 'en', 1, 'https://ror.org/029e6xb19 Ministerul Afacerilor Interne Ministry of Internal Affairs'), (11923, 'https://ror.org/029ebrw26', 'en', 1, 'https://ror.org/029ebrw26 Arts For Life'), (11924, 'https://ror.org/029fngx98', 'it', 1, 'https://ror.org/029fngx98 Servizio sanitario dell''Emilia-Romagna'), (11925, 'https://ror.org/029hcca68', 'en', 1, 'https://ror.org/029hcca68 Centers for New Horizons'), (11926, 'https://ror.org/029k6n605', 'en', 1, 'https://ror.org/029k6n605 Centre for Social Innovation'), (11927, 'https://ror.org/029m8ac94', 'en', 1, 'https://ror.org/029m8ac94 AIDS Community Research Consortium'), (11928, 'https://ror.org/029nath19', 'en', 1, 'https://ror.org/029nath19 Royal Scientific Society'), (11929, 'https://ror.org/029qsp363', 'en', 1, 'https://ror.org/029qsp363 DeWitt County Human Resource Center'), (11930, 'https://ror.org/029sxat24', 'en', 1, 'https://ror.org/029sxat24 AdventHealth Gordon'), (11931, 'https://ror.org/029ts0z22', 'en', 1, 'https://ror.org/029ts0z22 Girlstart'), (11932, 'https://ror.org/029vgfn27', 'en', 1, 'https://ror.org/029vgfn27 Janus Youth Programs'), (11933, 'https://ror.org/029wcr898', 'it', 1, 'https://ror.org/029wcr898 Centro Tessile Cotoniero e Abbigliamento'), (11934, 'https://ror.org/029x54d87', 'en', 1, 'https://ror.org/029x54d87 Aguilas El Ambiente Asamblea Gay Unida Impactando Latinos A Superarse'), (11935, 'https://ror.org/029x65353', 'en', 1, 'https://ror.org/029x65353 European Business and Innovation Centre Network'), (11936, 'https://ror.org/029zea722', 'en', 1, 'https://ror.org/029zea722 Research Institute of Pomology and Floriculture'), (11937, 'https://ror.org/02a2nzn96', 'en', 1, 'https://ror.org/02a2nzn96 Home for Little Wanderers'), (11938, 'https://ror.org/02a3vgk42', 'en', 1, 'https://ror.org/02a3vgk42 Homes for Our Troops'), (11939, 'https://ror.org/02a596w22', 'no_lang_code', 1, 'https://ror.org/02a596w22 Institute of Mechanics of Materials and Geostructures'), (11940, 'https://ror.org/02a5meq09', 'pl', 1, 'https://ror.org/02a5meq09 Institute of Economics of the Polish Academy of Sciences Instytut Nauk Ekonomicznych'), (11941, 'https://ror.org/02a5mvd52', 'en', 1, 'https://ror.org/02a5mvd52 OSF Saint Francis Foundation'), (11942, 'https://ror.org/02a7k5x58', 'en', 1, 'https://ror.org/02a7k5x58 Reconstruction of a Survivor'), (11943, 'https://ror.org/02a7p6b15', 'en', 1, 'https://ror.org/02a7p6b15 American India Foundation'), (11944, 'https://ror.org/02a8cv967', 'no_lang_code', 1, 'https://ror.org/02a8cv967 Procter & Gamble (United Kingdom)'), (11945, 'https://ror.org/02a9j6p59', 'no_lang_code', 1, 'https://ror.org/02a9j6p59 PT Inovação e Sistemas (Portugal)'), (11946, 'https://ror.org/02a9vnt59', 'en', 1, 'https://ror.org/02a9vnt59 Institute of Biochemistry and Genetics of Ufa Scientific Centre Институт биохимии и генетики'), (11947, 'https://ror.org/02ab50f57', 'it', 1, 'https://ror.org/02ab50f57 Confederazione Italiana Sindacati Lavoratori Italian Confederation of Workers'' Trade Unions'), (11948, 'https://ror.org/02acd1c86', 'no_lang_code', 1, 'https://ror.org/02acd1c86 Photon Systems (United States)'), (11949, 'https://ror.org/02acx8d20', 'en', 1, 'https://ror.org/02acx8d20 Calhoun Conservation District'), (11950, 'https://ror.org/02ad9kp97', 'no_lang_code', 1, 'https://ror.org/02ad9kp97 Spectra-Physics (Austria)'), (11951, 'https://ror.org/02adgag39', 'no_lang_code', 1, 'https://ror.org/02adgag39 Aixtron (Germany)'), (11952, 'https://ror.org/02advfp87', 'no_lang_code', 1, 'https://ror.org/02advfp87 Corbus Pharmaceuticals (United States)'), (11953, 'https://ror.org/02amkdd40', 'no_lang_code', 1, 'https://ror.org/02amkdd40 World Centric (United States)'), (11954, 'https://ror.org/02an78v51', 'en', 1, 'https://ror.org/02an78v51 Lincoln Center for the Performing Arts'), (11955, 'https://ror.org/02ar66p97', 'en', 1, 'https://ror.org/02ar66p97 Latvian Council of Science'), (11956, 'https://ror.org/02as34v38', 'no_lang_code', 1, 'https://ror.org/02as34v38 Ørsted (Denmark)'), (11957, 'https://ror.org/02ayjed64', 'no_lang_code', 1, 'https://ror.org/02ayjed64 Sally Ride Science (United States)'), (11958, 'https://ror.org/02ayk3803', 'en', 1, 'https://ror.org/02ayk3803 Parelli Foundation'), (11959, 'https://ror.org/02aykj333', 'no_lang_code', 1, 'https://ror.org/02aykj333 Audi (Germany)'), (11960, 'https://ror.org/02azra733', 'no_lang_code', 1, 'https://ror.org/02azra733 Triumph Adler (Germany)'), (11961, 'https://ror.org/02azz6x90', 'en', 1, 'https://ror.org/02azz6x90 Institute of Theoretical and Applied Mechanics Федеральное государственное бюджетное учреждение науки Институт теоретической и прикладной механики им. С.А. Христиановича Сибирского отделения Российской академии наук'), (11962, 'https://ror.org/02b0ps544', 'no_lang_code', 1, 'https://ror.org/02b0ps544 PharmaBioSource (United States)'), (11963, 'https://ror.org/02b1scj45', 'en', 1, 'https://ror.org/02b1scj45 Hawkeye Community College'), (11964, 'https://ror.org/02b5fj195', 'no_lang_code', 1, 'https://ror.org/02b5fj195 Quantis (Switzerland)'), (11965, 'https://ror.org/02b79c687', 'no_lang_code', 1, 'https://ror.org/02b79c687 Mediterranean Broadband Infrastructure (Italy)'), (11966, 'https://ror.org/02b8mhr56', 'it', 1, 'https://ror.org/02b8mhr56 Texclubtec'), (11967, 'https://ror.org/02b8nr167', 'no_lang_code', 1, 'https://ror.org/02b8nr167 Expedeon (Germany)'), (11968, 'https://ror.org/02b9qqz94', 'en', 1, 'https://ror.org/02b9qqz94 Prosperity Gardens'), (11969, 'https://ror.org/02b9ykk59', 'en', 1, 'https://ror.org/02b9ykk59 Lucas County Board of Developmental Disabilities'), (11970, 'https://ror.org/02babdz45', 'en', 1, 'https://ror.org/02babdz45 European Neuro Muscular Centre'), (11971, 'https://ror.org/02bcp5978', 'no_lang_code', 1, 'https://ror.org/02bcp5978 Exergia, Energy, Management and Information Technology'), (11972, 'https://ror.org/02bcy6s93', 'no_lang_code', 1, 'https://ror.org/02bcy6s93 C5•6 Technologies (United States)'), (11973, 'https://ror.org/02bez8p50', 'no_lang_code', 1, 'https://ror.org/02bez8p50 ArcelorMittal (Luxembourg)'), (11974, 'https://ror.org/02bfry065', 'no_lang_code', 1, 'https://ror.org/02bfry065 Hagar International'), (11975, 'https://ror.org/02bgf5h46', 'en', 1, 'https://ror.org/02bgf5h46 Cookeville Regional Medical Center'), (11976, 'https://ror.org/02bgway40', 'en', 1, 'https://ror.org/02bgway40 Gulu Women with Disabilities Union'), (11977, 'https://ror.org/02bgz0507', 'en', 1, 'https://ror.org/02bgz0507 Gorge Grown Food Network'), (11978, 'https://ror.org/02bhe9a93', 'en', 1, 'https://ror.org/02bhe9a93 British Hydromechanics Research Group'), (11979, 'https://ror.org/02bq8mb39', 'en', 1, 'https://ror.org/02bq8mb39 Capital Area Human Services'), (11980, 'https://ror.org/02bsxq855', 'en', 1, 'https://ror.org/02bsxq855 Chicago Association of Black Social Workers'), (11981, 'https://ror.org/02bwrq566', 'no_lang_code', 1, 'https://ror.org/02bwrq566 Carmeq (Germany)'), (11982, 'https://ror.org/02bx9km76', 'en', 1, 'https://ror.org/02bx9km76 Día de la Mujer Latina'), (11983, 'https://ror.org/02by29150', 'no_lang_code', 1, 'https://ror.org/02by29150 Renewable Spirits (United States)'), (11984, 'https://ror.org/02c073z28', 'en', 1, 'https://ror.org/02c073z28 Caribbean Environmental Health Institute'), (11985, 'https://ror.org/02c1b5n48', 'no_lang_code', 1, 'https://ror.org/02c1b5n48 Heusch Boesefeldt (Germany)'), (11986, 'https://ror.org/02c2zwv68', 'no_lang_code', 1, 'https://ror.org/02c2zwv68 Exact Dynamics (Netherlands)'), (11987, 'https://ror.org/02c31t502', 'en', 1, 'https://ror.org/02c31t502 Guangzhou Institutes of Biomedicine and Health 中国科学院广州生物医药与健康研究院'), (11988, 'https://ror.org/02c329420', 'es', 1, 'https://ror.org/02c329420 Hospital Nacional de Niños Bloom'), (11989, 'https://ror.org/02c4d2n77', 'en', 1, 'https://ror.org/02c4d2n77 Fitzgibbon Hospital'), (11990, 'https://ror.org/02c4sht73', 'no_lang_code', 1, 'https://ror.org/02c4sht73 Trenitalia (Italy)'), (11991, 'https://ror.org/02c4z1521', 'no_lang_code', 1, 'https://ror.org/02c4z1521 Sigint Solutions (Cyprus)'), (11992, 'https://ror.org/02c5z9p32', 'no_lang_code', 1, 'https://ror.org/02c5z9p32 Hella (Germany)'), (11993, 'https://ror.org/02ca2n422', 'no_lang_code', 1, 'https://ror.org/02ca2n422 Attana (Sweden)'), (11994, 'https://ror.org/02ca63m84', 'no_lang_code', 1, 'https://ror.org/02ca63m84 Dose Safety (United States)'), (11995, 'https://ror.org/02cbyhv26', 'en', 1, 'https://ror.org/02cbyhv26 Californians for Disability Rights'), (11996, 'https://ror.org/02ce9qs13', 'en', 1, 'https://ror.org/02ce9qs13 Institutes of Science and Development 科技战略咨询研究院'), (11997, 'https://ror.org/02cfzba28', 'fr', 1, 'https://ror.org/02cfzba28 Association Robert Debré'), (11998, 'https://ror.org/02ck4xq38', 'no_lang_code', 1, 'https://ror.org/02ck4xq38 Impel Neuropharma (United States)'), (11999, 'https://ror.org/02ckn6v62', 'fi', 1, 'https://ror.org/02ckn6v62 Turku Science Park'), (12000, 'https://ror.org/02cm8kt07', 'no_lang_code', 1, 'https://ror.org/02cm8kt07 Inno (Germany)'), (12001, 'https://ror.org/02cqwf592', 'no_lang_code', 1, 'https://ror.org/02cqwf592 Analysis and Monitoring of Environmental Risk'), (12002, 'https://ror.org/02crk0343', 'no_lang_code', 1, 'https://ror.org/02crk0343 Visual Tools (Spain)'), (12003, 'https://ror.org/02cs3k195', 'en', 1, 'https://ror.org/02cs3k195 Juvenile Myelomonocytic Leukemia Foundation'), (12004, 'https://ror.org/02cv4sv66', 'es', 1, 'https://ror.org/02cv4sv66 Fundación Valenciaport Valenciaport Foundation'), (12005, 'https://ror.org/02cvw1988', 'en', 1, 'https://ror.org/02cvw1988 Equestrian Aid Foundation'), (12006, 'https://ror.org/02cwbgy35', 'en', 1, 'https://ror.org/02cwbgy35 East Texas Baptist University'), (12007, 'https://ror.org/02cx1m445', 'en', 1, 'https://ror.org/02cx1m445 Institute of Flight'), (12008, 'https://ror.org/02cxadc11', 'no_lang_code', 1, 'https://ror.org/02cxadc11 Winrock International (United States)'), (12009, 'https://ror.org/02d1x3182', 'en', 1, 'https://ror.org/02d1x3182 Genetic Research Institute of the Desert'), (12010, 'https://ror.org/02d61wv82', 'pt', 1, 'https://ror.org/02d61wv82 Hospital São Vicente'), (12011, 'https://ror.org/02d6wbq68', 'en', 1, 'https://ror.org/02d6wbq68 GeoHazards International'), (12012, 'https://ror.org/02d73fs96', 'no_lang_code', 1, 'https://ror.org/02d73fs96 ITI (United Kingdom)'), (12013, 'https://ror.org/02d75ya26', 'no_lang_code', 1, 'https://ror.org/02d75ya26 GreenWood Resources (United States)'), (12014, 'https://ror.org/02d8tke50', 'en', 1, 'https://ror.org/02d8tke50 Emergency Services College Pelastusopisto'), (12015, 'https://ror.org/02d9dbv29', 'en', 1, 'https://ror.org/02d9dbv29 Law and Advocacy for Women in Uganda'); INSERT INTO `rors` VALUES (12016, 'https://ror.org/02darmv56', 'no_lang_code', 1, 'https://ror.org/02darmv56 Geoprobe (United States)'), (12017, 'https://ror.org/02dbn9a54', 'no_lang_code', 1, 'https://ror.org/02dbn9a54 DiaSorin (Ireland)'), (12018, 'https://ror.org/02dczrr13', 'en', 1, 'https://ror.org/02dczrr13 Boys & Girls Clubs of America'), (12019, 'https://ror.org/02ddzr818', 'en', 1, 'https://ror.org/02ddzr818 American College of Sports Medicine'), (12020, 'https://ror.org/02dezma62', 'en', 1, 'https://ror.org/02dezma62 United States Satellite Laboratory'), (12021, 'https://ror.org/02dfjrn59', 'en', 1, 'https://ror.org/02dfjrn59 New Media Studio'), (12022, 'https://ror.org/02dg8v926', 'en', 1, 'https://ror.org/02dg8v926 CHRISTUS Spohn Hospital Corpus Christi - Memorial'), (12023, 'https://ror.org/02dh03d79', 'no_lang_code', 1, 'https://ror.org/02dh03d79 iRepertoire (United States)'), (12024, 'https://ror.org/02dja5v25', 'en', 1, 'https://ror.org/02dja5v25 California Aquatic Therapy and Wellness Center'), (12025, 'https://ror.org/02djyqb52', 'en', 1, 'https://ror.org/02djyqb52 Burn Institute'), (12026, 'https://ror.org/02dngfz86', 'en', 1, 'https://ror.org/02dngfz86 Center for Courageous Kids'), (12027, 'https://ror.org/02dr63s31', 'en', 1, 'https://ror.org/02dr63s31 Institute of Genetic and Biomedical Research Istituto di Ricerca Genetica e Biomedica'), (12028, 'https://ror.org/02drtb754', 'fr', 1, 'https://ror.org/02drtb754 Fédération Internationale de l''Automobile International Automobile Federation'), (12029, 'https://ror.org/02dsehc06', 'no_lang_code', 1, 'https://ror.org/02dsehc06 Zachrome (United Kingdom)'), (12030, 'https://ror.org/02dtzq355', 'no_lang_code', 1, 'https://ror.org/02dtzq355 Endesa (Spain)'), (12031, 'https://ror.org/02dwb6k40', 'no_lang_code', 1, 'https://ror.org/02dwb6k40 Marrone Bio Innovations (United States)'), (12032, 'https://ror.org/02dxbtx84', 'no_lang_code', 1, 'https://ror.org/02dxbtx84 Colorobbia (Italy)'), (12033, 'https://ror.org/02dz3em48', 'en', 1, 'https://ror.org/02dz3em48 Life Goes On-Home Improvement'), (12034, 'https://ror.org/02dz8kh28', 'en', 1, 'https://ror.org/02dz8kh28 California FarmLink'), (12035, 'https://ror.org/02dzpb616', 'en', 1, 'https://ror.org/02dzpb616 Energy Center of Wisconsin'), (12036, 'https://ror.org/02dzq0z59', 'no_lang_code', 1, 'https://ror.org/02dzq0z59 Minerva Consulting and Communication'), (12037, 'https://ror.org/02e0gbz94', 'no_lang_code', 1, 'https://ror.org/02e0gbz94 CCS Global Group'), (12038, 'https://ror.org/02e0hwv58', 'en', 1, 'https://ror.org/02e0hwv58 Las Animas Helping Hands'), (12039, 'https://ror.org/02e0key02', 'en', 1, 'https://ror.org/02e0key02 Massachusetts School Nurse Research Network'), (12040, 'https://ror.org/02e10zk80', 'en', 1, 'https://ror.org/02e10zk80 ORT France'), (12041, 'https://ror.org/02e2xy633', 'en', 1, 'https://ror.org/02e2xy633 Human Resources Development Institute'), (12042, 'https://ror.org/02e36tk84', 'en', 1, 'https://ror.org/02e36tk84 Ohio Aerospace Institute'), (12043, 'https://ror.org/02e61jz42', 'no_lang_code', 1, 'https://ror.org/02e61jz42 e2e Materials (United States)'), (12044, 'https://ror.org/02e8b3g15', 'no_lang_code', 1, 'https://ror.org/02e8b3g15 EV Group (Austria)'), (12045, 'https://ror.org/02e8g2j71', 'en', 1, 'https://ror.org/02e8g2j71 All-Ukrainian Charitable Foundation Coalition of HIV-Service Organizations'), (12046, 'https://ror.org/02ec4x178', 'no_lang_code', 1, 'https://ror.org/02ec4x178 Bombardier (Sweden)'), (12047, 'https://ror.org/02ecdct80', 'no_lang_code', 1, 'https://ror.org/02ecdct80 Transferzentrum Mikroelektronik (Germany)'), (12048, 'https://ror.org/02ecfwn78', 'no_lang_code', 1, 'https://ror.org/02ecfwn78 JB Life Sciences (United States)'), (12049, 'https://ror.org/02ee9a524', 'en', 1, 'https://ror.org/02ee9a524 Christine M. Kleinert Institute'), (12050, 'https://ror.org/02eehde62', 'en', 1, 'https://ror.org/02eehde62 Highland Council'), (12051, 'https://ror.org/02eg1b280', 'en', 1, 'https://ror.org/02eg1b280 Novokuznetsk State Institute of Advanced Medical Education Новокузнецкий институт усовершенствования врачей'), (12052, 'https://ror.org/02egmm606', 'no_lang_code', 1, 'https://ror.org/02egmm606 Metroeconomica (United Kingdom)'), (12053, 'https://ror.org/02eja2g37', 'no_lang_code', 1, 'https://ror.org/02eja2g37 Melt Organic (United States)'), (12054, 'https://ror.org/02ejgnj48', 'no_lang_code', 1, 'https://ror.org/02ejgnj48 Satra (United Kingdom)'), (12055, 'https://ror.org/02en7tm18', 'no_lang_code', 1, 'https://ror.org/02en7tm18 Cyntelix (Netherlands)'), (12056, 'https://ror.org/02ep4w426', 'no_lang_code', 1, 'https://ror.org/02ep4w426 LISA laser products (Germany)'), (12057, 'https://ror.org/02epcmt14', 'no_lang_code', 1, 'https://ror.org/02epcmt14 SCITEK Consultants (United Kingdom)'), (12058, 'https://ror.org/02epq7t62', 'no_lang_code', 1, 'https://ror.org/02epq7t62 Amplitude Systèmes (France)'), (12059, 'https://ror.org/02esvv741', 'en', 1, 'https://ror.org/02esvv741 Family Health Center of Worcester'), (12060, 'https://ror.org/02ethns06', 'no_lang_code', 1, 'https://ror.org/02ethns06 Software (Spain)'), (12061, 'https://ror.org/02etp1027', 'en', 1, 'https://ror.org/02etp1027 In The Meantime Men’s Group'), (12062, 'https://ror.org/02evrg063', 'no_lang_code', 1, 'https://ror.org/02evrg063 Papenmeier (Germany)'), (12063, 'https://ror.org/02ewpgp84', 'en', 1, 'https://ror.org/02ewpgp84 ErinoakKids Centre for Treatment and Development'), (12064, 'https://ror.org/02exqvj96', 'en', 1, 'https://ror.org/02exqvj96 British Columbia Easter Seals Society for Children with Disabilities'), (12065, 'https://ror.org/02f0jr828', 'en', 1, 'https://ror.org/02f0jr828 Memorial Foundation'), (12066, 'https://ror.org/02f12sz84', 'no_lang_code', 1, 'https://ror.org/02f12sz84 3M (France)'), (12067, 'https://ror.org/02f1baf17', 'no_lang_code', 1, 'https://ror.org/02f1baf17 Softeco Sismat (Italy)'), (12068, 'https://ror.org/02f588d44', 'en', 1, 'https://ror.org/02f588d44 University of Virginia Hospital'), (12069, 'https://ror.org/02f64hv34', 'en', 1, 'https://ror.org/02f64hv34 No Barriers Youth'), (12070, 'https://ror.org/02f6txw68', 'en', 1, 'https://ror.org/02f6txw68 East Georgia Cancer Coalition'), (12071, 'https://ror.org/02f6yfb39', 'en', 1, 'https://ror.org/02f6yfb39 National Space Grant Foundation'), (12072, 'https://ror.org/02f7fr916', 'en', 1, 'https://ror.org/02f7fr916 ENT and Allergy Associates of Florida'), (12073, 'https://ror.org/02f7txf64', 'en', 1, 'https://ror.org/02f7txf64 Technical Education Research Centers'), (12074, 'https://ror.org/02f88nb31', 'no_lang_code', 1, 'https://ror.org/02f88nb31 SolarPrint (Ireland)'), (12075, 'https://ror.org/02f8ezy79', 'en', 1, 'https://ror.org/02f8ezy79 Living Beyond Breast Cancer'), (12076, 'https://ror.org/02f8s1297', 'no_lang_code', 1, 'https://ror.org/02f8s1297 Triplan (Italy)'), (12077, 'https://ror.org/02fbyq253', 'no_lang_code', 1, 'https://ror.org/02fbyq253 Campden BRI (Hungary)'), (12078, 'https://ror.org/02fefk125', 'en', 1, 'https://ror.org/02fefk125 The Harris Center for Mental Health and IDD'), (12079, 'https://ror.org/02fhdkr54', 'en', 1, 'https://ror.org/02fhdkr54 Ohio''s Hospice of Dayton'), (12080, 'https://ror.org/02fs0x831', 'en', 1, 'https://ror.org/02fs0x831 Cris Collinsworth ProScan Fund'), (12081, 'https://ror.org/02fsyqx49', 'no_lang_code', 1, 'https://ror.org/02fsyqx49 Ian Catling Consultancy'), (12082, 'https://ror.org/02ft67b52', 'no_lang_code', 1, 'https://ror.org/02ft67b52 NCC (Denmark)'), (12083, 'https://ror.org/02fwr8382', 'no_lang_code', 1, 'https://ror.org/02fwr8382 AITIA International (Hungary)'), (12084, 'https://ror.org/02fyr1a65', 'no_lang_code', 1, 'https://ror.org/02fyr1a65 DunavNET (Serbia)'), (12085, 'https://ror.org/02fz4b004', 'en', 1, 'https://ror.org/02fz4b004 Eastern Shore of Virginia Broadband Authority'), (12086, 'https://ror.org/02g03w722', 'en', 1, 'https://ror.org/02g03w722 Guards of The Earth and The Vulnerable'), (12087, 'https://ror.org/02g0y3z13', 'en', 1, 'https://ror.org/02g0y3z13 Institute of Scientific and Technological Research in Aeronautics and Mechanical Engineering'), (12088, 'https://ror.org/02g13cw94', 'en', 1, 'https://ror.org/02g13cw94 Hellenic Ministry of Culture and Sports Υπουργείο Πολιτισμού και Αθλητισμού'), (12089, 'https://ror.org/02g1wqf71', 'en', 1, 'https://ror.org/02g1wqf71 Center for Health Consultation and Community Development Trung tâm tư vấn sức khỏe và phát triển cộng đồng'), (12090, 'https://ror.org/02g3bbd17', 'no_lang_code', 1, 'https://ror.org/02g3bbd17 Gisat (Czechia)'), (12091, 'https://ror.org/02g7qxm32', 'no_lang_code', 1, 'https://ror.org/02g7qxm32 Afraxis (United States)'), (12092, 'https://ror.org/02g802m02', 'en', 1, 'https://ror.org/02g802m02 Mission Health'), (12093, 'https://ror.org/02ga6zq31', 'en', 1, 'https://ror.org/02ga6zq31 Israel Cancer Association USA'), (12094, 'https://ror.org/02gb22q25', 'en', 1, 'https://ror.org/02gb22q25 The Food Trust'), (12095, 'https://ror.org/02gb76937', 'no_lang_code', 1, 'https://ror.org/02gb76937 Domain Therapeutics (France)'), (12096, 'https://ror.org/02gbfwn85', 'no_lang_code', 1, 'https://ror.org/02gbfwn85 Intermarine (Italy)'), (12097, 'https://ror.org/02gc8w463', 'en', 1, 'https://ror.org/02gc8w463 CLIC Sargent'), (12098, 'https://ror.org/02gd18467', 'en', 1, 'https://ror.org/02gd18467 Chelsea and Westminster Hospital NHS Foundation Trust'), (12099, 'https://ror.org/02gen5m31', 'en', 1, 'https://ror.org/02gen5m31 Erikson Institute'), (12100, 'https://ror.org/02gev8286', 'en', 1, 'https://ror.org/02gev8286 Michigan Food & Farming Systems'), (12101, 'https://ror.org/02gf24d79', 'no_lang_code', 1, 'https://ror.org/02gf24d79 M.C. Townsend Associates (United States)'), (12102, 'https://ror.org/02ggpr832', 'en', 1, 'https://ror.org/02ggpr832 California Prostitutes Education Project'), (12103, 'https://ror.org/02gj68a91', 'en', 1, 'https://ror.org/02gj68a91 Greater Lansing Food Bank'), (12104, 'https://ror.org/02gk0vj45', 'no_lang_code', 1, 'https://ror.org/02gk0vj45 Rockfield (United Kingdom)'), (12105, 'https://ror.org/02gnmy268', 'no_lang_code', 1, 'https://ror.org/02gnmy268 Applied GeoSolutions (United States)'), (12106, 'https://ror.org/02gp5xx45', 'en', 1, 'https://ror.org/02gp5xx45 Holy Redeemer'), (12107, 'https://ror.org/02gpy3h79', 'en', 1, 'https://ror.org/02gpy3h79 MemorialCare Health System'), (12108, 'https://ror.org/02gq61384', 'no_lang_code', 1, 'https://ror.org/02gq61384 Vergnet (France)'), (12109, 'https://ror.org/02gqvwf68', 'no_lang_code', 1, 'https://ror.org/02gqvwf68 Cibus (United States)'), (12110, 'https://ror.org/02gr0tn14', 'en', 1, 'https://ror.org/02gr0tn14 Breast Cancer Resource Centre of Austin'), (12111, 'https://ror.org/02grc9p87', 'en', 1, 'https://ror.org/02grc9p87 Intertribal Agriculture Council'), (12112, 'https://ror.org/02gsg9n78', 'en', 1, 'https://ror.org/02gsg9n78 Clark Family Breast Cancer Services'), (12113, 'https://ror.org/02gvyd507', 'en', 1, 'https://ror.org/02gvyd507 Institute for Culture and Ecology'), (12114, 'https://ror.org/02gxz0343', 'en', 1, 'https://ror.org/02gxz0343 Adena Health System'), (12115, 'https://ror.org/02gywfe80', 'en', 1, 'https://ror.org/02gywfe80 National Mining Hall of Fame and Museum'), (12116, 'https://ror.org/02h3g8t20', 'no_lang_code', 1, 'https://ror.org/02h3g8t20 Liberty Media (United States)'), (12117, 'https://ror.org/02h606z41', 'en', 1, 'https://ror.org/02h606z41 Georgia Canines for Independence'), (12118, 'https://ror.org/02h8ckc21', 'pl', 1, 'https://ror.org/02h8ckc21 Instytut Kolejnictwa'), (12119, 'https://ror.org/02h8qh795', 'no_lang_code', 1, 'https://ror.org/02h8qh795 Bioneer (Denmark)'), (12120, 'https://ror.org/02h9mq080', 'no_lang_code', 1, 'https://ror.org/02h9mq080 Argos Therapeutics (United States)'), (12121, 'https://ror.org/02h9xze43', 'no_lang_code', 1, 'https://ror.org/02h9xze43 Biotrend (Portugal)'), (12122, 'https://ror.org/02ha9ms92', 'no_lang_code', 1, 'https://ror.org/02ha9ms92 VIC Technology Venture Development (United States)'), (12123, 'https://ror.org/02hbj0683', 'en', 1, 'https://ror.org/02hbj0683 Coming Home Connection'), (12124, 'https://ror.org/02hbmds06', 'de', 1, 'https://ror.org/02hbmds06 Gesellschaft für Fertigungstechnik und Entwicklung'), (12125, 'https://ror.org/02hbq4750', 'no_lang_code', 1, 'https://ror.org/02hbq4750 Mariskone (Spain)'), (12126, 'https://ror.org/02hdbjt22', 'no_lang_code', 1, 'https://ror.org/02hdbjt22 Forgital (Italy)'), (12127, 'https://ror.org/02hgsjt50', 'no_lang_code', 1, 'https://ror.org/02hgsjt50 Alpha Cancer Technologies'), (12128, 'https://ror.org/02hhyky59', 'en', 1, 'https://ror.org/02hhyky59 Brain Injury Association of Louisiana'), (12129, 'https://ror.org/02hj34779', 'en', 1, 'https://ror.org/02hj34779 Icelandic Meteorological Office'), (12130, 'https://ror.org/02hjww730', 'en', 1, 'https://ror.org/02hjww730 Butte County Office of Education'), (12131, 'https://ror.org/02hk14q21', 'fr', 1, 'https://ror.org/02hk14q21 Ministère de l''Éducation Nationale, de la Formation Professionnelle, de l''Enseignement Supérieur et de la Recherche Scientifique وزارة التربية الوطنية و التكوين المهني و التعليم العالي و البحث العلمي'), (12132, 'https://ror.org/02hkkqt25', 'en', 1, 'https://ror.org/02hkkqt25 Maine Farmland Trust'), (12133, 'https://ror.org/02hkzpe56', 'no_lang_code', 1, 'https://ror.org/02hkzpe56 Telekom Austria'), (12134, 'https://ror.org/02hncwj35', 'en', 1, 'https://ror.org/02hncwj35 Dellon Institutes for Peripheral Nerve Surgery'), (12135, 'https://ror.org/02hp5at17', 'en', 1, 'https://ror.org/02hp5at17 Jupiter Medical Center'), (12136, 'https://ror.org/02hqjzm41', 'ro', 1, 'https://ror.org/02hqjzm41 Institutul de Cercetari Electrotehnice'), (12137, 'https://ror.org/02hvj8973', 'en', 1, 'https://ror.org/02hvj8973 Disabled Athlete Sports Association'), (12138, 'https://ror.org/02j2j3d46', 'en', 1, 'https://ror.org/02j2j3d46 Pacific Crest Trail Association'), (12139, 'https://ror.org/02j41b239', 'no_lang_code', 1, 'https://ror.org/02j41b239 IdMind (Portugal)'), (12140, 'https://ror.org/02j4a0n65', 'en', 1, 'https://ror.org/02j4a0n65 Nevada Cancer Research Foundation'), (12141, 'https://ror.org/02j557320', 'no_lang_code', 1, 'https://ror.org/02j557320 Galilaeus (Finland)'), (12142, 'https://ror.org/02j5e0989', 'en', 1, 'https://ror.org/02j5e0989 Cancer Association of Anderson'), (12143, 'https://ror.org/02j7zcz08', 'en', 1, 'https://ror.org/02j7zcz08 Bittersweet Farms'), (12144, 'https://ror.org/02j8awh30', 'no_lang_code', 1, 'https://ror.org/02j8awh30 TRW Automotive (Germany)'), (12145, 'https://ror.org/02j8vpa07', 'en', 1, 'https://ror.org/02j8vpa07 Földrajztudományi Kutatóintézet Geographical Institute'), (12146, 'https://ror.org/02ja4sy98', 'en', 1, 'https://ror.org/02ja4sy98 National Society of Genetic Counselors'), (12147, 'https://ror.org/02javd718', 'no_lang_code', 1, 'https://ror.org/02javd718 Smith-Root (United States)'), (12148, 'https://ror.org/02jaztc47', 'en', 1, 'https://ror.org/02jaztc47 Institut für Textil- und Verfahrenstechnik Denkendorf Institute of Textile Technology and Process Engineering'), (12149, 'https://ror.org/02jb1pj89', 'en', 1, 'https://ror.org/02jb1pj89 HOPE Organization'), (12150, 'https://ror.org/02jbegc32', 'en', 1, 'https://ror.org/02jbegc32 Children’s Clinics'), (12151, 'https://ror.org/02je5e910', 'en', 1, 'https://ror.org/02je5e910 Hope Chest for Breast Cancer'), (12152, 'https://ror.org/02jf95y23', 'no_lang_code', 1, 'https://ror.org/02jf95y23 e GEOS (Italy)'), (12153, 'https://ror.org/02jgraj16', 'en', 1, 'https://ror.org/02jgraj16 Institute for Global Environmental Strategies'), (12154, 'https://ror.org/02jh4h461', 'en', 1, 'https://ror.org/02jh4h461 Leicester City Council'), (12155, 'https://ror.org/02jh73m95', 'it', 1, 'https://ror.org/02jh73m95 Felicita and Enrico Bignaschi and Sons Foundation Fondazione Bignaschi'), (12156, 'https://ror.org/02jq3z767', 'en', 1, 'https://ror.org/02jq3z767 John Paul II Medical Research Institute'), (12157, 'https://ror.org/02jsytr13', 'no_lang_code', 1, 'https://ror.org/02jsytr13 Prometeia (Italy)'), (12158, 'https://ror.org/02jwqhx24', 'en', 1, 'https://ror.org/02jwqhx24 Cancer Support Center'), (12159, 'https://ror.org/02jwynf03', 'en', 1, 'https://ror.org/02jwynf03 Center for Rural Affairs'), (12160, 'https://ror.org/02jx22q88', 'en', 1, 'https://ror.org/02jx22q88 Community Action Duluth'), (12161, 'https://ror.org/02jygec53', 'no_lang_code', 1, 'https://ror.org/02jygec53 Elecnor (Spain)'), (12162, 'https://ror.org/02jyxcp49', 'en', 1, 'https://ror.org/02jyxcp49 Alkaptonuria Society'), (12163, 'https://ror.org/02jzmxs17', 'en', 1, 'https://ror.org/02jzmxs17 North Bay Cancer Alliance'), (12164, 'https://ror.org/02k1b4g33', 'no_lang_code', 1, 'https://ror.org/02k1b4g33 Grind For Life (United States)'), (12165, 'https://ror.org/02k2bzx75', 'no_lang_code', 1, 'https://ror.org/02k2bzx75 Smartex (Italy)'), (12166, 'https://ror.org/02k37yq18', 'en', 1, 'https://ror.org/02k37yq18 CASA for Kids'), (12167, 'https://ror.org/02k4rpx08', 'en', 1, 'https://ror.org/02k4rpx08 Care 2 Tri'), (12168, 'https://ror.org/02k5trc82', 'no_lang_code', 1, 'https://ror.org/02k5trc82 Nereus Life Sciences (United States)'), (12169, 'https://ror.org/02k674x39', 'en', 1, 'https://ror.org/02k674x39 Park Nicollet Clinic'), (12170, 'https://ror.org/02k712m23', 'en', 1, 'https://ror.org/02k712m23 Life Rolls On Foundation'), (12171, 'https://ror.org/02k8rcn44', 'en', 1, 'https://ror.org/02k8rcn44 Light and Salt Association'), (12172, 'https://ror.org/02ka1d450', 'no_lang_code', 1, 'https://ror.org/02ka1d450 Siena Biotech (Italy)'), (12173, 'https://ror.org/02ka41c13', 'no_lang_code', 1, 'https://ror.org/02ka41c13 ADispell (United States)'), (12174, 'https://ror.org/02kak3e04', 'en', 1, 'https://ror.org/02kak3e04 Aurora St. Luke''s Medical Center'), (12175, 'https://ror.org/02kc0ck80', 'no_lang_code', 1, 'https://ror.org/02kc0ck80 M&I/Partners'), (12176, 'https://ror.org/02kc8tk59', 'en', 1, 'https://ror.org/02kc8tk59 Museum of Aviation'), (12177, 'https://ror.org/02kg21794', 'it', 1, 'https://ror.org/02kg21794 Regione Campania'), (12178, 'https://ror.org/02kgzq677', 'no_lang_code', 1, 'https://ror.org/02kgzq677 Hybrid Catalysis (Netherlands)'), (12179, 'https://ror.org/02km85a12', 'no_lang_code', 1, 'https://ror.org/02km85a12 STMicroelectronics (Belgium)'), (12180, 'https://ror.org/02kn8an38', 'nl', 1, 'https://ror.org/02kn8an38 Louis Bolk Instituut'), (12181, 'https://ror.org/02knxde55', 'en', 1, 'https://ror.org/02knxde55 Women Food and Agriculture Network'), (12182, 'https://ror.org/02kq6xe25', 'no_lang_code', 1, 'https://ror.org/02kq6xe25 IntuiLab (France)'), (12183, 'https://ror.org/02ktcxy40', 'en', 1, 'https://ror.org/02ktcxy40 Kentucky Court of Justice'), (12184, 'https://ror.org/02ktw6q65', 'no_lang_code', 1, 'https://ror.org/02ktw6q65 Technobiochip (Italy)'), (12185, 'https://ror.org/02kvgg008', 'no_lang_code', 1, 'https://ror.org/02kvgg008 Cepsa (Spain)'), (12186, 'https://ror.org/02kw9ya16', 'en', 1, 'https://ror.org/02kw9ya16 Cancer and Chronic Disease Consortium'), (12187, 'https://ror.org/02kwk6c15', 'en', 1, 'https://ror.org/02kwk6c15 International Management Institute'), (12188, 'https://ror.org/02kwrph79', 'en', 1, 'https://ror.org/02kwrph79 Partners for Cancer Care and Prevention'), (12189, 'https://ror.org/02kyqnp42', 'en', 1, 'https://ror.org/02kyqnp42 Cincinnati Observatory'), (12190, 'https://ror.org/02m0cd826', 'en', 1, 'https://ror.org/02m0cd826 St. Luke''s Children''s Hospital'), (12191, 'https://ror.org/02m1pay40', 'en', 1, 'https://ror.org/02m1pay40 Clinica de Pneumologie Iaşi'), (12192, 'https://ror.org/02m5haa59', 'cs', 1, 'https://ror.org/02m5haa59 Czech Metrology Institute Český Metrologický Institut'), (12193, 'https://ror.org/02m7zmm13', 'en', 1, 'https://ror.org/02m7zmm13 Council On Aging of Central Oregon'), (12194, 'https://ror.org/02m80r109', 'no_lang_code', 1, 'https://ror.org/02m80r109 Scenic Valley Farms'), (12195, 'https://ror.org/02ma7yv75', 'en', 1, 'https://ror.org/02ma7yv75 Institute of Nanotechnology'), (12196, 'https://ror.org/02magnn81', 'no_lang_code', 1, 'https://ror.org/02magnn81 CESI (Italy)'), (12197, 'https://ror.org/02mbv4339', 'no_lang_code', 1, 'https://ror.org/02mbv4339 Deutsche Telekom (Poland)'), (12198, 'https://ror.org/02mczt252', 'no_lang_code', 1, 'https://ror.org/02mczt252 NexImmune (United States)'), (12199, 'https://ror.org/02mfecp81', 'no_lang_code', 1, 'https://ror.org/02mfecp81 Mosaic'), (12200, 'https://ror.org/02mfpez21', 'pt', 1, 'https://ror.org/02mfpez21 Projecto Desenvolvimento Manutenção Formação e Consultadoria'), (12201, 'https://ror.org/02mh1s531', 'en', 1, 'https://ror.org/02mh1s531 Global Abilities Foundation'), (12202, 'https://ror.org/02mhjkx12', 'no_lang_code', 1, 'https://ror.org/02mhjkx12 Sopra (France)'), (12203, 'https://ror.org/02mjtc790', 'en', 1, 'https://ror.org/02mjtc790 Building Blocks Learning Academy'), (12204, 'https://ror.org/02mm95a26', 'nl', 1, 'https://ror.org/02mm95a26 Veiligheids- en Gezondheidsregio Gelderland-Midden'), (12205, 'https://ror.org/02mme4d79', 'en', 1, 'https://ror.org/02mme4d79 Research and Production Association Typhoon'), (12206, 'https://ror.org/02mmrmf21', 'no_lang_code', 1, 'https://ror.org/02mmrmf21 Janus Biotherapeutics (United States)'), (12207, 'https://ror.org/02mnzkw65', 'no_lang_code', 1, 'https://ror.org/02mnzkw65 Synthema (Italy)'), (12208, 'https://ror.org/02mrrr189', 'en', 1, 'https://ror.org/02mrrr189 Adagio Health'), (12209, 'https://ror.org/02msvh720', 'no_lang_code', 1, 'https://ror.org/02msvh720 SoftBank Robotics (France)'), (12210, 'https://ror.org/02mt8gf23', 'en', 1, 'https://ror.org/02mt8gf23 Hope Worldwide Monterrey'), (12211, 'https://ror.org/02mtpb511', 'no_lang_code', 1, 'https://ror.org/02mtpb511 Hoosier Cancer Research Network (United States)'), (12212, 'https://ror.org/02mtwe318', 'no_lang_code', 1, 'https://ror.org/02mtwe318 Argus Umweltbiotechnologie (Germany)'), (12213, 'https://ror.org/02mtyfy02', 'no_lang_code', 1, 'https://ror.org/02mtyfy02 Micronit Microfluidics (Netherlands)'), (12214, 'https://ror.org/02mwhda43', 'no_lang_code', 1, 'https://ror.org/02mwhda43 Downstream Strategies (United States)'), (12215, 'https://ror.org/02mx1bf53', 'en', 1, 'https://ror.org/02mx1bf53 Advanced Cancer Therapeutics'), (12216, 'https://ror.org/02mxt1985', 'no_lang_code', 1, 'https://ror.org/02mxt1985 Greenwood Clean Energy (United States)'), (12217, 'https://ror.org/02mz3ef34', 'en', 1, 'https://ror.org/02mz3ef34 Food Bank of North Alabama'), (12218, 'https://ror.org/02mzffa46', 'no_lang_code', 1, 'https://ror.org/02mzffa46 Courtagen Life Sciences (United States)'), (12219, 'https://ror.org/02n2syw04', 'en', 1, 'https://ror.org/02n2syw04 International Center for Agricultural Research in the Dry Areas'), (12220, 'https://ror.org/02n6yz853', 'no_lang_code', 1, 'https://ror.org/02n6yz853 Anacapa Sciences (United States)'), (12221, 'https://ror.org/02n71yc39', 'en', 1, 'https://ror.org/02n71yc39 Community Health Development'), (12222, 'https://ror.org/02n7gg832', 'en', 1, 'https://ror.org/02n7gg832 Children''s Aid Society'), (12223, 'https://ror.org/02n800c31', 'en', 1, 'https://ror.org/02n800c31 Nathan Adelson Hospice'), (12224, 'https://ror.org/02n8vwz90', 'en', 1, 'https://ror.org/02n8vwz90 NAACP Legal Defense and Educational Fund'), (12225, 'https://ror.org/02n9p9f13', 'en', 1, 'https://ror.org/02n9p9f13 Sama Resource Group for Women and Health'), (12226, 'https://ror.org/02nadbe75', 'en', 1, 'https://ror.org/02nadbe75 Susan G. Komen Breast Cancer Foundation'), (12227, 'https://ror.org/02napvw46', 'en', 1, 'https://ror.org/02napvw46 Florida Institute for Human and Machine Cognition'), (12228, 'https://ror.org/02nbz6h12', 'en', 1, 'https://ror.org/02nbz6h12 Casting for Recovery'), (12229, 'https://ror.org/02ndts806', 'en', 1, 'https://ror.org/02ndts806 Center for Pan Asian Community Services'), (12230, 'https://ror.org/02nfs1v98', 'en', 1, 'https://ror.org/02nfs1v98 Gateways Hospital and Mental Health Center'), (12231, 'https://ror.org/02nh6s285', 'en', 1, 'https://ror.org/02nh6s285 Macoupin County Public Health Department'), (12232, 'https://ror.org/02nj1s179', 'no_lang_code', 1, 'https://ror.org/02nj1s179 Xenics (Belgium)'), (12233, 'https://ror.org/02nkdpb96', 'en', 1, 'https://ror.org/02nkdpb96 Northeast Florida Healthy Start Coalition'), (12234, 'https://ror.org/02nkrhg40', 'en', 1, 'https://ror.org/02nkrhg40 Amref Health Africa'), (12235, 'https://ror.org/02nn4sa19', 'no_lang_code', 1, 'https://ror.org/02nn4sa19 Mercy Corps Northwest (United States)'), (12236, 'https://ror.org/02npqe506', 'en', 1, 'https://ror.org/02npqe506 GrowNYC'), (12237, 'https://ror.org/02nr1pp46', 'en', 1, 'https://ror.org/02nr1pp46 Food and Friends'), (12238, 'https://ror.org/02nsnn902', 'en', 1, 'https://ror.org/02nsnn902 Conseil Européen de l''Information sur l''Alimentation European Food Information Council Europeo de Información sobre la Alimentación Europäische Informationszentrum für Lebensmittel'), (12239, 'https://ror.org/02nt0h862', 'en', 1, 'https://ror.org/02nt0h862 Art Science Research Laboratory'), (12240, 'https://ror.org/02nxnzz65', 'no_lang_code', 1, 'https://ror.org/02nxnzz65 Meteorologie Consult (Germany)'), (12241, 'https://ror.org/02nycrb78', 'en', 1, 'https://ror.org/02nycrb78 Firefighter Cancer Support Network'), (12242, 'https://ror.org/02nyp1408', 'en', 1, 'https://ror.org/02nyp1408 National Council on Radiation Protection and Measurements'), (12243, 'https://ror.org/02p038k52', 'en', 1, 'https://ror.org/02p038k52 Shawnee Community College'), (12244, 'https://ror.org/02p0ex288', 'en', 1, 'https://ror.org/02p0ex288 Bridge II Sports'), (12245, 'https://ror.org/02p1xqf92', 'no_lang_code', 1, 'https://ror.org/02p1xqf92 Centro Laser'), (12246, 'https://ror.org/02p1zps28', 'en', 1, 'https://ror.org/02p1zps28 Asperger/Autism Network'), (12247, 'https://ror.org/02p210k88', 'en', 1, 'https://ror.org/02p210k88 John T. Mather Memorial Hospital'), (12248, 'https://ror.org/02p3cs867', 'no_lang_code', 1, 'https://ror.org/02p3cs867 T6 (Italy)'), (12249, 'https://ror.org/02p4mb484', 'en', 1, 'https://ror.org/02p4mb484 Plan International Tanzania'), (12250, 'https://ror.org/02p5vjg42', 'en', 1, 'https://ror.org/02p5vjg42 Dalton School'), (12251, 'https://ror.org/02p7ad522', 'en', 1, 'https://ror.org/02p7ad522 New England Coalition for Cancer Survivorship'), (12252, 'https://ror.org/02p96gg69', 'no_lang_code', 1, 'https://ror.org/02p96gg69 Marathon Kids'), (12253, 'https://ror.org/02p9c1e58', 'no_lang_code', 1, 'https://ror.org/02p9c1e58 KWS Saat (Germany)'), (12254, 'https://ror.org/02pas9b60', 'en', 1, 'https://ror.org/02pas9b60 Krell Institute'), (12255, 'https://ror.org/02pbsj156', 'no_lang_code', 1, 'https://ror.org/02pbsj156 OPKO Health (United States)'), (12256, 'https://ror.org/02petqk07', 'no_lang_code', 1, 'https://ror.org/02petqk07 Huntsman (Switzerland)'), (12257, 'https://ror.org/02pft9k47', 'es', 1, 'https://ror.org/02pft9k47 Centro Nacional de Sanidad Agropecuaria'), (12258, 'https://ror.org/02pkfda39', 'en', 1, 'https://ror.org/02pkfda39 Open Arms of Minnesota'), (12259, 'https://ror.org/02pp21x07', 'en', 1, 'https://ror.org/02pp21x07 La Crosse Medical Health Science Consortium'), (12260, 'https://ror.org/02ppjec98', 'en', 1, 'https://ror.org/02ppjec98 Community Services Unlimited'), (12261, 'https://ror.org/02pq0ct17', 'no_lang_code', 1, 'https://ror.org/02pq0ct17 Avrygen (United States)'), (12262, 'https://ror.org/02pq27251', 'en', 1, 'https://ror.org/02pq27251 Oklahoma Department of Human Services'), (12263, 'https://ror.org/02prjad05', 'en', 1, 'https://ror.org/02prjad05 Abilities Unlimited of the Carolinas'), (12264, 'https://ror.org/02pt5ea98', 'no_lang_code', 1, 'https://ror.org/02pt5ea98 Industry Vision Automation (United States)'), (12265, 'https://ror.org/02ptz5951', 'en', 1, 'https://ror.org/02ptz5951 Gemeinsame Forschungsstelle Joint Research Centre'), (12266, 'https://ror.org/02pw5x542', 'no_lang_code', 1, 'https://ror.org/02pw5x542 Isojet Equipements (France)'), (12267, 'https://ror.org/02pwd4094', 'en', 1, 'https://ror.org/02pwd4094 Grossmont Hospital Foundation'), (12268, 'https://ror.org/02px37122', 'en', 1, 'https://ror.org/02px37122 Florida Cancer Specialists & Research Institute'), (12269, 'https://ror.org/02pxbbk34', 'en', 1, 'https://ror.org/02pxbbk34 Ministero dell''Interno Ministry of Interior'), (12270, 'https://ror.org/02pzjnn79', 'en', 1, 'https://ror.org/02pzjnn79 Regional Environmental Council'), (12271, 'https://ror.org/02pzmkw23', 'en', 1, 'https://ror.org/02pzmkw23 American Friends Service Committee'), (12272, 'https://ror.org/02q3a7088', 'en', 1, 'https://ror.org/02q3a7088 Instytut Gospodarki Surowcami Mineralnymi i Energią Polskiej Akademii Nauk Mineral and Energy Economy Research Institute of the Polish Academy of Sciences'), (12273, 'https://ror.org/02q6d6830', 'no_lang_code', 1, 'https://ror.org/02q6d6830 Secor Strategies (United States)'), (12274, 'https://ror.org/02q6q6m23', 'en', 1, 'https://ror.org/02q6q6m23 San Bernardino County Department of Public Health'), (12275, 'https://ror.org/02q7bh346', 'en', 1, 'https://ror.org/02q7bh346 ExploreMars'), (12276, 'https://ror.org/02q7rpv07', 'en', 1, 'https://ror.org/02q7rpv07 Dillard Academy'), (12277, 'https://ror.org/02q8btt40', 'no_lang_code', 1, 'https://ror.org/02q8btt40 Aterica (Canada)'), (12278, 'https://ror.org/02q9khv47', 'no_lang_code', 1, 'https://ror.org/02q9khv47 Factum'), (12279, 'https://ror.org/02qarj925', 'en', 1, 'https://ror.org/02qarj925 Michigan Institute for Neurological Disorders'), (12280, 'https://ror.org/02qcw9v04', 'en', 1, 'https://ror.org/02qcw9v04 Malta Resources Authority'), (12281, 'https://ror.org/02qcxga94', 'en', 1, 'https://ror.org/02qcxga94 European Union Road Federation'), (12282, 'https://ror.org/02qfp6t71', 'no_lang_code', 1, 'https://ror.org/02qfp6t71 Rikola (Finland)'), (12283, 'https://ror.org/02qk65b13', 'en', 1, 'https://ror.org/02qk65b13 Brooklyn Technical High School'), (12284, 'https://ror.org/02qnmmb02', 'en', 1, 'https://ror.org/02qnmmb02 Minnesota Epilepsy Group'), (12285, 'https://ror.org/02qp62108', 'no_lang_code', 1, 'https://ror.org/02qp62108 Plansee (Austria)'), (12286, 'https://ror.org/02qs54046', 'no_lang_code', 1, 'https://ror.org/02qs54046 Busek (United States)'), (12287, 'https://ror.org/02qs5ar77', 'no_lang_code', 1, 'https://ror.org/02qs5ar77 Azienda Trasporti Milanesi (Italy)'), (12288, 'https://ror.org/02qwkar08', 'no_lang_code', 1, 'https://ror.org/02qwkar08 Mitra Biotech (India)'), (12289, 'https://ror.org/02r2t8x54', 'it', 1, 'https://ror.org/02r2t8x54 Lega Italiana per la Lotta ai Tumori'), (12290, 'https://ror.org/02r30yj10', 'en', 1, 'https://ror.org/02r30yj10 European Incoherent Scatter Scientific Association'), (12291, 'https://ror.org/02r382680', 'bs', 1, 'https://ror.org/02r382680 Prona'), (12292, 'https://ror.org/02r3t1479', 'no_lang_code', 1, 'https://ror.org/02r3t1479 Adbroncus (Spain)'), (12293, 'https://ror.org/02r4vbb57', 'no_lang_code', 1, 'https://ror.org/02r4vbb57 Metaclipse Therapeutics (United States)'), (12294, 'https://ror.org/02r50zr04', 'no_lang_code', 1, 'https://ror.org/02r50zr04 Algoritmos Procesos y Disenos (Spain)'), (12295, 'https://ror.org/02r65gs06', 'no_lang_code', 1, 'https://ror.org/02r65gs06 Institute of Telecommunication and Information Technologies Instytut Technik Telekomunikacyjnych i Informatycznych (Poland)'), (12296, 'https://ror.org/02r7md321', 'en', 1, 'https://ror.org/02r7md321 North Florida/South Georgia Veterans Health System'), (12297, 'https://ror.org/02r7qvh89', 'en', 1, 'https://ror.org/02r7qvh89 Friends of L''Arche Long Island'), (12298, 'https://ror.org/02r7v3q78', 'no_lang_code', 1, 'https://ror.org/02r7v3q78 Wilks (United States)'), (12299, 'https://ror.org/02rae2f41', 'en', 1, 'https://ror.org/02rae2f41 International Women''s Development Agency'), (12300, 'https://ror.org/02rawbx68', 'en', 1, 'https://ror.org/02rawbx68 Disability Rights and Resources'), (12301, 'https://ror.org/02rb8qp97', 'no_lang_code', 1, 'https://ror.org/02rb8qp97 CISSOID (Belgium)'), (12302, 'https://ror.org/02rc7fh29', 'it', 1, 'https://ror.org/02rc7fh29 Presidenza Del Consiglio Dei Ministri'), (12303, 'https://ror.org/02rchr797', 'no_lang_code', 1, 'https://ror.org/02rchr797 Alma Consulting Group'), (12304, 'https://ror.org/02reezy47', 'de', 1, 'https://ror.org/02reezy47 Hahn-Schickard-Gesellschaft für angewandte Forschung'), (12305, 'https://ror.org/02rgt2f70', 'en', 1, 'https://ror.org/02rgt2f70 Center for Women Policy'), (12306, 'https://ror.org/02rhh1947', 'en', 1, 'https://ror.org/02rhh1947 Barnert Temple'), (12307, 'https://ror.org/02rjkjw28', 'es', 1, 'https://ror.org/02rjkjw28 Policlínica Gipuzkoa'), (12308, 'https://ror.org/02rmbgc23', 'en', 1, 'https://ror.org/02rmbgc23 National Council for the Blind of Ireland'), (12309, 'https://ror.org/02rn5vx39', 'no_lang_code', 1, 'https://ror.org/02rn5vx39 Yield10 Bioscience (United States)'), (12310, 'https://ror.org/02rn8bz16', 'en', 1, 'https://ror.org/02rn8bz16 Candlelighters Childhood Cancer Foundation of Nevada'), (12311, 'https://ror.org/02rpq7p88', 'no_lang_code', 1, 'https://ror.org/02rpq7p88 ProFishent (United States)'), (12312, 'https://ror.org/02rrdqs77', 'en', 1, 'https://ror.org/02rrdqs77 Friends of Karen'), (12313, 'https://ror.org/02rrff887', 'no_lang_code', 1, 'https://ror.org/02rrff887 Synovo (Germany)'), (12314, 'https://ror.org/02rrpz836', 'en', 1, 'https://ror.org/02rrpz836 Institute for EthnoMedicine'), (12315, 'https://ror.org/02rsq6w37', 'en', 1, 'https://ror.org/02rsq6w37 Ignite Adaptive Sports'), (12316, 'https://ror.org/02rt6h515', 'en', 1, 'https://ror.org/02rt6h515 American Indian Cancer Foundation'), (12317, 'https://ror.org/02rtft424', 'no_lang_code', 1, 'https://ror.org/02rtft424 Marimatech (Denmark)'), (12318, 'https://ror.org/02rttpd54', 'en', 1, 'https://ror.org/02rttpd54 Center for Dairy Excellence'), (12319, 'https://ror.org/02rvg0b63', 'en', 1, 'https://ror.org/02rvg0b63 Mandela Partners'), (12320, 'https://ror.org/02rvwv313', 'en', 1, 'https://ror.org/02rvwv313 The Big Garden'), (12321, 'https://ror.org/02rwjxz53', 'en', 1, 'https://ror.org/02rwjxz53 Lassen County'), (12322, 'https://ror.org/02rwmrd69', 'no_lang_code', 1, 'https://ror.org/02rwmrd69 SMK Plants (United States)'), (12323, 'https://ror.org/02rxn8n18', 'en', 1, 'https://ror.org/02rxn8n18 The Carolinas Center'), (12324, 'https://ror.org/02ry21p36', 'no_lang_code', 1, 'https://ror.org/02ry21p36 LMG Marin (Norway)'), (12325, 'https://ror.org/02ry8c790', 'en', 1, 'https://ror.org/02ry8c790 Beads of Courage'), (12326, 'https://ror.org/02rzjwn50', 'en', 1, 'https://ror.org/02rzjwn50 William H Miner Agricultural Research Institute'), (12327, 'https://ror.org/02s09ka34', 'no_lang_code', 1, 'https://ror.org/02s09ka34 SSS Optical Technologies'), (12328, 'https://ror.org/02s27py21', 'es', 1, 'https://ror.org/02s27py21 Centro de Estudios y Experimentación de Obras Públicas'), (12329, 'https://ror.org/02s47bn48', 'en', 1, 'https://ror.org/02s47bn48 Meadows Regional Medical Center'), (12330, 'https://ror.org/02s4h3z39', 'en', 1, 'https://ror.org/02s4h3z39 Ural Branch of the Russian Academy of Sciences Федеральное государственное бюджетное учреждение науки Институт высокотемпературной электрохимии Уральского отделения Российской академии наук'), (12331, 'https://ror.org/02s6bef14', 'no_lang_code', 1, 'https://ror.org/02s6bef14 Azienda Trasporti Consorziali di Bologna'), (12332, 'https://ror.org/02s87b036', 'fr', 1, 'https://ror.org/02s87b036 Fondation pour la Recherche Stratégique Foundation for Strategic Research'), (12333, 'https://ror.org/02s8sn816', 'en', 1, 'https://ror.org/02s8sn816 Maasai Wilderness Conservation Trust'), (12334, 'https://ror.org/02s9dw784', 'no_lang_code', 1, 'https://ror.org/02s9dw784 Gesellschaft für Elektrometallurgie (Germany)'), (12335, 'https://ror.org/02sbnaz67', 'no_lang_code', 1, 'https://ror.org/02sbnaz67 Stamatopoulos and Associates (Greece)'), (12336, 'https://ror.org/02sbnzn21', 'en', 1, 'https://ror.org/02sbnzn21 Massachusetts Pain Initiative'), (12337, 'https://ror.org/02sfn4p13', 'no_lang_code', 1, 'https://ror.org/02sfn4p13 Enterprise Estonia (Estonia)'), (12338, 'https://ror.org/02sfxxg21', 'en', 1, 'https://ror.org/02sfxxg21 Eastchester Center for Cancer Care'), (12339, 'https://ror.org/02sgq5295', 'no_lang_code', 1, 'https://ror.org/02sgq5295 Pronto Diagnostics (Israel) חברת פרונטו דיאגנוסטיקה'), (12340, 'https://ror.org/02sjyd344', 'en', 1, 'https://ror.org/02sjyd344 Fort Collins Rowing Association'), (12341, 'https://ror.org/02sk93007', 'no_lang_code', 1, 'https://ror.org/02sk93007 Jonah’s Just Begun'), (12342, 'https://ror.org/02skcpv41', 'es', 1, 'https://ror.org/02skcpv41 Asociación de Investigación y Cooperación Industrial de Andalucía'), (12343, 'https://ror.org/02smbdp69', 'en', 1, 'https://ror.org/02smbdp69 Rio Puerco & Jemez Watershed Alliance'), (12344, 'https://ror.org/02sqpat83', 'no_lang_code', 1, 'https://ror.org/02sqpat83 SYSTRA (United Kingdom)'), (12345, 'https://ror.org/02stmg653', 'en', 1, 'https://ror.org/02stmg653 Pilipino Senior Resource Center'), (12346, 'https://ror.org/02svff837', 'en', 1, 'https://ror.org/02svff837 Leading Age'), (12347, 'https://ror.org/02svqt910', 'en', 1, 'https://ror.org/02svqt910 European Institute for Biomedical Imaging Research'), (12348, 'https://ror.org/02svw4v94', 'en', 1, 'https://ror.org/02svw4v94 Hauppauge Public School'), (12349, 'https://ror.org/02sy45055', 'no_lang_code', 1, 'https://ror.org/02sy45055 Inspire'), (12350, 'https://ror.org/02syz9r75', 'no_lang_code', 1, 'https://ror.org/02syz9r75 Etrel (Slovenia)'), (12351, 'https://ror.org/02szmkw66', 'en', 1, 'https://ror.org/02szmkw66 Child Aid Organization Kenya'), (12352, 'https://ror.org/02t1dfc91', 'no_lang_code', 1, 'https://ror.org/02t1dfc91 Idetra (Spain)'), (12353, 'https://ror.org/02t21c861', 'en', 1, 'https://ror.org/02t21c861 Collinsville Area Recreation District'), (12354, 'https://ror.org/02t2d6j21', 'en', 1, 'https://ror.org/02t2d6j21 Institute of Baltic Studies'), (12355, 'https://ror.org/02t31fs67', 'en', 1, 'https://ror.org/02t31fs67 Office of the Prime Minister of Malta Primo Ministro di Malta'), (12356, 'https://ror.org/02t75hb67', 'no_lang_code', 1, 'https://ror.org/02t75hb67 Lagerwey Wind (Netherlands)'), (12357, 'https://ror.org/02t78v594', 'en', 1, 'https://ror.org/02t78v594 Greater Holy Temple Church Of God In Christ'), (12358, 'https://ror.org/02ta1dj76', 'en', 1, 'https://ror.org/02ta1dj76 The Princeton Festival'), (12359, 'https://ror.org/02ta1kn73', 'en', 1, 'https://ror.org/02ta1kn73 Cancer Wellness Center'), (12360, 'https://ror.org/02tb8n028', 'en', 1, 'https://ror.org/02tb8n028 Institute of Bioorganic Chemistry and Petrochemistry V.P. Kukhar'), (12361, 'https://ror.org/02tce8t86', 'en', 1, 'https://ror.org/02tce8t86 Global Climate Forum'), (12362, 'https://ror.org/02td5wn81', 'en', 1, 'https://ror.org/02td5wn81 Ono Academic College הקריה האקדמית אונו'), (12363, 'https://ror.org/02tdaj973', 'en', 1, 'https://ror.org/02tdaj973 Ascension Via Christi Hospital'), (12364, 'https://ror.org/02te3sp65', 'en', 1, 'https://ror.org/02te3sp65 National Law Enforcement and Firefighters Children’s Foundation'), (12365, 'https://ror.org/02tf6tv07', 'no_lang_code', 1, 'https://ror.org/02tf6tv07 Picosun (Finland)'), (12366, 'https://ror.org/02th50f93', 'no_lang_code', 1, 'https://ror.org/02th50f93 Akka Technologies (France)'), (12367, 'https://ror.org/02tmwx483', 'en', 1, 'https://ror.org/02tmwx483 Adirondack Medical Center'), (12368, 'https://ror.org/02trd1e52', 'en', 1, 'https://ror.org/02trd1e52 Regional Arab Network against AIDS'), (12369, 'https://ror.org/02try9452', 'no_lang_code', 1, 'https://ror.org/02try9452 Sea Bird Electronics (United States)'), (12370, 'https://ror.org/02tsp7733', 'en', 1, 'https://ror.org/02tsp7733 New York State Office of Children and Family Services'), (12371, 'https://ror.org/02tts0b67', 'no_lang_code', 1, 'https://ror.org/02tts0b67 Sandvik (United Kingdom)'), (12372, 'https://ror.org/02twk3504', 'no_lang_code', 1, 'https://ror.org/02twk3504 GF Machining Solutions (Sweden)'), (12373, 'https://ror.org/02tyjnv32', 'en', 1, 'https://ror.org/02tyjnv32 Saitama Medical University Hospital 埼玉医科大学病院'), (12374, 'https://ror.org/02v26hv54', 'no_lang_code', 1, 'https://ror.org/02v26hv54 Imerys (Germany)'), (12375, 'https://ror.org/02v2xvd66', 'en', 1, 'https://ror.org/02v2xvd66 San Ysidro Health'), (12376, 'https://ror.org/02v5a7318', 'en', 1, 'https://ror.org/02v5a7318 Indiana Association of United Ways'), (12377, 'https://ror.org/02vcdte90', 'no_lang_code', 1, 'https://ror.org/02vcdte90 Olympus (United States)'), (12378, 'https://ror.org/02vdjrg05', 'en', 1, 'https://ror.org/02vdjrg05 Max Healthcare'), (12379, 'https://ror.org/02vf5m226', 'en', 1, 'https://ror.org/02vf5m226 Strategic Design Scenarios'), (12380, 'https://ror.org/02vfhfv39', 'no_lang_code', 1, 'https://ror.org/02vfhfv39 PRé Consultants'), (12381, 'https://ror.org/02vgejx91', 'no_lang_code', 1, 'https://ror.org/02vgejx91 Aircraft Research Association'), (12382, 'https://ror.org/02vjgqy71', 'en', 1, 'https://ror.org/02vjgqy71 Elijah House'), (12383, 'https://ror.org/02vmgn461', 'no_lang_code', 1, 'https://ror.org/02vmgn461 Esaote (Italy)'), (12384, 'https://ror.org/02vn2vd34', 'en', 1, 'https://ror.org/02vn2vd34 Columbus Regional Healthcare System'), (12385, 'https://ror.org/02vpj2j75', 'no_lang_code', 1, 'https://ror.org/02vpj2j75 Neurotez (United States)'), (12386, 'https://ror.org/02vrwrw10', 'en', 1, 'https://ror.org/02vrwrw10 Hospice of the Western Reserve'), (12387, 'https://ror.org/02vt9tw94', 'no_lang_code', 1, 'https://ror.org/02vt9tw94 MicroLIQUID (Spain)'), (12388, 'https://ror.org/02vw8cm83', 'no', 1, 'https://ror.org/02vw8cm83 Norsar'), (12389, 'https://ror.org/02vx92p56', 'en', 1, 'https://ror.org/02vx92p56 Clubhouse International'), (12390, 'https://ror.org/02vxn7j69', 'no_lang_code', 1, 'https://ror.org/02vxn7j69 European Telecommunications Satellite Organization'), (12391, 'https://ror.org/02vxxy693', 'no_lang_code', 1, 'https://ror.org/02vxxy693 JENAer Meßtechnik (Germany)'), (12392, 'https://ror.org/02vz4ta64', 'en', 1, 'https://ror.org/02vz4ta64 Camp Boggy Creek'), (12393, 'https://ror.org/02vzt4388', 'no_lang_code', 1, 'https://ror.org/02vzt4388 Bruel & Kjaer Sound and Vibration Measurement (Denmark)'), (12394, 'https://ror.org/02w2r5196', 'no_lang_code', 1, 'https://ror.org/02w2r5196 Triqua (Netherlands)'), (12395, 'https://ror.org/02w3sz211', 'en', 1, 'https://ror.org/02w3sz211 Harford Research Institute'), (12396, 'https://ror.org/02w5w7488', 'en', 1, 'https://ror.org/02w5w7488 Hellenic Statistical Authority Ελληνική Στατιστική Αρχή'), (12397, 'https://ror.org/02w7mbm90', 'en', 1, 'https://ror.org/02w7mbm90 Institute of Metallurgy and Materials Science Instytut Metalurgii i Inżynierii Materiałowej PAN'), (12398, 'https://ror.org/02w94dx49', 'en', 1, 'https://ror.org/02w94dx49 Illinois Farm Bureau'), (12399, 'https://ror.org/02we5km93', 'en', 1, 'https://ror.org/02we5km93 Fund for Park Avenue'), (12400, 'https://ror.org/02we6hx96', 'en', 1, 'https://ror.org/02we6hx96 Institute of Physics Інститут фізики НАН України Институт физики НАН Украины'), (12401, 'https://ror.org/02wejrm29', 'en', 1, 'https://ror.org/02wejrm29 Cancer Services of New Mexico'), (12402, 'https://ror.org/02weyc170', 'no_lang_code', 1, 'https://ror.org/02weyc170 AquaBioTech Group (Malta)'), (12403, 'https://ror.org/02wf15744', 'no_lang_code', 1, 'https://ror.org/02wf15744 Foster and Partners (United Kingdom)'), (12404, 'https://ror.org/02whbag62', 'en', 1, 'https://ror.org/02whbag62 Lutheran Hospital'), (12405, 'https://ror.org/02wnbr922', 'no_lang_code', 1, 'https://ror.org/02wnbr922 IBM (France)'), (12406, 'https://ror.org/02wqw9g56', 'en', 1, 'https://ror.org/02wqw9g56 Science Centre AHHAA'), (12407, 'https://ror.org/02wr67907', 'no_lang_code', 1, 'https://ror.org/02wr67907 LPW Technology (United Kingdom)'), (12408, 'https://ror.org/02wt3dg04', 'no_lang_code', 1, 'https://ror.org/02wt3dg04 Safinah (United Kingdom)'), (12409, 'https://ror.org/02wtzjm20', 'en', 1, 'https://ror.org/02wtzjm20 Neurological Recovery House'), (12410, 'https://ror.org/02wvp2z28', 'en', 1, 'https://ror.org/02wvp2z28 The Salvation Army United States'), (12411, 'https://ror.org/02wxcva98', 'en', 1, 'https://ror.org/02wxcva98 African Institute for Development Policy'), (12412, 'https://ror.org/02wzfbs47', 'no_lang_code', 1, 'https://ror.org/02wzfbs47 Instituto Tecnológico de Canarias Technological Institute of the Canary Islands'), (12413, 'https://ror.org/02x2mw849', 'en', 1, 'https://ror.org/02x2mw849 Turing Institute'), (12414, 'https://ror.org/02x3swg45', 'no_lang_code', 1, 'https://ror.org/02x3swg45 Oasis Diagnostics (United States)'), (12415, 'https://ror.org/02x3w5g21', 'en', 1, 'https://ror.org/02x3w5g21 Ministerie van Onderwijs, Cultuur en Wetenschappe Ministry of Education Culture and Science'), (12416, 'https://ror.org/02x5exm81', 'no_lang_code', 1, 'https://ror.org/02x5exm81 E.ON (France)'), (12417, 'https://ror.org/02x5wzm46', 'es', 1, 'https://ror.org/02x5wzm46 Fundacion Favaloro Hospital Universitario'), (12418, 'https://ror.org/02x6c2007', 'en', 1, 'https://ror.org/02x6c2007 Lifeline Hospital'), (12419, 'https://ror.org/02x78ab05', 'en', 1, 'https://ror.org/02x78ab05 European Cancer Prevention'), (12420, 'https://ror.org/02x79tw02', 'no_lang_code', 1, 'https://ror.org/02x79tw02 ALD Vacuum Technologies (Germany)'), (12421, 'https://ror.org/02x7g2480', 'en', 1, 'https://ror.org/02x7g2480 Proof Alliance'), (12422, 'https://ror.org/02xb2kd32', 'de', 1, 'https://ror.org/02xb2kd32 OÖ Energiesparverband'), (12423, 'https://ror.org/02xbm2630', 'en', 1, 'https://ror.org/02xbm2630 Metropolitan Research Institute'), (12424, 'https://ror.org/02xdt2g09', 'en', 1, 'https://ror.org/02xdt2g09 Center for Accessible Living'), (12425, 'https://ror.org/02xgttq77', 'no_lang_code', 1, 'https://ror.org/02xgttq77 Terma (Denmark)'), (12426, 'https://ror.org/02xk1w092', 'no_lang_code', 1, 'https://ror.org/02xk1w092 Tecos (Slovenia)'), (12427, 'https://ror.org/02xnk0c33', 'no_lang_code', 1, 'https://ror.org/02xnk0c33 In Silico Biosciences (United States)'), (12428, 'https://ror.org/02xstv633', 'no_lang_code', 1, 'https://ror.org/02xstv633 Ball (United States)'), (12429, 'https://ror.org/02xv7d798', 'en', 1, 'https://ror.org/02xv7d798 Seaberry Farm'), (12430, 'https://ror.org/02y0pmx13', 'en', 1, 'https://ror.org/02y0pmx13 Cohoes Family Care'), (12431, 'https://ror.org/02y169n53', 'en', 1, 'https://ror.org/02y169n53 Bay Area Houston Economic Partnership'), (12432, 'https://ror.org/02y22dj89', 'no_lang_code', 1, 'https://ror.org/02y22dj89 KUKA (Germany) Keller und Knappich Augsburg'), (12433, 'https://ror.org/02y4abh66', 'en', 1, 'https://ror.org/02y4abh66 Upstate Freshwater Institute'), (12434, 'https://ror.org/02y8rpf68', 'en', 1, 'https://ror.org/02y8rpf68 HorseAbility'), (12435, 'https://ror.org/02y96rp12', 'en', 1, 'https://ror.org/02y96rp12 Comer Children''s Hospital'), (12436, 'https://ror.org/02ya9c216', 'no_lang_code', 1, 'https://ror.org/02ya9c216 HM3 Energy'), (12437, 'https://ror.org/02ybv7q93', 'no_lang_code', 1, 'https://ror.org/02ybv7q93 Engie (France)'), (12438, 'https://ror.org/02yer3h76', 'en', 1, 'https://ror.org/02yer3h76 Pine Cobble School'), (12439, 'https://ror.org/02ygbgq54', 'no_lang_code', 1, 'https://ror.org/02ygbgq54 Area I (United States)'), (12440, 'https://ror.org/02ygqy715', 'no_lang_code', 1, 'https://ror.org/02ygqy715 Calista Therapeutics (United States)'), (12441, 'https://ror.org/02ygt0g54', 'en', 1, 'https://ror.org/02ygt0g54 Tohono O''odham Community Action'), (12442, 'https://ror.org/02yhka621', 'en', 1, 'https://ror.org/02yhka621 Chugach School District'), (12443, 'https://ror.org/02yjhs723', 'en', 1, 'https://ror.org/02yjhs723 McIntosh Sustainable Environment and Economic Development'), (12444, 'https://ror.org/02yn37v47', 'en', 1, 'https://ror.org/02yn37v47 Douglas Gardens Hospital'), (12445, 'https://ror.org/02yq4v676', 'no_lang_code', 1, 'https://ror.org/02yq4v676 EVECO Brno (Czechia)'), (12446, 'https://ror.org/02yrcx115', 'en', 1, 'https://ror.org/02yrcx115 Texas Health Harris Methodist Hospital Fort Worth'), (12447, 'https://ror.org/02yre5r83', 'en', 1, 'https://ror.org/02yre5r83 Chase Brexton Health Care'), (12448, 'https://ror.org/02ys5x139', 'en', 1, 'https://ror.org/02ys5x139 Illinois College'), (12449, 'https://ror.org/02yse6y23', 'en', 1, 'https://ror.org/02yse6y23 Central Park Conservancy'), (12450, 'https://ror.org/02ytj9t26', 'en', 1, 'https://ror.org/02ytj9t26 Plan International'), (12451, 'https://ror.org/02ytpy253', 'en', 1, 'https://ror.org/02ytpy253 Society for Nutrition Education and Behavior'), (12452, 'https://ror.org/02yw9ws62', 'en', 1, 'https://ror.org/02yw9ws62 Center for Asthma, Allergy and Respiratory Disease'), (12453, 'https://ror.org/02yycpb11', 'en', 1, 'https://ror.org/02yycpb11 Higher Ground Sun Valley'), (12454, 'https://ror.org/02z0n2g81', 'no_lang_code', 1, 'https://ror.org/02z0n2g81 Arçelik (Turkey)'), (12455, 'https://ror.org/02z663265', 'no_lang_code', 1, 'https://ror.org/02z663265 Intelligent Sensing Anywhere (Portugal)'), (12456, 'https://ror.org/02z7cdf88', 'en', 1, 'https://ror.org/02z7cdf88 Cypress Hills Local Development Corporation'), (12457, 'https://ror.org/02z8d3d73', 'en', 1, 'https://ror.org/02z8d3d73 Faraja Cancer Support Trust'), (12458, 'https://ror.org/02z972f25', 'en', 1, 'https://ror.org/02z972f25 Girls Power Initiative'), (12459, 'https://ror.org/02zahyc48', 'no_lang_code', 1, 'https://ror.org/02zahyc48 PRO DV (Germany)'), (12460, 'https://ror.org/02zbmht46', 'no_lang_code', 1, 'https://ror.org/02zbmht46 Analytical Imaging and Geophysics (United States)'), (12461, 'https://ror.org/02zc9ks44', 'no_lang_code', 1, 'https://ror.org/02zc9ks44 Temis (France)'), (12462, 'https://ror.org/02zcy8d62', 'en', 1, 'https://ror.org/02zcy8d62 National Research Institute of Rural Engineering, Water and Forests'), (12463, 'https://ror.org/02zdssw25', 'el', 1, 'https://ror.org/02zdssw25 Dimitra'); INSERT INTO `rors` VALUES (12464, 'https://ror.org/02zeqvn38', 'no_lang_code', 1, 'https://ror.org/02zeqvn38 EMC Microcollections (Germany)'), (12465, 'https://ror.org/02zf60s91', 'en', 1, 'https://ror.org/02zf60s91 ANT Foundation Italy Onlus Fondazione ANT Italia ONLUS'), (12466, 'https://ror.org/02zf66j21', 'en', 1, 'https://ror.org/02zf66j21 Cultural Site Research and Management'), (12467, 'https://ror.org/02zf97m15', 'en', 1, 'https://ror.org/02zf97m15 Johnston Memorial Hospital'), (12468, 'https://ror.org/02zk14v48', 'en', 1, 'https://ror.org/02zk14v48 Our Family Services'), (12469, 'https://ror.org/02zksq237', 'es', 1, 'https://ror.org/02zksq237 Asociación de la Industria Navarra'), (12470, 'https://ror.org/02zmbcj69', 'no_lang_code', 1, 'https://ror.org/02zmbcj69 Forest Concepts (United States)'), (12471, 'https://ror.org/02zmq8s40', 'en', 1, 'https://ror.org/02zmq8s40 Health Information Management'), (12472, 'https://ror.org/02zp8yy63', 'no_lang_code', 1, 'https://ror.org/02zp8yy63 FEG Textiltechnik (Germany)'), (12473, 'https://ror.org/02zqmy106', 'no_lang_code', 1, 'https://ror.org/02zqmy106 Transport & Travel Research (United Kingdom)'), (12474, 'https://ror.org/02zrfm475', 'en', 1, 'https://ror.org/02zrfm475 Ministry of the Internal Administration Ministério da Administração Interna'), (12475, 'https://ror.org/02zsk0y62', 'en', 1, 'https://ror.org/02zsk0y62 Harris County Hospital District Foundation'), (12476, 'https://ror.org/02zv5ec81', 'en', 1, 'https://ror.org/02zv5ec81 Ntengwe for Community Development'), (12477, 'https://ror.org/02zvtbe65', 'de', 1, 'https://ror.org/02zvtbe65 Institut für Zukunftsstudien und Technologiebewertung'), (12478, 'https://ror.org/02zwkwz55', 'fr', 1, 'https://ror.org/02zwkwz55 Institut National de l''Audiovisuel National Audiovisual Institute'), (12479, 'https://ror.org/02zwp3607', 'en', 1, 'https://ror.org/02zwp3607 Family Service Center of Galveston County'), (12480, 'https://ror.org/02zx9pq98', 'en', 1, 'https://ror.org/02zx9pq98 Innova HealthCare Services'), (12481, 'https://ror.org/02zz2nb17', 'no_lang_code', 1, 'https://ror.org/02zz2nb17 KeyGene (Netherlands)'), (12482, 'https://ror.org/03019wv17', 'en', 1, 'https://ror.org/03019wv17 National Multiple Sclerosis Society'), (12483, 'https://ror.org/03019xy09', 'de', 1, 'https://ror.org/03019xy09 Deutsche Gesellschaft für Holzforschung'), (12484, 'https://ror.org/030635250', 'en', 1, 'https://ror.org/030635250 Lustgarten Foundation'), (12485, 'https://ror.org/03063wv95', 'en', 1, 'https://ror.org/03063wv95 Autism Science Foundation'), (12486, 'https://ror.org/030a5js80', 'no_lang_code', 1, 'https://ror.org/030a5js80 Siegert Electronic (Germany)'), (12487, 'https://ror.org/030bhtx29', 'no_lang_code', 1, 'https://ror.org/030bhtx29 Lixte (United States)'), (12488, 'https://ror.org/030bzfc32', 'nl', 1, 'https://ror.org/030bzfc32 Kennisland'), (12489, 'https://ror.org/030c4y728', 'sl', 1, 'https://ror.org/030c4y728 Construction Cluster of Slovenia Slovenski Gradbeni Grozd'), (12490, 'https://ror.org/030chcw72', 'de', 1, 'https://ror.org/030chcw72 Zentrum für Foren in der Grafischen Datenverarbeitung'), (12491, 'https://ror.org/030dahd49', 'en', 1, 'https://ror.org/030dahd49 Agricultural institute of Slovenia'), (12492, 'https://ror.org/030dazv21', 'en', 1, 'https://ror.org/030dazv21 All Kinds Of Minds'), (12493, 'https://ror.org/030e2am13', 'en', 1, 'https://ror.org/030e2am13 Human Relief Foundation'), (12494, 'https://ror.org/030hzjj50', 'en', 1, 'https://ror.org/030hzjj50 Rhode Island Association of Conservation Districts'), (12495, 'https://ror.org/030j17642', 'en', 1, 'https://ror.org/030j17642 Direct Relief'), (12496, 'https://ror.org/030kh5t61', 'no_lang_code', 1, 'https://ror.org/030kh5t61 EDMA Innova'), (12497, 'https://ror.org/030kvkp19', 'no_lang_code', 1, 'https://ror.org/030kvkp19 Coherent Logix (United States)'), (12498, 'https://ror.org/030pnab13', 'en', 1, 'https://ror.org/030pnab13 Afrihealth Optonet Association'), (12499, 'https://ror.org/030q5p958', 'no_lang_code', 1, 'https://ror.org/030q5p958 Solar Stream (United States)'), (12500, 'https://ror.org/030rk0759', 'no_lang_code', 1, 'https://ror.org/030rk0759 Electrovac (Austria)'), (12501, 'https://ror.org/030s5c086', 'no_lang_code', 1, 'https://ror.org/030s5c086 syncom'), (12502, 'https://ror.org/030spt741', 'en', 1, 'https://ror.org/030spt741 Dragonfly Forest'), (12503, 'https://ror.org/030x6kb17', 'no_lang_code', 1, 'https://ror.org/030x6kb17 Dune (Italy)'), (12504, 'https://ror.org/030x94n68', 'en', 1, 'https://ror.org/030x94n68 KVC Health Systems'), (12505, 'https://ror.org/030xyk527', 'no_lang_code', 1, 'https://ror.org/030xyk527 Oncotide Pharmaceuticals (United States)'), (12506, 'https://ror.org/030xyq337', 'en', 1, 'https://ror.org/030xyq337 Local Agricultural Community Exchange'), (12507, 'https://ror.org/031035t24', 'en', 1, 'https://ror.org/031035t24 Latinas Contra Cancer'), (12508, 'https://ror.org/0310r6290', 'en', 1, 'https://ror.org/0310r6290 Cardinal Hill Rehabilitation Hospital'), (12509, 'https://ror.org/0311ams29', 'no_lang_code', 1, 'https://ror.org/0311ams29 Tun Abdul Razak Research Centre'), (12510, 'https://ror.org/0311sm390', 'en', 1, 'https://ror.org/0311sm390 Babylon Breast Cancer Coalition'), (12511, 'https://ror.org/0313r6y71', 'no_lang_code', 1, 'https://ror.org/0313r6y71 Jan de Rijk Logistics (Netherlands)'), (12512, 'https://ror.org/031432n58', 'de', 1, 'https://ror.org/031432n58 Deutsche Welle'), (12513, 'https://ror.org/0314gk942', 'en', 1, 'https://ror.org/0314gk942 Betty Jean Kerr People’s Health Centers'), (12514, 'https://ror.org/0315a3206', 'no_lang_code', 1, 'https://ror.org/0315a3206 Precitec (Germany)'), (12515, 'https://ror.org/0315a7e71', 'en', 1, 'https://ror.org/0315a7e71 European Coordination Committee of the Radiological, Electromedical and Healthcare IT Industry'), (12516, 'https://ror.org/0315hq159', 'en', 1, 'https://ror.org/0315hq159 European Centre for Nature Conservation'), (12517, 'https://ror.org/0316wza58', 'no_lang_code', 1, 'https://ror.org/0316wza58 MicroVacuum (Hungary)'), (12518, 'https://ror.org/0316y8420', 'no_lang_code', 1, 'https://ror.org/0316y8420 Fiberstar (United States)'), (12519, 'https://ror.org/0317mgy72', 'en', 1, 'https://ror.org/0317mgy72 Disability Rights Legal Center'), (12520, 'https://ror.org/0318myr61', 'fr', 1, 'https://ror.org/0318myr61 Arvalis - Institut du Végétal'), (12521, 'https://ror.org/031a8k913', 'en', 1, 'https://ror.org/031a8k913 McCabe Centre for Law and Cancer'), (12522, 'https://ror.org/031acn267', 'en', 1, 'https://ror.org/031acn267 Clinical Directors Network'), (12523, 'https://ror.org/031ag2z89', 'en', 1, 'https://ror.org/031ag2z89 Florida Certified Organic Growers'), (12524, 'https://ror.org/031bn8887', 'no_lang_code', 1, 'https://ror.org/031bn8887 Jenrin Discovery (United States)'), (12525, 'https://ror.org/031c2y549', 'no_lang_code', 1, 'https://ror.org/031c2y549 TÁRKI Social Research Institute'), (12526, 'https://ror.org/031e3n874', 'no_lang_code', 1, 'https://ror.org/031e3n874 Hellenic Telecommunications Organization (Greece)'), (12527, 'https://ror.org/031fnb427', 'no_lang_code', 1, 'https://ror.org/031fnb427 Biosensores (Spain)'), (12528, 'https://ror.org/031gmvg29', 'no_lang_code', 1, 'https://ror.org/031gmvg29 Siemens (Denmark)'), (12529, 'https://ror.org/031h48w98', 'no_lang_code', 1, 'https://ror.org/031h48w98 AMS (Germany)'), (12530, 'https://ror.org/031h57r44', 'fr', 1, 'https://ror.org/031h57r44 Doctors of the World Médecins du Monde, medsɛ̃ dy mɔ̃d'), (12531, 'https://ror.org/031hb4a81', 'en', 1, 'https://ror.org/031hb4a81 City School District of New Rochelle'), (12532, 'https://ror.org/031hztf49', 'en', 1, 'https://ror.org/031hztf49 Fund for the City of New York'), (12533, 'https://ror.org/031j4es70', 'en', 1, 'https://ror.org/031j4es70 Hospice of Metropolitan Erie'), (12534, 'https://ror.org/031jky447', 'no_lang_code', 1, 'https://ror.org/031jky447 Alloksys (Netherlands)'), (12535, 'https://ror.org/031jzsw63', 'no_lang_code', 1, 'https://ror.org/031jzsw63 Jobs (Italy)'), (12536, 'https://ror.org/031kxs331', 'en', 1, 'https://ror.org/031kxs331 Koninklijke Musea voor Kunst en Geschiedenis Musées royaux d''Art et d''Histoire Royal Museums of Art and History'), (12537, 'https://ror.org/031nhd722', 'no_lang_code', 1, 'https://ror.org/031nhd722 Axios Biosciences (United States)'), (12538, 'https://ror.org/031v4g827', 'no_lang_code', 1, 'https://ror.org/031v4g827 NXP (Belgium)'), (12539, 'https://ror.org/031wqg810', 'en', 1, 'https://ror.org/031wqg810 African Organisation for Research and Training in Cancer'), (12540, 'https://ror.org/031xjr712', 'no_lang_code', 1, 'https://ror.org/031xjr712 Thales (Germany)'), (12541, 'https://ror.org/031y9sy98', 'en', 1, 'https://ror.org/031y9sy98 National Aphasia Association'), (12542, 'https://ror.org/0320fhd53', 'en', 1, 'https://ror.org/0320fhd53 Community Development and Sustainability Organization'), (12543, 'https://ror.org/0322wda97', 'en', 1, 'https://ror.org/0322wda97 Los Angeles Pink Dragons'), (12544, 'https://ror.org/0324fk698', 'no_lang_code', 1, 'https://ror.org/0324fk698 Open Window Productions (United States)'), (12545, 'https://ror.org/0325nt175', 'no_lang_code', 1, 'https://ror.org/0325nt175 Biobase (Germany)'), (12546, 'https://ror.org/0328xw886', 'no_lang_code', 1, 'https://ror.org/0328xw886 Amicus Therapeutics (United States)'), (12547, 'https://ror.org/0329db993', 'en', 1, 'https://ror.org/0329db993 Challenger Center for Space Science Education'), (12548, 'https://ror.org/032a8wh77', 'no_lang_code', 1, 'https://ror.org/032a8wh77 European Apparel and Textile Confederation'), (12549, 'https://ror.org/032b2m661', 'en', 1, 'https://ror.org/032b2m661 Holos Institute'), (12550, 'https://ror.org/032base07', 'no_lang_code', 1, 'https://ror.org/032base07 Inspira'), (12551, 'https://ror.org/032c26s44', 'no_lang_code', 1, 'https://ror.org/032c26s44 Highlight Therapeutics (Spain)'), (12552, 'https://ror.org/032c3ww89', 'en', 1, 'https://ror.org/032c3ww89 Challenge Aspen'), (12553, 'https://ror.org/032d2f085', 'en', 1, 'https://ror.org/032d2f085 Cherokee Central Schools'), (12554, 'https://ror.org/032dya782', 'en', 1, 'https://ror.org/032dya782 El Dorado County Health and Human Services Agency'), (12555, 'https://ror.org/032dzsg05', 'en', 1, 'https://ror.org/032dzsg05 Chicago Board of Education'), (12556, 'https://ror.org/032e8ae90', 'no_lang_code', 1, 'https://ror.org/032e8ae90 Bee Power (United States)'), (12557, 'https://ror.org/032edw019', 'en', 1, 'https://ror.org/032edw019 Community GroundWorks'), (12558, 'https://ror.org/032ep1086', 'no_lang_code', 1, 'https://ror.org/032ep1086 NOVAMINA Innovative Technology Centre'), (12559, 'https://ror.org/032fdft79', 'it', 1, 'https://ror.org/032fdft79 Istituto Nazionale di Economia Agraria National Institute of Agricultural Economics'), (12560, 'https://ror.org/032g70a71', 'en', 1, 'https://ror.org/032g70a71 Bangladesh Medical Association of North America'), (12561, 'https://ror.org/032ksge37', 'en', 1, 'https://ror.org/032ksge37 Norwegian Geotechnical Institute'), (12562, 'https://ror.org/032mp1e77', 'no_lang_code', 1, 'https://ror.org/032mp1e77 Total (Belgium)'), (12563, 'https://ror.org/032mwt045', 'en', 1, 'https://ror.org/032mwt045 Neurology Center of Southern California'), (12564, 'https://ror.org/032r53m24', 'no_lang_code', 1, 'https://ror.org/032r53m24 Cardiavent (United States)'), (12565, 'https://ror.org/032rwz169', 'no_lang_code', 1, 'https://ror.org/032rwz169 Oncoceutics (United States)'), (12566, 'https://ror.org/032s56e02', 'no_lang_code', 1, 'https://ror.org/032s56e02 Ceratizit (Luxembourg)'), (12567, 'https://ror.org/032sbdv65', 'en', 1, 'https://ror.org/032sbdv65 Black Women for Wellness'), (12568, 'https://ror.org/032tjz442', 'en', 1, 'https://ror.org/032tjz442 Oakland Symphony'), (12569, 'https://ror.org/032tp7158', 'no_lang_code', 1, 'https://ror.org/032tp7158 Thales (Netherlands)'), (12570, 'https://ror.org/032v09t14', 'en', 1, 'https://ror.org/032v09t14 Bundesnetzagentur Federal Network Agency'), (12571, 'https://ror.org/032x1ws79', 'en', 1, 'https://ror.org/032x1ws79 Telecommunication Systems Research Institute'), (12572, 'https://ror.org/032ynh934', 'en', 1, 'https://ror.org/032ynh934 New Hampshire Hospice and Palliative Care Organization'), (12573, 'https://ror.org/032z7g248', 'en', 1, 'https://ror.org/032z7g248 Resources for Children with Special Needs'), (12574, 'https://ror.org/0330jdp03', 'en', 1, 'https://ror.org/0330jdp03 Nepal Ambulance Service'), (12575, 'https://ror.org/0330w1668', 'en', 1, 'https://ror.org/0330w1668 Montreat College'), (12576, 'https://ror.org/0332h2t56', 'no_lang_code', 1, 'https://ror.org/0332h2t56 Dakota Rural Action (United States)'), (12577, 'https://ror.org/0333kge30', 'en', 1, 'https://ror.org/0333kge30 Fishing Has No Boundaries'), (12578, 'https://ror.org/03340ra78', 'no_lang_code', 1, 'https://ror.org/03340ra78 Thales (Spain)'), (12579, 'https://ror.org/03350ng14', 'en', 1, 'https://ror.org/03350ng14 Buckelew Programs'), (12580, 'https://ror.org/0335j3x48', 'en', 1, 'https://ror.org/0335j3x48 Eurocontrol'), (12581, 'https://ror.org/0336mg751', 'no_lang_code', 1, 'https://ror.org/0336mg751 FutureSoft (United States)'), (12582, 'https://ror.org/03377s592', 'no_lang_code', 1, 'https://ror.org/03377s592 Skolex Biotechnologies (United States)'), (12583, 'https://ror.org/0337ytp02', 'en', 1, 'https://ror.org/0337ytp02 Hospice of Charles County'), (12584, 'https://ror.org/033b6cz88', 'en', 1, 'https://ror.org/033b6cz88 Lupus Foundation of America'), (12585, 'https://ror.org/033bbg733', 'no_lang_code', 1, 'https://ror.org/033bbg733 Mitel (United Kingdom)'), (12586, 'https://ror.org/033ek1554', 'en', 1, 'https://ror.org/033ek1554 Hamot Health Foundation'), (12587, 'https://ror.org/033g0hw83', 'en', 1, 'https://ror.org/033g0hw83 Finnish Society of Automation'), (12588, 'https://ror.org/033g5xh94', 'en', 1, 'https://ror.org/033g5xh94 San Mateo County Probation'), (12589, 'https://ror.org/033mhn155', 'no_lang_code', 1, 'https://ror.org/033mhn155 Kemakta Konsult'), (12590, 'https://ror.org/033ns4t79', 'no_lang_code', 1, 'https://ror.org/033ns4t79 Cogito (United States)'), (12591, 'https://ror.org/033pn6473', 'en', 1, 'https://ror.org/033pn6473 Harm Reduction Services'), (12592, 'https://ror.org/033q0mv79', 'no_lang_code', 1, 'https://ror.org/033q0mv79 Xerox (France)'), (12593, 'https://ror.org/033qewk74', 'en', 1, 'https://ror.org/033qewk74 Collaborating Centre on Sustainable Consumption and Production'), (12594, 'https://ror.org/033qhvk72', 'no_lang_code', 1, 'https://ror.org/033qhvk72 Metabolon (United States)'), (12595, 'https://ror.org/033sa0762', 'en', 1, 'https://ror.org/033sa0762 State Laboratory'), (12596, 'https://ror.org/033tb1y80', 'en', 1, 'https://ror.org/033tb1y80 Hispanic Family Center of Southern New Jersey'), (12597, 'https://ror.org/033tn4q36', 'en', 1, 'https://ror.org/033tn4q36 Partners for Youth with Disabilities'), (12598, 'https://ror.org/033wfmx47', 'en', 1, 'https://ror.org/033wfmx47 Anne Arundel County Public Schools'), (12599, 'https://ror.org/033ym9x13', 'no_lang_code', 1, 'https://ror.org/033ym9x13 Technaid (Spain)'), (12600, 'https://ror.org/033ynyj02', 'de', 1, 'https://ror.org/033ynyj02 Forschungsinstitut für Leder und Kunststoffbahnen'), (12601, 'https://ror.org/033zcj004', 'en', 1, 'https://ror.org/033zcj004 Nebraska Department of Education'), (12602, 'https://ror.org/0340d8j26', 'it', 1, 'https://ror.org/0340d8j26 Avantea'), (12603, 'https://ror.org/03439xb05', 'no_lang_code', 1, 'https://ror.org/03439xb05 Nanocyl (Belgium)'), (12604, 'https://ror.org/0343jw325', 'no_lang_code', 1, 'https://ror.org/0343jw325 AGADA Biosciences'), (12605, 'https://ror.org/0344pp695', 'en', 1, 'https://ror.org/0344pp695 Big Brothers Big Sisters of Vermilion County'), (12606, 'https://ror.org/034673z17', 'en', 1, 'https://ror.org/034673z17 Epilepsy Support and Education Services'), (12607, 'https://ror.org/0346g6k53', 'en', 1, 'https://ror.org/0346g6k53 National Future Farmers of America Organization'), (12608, 'https://ror.org/0347g7262', 'en', 1, 'https://ror.org/0347g7262 Islamic Shura Council of Southern California'), (12609, 'https://ror.org/0348ff195', 'en', 1, 'https://ror.org/0348ff195 Breast Cancer Research Foundation'), (12610, 'https://ror.org/0348jrz13', 'no_lang_code', 1, 'https://ror.org/0348jrz13 TDC (Denmark)'), (12611, 'https://ror.org/0349vnh06', 'en', 1, 'https://ror.org/0349vnh06 Meridian Behavioral Healthcare'), (12612, 'https://ror.org/034bs1q12', 'no_lang_code', 1, 'https://ror.org/034bs1q12 Rodan Development (Poland)'), (12613, 'https://ror.org/034bxyw57', 'no_lang_code', 1, 'https://ror.org/034bxyw57 3F (United States)'), (12614, 'https://ror.org/034cg9v65', 'en', 1, 'https://ror.org/034cg9v65 Chatham County Schools'), (12615, 'https://ror.org/034dw6775', 'no_lang_code', 1, 'https://ror.org/034dw6775 Merrimack Pharmaceuticals (United States)'), (12616, 'https://ror.org/034ekjs90', 'en', 1, 'https://ror.org/034ekjs90 Quincy Medical Center'), (12617, 'https://ror.org/034fqtg16', 'en', 1, 'https://ror.org/034fqtg16 Institute of Microelectronics Technology and High Purity Materials Институт проблем технологии микроэлектроники и особо чистых материалов'), (12618, 'https://ror.org/034k9nh67', 'en', 1, 'https://ror.org/034k9nh67 Greensboro Science Center'), (12619, 'https://ror.org/034m0w958', 'en', 1, 'https://ror.org/034m0w958 Institute of Mathematical Machines and Systems Problems Інститут проблем математичних машин і систем НАН України'), (12620, 'https://ror.org/034m9g361', 'no_lang_code', 1, 'https://ror.org/034m9g361 Athenex (United States)'), (12621, 'https://ror.org/034nt0s92', 'no_lang_code', 1, 'https://ror.org/034nt0s92 PyroGenesis (Greece)'), (12622, 'https://ror.org/034pvzq21', 'es', 1, 'https://ror.org/034pvzq21 Asociación Demográfica Costarricense'), (12623, 'https://ror.org/034q5ae56', 'en', 1, 'https://ror.org/034q5ae56 Sound Rivers'), (12624, 'https://ror.org/034qswm17', 'en', 1, 'https://ror.org/034qswm17 Bay Area Cancer Connections'), (12625, 'https://ror.org/034qt8m29', 'en', 1, 'https://ror.org/034qt8m29 Disabled Veterans Insurance Careers'), (12626, 'https://ror.org/034rtgp85', 'no_lang_code', 1, 'https://ror.org/034rtgp85 Airstreams Renewables (United States)'), (12627, 'https://ror.org/034sa4263', 'en', 1, 'https://ror.org/034sa4263 Arkansas Land and Farm Development Corporation'), (12628, 'https://ror.org/034sbyx40', 'en', 1, 'https://ror.org/034sbyx40 Institute of Neurology, Psychiatry and Narcology Інститут неврології, психіатрії та наркології Національної'), (12629, 'https://ror.org/034thfr92', 'no_lang_code', 1, 'https://ror.org/034thfr92 Havstovan'), (12630, 'https://ror.org/034trs204', 'en', 1, 'https://ror.org/034trs204 Mind Body Solutions'), (12631, 'https://ror.org/034x1wg70', 'en', 1, 'https://ror.org/034x1wg70 Center for Independent Living of Broward'), (12632, 'https://ror.org/034xxbj70', 'en', 1, 'https://ror.org/034xxbj70 Global Health Council'), (12633, 'https://ror.org/034z8a432', 'en', 1, 'https://ror.org/034z8a432 Kansas Bioscience Authority'), (12634, 'https://ror.org/034zb3z40', 'no_lang_code', 1, 'https://ror.org/034zb3z40 United Monolithic Semiconductor (France)'), (12635, 'https://ror.org/034zgem50', 'it', 1, 'https://ror.org/034zgem50 Agence spatiale italienne Agenzia Spaziale Italiana Agència Espacial Italiana Italian Space Agency'), (12636, 'https://ror.org/0354w0y78', 'en', 1, 'https://ror.org/0354w0y78 College of Central Florida'), (12637, 'https://ror.org/0354zqs18', 'no_lang_code', 1, 'https://ror.org/0354zqs18 Oxford Catalysts Group (United States)'), (12638, 'https://ror.org/03558b563', 'no_lang_code', 1, 'https://ror.org/03558b563 MSNW (United States)'), (12639, 'https://ror.org/0355hha51', 'no_lang_code', 1, 'https://ror.org/0355hha51 Berand (Ireland)'), (12640, 'https://ror.org/0355qrc50', 'en', 1, 'https://ror.org/0355qrc50 Pathlight'), (12641, 'https://ror.org/0355zfr67', 'en', 1, 'https://ror.org/0355zfr67 University of North Carolina Hospitals'), (12642, 'https://ror.org/0357ts970', 'en', 1, 'https://ror.org/0357ts970 Spinal Cord Injury BC'), (12643, 'https://ror.org/0359z7n90', 'en', 1, 'https://ror.org/0359z7n90 Swedish Energy Agency'), (12644, 'https://ror.org/035exww05', 'no_lang_code', 1, 'https://ror.org/035exww05 CheminPharma (United States)'), (12645, 'https://ror.org/035fmf715', 'en', 1, 'https://ror.org/035fmf715 Apollo Hospitals అపోలో హాస్పిటల్స్'), (12646, 'https://ror.org/035gava43', 'no_lang_code', 1, 'https://ror.org/035gava43 United Monolithic Semiconductors (Germany)'), (12647, 'https://ror.org/035h67p10', 'en', 1, 'https://ror.org/035h67p10 META Health'), (12648, 'https://ror.org/035hy4w78', 'en', 1, 'https://ror.org/035hy4w78 Cancer Lifeline'), (12649, 'https://ror.org/035jeda71', 'no_lang_code', 1, 'https://ror.org/035jeda71 Rofin (Germany)'), (12650, 'https://ror.org/035jqr885', 'en', 1, 'https://ror.org/035jqr885 Elkhart Clinic'), (12651, 'https://ror.org/035kd4890', 'en', 1, 'https://ror.org/035kd4890 Manpower Demonstration Research Corporation'), (12652, 'https://ror.org/035mr7v54', 'en', 1, 'https://ror.org/035mr7v54 Lithuanian Institute of Agrarian Economics'), (12653, 'https://ror.org/035q6v129', 'en', 1, 'https://ror.org/035q6v129 League Against Cancer'), (12654, 'https://ror.org/035sqzf61', 'en', 1, 'https://ror.org/035sqzf61 League of Conservation Voters'), (12655, 'https://ror.org/035swx070', 'en', 1, 'https://ror.org/035swx070 European Intermodal Association'), (12656, 'https://ror.org/035ttkd11', 'en', 1, 'https://ror.org/035ttkd11 Friends of Patan Hospital'), (12657, 'https://ror.org/035wv3h26', 'no_lang_code', 1, 'https://ror.org/035wv3h26 Roffer’s Ocean Fishing Forecasting Service'), (12658, 'https://ror.org/035wy8w94', 'en', 1, 'https://ror.org/035wy8w94 Blue Ridge Area Health Education Center'), (12659, 'https://ror.org/035yccj48', 'en', 1, 'https://ror.org/035yccj48 Kansas City Hospice and Palliative Care'), (12660, 'https://ror.org/035yg6030', 'en', 1, 'https://ror.org/035yg6030 Comer Family Foundation'), (12661, 'https://ror.org/035ytfy75', 'no_lang_code', 1, 'https://ror.org/035ytfy75 British Nuclear Fuel Limited (United Kingdom)'), (12662, 'https://ror.org/035z3t173', 'en', 1, 'https://ror.org/035z3t173 District scolaire de Philadelphie Distrito escolar de Filadelfia School District of Philadelphia'), (12663, 'https://ror.org/035za2858', 'no_lang_code', 1, 'https://ror.org/035za2858 Biofaction (Austria)'), (12664, 'https://ror.org/035zj6b18', 'en', 1, 'https://ror.org/035zj6b18 Anne Arundel Community College'), (12665, 'https://ror.org/035zp5a51', 'en', 1, 'https://ror.org/035zp5a51 Golisano Children''s Hospital of Southwest Florida'), (12666, 'https://ror.org/0364xxv33', 'no_lang_code', 1, 'https://ror.org/0364xxv33 Efacec (Portugal)'), (12667, 'https://ror.org/0365ahw46', 'no_lang_code', 1, 'https://ror.org/0365ahw46 Danaher (Netherlands)'), (12668, 'https://ror.org/03666ws89', 'en', 1, 'https://ror.org/03666ws89 Mesilla Valley Hospice'), (12669, 'https://ror.org/0367jyj65', 'no_lang_code', 1, 'https://ror.org/0367jyj65 FastOpt (Germany)'), (12670, 'https://ror.org/0369m1a38', 'en', 1, 'https://ror.org/0369m1a38 International Pre-Autistic Network'), (12671, 'https://ror.org/036baaz63', 'en', 1, 'https://ror.org/036baaz63 Front Line Defenders'), (12672, 'https://ror.org/036bm0d39', 'no_lang_code', 1, 'https://ror.org/036bm0d39 Cinecittà Luce'), (12673, 'https://ror.org/036d9xe15', 'no_lang_code', 1, 'https://ror.org/036d9xe15 Ceramics and Refractories Technological Development Company (Greece)'), (12674, 'https://ror.org/036e7je91', 'en', 1, 'https://ror.org/036e7je91 International Association of Public Transport'), (12675, 'https://ror.org/036gb6b33', 'es', 1, 'https://ror.org/036gb6b33 Centro de Epilepsia y Neurocirugía Funcional'), (12676, 'https://ror.org/036h6da34', 'no_lang_code', 1, 'https://ror.org/036h6da34 Linguatec (Germany)'), (12677, 'https://ror.org/036hkvc70', 'en', 1, 'https://ror.org/036hkvc70 Europeana Foundation Stichting Europeana'), (12678, 'https://ror.org/036nx0615', 'no_lang_code', 1, 'https://ror.org/036nx0615 USE2ACES (Netherlands)'), (12679, 'https://ror.org/036nz4295', 'no_lang_code', 1, 'https://ror.org/036nz4295 Re/genT (Netherlands)'), (12680, 'https://ror.org/036pa7g20', 'en', 1, 'https://ror.org/036pa7g20 Harbor Beach Community Hospital'), (12681, 'https://ror.org/036pfxs78', 'en', 1, 'https://ror.org/036pfxs78 County Councils on Aging'), (12682, 'https://ror.org/036q5kj17', 'no_lang_code', 1, 'https://ror.org/036q5kj17 Mantis Deposition (United Kingdom)'), (12683, 'https://ror.org/036r8j511', 'en', 1, 'https://ror.org/036r8j511 WirelessInfo'), (12684, 'https://ror.org/036s4q636', 'en', 1, 'https://ror.org/036s4q636 American Society of Regional Anesthesia and Pain Medicine'), (12685, 'https://ror.org/036tjv560', 'en', 1, 'https://ror.org/036tjv560 Children''s Specialty Group'), (12686, 'https://ror.org/036vmrn30', 'en', 1, 'https://ror.org/036vmrn30 Maryland Ravens'), (12687, 'https://ror.org/036vyc207', 'en', 1, 'https://ror.org/036vyc207 Mid Atlantic Epilepsy and Sleep Center'), (12688, 'https://ror.org/036wcgd38', 'en', 1, 'https://ror.org/036wcgd38 Leukemia Research Foundation'), (12689, 'https://ror.org/036xsx560', 'de', 1, 'https://ror.org/036xsx560 Ludwig-Bölkow-Systemtechnik'), (12690, 'https://ror.org/036z25w18', 'no_lang_code', 1, 'https://ror.org/036z25w18 Nemetschek Bulgaria (Bulgaria)'), (12691, 'https://ror.org/03755ef98', 'en', 1, 'https://ror.org/03755ef98 American MedChem'), (12692, 'https://ror.org/03760g136', 'en', 1, 'https://ror.org/03760g136 First To Serve'), (12693, 'https://ror.org/0376hjh49', 'no_lang_code', 1, 'https://ror.org/0376hjh49 Imperial Consultants'), (12694, 'https://ror.org/0376xx786', 'no_lang_code', 1, 'https://ror.org/0376xx786 Kalashnikov Group (Russia) акционерное общество Государственный оптический институт имени С.И.Вавилова'), (12695, 'https://ror.org/03794w632', 'no_lang_code', 1, 'https://ror.org/03794w632 Siemens (Austria)'), (12696, 'https://ror.org/0379zp714', 'en', 1, 'https://ror.org/0379zp714 Croatian Chamber of Economy'), (12697, 'https://ror.org/037brtq48', 'en', 1, 'https://ror.org/037brtq48 Friends of Firefighters'), (12698, 'https://ror.org/037bt1j05', 'fr', 1, 'https://ror.org/037bt1j05 Fondation de Coopération Scientifique Foundation for Scientific Cooperation'), (12699, 'https://ror.org/037c3gg23', 'it', 1, 'https://ror.org/037c3gg23 Istituto di Ricerche Economiche per la Pesca e l''Acquacoltura'), (12700, 'https://ror.org/037c70862', 'en', 1, 'https://ror.org/037c70862 American Society of Pediatric Hemotology Oncology'), (12701, 'https://ror.org/037caqy18', 'no_lang_code', 1, 'https://ror.org/037caqy18 Algaen (United States)'), (12702, 'https://ror.org/037d69x30', 'no_lang_code', 1, 'https://ror.org/037d69x30 Artemisia BioMedical (United States)'), (12703, 'https://ror.org/037dd8g98', 'no_lang_code', 1, 'https://ror.org/037dd8g98 Ecological Consultancy Services (Ireland)'), (12704, 'https://ror.org/037ebw447', 'en', 1, 'https://ror.org/037ebw447 Helen Hay Whitney Foundation'), (12705, 'https://ror.org/037hryt76', 'no_lang_code', 1, 'https://ror.org/037hryt76 iCons'), (12706, 'https://ror.org/037j2jz78', 'de', 1, 'https://ror.org/037j2jz78 Deutsche Wissenschaftliche Gesellschaft für Erdöl Erdgas und Kohle German Society for Petroleum and Coal Science and Technology'), (12707, 'https://ror.org/037kkjm30', 'no_lang_code', 1, 'https://ror.org/037kkjm30 Yenkin Majestic Industrial Coatings Division (United States)'), (12708, 'https://ror.org/037krc632', 'en', 1, 'https://ror.org/037krc632 Adaptive Sports and Recreation Association'), (12709, 'https://ror.org/037mqvh36', 'en', 1, 'https://ror.org/037mqvh36 I & T Nardoni Institute'), (12710, 'https://ror.org/037msyf12', 'en', 1, 'https://ror.org/037msyf12 MGH Institute of Health Professions'), (12711, 'https://ror.org/037nmab92', 'en', 1, 'https://ror.org/037nmab92 City Harvest'), (12712, 'https://ror.org/037p90z15', 'ga', 1, 'https://ror.org/037p90z15 Foras Áiseanna Saothair Training and Employment Authority'), (12713, 'https://ror.org/037pbdd49', 'no_lang_code', 1, 'https://ror.org/037pbdd49 Q PLAN International (Greece)'), (12714, 'https://ror.org/037pbyt27', 'en', 1, 'https://ror.org/037pbyt27 Glens Falls Hospital'), (12715, 'https://ror.org/037pk1914', 'en', 1, 'https://ror.org/037pk1914 RAND Europe'), (12716, 'https://ror.org/037qxtx62', 'no_lang_code', 1, 'https://ror.org/037qxtx62 Eurokleis'), (12717, 'https://ror.org/037r0mm82', 'no_lang_code', 1, 'https://ror.org/037r0mm82 Thomas Miller (United Kingdom)'), (12718, 'https://ror.org/037vegb36', 'en', 1, 'https://ror.org/037vegb36 Kerr Center for Sustainable Agriculture'), (12719, 'https://ror.org/037ynvv94', 'no_lang_code', 1, 'https://ror.org/037ynvv94 Ripple Rock Fish Farms (United States)'), (12720, 'https://ror.org/0381d4058', 'en', 1, 'https://ror.org/0381d4058 Renown South Meadows Medical Center'), (12721, 'https://ror.org/0381kjh19', 'en', 1, 'https://ror.org/0381kjh19 Northeast Wisconsin Technical College'), (12722, 'https://ror.org/03821ge86', 'fr', 1, 'https://ror.org/03821ge86 Fondation Asile des Aveugles'), (12723, 'https://ror.org/0382qx554', 'en', 1, 'https://ror.org/0382qx554 Head-Royce School'), (12724, 'https://ror.org/038333j82', 'no_lang_code', 1, 'https://ror.org/038333j82 Nuance Communications (Italy)'), (12725, 'https://ror.org/03834em22', 'en', 1, 'https://ror.org/03834em22 Illinois Public Health Institute'), (12726, 'https://ror.org/0383dsh39', 'en', 1, 'https://ror.org/0383dsh39 Center for Usability Research and Engineering Centrum für die Untersuchung und Realisierung Endbenutzerorientierter Interaktiver Systeme'), (12727, 'https://ror.org/03847e911', 'no_lang_code', 1, 'https://ror.org/03847e911 International Chemical Investors (Germany)'), (12728, 'https://ror.org/0385nmy68', 'en', 1, 'https://ror.org/0385nmy68 Ministry of Industry and Information Technology 中华人民共和国工业和信息化部'), (12729, 'https://ror.org/0385stf53', 'no_lang_code', 1, 'https://ror.org/0385stf53 Ala-Septic Pharmaceutical Research (United States)'), (12730, 'https://ror.org/0386f5975', 'no_lang_code', 1, 'https://ror.org/0386f5975 Finceramica (Italy)'), (12731, 'https://ror.org/0387qmw52', 'en', 1, 'https://ror.org/0387qmw52 Africa Health and Development International'), (12732, 'https://ror.org/0388bf577', 'en', 1, 'https://ror.org/0388bf577 Bulgarian Chamber of Commerce and Industry'), (12733, 'https://ror.org/038cdme44', 'no_lang_code', 1, 'https://ror.org/038cdme44 Huawei Technologies (Germany)'), (12734, 'https://ror.org/038es7c44', 'no_lang_code', 1, 'https://ror.org/038es7c44 EnginSoft (Italy)'), (12735, 'https://ror.org/038mfmm37', 'en', 1, 'https://ror.org/038mfmm37 ACIES Consulting Group'), (12736, 'https://ror.org/038nc4w52', 'en', 1, 'https://ror.org/038nc4w52 Cancer Support Foundation'), (12737, 'https://ror.org/038nrf531', 'no_lang_code', 1, 'https://ror.org/038nrf531 Pininfarina (Italy)'), (12738, 'https://ror.org/038q96y60', 'en', 1, 'https://ror.org/038q96y60 Denver Indian Center'), (12739, 'https://ror.org/038qw8663', 'no_lang_code', 1, 'https://ror.org/038qw8663 This Old Farm (United States)'), (12740, 'https://ror.org/038syck06', 'es', 1, 'https://ror.org/038syck06 Casita de Mausi'), (12741, 'https://ror.org/038t94116', 'de', 1, 'https://ror.org/038t94116 Deutsches Forschungsnetz, Verein zur Förderung eines Deutschen Forschungsnetzes German Research Network'), (12742, 'https://ror.org/038x7my43', 'en', 1, 'https://ror.org/038x7my43 Myrtle Avenue Brooklyn Partnership'), (12743, 'https://ror.org/038zz3b86', 'no_lang_code', 1, 'https://ror.org/038zz3b86 AVM Biotechnology (United States)'), (12744, 'https://ror.org/0391e3e29', 'en', 1, 'https://ror.org/0391e3e29 Grace Church of The Nazarene'), (12745, 'https://ror.org/0391zqt72', 'en', 1, 'https://ror.org/0391zqt72 American Society of Gene Therapy and Cell Therapy'), (12746, 'https://ror.org/0392jcp02', 'no_lang_code', 1, 'https://ror.org/0392jcp02 Applechem (United States)'), (12747, 'https://ror.org/03941sr58', 'en', 1, 'https://ror.org/03941sr58 Claxton-Hepburn Medical Center'), (12748, 'https://ror.org/0394gyh79', 'en', 1, 'https://ror.org/0394gyh79 European Nuclear Education Network Réseau Européen pour l’Enseignement des Sciences Nucléaires'), (12749, 'https://ror.org/0395hnd71', 'en', 1, 'https://ror.org/0395hnd71 Production Engineering Research Association'), (12750, 'https://ror.org/0396ezm18', 'en', 1, 'https://ror.org/0396ezm18 National Test Pilot School'), (12751, 'https://ror.org/0397aw971', 'en', 1, 'https://ror.org/0397aw971 Bronx Independent Living Services'), (12752, 'https://ror.org/03983h596', 'en', 1, 'https://ror.org/03983h596 Project Angel Heart'), (12753, 'https://ror.org/0399m8q49', 'en', 1, 'https://ror.org/0399m8q49 Faces of Courage Foundation'), (12754, 'https://ror.org/039arew28', 'no_lang_code', 1, 'https://ror.org/039arew28 Micro Materials (United Kingdom)'), (12755, 'https://ror.org/039bged65', 'en', 1, 'https://ror.org/039bged65 Lukasiewicz Research Network - Krakow Institute of Technology Łukasiewicz -Krakowski Instytut Technologiczny'), (12756, 'https://ror.org/039ckp747', 'en', 1, 'https://ror.org/039ckp747 Semantic Technology Institute International'), (12757, 'https://ror.org/039d42y17', 'no_lang_code', 1, 'https://ror.org/039d42y17 BioTalentum (Hungary)'), (12758, 'https://ror.org/039ds3g53', 'no_lang_code', 1, 'https://ror.org/039ds3g53 Oberthur Technologies (France)'), (12759, 'https://ror.org/039ep1930', 'en', 1, 'https://ror.org/039ep1930 California Black Health Network'), (12760, 'https://ror.org/039faw336', 'no_lang_code', 1, 'https://ror.org/039faw336 Scientific Research and Development (Germany)'), (12761, 'https://ror.org/039fb2p82', 'en', 1, 'https://ror.org/039fb2p82 Leech Lake Tribal College'), (12762, 'https://ror.org/039ft6244', 'no_lang_code', 1, 'https://ror.org/039ft6244 ArcelorMittal (Germany)'), (12763, 'https://ror.org/039gcd439', 'en', 1, 'https://ror.org/039gcd439 Lancaster County Medical Society'), (12764, 'https://ror.org/039j6d549', 'en', 1, 'https://ror.org/039j6d549 Providence Medford Medical Center'), (12765, 'https://ror.org/039m3s961', 'no_lang_code', 1, 'https://ror.org/039m3s961 Micron (Italy)'), (12766, 'https://ror.org/039pgdx28', 'no_lang_code', 1, 'https://ror.org/039pgdx28 Danfoss (Denmark)'), (12767, 'https://ror.org/039q7yt14', 'no_lang_code', 1, 'https://ror.org/039q7yt14 European Plastics Converters'), (12768, 'https://ror.org/039r8xz84', 'en', 1, 'https://ror.org/039r8xz84 Arcadia International'), (12769, 'https://ror.org/039sb8791', 'no_lang_code', 1, 'https://ror.org/039sb8791 Aptiv (Germany)'), (12770, 'https://ror.org/039t93g49', 'de', 1, 'https://ror.org/039t93g49 Forschungsinstitut für Biologischen Landbau Research Institute of Organic Agriculture'), (12771, 'https://ror.org/039whrd55', 'en', 1, 'https://ror.org/039whrd55 Harrington Regional Medical Center'), (12772, 'https://ror.org/039yg9v74', 'en', 1, 'https://ror.org/039yg9v74 Child and Family Services of New Hampshire'), (12773, 'https://ror.org/039z13y21', 'fr', 1, 'https://ror.org/039z13y21 Fonds National de la Recherche National Research Fund Luxembourg'), (12774, 'https://ror.org/03a6ebh86', 'en', 1, 'https://ror.org/03a6ebh86 Coastal Health District'), (12775, 'https://ror.org/03a872012', 'fr', 1, 'https://ror.org/03a872012 Institut de Recherche Agricole pour le Développement Institute of Agricultural Research for Development'), (12776, 'https://ror.org/03a9cx059', 'en', 1, 'https://ror.org/03a9cx059 Restorative Justice Centre'), (12777, 'https://ror.org/03aa6g490', 'no_lang_code', 1, 'https://ror.org/03aa6g490 Wellness Telecom (Spain)'), (12778, 'https://ror.org/03adfn654', 'no_lang_code', 1, 'https://ror.org/03adfn654 Lincis (Portugal)'), (12779, 'https://ror.org/03adjb352', 'fr', 1, 'https://ror.org/03adjb352 Observatoire Méditerranéen de l’Energie'), (12780, 'https://ror.org/03agges87', 'en', 1, 'https://ror.org/03agges87 Third Judicial Circuit of Florida'), (12781, 'https://ror.org/03ah83d07', 'no_lang_code', 1, 'https://ror.org/03ah83d07 HI Iberia (Spain)'), (12782, 'https://ror.org/03ahv9t97', 'en', 1, 'https://ror.org/03ahv9t97 Lymphatic Education & Research Network'), (12783, 'https://ror.org/03ajjha16', 'en', 1, 'https://ror.org/03ajjha16 Resources for Human Development'), (12784, 'https://ror.org/03ajn7m72', 'en', 1, 'https://ror.org/03ajn7m72 Illinois Central College'), (12785, 'https://ror.org/03amxdk57', 'no_lang_code', 1, 'https://ror.org/03amxdk57 Capgemini (Netherlands)'), (12786, 'https://ror.org/03aq8ma66', 'no_lang_code', 1, 'https://ror.org/03aq8ma66 SEMA (Germany)'), (12787, 'https://ror.org/03arv1448', 'en', 1, 'https://ror.org/03arv1448 Being Adept'), (12788, 'https://ror.org/03asvs429', 'en', 1, 'https://ror.org/03asvs429 New York Legal Assistance Group'), (12789, 'https://ror.org/03aswyk21', 'en', 1, 'https://ror.org/03aswyk21 White Earth Tribal and Community College'), (12790, 'https://ror.org/03av1g763', 'no_lang_code', 1, 'https://ror.org/03av1g763 Genos (Croatia)'), (12791, 'https://ror.org/03avace35', 'no_lang_code', 1, 'https://ror.org/03avace35 Sword Group (Luxembourg)'), (12792, 'https://ror.org/03awv4473', 'en', 1, 'https://ror.org/03awv4473 Council for Jewish Elderly'), (12793, 'https://ror.org/03ax7hn31', 'no_lang_code', 1, 'https://ror.org/03ax7hn31 BHP Laboratories'), (12794, 'https://ror.org/03az21a93', 'no_lang_code', 1, 'https://ror.org/03az21a93 Swasthya Diabetes Care'), (12795, 'https://ror.org/03azrqe31', 'no_lang_code', 1, 'https://ror.org/03azrqe31 ID Quantique (Switzerland)'), (12796, 'https://ror.org/03b3akj74', 'en', 1, 'https://ror.org/03b3akj74 American Institute for Cancer Research'), (12797, 'https://ror.org/03b58r371', 'en', 1, 'https://ror.org/03b58r371 Noble'), (12798, 'https://ror.org/03b66rp04', 'en', 1, 'https://ror.org/03b66rp04 Olive View-UCLA Medical Center'), (12799, 'https://ror.org/03b7cbd70', 'no_lang_code', 1, 'https://ror.org/03b7cbd70 Stork (Netherlands)'), (12800, 'https://ror.org/03b7x6y73', 'it', 1, 'https://ror.org/03b7x6y73 Autorità Portuale di Genova'), (12801, 'https://ror.org/03bb2z510', 'en', 1, 'https://ror.org/03bb2z510 Cares Community Health'), (12802, 'https://ror.org/03bbgsb46', 'it', 1, 'https://ror.org/03bbgsb46 Società Italiana di Fisica'), (12803, 'https://ror.org/03bc0pq34', 'en', 1, 'https://ror.org/03bc0pq34 Institute for Chemical Processing of Coal'), (12804, 'https://ror.org/03bcj4564', 'no_lang_code', 1, 'https://ror.org/03bcj4564 College of Micronesia-FSM'), (12805, 'https://ror.org/03bdeb788', 'no_lang_code', 1, 'https://ror.org/03bdeb788 Community of European Shipyards Associations'), (12806, 'https://ror.org/03bepb710', 'no_lang_code', 1, 'https://ror.org/03bepb710 Cellana (United States)'), (12807, 'https://ror.org/03besxw61', 'no_lang_code', 1, 'https://ror.org/03besxw61 Mostostal Warszawa (Poland)'), (12808, 'https://ror.org/03bg0vt52', 'en', 1, 'https://ror.org/03bg0vt52 Centre for Rights Education and Awareness'), (12809, 'https://ror.org/03bjbem32', 'no_lang_code', 1, 'https://ror.org/03bjbem32 IBM (Belgium)'), (12810, 'https://ror.org/03bjq7p15', 'en', 1, 'https://ror.org/03bjq7p15 Foundation for Community Empowerment'), (12811, 'https://ror.org/03bmdtg34', 'no_lang_code', 1, 'https://ror.org/03bmdtg34 SGS Institut Fresenius (Germany)'), (12812, 'https://ror.org/03bp9pt77', 'en', 1, 'https://ror.org/03bp9pt77 Salt Lake County Parks and Recreation'), (12813, 'https://ror.org/03bqhc746', 'en', 1, 'https://ror.org/03bqhc746 Keystone College'), (12814, 'https://ror.org/03bs7k153', 'no_lang_code', 1, 'https://ror.org/03bs7k153 Erdyn (France)'), (12815, 'https://ror.org/03bsqcj22', 'no_lang_code', 1, 'https://ror.org/03bsqcj22 XCR Diagnostics (United States)'), (12816, 'https://ror.org/03bsv7x15', 'no_lang_code', 1, 'https://ror.org/03bsv7x15 Ramboll (Finland)'), (12817, 'https://ror.org/03bwmmt72', 'en', 1, 'https://ror.org/03bwmmt72 Building Bridges Child Development Center'), (12818, 'https://ror.org/03bxr8x39', 'en', 1, 'https://ror.org/03bxr8x39 Jewish Community Center of Fort Lee'), (12819, 'https://ror.org/03bxx2b53', 'no_lang_code', 1, 'https://ror.org/03bxx2b53 Kontron (Germany)'), (12820, 'https://ror.org/03by37p23', 'en', 1, 'https://ror.org/03by37p23 Brent''s Place'), (12821, 'https://ror.org/03by4xw59', 'en', 1, 'https://ror.org/03by4xw59 Cerebral Palsy Research Foundation'), (12822, 'https://ror.org/03byhfv76', 'en', 1, 'https://ror.org/03byhfv76 South Georgia Medical Center'), (12823, 'https://ror.org/03byj3662', 'en', 1, 'https://ror.org/03byj3662 National Center for Farmworker Health'), (12824, 'https://ror.org/03byzcq48', 'en', 1, 'https://ror.org/03byzcq48 Sanford Medical Center'), (12825, 'https://ror.org/03bzm0n35', 'en', 1, 'https://ror.org/03bzm0n35 Hmong American Partnership'), (12826, 'https://ror.org/03c0yyz21', 'no_lang_code', 1, 'https://ror.org/03c0yyz21 Ericsson (Hungary)'), (12827, 'https://ror.org/03c1k0368', 'no_lang_code', 1, 'https://ror.org/03c1k0368 Schlaich Bergermann und Partner (Germany)'), (12828, 'https://ror.org/03c3vzv03', 'en', 1, 'https://ror.org/03c3vzv03 European Association for Renewable Energy Europäische Vereinigung für Erneuerbare Energien Eurosolar'), (12829, 'https://ror.org/03c5bjw68', 'no_lang_code', 1, 'https://ror.org/03c5bjw68 BoxModul (Sweden)'), (12830, 'https://ror.org/03c814f32', 'no_lang_code', 1, 'https://ror.org/03c814f32 Fratelli Alinari (Italy)'), (12831, 'https://ror.org/03c84q386', 'en', 1, 'https://ror.org/03c84q386 McCarton Foundation'), (12832, 'https://ror.org/03c8f3524', 'en', 1, 'https://ror.org/03c8f3524 Boone County Health Department'), (12833, 'https://ror.org/03c94dv58', 'en', 1, 'https://ror.org/03c94dv58 Alzforum'), (12834, 'https://ror.org/03c95vw04', 'no_lang_code', 1, 'https://ror.org/03c95vw04 Vertech Group'), (12835, 'https://ror.org/03c9d3902', 'no_lang_code', 1, 'https://ror.org/03c9d3902 BioMedicure (United States)'), (12836, 'https://ror.org/03c9wy439', 'no_lang_code', 1, 'https://ror.org/03c9wy439 Azavea (United States)'), (12837, 'https://ror.org/03cbfdp48', 'en', 1, 'https://ror.org/03cbfdp48 Polk County Public Schools'), (12838, 'https://ror.org/03ccv3j03', 'no_lang_code', 1, 'https://ror.org/03ccv3j03 Metrocrops'), (12839, 'https://ror.org/03ce0x006', 'no_lang_code', 1, 'https://ror.org/03ce0x006 RWP (Germany)'), (12840, 'https://ror.org/03cew4h50', 'en', 1, 'https://ror.org/03cew4h50 EvergreenHealth'), (12841, 'https://ror.org/03cpy3x24', 'no_lang_code', 1, 'https://ror.org/03cpy3x24 Motiva (Finland)'), (12842, 'https://ror.org/03cr60k70', 'no_lang_code', 1, 'https://ror.org/03cr60k70 Global Blood Therapeutics (United States)'), (12843, 'https://ror.org/03cr99w51', 'no_lang_code', 1, 'https://ror.org/03cr99w51 Sony (France)'), (12844, 'https://ror.org/03crcmh94', 'en', 1, 'https://ror.org/03crcmh94 Governance Links Tanzania'), (12845, 'https://ror.org/03crevx32', 'en', 1, 'https://ror.org/03crevx32 Center for Neurorehabilitation Services'), (12846, 'https://ror.org/03crv6k69', 'no_lang_code', 1, 'https://ror.org/03crv6k69 Laser Expertise (United Kingdom)'), (12847, 'https://ror.org/03ct85y20', 'no_lang_code', 1, 'https://ror.org/03ct85y20 TUI (Germany)'), (12848, 'https://ror.org/03cvyms32', 'en', 1, 'https://ror.org/03cvyms32 Cancer Association of Greater New Orleans'), (12849, 'https://ror.org/03cvz4414', 'no_lang_code', 1, 'https://ror.org/03cvz4414 Würth Elektronik (Germany)'), (12850, 'https://ror.org/03cw8xx58', 'en', 1, 'https://ror.org/03cw8xx58 North Colorado Medical Center Foundation'), (12851, 'https://ror.org/03cy2tx68', 'en', 1, 'https://ror.org/03cy2tx68 Black Sea Regional Energy Centre'), (12852, 'https://ror.org/03d06tq31', 'en', 1, 'https://ror.org/03d06tq31 Michigan Science Center'), (12853, 'https://ror.org/03d278m65', 'no_lang_code', 1, 'https://ror.org/03d278m65 MyeloRx (United States)'), (12854, 'https://ror.org/03d3a3a46', 'en', 1, 'https://ror.org/03d3a3a46 Community Rowing'), (12855, 'https://ror.org/03d3v3e93', 'no_lang_code', 1, 'https://ror.org/03d3v3e93 Evotec (Germany)'), (12856, 'https://ror.org/03d4ztk89', 'no_lang_code', 1, 'https://ror.org/03d4ztk89 Corbion (Netherlands)'), (12857, 'https://ror.org/03d587e82', 'en', 1, 'https://ror.org/03d587e82 Estonian E Health Foundation'), (12858, 'https://ror.org/03d7h4x42', 'en', 1, 'https://ror.org/03d7h4x42 Independent Living Resource Center San Francisco'), (12859, 'https://ror.org/03d95mc27', 'no_lang_code', 1, 'https://ror.org/03d95mc27 Ortin Laboratories (India)'), (12860, 'https://ror.org/03da0cj89', 'en', 1, 'https://ror.org/03da0cj89 American Society of Animal Science'), (12861, 'https://ror.org/03dbbn946', 'no_lang_code', 1, 'https://ror.org/03dbbn946 HaCon (Germany)'), (12862, 'https://ror.org/03dcvkh04', 'no_lang_code', 1, 'https://ror.org/03dcvkh04 Intrinsiq Materials (United Kingdom)'), (12863, 'https://ror.org/03dewpe59', 'en', 1, 'https://ror.org/03dewpe59 East Harlem School'), (12864, 'https://ror.org/03dewsa74', 'en', 1, 'https://ror.org/03dewsa74 Blue Marble Space'), (12865, 'https://ror.org/03dscga50', 'en', 1, 'https://ror.org/03dscga50 Austrian National Library Österreichische Nationalbibliothek'), (12866, 'https://ror.org/03dsvvn23', 'en', 1, 'https://ror.org/03dsvvn23 European Health Telematics Association'), (12867, 'https://ror.org/03dx0rh63', 'no_lang_code', 1, 'https://ror.org/03dx0rh63 Brussels Intercommunal Transport Company Maatschappij voor het Intercommunaal Vervoer te Brussel Société des Transports Intercommunaux de Bruxelles'), (12868, 'https://ror.org/03e278q38', 'no_lang_code', 1, 'https://ror.org/03e278q38 Vinci (France)'), (12869, 'https://ror.org/03e2k6s26', 'en', 1, 'https://ror.org/03e2k6s26 Nigerian Christian Hospital'), (12870, 'https://ror.org/03e6npv25', 'en', 1, 'https://ror.org/03e6npv25 Alliance for Community Trees'), (12871, 'https://ror.org/03e93v570', 'no_lang_code', 1, 'https://ror.org/03e93v570 BIO Intelligence Service (France)'), (12872, 'https://ror.org/03e9g1572', 'no_lang_code', 1, 'https://ror.org/03e9g1572 Neuromathix (Australia)'), (12873, 'https://ror.org/03ea0ep61', 'en', 1, 'https://ror.org/03ea0ep61 Autism360'), (12874, 'https://ror.org/03eevrx63', 'en', 1, 'https://ror.org/03eevrx63 Catskill Regional Medical Center'), (12875, 'https://ror.org/03ef7g429', 'no_lang_code', 1, 'https://ror.org/03ef7g429 Photon Systems Instruments (Czechia)'), (12876, 'https://ror.org/03ef7m045', 'no_lang_code', 1, 'https://ror.org/03ef7m045 Bergamo Technologies (Poland)'), (12877, 'https://ror.org/03efkag80', 'en', 1, 'https://ror.org/03efkag80 Aliis Inserviendo Consumor Foundation'), (12878, 'https://ror.org/03eh15043', 'no_lang_code', 1, 'https://ror.org/03eh15043 Pirelli (Italy)'), (12879, 'https://ror.org/03end3932', 'no_lang_code', 1, 'https://ror.org/03end3932 GGG (France)'), (12880, 'https://ror.org/03epbnb34', 'no_lang_code', 1, 'https://ror.org/03epbnb34 AquaTT (Ireland)'), (12881, 'https://ror.org/03eq22881', 'en', 1, 'https://ror.org/03eq22881 Institute for Deciduous Fruit, Vines and Wine'), (12882, 'https://ror.org/03eqeqg74', 'en', 1, 'https://ror.org/03eqeqg74 Institute of Protein Biochemistry Istituto di Biochimica delle Proteine'), (12883, 'https://ror.org/03et1ay56', 'en', 1, 'https://ror.org/03et1ay56 Fondazione Rosselli Rosselli Foundation'), (12884, 'https://ror.org/03et3t032', 'en', 1, 'https://ror.org/03et3t032 Gulf Relief Foundation'), (12885, 'https://ror.org/03etn8e63', 'no_lang_code', 1, 'https://ror.org/03etn8e63 Uninett (Norway)'), (12886, 'https://ror.org/03eywck07', 'en', 1, 'https://ror.org/03eywck07 Institute of Biodiversity and Ecosystem Research'), (12887, 'https://ror.org/03f3zda13', 'no_lang_code', 1, 'https://ror.org/03f3zda13 Heartsong'), (12888, 'https://ror.org/03f42pk91', 'en', 1, 'https://ror.org/03f42pk91 Norte Maar'), (12889, 'https://ror.org/03f4rq368', 'en', 1, 'https://ror.org/03f4rq368 Flathead City County Health Department'), (12890, 'https://ror.org/03f4vp463', 'no_lang_code', 1, 'https://ror.org/03f4vp463 IQE (United Kingdom)'), (12891, 'https://ror.org/03f5kqz72', 'en', 1, 'https://ror.org/03f5kqz72 Iowa Children''s Museum'), (12892, 'https://ror.org/03f6d5g58', 'no_lang_code', 1, 'https://ror.org/03f6d5g58 Vita Group (United Kingdom)'), (12893, 'https://ror.org/03f82tr05', 'en', 1, 'https://ror.org/03f82tr05 National Domestic Workers Alliance'), (12894, 'https://ror.org/03f9sef34', 'en', 1, 'https://ror.org/03f9sef34 Charleston Breast Center'), (12895, 'https://ror.org/03f9txg78', 'no_lang_code', 1, 'https://ror.org/03f9txg78 Emilia Romagna Valorizzazione Economica Territorio (Italy)'), (12896, 'https://ror.org/03fa8g464', 'en', 1, 'https://ror.org/03fa8g464 Lutheran Family Health Centers'), (12897, 'https://ror.org/03fahgd34', 'en', 1, 'https://ror.org/03fahgd34 Bricks + Books Foundation'), (12898, 'https://ror.org/03fat7v77', 'en', 1, 'https://ror.org/03fat7v77 Ministry of Gender and Development'), (12899, 'https://ror.org/03fb4ef52', 'en', 1, 'https://ror.org/03fb4ef52 Gov2u'), (12900, 'https://ror.org/03fc14d06', 'it', 1, 'https://ror.org/03fc14d06 Fondazione Centro Marino Internazionale'), (12901, 'https://ror.org/03fdkmv28', 'en', 1, 'https://ror.org/03fdkmv28 European Emergency Number Association'), (12902, 'https://ror.org/03fdne361', 'no_lang_code', 1, 'https://ror.org/03fdne361 InvivoGen (France)'), (12903, 'https://ror.org/03fe56089', 'no_lang_code', 1, 'https://ror.org/03fe56089 GlaxoSmithKline (Italy)'), (12904, 'https://ror.org/03fe5bx07', 'en', 1, 'https://ror.org/03fe5bx07 Healthy Communities Coalition'), (12905, 'https://ror.org/03fhv6a52', 'es', 1, 'https://ror.org/03fhv6a52 Supera'), (12906, 'https://ror.org/03fk8t087', 'no_lang_code', 1, 'https://ror.org/03fk8t087 Tetra Tech (United States)'), (12907, 'https://ror.org/03fkdmb14', 'no_lang_code', 1, 'https://ror.org/03fkdmb14 Beneq (Finland)'), (12908, 'https://ror.org/03fm9hg19', 'en', 1, 'https://ror.org/03fm9hg19 Yurok Tribe Environmental Program'), (12909, 'https://ror.org/03fnvja86', 'no_lang_code', 1, 'https://ror.org/03fnvja86 Nanovis (United States)'), (12910, 'https://ror.org/03fqsff15', 'en', 1, 'https://ror.org/03fqsff15 Community Counseling Services'), (12911, 'https://ror.org/03fr5cc17', 'no_lang_code', 1, 'https://ror.org/03fr5cc17 Asklepios Asklepios Kliniken'); INSERT INTO `rors` VALUES (12912, 'https://ror.org/03frdm317', 'en', 1, 'https://ror.org/03frdm317 Paraquad'), (12913, 'https://ror.org/03frscd72', 'no_lang_code', 1, 'https://ror.org/03frscd72 Trama TecnoAmbiental (Spain)'), (12914, 'https://ror.org/03ft4ac91', 'en', 1, 'https://ror.org/03ft4ac91 Ochin'), (12915, 'https://ror.org/03fwqkz80', 'en', 1, 'https://ror.org/03fwqkz80 Cancer Society of the Bahamas'), (12916, 'https://ror.org/03fyqbt98', 'en', 1, 'https://ror.org/03fyqbt98 Alzheimer''s and Related Disorders Society of India'), (12917, 'https://ror.org/03g0pmj13', 'no_lang_code', 1, 'https://ror.org/03g0pmj13 Exsulin (United States)'), (12918, 'https://ror.org/03g3gc902', 'no_lang_code', 1, 'https://ror.org/03g3gc902 ProDigest (Belgium)'), (12919, 'https://ror.org/03g4qd502', 'en', 1, 'https://ror.org/03g4qd502 Brodarski Institute'), (12920, 'https://ror.org/03g516j82', 'en', 1, 'https://ror.org/03g516j82 Food Outreach'), (12921, 'https://ror.org/03g5dad97', 'en', 1, 'https://ror.org/03g5dad97 National Development and Reform Commission Energy Research Institute 国家发展和改革委员会能源研究所'), (12922, 'https://ror.org/03g68pb09', 'no_lang_code', 1, 'https://ror.org/03g68pb09 Blinn College'), (12923, 'https://ror.org/03g6g7j35', 'no_lang_code', 1, 'https://ror.org/03g6g7j35 Global Graphics (United Kingdom)'), (12924, 'https://ror.org/03g7c9017', 'no_lang_code', 1, 'https://ror.org/03g7c9017 Berliner Verkehrsbetriebe (Germany)'), (12925, 'https://ror.org/03g83vg44', 'no_lang_code', 1, 'https://ror.org/03g83vg44 ALS Biopharma (United States)'), (12926, 'https://ror.org/03g8d4x11', 'es', 1, 'https://ror.org/03g8d4x11 Centro Tecnológico del Mar'), (12927, 'https://ror.org/03gaatb02', 'en', 1, 'https://ror.org/03gaatb02 Primary Care Coalition of Montgomery County'), (12928, 'https://ror.org/03gam8m83', 'no_lang_code', 1, 'https://ror.org/03gam8m83 Engedi Science (United Kingdom)'), (12929, 'https://ror.org/03gca6511', 'en', 1, 'https://ror.org/03gca6511 Growing Power'), (12930, 'https://ror.org/03gcet659', 'no_lang_code', 1, 'https://ror.org/03gcet659 Cambridge Econometrics (United Kingdom)'), (12931, 'https://ror.org/03gcqsh22', 'no_lang_code', 1, 'https://ror.org/03gcqsh22 SinapTec (France)'), (12932, 'https://ror.org/03ge1nb22', 'en', 1, 'https://ror.org/03ge1nb22 Danish Ministry of Higher Education and Science Uddannelses- og Forskningsministeriet'), (12933, 'https://ror.org/03gk10789', 'en', 1, 'https://ror.org/03gk10789 Farm to Table'), (12934, 'https://ror.org/03gkzwc92', 'no_lang_code', 1, 'https://ror.org/03gkzwc92 Ancitel (Italy)'), (12935, 'https://ror.org/03gnnzc77', 'en', 1, 'https://ror.org/03gnnzc77 Institut für Bioprozess- und Analysenmesstechnik Institute for Bioprocessing and Analytical Measurement Techniques'), (12936, 'https://ror.org/03gv7xs09', 'en', 1, 'https://ror.org/03gv7xs09 Capital Rowing Club'), (12937, 'https://ror.org/03gxcr347', 'no_lang_code', 1, 'https://ror.org/03gxcr347 Infosys (France)'), (12938, 'https://ror.org/03gyze223', 'es', 1, 'https://ror.org/03gyze223 Fundacion de Neurociencias'), (12939, 'https://ror.org/03gzq6595', 'no_lang_code', 1, 'https://ror.org/03gzq6595 Nextworks (Italy)'), (12940, 'https://ror.org/03gzyhr79', 'no_lang_code', 1, 'https://ror.org/03gzyhr79 CNet (Sweden)'), (12941, 'https://ror.org/03h00an48', 'en', 1, 'https://ror.org/03h00an48 Fredericksburg Independent School District'), (12942, 'https://ror.org/03h04vn96', 'no_lang_code', 1, 'https://ror.org/03h04vn96 Nymirum (United States)'), (12943, 'https://ror.org/03h3tdh87', 'no_lang_code', 1, 'https://ror.org/03h3tdh87 Stellar Solutions (United States)'), (12944, 'https://ror.org/03h67h666', 'no_lang_code', 1, 'https://ror.org/03h67h666 Spensa Technologies (United States)'), (12945, 'https://ror.org/03h6c8g90', 'no_lang_code', 1, 'https://ror.org/03h6c8g90 Vdlconsult'), (12946, 'https://ror.org/03h7w4021', 'en', 1, 'https://ror.org/03h7w4021 Bauer Research Foundation'), (12947, 'https://ror.org/03hawtg60', 'no_lang_code', 1, 'https://ror.org/03hawtg60 Aker (Finland)'), (12948, 'https://ror.org/03he51f03', 'no_lang_code', 1, 'https://ror.org/03he51f03 A2A (Italy)'), (12949, 'https://ror.org/03hf0fw66', 'en', 1, 'https://ror.org/03hf0fw66 Murray Hill Neighborhood Association'), (12950, 'https://ror.org/03hg1yf12', 'no_lang_code', 1, 'https://ror.org/03hg1yf12 Magwel (Belgium)'), (12951, 'https://ror.org/03hgkjm76', 'en', 1, 'https://ror.org/03hgkjm76 Frick Collection'), (12952, 'https://ror.org/03hj7k055', 'de', 1, 'https://ror.org/03hj7k055 Studiengesellschaft für den Kombinierten Verkehr e.V.'), (12953, 'https://ror.org/03hjnhg65', 'no_lang_code', 1, 'https://ror.org/03hjnhg65 Open Hand'), (12954, 'https://ror.org/03hjr5c64', 'en', 1, 'https://ror.org/03hjr5c64 Bellingham Technical College'), (12955, 'https://ror.org/03hk7j981', 'en', 1, 'https://ror.org/03hk7j981 Autism Treatment Center'), (12956, 'https://ror.org/03hkb5805', 'en', 1, 'https://ror.org/03hkb5805 Baby Buggy'), (12957, 'https://ror.org/03hmj3984', 'no_lang_code', 1, 'https://ror.org/03hmj3984 Ambiente Risorse Sviluppo Environment, Resources and Development'), (12958, 'https://ror.org/03hp16c30', 'no_lang_code', 1, 'https://ror.org/03hp16c30 WholeTrees (United States)'), (12959, 'https://ror.org/03hp1m080', 'no_lang_code', 1, 'https://ror.org/03hp1m080 Ikerlan'), (12960, 'https://ror.org/03hqc7279', 'en', 1, 'https://ror.org/03hqc7279 Otero Junior College'), (12961, 'https://ror.org/03hs0j596', 'no_lang_code', 1, 'https://ror.org/03hs0j596 Bord Soláthair an Leictreacha Electricity Supply Board (Ireland)'), (12962, 'https://ror.org/03hsbk852', 'no_lang_code', 1, 'https://ror.org/03hsbk852 ASCO Industries (Belgium)'), (12963, 'https://ror.org/03hw63y69', 'it', 1, 'https://ror.org/03hw63y69 Ratio Consulta'), (12964, 'https://ror.org/03hwm9p62', 'en', 1, 'https://ror.org/03hwm9p62 Hendrick Hospice Care'), (12965, 'https://ror.org/03hxjqx45', 'en', 1, 'https://ror.org/03hxjqx45 California Foundation for Agriculture in the Classroom'), (12966, 'https://ror.org/03hy0tb65', 'no_lang_code', 1, 'https://ror.org/03hy0tb65 ASSIST Software (Romania)'), (12967, 'https://ror.org/03hznq239', 'en', 1, 'https://ror.org/03hznq239 Korean Community Services of Metropolitan New York'), (12968, 'https://ror.org/03j091372', 'en', 1, 'https://ror.org/03j091372 Cecil County Health Department'), (12969, 'https://ror.org/03j13ys91', 'en', 1, 'https://ror.org/03j13ys91 International Medical Corps'), (12970, 'https://ror.org/03j2wmd98', 'no_lang_code', 1, 'https://ror.org/03j2wmd98 Organix (United States)'), (12971, 'https://ror.org/03j36fp95', 'en', 1, 'https://ror.org/03j36fp95 Centre for Sexuality and Health Research and Policy'), (12972, 'https://ror.org/03j496302', 'en', 1, 'https://ror.org/03j496302 Limbs For Life Foundation'), (12973, 'https://ror.org/03j4eb467', 'en', 1, 'https://ror.org/03j4eb467 Ministerstvo průmyslu a obchodu České republiky Ministry of Industry and Trade'), (12974, 'https://ror.org/03j4rrt43', 'en', 1, 'https://ror.org/03j4rrt43 International Centre for Genetic Engineering and Biotechnology'), (12975, 'https://ror.org/03j5rfg21', 'en', 1, 'https://ror.org/03j5rfg21 The Common Market'), (12976, 'https://ror.org/03j7xe433', 'no_lang_code', 1, 'https://ror.org/03j7xe433 Hauzer (Netherlands)'), (12977, 'https://ror.org/03j9wjf80', 'no_lang_code', 1, 'https://ror.org/03j9wjf80 Sweco (Norway)'), (12978, 'https://ror.org/03jbmx182', 'no_lang_code', 1, 'https://ror.org/03jbmx182 Vision Robotics Corporation (United States)'), (12979, 'https://ror.org/03jbq7a32', 'en', 1, 'https://ror.org/03jbq7a32 Austrian Federal Railways Österreichische Bundesbahnen'), (12980, 'https://ror.org/03jcesj83', 'no_lang_code', 1, 'https://ror.org/03jcesj83 Tilde (Latvia)'), (12981, 'https://ror.org/03jd3wq64', 'no_lang_code', 1, 'https://ror.org/03jd3wq64 AXIS Dance (United States)'), (12982, 'https://ror.org/03jd48p79', 'en', 1, 'https://ror.org/03jd48p79 Education and Research Network'), (12983, 'https://ror.org/03jgkmd81', 'en', 1, 'https://ror.org/03jgkmd81 i3gb Foundation'), (12984, 'https://ror.org/03jh2fn47', 'no_lang_code', 1, 'https://ror.org/03jh2fn47 LifeSplice Pharma (United States)'), (12985, 'https://ror.org/03jj9fg49', 'no_lang_code', 1, 'https://ror.org/03jj9fg49 Technical Support for European Organisations'), (12986, 'https://ror.org/03jk9qe20', 'no_lang_code', 1, 'https://ror.org/03jk9qe20 Epitel (United States)'), (12987, 'https://ror.org/03jkda953', 'no_lang_code', 1, 'https://ror.org/03jkda953 Kirin (United States)'), (12988, 'https://ror.org/03jmazk02', 'en', 1, 'https://ror.org/03jmazk02 Dup15q Alliance'), (12989, 'https://ror.org/03jp3w522', 'en', 1, 'https://ror.org/03jp3w522 Institute of Electronic Materials Technology'), (12990, 'https://ror.org/03jpt8f29', 'en', 1, 'https://ror.org/03jpt8f29 Prevent Cancer Foundation'), (12991, 'https://ror.org/03jq05c33', 'no_lang_code', 1, 'https://ror.org/03jq05c33 Deep Blue (Italy)'), (12992, 'https://ror.org/03jqp6d56', 'en', 1, 'https://ror.org/03jqp6d56 Fachhochschule Oberösterreich University of Applied Sciences Upper Austria'), (12993, 'https://ror.org/03jr2xy24', 'no_lang_code', 1, 'https://ror.org/03jr2xy24 EEG Info'), (12994, 'https://ror.org/03jrk2631', 'en', 1, 'https://ror.org/03jrk2631 Have A Heart Community Trust'), (12995, 'https://ror.org/03jta4a35', 'en', 1, 'https://ror.org/03jta4a35 Barnes-Jewish College'), (12996, 'https://ror.org/03jtn8n67', 'es', 1, 'https://ror.org/03jtn8n67 Equipo Latinoamericano de Justicia y Género'), (12997, 'https://ror.org/03jtwqj24', 'no_lang_code', 1, 'https://ror.org/03jtwqj24 Teulades i Façanes Multifuncionals (Spain)'), (12998, 'https://ror.org/03jy13477', 'en', 1, 'https://ror.org/03jy13477 Public Policy Institute of California'), (12999, 'https://ror.org/03k0yb648', 'en', 1, 'https://ror.org/03k0yb648 Babble Tree'), (13000, 'https://ror.org/03k462x97', 'no_lang_code', 1, 'https://ror.org/03k462x97'), (13001, 'https://ror.org/03k52yd02', 'no_lang_code', 1, 'https://ror.org/03k52yd02 Imasonic'), (13002, 'https://ror.org/03k5jhv71', 'no_lang_code', 1, 'https://ror.org/03k5jhv71 Integrated Nano-Technologies (United States)'), (13003, 'https://ror.org/03k6c3c61', 'en', 1, 'https://ror.org/03k6c3c61 St. Anthony’s Hospital'), (13004, 'https://ror.org/03k8m9k22', 'en', 1, 'https://ror.org/03k8m9k22 Chase Foundation'), (13005, 'https://ror.org/03k9mxr81', 'no_lang_code', 1, 'https://ror.org/03k9mxr81 Danish Gas Technology Centre (Denmark)'), (13006, 'https://ror.org/03ka3vc13', 'en', 1, 'https://ror.org/03ka3vc13 DeKalb County School District'), (13007, 'https://ror.org/03kaj7n58', 'no_lang_code', 1, 'https://ror.org/03kaj7n58 NovaBay Pharmaceuticals (United States)'), (13008, 'https://ror.org/03kaq5z89', 'en', 1, 'https://ror.org/03kaq5z89 Four Directions Development Corporation'), (13009, 'https://ror.org/03kbqak87', 'no_lang_code', 1, 'https://ror.org/03kbqak87 Ellinogermaniki Agogi'), (13010, 'https://ror.org/03kcr0m63', 'it', 1, 'https://ror.org/03kcr0m63 Fondazione Intergruppo Italiano Linfomi Onlus'), (13011, 'https://ror.org/03kcxbk43', 'it', 1, 'https://ror.org/03kcxbk43 Camera di commercio di Milano'), (13012, 'https://ror.org/03kd4bc94', 'en', 1, 'https://ror.org/03kd4bc94 National Space Grant Alliance'), (13013, 'https://ror.org/03kdc7091', 'en', 1, 'https://ror.org/03kdc7091 Coalition of Immokalee Workers'), (13014, 'https://ror.org/03kdj6d49', 'no_lang_code', 1, 'https://ror.org/03kdj6d49 Piacenza Cashmere (Italy)'), (13015, 'https://ror.org/03kekxj46', 'no_lang_code', 1, 'https://ror.org/03kekxj46 Wallwork (United Kingdom)'), (13016, 'https://ror.org/03kgp8j35', 'en', 1, 'https://ror.org/03kgp8j35 Arizona Spinal Cord Injury Association'), (13017, 'https://ror.org/03khwv936', 'no_lang_code', 1, 'https://ror.org/03khwv936 Chimar Hellas (Greece)'), (13018, 'https://ror.org/03kk57x07', 'it', 1, 'https://ror.org/03kk57x07 Sardegna Agricoltura'), (13019, 'https://ror.org/03kkb8y03', 'pl', 1, 'https://ror.org/03kkb8y03 Forest Research Institute Instytut Badawczy Leśnictwa'), (13020, 'https://ror.org/03kkm1r11', 'en', 1, 'https://ror.org/03kkm1r11 New York Harbor School'), (13021, 'https://ror.org/03kmak902', 'no_lang_code', 1, 'https://ror.org/03kmak902 Böhler Edelstahl (Austria)'), (13022, 'https://ror.org/03kmbzt92', 'en', 1, 'https://ror.org/03kmbzt92 Pain Clinic of India'), (13023, 'https://ror.org/03kn4xv14', 'en', 1, 'https://ror.org/03kn4xv14 Institute for High Energy Physics Институт физики высоких энергий'), (13024, 'https://ror.org/03kng9q02', 'en', 1, 'https://ror.org/03kng9q02 Friends of IHES'), (13025, 'https://ror.org/03kpxfs84', 'en', 1, 'https://ror.org/03kpxfs84 Systema Transport Planning & Engineering Consultants'), (13026, 'https://ror.org/03kr0f697', 'en', 1, 'https://ror.org/03kr0f697 Adventist Health Glendale'), (13027, 'https://ror.org/03ksh5m61', 'no_lang_code', 1, 'https://ror.org/03ksh5m61 Technova Corporation (United States)'), (13028, 'https://ror.org/03kyhge69', 'no_lang_code', 1, 'https://ror.org/03kyhge69 Zeus Consulting (Greece)'), (13029, 'https://ror.org/03kz3ea73', 'en', 1, 'https://ror.org/03kz3ea73 Food Bank of Delaware'), (13030, 'https://ror.org/03m1a8t60', 'en', 1, 'https://ror.org/03m1a8t60 Eurocities'), (13031, 'https://ror.org/03m2pk393', 'en', 1, 'https://ror.org/03m2pk393 American Jewish World Service'), (13032, 'https://ror.org/03m3fa408', 'no_lang_code', 1, 'https://ror.org/03m3fa408 Ericsson (Germany)'), (13033, 'https://ror.org/03m3v4c71', 'no_lang_code', 1, 'https://ror.org/03m3v4c71 Genogen (United States)'), (13034, 'https://ror.org/03m4peq39', 'en', 1, 'https://ror.org/03m4peq39 Coatings Research Institute'), (13035, 'https://ror.org/03m91y692', 'no_lang_code', 1, 'https://ror.org/03m91y692 Coloplast (Denmark)'), (13036, 'https://ror.org/03m9gpr25', 'no_lang_code', 1, 'https://ror.org/03m9gpr25 Schlumberger (Norway)'), (13037, 'https://ror.org/03ma5tr22', 'nl', 1, 'https://ror.org/03ma5tr22 Gemeente Rotterdam'), (13038, 'https://ror.org/03ma7rr84', 'en', 1, 'https://ror.org/03ma7rr84 Egyptian American Medical Center'), (13039, 'https://ror.org/03ma9mt41', 'no_lang_code', 1, 'https://ror.org/03ma9mt41 Reply (Italy)'), (13040, 'https://ror.org/03mav6487', 'no_lang_code', 1, 'https://ror.org/03mav6487 Eurogentec (Belgium)'), (13041, 'https://ror.org/03mb23c90', 'no_lang_code', 1, 'https://ror.org/03mb23c90 ITM Power (United Kingdom)'), (13042, 'https://ror.org/03mb54f81', 'no_lang_code', 1, 'https://ror.org/03mb54f81 Synopsys (Switzerland)'), (13043, 'https://ror.org/03mbj3p87', 'en', 1, 'https://ror.org/03mbj3p87 San Joaquin Valley Public Health Consortium'), (13044, 'https://ror.org/03mcj3013', 'no_lang_code', 1, 'https://ror.org/03mcj3013 Detection Limit (United States)'), (13045, 'https://ror.org/03mcwam86', 'en', 1, 'https://ror.org/03mcwam86 Ministry of Health Υπουργείο Υγείας'), (13046, 'https://ror.org/03mpdf502', 'no_lang_code', 1, 'https://ror.org/03mpdf502 Epsilon Net (Greece)'), (13047, 'https://ror.org/03mqgwc47', 'no_lang_code', 1, 'https://ror.org/03mqgwc47 Inburex Consulting'), (13048, 'https://ror.org/03mqnjw52', 'no_lang_code', 1, 'https://ror.org/03mqnjw52 Kingston Computer Consultancy (United Kingdom)'), (13049, 'https://ror.org/03mrx4w57', 'no_lang_code', 1, 'https://ror.org/03mrx4w57 Signal Genetics (United States)'), (13050, 'https://ror.org/03msng824', 'no_lang_code', 1, 'https://ror.org/03msng824 Infineon Technologies (Austria)'), (13051, 'https://ror.org/03mvyyw83', 'no_lang_code', 1, 'https://ror.org/03mvyyw83 Novacule (United States)'), (13052, 'https://ror.org/03mwypp50', 'no_lang_code', 1, 'https://ror.org/03mwypp50 Veolia (France)'), (13053, 'https://ror.org/03myq7b49', 'en', 1, 'https://ror.org/03myq7b49 Samaritan Hospital'), (13054, 'https://ror.org/03mz6dw96', 'no_lang_code', 1, 'https://ror.org/03mz6dw96 Synthetic Genomics (United States)'), (13055, 'https://ror.org/03mzsqd80', 'en', 1, 'https://ror.org/03mzsqd80 Lakes Region General Hospital'), (13056, 'https://ror.org/03n1ga993', 'en', 1, 'https://ror.org/03n1ga993 Challenger Learning Center of Alaska'), (13057, 'https://ror.org/03n2jn734', 'no_lang_code', 1, 'https://ror.org/03n2jn734 Shadow Robot (United Kingdom)'), (13058, 'https://ror.org/03n3c6k39', 'no_lang_code', 1, 'https://ror.org/03n3c6k39 SATA Application Advanced Technologies (Italy)'), (13059, 'https://ror.org/03n6ktv33', 'en', 1, 'https://ror.org/03n6ktv33 Furniture Industry Research Association'), (13060, 'https://ror.org/03n89wa68', 'en', 1, 'https://ror.org/03n89wa68 Los Angeles County Office of Education'), (13061, 'https://ror.org/03n97yw06', 'no_lang_code', 1, 'https://ror.org/03n97yw06 MedGenesis Therapeutix (Canada)'), (13062, 'https://ror.org/03n9jn918', 'en', 1, 'https://ror.org/03n9jn918 Lincoln Charter School'), (13063, 'https://ror.org/03ncaex51', 'en', 1, 'https://ror.org/03ncaex51 Children''s Institute of Pittsburgh'), (13064, 'https://ror.org/03nd75281', 'sv', 1, 'https://ror.org/03nd75281 Gothenburg Municipality Göteborgs Stads'), (13065, 'https://ror.org/03ndq5j60', 'no_lang_code', 1, 'https://ror.org/03ndq5j60 IRBM Science Park'), (13066, 'https://ror.org/03nh59r74', 'en', 1, 'https://ror.org/03nh59r74 Mather LifeWays'), (13067, 'https://ror.org/03nhd0t24', 'en', 1, 'https://ror.org/03nhd0t24 Urban Tree Connection'), (13068, 'https://ror.org/03nhvga51', 'no_lang_code', 1, 'https://ror.org/03nhvga51 DiagnoSwiss (Switzerland)'), (13069, 'https://ror.org/03nmefy27', 'no_lang_code', 1, 'https://ror.org/03nmefy27 Google (Ireland)'), (13070, 'https://ror.org/03nn4bh87', 'no_lang_code', 1, 'https://ror.org/03nn4bh87 STX Europe (France)'), (13071, 'https://ror.org/03nnvvy24', 'no_lang_code', 1, 'https://ror.org/03nnvvy24 Itaconix (United States)'), (13072, 'https://ror.org/03ns2tc75', 'en', 1, 'https://ror.org/03ns2tc75 Quest Center for Integrative Health'), (13073, 'https://ror.org/03nsgg743', 'en', 1, 'https://ror.org/03nsgg743 Institutes for Behavior Resources'), (13074, 'https://ror.org/03nsz0g92', 'no_lang_code', 1, 'https://ror.org/03nsz0g92 Marzotto Group (Italy)'), (13075, 'https://ror.org/03nt2eg08', 'no_lang_code', 1, 'https://ror.org/03nt2eg08 Tao Systems (United States)'), (13076, 'https://ror.org/03nt5p160', 'ro', 1, 'https://ror.org/03nt5p160 Asociaţia Femeilor de Afaceri'), (13077, 'https://ror.org/03nvkfb40', 'en', 1, 'https://ror.org/03nvkfb40 Elite Wellness'), (13078, 'https://ror.org/03nvvdm73', 'no_lang_code', 1, 'https://ror.org/03nvvdm73 Canon (Netherlands)'), (13079, 'https://ror.org/03nw1ba02', 'no_lang_code', 1, 'https://ror.org/03nw1ba02 CreaGen (United States)'), (13080, 'https://ror.org/03nx3a052', 'en', 1, 'https://ror.org/03nx3a052 Matson & Associates'), (13081, 'https://ror.org/03nx8tr59', 'no_lang_code', 1, 'https://ror.org/03nx8tr59 Fortum (Finland)'), (13082, 'https://ror.org/03nznsh21', 'en', 1, 'https://ror.org/03nznsh21 Gems of Hope'), (13083, 'https://ror.org/03p2f7q52', 'en', 1, 'https://ror.org/03p2f7q52 Institut Rick Hansen Praxis Spinal Cord Institute'), (13084, 'https://ror.org/03p2wmp96', 'no_lang_code', 1, 'https://ror.org/03p2wmp96 Ascom (Switzerland)'), (13085, 'https://ror.org/03p60dy64', 'en', 1, 'https://ror.org/03p60dy64 Bridging Bionics Foundation'), (13086, 'https://ror.org/03p67qv16', 'en', 1, 'https://ror.org/03p67qv16 Plan International Regional Office of the Americas'), (13087, 'https://ror.org/03paye555', 'en', 1, 'https://ror.org/03paye555 Avalon University School of Medicine'), (13088, 'https://ror.org/03ph0tq13', 'no_lang_code', 1, 'https://ror.org/03ph0tq13 Green Heron Tools (United States)'), (13089, 'https://ror.org/03pk1p315', 'no_lang_code', 1, 'https://ror.org/03pk1p315 Re Lab (Italy)'), (13090, 'https://ror.org/03pmyqy44', 'en', 1, 'https://ror.org/03pmyqy44 Alliance Community Services'), (13091, 'https://ror.org/03prr3914', 'en', 1, 'https://ror.org/03prr3914 Community of Mediterranean Universities'), (13092, 'https://ror.org/03ptrx272', 'no_lang_code', 1, 'https://ror.org/03ptrx272 CGI (Netherlands)'), (13093, 'https://ror.org/03pwdft33', 'no_lang_code', 1, 'https://ror.org/03pwdft33 AkibaUhaki Foundation'), (13094, 'https://ror.org/03pyc1d37', 'no_lang_code', 1, 'https://ror.org/03pyc1d37 Poli Model (Italy)'), (13095, 'https://ror.org/03pyecx64', 'en', 1, 'https://ror.org/03pyecx64 Cumberland County Schools'), (13096, 'https://ror.org/03pyrr968', 'en', 1, 'https://ror.org/03pyrr968 Disability Resource Association'), (13097, 'https://ror.org/03pzspq13', 'en', 1, 'https://ror.org/03pzspq13 Ofcom'), (13098, 'https://ror.org/03pzyw636', 'no_lang_code', 1, 'https://ror.org/03pzyw636 Califia Bio (United States)'), (13099, 'https://ror.org/03q18z722', 'no_lang_code', 1, 'https://ror.org/03q18z722 Western Laboratories (United States)'), (13100, 'https://ror.org/03q1j4a15', 'no_lang_code', 1, 'https://ror.org/03q1j4a15 Biolution (Austria)'), (13101, 'https://ror.org/03q1xez23', 'no_lang_code', 1, 'https://ror.org/03q1xez23 AustriaTech (Austria)'), (13102, 'https://ror.org/03q6a6m98', 'en', 1, 'https://ror.org/03q6a6m98 Bay Pines Foundation'), (13103, 'https://ror.org/03q6bcv18', 'no_lang_code', 1, 'https://ror.org/03q6bcv18 Science and Sensors Technologies (United States)'), (13104, 'https://ror.org/03q6p5x66', 'en', 1, 'https://ror.org/03q6p5x66 Capital Region Action Against Breast Cancer'), (13105, 'https://ror.org/03q83t159', 'en', 1, 'https://ror.org/03q83t159 Fonds de la Recherche Scientifique Fund for Scientific Research'), (13106, 'https://ror.org/03q8c8138', 'en', 1, 'https://ror.org/03q8c8138 CSU Ventures'), (13107, 'https://ror.org/03q97we10', 'en', 1, 'https://ror.org/03q97we10 SF LGBT Center'), (13108, 'https://ror.org/03q9kkf91', 'en', 1, 'https://ror.org/03q9kkf91 Goddard Riverside'), (13109, 'https://ror.org/03qa7aa58', 'no_lang_code', 1, 'https://ror.org/03qa7aa58 CIMA Software Corporation (United States)'), (13110, 'https://ror.org/03qazee42', 'no_lang_code', 1, 'https://ror.org/03qazee42 Prokazyme (Iceland)'), (13111, 'https://ror.org/03qc4hj53', 'en', 1, 'https://ror.org/03qc4hj53 FirstHealth of the Carolinas'), (13112, 'https://ror.org/03qe0c470', 'en', 1, 'https://ror.org/03qe0c470 Indiana Minority Health Coalition'), (13113, 'https://ror.org/03qe3t289', 'en', 1, 'https://ror.org/03qe3t289 European Broadcasting Union Union européenne de radio-télévision'), (13114, 'https://ror.org/03qe7zj77', 'en', 1, 'https://ror.org/03qe7zj77 Carondelet Health'), (13115, 'https://ror.org/03qezf786', 'en', 1, 'https://ror.org/03qezf786 European Materials Research Society'), (13116, 'https://ror.org/03qgk3v29', 'no_lang_code', 1, 'https://ror.org/03qgk3v29 EMI Construction Quality Control (Hungary)'), (13117, 'https://ror.org/03qjv2m25', 'no_lang_code', 1, 'https://ror.org/03qjv2m25 Drip Research Technology Services (United States)'), (13118, 'https://ror.org/03qkxep52', 'en', 1, 'https://ror.org/03qkxep52 Coastal Land Trust'), (13119, 'https://ror.org/03qm72t57', 'es', 1, 'https://ror.org/03qm72t57 Fundación Oncohematología Infantil'), (13120, 'https://ror.org/03qmdb045', 'es', 1, 'https://ror.org/03qmdb045 Hospital Donación Francisco Santojanni'), (13121, 'https://ror.org/03qqb4r64', 'no_lang_code', 1, 'https://ror.org/03qqb4r64 Neuron BioPharma (Spain)'), (13122, 'https://ror.org/03qqt2y39', 'no_lang_code', 1, 'https://ror.org/03qqt2y39 Epigem (United Kingdom)'), (13123, 'https://ror.org/03qrrfg84', 'en', 1, 'https://ror.org/03qrrfg84 NeuroLinx Research Institute'), (13124, 'https://ror.org/03qs1y241', 'en', 1, 'https://ror.org/03qs1y241 Achilles International'), (13125, 'https://ror.org/03qsrw587', 'no_lang_code', 1, 'https://ror.org/03qsrw587 Stratton Park Engineering Company (United States)'), (13126, 'https://ror.org/03qv28y75', 'no_lang_code', 1, 'https://ror.org/03qv28y75 Applied Biotechnology Institute'), (13127, 'https://ror.org/03qwpn290', 'no_lang_code', 1, 'https://ror.org/03qwpn290 Johnson & Johnson (United Kingdom)'), (13128, 'https://ror.org/03qx9tc91', 'no_lang_code', 1, 'https://ror.org/03qx9tc91 Capgemini (France)'), (13129, 'https://ror.org/03qyevp82', 'no_lang_code', 1, 'https://ror.org/03qyevp82 Eyenuk (United States)'), (13130, 'https://ror.org/03qzkbe13', 'en', 1, 'https://ror.org/03qzkbe13 New Yorkers for Parks'), (13131, 'https://ror.org/03r048b78', 'no_lang_code', 1, 'https://ror.org/03r048b78 InferMed'), (13132, 'https://ror.org/03r0mgt68', 'no_lang_code', 1, 'https://ror.org/03r0mgt68 PathoVacs (United States)'), (13133, 'https://ror.org/03r177k09', 'en', 1, 'https://ror.org/03r177k09 Hospice Buffalo'), (13134, 'https://ror.org/03r1vfk75', 'en', 1, 'https://ror.org/03r1vfk75 San Diego Youth Services'), (13135, 'https://ror.org/03r3hm022', 'en', 1, 'https://ror.org/03r3hm022 Litani River Authority'), (13136, 'https://ror.org/03r48fa44', 'no_lang_code', 1, 'https://ror.org/03r48fa44 Klett Gruppe (Germany)'), (13137, 'https://ror.org/03r4w0b84', 'es', 1, 'https://ror.org/03r4w0b84 Fundación Arturo López Pérez, Instituto Oncológico FALP'), (13138, 'https://ror.org/03r6neh61', 'en', 1, 'https://ror.org/03r6neh61 Institute e-Austria Timisoara'), (13139, 'https://ror.org/03r8ta958', 'en', 1, 'https://ror.org/03r8ta958 Myotubular Myopathy Resource Group'), (13140, 'https://ror.org/03r9qqv72', 'no_lang_code', 1, 'https://ror.org/03r9qqv72 Vestaron (United States)'), (13141, 'https://ror.org/03ra2r215', 'no_lang_code', 1, 'https://ror.org/03ra2r215 CAPTEC (Ireland)'), (13142, 'https://ror.org/03ra41c26', 'no_lang_code', 1, 'https://ror.org/03ra41c26 Epigenetix (United States)'), (13143, 'https://ror.org/03rd74t51', 'en', 1, 'https://ror.org/03rd74t51 Healthy Functions'), (13144, 'https://ror.org/03rf3nd87', 'en', 1, 'https://ror.org/03rf3nd87 Mountain Home Montana'), (13145, 'https://ror.org/03rgbdq68', 'en', 1, 'https://ror.org/03rgbdq68 Slovak Organization for Research and Development Activities'), (13146, 'https://ror.org/03rhy4111', 'no_lang_code', 1, 'https://ror.org/03rhy4111 IdroGeo'), (13147, 'https://ror.org/03rjwv512', 'no_lang_code', 1, 'https://ror.org/03rjwv512 Sener (Spain)'), (13148, 'https://ror.org/03rksbs88', 'en', 1, 'https://ror.org/03rksbs88 West Hills Community College District'), (13149, 'https://ror.org/03rkv9a98', 'no_lang_code', 1, 'https://ror.org/03rkv9a98 Sudamin Rohstoff (Germany)'), (13150, 'https://ror.org/03rkvna13', 'en', 1, 'https://ror.org/03rkvna13 Jewish Family Service of San Diego'), (13151, 'https://ror.org/03rm4za20', 'en', 1, 'https://ror.org/03rm4za20 Center for Independent Living of Central Pennsylvania'), (13152, 'https://ror.org/03rret387', 'en', 1, 'https://ror.org/03rret387 Project Freedom'), (13153, 'https://ror.org/03rrgzq96', 'en', 1, 'https://ror.org/03rrgzq96 Cherokee Boys Club'), (13154, 'https://ror.org/03rsjpm20', 'en', 1, 'https://ror.org/03rsjpm20 European Aquaculture Society'), (13155, 'https://ror.org/03rsse878', 'en', 1, 'https://ror.org/03rsse878 Media Arts Center San Diego'), (13156, 'https://ror.org/03rtkz951', 'en', 1, 'https://ror.org/03rtkz951 Jewish Women''s Archive'), (13157, 'https://ror.org/03rw5jc77', 'en', 1, 'https://ror.org/03rw5jc77 Benefis Health System Foundation'), (13158, 'https://ror.org/03rw9a524', 'en', 1, 'https://ror.org/03rw9a524 Northern California Indian Development Council'), (13159, 'https://ror.org/03rxx8g04', 'en', 1, 'https://ror.org/03rxx8g04 Community Access'), (13160, 'https://ror.org/03ryzec43', 'no_lang_code', 1, 'https://ror.org/03ryzec43 Bio, Tech and Beyond (United States)'), (13161, 'https://ror.org/03rzhpa51', 'fr', 1, 'https://ror.org/03rzhpa51 French Institue of Navigation Institut Français de Navigation'), (13162, 'https://ror.org/03s0p4v02', 'en', 1, 'https://ror.org/03s0p4v02 Health Choice Network'), (13163, 'https://ror.org/03s3e7380', 'en', 1, 'https://ror.org/03s3e7380 European Forum of Farm Animal Breeders'), (13164, 'https://ror.org/03s3q2469', 'no_lang_code', 1, 'https://ror.org/03s3q2469 Munogenics (United States)'), (13165, 'https://ror.org/03s3xa281', 'no_lang_code', 1, 'https://ror.org/03s3xa281 Forthnet (Greece)'), (13166, 'https://ror.org/03s48wx79', 'en', 1, 'https://ror.org/03s48wx79 Aquitaine Europe Communication'), (13167, 'https://ror.org/03s4s4880', 'no_lang_code', 1, 'https://ror.org/03s4s4880 Athenese (United States)'), (13168, 'https://ror.org/03s5rph93', 'no_lang_code', 1, 'https://ror.org/03s5rph93 Cognosci (United States)'), (13169, 'https://ror.org/03s5wtj28', 'en', 1, 'https://ror.org/03s5wtj28 Cardio-Facio-Cutaneous International'), (13170, 'https://ror.org/03s70j353', 'en', 1, 'https://ror.org/03s70j353 International Sonoran Desert Alliance'), (13171, 'https://ror.org/03s8h4161', 'no_lang_code', 1, 'https://ror.org/03s8h4161 Trasporti e Territorio'), (13172, 'https://ror.org/03s943089', 'en', 1, 'https://ror.org/03s943089 Asian Pacific AIDS Intervention Team'), (13173, 'https://ror.org/03sbdx317', 'en', 1, 'https://ror.org/03sbdx317 Divers 4 Heroes'), (13174, 'https://ror.org/03scggx76', 'en', 1, 'https://ror.org/03scggx76 Fractured Atlas'), (13175, 'https://ror.org/03sdd1k49', 'no_lang_code', 1, 'https://ror.org/03sdd1k49 Goodyear (Luxembourg)'), (13176, 'https://ror.org/03sddt131', 'en', 1, 'https://ror.org/03sddt131 Marion Local Schools'), (13177, 'https://ror.org/03sdjgc51', 'en', 1, 'https://ror.org/03sdjgc51 National Museum of Mathematics'), (13178, 'https://ror.org/03sf9zf71', 'no_lang_code', 1, 'https://ror.org/03sf9zf71 Freedom Photonics (United States)'), (13179, 'https://ror.org/03sg2cg73', 'en', 1, 'https://ror.org/03sg2cg73 Rowan-Salisbury School System'), (13180, 'https://ror.org/03sjtg710', 'no_lang_code', 1, 'https://ror.org/03sjtg710 Prüf- und Forschungsinstitut Pirmasens (Germany)'), (13181, 'https://ror.org/03sn2zf74', 'en', 1, 'https://ror.org/03sn2zf74 Greater Baden Medical Services'), (13182, 'https://ror.org/03snn3m57', 'en', 1, 'https://ror.org/03snn3m57 Rowan College at Gloucester County'), (13183, 'https://ror.org/03spep839', 'no_lang_code', 1, 'https://ror.org/03spep839 NewLink Genetics (United States)'), (13184, 'https://ror.org/03spsm219', 'no_lang_code', 1, 'https://ror.org/03spsm219 Ingegneria dei Sistemi (Italy)'), (13185, 'https://ror.org/03sq8r703', 'en', 1, 'https://ror.org/03sq8r703 Menoufia University Hospitals مستشفيات جامعة المنوفية'), (13186, 'https://ror.org/03sqxy896', 'no_lang_code', 1, 'https://ror.org/03sqxy896 OpenLink Software (United Kingdom)'), (13187, 'https://ror.org/03sx0k281', 'en', 1, 'https://ror.org/03sx0k281 Henry Street Settlement'), (13188, 'https://ror.org/03t0ndf94', 'en', 1, 'https://ror.org/03t0ndf94 Paralyzed Veterans of America, Cal-Diego Chapter'), (13189, 'https://ror.org/03t3bph36', 'no_lang_code', 1, 'https://ror.org/03t3bph36 Nanometics (United States)'), (13190, 'https://ror.org/03t5n9b81', 'en', 1, 'https://ror.org/03t5n9b81 Pancreatic Cancer Action Network'), (13191, 'https://ror.org/03t5x5269', 'no_lang_code', 1, 'https://ror.org/03t5x5269 Cogne (Italy)'), (13192, 'https://ror.org/03t7fbx42', 'no_lang_code', 1, 'https://ror.org/03t7fbx42 Wroclaw Research Centre EIT+ (Poland)'), (13193, 'https://ror.org/03t8mqd25', 'en', 1, 'https://ror.org/03t8mqd25 Institute of Molecular Biology'), (13194, 'https://ror.org/03t8v2f28', 'en', 1, 'https://ror.org/03t8v2f28 Rush Copley Foundation'), (13195, 'https://ror.org/03ta8pf33', 'it', 1, 'https://ror.org/03ta8pf33 Institute of Translational Pharmacology Istituto di Farmacologia Traslazionale'), (13196, 'https://ror.org/03te9j613', 'en', 1, 'https://ror.org/03te9j613 Environment Park'), (13197, 'https://ror.org/03tg4fk16', 'en', 1, 'https://ror.org/03tg4fk16 Fresno Metro Ministry'), (13198, 'https://ror.org/03th4vw55', 'en', 1, 'https://ror.org/03th4vw55 Operation Samahan'), (13199, 'https://ror.org/03tvffn83', 'fr', 1, 'https://ror.org/03tvffn83 Forem'), (13200, 'https://ror.org/03tvk8g25', 'no_lang_code', 1, 'https://ror.org/03tvk8g25 CertiCon (Czechia)'), (13201, 'https://ror.org/03tvp8c36', 'en', 1, 'https://ror.org/03tvp8c36 PA Breast Cancer Coalition'), (13202, 'https://ror.org/03txpx007', 'no_lang_code', 1, 'https://ror.org/03txpx007 Agendia (Netherlands)'), (13203, 'https://ror.org/03tyjzx42', 'en', 1, 'https://ror.org/03tyjzx42 Negev Foundation'), (13204, 'https://ror.org/03tyqfz83', 'no_lang_code', 1, 'https://ror.org/03tyqfz83 GDA (United States)'), (13205, 'https://ror.org/03tzetp81', 'no_lang_code', 1, 'https://ror.org/03tzetp81 Mandelli (Italy)'), (13206, 'https://ror.org/03v73t130', 'no_lang_code', 1, 'https://ror.org/03v73t130 Space Applications Services (Belgium)'), (13207, 'https://ror.org/03v7h1165', 'en', 1, 'https://ror.org/03v7h1165 Institute for Microstructural Sciences'), (13208, 'https://ror.org/03v9xsr27', 'no_lang_code', 1, 'https://ror.org/03v9xsr27 Vertilas (Germany)'), (13209, 'https://ror.org/03vabvg16', 'no_lang_code', 1, 'https://ror.org/03vabvg16 Svalbard Global Seed Vault'), (13210, 'https://ror.org/03vaffn20', 'no_lang_code', 1, 'https://ror.org/03vaffn20 TTI (Spain)'), (13211, 'https://ror.org/03vb4t572', 'en', 1, 'https://ror.org/03vb4t572 Cancer Services'), (13212, 'https://ror.org/03vd1gx02', 'en', 1, 'https://ror.org/03vd1gx02 Rhode Island Department of Administration'), (13213, 'https://ror.org/03veb6e23', 'no_lang_code', 1, 'https://ror.org/03veb6e23 Prism Biolab Corporation (Japan)'), (13214, 'https://ror.org/03vedwr79', 'no_lang_code', 1, 'https://ror.org/03vedwr79 Fidelity Biosciences (United States)'), (13215, 'https://ror.org/03vehc845', 'no_lang_code', 1, 'https://ror.org/03vehc845 Irepa Laser (France)'), (13216, 'https://ror.org/03veq6934', 'no_lang_code', 1, 'https://ror.org/03veq6934 Pepscan (Netherlands)'), (13217, 'https://ror.org/03vfgta75', 'en', 1, 'https://ror.org/03vfgta75 Illinois CancerCare'), (13218, 'https://ror.org/03vfjzd38', 'en', 1, 'https://ror.org/03vfjzd38 Center for Biomedical Research of La Rioja Centro de Investigación Biomédica de La Rioja'), (13219, 'https://ror.org/03vg56f33', 'it', 1, 'https://ror.org/03vg56f33 Unioncamere Veneto'), (13220, 'https://ror.org/03vggmh05', 'en', 1, 'https://ror.org/03vggmh05 Polistes Foundation'), (13221, 'https://ror.org/03vk04b45', 'en', 1, 'https://ror.org/03vk04b45 Cobb and Douglas County Community Services Board'), (13222, 'https://ror.org/03vkcbk24', 'en', 1, 'https://ror.org/03vkcbk24 Changing Life Education Initiative'), (13223, 'https://ror.org/03vm7rm25', 'en', 1, 'https://ror.org/03vm7rm25 Project Concern International'), (13224, 'https://ror.org/03vmw1d16', 'en', 1, 'https://ror.org/03vmw1d16 Mercy Medical Center Sioux City'), (13225, 'https://ror.org/03vp4wk44', 'en', 1, 'https://ror.org/03vp4wk44 Omak School District'), (13226, 'https://ror.org/03vpcz360', 'no_lang_code', 1, 'https://ror.org/03vpcz360 Vichem Chemie (Hungary)'), (13227, 'https://ror.org/03vw44013', 'no_lang_code', 1, 'https://ror.org/03vw44013 Belgoprocess (Belgium)'), (13228, 'https://ror.org/03vxeyp56', 'no_lang_code', 1, 'https://ror.org/03vxeyp56 Castle Group (United Kingdom)'), (13229, 'https://ror.org/03vy8yd42', 'en', 1, 'https://ror.org/03vy8yd42 St. Charles Hospital'), (13230, 'https://ror.org/03vyk5m57', 'en', 1, 'https://ror.org/03vyk5m57 Connecticut Center for Advanced Technology'), (13231, 'https://ror.org/03vz6gs79', 'no_lang_code', 1, 'https://ror.org/03vz6gs79 AMS (Austria)'), (13232, 'https://ror.org/03vzz0n02', 'en', 1, 'https://ror.org/03vzz0n02 Disabled Sports Eastern Sierra'), (13233, 'https://ror.org/03w0zcm71', 'en', 1, 'https://ror.org/03w0zcm71 Project Food, Land and People'), (13234, 'https://ror.org/03w1cd742', 'it', 1, 'https://ror.org/03w1cd742 Leather and Tanning Materials Experimental Station Stazione Sperimentale per l''Industria delle Pelli e delle Materie Concianti'), (13235, 'https://ror.org/03w387231', 'nl', 1, 'https://ror.org/03w387231 Gemeente Den Haag'), (13236, 'https://ror.org/03w4h7282', 'en', 1, 'https://ror.org/03w4h7282 Freedom Service Dogs'), (13237, 'https://ror.org/03w65sq52', 'no_lang_code', 1, 'https://ror.org/03w65sq52 Gas Natural Fenosa (Spain)'), (13238, 'https://ror.org/03w6qq889', 'en', 1, 'https://ror.org/03w6qq889 College of the Ozarks'), (13239, 'https://ror.org/03w7qe352', 'en', 1, 'https://ror.org/03w7qe352 Cancer Care Connection'), (13240, 'https://ror.org/03w8v9a14', 'fr', 1, 'https://ror.org/03w8v9a14 Observatoire des Sciences et des Techniques'), (13241, 'https://ror.org/03w9j7q30', 'no_lang_code', 1, 'https://ror.org/03w9j7q30 Databank (Italy)'), (13242, 'https://ror.org/03w9zd521', 'en', 1, 'https://ror.org/03w9zd521 St. David''s Round Rock Medical Center'), (13243, 'https://ror.org/03waww979', 'en', 1, 'https://ror.org/03waww979 Hays Medical Center'), (13244, 'https://ror.org/03wbacc17', 'en', 1, 'https://ror.org/03wbacc17 Pressing On'), (13245, 'https://ror.org/03wbdxv85', 'en', 1, 'https://ror.org/03wbdxv85 Greyston'), (13246, 'https://ror.org/03wcw5870', 'en', 1, 'https://ror.org/03wcw5870 India Health Action Trust'), (13247, 'https://ror.org/03wepve87', 'de', 1, 'https://ror.org/03wepve87 Berlin-Brandenburg Broadcasting Rundfunk Berlin-Brandenburg'), (13248, 'https://ror.org/03wg52r81', 'en', 1, 'https://ror.org/03wg52r81 Health and Human Services Agency'), (13249, 'https://ror.org/03wg7sa16', 'en', 1, 'https://ror.org/03wg7sa16 Choate Rosemary Hall'), (13250, 'https://ror.org/03whc3s66', 'no_lang_code', 1, 'https://ror.org/03whc3s66 Delta (Denmark)'), (13251, 'https://ror.org/03wkygj08', 'no_lang_code', 1, 'https://ror.org/03wkygj08 Z4 Energy Systems (United States)'), (13252, 'https://ror.org/03wmxmy95', 'en', 1, 'https://ror.org/03wmxmy95 Geographical Information System International Group'), (13253, 'https://ror.org/03wps7b22', 'en', 1, 'https://ror.org/03wps7b22 Movember'), (13254, 'https://ror.org/03wqecf08', 'en', 1, 'https://ror.org/03wqecf08 Holistic Management International'), (13255, 'https://ror.org/03wqknk68', 'en', 1, 'https://ror.org/03wqknk68 Lou Ruvo Brain Institute'), (13256, 'https://ror.org/03wr7bx86', 'no_lang_code', 1, 'https://ror.org/03wr7bx86 Marine Information Service (Netherlands)'), (13257, 'https://ror.org/03wrq2n31', 'en', 1, 'https://ror.org/03wrq2n31 Hospice By The Bay'), (13258, 'https://ror.org/03wtkw294', 'en', 1, 'https://ror.org/03wtkw294 National Hispanic Council on Aging'), (13259, 'https://ror.org/03wvdfp77', 'no_lang_code', 1, 'https://ror.org/03wvdfp77 Posiva (Finland)'), (13260, 'https://ror.org/03ww1bx13', 'en', 1, 'https://ror.org/03ww1bx13 Multiple Myeloma Research Foundation'), (13261, 'https://ror.org/03wyccz80', 'en', 1, 'https://ror.org/03wyccz80 Beth C. Wright Cancer Resource Center'), (13262, 'https://ror.org/03wye8c03', 'en', 1, 'https://ror.org/03wye8c03 Space Research and Technology Institute Институт за космически изследвания към'), (13263, 'https://ror.org/03x2xt559', 'no_lang_code', 1, 'https://ror.org/03x2xt559 Pfizer (Spain)'), (13264, 'https://ror.org/03x3tkg74', 'pt', 1, 'https://ror.org/03x3tkg74 Instituto de Ciências da Terra e do Espaço'), (13265, 'https://ror.org/03x45a950', 'it', 1, 'https://ror.org/03x45a950 Laboratorio di Scienze della Cittadinanza'), (13266, 'https://ror.org/03x507n02', 'en', 1, 'https://ror.org/03x507n02 Georgia Department of Education'), (13267, 'https://ror.org/03x78r446', 'en', 1, 'https://ror.org/03x78r446 Institute of Mechanics Институт по механика'), (13268, 'https://ror.org/03x84qk23', 'en', 1, 'https://ror.org/03x84qk23 Nederlands Normalisatie Instituut Netherlands Standardization Institute'), (13269, 'https://ror.org/03x8kjj16', 'no_lang_code', 1, 'https://ror.org/03x8kjj16 Signosis'), (13270, 'https://ror.org/03x8wy758', 'no_lang_code', 1, 'https://ror.org/03x8wy758 Tataa Biocenter (Sweden)'), (13271, 'https://ror.org/03xb0b587', 'no_lang_code', 1, 'https://ror.org/03xb0b587 CDG Therapeutics (United States)'), (13272, 'https://ror.org/03xbp3895', 'en', 1, 'https://ror.org/03xbp3895 AIDS Research Alliance'), (13273, 'https://ror.org/03xe1hd69', 'en', 1, 'https://ror.org/03xe1hd69 New Horizons Independent Living Center'), (13274, 'https://ror.org/03xe5bc97', 'en', 1, 'https://ror.org/03xe5bc97 Institute for Music and Neurologic Function'), (13275, 'https://ror.org/03xec1444', 'no_lang_code', 1, 'https://ror.org/03xec1444 Science Systems and Applications (United States)'), (13276, 'https://ror.org/03xg63v87', 'no_lang_code', 1, 'https://ror.org/03xg63v87 Taber International (United States)'), (13277, 'https://ror.org/03xh1py88', 'en', 1, 'https://ror.org/03xh1py88 ArtThread Foundation'), (13278, 'https://ror.org/03xkhb205', 'no_lang_code', 1, 'https://ror.org/03xkhb205 Soltech (Belgium)'), (13279, 'https://ror.org/03xpcbj56', 'en', 1, 'https://ror.org/03xpcbj56 Medical Care Development International'), (13280, 'https://ror.org/03xptr862', 'de', 1, 'https://ror.org/03xptr862 Deutsches Jugendinstitut German Youth Institute'), (13281, 'https://ror.org/03xrs4d06', 'no_lang_code', 1, 'https://ror.org/03xrs4d06 Cerulean Pharma (United States)'), (13282, 'https://ror.org/03xts5k97', 'en', 1, 'https://ror.org/03xts5k97 Tompkins-Seneca-Tioga Board of Cooperative Educational Services'), (13283, 'https://ror.org/03xvkpf85', 'en', 1, 'https://ror.org/03xvkpf85 Bowery Mission'), (13284, 'https://ror.org/03xwr3e89', 'en', 1, 'https://ror.org/03xwr3e89 Maryland Agricultural Education Foundation'), (13285, 'https://ror.org/03xxdgr65', 'no_lang_code', 1, 'https://ror.org/03xxdgr65 CSP Innovazione nelle ICT (Italy)'), (13286, 'https://ror.org/03xxx9y67', 'no_lang_code', 1, 'https://ror.org/03xxx9y67 Marel (Iceland)'), (13287, 'https://ror.org/03xy06m93', 'en', 1, 'https://ror.org/03xy06m93 Memorial Health System'), (13288, 'https://ror.org/03xzsxe18', 'en', 1, 'https://ror.org/03xzsxe18 California Adaptive Rowing Program'), (13289, 'https://ror.org/03y0f7839', 'en', 1, 'https://ror.org/03y0f7839 European Federation of Food Science and Technology'), (13290, 'https://ror.org/03y17pk13', 'en', 1, 'https://ror.org/03y17pk13 Continua Health Alliance'), (13291, 'https://ror.org/03y260e28', 'en', 1, 'https://ror.org/03y260e28 Neurologic Disease Foundation'), (13292, 'https://ror.org/03y3ebd61', 'en', 1, 'https://ror.org/03y3ebd61 American Society for Reproductive Immunology'), (13293, 'https://ror.org/03y4g9f74', 'no_lang_code', 1, 'https://ror.org/03y4g9f74 Inotex (Czechia)'), (13294, 'https://ror.org/03y4r3n15', 'no_lang_code', 1, 'https://ror.org/03y4r3n15 Scientific Fishery Systems (United States)'), (13295, 'https://ror.org/03y50wn05', 'en', 1, 'https://ror.org/03y50wn05 Mountain Empire Older Citizens'), (13296, 'https://ror.org/03y686t84', 'no_lang_code', 1, 'https://ror.org/03y686t84 Grenada National Organisation of Women'), (13297, 'https://ror.org/03y87q061', 'en', 1, 'https://ror.org/03y87q061 Public Broadcasting Service'), (13298, 'https://ror.org/03y8qgg33', 'en', 1, 'https://ror.org/03y8qgg33 Radiant Health Centers'), (13299, 'https://ror.org/03y8t7556', 'no_lang_code', 1, 'https://ror.org/03y8t7556 Terrenew (United States)'), (13300, 'https://ror.org/03ycv1b86', 'no_lang_code', 1, 'https://ror.org/03ycv1b86 Babcock & Wilcox (United States)'), (13301, 'https://ror.org/03ydqnc29', 'en', 1, 'https://ror.org/03ydqnc29 Miriam''s Kitchen'), (13302, 'https://ror.org/03yeddd43', 'en', 1, 'https://ror.org/03yeddd43 Central Arkansas Radiation Therapy Institute'), (13303, 'https://ror.org/03yee2588', 'no_lang_code', 1, 'https://ror.org/03yee2588 BELECTRIC (Germany)'), (13304, 'https://ror.org/03yew7168', 'en', 1, 'https://ror.org/03yew7168 Inter-Psy'), (13305, 'https://ror.org/03yfpyd14', 'no_lang_code', 1, 'https://ror.org/03yfpyd14 Nutrition Sciences (Belgium)'), (13306, 'https://ror.org/03yhymv35', 'no_lang_code', 1, 'https://ror.org/03yhymv35 Timber Research and Development Association (United Kingdom)'), (13307, 'https://ror.org/03ykmm292', 'en', 1, 'https://ror.org/03ykmm292 Advanced Barber College & Hair Design'), (13308, 'https://ror.org/03ym3qb63', 'en', 1, 'https://ror.org/03ym3qb63 Centre for Liberal Strategies'), (13309, 'https://ror.org/03yqwby83', 'en', 1, 'https://ror.org/03yqwby83 Norfolk County Agricultural High School'), (13310, 'https://ror.org/03ys8xj90', 'no_lang_code', 1, 'https://ror.org/03ys8xj90 Intelligent Software Components (Spain)'), (13311, 'https://ror.org/03ysemc97', 'de', 1, 'https://ror.org/03ysemc97 Senate Department for Urban Development and the Environment Senatsverwaltung für Stadtentwicklung und Wohnen'), (13312, 'https://ror.org/03yskjj43', 'en', 1, 'https://ror.org/03yskjj43 Texas Neurology'), (13313, 'https://ror.org/03yv2v252', 'no_lang_code', 1, 'https://ror.org/03yv2v252 EpitoGenesis (United States)'), (13314, 'https://ror.org/03yv3yk36', 'en', 1, 'https://ror.org/03yv3yk36 Maryland Department of Commerce'), (13315, 'https://ror.org/03yx1gg75', 'en', 1, 'https://ror.org/03yx1gg75 Texas Nurses Association'), (13316, 'https://ror.org/03yzj7n24', 'es', 1, 'https://ror.org/03yzj7n24 Asociación de Investigación de la Industria Agroalimentaria'), (13317, 'https://ror.org/03z26a547', 'en', 1, 'https://ror.org/03z26a547 Whitman-Walker Health'), (13318, 'https://ror.org/03z2djz07', 'no_lang_code', 1, 'https://ror.org/03z2djz07 Sciessent (United States)'), (13319, 'https://ror.org/03z2xqc96', 'no_lang_code', 1, 'https://ror.org/03z2xqc96 Cognition Therapeutics (United States)'), (13320, 'https://ror.org/03z55y406', 'en', 1, 'https://ror.org/03z55y406 Eagle Mount'), (13321, 'https://ror.org/03z5t3857', 'en', 1, 'https://ror.org/03z5t3857 VA Fanarjian National Center of Oncology Վ.Ա. Ֆանարջյանի անվան ուռուցքաբանության ազգային կենտրոն'), (13322, 'https://ror.org/03z749c37', 'no_lang_code', 1, 'https://ror.org/03z749c37 Agrifutur (Italy)'), (13323, 'https://ror.org/03z7g2p93', 'en', 1, 'https://ror.org/03z7g2p93 Cody Foundation'), (13324, 'https://ror.org/03z7jn533', 'fr', 1, 'https://ror.org/03z7jn533 Plastipolis'), (13325, 'https://ror.org/03z9qf407', 'en', 1, 'https://ror.org/03z9qf407 Bronson Health Foundation'), (13326, 'https://ror.org/03zaba654', 'no_lang_code', 1, 'https://ror.org/03zaba654 Jernkontoret (Sweden)'), (13327, 'https://ror.org/03zaca395', 'no_lang_code', 1, 'https://ror.org/03zaca395 Gorge Group (France)'), (13328, 'https://ror.org/03zb0d553', 'no_lang_code', 1, 'https://ror.org/03zb0d553 Pemaquid Mussel Farms (United States)'), (13329, 'https://ror.org/03zecp235', 'no_lang_code', 1, 'https://ror.org/03zecp235 Plexcera Therapeutics (United States)'), (13330, 'https://ror.org/03zfet066', 'en', 1, 'https://ror.org/03zfet066 Association for Womens Rights in Development'), (13331, 'https://ror.org/03zff7r07', 'en', 1, 'https://ror.org/03zff7r07 Gila River Healthcare'), (13332, 'https://ror.org/03zgv2124', 'en', 1, 'https://ror.org/03zgv2124 Iowa Valley Community College District'), (13333, 'https://ror.org/03zhpcf80', 'fr', 1, 'https://ror.org/03zhpcf80 Institut National de Recherche Halieutique'), (13334, 'https://ror.org/03zk0kr46', 'en', 1, 'https://ror.org/03zk0kr46 Filmmakers Collaborative'), (13335, 'https://ror.org/03zk2pm28', 'no_lang_code', 1, 'https://ror.org/03zk2pm28 Pulsar Informatics (United States)'), (13336, 'https://ror.org/03zksk821', 'en', 1, 'https://ror.org/03zksk821 North Coast Opportunities'), (13337, 'https://ror.org/03zmx1209', 'en', 1, 'https://ror.org/03zmx1209 Freeman Sheldon Research Group'), (13338, 'https://ror.org/03znvgc81', 'en', 1, 'https://ror.org/03znvgc81 Areufit Health Services'), (13339, 'https://ror.org/03zpp5097', 'en', 1, 'https://ror.org/03zpp5097 Northwest Regional Planning Commission'), (13340, 'https://ror.org/03zq1ab33', 'sk', 1, 'https://ror.org/03zq1ab33 Energy Centre Bratislava'), (13341, 'https://ror.org/03zt7kt60', 'no_lang_code', 1, 'https://ror.org/03zt7kt60 SePRO (United States)'), (13342, 'https://ror.org/03ztwkx44', 'no_lang_code', 1, 'https://ror.org/03ztwkx44 Revoind Industriale (Italy)'), (13343, 'https://ror.org/03zvc0a12', 'no_lang_code', 1, 'https://ror.org/03zvc0a12 iKnowHow (Greece)'), (13344, 'https://ror.org/03zxbhz42', 'no_lang_code', 1, 'https://ror.org/03zxbhz42 Velti (Greece)'), (13345, 'https://ror.org/03zydm450', 'en', 1, 'https://ror.org/03zydm450 Great Ormond Street Hospital for Children NHS Foundation Trust'), (13346, 'https://ror.org/03zzh2n66', 'no_lang_code', 1, 'https://ror.org/03zzh2n66 M Welborn Group (United States)'), (13347, 'https://ror.org/03zzy2b27', 'no_lang_code', 1, 'https://ror.org/03zzy2b27 Plex Pharmaceuticals (United States)'), (13348, 'https://ror.org/0400k7f13', 'en', 1, 'https://ror.org/0400k7f13 Hospice of Orleans'), (13349, 'https://ror.org/04026qg09', 'en', 1, 'https://ror.org/04026qg09 Genesis HealthCare System'), (13350, 'https://ror.org/04039yq48', 'en', 1, 'https://ror.org/04039yq48 Dharmais Cancer Hospital RS Kanker Dharmais'), (13351, 'https://ror.org/040458q49', 'en', 1, 'https://ror.org/040458q49 Geological Institute Strashimir Dimitrov Геологически институт "Страшимир Димитров"'), (13352, 'https://ror.org/0406ep819', 'en', 1, 'https://ror.org/0406ep819 Neural Repair Institute'), (13353, 'https://ror.org/04079cq52', 'en', 1, 'https://ror.org/04079cq52 Community Medical Centers'), (13354, 'https://ror.org/040823y46', 'no_lang_code', 1, 'https://ror.org/040823y46 Guger Technologies (Austria)'), (13355, 'https://ror.org/0408zy315', 'en', 1, 'https://ror.org/0408zy315 Fieldstone Farm Therapeutic Riding Center'), (13356, 'https://ror.org/04094ne36', 'no_lang_code', 1, 'https://ror.org/04094ne36 Deltamarin (Finland)'), (13357, 'https://ror.org/0409nay36', 'no_lang_code', 1, 'https://ror.org/0409nay36 Aptiv (Italy)'), (13358, 'https://ror.org/040an9w95', 'en', 1, 'https://ror.org/040an9w95 American Jewish Joint Distribution Committee'), (13359, 'https://ror.org/040e8a368', 'no_lang_code', 1, 'https://ror.org/040e8a368 Harmonex (United States)'), (13360, 'https://ror.org/040mcv449', 'no_lang_code', 1, 'https://ror.org/040mcv449 Lohocla Research Corporation (United States)'), (13361, 'https://ror.org/040n23d23', 'no_lang_code', 1, 'https://ror.org/040n23d23 InnoPhage (Portugal)'), (13362, 'https://ror.org/040necf22', 'en', 1, 'https://ror.org/040necf22 Alpha Omega Veterans Services'), (13363, 'https://ror.org/040paq780', 'es', 1, 'https://ror.org/040paq780 Ecoserveis'), (13364, 'https://ror.org/040wa6e75', 'no_lang_code', 1, 'https://ror.org/040wa6e75 NKT Therapeutics (United States)'), (13365, 'https://ror.org/040xhth73', 'en', 1, 'https://ror.org/040xhth73 Institute of Cell Biology and Neurobiology Istituto di Biologia Cellulare e Neurobiologia'), (13366, 'https://ror.org/040xtvv41', 'no_lang_code', 1, 'https://ror.org/040xtvv41 Herbalife (Australia)'), (13367, 'https://ror.org/040z4nv21', 'de', 1, 'https://ror.org/040z4nv21 Agaplesion Bethanien Krankenhaus'); INSERT INTO `rors` VALUES (13368, 'https://ror.org/0414e3w08', 'en', 1, 'https://ror.org/0414e3w08 National Latina Institute for Reproductive Health'), (13369, 'https://ror.org/0417hfx81', 'en', 1, 'https://ror.org/0417hfx81 Foundation for Integrated Rural Development'), (13370, 'https://ror.org/0419dpe16', 'no_lang_code', 1, 'https://ror.org/0419dpe16 Ficosa International (Spain)'), (13371, 'https://ror.org/041btzw22', 'en', 1, 'https://ror.org/041btzw22 God''s Love We Deliver'), (13372, 'https://ror.org/041ceep81', 'pt', 1, 'https://ror.org/041ceep81 Sindicato dos Trabalhadores de Escritório'), (13373, 'https://ror.org/041cwwp58', 'no_lang_code', 1, 'https://ror.org/041cwwp58 Technical Design (United States)'), (13374, 'https://ror.org/041edce82', 'en', 1, 'https://ror.org/041edce82 Eastern Nebraska Wheelchair Athletic Association'), (13375, 'https://ror.org/041fc3q68', 'no_lang_code', 1, 'https://ror.org/041fc3q68 EnteraTech (United States)'), (13376, 'https://ror.org/041g4k048', 'en', 1, 'https://ror.org/041g4k048 Iringa Mercy Organization'), (13377, 'https://ror.org/041npkc82', 'no_lang_code', 1, 'https://ror.org/041npkc82 AparnaBio (United States)'), (13378, 'https://ror.org/041p50967', 'pt', 1, 'https://ror.org/041p50967 Instituto Noos'), (13379, 'https://ror.org/041pj0122', 'en', 1, 'https://ror.org/041pj0122 Adhikaar'), (13380, 'https://ror.org/041qezx89', 'en', 1, 'https://ror.org/041qezx89 Bay Area Pediatric Pulmonary Medical Corporation'), (13381, 'https://ror.org/041s3mp49', 'no_lang_code', 1, 'https://ror.org/041s3mp49 Solvionic (France)'), (13382, 'https://ror.org/041shdj17', 'no_lang_code', 1, 'https://ror.org/041shdj17 Energie Baden-Württemberg (Germany)'), (13383, 'https://ror.org/0423qtd98', 'no_lang_code', 1, 'https://ror.org/0423qtd98 StormCenter Communications (United States)'), (13384, 'https://ror.org/04257nk59', 'en', 1, 'https://ror.org/04257nk59 Beatitudes Campus'), (13385, 'https://ror.org/0425feb41', 'en', 1, 'https://ror.org/0425feb41 Project Walk Orlando'), (13386, 'https://ror.org/0427e1040', 'en', 1, 'https://ror.org/0427e1040 Adventist HealthCare'), (13387, 'https://ror.org/0427pc986', 'no_lang_code', 1, 'https://ror.org/0427pc986 CVD Technologies (United Kingdom)'), (13388, 'https://ror.org/042abrf84', 'en', 1, 'https://ror.org/042abrf84 Columbus City Schools'), (13389, 'https://ror.org/042any649', 'no_lang_code', 1, 'https://ror.org/042any649 ArcelorMittal (Belgium)'), (13390, 'https://ror.org/042e1dy21', 'en', 1, 'https://ror.org/042e1dy21 Hospice of the Valley'), (13391, 'https://ror.org/042ekhp43', 'no_lang_code', 1, 'https://ror.org/042ekhp43 Bureau Veritas (Italy)'), (13392, 'https://ror.org/042f0eq65', 'fr', 1, 'https://ror.org/042f0eq65 Conseil Economique et social de la Region de Bruxelles Capitale, Conseil économique et social de la Région de Bruxelles-Capitale Economische en Sociale Raad voor het Brussels Hoofdstedelijk Gewest'), (13393, 'https://ror.org/042kdph44', 'no_lang_code', 1, 'https://ror.org/042kdph44 DairySight (United States)'), (13394, 'https://ror.org/042mcbx19', 'en', 1, 'https://ror.org/042mcbx19 Council on Food, Agricultural and Resource Economics'), (13395, 'https://ror.org/042n14286', 'it', 1, 'https://ror.org/042n14286 InnovaPuglia'), (13396, 'https://ror.org/042p1vp06', 'no_lang_code', 1, 'https://ror.org/042p1vp06 BioBlast Pharma (Israel)'), (13397, 'https://ror.org/042pd7533', 'en', 1, 'https://ror.org/042pd7533 British Association of Public Safety Communications Officials'), (13398, 'https://ror.org/042wjgv72', 'en', 1, 'https://ror.org/042wjgv72 Girl Scouts of the USA'), (13399, 'https://ror.org/042y8fp68', 'no_lang_code', 1, 'https://ror.org/042y8fp68 Tekever (Portugal)'), (13400, 'https://ror.org/042yr5054', 'no_lang_code', 1, 'https://ror.org/042yr5054 British Textile Technology Group'), (13401, 'https://ror.org/043036461', 'en', 1, 'https://ror.org/043036461 CancerLINC'), (13402, 'https://ror.org/0430rna51', 'en', 1, 'https://ror.org/0430rna51 Christopher and Dana Reeve Foundation'), (13403, 'https://ror.org/0431b2v07', 'no_lang_code', 1, 'https://ror.org/0431b2v07 Air Liquide (France)'), (13404, 'https://ror.org/0432q4w56', 'en', 1, 'https://ror.org/0432q4w56 BioInfoBank Institute'), (13405, 'https://ror.org/0432qbr75', 'no_lang_code', 1, 'https://ror.org/0432qbr75 Alstom (Belgium)'), (13406, 'https://ror.org/0433f0x41', 'no_lang_code', 1, 'https://ror.org/0433f0x41 Bristol-Myers Squibb (Italy)'), (13407, 'https://ror.org/0434xpc34', 'no_lang_code', 1, 'https://ror.org/0434xpc34 Panorama Research (United States)'), (13408, 'https://ror.org/04357cf44', 'no_lang_code', 1, 'https://ror.org/04357cf44 ServiceXS (Netherlands)'), (13409, 'https://ror.org/0435r0x49', 'no_lang_code', 1, 'https://ror.org/0435r0x49 Devicix (United States)'), (13410, 'https://ror.org/0435r6m82', 'no_lang_code', 1, 'https://ror.org/0435r6m82 Glialogix (United States)'), (13411, 'https://ror.org/0436ezp29', 'en', 1, 'https://ror.org/0436ezp29 Chicago Heights Park District'), (13412, 'https://ror.org/0436qt863', 'no_lang_code', 1, 'https://ror.org/0436qt863 Agrobioinstitute'), (13413, 'https://ror.org/043989r68', 'en', 1, 'https://ror.org/043989r68 Community Foundation for Northeast Michigan'), (13414, 'https://ror.org/04398v158', 'en', 1, 'https://ror.org/04398v158 Center for Advanced Diagnostics, Evaluation and Therapeutics'), (13415, 'https://ror.org/043a1ff28', 'en', 1, 'https://ror.org/043a1ff28 Institute of Chemistry and Chemical Technology'), (13416, 'https://ror.org/043bgf219', 'en', 1, 'https://ror.org/043bgf219 International Centre for Genetic Engineering and Biotechnology'), (13417, 'https://ror.org/043f52r95', 'en', 1, 'https://ror.org/043f52r95 Lexington City Schools'), (13418, 'https://ror.org/043j8fa20', 'en', 1, 'https://ror.org/043j8fa20 Denver School of Nursing'), (13419, 'https://ror.org/043nqmk58', 'fr', 1, 'https://ror.org/043nqmk58 Neuchâtel Observatory Observatoire Cantonal de Neuchâtel'), (13420, 'https://ror.org/043pv1763', 'no_lang_code', 1, 'https://ror.org/043pv1763 Dv Tecnologie d''Avanguardia (Italy)'), (13421, 'https://ror.org/043rcha86', 'no_lang_code', 1, 'https://ror.org/043rcha86 SignalGeneriX (Cyprus)'), (13422, 'https://ror.org/043svzt04', 'no_lang_code', 1, 'https://ror.org/043svzt04 World Winds (United States)'), (13423, 'https://ror.org/043t8em33', 'no_lang_code', 1, 'https://ror.org/043t8em33 Stollmann (Germany)'), (13424, 'https://ror.org/043w47745', 'en', 1, 'https://ror.org/043w47745 Institute for the Application of Geospatial Technology'), (13425, 'https://ror.org/043wzsx85', 'no_lang_code', 1, 'https://ror.org/043wzsx85 Rio Culebra Cooperative (United States)'), (13426, 'https://ror.org/043xwqn65', 'en', 1, 'https://ror.org/043xwqn65 Muslim Community Center Medical Clinic'), (13427, 'https://ror.org/043yg4r95', 'no_lang_code', 1, 'https://ror.org/043yg4r95 Catalyst Pharmaceuticals (United States)'), (13428, 'https://ror.org/04428zn91', 'no_lang_code', 1, 'https://ror.org/04428zn91 Thermo Fisher Scientific (Germany)'), (13429, 'https://ror.org/0442hf232', 'en', 1, 'https://ror.org/0442hf232 Zenger Farm'), (13430, 'https://ror.org/0442mhq67', 'en', 1, 'https://ror.org/0442mhq67 Maintaining Active Citizens'), (13431, 'https://ror.org/04435ns27', 'en', 1, 'https://ror.org/04435ns27 Florida Neuroscience Center'), (13432, 'https://ror.org/0443bt978', 'en', 1, 'https://ror.org/0443bt978 Child Abuse Prevention Services of Tuscaloosa'), (13433, 'https://ror.org/0443rfv41', 'no_lang_code', 1, 'https://ror.org/0443rfv41 Vodera (United Kingdom)'), (13434, 'https://ror.org/04459n726', 'no_lang_code', 1, 'https://ror.org/04459n726 Dillinger Hütte (Germany)'), (13435, 'https://ror.org/04460xd73', 'en', 1, 'https://ror.org/04460xd73 Ankhkasta Natural Healing'), (13436, 'https://ror.org/0446hjv79', 'en', 1, 'https://ror.org/0446hjv79 Florida Hospital Medical Group'), (13437, 'https://ror.org/0446p2g62', 'en', 1, 'https://ror.org/0446p2g62 Bristol Bay Area Health Corporation'), (13438, 'https://ror.org/0447c6e97', 'no_lang_code', 1, 'https://ror.org/0447c6e97 NeuroVista (United States)'), (13439, 'https://ror.org/044947a59', 'no_lang_code', 1, 'https://ror.org/044947a59 Lygos (United States)'), (13440, 'https://ror.org/044dw4g52', 'no_lang_code', 1, 'https://ror.org/044dw4g52 BlueBotics (Switzerland)'), (13441, 'https://ror.org/044ggvg47', 'no_lang_code', 1, 'https://ror.org/044ggvg47 Testaluna'), (13442, 'https://ror.org/044kgnr82', 'en', 1, 'https://ror.org/044kgnr82 Catholic Charities of the Diocese of St. Cloud'), (13443, 'https://ror.org/044pe5q70', 'no_lang_code', 1, 'https://ror.org/044pe5q70 Pera (Denmark)'), (13444, 'https://ror.org/044pgyv50', 'no_lang_code', 1, 'https://ror.org/044pgyv50 Research!America (United States)'), (13445, 'https://ror.org/044qb8j46', 'no_lang_code', 1, 'https://ror.org/044qb8j46 Ansys (France)'), (13446, 'https://ror.org/044qwkx83', 'no_lang_code', 1, 'https://ror.org/044qwkx83 Vodafone (Germany)'), (13447, 'https://ror.org/044t1p926', 'en', 1, 'https://ror.org/044t1p926 Museum of Arts and Design'), (13448, 'https://ror.org/044td5g81', 'en', 1, 'https://ror.org/044td5g81 Golden Valley Health Centers'), (13449, 'https://ror.org/044vb2892', 'en', 1, 'https://ror.org/044vb2892 Erebouni Medical Center'), (13450, 'https://ror.org/044ve3x29', 'en', 1, 'https://ror.org/044ve3x29 Bay Area Community Resources'), (13451, 'https://ror.org/044wjb306', 'fr', 1, 'https://ror.org/044wjb306 Centre international de recherche-développement sur l''elevage en zone subhumide'), (13452, 'https://ror.org/044xw2q20', 'fr', 1, 'https://ror.org/044xw2q20 Federale Overheidsdienst Economie, K.M.O., Middenstand en Energie Service Public Fédéral Économie'), (13453, 'https://ror.org/044z3jj38', 'en', 1, 'https://ror.org/044z3jj38 OMNI Institute'), (13454, 'https://ror.org/045072k07', 'no_lang_code', 1, 'https://ror.org/045072k07 Cowi (Denmark)'), (13455, 'https://ror.org/045193y93', 'no_lang_code', 1, 'https://ror.org/045193y93 Motorola (Germany)'), (13456, 'https://ror.org/0451xtz74', 'de', 1, 'https://ror.org/0451xtz74 Kernkraftwerk Gundremmingen'), (13457, 'https://ror.org/0452rfk90', 'en', 1, 'https://ror.org/0452rfk90 Pilates of Marin'), (13458, 'https://ror.org/04533yy36', 'en', 1, 'https://ror.org/04533yy36 North Carolina Society of Hispanic Professionals'), (13459, 'https://ror.org/0453arj96', 'no_lang_code', 1, 'https://ror.org/0453arj96 Empolis (Germany)'), (13460, 'https://ror.org/04543zj30', 'no_lang_code', 1, 'https://ror.org/04543zj30 INTECS (Italy)'), (13461, 'https://ror.org/0456wz313', 'no_lang_code', 1, 'https://ror.org/0456wz313 BAMO International (France)'), (13462, 'https://ror.org/045791j63', 'en', 1, 'https://ror.org/045791j63 European Journalism Centre'), (13463, 'https://ror.org/045895r06', 'en', 1, 'https://ror.org/045895r06 Dreams for Kids'), (13464, 'https://ror.org/0458xbt64', 'no_lang_code', 1, 'https://ror.org/0458xbt64 ATLAS Neuroengineering (Belgium)'), (13465, 'https://ror.org/0459hk790', 'en', 1, 'https://ror.org/0459hk790 Madison County Public Schools'), (13466, 'https://ror.org/045b8aq47', 'en', 1, 'https://ror.org/045b8aq47 International Road Transport Union'), (13467, 'https://ror.org/045b8kj71', 'no_lang_code', 1, 'https://ror.org/045b8kj71 Bioclear Earth (Netherlands)'), (13468, 'https://ror.org/045e95p45', 'en', 1, 'https://ror.org/045e95p45 JourneyCare'), (13469, 'https://ror.org/045hjpj39', 'en', 1, 'https://ror.org/045hjpj39 IPC Healthcare'), (13470, 'https://ror.org/045j3qt75', 'no_lang_code', 1, 'https://ror.org/045j3qt75 Chugachmiut (United States)'), (13471, 'https://ror.org/045jad561', 'no_lang_code', 1, 'https://ror.org/045jad561 GlobalFoundries (Germany)'), (13472, 'https://ror.org/045kvge53', 'no_lang_code', 1, 'https://ror.org/045kvge53 Microfluidic ChipShop (Germany)'), (13473, 'https://ror.org/045m6nf19', 'no_lang_code', 1, 'https://ror.org/045m6nf19 Fibertek (United States)'), (13474, 'https://ror.org/045mt4m45', 'en', 1, 'https://ror.org/045mt4m45 Chula Vista Community Collaborative'), (13475, 'https://ror.org/045pcya52', 'en', 1, 'https://ror.org/045pcya52 Ann Arbor Center for Independent Living'), (13476, 'https://ror.org/045sppx81', 'en', 1, 'https://ror.org/045sppx81 HeadNorth'), (13477, 'https://ror.org/045tw8497', 'no_lang_code', 1, 'https://ror.org/045tw8497 Archer Technicoat Limited (United Kingdom)'), (13478, 'https://ror.org/045vamp18', 'no_lang_code', 1, 'https://ror.org/045vamp18 FACC (Austria)'), (13479, 'https://ror.org/045xh6g63', 'en', 1, 'https://ror.org/045xh6g63 American Institute for Voice and Ear Research'), (13480, 'https://ror.org/045yh2r89', 'no_lang_code', 1, 'https://ror.org/045yh2r89 Agri Processing Services (United States)'), (13481, 'https://ror.org/04613d274', 'en', 1, 'https://ror.org/04613d274 Robotics Education and Competition Foundation'), (13482, 'https://ror.org/0462zf838', 'en', 1, 'https://ror.org/0462zf838 National Museum of Denmark Nationalmuseet'), (13483, 'https://ror.org/04645z906', 'en', 1, 'https://ror.org/04645z906 Athlete''s for Education'), (13484, 'https://ror.org/0465ecz69', 'no_lang_code', 1, 'https://ror.org/0465ecz69 Kyocera (Germany)'), (13485, 'https://ror.org/0465m7058', 'en', 1, 'https://ror.org/0465m7058 GardenShare'), (13486, 'https://ror.org/0466dv587', 'en', 1, 'https://ror.org/0466dv587 Pacific Gateway Center'), (13487, 'https://ror.org/0468wac55', 'en', 1, 'https://ror.org/0468wac55 Community Health Resource Center'), (13488, 'https://ror.org/04690g322', 'no_lang_code', 1, 'https://ror.org/04690g322 Eilenburger Electrolysis and Environmental Engineering Eilenburger Elektrolyse - und Umwelttechnik (Germany)'), (13489, 'https://ror.org/0469d4m84', 'no_lang_code', 1, 'https://ror.org/0469d4m84 ÅF (Switzerland)'), (13490, 'https://ror.org/046cpbt38', 'no_lang_code', 1, 'https://ror.org/046cpbt38 Epsilon International (Greece)'), (13491, 'https://ror.org/046gmyr21', 'en', 1, 'https://ror.org/046gmyr21 Education in Action'), (13492, 'https://ror.org/046h4gy16', 'en', 1, 'https://ror.org/046h4gy16 Leonia Lions Club'), (13493, 'https://ror.org/046hxmc98', 'no_lang_code', 1, 'https://ror.org/046hxmc98 Modulation Therapeutics (United States)'), (13494, 'https://ror.org/046mhfn38', 'en', 1, 'https://ror.org/046mhfn38 Belarusian Research Center For Pediatric Oncology and Hematology Республиканский научно-практический центр детской онкологии, гематологии и иммунологии Рэспубліканскі навукова-практычны цэнтр дзіцячай анкалогіі, гематалогіі і імуналогіі'), (13495, 'https://ror.org/046msyg33', 'no_lang_code', 1, 'https://ror.org/046msyg33 BRCR Global (Peru)'), (13496, 'https://ror.org/046r27a90', 'en', 1, 'https://ror.org/046r27a90 A.I Karaev Institute of Physiology Институт физиологии имени А.И. Караева'), (13497, 'https://ror.org/046rga183', 'en', 1, 'https://ror.org/046rga183 Planned Parenthood Southeast'), (13498, 'https://ror.org/046rsbb51', 'en', 1, 'https://ror.org/046rsbb51 California Ear Institute'), (13499, 'https://ror.org/046whjx61', 'en', 1, 'https://ror.org/046whjx61 Franklin County Schools'), (13500, 'https://ror.org/046xez992', 'en', 1, 'https://ror.org/046xez992 Children''s Cancer Association'), (13501, 'https://ror.org/046z87a78', 'no_lang_code', 1, 'https://ror.org/046z87a78 Carlebach Shul'), (13502, 'https://ror.org/04701b233', 'de', 1, 'https://ror.org/04701b233 Institut für Energie- und Umweltforschung Heidelberg Institute for Energy and Environmental Research'), (13503, 'https://ror.org/0470pq820', 'en', 1, 'https://ror.org/0470pq820 Indian Cancer Society'), (13504, 'https://ror.org/0470ypw21', 'de', 1, 'https://ror.org/0470ypw21 Institut für ökologische Wirtschaftsforschung Institute for Environmental Management and Economics'), (13505, 'https://ror.org/04717vr35', 'no_lang_code', 1, 'https://ror.org/04717vr35 SSAB (Sweden)'), (13506, 'https://ror.org/0471xz330', 'en', 1, 'https://ror.org/0471xz330 Bridgeport Hospital Foundation'), (13507, 'https://ror.org/0472wp149', 'no_lang_code', 1, 'https://ror.org/0472wp149 United Animal Health (United States)'), (13508, 'https://ror.org/0472xg466', 'no_lang_code', 1, 'https://ror.org/0472xg466 StratiCELL (Belgium)'), (13509, 'https://ror.org/0473a4773', 'en', 1, 'https://ror.org/0473a4773 Hertie School'), (13510, 'https://ror.org/04749sq68', 'en', 1, 'https://ror.org/04749sq68 Blank Children''s Hospital'), (13511, 'https://ror.org/04763bf91', 'en', 1, 'https://ror.org/04763bf91 Group for Organizational Effectiveness'), (13512, 'https://ror.org/0476ayz92', 'no_lang_code', 1, 'https://ror.org/0476ayz92 Bioarray Genetics (United States)'), (13513, 'https://ror.org/0476dvj30', 'en', 1, 'https://ror.org/0476dvj30 Augusta Victoria Hospital'), (13514, 'https://ror.org/047abt623', 'no_lang_code', 1, 'https://ror.org/047abt623 Microsharp (United Kingdom)'), (13515, 'https://ror.org/047dyfk64', 'en', 1, 'https://ror.org/047dyfk64 Medanta The Medicity'), (13516, 'https://ror.org/047gyf089', 'en', 1, 'https://ror.org/047gyf089 Orelena Hawks Puckett Institute'), (13517, 'https://ror.org/047hhy227', 'en', 1, 'https://ror.org/047hhy227 Institute for Parallel Processing Институт по паралелна обработка'), (13518, 'https://ror.org/047qgrj71', 'en', 1, 'https://ror.org/047qgrj71 Illinois Action for Children'), (13519, 'https://ror.org/047r6vz60', 'en', 1, 'https://ror.org/047r6vz60 Bloomfield Science Museum Jerusalem'), (13520, 'https://ror.org/047rbbf58', 'en', 1, 'https://ror.org/047rbbf58 Restorix Foundation'), (13521, 'https://ror.org/047xg5527', 'en', 1, 'https://ror.org/047xg5527 National Council on Indepedent Living'), (13522, 'https://ror.org/047y4v704', 'en', 1, 'https://ror.org/047y4v704 European Renewable Energy Council'), (13523, 'https://ror.org/047yd6g50', 'no_lang_code', 1, 'https://ror.org/047yd6g50 Salzgitter AG Salzgitter Group (Germany)'), (13524, 'https://ror.org/047znxb10', 'no_lang_code', 1, 'https://ror.org/047znxb10 Biojenc (United States)'), (13525, 'https://ror.org/04831wp37', 'no_lang_code', 1, 'https://ror.org/04831wp37 Devan Chemicals (Belgium)'), (13526, 'https://ror.org/0483yhz54', 'en', 1, 'https://ror.org/0483yhz54 Children''s Center'), (13527, 'https://ror.org/0484k9q63', 'en', 1, 'https://ror.org/0484k9q63 Swedish Space Corporation'), (13528, 'https://ror.org/048514v09', 'en', 1, 'https://ror.org/048514v09 Cuyahoga County Juvenile Court'), (13529, 'https://ror.org/04853qb43', 'en', 1, 'https://ror.org/04853qb43 Citizens Committee for New York City'), (13530, 'https://ror.org/04870rh38', 'no_lang_code', 1, 'https://ror.org/04870rh38 Stadtwerke Straubing (Germany)'), (13531, 'https://ror.org/04898mq89', 'en', 1, 'https://ror.org/04898mq89 Children''s Research Triangle'), (13532, 'https://ror.org/0489hqz65', 'no_lang_code', 1, 'https://ror.org/0489hqz65 Coatema (Germany)'), (13533, 'https://ror.org/048et8x32', 'no_lang_code', 1, 'https://ror.org/048et8x32 Moerae Matrix (United States)'), (13534, 'https://ror.org/048f9wx47', 'en', 1, 'https://ror.org/048f9wx47 Association House of Chicago'), (13535, 'https://ror.org/048fgvb33', 'no_lang_code', 1, 'https://ror.org/048fgvb33 Podiceps (Netherlands)'), (13536, 'https://ror.org/048fraw27', 'en', 1, 'https://ror.org/048fraw27 Ministry of Agriculture, Natural Resources and Environment Υπουργείο Γεωργίας'), (13537, 'https://ror.org/048fxk571', 'no_lang_code', 1, 'https://ror.org/048fxk571 Edison Pharmaceuticals (United States)'), (13538, 'https://ror.org/048g5yp93', 'en', 1, 'https://ror.org/048g5yp93 Bhaktapur Cancer Hospital भक्तपुर क्यान्सर अस्पताल'), (13539, 'https://ror.org/048j11q41', 'no_lang_code', 1, 'https://ror.org/048j11q41 Rohde & Schwarz (Germany)'), (13540, 'https://ror.org/048j8nq91', 'en', 1, 'https://ror.org/048j8nq91 Nepal Cancer Hospital and Research Center नेपाल क्यान्सर अस्पताल र अनुसन्धान केन्द्र'), (13541, 'https://ror.org/048q5dx45', 'en', 1, 'https://ror.org/048q5dx45 Communicating for Agriculture Education Programs'), (13542, 'https://ror.org/048q66y67', 'no_lang_code', 1, 'https://ror.org/048q66y67 BP (Germany)'), (13543, 'https://ror.org/048sy8p96', 'no_lang_code', 1, 'https://ror.org/048sy8p96 Miltech Hellas (Greece)'), (13544, 'https://ror.org/048wm8z08', 'de', 1, 'https://ror.org/048wm8z08 Brandenburg Economic Development Board ZukunftsAgentur Brandenburg'), (13545, 'https://ror.org/048x1jh88', 'no_lang_code', 1, 'https://ror.org/048x1jh88 Euroquality'), (13546, 'https://ror.org/048z5te50', 'en', 1, 'https://ror.org/048z5te50 Breast Cancer Family Foundation'), (13547, 'https://ror.org/048z8v674', 'en', 1, 'https://ror.org/048z8v674 Asian American Community Services'), (13548, 'https://ror.org/048zn2n32', 'no_lang_code', 1, 'https://ror.org/048zn2n32 Ontotext (Bulgaria)'), (13549, 'https://ror.org/04910zn79', 'en', 1, 'https://ror.org/04910zn79 Delaware AeroSpace Education Foundation'), (13550, 'https://ror.org/049128m26', 'no_lang_code', 1, 'https://ror.org/049128m26 Integrated Resources Management Company (Malta)'), (13551, 'https://ror.org/0491s4v58', 'no_lang_code', 1, 'https://ror.org/0491s4v58 Uljanik (Croatia)'), (13552, 'https://ror.org/0491v6j54', 'no_lang_code', 1, 'https://ror.org/0491v6j54 Granit Technologies (Switzerland)'), (13553, 'https://ror.org/0492cvk34', 'en', 1, 'https://ror.org/0492cvk34 National Scientific Center for Medical and Biotechnical Research Науковий центр з медико-біотехнічних проблем'), (13554, 'https://ror.org/0493xxf64', 'no_lang_code', 1, 'https://ror.org/0493xxf64 Eurofins (Denmark)'), (13555, 'https://ror.org/0497prz03', 'en', 1, 'https://ror.org/0497prz03 Minnesota Agriculture in the Classroom Foundation'), (13556, 'https://ror.org/0498q3b31', 'no_lang_code', 1, 'https://ror.org/0498q3b31 SSP Consult Beratende Ingenieure (Germany)'), (13557, 'https://ror.org/0498rcw21', 'en', 1, 'https://ror.org/0498rcw21 Habilitative Systems'), (13558, 'https://ror.org/049be2c95', 'no_lang_code', 1, 'https://ror.org/049be2c95 Zanasi & Partners (Italy)'), (13559, 'https://ror.org/049d9a475', 'en', 1, 'https://ror.org/049d9a475 Memorial Hermann'), (13560, 'https://ror.org/049e6hd13', 'no_lang_code', 1, 'https://ror.org/049e6hd13 Alten (France)'), (13561, 'https://ror.org/049fjxn51', 'en', 1, 'https://ror.org/049fjxn51 San Diego American Indian Health Center'), (13562, 'https://ror.org/049j2y056', 'en', 1, 'https://ror.org/049j2y056 Anna C. Scott School'), (13563, 'https://ror.org/049k4m746', 'en', 1, 'https://ror.org/049k4m746 Mariposa Community Health Center'), (13564, 'https://ror.org/049kt3f30', 'no_lang_code', 1, 'https://ror.org/049kt3f30 Ernst & Young (Israel)'), (13565, 'https://ror.org/049nq5186', 'en', 1, 'https://ror.org/049nq5186 European Photovoltaic Industry Association'), (13566, 'https://ror.org/049qds964', 'en', 1, 'https://ror.org/049qds964 Wilshire Health and Community Services'), (13567, 'https://ror.org/049qn2f85', 'en', 1, 'https://ror.org/049qn2f85 Hunts Point Alliance for Children'), (13568, 'https://ror.org/049rgw923', 'en', 1, 'https://ror.org/049rgw923 Joni and Friends'), (13569, 'https://ror.org/049t27950', 'en', 1, 'https://ror.org/049t27950 CAPEable Adventures'), (13570, 'https://ror.org/049wg7r76', 'no_lang_code', 1, 'https://ror.org/049wg7r76 Alpha Scents (United States)'), (13571, 'https://ror.org/049zsmy36', 'no_lang_code', 1, 'https://ror.org/049zsmy36 TÜV SÜD (United Kingdom)'), (13572, 'https://ror.org/049zt2w56', 'de', 1, 'https://ror.org/049zt2w56 Gesellschaft fuer Wirtschaftliche Strukturforschung Institute of Economic Structures Research'), (13573, 'https://ror.org/04a0v2b96', 'en', 1, 'https://ror.org/04a0v2b96 Migrant Clinicians Network'), (13574, 'https://ror.org/04a197k40', 'no_lang_code', 1, 'https://ror.org/04a197k40 ODTÜ Teknokent (Turkey)'), (13575, 'https://ror.org/04a79ch84', 'en', 1, 'https://ror.org/04a79ch84 CareerSource Brevard'), (13576, 'https://ror.org/04a87c513', 'it', 1, 'https://ror.org/04a87c513 CentroScienza Onlus'), (13577, 'https://ror.org/04aave390', 'en', 1, 'https://ror.org/04aave390 Children''s Leukaemia Research Project'), (13578, 'https://ror.org/04abvbp84', 'en', 1, 'https://ror.org/04abvbp84 San Francisco AIDS Foundation'), (13579, 'https://ror.org/04adqta18', 'en', 1, 'https://ror.org/04adqta18 Millennium Charter Academy'), (13580, 'https://ror.org/04adynk16', 'no_lang_code', 1, 'https://ror.org/04adynk16 InConTec (Germany)'), (13581, 'https://ror.org/04aecpw50', 'no_lang_code', 1, 'https://ror.org/04aecpw50 Caixa Mágica Software (Portugal)'), (13582, 'https://ror.org/04aewc151', 'en', 1, 'https://ror.org/04aewc151 Louisiana Art & Science Museum'), (13583, 'https://ror.org/04afqbm81', 'en', 1, 'https://ror.org/04afqbm81 Mecosta County Medical Center'), (13584, 'https://ror.org/04ahqd251', 'no_lang_code', 1, 'https://ror.org/04ahqd251 Plant Integrity (United Kingdom)'), (13585, 'https://ror.org/04ak2vh38', 'en', 1, 'https://ror.org/04ak2vh38 Newark Community Health Centers'), (13586, 'https://ror.org/04am60t69', 'no_lang_code', 1, 'https://ror.org/04am60t69 Cronus (United States)'), (13587, 'https://ror.org/04aqebj37', 'en', 1, 'https://ror.org/04aqebj37 Aldersgate Camp and Retreat Center'), (13588, 'https://ror.org/04arwvm64', 'en', 1, 'https://ror.org/04arwvm64 Pacific Cancer Foundation'), (13589, 'https://ror.org/04as6y835', 'no_lang_code', 1, 'https://ror.org/04as6y835 TomTom (Netherlands)'), (13590, 'https://ror.org/04avxfe70', 'en', 1, 'https://ror.org/04avxfe70 Centre for Science, Society and Citizenship'), (13591, 'https://ror.org/04ax6zj28', 'no_lang_code', 1, 'https://ror.org/04ax6zj28 Infocarto'), (13592, 'https://ror.org/04axend95', 'no_lang_code', 1, 'https://ror.org/04axend95 FISBA OPTIK (Switzerland)'), (13593, 'https://ror.org/04az0sk32', 'en', 1, 'https://ror.org/04az0sk32 Sound Watershed Consulting'), (13594, 'https://ror.org/04azvn561', 'en', 1, 'https://ror.org/04azvn561 Southside Community Land Trust'), (13595, 'https://ror.org/04b1xdq74', 'no_lang_code', 1, 'https://ror.org/04b1xdq74 Advanced Imaging Projects (United States)'), (13596, 'https://ror.org/04b239q68', 'en', 1, 'https://ror.org/04b239q68 European Association for the Promotion of Cogeneration'), (13597, 'https://ror.org/04b43x362', 'en', 1, 'https://ror.org/04b43x362 International Center of New York'), (13598, 'https://ror.org/04b59sp53', 'en', 1, 'https://ror.org/04b59sp53 UDAAN for the Disabled'), (13599, 'https://ror.org/04b7haz84', 'en', 1, 'https://ror.org/04b7haz84 Lupus Research Institute'), (13600, 'https://ror.org/04b85bq70', 'no_lang_code', 1, 'https://ror.org/04b85bq70 Nodality (United States)'), (13601, 'https://ror.org/04b8ams39', 'en', 1, 'https://ror.org/04b8ams39 Breast Cancer Foundation of the Ozarks'), (13602, 'https://ror.org/04b8gx121', 'en', 1, 'https://ror.org/04b8gx121 Organic Research Centre'), (13603, 'https://ror.org/04bac6g30', 'en', 1, 'https://ror.org/04bac6g30 Children with Cancer UK'), (13604, 'https://ror.org/04bb70w76', 'ro', 1, 'https://ror.org/04bb70w76 Institutul Naţional de Cercetare Dezvoltare Marină Grigore Antipa'), (13605, 'https://ror.org/04bb84196', 'no_lang_code', 1, 'https://ror.org/04bb84196 Montana Gluten Free (United States)'), (13606, 'https://ror.org/04bc26c24', 'en', 1, 'https://ror.org/04bc26c24 Wilson''s Cedar Point Farm'), (13607, 'https://ror.org/04bcdzr74', 'en', 1, 'https://ror.org/04bcdzr74 Centre for Omic Sciences'), (13608, 'https://ror.org/04bcpv236', 'en', 1, 'https://ror.org/04bcpv236 Institute for Earth Science Research and Education'), (13609, 'https://ror.org/04bd4pk40', 'no_lang_code', 1, 'https://ror.org/04bd4pk40 WorldFish'), (13610, 'https://ror.org/04bgaqv80', 'no_lang_code', 1, 'https://ror.org/04bgaqv80 Utvecklingsbyrån'), (13611, 'https://ror.org/04bgb0r98', 'en', 1, 'https://ror.org/04bgb0r98 San Joaquin County Public Health Services'), (13612, 'https://ror.org/04bgneb83', 'en', 1, 'https://ror.org/04bgneb83 Breast Cancer Help'), (13613, 'https://ror.org/04bj7w275', 'no_lang_code', 1, 'https://ror.org/04bj7w275 Bee Alert Technology (United States)'), (13614, 'https://ror.org/04bjr3r43', 'no_lang_code', 1, 'https://ror.org/04bjr3r43 TÜV (Austria)'), (13615, 'https://ror.org/04bkad313', 'en', 1, 'https://ror.org/04bkad313 Autism Speaks'), (13616, 'https://ror.org/04brghb67', 'no_lang_code', 1, 'https://ror.org/04brghb67 Hottinger Baldwin Messtechnik (Portugal)'), (13617, 'https://ror.org/04bsh3r03', 'no_lang_code', 1, 'https://ror.org/04bsh3r03 Ericsson (Croatia)'), (13618, 'https://ror.org/04bsj8w28', 'fr', 1, 'https://ror.org/04bsj8w28 Forêt Méditerranéenne'), (13619, 'https://ror.org/04bsz5816', 'no_lang_code', 1, 'https://ror.org/04bsz5816 Rakuten (United States)'), (13620, 'https://ror.org/04bw38x95', 'en', 1, 'https://ror.org/04bw38x95 Pike High School'), (13621, 'https://ror.org/04bwtsm02', 'en', 1, 'https://ror.org/04bwtsm02 Electronic Chips & Systems Design Initiative'), (13622, 'https://ror.org/04by0yr47', 'no_lang_code', 1, 'https://ror.org/04by0yr47 ARMGO Pharma (United States)'), (13623, 'https://ror.org/04bypsr67', 'no_lang_code', 1, 'https://ror.org/04bypsr67 Enkam (Denmark)'), (13624, 'https://ror.org/04c0kq537', 'en', 1, 'https://ror.org/04c0kq537 Rapides Regional Medical Center'), (13625, 'https://ror.org/04c1ecw45', 'en', 1, 'https://ror.org/04c1ecw45 Association to Benefit Children'), (13626, 'https://ror.org/04c3e6c98', 'no_lang_code', 1, 'https://ror.org/04c3e6c98 Eicas Automazione (Italy)'), (13627, 'https://ror.org/04c4d1830', 'en', 1, 'https://ror.org/04c4d1830 New Wave Innovation'), (13628, 'https://ror.org/04c4h8s17', 'fr', 1, 'https://ror.org/04c4h8s17 Société du Canal de Provence'), (13629, 'https://ror.org/04c5mqw76', 'no_lang_code', 1, 'https://ror.org/04c5mqw76 Industrial Design Consultancy'), (13630, 'https://ror.org/04c5tww79', 'no_lang_code', 1, 'https://ror.org/04c5tww79 NanoBioMatters (Spain)'), (13631, 'https://ror.org/04c6bt026', 'no_lang_code', 1, 'https://ror.org/04c6bt026 Affinityfilms (United States)'), (13632, 'https://ror.org/04ca4p790', 'en', 1, 'https://ror.org/04ca4p790 Lambrakis Research Foundation'), (13633, 'https://ror.org/04cd6s825', 'en', 1, 'https://ror.org/04cd6s825 California Institute For Rural Studies'), (13634, 'https://ror.org/04cdzx077', 'en', 1, 'https://ror.org/04cdzx077 Ministry of Food Agriculture and Livestock Türkiye Cumhuriyeti Gıda, Tarım ve Hayvancılık Bakanlığı'), (13635, 'https://ror.org/04cfdk084', 'en', 1, 'https://ror.org/04cfdk084 OAK Orthopedics'), (13636, 'https://ror.org/04chbxq69', 'no_lang_code', 1, 'https://ror.org/04chbxq69 Energid Technologies (United States)'), (13637, 'https://ror.org/04chcgr85', 'no_lang_code', 1, 'https://ror.org/04chcgr85 Raffinerie Tirlemontoise (Belgium)'), (13638, 'https://ror.org/04cj9pv40', 'en', 1, 'https://ror.org/04cj9pv40 Ormylia Foundation'), (13639, 'https://ror.org/04cjbhq14', 'no_lang_code', 1, 'https://ror.org/04cjbhq14 Regen BioPharma (United States)'), (13640, 'https://ror.org/04cmhn872', 'no_lang_code', 1, 'https://ror.org/04cmhn872 Sociedade Portuguesa de Inovação'), (13641, 'https://ror.org/04cmxh670', 'no_lang_code', 1, 'https://ror.org/04cmxh670 Lenzing (Austria)'), (13642, 'https://ror.org/04cn8bv62', 'no_lang_code', 1, 'https://ror.org/04cn8bv62 JCP Connect (France)'), (13643, 'https://ror.org/04cpvzv65', 'en', 1, 'https://ror.org/04cpvzv65 Community Farm Alliance'), (13644, 'https://ror.org/04cq22z54', 'en', 1, 'https://ror.org/04cq22z54 Institute for Advanced Learning and Research'), (13645, 'https://ror.org/04crag568', 'en', 1, 'https://ror.org/04crag568 Cranfield Impact Centre'), (13646, 'https://ror.org/04crjc626', 'no_lang_code', 1, 'https://ror.org/04crjc626 Kivulini Women’s Rights Organisation'), (13647, 'https://ror.org/04csrvg63', 'en', 1, 'https://ror.org/04csrvg63 Exercise and Survivorship Education Cancer Foundation'), (13648, 'https://ror.org/04ct03p83', 'no_lang_code', 1, 'https://ror.org/04ct03p83 Centus'), (13649, 'https://ror.org/04cwtnm77', 'no_lang_code', 1, 'https://ror.org/04cwtnm77 Kansas Environmental Management Associates (United States)'), (13650, 'https://ror.org/04cxspg15', 'it', 1, 'https://ror.org/04cxspg15 Fondazione Umberto Di Mario'), (13651, 'https://ror.org/04cz70931', 'no_lang_code', 1, 'https://ror.org/04cz70931 ResilTech (Italy)'), (13652, 'https://ror.org/04d3q1d69', 'en', 1, 'https://ror.org/04d3q1d69 Newton-Conover Health and Science High School'), (13653, 'https://ror.org/04d41fm91', 'no_lang_code', 1, 'https://ror.org/04d41fm91 ASIO spol (Czechia)'), (13654, 'https://ror.org/04d75x649', 'en', 1, 'https://ror.org/04d75x649 The Children''s Museum'), (13655, 'https://ror.org/04d84av86', 'en', 1, 'https://ror.org/04d84av86 Ministry of National Defence Υπουργείο Εθνικής Άμυνας'), (13656, 'https://ror.org/04d8haw14', 'no_lang_code', 1, 'https://ror.org/04d8haw14 SMA Solar Technology (Germany)'), (13657, 'https://ror.org/04dd80p04', 'en', 1, 'https://ror.org/04dd80p04 Champions Made From Adversity'), (13658, 'https://ror.org/04de2bn74', 'no_lang_code', 1, 'https://ror.org/04de2bn74 Holografika (Hungary)'), (13659, 'https://ror.org/04dg6h767', 'en', 1, 'https://ror.org/04dg6h767 Dempsey Center'), (13660, 'https://ror.org/04dkt5d63', 'en', 1, 'https://ror.org/04dkt5d63 Greek Atomic Energy Commission'), (13661, 'https://ror.org/04dq3vj35', 'en', 1, 'https://ror.org/04dq3vj35 American Friends of Tel Aviv University'), (13662, 'https://ror.org/04dsw2p33', 'en', 1, 'https://ror.org/04dsw2p33 Centro Paraguayo de Estudios de Población - Paraguayan Center for Population Studies'), (13663, 'https://ror.org/04dtc1m65', 'en', 1, 'https://ror.org/04dtc1m65 Immigrant and Refugee Community Organization'), (13664, 'https://ror.org/04dwx7104', 'en', 1, 'https://ror.org/04dwx7104 College of the Desert'), (13665, 'https://ror.org/04dxam533', 'no_lang_code', 1, 'https://ror.org/04dxam533 Archimedia (Greece)'), (13666, 'https://ror.org/04dyr4x59', 'en', 1, 'https://ror.org/04dyr4x59 Kingsley House'), (13667, 'https://ror.org/04dyx6987', 'nl', 1, 'https://ror.org/04dyx6987 Gemeente Eindhoven'), (13668, 'https://ror.org/04dyz9n21', 'en', 1, 'https://ror.org/04dyz9n21 Challenged Athletes Foundation'), (13669, 'https://ror.org/04dzssn93', 'en', 1, 'https://ror.org/04dzssn93 Public Safety Communication Europe Forum'), (13670, 'https://ror.org/04e2ggq49', 'pl', 1, 'https://ror.org/04e2ggq49 Państwowa Wyższa Szkoła Zawodowa w Nowym Sączu State Higher Vocational School in Nowy Sacz'), (13671, 'https://ror.org/04e3qnv29', 'en', 1, 'https://ror.org/04e3qnv29 Day Kimball Healthcare'), (13672, 'https://ror.org/04e3yr628', 'en', 1, 'https://ror.org/04e3yr628 HER2 Support Group'), (13673, 'https://ror.org/04e6aft63', 'no_lang_code', 1, 'https://ror.org/04e6aft63 Danaos (Cyprus)'), (13674, 'https://ror.org/04e7m9p55', 'no_lang_code', 1, 'https://ror.org/04e7m9p55 Galapagos (Netherlands)'), (13675, 'https://ror.org/04e86te90', 'en', 1, 'https://ror.org/04e86te90 Assistive Technology of Alaska'), (13676, 'https://ror.org/04e89qg80', 'en', 1, 'https://ror.org/04e89qg80 Kennedy Memorial Hospital'), (13677, 'https://ror.org/04e8qdj27', 'en', 1, 'https://ror.org/04e8qdj27 Hellenic Register of Shipping Ελληνικός Νηογνώμων'), (13678, 'https://ror.org/04e9vwv03', 'en', 1, 'https://ror.org/04e9vwv03 HopeLab'), (13679, 'https://ror.org/04ead8931', 'en', 1, 'https://ror.org/04ead8931 Project Walk Paralysis Recovery Centers'), (13680, 'https://ror.org/04eawqd29', 'en', 1, 'https://ror.org/04eawqd29 Daily Bread Soup Kitchen'), (13681, 'https://ror.org/04ebrck23', 'en', 1, 'https://ror.org/04ebrck23 Hospice Nepal'), (13682, 'https://ror.org/04edgdk70', 'en', 1, 'https://ror.org/04edgdk70 Friedreich''s Ataxia Research Alliance'), (13683, 'https://ror.org/04edqzt97', 'en', 1, 'https://ror.org/04edqzt97 Cloud Security Alliance'), (13684, 'https://ror.org/04eep0166', 'en', 1, 'https://ror.org/04eep0166 Association for Driver Rehabilitation Specialists'), (13685, 'https://ror.org/04efgte12', 'no_lang_code', 1, 'https://ror.org/04efgte12 Gesellschaft für Nuklear Service (Germany)'), (13686, 'https://ror.org/04eg60b20', 'en', 1, 'https://ror.org/04eg60b20 I''m Still Here Foundation'), (13687, 'https://ror.org/04eg67w73', 'no_lang_code', 1, 'https://ror.org/04eg67w73 ASM - Centrum Badań i Analiz Rynku Sp. z oo ASM Centre for Research and Analysis Market (Poland)'), (13688, 'https://ror.org/04ehykb85', 'en', 1, 'https://ror.org/04ehykb85 Institute of Biomedical Technologies Istituto di Tecnologie Biomediche'), (13689, 'https://ror.org/04ej2a140', 'no_lang_code', 1, 'https://ror.org/04ej2a140 Tecnologia Energia Ambiente Materiali (Italy)'), (13690, 'https://ror.org/04ejveh20', 'en', 1, 'https://ror.org/04ejveh20 Thessaloniki Port Authority'), (13691, 'https://ror.org/04ejz3m31', 'en', 1, 'https://ror.org/04ejz3m31 Red Cloud Indian School'), (13692, 'https://ror.org/04ek2dh49', 'no_lang_code', 1, 'https://ror.org/04ek2dh49 CuraVac (United States)'), (13693, 'https://ror.org/04em0e964', 'en', 1, 'https://ror.org/04em0e964 Chronic Disease Fund'), (13694, 'https://ror.org/04enkmp14', 'no_lang_code', 1, 'https://ror.org/04enkmp14 NAMSA (France)'), (13695, 'https://ror.org/04enw2g11', 'en', 1, 'https://ror.org/04enw2g11 Arie Crown Hebrew Day School'), (13696, 'https://ror.org/04ep2t954', 'en', 1, 'https://ror.org/04ep2t954 Fridtjof Nansen Institute'), (13697, 'https://ror.org/04epg3w34', 'en', 1, 'https://ror.org/04epg3w34 Detroit Clinical Research Center'), (13698, 'https://ror.org/04esec225', 'en', 1, 'https://ror.org/04esec225 Plaza Community Services'), (13699, 'https://ror.org/04et83a48', 'en', 1, 'https://ror.org/04et83a48 Ovarian Cancer Institute'), (13700, 'https://ror.org/04etsch95', 'no_lang_code', 1, 'https://ror.org/04etsch95 AFRY (Sweden)'), (13701, 'https://ror.org/04ew99m67', 'no_lang_code', 1, 'https://ror.org/04ew99m67 Polkom Badania'), (13702, 'https://ror.org/04ewgt853', 'no_lang_code', 1, 'https://ror.org/04ewgt853 Ingenieurgruppe IVV (Germany)'), (13703, 'https://ror.org/04eyhzq56', 'en', 1, 'https://ror.org/04eyhzq56 American Society for Gravitational and Space Research'), (13704, 'https://ror.org/04eyj7x46', 'en', 1, 'https://ror.org/04eyj7x46 Jamestown Education Foundation'), (13705, 'https://ror.org/04f1frv38', 'en', 1, 'https://ror.org/04f1frv38 Alameda County Office of Education'), (13706, 'https://ror.org/04f2fqx85', 'no_lang_code', 1, 'https://ror.org/04f2fqx85 Bayer (Greece)'), (13707, 'https://ror.org/04f3amf18', 'en', 1, 'https://ror.org/04f3amf18 Alpha One'), (13708, 'https://ror.org/04f4mf723', 'en', 1, 'https://ror.org/04f4mf723 Mendocino Community Health Clinic'), (13709, 'https://ror.org/04f6cgz95', 'en', 1, 'https://ror.org/04f6cgz95 American Diabetes Association'), (13710, 'https://ror.org/04f6n8s05', 'no_lang_code', 1, 'https://ror.org/04f6n8s05 Aptitude Medical Systems'), (13711, 'https://ror.org/04f6ygk28', 'no_lang_code', 1, 'https://ror.org/04f6ygk28 Siemens (Italy)'), (13712, 'https://ror.org/04f8y1a51', 'no_lang_code', 1, 'https://ror.org/04f8y1a51 EmergenTec (Austria)'), (13713, 'https://ror.org/04farme71', 'en', 1, 'https://ror.org/04farme71 Fraunhofer Institute for Digital Medicine Fraunhofer-Institut für Digitale Medizin'), (13714, 'https://ror.org/04fc1ay64', 'en', 1, 'https://ror.org/04fc1ay64 Edith P. Wright Breast Cancer Foundation'), (13715, 'https://ror.org/04ff7ym80', 'en', 1, 'https://ror.org/04ff7ym80 Delaware Breast Cancer Coalition'), (13716, 'https://ror.org/04fg4sh42', 'en', 1, 'https://ror.org/04fg4sh42 St Peter''s Hospital'), (13717, 'https://ror.org/04fgasy98', 'no_lang_code', 1, 'https://ror.org/04fgasy98 Express Scripts Holding Company (United States)'), (13718, 'https://ror.org/04fjarb68', 'no_lang_code', 1, 'https://ror.org/04fjarb68 Agrivida (United States)'), (13719, 'https://ror.org/04fjkje50', 'no_lang_code', 1, 'https://ror.org/04fjkje50 User Interface Design (Germany)'), (13720, 'https://ror.org/04fm6gx83', 'en', 1, 'https://ror.org/04fm6gx83 Vernon Verona Sherrill School District'), (13721, 'https://ror.org/04fnnnw43', 'no_lang_code', 1, 'https://ror.org/04fnnnw43 Sistemi Innovativi per Il Controllo del Traffico Aereo'), (13722, 'https://ror.org/04fpx1h75', 'no_lang_code', 1, 'https://ror.org/04fpx1h75 Candy’s Place'), (13723, 'https://ror.org/04fqsa740', 'no_lang_code', 1, 'https://ror.org/04fqsa740 Warrant Hub (Italy)'), (13724, 'https://ror.org/04ft04872', 'en', 1, 'https://ror.org/04ft04872 Greater Los Angeles Agency on Deafness'), (13725, 'https://ror.org/04ft21254', 'en', 1, 'https://ror.org/04ft21254 Pal-O-Mine Equestrian'), (13726, 'https://ror.org/04ft4dj82', 'en', 1, 'https://ror.org/04ft4dj82 Minnesota Department of Corrections'), (13727, 'https://ror.org/04fv19769', 'en', 1, 'https://ror.org/04fv19769 Health Research Alliance'), (13728, 'https://ror.org/04fv5g904', 'it', 1, 'https://ror.org/04fv5g904 Centre for Research in Pure and Applied Mathematics Centro di Ricerca in Matematica Pura ed Applicata'), (13729, 'https://ror.org/04fxr2t73', 'no_lang_code', 1, 'https://ror.org/04fxr2t73 TessArae (United States)'), (13730, 'https://ror.org/04fxz7d50', 'no_lang_code', 1, 'https://ror.org/04fxz7d50 Sony (United Kingdom)'), (13731, 'https://ror.org/04fy6j421', 'en', 1, 'https://ror.org/04fy6j421 American Society of Clinical Oncology'), (13732, 'https://ror.org/04fywsz69', 'no_lang_code', 1, 'https://ror.org/04fywsz69 Xpand Biotechnology (Netherlands)'), (13733, 'https://ror.org/04g007714', 'no_lang_code', 1, 'https://ror.org/04g007714 Noxxon Pharma (Germany)'), (13734, 'https://ror.org/04g046t84', 'no_lang_code', 1, 'https://ror.org/04g046t84 Dbe Technology (Germany)'), (13735, 'https://ror.org/04g0a6w76', 'no_lang_code', 1, 'https://ror.org/04g0a6w76 MEO (Portugal)'), (13736, 'https://ror.org/04g39xc83', 'en', 1, 'https://ror.org/04g39xc83 Journey Forward'), (13737, 'https://ror.org/04g52e958', 'it', 1, 'https://ror.org/04g52e958 Progemisa'), (13738, 'https://ror.org/04g5a7819', 'en', 1, 'https://ror.org/04g5a7819 Firelands Regional Medical Center'), (13739, 'https://ror.org/04g835755', 'en', 1, 'https://ror.org/04g835755 McWane Science Center'), (13740, 'https://ror.org/04g8dha87', 'no_lang_code', 1, 'https://ror.org/04g8dha87 GATC Biotech (Germany)'), (13741, 'https://ror.org/04g9q2h37', 'en', 1, 'https://ror.org/04g9q2h37 San Francisco VA Health Care System'), (13742, 'https://ror.org/04gazhx35', 'en', 1, 'https://ror.org/04gazhx35 National Center for Appropriate Technology'), (13743, 'https://ror.org/04gbnqd17', 'no_lang_code', 1, 'https://ror.org/04gbnqd17 Kongsberg Satellite Services (Norway)'), (13744, 'https://ror.org/04gbv0x41', 'it', 1, 'https://ror.org/04gbv0x41 Synesis'), (13745, 'https://ror.org/04gcecg21', 'no_lang_code', 1, 'https://ror.org/04gcecg21 Norsk Hydro (Germany)'), (13746, 'https://ror.org/04gdc7k94', 'en', 1, 'https://ror.org/04gdc7k94 Farmworker Association of Florida'), (13747, 'https://ror.org/04gf6zh40', 'no_lang_code', 1, 'https://ror.org/04gf6zh40 System Simulation (United Kingdom)'), (13748, 'https://ror.org/04gfafs31', 'en', 1, 'https://ror.org/04gfafs31 Texas Freedom Network'), (13749, 'https://ror.org/04gg0z244', 'en', 1, 'https://ror.org/04gg0z244 Cancer Connection'), (13750, 'https://ror.org/04gknp681', 'en', 1, 'https://ror.org/04gknp681 Mid-Atlantic Broadband Cooperative'), (13751, 'https://ror.org/04gm0ky67', 'no_lang_code', 1, 'https://ror.org/04gm0ky67 Metallopharm (United States)'), (13752, 'https://ror.org/04gmtb593', 'no_lang_code', 1, 'https://ror.org/04gmtb593 United Technologies Corporation (Poland)'), (13753, 'https://ror.org/04gmz9460', 'en', 1, 'https://ror.org/04gmz9460 Lady Mavericks Wheelchair Basketball'), (13754, 'https://ror.org/04gr7xf77', 'en', 1, 'https://ror.org/04gr7xf77 Center for Development Services'), (13755, 'https://ror.org/04grvsk22', 'en', 1, 'https://ror.org/04grvsk22 California Hospital Medical Center Foundation'), (13756, 'https://ror.org/04gsrry43', 'no_lang_code', 1, 'https://ror.org/04gsrry43 Hillhurst Biopharmaceuticals (United States)'), (13757, 'https://ror.org/04gvjte09', 'en', 1, 'https://ror.org/04gvjte09 Faxton St. Luke''s Healthcare'), (13758, 'https://ror.org/04gwhcf14', 'no_lang_code', 1, 'https://ror.org/04gwhcf14 BearingPoint (Austria)'), (13759, 'https://ror.org/04gxzhg33', 'en', 1, 'https://ror.org/04gxzhg33 Mobility Unlimited'), (13760, 'https://ror.org/04gz4vz18', 'no_lang_code', 1, 'https://ror.org/04gz4vz18 Carolus Therapeutics (United States)'), (13761, 'https://ror.org/04gznzd38', 'en', 1, 'https://ror.org/04gznzd38 ECO City Farms'), (13762, 'https://ror.org/04h1x1p54', 'no_lang_code', 1, 'https://ror.org/04h1x1p54 Walt Disney (Switzerland)'), (13763, 'https://ror.org/04h2exm50', 'no_lang_code', 1, 'https://ror.org/04h2exm50 Mycosynthetix (United States)'), (13764, 'https://ror.org/04h2wnp96', 'en', 1, 'https://ror.org/04h2wnp96 Motion Picture & Television Fund'), (13765, 'https://ror.org/04h60j158', 'en', 1, 'https://ror.org/04h60j158 Cancer Services Network'), (13766, 'https://ror.org/04h8dqz12', 'en', 1, 'https://ror.org/04h8dqz12 Mendocino County AIDS / Viral Hepatitis Network'), (13767, 'https://ror.org/04h8wfm32', 'no_lang_code', 1, 'https://ror.org/04h8wfm32 Custom Data (United States)'), (13768, 'https://ror.org/04h9w5w52', 'no_lang_code', 1, 'https://ror.org/04h9w5w52 LaVision (Germany)'), (13769, 'https://ror.org/04hd0yz67', 'en', 1, 'https://ror.org/04hd0yz67 Egyptian Atomic Energy Authority'), (13770, 'https://ror.org/04hemee20', 'en', 1, 'https://ror.org/04hemee20 Southwestern Indian Polytechnic Institute'), (13771, 'https://ror.org/04hgfx704', 'no_lang_code', 1, 'https://ror.org/04hgfx704 CuriRx (United States)'), (13772, 'https://ror.org/04hhk2180', 'no_lang_code', 1, 'https://ror.org/04hhk2180 Eurotech (Italy)'), (13773, 'https://ror.org/04hjd4w57', 'en', 1, 'https://ror.org/04hjd4w57 Odyssey School'), (13774, 'https://ror.org/04hje6078', 'no_lang_code', 1, 'https://ror.org/04hje6078 Neurosoft (Poland)'), (13775, 'https://ror.org/04hjhtb64', 'en', 1, 'https://ror.org/04hjhtb64 Elks Rehabilitation Hospital'), (13776, 'https://ror.org/04hm0cn69', 'no_lang_code', 1, 'https://ror.org/04hm0cn69 KLA (Israel)'), (13777, 'https://ror.org/04hm3xx61', 'en', 1, 'https://ror.org/04hm3xx61 Arkansas Prostate Cancer Foundation'), (13778, 'https://ror.org/04hm48b29', 'en', 1, 'https://ror.org/04hm48b29 Dublin Independent School District'), (13779, 'https://ror.org/04hma4w69', 'en', 1, 'https://ror.org/04hma4w69 Nemours Children''s Clinic'), (13780, 'https://ror.org/04hp0sd20', 'en', 1, 'https://ror.org/04hp0sd20 Mission Neighborhood Health Center'), (13781, 'https://ror.org/04hpxzg72', 'en', 1, 'https://ror.org/04hpxzg72 Kennebec Valley Community College'), (13782, 'https://ror.org/04hrwfn20', 'no_lang_code', 1, 'https://ror.org/04hrwfn20 Prover Technology (Sweden)'), (13783, 'https://ror.org/04hsm3t82', 'en', 1, 'https://ror.org/04hsm3t82 Gardner''s House'), (13784, 'https://ror.org/04hspfa12', 'en', 1, 'https://ror.org/04hspfa12 HYDROMOD Scientific Consulting'), (13785, 'https://ror.org/04hw25m76', 'en', 1, 'https://ror.org/04hw25m76 New Beginnings Community Center'), (13786, 'https://ror.org/04hwe7v53', 'en', 1, 'https://ror.org/04hwe7v53 Florida State Association of Rehabilitation Nurses'), (13787, 'https://ror.org/04hx2r306', 'en', 1, 'https://ror.org/04hx2r306 Eureka Scientific'), (13788, 'https://ror.org/04hxcbe86', 'no_lang_code', 1, 'https://ror.org/04hxcbe86 Transports Metropolitans de Barcelona (Spain)'), (13789, 'https://ror.org/04hxjnb06', 'en', 1, 'https://ror.org/04hxjnb06 VGB PowerTech'), (13790, 'https://ror.org/04hxmr882', 'no_lang_code', 1, 'https://ror.org/04hxmr882 Air Vehicle Integrated Design (United States)'), (13791, 'https://ror.org/04hxq4b52', 'en', 1, 'https://ror.org/04hxq4b52 London Borough of Southwark'), (13792, 'https://ror.org/04hxqsv25', 'en', 1, 'https://ror.org/04hxqsv25 American Forage and Grassland Council'), (13793, 'https://ror.org/04hxzf837', 'en', 1, 'https://ror.org/04hxzf837 ACTION'), (13794, 'https://ror.org/04j045513', 'en', 1, 'https://ror.org/04j045513 Foundation Medical Partners'), (13795, 'https://ror.org/04j2g1y38', 'en', 1, 'https://ror.org/04j2g1y38 California Hospital Association'), (13796, 'https://ror.org/04j4v6302', 'en', 1, 'https://ror.org/04j4v6302 Discovery Cube Orange County'), (13797, 'https://ror.org/04j65hp39', 'no_lang_code', 1, 'https://ror.org/04j65hp39 Nippon Sheet Glass (United Kingdom)'), (13798, 'https://ror.org/04j6nkt56', 'no_lang_code', 1, 'https://ror.org/04j6nkt56 Xylem (United States)'), (13799, 'https://ror.org/04j8vyy64', 'no_lang_code', 1, 'https://ror.org/04j8vyy64 Oahu Community Recycling (United States)'), (13800, 'https://ror.org/04ja3zh26', 'no_lang_code', 1, 'https://ror.org/04ja3zh26 NET Nowak Energie & Technologie (Switzerland)'), (13801, 'https://ror.org/04jbbj956', 'no_lang_code', 1, 'https://ror.org/04jbbj956 Element Energy (United Kingdom)'), (13802, 'https://ror.org/04jbqg756', 'en', 1, 'https://ror.org/04jbqg756 North Shore Pro Musica'), (13803, 'https://ror.org/04jd8q585', 'no_lang_code', 1, 'https://ror.org/04jd8q585 Assured Bio (United States)'), (13804, 'https://ror.org/04jf0dw52', 'en', 1, 'https://ror.org/04jf0dw52 Texoma Neurology Associates'), (13805, 'https://ror.org/04jgzeb83', 'en', 1, 'https://ror.org/04jgzeb83 National Association of E. E. Smith Alumni and Friends'), (13806, 'https://ror.org/04jh42846', 'en', 1, 'https://ror.org/04jh42846 North Central Florida Neurodiagnostic Services'), (13807, 'https://ror.org/04jjg7z32', 'en', 1, 'https://ror.org/04jjg7z32 Capital Caring'), (13808, 'https://ror.org/04jjzrj83', 'no_lang_code', 1, 'https://ror.org/04jjzrj83 TTTech Computertechnik (Austria)'), (13809, 'https://ror.org/04jnhp140', 'en', 1, 'https://ror.org/04jnhp140 Community Cancer Center'), (13810, 'https://ror.org/04jnxr720', 'en', 1, 'https://ror.org/04jnxr720 IBM Research - Ireland'), (13811, 'https://ror.org/04jppzq03', 'no_lang_code', 1, 'https://ror.org/04jppzq03 Fordesi (Portugal)'), (13812, 'https://ror.org/04jqjaf29', 'en', 1, 'https://ror.org/04jqjaf29 EspeRare Foundation'), (13813, 'https://ror.org/04jrn9514', 'en', 1, 'https://ror.org/04jrn9514 Access Northern California'), (13814, 'https://ror.org/04jrqsq40', 'en', 1, 'https://ror.org/04jrqsq40 Council on Alcohol and Drug Abuse Coastal Bend'), (13815, 'https://ror.org/04jtyp632', 'en', 1, 'https://ror.org/04jtyp632 Great Lakes Science Center'); INSERT INTO `rors` VALUES (13816, 'https://ror.org/04jv3db71', 'no_lang_code', 1, 'https://ror.org/04jv3db71 Quantalux (United States)'), (13817, 'https://ror.org/04jvbc359', 'no_lang_code', 1, 'https://ror.org/04jvbc359 Società Esercizi Aeroportuali (Italy)'), (13818, 'https://ror.org/04jvcky17', 'en', 1, 'https://ror.org/04jvcky17 Newport Festivals Foundation'), (13819, 'https://ror.org/04jxd1g84', 'en', 1, 'https://ror.org/04jxd1g84 Intractable Childhood Epilepsy Alliance'), (13820, 'https://ror.org/04jxgzk07', 'no_lang_code', 1, 'https://ror.org/04jxgzk07 Creative Scientist (United States)'), (13821, 'https://ror.org/04jyecv51', 'no_lang_code', 1, 'https://ror.org/04jyecv51 ViaSim Solutions'), (13822, 'https://ror.org/04jzh7r11', 'no_lang_code', 1, 'https://ror.org/04jzh7r11 NX PharmaGen (United States)'), (13823, 'https://ror.org/04k1x7866', 'en', 1, 'https://ror.org/04k1x7866 Metropolitan Detroit Research and Education Foundation'), (13824, 'https://ror.org/04k2bnr92', 'en', 1, 'https://ror.org/04k2bnr92 Plumas Rural Services'), (13825, 'https://ror.org/04k3tjf68', 'en', 1, 'https://ror.org/04k3tjf68 Sitka Sound Science Center'), (13826, 'https://ror.org/04k4qvz84', 'en', 1, 'https://ror.org/04k4qvz84 Poly Prep Country Day School'), (13827, 'https://ror.org/04k7cse40', 'en', 1, 'https://ror.org/04k7cse40 Project Empower'), (13828, 'https://ror.org/04k8j6m55', 'no_lang_code', 1, 'https://ror.org/04k8j6m55 Napo Pharmaceuticals (United States)'), (13829, 'https://ror.org/04k9qym02', 'en', 1, 'https://ror.org/04k9qym02 Patient Advocate Foundation'), (13830, 'https://ror.org/04kark913', 'no_lang_code', 1, 'https://ror.org/04kark913 MerLion Pharma (Germany)'), (13831, 'https://ror.org/04kd24b32', 'en', 1, 'https://ror.org/04kd24b32 Active Disabled Americans'), (13832, 'https://ror.org/04kd66c62', 'no_lang_code', 1, 'https://ror.org/04kd66c62 Blueroof Technologies (United States)'), (13833, 'https://ror.org/04keapj48', 'en', 1, 'https://ror.org/04keapj48 Durham County Department of Public Health'), (13834, 'https://ror.org/04kf71z43', 'no_lang_code', 1, 'https://ror.org/04kf71z43 Mitsubishi Electric (Netherlands)'), (13835, 'https://ror.org/04kfv4779', 'no_lang_code', 1, 'https://ror.org/04kfv4779 Elyros (Belgium)'), (13836, 'https://ror.org/04khvrj77', 'en', 1, 'https://ror.org/04khvrj77 Land Stewardship Project'), (13837, 'https://ror.org/04kjecg97', 'no_lang_code', 1, 'https://ror.org/04kjecg97 TransGenada (United States)'), (13838, 'https://ror.org/04kmmsx80', 'no_lang_code', 1, 'https://ror.org/04kmmsx80 Coastside Bio Resources (United States)'), (13839, 'https://ror.org/04kn0h737', 'no_lang_code', 1, 'https://ror.org/04kn0h737 BlueSky Designs (United States)'), (13840, 'https://ror.org/04kq8yw60', 'en', 1, 'https://ror.org/04kq8yw60 Asian Services In Action'), (13841, 'https://ror.org/04kqb8t43', 'en', 1, 'https://ror.org/04kqb8t43 Living Classrooms'), (13842, 'https://ror.org/04ks41483', 'en', 1, 'https://ror.org/04ks41483 Ability Found'), (13843, 'https://ror.org/04ks4f885', 'en', 1, 'https://ror.org/04ks4f885 Nueva Vida'), (13844, 'https://ror.org/04kwbxb88', 'no_lang_code', 1, 'https://ror.org/04kwbxb88 Cambridge CMOS Sensors (United Kingdom)'), (13845, 'https://ror.org/04kwcw734', 'no_lang_code', 1, 'https://ror.org/04kwcw734 Ingenieurbüro Kleehammer Gruppe (Germany)'), (13846, 'https://ror.org/04kwmb779', 'no_lang_code', 1, 'https://ror.org/04kwmb779 Serious Games Interactive (Denmark)'), (13847, 'https://ror.org/04kwv2n58', 'no_lang_code', 1, 'https://ror.org/04kwv2n58 Airborne International (Netherlands)'), (13848, 'https://ror.org/04kxnk485', 'no_lang_code', 1, 'https://ror.org/04kxnk485 CropDesign (Belgium)'), (13849, 'https://ror.org/04kz2nv03', 'fr', 1, 'https://ror.org/04kz2nv03 Société Française de Céramique'), (13850, 'https://ror.org/04kz5k469', 'it', 1, 'https://ror.org/04kz5k469 Azienda Sanitaria Locale N. 2 Savonese'), (13851, 'https://ror.org/04m0t0a79', 'pt', 1, 'https://ror.org/04m0t0a79 Promundo'), (13852, 'https://ror.org/04m0xav37', 'en', 1, 'https://ror.org/04m0xav37 Leukemia and Lymphoma Society'), (13853, 'https://ror.org/04m1cey27', 'no_lang_code', 1, 'https://ror.org/04m1cey27 Privo Technologies (United States)'), (13854, 'https://ror.org/04m21fy21', 'en', 1, 'https://ror.org/04m21fy21 Broward County Public Schools'), (13855, 'https://ror.org/04m4eyr93', 'en', 1, 'https://ror.org/04m4eyr93 Institute of Soil Science “Nikola Poushkarov” ИНСТИТУТ ПО ПОЧВОЗНАНИЕ "НИКОЛА ПУШКАРОВ"'), (13856, 'https://ror.org/04m65e260', 'no_lang_code', 1, 'https://ror.org/04m65e260 Micronic Technologies (United States)'), (13857, 'https://ror.org/04m7y9d03', 'en', 1, 'https://ror.org/04m7y9d03 Freedom to Live'), (13858, 'https://ror.org/04m8h4d24', 'no_lang_code', 1, 'https://ror.org/04m8h4d24 SpaceWorks Enterprises (United States)'), (13859, 'https://ror.org/04masjv69', 'en', 1, 'https://ror.org/04masjv69 Harry Gregg Foundation'), (13860, 'https://ror.org/04md0t587', 'no_lang_code', 1, 'https://ror.org/04md0t587 NanoWorld Services (Germany)'), (13861, 'https://ror.org/04mdy5m11', 'en', 1, 'https://ror.org/04mdy5m11 Our Bodies Ourselves'), (13862, 'https://ror.org/04mezn076', 'no_lang_code', 1, 'https://ror.org/04mezn076 Avecia (United Kingdom)'), (13863, 'https://ror.org/04mjy3g97', 'en', 1, 'https://ror.org/04mjy3g97 Amsterdam Economic Board'), (13864, 'https://ror.org/04mmty540', 'no_lang_code', 1, 'https://ror.org/04mmty540 HW Communications (United Kingdom)'), (13865, 'https://ror.org/04mngjf23', 'no_lang_code', 1, 'https://ror.org/04mngjf23 Hellenic Aerospace Industry (Greece) Ελληνική Αεροπορική Βιομηχανία'), (13866, 'https://ror.org/04mpvdf36', 'no_lang_code', 1, 'https://ror.org/04mpvdf36 Enerdata (France)'), (13867, 'https://ror.org/04mq1ck21', 'no_lang_code', 1, 'https://ror.org/04mq1ck21 North West Textiles Network (United Kingdom)'), (13868, 'https://ror.org/04mteaa42', 'en', 1, 'https://ror.org/04mteaa42 Rebuilding Together NYC'), (13869, 'https://ror.org/04mv7q109', 'no_lang_code', 1, 'https://ror.org/04mv7q109 HEAD Acoustics (Germany)'), (13870, 'https://ror.org/04mxmbg88', 'en', 1, 'https://ror.org/04mxmbg88 Farmers Legal Action Group'), (13871, 'https://ror.org/04my1rt02', 'en', 1, 'https://ror.org/04my1rt02 Cancer Institute of Florida'), (13872, 'https://ror.org/04mybzy26', 'en', 1, 'https://ror.org/04mybzy26 Vienna Institute for International Economic Studies Wiener Institut für Internationale Wirtschaftsvergleiche'), (13873, 'https://ror.org/04myc6802', 'no_lang_code', 1, 'https://ror.org/04myc6802 Rubicon Foods (United States)'), (13874, 'https://ror.org/04mz6rz07', 'en', 1, 'https://ror.org/04mz6rz07 North Shore Animal League America'), (13875, 'https://ror.org/04mza7j60', 'en', 1, 'https://ror.org/04mza7j60 Lucia''s Angels'), (13876, 'https://ror.org/04mzbw652', 'no_lang_code', 1, 'https://ror.org/04mzbw652 Ariadne Diagnostics (United States)'), (13877, 'https://ror.org/04n1ywh56', 'no_lang_code', 1, 'https://ror.org/04n1ywh56 Mutadis'), (13878, 'https://ror.org/04n2m2v25', 'en', 1, 'https://ror.org/04n2m2v25 New England Handicapped Sports Association'), (13879, 'https://ror.org/04n3eme41', 'no_lang_code', 1, 'https://ror.org/04n3eme41 Saniona (Denmark)'), (13880, 'https://ror.org/04n5j4q40', 'no_lang_code', 1, 'https://ror.org/04n5j4q40 CPL Scientific Publishing Services (United Kingdom)'), (13881, 'https://ror.org/04n728n34', 'no_lang_code', 1, 'https://ror.org/04n728n34 Q-Biologicals (Belgium)'), (13882, 'https://ror.org/04n831v95', 'en', 1, 'https://ror.org/04n831v95 Interdisciplinary Centre for Comparative Research Foundation'), (13883, 'https://ror.org/04n8fbz89', 'no_lang_code', 1, 'https://ror.org/04n8fbz89 AstraZeneca (Canada)'), (13884, 'https://ror.org/04n8tjj02', 'en', 1, 'https://ror.org/04n8tjj02 Mineral Industry Research Organisation'), (13885, 'https://ror.org/04n8w0w18', 'en', 1, 'https://ror.org/04n8w0w18 Agency of Sustainable Development and Eurointegration'), (13886, 'https://ror.org/04n9mpx29', 'no_lang_code', 1, 'https://ror.org/04n9mpx29 IP Israel Patents (Israel)'), (13887, 'https://ror.org/04n9t5970', 'en', 1, 'https://ror.org/04n9t5970 Ministry of Digital Governance Υπουργείο Ψηφιακής Διακυβέρνησης'), (13888, 'https://ror.org/04nadpw56', 'no_lang_code', 1, 'https://ror.org/04nadpw56 Nanoplus (Germany)'), (13889, 'https://ror.org/04nb1d674', 'no_lang_code', 1, 'https://ror.org/04nb1d674 ArtHaus (Macedonia)'), (13890, 'https://ror.org/04nd0kv93', 'no_lang_code', 1, 'https://ror.org/04nd0kv93 Roughan & O''Donovan Innovative Solutions'), (13891, 'https://ror.org/04nd20z29', 'en', 1, 'https://ror.org/04nd20z29 Community Cancer Services'), (13892, 'https://ror.org/04ndvz759', 'en', 1, 'https://ror.org/04ndvz759 Livestrong Foundation'), (13893, 'https://ror.org/04neva792', 'en', 1, 'https://ror.org/04neva792 Atlantic Cancer Research Institute Institut Atlantique de recherche sur le cancer'), (13894, 'https://ror.org/04nff2163', 'no_lang_code', 1, 'https://ror.org/04nff2163 GKN (Sweden)'), (13895, 'https://ror.org/04ng7mq07', 'en', 1, 'https://ror.org/04ng7mq07 Pathways'), (13896, 'https://ror.org/04nhfy784', 'no_lang_code', 1, 'https://ror.org/04nhfy784 ProCrysta Biologix (United States)'), (13897, 'https://ror.org/04nhhrw79', 'no_lang_code', 1, 'https://ror.org/04nhhrw79 Youris.com (Belgium)'), (13898, 'https://ror.org/04nkbtf36', 'en', 1, 'https://ror.org/04nkbtf36 Southwest Georgia Project for Community Education'), (13899, 'https://ror.org/04nkhj168', 'en', 1, 'https://ror.org/04nkhj168 Leaps of Faith Adaptive Skiers'), (13900, 'https://ror.org/04nmkrt20', 'en', 1, 'https://ror.org/04nmkrt20 Canine Assistants'), (13901, 'https://ror.org/04npd6384', 'en', 1, 'https://ror.org/04npd6384 Harris County Department of Education'), (13902, 'https://ror.org/04npj6h08', 'en', 1, 'https://ror.org/04npj6h08 Association of Pediatric Hematology/Oncology Nurses'), (13903, 'https://ror.org/04npkmp39', 'en', 1, 'https://ror.org/04npkmp39 Empower Spinal Cord Injury'), (13904, 'https://ror.org/04nq17x65', 'en', 1, 'https://ror.org/04nq17x65 Bioethics International'), (13905, 'https://ror.org/04nqwjy64', 'en', 1, 'https://ror.org/04nqwjy64 Rehabilitation Institute of Michigan'), (13906, 'https://ror.org/04nstae51', 'en', 1, 'https://ror.org/04nstae51 Charlotte-Mecklenburg Schools'), (13907, 'https://ror.org/04nt88t73', 'en', 1, 'https://ror.org/04nt88t73 PNA Center for Neurological Research'), (13908, 'https://ror.org/04nw2yg41', 'en', 1, 'https://ror.org/04nw2yg41 Planting Justice'), (13909, 'https://ror.org/04nxjmy70', 'en', 1, 'https://ror.org/04nxjmy70 Possible Health'), (13910, 'https://ror.org/04nypah87', 'no_lang_code', 1, 'https://ror.org/04nypah87 SCM Group (Italy)'), (13911, 'https://ror.org/04nzdnk52', 'en', 1, 'https://ror.org/04nzdnk52 Restorix Health'), (13912, 'https://ror.org/04p0syp05', 'en', 1, 'https://ror.org/04p0syp05 Alzheimer''s Disease Association of the Philippines'), (13913, 'https://ror.org/04p1hy645', 'no_lang_code', 1, 'https://ror.org/04p1hy645 FluGen (United States)'), (13914, 'https://ror.org/04p457x22', 'en', 1, 'https://ror.org/04p457x22 Brevard College'), (13915, 'https://ror.org/04p5awn87', 'en', 1, 'https://ror.org/04p5awn87 All Star Volleyball Association'), (13916, 'https://ror.org/04p6jwd33', 'no_lang_code', 1, 'https://ror.org/04p6jwd33 Fate Therapeutics (United States)'), (13917, 'https://ror.org/04p71yx79', 'no_lang_code', 1, 'https://ror.org/04p71yx79 Mermayde'), (13918, 'https://ror.org/04p7ekn23', 'de', 1, 'https://ror.org/04p7ekn23 Westfälische Hochschule'), (13919, 'https://ror.org/04p98z790', 'no_lang_code', 1, 'https://ror.org/04p98z790 Neovision (Czechia)'), (13920, 'https://ror.org/04patbs64', 'en', 1, 'https://ror.org/04patbs64 Lakeshore Foundation'), (13921, 'https://ror.org/04pb97k73', 'no_lang_code', 1, 'https://ror.org/04pb97k73 Hewlett-Packard (Germany)'), (13922, 'https://ror.org/04phr2832', 'no_lang_code', 1, 'https://ror.org/04phr2832 DLF Trifolium (Denmark)'), (13923, 'https://ror.org/04pjjk226', 'no_lang_code', 1, 'https://ror.org/04pjjk226 Prove IT (United States)'), (13924, 'https://ror.org/04pjxxd64', 'en', 1, 'https://ror.org/04pjxxd64 Alaska Neurology Center'), (13925, 'https://ror.org/04pmfqr73', 'en', 1, 'https://ror.org/04pmfqr73 Heifer International'), (13926, 'https://ror.org/04pp26y21', 'en', 1, 'https://ror.org/04pp26y21 Healthy Start Coalition of Flagler & Volusia Counties'), (13927, 'https://ror.org/04pphg116', 'no_lang_code', 1, 'https://ror.org/04pphg116 c-LEcta (Germany)'), (13928, 'https://ror.org/04pq0yg77', 'en', 1, 'https://ror.org/04pq0yg77 Cape Cod Healthcare'), (13929, 'https://ror.org/04prt7y25', 'en', 1, 'https://ror.org/04prt7y25 Florida Alliance for Assistive Services and Technology'), (13930, 'https://ror.org/04psxdg29', 'no_lang_code', 1, 'https://ror.org/04psxdg29 Mesaphotonics (United States)'), (13931, 'https://ror.org/04pt1wy33', 'no_lang_code', 1, 'https://ror.org/04pt1wy33 Nor-tek'), (13932, 'https://ror.org/04pvpzj22', 'no_lang_code', 1, 'https://ror.org/04pvpzj22 Meyer Werft (Germany)'), (13933, 'https://ror.org/04pw6fb54', 'en', 1, 'https://ror.org/04pw6fb54 National Center for Advancing Translational Sciences'), (13934, 'https://ror.org/04pwrsp25', 'no_lang_code', 1, 'https://ror.org/04pwrsp25 NetComposites (United Kingdom)'), (13935, 'https://ror.org/04pxgkb44', 'en', 1, 'https://ror.org/04pxgkb44 Hudson Valley Youth Chorale'), (13936, 'https://ror.org/04q0ja294', 'en', 1, 'https://ror.org/04q0ja294 Covenant Health System'), (13937, 'https://ror.org/04q2rtc89', 'en', 1, 'https://ror.org/04q2rtc89 CliniWorks'), (13938, 'https://ror.org/04q2w0g82', 'en', 1, 'https://ror.org/04q2w0g82 Glenville State College'), (13939, 'https://ror.org/04q33xf47', 'en', 1, 'https://ror.org/04q33xf47 Active Transportation Alliance'), (13940, 'https://ror.org/04q4z6j92', 'en', 1, 'https://ror.org/04q4z6j92 American Society of Plastic Surgeons'), (13941, 'https://ror.org/04q5hjb22', 'no_lang_code', 1, 'https://ror.org/04q5hjb22 R.U.Robots (United Kingdom)'), (13942, 'https://ror.org/04q6x6869', 'no_lang_code', 1, 'https://ror.org/04q6x6869 APC Composite (Sweden)'), (13943, 'https://ror.org/04q71jj82', 'en', 1, 'https://ror.org/04q71jj82 Institute for Development, Research, Advocacy and Applied Care'), (13944, 'https://ror.org/04q8hbr41', 'no_lang_code', 1, 'https://ror.org/04q8hbr41 Noblis'), (13945, 'https://ror.org/04q8q8x21', 'en', 1, 'https://ror.org/04q8q8x21 Jacob''s Heart Children''s Cancer Support Services'), (13946, 'https://ror.org/04q8sg180', 'en', 1, 'https://ror.org/04q8sg180 Neurology Centers of the Carolinas'), (13947, 'https://ror.org/04q9w3z30', 'no_lang_code', 1, 'https://ror.org/04q9w3z30 Siemens (France)'), (13948, 'https://ror.org/04qav7246', 'no_lang_code', 1, 'https://ror.org/04qav7246 Vuje (Slovakia)'), (13949, 'https://ror.org/04qcrp855', 'no_lang_code', 1, 'https://ror.org/04qcrp855 Andritz (Switzerland)'), (13950, 'https://ror.org/04qd0gm75', 'es', 1, 'https://ror.org/04qd0gm75 Institut de Cultura de Barcelona'), (13951, 'https://ror.org/04qd5p107', 'no_lang_code', 1, 'https://ror.org/04qd5p107 ALTA (Italy)'), (13952, 'https://ror.org/04qegdw32', 'en', 1, 'https://ror.org/04qegdw32 Brevard Public Schools'), (13953, 'https://ror.org/04qg5nd35', 'en', 1, 'https://ror.org/04qg5nd35 Northwest Florida Hematology Oncology'), (13954, 'https://ror.org/04qh6x362', 'en', 1, 'https://ror.org/04qh6x362 Community Assistance Network'), (13955, 'https://ror.org/04qhpt968', 'no_lang_code', 1, 'https://ror.org/04qhpt968 Applied Food Technologies (United States)'), (13956, 'https://ror.org/04qj9wg75', 'en', 1, 'https://ror.org/04qj9wg75 St. Joseph’s Children’s Hospital'), (13957, 'https://ror.org/04qjbd269', 'en', 1, 'https://ror.org/04qjbd269 Focused Ultrasound Foundation'), (13958, 'https://ror.org/04qkdt303', 'en', 1, 'https://ror.org/04qkdt303 New York Public Radio'), (13959, 'https://ror.org/04qkg4668', 'en', 1, 'https://ror.org/04qkg4668 Centre for the AIDS Programme of Research in South Africa'), (13960, 'https://ror.org/04qn4s704', 'en', 1, 'https://ror.org/04qn4s704 Arizona Disabled Sports'), (13961, 'https://ror.org/04qparf31', 'no_lang_code', 1, 'https://ror.org/04qparf31 Domtar (United States)'), (13962, 'https://ror.org/04qvzh720', 'en', 1, 'https://ror.org/04qvzh720 Bassett Healthcare Network'), (13963, 'https://ror.org/04qw4yn54', 'en', 1, 'https://ror.org/04qw4yn54 Mothers’ Milk Bank'), (13964, 'https://ror.org/04qwf0633', 'no_lang_code', 1, 'https://ror.org/04qwf0633 Spectrum Brands (Germany)'), (13965, 'https://ror.org/04qxbzf60', 'en', 1, 'https://ror.org/04qxbzf60 Helen Keller International'), (13966, 'https://ror.org/04r0k9g65', 'no_lang_code', 1, 'https://ror.org/04r0k9g65 Brockmann Consult (Germany)'), (13967, 'https://ror.org/04r0s0t24', 'en', 1, 'https://ror.org/04r0s0t24 NeuroDevNet'), (13968, 'https://ror.org/04r1s2546', 'en', 1, 'https://ror.org/04r1s2546 Agricultural Research Council of South Africa'), (13969, 'https://ror.org/04r74gg67', 'en', 1, 'https://ror.org/04r74gg67 Neil Squire Society'), (13970, 'https://ror.org/04r8nkv53', 'en', 1, 'https://ror.org/04r8nkv53 Rising Ground'), (13971, 'https://ror.org/04r8v5t40', 'en', 1, 'https://ror.org/04r8v5t40 Not-Me!'), (13972, 'https://ror.org/04rcnty73', 'en', 1, 'https://ror.org/04rcnty73 Chinese Community Health Resource Center'), (13973, 'https://ror.org/04re20p56', 'no_lang_code', 1, 'https://ror.org/04re20p56 Acetylon Pharmaceuticals (United States)'), (13974, 'https://ror.org/04rfz4f93', 'no_lang_code', 1, 'https://ror.org/04rfz4f93 Quasar Energy Group (United States)'), (13975, 'https://ror.org/04rg3kp21', 'en', 1, 'https://ror.org/04rg3kp21 Adirondack Mountain Club'), (13976, 'https://ror.org/04rh36p62', 'en', 1, 'https://ror.org/04rh36p62 Chapel Hill Carrboro City Schools'), (13977, 'https://ror.org/04rkt6002', 'en', 1, 'https://ror.org/04rkt6002 Cancer Survivors'' Fund'), (13978, 'https://ror.org/04rmgk816', 'no_lang_code', 1, 'https://ror.org/04rmgk816 Skanska (Norway)'), (13979, 'https://ror.org/04rnc2b13', 'en', 1, 'https://ror.org/04rnc2b13 Citizens of Lake County for Health Care'), (13980, 'https://ror.org/04rndy785', 'no_lang_code', 1, 'https://ror.org/04rndy785 Arqtech Laboratories (Ireland)'), (13981, 'https://ror.org/04rv9a088', 'en', 1, 'https://ror.org/04rv9a088 Singularity University Universidad de la Singularidad'), (13982, 'https://ror.org/04rvc0m17', 'no_lang_code', 1, 'https://ror.org/04rvc0m17 Lewin Group (United States)'), (13983, 'https://ror.org/04rvyn674', 'no_lang_code', 1, 'https://ror.org/04rvyn674 Energiewerke Nord (Germany)'), (13984, 'https://ror.org/04rxd8128', 'en', 1, 'https://ror.org/04rxd8128 Children''s Cancer Center'), (13985, 'https://ror.org/04ry56g70', 'no_lang_code', 1, 'https://ror.org/04ry56g70 MetronomX (United States)'), (13986, 'https://ror.org/04ryqpf83', 'no_lang_code', 1, 'https://ror.org/04ryqpf83 Valeo (France)'), (13987, 'https://ror.org/04rz4wy72', 'no_lang_code', 1, 'https://ror.org/04rz4wy72 Humanetics (Germany)'), (13988, 'https://ror.org/04rzss152', 'no_lang_code', 1, 'https://ror.org/04rzss152 NewGen Therapeutics (United States)'), (13989, 'https://ror.org/04rzw7a06', 'en', 1, 'https://ror.org/04rzw7a06 Tavistock Institute'), (13990, 'https://ror.org/04s0hh912', 'de', 1, 'https://ror.org/04s0hh912 Medien- und Filmgesellschaft Baden-Württemberg'), (13991, 'https://ror.org/04s0yt949', 'en', 1, 'https://ror.org/04s0yt949 Turku University of Applied Sciences Turun ammattikorkeakoulu Åbo yrkeshögskola'), (13992, 'https://ror.org/04s1anr92', 'no_lang_code', 1, 'https://ror.org/04s1anr92 Innova (Italy)'), (13993, 'https://ror.org/04s786x31', 'no_lang_code', 1, 'https://ror.org/04s786x31 Enercon (Germany)'), (13994, 'https://ror.org/04saw1818', 'en', 1, 'https://ror.org/04saw1818 National Ambucs'), (13995, 'https://ror.org/04sawzq03', 'en', 1, 'https://ror.org/04sawzq03 Howard County Health Department'), (13996, 'https://ror.org/04sazxf24', 'en', 1, 'https://ror.org/04sazxf24 Israel Science Foundation'), (13997, 'https://ror.org/04scst564', 'de', 1, 'https://ror.org/04scst564 Institut für Seeverkehrswirtschaft und Logistik Institute of Shipping Economics and Logistics'), (13998, 'https://ror.org/04sej8624', 'en', 1, 'https://ror.org/04sej8624 Beaufort Memorial Hospital'), (13999, 'https://ror.org/04sh23172', 'no_lang_code', 1, 'https://ror.org/04sh23172 Syndesis (Greece)'), (14000, 'https://ror.org/04sjpp691', 'en', 1, 'https://ror.org/04sjpp691 National Museums of Kenya'), (14001, 'https://ror.org/04smdqx37', 'it', 1, 'https://ror.org/04smdqx37 Fondazione IRET ONLUS'), (14002, 'https://ror.org/04smrs866', 'en', 1, 'https://ror.org/04smrs866 Institute of Neurobiology and Molecular Medicine Istituto di Neurobiologia e Medicina Molecolare'), (14003, 'https://ror.org/04smw2r26', 'en', 1, 'https://ror.org/04smw2r26 Prescott Center for the Arts'), (14004, 'https://ror.org/04spj3m21', 'en', 1, 'https://ror.org/04spj3m21 Durham Public Schools'), (14005, 'https://ror.org/04spsbn56', 'en', 1, 'https://ror.org/04spsbn56 Wayne County Public Schools'), (14006, 'https://ror.org/04srfff60', 'en', 1, 'https://ror.org/04srfff60 Kanzius Cancer Research Foundation'), (14007, 'https://ror.org/04ss55z27', 'fr', 1, 'https://ror.org/04ss55z27 Observatoire des énergies renouvelables Observatory of renewable energies'), (14008, 'https://ror.org/04sx1sj77', 'es', 1, 'https://ror.org/04sx1sj77 Boletín Oficial del Estado Official State Gazette'), (14009, 'https://ror.org/04sx28p80', 'en', 1, 'https://ror.org/04sx28p80 Hephzibah Children’s Association'), (14010, 'https://ror.org/04sxrc563', 'en', 1, 'https://ror.org/04sxrc563 Conversations! The International Ovarian Cancer Connection'), (14011, 'https://ror.org/04sy3ks71', 'en', 1, 'https://ror.org/04sy3ks71 KISS Institute for Practical Robotics'), (14012, 'https://ror.org/04sy6z157', 'no_lang_code', 1, 'https://ror.org/04sy6z157 Innovative Technology and Science (United Kingdom)'), (14013, 'https://ror.org/04sz0rs34', 'en', 1, 'https://ror.org/04sz0rs34 Erlanger Health System'), (14014, 'https://ror.org/04sz6k684', 'en', 1, 'https://ror.org/04sz6k684 Lincoln Fencing Club'), (14015, 'https://ror.org/04t1f4f50', 'no_lang_code', 1, 'https://ror.org/04t1f4f50 Swisscom (Switzerland)'), (14016, 'https://ror.org/04t36th80', 'en', 1, 'https://ror.org/04t36th80 Hiller Aviation Museum'), (14017, 'https://ror.org/04t4q4w41', 'en', 1, 'https://ror.org/04t4q4w41 Worshipful Society of Apothecaries'), (14018, 'https://ror.org/04t71a559', 'en', 1, 'https://ror.org/04t71a559 Colorado Foundation for Agriculture'), (14019, 'https://ror.org/04t99fj98', 'en', 1, 'https://ror.org/04t99fj98 CentraCare Health System'), (14020, 'https://ror.org/04t9k7852', 'en', 1, 'https://ror.org/04t9k7852 Autism Partnership Foundation'), (14021, 'https://ror.org/04tah4m03', 'en', 1, 'https://ror.org/04tah4m03 Sustainable Agriculture Education'), (14022, 'https://ror.org/04tbtbw37', 'no_lang_code', 1, 'https://ror.org/04tbtbw37 Forschungs- und Technologietransfer (Austria)'), (14023, 'https://ror.org/04tbz4c44', 'no_lang_code', 1, 'https://ror.org/04tbz4c44 Remote Sensing Solutions (United States)'), (14024, 'https://ror.org/04tcsp154', 'no_lang_code', 1, 'https://ror.org/04tcsp154 Technology Transfer System (Italy)'), (14025, 'https://ror.org/04tfjah29', 'en', 1, 'https://ror.org/04tfjah29 Limnological Institute Федеральное государственное бюджетное учреждение науки Лимнологический институт Сибирского отделения Российской академии наук (ЛИН СО РАН)'), (14026, 'https://ror.org/04thj7y95', 'en', 1, 'https://ror.org/04thj7y95 Department of Public Health'), (14027, 'https://ror.org/04thxh256', 'en', 1, 'https://ror.org/04thxh256 Center for the Study of Healthcare Provider Behavior'), (14028, 'https://ror.org/04tjnpy66', 'no_lang_code', 1, 'https://ror.org/04tjnpy66 Datastar (United States)'), (14029, 'https://ror.org/04tm1j008', 'no_lang_code', 1, 'https://ror.org/04tm1j008 Saint Onge Orchids (United States)'), (14030, 'https://ror.org/04tpatx34', 'en', 1, 'https://ror.org/04tpatx34 The Epsilon Group'), (14031, 'https://ror.org/04tpvq080', 'en', 1, 'https://ror.org/04tpvq080 Russian Technology Transfer Network'), (14032, 'https://ror.org/04tpy3f14', 'pt', 1, 'https://ror.org/04tpy3f14 Hospital Adventista Silvestre'), (14033, 'https://ror.org/04tq1ka44', 'no_lang_code', 1, 'https://ror.org/04tq1ka44 Kite Solutions (Italy)'), (14034, 'https://ror.org/04tr57w63', 'no_lang_code', 1, 'https://ror.org/04tr57w63 Ericsson (Spain)'), (14035, 'https://ror.org/04ts0w644', 'en', 1, 'https://ror.org/04ts0w644 Joe DiMaggio Children''s Hospital'), (14036, 'https://ror.org/04tst3481', 'no_lang_code', 1, 'https://ror.org/04tst3481 Hadassah'), (14037, 'https://ror.org/04ttrjn35', 'en', 1, 'https://ror.org/04ttrjn35 The Center on Colfax'), (14038, 'https://ror.org/04tv16z87', 'en', 1, 'https://ror.org/04tv16z87 Habitat for Humanity Fiji'), (14039, 'https://ror.org/04v0ewv31', 'en', 1, 'https://ror.org/04v0ewv31 Asian Health Services'), (14040, 'https://ror.org/04v2brz27', 'en', 1, 'https://ror.org/04v2brz27 MODUL University Vienna'), (14041, 'https://ror.org/04v2rez45', 'no_lang_code', 1, 'https://ror.org/04v2rez45 MC2 Therapeutics (Denmark)'), (14042, 'https://ror.org/04v46qt86', 'no_lang_code', 1, 'https://ror.org/04v46qt86 Intezyne (United States)'), (14043, 'https://ror.org/04v566e62', 'no_lang_code', 1, 'https://ror.org/04v566e62 Netronix (United States)'), (14044, 'https://ror.org/04v5zxc18', 'no_lang_code', 1, 'https://ror.org/04v5zxc18 geniaLab (Germany)'), (14045, 'https://ror.org/04v6x2017', 'no_lang_code', 1, 'https://ror.org/04v6x2017 Aquaplus (Belgium)'), (14046, 'https://ror.org/04v7m2q05', 'en', 1, 'https://ror.org/04v7m2q05 Crosswinds Equine Rescue'), (14047, 'https://ror.org/04vaqkg10', 'en', 1, 'https://ror.org/04vaqkg10 The Bretton Woods Committee'), (14048, 'https://ror.org/04vb68v58', 'no_lang_code', 1, 'https://ror.org/04vb68v58 Spacebel (Belgium)'), (14049, 'https://ror.org/04vbcf629', 'en', 1, 'https://ror.org/04vbcf629 Friends of North Carolina Public Libraries'), (14050, 'https://ror.org/04vbenz24', 'de', 1, 'https://ror.org/04vbenz24 Sächsisches Textilforschungsinstitut'), (14051, 'https://ror.org/04vbpaq02', 'no_lang_code', 1, 'https://ror.org/04vbpaq02 Sairem (France)'), (14052, 'https://ror.org/04vcs1h64', 'no_lang_code', 1, 'https://ror.org/04vcs1h64 Brandtex (Denmark)'), (14053, 'https://ror.org/04vdj0y48', 'en', 1, 'https://ror.org/04vdj0y48 Access Living'), (14054, 'https://ror.org/04vedy547', 'no_lang_code', 1, 'https://ror.org/04vedy547 Tp21 (Germany)'), (14055, 'https://ror.org/04vga2d07', 'it', 1, 'https://ror.org/04vga2d07 Centro Internazionale Studi Diabete'), (14056, 'https://ror.org/04vjg0a23', 'en', 1, 'https://ror.org/04vjg0a23 National Center for Learning Disabilities'), (14057, 'https://ror.org/04vkg5n49', 'no_lang_code', 1, 'https://ror.org/04vkg5n49 Tre Altamira (Spain)'), (14058, 'https://ror.org/04vmfsf12', 'no_lang_code', 1, 'https://ror.org/04vmfsf12 AML Superconductivity and Magnetics (United States)'), (14059, 'https://ror.org/04vr0gs97', 'en', 1, 'https://ror.org/04vr0gs97 Institute for Political Sciences MTA Társadalomtudományi Kutatóközpont Politikatudományi Intézet'), (14060, 'https://ror.org/04vrtfy40', 'en', 1, 'https://ror.org/04vrtfy40 Global Ministries'), (14061, 'https://ror.org/04vry6637', 'no_lang_code', 1, 'https://ror.org/04vry6637 Mississippi Delta Council for Farm Worker Opportunities'), (14062, 'https://ror.org/04vswev69', 'no_lang_code', 1, 'https://ror.org/04vswev69 Cato BioVentures (United States)'), (14063, 'https://ror.org/04vtmen79', 'es', 1, 'https://ror.org/04vtmen79 CECOLFES'), (14064, 'https://ror.org/04vtrfw90', 'en', 1, 'https://ror.org/04vtrfw90 Cleveland County Schools'), (14065, 'https://ror.org/04vv43q89', 'no_lang_code', 1, 'https://ror.org/04vv43q89 Ericsson (Finland)'), (14066, 'https://ror.org/04vvrxd09', 'en', 1, 'https://ror.org/04vvrxd09 Weeksville Heritage Center'), (14067, 'https://ror.org/04vx9dd09', 'no_lang_code', 1, 'https://ror.org/04vx9dd09 Lego (Denmark)'), (14068, 'https://ror.org/04vxc1c96', 'no_lang_code', 1, 'https://ror.org/04vxc1c96 United Technologies Research Center'), (14069, 'https://ror.org/04vy5hg27', 'no_lang_code', 1, 'https://ror.org/04vy5hg27 Cryogenic Industries (United States)'), (14070, 'https://ror.org/04vz7v009', 'en', 1, 'https://ror.org/04vz7v009 Exploreum Science Center'), (14071, 'https://ror.org/04w3cpz93', 'en', 1, 'https://ror.org/04w3cpz93 Grant A Wish'), (14072, 'https://ror.org/04w4k4155', 'no_lang_code', 1, 'https://ror.org/04w4k4155 Hövding (Sweden)'), (14073, 'https://ror.org/04w57r136', 'en', 1, 'https://ror.org/04w57r136 First Nations Development Institute'), (14074, 'https://ror.org/04w5mc055', 'en', 1, 'https://ror.org/04w5mc055 Global Health Research Center of Central Asia'), (14075, 'https://ror.org/04w5tkp91', 'no_lang_code', 1, 'https://ror.org/04w5tkp91 CINAR (United Kingdom)'), (14076, 'https://ror.org/04w5z8h61', 'en', 1, 'https://ror.org/04w5z8h61 Adventist HealthCare Rehabilitation'), (14077, 'https://ror.org/04w634n76', 'en', 1, 'https://ror.org/04w634n76 American Youth Soccer Organization'), (14078, 'https://ror.org/04w702289', 'no_lang_code', 1, 'https://ror.org/04w702289 Siemens (Belgium)'), (14079, 'https://ror.org/04w7t8545', 'en', 1, 'https://ror.org/04w7t8545 Contra Costa County Office of Education'), (14080, 'https://ror.org/04w9kkr77', 'en', 1, 'https://ror.org/04w9kkr77 Scientific and Technological Research Council of Turkey Türkiyə Elmi və Texnoloji Tədqiqat Şurası'), (14081, 'https://ror.org/04waxxs70', 'en', 1, 'https://ror.org/04waxxs70 Carnegie Hill Neighbors'), (14082, 'https://ror.org/04wd3dx51', 'no_lang_code', 1, 'https://ror.org/04wd3dx51 Compagnie Industrielle d''Applications Thermiques (France)'), (14083, 'https://ror.org/04wdcx151', 'en', 1, 'https://ror.org/04wdcx151 Northern Research Institute'), (14084, 'https://ror.org/04wdqjx17', 'no_lang_code', 1, 'https://ror.org/04wdqjx17 Diagenode (Belgium)'), (14085, 'https://ror.org/04wes7s39', 'no_lang_code', 1, 'https://ror.org/04wes7s39 InteSys (United Kingdom)'), (14086, 'https://ror.org/04wfxgv30', 'no_lang_code', 1, 'https://ror.org/04wfxgv30 Bitron (Italy)'), (14087, 'https://ror.org/04wgbm466', 'en', 1, 'https://ror.org/04wgbm466 Kōkua Mau'), (14088, 'https://ror.org/04wjvj017', 'en', 1, 'https://ror.org/04wjvj017 Community Food Security Coalition'), (14089, 'https://ror.org/04wkwbq27', 'en', 1, 'https://ror.org/04wkwbq27 Alderson Broaddus University'), (14090, 'https://ror.org/04wm2jh50', 'en', 1, 'https://ror.org/04wm2jh50 Dublin City Council'), (14091, 'https://ror.org/04wmv4g63', 'en', 1, 'https://ror.org/04wmv4g63 Hawaii Children''s Cancer Foundation'), (14092, 'https://ror.org/04wnnt868', 'en', 1, 'https://ror.org/04wnnt868 Space Florida'), (14093, 'https://ror.org/04wprn722', 'en', 1, 'https://ror.org/04wprn722 Tranquility Base Massage & Day Spa'), (14094, 'https://ror.org/04wrsbk19', 'en', 1, 'https://ror.org/04wrsbk19 Federation of European Aquaculture Producers'), (14095, 'https://ror.org/04wsrnw24', 'no_lang_code', 1, 'https://ror.org/04wsrnw24 Nokia (Italy)'), (14096, 'https://ror.org/04wt6ne29', 'en', 1, 'https://ror.org/04wt6ne29 Corporation for Findlay Market'), (14097, 'https://ror.org/04wx7x176', 'en', 1, 'https://ror.org/04wx7x176 Psychiatric Medical Center'), (14098, 'https://ror.org/04wy7mt46', 'en', 1, 'https://ror.org/04wy7mt46 Make A Hero'), (14099, 'https://ror.org/04wyzn311', 'en', 1, 'https://ror.org/04wyzn311 Freedom from Hunger'), (14100, 'https://ror.org/04x0cz306', 'no_lang_code', 1, 'https://ror.org/04x0cz306 Noliac (Denmark)'), (14101, 'https://ror.org/04x0dc707', 'en', 1, 'https://ror.org/04x0dc707 Seattle Aquarium'), (14102, 'https://ror.org/04x34yn51', 'en', 1, 'https://ror.org/04x34yn51 Southeastern Consortium for Minorities in Engineering'), (14103, 'https://ror.org/04x3k9185', 'en', 1, 'https://ror.org/04x3k9185 Community Impact'), (14104, 'https://ror.org/04x5fkp12', 'no_lang_code', 1, 'https://ror.org/04x5fkp12 Catabasis Pharmaceuticals (United States)'), (14105, 'https://ror.org/04x5whn41', 'en', 1, 'https://ror.org/04x5whn41 Alameda County Community Food Bank'), (14106, 'https://ror.org/04x6e9478', 'en', 1, 'https://ror.org/04x6e9478 Baum Consult Bundesdeutsche Arbeitskreis für Umweltbewußtes Management e.V'), (14107, 'https://ror.org/04x96x598', 'it', 1, 'https://ror.org/04x96x598 Experimental Station for Glass Stazione Sperimentale del Vetro'), (14108, 'https://ror.org/04xa5qt51', 'no_lang_code', 1, 'https://ror.org/04xa5qt51 XLAB (Slovenia)'), (14109, 'https://ror.org/04xanzq95', 'en', 1, 'https://ror.org/04xanzq95 The Parenting Cottage'), (14110, 'https://ror.org/04xbpgz45', 'no_lang_code', 1, 'https://ror.org/04xbpgz45 Lamik (Spain)'), (14111, 'https://ror.org/04xce0q45', 'no_lang_code', 1, 'https://ror.org/04xce0q45 Polymage (France)'), (14112, 'https://ror.org/04xcy3p78', 'en', 1, 'https://ror.org/04xcy3p78 CoxHealth Foundation'), (14113, 'https://ror.org/04xd7yt90', 'en', 1, 'https://ror.org/04xd7yt90 Neighborhood House Association'), (14114, 'https://ror.org/04xezfk45', 'no_lang_code', 1, 'https://ror.org/04xezfk45 CFS Engineering (Switzerland)'), (14115, 'https://ror.org/04xg79b82', 'en', 1, 'https://ror.org/04xg79b82 CHRISTUS St. Patrick Hospital'), (14116, 'https://ror.org/04xge3a12', 'en', 1, 'https://ror.org/04xge3a12 Denver Urban Gardens'), (14117, 'https://ror.org/04xh2sm62', 'en', 1, 'https://ror.org/04xh2sm62 Angelica Patient Assistance Program'), (14118, 'https://ror.org/04xhfgr69', 'no_lang_code', 1, 'https://ror.org/04xhfgr69 Altran (Italy)'), (14119, 'https://ror.org/04xjvsa73', 'no_lang_code', 1, 'https://ror.org/04xjvsa73 WSP (Finland)'), (14120, 'https://ror.org/04xk5ks51', 'en', 1, 'https://ror.org/04xk5ks51 North Carolina Science, Mathematics, and Technology Education Center'), (14121, 'https://ror.org/04xpj5302', 'en', 1, 'https://ror.org/04xpj5302 National Consumer Research Centre'), (14122, 'https://ror.org/04xpx8w88', 'no_lang_code', 1, 'https://ror.org/04xpx8w88 Azyp (United States)'), (14123, 'https://ror.org/04xpz8e97', 'en', 1, 'https://ror.org/04xpz8e97 Jack and Jill Late Stage Cancer Foundation'), (14124, 'https://ror.org/04xqgyf78', 'en', 1, 'https://ror.org/04xqgyf78 Greek Association of Alzheimer''s Disease and Related Disorders'), (14125, 'https://ror.org/04xqxea08', 'en', 1, 'https://ror.org/04xqxea08 Crescent Development Foundation'), (14126, 'https://ror.org/04xsc6e37', 'en', 1, 'https://ror.org/04xsc6e37 Athletics Canada Athlétisme Canada'), (14127, 'https://ror.org/04xsz2t23', 'en', 1, 'https://ror.org/04xsz2t23 Cancer Care Services'), (14128, 'https://ror.org/04y1g1r77', 'no_lang_code', 1, 'https://ror.org/04y1g1r77 AppliCote Associates (United States)'), (14129, 'https://ror.org/04y1z0v62', 'en', 1, 'https://ror.org/04y1z0v62 Ovar''coming Together'), (14130, 'https://ror.org/04y280w56', 'no_lang_code', 1, 'https://ror.org/04y280w56 Inlecom Systems (United Kingdom)'), (14131, 'https://ror.org/04y33ew61', 'en', 1, 'https://ror.org/04y33ew61 AIDS Project Of The East Bay'), (14132, 'https://ror.org/04y35pz27', 'en', 1, 'https://ror.org/04y35pz27 Cornucopia Cancer Support Center'), (14133, 'https://ror.org/04y3rzk98', 'en', 1, 'https://ror.org/04y3rzk98 American Kennel Club Canine Health Foundation'), (14134, 'https://ror.org/04y4kb514', 'no_lang_code', 1, 'https://ror.org/04y4kb514 Modulight (Finland)'), (14135, 'https://ror.org/04y5a4d40', 'no_lang_code', 1, 'https://ror.org/04y5a4d40 Coventor (France)'), (14136, 'https://ror.org/04y5apy07', 'no_lang_code', 1, 'https://ror.org/04y5apy07 Biomedisyn (United States)'), (14137, 'https://ror.org/04y729m70', 'no_lang_code', 1, 'https://ror.org/04y729m70 Petards Group (United Kingdom)'), (14138, 'https://ror.org/04y8d8z54', 'en', 1, 'https://ror.org/04y8d8z54 Central Wisconsin Community Action Council'), (14139, 'https://ror.org/04ycrgr69', 'en', 1, 'https://ror.org/04ycrgr69 Lac Courte Oreilles Ojibwa Community College'), (14140, 'https://ror.org/04yd65q24', 'en', 1, 'https://ror.org/04yd65q24 Samaritan Healthcare and Hospice'), (14141, 'https://ror.org/04ydcpm48', 'en', 1, 'https://ror.org/04ydcpm48 Ministria e Arsimit, Sportit dhe Rinisë Ministry of Education, Sports and Youth'), (14142, 'https://ror.org/04ye4vy15', 'no_lang_code', 1, 'https://ror.org/04ye4vy15 Intralytix (United States)'), (14143, 'https://ror.org/04yh9ek66', 'no_lang_code', 1, 'https://ror.org/04yh9ek66 Keystone Nano (United States)'), (14144, 'https://ror.org/04yhn3690', 'en', 1, 'https://ror.org/04yhn3690 AdventHealth Foundation Central Florida'), (14145, 'https://ror.org/04yj3nc53', 'no_lang_code', 1, 'https://ror.org/04yj3nc53 Austrian Mobility Research Forschungsgesellschaft Mobilität'), (14146, 'https://ror.org/04yk3c231', 'no_lang_code', 1, 'https://ror.org/04yk3c231 Hitachi (France)'), (14147, 'https://ror.org/04ynvhd06', 'it', 1, 'https://ror.org/04ynvhd06 Centro RIcerche Plast-Optica'), (14148, 'https://ror.org/04ypb9m04', 'no_lang_code', 1, 'https://ror.org/04ypb9m04 NeuroNascent (United States)'), (14149, 'https://ror.org/04yqx6497', 'en', 1, 'https://ror.org/04yqx6497 American Historical Association'), (14150, 'https://ror.org/04ys0z478', 'en', 1, 'https://ror.org/04ys0z478 Central Coast Resource Conservation and Development'), (14151, 'https://ror.org/04yt64j61', 'no_lang_code', 1, 'https://ror.org/04yt64j61 Gilat Satellite Networks (Israel)'), (14152, 'https://ror.org/04ytjxd97', 'fr', 1, 'https://ror.org/04ytjxd97 Technofi'), (14153, 'https://ror.org/04yw5jr36', 'no_lang_code', 1, 'https://ror.org/04yw5jr36 Cap Sciences (France)'), (14154, 'https://ror.org/04ywkc356', 'en', 1, 'https://ror.org/04ywkc356 Long Island Community Hospital'), (14155, 'https://ror.org/04yy66p73', 'fr', 1, 'https://ror.org/04yy66p73 Institution de la Recherche et de l’Enseignement Supérieur Agricoles'), (14156, 'https://ror.org/04z1brt13', 'no_lang_code', 1, 'https://ror.org/04z1brt13 Bretagne Innovation (France)'), (14157, 'https://ror.org/04z1q2j11', 'no', 1, 'https://ror.org/04z1q2j11 Vestlandsforsking Western Norway Research Institute'), (14158, 'https://ror.org/04z2zcc58', 'no_lang_code', 1, 'https://ror.org/04z2zcc58 Mayaterials (United States)'), (14159, 'https://ror.org/04z3mgg43', 'no_lang_code', 1, 'https://ror.org/04z3mgg43 Cryptomathic (Denmark)'), (14160, 'https://ror.org/04z5k1s77', 'en', 1, 'https://ror.org/04z5k1s77 McAlister Institute'), (14161, 'https://ror.org/04z69s492', 'no_lang_code', 1, 'https://ror.org/04z69s492 Andritz (Austria)'), (14162, 'https://ror.org/04z6pqc94', 'no_lang_code', 1, 'https://ror.org/04z6pqc94 Prestige World Genetics Pte (Singapore)'), (14163, 'https://ror.org/04z86nr40', 'en', 1, 'https://ror.org/04z86nr40 Living Springs Community Church'), (14164, 'https://ror.org/04z8azd17', 'no_lang_code', 1, 'https://ror.org/04z8azd17 Europe Unlimited (Belgium)'), (14165, 'https://ror.org/04z8wqp73', 'no_lang_code', 1, 'https://ror.org/04z8wqp73 Baker Hughes (Germany)'), (14166, 'https://ror.org/04z947e46', 'en', 1, 'https://ror.org/04z947e46 Center for American Progress'), (14167, 'https://ror.org/04zb1mb80', 'no_lang_code', 1, 'https://ror.org/04zb1mb80 YellowMap (Germany)'), (14168, 'https://ror.org/04zbkx310', 'no_lang_code', 1, 'https://ror.org/04zbkx310 Mekorot (Israel) מקורות'), (14169, 'https://ror.org/04zbse002', 'no_lang_code', 1, 'https://ror.org/04zbse002 Kybertec (Czechia)'), (14170, 'https://ror.org/04zbx7x36', 'en', 1, 'https://ror.org/04zbx7x36 Italian Biomass Association'), (14171, 'https://ror.org/04zh7mt66', 'en', 1, 'https://ror.org/04zh7mt66 Army Hospital Research and Referral आर्मी हॉस्पिटल रिसर्च एंड रेफेर्रल'), (14172, 'https://ror.org/04zha3029', 'no_lang_code', 1, 'https://ror.org/04zha3029 Harms & Wende (Germany)'), (14173, 'https://ror.org/04zkytf76', 'en', 1, 'https://ror.org/04zkytf76 Asylum Access'), (14174, 'https://ror.org/04zmjp854', 'en', 1, 'https://ror.org/04zmjp854 LRGHealthcare'), (14175, 'https://ror.org/04zmpx795', 'no_lang_code', 1, 'https://ror.org/04zmpx795 CytoSorbents (United States)'), (14176, 'https://ror.org/04znbx206', 'en', 1, 'https://ror.org/04znbx206 Appalachian Native Plants'), (14177, 'https://ror.org/04znqn582', 'en', 1, 'https://ror.org/04znqn582 HCG NCHRI Cancer Centre'), (14178, 'https://ror.org/04zpmt351', 'en', 1, 'https://ror.org/04zpmt351 Nikolaev Institute of Inorganic Chemistry Федеральное государственное бюджетное учреждение науки Институт неорганической химии им. А.В.Николаева Сибирского отделения Российской академии наук'), (14179, 'https://ror.org/04zqx6d52', 'no_lang_code', 1, 'https://ror.org/04zqx6d52 NKT Holding (Denmark)'), (14180, 'https://ror.org/04zrfss29', 'no_lang_code', 1, 'https://ror.org/04zrfss29 MedCom'), (14181, 'https://ror.org/04ztkpw59', 'no_lang_code', 1, 'https://ror.org/04ztkpw59 Xiomas Technologies (United States)'), (14182, 'https://ror.org/04ztvme64', 'en', 1, 'https://ror.org/04ztvme64 Texas Medical Association'), (14183, 'https://ror.org/04zvb9t44', 'en', 1, 'https://ror.org/04zvb9t44 Ministry of Education and Religious Affairs Υπουργείο Παιδείας, Έρευνας και Θρησκευμάτων'), (14184, 'https://ror.org/04zwgxj11', 'de', 1, 'https://ror.org/04zwgxj11 Österreichisches Forschungsinstitut für Chemie und Technik'), (14185, 'https://ror.org/04zwykt37', 'no_lang_code', 1, 'https://ror.org/04zwykt37 Ceramiques Techniques et Industrielles (France)'), (14186, 'https://ror.org/04zyzzh22', 'no_lang_code', 1, 'https://ror.org/04zyzzh22 Saft (France)'), (14187, 'https://ror.org/04zzddp49', 'no_lang_code', 1, 'https://ror.org/04zzddp49 IDEC'), (14188, 'https://ror.org/04zzwzx41', 'en', 1, 'https://ror.org/04zzwzx41 Hertie Institute for Clinical Brain Research Hertie-Institut für klinische Hirnforschung'), (14189, 'https://ror.org/0501e3k91', 'no_lang_code', 1, 'https://ror.org/0501e3k91 Flensburger Schiffbau Gesellschaft (Germany)'), (14190, 'https://ror.org/05031m633', 'en', 1, 'https://ror.org/05031m633 Employment Opportunity and Training Center'), (14191, 'https://ror.org/05035cc38', 'no_lang_code', 1, 'https://ror.org/05035cc38 LIG Science (United States)'), (14192, 'https://ror.org/0503ejf32', 'en', 1, 'https://ror.org/0503ejf32 Manouba University Université de la manouba جامعة منوبة'), (14193, 'https://ror.org/050564b76', 'en', 1, 'https://ror.org/050564b76 Annaswamy Mudaliar General Hospital'), (14194, 'https://ror.org/0506e5129', 'no_lang_code', 1, 'https://ror.org/0506e5129 Avaris (Sweden)'), (14195, 'https://ror.org/0507s5g02', 'en', 1, 'https://ror.org/0507s5g02 COPE Health Solutions'), (14196, 'https://ror.org/0507xbc51', 'no_lang_code', 1, 'https://ror.org/0507xbc51 Invent (Germany)'), (14197, 'https://ror.org/050818891', 'en', 1, 'https://ror.org/050818891 VNA of Care New England'), (14198, 'https://ror.org/0509fa037', 'en', 1, 'https://ror.org/0509fa037 National Association of Extension 4-H Agents'), (14199, 'https://ror.org/050bkss19', 'no_lang_code', 1, 'https://ror.org/050bkss19 InterInnov (France)'), (14200, 'https://ror.org/050c2ya64', 'no_lang_code', 1, 'https://ror.org/050c2ya64 Imerys (Greece)'), (14201, 'https://ror.org/050c96876', 'no_lang_code', 1, 'https://ror.org/050c96876 Chersco (United States)'), (14202, 'https://ror.org/050cwv729', 'no_lang_code', 1, 'https://ror.org/050cwv729 Magen David Adom'), (14203, 'https://ror.org/050g24769', 'no_lang_code', 1, 'https://ror.org/050g24769 Nanogate (Germany)'), (14204, 'https://ror.org/050g6df85', 'en', 1, 'https://ror.org/050g6df85 National Institute of Cancer Research and Hospital জাতীয় ক্যান্সার গবেষণা ইনস্টিটিউট ও হাসপাতাল'), (14205, 'https://ror.org/050gb7v09', 'no_lang_code', 1, 'https://ror.org/050gb7v09 Groupe Cahors (France)'), (14206, 'https://ror.org/050gxst24', 'en', 1, 'https://ror.org/050gxst24 Radiological Protection Institute of Ireland'), (14207, 'https://ror.org/050j2px32', 'en', 1, 'https://ror.org/050j2px32 National Archives of Sweden Riksarkivet'), (14208, 'https://ror.org/050jzv373', 'en', 1, 'https://ror.org/050jzv373 AEE Institute for Sustainable Technologies'), (14209, 'https://ror.org/050n06q35', 'no_lang_code', 1, 'https://ror.org/050n06q35 Gorenje (Slovenia)'), (14210, 'https://ror.org/050ntep05', 'no_lang_code', 1, 'https://ror.org/050ntep05 Saet (Italy)'), (14211, 'https://ror.org/050r3h664', 'en', 1, 'https://ror.org/050r3h664 Eurocontrol'), (14212, 'https://ror.org/050r8f240', 'no_lang_code', 1, 'https://ror.org/050r8f240 Heinz Optical Engineering (United States)'), (14213, 'https://ror.org/050rtva22', 'en', 1, 'https://ror.org/050rtva22 Geological Survey of Sweden Ruotsin geologinen tutkimuslaitos Sveriges geologiska undersökning'), (14214, 'https://ror.org/050sgaw73', 'no_lang_code', 1, 'https://ror.org/050sgaw73 Summit Seed (United States)'), (14215, 'https://ror.org/050svx916', 'en', 1, 'https://ror.org/050svx916 Dünyagöz Hospital'), (14216, 'https://ror.org/050t9mr22', 'no_lang_code', 1, 'https://ror.org/050t9mr22 Agilent Technologies (Denmark)'), (14217, 'https://ror.org/050teng13', 'no_lang_code', 1, 'https://ror.org/050teng13 Humanetics Innovative Solutions (Netherlands)'), (14218, 'https://ror.org/050vqjt31', 'en', 1, 'https://ror.org/050vqjt31 Virginia Air and Space Center'), (14219, 'https://ror.org/050wvj485', 'en', 1, 'https://ror.org/050wvj485 Reading and Beyond'), (14220, 'https://ror.org/050wxgw75', 'no_lang_code', 1, 'https://ror.org/050wxgw75 ATEbank (Greece) Αγροτική Τράπεζα της Ελλάδος'), (14221, 'https://ror.org/050z1be57', 'no_lang_code', 1, 'https://ror.org/050z1be57 Invention House (United States)'), (14222, 'https://ror.org/051054y87', 'no_lang_code', 1, 'https://ror.org/051054y87 DuPont (Denmark)'), (14223, 'https://ror.org/0510ppv76', 'lv', 1, 'https://ror.org/0510ppv76 Rezekne Higher Education Institution Rēzeknes Augstskola'), (14224, 'https://ror.org/0513rs483', 'no_lang_code', 1, 'https://ror.org/0513rs483 Marac (Greece) ΜΑΡΑΚ Ηλεκτρονική'), (14225, 'https://ror.org/051434232', 'en', 1, 'https://ror.org/051434232 Harvey Brooks Motivation and Development Foundation'), (14226, 'https://ror.org/0514bm407', 'en', 1, 'https://ror.org/0514bm407 European Centre for Social Welfare Policy and Research'), (14227, 'https://ror.org/051687e73', 'en', 1, 'https://ror.org/051687e73 National Brain Tumor Society'), (14228, 'https://ror.org/05168yk81', 'no_lang_code', 1, 'https://ror.org/05168yk81 Microsoft (Belgium)'), (14229, 'https://ror.org/0518a5g43', 'no_lang_code', 1, 'https://ror.org/0518a5g43 MentiNova (United States)'), (14230, 'https://ror.org/0518gvp45', 'no_lang_code', 1, 'https://ror.org/0518gvp45 Fluidtime (Austria)'), (14231, 'https://ror.org/051ansx96', 'no_lang_code', 1, 'https://ror.org/051ansx96 Eternity Bioscience (United States)'), (14232, 'https://ror.org/051aqjh92', 'en', 1, 'https://ror.org/051aqjh92 Ministry of Education and Research'), (14233, 'https://ror.org/051csrn64', 'en', 1, 'https://ror.org/051csrn64 Jackson County Public Schools'), (14234, 'https://ror.org/051deva93', 'no_lang_code', 1, 'https://ror.org/051deva93 Necton (Portugal)'), (14235, 'https://ror.org/051e2nw91', 'en', 1, 'https://ror.org/051e2nw91 Farm Credit Council'), (14236, 'https://ror.org/051ehts03', 'no_lang_code', 1, 'https://ror.org/051ehts03 Prospex (Belgium)'), (14237, 'https://ror.org/051h34p92', 'en', 1, 'https://ror.org/051h34p92 Astronomical Research Institute'), (14238, 'https://ror.org/051jg5p78', 'en', 1, 'https://ror.org/051jg5p78 First Affiliated Hospital of Soochow University 苏州大学附属第一医院'), (14239, 'https://ror.org/051p0n058', 'no_lang_code', 1, 'https://ror.org/051p0n058 Mikey’s Way Foundation'), (14240, 'https://ror.org/051qd7x39', 'en', 1, 'https://ror.org/051qd7x39 Children''s Museum of Indianapolis'), (14241, 'https://ror.org/051r84t36', 'en', 1, 'https://ror.org/051r84t36 Little Bit Therapeutic Riding Center'), (14242, 'https://ror.org/051rrn740', 'en', 1, 'https://ror.org/051rrn740 St. Luke''s Mountain States Tumor Institute'), (14243, 'https://ror.org/051secs02', 'no_lang_code', 1, 'https://ror.org/051secs02 Thetis'), (14244, 'https://ror.org/051w7zc95', 'en', 1, 'https://ror.org/051w7zc95 Arctic and Antarctic Research Institute Арктический и антарктический научно-исследовательский институт'), (14245, 'https://ror.org/051wbhx61', 'no_lang_code', 1, 'https://ror.org/051wbhx61 McCarthy Modernization (United States)'), (14246, 'https://ror.org/051xk8837', 'en', 1, 'https://ror.org/051xk8837 Korean Health Education, Information, and Research Center'), (14247, 'https://ror.org/051yjgn28', 'no_lang_code', 1, 'https://ror.org/051yjgn28 Genkyotex (Switzerland)'), (14248, 'https://ror.org/051zae275', 'en', 1, 'https://ror.org/051zae275 Kadlec Regional Medical Center'), (14249, 'https://ror.org/051zzmk23', 'no_lang_code', 1, 'https://ror.org/051zzmk23 Höganäs (Sweden)'), (14250, 'https://ror.org/05210wh26', 'en', 1, 'https://ror.org/05210wh26 Coda Alliance'), (14251, 'https://ror.org/0521fzc39', 'no_lang_code', 1, 'https://ror.org/0521fzc39 Atos (Germany)'), (14252, 'https://ror.org/0522qq959', 'en', 1, 'https://ror.org/0522qq959 Legal Aid of Nebraska'), (14253, 'https://ror.org/05232hy51', 'no_lang_code', 1, 'https://ror.org/05232hy51 Statnett (Norway)'), (14254, 'https://ror.org/0524dwb40', 'it', 1, 'https://ror.org/0524dwb40 Fondazione GraphiTech'), (14255, 'https://ror.org/05253xp33', 'no_lang_code', 1, 'https://ror.org/05253xp33 Avails Medical (United States)'), (14256, 'https://ror.org/0526axj32', 'no_lang_code', 1, 'https://ror.org/0526axj32 e-Trikala (Greece)'), (14257, 'https://ror.org/052942611', 'en', 1, 'https://ror.org/052942611 Nebraska Indian Community College'), (14258, 'https://ror.org/052b7db17', 'en', 1, 'https://ror.org/052b7db17 Nevada Childhood Cancer Foundation'), (14259, 'https://ror.org/052bk3d94', 'en', 1, 'https://ror.org/052bk3d94 The University of Arizona Global Campus'), (14260, 'https://ror.org/052cewm89', 'no_lang_code', 1, 'https://ror.org/052cewm89 Multiform Harvest (United States)'), (14261, 'https://ror.org/052ed1t23', 'en', 1, 'https://ror.org/052ed1t23 Park Avenue Synagogue'); INSERT INTO `rors` VALUES (14262, 'https://ror.org/052fdn272', 'en', 1, 'https://ror.org/052fdn272 San Francisco Unified School District'), (14263, 'https://ror.org/052r0y739', 'no_lang_code', 1, 'https://ror.org/052r0y739 Prodo Laboratories (United States)'), (14264, 'https://ror.org/052rn8031', 'en', 1, 'https://ror.org/052rn8031 Clinicas de Salud del Pueblo'), (14265, 'https://ror.org/052rymf92', 'en', 1, 'https://ror.org/052rymf92 Ibaraki Children''s Hospital 茨城県立こども病院'), (14266, 'https://ror.org/052t8c018', 'en', 1, 'https://ror.org/052t8c018 HIV Education and Prevention Project of Alameda County'), (14267, 'https://ror.org/052t9a145', 'en', 1, 'https://ror.org/052t9a145 Növényvédelmi Intézete Plant Protection Institute'), (14268, 'https://ror.org/052teyb98', 'en', 1, 'https://ror.org/052teyb98 North Carolina Aquarium'), (14269, 'https://ror.org/052tzd367', 'en', 1, 'https://ror.org/052tzd367 Granville County Public Schools'), (14270, 'https://ror.org/052wtvs60', 'fr', 1, 'https://ror.org/052wtvs60 Institut National de la Recherche Agronomique de Tunisie'), (14271, 'https://ror.org/052x6na95', 'de', 1, 'https://ror.org/052x6na95 Wirtschaftsförderung Region Stuttgart'), (14272, 'https://ror.org/052x9wz38', 'no_lang_code', 1, 'https://ror.org/052x9wz38 Septentrio (Belgium)'), (14273, 'https://ror.org/052xw2c95', 'no_lang_code', 1, 'https://ror.org/052xw2c95 Inno (France)'), (14274, 'https://ror.org/05324s141', 'en', 1, 'https://ror.org/05324s141 Our Lady of Perpetual Help'), (14275, 'https://ror.org/0533brp61', 'en', 1, 'https://ror.org/0533brp61 BioLink Life Sciences'), (14276, 'https://ror.org/0536q8754', 'no_lang_code', 1, 'https://ror.org/0536q8754 Olema Pharmaceuticals (United States)'), (14277, 'https://ror.org/0538q7376', 'no_lang_code', 1, 'https://ror.org/0538q7376 Sonatest (United Kingdom)'), (14278, 'https://ror.org/0538tt685', 'no_lang_code', 1, 'https://ror.org/0538tt685 BIOS Bioenergiesysteme (Austria)'), (14279, 'https://ror.org/053cfr159', 'en', 1, 'https://ror.org/053cfr159 Council for the Welfare of Children'), (14280, 'https://ror.org/053cqar38', 'no_lang_code', 1, 'https://ror.org/053cqar38 Ecorys (United Kingdom)'), (14281, 'https://ror.org/053d27v87', 'en', 1, 'https://ror.org/053d27v87 Brain Injury Alliance of Oregon'), (14282, 'https://ror.org/053d55q96', 'no_lang_code', 1, 'https://ror.org/053d55q96 Linde (Germany)'), (14283, 'https://ror.org/053e6g844', 'no_lang_code', 1, 'https://ror.org/053e6g844 Giesecke and Devrient (Germany)'), (14284, 'https://ror.org/053k6j340', 'no_lang_code', 1, 'https://ror.org/053k6j340 Organic Waste Systems (Belgium)'), (14285, 'https://ror.org/053m1nc07', 'en', 1, 'https://ror.org/053m1nc07 Center for Health and Learning'), (14286, 'https://ror.org/053nagh38', 'en', 1, 'https://ror.org/053nagh38 Charlotte Maxwell Clinic'), (14287, 'https://ror.org/053ndkf46', 'en', 1, 'https://ror.org/053ndkf46 Kelsey Research Foundation'), (14288, 'https://ror.org/053pcb396', 'en', 1, 'https://ror.org/053pcb396 Ministry of Education and Science'), (14289, 'https://ror.org/053s72389', 'en', 1, 'https://ror.org/053s72389 Coalición Rural Rural Coalition'), (14290, 'https://ror.org/053sdsy29', 'en', 1, 'https://ror.org/053sdsy29 Allan Hancock College'), (14291, 'https://ror.org/053ssqa83', 'en', 1, 'https://ror.org/053ssqa83 Austrian Cooperative Research Vereinigung der Kooperativen Forschungseinrichtungen der österreichischen Wirtschaft'), (14292, 'https://ror.org/053v95q10', 'en', 1, 'https://ror.org/053v95q10 Child Care Resource & Referral'), (14293, 'https://ror.org/053vtpa28', 'en', 1, 'https://ror.org/053vtpa28 European Council for Maritime Applied R&D Association'), (14294, 'https://ror.org/053xb8h09', 'en', 1, 'https://ror.org/053xb8h09 Positive Resource Center'), (14295, 'https://ror.org/053xpwt63', 'nl', 1, 'https://ror.org/053xpwt63 Nederlands Meetinstituut'), (14296, 'https://ror.org/053z7dx55', 'en', 1, 'https://ror.org/053z7dx55 Maternal Child and Family Health'), (14297, 'https://ror.org/053zwpg96', 'es', 1, 'https://ror.org/053zwpg96 Fundacion Centro De Investigacion De Enfermedades Neurologicas'), (14298, 'https://ror.org/05404pa79', 'en', 1, 'https://ror.org/05404pa79 OSF Saint Anthony Medical Center'), (14299, 'https://ror.org/054119345', 'fr', 1, 'https://ror.org/054119345 Laboratoire d''Évaluation des Matériels Implantables'), (14300, 'https://ror.org/05447tk77', 'no_lang_code', 1, 'https://ror.org/05447tk77 Epsilon (Italy)'), (14301, 'https://ror.org/0546dmt59', 'no_lang_code', 1, 'https://ror.org/0546dmt59 Nationaal Archief of the Netherlands'), (14302, 'https://ror.org/05474q779', 'no_lang_code', 1, 'https://ror.org/05474q779 Frequentis (Austria)'), (14303, 'https://ror.org/0547fcp84', 'en', 1, 'https://ror.org/0547fcp84 Uniresearch'), (14304, 'https://ror.org/0548cbe65', 'no_lang_code', 1, 'https://ror.org/0548cbe65 CareWheels'), (14305, 'https://ror.org/054as9c11', 'en', 1, 'https://ror.org/054as9c11 Michael Ryan Pattison Foundation'), (14306, 'https://ror.org/054b1ew30', 'en', 1, 'https://ror.org/054b1ew30 Clean Needles Now'), (14307, 'https://ror.org/054bs2v13', 'en', 1, 'https://ror.org/054bs2v13 Mercy Health'), (14308, 'https://ror.org/054cq3r13', 'fr', 1, 'https://ror.org/054cq3r13 Institut de l''Audiovisuel et des Télécommunications en Europe'), (14309, 'https://ror.org/054cqc676', 'no_lang_code', 1, 'https://ror.org/054cqc676 Quinary (Italy)'), (14310, 'https://ror.org/054dc7e40', 'en', 1, 'https://ror.org/054dc7e40 Ministerie van Financiën Ministry of Finance'), (14311, 'https://ror.org/054dhw748', 'en', 1, 'https://ror.org/054dhw748 Children Cancer Hospital لمؤسسة مستشفى سرطان الأطفال'), (14312, 'https://ror.org/054etw605', 'fr', 1, 'https://ror.org/054etw605 Institut du Développement Durable et des Ressources Aquatiques'), (14313, 'https://ror.org/054fn8673', 'no_lang_code', 1, 'https://ror.org/054fn8673 Energinet (Denmark)'), (14314, 'https://ror.org/054gf5823', 'it', 1, 'https://ror.org/054gf5823 Unione Nazionale Industria Conciaria'), (14315, 'https://ror.org/054gk2851', 'en', 1, 'https://ror.org/054gk2851 St Thomas'' Hospital'), (14316, 'https://ror.org/054j7wb83', 'no_lang_code', 1, 'https://ror.org/054j7wb83 Eisai (United Kingdom)'), (14317, 'https://ror.org/054jcy957', 'no_lang_code', 1, 'https://ror.org/054jcy957 Instituttet for Produktudvikling (Denmark)'), (14318, 'https://ror.org/054jftq10', 'no_lang_code', 1, 'https://ror.org/054jftq10 NsGene (Denmark)'), (14319, 'https://ror.org/054mx2417', 'en', 1, 'https://ror.org/054mx2417 Himalayan Cataract Project'), (14320, 'https://ror.org/054nf0d79', 'no_lang_code', 1, 'https://ror.org/054nf0d79 Ingenasa (Spain)'), (14321, 'https://ror.org/054nv0q45', 'no_lang_code', 1, 'https://ror.org/054nv0q45 IMC Information Multimedia Communication (Germany)'), (14322, 'https://ror.org/054pcbf42', 'en', 1, 'https://ror.org/054pcbf42 Orange County School'), (14323, 'https://ror.org/054qc6v55', 'en', 1, 'https://ror.org/054qc6v55 Community Health Partnership'), (14324, 'https://ror.org/054qg8b39', 'no_lang_code', 1, 'https://ror.org/054qg8b39 Industrial Control Solutions'), (14325, 'https://ror.org/054t1pd20', 'no_lang_code', 1, 'https://ror.org/054t1pd20 Schillinger Genetics (United States)'), (14326, 'https://ror.org/054y68q61', 'no_lang_code', 1, 'https://ror.org/054y68q61 TopSolid (France)'), (14327, 'https://ror.org/054yr2s43', 'no_lang_code', 1, 'https://ror.org/054yr2s43 CECIMO (Belgium)'), (14328, 'https://ror.org/054yshy75', 'en', 1, 'https://ror.org/054yshy75 First Baptist Church-West'), (14329, 'https://ror.org/054yz2f06', 'en', 1, 'https://ror.org/054yz2f06 National Youth Science Foundation'), (14330, 'https://ror.org/054zpyd97', 'en', 1, 'https://ror.org/054zpyd97 San Diego Unified School District'), (14331, 'https://ror.org/05546tk27', 'no_lang_code', 1, 'https://ror.org/05546tk27 Teamnet (Romania)'), (14332, 'https://ror.org/0558jee48', 'en', 1, 'https://ror.org/0558jee48 World Health Organization - Italy'), (14333, 'https://ror.org/055ahdj14', 'en', 1, 'https://ror.org/055ahdj14 Baptist Hospital'), (14334, 'https://ror.org/055b6zg31', 'en', 1, 'https://ror.org/055b6zg31 genHkids Coalition'), (14335, 'https://ror.org/055bwqk39', 'no_lang_code', 1, 'https://ror.org/055bwqk39 TIE Kinetix (Germany)'), (14336, 'https://ror.org/055cet093', 'no_lang_code', 1, 'https://ror.org/055cet093 Clay Technology (Sweden)'), (14337, 'https://ror.org/055dbxv70', 'no_lang_code', 1, 'https://ror.org/055dbxv70 Biovista (United States)'), (14338, 'https://ror.org/055dnb550', 'no_lang_code', 1, 'https://ror.org/055dnb550 Avia-GIS (Belgium)'), (14339, 'https://ror.org/055e7e256', 'en', 1, 'https://ror.org/055e7e256 Global Alliance Against Traffic in Women'), (14340, 'https://ror.org/055ef6019', 'no_lang_code', 1, 'https://ror.org/055ef6019 Rolls-Royce (Sweden)'), (14341, 'https://ror.org/055en7988', 'no_lang_code', 1, 'https://ror.org/055en7988 Ensemble Therapeutics (United States)'), (14342, 'https://ror.org/055fajc83', 'no_lang_code', 1, 'https://ror.org/055fajc83 Frog AGV Systems (Netherlands)'), (14343, 'https://ror.org/055fed339', 'en', 1, 'https://ror.org/055fed339 Black Oaks Center'), (14344, 'https://ror.org/055h1w046', 'no_lang_code', 1, 'https://ror.org/055h1w046 Ashima Group (United States)'), (14345, 'https://ror.org/055hgd414', 'en', 1, 'https://ror.org/055hgd414 American Association for Aerosol Research'), (14346, 'https://ror.org/055j33y49', 'no_lang_code', 1, 'https://ror.org/055j33y49 Phase Change Material Products (United Kingdom)'), (14347, 'https://ror.org/055k7wq83', 'no_lang_code', 1, 'https://ror.org/055k7wq83 Chemtex (Italy)'), (14348, 'https://ror.org/055ksem72', 'en', 1, 'https://ror.org/055ksem72 Leonard J. Chabert Medical Center'), (14349, 'https://ror.org/055mqy429', 'no_lang_code', 1, 'https://ror.org/055mqy429 Diligent Consulting (United States)'), (14350, 'https://ror.org/055nngk57', 'en', 1, 'https://ror.org/055nngk57 Adaptive Sports Program of Ohio'), (14351, 'https://ror.org/055qx1z79', 'en', 1, 'https://ror.org/055qx1z79 Chenango Health Network'), (14352, 'https://ror.org/055rkqx35', 'no_lang_code', 1, 'https://ror.org/055rkqx35 Packed (Belgium)'), (14353, 'https://ror.org/055syqv59', 'no_lang_code', 1, 'https://ror.org/055syqv59 Idronaut (Italy)'), (14354, 'https://ror.org/055t3ez04', 'no_lang_code', 1, 'https://ror.org/055t3ez04 Zuken (United Kingdom)'), (14355, 'https://ror.org/055vn4q66', 'en', 1, 'https://ror.org/055vn4q66 Cancer Survivor Center'), (14356, 'https://ror.org/055vs2h16', 'en', 1, 'https://ror.org/055vs2h16 Nanotechnology Industries Association'), (14357, 'https://ror.org/055werx92', 'no_lang_code', 1, 'https://ror.org/055werx92 Daiichi Sankyo (United States)'), (14358, 'https://ror.org/055zrhj18', 'en', 1, 'https://ror.org/055zrhj18 European Research Consortium for Informatics and Mathematics'), (14359, 'https://ror.org/056010s74', 'no_lang_code', 1, 'https://ror.org/056010s74 Polyphor (Switzerland)'), (14360, 'https://ror.org/0560hct13', 'no_lang_code', 1, 'https://ror.org/0560hct13 Engineering Solutions International (Ireland)'), (14361, 'https://ror.org/056185y51', 'no_lang_code', 1, 'https://ror.org/056185y51 Bouygues (France)'), (14362, 'https://ror.org/056217264', 'en', 1, 'https://ror.org/056217264 Adesh Charitable Cancer Hospital'), (14363, 'https://ror.org/0562bn695', 'no_lang_code', 1, 'https://ror.org/0562bn695 Aurelius AG (Germany)'), (14364, 'https://ror.org/0562q1768', 'no_lang_code', 1, 'https://ror.org/0562q1768 NorthStar Cooperative (United States)'), (14365, 'https://ror.org/0562tzd79', 'no_lang_code', 1, 'https://ror.org/0562tzd79 Rina Services (Italy)'), (14366, 'https://ror.org/05631hq65', 'no_lang_code', 1, 'https://ror.org/05631hq65 Mira Telecom (Romania)'), (14367, 'https://ror.org/056492z45', 'en', 1, 'https://ror.org/056492z45 Institute of Metal Science, Equipment and Technologies Институт по металознание техника и технологии'), (14368, 'https://ror.org/0565s2t44', 'en', 1, 'https://ror.org/0565s2t44 Al-Ghad International Health Sciences Colleges كليات الغد الدولية للعلوم الصحية'), (14369, 'https://ror.org/05668ct49', 'en', 1, 'https://ror.org/05668ct49 Blanchfield Army Community Hospital'), (14370, 'https://ror.org/05678xp35', 'en', 1, 'https://ror.org/05678xp35 Iranian Homeopathic Association'), (14371, 'https://ror.org/0569m7y93', 'no_lang_code', 1, 'https://ror.org/0569m7y93 Avalon Pharma (United States)'), (14372, 'https://ror.org/056f7r884', 'en', 1, 'https://ror.org/056f7r884 Boy Scouts of America Greater New York Councils'), (14373, 'https://ror.org/056fnew74', 'en', 1, 'https://ror.org/056fnew74 Discovery Center Museum'), (14374, 'https://ror.org/056fv9b21', 'no_lang_code', 1, 'https://ror.org/056fv9b21 Orpro Therapeutics (United States)'), (14375, 'https://ror.org/056h3fs04', 'no_lang_code', 1, 'https://ror.org/056h3fs04 Orbsen Therapeutics (Ireland)'), (14376, 'https://ror.org/056m1n765', 'it', 1, 'https://ror.org/056m1n765 Istituto e Museo di Storia della Scienza, Museo Galileo'), (14377, 'https://ror.org/056p4s391', 'en', 1, 'https://ror.org/056p4s391 New York Restoration Project'), (14378, 'https://ror.org/056rz2k22', 'no_lang_code', 1, 'https://ror.org/056rz2k22 Ibs (France)'), (14379, 'https://ror.org/056w2e349', 'en', 1, 'https://ror.org/056w2e349 Cancer Legal Care'), (14380, 'https://ror.org/056x7d368', 'en', 1, 'https://ror.org/056x7d368 Stockholm Environment Institute'), (14381, 'https://ror.org/056x8jc78', 'en', 1, 'https://ror.org/056x8jc78 New Americans Community Services'), (14382, 'https://ror.org/056zz0q95', 'en', 1, 'https://ror.org/056zz0q95 American Academy of Otolaryngology — Head and Neck Surgery'), (14383, 'https://ror.org/0570bna54', 'no_lang_code', 1, 'https://ror.org/0570bna54 Synelixis (Greece)'), (14384, 'https://ror.org/0570tbq97', 'en', 1, 'https://ror.org/0570tbq97 Heritage Malta'), (14385, 'https://ror.org/0571eed91', 'no_lang_code', 1, 'https://ror.org/0571eed91 Concentris (Germany)'), (14386, 'https://ror.org/057204j60', 'en', 1, 'https://ror.org/057204j60 Center for Black Women’s Wellness'), (14387, 'https://ror.org/0572r3k48', 'no_lang_code', 1, 'https://ror.org/0572r3k48 SBS CyberSecurity (United States)'), (14388, 'https://ror.org/057321v51', 'no_lang_code', 1, 'https://ror.org/057321v51 Microbial Robotics (United States)'), (14389, 'https://ror.org/05737wb92', 'no_lang_code', 1, 'https://ror.org/05737wb92 Isotest Engineering (Italy)'), (14390, 'https://ror.org/0573tpn82', 'en', 1, 'https://ror.org/0573tpn82 Alive Hospice'), (14391, 'https://ror.org/057528053', 'no_lang_code', 1, 'https://ror.org/057528053 Mergenet Medical (United States)'), (14392, 'https://ror.org/0575dsf86', 'no_lang_code', 1, 'https://ror.org/0575dsf86 HyPerspectives (United States)'), (14393, 'https://ror.org/05768zd89', 'no_lang_code', 1, 'https://ror.org/05768zd89 PolyOne (United States)'), (14394, 'https://ror.org/057bd0236', 'no_lang_code', 1, 'https://ror.org/057bd0236 Promolding (Netherlands)'), (14395, 'https://ror.org/057bq1s94', 'en', 1, 'https://ror.org/057bq1s94 Fullerton College'), (14396, 'https://ror.org/057ch9j82', 'en', 1, 'https://ror.org/057ch9j82 Great Plains Tribal Chairmen’s Health Board'), (14397, 'https://ror.org/057csh885', 'en', 1, 'https://ror.org/057csh885 Horizon Health Network'), (14398, 'https://ror.org/057d3rj91', 'no_lang_code', 1, 'https://ror.org/057d3rj91 Arup Group (United Kingdom)'), (14399, 'https://ror.org/057dz0532', 'en', 1, 'https://ror.org/057dz0532 Clonexpress'), (14400, 'https://ror.org/057en1r98', 'no_lang_code', 1, 'https://ror.org/057en1r98 Composite Technology Development (United States)'), (14401, 'https://ror.org/057hk3852', 'no_lang_code', 1, 'https://ror.org/057hk3852 Cooper Tire & Rubber Company (United States)'), (14402, 'https://ror.org/057jahg02', 'en', 1, 'https://ror.org/057jahg02 Good Shepherd Rehabilitation'), (14403, 'https://ror.org/057mcs327', 'no_lang_code', 1, 'https://ror.org/057mcs327 NeuroVigil (United States)'), (14404, 'https://ror.org/057n0mb56', 'it', 1, 'https://ror.org/057n0mb56 Digital Renaissance Foundation Fondazione Rinascimento Digitale'), (14405, 'https://ror.org/057swaw40', 'en', 1, 'https://ror.org/057swaw40 Cancer Resource Center of the Desert'), (14406, 'https://ror.org/057ty7239', 'no_lang_code', 1, 'https://ror.org/057ty7239 Building and Civil Engineering Institute Gradbeni Inštitut Zrmk d.o.o'), (14407, 'https://ror.org/057xaw849', 'en', 1, 'https://ror.org/057xaw849 Cottage Health'), (14408, 'https://ror.org/057xjcx32', 'en', 1, 'https://ror.org/057xjcx32 World Food Program USA'), (14409, 'https://ror.org/057zzzn17', 'en', 1, 'https://ror.org/057zzzn17 El/La Para TransLatinas'), (14410, 'https://ror.org/0583e1h59', 'no_lang_code', 1, 'https://ror.org/0583e1h59 Forum Virium (Finland)'), (14411, 'https://ror.org/05853wp21', 'en', 1, 'https://ror.org/05853wp21 National Children''s Cancer Society'), (14412, 'https://ror.org/0585jt080', 'no_lang_code', 1, 'https://ror.org/0585jt080 It’s The Journey'), (14413, 'https://ror.org/05861s171', 'no_lang_code', 1, 'https://ror.org/05861s171 Cycloptics Technologies (United States)'), (14414, 'https://ror.org/05863t818', 'no_lang_code', 1, 'https://ror.org/05863t818 Alstom (Sweden)'), (14415, 'https://ror.org/058643s73', 'en', 1, 'https://ror.org/058643s73 Pachyonychia Congenita Project'), (14416, 'https://ror.org/0586n3304', 'en', 1, 'https://ror.org/0586n3304 ARC Community Services'), (14417, 'https://ror.org/0586tb181', 'en', 1, 'https://ror.org/0586tb181 Faith Equestrian Therapeutic Center'), (14418, 'https://ror.org/0587waj50', 'no_lang_code', 1, 'https://ror.org/0587waj50 NEC Technologies (United Kingdom)'), (14419, 'https://ror.org/0588ktq11', 'no_lang_code', 1, 'https://ror.org/0588ktq11 Stora Enso (Germany)'), (14420, 'https://ror.org/0589fsc66', 'es', 1, 'https://ror.org/0589fsc66 Instituto Nacional del Cáncer'), (14421, 'https://ror.org/058a2r903', 'it', 1, 'https://ror.org/058a2r903 Istituto Psicoanalitico per le Ricerche Sociali'), (14422, 'https://ror.org/058a3rr87', 'no_lang_code', 1, 'https://ror.org/058a3rr87 Europe for Business'), (14423, 'https://ror.org/058acxs86', 'en', 1, 'https://ror.org/058acxs86 Canine Companions for Independence'), (14424, 'https://ror.org/058ajkv68', 'en', 1, 'https://ror.org/058ajkv68 United Nations Industrial Development Organization'), (14425, 'https://ror.org/058c69y64', 'en', 1, 'https://ror.org/058c69y64 Museum of American Finance'), (14426, 'https://ror.org/058css875', 'no_lang_code', 1, 'https://ror.org/058css875 Institut d''Assistència Sanitària'), (14427, 'https://ror.org/058d17a16', 'no_lang_code', 1, 'https://ror.org/058d17a16 Project Automation (Italy)'), (14428, 'https://ror.org/058d1q741', 'en', 1, 'https://ror.org/058d1q741 The Green Scheme'), (14429, 'https://ror.org/058dq7z75', 'en', 1, 'https://ror.org/058dq7z75 Catholic Charities of Northeast Kansas'), (14430, 'https://ror.org/058dxr377', 'en', 1, 'https://ror.org/058dxr377 Florida Department of Juvenile Justice'), (14431, 'https://ror.org/058dz5f86', 'en', 1, 'https://ror.org/058dz5f86 Thanksgiving Point'), (14432, 'https://ror.org/058e2jz50', 'no_lang_code', 1, 'https://ror.org/058e2jz50 Publicis Groupe (Germany)'), (14433, 'https://ror.org/058ekqj56', 'en', 1, 'https://ror.org/058ekqj56 Mountain Park Health Center'), (14434, 'https://ror.org/058es3q19', 'no_lang_code', 1, 'https://ror.org/058es3q19 Cisco Systems (France)'), (14435, 'https://ror.org/058g9xk41', 'fr', 1, 'https://ror.org/058g9xk41 Chambre de Commerce et d''Industrie de Bourgogne Franche-Comté'), (14436, 'https://ror.org/058gaxh79', 'en', 1, 'https://ror.org/058gaxh79 Experimental Station for the Food Preserving Industry Stazione Sperimentale per l’Industria delle Conserve Alimentari'), (14437, 'https://ror.org/058gs5s26', 'en', 1, 'https://ror.org/058gs5s26 Cook County Health and Hospitals System'), (14438, 'https://ror.org/058kybv57', 'en', 1, 'https://ror.org/058kybv57 Action Network'), (14439, 'https://ror.org/058mdz444', 'en', 1, 'https://ror.org/058mdz444 Departamento de Educación de Nueva Jersey New Jersey Department of Education'), (14440, 'https://ror.org/058mp2412', 'no_lang_code', 1, 'https://ror.org/058mp2412 KromaTiD (United States)'), (14441, 'https://ror.org/058nnmf19', 'en', 1, 'https://ror.org/058nnmf19 Aware Girls'), (14442, 'https://ror.org/058nsgg43', 'no_lang_code', 1, 'https://ror.org/058nsgg43 Integrated Radiological Services (United Kingdom)'), (14443, 'https://ror.org/058qrep02', 'en', 1, 'https://ror.org/058qrep02 Hawaii Department of Business Economic Development and Tourism'), (14444, 'https://ror.org/058wkc079', 'en', 1, 'https://ror.org/058wkc079 Cooper Clinic'), (14445, 'https://ror.org/058xzat49', 'en', 1, 'https://ror.org/058xzat49 Max Planck Institute of Immunobiology and Epigenetics Max-Planck-Institut für Immunobiologie und Epigenetik'), (14446, 'https://ror.org/05902ma20', 'no_lang_code', 1, 'https://ror.org/05902ma20 Gradient Biomodeling (United States)'), (14447, 'https://ror.org/0592ykd44', 'no_lang_code', 1, 'https://ror.org/0592ykd44 Logimatic (Denmark)'), (14448, 'https://ror.org/0593q3t13', 'en', 1, 'https://ror.org/0593q3t13 Prostate Cancer Prevention Foundation'), (14449, 'https://ror.org/0593sjj19', 'no_lang_code', 1, 'https://ror.org/0593sjj19 EpaleX (United States)'), (14450, 'https://ror.org/0593t7r22', 'en', 1, 'https://ror.org/0593t7r22 Latino Economic Development Center'), (14451, 'https://ror.org/0594bad20', 'en', 1, 'https://ror.org/0594bad20 International Centre for Reproductive Health Kenya'), (14452, 'https://ror.org/0594jva76', 'no_lang_code', 1, 'https://ror.org/0594jva76 Fumatech (Germany)'), (14453, 'https://ror.org/0594s0e67', 'en', 1, 'https://ror.org/0594s0e67 Carolinas Healthcare System'), (14454, 'https://ror.org/0594wvc02', 'no_lang_code', 1, 'https://ror.org/0594wvc02 Gühring (Germany)'), (14455, 'https://ror.org/0596y7869', 'en', 1, 'https://ror.org/0596y7869 Necessities Bag'), (14456, 'https://ror.org/05973ve37', 'en', 1, 'https://ror.org/05973ve37 Behavioral Health Services'), (14457, 'https://ror.org/0597eqm76', 'de', 1, 'https://ror.org/0597eqm76 Bundesanstalt für Bergbauernfragen Federal Institute for Less-Favoured and Mountainous Areas'), (14458, 'https://ror.org/0599afn45', 'en', 1, 'https://ror.org/0599afn45 Arkansas Spinal Cord Commission'), (14459, 'https://ror.org/059ddw530', 'no_lang_code', 1, 'https://ror.org/059ddw530 IBS Precision Engineering (Netherlands)'), (14460, 'https://ror.org/059e1y590', 'no_lang_code', 1, 'https://ror.org/059e1y590 Geoimaging (Cyprus)'), (14461, 'https://ror.org/059gpqq33', 'en', 1, 'https://ror.org/059gpqq33 Edgar County Public Health Department'), (14462, 'https://ror.org/059jv7160', 'en', 1, 'https://ror.org/059jv7160 Cornerstone Community Development Corporation'), (14463, 'https://ror.org/059k3db98', 'en', 1, 'https://ror.org/059k3db98 Morton Plant Mease'), (14464, 'https://ror.org/059rc1n32', 'en', 1, 'https://ror.org/059rc1n32 Medical City Dallas Hospital'), (14465, 'https://ror.org/059re9458', 'en', 1, 'https://ror.org/059re9458 Professional Association of Therapeutic Horsemanship International'), (14466, 'https://ror.org/059rk5f84', 'en', 1, 'https://ror.org/059rk5f84 North Carolina Zoo Society'), (14467, 'https://ror.org/059skcg45', 'en', 1, 'https://ror.org/059skcg45 Horizon Behavioral Health'), (14468, 'https://ror.org/059spgx09', 'no_lang_code', 1, 'https://ror.org/059spgx09 Alpha MOS (France)'), (14469, 'https://ror.org/059wkzj26', 'nl', 1, 'https://ror.org/059wkzj26 Maastro Clinic'), (14470, 'https://ror.org/059xcee45', 'en', 1, 'https://ror.org/059xcee45 Genesis Health System'), (14471, 'https://ror.org/059xna953', 'no_lang_code', 1, 'https://ror.org/059xna953 Acclima (United States)'), (14472, 'https://ror.org/059y4z581', 'no_lang_code', 1, 'https://ror.org/059y4z581 Semelab (United Kingdom)'), (14473, 'https://ror.org/059yw8356', 'no_lang_code', 1, 'https://ror.org/059yw8356 ProActive Solutions (United States)'), (14474, 'https://ror.org/059z7rw58', 'no_lang_code', 1, 'https://ror.org/059z7rw58 Astrobotic (United States)'), (14475, 'https://ror.org/059zg8r51', 'en', 1, 'https://ror.org/059zg8r51 National Federation of the Blind'), (14476, 'https://ror.org/05a19xw41', 'en', 1, 'https://ror.org/05a19xw41 Habitot Children''s Museum'), (14477, 'https://ror.org/05a34gy67', 'no_lang_code', 1, 'https://ror.org/05a34gy67 Opsona Therapeutics (Ireland)'), (14478, 'https://ror.org/05a3y1m41', 'en', 1, 'https://ror.org/05a3y1m41 Appalachian Sustainable Agriculture Project'), (14479, 'https://ror.org/05a5d8x70', 'no_lang_code', 1, 'https://ror.org/05a5d8x70 Pharmidex (United Kingdom)'), (14480, 'https://ror.org/05a6y6d35', 'en', 1, 'https://ror.org/05a6y6d35 Prayer of Faith International Ministries'), (14481, 'https://ror.org/05a88n366', 'en', 1, 'https://ror.org/05a88n366 Alliance of Health Organizations'), (14482, 'https://ror.org/05ac9wt58', 'no_lang_code', 1, 'https://ror.org/05ac9wt58 Wiser Systems (United States)'), (14483, 'https://ror.org/05accys62', 'no_lang_code', 1, 'https://ror.org/05accys62 Tetronics (United Kingdom)'), (14484, 'https://ror.org/05acrxx45', 'en', 1, 'https://ror.org/05acrxx45 Broward Health'), (14485, 'https://ror.org/05acvka91', 'no_lang_code', 1, 'https://ror.org/05acvka91 ViaCyte (United States)'), (14486, 'https://ror.org/05af39960', 'en', 1, 'https://ror.org/05af39960 Gillen Brewer School'), (14487, 'https://ror.org/05af63f35', 'no_lang_code', 1, 'https://ror.org/05af63f35 Almende (Netherlands)'), (14488, 'https://ror.org/05agqdj52', 'en', 1, 'https://ror.org/05agqdj52 Touch the Future'), (14489, 'https://ror.org/05ahayt71', 'en', 1, 'https://ror.org/05ahayt71 Good Shepherd Food Bank'), (14490, 'https://ror.org/05ahs5p53', 'no_lang_code', 1, 'https://ror.org/05ahs5p53 Brandywine Photonics (United States)'), (14491, 'https://ror.org/05an4ky72', 'en', 1, 'https://ror.org/05an4ky72 Backbones'), (14492, 'https://ror.org/05arrjj36', 'en', 1, 'https://ror.org/05arrjj36 Federation of Animal Science Societies'), (14493, 'https://ror.org/05ashvr51', 'no_lang_code', 1, 'https://ror.org/05ashvr51 Cosmo Pharmaceuticals (Italy)'), (14494, 'https://ror.org/05av82888', 'en', 1, 'https://ror.org/05av82888 New Mexico Cancer Center Foundation'), (14495, 'https://ror.org/05ax4es29', 'en', 1, 'https://ror.org/05ax4es29 The Hospice of Baton Rouge'), (14496, 'https://ror.org/05b04nk22', 'en', 1, 'https://ror.org/05b04nk22 Truly Living Well'), (14497, 'https://ror.org/05b0r1408', 'no_lang_code', 1, 'https://ror.org/05b0r1408 RHP Technology (Austria)'), (14498, 'https://ror.org/05b1dm808', 'no_lang_code', 1, 'https://ror.org/05b1dm808 Vattenfall (Germany)'), (14499, 'https://ror.org/05b1wed79', 'en', 1, 'https://ror.org/05b1wed79 Cancer Foundation for Life'), (14500, 'https://ror.org/05b2gms10', 'en', 1, 'https://ror.org/05b2gms10 International Breast Cancer Study Group'), (14501, 'https://ror.org/05b3zn620', 'no_lang_code', 1, 'https://ror.org/05b3zn620 Biomedal (Spain)'), (14502, 'https://ror.org/05b4fr068', 'en', 1, 'https://ror.org/05b4fr068 Iyengar Yoga Association of Greater New York'), (14503, 'https://ror.org/05b5v0n31', 'en', 1, 'https://ror.org/05b5v0n31 Salinas Valley Memorial Healthcare System'), (14504, 'https://ror.org/05b76jx43', 'en', 1, 'https://ror.org/05b76jx43 Consumers for Affordable Health Care'), (14505, 'https://ror.org/05b88kk95', 'no_lang_code', 1, 'https://ror.org/05b88kk95 Imerys (Switzerland)'), (14506, 'https://ror.org/05b8r6069', 'en', 1, 'https://ror.org/05b8r6069 Autistic Women & Nonbinary Network'), (14507, 'https://ror.org/05bamms85', 'it', 1, 'https://ror.org/05bamms85 Parco Tecnologico Padano'), (14508, 'https://ror.org/05bbwmf37', 'no_lang_code', 1, 'https://ror.org/05bbwmf37 Wastewater Compliance Systems (United States)'), (14509, 'https://ror.org/05bdw2t94', 'no_lang_code', 1, 'https://ror.org/05bdw2t94 Industrieanlagen Betriebsgesellschaft (Germany)'), (14510, 'https://ror.org/05bdznr21', 'no_lang_code', 1, 'https://ror.org/05bdznr21 PlasmaChem (Germany)'), (14511, 'https://ror.org/05bdzte56', 'no_lang_code', 1, 'https://ror.org/05bdzte56 Issy Media (France)'), (14512, 'https://ror.org/05bggyp09', 'en', 1, 'https://ror.org/05bggyp09 Lenoir–Rhyne University'), (14513, 'https://ror.org/05bj02613', 'en', 1, 'https://ror.org/05bj02613 Myrovlytis Trust'), (14514, 'https://ror.org/05br4cc69', 'no_lang_code', 1, 'https://ror.org/05br4cc69 AkzoNobel (United Kingdom)'), (14515, 'https://ror.org/05bsjqt55', 'no_lang_code', 1, 'https://ror.org/05bsjqt55 Philips (Belgium)'), (14516, 'https://ror.org/05bvn1m61', 'no_lang_code', 1, 'https://ror.org/05bvn1m61 Avaya (Germany)'), (14517, 'https://ror.org/05bw8ek06', 'en', 1, 'https://ror.org/05bw8ek06 Innovation To End Neglected Diseases'), (14518, 'https://ror.org/05bwzbr45', 'no_lang_code', 1, 'https://ror.org/05bwzbr45 Tetracore (United States)'), (14519, 'https://ror.org/05by9p696', 'no_lang_code', 1, 'https://ror.org/05by9p696 HansaBioMed (Estonia)'), (14520, 'https://ror.org/05c1evx63', 'no_lang_code', 1, 'https://ror.org/05c1evx63 Arcadia Biosciences (United States)'), (14521, 'https://ror.org/05c35qx73', 'en', 1, 'https://ror.org/05c35qx73 Cisco And Cisco Productions'), (14522, 'https://ror.org/05c3j0k11', 'en', 1, 'https://ror.org/05c3j0k11 CORE Foundation'), (14523, 'https://ror.org/05c4aed35', 'no_lang_code', 1, 'https://ror.org/05c4aed35 MediTox (Czechia)'), (14524, 'https://ror.org/05c4ary91', 'en', 1, 'https://ror.org/05c4ary91 Clinton Bush Haiti Fund'), (14525, 'https://ror.org/05c6nxg16', 'en', 1, 'https://ror.org/05c6nxg16 St. Mary''s Medical Center'), (14526, 'https://ror.org/05c79g497', 'no_lang_code', 1, 'https://ror.org/05c79g497 Cookson-Clal (France)'), (14527, 'https://ror.org/05cb44d17', 'no_lang_code', 1, 'https://ror.org/05cb44d17 Trivector (Sweden)'), (14528, 'https://ror.org/05cdper96', 'no_lang_code', 1, 'https://ror.org/05cdper96 IMGENEX India (India)'), (14529, 'https://ror.org/05ckqx151', 'en', 1, 'https://ror.org/05ckqx151 Integris Health'), (14530, 'https://ror.org/05ctn5s75', 'it', 1, 'https://ror.org/05ctn5s75 Iter'), (14531, 'https://ror.org/05cvht873', 'en', 1, 'https://ror.org/05cvht873 Professional Tutors of America'), (14532, 'https://ror.org/05cwdqs42', 'en', 1, 'https://ror.org/05cwdqs42 Human Rights Watch'), (14533, 'https://ror.org/05cwssc79', 'en', 1, 'https://ror.org/05cwssc79 Chai Lifeline'), (14534, 'https://ror.org/05cwy4x70', 'en', 1, 'https://ror.org/05cwy4x70 European Genetics Foundation'), (14535, 'https://ror.org/05cyed441', 'en', 1, 'https://ror.org/05cyed441 Pacific Center for Human Growth'), (14536, 'https://ror.org/05d021z60', 'no_lang_code', 1, 'https://ror.org/05d021z60 Technolution (Netherlands)'), (14537, 'https://ror.org/05d2zbe90', 'en', 1, 'https://ror.org/05d2zbe90 National Research Center for Maternal and Child Health Ана мен бала ұлттық ғылыми орталығы'), (14538, 'https://ror.org/05d3dxa83', 'en', 1, 'https://ror.org/05d3dxa83 National Office of Samoan Affairs'), (14539, 'https://ror.org/05d3xvm78', 'en', 1, 'https://ror.org/05d3xvm78 Newark Academy'), (14540, 'https://ror.org/05d43rg85', 'no_lang_code', 1, 'https://ror.org/05d43rg85 IT Consult'), (14541, 'https://ror.org/05d4eba54', 'en', 1, 'https://ror.org/05d4eba54 Goodman Community Center'), (14542, 'https://ror.org/05d4jgp54', 'en', 1, 'https://ror.org/05d4jgp54 Evaluations and Language resources Distribution Agency'), (14543, 'https://ror.org/05d6hsa78', 'en', 1, 'https://ror.org/05d6hsa78 Museum of Modern Art'), (14544, 'https://ror.org/05d87j665', 'en', 1, 'https://ror.org/05d87j665 Historic House Trust'), (14545, 'https://ror.org/05d9wka04', 'no_lang_code', 1, 'https://ror.org/05d9wka04 Mellitech (France)'), (14546, 'https://ror.org/05dap4b42', 'en', 1, 'https://ror.org/05dap4b42 Kids Konnected'), (14547, 'https://ror.org/05ddnsp63', 'no_lang_code', 1, 'https://ror.org/05ddnsp63 Long Branch Company (United States)'), (14548, 'https://ror.org/05ddvge76', 'en', 1, 'https://ror.org/05ddvge76 Hispanic Scholarship Fund'), (14549, 'https://ror.org/05dgy4t92', 'en', 1, 'https://ror.org/05dgy4t92 Seminole Public Schools'), (14550, 'https://ror.org/05dkgpr24', 'no_lang_code', 1, 'https://ror.org/05dkgpr24 Roma Servizi per la Mobilità (Italy)'), (14551, 'https://ror.org/05dmj1t18', 'no_lang_code', 1, 'https://ror.org/05dmj1t18 Akashi Therapeutics (United States)'), (14552, 'https://ror.org/05dmrvx33', 'no_lang_code', 1, 'https://ror.org/05dmrvx33 Microchips Biotech (United States)'), (14553, 'https://ror.org/05dngkv23', 'no_lang_code', 1, 'https://ror.org/05dngkv23 Neurochlore (France)'), (14554, 'https://ror.org/05dqa1196', 'no_lang_code', 1, 'https://ror.org/05dqa1196 CIM-mes Project (Poland)'), (14555, 'https://ror.org/05dt0hn88', 'no_lang_code', 1, 'https://ror.org/05dt0hn88 Orange (Poland)'), (14556, 'https://ror.org/05dv2tx94', 'no_lang_code', 1, 'https://ror.org/05dv2tx94 PricewaterhouseCoopers (France)'), (14557, 'https://ror.org/05dw6vm13', 'no_lang_code', 1, 'https://ror.org/05dw6vm13 Kids ''n Kamp'), (14558, 'https://ror.org/05dwc3j90', 'no_lang_code', 1, 'https://ror.org/05dwc3j90 Alkor Bio (Russia)'), (14559, 'https://ror.org/05dxexe52', 'en', 1, 'https://ror.org/05dxexe52 Tennessee Department of Agriculture'), (14560, 'https://ror.org/05dy6te41', 'en', 1, 'https://ror.org/05dy6te41 Nursing Mothers Counsel'), (14561, 'https://ror.org/05dybt340', 'en', 1, 'https://ror.org/05dybt340 Centre de Recherches sur les Communications Canada Communications Research Centre Canada'), (14562, 'https://ror.org/05dz2h194', 'en', 1, 'https://ror.org/05dz2h194 International Association of Wildland Fire'), (14563, 'https://ror.org/05e040g53', 'en', 1, 'https://ror.org/05e040g53 British Columbia Mobility Opportunities Society'), (14564, 'https://ror.org/05e08p639', 'no_lang_code', 1, 'https://ror.org/05e08p639 Algosystems (Greece)'), (14565, 'https://ror.org/05e3thx24', 'no_lang_code', 1, 'https://ror.org/05e3thx24 Andarix Pharmaceuticals (United States)'), (14566, 'https://ror.org/05e4cgj50', 'no_lang_code', 1, 'https://ror.org/05e4cgj50 PNO Consultants (United Kingdom)'), (14567, 'https://ror.org/05e5x5788', 'en', 1, 'https://ror.org/05e5x5788 Holzer Heritage Foundation'), (14568, 'https://ror.org/05e6jng70', 'en', 1, 'https://ror.org/05e6jng70 Office National de l''Eau Potable'), (14569, 'https://ror.org/05e75yx66', 'en', 1, 'https://ror.org/05e75yx66 Slovenian Environment Agency'), (14570, 'https://ror.org/05e7jge28', 'no_lang_code', 1, 'https://ror.org/05e7jge28 Gevo (United States)'), (14571, 'https://ror.org/05ea9vw65', 'no_lang_code', 1, 'https://ror.org/05ea9vw65 ApeX Therapeutics (United States)'), (14572, 'https://ror.org/05eb99a58', 'fr', 1, 'https://ror.org/05eb99a58 Centre technique de l''Industrie Horlogère'), (14573, 'https://ror.org/05edwfq62', 'no_lang_code', 1, 'https://ror.org/05edwfq62 Dynniq (Netherlands)'), (14574, 'https://ror.org/05eermw75', 'no_lang_code', 1, 'https://ror.org/05eermw75 Arbonaut (Finland)'), (14575, 'https://ror.org/05ef3nj70', 'es', 1, 'https://ror.org/05ef3nj70 Centro Uruguayo de Imagenología Molecular'), (14576, 'https://ror.org/05eh8vk50', 'en', 1, 'https://ror.org/05eh8vk50 Hope HealthCare Services'), (14577, 'https://ror.org/05ehfjt50', 'no_lang_code', 1, 'https://ror.org/05ehfjt50 General Electric (Italy)'), (14578, 'https://ror.org/05ejsxx38', 'en', 1, 'https://ror.org/05ejsxx38 Florida Center for Change'), (14579, 'https://ror.org/05ekq4672', 'en', 1, 'https://ror.org/05ekq4672 Manovikas Kendra Rehabilitation and Research Institute'), (14580, 'https://ror.org/05en24r36', 'sl', 1, 'https://ror.org/05en24r36 Chamber of Commerce and Industry of Slovenia Gospodarska zbornica Slovenije'), (14581, 'https://ror.org/05eq90j91', 'no_lang_code', 1, 'https://ror.org/05eq90j91 Società Generale d''Informatica Sogei (Italy)'), (14582, 'https://ror.org/05ethgq25', 'en', 1, 'https://ror.org/05ethgq25 East Bay Asian Youth Center'), (14583, 'https://ror.org/05etneg75', 'en', 1, 'https://ror.org/05etneg75 Conrad Foundation'), (14584, 'https://ror.org/05evayb02', 'en', 1, 'https://ror.org/05evayb02 Baruch S. Blumberg Institute'), (14585, 'https://ror.org/05evc8s02', 'no_lang_code', 1, 'https://ror.org/05evc8s02 Publicis Groupe (Switzerland)'), (14586, 'https://ror.org/05ew68y43', 'no_lang_code', 1, 'https://ror.org/05ew68y43 Norner (Norway)'), (14587, 'https://ror.org/05ewbqm54', 'en', 1, 'https://ror.org/05ewbqm54 Community Health Center'), (14588, 'https://ror.org/05eygvb62', 'en', 1, 'https://ror.org/05eygvb62 Future Generations University'), (14589, 'https://ror.org/05f08j617', 'no_lang_code', 1, 'https://ror.org/05f08j617 TE Connectivity (Netherlands)'), (14590, 'https://ror.org/05f0p1d39', 'en', 1, 'https://ror.org/05f0p1d39 Griffith Observatory'), (14591, 'https://ror.org/05f19wy41', 'no_lang_code', 1, 'https://ror.org/05f19wy41 Igan Biosciences (United States)'), (14592, 'https://ror.org/05f1at452', 'en', 1, 'https://ror.org/05f1at452 Community Service Society'), (14593, 'https://ror.org/05f3x9v03', 'en', 1, 'https://ror.org/05f3x9v03 Greenovate! Europe'), (14594, 'https://ror.org/05f50w156', 'en', 1, 'https://ror.org/05f50w156 Texas State Technical College West Texas'), (14595, 'https://ror.org/05f6pr134', 'no_lang_code', 1, 'https://ror.org/05f6pr134 TeliaSonera (Finland)'), (14596, 'https://ror.org/05f9w5178', 'en', 1, 'https://ror.org/05f9w5178 Friends-4-Cures'), (14597, 'https://ror.org/05fa04208', 'it', 1, 'https://ror.org/05fa04208 Fondazione Humanitas per la Ricerca'), (14598, 'https://ror.org/05fata852', 'no_lang_code', 1, 'https://ror.org/05fata852 Crile Carvey Consulting'), (14599, 'https://ror.org/05fd2ah98', 'no_lang_code', 1, 'https://ror.org/05fd2ah98 BioPlastic Polymers and Composites (United States)'), (14600, 'https://ror.org/05fd2ss89', 'en', 1, 'https://ror.org/05fd2ss89 Chronic Condition Information Network'), (14601, 'https://ror.org/05fd42690', 'no_lang_code', 1, 'https://ror.org/05fd42690 Huron (France)'), (14602, 'https://ror.org/05ffh9f12', 'en', 1, 'https://ror.org/05ffh9f12 Bay Area Outreach and Recreation Program'), (14603, 'https://ror.org/05ffr8x96', 'en', 1, 'https://ror.org/05ffr8x96 Kidney Cancer Association'), (14604, 'https://ror.org/05fg03x56', 'no_lang_code', 1, 'https://ror.org/05fg03x56 Optibase (Israel)'), (14605, 'https://ror.org/05fhfxg73', 'en', 1, 'https://ror.org/05fhfxg73 Portland Fruit Tree Project'), (14606, 'https://ror.org/05fkp1h83', 'en', 1, 'https://ror.org/05fkp1h83 Los Angeles LGBT Center'), (14607, 'https://ror.org/05fm74681', 'no_lang_code', 1, 'https://ror.org/05fm74681 CIRCA Group Europe (Ireland)'), (14608, 'https://ror.org/05fn46j05', 'no_lang_code', 1, 'https://ror.org/05fn46j05 Expression Drug Designs (United States)'), (14609, 'https://ror.org/05fpayd96', 'no_lang_code', 1, 'https://ror.org/05fpayd96 Bioproximity (United States)'), (14610, 'https://ror.org/05ftj4678', 'en', 1, 'https://ror.org/05ftj4678 Southampton City Council'), (14611, 'https://ror.org/05fvbe809', 'en', 1, 'https://ror.org/05fvbe809 Youth+Tech+Health'), (14612, 'https://ror.org/05fvp9283', 'en', 1, 'https://ror.org/05fvp9283 Health Care Without Harm'), (14613, 'https://ror.org/05fw3gc88', 'no_lang_code', 1, 'https://ror.org/05fw3gc88 Balance Therapeutics (United States)'), (14614, 'https://ror.org/05fw8c280', 'no_lang_code', 1, 'https://ror.org/05fw8c280 Istituto per le Piante da Legno e l''Ambiente'), (14615, 'https://ror.org/05fxhx251', 'en', 1, 'https://ror.org/05fxhx251 Adaptations Glassware Cooperative'), (14616, 'https://ror.org/05fxs5677', 'en', 1, 'https://ror.org/05fxs5677 Maui Economic Development Board'), (14617, 'https://ror.org/05fynv140', 'no_lang_code', 1, 'https://ror.org/05fynv140 Transelectrica (Romania)'), (14618, 'https://ror.org/05fz3ff46', 'no_lang_code', 1, 'https://ror.org/05fz3ff46 SynTouch (United States)'), (14619, 'https://ror.org/05g35d951', 'en', 1, 'https://ror.org/05g35d951 LifeBridge Health'), (14620, 'https://ror.org/05g3bg079', 'en', 1, 'https://ror.org/05g3bg079 KU Endowment'), (14621, 'https://ror.org/05g3rdv23', 'en', 1, 'https://ror.org/05g3rdv23 Waipa Foundation'), (14622, 'https://ror.org/05g4yrw83', 'en', 1, 'https://ror.org/05g4yrw83 International Society for Technology in Education'), (14623, 'https://ror.org/05g6deb76', 'en', 1, 'https://ror.org/05g6deb76 Doctors Without Borders, Médecins Sans Frontières'), (14624, 'https://ror.org/05g718r89', 'en', 1, 'https://ror.org/05g718r89 Nationalities Service Center'), (14625, 'https://ror.org/05g8ngg39', 'en', 1, 'https://ror.org/05g8ngg39 Lideres Campesinas'), (14626, 'https://ror.org/05gaksk83', 'en', 1, 'https://ror.org/05gaksk83 Elucid Bioimaging'), (14627, 'https://ror.org/05gbak870', 'no_lang_code', 1, 'https://ror.org/05gbak870 Malthe Winje (Norway)'), (14628, 'https://ror.org/05gbftj13', 'en', 1, 'https://ror.org/05gbftj13 Orange County Asian Pacific Islander Community Alliance'), (14629, 'https://ror.org/05gc2z195', 'en', 1, 'https://ror.org/05gc2z195 North Carolina Virtual Public School'), (14630, 'https://ror.org/05gcat543', 'no_lang_code', 1, 'https://ror.org/05gcat543 Barco (Belgium)'), (14631, 'https://ror.org/05gd75v11', 'en', 1, 'https://ror.org/05gd75v11 Council of Southeast Pennsylvania'), (14632, 'https://ror.org/05gh85146', 'no_lang_code', 1, 'https://ror.org/05gh85146 Arctik'), (14633, 'https://ror.org/05gj5j117', 'pt', 1, 'https://ror.org/05gj5j117 Fundação Bio Rio'), (14634, 'https://ror.org/05gjjzd22', 'en', 1, 'https://ror.org/05gjjzd22 Settlement Music School'), (14635, 'https://ror.org/05gkngk42', 'no_lang_code', 1, 'https://ror.org/05gkngk42 Elastopoli (Finland)'), (14636, 'https://ror.org/05gmzxx11', 'no_lang_code', 1, 'https://ror.org/05gmzxx11 Grupo ACS (Spain)'), (14637, 'https://ror.org/05gp52j69', 'en', 1, 'https://ror.org/05gp52j69 Friends of Cancer Research'), (14638, 'https://ror.org/05grd6s28', 'en', 1, 'https://ror.org/05grd6s28 South East European Research Centre'), (14639, 'https://ror.org/05gx58798', 'no_lang_code', 1, 'https://ror.org/05gx58798 Ridge Quest (United States)'), (14640, 'https://ror.org/05gypt250', 'sl', 1, 'https://ror.org/05gypt250 Giz-Grozd Plasttehnika Plasttechnics Cluster Slovenia'), (14641, 'https://ror.org/05gztep63', 'no_lang_code', 1, 'https://ror.org/05gztep63 Top 10 Produce (United States)'), (14642, 'https://ror.org/05h034e74', 'no_lang_code', 1, 'https://ror.org/05h034e74 ApoVax (United States)'), (14643, 'https://ror.org/05h2tck38', 'en', 1, 'https://ror.org/05h2tck38 Misty Meadows Mitey Riders'), (14644, 'https://ror.org/05h2v9w40', 'en', 1, 'https://ror.org/05h2v9w40 Tri-State Wheelchair Athletic Association'), (14645, 'https://ror.org/05h3xnp91', 'en', 1, 'https://ror.org/05h3xnp91 Fondy Food Center'), (14646, 'https://ror.org/05h4fw740', 'no_lang_code', 1, 'https://ror.org/05h4fw740 Promoter (Italy)'), (14647, 'https://ror.org/05h5atq78', 'en', 1, 'https://ror.org/05h5atq78 Northeast Regional Cancer Institute'), (14648, 'https://ror.org/05h5kva18', 'no_lang_code', 1, 'https://ror.org/05h5kva18 Saarbrücken Stadtwerke (Germany)'), (14649, 'https://ror.org/05h72ek27', 'no_lang_code', 1, 'https://ror.org/05h72ek27 AFRY (Finland)'), (14650, 'https://ror.org/05h7q5t87', 'en', 1, 'https://ror.org/05h7q5t87 Odyssey of the Mind'), (14651, 'https://ror.org/05h8dpx23', 'no_lang_code', 1, 'https://ror.org/05h8dpx23 RWE (Germany) Rheinisch-Westfälisches Elektrizitätswerk Aktiengesellschaft Rhine-Westfalia Electricity Factory'), (14652, 'https://ror.org/05hamyn96', 'en', 1, 'https://ror.org/05hamyn96 Ventura County Health Care Agency'), (14653, 'https://ror.org/05haqd335', 'en', 1, 'https://ror.org/05haqd335 Research Advocacy Network'), (14654, 'https://ror.org/05hbp5640', 'en', 1, 'https://ror.org/05hbp5640 McDonough County Health Department'), (14655, 'https://ror.org/05hcs6w28', 'no_lang_code', 1, 'https://ror.org/05hcs6w28 Transman Consulting for Transport System Management'), (14656, 'https://ror.org/05hevd194', 'no_lang_code', 1, 'https://ror.org/05hevd194 Ekodoma (Latvia)'), (14657, 'https://ror.org/05hfcd350', 'no_lang_code', 1, 'https://ror.org/05hfcd350 Pall Corporation (Germany)'), (14658, 'https://ror.org/05hfrjt79', 'en', 1, 'https://ror.org/05hfrjt79 Partners Asia'), (14659, 'https://ror.org/05hgfrp57', 'no_lang_code', 1, 'https://ror.org/05hgfrp57 Machining Centers Manufacturing (Italy)'), (14660, 'https://ror.org/05hhhbf86', 'en', 1, 'https://ror.org/05hhhbf86 Arabkir Joint Medical Center Արաբկիր Բժշկական Համալիր'), (14661, 'https://ror.org/05hkma334', 'no_lang_code', 1, 'https://ror.org/05hkma334 MAN (Germany)'), (14662, 'https://ror.org/05hkpph68', 'no_lang_code', 1, 'https://ror.org/05hkpph68 Imagination Computer Services (Austria)'), (14663, 'https://ror.org/05hnp8y26', 'en', 1, 'https://ror.org/05hnp8y26 ARC of Oswego County'), (14664, 'https://ror.org/05hp2t033', 'no_lang_code', 1, 'https://ror.org/05hp2t033 Lufthansa (Germany) Lufthansa German Airlines'), (14665, 'https://ror.org/05hpthj59', 'en', 1, 'https://ror.org/05hpthj59 Demoiselle 2 Femme'), (14666, 'https://ror.org/05hpvgy54', 'no_lang_code', 1, 'https://ror.org/05hpvgy54 Lindgren Pitman (United States)'), (14667, 'https://ror.org/05hsp8041', 'no_lang_code', 1, 'https://ror.org/05hsp8041 PatientsLikeMe (United States)'), (14668, 'https://ror.org/05htnwe41', 'no_lang_code', 1, 'https://ror.org/05htnwe41 ANALYSIS System Research High-Tech (Greece)'), (14669, 'https://ror.org/05hwnvh42', 'en', 1, 'https://ror.org/05hwnvh42 Midwest Wheelchair Sport and Social Club'), (14670, 'https://ror.org/05hxqtt35', 'en', 1, 'https://ror.org/05hxqtt35 Citymeals on Wheels'), (14671, 'https://ror.org/05hz2w230', 'en', 1, 'https://ror.org/05hz2w230 Kenya Forestry Research Institute'), (14672, 'https://ror.org/05j066y09', 'en', 1, 'https://ror.org/05j066y09 Hunstad Kortesis Bharti Cosmetic Surgery'), (14673, 'https://ror.org/05j2ppz60', 'en', 1, 'https://ror.org/05j2ppz60 Chest Medicine Associates'), (14674, 'https://ror.org/05j3gb586', 'en', 1, 'https://ror.org/05j3gb586 Friend for Life'), (14675, 'https://ror.org/05j5w4198', 'en', 1, 'https://ror.org/05j5w4198 Hillsborough Jr. Raiders'), (14676, 'https://ror.org/05j8hrz32', 'no_lang_code', 1, 'https://ror.org/05j8hrz32 Infinite Enzymes (United States)'), (14677, 'https://ror.org/05j9nj980', 'no_lang_code', 1, 'https://ror.org/05j9nj980 Rebexsess (United States)'), (14678, 'https://ror.org/05jb7h445', 'en', 1, 'https://ror.org/05jb7h445 County of Sonoma Department of Health Services'), (14679, 'https://ror.org/05jc7nb82', 'en', 1, 'https://ror.org/05jc7nb82 Hungarian Meteorological Service Országos Meteorológiai Szolgálat'), (14680, 'https://ror.org/05jfpn078', 'no_lang_code', 1, 'https://ror.org/05jfpn078 Türk Otomobil Fabrikası (Turkey)'), (14681, 'https://ror.org/05jh18x93', 'en', 1, 'https://ror.org/05jh18x93 National Commission on Teaching and America’s Future'), (14682, 'https://ror.org/05jhng925', 'en', 1, 'https://ror.org/05jhng925 Water Resources Research Centre'), (14683, 'https://ror.org/05jjek176', 'en', 1, 'https://ror.org/05jjek176 Hospice Austin'), (14684, 'https://ror.org/05jkpmg51', 'en', 1, 'https://ror.org/05jkpmg51 Navajo Technical University'), (14685, 'https://ror.org/05jnac203', 'no_lang_code', 1, 'https://ror.org/05jnac203 Anaxomics (Spain)'), (14686, 'https://ror.org/05jpe9382', 'en', 1, 'https://ror.org/05jpe9382 Pleasant Hill Community Center'), (14687, 'https://ror.org/05jr9m050', 'en', 1, 'https://ror.org/05jr9m050 Boston Health Care for the Homeless Program'), (14688, 'https://ror.org/05jwzx688', 'en', 1, 'https://ror.org/05jwzx688 Governor''s Institute on Substance Abuse'), (14689, 'https://ror.org/05jy4qt42', 'en', 1, 'https://ror.org/05jy4qt42 CSUF Auxiliary Services'), (14690, 'https://ror.org/05jy9ww07', 'no_lang_code', 1, 'https://ror.org/05jy9ww07 Semilab (Hungary)'), (14691, 'https://ror.org/05jz46060', 'no_lang_code', 1, 'https://ror.org/05jz46060 Koninklijke Philips Philips (France)'), (14692, 'https://ror.org/05jzrgd89', 'en', 1, 'https://ror.org/05jzrgd89 European Federation of Animal Science Europäische Vereinigung für Tierproduktion Federazione Europea di Zootecnia Fédération Européenne de Zootechnie'), (14693, 'https://ror.org/05k0fdc49', 'en', 1, 'https://ror.org/05k0fdc49 Oxfam America'), (14694, 'https://ror.org/05k0mz263', 'en', 1, 'https://ror.org/05k0mz263 CARE of Southeastern Michigan'), (14695, 'https://ror.org/05k321e68', 'no_lang_code', 1, 'https://ror.org/05k321e68 Bnoat Oncology (United States)'), (14696, 'https://ror.org/05k4ema52', 'fr', 1, 'https://ror.org/05k4ema52 Institut de Pharmacologie Moléculaire et Cellulaire Institute of Molecular and Cellular Pharmacology'), (14697, 'https://ror.org/05k4pxb23', 'no_lang_code', 1, 'https://ror.org/05k4pxb23 Nitrate Elimination Company (United States)'), (14698, 'https://ror.org/05k7ts633', 'no_lang_code', 1, 'https://ror.org/05k7ts633 Advanced Neural Dynamics (United States)'), (14699, 'https://ror.org/05k9wtr55', 'en', 1, 'https://ror.org/05k9wtr55 Berklee College of Music'), (14700, 'https://ror.org/05kbqyj25', 'no_lang_code', 1, 'https://ror.org/05kbqyj25 Saladax Biomedical (United States)'), (14701, 'https://ror.org/05kbsdg78', 'en', 1, 'https://ror.org/05kbsdg78 African Women''s Cancer Awareness Association'), (14702, 'https://ror.org/05kc7vw19', 'no_lang_code', 1, 'https://ror.org/05kc7vw19 Sociétés Anonyme Belge de Constructions Aéronautiques (Belgium)'), (14703, 'https://ror.org/05kcy9z49', 'no_lang_code', 1, 'https://ror.org/05kcy9z49 Norddeutsche Pflanzenzucht Hans-Georg Lembke (Germany)'), (14704, 'https://ror.org/05key9153', 'no_lang_code', 1, 'https://ror.org/05key9153 Ratier Figeac (France)'), (14705, 'https://ror.org/05kfq2558', 'no_lang_code', 1, 'https://ror.org/05kfq2558 Sonaca (Belgium)'), (14706, 'https://ror.org/05kjm8921', 'no_lang_code', 1, 'https://ror.org/05kjm8921 Ecorys (Netherlands)'), (14707, 'https://ror.org/05kkrdt60', 'en', 1, 'https://ror.org/05kkrdt60 Hebrew Health Care'), (14708, 'https://ror.org/05kmb8d23', 'en', 1, 'https://ror.org/05kmb8d23 Community Partners'), (14709, 'https://ror.org/05kp9q024', 'en', 1, 'https://ror.org/05kp9q024 Robeson Community College'), (14710, 'https://ror.org/05kqhkc03', 'en', 1, 'https://ror.org/05kqhkc03 Alaska Center for Children and Adults'), (14711, 'https://ror.org/05kqphm40', 'en', 1, 'https://ror.org/05kqphm40 Hope in Bloom'), (14712, 'https://ror.org/05kqz6183', 'en', 1, 'https://ror.org/05kqz6183 Leukaemia Foundation of Queensland'), (14713, 'https://ror.org/05kscmd46', 'en', 1, 'https://ror.org/05kscmd46 National Organization for Disorders of the Corpus Callosum'); INSERT INTO `rors` VALUES (14714, 'https://ror.org/05kw00716', 'de', 1, 'https://ror.org/05kw00716 Institut für Mikroelektronik Stuttgart'), (14715, 'https://ror.org/05kw2hj64', 'en', 1, 'https://ror.org/05kw2hj64 Maritime and Coastguard Agency'), (14716, 'https://ror.org/05kwxr504', 'en', 1, 'https://ror.org/05kwxr504 Home Free Home'), (14717, 'https://ror.org/05kx0fh55', 'no_lang_code', 1, 'https://ror.org/05kx0fh55 Clemessy (France) Eiffage Énergie Systèmes - Clemessy'), (14718, 'https://ror.org/05kxkhq65', 'no_lang_code', 1, 'https://ror.org/05kxkhq65 Syntax (Italy)'), (14719, 'https://ror.org/05kxtq558', 'en', 1, 'https://ror.org/05kxtq558 Institut für Molekulare Biologie Institute of Molecular Biology'), (14720, 'https://ror.org/05kxyr105', 'no_lang_code', 1, 'https://ror.org/05kxyr105 Spinverse (Finland)'), (14721, 'https://ror.org/05kywb567', 'en', 1, 'https://ror.org/05kywb567 Yellowstone Ecological Research Center'), (14722, 'https://ror.org/05m13z628', 'no_lang_code', 1, 'https://ror.org/05m13z628 Phenotype Screening Corporation (United States)'), (14723, 'https://ror.org/05m1tqb62', 'en', 1, 'https://ror.org/05m1tqb62 Youth Farm'), (14724, 'https://ror.org/05m2c7461', 'it', 1, 'https://ror.org/05m2c7461 Centro Studi Luca d’Agliano'), (14725, 'https://ror.org/05m45td34', 'no_lang_code', 1, 'https://ror.org/05m45td34 Aaranya Biosciences (India)'), (14726, 'https://ror.org/05m4e6y57', 'en', 1, 'https://ror.org/05m4e6y57 Cleveland Cord Blood Center'), (14727, 'https://ror.org/05m5has32', 'es', 1, 'https://ror.org/05m5has32 Fundación para la Formación e Investigación Sanitarias de la Región de Murcia'), (14728, 'https://ror.org/05m6rcv15', 'no_lang_code', 1, 'https://ror.org/05m6rcv15 Abingdon Health (United Kingdom)'), (14729, 'https://ror.org/05m6rdh46', 'en', 1, 'https://ror.org/05m6rdh46 Microfinance and Community Development Institute'), (14730, 'https://ror.org/05m753j61', 'en', 1, 'https://ror.org/05m753j61 The African-American Historical & Cultural Museum of the SJV'), (14731, 'https://ror.org/05m866204', 'no_lang_code', 1, 'https://ror.org/05m866204 Iquadrat (Spain)'), (14732, 'https://ror.org/05m8ec563', 'en', 1, 'https://ror.org/05m8ec563 All Russia Petroleum Research Exploration Institute Всероссийский нефтяной научно-исследовательский геологоразведочный институт'), (14733, 'https://ror.org/05m92h626', 'en', 1, 'https://ror.org/05m92h626 Partnership Schools'), (14734, 'https://ror.org/05md78f75', 'en', 1, 'https://ror.org/05md78f75 ACT for Multiple Sclerosis'), (14735, 'https://ror.org/05mdqv554', 'en', 1, 'https://ror.org/05mdqv554 Tilth Alliance'), (14736, 'https://ror.org/05memys52', 'en', 1, 'https://ror.org/05memys52 Austrian Research Centre for Forests Bundesforschungs- und Ausbildungszentrum für Wald, Naturgefahren und Landschaft'), (14737, 'https://ror.org/05mggr586', 'en', 1, 'https://ror.org/05mggr586 Executive Frameworks'), (14738, 'https://ror.org/05mgm0j54', 'no_lang_code', 1, 'https://ror.org/05mgm0j54 RTD Talos (Cyprus)'), (14739, 'https://ror.org/05mhfjj63', 'de', 1, 'https://ror.org/05mhfjj63 Milchwirtschaftliche Untersuchungs- und Versuchsanstalt Kempten'), (14740, 'https://ror.org/05mknav37', 'en', 1, 'https://ror.org/05mknav37 International Paralympic Committee Internationales Paralympisches Komitee'), (14741, 'https://ror.org/05mm21816', 'en', 1, 'https://ror.org/05mm21816 Advocacy Alliance Center of Texas'), (14742, 'https://ror.org/05mpz8404', 'no_lang_code', 1, 'https://ror.org/05mpz8404 Bwcon (Germany)'), (14743, 'https://ror.org/05mq12850', 'no_lang_code', 1, 'https://ror.org/05mq12850 Neste Oil (Finland) Neste Oyj'), (14744, 'https://ror.org/05mq65528', 'en', 1, 'https://ror.org/05mq65528 Fundación MD Anderson Cancer Center España MD Anderson Cancer Center Madrid'), (14745, 'https://ror.org/05mtv6b69', 'en', 1, 'https://ror.org/05mtv6b69 Ivy Hill Therapeutic Equestrian Center'), (14746, 'https://ror.org/05mtvr411', 'en', 1, 'https://ror.org/05mtvr411 Austin Children''s Chest Associates'), (14747, 'https://ror.org/05mvea908', 'en', 1, 'https://ror.org/05mvea908 Total Learning Research Institute'), (14748, 'https://ror.org/05mw3nb06', 'no_lang_code', 1, 'https://ror.org/05mw3nb06 Judex (Denmark)'), (14749, 'https://ror.org/05mw8jn36', 'en', 1, 'https://ror.org/05mw8jn36 Excelsior College'), (14750, 'https://ror.org/05mwahg17', 'no_lang_code', 1, 'https://ror.org/05mwahg17 Engineered Compost Systems (United States)'), (14751, 'https://ror.org/05mwcb123', 'en', 1, 'https://ror.org/05mwcb123 European Biomass Industry Association'), (14752, 'https://ror.org/05mwscs77', 'no_lang_code', 1, 'https://ror.org/05mwscs77 ABB (Italy)'), (14753, 'https://ror.org/05mwsq745', 'no_lang_code', 1, 'https://ror.org/05mwsq745 Oticon (Denmark)'), (14754, 'https://ror.org/05mytgs27', 'no_lang_code', 1, 'https://ror.org/05mytgs27 Biospherical Instruments (United States)'), (14755, 'https://ror.org/05n4g7v16', 'en', 1, 'https://ror.org/05n4g7v16 Indian Nations Conservation Alliance'), (14756, 'https://ror.org/05n597h70', 'en', 1, 'https://ror.org/05n597h70 Native Americans for Community Action'), (14757, 'https://ror.org/05n6y2c30', 'en', 1, 'https://ror.org/05n6y2c30 Pioneer Network'), (14758, 'https://ror.org/05n8mee18', 'en', 1, 'https://ror.org/05n8mee18 AIDS Healthcare Foundation'), (14759, 'https://ror.org/05n8xke20', 'en', 1, 'https://ror.org/05n8xke20 Dialogik (Germany)'), (14760, 'https://ror.org/05na31d57', 'no_lang_code', 1, 'https://ror.org/05na31d57 Applied Colloids (United States)'), (14761, 'https://ror.org/05nc4q646', 'fr', 1, 'https://ror.org/05nc4q646 Charbonnages de France'), (14762, 'https://ror.org/05neag745', 'en', 1, 'https://ror.org/05neag745 Life Sciences Research Partners'), (14763, 'https://ror.org/05nebqj51', 'en', 1, 'https://ror.org/05nebqj51 Community Service Council'), (14764, 'https://ror.org/05ng8fg61', 'no_lang_code', 1, 'https://ror.org/05ng8fg61 Invent Baltics'), (14765, 'https://ror.org/05ngknq10', 'no_lang_code', 1, 'https://ror.org/05ngknq10 JN Biosciences (United States)'), (14766, 'https://ror.org/05nh5td39', 'no_lang_code', 1, 'https://ror.org/05nh5td39 Nokia (Germany)'), (14767, 'https://ror.org/05njyag92', 'en', 1, 'https://ror.org/05njyag92 Academy of Science of Turkmenistan Академия наук Туркмении'), (14768, 'https://ror.org/05nmnr071', 'en', 1, 'https://ror.org/05nmnr071 Infrared Breast Health'), (14769, 'https://ror.org/05nmnwa45', 'en', 1, 'https://ror.org/05nmnwa45 Ministry of Communications and Information Technology'), (14770, 'https://ror.org/05nqms590', 'no_lang_code', 1, 'https://ror.org/05nqms590 SENTECH Instruments (Germany)'), (14771, 'https://ror.org/05nsscv85', 'en', 1, 'https://ror.org/05nsscv85 Red Feather Development Group'), (14772, 'https://ror.org/05nv29j63', 'no_lang_code', 1, 'https://ror.org/05nv29j63 EveryStep'), (14773, 'https://ror.org/05nvmrj72', 'no_lang_code', 1, 'https://ror.org/05nvmrj72 BioAge (Italy)'), (14774, 'https://ror.org/05nym7d38', 'no_lang_code', 1, 'https://ror.org/05nym7d38 Future Analytics'), (14775, 'https://ror.org/05p0m5765', 'en', 1, 'https://ror.org/05p0m5765 Georgia Organics'), (14776, 'https://ror.org/05p26gw61', 'en', 1, 'https://ror.org/05p26gw61 Department of Health and Human Services'), (14777, 'https://ror.org/05p2frj96', 'en', 1, 'https://ror.org/05p2frj96 Borough of Leonia'), (14778, 'https://ror.org/05p4evs57', 'en', 1, 'https://ror.org/05p4evs57 Eesti Kultuuriministeerium Ministry of Culture'), (14779, 'https://ror.org/05p52rc54', 'en', 1, 'https://ror.org/05p52rc54 National Eating Disorders Association'), (14780, 'https://ror.org/05p556071', 'en', 1, 'https://ror.org/05p556071 Morningside College'), (14781, 'https://ror.org/05p630g07', 'en', 1, 'https://ror.org/05p630g07 Colegio Comunitario de Laredo Laredo Community College'), (14782, 'https://ror.org/05p6m4w34', 'no_lang_code', 1, 'https://ror.org/05p6m4w34 Heat Biologics (United States)'), (14783, 'https://ror.org/05p7whk93', 'en', 1, 'https://ror.org/05p7whk93 Energy Therapies Alliance of Central Illinois'), (14784, 'https://ror.org/05p9y3e72', 'en', 1, 'https://ror.org/05p9y3e72 Schneider Children''s Hospital'), (14785, 'https://ror.org/05patbw61', 'en', 1, 'https://ror.org/05patbw61 Individual Differences'), (14786, 'https://ror.org/05patmk97', 'en', 1, 'https://ror.org/05patmk97 Institute for Chemical and Physical Processes Istituto per i Processi Chimico Fisici'), (14787, 'https://ror.org/05pbtbr30', 'no_lang_code', 1, 'https://ror.org/05pbtbr30 SpaceTec Partners'), (14788, 'https://ror.org/05pd7nw13', 'en', 1, 'https://ror.org/05pd7nw13 European Organisation for Security'), (14789, 'https://ror.org/05pda6j27', 'en', 1, 'https://ror.org/05pda6j27 Korean Resource Center'), (14790, 'https://ror.org/05pdk8j26', 'en', 1, 'https://ror.org/05pdk8j26 Northern California Regional Land Trust'), (14791, 'https://ror.org/05pfyvd35', 'no_lang_code', 1, 'https://ror.org/05pfyvd35 HyGear (Netherlands)'), (14792, 'https://ror.org/05pgmcc48', 'no_lang_code', 1, 'https://ror.org/05pgmcc48 Nokia (Austria)'), (14793, 'https://ror.org/05pjy6894', 'no_lang_code', 1, 'https://ror.org/05pjy6894 Mary’s Center'), (14794, 'https://ror.org/05pkbct74', 'no_lang_code', 1, 'https://ror.org/05pkbct74 Funk Production (Denmark)'), (14795, 'https://ror.org/05pmyqf04', 'en', 1, 'https://ror.org/05pmyqf04 Angel Foundation'), (14796, 'https://ror.org/05pnr2f39', 'pt', 1, 'https://ror.org/05pnr2f39 Associação Ilumina'), (14797, 'https://ror.org/05ppske48', 'no_lang_code', 1, 'https://ror.org/05ppske48 Invercon (United States)'), (14798, 'https://ror.org/05ppten54', 'en', 1, 'https://ror.org/05ppten54 Genesys Hurley Cancer Institute'), (14799, 'https://ror.org/05pq9tk67', 'no_lang_code', 1, 'https://ror.org/05pq9tk67 Exergy (United Kingdom)'), (14800, 'https://ror.org/05pqs7520', 'en', 1, 'https://ror.org/05pqs7520 National Capital Baptist Convention'), (14801, 'https://ror.org/05prc0a24', 'no_lang_code', 1, 'https://ror.org/05prc0a24 Europus'), (14802, 'https://ror.org/05pssxv84', 'en', 1, 'https://ror.org/05pssxv84 Aloha Medical Mission'), (14803, 'https://ror.org/05ptnwm30', 'en', 1, 'https://ror.org/05ptnwm30 ETA-Florence Renewable Energies'), (14804, 'https://ror.org/05pvq8q22', 'no_lang_code', 1, 'https://ror.org/05pvq8q22 Acumen Pharmaceuticals (United States)'), (14805, 'https://ror.org/05pw5zy84', 'no_lang_code', 1, 'https://ror.org/05pw5zy84 Science and Technology Corporation (United States)'), (14806, 'https://ror.org/05py5he32', 'en', 1, 'https://ror.org/05py5he32 Catholic Charities of the Archdiocese of Chicago'), (14807, 'https://ror.org/05pyc3h39', 'en', 1, 'https://ror.org/05pyc3h39 Institute of Atomic Energy Instytut Energii Atomowej'), (14808, 'https://ror.org/05q0b6266', 'no_lang_code', 1, 'https://ror.org/05q0b6266 Lombardia Informatica (Italy)'), (14809, 'https://ror.org/05q34ws54', 'en', 1, 'https://ror.org/05q34ws54 Moveable Feast'), (14810, 'https://ror.org/05q43r729', 'no_lang_code', 1, 'https://ror.org/05q43r729 Swarco (Germany)'), (14811, 'https://ror.org/05q4r7x36', 'no_lang_code', 1, 'https://ror.org/05q4r7x36 Armadillo Aerospace (United States)'), (14812, 'https://ror.org/05q5snp60', 'en', 1, 'https://ror.org/05q5snp60 St. Luke''s Cystic Fibrosis Center of Idaho'), (14813, 'https://ror.org/05q7scn65', 'no_lang_code', 1, 'https://ror.org/05q7scn65 MKmetric (Germany)'), (14814, 'https://ror.org/05q9j8881', 'no_lang_code', 1, 'https://ror.org/05q9j8881 Aquaculture Systems Technologies (United States)'), (14815, 'https://ror.org/05q9yze82', 'en', 1, 'https://ror.org/05q9yze82 Institute of Neurobiology Институт по невробиология'), (14816, 'https://ror.org/05qa20027', 'no_lang_code', 1, 'https://ror.org/05qa20027 Enide Solutions (Spain)'), (14817, 'https://ror.org/05qa6yx98', 'no_lang_code', 1, 'https://ror.org/05qa6yx98 Novavax (Sweden)'), (14818, 'https://ror.org/05qap2184', 'no_lang_code', 1, 'https://ror.org/05qap2184 ActoGeniX (Belgium)'), (14819, 'https://ror.org/05qbngc87', 'en', 1, 'https://ror.org/05qbngc87 Ashby House'), (14820, 'https://ror.org/05qcgr122', 'en', 1, 'https://ror.org/05qcgr122 Native American Kennels'), (14821, 'https://ror.org/05qe3gd58', 'en', 1, 'https://ror.org/05qe3gd58 Dipartimento Federale dell''Interno Département fédéral de l''intérieur Eidgenössisches Departement des Innern Federal Department of Home Affairs'), (14822, 'https://ror.org/05qfbhd78', 'no_lang_code', 1, 'https://ror.org/05qfbhd78 Piaggio Aerospace (Italy)'), (14823, 'https://ror.org/05qjv8h52', 'en', 1, 'https://ror.org/05qjv8h52 Artistic Realization Technologies'), (14824, 'https://ror.org/05qp1m760', 'en', 1, 'https://ror.org/05qp1m760 Hurdle Jumpers'), (14825, 'https://ror.org/05qps5a28', 'it', 1, 'https://ror.org/05qps5a28 Istituto Zooprofilattico Sperimentale del Piemonte Liguria e Valle d''Aosta'), (14826, 'https://ror.org/05qrhgs40', 'en', 1, 'https://ror.org/05qrhgs40 Korean Community Service Center of Greater Washington'), (14827, 'https://ror.org/05qtmfe82', 'no_lang_code', 1, 'https://ror.org/05qtmfe82 Latitude Pharmaceuticals (United States)'), (14828, 'https://ror.org/05qwb1j70', 'en', 1, 'https://ror.org/05qwb1j70 European Virtual Institute for Integrated Risk Management'), (14829, 'https://ror.org/05qwb3m66', 'en', 1, 'https://ror.org/05qwb3m66 Celebration Stem Cell Centre'), (14830, 'https://ror.org/05qwgjf62', 'en', 1, 'https://ror.org/05qwgjf62 Pulmonary and Critical Care Associates'), (14831, 'https://ror.org/05qwqv243', 'en', 1, 'https://ror.org/05qwqv243 Rebuilding All Goals Efficiently'), (14832, 'https://ror.org/05qxcfy37', 'et', 1, 'https://ror.org/05qxcfy37 Eesti Rahvusringhääling Estonian Public Broadcasting'), (14833, 'https://ror.org/05qxj8k61', 'en', 1, 'https://ror.org/05qxj8k61 Glynwood'), (14834, 'https://ror.org/05r2sf328', 'no_lang_code', 1, 'https://ror.org/05r2sf328 Valerion Therapeutics (United States)'), (14835, 'https://ror.org/05r3h7k61', 'en', 1, 'https://ror.org/05r3h7k61 Sustainable Europe Research Institute'), (14836, 'https://ror.org/05r4ryw44', 'en', 1, 'https://ror.org/05r4ryw44 Baylor Scott and White Hillcrest Medical Center'), (14837, 'https://ror.org/05r5g1w07', 'en', 1, 'https://ror.org/05r5g1w07 Pennsylvania Center For Intuitive Studies'), (14838, 'https://ror.org/05r7x8h86', 'no_lang_code', 1, 'https://ror.org/05r7x8h86 Imaginary (Italy)'), (14839, 'https://ror.org/05r7zv414', 'en', 1, 'https://ror.org/05r7zv414 Fonds des Nations Unies pour l''Enfance United Nations Children''s Fund Canada'), (14840, 'https://ror.org/05r9by079', 'en', 1, 'https://ror.org/05r9by079 San Mateo County Health System'), (14841, 'https://ror.org/05rasm086', 'no_lang_code', 1, 'https://ror.org/05rasm086 T4tech (Italy)'), (14842, 'https://ror.org/05rb2ch24', 'en', 1, 'https://ror.org/05rb2ch24 National Sports Center for the Disabled'), (14843, 'https://ror.org/05rcrh741', 'de', 1, 'https://ror.org/05rcrh741 BioMed zet Life Science'), (14844, 'https://ror.org/05rdaxs90', 'no_lang_code', 1, 'https://ror.org/05rdaxs90 HydroBio (United States)'), (14845, 'https://ror.org/05rfemm41', 'no_lang_code', 1, 'https://ror.org/05rfemm41 Radiotelevisione Italiana (Italy)'), (14846, 'https://ror.org/05rg3k287', 'en', 1, 'https://ror.org/05rg3k287 International Mathematical Union'), (14847, 'https://ror.org/05rg5kc24', 'en', 1, 'https://ror.org/05rg5kc24 Nutritional Oncology Research Institute'), (14848, 'https://ror.org/05rg8s453', 'no_lang_code', 1, 'https://ror.org/05rg8s453 Laser Scan Engineering (United Kingdom)'), (14849, 'https://ror.org/05rgw8m46', 'no_lang_code', 1, 'https://ror.org/05rgw8m46 Efficient Pharma Management (Taiwan)'), (14850, 'https://ror.org/05rj6k491', 'en', 1, 'https://ror.org/05rj6k491 California Health Collaborative'), (14851, 'https://ror.org/05rn4h878', 'no_lang_code', 1, 'https://ror.org/05rn4h878 Siemens (Spain)'), (14852, 'https://ror.org/05rqavg73', 'no_lang_code', 1, 'https://ror.org/05rqavg73 Dassault Systèmes (Canada)'), (14853, 'https://ror.org/05rrkws98', 'no_lang_code', 1, 'https://ror.org/05rrkws98 Euroconsultants (Greece)'), (14854, 'https://ror.org/05rsdpj72', 'no_lang_code', 1, 'https://ror.org/05rsdpj72 Indus Business Systems (India) ఇండస్ బిజినెస్ సిస్టమ్స్ లిమిటెడ్'), (14855, 'https://ror.org/05rtjs925', 'no_lang_code', 1, 'https://ror.org/05rtjs925 Ekahau (Finland)'), (14856, 'https://ror.org/05rvv6a54', 'en', 1, 'https://ror.org/05rvv6a54 Columbus Community Clinical Oncology Program'), (14857, 'https://ror.org/05rwq6592', 'en', 1, 'https://ror.org/05rwq6592 The First Republican Clinical Hospital of the Ministry of Health of the Udmurt Republic Первая республиканская клиническая больница Министерства здравоохранения Удмуртской Республики'), (14858, 'https://ror.org/05rxdtg07', 'no_lang_code', 1, 'https://ror.org/05rxdtg07 BioCrea (Germany)'), (14859, 'https://ror.org/05ry19w12', 'no_lang_code', 1, 'https://ror.org/05ry19w12 Cofely (Switzerland)'), (14860, 'https://ror.org/05rynnb36', 'fr', 1, 'https://ror.org/05rynnb36 National Telecommunications Network for Technology, Education and Research Renater, Réseau National de Télécommunications pour la Technologie, l''Enseignement et la Recherche'), (14861, 'https://ror.org/05rzqb565', 'en', 1, 'https://ror.org/05rzqb565 Port of Rotterdam Authority'), (14862, 'https://ror.org/05s0g1g46', 'en', 1, 'https://ror.org/05s0g1g46 National Research Foundation'), (14863, 'https://ror.org/05s171n88', 'en', 1, 'https://ror.org/05s171n88 Premier Health Care'), (14864, 'https://ror.org/05s1gzc45', 'en', 1, 'https://ror.org/05s1gzc45 Central Florida Pulmonary Group'), (14865, 'https://ror.org/05s1xw009', 'en', 1, 'https://ror.org/05s1xw009 Fogarty Institute for Innovation'), (14866, 'https://ror.org/05s3s9p98', 'en', 1, 'https://ror.org/05s3s9p98 Saturday Academy'), (14867, 'https://ror.org/05s49hg54', 'no_lang_code', 1, 'https://ror.org/05s49hg54 Cross-Linked Enzyme Aggregates Technologies (Netherlands)'), (14868, 'https://ror.org/05s7a1377', 'it', 1, 'https://ror.org/05s7a1377 Centro Ceramico Bologna'), (14869, 'https://ror.org/05sa17k06', 'no_lang_code', 1, 'https://ror.org/05sa17k06 Roth and Rau (Germany)'), (14870, 'https://ror.org/05sbcvy11', 'en', 1, 'https://ror.org/05sbcvy11 Massachusetts Compassionate Care Coalition'), (14871, 'https://ror.org/05sbsdq46', 'no_lang_code', 1, 'https://ror.org/05sbsdq46 Institut Mikroelektronických Aplikací (Czechia)'), (14872, 'https://ror.org/05scb3e57', 'no_lang_code', 1, 'https://ror.org/05scb3e57 Paradigm Shift Therapeutics (United States)'), (14873, 'https://ror.org/05scg1q91', 'en', 1, 'https://ror.org/05scg1q91 Samaritan Health Services'), (14874, 'https://ror.org/05sdm2149', 'no_lang_code', 1, 'https://ror.org/05sdm2149 Applied Biomics (United States)'), (14875, 'https://ror.org/05sdy1b47', 'en', 1, 'https://ror.org/05sdy1b47 Interactive Technology Software and Media Association'), (14876, 'https://ror.org/05se9te27', 'no_lang_code', 1, 'https://ror.org/05se9te27 Searchlight Sensors (United States)'), (14877, 'https://ror.org/05sggp397', 'en', 1, 'https://ror.org/05sggp397 HealthPoint Communications'), (14878, 'https://ror.org/05sgqz436', 'no_lang_code', 1, 'https://ror.org/05sgqz436 Process Design Center (Netherlands)'), (14879, 'https://ror.org/05sh1yn13', 'no_lang_code', 1, 'https://ror.org/05sh1yn13 PFA Consulting (United States)'), (14880, 'https://ror.org/05sjffw91', 'en', 1, 'https://ror.org/05sjffw91 Encompass Health Rehabilitation Hospital of Tinton Falls'), (14881, 'https://ror.org/05sn2rv43', 'no_lang_code', 1, 'https://ror.org/05sn2rv43 Robert Miller Consulting'), (14882, 'https://ror.org/05spbxe41', 'no_lang_code', 1, 'https://ror.org/05spbxe41 Gamma Remote Sensing (Switzerland)'), (14883, 'https://ror.org/05spr2d45', 'no_lang_code', 1, 'https://ror.org/05spr2d45 Ricardo AEA (Germany)'), (14884, 'https://ror.org/05srkg434', 'en', 1, 'https://ror.org/05srkg434 Farm Safety For Just Kids'), (14885, 'https://ror.org/05sw0m628', 'en', 1, 'https://ror.org/05sw0m628 Hoag Orthopedic Institute'), (14886, 'https://ror.org/05sxn9j28', 'en', 1, 'https://ror.org/05sxn9j28 Coalition For A Safe Environment'), (14887, 'https://ror.org/05sxxz166', 'no_lang_code', 1, 'https://ror.org/05sxxz166 Novamont (Italy)'), (14888, 'https://ror.org/05syweh23', 'no_lang_code', 1, 'https://ror.org/05syweh23 Semafora Systems (Germany)'), (14889, 'https://ror.org/05t041s05', 'no_lang_code', 1, 'https://ror.org/05t041s05 Ariadna (Spain)'), (14890, 'https://ror.org/05t1dq444', 'en', 1, 'https://ror.org/05t1dq444 Supreme Court of Virginia'), (14891, 'https://ror.org/05t4n0c27', 'en', 1, 'https://ror.org/05t4n0c27 Georgi Nadjakov Institute of Solid State Physics Георги Наджаков Институт по физика на твърдото'), (14892, 'https://ror.org/05t6jk967', 'de', 1, 'https://ror.org/05t6jk967 Competence Centre for Electrochemical Surface Technology Kompetenzzentrum für elektrochemische Oberflächentechnologie'), (14893, 'https://ror.org/05t6zq805', 'pl', 1, 'https://ror.org/05t6zq805 Centrum Techniki Okrętowej Ship Design and Research Centre'), (14894, 'https://ror.org/05t72y326', 'en', 1, 'https://ror.org/05t72y326 Australasian Leukaemia and Lymphoma Group'), (14895, 'https://ror.org/05t7rnh97', 'en', 1, 'https://ror.org/05t7rnh97 Asthma and Allergy Specialists'), (14896, 'https://ror.org/05t86hn44', 'no_lang_code', 1, 'https://ror.org/05t86hn44 InSpark Technologies (United States)'), (14897, 'https://ror.org/05t918q20', 'en', 1, 'https://ror.org/05t918q20 Northeastern School District'), (14898, 'https://ror.org/05t9rkr85', 'en', 1, 'https://ror.org/05t9rkr85 Cancer Support Team'), (14899, 'https://ror.org/05tahaz79', 'en', 1, 'https://ror.org/05tahaz79 Ministry of Education, Science and Sport'), (14900, 'https://ror.org/05tcf2984', 'en', 1, 'https://ror.org/05tcf2984 Joliet Area Community Hospice'), (14901, 'https://ror.org/05tfemw78', 'no_lang_code', 1, 'https://ror.org/05tfemw78 Evoleo Technologies (Portugal)'), (14902, 'https://ror.org/05tff2467', 'en', 1, 'https://ror.org/05tff2467 Natural Resources Defense Council'), (14903, 'https://ror.org/05tg9b144', 'no_lang_code', 1, 'https://ror.org/05tg9b144 MSM Protein Technologies (United States)'), (14904, 'https://ror.org/05th36r26', 'en', 1, 'https://ror.org/05th36r26 Majlis Kanser Nasional National Cancer Council Malaysia'), (14905, 'https://ror.org/05th81a29', 'no_lang_code', 1, 'https://ror.org/05th81a29 TE Laboratories (Ireland)'), (14906, 'https://ror.org/05tjn7t69', 'en', 1, 'https://ror.org/05tjn7t69 European Association of Craft, Small and Medium-Sized Enterprises'), (14907, 'https://ror.org/05tkzae94', 'en', 1, 'https://ror.org/05tkzae94 National Women in Agriculture Association'), (14908, 'https://ror.org/05tmpbz04', 'en', 1, 'https://ror.org/05tmpbz04 Creative Aging Network-NC'), (14909, 'https://ror.org/05tn2bq24', 'en', 1, 'https://ror.org/05tn2bq24 Lewisham and Greenwich NHS Trust'), (14910, 'https://ror.org/05tns7243', 'en', 1, 'https://ror.org/05tns7243 Action for Autism'), (14911, 'https://ror.org/05tns8e08', 'en', 1, 'https://ror.org/05tns8e08 Neurology Specialists of Monmouth County'), (14912, 'https://ror.org/05tpne661', 'no_lang_code', 1, 'https://ror.org/05tpne661 Laviosa Minerals (Italy)'), (14913, 'https://ror.org/05tqewv36', 'no_lang_code', 1, 'https://ror.org/05tqewv36 Tecnaro (Germany)'), (14914, 'https://ror.org/05tqsj653', 'en', 1, 'https://ror.org/05tqsj653 Family Health Options Kenya'), (14915, 'https://ror.org/05tqy0n53', 'no_lang_code', 1, 'https://ror.org/05tqy0n53 TeliaSonera (Sweden)'), (14916, 'https://ror.org/05tve6796', 'no_lang_code', 1, 'https://ror.org/05tve6796 Cybion (Italy)'), (14917, 'https://ror.org/05tw37d72', 'en', 1, 'https://ror.org/05tw37d72 St. Mary''s Health System'), (14918, 'https://ror.org/05txx3b87', 'fr', 1, 'https://ror.org/05txx3b87 Centre Technique des Industries Aérauliques et Thermiques'), (14919, 'https://ror.org/05tynn421', 'no_lang_code', 1, 'https://ror.org/05tynn421 Progenitor Cell Therapy (United States)'), (14920, 'https://ror.org/05v2b6f63', 'en', 1, 'https://ror.org/05v2b6f63 Forum des Laboratoires nationaux Europeens de Recherche Routiere Forum of European National Highway Research Laboratories'), (14921, 'https://ror.org/05v6eh043', 'en', 1, 'https://ror.org/05v6eh043 Eastern Maine Healthcare Systems'), (14922, 'https://ror.org/05v6nmh25', 'no_lang_code', 1, 'https://ror.org/05v6nmh25 Heartspring'), (14923, 'https://ror.org/05v8mff05', 'en', 1, 'https://ror.org/05v8mff05 Children''s Specialized Hospital'), (14924, 'https://ror.org/05ve3t520', 'no_lang_code', 1, 'https://ror.org/05ve3t520 Intelligence for Environment and Security (Italy)'), (14925, 'https://ror.org/05vee8b45', 'no_lang_code', 1, 'https://ror.org/05vee8b45 Kuehnle AgroSystems (United States)'), (14926, 'https://ror.org/05vf2js71', 'no_lang_code', 1, 'https://ror.org/05vf2js71 Brookes Bell (United Kingdom)'), (14927, 'https://ror.org/05vgc9608', 'en', 1, 'https://ror.org/05vgc9608 Guilford County Schools'), (14928, 'https://ror.org/05vhqss82', 'en', 1, 'https://ror.org/05vhqss82 Internet Memory Foundation'), (14929, 'https://ror.org/05vj0gw61', 'no_lang_code', 1, 'https://ror.org/05vj0gw61 EntreChem (Spain)'), (14930, 'https://ror.org/05vjdx283', 'en', 1, 'https://ror.org/05vjdx283 CGS Group'), (14931, 'https://ror.org/05vksh612', 'en', 1, 'https://ror.org/05vksh612 Neuro Assistance Foundation'), (14932, 'https://ror.org/05vpgt980', 'en', 1, 'https://ror.org/05vpgt980 European Network of Living Labs'), (14933, 'https://ror.org/05vpwgn30', 'en', 1, 'https://ror.org/05vpwgn30 ICLEI - Local Governments for Sustainability'), (14934, 'https://ror.org/05vq3sw48', 'en', 1, 'https://ror.org/05vq3sw48 Breathe California of Sacramento Emigrant Trails'), (14935, 'https://ror.org/05vq5je50', 'nl', 1, 'https://ror.org/05vq5je50 East Netherlands Development Agency Ontwikkelingsmaatschappij Oost Nederland'), (14936, 'https://ror.org/05vrepm87', 'en', 1, 'https://ror.org/05vrepm87 Bergen Catholic High School'), (14937, 'https://ror.org/05vsymj75', 'en', 1, 'https://ror.org/05vsymj75 Mayland Community College'), (14938, 'https://ror.org/05vwbz082', 'en', 1, 'https://ror.org/05vwbz082 German Dutch Wind Tunnels'), (14939, 'https://ror.org/05vwzkh77', 'en', 1, 'https://ror.org/05vwzkh77 National LGBT Cancer Network'), (14940, 'https://ror.org/05vzfb740', 'en', 1, 'https://ror.org/05vzfb740 European Smart Card Industry Association'), (14941, 'https://ror.org/05w0e5x87', 'no_lang_code', 1, 'https://ror.org/05w0e5x87 Tecnologías para la Salud y el Bienestar (Spain)'), (14942, 'https://ror.org/05w0sqr84', 'en', 1, 'https://ror.org/05w0sqr84 Council for Agricultural Science and Technology'), (14943, 'https://ror.org/05w47ar02', 'en', 1, 'https://ror.org/05w47ar02 Allegany County Health Department'), (14944, 'https://ror.org/05w9g2j85', 'en', 1, 'https://ror.org/05w9g2j85 Institute of Cognitive Sciences and Technologies Istituto di Scienze e Tecnologie della Cognizione'), (14945, 'https://ror.org/05wbv7q50', 'no_lang_code', 1, 'https://ror.org/05wbv7q50 Brissonneau and Lotz (France) Brissonneau et Lotz'), (14946, 'https://ror.org/05wd0fd11', 'no_lang_code', 1, 'https://ror.org/05wd0fd11 PixarBio (United States)'), (14947, 'https://ror.org/05we1n045', 'no_lang_code', 1, 'https://ror.org/05we1n045 Adnet Systems (United States)'), (14948, 'https://ror.org/05wf54e71', 'no_lang_code', 1, 'https://ror.org/05wf54e71 I.Con. Innovation'), (14949, 'https://ror.org/05wgmk856', 'no_lang_code', 1, 'https://ror.org/05wgmk856 Oxley (United Kingdom)'), (14950, 'https://ror.org/05wjq4v91', 'en', 1, 'https://ror.org/05wjq4v91 Uganda Institute of Information & Communications Technology'), (14951, 'https://ror.org/05wkmd624', 'en', 1, 'https://ror.org/05wkmd624 Arlington Free Clinic'), (14952, 'https://ror.org/05wmmcx08', 'en', 1, 'https://ror.org/05wmmcx08 HealthNow New York'), (14953, 'https://ror.org/05wmqqp39', 'en', 1, 'https://ror.org/05wmqqp39 Inyo Mono Advocates for Community Action'), (14954, 'https://ror.org/05wpxj691', 'en', 1, 'https://ror.org/05wpxj691 Cotting School'), (14955, 'https://ror.org/05wq9kf61', 'en', 1, 'https://ror.org/05wq9kf61 Alternative Opportunities'), (14956, 'https://ror.org/05wrev716', 'no_lang_code', 1, 'https://ror.org/05wrev716 Generex Biotechnology (Canada)'), (14957, 'https://ror.org/05ws79528', 'en', 1, 'https://ror.org/05ws79528 Oregon Adaptive Sports'), (14958, 'https://ror.org/05wsk5f87', 'no_lang_code', 1, 'https://ror.org/05wsk5f87 ASM International (Finland)'), (14959, 'https://ror.org/05wy76019', 'no_lang_code', 1, 'https://ror.org/05wy76019 Demar Laser (Netherlands)'), (14960, 'https://ror.org/05x0fr110', 'no_lang_code', 1, 'https://ror.org/05x0fr110 HBLA (United States)'), (14961, 'https://ror.org/05x2b4167', 'no_lang_code', 1, 'https://ror.org/05x2b4167 Artemis Innovation (United States)'), (14962, 'https://ror.org/05x30r374', 'en', 1, 'https://ror.org/05x30r374 Mi Raza Community Center'), (14963, 'https://ror.org/05x5s0870', 'no_lang_code', 1, 'https://ror.org/05x5s0870 Perceptive Software (Germany)'), (14964, 'https://ror.org/05x88b790', 'no_lang_code', 1, 'https://ror.org/05x88b790 Harvard Bioscience (Germany)'), (14965, 'https://ror.org/05x9yy985', 'en', 1, 'https://ror.org/05x9yy985 University of Mount Olive'), (14966, 'https://ror.org/05xaqjm64', 'en', 1, 'https://ror.org/05xaqjm64 Pennsylvania Department of Education'), (14967, 'https://ror.org/05xavf734', 'no_lang_code', 1, 'https://ror.org/05xavf734 Graal Tech'), (14968, 'https://ror.org/05xere368', 'no_lang_code', 1, 'https://ror.org/05xere368 SingularLogic (Greece)'), (14969, 'https://ror.org/05xevjm20', 'no_lang_code', 1, 'https://ror.org/05xevjm20 Eureka Genomics (United States)'), (14970, 'https://ror.org/05xez8392', 'en', 1, 'https://ror.org/05xez8392 Nurse-Family Partnership'), (14971, 'https://ror.org/05xqtsb23', 'en', 1, 'https://ror.org/05xqtsb23 International Solvay Institutes'), (14972, 'https://ror.org/05xrtfh49', 'en', 1, 'https://ror.org/05xrtfh49 European Virtual Institute on Knowledge-based Multifunctional Materials'), (14973, 'https://ror.org/05xtgzc62', 'no_lang_code', 1, 'https://ror.org/05xtgzc62 Va-Q-tec (Germany)'), (14974, 'https://ror.org/05xvp5318', 'en', 1, 'https://ror.org/05xvp5318 Providence St. Peter Hospital'), (14975, 'https://ror.org/05xvy6672', 'en', 1, 'https://ror.org/05xvy6672 International Society for Clinical Densitometry'), (14976, 'https://ror.org/05xw0wj25', 'en', 1, 'https://ror.org/05xw0wj25 French Clinical Research Infrastructure Network'), (14977, 'https://ror.org/05xwst004', 'no_lang_code', 1, 'https://ror.org/05xwst004 Sampaş Nanotechnology (Turkey)'), (14978, 'https://ror.org/05xx8bb48', 'en', 1, 'https://ror.org/05xx8bb48 Sieć Badawcza Łukasiewicz - Instytut Spawalnictwa Łukasiewicz Research Network - Institute of Welding'), (14979, 'https://ror.org/05xy3es97', 'no_lang_code', 1, 'https://ror.org/05xy3es97 Organizzazione Sviluppo Vendite'), (14980, 'https://ror.org/05xyx5995', 'en', 1, 'https://ror.org/05xyx5995 Medscape'), (14981, 'https://ror.org/05xznzw56', 'sv', 1, 'https://ror.org/05xznzw56 Folkhälsans Forskningscentrum'), (14982, 'https://ror.org/05y2vby93', 'en', 1, 'https://ror.org/05y2vby93 Texas Health Resources Foundation'), (14983, 'https://ror.org/05y9hde07', 'en', 1, 'https://ror.org/05y9hde07 Palo Alto Center for Pulmonary Disease Prevention'), (14984, 'https://ror.org/05yap4w73', 'en', 1, 'https://ror.org/05yap4w73 Frontier Community Services'), (14985, 'https://ror.org/05yb1mg89', 'de', 1, 'https://ror.org/05yb1mg89 Forschungs- und Beratungsstelle Arbeitswelt'), (14986, 'https://ror.org/05yb3w112', 'en', 1, 'https://ror.org/05yb3w112 Singapore-MIT Alliance for Research and Technology'), (14987, 'https://ror.org/05yb6kv21', 'en', 1, 'https://ror.org/05yb6kv21 Boyne Research Institute'), (14988, 'https://ror.org/05yc27210', 'en', 1, 'https://ror.org/05yc27210 Bethel Elementary School'), (14989, 'https://ror.org/05yc3mk04', 'en', 1, 'https://ror.org/05yc3mk04 Healthy Start'), (14990, 'https://ror.org/05yd4kq77', 'no_lang_code', 1, 'https://ror.org/05yd4kq77 Chondrial Therapeutics (United States)'), (14991, 'https://ror.org/05yeqft47', 'en', 1, 'https://ror.org/05yeqft47 Baton Rouge Clinic'), (14992, 'https://ror.org/05yf91t27', 'en', 1, 'https://ror.org/05yf91t27 Northwest Community Health Center'), (14993, 'https://ror.org/05ygzqx22', 'en', 1, 'https://ror.org/05ygzqx22 The Doe Fund'), (14994, 'https://ror.org/05yh2xc78', 'no_lang_code', 1, 'https://ror.org/05yh2xc78 Celladon Corporation (United States)'), (14995, 'https://ror.org/05yhxm969', 'it', 1, 'https://ror.org/05yhxm969 Gruppi di Ricerca Economica Teorica ed Applicata'), (14996, 'https://ror.org/05yjrf567', 'no_lang_code', 1, 'https://ror.org/05yjrf567 Innora'), (14997, 'https://ror.org/05yjwhg67', 'en', 1, 'https://ror.org/05yjwhg67 Institute for Nuclear Research Pitesti'), (14998, 'https://ror.org/05ym2c938', 'no_lang_code', 1, 'https://ror.org/05ym2c938 VirTech (Bulgaria)'), (14999, 'https://ror.org/05ymt3c12', 'no_lang_code', 1, 'https://ror.org/05ymt3c12 AVEVA (Sweden)'), (15000, 'https://ror.org/05yq3xa52', 'no_lang_code', 1, 'https://ror.org/05yq3xa52 Inetec (Croatia)'), (15001, 'https://ror.org/0001tya14', 'no_lang_code', 1, 'https://ror.org/0001tya14 Crystal Research (United States)'), (15002, 'https://ror.org/00085w524', 'no_lang_code', 1, 'https://ror.org/00085w524 Beijing Software Enterprise Advisory Center (China) 北京软协企业管理顾问中心'), (15003, 'https://ror.org/0008zj958', 'no_lang_code', 1, 'https://ror.org/0008zj958 JPT Peptide Technologies (Germany)'), (15004, 'https://ror.org/0009gv735', 'it', 1, 'https://ror.org/0009gv735 Censis Foundation - Center for Social Studies Fondazione Censis - Centro Studi Investimenti Sociali'), (15005, 'https://ror.org/0009s9p66', 'no_lang_code', 1, 'https://ror.org/0009s9p66 BioMed Central (United Kingdom)'), (15006, 'https://ror.org/000akah41', 'en', 1, 'https://ror.org/000akah41 Sound Choice Pharmaceutical Institute'), (15007, 'https://ror.org/000cgzf80', 'no_lang_code', 1, 'https://ror.org/000cgzf80 Nyrstar Budel (Netherlands)'), (15008, 'https://ror.org/000ch3x42', 'en', 1, 'https://ror.org/000ch3x42 United States Olympic & Paralympic Committee'), (15009, 'https://ror.org/000fdtb56', 'no_lang_code', 1, 'https://ror.org/000fdtb56 Corporate Communications Group (United States)'), (15010, 'https://ror.org/000fyja13', 'en', 1, 'https://ror.org/000fyja13 Molecular Sciences Institute'), (15011, 'https://ror.org/000ge9g13', 'en', 1, 'https://ror.org/000ge9g13 Athens Technical College'), (15012, 'https://ror.org/000gxrm11', 'en', 1, 'https://ror.org/000gxrm11 Hospital for Sick Children Pediatric Center'), (15013, 'https://ror.org/000jj6973', 'en', 1, 'https://ror.org/000jj6973 John Wood Community College'), (15014, 'https://ror.org/000kvm359', 'it', 1, 'https://ror.org/000kvm359 National Park of Abruzzo Parco Nazionale d''Abruzzo'), (15015, 'https://ror.org/000px4v03', 'no_lang_code', 1, 'https://ror.org/000px4v03 Clopinet'), (15016, 'https://ror.org/000tz2r96', 'en', 1, 'https://ror.org/000tz2r96 European Distributed Energy Resources Laboratories'), (15017, 'https://ror.org/000wx6j65', 'en', 1, 'https://ror.org/000wx6j65 European Institute of Women''s Health'), (15018, 'https://ror.org/000ygtd83', 'en', 1, 'https://ror.org/000ygtd83 American Trauma Society'), (15019, 'https://ror.org/0012fsh60', 'en', 1, 'https://ror.org/0012fsh60 Hillwood Estate, Museum and Garden'), (15020, 'https://ror.org/0013kfc53', 'en', 1, 'https://ror.org/0013kfc53 Land Quality Management'), (15021, 'https://ror.org/0013xkf77', 'en', 1, 'https://ror.org/0013xkf77 Consortium for Research in Automatic and Telecommunications Consorzio per la Ricerca nell''Automatica e Telecomunicazioni'), (15022, 'https://ror.org/0017y4h13', 'no_lang_code', 1, 'https://ror.org/0017y4h13 Theranova (United States)'), (15023, 'https://ror.org/00187jv91', 'en', 1, 'https://ror.org/00187jv91 Lifelabs New York'), (15024, 'https://ror.org/0018fr046', 'en', 1, 'https://ror.org/0018fr046 Life Lab'), (15025, 'https://ror.org/001a4h086', 'no_lang_code', 1, 'https://ror.org/001a4h086 Serpin Pharma (United States)'), (15026, 'https://ror.org/001b0ke69', 'en', 1, 'https://ror.org/001b0ke69 Democenter Fondazione Democenter'), (15027, 'https://ror.org/001f6wc07', 'no_lang_code', 1, 'https://ror.org/001f6wc07 Aernnova (Spain)'), (15028, 'https://ror.org/001f7a930', 'it', 1, 'https://ror.org/001f7a930 Azienda Ospedaliera Citta'' della Salute e della Scienza di Torino'), (15029, 'https://ror.org/001fr6a82', 'en', 1, 'https://ror.org/001fr6a82 Union of Agricultural Cooperatives of Peza'), (15030, 'https://ror.org/001gdnj66', 'no_lang_code', 1, 'https://ror.org/001gdnj66 Future Diagnostics (Netherlands)'), (15031, 'https://ror.org/001h71z63', 'no_lang_code', 1, 'https://ror.org/001h71z63 Applied Medical Technology (United States)'), (15032, 'https://ror.org/001jxpk05', 'de', 1, 'https://ror.org/001jxpk05 Deutsche Gesellschaft für Galvano- und Oberflächentechnik'), (15033, 'https://ror.org/001kwas94', 'no_lang_code', 1, 'https://ror.org/001kwas94 Knowledge Integration (United Kingdom)'), (15034, 'https://ror.org/001m53j08', 'en', 1, 'https://ror.org/001m53j08 East Thames Group'), (15035, 'https://ror.org/001mf2769', 'no_lang_code', 1, 'https://ror.org/001mf2769 Berlin Schalltechnisches Büro'), (15036, 'https://ror.org/001nqp226', 'pt', 1, 'https://ror.org/001nqp226 Centro Operativo e de Tecnologia de Regadio'), (15037, 'https://ror.org/001nr2c08', 'en', 1, 'https://ror.org/001nr2c08 Eyes of the World Media Group'), (15038, 'https://ror.org/001rww263', 'no_lang_code', 1, 'https://ror.org/001rww263 Murata (France)'), (15039, 'https://ror.org/001s88f97', 'no_lang_code', 1, 'https://ror.org/001s88f97 Mondelēz International (United Kingdom)'), (15040, 'https://ror.org/001t4p955', 'no_lang_code', 1, 'https://ror.org/001t4p955 Xeris Pharmaceuticals (United States)'), (15041, 'https://ror.org/001te2382', 'no_lang_code', 1, 'https://ror.org/001te2382 Electronic Arts (United Kingdom)'), (15042, 'https://ror.org/001vc2w94', 'en', 1, 'https://ror.org/001vc2w94 Alaska Department of Education and Early Development'), (15043, 'https://ror.org/001vrfy97', 'en', 1, 'https://ror.org/001vrfy97 Carrier Clinic'), (15044, 'https://ror.org/001yh7w33', 'no_lang_code', 1, 'https://ror.org/001yh7w33 Dynamic Boosting Systems (United Kingdom)'), (15045, 'https://ror.org/001yzen24', 'no_lang_code', 1, 'https://ror.org/001yzen24 Docobo (United Kingdom)'), (15046, 'https://ror.org/0024sf220', 'en', 1, 'https://ror.org/0024sf220 American Accounting Association'), (15047, 'https://ror.org/0027ktx17', 'no_lang_code', 1, 'https://ror.org/0027ktx17 Oesterreichs Energie'), (15048, 'https://ror.org/0029qcb02', 'no_lang_code', 1, 'https://ror.org/0029qcb02 Begell House (United States)'), (15049, 'https://ror.org/002atrf55', 'fr', 1, 'https://ror.org/002atrf55 Centre Hospitalier Chrétien'), (15050, 'https://ror.org/002eajg41', 'no_lang_code', 1, 'https://ror.org/002eajg41 Real Time Tomography (United States)'), (15051, 'https://ror.org/002ev2d93', 'no_lang_code', 1, 'https://ror.org/002ev2d93 Ciris Ingénierie (France)'), (15052, 'https://ror.org/002g1fh49', 'no_lang_code', 1, 'https://ror.org/002g1fh49 AlphaMed (United States)'), (15053, 'https://ror.org/002gsek34', 'en', 1, 'https://ror.org/002gsek34 Institute for Employment Studies'), (15054, 'https://ror.org/002hjp317', 'no_lang_code', 1, 'https://ror.org/002hjp317 Compagnie Européenne d’intelligence Stratégique (France)'), (15055, 'https://ror.org/002hxf953', 'en', 1, 'https://ror.org/002hxf953 Tazewell County Health Department'), (15056, 'https://ror.org/002jks503', 'no_lang_code', 1, 'https://ror.org/002jks503 Medivir (Sweden)'), (15057, 'https://ror.org/002kwhf16', 'no_lang_code', 1, 'https://ror.org/002kwhf16 5N Plus (United Kingdom)'), (15058, 'https://ror.org/002mh8q73', 'en', 1, 'https://ror.org/002mh8q73 Enterprise State Community College'), (15059, 'https://ror.org/002mr7c38', 'fr', 1, 'https://ror.org/002mr7c38 Laval Mayenne Technopole'), (15060, 'https://ror.org/002qqr512', 'en', 1, 'https://ror.org/002qqr512 South Puget Intertribal Planning Agency'), (15061, 'https://ror.org/002qtbf65', 'no_lang_code', 1, 'https://ror.org/002qtbf65 Federal Mogul (Sweden)'), (15062, 'https://ror.org/002r6qy28', 'en', 1, 'https://ror.org/002r6qy28 Library of Michigan'), (15063, 'https://ror.org/002rgah83', 'no_lang_code', 1, 'https://ror.org/002rgah83 Rheonix (United States)'), (15064, 'https://ror.org/002s66543', 'no_lang_code', 1, 'https://ror.org/002s66543 Aerospace & Advanced Composites (Austria)'), (15065, 'https://ror.org/002vxyf08', 'no_lang_code', 1, 'https://ror.org/002vxyf08 Humanetics Corporation (United States)'), (15066, 'https://ror.org/002wydw38', 'en', 1, 'https://ror.org/002wydw38 St. Luke''s International Hospital 聖路加国際病院'), (15067, 'https://ror.org/002wz1627', 'no_lang_code', 1, 'https://ror.org/002wz1627 Equens (Netherlands)'), (15068, 'https://ror.org/002xeeh02', 'no_lang_code', 1, 'https://ror.org/002xeeh02 Ingeteam (Spain)'), (15069, 'https://ror.org/002zrf773', 'no_lang_code', 1, 'https://ror.org/002zrf773 Qualcomm (United States)'), (15070, 'https://ror.org/003013d40', 'en', 1, 'https://ror.org/003013d40 Citizens for Responsibility and Ethics in Washington'), (15071, 'https://ror.org/00303dn90', 'no_lang_code', 1, 'https://ror.org/00303dn90 Advanced Process Combinatorics (United States)'), (15072, 'https://ror.org/00305v037', 'en', 1, 'https://ror.org/00305v037 Center for Success and Independence'), (15073, 'https://ror.org/0032ykz68', 'no_lang_code', 1, 'https://ror.org/0032ykz68 Ascora (Germany)'), (15074, 'https://ror.org/0033e0z76', 'no_lang_code', 1, 'https://ror.org/0033e0z76 Eidos (Italy)'), (15075, 'https://ror.org/0033z1132', 'en', 1, 'https://ror.org/0033z1132 Company of Biologists'), (15076, 'https://ror.org/00342ps77', 'en', 1, 'https://ror.org/00342ps77 Cincinnati Christian University'), (15077, 'https://ror.org/0035qnb68', 'no_lang_code', 1, 'https://ror.org/0035qnb68 Compart (Germany)'), (15078, 'https://ror.org/0039w6753', 'no_lang_code', 1, 'https://ror.org/0039w6753 Etas (Germany)'), (15079, 'https://ror.org/003aveg56', 'no_lang_code', 1, 'https://ror.org/003aveg56 Ilika (United Kingdom)'), (15080, 'https://ror.org/003bfq559', 'en', 1, 'https://ror.org/003bfq559 Conseil International du Bâtiment International Council for Building, International Council for Research and Innovation in Building and Construction'), (15081, 'https://ror.org/003c9rw47', 'no_lang_code', 1, 'https://ror.org/003c9rw47 Icosagen (Estonia)'), (15082, 'https://ror.org/003dqcy46', 'no_lang_code', 1, 'https://ror.org/003dqcy46 AFrame Digital (United States)'), (15083, 'https://ror.org/003fa5112', 'en', 1, 'https://ror.org/003fa5112 Black Sea NGO Network'), (15084, 'https://ror.org/003fmz167', 'it', 1, 'https://ror.org/003fmz167 Istituto di Ricerche Economiche e Sociali'), (15085, 'https://ror.org/003fyf471', 'en', 1, 'https://ror.org/003fyf471 European Group for Integrated Social Research Europäische Gesellschaft für Regionale und Internationale Sozialforschung'), (15086, 'https://ror.org/003g29k51', 'no_lang_code', 1, 'https://ror.org/003g29k51 Latécoère (France)'), (15087, 'https://ror.org/003gfpb19', 'no_lang_code', 1, 'https://ror.org/003gfpb19 Caliber Imaging and Diagnostics (United States)'), (15088, 'https://ror.org/003j7c961', 'fr', 1, 'https://ror.org/003j7c961 Centre de Culture Scientifique, Technique et Industrielle'), (15089, 'https://ror.org/003k26w86', 'fr', 1, 'https://ror.org/003k26w86 Institut de Recherche et de Documentation en Économie de la Santé Institute for Research and Information in Health Economics'), (15090, 'https://ror.org/003kgv736', 'en', 1, 'https://ror.org/003kgv736 University of the West Indies'), (15091, 'https://ror.org/003nw0037', 'no_lang_code', 1, 'https://ror.org/003nw0037 Masmec (Italy)'), (15092, 'https://ror.org/003qafx79', 'no_lang_code', 1, 'https://ror.org/003qafx79 Ideko (Spain)'), (15093, 'https://ror.org/003rgf994', 'no_lang_code', 1, 'https://ror.org/003rgf994 Amethyst Research (United States)'), (15094, 'https://ror.org/003rpah63', 'no_lang_code', 1, 'https://ror.org/003rpah63 AkzoNobel (Sweden)'), (15095, 'https://ror.org/003rxtd24', 'en', 1, 'https://ror.org/003rxtd24 Ronald McDonald House Charities'), (15096, 'https://ror.org/003tgaf82', 'en', 1, 'https://ror.org/003tgaf82 Abraham Lincoln Presidential Library and Museum'), (15097, 'https://ror.org/003tn2r13', 'en', 1, 'https://ror.org/003tn2r13 Champlain Valley Union High School'), (15098, 'https://ror.org/003wz8a04', 'en', 1, 'https://ror.org/003wz8a04 Friends of Historic Boonville'), (15099, 'https://ror.org/003xs1762', 'en', 1, 'https://ror.org/003xs1762 Central Arizona College'), (15100, 'https://ror.org/003xwgp31', 'en', 1, 'https://ror.org/003xwgp31 The Roumel Group'), (15101, 'https://ror.org/003y83p14', 'en', 1, 'https://ror.org/003y83p14 University of the Third Age'), (15102, 'https://ror.org/0040q1c48', 'no_lang_code', 1, 'https://ror.org/0040q1c48 Agrii (United Kingdom)'), (15103, 'https://ror.org/00415cn92', 'no_lang_code', 1, 'https://ror.org/00415cn92 Lehnsgaard (Denmark)'), (15104, 'https://ror.org/0041zj605', 'en', 1, 'https://ror.org/0041zj605 AIDS Services of Austin'), (15105, 'https://ror.org/0042p6c32', 'no_lang_code', 1, 'https://ror.org/0042p6c32 IVL Audio (Canada)'), (15106, 'https://ror.org/0043ncq27', 'de', 1, 'https://ror.org/0043ncq27 Berliner Institut für Sozialforschung'), (15107, 'https://ror.org/0044j1p74', 'no_lang_code', 1, 'https://ror.org/0044j1p74 HMJ Corporation (United States)'), (15108, 'https://ror.org/0048mw156', 'no_lang_code', 1, 'https://ror.org/0048mw156 FM Mattsson (Sweden)'), (15109, 'https://ror.org/0049d1v72', 'en', 1, 'https://ror.org/0049d1v72 United States Tax Court'), (15110, 'https://ror.org/004ayva68', 'no_lang_code', 1, 'https://ror.org/004ayva68 BioBullets (United Kingdom)'), (15111, 'https://ror.org/004b61s59', 'no_lang_code', 1, 'https://ror.org/004b61s59 Advanced Science and Automation (United States)'), (15112, 'https://ror.org/004bcda17', 'pt', 1, 'https://ror.org/004bcda17 Instituto de Desenvolvimento e Inovação Tecnológica do Minho'), (15113, 'https://ror.org/004bhtn60', 'no_lang_code', 1, 'https://ror.org/004bhtn60 Eftas Remote Sensing Technology Transfer (Germany)'), (15114, 'https://ror.org/004csq624', 'no_lang_code', 1, 'https://ror.org/004csq624 Gentoo (United Kingdom)'), (15115, 'https://ror.org/004eh9171', 'no_lang_code', 1, 'https://ror.org/004eh9171 Helmed Spine Implants (Greece)'), (15116, 'https://ror.org/004fbgd98', 'no_lang_code', 1, 'https://ror.org/004fbgd98 InfoCamere (Italy)'), (15117, 'https://ror.org/004fhx245', 'no_lang_code', 1, 'https://ror.org/004fhx245 Farasis Energy (United States)'), (15118, 'https://ror.org/004h3nh40', 'en', 1, 'https://ror.org/004h3nh40 Kendall College'), (15119, 'https://ror.org/004hpvt45', 'no_lang_code', 1, 'https://ror.org/004hpvt45 Mediamobile (Finland)'), (15120, 'https://ror.org/004hxvm93', 'no_lang_code', 1, 'https://ror.org/004hxvm93 Fractal Systems (United States)'), (15121, 'https://ror.org/004jgdy75', 'en', 1, 'https://ror.org/004jgdy75 Youth Rights Media'), (15122, 'https://ror.org/004jkmn11', 'en', 1, 'https://ror.org/004jkmn11 Rhino Ark United States of America'), (15123, 'https://ror.org/004jpn268', 'no_lang_code', 1, 'https://ror.org/004jpn268 Lesprojekt (Czechia)'), (15124, 'https://ror.org/004mv3j76', 'no_lang_code', 1, 'https://ror.org/004mv3j76 CFN Precision'), (15125, 'https://ror.org/004mx7t23', 'en', 1, 'https://ror.org/004mx7t23 Birmingham Bloomfield Community Coalition'), (15126, 'https://ror.org/004nrp689', 'no_lang_code', 1, 'https://ror.org/004nrp689 BioPredict (United States)'), (15127, 'https://ror.org/004pdnb66', 'en', 1, 'https://ror.org/004pdnb66 Grace A. Dow Memorial Library'), (15128, 'https://ror.org/004q3d116', 'en', 1, 'https://ror.org/004q3d116 Institute of Biopolymers and Chemical Fibres'), (15129, 'https://ror.org/004rj7d23', 'en', 1, 'https://ror.org/004rj7d23 Dance Heritage Coalition'), (15130, 'https://ror.org/004sf5z22', 'no_lang_code', 1, 'https://ror.org/004sf5z22 Synthena (Switzerland)'), (15131, 'https://ror.org/004tefm87', 'no_lang_code', 1, 'https://ror.org/004tefm87 Isofoton (Spain)'), (15132, 'https://ror.org/004va3t80', 'no_lang_code', 1, 'https://ror.org/004va3t80 Internazionale Marmi e Macchine Carrara (Italy)'), (15133, 'https://ror.org/004vnf813', 'no_lang_code', 1, 'https://ror.org/004vnf813 Katchem (Czechia)'), (15134, 'https://ror.org/004w4kw49', 'it', 1, 'https://ror.org/004w4kw49 Comitato Termotecnico Italiano Energia e Ambiente'), (15135, 'https://ror.org/004wrwd64', 'no_lang_code', 1, 'https://ror.org/004wrwd64 Atlas Copco (United Kingdom)'), (15136, 'https://ror.org/004xm6e62', 'en', 1, 'https://ror.org/004xm6e62 Heartland Community College'), (15137, 'https://ror.org/004xzjm20', 'es', 1, 'https://ror.org/004xzjm20 Universidad Iberoamericana'), (15138, 'https://ror.org/004zaxy19', 'no_lang_code', 1, 'https://ror.org/004zaxy19 Faurecia (France)'), (15139, 'https://ror.org/0050kdp78', 'no_lang_code', 1, 'https://ror.org/0050kdp78 Materials Science International Services (Germany)'), (15140, 'https://ror.org/0050tts15', 'en', 1, 'https://ror.org/0050tts15 Tri-Cities Cancer Center'), (15141, 'https://ror.org/0052bbe49', 'en', 1, 'https://ror.org/0052bbe49 Rocky River Public Library'), (15142, 'https://ror.org/0053aqt47', 'no_lang_code', 1, 'https://ror.org/0053aqt47 Fluidhouse (Finland)'), (15143, 'https://ror.org/0053v9m13', 'no_lang_code', 1, 'https://ror.org/0053v9m13 PXBioVisioN (Germany)'), (15144, 'https://ror.org/0055z4983', 'no_lang_code', 1, 'https://ror.org/0055z4983 Christmann Informationstechnik + Medien (Germany)'), (15145, 'https://ror.org/0058kkn34', 'en', 1, 'https://ror.org/0058kkn34 Lottolab Studio'), (15146, 'https://ror.org/0058y2432', 'en', 1, 'https://ror.org/0058y2432 Chester County Hospital'), (15147, 'https://ror.org/005ac6938', 'no_lang_code', 1, 'https://ror.org/005ac6938 CDI Bioscience (United States)'), (15148, 'https://ror.org/005b83279', 'no_lang_code', 1, 'https://ror.org/005b83279 InfoConsult (Germany)'), (15149, 'https://ror.org/005cag216', 'no_lang_code', 1, 'https://ror.org/005cag216 BetaStem Therapeutics (United States)'), (15150, 'https://ror.org/005cv6b38', 'fr', 1, 'https://ror.org/005cv6b38 Celabor'); INSERT INTO `rors` VALUES (15151, 'https://ror.org/005h05b25', 'no_lang_code', 1, 'https://ror.org/005h05b25 Circle (United States)'), (15152, 'https://ror.org/005haay02', 'fr', 1, 'https://ror.org/005haay02 Institut National de Recherche en Santé Publique'), (15153, 'https://ror.org/005m99512', 'ro', 1, 'https://ror.org/005m99512 Institutul National de Cercetare si Dezvoltare pentru Fizica Pamantului National Institutue of Research and Development for Earth’s Physics'), (15154, 'https://ror.org/005mt8d46', 'no_lang_code', 1, 'https://ror.org/005mt8d46 Proximus (Belgium)'), (15155, 'https://ror.org/005sp1511', 'no_lang_code', 1, 'https://ror.org/005sp1511 Antenova (United Kingdom)'), (15156, 'https://ror.org/005szp141', 'no_lang_code', 1, 'https://ror.org/005szp141 ProterixBio (United States)'), (15157, 'https://ror.org/005v5p387', 'en', 1, 'https://ror.org/005v5p387 Kent District Library'), (15158, 'https://ror.org/005x6m040', 'en', 1, 'https://ror.org/005x6m040 International Virtual Laboratory for Enterprise Interoperability'), (15159, 'https://ror.org/005ynf375', 'en', 1, 'https://ror.org/005ynf375 Victorian Infectious Diseases Reference Laboratory'), (15160, 'https://ror.org/0060zp422', 'no_lang_code', 1, 'https://ror.org/0060zp422 Koninklijke BAM Groep Royal BAM Group (Netherlands)'), (15161, 'https://ror.org/0061msm67', 'en', 1, 'https://ror.org/0061msm67 Max Planck Digital Library'), (15162, 'https://ror.org/0062bek19', 'en', 1, 'https://ror.org/0062bek19 Irish Rail'), (15163, 'https://ror.org/0062tv278', 'en', 1, 'https://ror.org/0062tv278 Chicago Kent College of Law'), (15164, 'https://ror.org/0062wks65', 'no_lang_code', 1, 'https://ror.org/0062wks65 Internet Society Bulgaria'), (15165, 'https://ror.org/00634z117', 'no_lang_code', 1, 'https://ror.org/00634z117 Checkit (United Kingdom)'), (15166, 'https://ror.org/0063bq527', 'no_lang_code', 1, 'https://ror.org/0063bq527 Farran Technology (Ireland)'), (15167, 'https://ror.org/006471y50', 'no_lang_code', 1, 'https://ror.org/006471y50 Applied Materials (United Kingdom)'), (15168, 'https://ror.org/0064gh735', 'en', 1, 'https://ror.org/0064gh735 Mediterranean Institute of Fundamental Physics'), (15169, 'https://ror.org/0065wa002', 'no_lang_code', 1, 'https://ror.org/0065wa002 Applied Functional Materials (United Kingdom)'), (15170, 'https://ror.org/006828x19', 'no_lang_code', 1, 'https://ror.org/006828x19 Level 7 Systems (United Kingdom)'), (15171, 'https://ror.org/0069fh197', 'no_lang_code', 1, 'https://ror.org/0069fh197 Kepar Electronica (Spain)'), (15172, 'https://ror.org/006b89x83', 'no_lang_code', 1, 'https://ror.org/006b89x83 JBS Science (United States)'), (15173, 'https://ror.org/006ddrg17', 'no_lang_code', 1, 'https://ror.org/006ddrg17 ApplusVelosi (United Kingdom)'), (15174, 'https://ror.org/006exzm93', 'no_lang_code', 1, 'https://ror.org/006exzm93 Morris Leslie Group (United Kingdom)'), (15175, 'https://ror.org/006g3h191', 'no_lang_code', 1, 'https://ror.org/006g3h191 EngeniusMicro (United States)'), (15176, 'https://ror.org/006hgn665', 'no_lang_code', 1, 'https://ror.org/006hgn665 Glotech (United States)'), (15177, 'https://ror.org/006jrk197', 'no_lang_code', 1, 'https://ror.org/006jrk197 Goss Springs (United Kingdom)'), (15178, 'https://ror.org/006k1vg57', 'no_lang_code', 1, 'https://ror.org/006k1vg57 Allen Press (United States)'), (15179, 'https://ror.org/006kkkp25', 'no_lang_code', 1, 'https://ror.org/006kkkp25 Miller Canfield (United States)'), (15180, 'https://ror.org/006ng7z95', 'no_lang_code', 1, 'https://ror.org/006ng7z95 Interscience Communications (United Kingdom)'), (15181, 'https://ror.org/006nzxy18', 'no_lang_code', 1, 'https://ror.org/006nzxy18 Senso (Spain)'), (15182, 'https://ror.org/006p15d12', 'en', 1, 'https://ror.org/006p15d12 Daughters of the American Revolution'), (15183, 'https://ror.org/006pvfx30', 'en', 1, 'https://ror.org/006pvfx30 Wells College'), (15184, 'https://ror.org/006q46c69', 'sr', 1, 'https://ror.org/006q46c69 Zdravstveni centar'), (15185, 'https://ror.org/006ryea96', 'no_lang_code', 1, 'https://ror.org/006ryea96 Ashwoods Automotive (United Kingdom)'), (15186, 'https://ror.org/006sm2430', 'en', 1, 'https://ror.org/006sm2430 Illinois State Board of Education'), (15187, 'https://ror.org/006sr7078', 'no_lang_code', 1, 'https://ror.org/006sr7078 Regenerys (United Kingdom)'), (15188, 'https://ror.org/006wb1h58', 'en', 1, 'https://ror.org/006wb1h58 Dystonia Medical Research Foundation'), (15189, 'https://ror.org/006wz7f31', 'no_lang_code', 1, 'https://ror.org/006wz7f31 Engineering Acoustics (United States)'), (15190, 'https://ror.org/006xake10', 'en', 1, 'https://ror.org/006xake10 Jones County Junior College'), (15191, 'https://ror.org/006yg7y02', 'en', 1, 'https://ror.org/006yg7y02 Fond du Lac Historical Society'), (15192, 'https://ror.org/006ykk006', 'no_lang_code', 1, 'https://ror.org/006ykk006 Fimet (Finland)'), (15193, 'https://ror.org/00702wg16', 'fr', 1, 'https://ror.org/00702wg16 Institut National d''Optique National Optics Institute'), (15194, 'https://ror.org/0073dpj33', 'en', 1, 'https://ror.org/0073dpj33 Fond du Lac School District'), (15195, 'https://ror.org/0073qme72', 'no_lang_code', 1, 'https://ror.org/0073qme72 Antec (Germany)'), (15196, 'https://ror.org/0073snb49', 'en', 1, 'https://ror.org/0073snb49 weSPARK Cancer Support Center'), (15197, 'https://ror.org/007422545', 'no_lang_code', 1, 'https://ror.org/007422545 Active Space Technologies (Germany)'), (15198, 'https://ror.org/0078rjm63', 'en', 1, 'https://ror.org/0078rjm63 Strength For Life'), (15199, 'https://ror.org/0079hf726', 'no_lang_code', 1, 'https://ror.org/0079hf726 ARIA Technologies'), (15200, 'https://ror.org/007b60k22', 'en', 1, 'https://ror.org/007b60k22 Empire State Library Network'), (15201, 'https://ror.org/007cgsn27', 'no_lang_code', 1, 'https://ror.org/007cgsn27 High Voltage Partial Discharge (United Kingdom)'), (15202, 'https://ror.org/007cyr634', 'no_lang_code', 1, 'https://ror.org/007cyr634 AbTech (United States)'), (15203, 'https://ror.org/007j95w86', 'en', 1, 'https://ror.org/007j95w86 Greek Rescue Team'), (15204, 'https://ror.org/007jkeb78', 'no_lang_code', 1, 'https://ror.org/007jkeb78 FocalCool (United States)'), (15205, 'https://ror.org/007k2zh72', 'en', 1, 'https://ror.org/007k2zh72 Walking With Anthony'), (15206, 'https://ror.org/007q33p83', 'en', 1, 'https://ror.org/007q33p83 United States Handcycle Federation'), (15207, 'https://ror.org/007qfc639', 'no_lang_code', 1, 'https://ror.org/007qfc639 CNH Industrial (Belgium)'), (15208, 'https://ror.org/007rn0n34', 'no_lang_code', 1, 'https://ror.org/007rn0n34 Ashton & Moore (United Kingdom)'), (15209, 'https://ror.org/007v6yg52', 'en', 1, 'https://ror.org/007v6yg52 Bay State Community Services'), (15210, 'https://ror.org/007wqy698', 'no_lang_code', 1, 'https://ror.org/007wqy698 Vastrata (United Kingdom)'), (15211, 'https://ror.org/007xvzw21', 'en', 1, 'https://ror.org/007xvzw21 Institute of Highway Engineers'), (15212, 'https://ror.org/0084vrs13', 'no_lang_code', 1, 'https://ror.org/0084vrs13 Clariant (Germany)'), (15213, 'https://ror.org/0085h5x07', 'en', 1, 'https://ror.org/0085h5x07 Wounded Artist Project'), (15214, 'https://ror.org/0085nex47', 'en', 1, 'https://ror.org/0085nex47 Challenge Center'), (15215, 'https://ror.org/0085sdj13', 'no_lang_code', 1, 'https://ror.org/0085sdj13 Cerebral Diagnostics (Canada)'), (15216, 'https://ror.org/0085yms62', 'no_lang_code', 1, 'https://ror.org/0085yms62 AcQ Inducom'), (15217, 'https://ror.org/008869j48', 'en', 1, 'https://ror.org/008869j48 Identity'), (15218, 'https://ror.org/008a3c408', 'it', 1, 'https://ror.org/008a3c408 Federazione ANIE, Federazione Nazionale Imprese Elettroniche ed Elettrotecniche National Federation of Electrotechnical and Electronics'), (15219, 'https://ror.org/008abej30', 'no_lang_code', 1, 'https://ror.org/008abej30 Aylesford Newsprint (United Kingdom)'), (15220, 'https://ror.org/008bf8b33', 'en', 1, 'https://ror.org/008bf8b33 Flathead High School'), (15221, 'https://ror.org/008fn2468', 'en', 1, 'https://ror.org/008fn2468 Walk for Nepal'), (15222, 'https://ror.org/008g3nb29', 'no_lang_code', 1, 'https://ror.org/008g3nb29 BVT Technologies (Czechia)'), (15223, 'https://ror.org/008g9p546', 'en', 1, 'https://ror.org/008g9p546 Servicio Postal de los Estados Unidos United States Postal Service'), (15224, 'https://ror.org/008h20257', 'no_lang_code', 1, 'https://ror.org/008h20257 Martech International (Belgium)'), (15225, 'https://ror.org/008h7g239', 'no_lang_code', 1, 'https://ror.org/008h7g239 Akyüz Plastik (Turkey)'), (15226, 'https://ror.org/008hr1h38', 'en', 1, 'https://ror.org/008hr1h38 Century College'), (15227, 'https://ror.org/008j0pa45', 'it', 1, 'https://ror.org/008j0pa45 AIAS Bologna'), (15228, 'https://ror.org/008j31926', 'en', 1, 'https://ror.org/008j31926 Cary Medical Center'), (15229, 'https://ror.org/008j6jh18', 'no_lang_code', 1, 'https://ror.org/008j6jh18 Korona (Slovenia)'), (15230, 'https://ror.org/008ja9m31', 'en', 1, 'https://ror.org/008ja9m31 IT''S TIME TEXAS'), (15231, 'https://ror.org/008jf2g02', 'en', 1, 'https://ror.org/008jf2g02 Barre Town Middle and Elementary School'), (15232, 'https://ror.org/008mkmw26', 'no_lang_code', 1, 'https://ror.org/008mkmw26 Kubota Research Associates (United States)'), (15233, 'https://ror.org/008qv5513', 'no_lang_code', 1, 'https://ror.org/008qv5513 Intellispeak (United States)'), (15234, 'https://ror.org/008rbpk15', 'no_lang_code', 1, 'https://ror.org/008rbpk15 Interface Biologics (Canada)'), (15235, 'https://ror.org/008s3dc19', 'no_lang_code', 1, 'https://ror.org/008s3dc19 ChemRoutes (Canada)'), (15236, 'https://ror.org/008sks094', 'en', 1, 'https://ror.org/008sks094 Urologic Research Institute'), (15237, 'https://ror.org/008y25t13', 'en', 1, 'https://ror.org/008y25t13 Columbus Law Library Association'), (15238, 'https://ror.org/008y40y60', 'en', 1, 'https://ror.org/008y40y60 Cyprus Police'), (15239, 'https://ror.org/008yw1q74', 'no_lang_code', 1, 'https://ror.org/008yw1q74 PTC (France)'), (15240, 'https://ror.org/008zgvp64', 'en', 1, 'https://ror.org/008zgvp64 Public Library of Science'), (15241, 'https://ror.org/0092rcp79', 'en', 1, 'https://ror.org/0092rcp79 Dean Associates'), (15242, 'https://ror.org/0093px637', 'pl', 1, 'https://ror.org/0093px637 Fundacja Inkubator'), (15243, 'https://ror.org/0094j3d13', 'no_lang_code', 1, 'https://ror.org/0094j3d13 Brimson Laboratories (United States)'), (15244, 'https://ror.org/0095r2297', 'en', 1, 'https://ror.org/0095r2297 Shawnee State University'), (15245, 'https://ror.org/0096gcw21', 'en', 1, 'https://ror.org/0096gcw21 Centre for Independent Social Research Центр независимых социальных исследований'), (15246, 'https://ror.org/0098vp187', 'en', 1, 'https://ror.org/0098vp187 Global Health Systems Solutions'), (15247, 'https://ror.org/0099crw67', 'en', 1, 'https://ror.org/0099crw67 Courtesy Associates'), (15248, 'https://ror.org/009a0gk47', 'no_lang_code', 1, 'https://ror.org/009a0gk47 Fives Landis (United Kingdom)'), (15249, 'https://ror.org/009a9gs26', 'en', 1, 'https://ror.org/009a9gs26 Community Colleges of Spokane'), (15250, 'https://ror.org/009c1h633', 'no_lang_code', 1, 'https://ror.org/009c1h633 Concawe'), (15251, 'https://ror.org/009dxxa13', 'no_lang_code', 1, 'https://ror.org/009dxxa13 RaNA Therapeutics (United States)'), (15252, 'https://ror.org/009ghz987', 'no_lang_code', 1, 'https://ror.org/009ghz987 DataMED (Italy)'), (15253, 'https://ror.org/009mt7c73', 'no_lang_code', 1, 'https://ror.org/009mt7c73 Demuris (United Kingdom)'), (15254, 'https://ror.org/009n13a08', 'no_lang_code', 1, 'https://ror.org/009n13a08 Dg Technology Service'), (15255, 'https://ror.org/009nkvj02', 'en', 1, 'https://ror.org/009nkvj02 Warren Newport Public Library'), (15256, 'https://ror.org/009qm7w92', 'en', 1, 'https://ror.org/009qm7w92 Higher Institute for Applied Sciences and Technology المعهد العالي للعلوم التطبيقية والتكنولوجيا'), (15257, 'https://ror.org/009vb3488', 'no_lang_code', 1, 'https://ror.org/009vb3488 CLOCKSS'), (15258, 'https://ror.org/009x4vx18', 'en', 1, 'https://ror.org/009x4vx18 Islenet'), (15259, 'https://ror.org/009xhdy29', 'no_lang_code', 1, 'https://ror.org/009xhdy29 E. Bröll (Austria)'), (15260, 'https://ror.org/00a1rzv11', 'en', 1, 'https://ror.org/00a1rzv11 American Institute of Aeronautics and Astronautics'), (15261, 'https://ror.org/00a25bg52', 'en', 1, 'https://ror.org/00a25bg52 Bibliothèque et archives canada Library and Archives Canada'), (15262, 'https://ror.org/00a45e114', 'en', 1, 'https://ror.org/00a45e114 Virginia Community College System'), (15263, 'https://ror.org/00a5e6254', 'no_lang_code', 1, 'https://ror.org/00a5e6254 Structure Based Design (United States)'), (15264, 'https://ror.org/00a5raq24', 'no_lang_code', 1, 'https://ror.org/00a5raq24 A-Gas International (United Kingdom)'), (15265, 'https://ror.org/00a61fv14', 'no_lang_code', 1, 'https://ror.org/00a61fv14 Data Numerica Institute (United States)'), (15266, 'https://ror.org/00a67te62', 'en', 1, 'https://ror.org/00a67te62 Bay Area Video Coalition'), (15267, 'https://ror.org/00a6s8j26', 'no_lang_code', 1, 'https://ror.org/00a6s8j26 Comsa Emte (Spain)'), (15268, 'https://ror.org/00a7vez14', 'no_lang_code', 1, 'https://ror.org/00a7vez14 Looking Glass Analytics (United States)'), (15269, 'https://ror.org/00a83sz87', 'no_lang_code', 1, 'https://ror.org/00a83sz87 Grassroots Arts and Research (Germany)'), (15270, 'https://ror.org/00a8x0890', 'no_lang_code', 1, 'https://ror.org/00a8x0890 TetraLogic Pharmaceuticals (United States)'), (15271, 'https://ror.org/00aaafk57', 'no_lang_code', 1, 'https://ror.org/00aaafk57 International Project Management, Plating and Materials (France)'), (15272, 'https://ror.org/00aaf6750', 'no_lang_code', 1, 'https://ror.org/00aaf6750 Cleopa (Germany)'), (15273, 'https://ror.org/00ab0d040', 'no_lang_code', 1, 'https://ror.org/00ab0d040 Axon (United States)'), (15274, 'https://ror.org/00ab5b586', 'en', 1, 'https://ror.org/00ab5b586 Institute of Mathematics and Mechanics'), (15275, 'https://ror.org/00ad1q772', 'no_lang_code', 1, 'https://ror.org/00ad1q772 Eurodecision (France)'), (15276, 'https://ror.org/00aeba842', 'no_lang_code', 1, 'https://ror.org/00aeba842 Impetus Consultants'), (15277, 'https://ror.org/00afj9w65', 'no_lang_code', 1, 'https://ror.org/00afj9w65 MBDA (United Kingdom)'), (15278, 'https://ror.org/00ag93x16', 'nl', 1, 'https://ror.org/00ag93x16 Goudappel Coffeng'), (15279, 'https://ror.org/00agk7330', 'en', 1, 'https://ror.org/00agk7330 The Institute for Therapeutic Discovery'), (15280, 'https://ror.org/00agrnm56', 'no_lang_code', 1, 'https://ror.org/00agrnm56 SKF (Italy)'), (15281, 'https://ror.org/00aj77a24', 'no_lang_code', 1, 'https://ror.org/00aj77a24 Danone (France)'), (15282, 'https://ror.org/00amm9s20', 'en', 1, 'https://ror.org/00amm9s20 London Borough of Islington'), (15283, 'https://ror.org/00as86q06', 'en', 1, 'https://ror.org/00as86q06 Historic Royal Palaces'), (15284, 'https://ror.org/00atett69', 'en', 1, 'https://ror.org/00atett69 Wintergreen Adaptive Sports'), (15285, 'https://ror.org/00awr5166', 'no_lang_code', 1, 'https://ror.org/00awr5166 Benteler (Austria)'), (15286, 'https://ror.org/00ayxy168', 'en', 1, 'https://ror.org/00ayxy168 Institute of Technical Acoustics Інстытут тэхнічнай акустыкі'), (15287, 'https://ror.org/00b132w65', 'en', 1, 'https://ror.org/00b132w65 Texas State Library and Archives Commission'), (15288, 'https://ror.org/00b1y8922', 'en', 1, 'https://ror.org/00b1y8922 Columbus Zoo and Aquarium'), (15289, 'https://ror.org/00b2pba14', 'no_lang_code', 1, 'https://ror.org/00b2pba14 Imprima Costruzioni (Italy)'), (15290, 'https://ror.org/00b5qjr76', 'en', 1, 'https://ror.org/00b5qjr76 Institute of Laser Physics Федеральное государственное бюджетное учреждение науки Институт лазерной физики Сибирского отделения Российской академии наук'), (15291, 'https://ror.org/00b63pv67', 'no_lang_code', 1, 'https://ror.org/00b63pv67 Industrial Optical Measurement Systems (United States)'), (15292, 'https://ror.org/00b7zp807', 'no_lang_code', 1, 'https://ror.org/00b7zp807 International Marine and Dredging Consultants'), (15293, 'https://ror.org/00bb3dm58', 'no_lang_code', 1, 'https://ror.org/00bb3dm58 Attagene'), (15294, 'https://ror.org/00bbtmy92', 'en', 1, 'https://ror.org/00bbtmy92 Penfold Patterson Research Institute'), (15295, 'https://ror.org/00bd5vn47', 'no_lang_code', 1, 'https://ror.org/00bd5vn47 Carlsberg Group (Denmark)'), (15296, 'https://ror.org/00bd6zx59', 'de', 1, 'https://ror.org/00bd6zx59 Chemisches und Veterinäruntersuchungsamt Münsterland-Emscher-Lippe'), (15297, 'https://ror.org/00bdqcv08', 'no_lang_code', 1, 'https://ror.org/00bdqcv08 Tivorsan Pharmaceuticals (United States)'), (15298, 'https://ror.org/00be37468', 'no_lang_code', 1, 'https://ror.org/00be37468 Azienda Mobilità e Trasporti'), (15299, 'https://ror.org/00bgcje57', 'en', 1, 'https://ror.org/00bgcje57 SAMFund'), (15300, 'https://ror.org/00bh7p191', 'no_lang_code', 1, 'https://ror.org/00bh7p191 GMC (Italy)'), (15301, 'https://ror.org/00bk31p84', 'en', 1, 'https://ror.org/00bk31p84 Blessing Hospital'), (15302, 'https://ror.org/00bkf6345', 'en', 1, 'https://ror.org/00bkf6345 American Sexual Health Association'), (15303, 'https://ror.org/00bkqxm79', 'en', 1, 'https://ror.org/00bkqxm79 Aldebaran Marine Research and Broadcast'), (15304, 'https://ror.org/00bm89f36', 'en', 1, 'https://ror.org/00bm89f36 Food Safety Authority of Ireland Údarás Sábháilteachta Bia na hÉireann'), (15305, 'https://ror.org/00bmb8a49', 'en', 1, 'https://ror.org/00bmb8a49 Antioch College'), (15306, 'https://ror.org/00bn7ex21', 'no_lang_code', 1, 'https://ror.org/00bn7ex21 Mecanizados Escribano'), (15307, 'https://ror.org/00bpwc735', 'en', 1, 'https://ror.org/00bpwc735 Centre of Technological Resources in Chemistry'), (15308, 'https://ror.org/00bt32k84', 'no_lang_code', 1, 'https://ror.org/00bt32k84 Luxcontrol (Luxembourg)'), (15309, 'https://ror.org/00bvzcv50', 'en', 1, 'https://ror.org/00bvzcv50 Harford Community College'), (15310, 'https://ror.org/00bws1855', 'en', 1, 'https://ror.org/00bws1855 Bureau exécutif du président des États-unis Executive Office of the President Oficina Ejecutiva del Presidente de los Estados Unidos'), (15311, 'https://ror.org/00bxwx839', 'en', 1, 'https://ror.org/00bxwx839 Associazione Italiana Editori Italian Publishers Association'), (15312, 'https://ror.org/00by5pn87', 'no_lang_code', 1, 'https://ror.org/00by5pn87 CUNA Mutual Group (United States)'), (15313, 'https://ror.org/00byceh24', 'no_lang_code', 1, 'https://ror.org/00byceh24 Huntington Consultancy (United States)'), (15314, 'https://ror.org/00c0vk765', 'no_lang_code', 1, 'https://ror.org/00c0vk765 Logisticon (Netherlands)'), (15315, 'https://ror.org/00c3ee991', 'no_lang_code', 1, 'https://ror.org/00c3ee991 Coherent (United Kingdom)'), (15316, 'https://ror.org/00c5abk38', 'no_lang_code', 1, 'https://ror.org/00c5abk38 Environmental Software and Services (Austria)'), (15317, 'https://ror.org/00c5d7t12', 'en', 1, 'https://ror.org/00c5d7t12 St. Louis County Library'), (15318, 'https://ror.org/00c5ttz44', 'no_lang_code', 1, 'https://ror.org/00c5ttz44 Lusotufo (Portugal)'), (15319, 'https://ror.org/00c66jq56', 'en', 1, 'https://ror.org/00c66jq56 South Shore Hospital'), (15320, 'https://ror.org/00c68pc60', 'en', 1, 'https://ror.org/00c68pc60 Agenzia Sviluppo Milano Metropoli S.P.A. Milano Metropoli Development Agency'), (15321, 'https://ror.org/00c9gjj68', 'no_lang_code', 1, 'https://ror.org/00c9gjj68 Ergon Consulting Group (Greece)'), (15322, 'https://ror.org/00c9qbz52', 'en', 1, 'https://ror.org/00c9qbz52 European Foundation for Clinical Nanomedicine'), (15323, 'https://ror.org/00ca0jp83', 'en', 1, 'https://ror.org/00ca0jp83 Uncas Health District'), (15324, 'https://ror.org/00cd95c65', 'de', 1, 'https://ror.org/00cd95c65 Gesellschaft für wissenschaftliche Datenverarbeitung mbH Göttingen'), (15325, 'https://ror.org/00cgfxr19', 'no_lang_code', 1, 'https://ror.org/00cgfxr19 ApprenNet (United States)'), (15326, 'https://ror.org/00ch9bs54', 'no_lang_code', 1, 'https://ror.org/00ch9bs54 Altec (United States)'), (15327, 'https://ror.org/00ckv2g77', 'no_lang_code', 1, 'https://ror.org/00ckv2g77 Multidisciplinary Digital Publishing Institute (Switzerland)'), (15328, 'https://ror.org/00cm6et23', 'en', 1, 'https://ror.org/00cm6et23 Haute École Lucia de Brouckère Higher Education Institution Lucia de Brouckère'), (15329, 'https://ror.org/00cmpcq57', 'no_lang_code', 1, 'https://ror.org/00cmpcq57 Areté Associates (United States)'), (15330, 'https://ror.org/00cnma114', 'en', 1, 'https://ror.org/00cnma114 Wasatch Adaptive Sports'), (15331, 'https://ror.org/00cpzjj86', 'en', 1, 'https://ror.org/00cpzjj86 Tapestri'), (15332, 'https://ror.org/00crcaf72', 'en', 1, 'https://ror.org/00crcaf72 American Vacuum Society'), (15333, 'https://ror.org/00crrhx33', 'no_lang_code', 1, 'https://ror.org/00crrhx33 Laitek (United States)'), (15334, 'https://ror.org/00ct8ya87', 'en', 1, 'https://ror.org/00ct8ya87 Living with Disability'), (15335, 'https://ror.org/00ctdbf19', 'en', 1, 'https://ror.org/00ctdbf19 Social Work Policy Institute'), (15336, 'https://ror.org/00ctmea67', 'no_lang_code', 1, 'https://ror.org/00ctmea67 Progress (Ireland)'), (15337, 'https://ror.org/00cxhe745', 'no_lang_code', 1, 'https://ror.org/00cxhe745 Design Science (United States)'), (15338, 'https://ror.org/00cyg5d40', 'es', 1, 'https://ror.org/00cyg5d40 Fundació Privada per a la Investigació Nutricional'), (15339, 'https://ror.org/00czndn44', 'no_lang_code', 1, 'https://ror.org/00czndn44 Eaton (United States)'), (15340, 'https://ror.org/00czybt24', 'no_lang_code', 1, 'https://ror.org/00czybt24 Évaluation Technologique Ingénierie and Applications (France)'), (15341, 'https://ror.org/00d08ne02', 'en', 1, 'https://ror.org/00d08ne02 Good Shepherd Penn Partners'), (15342, 'https://ror.org/00d19bg72', 'no_lang_code', 1, 'https://ror.org/00d19bg72 GeoX (Hungary)'), (15343, 'https://ror.org/00d269r04', 'no_lang_code', 1, 'https://ror.org/00d269r04 Ayanda Biosystems (Switzerland)'), (15344, 'https://ror.org/00d3bct21', 'en', 1, 'https://ror.org/00d3bct21 Ann Arbor Hands On Museum'), (15345, 'https://ror.org/00d7nha28', 'en', 1, 'https://ror.org/00d7nha28 European Council for Construction Research, Development and Innovation'), (15346, 'https://ror.org/00d8n5w16', 'no_lang_code', 1, 'https://ror.org/00d8n5w16 Bioscientifica (United Kingdom)'), (15347, 'https://ror.org/00d8t8t88', 'en', 1, 'https://ror.org/00d8t8t88 ETC International'), (15348, 'https://ror.org/00d9ep044', 'no_lang_code', 1, 'https://ror.org/00d9ep044 Cadence Design Systems (Germany)'), (15349, 'https://ror.org/00dcstt96', 'en', 1, 'https://ror.org/00dcstt96 Mediterranean Information Office for Environment Culture and Sustainable Development'), (15350, 'https://ror.org/00dd5gy70', 'en', 1, 'https://ror.org/00dd5gy70 Family Centre for Health and Wellness'), (15351, 'https://ror.org/00df0dn42', 'no_lang_code', 1, 'https://ror.org/00df0dn42 AMES Technology (United States)'), (15352, 'https://ror.org/00dfbgk15', 'no_lang_code', 1, 'https://ror.org/00dfbgk15 AccuStrata (United States)'), (15353, 'https://ror.org/00dgkkx07', 'no_lang_code', 1, 'https://ror.org/00dgkkx07 Institut für Getreideverarbeitung (Germany)'), (15354, 'https://ror.org/00dhrp990', 'no_lang_code', 1, 'https://ror.org/00dhrp990 Associated Dental Products (United Kingdom)'), (15355, 'https://ror.org/00dj8tn85', 'no_lang_code', 1, 'https://ror.org/00dj8tn85 Posti Group (Finland)'), (15356, 'https://ror.org/00dk3f710', 'no_lang_code', 1, 'https://ror.org/00dk3f710 Mass Spec Analytical (United Kingdom)'), (15357, 'https://ror.org/00dky2106', 'en', 1, 'https://ror.org/00dky2106 Plastic Surgery Foundation'), (15358, 'https://ror.org/00dnz3441', 'no_lang_code', 1, 'https://ror.org/00dnz3441 Almex (Netherlands)'), (15359, 'https://ror.org/00dpx2d03', 'en', 1, 'https://ror.org/00dpx2d03 Sarasota Memorial Health Care System'), (15360, 'https://ror.org/00dq07t65', 'de', 1, 'https://ror.org/00dq07t65 Institut für Forschung und Transfer'), (15361, 'https://ror.org/00dr9zd82', 'no_lang_code', 1, 'https://ror.org/00dr9zd82 Coris BioConcept (Belgium)'), (15362, 'https://ror.org/00drde038', 'no_lang_code', 1, 'https://ror.org/00drde038 Blendics (United States)'), (15363, 'https://ror.org/00dsy9f04', 'no_lang_code', 1, 'https://ror.org/00dsy9f04 EBSCO Industries (United States) EBSCO Information Services Ebsco information services'), (15364, 'https://ror.org/00dszq289', 'en', 1, 'https://ror.org/00dszq289 Community Bridges'), (15365, 'https://ror.org/00dt2yt23', 'en', 1, 'https://ror.org/00dt2yt23 Reading Partners'), (15366, 'https://ror.org/00dttrm27', 'en', 1, 'https://ror.org/00dttrm27 Rockford Public Library'), (15367, 'https://ror.org/00dvjtq12', 'en', 1, 'https://ror.org/00dvjtq12 Lake Erie College'), (15368, 'https://ror.org/00dy5by13', 'en', 1, 'https://ror.org/00dy5by13 Wheeling Forward'), (15369, 'https://ror.org/00dyspc39', 'en', 1, 'https://ror.org/00dyspc39 Sutter Institute for Medical Research'), (15370, 'https://ror.org/00e1c8t20', 'en', 1, 'https://ror.org/00e1c8t20 EuroGeoSurveys'), (15371, 'https://ror.org/00e1jkn44', 'cs', 1, 'https://ror.org/00e1jkn44 Energy Centre Ceske Budejovice'), (15372, 'https://ror.org/00e32zj49', 'en', 1, 'https://ror.org/00e32zj49 Therapeutic Research Foundation'), (15373, 'https://ror.org/00e386464', 'en', 1, 'https://ror.org/00e386464 European Photonics Industry Consortium'), (15374, 'https://ror.org/00e45j822', 'no_lang_code', 1, 'https://ror.org/00e45j822 Eduworks (United States)'), (15375, 'https://ror.org/00e4m3f78', 'no_lang_code', 1, 'https://ror.org/00e4m3f78 Hood Laboratories (United States)'), (15376, 'https://ror.org/00e52a384', 'no_lang_code', 1, 'https://ror.org/00e52a384 Biocrede (United States)'), (15377, 'https://ror.org/00e5y8987', 'no_lang_code', 1, 'https://ror.org/00e5y8987 CentMa (Germany)'), (15378, 'https://ror.org/00e7ske31', 'no_lang_code', 1, 'https://ror.org/00e7ske31 Intellipro Group (United States)'), (15379, 'https://ror.org/00e7vgg86', 'en', 1, 'https://ror.org/00e7vgg86 Lane College'), (15380, 'https://ror.org/00e90q161', 'no_lang_code', 1, 'https://ror.org/00e90q161 ASCOMP (Switzerland)'), (15381, 'https://ror.org/00eakxg05', 'no_lang_code', 1, 'https://ror.org/00eakxg05 Mosaix Software (United States)'), (15382, 'https://ror.org/00eb1tn47', 'no_lang_code', 1, 'https://ror.org/00eb1tn47 Greenspace Scotland (United Kingdom)'), (15383, 'https://ror.org/00ebjse29', 'no_lang_code', 1, 'https://ror.org/00ebjse29 Delong Instruments (Czechia)'), (15384, 'https://ror.org/00ebjwr02', 'no_lang_code', 1, 'https://ror.org/00ebjwr02 New Hampshire Ball Bearings (Germany)'), (15385, 'https://ror.org/00ecmkm26', 'en', 1, 'https://ror.org/00ecmkm26 Alaska Youth and Family Network'), (15386, 'https://ror.org/00ecpkf08', 'no_lang_code', 1, 'https://ror.org/00ecpkf08 Ljubljana Passenger Transport'), (15387, 'https://ror.org/00ed3k275', 'en', 1, 'https://ror.org/00ed3k275 Documentary Educational Resources'), (15388, 'https://ror.org/00ee3x048', 'no_lang_code', 1, 'https://ror.org/00ee3x048 IFU (Germany)'), (15389, 'https://ror.org/00eebj972', 'no_lang_code', 1, 'https://ror.org/00eebj972 Innovazione Automotive Metalmeccanica (Italy) Polo Innovazione Automotive'), (15390, 'https://ror.org/00egpfv87', 'no_lang_code', 1, 'https://ror.org/00egpfv87 Adelphi Group (United Kingdom)'), (15391, 'https://ror.org/00ehy3369', 'en', 1, 'https://ror.org/00ehy3369 Central Virginia Community College'), (15392, 'https://ror.org/00emwta72', 'en', 1, 'https://ror.org/00emwta72 Makin It Happen Coalition for Resilient Youth'), (15393, 'https://ror.org/00en6p903', 'en', 1, 'https://ror.org/00en6p903 Jackson Health System'), (15394, 'https://ror.org/00enk9f97', 'en', 1, 'https://ror.org/00enk9f97 European Federation of Railway Trackwork Contractors'), (15395, 'https://ror.org/00epfzn27', 'en', 1, 'https://ror.org/00epfzn27 Mental Health America of Oregon'), (15396, 'https://ror.org/00eq3r432', 'en', 1, 'https://ror.org/00eq3r432 Skyland Care Center'), (15397, 'https://ror.org/00eq8n589', 'it', 1, 'https://ror.org/00eq8n589 ASL Roma'), (15398, 'https://ror.org/00erc4w88', 'no_lang_code', 1, 'https://ror.org/00erc4w88 ATRP Solutions (United States)'), (15399, 'https://ror.org/00etec352', 'no_lang_code', 1, 'https://ror.org/00etec352 Beran Instruments (United Kingdom)'), (15400, 'https://ror.org/00etktf93', 'en', 1, 'https://ror.org/00etktf93 Sunshine Kids Foundation'), (15401, 'https://ror.org/00evbjw38', 'en', 1, 'https://ror.org/00evbjw38 Institute of Rural and Agricultural Development Instytut Rozwoju Wsi i Rolnictwa Polskiej Akademii Nauk'), (15402, 'https://ror.org/00ez32163', 'en', 1, 'https://ror.org/00ez32163 GeoScienceWorld'), (15403, 'https://ror.org/00f0rkp64', 'en', 1, 'https://ror.org/00f0rkp64 Delaware Coalition Against Domestic Violence'), (15404, 'https://ror.org/00f3ntm46', 'en', 1, 'https://ror.org/00f3ntm46 American Nuclear Society'), (15405, 'https://ror.org/00f3sby32', 'en', 1, 'https://ror.org/00f3sby32 Kirtland Community College'), (15406, 'https://ror.org/00f42c411', 'no_lang_code', 1, 'https://ror.org/00f42c411 Lab_Bell (Canada)'), (15407, 'https://ror.org/00f53v221', 'no_lang_code', 1, 'https://ror.org/00f53v221 Laser Tissue Welding (United States)'), (15408, 'https://ror.org/00f7mq966', 'no_lang_code', 1, 'https://ror.org/00f7mq966 Vidavo (Greece)'), (15409, 'https://ror.org/00fbzg557', 'no_lang_code', 1, 'https://ror.org/00fbzg557 Flying Bridge Technologies (United States)'), (15410, 'https://ror.org/00fg75a18', 'no_lang_code', 1, 'https://ror.org/00fg75a18 2.-0 LCA Consultants (Denmark)'), (15411, 'https://ror.org/00fgmmg43', 'no_lang_code', 1, 'https://ror.org/00fgmmg43 UniCredit (Italy) UniCredito Italiano'), (15412, 'https://ror.org/00fgr8e68', 'no_lang_code', 1, 'https://ror.org/00fgr8e68 Strohl Medical Technologies (United States)'), (15413, 'https://ror.org/00fgt9h27', 'no_lang_code', 1, 'https://ror.org/00fgt9h27 Carl Cloos Schweißtechnik (Germany)'), (15414, 'https://ror.org/00fjjzm86', 'no_lang_code', 1, 'https://ror.org/00fjjzm86 Flucon Fluid Control (Germany)'), (15415, 'https://ror.org/00fjpbt79', 'no_lang_code', 1, 'https://ror.org/00fjpbt79 ePack (United States)'), (15416, 'https://ror.org/00fp0qh18', 'en', 1, 'https://ror.org/00fp0qh18 International Commission for the Protection of the Danube River Internationale Kommission zum Schutz der Donau'), (15417, 'https://ror.org/00fpmfs44', 'no_lang_code', 1, 'https://ror.org/00fpmfs44 Andritz (Finland)'), (15418, 'https://ror.org/00fpt6s33', 'no_lang_code', 1, 'https://ror.org/00fpt6s33 AdaCore (France)'), (15419, 'https://ror.org/00fpvt160', 'no_lang_code', 1, 'https://ror.org/00fpvt160 Inhouse Engineering (Germany)'), (15420, 'https://ror.org/00frsr784', 'en', 1, 'https://ror.org/00frsr784 European Council of Applied Sciences and Engineering'), (15421, 'https://ror.org/00fsfag68', 'no_lang_code', 1, 'https://ror.org/00fsfag68 ImmBio (United Kingdom)'), (15422, 'https://ror.org/00fy4at53', 'en', 1, 'https://ror.org/00fy4at53 Institute of Mathematics and Computer Science'), (15423, 'https://ror.org/00fyp5993', 'en', 1, 'https://ror.org/00fyp5993 Essential Partners'), (15424, 'https://ror.org/00fyvea65', 'en', 1, 'https://ror.org/00fyvea65 National Library of Education'), (15425, 'https://ror.org/00fz5b994', 'no_lang_code', 1, 'https://ror.org/00fz5b994 AbilityNet (United Kingdom)'), (15426, 'https://ror.org/00g0gdw57', 'en', 1, 'https://ror.org/00g0gdw57 AIDS Research Consortium of Atlanta'), (15427, 'https://ror.org/00g1w6p21', 'en', 1, 'https://ror.org/00g1w6p21 Youth & Opportunity United'), (15428, 'https://ror.org/00g251176', 'en', 1, 'https://ror.org/00g251176 Middletown Public Library'), (15429, 'https://ror.org/00g46nx55', 'en', 1, 'https://ror.org/00g46nx55 New York State Energy Research and Development Authority'), (15430, 'https://ror.org/00g4cq821', 'no_lang_code', 1, 'https://ror.org/00g4cq821 Triple Point Technology (Canada)'), (15431, 'https://ror.org/00g6pb267', 'fr', 1, 'https://ror.org/00g6pb267 Bureau de Coopération Interuniversitaire, Conférence des Recteurs et des Principaux des Universités du Québec'), (15432, 'https://ror.org/00g8qdw34', 'no_lang_code', 1, 'https://ror.org/00g8qdw34 Arisaph Pharmaceuticals (United States)'), (15433, 'https://ror.org/00g930198', 'en', 1, 'https://ror.org/00g930198 The Stillpoint Foundation'), (15434, 'https://ror.org/00g9xdc37', 'en', 1, 'https://ror.org/00g9xdc37 United States House of Representatives'), (15435, 'https://ror.org/00gbzqw74', 'en', 1, 'https://ror.org/00gbzqw74 Wolf Park'), (15436, 'https://ror.org/00gbzwp97', 'no', 1, 'https://ror.org/00gbzwp97 Direktoratet for forvaltning og IKT'), (15437, 'https://ror.org/00gdzr170', 'en', 1, 'https://ror.org/00gdzr170 Baylor Scott & White - Central Texas Foundation'), (15438, 'https://ror.org/00gepdd80', 'en', 1, 'https://ror.org/00gepdd80 Atmosphere Systems and Services'), (15439, 'https://ror.org/00gfwqa54', 'en', 1, 'https://ror.org/00gfwqa54 E-Seniors'), (15440, 'https://ror.org/00gh58f75', 'en', 1, 'https://ror.org/00gh58f75 Library of Birmingham'), (15441, 'https://ror.org/00gh98d15', 'no_lang_code', 1, 'https://ror.org/00gh98d15 Straumann (Sweden)'), (15442, 'https://ror.org/00gk1z123', 'no_lang_code', 1, 'https://ror.org/00gk1z123 Euskaltel (Spain)'), (15443, 'https://ror.org/00gm39w38', 'en', 1, 'https://ror.org/00gm39w38 Women Involved in Nurturing, Giving, Sharing'), (15444, 'https://ror.org/00gnq3g83', 'it', 1, 'https://ror.org/00gnq3g83 Accademia Nazionale di Santa Cecilia National Academy of St Cecilia'), (15445, 'https://ror.org/00gpg2q85', 'en', 1, 'https://ror.org/00gpg2q85 Lexington College'), (15446, 'https://ror.org/00gs0ax16', 'en', 1, 'https://ror.org/00gs0ax16 Institut pour les études de politique internationale Institute for International Political Studies'), (15447, 'https://ror.org/00gt16g40', 'en', 1, 'https://ror.org/00gt16g40 Fraunhofer Institute for Structural Durability and System Reliability Fraunhofer-Institut für Betriebsfestigkeit und Systemzuverlässigkeit'), (15448, 'https://ror.org/00gtfax65', 'en', 1, 'https://ror.org/00gtfax65 International Atomic Energy Agency'), (15449, 'https://ror.org/00gy17c75', 'no_lang_code', 1, 'https://ror.org/00gy17c75 Fon (Spain)'), (15450, 'https://ror.org/00h0js975', 'no_lang_code', 1, 'https://ror.org/00h0js975 ABIS (Poland)'), (15451, 'https://ror.org/00h2j5q24', 'it', 1, 'https://ror.org/00h2j5q24 Azienda Unità Sanitaria Locale 11 di Empoli'), (15452, 'https://ror.org/00h2r3g41', 'no_lang_code', 1, 'https://ror.org/00h2r3g41 Ausa (Spain)'), (15453, 'https://ror.org/00h4bkt10', 'no_lang_code', 1, 'https://ror.org/00h4bkt10 GALAB Laboratories (Germany)'), (15454, 'https://ror.org/00h653085', 'no_lang_code', 1, 'https://ror.org/00h653085 3C Research (United Kingdom)'), (15455, 'https://ror.org/00h6azh28', 'no_lang_code', 1, 'https://ror.org/00h6azh28 Encore Pharmaceuticals (United States)'), (15456, 'https://ror.org/00h86n631', 'en', 1, 'https://ror.org/00h86n631 Children''s Health Fund'), (15457, 'https://ror.org/00hasdx88', 'en', 1, 'https://ror.org/00hasdx88 Washington Research Foundation'), (15458, 'https://ror.org/00hjfh776', 'no_lang_code', 1, 'https://ror.org/00hjfh776 StemSynergy Therapeutics (United States)'), (15459, 'https://ror.org/00hkb6y19', 'en', 1, 'https://ror.org/00hkb6y19 Her Majesty''s Revenue and Customs'), (15460, 'https://ror.org/00hkhma91', 'en', 1, 'https://ror.org/00hkhma91 International Association of Environmental Mutagenesis and Genomics Societies'), (15461, 'https://ror.org/00hn3tc42', 'no_lang_code', 1, 'https://ror.org/00hn3tc42 AeroTex UK (United Kingdom)'), (15462, 'https://ror.org/00hq2z256', 'no_lang_code', 1, 'https://ror.org/00hq2z256 Keraben Grupo (Spain)'), (15463, 'https://ror.org/00hq40871', 'no_lang_code', 1, 'https://ror.org/00hq40871 Jacobson Holman (United States)'), (15464, 'https://ror.org/00hsg6w24', 'no_lang_code', 1, 'https://ror.org/00hsg6w24 ET Enterprises (United Kingdom)'), (15465, 'https://ror.org/00htj2222', 'no_lang_code', 1, 'https://ror.org/00htj2222 Corac Group (United Kingdom)'), (15466, 'https://ror.org/00hx26749', 'no_lang_code', 1, 'https://ror.org/00hx26749 Q Therapeutics (United States)'), (15467, 'https://ror.org/00hx47p69', 'fr', 1, 'https://ror.org/00hx47p69 Maiz''Europ'''), (15468, 'https://ror.org/00hxxb066', 'en', 1, 'https://ror.org/00hxxb066 Community Chest of Leonia'), (15469, 'https://ror.org/00j1qfq25', 'no_lang_code', 1, 'https://ror.org/00j1qfq25 Aceites Malagon (Spain)'), (15470, 'https://ror.org/00j3nqj92', 'en', 1, 'https://ror.org/00j3nqj92 Institute for Behavior Change'), (15471, 'https://ror.org/00j4h9q86', 'no_lang_code', 1, 'https://ror.org/00j4h9q86 Ingenieurgesellschaft Auto und Verkehr (Germany)'), (15472, 'https://ror.org/00j6whn75', 'en', 1, 'https://ror.org/00j6whn75 Rocky Boy Health Board'), (15473, 'https://ror.org/00ja9zg03', 'de', 1, 'https://ror.org/00ja9zg03 Gematik Gesellschaft für Telematikanwendungen der Gesundheitskarte'), (15474, 'https://ror.org/00jafye06', 'no_lang_code', 1, 'https://ror.org/00jafye06 Intelligentsia Consultants (Luxembourg)'), (15475, 'https://ror.org/00jaqhx10', 'no_lang_code', 1, 'https://ror.org/00jaqhx10 APDM (United States)'), (15476, 'https://ror.org/00jb2qs89', 'no_lang_code', 1, 'https://ror.org/00jb2qs89 ImageCat (United Kingdom)'), (15477, 'https://ror.org/00jccxv75', 'en', 1, 'https://ror.org/00jccxv75 Law and Internet Foundation'), (15478, 'https://ror.org/00jd34n28', 'no_lang_code', 1, 'https://ror.org/00jd34n28 Charter Kontron (United Kingdom)'), (15479, 'https://ror.org/00jdtc447', 'no_lang_code', 1, 'https://ror.org/00jdtc447 Ab.Acus (Italy)'), (15480, 'https://ror.org/00jh09798', 'no_lang_code', 1, 'https://ror.org/00jh09798 Acos Group (Germany)'), (15481, 'https://ror.org/00jjh2b95', 'no_lang_code', 1, 'https://ror.org/00jjh2b95 BST Bio Sensor Technology (Germany)'), (15482, 'https://ror.org/00jkncn63', 'en', 1, 'https://ror.org/00jkncn63 Beijing Sanbo Brain Hospital 北京三博脑科医院'), (15483, 'https://ror.org/00jrtvk29', 'en', 1, 'https://ror.org/00jrtvk29 Université de Wilmington Wilmington University'), (15484, 'https://ror.org/00js7c390', 'no_lang_code', 1, 'https://ror.org/00js7c390 Amyris (United States)'), (15485, 'https://ror.org/00jvx3029', 'en', 1, 'https://ror.org/00jvx3029 Kansas State Department of Education'), (15486, 'https://ror.org/00jxjq872', 'no_lang_code', 1, 'https://ror.org/00jxjq872 Citard Services (Cyprus)'), (15487, 'https://ror.org/00jy1h085', 'en', 1, 'https://ror.org/00jy1h085 Young Women''s Christian Association'), (15488, 'https://ror.org/00k1x1157', 'en', 1, 'https://ror.org/00k1x1157 Variety The Children''s Charity'), (15489, 'https://ror.org/00k320b46', 'no_lang_code', 1, 'https://ror.org/00k320b46 Ion Linac Systems (United States)'), (15490, 'https://ror.org/00k3bk483', 'en', 1, 'https://ror.org/00k3bk483 Behavioral Health Systems'), (15491, 'https://ror.org/00k3gyk15', 'no_lang_code', 1, 'https://ror.org/00k3gyk15 China National Pharmaceutical Group Corporation (China) 中国医药集团总公司'), (15492, 'https://ror.org/00k6bf447', 'en', 1, 'https://ror.org/00k6bf447 Clifford Chance'), (15493, 'https://ror.org/00k9x6n46', 'en', 1, 'https://ror.org/00k9x6n46 Institute of Terrestrial Magnetism Ionosphere and Radio Wave Propagation Институт земного магнетизма, ионосферы и распространения радиоволн им. Н. В. Пушкова'), (15494, 'https://ror.org/00kczx164', 'no_lang_code', 1, 'https://ror.org/00kczx164 Verda Bio (United States)'), (15495, 'https://ror.org/00kemap29', 'no_lang_code', 1, 'https://ror.org/00kemap29 Aeromechs (Italy)'), (15496, 'https://ror.org/00kergy42', 'no_lang_code', 1, 'https://ror.org/00kergy42 Ancile (United States)'), (15497, 'https://ror.org/00kf0ew11', 'en', 1, 'https://ror.org/00kf0ew11 University Center of Lake County'), (15498, 'https://ror.org/00kgr1f83', 'no_lang_code', 1, 'https://ror.org/00kgr1f83 Chemviron Carbon (United Kingdom)'), (15499, 'https://ror.org/00kjw0r97', 'no_lang_code', 1, 'https://ror.org/00kjw0r97 CirComp (Germany)'), (15500, 'https://ror.org/00kjw1h22', 'no_lang_code', 1, 'https://ror.org/00kjw1h22 Itasca Consultants (Germany)'), (15501, 'https://ror.org/00km0q180', 'no_lang_code', 1, 'https://ror.org/00km0q180 Brighten Optics (Canada)'), (15502, 'https://ror.org/00kmq0020', 'en', 1, 'https://ror.org/00kmq0020 Southern Maine Medical Center'), (15503, 'https://ror.org/00kn2ga67', 'en', 1, 'https://ror.org/00kn2ga67 British Poultry Council'), (15504, 'https://ror.org/00kqt1k28', 'no_lang_code', 1, 'https://ror.org/00kqt1k28 Van Wees (Netherlands)'), (15505, 'https://ror.org/00ktc0f44', 'no_lang_code', 1, 'https://ror.org/00ktc0f44 Air Products (Germany)'), (15506, 'https://ror.org/00kv47y95', 'no_lang_code', 1, 'https://ror.org/00kv47y95 InRay Solutions (Bulgaria)'), (15507, 'https://ror.org/00kx89908', 'no_lang_code', 1, 'https://ror.org/00kx89908 Breonics (United States)'), (15508, 'https://ror.org/00m08df59', 'no_lang_code', 1, 'https://ror.org/00m08df59 BDR Thermea (United Kingdom)'), (15509, 'https://ror.org/00m08vr46', 'en', 1, 'https://ror.org/00m08vr46 Athens Chamber of Commerce and Industry'), (15510, 'https://ror.org/00m1br750', 'no_lang_code', 1, 'https://ror.org/00m1br750 GMSbiotech (United States)'), (15511, 'https://ror.org/00m1r1367', 'en', 1, 'https://ror.org/00m1r1367 National Association of Team Survivor'), (15512, 'https://ror.org/00m2wbw87', 'no_lang_code', 1, 'https://ror.org/00m2wbw87 Colligo (Canada)'), (15513, 'https://ror.org/00m35tp20', 'no_lang_code', 1, 'https://ror.org/00m35tp20 2D Formazione (Italy)'), (15514, 'https://ror.org/00m3dfd98', 'en', 1, 'https://ror.org/00m3dfd98 VitaValley Foundation'), (15515, 'https://ror.org/00m4kzh57', 'no_lang_code', 1, 'https://ror.org/00m4kzh57 Amplitude Technologies (France)'), (15516, 'https://ror.org/00m4vn742', 'no_lang_code', 1, 'https://ror.org/00m4vn742 LafargeHolcim (United Kingdom)'), (15517, 'https://ror.org/00m51t454', 'no_lang_code', 1, 'https://ror.org/00m51t454 SavvyDox (Canada)'), (15518, 'https://ror.org/00m57xb34', 'no_lang_code', 1, 'https://ror.org/00m57xb34 G24 Power (United Kingdom)'), (15519, 'https://ror.org/00m5yvh71', 'no_lang_code', 1, 'https://ror.org/00m5yvh71 Lhoist (United Kingdom)'), (15520, 'https://ror.org/00m694d24', 'en', 1, 'https://ror.org/00m694d24 European Projects & Management Agency'), (15521, 'https://ror.org/00m6gc198', 'no_lang_code', 1, 'https://ror.org/00m6gc198 Diasa Industrial (Spain)'), (15522, 'https://ror.org/00m6hsp80', 'en', 1, 'https://ror.org/00m6hsp80 Herzliya Medical Center הרצליה מדיקל סנטר'), (15523, 'https://ror.org/00m76dx40', 'no_lang_code', 1, 'https://ror.org/00m76dx40 Gliamed (United States)'), (15524, 'https://ror.org/00m96gg93', 'no_lang_code', 1, 'https://ror.org/00m96gg93 Altera (United Kingdom)'), (15525, 'https://ror.org/00m96vp86', 'en', 1, 'https://ror.org/00m96vp86 Queensland Eye Institute'), (15526, 'https://ror.org/00m9r8n64', 'en', 1, 'https://ror.org/00m9r8n64 Federation of American Scientists'), (15527, 'https://ror.org/00maq2822', 'en', 1, 'https://ror.org/00maq2822 Self Determination Housing Project of Pennsylvania'), (15528, 'https://ror.org/00marjb61', 'no_lang_code', 1, 'https://ror.org/00marjb61 Materials Innovation Technologies (United States)'), (15529, 'https://ror.org/00matwt90', 'no_lang_code', 1, 'https://ror.org/00matwt90 Giraf PM (Germany)'), (15530, 'https://ror.org/00mcbta55', 'en', 1, 'https://ror.org/00mcbta55 American Association for Clinical Chemistry'), (15531, 'https://ror.org/00mcjxw34', 'en', 1, 'https://ror.org/00mcjxw34 Itawamba Community College'), (15532, 'https://ror.org/00mcpwa21', 'en', 1, 'https://ror.org/00mcpwa21 Unicorn Children''s Foundation'), (15533, 'https://ror.org/00md6a739', 'en', 1, 'https://ror.org/00md6a739 Phillips Collection'), (15534, 'https://ror.org/00mdqpf86', 'no_lang_code', 1, 'https://ror.org/00mdqpf86 Bepress (United States)'), (15535, 'https://ror.org/00mfsk397', 'en', 1, 'https://ror.org/00mfsk397 District of Columbia Public Library'), (15536, 'https://ror.org/00mfy6m96', 'no_lang_code', 1, 'https://ror.org/00mfy6m96 DxDiscovery (United States)'), (15537, 'https://ror.org/00mh8gk95', 'en', 1, 'https://ror.org/00mh8gk95 Shanti Project'), (15538, 'https://ror.org/00mka9g75', 'en', 1, 'https://ror.org/00mka9g75 Positively Pink Packages'), (15539, 'https://ror.org/00mkw8c80', 'no_lang_code', 1, 'https://ror.org/00mkw8c80 Kloé (France)'), (15540, 'https://ror.org/00mp1mt27', 'en', 1, 'https://ror.org/00mp1mt27 Knowledge Systems Institute'), (15541, 'https://ror.org/00mp82g69', 'no_lang_code', 1, 'https://ror.org/00mp82g69 Holosonics (United States)'), (15542, 'https://ror.org/00ms70536', 'no_lang_code', 1, 'https://ror.org/00ms70536 Babcock & Wilcox (Spain)'), (15543, 'https://ror.org/00mssm162', 'en', 1, 'https://ror.org/00mssm162 Community Link'), (15544, 'https://ror.org/00mtv4c34', 'en', 1, 'https://ror.org/00mtv4c34 Community Health Councils'), (15545, 'https://ror.org/00mwp5989', 'en', 1, 'https://ror.org/00mwp5989 Amyotrophic Lateral Sclerosis Association'), (15546, 'https://ror.org/00mww6988', 'no_lang_code', 1, 'https://ror.org/00mww6988 KBR (United Kingdom)'), (15547, 'https://ror.org/00mynyp54', 'de', 1, 'https://ror.org/00mynyp54 Allgemeiner Deutscher Automobil Club General German Automobile Club'), (15548, 'https://ror.org/00mzrph17', 'en', 1, 'https://ror.org/00mzrph17 Lincoln Park Zoo'), (15549, 'https://ror.org/00n19h079', 'no_lang_code', 1, 'https://ror.org/00n19h079 Arjowiggins (France)'), (15550, 'https://ror.org/00n1s6s20', 'en', 1, 'https://ror.org/00n1s6s20 United States Holocaust Memorial Museum'), (15551, 'https://ror.org/00n28tr38', 'no_lang_code', 1, 'https://ror.org/00n28tr38 Coexpair (Belgium)'), (15552, 'https://ror.org/00n3hdp82', 'no_lang_code', 1, 'https://ror.org/00n3hdp82 Bsoft (Italy)'), (15553, 'https://ror.org/00n523x67', 'en', 1, 'https://ror.org/00n523x67 Crawley Borough Council'), (15554, 'https://ror.org/00n74s057', 'en', 1, 'https://ror.org/00n74s057 Energy Institute of the Healing Arts Foundation'), (15555, 'https://ror.org/00n7jbm43', 'no_lang_code', 1, 'https://ror.org/00n7jbm43 Kopitarna Sevnica (Slovenia)'), (15556, 'https://ror.org/00n855a93', 'en', 1, 'https://ror.org/00n855a93 Culver Stockton College, Culver–Stockton College'), (15557, 'https://ror.org/00n893e13', 'no_lang_code', 1, 'https://ror.org/00n893e13 Environmental Institute'), (15558, 'https://ror.org/00n89wj26', 'no_lang_code', 1, 'https://ror.org/00n89wj26 Comexi Group (Spain)'), (15559, 'https://ror.org/00n8ttd98', 'en', 1, 'https://ror.org/00n8ttd98 Institute of Atmospheric Sciences and Climate Istituto di Scienze dell''Atmosfera e del Clima'), (15560, 'https://ror.org/00n8yh935', 'en', 1, 'https://ror.org/00n8yh935 Serve Outdoors Texas Hill Country Chapter'), (15561, 'https://ror.org/00n9hrm35', 'no_lang_code', 1, 'https://ror.org/00n9hrm35 Metrohm Autolab (Netherlands)'), (15562, 'https://ror.org/00nan4c27', 'no_lang_code', 1, 'https://ror.org/00nan4c27 Inter Science Research Associates (United States)'), (15563, 'https://ror.org/00nbsc253', 'fr', 1, 'https://ror.org/00nbsc253 Association Pôle Environnement Sud Aquitaine'), (15564, 'https://ror.org/00nexz950', 'no_lang_code', 1, 'https://ror.org/00nexz950 Essrg (Hungary)'), (15565, 'https://ror.org/00nfc4433', 'en', 1, 'https://ror.org/00nfc4433 MidHudson Regional Hospital'), (15566, 'https://ror.org/00nj98j61', 'en', 1, 'https://ror.org/00nj98j61 Sudha Hospital and Medical Research Centre'), (15567, 'https://ror.org/00nm6n237', 'no_lang_code', 1, 'https://ror.org/00nm6n237 Brighton Technologies Group (United States)'), (15568, 'https://ror.org/00np58203', 'no_lang_code', 1, 'https://ror.org/00np58203 Inventys Thermal Technologies (Canada)'), (15569, 'https://ror.org/00np6sw71', 'no_lang_code', 1, 'https://ror.org/00np6sw71 CASON Engineering (Hungary)'), (15570, 'https://ror.org/00nrh3w24', 'no_lang_code', 1, 'https://ror.org/00nrh3w24 Aratos Technologies (Greece) ΆΡΑΤΟΣ ΤΕΧΝΟΛΟΓΊΕΣ'), (15571, 'https://ror.org/00nry9f97', 'no_lang_code', 1, 'https://ror.org/00nry9f97 Gizelis Robotics (Greece)'), (15572, 'https://ror.org/00ntmke92', 'en', 1, 'https://ror.org/00ntmke92 Artez and Innovatie'), (15573, 'https://ror.org/00ntmzg98', 'no_lang_code', 1, 'https://ror.org/00ntmzg98 Meritor (United States)'), (15574, 'https://ror.org/00nve0j20', 'en', 1, 'https://ror.org/00nve0j20 Wisconsin Lutheran College'), (15575, 'https://ror.org/00p0vea65', 'no_lang_code', 1, 'https://ror.org/00p0vea65 Abqmr (United States)'), (15576, 'https://ror.org/00p11e287', 'en', 1, 'https://ror.org/00p11e287 Metropolitan Community College'), (15577, 'https://ror.org/00p121j58', 'no_lang_code', 1, 'https://ror.org/00p121j58 Cardboard Citizens (United Kingdom)'), (15578, 'https://ror.org/00p2bz193', 'no_lang_code', 1, 'https://ror.org/00p2bz193 I-Moss (Belgium)'), (15579, 'https://ror.org/00p6dtr08', 'no_lang_code', 1, 'https://ror.org/00p6dtr08 Blatchford (United Kingdom)'), (15580, 'https://ror.org/00p7ghc88', 'en', 1, 'https://ror.org/00p7ghc88 Larrabee Center'), (15581, 'https://ror.org/00p7gy719', 'en', 1, 'https://ror.org/00p7gy719 Southland Hispanic Leadership Council'), (15582, 'https://ror.org/00p7jhx04', 'no_lang_code', 1, 'https://ror.org/00p7jhx04 Medtrac Technologies (United States)'), (15583, 'https://ror.org/00p8rk339', 'no_lang_code', 1, 'https://ror.org/00p8rk339 Euroinks (Italy)'), (15584, 'https://ror.org/00p8xx315', 'no_lang_code', 1, 'https://ror.org/00p8xx315 CCC Diagnostics (United States)'), (15585, 'https://ror.org/00p941317', 'no_lang_code', 1, 'https://ror.org/00p941317 Innovasjon Norge Innovation Norway (Norway)'), (15586, 'https://ror.org/00pfa9y72', 'no_lang_code', 1, 'https://ror.org/00pfa9y72 Ribbon Communications (Israel)'), (15587, 'https://ror.org/00pm11v55', 'no_lang_code', 1, 'https://ror.org/00pm11v55 Dekimo (Belgium)'), (15588, 'https://ror.org/00pngmk50', 'en', 1, 'https://ror.org/00pngmk50 Whiteside County Health Department'), (15589, 'https://ror.org/00pp1p071', 'no_lang_code', 1, 'https://ror.org/00pp1p071 Banss (Germany)'), (15590, 'https://ror.org/00ptywt76', 'en', 1, 'https://ror.org/00ptywt76 Queer African Youth Networking Center'), (15591, 'https://ror.org/00pwar297', 'fr', 1, 'https://ror.org/00pwar297 IFAPME'); INSERT INTO `rors` VALUES (15592, 'https://ror.org/00q25bx70', 'no_lang_code', 1, 'https://ror.org/00q25bx70 Doximity (United States)'), (15593, 'https://ror.org/00q3fka24', 'no_lang_code', 1, 'https://ror.org/00q3fka24 Altairnano (United States)'), (15594, 'https://ror.org/00q3qq605', 'no_lang_code', 1, 'https://ror.org/00q3qq605 MA Systems and Control (United Kingdom)'), (15595, 'https://ror.org/00q4gxb20', 'no_lang_code', 1, 'https://ror.org/00q4gxb20 OmniVision Technologies (United States)'), (15596, 'https://ror.org/00q4tes89', 'en', 1, 'https://ror.org/00q4tes89 Boston Architectural College'), (15597, 'https://ror.org/00q519868', 'en', 1, 'https://ror.org/00q519868 Grwp Llandrillo Menai'), (15598, 'https://ror.org/00q62px07', 'no_lang_code', 1, 'https://ror.org/00q62px07 Eltek Semiconductors (United Kingdom)'), (15599, 'https://ror.org/00q6dj830', 'no_lang_code', 1, 'https://ror.org/00q6dj830 WeCanRow DC'), (15600, 'https://ror.org/00q84em04', 'en', 1, 'https://ror.org/00q84em04 Galería Nacional de Arte National Gallery of Art'), (15601, 'https://ror.org/00q87b836', 'no_lang_code', 1, 'https://ror.org/00q87b836 Impact Innovations (Germany)'), (15602, 'https://ror.org/00qa1j177', 'en', 1, 'https://ror.org/00qa1j177 National Ability Center'), (15603, 'https://ror.org/00qd1fk85', 'en', 1, 'https://ror.org/00qd1fk85 Navicent Health'), (15604, 'https://ror.org/00qd7ns71', 'en', 1, 'https://ror.org/00qd7ns71 ViteroRetinal Surgery'), (15605, 'https://ror.org/00qmb6m92', 'en', 1, 'https://ror.org/00qmb6m92 The Nelson-Atkins Museum of Art'), (15606, 'https://ror.org/00qmny302', 'en', 1, 'https://ror.org/00qmny302 St. James AME Zion Church'), (15607, 'https://ror.org/00qmzzn75', 'en', 1, 'https://ror.org/00qmzzn75 Florida Center for Early Childhood'), (15608, 'https://ror.org/00qnwh567', 'es', 1, 'https://ror.org/00qnwh567 Federación Española de Padres de Niños con Cáncer'), (15609, 'https://ror.org/00qq34m93', 'no_lang_code', 1, 'https://ror.org/00qq34m93 Crabbe Consulting'), (15610, 'https://ror.org/00qq8tm81', 'en', 1, 'https://ror.org/00qq8tm81 Fairmont Senior High School'), (15611, 'https://ror.org/00qqbzv64', 'en', 1, 'https://ror.org/00qqbzv64 The Painted Turtle'), (15612, 'https://ror.org/00qv12s34', 'no_lang_code', 1, 'https://ror.org/00qv12s34 Coaxial Power Systems (United Kingdom)'), (15613, 'https://ror.org/00qva7y21', 'en', 1, 'https://ror.org/00qva7y21 Academy for Healthcare Improvement'), (15614, 'https://ror.org/00qvvtk35', 'en', 1, 'https://ror.org/00qvvtk35 St. Mary’s Health Care System'), (15615, 'https://ror.org/00qwmbr29', 'en', 1, 'https://ror.org/00qwmbr29 Architectural Research Centers Consortium'), (15616, 'https://ror.org/00r0f2n85', 'en', 1, 'https://ror.org/00r0f2n85 Accelerace'), (15617, 'https://ror.org/00r59ab07', 'en', 1, 'https://ror.org/00r59ab07 Sunny Days Learning Center of Stickney'), (15618, 'https://ror.org/00r5yyv69', 'en', 1, 'https://ror.org/00r5yyv69 European Trade Union Institute'), (15619, 'https://ror.org/00r66br24', 'no_lang_code', 1, 'https://ror.org/00r66br24 Advanced Defence Materials (United Kingdom)'), (15620, 'https://ror.org/00r67vw60', 'en', 1, 'https://ror.org/00r67vw60 Women Alive'), (15621, 'https://ror.org/00r99m169', 'en', 1, 'https://ror.org/00r99m169 Council of State Archivists'), (15622, 'https://ror.org/00r9rdf15', 'en', 1, 'https://ror.org/00r9rdf15 Ministry of Transport and Communications kommunikationsministeriet liikenne- ja viestintäministeriö'), (15623, 'https://ror.org/00rc8tb78', 'en', 1, 'https://ror.org/00rc8tb78 United American Indian Involvement'), (15624, 'https://ror.org/00rcs2c13', 'no_lang_code', 1, 'https://ror.org/00rcs2c13 BeTV (Belgium)'), (15625, 'https://ror.org/00rdbkh09', 'en', 1, 'https://ror.org/00rdbkh09 Canadian Coalition for Seniors Mental Health'), (15626, 'https://ror.org/00rdsgd78', 'en', 1, 'https://ror.org/00rdsgd78 Mercy Hospital Washington'), (15627, 'https://ror.org/00reded37', 'no_lang_code', 1, 'https://ror.org/00reded37 Valentia Biopharma (Spain)'), (15628, 'https://ror.org/00rgeck60', 'no_lang_code', 1, 'https://ror.org/00rgeck60 Evonik (United Kingdom)'), (15629, 'https://ror.org/00rgwvs20', 'no_lang_code', 1, 'https://ror.org/00rgwvs20 Exel Composites (United Kingdom)'), (15630, 'https://ror.org/00rk1ea29', 'en', 1, 'https://ror.org/00rk1ea29 International Centre for Black Sea Studies'), (15631, 'https://ror.org/00rk8p873', 'pt', 1, 'https://ror.org/00rk8p873 Centro De Formação Profissional Da Indústria Da Construção Civil E Obras Públicas Do Sul'), (15632, 'https://ror.org/00rke6v95', 'no_lang_code', 1, 'https://ror.org/00rke6v95 Covalab (France)'), (15633, 'https://ror.org/00rqqd590', 'no_lang_code', 1, 'https://ror.org/00rqqd590 Efficient Innovation (France)'), (15634, 'https://ror.org/00rvn7j03', 'en', 1, 'https://ror.org/00rvn7j03 Santa Fe Public Schools'), (15635, 'https://ror.org/00rw81y84', 'en', 1, 'https://ror.org/00rw81y84 Kalamazoo Valley Community College'), (15636, 'https://ror.org/00rwgk448', 'es', 1, 'https://ror.org/00rwgk448 Fundación INTRAS'), (15637, 'https://ror.org/00s1pj327', 'en', 1, 'https://ror.org/00s1pj327 AIDS Arms'), (15638, 'https://ror.org/00s2jha28', 'fr', 1, 'https://ror.org/00s2jha28 Institut des Sciences Agronomiques du Burundi'), (15639, 'https://ror.org/00s2mdg70', 'en', 1, 'https://ror.org/00s2mdg70 Asian American Drug Abuse Program'), (15640, 'https://ror.org/00s3q3549', 'en', 1, 'https://ror.org/00s3q3549 Mayor''s Fund to Advance New York City'), (15641, 'https://ror.org/00s6jcp09', 'no_lang_code', 1, 'https://ror.org/00s6jcp09 Laserlith (United States)'), (15642, 'https://ror.org/00s7qay03', 'en', 1, 'https://ror.org/00s7qay03 Portage County Public Library'), (15643, 'https://ror.org/00sadm236', 'no_lang_code', 1, 'https://ror.org/00sadm236 Centro Studi Industriali'), (15644, 'https://ror.org/00sc4h441', 'no_lang_code', 1, 'https://ror.org/00sc4h441 AM Testing (Italy)'), (15645, 'https://ror.org/00sd1ey15', 'no_lang_code', 1, 'https://ror.org/00sd1ey15 Castle Rock Edinvar (United Kingdom)'), (15646, 'https://ror.org/00sddvp48', 'no_lang_code', 1, 'https://ror.org/00sddvp48 DNAVision (Belgium)'), (15647, 'https://ror.org/00sdk9579', 'no_lang_code', 1, 'https://ror.org/00sdk9579 Hakkı Usta Ogulları Mak.San.Tic (Turkey)'), (15648, 'https://ror.org/00see0y83', 'en', 1, 'https://ror.org/00see0y83 Ministry of Education, Arts and Culture'), (15649, 'https://ror.org/00sfn8y78', 'en', 1, 'https://ror.org/00sfn8y78 Sanford Research'), (15650, 'https://ror.org/00sfnf466', 'en', 1, 'https://ror.org/00sfnf466 Franciscan University of Steubenville'), (15651, 'https://ror.org/00sgajx84', 'no_lang_code', 1, 'https://ror.org/00sgajx84 BASF (Netherlands)'), (15652, 'https://ror.org/00sghps33', 'no_lang_code', 1, 'https://ror.org/00sghps33 Essen BioScience (United States)'), (15653, 'https://ror.org/00shhkw75', 'no_lang_code', 1, 'https://ror.org/00shhkw75 Airlan (Spain)'), (15654, 'https://ror.org/00sn5vc60', 'en', 1, 'https://ror.org/00sn5vc60 Vigo County Public Library'), (15655, 'https://ror.org/00spcac30', 'no_lang_code', 1, 'https://ror.org/00spcac30 Guidance (United Kingdom)'), (15656, 'https://ror.org/00sprgc32', 'no_lang_code', 1, 'https://ror.org/00sprgc32 Ekspobalta (Lithuania)'), (15657, 'https://ror.org/00sqes684', 'en', 1, 'https://ror.org/00sqes684 Agence Federale pour la Securite de la Chaine Alimentaire Federaal Agentschap voor de Veiligheid van de Voedselketen Federal Agency for Food Chain Safety Föderalagentur für die Sicherheit der Nahrungsmittelkette'), (15658, 'https://ror.org/00sqg3532', 'no_lang_code', 1, 'https://ror.org/00sqg3532 Maxygen (United States)'), (15659, 'https://ror.org/00sqx4367', 'no_lang_code', 1, 'https://ror.org/00sqx4367 Innotec (Italy)'), (15660, 'https://ror.org/00sskxf38', 'no_lang_code', 1, 'https://ror.org/00sskxf38 Algade (France)'), (15661, 'https://ror.org/00stasw52', 'no_lang_code', 1, 'https://ror.org/00stasw52 General Society of Surveillance SGS (France)'), (15662, 'https://ror.org/00strmx07', 'pt', 1, 'https://ror.org/00strmx07 Instituto de Linguística Teórica e Computacional'), (15663, 'https://ror.org/00svj0p64', 'no_lang_code', 1, 'https://ror.org/00svj0p64 Eurix (Italy)'), (15664, 'https://ror.org/00svqj211', 'en', 1, 'https://ror.org/00svqj211 Vital Research'), (15665, 'https://ror.org/00sx2c320', 'en', 1, 'https://ror.org/00sx2c320 Health and Safety Authority'), (15666, 'https://ror.org/00t1gpd82', 'en', 1, 'https://ror.org/00t1gpd82 Evaluation and Training Institute'), (15667, 'https://ror.org/00t310794', 'en', 1, 'https://ror.org/00t310794 ShowMe Aquatics & Fitness'), (15668, 'https://ror.org/00t3nnr25', 'no_lang_code', 1, 'https://ror.org/00t3nnr25 Finisar (Israel)'), (15669, 'https://ror.org/00t4hhw32', 'no_lang_code', 1, 'https://ror.org/00t4hhw32 Hela Spice Canada (Canada)'), (15670, 'https://ror.org/00t4n3812', 'en', 1, 'https://ror.org/00t4n3812 J.F. Drake State Community and Technical College'), (15671, 'https://ror.org/00t60rc39', 'no_lang_code', 1, 'https://ror.org/00t60rc39 Clinical Innovations (United States)'), (15672, 'https://ror.org/00ta0bp18', 'no_lang_code', 1, 'https://ror.org/00ta0bp18 LUX Assure (United Kingdom)'), (15673, 'https://ror.org/00tbmv503', 'en', 1, 'https://ror.org/00tbmv503 American Society of Law, Medicine and Ethics'), (15674, 'https://ror.org/00td9nh08', 'no_lang_code', 1, 'https://ror.org/00td9nh08 Tronox (Netherlands)'), (15675, 'https://ror.org/00tdydz48', 'en', 1, 'https://ror.org/00tdydz48 Young Empowered Survivors'), (15676, 'https://ror.org/00tf97v72', 'no_lang_code', 1, 'https://ror.org/00tf97v72 Zealand Pharma (Denmark)'), (15677, 'https://ror.org/00tg69j59', 'no_lang_code', 1, 'https://ror.org/00tg69j59 Argus International (United States)'), (15678, 'https://ror.org/00tgp6v56', 'en', 1, 'https://ror.org/00tgp6v56 Center for Clinical Care and Research in Nigeria'), (15679, 'https://ror.org/00tha2n31', 'no_lang_code', 1, 'https://ror.org/00tha2n31 Engitech (Cyprus)'), (15680, 'https://ror.org/00tmg8x76', 'no_lang_code', 1, 'https://ror.org/00tmg8x76 MVSystems (United States)'), (15681, 'https://ror.org/00tprjh98', 'en', 1, 'https://ror.org/00tprjh98 Scheer Memorial Adventist Hospital शीर मेमोरियल अस्पताल बनेपा'), (15682, 'https://ror.org/00trkpm41', 'no_lang_code', 1, 'https://ror.org/00trkpm41 Engineering Software Research and Development (United States)'), (15683, 'https://ror.org/00tsj2f58', 'en', 1, 'https://ror.org/00tsj2f58 United States Senate Library'), (15684, 'https://ror.org/00tspxb31', 'en', 1, 'https://ror.org/00tspxb31 Chartered Professional Accountants of Canada comptable professionnel agréé'), (15685, 'https://ror.org/00tt1dr37', 'no_lang_code', 1, 'https://ror.org/00tt1dr37 HRI Associates'), (15686, 'https://ror.org/00ttyp561', 'en', 1, 'https://ror.org/00ttyp561 Addison Public Library'), (15687, 'https://ror.org/00txgjp11', 'en', 1, 'https://ror.org/00txgjp11 Eagle Ridge Institute'), (15688, 'https://ror.org/00txxwv34', 'en', 1, 'https://ror.org/00txxwv34 Agropolis International'), (15689, 'https://ror.org/00ty10b85', 'no_lang_code', 1, 'https://ror.org/00ty10b85 Institute of Spring Technology'), (15690, 'https://ror.org/00tyja381', 'en', 1, 'https://ror.org/00tyja381 Delaware Valley College'), (15691, 'https://ror.org/00tzssk35', 'no_lang_code', 1, 'https://ror.org/00tzssk35 Celsion (United States)'), (15692, 'https://ror.org/00v02jt04', 'en', 1, 'https://ror.org/00v02jt04 State Fair Community College'), (15693, 'https://ror.org/00v0haz73', 'no_lang_code', 1, 'https://ror.org/00v0haz73 Advantage Forensics (Canada)'), (15694, 'https://ror.org/00v2kj637', 'no_lang_code', 1, 'https://ror.org/00v2kj637 BioVidria (United States)'), (15695, 'https://ror.org/00v448643', 'en', 1, 'https://ror.org/00v448643 Federal Reserve Board of Governors'), (15696, 'https://ror.org/00v4pk551', 'no_lang_code', 1, 'https://ror.org/00v4pk551 Ecoplan (Switzerland)'), (15697, 'https://ror.org/00va3z958', 'en', 1, 'https://ror.org/00va3z958 Inwood Community Services'), (15698, 'https://ror.org/00vbmfk28', 'no_lang_code', 1, 'https://ror.org/00vbmfk28 Inro Consultants (Canada)'), (15699, 'https://ror.org/00vcrft92', 'no_lang_code', 1, 'https://ror.org/00vcrft92 Kepstrum (Canada)'), (15700, 'https://ror.org/00vdend65', 'en', 1, 'https://ror.org/00vdend65 International Union of Crystallography'), (15701, 'https://ror.org/00vfscp04', 'no_lang_code', 1, 'https://ror.org/00vfscp04 OncoPlex Diagnostics (United States)'), (15702, 'https://ror.org/00vg4nv59', 'en', 1, 'https://ror.org/00vg4nv59 Austrian Foundry Research Institute'), (15703, 'https://ror.org/00vggw919', 'no_lang_code', 1, 'https://ror.org/00vggw919 Fibroline (France)'), (15704, 'https://ror.org/00vj44q65', 'no_lang_code', 1, 'https://ror.org/00vj44q65 GEPRO (Germany)'), (15705, 'https://ror.org/00vj7a915', 'no_lang_code', 1, 'https://ror.org/00vj7a915 Altair Engineering (France)'), (15706, 'https://ror.org/00vj8w868', 'en', 1, 'https://ror.org/00vj8w868 Marygrove College'), (15707, 'https://ror.org/00vm5ky05', 'en', 1, 'https://ror.org/00vm5ky05 Averett University'), (15708, 'https://ror.org/00vnsbt24', 'no_lang_code', 1, 'https://ror.org/00vnsbt24 KWJ Engineering (United States)'), (15709, 'https://ror.org/00vpnca96', 'no_lang_code', 1, 'https://ror.org/00vpnca96 AFS Entwicklungs und Vertriebs (Germany)'), (15710, 'https://ror.org/00vqkww48', 'no_lang_code', 1, 'https://ror.org/00vqkww48 Carley Technologies (United States)'), (15711, 'https://ror.org/00vryq048', 'no_lang_code', 1, 'https://ror.org/00vryq048 KALGEn Consultants (United States)'), (15712, 'https://ror.org/00vtp6271', 'en', 1, 'https://ror.org/00vtp6271 Trinity County Office of Education'), (15713, 'https://ror.org/00vx6je85', 'no_lang_code', 1, 'https://ror.org/00vx6je85 Zenyaku Kogyo (Japan) 全薬工業株式会社'), (15714, 'https://ror.org/00vxbb377', 'no_lang_code', 1, 'https://ror.org/00vxbb377 Lenz Instruments (Spain)'), (15715, 'https://ror.org/00vxnww48', 'no_lang_code', 1, 'https://ror.org/00vxnww48 Exscien (United States)'), (15716, 'https://ror.org/00w2b1v71', 'en', 1, 'https://ror.org/00w2b1v71 Hesburgh Libraries'), (15717, 'https://ror.org/00w3zcs06', 'no_lang_code', 1, 'https://ror.org/00w3zcs06 Sertifitseerimiskeskus'), (15718, 'https://ror.org/00w4hrb54', 'en', 1, 'https://ror.org/00w4hrb54 Shimer College'), (15719, 'https://ror.org/00w824191', 'en', 1, 'https://ror.org/00w824191 Shriners Hospitals for Children - Springfield'), (15720, 'https://ror.org/00wdz4w44', 'en', 1, 'https://ror.org/00wdz4w44 Derry City Council'), (15721, 'https://ror.org/00wfvsb96', 'en', 1, 'https://ror.org/00wfvsb96 Fountaindale Public Library'), (15722, 'https://ror.org/00wgpww39', 'en', 1, 'https://ror.org/00wgpww39 Hungarian Association of Content Industry'), (15723, 'https://ror.org/00wh8js32', 'no_lang_code', 1, 'https://ror.org/00wh8js32 Dearman (United Kingdom)'), (15724, 'https://ror.org/00wk3qr85', 'no_lang_code', 1, 'https://ror.org/00wk3qr85 PerkinElmer (Germany)'), (15725, 'https://ror.org/00wp5gz89', 'en', 1, 'https://ror.org/00wp5gz89 Business Council for Sustainable Development UK'), (15726, 'https://ror.org/00wqkgs27', 'en', 1, 'https://ror.org/00wqkgs27 Phelan-McDermid Syndrome Foundation'), (15727, 'https://ror.org/00wr6qv54', 'en', 1, 'https://ror.org/00wr6qv54 Los Angeles Southwest College'), (15728, 'https://ror.org/00wtksj25', 'fr', 1, 'https://ror.org/00wtksj25 ARENE, Agence régionale de l’environnement et des nouvelles énergies'), (15729, 'https://ror.org/00wtwth26', 'en', 1, 'https://ror.org/00wtwth26 Access Health Louisiana'), (15730, 'https://ror.org/00ww7tv14', 'no_lang_code', 1, 'https://ror.org/00ww7tv14 Angiogenesis Foundation'), (15731, 'https://ror.org/00wwwzh42', 'en', 1, 'https://ror.org/00wwwzh42 West Bay Pilipino Multi-Service Center'), (15732, 'https://ror.org/00wxk2s46', 'en', 1, 'https://ror.org/00wxk2s46 Newberry Library'), (15733, 'https://ror.org/00wyejx41', 'pt', 1, 'https://ror.org/00wyejx41 Câmara Municipal de Beja'), (15734, 'https://ror.org/00wyrb732', 'no_lang_code', 1, 'https://ror.org/00wyrb732 Comsis (France)'), (15735, 'https://ror.org/00x4hs846', 'no_lang_code', 1, 'https://ror.org/00x4hs846 MemPro (United States)'), (15736, 'https://ror.org/00x5h0d60', 'no_lang_code', 1, 'https://ror.org/00x5h0d60 KITH (Norway) Norwegian Centre for Informatics in Health and Social Care'), (15737, 'https://ror.org/00x5wnx94', 'en', 1, 'https://ror.org/00x5wnx94 International Centre for Migration Policy Development'), (15738, 'https://ror.org/00x7hks54', 'en', 1, 'https://ror.org/00x7hks54 The Care Communities'), (15739, 'https://ror.org/00x94td80', 'en', 1, 'https://ror.org/00x94td80 Smile Train'), (15740, 'https://ror.org/00x9bsj94', 'no_lang_code', 1, 'https://ror.org/00x9bsj94 Emirates NBD'), (15741, 'https://ror.org/00x9vvs05', 'no_lang_code', 1, 'https://ror.org/00x9vvs05 Dantec Dynamics (United Kingdom)'), (15742, 'https://ror.org/00xaant88', 'no_lang_code', 1, 'https://ror.org/00xaant88 Quadrise Canada Corporation (Canada)'), (15743, 'https://ror.org/00xbe3815', 'no_lang_code', 1, 'https://ror.org/00xbe3815 DEMO Consultants'), (15744, 'https://ror.org/00xdvzg58', 'no_lang_code', 1, 'https://ror.org/00xdvzg58 Hermia Business Development (Finland) Hermia Yrityskehitys'), (15745, 'https://ror.org/00xe53w23', 'no_lang_code', 1, 'https://ror.org/00xe53w23 John Gill Technology (United Kingdom)'), (15746, 'https://ror.org/00xemxm68', 'no_lang_code', 1, 'https://ror.org/00xemxm68 All4tec (France)'), (15747, 'https://ror.org/00xfhnx88', 'es', 1, 'https://ror.org/00xfhnx88 Unidad de Artritis y Reumatismo'), (15748, 'https://ror.org/00xfx7t79', 'no_lang_code', 1, 'https://ror.org/00xfx7t79 Enigma Diagnostics (United Kingdom)'), (15749, 'https://ror.org/00xgafq27', 'en', 1, 'https://ror.org/00xgafq27 Comisión electoral federal Commission électorale fédérale Federal Election Commission'), (15750, 'https://ror.org/00xhk2y44', 'no_lang_code', 1, 'https://ror.org/00xhk2y44 Cadzow Communications Consulting (United Kingdom)'), (15751, 'https://ror.org/00xk4wa49', 'en', 1, 'https://ror.org/00xk4wa49 Hemophilia Federation of America'), (15752, 'https://ror.org/00xmn9a46', 'en', 1, 'https://ror.org/00xmn9a46 Alaska SeaLife Center'), (15753, 'https://ror.org/00xp3pa76', 'en', 1, 'https://ror.org/00xp3pa76 Agency for Mobility and EU Programmes'), (15754, 'https://ror.org/00xpcj002', 'no_lang_code', 1, 'https://ror.org/00xpcj002 TherimuneX Pharmaceuticals (United States)'), (15755, 'https://ror.org/00xr2nk27', 'en', 1, 'https://ror.org/00xr2nk27 Mead Public Library'), (15756, 'https://ror.org/00xryfx14', 'no_lang_code', 1, 'https://ror.org/00xryfx14 Econet (Spain)'), (15757, 'https://ror.org/00xvfm661', 'en', 1, 'https://ror.org/00xvfm661 Advocate Trinity Hospital'), (15758, 'https://ror.org/00xy4nn21', 'no_lang_code', 1, 'https://ror.org/00xy4nn21 FRE Composites (Canada)'), (15759, 'https://ror.org/00y0h2589', 'no_lang_code', 1, 'https://ror.org/00y0h2589 Hansa Industrie Mixer (Germany)'), (15760, 'https://ror.org/00y0kp964', 'no_lang_code', 1, 'https://ror.org/00y0kp964 Outokumpu (Sweden)'), (15761, 'https://ror.org/00y3dr645', 'no_lang_code', 1, 'https://ror.org/00y3dr645 CLMS (United Kingdom)'), (15762, 'https://ror.org/00y3wq736', 'en', 1, 'https://ror.org/00y3wq736 Bundesministerium für Bildung und Frauen Federal Ministry for Education and Women'), (15763, 'https://ror.org/00y5de064', 'no_lang_code', 1, 'https://ror.org/00y5de064 BCN Biosciences (United States)'), (15764, 'https://ror.org/00y7e0f48', 'no_lang_code', 1, 'https://ror.org/00y7e0f48 Controle & Inspectie Bureau Brouwer (Netherlands)'), (15765, 'https://ror.org/00y8jqa74', 'en', 1, 'https://ror.org/00y8jqa74 Springhouse'), (15766, 'https://ror.org/00y93bb21', 'no_lang_code', 1, 'https://ror.org/00y93bb21 Flyby (Italy)'), (15767, 'https://ror.org/00ybj8833', 'no_lang_code', 1, 'https://ror.org/00ybj8833 Innovatia (Canada)'), (15768, 'https://ror.org/00ybrvx84', 'no_lang_code', 1, 'https://ror.org/00ybrvx84 Awaiba (Portugal)'), (15769, 'https://ror.org/00ye5fx14', 'ca', 1, 'https://ror.org/00ye5fx14 Institut d''Estadística de Catalunya Statistical Institute of Catalonia'), (15770, 'https://ror.org/00ygx9p32', 'no_lang_code', 1, 'https://ror.org/00ygx9p32 Data Fusion International (Ireland)'), (15771, 'https://ror.org/00yhce098', 'no_lang_code', 1, 'https://ror.org/00yhce098 Librt (Netherlands)'), (15772, 'https://ror.org/00ykgmf04', 'en', 1, 'https://ror.org/00ykgmf04 Counseling Center'), (15773, 'https://ror.org/00ykv8m38', 'no_lang_code', 1, 'https://ror.org/00ykv8m38 CCL Biomedical (United States)'), (15774, 'https://ror.org/00ym0aw79', 'no_lang_code', 1, 'https://ror.org/00ym0aw79 Betah Associates'), (15775, 'https://ror.org/00ymae584', 'en', 1, 'https://ror.org/00ymae584 Institute for Breathing and Sleep'), (15776, 'https://ror.org/00yn4x364', 'pt', 1, 'https://ror.org/00yn4x364 Centro de Estudos de Cultura Contemporânea'), (15777, 'https://ror.org/00ynx7r03', 'no_lang_code', 1, 'https://ror.org/00ynx7r03 Biomod (Canada)'), (15778, 'https://ror.org/00ypwp112', 'it', 1, 'https://ror.org/00ypwp112 Centro di Cultura Scientifica Alessandro Volta'), (15779, 'https://ror.org/00yr71497', 'de', 1, 'https://ror.org/00yr71497 Institut für regionale Studien in Europa'), (15780, 'https://ror.org/00yrwcc77', 'no_lang_code', 1, 'https://ror.org/00yrwcc77 Double Delta (Hungary)'), (15781, 'https://ror.org/00ysm1s19', 'no_lang_code', 1, 'https://ror.org/00ysm1s19 ELE Advanced Technologies (United Kingdom)'), (15782, 'https://ror.org/00yt7g523', 'en', 1, 'https://ror.org/00yt7g523 Asian Health Coalition'), (15783, 'https://ror.org/00yv40k20', 'no_lang_code', 1, 'https://ror.org/00yv40k20 Rare Partners (Italy)'), (15784, 'https://ror.org/00yy6km68', 'en', 1, 'https://ror.org/00yy6km68 Ministry for Sustainable Development the Environment and Climate change'), (15785, 'https://ror.org/00yyva985', 'no_lang_code', 1, 'https://ror.org/00yyva985 HepatoSys (United States)'), (15786, 'https://ror.org/00yywbq76', 'no_lang_code', 1, 'https://ror.org/00yywbq76 Innovia (United States)'), (15787, 'https://ror.org/00yz0gw97', 'en', 1, 'https://ror.org/00yz0gw97 Design Business Association'), (15788, 'https://ror.org/00z0jwm84', 'no_lang_code', 1, 'https://ror.org/00z0jwm84 Locus Systems (United States)'), (15789, 'https://ror.org/00z1gnf82', 'no_lang_code', 1, 'https://ror.org/00z1gnf82 Avilo Software (Canada)'), (15790, 'https://ror.org/00z2thw25', 'no_lang_code', 1, 'https://ror.org/00z2thw25 Ekspla (Lithuania)'), (15791, 'https://ror.org/00z2vba08', 'en', 1, 'https://ror.org/00z2vba08 In Vitro Testing Industrial Platform'), (15792, 'https://ror.org/00z51f924', 'no_lang_code', 1, 'https://ror.org/00z51f924 Lypro Biosciences (United States)'), (15793, 'https://ror.org/00z65ng94', 'en', 1, 'https://ror.org/00z65ng94 Landau Institute for Theoretical Physics Институт теоретической физики им. Л. Д. Ландау'), (15794, 'https://ror.org/00z90m725', 'no_lang_code', 1, 'https://ror.org/00z90m725 Talon Pharmaceuticals (Canada)'), (15795, 'https://ror.org/00z9sw951', 'en', 1, 'https://ror.org/00z9sw951 Shriners Hospitals for Children - Shreveport'), (15796, 'https://ror.org/00zbqg304', 'en', 1, 'https://ror.org/00zbqg304 Canadian Science Publishing'), (15797, 'https://ror.org/00zdkew04', 'no_lang_code', 1, 'https://ror.org/00zdkew04 Bausch Health (United States)'), (15798, 'https://ror.org/00ze1bh94', 'en', 1, 'https://ror.org/00ze1bh94 Stephenson County Health Department'), (15799, 'https://ror.org/00zfafm43', 'no_lang_code', 1, 'https://ror.org/00zfafm43 APS Biocontrol (United Kingdom)'), (15800, 'https://ror.org/00zg7c252', 'no_lang_code', 1, 'https://ror.org/00zg7c252 IRGO Consulting (Slovenia) Inštitut za rudarstvo, geotehnologijo in okolje'), (15801, 'https://ror.org/00zg9jh77', 'en', 1, 'https://ror.org/00zg9jh77 Arkansas State Hospital'), (15802, 'https://ror.org/00zh01q02', 'no_lang_code', 1, 'https://ror.org/00zh01q02 Healthways (United States)'), (15803, 'https://ror.org/00zk5d448', 'en', 1, 'https://ror.org/00zk5d448 Testaverde Fund for Spinal Cord Injury'), (15804, 'https://ror.org/00zk89346', 'no_lang_code', 1, 'https://ror.org/00zk89346 Biolinq (United States)'), (15805, 'https://ror.org/00zmh3n37', 'de', 1, 'https://ror.org/00zmh3n37 Institut für Bildungsforschung der Wirtschaft'), (15806, 'https://ror.org/00zndc617', 'no_lang_code', 1, 'https://ror.org/00zndc617 Art of Technology (Switzerland)'), (15807, 'https://ror.org/00zq1zj15', 'en', 1, 'https://ror.org/00zq1zj15 Community Prevention Partnership'), (15808, 'https://ror.org/00zq5bx90', 'en', 1, 'https://ror.org/00zq5bx90 Clermont County Public Library'), (15809, 'https://ror.org/00zr01g13', 'no_lang_code', 1, 'https://ror.org/00zr01g13 Convex Electrical (Ireland)'), (15810, 'https://ror.org/00zrcp466', 'en', 1, 'https://ror.org/00zrcp466 Advanced Threat Analysis'), (15811, 'https://ror.org/00zsd7b19', 'no_lang_code', 1, 'https://ror.org/00zsd7b19 Alitalia (Italy)'), (15812, 'https://ror.org/00zt7j992', 'en', 1, 'https://ror.org/00zt7j992 Quality Living'), (15813, 'https://ror.org/00zt8d340', 'no_lang_code', 1, 'https://ror.org/00zt8d340 DIAD (Italy)'), (15814, 'https://ror.org/00ztjw772', 'fr', 1, 'https://ror.org/00ztjw772 Cégep de Sorel-Tracy'), (15815, 'https://ror.org/00zv6x249', 'no_lang_code', 1, 'https://ror.org/00zv6x249 ECD Architects'), (15816, 'https://ror.org/00zvn3z28', 'no_lang_code', 1, 'https://ror.org/00zvn3z28 Engineering Link (Canada)'), (15817, 'https://ror.org/00zxanb56', 'no_lang_code', 1, 'https://ror.org/00zxanb56 Beasy (United Kingdom)'), (15818, 'https://ror.org/00zycb197', 'ca', 1, 'https://ror.org/00zycb197 Departament de Territori i Sostenibilitat'), (15819, 'https://ror.org/00zz3bk03', 'en', 1, 'https://ror.org/00zz3bk03 Scharp-Lacy Research Institute'), (15820, 'https://ror.org/01015b329', 'en', 1, 'https://ror.org/01015b329 Elkhart Public Library'), (15821, 'https://ror.org/0101b3513', 'en', 1, 'https://ror.org/0101b3513 Toledo Museum of Art'), (15822, 'https://ror.org/0102yc990', 'en', 1, 'https://ror.org/0102yc990 Warriors on Wheels of Metropolitan Detroit'), (15823, 'https://ror.org/01053yy22', 'en', 1, 'https://ror.org/01053yy22 Seven Generations Ahead'), (15824, 'https://ror.org/0105gtj82', 'no_lang_code', 1, 'https://ror.org/0105gtj82 NORESCO (United States)'), (15825, 'https://ror.org/0108xkp59', 'no_lang_code', 1, 'https://ror.org/0108xkp59 Gesellschaft für Mikroelektronikanwendung Chemnitz (Germany)'), (15826, 'https://ror.org/010984q05', 'no_lang_code', 1, 'https://ror.org/010984q05 Dioxide Materials (United States)'), (15827, 'https://ror.org/010apsh61', 'en', 1, 'https://ror.org/010apsh61 Coles County Historical Society'), (15828, 'https://ror.org/010b2bg46', 'no_lang_code', 1, 'https://ror.org/010b2bg46 Culminatum Innovation (Finland)'), (15829, 'https://ror.org/010c9nr19', 'no_lang_code', 1, 'https://ror.org/010c9nr19 Knorr-Bremse (Germany)'), (15830, 'https://ror.org/010d6p438', 'no_lang_code', 1, 'https://ror.org/010d6p438 Life Systems (United States)'), (15831, 'https://ror.org/010de7v16', 'no_lang_code', 1, 'https://ror.org/010de7v16 Orchid (Switzerland)'), (15832, 'https://ror.org/010e6tc72', 'no_lang_code', 1, 'https://ror.org/010e6tc72 Biolog Life Science Institute'), (15833, 'https://ror.org/010em6d12', 'no_lang_code', 1, 'https://ror.org/010em6d12 Amec Foster Wheeler (Canada)'), (15834, 'https://ror.org/010f6he14', 'no_lang_code', 1, 'https://ror.org/010f6he14 Techno-Membranes (France)'), (15835, 'https://ror.org/010g4yg11', 'no_lang_code', 1, 'https://ror.org/010g4yg11 Aqon Water Solutions (Germany)'), (15836, 'https://ror.org/010hax789', 'en', 1, 'https://ror.org/010hax789 International center for Advancement of Research Technology and Innovation'), (15837, 'https://ror.org/010hs8e42', 'en', 1, 'https://ror.org/010hs8e42 Croatian Academic and Research Network Hrvatska akademska i istraživačka mreža'), (15838, 'https://ror.org/010j1tz71', 'no_lang_code', 1, 'https://ror.org/010j1tz71 Brugarolas (Spain)'), (15839, 'https://ror.org/010n36m19', 'no_lang_code', 1, 'https://ror.org/010n36m19 IBSmm (Czechia)'), (15840, 'https://ror.org/010nr8d35', 'en', 1, 'https://ror.org/010nr8d35 Family Cafe'), (15841, 'https://ror.org/010qn8y93', 'no_lang_code', 1, 'https://ror.org/010qn8y93 LVD (Belgium)'), (15842, 'https://ror.org/010qx2c09', 'en', 1, 'https://ror.org/010qx2c09 Latino Community Services'), (15843, 'https://ror.org/010qzgm63', 'en', 1, 'https://ror.org/010qzgm63 Northbrook Public Library'), (15844, 'https://ror.org/010rmp704', 'en', 1, 'https://ror.org/010rmp704 Woodrow Wilson Rehabilitation Center Foundation'), (15845, 'https://ror.org/010sn2g43', 'en', 1, 'https://ror.org/010sn2g43 Jasper County Public Library'), (15846, 'https://ror.org/010tt0206', 'en', 1, 'https://ror.org/010tt0206 Asia Society'), (15847, 'https://ror.org/010wk5k38', 'en', 1, 'https://ror.org/010wk5k38 Foundation for Applied Information Technology in Environment, Agriculture and Global Change'), (15848, 'https://ror.org/010y19q47', 'en', 1, 'https://ror.org/010y19q47 Earth Cryosphere Institute Федеральное государственное бюджетное учреждение науки Институт криосферы Земли Сибирского отделения Российской академии наук'), (15849, 'https://ror.org/01139ec29', 'no_lang_code', 1, 'https://ror.org/01139ec29 Thermo Fisher Scientific (Netherlands)'), (15850, 'https://ror.org/011408310', 'en', 1, 'https://ror.org/011408310 Institute for Single Crystals'), (15851, 'https://ror.org/01148hc54', 'no_lang_code', 1, 'https://ror.org/01148hc54 Envirup (United Kingdom)'), (15852, 'https://ror.org/0114vcr39', 'no_lang_code', 1, 'https://ror.org/0114vcr39 Rancho BioSciences (United States)'), (15853, 'https://ror.org/0114yjq47', 'en', 1, 'https://ror.org/0114yjq47 Oficina de Patentes y Marcas de Estados Unidos United States Patent and Trademark Office'), (15854, 'https://ror.org/0116eqt27', 'no_lang_code', 1, 'https://ror.org/0116eqt27 Bionex Pharmaceuticals (United States)'), (15855, 'https://ror.org/01176rr26', 'no_lang_code', 1, 'https://ror.org/01176rr26 Anaxsys (United Kingdom)'), (15856, 'https://ror.org/011bas443', 'no_lang_code', 1, 'https://ror.org/011bas443 Biolytix (Switzerland)'), (15857, 'https://ror.org/011bvxa88', 'en', 1, 'https://ror.org/011bvxa88 Heather Hill Care Communities'), (15858, 'https://ror.org/011dxht06', 'en', 1, 'https://ror.org/011dxht06 Women of W.O.R.T.H.'), (15859, 'https://ror.org/011e1gw30', 'no_lang_code', 1, 'https://ror.org/011e1gw30 Forming Technologies (Canada)'), (15860, 'https://ror.org/011ed2d57', 'fr', 1, 'https://ror.org/011ed2d57 French Polar Institute Institut Polaire Français Paul Émile Victor'), (15861, 'https://ror.org/011gg5m49', 'en', 1, 'https://ror.org/011gg5m49 Ulman Cancer Fund for Young Adults'), (15862, 'https://ror.org/011mf7877', 'no_lang_code', 1, 'https://ror.org/011mf7877 Automatizace železniční dopravy Praha AŽD Praha (Czechia)'), (15863, 'https://ror.org/011mp8w48', 'en', 1, 'https://ror.org/011mp8w48 Bronx Health Link'), (15864, 'https://ror.org/011n1b487', 'en', 1, 'https://ror.org/011n1b487 The Center for the Biology of Chronic Disease'), (15865, 'https://ror.org/011p6w039', 'no_lang_code', 1, 'https://ror.org/011p6w039 Hybrid Plastics (United States)'), (15866, 'https://ror.org/011pv1j48', 'no_lang_code', 1, 'https://ror.org/011pv1j48 Greentronics (Romania)'), (15867, 'https://ror.org/011qe1419', 'en', 1, 'https://ror.org/011qe1419 RiverWatch Insitute of Alberta'), (15868, 'https://ror.org/011r1ph27', 'no_lang_code', 1, 'https://ror.org/011r1ph27 Avonwood (United Kingdom)'), (15869, 'https://ror.org/011r6gp69', 'en', 1, 'https://ror.org/011r6gp69 University of Algiers Benyoucef Benkhedda جامعة الجزائر – بن يوسف بن خـدة'), (15870, 'https://ror.org/011r7ts05', 'en', 1, 'https://ror.org/011r7ts05 Advanced Technology Centre for Renewable Energies Centro Tecnológico Avanzado de Energías Renovables'), (15871, 'https://ror.org/011smmt78', 'no_lang_code', 1, 'https://ror.org/011smmt78 GeoSAS (Ethiopia)'), (15872, 'https://ror.org/011t8b496', 'en', 1, 'https://ror.org/011t8b496 Tri-City Health Center'), (15873, 'https://ror.org/0124zm423', 'en', 1, 'https://ror.org/0124zm423 Piers Park Sailing Center'), (15874, 'https://ror.org/0125p4c40', 'no_lang_code', 1, 'https://ror.org/0125p4c40 Antea Group (Belgium)'), (15875, 'https://ror.org/0127sq784', 'en', 1, 'https://ror.org/0127sq784 Council of State Science Supervisors'), (15876, 'https://ror.org/01292e826', 'es', 1, 'https://ror.org/01292e826 Agencia de Servicios Sociales y Dependencia de Andalucía'), (15877, 'https://ror.org/012ctg788', 'no_lang_code', 1, 'https://ror.org/012ctg788 HULVERSHORN Eisengiesserei (Germany)'), (15878, 'https://ror.org/012d6re71', 'no_lang_code', 1, 'https://ror.org/012d6re71 Brotherhood (United States)'), (15879, 'https://ror.org/012dd2p55', 'no_lang_code', 1, 'https://ror.org/012dd2p55 Arttic'), (15880, 'https://ror.org/012ddpg93', 'no_lang_code', 1, 'https://ror.org/012ddpg93 Denkstatt Bulgaria (Bulgaria)'), (15881, 'https://ror.org/012dtcx72', 'no_lang_code', 1, 'https://ror.org/012dtcx72 National Institute for Research and Development in Welding and Material Testing'), (15882, 'https://ror.org/012ea8q16', 'en', 1, 'https://ror.org/012ea8q16 Southeastern Community College - North Carolina'), (15883, 'https://ror.org/012eck451', 'no_lang_code', 1, 'https://ror.org/012eck451 Experian (United Kingdom)'), (15884, 'https://ror.org/012f3dh63', 'en', 1, 'https://ror.org/012f3dh63 China Academy of Transportation Sciences 交通运输部科学研究院'), (15885, 'https://ror.org/012f6s028', 'en', 1, 'https://ror.org/012f6s028 Hormel Foundation'), (15886, 'https://ror.org/012jkjf69', 'no_lang_code', 1, 'https://ror.org/012jkjf69 Alfa Laval (Sweden)'), (15887, 'https://ror.org/012kxk780', 'en', 1, 'https://ror.org/012kxk780 Asia Foundation'), (15888, 'https://ror.org/012pre389', 'no_lang_code', 1, 'https://ror.org/012pre389 České Energetické Závody (Czechia)'), (15889, 'https://ror.org/012q2tk82', 'en', 1, 'https://ror.org/012q2tk82 Institute of Solar-Terrestrial Physics Федеральное государственное бюджетное учреждение науки Институт солнечно-земной физики Сибирского отделения Российской академии наук'), (15890, 'https://ror.org/012rthc43', 'no_lang_code', 1, 'https://ror.org/012rthc43 Explora (Italy)'), (15891, 'https://ror.org/012xvbn21', 'no_lang_code', 1, 'https://ror.org/012xvbn21 CEA Systems (Netherlands)'), (15892, 'https://ror.org/0132exq81', 'no_lang_code', 1, 'https://ror.org/0132exq81 Smithfield BioScience (United States)'), (15893, 'https://ror.org/0132f0t75', 'en', 1, 'https://ror.org/0132f0t75 Sarem Cell Research Center'), (15894, 'https://ror.org/0132f5d22', 'no_lang_code', 1, 'https://ror.org/0132f5d22 Magnomatics (United Kingdom)'), (15895, 'https://ror.org/0132r2f10', 'no_lang_code', 1, 'https://ror.org/0132r2f10 Kinedyne (United States)'), (15896, 'https://ror.org/01337fb30', 'no_lang_code', 1, 'https://ror.org/01337fb30 Dow Chemical (Belgium)'), (15897, 'https://ror.org/01368tg26', 'no_lang_code', 1, 'https://ror.org/01368tg26 IAPETOS (Greece)'), (15898, 'https://ror.org/0137qt802', 'en', 1, 'https://ror.org/0137qt802 Knowledge Innovation Market'), (15899, 'https://ror.org/0137xgw27', 'no_lang_code', 1, 'https://ror.org/0137xgw27 Bridgepoint (Germany)'), (15900, 'https://ror.org/0138rdd60', 'no_lang_code', 1, 'https://ror.org/0138rdd60 Eni (Belgium)'), (15901, 'https://ror.org/0139cja35', 'no_lang_code', 1, 'https://ror.org/0139cja35 Dura Vermeer (Netherlands)'), (15902, 'https://ror.org/013bqfn71', 'en', 1, 'https://ror.org/013bqfn71 Institute for Market Economics'), (15903, 'https://ror.org/013ddcx26', 'en', 1, 'https://ror.org/013ddcx26 Orland Park Public Library'), (15904, 'https://ror.org/013dmpa26', 'no_lang_code', 1, 'https://ror.org/013dmpa26 Greenvest (Italy)'), (15905, 'https://ror.org/013e7et93', 'de', 1, 'https://ror.org/013e7et93 Leipziger Institut für Energie'), (15906, 'https://ror.org/013g95q71', 'no_lang_code', 1, 'https://ror.org/013g95q71 Broyce Control (United Kingdom)'), (15907, 'https://ror.org/013gqjv35', 'no_lang_code', 1, 'https://ror.org/013gqjv35 HMGene (United States)'), (15908, 'https://ror.org/013h4ye17', 'en', 1, 'https://ror.org/013h4ye17 Stone Clinic'), (15909, 'https://ror.org/013h98003', 'en', 1, 'https://ror.org/013h98003 European Forum on Nature Conservation and Pastoralism'), (15910, 'https://ror.org/013jm0v29', 'en', 1, 'https://ror.org/013jm0v29 Solutions of Artificial Intelligence Applications'), (15911, 'https://ror.org/013k3b019', 'no_lang_code', 1, 'https://ror.org/013k3b019 Acrion Technologies (United States)'), (15912, 'https://ror.org/013kzw641', 'en', 1, 'https://ror.org/013kzw641 Greenwich Public Schools'), (15913, 'https://ror.org/013mgh495', 'no_lang_code', 1, 'https://ror.org/013mgh495 Language Computer (United States)'), (15914, 'https://ror.org/013n79s81', 'no_lang_code', 1, 'https://ror.org/013n79s81 Eblana Photonics (Ireland)'), (15915, 'https://ror.org/013pvbr04', 'no_lang_code', 1, 'https://ror.org/013pvbr04 Fluxim (Switzerland)'), (15916, 'https://ror.org/013pwk504', 'no_lang_code', 1, 'https://ror.org/013pwk504 Woodward (Switzerland)'), (15917, 'https://ror.org/013rm7441', 'en', 1, 'https://ror.org/013rm7441 Champaign Public Library'), (15918, 'https://ror.org/013rnrt24', 'en', 1, 'https://ror.org/013rnrt24 Institute of Physics'), (15919, 'https://ror.org/013s1wp36', 'no_lang_code', 1, 'https://ror.org/013s1wp36 CATAS Catas Laboratorio Analisi Legno Arredo Agroalimentare'), (15920, 'https://ror.org/013trv503', 'no_lang_code', 1, 'https://ror.org/013trv503 Damen Shipyards Group (Netherlands)'), (15921, 'https://ror.org/013vksw20', 'en', 1, 'https://ror.org/013vksw20 Center for Governmental Research'), (15922, 'https://ror.org/013w2d378', 'en', 1, 'https://ror.org/013w2d378 Institute for Information Transmission Problems Федеральное государственное бюджетное учреждение науки Институт проблем передачи информации им. А.А. Харкевича Российской академии наук'), (15923, 'https://ror.org/013wyvt46', 'en', 1, 'https://ror.org/013wyvt46 Institut für Angewandte Wirtschaftsforschung Institute for Applied Economic Research'), (15924, 'https://ror.org/013x1fq42', 'no_lang_code', 1, 'https://ror.org/013x1fq42 Beta 80 Group (Italy)'), (15925, 'https://ror.org/013xgfd67', 'no_lang_code', 1, 'https://ror.org/013xgfd67 Biopredic (France)'), (15926, 'https://ror.org/0141hdg13', 'en', 1, 'https://ror.org/0141hdg13 European State Forest Association'), (15927, 'https://ror.org/01425vp67', 'no_lang_code', 1, 'https://ror.org/01425vp67 Applied Materials (Israel)'), (15928, 'https://ror.org/01433ep44', 'no_lang_code', 1, 'https://ror.org/01433ep44 Assystem (United Kingdom)'), (15929, 'https://ror.org/01434vk98', 'no_lang_code', 1, 'https://ror.org/01434vk98 GrafTech (United States)'), (15930, 'https://ror.org/01450df76', 'en', 1, 'https://ror.org/01450df76 Hospitales Shriners para Niños Shriners Hospitals for Children - Mexico'), (15931, 'https://ror.org/0145xtn29', 'no_lang_code', 1, 'https://ror.org/0145xtn29 Geosat'), (15932, 'https://ror.org/01464p409', 'en', 1, 'https://ror.org/01464p409 Disability Connection'), (15933, 'https://ror.org/014743444', 'de', 1, 'https://ror.org/014743444 Forschungsinstitut für Wärmeschutz München'), (15934, 'https://ror.org/01479wc11', 'en', 1, 'https://ror.org/01479wc11 Association of Learned and Professional Society Publishers'), (15935, 'https://ror.org/01491ht04', 'no_lang_code', 1, 'https://ror.org/01491ht04 GeoSpatiumLab (Spain)'), (15936, 'https://ror.org/01499pn86', 'no_lang_code', 1, 'https://ror.org/01499pn86 Kyos (Switzerland)'), (15937, 'https://ror.org/014a84x66', 'no_lang_code', 1, 'https://ror.org/014a84x66 Denn (Spain)'), (15938, 'https://ror.org/014a8dd26', 'en', 1, 'https://ror.org/014a8dd26 Capital Community College'), (15939, 'https://ror.org/014cycx13', 'it', 1, 'https://ror.org/014cycx13 Istituto Centrale per la Ricerca Scientifica e Tecnologica Applicata al Mare'), (15940, 'https://ror.org/014d2cv50', 'en', 1, 'https://ror.org/014d2cv50 Research Institute for Social and Health Improvement Foundation ಋಷಿ ಫೌಂಡೇಶನ್'), (15941, 'https://ror.org/014dgae50', 'no_lang_code', 1, 'https://ror.org/014dgae50 2i Industrial Informatics (Germany)'), (15942, 'https://ror.org/014e9vv52', 'en', 1, 'https://ror.org/014e9vv52 Cheboygan Otsego Presque Isle Educational Service District'), (15943, 'https://ror.org/014fxpb13', 'no_lang_code', 1, 'https://ror.org/014fxpb13 Engineering Data Management'), (15944, 'https://ror.org/014fxzd16', 'en', 1, 'https://ror.org/014fxzd16 European Public Law Center'), (15945, 'https://ror.org/014g11b23', 'en', 1, 'https://ror.org/014g11b23 University of Vermont Children’s Hospital'), (15946, 'https://ror.org/014g5ne65', 'no_lang_code', 1, 'https://ror.org/014g5ne65 Libertine FPE (United Kingdom)'), (15947, 'https://ror.org/014gd3j97', 'en', 1, 'https://ror.org/014gd3j97 Hebrew Home'), (15948, 'https://ror.org/014j0w741', 'en', 1, 'https://ror.org/014j0w741 Catholic Medical Mission Board'), (15949, 'https://ror.org/014nnvj65', 'en', 1, 'https://ror.org/014nnvj65 TH Köln TH Köln - University of Applied Sciences'), (15950, 'https://ror.org/014q4ab21', 'it', 1, 'https://ror.org/014q4ab21 Legambiente'), (15951, 'https://ror.org/014rb1v48', 'no_lang_code', 1, 'https://ror.org/014rb1v48 AMREP (United States)'), (15952, 'https://ror.org/014s9rr70', 'en', 1, 'https://ror.org/014s9rr70 Kansas City CARE Clinic'), (15953, 'https://ror.org/014tp7304', 'en', 1, 'https://ror.org/014tp7304 European Institute of Public Administration'), (15954, 'https://ror.org/014vt6y07', 'no_lang_code', 1, 'https://ror.org/014vt6y07 Foreca (Finland)'), (15955, 'https://ror.org/014y9am47', 'en', 1, 'https://ror.org/014y9am47 Arnolfini'), (15956, 'https://ror.org/0151q7p66', 'en', 1, 'https://ror.org/0151q7p66 Assemblies of God Theological Seminary'), (15957, 'https://ror.org/0152arp12', 'en', 1, 'https://ror.org/0152arp12 Flint Community Schools'), (15958, 'https://ror.org/0152xpa72', 'en', 1, 'https://ror.org/0152xpa72 Indiana State Library'), (15959, 'https://ror.org/0156efr50', 'no_lang_code', 1, 'https://ror.org/0156efr50 Rand McNally (United States)'), (15960, 'https://ror.org/0157qrq16', 'no_lang_code', 1, 'https://ror.org/0157qrq16 Comelz (Italy)'), (15961, 'https://ror.org/0158f8t80', 'en', 1, 'https://ror.org/0158f8t80 American Bar Association'), (15962, 'https://ror.org/0159z5d03', 'en', 1, 'https://ror.org/0159z5d03 Springfield Greene County Library District'), (15963, 'https://ror.org/015aet155', 'no_lang_code', 1, 'https://ror.org/015aet155 Euromedica'), (15964, 'https://ror.org/015b22965', 'no_lang_code', 1, 'https://ror.org/015b22965 Taro Pharmaceuticals (United States)'), (15965, 'https://ror.org/015daqq20', 'no_lang_code', 1, 'https://ror.org/015daqq20 APR (Italy)'), (15966, 'https://ror.org/015dvz544', 'no_lang_code', 1, 'https://ror.org/015dvz544 European Safety Management Group'), (15967, 'https://ror.org/015facm29', 'en', 1, 'https://ror.org/015facm29 Aeras'), (15968, 'https://ror.org/015fn7y55', 'no_lang_code', 1, 'https://ror.org/015fn7y55 Costa Edutainment'), (15969, 'https://ror.org/015g9cc75', 'no_lang_code', 1, 'https://ror.org/015g9cc75 BIOTECmarin (Germany)'), (15970, 'https://ror.org/015geds03', 'fr', 1, 'https://ror.org/015geds03 Greta Lac'), (15971, 'https://ror.org/015gv1k37', 'en', 1, 'https://ror.org/015gv1k37 Post Acute Partners'), (15972, 'https://ror.org/015h21b91', 'en', 1, 'https://ror.org/015h21b91 Federal Reserve Bank of Kansas City'), (15973, 'https://ror.org/015jw8x57', 'en', 1, 'https://ror.org/015jw8x57 Youth Alive Uganda'), (15974, 'https://ror.org/015m28b66', 'no_lang_code', 1, 'https://ror.org/015m28b66 Ingenieurgesellschaft für Technische Software (Germany)'), (15975, 'https://ror.org/015mn5k65', 'en', 1, 'https://ror.org/015mn5k65 San Mateo Medical Center'), (15976, 'https://ror.org/015p4e180', 'no_lang_code', 1, 'https://ror.org/015p4e180 DSB (Denmark)'), (15977, 'https://ror.org/015py4711', 'es', 1, 'https://ror.org/015py4711 ANFACO-CECOPESCA'), (15978, 'https://ror.org/015reqs57', 'no_lang_code', 1, 'https://ror.org/015reqs57 Goknow (United States)'), (15979, 'https://ror.org/015rere91', 'no_lang_code', 1, 'https://ror.org/015rere91 Atlas Biolabs (Germany)'), (15980, 'https://ror.org/015vhyq37', 'no_lang_code', 1, 'https://ror.org/015vhyq37 Mayer Brown (United Kingdom)'), (15981, 'https://ror.org/015w14j53', 'no_lang_code', 1, 'https://ror.org/015w14j53 Gneuss (Germany)'), (15982, 'https://ror.org/015w1qa96', 'en', 1, 'https://ror.org/015w1qa96 Korea Institute for Advancement of Technology'), (15983, 'https://ror.org/015x9tq79', 'de', 1, 'https://ror.org/015x9tq79 Forschungsinstitut Technologie und Behinderung Research Institute Technology and Disability'), (15984, 'https://ror.org/01611ny13', 'no_lang_code', 1, 'https://ror.org/01611ny13 EuroPhoton (Germany)'), (15985, 'https://ror.org/01611w595', 'en', 1, 'https://ror.org/01611w595 Iris House'), (15986, 'https://ror.org/0163xqp73', 'en', 1, 'https://ror.org/0163xqp73 IUF - Leibniz-Institut für umweltmedizinische Forschung Leibniz Institute of Environmental Medicine'), (15987, 'https://ror.org/0165zav23', 'en', 1, 'https://ror.org/0165zav23 United Food and Commercial Workers'), (15988, 'https://ror.org/0166gt567', 'no_lang_code', 1, 'https://ror.org/0166gt567 Koba Institute'), (15989, 'https://ror.org/016a8y628', 'no_lang_code', 1, 'https://ror.org/016a8y628 Magma (Germany)'), (15990, 'https://ror.org/016gahp64', 'en', 1, 'https://ror.org/016gahp64 St. Clair County Library System'), (15991, 'https://ror.org/016hwk083', 'no_lang_code', 1, 'https://ror.org/016hwk083 Disy (Germany)'), (15992, 'https://ror.org/016j39z10', 'no_lang_code', 1, 'https://ror.org/016j39z10 Croda (United Kingdom)'), (15993, 'https://ror.org/016mz1226', 'en', 1, 'https://ror.org/016mz1226 Institutul Național de Cercetare-Dezvoltare în Silvicultură „Marin Drăcea” National Institute for Research and Development in Forestry "Marin Drăcea"'), (15994, 'https://ror.org/016nn6y69', 'en', 1, 'https://ror.org/016nn6y69 Carinthian Tech Research'), (15995, 'https://ror.org/016phpf56', 'no_lang_code', 1, 'https://ror.org/016phpf56 Cella Energy (United Kingdom)'), (15996, 'https://ror.org/016qz7879', 'no_lang_code', 1, 'https://ror.org/016qz7879 Voith (United Kingdom)'), (15997, 'https://ror.org/016t7ff42', 'en', 1, 'https://ror.org/016t7ff42 United States Power Soccer Association'), (15998, 'https://ror.org/016v9sa88', 'no_lang_code', 1, 'https://ror.org/016v9sa88 Base Protection (Italy)'), (15999, 'https://ror.org/016x3qj75', 'no_lang_code', 1, 'https://ror.org/016x3qj75 Nielsen (United States)'), (16000, 'https://ror.org/016yz4963', 'en', 1, 'https://ror.org/016yz4963 Des Plaines Public Library'), (16001, 'https://ror.org/016zn5019', 'no_lang_code', 1, 'https://ror.org/016zn5019 Altran (United Kingdom)'), (16002, 'https://ror.org/0171psx92', 'en', 1, 'https://ror.org/0171psx92 Noranda Income Fund'), (16003, 'https://ror.org/0172ekt87', 'en', 1, 'https://ror.org/0172ekt87 Craftspace'), (16004, 'https://ror.org/0174e3t82', 'en', 1, 'https://ror.org/0174e3t82 Aspen Institute'), (16005, 'https://ror.org/0176btp32', 'no_lang_code', 1, 'https://ror.org/0176btp32 Tribal Group'), (16006, 'https://ror.org/0177d4e55', 'no_lang_code', 1, 'https://ror.org/0177d4e55 Marvell (Spain)'), (16007, 'https://ror.org/017aszj34', 'en', 1, 'https://ror.org/017aszj34 Voices Against Brain Cancer'), (16008, 'https://ror.org/017bw3q44', 'no_lang_code', 1, 'https://ror.org/017bw3q44 BMI Association'), (16009, 'https://ror.org/017bzf706', 'no_lang_code', 1, 'https://ror.org/017bzf706 Summit Medical Group (United States)'), (16010, 'https://ror.org/017c2y429', 'no_lang_code', 1, 'https://ror.org/017c2y429 Informa (Italy)'), (16011, 'https://ror.org/017cr6139', 'no_lang_code', 1, 'https://ror.org/017cr6139 Ceremed (United States)'), (16012, 'https://ror.org/017e5zc16', 'no_lang_code', 1, 'https://ror.org/017e5zc16 Industrielle Steuerungstechnik (Germany)'), (16013, 'https://ror.org/017f49052', 'en', 1, 'https://ror.org/017f49052 Southeastern Illinois College'), (16014, 'https://ror.org/017fxcy86', 'no_lang_code', 1, 'https://ror.org/017fxcy86 EXPORTech (United States)'), (16015, 'https://ror.org/017g88n73', 'no_lang_code', 1, 'https://ror.org/017g88n73 First Light Diagnostics (United States)'), (16016, 'https://ror.org/017hnns59', 'en', 1, 'https://ror.org/017hnns59 Couleecap'), (16017, 'https://ror.org/017hxta74', 'no_lang_code', 1, 'https://ror.org/017hxta74 GeoSpectrum Technologies (Canada)'), (16018, 'https://ror.org/017j5za44', 'no_lang_code', 1, 'https://ror.org/017j5za44 Data Management (Italy)'), (16019, 'https://ror.org/017k93810', 'no_lang_code', 1, 'https://ror.org/017k93810 Azienda Industriali Municipali di Vicenza (Italy)'), (16020, 'https://ror.org/017m4fy44', 'en', 1, 'https://ror.org/017m4fy44 Veterans Research Foundation of Pittsburgh'), (16021, 'https://ror.org/017ptvx95', 'no_lang_code', 1, 'https://ror.org/017ptvx95 Infineon Technologies (United Kingdom)'), (16022, 'https://ror.org/017rrqa95', 'en', 1, 'https://ror.org/017rrqa95 National Association of Realtors'), (16023, 'https://ror.org/017rwv354', 'en', 1, 'https://ror.org/017rwv354 Washington State Chinese Cancer Network Association'), (16024, 'https://ror.org/017sazg79', 'no_lang_code', 1, 'https://ror.org/017sazg79 Mersen (France)'), (16025, 'https://ror.org/017t4sb47', 'en', 1, 'https://ror.org/017t4sb47 Wright Institute'), (16026, 'https://ror.org/017wnhb12', 'no_lang_code', 1, 'https://ror.org/017wnhb12 Avinet (Norway)'), (16027, 'https://ror.org/017ydz008', 'en', 1, 'https://ror.org/017ydz008 Tigerlily Foundation'), (16028, 'https://ror.org/017z1kg06', 'no_lang_code', 1, 'https://ror.org/017z1kg06 Finlombarda (Italy)'), (16029, 'https://ror.org/0181arg19', 'en', 1, 'https://ror.org/0181arg19 Mississippi Band of Choctaw Indians'), (16030, 'https://ror.org/018270v17', 'en', 1, 'https://ror.org/018270v17 Mazzoni Center'), (16031, 'https://ror.org/0182pv508', 'en', 1, 'https://ror.org/0182pv508 Florida Hospital Association'), (16032, 'https://ror.org/0187pag34', 'en', 1, 'https://ror.org/0187pag34 Institute for Physical Research'); INSERT INTO `rors` VALUES (16033, 'https://ror.org/0188sk047', 'no_lang_code', 1, 'https://ror.org/0188sk047 Irecoop Emilia-Romagna (Italy)'), (16034, 'https://ror.org/0189swh59', 'no_lang_code', 1, 'https://ror.org/0189swh59 CSTI Acoustics (United States)'), (16035, 'https://ror.org/018azsp93', 'en', 1, 'https://ror.org/018azsp93 Children’s Cancer Foundation'), (16036, 'https://ror.org/018b8fj92', 'no_lang_code', 1, 'https://ror.org/018b8fj92 Protigen (United States)'), (16037, 'https://ror.org/018c2ap34', 'en', 1, 'https://ror.org/018c2ap34 Champaign County History Museum'), (16038, 'https://ror.org/018dbr456', 'en', 1, 'https://ror.org/018dbr456 STAR Council'), (16039, 'https://ror.org/018ed3c32', 'no_lang_code', 1, 'https://ror.org/018ed3c32 Institut IGH (Croatia)'), (16040, 'https://ror.org/018f82058', 'en', 1, 'https://ror.org/018f82058 The Kindness Connection'), (16041, 'https://ror.org/018fdr531', 'no_lang_code', 1, 'https://ror.org/018fdr531 Yara (Norway)'), (16042, 'https://ror.org/018jzsh55', 'no_lang_code', 1, 'https://ror.org/018jzsh55 Fernwärme-Verbund Saar (Germany)'), (16043, 'https://ror.org/018pahb94', 'en', 1, 'https://ror.org/018pahb94 Texas Digital Library'), (16044, 'https://ror.org/018pbhh11', 'en', 1, 'https://ror.org/018pbhh11 Rubin Museum of Art'), (16045, 'https://ror.org/018r09w17', 'en', 1, 'https://ror.org/018r09w17 Strategic Initiative for Women in the Horn of Africa'), (16046, 'https://ror.org/018te2y75', 'no_lang_code', 1, 'https://ror.org/018te2y75 Imstar (France)'), (16047, 'https://ror.org/018tmag26', 'no_lang_code', 1, 'https://ror.org/018tmag26 Ambiental Technical Solutions (United Kingdom)'), (16048, 'https://ror.org/018vmtj90', 'no_lang_code', 1, 'https://ror.org/018vmtj90 Androme (Belgium)'), (16049, 'https://ror.org/018vpay05', 'en', 1, 'https://ror.org/018vpay05 South Carolina Cancer Alliance'), (16050, 'https://ror.org/018x1vg82', 'no_lang_code', 1, 'https://ror.org/018x1vg82 KE-Works (Netherlands)'), (16051, 'https://ror.org/018xp1p31', 'en', 1, 'https://ror.org/018xp1p31 ITT Technical Institute'), (16052, 'https://ror.org/018zhtp04', 'no_lang_code', 1, 'https://ror.org/018zhtp04 Manoir Industries (France)'), (16053, 'https://ror.org/018zj0h25', 'fr', 1, 'https://ror.org/018zj0h25 Institut de l''Environnement et Recherches Agricoles'), (16054, 'https://ror.org/0190rg629', 'no_lang_code', 1, 'https://ror.org/0190rg629 Knauf (Germany)'), (16055, 'https://ror.org/01922pt58', 'en', 1, 'https://ror.org/01922pt58 Alliance for Safe Kids'), (16056, 'https://ror.org/019504w35', 'en', 1, 'https://ror.org/019504w35 Quantum Leap Healthcare Collaborative'), (16057, 'https://ror.org/019611881', 'no_lang_code', 1, 'https://ror.org/019611881 Burnbrae Farms (Canada)'), (16058, 'https://ror.org/0199wh953', 'no_lang_code', 1, 'https://ror.org/0199wh953 Contech (Canada)'), (16059, 'https://ror.org/019evbm58', 'it', 1, 'https://ror.org/019evbm58 Istituto Sperimentale Modelli E Strutture'), (16060, 'https://ror.org/019faqe83', 'en', 1, 'https://ror.org/019faqe83 Lac du Flambeau Band of Lake Superior Chippewa Indians'), (16061, 'https://ror.org/019gvtj90', 'no_lang_code', 1, 'https://ror.org/019gvtj90 Puratos (Belgium)'), (16062, 'https://ror.org/019hqrp02', 'en', 1, 'https://ror.org/019hqrp02 Iron County Historical Museum'), (16063, 'https://ror.org/019htj352', 'no_lang_code', 1, 'https://ror.org/019htj352 Dürr (Germany)'), (16064, 'https://ror.org/019p1xx37', 'en', 1, 'https://ror.org/019p1xx37 College des arts médicaux de kettering Kettering College'), (16065, 'https://ror.org/019qrs910', 'en', 1, 'https://ror.org/019qrs910 Electronic Privacy Information Center'), (16066, 'https://ror.org/019qz2a14', 'no_lang_code', 1, 'https://ror.org/019qz2a14 Buildair (Spain)'), (16067, 'https://ror.org/019r00h23', 'en', 1, 'https://ror.org/019r00h23 Sauk Valley Community College'), (16068, 'https://ror.org/019sw1443', 'en', 1, 'https://ror.org/019sw1443 Association for Computational Linguistics'), (16069, 'https://ror.org/019syv921', 'no_lang_code', 1, 'https://ror.org/019syv921 Linguamatics (United Kingdom)'), (16070, 'https://ror.org/019szx567', 'fr', 1, 'https://ror.org/019szx567 Traces'), (16071, 'https://ror.org/019v3r356', 'no_lang_code', 1, 'https://ror.org/019v3r356 Karmic (Switzerland)'), (16072, 'https://ror.org/019wcja80', 'en', 1, 'https://ror.org/019wcja80 Lake County Forest Preserves'), (16073, 'https://ror.org/019xzfh39', 'no_lang_code', 1, 'https://ror.org/019xzfh39 Huron Technologies (Canada)'), (16074, 'https://ror.org/01a1qdv64', 'en', 1, 'https://ror.org/01a1qdv64 G.V. Kurdyumov Institute for Metal Physics Інститут металофізики імені Г. В. Курдюмова НАН України Институт металлофизики НАН Украины'), (16075, 'https://ror.org/01a4jyf22', 'no_lang_code', 1, 'https://ror.org/01a4jyf22 imaGeau (France)'), (16076, 'https://ror.org/01a50ww41', 'no_lang_code', 1, 'https://ror.org/01a50ww41 FVA New Media Research (Italy)'), (16077, 'https://ror.org/01a53yy36', 'en', 1, 'https://ror.org/01a53yy36 Wauconda Area Library'), (16078, 'https://ror.org/01a5r1q21', 'no_lang_code', 1, 'https://ror.org/01a5r1q21 Berry & Associates (United States)'), (16079, 'https://ror.org/01a669d22', 'no_lang_code', 1, 'https://ror.org/01a669d22 Falex Tribology (Belgium)'), (16080, 'https://ror.org/01a697543', 'en', 1, 'https://ror.org/01a697543 Chattanooga State Community College'), (16081, 'https://ror.org/01a99rs65', 'no_lang_code', 1, 'https://ror.org/01a99rs65 Kennametal (United Kingdom)'), (16082, 'https://ror.org/01aa1sn70', 'en', 1, 'https://ror.org/01aa1sn70 Bundesanstalt für Arbeitsschutz und Arbeitsmedizin Federal Institute for Occupational Safety and Health'), (16083, 'https://ror.org/01abfef94', 'no_lang_code', 1, 'https://ror.org/01abfef94 ChemRegen (United States)'), (16084, 'https://ror.org/01abgvx97', 'en', 1, 'https://ror.org/01abgvx97 Ward Melville Heritage Organization'), (16085, 'https://ror.org/01addcj30', 'no_lang_code', 1, 'https://ror.org/01addcj30 Broadcom (Ireland)'), (16086, 'https://ror.org/01aetv375', 'en', 1, 'https://ror.org/01aetv375 USA Hockey Foundation'), (16087, 'https://ror.org/01afspn38', 'en', 1, 'https://ror.org/01afspn38 Prairie State College'), (16088, 'https://ror.org/01ag4vf25', 'no_lang_code', 1, 'https://ror.org/01ag4vf25 Anton Paar (Switzerland)'), (16089, 'https://ror.org/01agtnb56', 'no_lang_code', 1, 'https://ror.org/01agtnb56 Healionics (United States)'), (16090, 'https://ror.org/01aj87c56', 'no_lang_code', 1, 'https://ror.org/01aj87c56 Fluvius (Belgium)'), (16091, 'https://ror.org/01ajshr89', 'en', 1, 'https://ror.org/01ajshr89 Florida Coalition Against Domestic Violence'), (16092, 'https://ror.org/01at47r33', 'no_lang_code', 1, 'https://ror.org/01at47r33 Cameca (France)'), (16093, 'https://ror.org/01at7p410', 'no_lang_code', 1, 'https://ror.org/01at7p410 Ernst Basler + Partner (Switzerland)'), (16094, 'https://ror.org/01atpvt41', 'no_lang_code', 1, 'https://ror.org/01atpvt41 Freshseal Limited (United Kingdom)'), (16095, 'https://ror.org/01avfcx41', 'en', 1, 'https://ror.org/01avfcx41 Wadsworth Public Library'), (16096, 'https://ror.org/01avta769', 'en', 1, 'https://ror.org/01avta769 Trinity Christian College'), (16097, 'https://ror.org/01avyb607', 'no_lang_code', 1, 'https://ror.org/01avyb607 Artibal (Spain)'), (16098, 'https://ror.org/01aygtt64', 'en', 1, 'https://ror.org/01aygtt64 New York Says Thank You Foundation'), (16099, 'https://ror.org/01b0dbj85', 'no_lang_code', 1, 'https://ror.org/01b0dbj85 Cascade Technologies (United Kingdom)'), (16100, 'https://ror.org/01b3cvv10', 'en', 1, 'https://ror.org/01b3cvv10 Archdiocese of St. Louis Archidiocèse Catholique de St. Louis'), (16101, 'https://ror.org/01b5g7e71', 'en', 1, 'https://ror.org/01b5g7e71 SAFE consortium'), (16102, 'https://ror.org/01bae3q52', 'no_lang_code', 1, 'https://ror.org/01bae3q52 Sanotron'), (16103, 'https://ror.org/01baeyq79', 'en', 1, 'https://ror.org/01baeyq79 William Alanson White Institute'), (16104, 'https://ror.org/01bag9d55', 'no_lang_code', 1, 'https://ror.org/01bag9d55 Fluigent (France)'), (16105, 'https://ror.org/01bedg124', 'en', 1, 'https://ror.org/01bedg124 Sinano Institute'), (16106, 'https://ror.org/01bj8gp17', 'en', 1, 'https://ror.org/01bj8gp17 Hudson River Museum'), (16107, 'https://ror.org/01bkjr271', 'no_lang_code', 1, 'https://ror.org/01bkjr271 Actigen (Norway)'), (16108, 'https://ror.org/01bmvyk77', 'no_lang_code', 1, 'https://ror.org/01bmvyk77 Chematur Engineering (Sweden)'), (16109, 'https://ror.org/01bqy5z80', 'no_lang_code', 1, 'https://ror.org/01bqy5z80 Sorrento Therapeutics (United States)'), (16110, 'https://ror.org/01brbem53', 'en', 1, 'https://ror.org/01brbem53 Ministry of Communications Science and Technology'), (16111, 'https://ror.org/01bre8q37', 'no_lang_code', 1, 'https://ror.org/01bre8q37 Geocontrol (Spain)'), (16112, 'https://ror.org/01bs5w571', 'en', 1, 'https://ror.org/01bs5w571 Council on Alcoholism and Drug Abuse'), (16113, 'https://ror.org/01bts4z81', 'no_lang_code', 1, 'https://ror.org/01bts4z81 Rhenovia (France)'), (16114, 'https://ror.org/01bwbj624', 'no_lang_code', 1, 'https://ror.org/01bwbj624 AMN Healthcare (United States)'), (16115, 'https://ror.org/01bwmqz48', 'en', 1, 'https://ror.org/01bwmqz48 One Earth Future Foundation'), (16116, 'https://ror.org/01bwmvz52', 'no_lang_code', 1, 'https://ror.org/01bwmvz52 Frantic Films (Canada)'), (16117, 'https://ror.org/01bws2668', 'no_lang_code', 1, 'https://ror.org/01bws2668 IGEA Clinical Biophysics (Italy)'), (16118, 'https://ror.org/01bx41534', 'no_lang_code', 1, 'https://ror.org/01bx41534 Quantum Applied Science and Research (United States)'), (16119, 'https://ror.org/01c1b9s34', 'en', 1, 'https://ror.org/01c1b9s34 ABCD'), (16120, 'https://ror.org/01c2kj137', 'en', 1, 'https://ror.org/01c2kj137 Agency for Electronic Communications'), (16121, 'https://ror.org/01c2q3444', 'en', 1, 'https://ror.org/01c2q3444 Tacoma Pierce County Health Department'), (16122, 'https://ror.org/01c2t8z64', 'en', 1, 'https://ror.org/01c2t8z64 Vector Physical Therapy & Aquatic Center'), (16123, 'https://ror.org/01c4kzn98', 'en', 1, 'https://ror.org/01c4kzn98 Westchester Putnam Council'), (16124, 'https://ror.org/01c4p0b96', 'no_lang_code', 1, 'https://ror.org/01c4p0b96 Global Digital Technologies (Greece)'), (16125, 'https://ror.org/01c5g1574', 'no_lang_code', 1, 'https://ror.org/01c5g1574 Lattanzio Group (Italy)'), (16126, 'https://ror.org/01c68s590', 'no_lang_code', 1, 'https://ror.org/01c68s590 InLight Solutions (United States)'), (16127, 'https://ror.org/01c6kab21', 'en', 1, 'https://ror.org/01c6kab21 South Suburban College'), (16128, 'https://ror.org/01c7at224', 'en', 1, 'https://ror.org/01c7at224 Riverstone Senior Life Services'), (16129, 'https://ror.org/01c9mdb24', 'en', 1, 'https://ror.org/01c9mdb24 Cleveland Hearing & Speech Center'), (16130, 'https://ror.org/01cakg179', 'no_lang_code', 1, 'https://ror.org/01cakg179 AGF Electronics (Italy)'), (16131, 'https://ror.org/01cc7y984', 'en', 1, 'https://ror.org/01cc7y984 Centre for Environmental Management and Decision Support'), (16132, 'https://ror.org/01cegwx30', 'no_lang_code', 1, 'https://ror.org/01cegwx30 HÉTFA Research Institute'), (16133, 'https://ror.org/01ceqc519', 'en', 1, 'https://ror.org/01ceqc519 United States Arctic Research Commission'), (16134, 'https://ror.org/01cjny980', 'no_lang_code', 1, 'https://ror.org/01cjny980 Berlitz (Germany)'), (16135, 'https://ror.org/01cn3f357', 'no_lang_code', 1, 'https://ror.org/01cn3f357 Visioncare Research'), (16136, 'https://ror.org/01cn9w853', 'no_lang_code', 1, 'https://ror.org/01cn9w853 FunderMax (Austria)'), (16137, 'https://ror.org/01cncfq91', 'no_lang_code', 1, 'https://ror.org/01cncfq91 Gerstel (Germany)'), (16138, 'https://ror.org/01cnprv20', 'en', 1, 'https://ror.org/01cnprv20 Institute for Management of Innovation and Technology'), (16139, 'https://ror.org/01cr6y145', 'en', 1, 'https://ror.org/01cr6y145 Toledo Lucas County Public Library'), (16140, 'https://ror.org/01ctnwa22', 'en', 1, 'https://ror.org/01ctnwa22 Health Resources in Action'), (16141, 'https://ror.org/01ctq0573', 'de', 1, 'https://ror.org/01ctq0573 Kulturrat Österreich'), (16142, 'https://ror.org/01cv22w67', 'no_lang_code', 1, 'https://ror.org/01cv22w67 IHI Corporation (United Kingdom)'), (16143, 'https://ror.org/01cvgrc03', 'fr', 1, 'https://ror.org/01cvgrc03 Hespul'), (16144, 'https://ror.org/01cwg0069', 'it', 1, 'https://ror.org/01cwg0069 Amitie'), (16145, 'https://ror.org/01cy78b58', 'en', 1, 'https://ror.org/01cy78b58 European Business Register'), (16146, 'https://ror.org/01d061936', 'en', 1, 'https://ror.org/01d061936 Central City Concern'), (16147, 'https://ror.org/01d28vn04', 'no_lang_code', 1, 'https://ror.org/01d28vn04 KiNNO'), (16148, 'https://ror.org/01d474d81', 'no_lang_code', 1, 'https://ror.org/01d474d81 Husqvarna (Belgium)'), (16149, 'https://ror.org/01d530j85', 'no_lang_code', 1, 'https://ror.org/01d530j85 Luceome Biotechnologies (United States)'), (16150, 'https://ror.org/01d735r83', 'no_lang_code', 1, 'https://ror.org/01d735r83 Vironika (United States)'), (16151, 'https://ror.org/01d84q841', 'no_lang_code', 1, 'https://ror.org/01d84q841 Eurohelp Consulting'), (16152, 'https://ror.org/01da5x211', 'en', 1, 'https://ror.org/01da5x211 Center for Economic Research and Environmental Strategy'), (16153, 'https://ror.org/01dcwcs90', 'no_lang_code', 1, 'https://ror.org/01dcwcs90 Emtele (Finland)'), (16154, 'https://ror.org/01dd27934', 'en', 1, 'https://ror.org/01dd27934 IN Financing & Project Management'), (16155, 'https://ror.org/01de6vt88', 'no_lang_code', 1, 'https://ror.org/01de6vt88 Chemetall (Germany)'), (16156, 'https://ror.org/01ded9f36', 'en', 1, 'https://ror.org/01ded9f36 British Transport Police'), (16157, 'https://ror.org/01df52k09', 'no_lang_code', 1, 'https://ror.org/01df52k09 Artaic (United States)'), (16158, 'https://ror.org/01djt4c90', 'no_lang_code', 1, 'https://ror.org/01djt4c90 Telefactor Robotics (United States)'), (16159, 'https://ror.org/01dkzd737', 'en', 1, 'https://ror.org/01dkzd737 Air France Consulting'), (16160, 'https://ror.org/01dm99568', 'ro', 1, 'https://ror.org/01dm99568 Institutul Geologic al României'), (16161, 'https://ror.org/01dmpb598', 'en', 1, 'https://ror.org/01dmpb598 Entertainment Industry Foundation'), (16162, 'https://ror.org/01dmz5y14', 'en', 1, 'https://ror.org/01dmz5y14 Colby–Sawyer College'), (16163, 'https://ror.org/01dp8dw79', 'en', 1, 'https://ror.org/01dp8dw79 Consortium of Academic and Research Libraries in Illinois'), (16164, 'https://ror.org/01dpfdz03', 'no_lang_code', 1, 'https://ror.org/01dpfdz03 CrossLang (Belgium)'), (16165, 'https://ror.org/01dpsf321', 'no_lang_code', 1, 'https://ror.org/01dpsf321 On Telecoms (Greece)'), (16166, 'https://ror.org/01ds3sh29', 'en', 1, 'https://ror.org/01ds3sh29 Children and Adults with Attention Deficit/Hyperactivity Disorder'), (16167, 'https://ror.org/01dxs6p42', 'en', 1, 'https://ror.org/01dxs6p42 European Migration Centre Europäisches Migrationszentrum'), (16168, 'https://ror.org/01dy8dt32', 'no_lang_code', 1, 'https://ror.org/01dy8dt32 Quantason (United States)'), (16169, 'https://ror.org/01dyrtb20', 'no_lang_code', 1, 'https://ror.org/01dyrtb20 Munich Re (United States)'), (16170, 'https://ror.org/01dz62b56', 'no_lang_code', 1, 'https://ror.org/01dz62b56 Innoprot (Spain)'), (16171, 'https://ror.org/01dz8hz75', 'en', 1, 'https://ror.org/01dz8hz75 American Geriatrics Society'), (16172, 'https://ror.org/01e09ge17', 'no_lang_code', 1, 'https://ror.org/01e09ge17 EasyCGI (United States)'), (16173, 'https://ror.org/01e0aj966', 'no_lang_code', 1, 'https://ror.org/01e0aj966 QRx Pharma (United States)'), (16174, 'https://ror.org/01e0wse52', 'de', 1, 'https://ror.org/01e0wse52 Bundesverband der deutschen Fischindustrie und des Fischgroßhandels'), (16175, 'https://ror.org/01e2ynf23', 'en', 1, 'https://ror.org/01e2ynf23 Women''s and Children''s Health Network'), (16176, 'https://ror.org/01e35h870', 'en', 1, 'https://ror.org/01e35h870 European Learning Industry Group'), (16177, 'https://ror.org/01e3a4n81', 'en', 1, 'https://ror.org/01e3a4n81 Buffalo Society of Natural Sciences'), (16178, 'https://ror.org/01e5vvr68', 'no_lang_code', 1, 'https://ror.org/01e5vvr68 Hämosan (Austria)'), (16179, 'https://ror.org/01e5x8t10', 'en', 1, 'https://ror.org/01e5x8t10 Vision Cooperative Research Centre'), (16180, 'https://ror.org/01e8nps30', 'en', 1, 'https://ror.org/01e8nps30 Spirituality For Kids International'), (16181, 'https://ror.org/01e8py533', 'en', 1, 'https://ror.org/01e8py533 Agrhymet Regional Centre'), (16182, 'https://ror.org/01ebn9j06', 'no_lang_code', 1, 'https://ror.org/01ebn9j06 Iren (Italy)'), (16183, 'https://ror.org/01eetqe63', 'en', 1, 'https://ror.org/01eetqe63 National Council for Gender Equality'), (16184, 'https://ror.org/01efjsc63', 'no_lang_code', 1, 'https://ror.org/01efjsc63 Codamotion (United Kingdom)'), (16185, 'https://ror.org/01egrn244', 'no_lang_code', 1, 'https://ror.org/01egrn244 Infrabel (Belgium)'), (16186, 'https://ror.org/01ejvy845', 'no_lang_code', 1, 'https://ror.org/01ejvy845 Edna Pasher Ph.D & Associates (Israel)'), (16187, 'https://ror.org/01ep4ry35', 'en', 1, 'https://ror.org/01ep4ry35 Madison County Historical Society'), (16188, 'https://ror.org/01eppzd87', 'no_lang_code', 1, 'https://ror.org/01eppzd87 LKSoftWare (Germany)'), (16189, 'https://ror.org/01eq4qj27', 'pt', 1, 'https://ror.org/01eq4qj27 Instituto do Emprego e Formação Profissional'), (16190, 'https://ror.org/01esber41', 'en', 1, 'https://ror.org/01esber41 Wuesthoff Health System'), (16191, 'https://ror.org/01et00j38', 'no_lang_code', 1, 'https://ror.org/01et00j38 Integrated Systems Incorporation (United States)'), (16192, 'https://ror.org/01f06p727', 'en', 1, 'https://ror.org/01f06p727 Survivorship A to Z'), (16193, 'https://ror.org/01f15gz68', 'no_lang_code', 1, 'https://ror.org/01f15gz68 GVS (United States)'), (16194, 'https://ror.org/01f2grr18', 'no_lang_code', 1, 'https://ror.org/01f2grr18 Elsyca (Belgium)'), (16195, 'https://ror.org/01f2td593', 'no_lang_code', 1, 'https://ror.org/01f2td593 Chiquita Brands International (United States)'), (16196, 'https://ror.org/01f2xyc88', 'no_lang_code', 1, 'https://ror.org/01f2xyc88 Vintage Capital Group (United States)'), (16197, 'https://ror.org/01f43e063', 'no_lang_code', 1, 'https://ror.org/01f43e063 Magneti Ljubljana (Slovenia)'), (16198, 'https://ror.org/01f5tnx94', 'en', 1, 'https://ror.org/01f5tnx94 Institute of Ionized Gas Istituto Gas Ionizzati'), (16199, 'https://ror.org/01f6f6n96', 'no_lang_code', 1, 'https://ror.org/01f6f6n96 Biochemtex (Italy)'), (16200, 'https://ror.org/01f6y4z59', 'en', 1, 'https://ror.org/01f6y4z59 Benjamin Franklin Institute of Technology'), (16201, 'https://ror.org/01f8pxc90', 'en', 1, 'https://ror.org/01f8pxc90 Eurogas'), (16202, 'https://ror.org/01f9fz831', 'no_lang_code', 1, 'https://ror.org/01f9fz831 Ingeniería y Soluciones Informáticas (Spain)'), (16203, 'https://ror.org/01f9j1315', 'no_lang_code', 1, 'https://ror.org/01f9j1315 Lymba (United States)'), (16204, 'https://ror.org/01fa9pv21', 'no_lang_code', 1, 'https://ror.org/01fa9pv21 Coretek (United States)'), (16205, 'https://ror.org/01fbtw415', 'no_lang_code', 1, 'https://ror.org/01fbtw415 Generation Biotech (United States)'), (16206, 'https://ror.org/01fdnyw87', 'en', 1, 'https://ror.org/01fdnyw87 M. Nodia Institute of Geophysics'), (16207, 'https://ror.org/01few5909', 'no_lang_code', 1, 'https://ror.org/01few5909 Barclays (United Kingdom)'), (16208, 'https://ror.org/01ffxpj85', 'no_lang_code', 1, 'https://ror.org/01ffxpj85 The Miracle Center (United States)'), (16209, 'https://ror.org/01fg04993', 'no_lang_code', 1, 'https://ror.org/01fg04993 ACS Biomarker (Netherlands)'), (16210, 'https://ror.org/01fhq9k82', 'no_lang_code', 1, 'https://ror.org/01fhq9k82 Daren Labs (Israel)'), (16211, 'https://ror.org/01fhvk277', 'no_lang_code', 1, 'https://ror.org/01fhvk277 Medical Engineering Innovations (United States)'), (16212, 'https://ror.org/01fjxvf67', 'en', 1, 'https://ror.org/01fjxvf67 Southwest Center for Chronic Disease'), (16213, 'https://ror.org/01fp7rv25', 'no_lang_code', 1, 'https://ror.org/01fp7rv25 Ingegneria dei Trasporti (Italy)'), (16214, 'https://ror.org/01fq88m19', 'en', 1, 'https://ror.org/01fq88m19 Missouri River Regional Library'), (16215, 'https://ror.org/01fqg5k81', 'en', 1, 'https://ror.org/01fqg5k81 BayCare Health System'), (16216, 'https://ror.org/01fr56s57', 'no_lang_code', 1, 'https://ror.org/01fr56s57 Curious Directive (United Kingdom)'), (16217, 'https://ror.org/01frxsf98', 'en', 1, 'https://ror.org/01frxsf98 Muscular Dystrophy Association'), (16218, 'https://ror.org/01fs5qc70', 'en', 1, 'https://ror.org/01fs5qc70 Tiburcio Vasquez Health Center'), (16219, 'https://ror.org/01fs6y727', 'no_lang_code', 1, 'https://ror.org/01fs6y727 Anvil Semiconductors (United Kingdom)'), (16220, 'https://ror.org/01fshr394', 'no_lang_code', 1, 'https://ror.org/01fshr394 Adarza BioSystems (United States)'), (16221, 'https://ror.org/01fsr6x28', 'no_lang_code', 1, 'https://ror.org/01fsr6x28 Frutarom (United Kingdom)'), (16222, 'https://ror.org/01fw88k98', 'en', 1, 'https://ror.org/01fw88k98 State of Connecticut Judicial Branch'), (16223, 'https://ror.org/01fwrew07', 'no_lang_code', 1, 'https://ror.org/01fwrew07 Starlab (United States)'), (16224, 'https://ror.org/01fxncn81', 'no_lang_code', 1, 'https://ror.org/01fxncn81 Aeristech (United Kingdom)'), (16225, 'https://ror.org/01fypyt73', 'no_lang_code', 1, 'https://ror.org/01fypyt73 Instrument Design Technology (United Kingdom)'), (16226, 'https://ror.org/01fzeeh76', 'no_lang_code', 1, 'https://ror.org/01fzeeh76 Artelys (France)'), (16227, 'https://ror.org/01g00ps54', 'no_lang_code', 1, 'https://ror.org/01g00ps54 Kraken Sonar (Canada)'), (16228, 'https://ror.org/01g022076', 'no_lang_code', 1, 'https://ror.org/01g022076 Therapure Biopharma (Canada)'), (16229, 'https://ror.org/01g0g4720', 'es', 1, 'https://ror.org/01g0g4720 Fondo de Acción Urgente América Latina y el Caribe Urgent Action Fund for Latin America and the Caribbean'), (16230, 'https://ror.org/01g1dn598', 'en', 1, 'https://ror.org/01g1dn598 Southwestern Michigan College'), (16231, 'https://ror.org/01g2kx755', 'en', 1, 'https://ror.org/01g2kx755 West Town Bikes'), (16232, 'https://ror.org/01g2p0822', 'en', 1, 'https://ror.org/01g2p0822 Hebrew Theological College'), (16233, 'https://ror.org/01g325629', 'en', 1, 'https://ror.org/01g325629 Aims Community College'), (16234, 'https://ror.org/01g44f369', 'no_lang_code', 1, 'https://ror.org/01g44f369 DynaVox (United States)'), (16235, 'https://ror.org/01g5qva43', 'en', 1, 'https://ror.org/01g5qva43 Cincinnati State Technical and Community College'), (16236, 'https://ror.org/01g853f75', 'en', 1, 'https://ror.org/01g853f75 Institute of Ion Plasma Laser Technologies'), (16237, 'https://ror.org/01g986079', 'no_lang_code', 1, 'https://ror.org/01g986079 Fresti (Portugal)'), (16238, 'https://ror.org/01g9rp025', 'en', 1, 'https://ror.org/01g9rp025 Austin Independent School District Distrito Escolar Independiente de Austin'), (16239, 'https://ror.org/01gc1ag70', 'en', 1, 'https://ror.org/01gc1ag70 Alcohol Drug Mental Health Board of Franklin County'), (16240, 'https://ror.org/01gd1dh27', 'fr', 1, 'https://ror.org/01gd1dh27 Laboratoire de Recherche des Monuments Historiques'), (16241, 'https://ror.org/01gf20981', 'en', 1, 'https://ror.org/01gf20981 Appalachian Regional Healthcare'), (16242, 'https://ror.org/01gf94c09', 'en', 1, 'https://ror.org/01gf94c09 Latina Center'), (16243, 'https://ror.org/01ghqfw43', 'no_lang_code', 1, 'https://ror.org/01ghqfw43 Coriant (Germany)'), (16244, 'https://ror.org/01gj24y87', 'en', 1, 'https://ror.org/01gj24y87 Ministrstvo za Kulturo Ministry of Culture'), (16245, 'https://ror.org/01gk96h18', 'no_lang_code', 1, 'https://ror.org/01gk96h18 GreatCell Solar (United Kingdom)'), (16246, 'https://ror.org/01gkd7j47', 'no_lang_code', 1, 'https://ror.org/01gkd7j47 Bio Molecular Technology (United States)'), (16247, 'https://ror.org/01gnp4591', 'en', 1, 'https://ror.org/01gnp4591 Institute of Chemical Engineering'), (16248, 'https://ror.org/01gq88837', 'no_lang_code', 1, 'https://ror.org/01gq88837 Hypertech (Greece)'), (16249, 'https://ror.org/01gqg0b82', 'no_lang_code', 1, 'https://ror.org/01gqg0b82 Ecobat Technologies (Germany)'), (16250, 'https://ror.org/01gqmxc42', 'en', 1, 'https://ror.org/01gqmxc42 Deutsche Angestellten-Gewerkschaft German Union of Salaried Employees'), (16251, 'https://ror.org/01gr48a54', 'en', 1, 'https://ror.org/01gr48a54 Alaska Marine Safety Education Association'), (16252, 'https://ror.org/01gzdh662', 'no_lang_code', 1, 'https://ror.org/01gzdh662 Hyperion (Ireland)'), (16253, 'https://ror.org/01h05fy77', 'no_lang_code', 1, 'https://ror.org/01h05fy77 ÅAC Microtec (Sweden)'), (16254, 'https://ror.org/01h3r2827', 'en', 1, 'https://ror.org/01h3r2827 Rhode Island Health Center Association'), (16255, 'https://ror.org/01h49hc89', 'en', 1, 'https://ror.org/01h49hc89 Normal Public Library'), (16256, 'https://ror.org/01h4hrx10', 'no_lang_code', 1, 'https://ror.org/01h4hrx10 Biocatalysts (United Kingdom)'), (16257, 'https://ror.org/01h5cth39', 'en', 1, 'https://ror.org/01h5cth39 Protestant Reformed Churches in America'), (16258, 'https://ror.org/01h6fqa13', 'no_lang_code', 1, 'https://ror.org/01h6fqa13 Axon Automotive (United Kingdom)'), (16259, 'https://ror.org/01h6t1j28', 'es', 1, 'https://ror.org/01h6t1j28 Centro de Referencia Estatal de Autonomía Personal y Ayudas Técnicas'), (16260, 'https://ror.org/01h8srv03', 'no_lang_code', 1, 'https://ror.org/01h8srv03 Fiji Systems (United States)'), (16261, 'https://ror.org/01h8xv021', 'no_lang_code', 1, 'https://ror.org/01h8xv021 Waters (United States)'), (16262, 'https://ror.org/01h9s9j69', 'no_lang_code', 1, 'https://ror.org/01h9s9j69 JRI Orthopaedics (United Kingdom)'), (16263, 'https://ror.org/01ha10g31', 'no_lang_code', 1, 'https://ror.org/01ha10g31 Cyprus Research and Innovation Center (Cyprus)'), (16264, 'https://ror.org/01hbh1z68', 'en', 1, 'https://ror.org/01hbh1z68 Sloan*Longway'), (16265, 'https://ror.org/01hdcyq69', 'no_lang_code', 1, 'https://ror.org/01hdcyq69 Meggitt (United Kingdom)'), (16266, 'https://ror.org/01hhf0c93', 'en', 1, 'https://ror.org/01hhf0c93 Consorzio Armatori per la Ricerca Italian Shipowners Research Consortium'), (16267, 'https://ror.org/01hmvx995', 'no_lang_code', 1, 'https://ror.org/01hmvx995 Hydrometeorological Innovative Solutions (Spain)'), (16268, 'https://ror.org/01hq5ez54', 'no_lang_code', 1, 'https://ror.org/01hq5ez54 Immuno-Mycologics'), (16269, 'https://ror.org/01hqrfw90', 'en', 1, 'https://ror.org/01hqrfw90 Waukesha County Technical College'), (16270, 'https://ror.org/01hrz5b21', 'en', 1, 'https://ror.org/01hrz5b21 Building Bridges'), (16271, 'https://ror.org/01hsff479', 'en', 1, 'https://ror.org/01hsff479 Kentucky Department of Education'), (16272, 'https://ror.org/01hxtdq06', 'en', 1, 'https://ror.org/01hxtdq06 Spertus Institute for Jewish Learning and Leadership'), (16273, 'https://ror.org/01hy2c330', 'en', 1, 'https://ror.org/01hy2c330 NS Kurnakova Institute of General and Inorganic Chemistry Федеральное государственное бюджетное учреждение науки Институт общей и неорганической химии им. Н.С. Курнакова Российской академии наук'), (16274, 'https://ror.org/01hzn9j62', 'no_lang_code', 1, 'https://ror.org/01hzn9j62 Applied Nanodetectors (United Kingdom)'), (16275, 'https://ror.org/01hzp2x54', 'no_lang_code', 1, 'https://ror.org/01hzp2x54 Amber Waves Software (United States)'), (16276, 'https://ror.org/01j1bxw34', 'no_lang_code', 1, 'https://ror.org/01j1bxw34 FIRA International (United Kingdom)'), (16277, 'https://ror.org/01j1n9y37', 'en', 1, 'https://ror.org/01j1n9y37 Ave Maria School of Law Escuela de Derecho Ave María'), (16278, 'https://ror.org/01j1ref86', 'en', 1, 'https://ror.org/01j1ref86 Gathering Place'), (16279, 'https://ror.org/01j262e40', 'no_lang_code', 1, 'https://ror.org/01j262e40 Mouchel (United Kingdom)'), (16280, 'https://ror.org/01j285b19', 'no_lang_code', 1, 'https://ror.org/01j285b19 AraVasc (United States)'), (16281, 'https://ror.org/01j3ge177', 'en', 1, 'https://ror.org/01j3ge177 Christus Santa Rosa Health System'), (16282, 'https://ror.org/01j45tp19', 'no_lang_code', 1, 'https://ror.org/01j45tp19 Joensuu Science Park'), (16283, 'https://ror.org/01j4wpj84', 'en', 1, 'https://ror.org/01j4wpj84 Health On The Net Foundation'), (16284, 'https://ror.org/01j65ny98', 'no_lang_code', 1, 'https://ror.org/01j65ny98 Acktar (Israel)'), (16285, 'https://ror.org/01j6w4907', 'en', 1, 'https://ror.org/01j6w4907 Biloxi Public Schools'), (16286, 'https://ror.org/01j73pp16', 'no_lang_code', 1, 'https://ror.org/01j73pp16 Leonardo Film (Germany)'), (16287, 'https://ror.org/01j7c2q87', 'no_lang_code', 1, 'https://ror.org/01j7c2q87 OnCore Biopharma (United States)'), (16288, 'https://ror.org/01j7ed328', 'en', 1, 'https://ror.org/01j7ed328 International Organization for Migration Internationale Organisation für Migration Organisation internationale pour les migrations Organizzazione Internazionale per le Migrazioni'), (16289, 'https://ror.org/01j93z975', 'no_lang_code', 1, 'https://ror.org/01j93z975 Azienda del Consorzio Trasporti Veneziano (Italy)'), (16290, 'https://ror.org/01jb23d14', 'no_lang_code', 1, 'https://ror.org/01jb23d14 IMS Maxims (Ireland)'), (16291, 'https://ror.org/01jbd8x32', 'en', 1, 'https://ror.org/01jbd8x32 Through the Looking Glass'), (16292, 'https://ror.org/01jbqg059', 'no_lang_code', 1, 'https://ror.org/01jbqg059 Enervana Technologies (United States)'), (16293, 'https://ror.org/01jbwxs60', 'no_lang_code', 1, 'https://ror.org/01jbwxs60 IBC Advanced Technologies (United States)'), (16294, 'https://ror.org/01jc57498', 'en', 1, 'https://ror.org/01jc57498 Retina Associates'), (16295, 'https://ror.org/01jcgc273', 'no_lang_code', 1, 'https://ror.org/01jcgc273 Advanced Coatings (Belgium)'), (16296, 'https://ror.org/01jfqyt17', 'no_lang_code', 1, 'https://ror.org/01jfqyt17 Danaos (Greece)'), (16297, 'https://ror.org/01jgjmr04', 'no_lang_code', 1, 'https://ror.org/01jgjmr04 Aurora Optics (United States)'), (16298, 'https://ror.org/01jkxsd71', 'no_lang_code', 1, 'https://ror.org/01jkxsd71 Dekati (Finland)'), (16299, 'https://ror.org/01jq16575', 'en', 1, 'https://ror.org/01jq16575 Agence fédérale de contrôle nucléaire Federaal Agentschap voor Nucleaire Controle Federal Agency for Nuclear Control'), (16300, 'https://ror.org/01jq6p072', 'en', 1, 'https://ror.org/01jq6p072 Turnstone'), (16301, 'https://ror.org/01jr3js48', 'en', 1, 'https://ror.org/01jr3js48 Texas Partnership for End-of-Life Care'), (16302, 'https://ror.org/01jt99c87', 'no_lang_code', 1, 'https://ror.org/01jt99c87 Clevercherry (United Kingdom)'), (16303, 'https://ror.org/01jtkws96', 'no_lang_code', 1, 'https://ror.org/01jtkws96 Biographics (United States)'), (16304, 'https://ror.org/01jtsd542', 'en', 1, 'https://ror.org/01jtsd542 Mount Vernon Nazarene University'), (16305, 'https://ror.org/01k08ez36', 'en', 1, 'https://ror.org/01k08ez36 Wilmington College'), (16306, 'https://ror.org/01k2x9g80', 'en', 1, 'https://ror.org/01k2x9g80 Saint Joseph''s College'), (16307, 'https://ror.org/01k2z4a60', 'en', 1, 'https://ror.org/01k2z4a60 Studebaker National Museum'), (16308, 'https://ror.org/01k4bzh19', 'no_lang_code', 1, 'https://ror.org/01k4bzh19 Arjowiggins (United Kingdom)'), (16309, 'https://ror.org/01k6asa13', 'no_lang_code', 1, 'https://ror.org/01k6asa13 Bactest (United Kingdom)'), (16310, 'https://ror.org/01k6b8252', 'no_lang_code', 1, 'https://ror.org/01k6b8252 Container Finance (Finland)'), (16311, 'https://ror.org/01k7x8h55', 'it', 1, 'https://ror.org/01k7x8h55 Centro Europa Ricerche'), (16312, 'https://ror.org/01k8bzw08', 'no_lang_code', 1, 'https://ror.org/01k8bzw08 Genalyte (United States)'), (16313, 'https://ror.org/01kah5w88', 'en', 1, 'https://ror.org/01kah5w88 Realistic Education in Action Coalition to Foster Health'), (16314, 'https://ror.org/01kaqt385', 'en', 1, 'https://ror.org/01kaqt385 WellStar Health System'), (16315, 'https://ror.org/01kb5gr72', 'no_lang_code', 1, 'https://ror.org/01kb5gr72 Animal Monday (United Kingdom)'), (16316, 'https://ror.org/01kcks752', 'en', 1, 'https://ror.org/01kcks752 Institute for Medical BioMathematics'), (16317, 'https://ror.org/01kd78z21', 'no_lang_code', 1, 'https://ror.org/01kd78z21 01 Pliroforiki (Greece)'), (16318, 'https://ror.org/01ke24198', 'no_lang_code', 1, 'https://ror.org/01ke24198 EUrelations (Switzerland)'), (16319, 'https://ror.org/01keyq725', 'en', 1, 'https://ror.org/01keyq725 Helicon Foundation'), (16320, 'https://ror.org/01khv4e51', 'en', 1, 'https://ror.org/01khv4e51 Wayne Country Day School'), (16321, 'https://ror.org/01kkwkn88', 'en', 1, 'https://ror.org/01kkwkn88 Thai Health And Information Services'), (16322, 'https://ror.org/01kmkkm51', 'fr', 1, 'https://ror.org/01kmkkm51 Chambre de Commerce et d''Industrie Occitanie Pyrénées-Méditerranée'), (16323, 'https://ror.org/01kq87685', 'no_lang_code', 1, 'https://ror.org/01kq87685 Electricidade dos Açores (Portugal)'), (16324, 'https://ror.org/01kqydj80', 'es', 1, 'https://ror.org/01kqydj80 Fundación para el Desarrollo de la Función Social de las Comunicaciones'), (16325, 'https://ror.org/01kr2nz80', 'en', 1, 'https://ror.org/01kr2nz80 Canterbury Medical Research Foundation'), (16326, 'https://ror.org/01kra6c87', 'en', 1, 'https://ror.org/01kra6c87 Cedarburg Public Library'), (16327, 'https://ror.org/01kratx56', 'de', 1, 'https://ror.org/01kratx56 Federal Statistical Office Statistisches Bundesamt'), (16328, 'https://ror.org/01krfz017', 'en', 1, 'https://ror.org/01krfz017 Engage'), (16329, 'https://ror.org/01kss4073', 'en', 1, 'https://ror.org/01kss4073 Alamo Area Council of Governments'), (16330, 'https://ror.org/01kswen19', 'fr', 1, 'https://ror.org/01kswen19 Fédération Nationale des Centres d''Initiatives pour Valoriser l’Agriculture et le Milieu Rural'), (16331, 'https://ror.org/01ktsgp73', 'en', 1, 'https://ror.org/01ktsgp73 Hospice Savannah'), (16332, 'https://ror.org/01ktvk109', 'en', 1, 'https://ror.org/01ktvk109 Peru Public Library'), (16333, 'https://ror.org/01kv9ne32', 'no_lang_code', 1, 'https://ror.org/01kv9ne32 Geostock (France)'), (16334, 'https://ror.org/01kwgtf21', 'en', 1, 'https://ror.org/01kwgtf21 Helena Public School District'), (16335, 'https://ror.org/01m08j794', 'no_lang_code', 1, 'https://ror.org/01m08j794 Lürssen (Germany)'), (16336, 'https://ror.org/01m12v471', 'no_lang_code', 1, 'https://ror.org/01m12v471 Ambient Systems (Netherlands)'), (16337, 'https://ror.org/01m1ems94', 'en', 1, 'https://ror.org/01m1ems94 Sector Skills Council for Science, Engineering and Manufacturing Technologies'), (16338, 'https://ror.org/01m29p162', 'no_lang_code', 1, 'https://ror.org/01m29p162 Median SCP (Spain)'), (16339, 'https://ror.org/01m2sr579', 'fr', 1, 'https://ror.org/01m2sr579 Ministère de la Santé'), (16340, 'https://ror.org/01m418p31', 'no_lang_code', 1, 'https://ror.org/01m418p31 Schmolz Bickenbach (Germany)'), (16341, 'https://ror.org/01m58p389', 'en', 1, 'https://ror.org/01m58p389 Washington County Schools'), (16342, 'https://ror.org/01m6mfc08', 'fr', 1, 'https://ror.org/01m6mfc08 Fondation Mérieux'), (16343, 'https://ror.org/01m7s5539', 'no_lang_code', 1, 'https://ror.org/01m7s5539 Altoris (United States)'), (16344, 'https://ror.org/01maah330', 'no_lang_code', 1, 'https://ror.org/01maah330 Intrinsic LifeSciences (United States)'), (16345, 'https://ror.org/01md11a61', 'no_lang_code', 1, 'https://ror.org/01md11a61 Kleinewefers Kunststoffanlagen (Germany)'), (16346, 'https://ror.org/01mde0021', 'no_lang_code', 1, 'https://ror.org/01mde0021 Cellectis (United States)'), (16347, 'https://ror.org/01me3dp58', 'no_lang_code', 1, 'https://ror.org/01me3dp58 Knowledge Now (United Kingdom)'), (16348, 'https://ror.org/01mf3rs17', 'no_lang_code', 1, 'https://ror.org/01mf3rs17 Geoloc Systems (France)'), (16349, 'https://ror.org/01mge3v08', 'no_lang_code', 1, 'https://ror.org/01mge3v08 Capgemini (United States)'), (16350, 'https://ror.org/01mmrtt85', 'no_lang_code', 1, 'https://ror.org/01mmrtt85 Groenholland (Netherlands)'), (16351, 'https://ror.org/01mqtae40', 'en', 1, 'https://ror.org/01mqtae40 Vista Community Clinic'), (16352, 'https://ror.org/01msce522', 'en', 1, 'https://ror.org/01msce522 Contractor UK'), (16353, 'https://ror.org/01mscn238', 'no_lang_code', 1, 'https://ror.org/01mscn238 GeneCopoeia (United States)'), (16354, 'https://ror.org/01mt5jq93', 'en', 1, 'https://ror.org/01mt5jq93 Association Libanaise pour la Maitrise de l’Energie et pour l’Environnement Lebanese Association for Energy Saving & for Environment'), (16355, 'https://ror.org/01mw2b749', 'no_lang_code', 1, 'https://ror.org/01mw2b749 Dassault Systèmes (Germany)'), (16356, 'https://ror.org/01mwm5w71', 'en', 1, 'https://ror.org/01mwm5w71 Centre Européen de Géodynamique et de Séismologie European Center for Geodynamics and Seismology'), (16357, 'https://ror.org/01mwzyk87', 'en', 1, 'https://ror.org/01mwzyk87 People Living Through Cancer'), (16358, 'https://ror.org/01mx9ck98', 'no_lang_code', 1, 'https://ror.org/01mx9ck98 Dotsoft (Greece)'), (16359, 'https://ror.org/01mxhss58', 'en', 1, 'https://ror.org/01mxhss58 eTraining Technology Academy'), (16360, 'https://ror.org/01mz29f88', 'en', 1, 'https://ror.org/01mz29f88 Pasadera Behavioral Health Network'), (16361, 'https://ror.org/01n04jf21', 'no_lang_code', 1, 'https://ror.org/01n04jf21 EagleBurgmann (Germany)'), (16362, 'https://ror.org/01n08tj51', 'pt', 1, 'https://ror.org/01n08tj51 Instituto da Conservação da Natureza e das Florestas'), (16363, 'https://ror.org/01n3jdx02', 'no_lang_code', 1, 'https://ror.org/01n3jdx02 Dr. Hönle (Germany)'), (16364, 'https://ror.org/01n3jtg54', 'en', 1, 'https://ror.org/01n3jtg54 Silicon Valley Independent Living Center'), (16365, 'https://ror.org/01n5p4z29', 'no_lang_code', 1, 'https://ror.org/01n5p4z29 Stantec (United States)'), (16366, 'https://ror.org/01n5pkr65', 'no_lang_code', 1, 'https://ror.org/01n5pkr65 Qualidigm (United States)'), (16367, 'https://ror.org/01n6jnf20', 'no_lang_code', 1, 'https://ror.org/01n6jnf20 Eminent Services Corporation (United States)'), (16368, 'https://ror.org/01n7rsn58', 'en', 1, 'https://ror.org/01n7rsn58 Association des Constructeurs Européens d''Automobiles European Automobile Manufacturers Association'), (16369, 'https://ror.org/01nb9ks67', 'no_lang_code', 1, 'https://ror.org/01nb9ks67 Itasca Consultants (France)'), (16370, 'https://ror.org/01nc8r848', 'no_lang_code', 1, 'https://ror.org/01nc8r848 Scribd (United States)'), (16371, 'https://ror.org/01ndzp278', 'en', 1, 'https://ror.org/01ndzp278 Cleveland Heights University Heights Public Library'), (16372, 'https://ror.org/01ne9en42', 'no_lang_code', 1, 'https://ror.org/01ne9en42 Deutsches Institut für Feuerfest und Keramik'), (16373, 'https://ror.org/01nef6p29', 'no_lang_code', 1, 'https://ror.org/01nef6p29 Gale & Snowden Architects (United Kingdom)'), (16374, 'https://ror.org/01nehxb52', 'no_lang_code', 1, 'https://ror.org/01nehxb52 Etma (Greece)'), (16375, 'https://ror.org/01nfdb672', 'no_lang_code', 1, 'https://ror.org/01nfdb672 IBK (Germany)'), (16376, 'https://ror.org/01nfeyj87', 'en', 1, 'https://ror.org/01nfeyj87 Cornerstone University'), (16377, 'https://ror.org/01ngcpv42', 'no_lang_code', 1, 'https://ror.org/01ngcpv42 Health Care Service Corporation'), (16378, 'https://ror.org/01nknep14', 'en', 1, 'https://ror.org/01nknep14 WellSpan Health'), (16379, 'https://ror.org/01nm0pb19', 'en', 1, 'https://ror.org/01nm0pb19 Judson University'), (16380, 'https://ror.org/01nms9j09', 'no_lang_code', 1, 'https://ror.org/01nms9j09 Alpes Lasers (Switzerland)'), (16381, 'https://ror.org/01nn2x953', 'en', 1, 'https://ror.org/01nn2x953 Industrial Association Yarns Fabric Technical Textiles Industry'), (16382, 'https://ror.org/01nnq1w58', 'no_lang_code', 1, 'https://ror.org/01nnq1w58 AvantiCell Science (United Kingdom)'), (16383, 'https://ror.org/01np7wb66', 'en', 1, 'https://ror.org/01np7wb66 White Oak Library District'), (16384, 'https://ror.org/01nqk4x38', 'en', 1, 'https://ror.org/01nqk4x38 National Defense University Universidad Nacional de Defensa'), (16385, 'https://ror.org/01nsd9919', 'no_lang_code', 1, 'https://ror.org/01nsd9919 ImmuVen (United States)'), (16386, 'https://ror.org/01nv7r365', 'no_lang_code', 1, 'https://ror.org/01nv7r365 Constructive Thinking Studio (United Kingdom)'), (16387, 'https://ror.org/01nw59437', 'en', 1, 'https://ror.org/01nw59437 Louth County Council'), (16388, 'https://ror.org/01nww6879', 'en', 1, 'https://ror.org/01nww6879 Waukesha County Museum'), (16389, 'https://ror.org/01nxbg690', 'no_lang_code', 1, 'https://ror.org/01nxbg690 Human Solutions (Germany)'), (16390, 'https://ror.org/01nyd3116', 'no_lang_code', 1, 'https://ror.org/01nyd3116 Hysytech (Italy)'), (16391, 'https://ror.org/01nzc6q72', 'no_lang_code', 1, 'https://ror.org/01nzc6q72 Trento RISE (Italy)'), (16392, 'https://ror.org/01p1jgk06', 'no_lang_code', 1, 'https://ror.org/01p1jgk06 Mecos Traxler (Switzerland)'), (16393, 'https://ror.org/01p35xr84', 'no_lang_code', 1, 'https://ror.org/01p35xr84 Fabes Forschungs (Germany)'), (16394, 'https://ror.org/01p3fa845', 'en', 1, 'https://ror.org/01p3fa845 Laucks Foundation'), (16395, 'https://ror.org/01p3wmk50', 'en', 1, 'https://ror.org/01p3wmk50 College of Saint Mary'), (16396, 'https://ror.org/01p3zag48', 'no_lang_code', 1, 'https://ror.org/01p3zag48 Aker (United Kingdom)'), (16397, 'https://ror.org/01p7pw236', 'no_lang_code', 1, 'https://ror.org/01p7pw236 Gamax (Hungary)'), (16398, 'https://ror.org/01pb5g963', 'en', 1, 'https://ror.org/01pb5g963 Xenobe Research Institute'), (16399, 'https://ror.org/01pdcqg90', 'no_lang_code', 1, 'https://ror.org/01pdcqg90 Composite Integration (United Kingdom)'), (16400, 'https://ror.org/01pe3b474', 'no_lang_code', 1, 'https://ror.org/01pe3b474 Global Maritime Services (United Kingdom)'), (16401, 'https://ror.org/01pfrv343', 'en', 1, 'https://ror.org/01pfrv343 Ministry of the Interior İçişleri Bakanlığı'), (16402, 'https://ror.org/01pghxv94', 'no_lang_code', 1, 'https://ror.org/01pghxv94 Celsense (United States)'), (16403, 'https://ror.org/01pk3tm20', 'no_lang_code', 1, 'https://ror.org/01pk3tm20 Kommunedata (Denmark)'), (16404, 'https://ror.org/01pmvz131', 'no_lang_code', 1, 'https://ror.org/01pmvz131 Eli Lilly (Germany)'), (16405, 'https://ror.org/01ppcf422', 'no_lang_code', 1, 'https://ror.org/01ppcf422 3D Glass Solutions (United States)'), (16406, 'https://ror.org/01pqc3561', 'en', 1, 'https://ror.org/01pqc3561 American Academy of Child and Adolescent Psychiatry'), (16407, 'https://ror.org/01pqwyc94', 'en', 1, 'https://ror.org/01pqwyc94 Danish Film Institute'), (16408, 'https://ror.org/01pr67x49', 'no_lang_code', 1, 'https://ror.org/01pr67x49 Arvia Technology (United Kingdom)'), (16409, 'https://ror.org/01prj3807', 'no_lang_code', 1, 'https://ror.org/01prj3807 Invenio Imaging (United States)'), (16410, 'https://ror.org/01prxxc82', 'it', 1, 'https://ror.org/01prxxc82 Lega Italiana Protezione Uccelli'), (16411, 'https://ror.org/01ptfqt82', 'no_lang_code', 1, 'https://ror.org/01ptfqt82 Lassila & Tikanoja (Finland)'), (16412, 'https://ror.org/01pv48e96', 'en', 1, 'https://ror.org/01pv48e96 Forschungszentrum für Medizintechnik und Biotechnologie Research Centre of Medical Technology and Biotechnology'), (16413, 'https://ror.org/01pv4sc22', 'no_lang_code', 1, 'https://ror.org/01pv4sc22 KSE (United States)'), (16414, 'https://ror.org/01pw3xa54', 'en', 1, 'https://ror.org/01pw3xa54 Greater Manchester Combined Authority'), (16415, 'https://ror.org/01q219r58', 'en', 1, 'https://ror.org/01q219r58 Tennessee Justice Center'), (16416, 'https://ror.org/01q222b25', 'en', 1, 'https://ror.org/01q222b25 Esther A. & Joseph Klingenstein Fund'), (16417, 'https://ror.org/01q25wj29', 'en', 1, 'https://ror.org/01q25wj29 Georgia Mental Health Consumer Network'), (16418, 'https://ror.org/01q283t76', 'no_lang_code', 1, 'https://ror.org/01q283t76 Atoutveille (France)'), (16419, 'https://ror.org/01q2zc414', 'ro', 1, 'https://ror.org/01q2zc414 Institutul de Bioresurse Alimentare'), (16420, 'https://ror.org/01q3fkf15', 'no_lang_code', 1, 'https://ror.org/01q3fkf15 Arccore (Sweden)'), (16421, 'https://ror.org/01q3gg283', 'no_lang_code', 1, 'https://ror.org/01q3gg283 BS Rotor Technic (United Kingdom)'), (16422, 'https://ror.org/01q44vc25', 'no_lang_code', 1, 'https://ror.org/01q44vc25 Kenaf Eco Fibers Italia (Italy)'), (16423, 'https://ror.org/01q527f83', 'en', 1, 'https://ror.org/01q527f83 Kozloduy Nuclear Power Plant'), (16424, 'https://ror.org/01q54vk58', 'no_lang_code', 1, 'https://ror.org/01q54vk58 ITRB (Cyprus)'), (16425, 'https://ror.org/01q5ara80', 'pt', 1, 'https://ror.org/01q5ara80 Câmara Municipal do Porto'), (16426, 'https://ror.org/01q5wx109', 'no_lang_code', 1, 'https://ror.org/01q5wx109 IVV Automação (Portugal)'), (16427, 'https://ror.org/01q65bj34', 'en', 1, 'https://ror.org/01q65bj34 European Association for Battery Hybrid and Fuel Cell Electric Vehicles'), (16428, 'https://ror.org/01q6bfj36', 'en', 1, 'https://ror.org/01q6bfj36 Blue Springs Historical Society'), (16429, 'https://ror.org/01q781422', 'no_lang_code', 1, 'https://ror.org/01q781422 Atomising Systems (United Kingdom)'), (16430, 'https://ror.org/01q7jq182', 'ro', 1, 'https://ror.org/01q7jq182 Executive Unit for Financing Higher Education, Research, Development and Innovation Unitatea Executiva Pentru Finantarea Invatamantului Superior a Cercetarii Dezvoltarii si Inovarii'), (16431, 'https://ror.org/01q87er94', 'no_lang_code', 1, 'https://ror.org/01q87er94 Horton Levi (United Kingdom)'), (16432, 'https://ror.org/01qa19b44', 'no_lang_code', 1, 'https://ror.org/01qa19b44 Mars (United Kingdom)'), (16433, 'https://ror.org/01qa8rm62', 'es', 1, 'https://ror.org/01qa8rm62 Aspapel'), (16434, 'https://ror.org/01qbkdg81', 'en', 1, 'https://ror.org/01qbkdg81 Rogerson Communities'), (16435, 'https://ror.org/01qckg962', 'no_lang_code', 1, 'https://ror.org/01qckg962 Conference Management Services'), (16436, 'https://ror.org/01qd58v91', 'en', 1, 'https://ror.org/01qd58v91 Baylor School'), (16437, 'https://ror.org/01qdw1f80', 'no_lang_code', 1, 'https://ror.org/01qdw1f80 GeneSearch (United States)'), (16438, 'https://ror.org/01qek4j34', 'fr', 1, 'https://ror.org/01qek4j34 Ministre de la Santé, de la Population et de la Réforme Hospitalière, Ministère de la Santé'), (16439, 'https://ror.org/01qhxpv22', 'no_lang_code', 1, 'https://ror.org/01qhxpv22 Chalklabs (United States)'), (16440, 'https://ror.org/01qjh7r74', 'no_lang_code', 1, 'https://ror.org/01qjh7r74 Adva Optical Networking (Poland)'), (16441, 'https://ror.org/01qke2p33', 'no_lang_code', 1, 'https://ror.org/01qke2p33 Deliverics (United Kingdom)'), (16442, 'https://ror.org/01qrny815', 'en', 1, 'https://ror.org/01qrny815 International Chemical Workers Union'), (16443, 'https://ror.org/01qsj6b37', 'en', 1, 'https://ror.org/01qsj6b37 Hugo''s Restaurant'), (16444, 'https://ror.org/01qts9y67', 'en', 1, 'https://ror.org/01qts9y67 Best Answer for Cancer Foundation'), (16445, 'https://ror.org/01qv13213', 'en', 1, 'https://ror.org/01qv13213 World Science Festival'), (16446, 'https://ror.org/01qwxyq54', 'en', 1, 'https://ror.org/01qwxyq54 Marinette County Libraries'), (16447, 'https://ror.org/01qxk5g75', 'no_lang_code', 1, 'https://ror.org/01qxk5g75 Medknow (India)'), (16448, 'https://ror.org/01qzakp85', 'no_lang_code', 1, 'https://ror.org/01qzakp85 Boart Longyear (United States)'), (16449, 'https://ror.org/01qznp021', 'no_lang_code', 1, 'https://ror.org/01qznp021 CapSenze (Sweden)'), (16450, 'https://ror.org/01r14tp08', 'no_lang_code', 1, 'https://ror.org/01r14tp08 Ovako (Finland)'), (16451, 'https://ror.org/01r2man76', 'en', 1, 'https://ror.org/01r2man76 DeKalb County Board of Health'), (16452, 'https://ror.org/01r3dw569', 'en', 1, 'https://ror.org/01r3dw569 Prevea Health'), (16453, 'https://ror.org/01r678s56', 'en', 1, 'https://ror.org/01r678s56 Wisconsin Indianhead Technical College'), (16454, 'https://ror.org/01r6w7s48', 'en', 1, 'https://ror.org/01r6w7s48 Association of Environmental Health Academic Programs'), (16455, 'https://ror.org/01r8nn991', 'no_lang_code', 1, 'https://ror.org/01r8nn991 Biobyte Solutions (Germany)'), (16456, 'https://ror.org/01ra40f04', 'en', 1, 'https://ror.org/01ra40f04 Veteran Homestead'), (16457, 'https://ror.org/01rb58919', 'no_lang_code', 1, 'https://ror.org/01rb58919 Ionic (United States)'), (16458, 'https://ror.org/01rbzk889', 'no_lang_code', 1, 'https://ror.org/01rbzk889 Bio-K+ International (Canada)'), (16459, 'https://ror.org/01ren5s60', 'no_lang_code', 1, 'https://ror.org/01ren5s60 Gold Biotechnology (United States)'), (16460, 'https://ror.org/01rgajx11', 'en', 1, 'https://ror.org/01rgajx11 Families Together in New York State'), (16461, 'https://ror.org/01rh7dh97', 'no_lang_code', 1, 'https://ror.org/01rh7dh97 Amethyst Technologies (United States)'), (16462, 'https://ror.org/01rhrdz17', 'no_lang_code', 1, 'https://ror.org/01rhrdz17 InfraTec (Germany)'), (16463, 'https://ror.org/01rhsna23', 'en', 1, 'https://ror.org/01rhsna23 European Tyre Recycling Association'), (16464, 'https://ror.org/01rjjd360', 'no_lang_code', 1, 'https://ror.org/01rjjd360 KalVista Pharmaceuticals (United States)'), (16465, 'https://ror.org/01rpj9v06', 'en', 1, 'https://ror.org/01rpj9v06 Albany Stratton VA Medical Center Albany'), (16466, 'https://ror.org/01rqa6755', 'en', 1, 'https://ror.org/01rqa6755 American Federation of Teachers'), (16467, 'https://ror.org/01rqrfd09', 'en', 1, 'https://ror.org/01rqrfd09 Illinois Railway Museum'), (16468, 'https://ror.org/01rqt6394', 'en', 1, 'https://ror.org/01rqt6394 Arkansas Science & Technology'), (16469, 'https://ror.org/01rr6k888', 'en', 1, 'https://ror.org/01rr6k888 Comité de Liaison Européen des fabricants d''équipements et de Pièces Automobiles European Association of Automotive Suppliers'), (16470, 'https://ror.org/01rr96195', 'en', 1, 'https://ror.org/01rr96195 Genesee/Orleans Council on Alcoholism and Substance Abuse'), (16471, 'https://ror.org/01rt4qf18', 'en', 1, 'https://ror.org/01rt4qf18 Abbotsford Veterinary Clinic'), (16472, 'https://ror.org/01rtxd659', 'no_lang_code', 1, 'https://ror.org/01rtxd659 Moog (Netherlands)'), (16473, 'https://ror.org/01rvyy374', 'en', 1, 'https://ror.org/01rvyy374 Majandus- ja Kommunikatsiooniministeerium Ministry of Economic Affairs and Communications'), (16474, 'https://ror.org/01rxaf991', 'en', 1, 'https://ror.org/01rxaf991 Zhejiang Police College 浙江警察学院'); INSERT INTO `rors` VALUES (16475, 'https://ror.org/01s0wyf50', 'en', 1, 'https://ror.org/01s0wyf50 Computer Network Information Center 计算机网络信息中心'), (16476, 'https://ror.org/01s2j5a22', 'no_lang_code', 1, 'https://ror.org/01s2j5a22 Hyundai Motors (Germany)'), (16477, 'https://ror.org/01s2ng935', 'no_lang_code', 1, 'https://ror.org/01s2ng935 BioSensics (United States)'), (16478, 'https://ror.org/01s3s2b03', 'es', 1, 'https://ror.org/01s3s2b03 Instituto de Fomento de la Región de Murcia'), (16479, 'https://ror.org/01s3w4134', 'no_lang_code', 1, 'https://ror.org/01s3w4134 IGI Technologies (United States)'), (16480, 'https://ror.org/01s50yf06', 'en', 1, 'https://ror.org/01s50yf06 Society for Biomedical Diabetes Research'), (16481, 'https://ror.org/01s676r39', 'en', 1, 'https://ror.org/01s676r39 Hellenic Federation of Enterprises'), (16482, 'https://ror.org/01s6ka014', 'no_lang_code', 1, 'https://ror.org/01s6ka014 AlphaLabs (France)'), (16483, 'https://ror.org/01s6z0f52', 'en', 1, 'https://ror.org/01s6z0f52 Catholic Theological Union'), (16484, 'https://ror.org/01s9da178', 'no_lang_code', 1, 'https://ror.org/01s9da178 Iznab (Poland)'), (16485, 'https://ror.org/01s9r5913', 'no_lang_code', 1, 'https://ror.org/01s9r5913 Carte Blanche Conseil'), (16486, 'https://ror.org/01se7j361', 'no_lang_code', 1, 'https://ror.org/01se7j361 nLIGHT (United States)'), (16487, 'https://ror.org/01sfgr903', 'no_lang_code', 1, 'https://ror.org/01sfgr903 Mediri (Germany)'), (16488, 'https://ror.org/01sfj3073', 'no_lang_code', 1, 'https://ror.org/01sfj3073 Cyberlightning (Finland)'), (16489, 'https://ror.org/01sj5nb95', 'no_lang_code', 1, 'https://ror.org/01sj5nb95 Inova Pro (Czechia)'), (16490, 'https://ror.org/01sjyrz62', 'en', 1, 'https://ror.org/01sjyrz62 Hull City Council'), (16491, 'https://ror.org/01skhtc50', 'no_lang_code', 1, 'https://ror.org/01skhtc50 Hummingbird Diagnostics (Germany)'), (16492, 'https://ror.org/01sm3jy79', 'no_lang_code', 1, 'https://ror.org/01sm3jy79 Health Technomics (United States)'), (16493, 'https://ror.org/01sm75b57', 'en', 1, 'https://ror.org/01sm75b57 Schwab Rehabilitation Hospital'), (16494, 'https://ror.org/01srz8p41', 'no_lang_code', 1, 'https://ror.org/01srz8p41 DRVision Technologies (United States)'), (16495, 'https://ror.org/01ssr1j70', 'no_lang_code', 1, 'https://ror.org/01ssr1j70 In Silico Toxicology (Switzerland)'), (16496, 'https://ror.org/01svjmt78', 'no_lang_code', 1, 'https://ror.org/01svjmt78 McCann Associates (United States)'), (16497, 'https://ror.org/01sw63p34', 'en', 1, 'https://ror.org/01sw63p34 Energy Agency of Plovdiv'), (16498, 'https://ror.org/01sxbnv57', 'no_lang_code', 1, 'https://ror.org/01sxbnv57 RealNetworks (Canada)'), (16499, 'https://ror.org/01syxq867', 'en', 1, 'https://ror.org/01syxq867 William Thomas Grant Foundation'), (16500, 'https://ror.org/01t2c1t51', 'no_lang_code', 1, 'https://ror.org/01t2c1t51 FemtoScale (United States)'), (16501, 'https://ror.org/01t7cnb95', 'en', 1, 'https://ror.org/01t7cnb95 Institute of Water Modelling'), (16502, 'https://ror.org/01t9act85', 'en', 1, 'https://ror.org/01t9act85 Susan B Allen Memorial Hospital'), (16503, 'https://ror.org/01temjw93', 'en', 1, 'https://ror.org/01temjw93 Healthy Northeast Pennsylvania Initiative'), (16504, 'https://ror.org/01tgr6n47', 'en', 1, 'https://ror.org/01tgr6n47 AIDS Resource Center of Wisconsin'), (16505, 'https://ror.org/01tjh5r18', 'en', 1, 'https://ror.org/01tjh5r18 Children''s Council'), (16506, 'https://ror.org/01tjxaw07', 'no_lang_code', 1, 'https://ror.org/01tjxaw07 Colorex Master Batch (Netherlands)'), (16507, 'https://ror.org/01tk40402', 'en', 1, 'https://ror.org/01tk40402 Federation of Families of South Carolina'), (16508, 'https://ror.org/01tpms519', 'no_lang_code', 1, 'https://ror.org/01tpms519 Cad Modelling Ergonomics (Italy)'), (16509, 'https://ror.org/01tpw6659', 'en', 1, 'https://ror.org/01tpw6659 Hocking College'), (16510, 'https://ror.org/01tqv6s24', 'en', 1, 'https://ror.org/01tqv6s24 Docklands Light Railway'), (16511, 'https://ror.org/01tr8yj97', 'en', 1, 'https://ror.org/01tr8yj97 Aurora Public Library'), (16512, 'https://ror.org/01trbq046', 'en', 1, 'https://ror.org/01trbq046 German Research School for Simulation Sciences'), (16513, 'https://ror.org/01ts0we02', 'no_lang_code', 1, 'https://ror.org/01ts0we02 Walmart (United Kingdom)'), (16514, 'https://ror.org/01tt73103', 'no_lang_code', 1, 'https://ror.org/01tt73103 Erlang Solutions (United Kingdom)'), (16515, 'https://ror.org/01txxg691', 'no_lang_code', 1, 'https://ror.org/01txxg691 Automated Cells & Equipment (United States)'), (16516, 'https://ror.org/01typar55', 'en', 1, 'https://ror.org/01typar55 Screen'), (16517, 'https://ror.org/01tzmg414', 'en', 1, 'https://ror.org/01tzmg414 Society for Mucosal Immunology'), (16518, 'https://ror.org/01tzy4237', 'no_lang_code', 1, 'https://ror.org/01tzy4237 Amis (Slovenia)'), (16519, 'https://ror.org/01v07fn85', 'no_lang_code', 1, 'https://ror.org/01v07fn85 A. Brito (Portugal)'), (16520, 'https://ror.org/01v1wjv20', 'en', 1, 'https://ror.org/01v1wjv20 South Holland Public Library'), (16521, 'https://ror.org/01v2q8e40', 'en', 1, 'https://ror.org/01v2q8e40 League of Dreams'), (16522, 'https://ror.org/01v56jr26', 'no_lang_code', 1, 'https://ror.org/01v56jr26 BioNanoNet'), (16523, 'https://ror.org/01v575k60', 'en', 1, 'https://ror.org/01v575k60 Michigan City Public Library'), (16524, 'https://ror.org/01v5rbf40', 'en', 1, 'https://ror.org/01v5rbf40 Yu.G. Shafer Institute of Cosmophysical Research and Aeronomy Федеральное государственное бюджетное учреждение науки Институт космофизических исследований и аэрономии им. Ю.Г.Шафера Сибирского отделения Российской академии наук'), (16525, 'https://ror.org/01v64sy05', 'en', 1, 'https://ror.org/01v64sy05 Sportable'), (16526, 'https://ror.org/01v6pab41', 'en', 1, 'https://ror.org/01v6pab41 PeaceHealth St. John Medical Center'), (16527, 'https://ror.org/01v9fd791', 'no_lang_code', 1, 'https://ror.org/01v9fd791 IDEA Bio-Medical (Israel)'), (16528, 'https://ror.org/01v9h0745', 'en', 1, 'https://ror.org/01v9h0745 SPARK Reproductive Justice NOW'), (16529, 'https://ror.org/01vavtp12', 'en', 1, 'https://ror.org/01vavtp12 South Central Family Health Center'), (16530, 'https://ror.org/01vb24668', 'en', 1, 'https://ror.org/01vb24668 Southern Poverty Law Center'), (16531, 'https://ror.org/01vcdak53', 'en', 1, 'https://ror.org/01vcdak53 Ability Center of Greater Toledo'), (16532, 'https://ror.org/01vg8sr12', 'en', 1, 'https://ror.org/01vg8sr12 Institut für Angewandte Systemtechnik Bremen Institute for Applied Systems Technology Bremen'), (16533, 'https://ror.org/01vhbxh90', 'no_lang_code', 1, 'https://ror.org/01vhbxh90 Advanced Integrated Technology Solutions & Services'), (16534, 'https://ror.org/01vjbt677', 'no_lang_code', 1, 'https://ror.org/01vjbt677 ClimateWell (Sweden)'), (16535, 'https://ror.org/01vq75n56', 'en', 1, 'https://ror.org/01vq75n56 Team Taylor County'), (16536, 'https://ror.org/01vqxw943', 'no_lang_code', 1, 'https://ror.org/01vqxw943 The Meltech (United Kingdom)'), (16537, 'https://ror.org/01vryen79', 'en', 1, 'https://ror.org/01vryen79 Illinois State Archives'), (16538, 'https://ror.org/01vt83t39', 'en', 1, 'https://ror.org/01vt83t39 Obesity Society'), (16539, 'https://ror.org/01vtmwg90', 'en', 1, 'https://ror.org/01vtmwg90 Vigo County Historical Society & Museum'), (16540, 'https://ror.org/01vx9hd92', 'no_lang_code', 1, 'https://ror.org/01vx9hd92 Creative Systems Engineering (Greece)'), (16541, 'https://ror.org/01vyc5m15', 'no_lang_code', 1, 'https://ror.org/01vyc5m15 Kite Innovation (United Kingdom)'), (16542, 'https://ror.org/01vzz8w74', 'en', 1, 'https://ror.org/01vzz8w74 Finnish Real Estate Federation'), (16543, 'https://ror.org/01w2at733', 'it', 1, 'https://ror.org/01w2at733 Casa di Cura Villa Pini d’Abruzzo'), (16544, 'https://ror.org/01w2fzp56', 'en', 1, 'https://ror.org/01w2fzp56 Kolkata Municipal Corporation কলকাতা পৌরসংস্থা'), (16545, 'https://ror.org/01w2kt439', 'en', 1, 'https://ror.org/01w2kt439 Association canadienne des médecins vétérinaires Canadian Veterinary Medical Association'), (16546, 'https://ror.org/01w4x2p98', 'en', 1, 'https://ror.org/01w4x2p98 Local Government Improvement and Development'), (16547, 'https://ror.org/01w5m5321', 'en', 1, 'https://ror.org/01w5m5321 Young Adult Institute'), (16548, 'https://ror.org/01w5y4543', 'en', 1, 'https://ror.org/01w5y4543 CIMA Research Foundation'), (16549, 'https://ror.org/01w74xd96', 'no_lang_code', 1, 'https://ror.org/01w74xd96 Lohmann Tierzucht (Germany)'), (16550, 'https://ror.org/01w8j2j71', 'no_lang_code', 1, 'https://ror.org/01w8j2j71 Ademtech (France)'), (16551, 'https://ror.org/01w92sn15', 'en', 1, 'https://ror.org/01w92sn15 Jackson District Library'), (16552, 'https://ror.org/01w9gcz32', 'no_lang_code', 1, 'https://ror.org/01w9gcz32 Barnard Microsystems (United Kingdom)'), (16553, 'https://ror.org/01w9kqf90', 'no_lang_code', 1, 'https://ror.org/01w9kqf90 Geotechnics (United Kingdom)'), (16554, 'https://ror.org/01wekt990', 'no_lang_code', 1, 'https://ror.org/01wekt990 Light Prescriptions Innovators (Spain)'), (16555, 'https://ror.org/01weqjw56', 'en', 1, 'https://ror.org/01weqjw56 Elk Grove Village Public Library'), (16556, 'https://ror.org/01wghc923', 'en', 1, 'https://ror.org/01wghc923 Anaerobic Digestion and Bioresources Association'), (16557, 'https://ror.org/01wh99039', 'en', 1, 'https://ror.org/01wh99039 Lord Fairfax Community College'), (16558, 'https://ror.org/01wj8sy84', 'en', 1, 'https://ror.org/01wj8sy84 Laser Institute of America'), (16559, 'https://ror.org/01wmp8x44', 'no_lang_code', 1, 'https://ror.org/01wmp8x44 Ikona (United States)'), (16560, 'https://ror.org/01wpt0d29', 'en', 1, 'https://ror.org/01wpt0d29 IDConsortium'), (16561, 'https://ror.org/01wpyw903', 'no_lang_code', 1, 'https://ror.org/01wpyw903 GTP Technology'), (16562, 'https://ror.org/01wsx6q69', 'en', 1, 'https://ror.org/01wsx6q69 Department of the Environment'), (16563, 'https://ror.org/01wsxjp84', 'no_lang_code', 1, 'https://ror.org/01wsxjp84 AP&T (Sweden)'), (16564, 'https://ror.org/01wt2ek55', 'en', 1, 'https://ror.org/01wt2ek55 Women''s International Network for Guatemalan Solutions'), (16565, 'https://ror.org/01wt37816', 'en', 1, 'https://ror.org/01wt37816 Foundation for Children with Cancer'), (16566, 'https://ror.org/01wtdg175', 'en', 1, 'https://ror.org/01wtdg175 Speedway Fire Rescue'), (16567, 'https://ror.org/01wtneg90', 'en', 1, 'https://ror.org/01wtneg90 Canadian Society for Exercise Physiology'), (16568, 'https://ror.org/01wwe7a82', 'pt', 1, 'https://ror.org/01wwe7a82 Instituto Terra e Memória'), (16569, 'https://ror.org/01wxdvj03', 'en', 1, 'https://ror.org/01wxdvj03 Federal Reserve Bank of Cleveland'), (16570, 'https://ror.org/01wxvb586', 'no_lang_code', 1, 'https://ror.org/01wxvb586 Compass Systems (United States)'), (16571, 'https://ror.org/01wzy6m46', 'no_lang_code', 1, 'https://ror.org/01wzy6m46 Animal Vegetable Mineral (United Kingdom)'), (16572, 'https://ror.org/01x0pmb79', 'en', 1, 'https://ror.org/01x0pmb79 Washington Center for Psychoanalysis'), (16573, 'https://ror.org/01x1yxa13', 'no_lang_code', 1, 'https://ror.org/01x1yxa13 Hungarian Central Statistical Office'), (16574, 'https://ror.org/01x29t295', 'de', 1, 'https://ror.org/01x29t295 Vivantes Klinikum'), (16575, 'https://ror.org/01x4yq975', 'no_lang_code', 1, 'https://ror.org/01x4yq975 Awite Bioenergie (Germany)'), (16576, 'https://ror.org/01x5cet75', 'no_lang_code', 1, 'https://ror.org/01x5cet75 Bcr Diagnostics (United States)'), (16577, 'https://ror.org/01x6q1934', 'en', 1, 'https://ror.org/01x6q1934 Cleveland Foundation'), (16578, 'https://ror.org/01x92ja23', 'no_lang_code', 1, 'https://ror.org/01x92ja23 GeneticaLens (United States)'), (16579, 'https://ror.org/01x9dpc82', 'no_lang_code', 1, 'https://ror.org/01x9dpc82 HAYC3'), (16580, 'https://ror.org/01xar0e72', 'no_lang_code', 1, 'https://ror.org/01xar0e72 IX-Factory (Germany)'), (16581, 'https://ror.org/01xbt8t65', 'no_lang_code', 1, 'https://ror.org/01xbt8t65 AIMES Grid Services (United Kingdom)'), (16582, 'https://ror.org/01xdhsq08', 'en', 1, 'https://ror.org/01xdhsq08 Jefferson Parish District Attorney'), (16583, 'https://ror.org/01xeyq157', 'no_lang_code', 1, 'https://ror.org/01xeyq157 DH Consultancy BVBA (Belgium)'), (16584, 'https://ror.org/01xezpj37', 'en', 1, 'https://ror.org/01xezpj37 European Association of Development Agencies'), (16585, 'https://ror.org/01xg23r53', 'it', 1, 'https://ror.org/01xg23r53 Biblioteca Italiana per i Ciechi "Regina Margherita" - ONLUS'), (16586, 'https://ror.org/01xgyw658', 'en', 1, 'https://ror.org/01xgyw658 Louisburg College'), (16587, 'https://ror.org/01xh29k31', 'en', 1, 'https://ror.org/01xh29k31 Cancer Resources for Elkhart County'), (16588, 'https://ror.org/01xhkj350', 'no_lang_code', 1, 'https://ror.org/01xhkj350 GenHunter (United States)'), (16589, 'https://ror.org/01xjsv217', 'no_lang_code', 1, 'https://ror.org/01xjsv217 Bauhaus Luftfahrt'), (16590, 'https://ror.org/01xnazj43', 'no_lang_code', 1, 'https://ror.org/01xnazj43 Alsitek (United Kingdom)'), (16591, 'https://ror.org/01xny3z34', 'en', 1, 'https://ror.org/01xny3z34 European Health Management Association'), (16592, 'https://ror.org/01xtbck32', 'no_lang_code', 1, 'https://ror.org/01xtbck32 Actinix (United States)'), (16593, 'https://ror.org/01xtkmv78', 'en', 1, 'https://ror.org/01xtkmv78 BC Non-Profit Housing Association'), (16594, 'https://ror.org/01xvcx580', 'en', 1, 'https://ror.org/01xvcx580 Columbus Metropolitan Library'), (16595, 'https://ror.org/01xvfw287', 'no_lang_code', 1, 'https://ror.org/01xvfw287 Leuco Ledermann (Germany)'), (16596, 'https://ror.org/01xwcs533', 'no_lang_code', 1, 'https://ror.org/01xwcs533 Hotpoint (United Kingdom)'), (16597, 'https://ror.org/01xy8wf83', 'ca', 1, 'https://ror.org/01xy8wf83 Reial Automòbil Club de Catalunya'), (16598, 'https://ror.org/01xyb4y13', 'fr', 1, 'https://ror.org/01xyb4y13 Espace pour la vie Space for Life'), (16599, 'https://ror.org/01xzpd518', 'en', 1, 'https://ror.org/01xzpd518 BT Archives'), (16600, 'https://ror.org/01y461z74', 'en', 1, 'https://ror.org/01y461z74 Bone Marrow Foundation'), (16601, 'https://ror.org/01y6v9r10', 'no_lang_code', 1, 'https://ror.org/01y6v9r10 Horta (Italy)'), (16602, 'https://ror.org/01y7a2b37', 'no_lang_code', 1, 'https://ror.org/01y7a2b37 Biametrics (Germany)'), (16603, 'https://ror.org/01y823z67', 'en', 1, 'https://ror.org/01y823z67 Danville Area Community College'), (16604, 'https://ror.org/01y86zv41', 'en', 1, 'https://ror.org/01y86zv41 Habitat Acquisition Trust'), (16605, 'https://ror.org/01y9q0786', 'en', 1, 'https://ror.org/01y9q0786 Sacramento City Unified School District'), (16606, 'https://ror.org/01y9v7727', 'no_lang_code', 1, 'https://ror.org/01y9v7727 Europliroforissi'), (16607, 'https://ror.org/01yc4ac23', 'en', 1, 'https://ror.org/01yc4ac23 Baldwin Public Library'), (16608, 'https://ror.org/01yf9rd65', 'en', 1, 'https://ror.org/01yf9rd65 Texas Health and Human Services Commission'), (16609, 'https://ror.org/01ygzf271', 'no_lang_code', 1, 'https://ror.org/01ygzf271 Covesion (United Kingdom)'), (16610, 'https://ror.org/01yhxf067', 'no_lang_code', 1, 'https://ror.org/01yhxf067 Kaiam Corporation (United States)'), (16611, 'https://ror.org/01yj92e08', 'no_lang_code', 1, 'https://ror.org/01yj92e08 Banpil Photonics (United States)'), (16612, 'https://ror.org/01yk1j737', 'en', 1, 'https://ror.org/01yk1j737 Cody Unser First Step Foundation'), (16613, 'https://ror.org/01yma9m40', 'en', 1, 'https://ror.org/01yma9m40 Concordia University Ann Arbor Universidad Concordia'), (16614, 'https://ror.org/01ynqd283', 'en', 1, 'https://ror.org/01ynqd283 United States Immunodeficiency Network'), (16615, 'https://ror.org/01yscvc28', 'en', 1, 'https://ror.org/01yscvc28 Davis & Elkins College'), (16616, 'https://ror.org/01ytw4e80', 'en', 1, 'https://ror.org/01ytw4e80 Corporación Federal de Seguro de Depósitos Federal Deposit Insurance Corporation'), (16617, 'https://ror.org/01yvmqs58', 'en', 1, 'https://ror.org/01yvmqs58 The Schiele Museum of Natural History'), (16618, 'https://ror.org/01yvs7t05', 'pt', 1, 'https://ror.org/01yvs7t05 Centro Hospitalar de Trás os Montes e Alto Douro'), (16619, 'https://ror.org/01yvyth17', 'no_lang_code', 1, 'https://ror.org/01yvyth17 Biomer (Germany)'), (16620, 'https://ror.org/01yw7hk96', 'no_lang_code', 1, 'https://ror.org/01yw7hk96 Dragonfly Sales and Marketing Consulting (United States)'), (16621, 'https://ror.org/01yxgnz18', 'en', 1, 'https://ror.org/01yxgnz18 Catawba County Schools'), (16622, 'https://ror.org/01yyf4310', 'fr', 1, 'https://ror.org/01yyf4310 Algoé'), (16623, 'https://ror.org/01yykhb30', 'en', 1, 'https://ror.org/01yykhb30 Sauk County Historical Society'), (16624, 'https://ror.org/01yz68468', 'no_lang_code', 1, 'https://ror.org/01yz68468 Euroscreen (Belgium)'), (16625, 'https://ror.org/01z1gfs52', 'no_lang_code', 1, 'https://ror.org/01z1gfs52 Tentnology (Canada)'), (16626, 'https://ror.org/01z5ce602', 'en', 1, 'https://ror.org/01z5ce602 Penrose-St. Francis Health Services'), (16627, 'https://ror.org/01z9k3j07', 'no_lang_code', 1, 'https://ror.org/01z9k3j07 Ramboll (United Kingdom)'), (16628, 'https://ror.org/01zav1s03', 'no_lang_code', 1, 'https://ror.org/01zav1s03 Bio-Technical Resources (United States)'), (16629, 'https://ror.org/01zbnj927', 'en', 1, 'https://ror.org/01zbnj927 Missouri Department of Social Services'), (16630, 'https://ror.org/01zbqy906', 'no_lang_code', 1, 'https://ror.org/01zbqy906 Econolyst (United Kingdom)'), (16631, 'https://ror.org/01zcb7j14', 'no_lang_code', 1, 'https://ror.org/01zcb7j14 Nuance Communications (Belgium)'), (16632, 'https://ror.org/01zd9gz71', 'no_lang_code', 1, 'https://ror.org/01zd9gz71 Genfit (France)'), (16633, 'https://ror.org/01zdwaq18', 'no_lang_code', 1, 'https://ror.org/01zdwaq18 Illinois Ventures (United States)'), (16634, 'https://ror.org/01zesp542', 'no_lang_code', 1, 'https://ror.org/01zesp542 SynDevRx (United States)'), (16635, 'https://ror.org/01zg9ry50', 'no_lang_code', 1, 'https://ror.org/01zg9ry50 Bavarian Nordic (Germany)'), (16636, 'https://ror.org/01zjcq634', 'no_lang_code', 1, 'https://ror.org/01zjcq634 Newable (United Kingdom)'), (16637, 'https://ror.org/01zjyec98', 'no_lang_code', 1, 'https://ror.org/01zjyec98 goHDR (United Kingdom)'), (16638, 'https://ror.org/01zkjwb76', 'no_lang_code', 1, 'https://ror.org/01zkjwb76 A.S.T. Group (Germany) Angewandte System Technik'), (16639, 'https://ror.org/01zm94433', 'no_lang_code', 1, 'https://ror.org/01zm94433 John Wiley & Sons (United Kingdom)'), (16640, 'https://ror.org/01zn1kc16', 'de', 1, 'https://ror.org/01zn1kc16 Fachverband Elektronik Design'), (16641, 'https://ror.org/01zn3s316', 'no_lang_code', 1, 'https://ror.org/01zn3s316 Buckland & Taylor (Canada)'), (16642, 'https://ror.org/01znsh139', 'no_lang_code', 1, 'https://ror.org/01znsh139 British American Tobacco (United Kingdom)'), (16643, 'https://ror.org/01zq3f511', 'no_lang_code', 1, 'https://ror.org/01zq3f511 European Thermodynamics (United Kingdom)'), (16644, 'https://ror.org/01zqbp192', 'en', 1, 'https://ror.org/01zqbp192 Missouri Southern State University'), (16645, 'https://ror.org/01zqkbt68', 'no_lang_code', 1, 'https://ror.org/01zqkbt68 Chronos Technology (United Kingdom)'), (16646, 'https://ror.org/01zqmjs13', 'no_lang_code', 1, 'https://ror.org/01zqmjs13 Gordon Murray Design (United Kingdom)'), (16647, 'https://ror.org/01zqwky61', 'no_lang_code', 1, 'https://ror.org/01zqwky61 Avantes (Netherlands)'), (16648, 'https://ror.org/01zy5b076', 'no_lang_code', 1, 'https://ror.org/01zy5b076 Infobyte (Italy)'), (16649, 'https://ror.org/01zy7ja20', 'en', 1, 'https://ror.org/01zy7ja20 Earthquake Planning and Protection Organization'), (16650, 'https://ror.org/0201vsb50', 'en', 1, 'https://ror.org/0201vsb50 Oak Park Public Library'), (16651, 'https://ror.org/0202stx84', 'en', 1, 'https://ror.org/0202stx84 Holy Family University'), (16652, 'https://ror.org/0202yb607', 'en', 1, 'https://ror.org/0202yb607 Information Management Policies Assessment for City Transport Systems'), (16653, 'https://ror.org/0206kax92', 'en', 1, 'https://ror.org/0206kax92 L''Institut national du patrimoine National Heritage Institute المعهد الوطني للتراث'), (16654, 'https://ror.org/0207xt957', 'no_lang_code', 1, 'https://ror.org/0207xt957 Geowatt (Switzerland)'), (16655, 'https://ror.org/020ak9w19', 'en', 1, 'https://ror.org/020ak9w19 Prof. Assen Zlatarov University'), (16656, 'https://ror.org/020bbn883', 'no_lang_code', 1, 'https://ror.org/020bbn883 Excellims (United States)'), (16657, 'https://ror.org/020bpey71', 'no_lang_code', 1, 'https://ror.org/020bpey71 Poço Bravo Marbles (Portugal)'), (16658, 'https://ror.org/020bzqr95', 'en', 1, 'https://ror.org/020bzqr95 Institute of Radio Astronomy Радіоастрономічний інститут'), (16659, 'https://ror.org/020d95911', 'en', 1, 'https://ror.org/020d95911 Almaty University of Power Engineering and Telecommunications Алматинский университет энергетики и связи Алматы энергетика және байланыс институты'), (16660, 'https://ror.org/020gmsm27', 'no_lang_code', 1, 'https://ror.org/020gmsm27 James Agee Film Project'), (16661, 'https://ror.org/020hbh524', 'no_lang_code', 1, 'https://ror.org/020hbh524 Medtronic (United Kingdom)'), (16662, 'https://ror.org/020kk1193', 'en', 1, 'https://ror.org/020kk1193 Black Metropolis Research Consortium'), (16663, 'https://ror.org/020m0j044', 'en', 1, 'https://ror.org/020m0j044 Gould Farm'), (16664, 'https://ror.org/020mn5703', 'no_lang_code', 1, 'https://ror.org/020mn5703 Stemnion (United States)'), (16665, 'https://ror.org/020pq6t22', 'no_lang_code', 1, 'https://ror.org/020pq6t22 ImaginAb (United States)'), (16666, 'https://ror.org/020r34245', 'en', 1, 'https://ror.org/020r34245 American Research Center in Egypt'), (16667, 'https://ror.org/020wewd22', 'en', 1, 'https://ror.org/020wewd22 Valley City State University'), (16668, 'https://ror.org/020xpp268', 'en', 1, 'https://ror.org/020xpp268 Racine Heritage Museum'), (16669, 'https://ror.org/020y46h67', 'no_lang_code', 1, 'https://ror.org/020y46h67 Mifne Center'), (16670, 'https://ror.org/020yh1f96', 'en', 1, 'https://ror.org/020yh1f96 Ohio State University Hospital'), (16671, 'https://ror.org/020z9nv72', 'no_lang_code', 1, 'https://ror.org/020z9nv72 Maritime Wirtschafts- und Schiffbauforschung (Germany)'), (16672, 'https://ror.org/020zw1p93', 'no_lang_code', 1, 'https://ror.org/020zw1p93 Iris Vernici (Italy)'), (16673, 'https://ror.org/0210crt34', 'en', 1, 'https://ror.org/0210crt34 Wall Las Memorias Project'), (16674, 'https://ror.org/02138yn89', 'en', 1, 'https://ror.org/02138yn89 Monroe County Public Library'), (16675, 'https://ror.org/0213abd61', 'no_lang_code', 1, 'https://ror.org/0213abd61 Velocity BioGroup (United States)'), (16676, 'https://ror.org/0213bv924', 'pt', 1, 'https://ror.org/0213bv924 Direcção Regional de Cultura do Alentejo'), (16677, 'https://ror.org/0213syy24', 'no_lang_code', 1, 'https://ror.org/0213syy24 Exide Technologies (United Kingdom)'), (16678, 'https://ror.org/02164rg35', 'en', 1, 'https://ror.org/02164rg35 Austin Health & Human Services Department'), (16679, 'https://ror.org/02165q211', 'no_lang_code', 1, 'https://ror.org/02165q211 LightMachinery (Canada)'), (16680, 'https://ror.org/0217b1f02', 'no_lang_code', 1, 'https://ror.org/0217b1f02 Limaging (United States)'), (16681, 'https://ror.org/0217vz783', 'no_lang_code', 1, 'https://ror.org/0217vz783 Autoflug (Germany)'), (16682, 'https://ror.org/02184kv08', 'en', 1, 'https://ror.org/02184kv08 European Solar Thermal Electricity Association'), (16683, 'https://ror.org/0218mdk53', 'en', 1, 'https://ror.org/0218mdk53 Victory Walk'), (16684, 'https://ror.org/021998h47', 'en', 1, 'https://ror.org/021998h47 Brookwood Baptist Health'), (16685, 'https://ror.org/021bzfh90', 'en', 1, 'https://ror.org/021bzfh90 Deafinitely Theatre'), (16686, 'https://ror.org/021c40092', 'en', 1, 'https://ror.org/021c40092 Association of Directors of Environment, Economy, Planning and Transport'), (16687, 'https://ror.org/021gpgt46', 'no_lang_code', 1, 'https://ror.org/021gpgt46 Menlo Systems (Germany)'), (16688, 'https://ror.org/021k10z87', 'en', 1, 'https://ror.org/021k10z87 Leibniz-Institut Hessische Stiftung Friedens- und Konfliktforschung Peace Research Institute Frankfurt'), (16689, 'https://ror.org/021mk5n73', 'en', 1, 'https://ror.org/021mk5n73 Bonanza High School'), (16690, 'https://ror.org/021mz1r56', 'no_lang_code', 1, 'https://ror.org/021mz1r56 BioSciCon (United States)'), (16691, 'https://ror.org/021n1yp58', 'en', 1, 'https://ror.org/021n1yp58 ADS Group'), (16692, 'https://ror.org/021n2jk87', 'no_lang_code', 1, 'https://ror.org/021n2jk87 Airwave Solutions (United Kingdom)'), (16693, 'https://ror.org/021sswk79', 'no_lang_code', 1, 'https://ror.org/021sswk79 ConStat'), (16694, 'https://ror.org/021t53m47', 'no_lang_code', 1, 'https://ror.org/021t53m47 Aecom (Czechia)'), (16695, 'https://ror.org/021wrjw75', 'no_lang_code', 1, 'https://ror.org/021wrjw75 CalGavin (United Kingdom)'), (16696, 'https://ror.org/021y45972', 'no_lang_code', 1, 'https://ror.org/021y45972 Consultants for Environmental System Technologies'), (16697, 'https://ror.org/021y8w832', 'no_lang_code', 1, 'https://ror.org/021y8w832 Ceps (Czechia)'), (16698, 'https://ror.org/021zktr97', 'no_lang_code', 1, 'https://ror.org/021zktr97 Dinex (Finland)'), (16699, 'https://ror.org/022059r74', 'no_lang_code', 1, 'https://ror.org/022059r74 Meggitt (Switzerland)'), (16700, 'https://ror.org/0221ghv91', 'en', 1, 'https://ror.org/0221ghv91 Ministria e Arsimit dhe Shkencës Ministry of Education and Science'), (16701, 'https://ror.org/0222ak715', 'no_lang_code', 1, 'https://ror.org/0222ak715 ARServices (United States)'), (16702, 'https://ror.org/0223cdp82', 'en', 1, 'https://ror.org/0223cdp82 Dupage County Health Department'), (16703, 'https://ror.org/02251ba66', 'no_lang_code', 1, 'https://ror.org/02251ba66 Institute of Forest Ecosystem Research'), (16704, 'https://ror.org/0226w4e92', 'no_lang_code', 1, 'https://ror.org/0226w4e92 Credo Reference (United States)'), (16705, 'https://ror.org/02280jq67', 'sr', 1, 'https://ror.org/02280jq67 Centar za Promociju Nauke Center for the promotion of science'), (16706, 'https://ror.org/0229g2g56', 'no_lang_code', 1, 'https://ror.org/0229g2g56 MVV Energie (Germany) MVV Energy'), (16707, 'https://ror.org/022bs7z24', 'no_lang_code', 1, 'https://ror.org/022bs7z24 Pallium India'), (16708, 'https://ror.org/022bt0g94', 'en', 1, 'https://ror.org/022bt0g94 National Center for Manufacturing Sciences'), (16709, 'https://ror.org/022eec223', 'no_lang_code', 1, 'https://ror.org/022eec223 LiqTech (Denmark)'), (16710, 'https://ror.org/022enjj11', 'no_lang_code', 1, 'https://ror.org/022enjj11 Fent Innovative Software Solutions (Spain)'), (16711, 'https://ror.org/022fhy294', 'no_lang_code', 1, 'https://ror.org/022fhy294 Mechatronic Systemtechnik (Austria)'), (16712, 'https://ror.org/022fx7a43', 'no_lang_code', 1, 'https://ror.org/022fx7a43 Biomolecular Research Genomics (Italy)'), (16713, 'https://ror.org/022mxs943', 'en', 1, 'https://ror.org/022mxs943 Canadian Women''s Health Network Réseau Canadien pour la Santé des Femmes'), (16714, 'https://ror.org/022pv2091', 'en', 1, 'https://ror.org/022pv2091 Appleton Public Library'), (16715, 'https://ror.org/022r03w28', 'en', 1, 'https://ror.org/022r03w28 Hochschule der Medien Stuttgart Media University'), (16716, 'https://ror.org/022sp9r28', 'no_lang_code', 1, 'https://ror.org/022sp9r28 ITLink'), (16717, 'https://ror.org/022syee28', 'en', 1, 'https://ror.org/022syee28 Ministry of Health of the Republic of Kazakhstan Қазақстан Республикасының Денсаулық сақтау министрлігі'), (16718, 'https://ror.org/022vf5950', 'en', 1, 'https://ror.org/022vf5950 Northcentral Technical College'), (16719, 'https://ror.org/022z2ef35', 'en', 1, 'https://ror.org/022z2ef35 Digital Europe'), (16720, 'https://ror.org/022zhjf34', 'en', 1, 'https://ror.org/022zhjf34 Sunlight Nutrition and Health Research Center'), (16721, 'https://ror.org/022zybs25', 'en', 1, 'https://ror.org/022zybs25 Foodbank'), (16722, 'https://ror.org/0231yda83', 'en', 1, 'https://ror.org/0231yda83 Save Ourselves Breast Cancer Organization'), (16723, 'https://ror.org/023366513', 'no_lang_code', 1, 'https://ror.org/023366513 Atlantis Consulting (Greece)'), (16724, 'https://ror.org/02337dt86', 'no_lang_code', 1, 'https://ror.org/02337dt86 Helmut Christmann (Germany)'), (16725, 'https://ror.org/023594t55', 'en', 1, 'https://ror.org/023594t55 Humber Bridge Board'), (16726, 'https://ror.org/0235hnd76', 'no_lang_code', 1, 'https://ror.org/0235hnd76 Alpiq (United Kingdom)'), (16727, 'https://ror.org/02378t231', 'en', 1, 'https://ror.org/02378t231 Glamorgan-Gwent Archaeological Trust'), (16728, 'https://ror.org/0237jrs86', 'en', 1, 'https://ror.org/0237jrs86 House Next Door'), (16729, 'https://ror.org/0238h3r90', 'no_lang_code', 1, 'https://ror.org/0238h3r90 Somelos (Portugal)'), (16730, 'https://ror.org/02395mz47', 'no_lang_code', 1, 'https://ror.org/02395mz47 GlobalSign (Belgium)'), (16731, 'https://ror.org/0239hhd94', 'en', 1, 'https://ror.org/0239hhd94 Quatela Center for Plastic Surgery'), (16732, 'https://ror.org/023aczp72', 'no_lang_code', 1, 'https://ror.org/023aczp72 Cup 2000 (Italy)'), (16733, 'https://ror.org/023ag6d08', 'en', 1, 'https://ror.org/023ag6d08 Lakeland Community College'), (16734, 'https://ror.org/023bxn823', 'en', 1, 'https://ror.org/023bxn823 Glen Ellyn Public Library'), (16735, 'https://ror.org/023ccd616', 'no_lang_code', 1, 'https://ror.org/023ccd616 AcrossLimits'), (16736, 'https://ror.org/023csce19', 'no_lang_code', 1, 'https://ror.org/023csce19 Measurement Specialties (Germany)'), (16737, 'https://ror.org/023d8gn94', 'no_lang_code', 1, 'https://ror.org/023d8gn94 IT+Robotics (Italy)'), (16738, 'https://ror.org/023dbr455', 'no_lang_code', 1, 'https://ror.org/023dbr455 Eidon (Italy)'), (16739, 'https://ror.org/023ew8649', 'no_lang_code', 1, 'https://ror.org/023ew8649 IDS Scheer (Czechia)'), (16740, 'https://ror.org/023g5hk70', 'no_lang_code', 1, 'https://ror.org/023g5hk70 EaglePicher (Canada)'), (16741, 'https://ror.org/023hfjp48', 'en', 1, 'https://ror.org/023hfjp48 Kankakee Community College'), (16742, 'https://ror.org/023kawg24', 'no_lang_code', 1, 'https://ror.org/023kawg24 Federal Mogul (France)'), (16743, 'https://ror.org/023man992', 'no_lang_code', 1, 'https://ror.org/023man992 Marshalls (United Kingdom)'), (16744, 'https://ror.org/023tdcb12', 'en', 1, 'https://ror.org/023tdcb12 Brod Group'), (16745, 'https://ror.org/023tfbg60', 'no_lang_code', 1, 'https://ror.org/023tfbg60 Import.io (United States)'), (16746, 'https://ror.org/023vyrd34', 'pt', 1, 'https://ror.org/023vyrd34 Centro de Referência em Informação Ambiental Reference Center on Environmental Information'), (16747, 'https://ror.org/023wx1945', 'no_lang_code', 1, 'https://ror.org/023wx1945 Mace (United Kingdom)'), (16748, 'https://ror.org/023xtbz44', 'en', 1, 'https://ror.org/023xtbz44 Spiral Foundation'), (16749, 'https://ror.org/023yhw405', 'no_lang_code', 1, 'https://ror.org/023yhw405 Aviv Biomedical (United States)'), (16750, 'https://ror.org/02411tk93', 'en', 1, 'https://ror.org/02411tk93 Women’s Fund Asia'), (16751, 'https://ror.org/0242qw425', 'en', 1, 'https://ror.org/0242qw425 Folger Shakespeare Library'), (16752, 'https://ror.org/0243mn861', 'no_lang_code', 1, 'https://ror.org/0243mn861 JXT Applications (United States)'), (16753, 'https://ror.org/0248dnv50', 'no_lang_code', 1, 'https://ror.org/0248dnv50 Bioptix (United States)'), (16754, 'https://ror.org/024awmw52', 'no_lang_code', 1, 'https://ror.org/024awmw52 GECO (Portugal)'), (16755, 'https://ror.org/024bp0560', 'en', 1, 'https://ror.org/024bp0560 Florida Alcohol and Drug Abuse Association'), (16756, 'https://ror.org/024dbdr63', 'no_lang_code', 1, 'https://ror.org/024dbdr63 Mowi (Norway)'), (16757, 'https://ror.org/024jak282', 'no_lang_code', 1, 'https://ror.org/024jak282 Blutip (Canada)'), (16758, 'https://ror.org/024nbjg39', 'nl', 1, 'https://ror.org/024nbjg39 DCMR Milieudienst Rijnmond'), (16759, 'https://ror.org/024nhth42', 'en', 1, 'https://ror.org/024nhth42 United Health Services'), (16760, 'https://ror.org/024p04k09', 'lv', 1, 'https://ror.org/024p04k09 Baltic Environmental Forum Baltijas Vides Forums'), (16761, 'https://ror.org/024p72773', 'no_lang_code', 1, 'https://ror.org/024p72773 Imathia Construcción (Spain)'), (16762, 'https://ror.org/024qs1y51', 'no_lang_code', 1, 'https://ror.org/024qs1y51 Rio Mobility (United States)'), (16763, 'https://ror.org/024rfjv05', 'en', 1, 'https://ror.org/024rfjv05 Centre for Studies in Social Sciences Calcutta'), (16764, 'https://ror.org/024t72v35', 'fr', 1, 'https://ror.org/024t72v35 Terre des Sciences'), (16765, 'https://ror.org/024xf4148', 'en', 1, 'https://ror.org/024xf4148 Illinois Mathematics and Science Academy'), (16766, 'https://ror.org/025008g77', 'no_lang_code', 1, 'https://ror.org/025008g77 Bremerhaven Dock (Germany)'), (16767, 'https://ror.org/025120d02', 'en', 1, 'https://ror.org/025120d02 European Ground Penetrating Radar Association'), (16768, 'https://ror.org/0251ehn88', 'en', 1, 'https://ror.org/0251ehn88 Trinity International University'), (16769, 'https://ror.org/0256cmg21', 'no_lang_code', 1, 'https://ror.org/0256cmg21 Certus Technology (United Kingdom)'), (16770, 'https://ror.org/025882322', 'no_lang_code', 1, 'https://ror.org/025882322 Ingram Content Group (United States)'), (16771, 'https://ror.org/0258dhc73', 'en', 1, 'https://ror.org/0258dhc73 European Center for Nanostructured Polymers'), (16772, 'https://ror.org/0258fpw94', 'no_lang_code', 1, 'https://ror.org/0258fpw94 TriStar Wellness Solutions (United States)'), (16773, 'https://ror.org/0259f7s45', 'en', 1, 'https://ror.org/0259f7s45 Baltic Innovation Agency'), (16774, 'https://ror.org/025agpj70', 'en', 1, 'https://ror.org/025agpj70 Washington Poison Center'), (16775, 'https://ror.org/025cbpf27', 'no_lang_code', 1, 'https://ror.org/025cbpf27 Aereco (France)'), (16776, 'https://ror.org/025drpn91', 'en', 1, 'https://ror.org/025drpn91 United Way of Greater Nashville'), (16777, 'https://ror.org/025dtrv42', 'fr', 1, 'https://ror.org/025dtrv42 Centre d''Études et de Recherches Économiques sur l''Énergie'), (16778, 'https://ror.org/025e3bx20', 'en', 1, 'https://ror.org/025e3bx20 Northwestern Michigan College'), (16779, 'https://ror.org/025ekwj97', 'no_lang_code', 1, 'https://ror.org/025ekwj97 Element Materials Technology (Sweden)'), (16780, 'https://ror.org/025ezac93', 'en', 1, 'https://ror.org/025ezac93 European Science Events Association'), (16781, 'https://ror.org/025fy1n79', 'no_lang_code', 1, 'https://ror.org/025fy1n79 Hydrogen Solar (United Kingdom)'), (16782, 'https://ror.org/025jq6667', 'de', 1, 'https://ror.org/025jq6667 Gesellschaft für Bioanalytik Münster'), (16783, 'https://ror.org/025jta476', 'en', 1, 'https://ror.org/025jta476 Experimental Aircraft Association'), (16784, 'https://ror.org/025nqct78', 'en', 1, 'https://ror.org/025nqct78 Agencia de Inteligencia de la Defensa Defense Intelligence Agency'), (16785, 'https://ror.org/025v2yp51', 'no_lang_code', 1, 'https://ror.org/025v2yp51 Altus Technologies (United States)'), (16786, 'https://ror.org/025v9q431', 'en', 1, 'https://ror.org/025v9q431 Muscular Dystrophy Patients Welfare Association'), (16787, 'https://ror.org/025vzq165', 'en', 1, 'https://ror.org/025vzq165 Spoon River College'), (16788, 'https://ror.org/025xcha17', 'en', 1, 'https://ror.org/025xcha17 Glasgow City Council'), (16789, 'https://ror.org/025zgnz97', 'en', 1, 'https://ror.org/025zgnz97 Triumph Foundation'), (16790, 'https://ror.org/0260kc719', 'no_lang_code', 1, 'https://ror.org/0260kc719 Intempora (France)'), (16791, 'https://ror.org/0261s3g35', 'en', 1, 'https://ror.org/0261s3g35 Fife Council'), (16792, 'https://ror.org/0261ts428', 'en', 1, 'https://ror.org/0261ts428 Sunset Hill Educational Institute'), (16793, 'https://ror.org/0262b0b41', 'no_lang_code', 1, 'https://ror.org/0262b0b41 GeoMobile (Germany)'), (16794, 'https://ror.org/0262rzr61', 'no_lang_code', 1, 'https://ror.org/0262rzr61 Hamilton Thorne (United States)'), (16795, 'https://ror.org/0263dyv44', 'en', 1, 'https://ror.org/0263dyv44 Kids Cancer Center'), (16796, 'https://ror.org/0264zze35', 'en', 1, 'https://ror.org/0264zze35 General Confederation of Greek Workers'), (16797, 'https://ror.org/02698x773', 'en', 1, 'https://ror.org/02698x773 Indian Health Board'), (16798, 'https://ror.org/026a1h106', 'de', 1, 'https://ror.org/026a1h106 Verband kommunaler Unternehmen'), (16799, 'https://ror.org/026a5wm88', 'en', 1, 'https://ror.org/026a5wm88 Public Schools of Robeson County'), (16800, 'https://ror.org/026bph638', 'no_lang_code', 1, 'https://ror.org/026bph638 Hueck Folien (Austria)'), (16801, 'https://ror.org/026bqf280', 'no_lang_code', 1, 'https://ror.org/026bqf280 GSI Group (United Kingdom)'), (16802, 'https://ror.org/026hk8y88', 'en', 1, 'https://ror.org/026hk8y88 International Tin Research Institute'), (16803, 'https://ror.org/026jqgj23', 'en', 1, 'https://ror.org/026jqgj23 Holyoke Community College'), (16804, 'https://ror.org/026kkhf56', 'en', 1, 'https://ror.org/026kkhf56 Shad'), (16805, 'https://ror.org/026m45d12', 'en', 1, 'https://ror.org/026m45d12 Yonkers Partners in Education'), (16806, 'https://ror.org/026mcys63', 'no_lang_code', 1, 'https://ror.org/026mcys63 Thinkpath Engineering Services (Canada)'), (16807, 'https://ror.org/026qpk997', 'en', 1, 'https://ror.org/026qpk997 Cape Assist'), (16808, 'https://ror.org/026qvc471', 'en', 1, 'https://ror.org/026qvc471 Wheelchair Sports Federation'), (16809, 'https://ror.org/026s7sx59', 'no_lang_code', 1, 'https://ror.org/026s7sx59 AnthroTronix (United States)'), (16810, 'https://ror.org/026s7y345', 'en', 1, 'https://ror.org/026s7y345 Blaufuss Multimedia'), (16811, 'https://ror.org/026sbed30', 'no_lang_code', 1, 'https://ror.org/026sbed30 Corvinno Technology Transfer'), (16812, 'https://ror.org/026sdzz57', 'en', 1, 'https://ror.org/026sdzz57 Centralia College'), (16813, 'https://ror.org/026tpeg39', 'en', 1, 'https://ror.org/026tpeg39 Evanston Public Library'), (16814, 'https://ror.org/026xpx458', 'de', 1, 'https://ror.org/026xpx458 Institut für ZukunftsEnergie- und Stoffstromsysteme'), (16815, 'https://ror.org/026zz8m94', 'en', 1, 'https://ror.org/026zz8m94 Angeles Clinic Foundation'), (16816, 'https://ror.org/02706zn47', 'en', 1, 'https://ror.org/02706zn47 Public Health Dayton & Montgomery County'), (16817, 'https://ror.org/02709ws31', 'no_lang_code', 1, 'https://ror.org/02709ws31 Invisible Dust (United Kingdom)'), (16818, 'https://ror.org/0270k0c71', 'en', 1, 'https://ror.org/0270k0c71 Ministry of Education Science and Technology'), (16819, 'https://ror.org/02711wx11', 'en', 1, 'https://ror.org/02711wx11 English Courtyards'), (16820, 'https://ror.org/02718ec78', 'no_lang_code', 1, 'https://ror.org/02718ec78 KraussMaffei (Germany)'), (16821, 'https://ror.org/0272r9772', 'en', 1, 'https://ror.org/0272r9772 Impact Research and Development Organization'), (16822, 'https://ror.org/0273db185', 'no_lang_code', 1, 'https://ror.org/0273db185 Archeometra (Italy)'), (16823, 'https://ror.org/0274w9y45', 'en', 1, 'https://ror.org/0274w9y45 Minerva Educational Foundation'), (16824, 'https://ror.org/0275xpz44', 'en', 1, 'https://ror.org/0275xpz44 The Memorial Foundation'), (16825, 'https://ror.org/0277e9g92', 'no_lang_code', 1, 'https://ror.org/0277e9g92 iProov (United Kingdom)'), (16826, 'https://ror.org/02794f225', 'no_lang_code', 1, 'https://ror.org/02794f225 Acutech (Greece)'), (16827, 'https://ror.org/027a1ey92', 'en', 1, 'https://ror.org/027a1ey92 Department of Consumer Protection'), (16828, 'https://ror.org/027b52158', 'no_lang_code', 1, 'https://ror.org/027b52158 Plasma (Macedonia)'), (16829, 'https://ror.org/027b8j852', 'no_lang_code', 1, 'https://ror.org/027b8j852 Domca (Spain)'), (16830, 'https://ror.org/027c2yv63', 'no_lang_code', 1, 'https://ror.org/027c2yv63 Illumina (United Kingdom)'), (16831, 'https://ror.org/027cjrx78', 'en', 1, 'https://ror.org/027cjrx78 Vermont Program for Quality in Health Care'), (16832, 'https://ror.org/027dakc19', 'en', 1, 'https://ror.org/027dakc19 Warren County Schools'), (16833, 'https://ror.org/027f3vp75', 'no_lang_code', 1, 'https://ror.org/027f3vp75 Centre for Concepts in Mechatronics'), (16834, 'https://ror.org/027f5w594', 'no_lang_code', 1, 'https://ror.org/027f5w594 InnerOptic Technology (United States)'), (16835, 'https://ror.org/027fvmc90', 'no_lang_code', 1, 'https://ror.org/027fvmc90 Rubicon Biotechnology (United States)'), (16836, 'https://ror.org/027gw1387', 'en', 1, 'https://ror.org/027gw1387 Asociación para Poner Fin a la Violencia Doméstica de California California Partnership to End Domestic Violence'), (16837, 'https://ror.org/027hwee24', 'en', 1, 'https://ror.org/027hwee24 Seward County Community College'), (16838, 'https://ror.org/027hwrj22', 'no_lang_code', 1, 'https://ror.org/027hwrj22 Bere (United Kingdom)'), (16839, 'https://ror.org/027hx5s14', 'en', 1, 'https://ror.org/027hx5s14 Willamette Valley Cancer Foundation'), (16840, 'https://ror.org/027jm4436', 'en', 1, 'https://ror.org/027jm4436 Institute of Physical Energetics'), (16841, 'https://ror.org/027n25314', 'en', 1, 'https://ror.org/027n25314 AIDS Prevention Initiative in Nigeria'), (16842, 'https://ror.org/027ns6m21', 'en', 1, 'https://ror.org/027ns6m21 Southwest Georgia Health Care'), (16843, 'https://ror.org/027p3g314', 'no_lang_code', 1, 'https://ror.org/027p3g314 Hydrocontrol (Italy)'), (16844, 'https://ror.org/027q99w81', 'no_lang_code', 1, 'https://ror.org/027q99w81 Cell Medica (United Kingdom)'), (16845, 'https://ror.org/027stek86', 'fr', 1, 'https://ror.org/027stek86 Fédération de la Plasturgie'), (16846, 'https://ror.org/027v2gp98', 'no_lang_code', 1, 'https://ror.org/027v2gp98 Broadway Malyan (United Kingdom)'), (16847, 'https://ror.org/027vbvd36', 'no_lang_code', 1, 'https://ror.org/027vbvd36 Esciencia (Spain)'), (16848, 'https://ror.org/027vqky70', 'no_lang_code', 1, 'https://ror.org/027vqky70 Insiel (Italy)'), (16849, 'https://ror.org/027vwvv53', 'de', 1, 'https://ror.org/027vwvv53 Arbeitsgemeinschaft Sozialwissenschaftlicher Institute'), (16850, 'https://ror.org/027w3dq81', 'en', 1, 'https://ror.org/027w3dq81 Blue Mountain Community College'), (16851, 'https://ror.org/027zd6v59', 'no_lang_code', 1, 'https://ror.org/027zd6v59 Isomerase Therapeutics (United Kingdom)'), (16852, 'https://ror.org/02806kr08', 'no_lang_code', 1, 'https://ror.org/02806kr08 Jablite (United Kingdom)'), (16853, 'https://ror.org/028215596', 'en', 1, 'https://ror.org/028215596 Ontario Council of University Libraries'), (16854, 'https://ror.org/0284a6m60', 'no_lang_code', 1, 'https://ror.org/0284a6m60 Axerion Therapeutics (United States)'), (16855, 'https://ror.org/02851yv23', 'no_lang_code', 1, 'https://ror.org/02851yv23 Interpublic Group (United States)'), (16856, 'https://ror.org/028658z74', 'en', 1, 'https://ror.org/028658z74 University of Maryland Upper Chesapeake Health'), (16857, 'https://ror.org/0286c0965', 'en', 1, 'https://ror.org/0286c0965 LOBA - Customer Experience Design'), (16858, 'https://ror.org/0286mhe32', 'no_lang_code', 1, 'https://ror.org/0286mhe32 Maxxam (Canada)'), (16859, 'https://ror.org/0287v3241', 'en', 1, 'https://ror.org/0287v3241 University Muslim Medical Association Community Clinic'), (16860, 'https://ror.org/0288ctx42', 'en', 1, 'https://ror.org/0288ctx42 Illinois General Assembly'), (16861, 'https://ror.org/0288es483', 'en', 1, 'https://ror.org/0288es483 Ewing Marion Kauffman Foundation'), (16862, 'https://ror.org/02894qy28', 'en', 1, 'https://ror.org/02894qy28 Hayner Public Library District'), (16863, 'https://ror.org/028a1kb39', 'nl', 1, 'https://ror.org/028a1kb39 Gemeente Helmond'), (16864, 'https://ror.org/028ccnc13', 'no_lang_code', 1, 'https://ror.org/028ccnc13 Geltz Umwelt-Technologie (Germany)'), (16865, 'https://ror.org/028evh536', 'fr', 1, 'https://ror.org/028evh536 Association des Operateurs Postaux Publics Europeens Association of European Public Postal Operators'), (16866, 'https://ror.org/028gmb220', 'nl', 1, 'https://ror.org/028gmb220 Crisisplan'), (16867, 'https://ror.org/028heaq12', 'no_lang_code', 1, 'https://ror.org/028heaq12 Dow Chemical (United Kingdom)'), (16868, 'https://ror.org/028m68j28', 'en', 1, 'https://ror.org/028m68j28 Fundacion Latinoamericana De Accion Social'), (16869, 'https://ror.org/028mx4j81', 'en', 1, 'https://ror.org/028mx4j81 Ministry of Finance Υπουργείο Οικονομικών Ελλάδας'), (16870, 'https://ror.org/028nqyn57', 'no_lang_code', 1, 'https://ror.org/028nqyn57 CGI (United States)'), (16871, 'https://ror.org/028ppep60', 'en', 1, 'https://ror.org/028ppep60 Standing Committee of European Doctors'), (16872, 'https://ror.org/028qwvc58', 'en', 1, 'https://ror.org/028qwvc58 Chamber of Commerce and Industry of Romania'), (16873, 'https://ror.org/028tzde05', 'no_lang_code', 1, 'https://ror.org/028tzde05 Anova IT Consulting (Spain)'), (16874, 'https://ror.org/028v5rv72', 'no_lang_code', 1, 'https://ror.org/028v5rv72 McBurney (United Kingdom)'), (16875, 'https://ror.org/028xv5p07', 'en', 1, 'https://ror.org/028xv5p07 Raising Voices'), (16876, 'https://ror.org/029508905', 'en', 1, 'https://ror.org/029508905 International Center for Minority Studies and Intercultural Relations'), (16877, 'https://ror.org/0295epx19', 'no_lang_code', 1, 'https://ror.org/0295epx19 Fuchs (Germany)'), (16878, 'https://ror.org/0295yjh78', 'en', 1, 'https://ror.org/0295yjh78 Rock and Roll Hall of Fame and Museum'), (16879, 'https://ror.org/0298rr784', 'en', 1, 'https://ror.org/0298rr784 Instituto Nacional de Estatística National Statistical Institute of Portugal'), (16880, 'https://ror.org/0299eyn73', 'en', 1, 'https://ror.org/0299eyn73 Institute of Electronics Институт по електроника'), (16881, 'https://ror.org/029c3g514', 'no_lang_code', 1, 'https://ror.org/029c3g514 Mesoblast (United States)'), (16882, 'https://ror.org/029djx285', 'no_lang_code', 1, 'https://ror.org/029djx285 Front Edge Technology (United States)'), (16883, 'https://ror.org/029e1wz89', 'en', 1, 'https://ror.org/029e1wz89 Wind River Cancer Wellness Retreats and Programs'), (16884, 'https://ror.org/029f77f71', 'no_lang_code', 1, 'https://ror.org/029f77f71 Equipment Simulations (United States)'), (16885, 'https://ror.org/029ga8k16', 'en', 1, 'https://ror.org/029ga8k16 Health Level Seven International'), (16886, 'https://ror.org/029gpgj23', 'en', 1, 'https://ror.org/029gpgj23 Radiology Associates'), (16887, 'https://ror.org/029hqwk21', 'no_lang_code', 1, 'https://ror.org/029hqwk21 Alcyomics (United Kingdom)'), (16888, 'https://ror.org/029j2x431', 'en', 1, 'https://ror.org/029j2x431 Center for Social and Economic Research'), (16889, 'https://ror.org/029kfqa89', 'no_lang_code', 1, 'https://ror.org/029kfqa89 Jotne (Norway)'), (16890, 'https://ror.org/029kpsy61', 'en', 1, 'https://ror.org/029kpsy61 Eden Project'), (16891, 'https://ror.org/029n4n358', 'en', 1, 'https://ror.org/029n4n358 Swami Vivekanand College of Pharmacy'), (16892, 'https://ror.org/029nw1q67', 'en', 1, 'https://ror.org/029nw1q67 Circle Park'), (16893, 'https://ror.org/029nzwd26', 'no_lang_code', 1, 'https://ror.org/029nzwd26 Brenk Systemplanung (Germany)'), (16894, 'https://ror.org/029pa0p32', 'en', 1, 'https://ror.org/029pa0p32 Sierra Streams Institute'), (16895, 'https://ror.org/029pbd337', 'en', 1, 'https://ror.org/029pbd337 EuropaBio'), (16896, 'https://ror.org/029pncr02', 'no_lang_code', 1, 'https://ror.org/029pncr02 Appen (United States)'), (16897, 'https://ror.org/029t2mw91', 'en', 1, 'https://ror.org/029t2mw91 Baltic Centre for Contemporary Art'), (16898, 'https://ror.org/029w47y50', 'en', 1, 'https://ror.org/029w47y50 Cheyenne River Sioux Tribe Council'), (16899, 'https://ror.org/029x63s82', 'en', 1, 'https://ror.org/029x63s82 Nurse & Hospice of Fairfield County'), (16900, 'https://ror.org/029y62y23', 'en', 1, 'https://ror.org/029y62y23 URSA Institute'), (16901, 'https://ror.org/029znv963', 'en', 1, 'https://ror.org/029znv963 Kommunenes Sentralforbund Norwegian Association of Local and Regional Authorities'), (16902, 'https://ror.org/02a3gzm90', 'en', 1, 'https://ror.org/02a3gzm90 Miami-Dade County Public Schools'), (16903, 'https://ror.org/02a3sdd90', 'it', 1, 'https://ror.org/02a3sdd90 Associazione Festival della Scienz'), (16904, 'https://ror.org/02a61j498', 'no_lang_code', 1, 'https://ror.org/02a61j498 ICON Technology & Process Consulting (United Kingdom)'), (16905, 'https://ror.org/02a6ztn45', 'en', 1, 'https://ror.org/02a6ztn45 National Academies Press'), (16906, 'https://ror.org/02a7s8340', 'no_lang_code', 1, 'https://ror.org/02a7s8340 Elvior (Estonia)'), (16907, 'https://ror.org/02afbgp72', 'no_lang_code', 1, 'https://ror.org/02afbgp72 Construcciones y Auxiliar de Ferrocarriles (Spain)'), (16908, 'https://ror.org/02afhdg85', 'no_lang_code', 1, 'https://ror.org/02afhdg85 Indutherm Erwärmungsanlagen (Germany)'), (16909, 'https://ror.org/02ah3w196', 'en', 1, 'https://ror.org/02ah3w196 Leather Archives and Museum'), (16910, 'https://ror.org/02akpbq50', 'en', 1, 'https://ror.org/02akpbq50 Circus World Museum'), (16911, 'https://ror.org/02amd0s90', 'en', 1, 'https://ror.org/02amd0s90 Tippecanoe County Public Library'), (16912, 'https://ror.org/02appya76', 'no_lang_code', 1, 'https://ror.org/02appya76 Bayou Biolabs'), (16913, 'https://ror.org/02aqjhx29', 'no_lang_code', 1, 'https://ror.org/02aqjhx29 Genewave (France)'), (16914, 'https://ror.org/02ar7h206', 'en', 1, 'https://ror.org/02ar7h206 Las Cumbres Observatory Global Telescope Network'), (16915, 'https://ror.org/02av6zw72', 'en', 1, 'https://ror.org/02av6zw72 Danish Geodata Agency'), (16916, 'https://ror.org/02awt9052', 'no_lang_code', 1, 'https://ror.org/02awt9052 ControlVet (Portugal)'), (16917, 'https://ror.org/02axw6z74', 'no_lang_code', 1, 'https://ror.org/02axw6z74 Biaffin (Germany)'), (16918, 'https://ror.org/02ay1zt80', 'en', 1, 'https://ror.org/02ay1zt80 European Institute for Participatory Media'), (16919, 'https://ror.org/02azyxf26', 'no_lang_code', 1, 'https://ror.org/02azyxf26 TechnipFMC (France)'), (16920, 'https://ror.org/02b108x81', 'en', 1, 'https://ror.org/02b108x81 University of St. Augustine for Health Sciences'), (16921, 'https://ror.org/02b173w12', 'no_lang_code', 1, 'https://ror.org/02b173w12 MiTeGen (United States)'); INSERT INTO `rors` VALUES (16922, 'https://ror.org/02b1fy379', 'en', 1, 'https://ror.org/02b1fy379 European Centre for Soft Computing'), (16923, 'https://ror.org/02b3e4g90', 'no_lang_code', 1, 'https://ror.org/02b3e4g90 DZP Technologies (United Kingdom)'), (16924, 'https://ror.org/02b3ny291', 'no_lang_code', 1, 'https://ror.org/02b3ny291 Dekra (Germany)'), (16925, 'https://ror.org/02b489s27', 'no_lang_code', 1, 'https://ror.org/02b489s27 Hunosa (Spain)'), (16926, 'https://ror.org/02b4afs97', 'pt', 1, 'https://ror.org/02b4afs97 IrRADIARE'), (16927, 'https://ror.org/02b4c4128', 'no_lang_code', 1, 'https://ror.org/02b4c4128 Babraham Bioscience Technologies (United Kingdom)'), (16928, 'https://ror.org/02b76pd77', 'no_lang_code', 1, 'https://ror.org/02b76pd77 M3 Systems (France)'), (16929, 'https://ror.org/02b78e269', 'en', 1, 'https://ror.org/02b78e269 Susan G Komen Greater Atlanta'), (16930, 'https://ror.org/02ba81j73', 'no_lang_code', 1, 'https://ror.org/02ba81j73 ViOptix (United States)'), (16931, 'https://ror.org/02bah0q54', 'en', 1, 'https://ror.org/02bah0q54 Clackamas County Children''s Commission Head Start'), (16932, 'https://ror.org/02bap3480', 'no_lang_code', 1, 'https://ror.org/02bap3480 BioTronics (United States)'), (16933, 'https://ror.org/02bb3e325', 'no_lang_code', 1, 'https://ror.org/02bb3e325 Threshold Pharmaceuticals (United States)'), (16934, 'https://ror.org/02bb6wb14', 'en', 1, 'https://ror.org/02bb6wb14 Translational Research in Oncology'), (16935, 'https://ror.org/02bbana41', 'en', 1, 'https://ror.org/02bbana41 Sharp HealthCare Foundation'), (16936, 'https://ror.org/02bbd5539', 'no_lang_code', 1, 'https://ror.org/02bbd5539 AT&T (United States)'), (16937, 'https://ror.org/02bg3j696', 'no_lang_code', 1, 'https://ror.org/02bg3j696 Maxtech (Canada)'), (16938, 'https://ror.org/02bg76z40', 'no_lang_code', 1, 'https://ror.org/02bg76z40 Eikos (United States)'), (16939, 'https://ror.org/02bg8sy94', 'no_lang_code', 1, 'https://ror.org/02bg8sy94 BodiMojo'), (16940, 'https://ror.org/02bm7dx75', 'en', 1, 'https://ror.org/02bm7dx75 SeriousFun Children''s Network'), (16941, 'https://ror.org/02bnjsr23', 'en', 1, 'https://ror.org/02bnjsr23 CancerConnects'), (16942, 'https://ror.org/02bpry443', 'en', 1, 'https://ror.org/02bpry443 Indiana Historical Society'), (16943, 'https://ror.org/02breff74', 'no_lang_code', 1, 'https://ror.org/02breff74 Shook, Hardy & Bacon (United States)'), (16944, 'https://ror.org/02brx1k43', 'no_lang_code', 1, 'https://ror.org/02brx1k43 Interfusion Services (Cyprus)'), (16945, 'https://ror.org/02bspsv67', 'no_lang_code', 1, 'https://ror.org/02bspsv67 Synergenz BioScience (United States)'), (16946, 'https://ror.org/02bxtrk46', 'en', 1, 'https://ror.org/02bxtrk46 Institute of Precision Mechanics'), (16947, 'https://ror.org/02by9nb62', 'en', 1, 'https://ror.org/02by9nb62 Diocese of Brooklyn'), (16948, 'https://ror.org/02bymts86', 'en', 1, 'https://ror.org/02bymts86 Academic and Research Network of Slovenia'), (16949, 'https://ror.org/02c1kz490', 'no_lang_code', 1, 'https://ror.org/02c1kz490 Ellemedia Technologies (Greece)'), (16950, 'https://ror.org/02c2rwe77', 'no_lang_code', 1, 'https://ror.org/02c2rwe77 Innovation Energie Développement (France)'), (16951, 'https://ror.org/02c3k1665', 'no_lang_code', 1, 'https://ror.org/02c3k1665 Fomterv (Hungary)'), (16952, 'https://ror.org/02c4s5t61', 'en', 1, 'https://ror.org/02c4s5t61 Wild for Life'), (16953, 'https://ror.org/02c684e48', 'no_lang_code', 1, 'https://ror.org/02c684e48 Elbit Systems (Israel)'), (16954, 'https://ror.org/02c7f4b44', 'no_lang_code', 1, 'https://ror.org/02c7f4b44 Lesswire (Germany)'), (16955, 'https://ror.org/02c8yyx65', 'en', 1, 'https://ror.org/02c8yyx65 Delaware Academy of Medicine'), (16956, 'https://ror.org/02caxje77', 'no_lang_code', 1, 'https://ror.org/02caxje77 Van Putten-Gas Energy Observatory (Netherlands)'), (16957, 'https://ror.org/02ccjyn18', 'en', 1, 'https://ror.org/02ccjyn18 Wisconsin Veterans Museum'), (16958, 'https://ror.org/02cfjxd09', 'no_lang_code', 1, 'https://ror.org/02cfjxd09 Fiday Gestion (France)'), (16959, 'https://ror.org/02cjv3666', 'en', 1, 'https://ror.org/02cjv3666 Shaker Heights Public Library'), (16960, 'https://ror.org/02cn8ky49', 'fr', 1, 'https://ror.org/02cn8ky49 Groupe de Recherche en Agriculture Biologique'), (16961, 'https://ror.org/02crf0z25', 'no_lang_code', 1, 'https://ror.org/02crf0z25 Herry Consult (Austria)'), (16962, 'https://ror.org/02cs65r11', 'en', 1, 'https://ror.org/02cs65r11 State Building & Construction Trades Council of California'), (16963, 'https://ror.org/02ct8rs48', 'en', 1, 'https://ror.org/02ct8rs48 Young Survival Coalition'), (16964, 'https://ror.org/02cwppe53', 'no_lang_code', 1, 'https://ror.org/02cwppe53 Savara Pharmaceuticals (United States)'), (16965, 'https://ror.org/02cyrpr98', 'en', 1, 'https://ror.org/02cyrpr98 Trans Tasman Radiation Oncology Group'), (16966, 'https://ror.org/02d13xg07', 'en', 1, 'https://ror.org/02d13xg07 Upper Arlington Public Library'), (16967, 'https://ror.org/02d1pme30', 'no_lang_code', 1, 'https://ror.org/02d1pme30 Kirkstall (United Kingdom)'), (16968, 'https://ror.org/02d21rw53', 'en', 1, 'https://ror.org/02d21rw53 Rockingham County Schools'), (16969, 'https://ror.org/02d290r06', 'en', 1, 'https://ror.org/02d290r06 Swedish Research Council for Health Working Life and Welfare'), (16970, 'https://ror.org/02d33yc31', 'no_lang_code', 1, 'https://ror.org/02d33yc31 Smartrac (Germany)'), (16971, 'https://ror.org/02d6dfr74', 'no_lang_code', 1, 'https://ror.org/02d6dfr74 Bettergy (United States)'), (16972, 'https://ror.org/02d7e3b90', 'en', 1, 'https://ror.org/02d7e3b90 Human Services Research Institute'), (16973, 'https://ror.org/02dahmt29', 'no_lang_code', 1, 'https://ror.org/02dahmt29 Humacyte (United States)'), (16974, 'https://ror.org/02db0kh50', 'en', 1, 'https://ror.org/02db0kh50 Istituto di Ricerca sulle Acque Water Research Institute'), (16975, 'https://ror.org/02deb7v37', 'en', 1, 'https://ror.org/02deb7v37 Ohio Attorney General''s Office'), (16976, 'https://ror.org/02df22b40', 'en', 1, 'https://ror.org/02df22b40 US Human Rights Network'), (16977, 'https://ror.org/02dgk8j41', 'fr', 1, 'https://ror.org/02dgk8j41 Centre de Recherche en Nutrition Humaine Rhône-Alpes'), (16978, 'https://ror.org/02dhj0p43', 'en', 1, 'https://ror.org/02dhj0p43 Sinha Institute of Medical Science & Technology'), (16979, 'https://ror.org/02dhzaa20', 'en', 1, 'https://ror.org/02dhzaa20 Swope Art Museum'), (16980, 'https://ror.org/02dj2h444', 'no_lang_code', 1, 'https://ror.org/02dj2h444 Compagnie d''aménagement du Bas-Rhône et du Languedoc Groupe BRL (France)'), (16981, 'https://ror.org/02dmsrt53', 'en', 1, 'https://ror.org/02dmsrt53 Eesti-Rootsi Vaimse Tervise ja Suitsidoloogia Instituut Estonian-Swedish Mental Health and Suicidology Institute'), (16982, 'https://ror.org/02dnajs12', 'no_lang_code', 1, 'https://ror.org/02dnajs12 Koppert (Netherlands)'), (16983, 'https://ror.org/02dp3xf77', 'en', 1, 'https://ror.org/02dp3xf77 European Society for Therapeutic Radiology and Oncology'), (16984, 'https://ror.org/02dsng071', 'no_lang_code', 1, 'https://ror.org/02dsng071 Inmatech (United States)'), (16985, 'https://ror.org/02dteh969', 'en', 1, 'https://ror.org/02dteh969 Centre For Development Studies'), (16986, 'https://ror.org/02dzg8324', 'no_lang_code', 1, 'https://ror.org/02dzg8324 Kaleido Technology (Denmark)'), (16987, 'https://ror.org/02dzmwb51', 'en', 1, 'https://ror.org/02dzmwb51 Decatur Public Library'), (16988, 'https://ror.org/02e10hc87', 'no_lang_code', 1, 'https://ror.org/02e10hc87 Centronic (United Kingdom)'), (16989, 'https://ror.org/02e1f2f58', 'en', 1, 'https://ror.org/02e1f2f58 Wyoming Services for Independent Living'), (16990, 'https://ror.org/02e1wjw63', 'no_lang_code', 1, 'https://ror.org/02e1wjw63 Abcam (United States)'), (16991, 'https://ror.org/02e2bht63', 'en', 1, 'https://ror.org/02e2bht63 Monroe County Library System'), (16992, 'https://ror.org/02e3hdx05', 'en', 1, 'https://ror.org/02e3hdx05 Hochschule Trier Trier University of Applied Sciences'), (16993, 'https://ror.org/02e3yqk73', 'no_lang_code', 1, 'https://ror.org/02e3yqk73 5M (Czechia)'), (16994, 'https://ror.org/02e5q2963', 'en', 1, 'https://ror.org/02e5q2963 Institute for Higher Education Policy'), (16995, 'https://ror.org/02e71h867', 'no_lang_code', 1, 'https://ror.org/02e71h867 Beckers (United Kingdom)'), (16996, 'https://ror.org/02e7m0v19', 'en', 1, 'https://ror.org/02e7m0v19 Roc Institute for Arts and Sciences'), (16997, 'https://ror.org/02e97q397', 'no_lang_code', 1, 'https://ror.org/02e97q397 Gökser Makina (Turkey)'), (16998, 'https://ror.org/02easmg06', 'no_lang_code', 1, 'https://ror.org/02easmg06 Guilford Press (United States)'), (16999, 'https://ror.org/02eat2165', 'no_lang_code', 1, 'https://ror.org/02eat2165 Bristol Industrial and Research Associates (United Kingdom)'), (17000, 'https://ror.org/02ebmk238', 'sl', 1, 'https://ror.org/02ebmk238 Agencija za Radioaktivne Odpadke'), (17001, 'https://ror.org/02ebmva22', 'no_lang_code', 1, 'https://ror.org/02ebmva22 Global Phasing (United Kingdom)'), (17002, 'https://ror.org/02ec2g004', 'en', 1, 'https://ror.org/02ec2g004 Cranbrook Institute of Science'), (17003, 'https://ror.org/02ecpn164', 'en', 1, 'https://ror.org/02ecpn164 Quincy Museum'), (17004, 'https://ror.org/02edcq094', 'no_lang_code', 1, 'https://ror.org/02edcq094 Big Horn Valve'), (17005, 'https://ror.org/02edkny32', 'fr', 1, 'https://ror.org/02edkny32 Conseil Européen de l''Industrie des Peintures des Encres d''Imprimerie et des Couleurs d''Art'), (17006, 'https://ror.org/02ee95325', 'en', 1, 'https://ror.org/02ee95325 Swedish Family Medicine Residency - Cherry Hill'), (17007, 'https://ror.org/02eeqxc82', 'en', 1, 'https://ror.org/02eeqxc82 Centre de Développement des Energies Renouvelables Renewable Energy Development Center'), (17008, 'https://ror.org/02efwpm71', 'fr', 1, 'https://ror.org/02efwpm71 Belgian Road Safety Institute Belgisch Instituut Voor de Verkeersveiligheid Institut Belge pour la Sécurité Routière'), (17009, 'https://ror.org/02efxmp95', 'no_lang_code', 1, 'https://ror.org/02efxmp95 AT&T (Netherlands)'), (17010, 'https://ror.org/02ejjtg26', 'en', 1, 'https://ror.org/02ejjtg26 Pediatric Oncology Support Team'), (17011, 'https://ror.org/02ejtm324', 'en', 1, 'https://ror.org/02ejtm324 Southwest Wheelchair Athletic Association'), (17012, 'https://ror.org/02em5fs68', 'en', 1, 'https://ror.org/02em5fs68 Rodman Public Library'), (17013, 'https://ror.org/02enqcp25', 'no_lang_code', 1, 'https://ror.org/02enqcp25 Limbs Alive (United Kingdom)'), (17014, 'https://ror.org/02ep5c830', 'en', 1, 'https://ror.org/02ep5c830 Pontifical College Josephinum'), (17015, 'https://ror.org/02epzsg75', 'no_lang_code', 1, 'https://ror.org/02epzsg75 Domologic (Germany)'), (17016, 'https://ror.org/02eqjce94', 'no_lang_code', 1, 'https://ror.org/02eqjce94 Betonsteinwerk Heide (Germany)'), (17017, 'https://ror.org/02eqp9f22', 'no_lang_code', 1, 'https://ror.org/02eqp9f22 Cartes Bancaires (France)'), (17018, 'https://ror.org/02evrz660', 'no_lang_code', 1, 'https://ror.org/02evrz660 Beacon Energy (United Kingdom)'), (17019, 'https://ror.org/02ex8ca13', 'en', 1, 'https://ror.org/02ex8ca13 Southbury Clinic'), (17020, 'https://ror.org/02eyp1631', 'en', 1, 'https://ror.org/02eyp1631 South Carolina Department of Corrections'), (17021, 'https://ror.org/02f013h18', 'it', 1, 'https://ror.org/02f013h18 Cineca'), (17022, 'https://ror.org/02f0m7778', 'no_lang_code', 1, 'https://ror.org/02f0m7778 Fomento de Construcciones y Contratas (Spain)'), (17023, 'https://ror.org/02f33fz20', 'no_lang_code', 1, 'https://ror.org/02f33fz20 AvidCare (United States)'), (17024, 'https://ror.org/02f4qmp67', 'no_lang_code', 1, 'https://ror.org/02f4qmp67 Aratome (United States)'), (17025, 'https://ror.org/02f5yhp51', 'no_lang_code', 1, 'https://ror.org/02f5yhp51 Aero Sekur (Italy)'), (17026, 'https://ror.org/02f6qgf95', 'en', 1, 'https://ror.org/02f6qgf95 Entertainment Industries Council'), (17027, 'https://ror.org/02f6vcb37', 'en', 1, 'https://ror.org/02f6vcb37 Martin Township Public Library'), (17028, 'https://ror.org/02fb3ta41', 'no_lang_code', 1, 'https://ror.org/02fb3ta41 Matres (Italy)'), (17029, 'https://ror.org/02ff40f54', 'en', 1, 'https://ror.org/02ff40f54 Grand Rapids Community College'), (17030, 'https://ror.org/02ff6cq09', 'no_lang_code', 1, 'https://ror.org/02ff6cq09 Crystallume (United States)'), (17031, 'https://ror.org/02ff7k505', 'en', 1, 'https://ror.org/02ff7k505 R.E. Kavetsky Institute of Experimental Pathology, Oncology and Radiobiology Інститут експериментальної патології, онкології і радіобіології ім. Р.Є. Кавецького'), (17032, 'https://ror.org/02ff93068', 'no_lang_code', 1, 'https://ror.org/02ff93068 Wigs 4 Kids'), (17033, 'https://ror.org/02fhjj867', 'en', 1, 'https://ror.org/02fhjj867 American Crystallographic Association'), (17034, 'https://ror.org/02fhmsd26', 'en', 1, 'https://ror.org/02fhmsd26 Ursuline College'), (17035, 'https://ror.org/02fhnan19', 'no_lang_code', 1, 'https://ror.org/02fhnan19 Acpharis'), (17036, 'https://ror.org/02fj83z08', 'en', 1, 'https://ror.org/02fj83z08 Elmira College'), (17037, 'https://ror.org/02fkh1w66', 'en', 1, 'https://ror.org/02fkh1w66 Health Affairs'), (17038, 'https://ror.org/02fnbv092', 'en', 1, 'https://ror.org/02fnbv092 Quest for Life Foundation'), (17039, 'https://ror.org/02fpfg069', 'no_lang_code', 1, 'https://ror.org/02fpfg069 International Automotive Desig (United Kingdom)'), (17040, 'https://ror.org/02fq4p941', 'en', 1, 'https://ror.org/02fq4p941 Association Européenne pour la Biomasse European Biomass Association'), (17041, 'https://ror.org/02fs2bc65', 'no_lang_code', 1, 'https://ror.org/02fs2bc65 Discovery Laboratories (United States)'), (17042, 'https://ror.org/02fs6en72', 'en', 1, 'https://ror.org/02fs6en72 St. Joseph''s College New York'), (17043, 'https://ror.org/02fsh0r13', 'en', 1, 'https://ror.org/02fsh0r13 China National Center for Biotechnology Development'), (17044, 'https://ror.org/02ftsrc92', 'no_lang_code', 1, 'https://ror.org/02ftsrc92 Celulose Beira Industrial (Portugal)'), (17045, 'https://ror.org/02fwpc710', 'no_lang_code', 1, 'https://ror.org/02fwpc710 Esaote (Netherlands)'), (17046, 'https://ror.org/02fxy5722', 'en', 1, 'https://ror.org/02fxy5722 One Nucleus'), (17047, 'https://ror.org/02fzn1g05', 'no_lang_code', 1, 'https://ror.org/02fzn1g05 Contipro (Czechia)'), (17048, 'https://ror.org/02g2wm361', 'es', 1, 'https://ror.org/02g2wm361 Centro de Investigacion de las Telecomunicaciones'), (17049, 'https://ror.org/02g2wxz83', 'no_lang_code', 1, 'https://ror.org/02g2wxz83 ERBA Diagnostics (United States)'), (17050, 'https://ror.org/02g3cdg42', 'en', 1, 'https://ror.org/02g3cdg42 Butte County Department of Behavioral Health'), (17051, 'https://ror.org/02g570e80', 'no_lang_code', 1, 'https://ror.org/02g570e80 CycloLab (Hungary)'), (17052, 'https://ror.org/02g5mks94', 'no_lang_code', 1, 'https://ror.org/02g5mks94 Targeted Cell Therapies (United States)'), (17053, 'https://ror.org/02g6jra37', 'no_lang_code', 1, 'https://ror.org/02g6jra37 NJ International (United States)'), (17054, 'https://ror.org/02g7ar447', 'en', 1, 'https://ror.org/02g7ar447 Chicago History Museum'), (17055, 'https://ror.org/02gbcwx62', 'no_lang_code', 1, 'https://ror.org/02gbcwx62 Pulmatrix (United States)'), (17056, 'https://ror.org/02gdsvx03', 'no_lang_code', 1, 'https://ror.org/02gdsvx03 3M (United Kingdom)'), (17057, 'https://ror.org/02gewd711', 'no_lang_code', 1, 'https://ror.org/02gewd711 Inter-Euro Technology'), (17058, 'https://ror.org/02gj10y57', 'en', 1, 'https://ror.org/02gj10y57 Glenview Public Library'), (17059, 'https://ror.org/02gjn4306', 'en', 1, 'https://ror.org/02gjn4306 Banco Interamericano de Desarrollo Banco Interamericano de Desenvolvimento Banque interaméricaine de développement Inter-American Development Bank'), (17060, 'https://ror.org/02gkgrd84', 'en', 1, 'https://ror.org/02gkgrd84 Abastumani Astrophysical Observatory აბასთუმნის ასტროფიზიკური ობსერვატორია'), (17061, 'https://ror.org/02gncxw24', 'en', 1, 'https://ror.org/02gncxw24 Smith Center for Healing and the Arts'), (17062, 'https://ror.org/02gnhjw76', 'no_lang_code', 1, 'https://ror.org/02gnhjw76 Lockheed Martin (United Kingdom)'), (17063, 'https://ror.org/02gt5pz54', 'no_lang_code', 1, 'https://ror.org/02gt5pz54 IonEdge Corporation (United States)'), (17064, 'https://ror.org/02gv17446', 'no_lang_code', 1, 'https://ror.org/02gv17446 Associated Bonded Cables (United Kingdom)'), (17065, 'https://ror.org/02gwywt13', 'en', 1, 'https://ror.org/02gwywt13 Allies with Families'), (17066, 'https://ror.org/02gyj7q16', 'en', 1, 'https://ror.org/02gyj7q16 YouthWorks'), (17067, 'https://ror.org/02h1ae871', 'no_lang_code', 1, 'https://ror.org/02h1ae871 Alliant Energy (United States)'), (17068, 'https://ror.org/02h3mfv55', 'en', 1, 'https://ror.org/02h3mfv55 Lincoln Christian University'), (17069, 'https://ror.org/02h3q9f84', 'no_lang_code', 1, 'https://ror.org/02h3q9f84 Intertanko (Norway)'), (17070, 'https://ror.org/02h5f8v93', 'en', 1, 'https://ror.org/02h5f8v93 Regional Cancer Center'), (17071, 'https://ror.org/02h6vef88', 'en', 1, 'https://ror.org/02h6vef88 Institute for Analytical Instrumentation Институт аналитического приборостроения'), (17072, 'https://ror.org/02h8ngt70', 'en', 1, 'https://ror.org/02h8ngt70 Institutul National Victor Babes, Victor Babes Institute'), (17073, 'https://ror.org/02h98mq12', 'en', 1, 'https://ror.org/02h98mq12 Peoria Public Library'), (17074, 'https://ror.org/02ha1gc65', 'en', 1, 'https://ror.org/02ha1gc65 West Central Georgia Cancer Coalition'), (17075, 'https://ror.org/02hc6j080', 'no_lang_code', 1, 'https://ror.org/02hc6j080 Blinq Network (Canada)'), (17076, 'https://ror.org/02hk0z764', 'en', 1, 'https://ror.org/02hk0z764 Side by Side'), (17077, 'https://ror.org/02hkdv109', 'no_lang_code', 1, 'https://ror.org/02hkdv109 Bolloré (France)'), (17078, 'https://ror.org/02hkvad16', 'en', 1, 'https://ror.org/02hkvad16 Spinal Muscular Atrophy Foundation'), (17079, 'https://ror.org/02hmgg345', 'it', 1, 'https://ror.org/02hmgg345 INiziative Conciarie ASsociate'), (17080, 'https://ror.org/02hmy2876', 'no_lang_code', 1, 'https://ror.org/02hmy2876 Aethlon Medical (United States)'), (17081, 'https://ror.org/02hnr5x72', 'no_lang_code', 1, 'https://ror.org/02hnr5x72 Harman (Germany)'), (17082, 'https://ror.org/02hrr9v50', 'en', 1, 'https://ror.org/02hrr9v50 Machine Science'), (17083, 'https://ror.org/02hs8rd37', 'no_lang_code', 1, 'https://ror.org/02hs8rd37 Agrico (Netherlands)'), (17084, 'https://ror.org/02hswss60', 'en', 1, 'https://ror.org/02hswss60 Fairfax Neonatal Associates'), (17085, 'https://ror.org/02ht8yh85', 'en', 1, 'https://ror.org/02ht8yh85 International Society for Environmental Protection'), (17086, 'https://ror.org/02htcra34', 'en', 1, 'https://ror.org/02htcra34 Conference of Radiation Control Program Directors'), (17087, 'https://ror.org/02hvkfj85', 'en', 1, 'https://ror.org/02hvkfj85 West Allis Public Library'), (17088, 'https://ror.org/02hwey921', 'no_lang_code', 1, 'https://ror.org/02hwey921 Biolitec (Germany)'), (17089, 'https://ror.org/02hyrh851', 'no_lang_code', 1, 'https://ror.org/02hyrh851 Lallemand (United Kingdom)'), (17090, 'https://ror.org/02hz47643', 'en', 1, 'https://ror.org/02hz47643 Asian Technology Information Program'), (17091, 'https://ror.org/02j0jan18', 'fr', 1, 'https://ror.org/02j0jan18 La Cité Médicale'), (17092, 'https://ror.org/02j3b8k57', 'en', 1, 'https://ror.org/02j3b8k57 Institute of Contemporary Arts'), (17093, 'https://ror.org/02j3h8a82', 'no_lang_code', 1, 'https://ror.org/02j3h8a82 El Corte Inglés (Portugal)'), (17094, 'https://ror.org/02j3ntr89', 'fr', 1, 'https://ror.org/02j3ntr89 Boîte à science'), (17095, 'https://ror.org/02j42wf49', 'en', 1, 'https://ror.org/02j42wf49 Cuyahoga County Public Library'), (17096, 'https://ror.org/02j4v2965', 'en', 1, 'https://ror.org/02j4v2965 Career Trek'), (17097, 'https://ror.org/02j6gm739', 'en', 1, 'https://ror.org/02j6gm739 Max Planck Institute for Solar System Research Max-Planck-Institut für Sonnensystemforschung'), (17098, 'https://ror.org/02j798m12', 'en', 1, 'https://ror.org/02j798m12 American Bankers Association'), (17099, 'https://ror.org/02j809324', 'en', 1, 'https://ror.org/02j809324 Kanlo Consultants'), (17100, 'https://ror.org/02j83q337', 'en', 1, 'https://ror.org/02j83q337 Gus Foundation'), (17101, 'https://ror.org/02j8e5x02', 'en', 1, 'https://ror.org/02j8e5x02 Spring Arbor University'), (17102, 'https://ror.org/02j97b022', 'en', 1, 'https://ror.org/02j97b022 WISE & Healthy Aging'), (17103, 'https://ror.org/02j9tgd14', 'en', 1, 'https://ror.org/02j9tgd14 European Federation of Allergy and Airways Diseases Patients Associations'), (17104, 'https://ror.org/02jatdd65', 'en', 1, 'https://ror.org/02jatdd65 American Theological Library Association'), (17105, 'https://ror.org/02jbnyk55', 'no_lang_code', 1, 'https://ror.org/02jbnyk55 Active Spectrum (United States)'), (17106, 'https://ror.org/02jcwe568', 'en', 1, 'https://ror.org/02jcwe568 Tarrant County Challenge'), (17107, 'https://ror.org/02jcwf181', 'en', 1, 'https://ror.org/02jcwf181 Creative Scotland'), (17108, 'https://ror.org/02jdjd592', 'en', 1, 'https://ror.org/02jdjd592 White Earth Nation'), (17109, 'https://ror.org/02jfa4f02', 'no_lang_code', 1, 'https://ror.org/02jfa4f02 Collagen Medical (United States)'), (17110, 'https://ror.org/02jfqby89', 'en', 1, 'https://ror.org/02jfqby89 European Disability Forum'), (17111, 'https://ror.org/02jfsex62', 'no_lang_code', 1, 'https://ror.org/02jfsex62 TransCure BioServices (France)'), (17112, 'https://ror.org/02jg7b497', 'en', 1, 'https://ror.org/02jg7b497 Ukrainian Museum-Archives'), (17113, 'https://ror.org/02jgekf05', 'no_lang_code', 1, 'https://ror.org/02jgekf05 Ibstock Brick (United Kingdom)'), (17114, 'https://ror.org/02jkzw668', 'no_lang_code', 1, 'https://ror.org/02jkzw668 CompleGen (United States)'), (17115, 'https://ror.org/02jmfhf57', 'no_lang_code', 1, 'https://ror.org/02jmfhf57 Biopure (United States)'), (17116, 'https://ror.org/02jn6na36', 'no_lang_code', 1, 'https://ror.org/02jn6na36 Finsa (Italy)'), (17117, 'https://ror.org/02jpn1774', 'en', 1, 'https://ror.org/02jpn1774 Federal Trade Commission'), (17118, 'https://ror.org/02jv94t03', 'no_lang_code', 1, 'https://ror.org/02jv94t03 e2e Services (United Kingdom)'), (17119, 'https://ror.org/02jv9nh47', 'en', 1, 'https://ror.org/02jv9nh47 Académie de marine du massachusetts Massachusetts Maritime Academy'), (17120, 'https://ror.org/02jvqj155', 'en', 1, 'https://ror.org/02jvqj155 Concordia University Chicago Université concordia de chicago'), (17121, 'https://ror.org/02jvwwy41', 'en', 1, 'https://ror.org/02jvwwy41 Biblioteca Nacional de Portugal National Library of Portugal'), (17122, 'https://ror.org/02jx5cp03', 'no_lang_code', 1, 'https://ror.org/02jx5cp03 Cen Group (United Kingdom)'), (17123, 'https://ror.org/02jxaxt71', 'no_lang_code', 1, 'https://ror.org/02jxaxt71 Hyperstone (Germany)'), (17124, 'https://ror.org/02k0pxf68', 'en', 1, 'https://ror.org/02k0pxf68 Sacramento Asian Pacific Chamber of Commerce'), (17125, 'https://ror.org/02k16sh85', 'en', 1, 'https://ror.org/02k16sh85 Clark State Community College'), (17126, 'https://ror.org/02k1jxv55', 'en', 1, 'https://ror.org/02k1jxv55 Southern Rural Black Women''s Initiative'), (17127, 'https://ror.org/02k3w5n89', 'en', 1, 'https://ror.org/02k3w5n89 Agder Research Agderforskning'), (17128, 'https://ror.org/02k6x6h05', 'no_lang_code', 1, 'https://ror.org/02k6x6h05 Harmonia (United States)'), (17129, 'https://ror.org/02k733j94', 'en', 1, 'https://ror.org/02k733j94 Thrive Together'), (17130, 'https://ror.org/02k74w593', 'en', 1, 'https://ror.org/02k74w593 Irvine Unified School District'), (17131, 'https://ror.org/02k784406', 'no_lang_code', 1, 'https://ror.org/02k784406 Inpria (United States)'), (17132, 'https://ror.org/02k7wq289', 'no_lang_code', 1, 'https://ror.org/02k7wq289 3H Biomedical (Sweden)'), (17133, 'https://ror.org/02k8ce792', 'no_lang_code', 1, 'https://ror.org/02k8ce792 Amantys (United Kingdom)'), (17134, 'https://ror.org/02k90w379', 'no_lang_code', 1, 'https://ror.org/02k90w379 Invoke Labs (Canada)'), (17135, 'https://ror.org/02k9d9y07', 'en', 1, 'https://ror.org/02k9d9y07 Academy of Management'), (17136, 'https://ror.org/02k9jm268', 'fr', 1, 'https://ror.org/02k9jm268 Agence Régionale d''évaluation Environnement et Climat'), (17137, 'https://ror.org/02k9pbz03', 'no_lang_code', 1, 'https://ror.org/02k9pbz03 ACIC (Belgium)'), (17138, 'https://ror.org/02kab2r08', 'en', 1, 'https://ror.org/02kab2r08 Health Wagon'), (17139, 'https://ror.org/02kajxp71', 'en', 1, 'https://ror.org/02kajxp71 National Archives of Hungary'), (17140, 'https://ror.org/02ke8g602', 'en', 1, 'https://ror.org/02ke8g602 Ralph Lauren Center for Cancer Care and Prevention'), (17141, 'https://ror.org/02kexh790', 'no_lang_code', 1, 'https://ror.org/02kexh790 Missouri Breaks Industries Research (United States)'), (17142, 'https://ror.org/02kf1n146', 'no_lang_code', 1, 'https://ror.org/02kf1n146 Poweo (France)'), (17143, 'https://ror.org/02kfzvh91', 'en', 1, 'https://ror.org/02kfzvh91 Fraunhofer Institute for Solar Energy Systems Fraunhofer-Institut für Solare Energiesysteme'), (17144, 'https://ror.org/02kg29r51', 'no_lang_code', 1, 'https://ror.org/02kg29r51 Kampakas (Greece)'), (17145, 'https://ror.org/02khpps76', 'no_lang_code', 1, 'https://ror.org/02khpps76 Institut für Gebirgsmechanik (Germany)'), (17146, 'https://ror.org/02khq4z72', 'no_lang_code', 1, 'https://ror.org/02khq4z72 Kelvin Nanotechnology (United Kingdom)'), (17147, 'https://ror.org/02kjgzx32', 'en', 1, 'https://ror.org/02kjgzx32 Chrysalis House'), (17148, 'https://ror.org/02kmywe48', 'no_lang_code', 1, 'https://ror.org/02kmywe48 Agilent Technologies (Austria)'), (17149, 'https://ror.org/02knxrg60', 'en', 1, 'https://ror.org/02knxrg60 German Marine Research Consortium Konsortium Deutsche Meeresforschung'), (17150, 'https://ror.org/02kq40n08', 'no_lang_code', 1, 'https://ror.org/02kq40n08 Earlens (United States)'), (17151, 'https://ror.org/02kq57h59', 'no_lang_code', 1, 'https://ror.org/02kq57h59 Anco Engineers (United States)'), (17152, 'https://ror.org/02krpaf84', 'en', 1, 'https://ror.org/02krpaf84 Second Harvest Food Bank'), (17153, 'https://ror.org/02ks97v71', 'no_lang_code', 1, 'https://ror.org/02ks97v71 Human Reliability (United Kingdom)'), (17154, 'https://ror.org/02ktbzt22', 'no_lang_code', 1, 'https://ror.org/02ktbzt22 JSTOR'), (17155, 'https://ror.org/02kvbnm84', 'en', 1, 'https://ror.org/02kvbnm84 Sutter Santa Rosa Regional Hospital'), (17156, 'https://ror.org/02kx1jy33', 'no_lang_code', 1, 'https://ror.org/02kx1jy33 Lyven (France)'), (17157, 'https://ror.org/02kxemb23', 'en', 1, 'https://ror.org/02kxemb23 Jefferson County Department of Health'), (17158, 'https://ror.org/02kxx1c93', 'en', 1, 'https://ror.org/02kxx1c93 Holmes Community College'), (17159, 'https://ror.org/02kybxa90', 'en', 1, 'https://ror.org/02kybxa90 Cleveland Public Library'), (17160, 'https://ror.org/02m0e8z16', 'en', 1, 'https://ror.org/02m0e8z16 Thousand Waves Foundation'), (17161, 'https://ror.org/02m0g1n06', 'en', 1, 'https://ror.org/02m0g1n06 VanderCook College of Music'), (17162, 'https://ror.org/02m0s8558', 'no_lang_code', 1, 'https://ror.org/02m0s8558 Ennovatis (Germany)'), (17163, 'https://ror.org/02m388s04', 'en', 1, 'https://ror.org/02m388s04 Department of Atomic Energy परमाणु ऊर्जा विभाग அணு சக்தித்துறை ആണവോർജ്ജ വകുപ്പ്'), (17164, 'https://ror.org/02m39mw39', 'no_lang_code', 1, 'https://ror.org/02m39mw39 Geodiscover (Portugal)'), (17165, 'https://ror.org/02m6s1q30', 'en', 1, 'https://ror.org/02m6s1q30 Pennsylvania Academic Library Consortium'), (17166, 'https://ror.org/02md5ab07', 'en', 1, 'https://ror.org/02md5ab07 American Entomological Institute'), (17167, 'https://ror.org/02mf2qw78', 'no_lang_code', 1, 'https://ror.org/02mf2qw78 Toshiba (France)'), (17168, 'https://ror.org/02mh9jb68', 'sr', 1, 'https://ror.org/02mh9jb68 Creative Educational Centre Kreativno Edukativni Centar'), (17169, 'https://ror.org/02mhagg83', 'en', 1, 'https://ror.org/02mhagg83 Yaddo'), (17170, 'https://ror.org/02mkmrt04', 'no_lang_code', 1, 'https://ror.org/02mkmrt04 Cryogel (France)'), (17171, 'https://ror.org/02mkscs58', 'no_lang_code', 1, 'https://ror.org/02mkscs58 Viasat (Switzerland)'), (17172, 'https://ror.org/02mn0vt57', 'fr', 1, 'https://ror.org/02mn0vt57 Institut de l''Information Scientifique et Technique Institute of Scientific and Technical Information'), (17173, 'https://ror.org/02msncq66', 'en', 1, 'https://ror.org/02msncq66 Missouri Valley College'), (17174, 'https://ror.org/02mt4ht57', 'en', 1, 'https://ror.org/02mt4ht57 Saga Women''s Junior College 佐賀女子短期大学'), (17175, 'https://ror.org/02mxfc935', 'no_lang_code', 1, 'https://ror.org/02mxfc935 Andermatt Biocontrol (Switzerland)'), (17176, 'https://ror.org/02myn8n47', 'en', 1, 'https://ror.org/02myn8n47 Todor Kableshkov University of Transport'), (17177, 'https://ror.org/02mz79w21', 'en', 1, 'https://ror.org/02mz79w21 Austrian Road Safety Board Kuratorium fuer Verkehrssicherheit'), (17178, 'https://ror.org/02mzsdx16', 'no_lang_code', 1, 'https://ror.org/02mzsdx16 Lowri Beck (United Kingdom)'), (17179, 'https://ror.org/02n226v23', 'no_lang_code', 1, 'https://ror.org/02n226v23 Bruxton (United States)'), (17180, 'https://ror.org/02n27h954', 'en', 1, 'https://ror.org/02n27h954 American Academy of Allergy, Asthma and Immunology'), (17181, 'https://ror.org/02n43mq92', 'en', 1, 'https://ror.org/02n43mq92 St. Charles City County Library District'), (17182, 'https://ror.org/02n5mme38', 'no_lang_code', 1, 'https://ror.org/02n5mme38 Topigs Norsvin (Netherlands)'), (17183, 'https://ror.org/02n80qr18', 'en', 1, 'https://ror.org/02n80qr18 Memorial Hermann Northwest Hospital'), (17184, 'https://ror.org/02na67p17', 'no_lang_code', 1, 'https://ror.org/02na67p17 IBZ - Salzchemie (Germany)'), (17185, 'https://ror.org/02nc81e13', 'no_lang_code', 1, 'https://ror.org/02nc81e13 IBM (Italy)'), (17186, 'https://ror.org/02ndetp66', 'en', 1, 'https://ror.org/02ndetp66 Wheelin'' Team 457'), (17187, 'https://ror.org/02ndzwq27', 'en', 1, 'https://ror.org/02ndzwq27 Foundation for Innovation and Technology Transfer'), (17188, 'https://ror.org/02nf85c88', 'no_lang_code', 1, 'https://ror.org/02nf85c88 Estaleiros Navais de Peniche (Portugal)'), (17189, 'https://ror.org/02ng1r361', 'fr', 1, 'https://ror.org/02ng1r361 Cité des Sciences et de l''Industrie'), (17190, 'https://ror.org/02nmc8040', 'en', 1, 'https://ror.org/02nmc8040 Rochester Rehabilitation Center'), (17191, 'https://ror.org/02nn2g073', 'en', 1, 'https://ror.org/02nn2g073 Aesthetic Surgery Center'), (17192, 'https://ror.org/02nnffk43', 'no_lang_code', 1, 'https://ror.org/02nnffk43 Audiofile (United States)'), (17193, 'https://ror.org/02np3th21', 'en', 1, 'https://ror.org/02np3th21 Europace'), (17194, 'https://ror.org/02npzsh43', 'en', 1, 'https://ror.org/02npzsh43 Providence Health Foundation'), (17195, 'https://ror.org/02nrgrm49', 'no_lang_code', 1, 'https://ror.org/02nrgrm49 Alfa Imaging (Spain)'), (17196, 'https://ror.org/02ntfsb56', 'en', 1, 'https://ror.org/02ntfsb56 Committee on Institutional Cooperation'), (17197, 'https://ror.org/02nv12n94', 'it', 1, 'https://ror.org/02nv12n94 Consorzio del Formaggio Parmigiano-Reggiano'), (17198, 'https://ror.org/02nwxzm09', 'en', 1, 'https://ror.org/02nwxzm09 Lansing Community College'), (17199, 'https://ror.org/02nxb9495', 'en', 1, 'https://ror.org/02nxb9495 Riverside San Bernardino County Indian Health'), (17200, 'https://ror.org/02nxmy513', 'en', 1, 'https://ror.org/02nxmy513 Samuel Simmonds Memorial Hospital'), (17201, 'https://ror.org/02nxw7t86', 'en', 1, 'https://ror.org/02nxw7t86 UCHealth Yampa Valley Medical Center'), (17202, 'https://ror.org/02nyatx59', 'no_lang_code', 1, 'https://ror.org/02nyatx59 Celanese (Germany)'), (17203, 'https://ror.org/02p19yx96', 'no_lang_code', 1, 'https://ror.org/02p19yx96 Luminomics (United States)'), (17204, 'https://ror.org/02p2xd084', 'no_lang_code', 1, 'https://ror.org/02p2xd084 Avidity (United States)'), (17205, 'https://ror.org/02p30c858', 'en', 1, 'https://ror.org/02p30c858 Lakeland Library Cooperative'), (17206, 'https://ror.org/02p43pa18', 'no_lang_code', 1, 'https://ror.org/02p43pa18 Out Front (United States)'), (17207, 'https://ror.org/02p4ctz53', 'no_lang_code', 1, 'https://ror.org/02p4ctz53 Informatica Tecnologie e Servizi (Italy)'), (17208, 'https://ror.org/02p4mks29', 'no_lang_code', 1, 'https://ror.org/02p4mks29 Henry Schein (United States)'), (17209, 'https://ror.org/02p5tqh12', 'no_lang_code', 1, 'https://ror.org/02p5tqh12 Kromek (United Kingdom)'), (17210, 'https://ror.org/02p750640', 'en', 1, 'https://ror.org/02p750640 WellFlorida Council'), (17211, 'https://ror.org/02p7kx729', 'en', 1, 'https://ror.org/02p7kx729 Conference for Food Protection'), (17212, 'https://ror.org/02p8p3n14', 'no_lang_code', 1, 'https://ror.org/02p8p3n14 Agrovegetal (Spain)'), (17213, 'https://ror.org/02p92he45', 'en', 1, 'https://ror.org/02p92he45 Urgent Action Fund'), (17214, 'https://ror.org/02pbwqv79', 'en', 1, 'https://ror.org/02pbwqv79 Reynolds Community College'), (17215, 'https://ror.org/02pfsqg38', 'en', 1, 'https://ror.org/02pfsqg38 Clearfield-Jefferson Drug and Alcohol Commission'), (17216, 'https://ror.org/02pgrmd66', 'en', 1, 'https://ror.org/02pgrmd66 Wayside House'), (17217, 'https://ror.org/02ph8mh81', 'no_lang_code', 1, 'https://ror.org/02ph8mh81 Zenobia Therapeutics (United States)'), (17218, 'https://ror.org/02pn7t710', 'no_lang_code', 1, 'https://ror.org/02pn7t710 McDermott Will & Emery (United States)'), (17219, 'https://ror.org/02pnyt573', 'fr', 1, 'https://ror.org/02pnyt573 Chambre de Commerce et d''Industrie Lyon Métropole Saint-Étienne Roanne'), (17220, 'https://ror.org/02ppzqx84', 'no_lang_code', 1, 'https://ror.org/02ppzqx84 Logit Systems (Belgium)'), (17221, 'https://ror.org/02pqv9m23', 'no_lang_code', 1, 'https://ror.org/02pqv9m23 Lufthansa Technical Training (Germany)'), (17222, 'https://ror.org/02ps8wg39', 'en', 1, 'https://ror.org/02ps8wg39 Tashkent Institute Of Postgraduate Medical Education'), (17223, 'https://ror.org/02pw67e25', 'no_lang_code', 1, 'https://ror.org/02pw67e25 CE Technologies (United Kingdom)'), (17224, 'https://ror.org/02pw9b361', 'no_lang_code', 1, 'https://ror.org/02pw9b361 Francisco Muñoz Irles (Spain)'), (17225, 'https://ror.org/02pwp4n28', 'no_lang_code', 1, 'https://ror.org/02pwp4n28 Imagination Software Corporation (United States)'), (17226, 'https://ror.org/02pxcrq67', 'no_lang_code', 1, 'https://ror.org/02pxcrq67 FEO Solutions (United States)'), (17227, 'https://ror.org/02pxet008', 'ro', 1, 'https://ror.org/02pxet008 Centrul pentru Promovarea Energiei Curate si Eficiente in Romania'), (17228, 'https://ror.org/02py3es11', 'en', 1, 'https://ror.org/02py3es11 Illinois Supreme Court Library'), (17229, 'https://ror.org/02pyj0w80', 'en', 1, 'https://ror.org/02pyj0w80 Room to Read'), (17230, 'https://ror.org/02pzmpf65', 'en', 1, 'https://ror.org/02pzmpf65 Wheelchair and Ambulatory Sports USA'), (17231, 'https://ror.org/02q002e44', 'en', 1, 'https://ror.org/02q002e44 National Museum of Women in the Arts'), (17232, 'https://ror.org/02q0d6f73', 'no_lang_code', 1, 'https://ror.org/02q0d6f73 Agence MTDA'), (17233, 'https://ror.org/02q279j80', 'no_lang_code', 1, 'https://ror.org/02q279j80 Anect (Czechia)'), (17234, 'https://ror.org/02q6x7761', 'no_lang_code', 1, 'https://ror.org/02q6x7761 Dresden Elektronik Ingenieurtechnik (Germany)'), (17235, 'https://ror.org/02q7j8a46', 'en', 1, 'https://ror.org/02q7j8a46 Irish Business and Employers Confederation'), (17236, 'https://ror.org/02q8ad752', 'no_lang_code', 1, 'https://ror.org/02q8ad752 Austria Personal Service (Austria)'), (17237, 'https://ror.org/02qakpg42', 'no_lang_code', 1, 'https://ror.org/02qakpg42 Confederación de Empresarios de Zaragoza'), (17238, 'https://ror.org/02qbjfj51', 'no_lang_code', 1, 'https://ror.org/02qbjfj51 Galdos Systems (Canada)'), (17239, 'https://ror.org/02qd5rn34', 'en', 1, 'https://ror.org/02qd5rn34 Coexist Initiative'), (17240, 'https://ror.org/02qe2w544', 'en', 1, 'https://ror.org/02qe2w544 Birmingham Museum and Art Gallery'), (17241, 'https://ror.org/02qem3h74', 'en', 1, 'https://ror.org/02qem3h74 Birmingham Science City'), (17242, 'https://ror.org/02qeyb550', 'no_lang_code', 1, 'https://ror.org/02qeyb550 GeneXplain (Germany)'), (17243, 'https://ror.org/02qfp2e06', 'no_lang_code', 1, 'https://ror.org/02qfp2e06 Edacentrum'), (17244, 'https://ror.org/02qjgmm73', 'no_lang_code', 1, 'https://ror.org/02qjgmm73 HiQScreen (Switzerland)'), (17245, 'https://ror.org/02qmwve08', 'en', 1, 'https://ror.org/02qmwve08 Auburn Cord Duesenberg Automobile Museum'), (17246, 'https://ror.org/02qq5j437', 'en', 1, 'https://ror.org/02qq5j437 Brimfield Public Library'), (17247, 'https://ror.org/02qr05d85', 'en', 1, 'https://ror.org/02qr05d85 Mount Mary University'), (17248, 'https://ror.org/02qr36w40', 'fr', 1, 'https://ror.org/02qr36w40 Ministère de l''Agriculture'), (17249, 'https://ror.org/02qsexb35', 'no_lang_code', 1, 'https://ror.org/02qsexb35 Roshydromet'), (17250, 'https://ror.org/02qswaj55', 'no_lang_code', 1, 'https://ror.org/02qswaj55 CeramOptec (Germany)'), (17251, 'https://ror.org/02qtpb069', 'no_lang_code', 1, 'https://ror.org/02qtpb069 Medica (Italy)'), (17252, 'https://ror.org/02qvjf193', 'en', 1, 'https://ror.org/02qvjf193 Shriners Hospitals for Children - Twin Cities'), (17253, 'https://ror.org/02qws0q96', 'no_lang_code', 1, 'https://ror.org/02qws0q96 Schenck Process (Norway)'), (17254, 'https://ror.org/02qxvcs26', 'en', 1, 'https://ror.org/02qxvcs26 Illinois State Library'), (17255, 'https://ror.org/02qxyh493', 'en', 1, 'https://ror.org/02qxyh493 Wakefield Orthopaedic Clinic'), (17256, 'https://ror.org/02qya6g42', 'no_lang_code', 1, 'https://ror.org/02qya6g42 Boeing (Germany)'), (17257, 'https://ror.org/02qyarm48', 'en', 1, 'https://ror.org/02qyarm48 Cambridge Community Library'), (17258, 'https://ror.org/02qyt2t35', 'no_lang_code', 1, 'https://ror.org/02qyt2t35 Capricorn Automotive (United Kingdom)'), (17259, 'https://ror.org/02qz22q09', 'no_lang_code', 1, 'https://ror.org/02qz22q09 GexCon (Norway)'), (17260, 'https://ror.org/02r1e6089', 'no_lang_code', 1, 'https://ror.org/02r1e6089 Lundin Mining (Ireland)'), (17261, 'https://ror.org/02r2nj961', 'no_lang_code', 1, 'https://ror.org/02r2nj961 Irvine Sensors (United States)'), (17262, 'https://ror.org/02r3v5z34', 'no_lang_code', 1, 'https://ror.org/02r3v5z34 AcXys Technologies (France)'), (17263, 'https://ror.org/02r6qtd46', 'no_lang_code', 1, 'https://ror.org/02r6qtd46 GenIbet (Portugal)'), (17264, 'https://ror.org/02r8n1b71', 'no_lang_code', 1, 'https://ror.org/02r8n1b71 General Innovations and Goods (United States)'), (17265, 'https://ror.org/02r8sxg18', 'en', 1, 'https://ror.org/02r8sxg18 Colorado Neurological Institute'), (17266, 'https://ror.org/02ratyz17', 'no_lang_code', 1, 'https://ror.org/02ratyz17 Herzog + Partner (Germany)'), (17267, 'https://ror.org/02rbfgr17', 'no_lang_code', 1, 'https://ror.org/02rbfgr17 European Media Laboratory (Germany)'), (17268, 'https://ror.org/02rcc0516', 'en', 1, 'https://ror.org/02rcc0516 Liberty Church'), (17269, 'https://ror.org/02rdpzb15', 'no_lang_code', 1, 'https://ror.org/02rdpzb15 Bloomberg (United States)'), (17270, 'https://ror.org/02rf8xy04', 'it', 1, 'https://ror.org/02rf8xy04 2B'), (17271, 'https://ror.org/02rhwc631', 'no_lang_code', 1, 'https://ror.org/02rhwc631 Chemical Dynamics (United States)'), (17272, 'https://ror.org/02rj64652', 'en', 1, 'https://ror.org/02rj64652 Heroes Foundation'), (17273, 'https://ror.org/02rkwhb32', 'it', 1, 'https://ror.org/02rkwhb32 Istituto Nazionale di Documentazione Innovazione e Ricerca Educativa'), (17274, 'https://ror.org/02rnkgt97', 'no_lang_code', 1, 'https://ror.org/02rnkgt97 Hastoe Group (United Kingdom)'), (17275, 'https://ror.org/02rp48z36', 'no_lang_code', 1, 'https://ror.org/02rp48z36 Lenntech (Netherlands)'), (17276, 'https://ror.org/02rsszy23', 'en', 1, 'https://ror.org/02rsszy23 St. Rose Dominican Hospital'), (17277, 'https://ror.org/02rt3gt49', 'en', 1, 'https://ror.org/02rt3gt49 Long Beach Medical Center'), (17278, 'https://ror.org/02rv6pz93', 'no_lang_code', 1, 'https://ror.org/02rv6pz93 PixelMill (United Kingdom)'), (17279, 'https://ror.org/02rxp0j51', 'no_lang_code', 1, 'https://ror.org/02rxp0j51 Ingeniatrics Tecnologías (Spain)'), (17280, 'https://ror.org/02rxpm513', 'no_lang_code', 1, 'https://ror.org/02rxpm513 VLP Therapeutics (United States)'), (17281, 'https://ror.org/02s2j8b28', 'en', 1, 'https://ror.org/02s2j8b28 Chippewa Valley Museum'), (17282, 'https://ror.org/02s347d15', 'no_lang_code', 1, 'https://ror.org/02s347d15 Albasolar (Spain)'), (17283, 'https://ror.org/02s4efn82', 'en', 1, 'https://ror.org/02s4efn82 Boys'' Club of New York'), (17284, 'https://ror.org/02s4pbe64', 'no_lang_code', 1, 'https://ror.org/02s4pbe64 Haines Lundberg and Waehler'), (17285, 'https://ror.org/02s5qve69', 'no_lang_code', 1, 'https://ror.org/02s5qve69 Rogers (Germany)'), (17286, 'https://ror.org/02s6qaw64', 'no_lang_code', 1, 'https://ror.org/02s6qaw64 Egnatia Odos (Greece)'), (17287, 'https://ror.org/02s88ax77', 'en', 1, 'https://ror.org/02s88ax77 Institut für ökologische Wirtschaftsforschung Institute for Ecological Economy Research'), (17288, 'https://ror.org/02s8rep32', 'en', 1, 'https://ror.org/02s8rep32 Columbus State Community College'), (17289, 'https://ror.org/02s9zgk30', 'en', 1, 'https://ror.org/02s9zgk30 Allegheny County Department of Human Services'), (17290, 'https://ror.org/02sbf1347', 'en', 1, 'https://ror.org/02sbf1347 Devon County Council'), (17291, 'https://ror.org/02sd8rm97', 'no_lang_code', 1, 'https://ror.org/02sd8rm97 BSH Electrodomésticos (Spain)'), (17292, 'https://ror.org/02sdvza63', 'fr', 1, 'https://ror.org/02sdvza63 La Maison Léon-Provancher'), (17293, 'https://ror.org/02sdz5p32', 'no_lang_code', 1, 'https://ror.org/02sdz5p32 Fontanellas Y Marti (Spain)'), (17294, 'https://ror.org/02skhjj30', 'en', 1, 'https://ror.org/02skhjj30 Federal Reserve Bank of St. Louis'), (17295, 'https://ror.org/02sm33451', 'no_lang_code', 1, 'https://ror.org/02sm33451 Keep Solutions (Portugal)'), (17296, 'https://ror.org/02spkns44', 'en', 1, 'https://ror.org/02spkns44 London Borough of Tower Hamlets'), (17297, 'https://ror.org/02spsym66', 'en', 1, 'https://ror.org/02spsym66 Industrial Research Institute'), (17298, 'https://ror.org/02ssn3c97', 'en', 1, 'https://ror.org/02ssn3c97 York College of Pennsylvania'), (17299, 'https://ror.org/02sswdw89', 'no_lang_code', 1, 'https://ror.org/02sswdw89 Apotex Fermentation (Canada)'), (17300, 'https://ror.org/02ssz8y77', 'no_lang_code', 1, 'https://ror.org/02ssz8y77 Cleancarb (Luxembourg)'), (17301, 'https://ror.org/02st8gf30', 'no_lang_code', 1, 'https://ror.org/02st8gf30 LSI Solutions (United States)'), (17302, 'https://ror.org/02svcmy74', 'no_lang_code', 1, 'https://ror.org/02svcmy74 LiveU (Israel)'), (17303, 'https://ror.org/02sxpcf54', 'en', 1, 'https://ror.org/02sxpcf54 J. Iverson Riddle Developmental Center'), (17304, 'https://ror.org/02sy6k521', 'en', 1, 'https://ror.org/02sy6k521 Industrial Systems Institute'), (17305, 'https://ror.org/02sz9bm21', 'no_lang_code', 1, 'https://ror.org/02sz9bm21 Elia Life Technology (United States)'), (17306, 'https://ror.org/02szfyr26', 'no_lang_code', 1, 'https://ror.org/02szfyr26 BioAssay Systems (United States)'), (17307, 'https://ror.org/02szraw88', 'fr', 1, 'https://ror.org/02szraw88 Centre Régional Africain des Sciences et Technologies de l''Espace'), (17308, 'https://ror.org/02t08m694', 'no_lang_code', 1, 'https://ror.org/02t08m694 HeidelbergCement (United Kingdom)'), (17309, 'https://ror.org/02t0mhb72', 'en', 1, 'https://ror.org/02t0mhb72 University of Saint Mary of the Lake'), (17310, 'https://ror.org/02t247e37', 'no_lang_code', 1, 'https://ror.org/02t247e37 Dynamic Contours (United States)'), (17311, 'https://ror.org/02t5a9j90', 'no_lang_code', 1, 'https://ror.org/02t5a9j90 Ultradian Diagnostics (United States)'), (17312, 'https://ror.org/02t5ee083', 'no_lang_code', 1, 'https://ror.org/02t5ee083 Interactive Flow Studies (United States)'), (17313, 'https://ror.org/02t83f864', 'en', 1, 'https://ror.org/02t83f864 Wessex Regional Genetics Laboratory'), (17314, 'https://ror.org/02t84dn55', 'en', 1, 'https://ror.org/02t84dn55 IRC International Water and Sanitation Centre'), (17315, 'https://ror.org/02t8cb469', 'en', 1, 'https://ror.org/02t8cb469 European Institute for Advanced Studies in Management'), (17316, 'https://ror.org/02tab1h96', 'en', 1, 'https://ror.org/02tab1h96 Massachusetts Department of Elementary and Secondary Education'), (17317, 'https://ror.org/02tarpq30', 'no_lang_code', 1, 'https://ror.org/02tarpq30 General Electric (Germany)'), (17318, 'https://ror.org/02tb28y24', 'no_lang_code', 1, 'https://ror.org/02tb28y24 Introversion Software (United Kingdom)'), (17319, 'https://ror.org/02tbr6331', 'en', 1, 'https://ror.org/02tbr6331 Fraunhofer Institute for Telecommunications, Heinrich Hertz Institute Fraunhofer-Institut für Nachrichtentechnik, Heinrich-Hertz-Institut'), (17320, 'https://ror.org/02tbw9n11', 'en', 1, 'https://ror.org/02tbw9n11 Los Angeles County Department of Mental Health'), (17321, 'https://ror.org/02tbyk536', 'en', 1, 'https://ror.org/02tbyk536 International Medical Equipment Collaborative'), (17322, 'https://ror.org/02tbyrb23', 'en', 1, 'https://ror.org/02tbyrb23 Visiting Nurse Association of Erie County'), (17323, 'https://ror.org/02tdf3b18', 'no_lang_code', 1, 'https://ror.org/02tdf3b18 McPhy Energy (France)'), (17324, 'https://ror.org/02teja790', 'no_lang_code', 1, 'https://ror.org/02teja790 Aruna Biomedical (United States)'), (17325, 'https://ror.org/02tga4733', 'no_lang_code', 1, 'https://ror.org/02tga4733 DTV Consultants (Netherlands)'), (17326, 'https://ror.org/02tjxv890', 'de', 1, 'https://ror.org/02tjxv890 Hessen Mobil – Straßen- und Verkehrsmanagement'), (17327, 'https://ror.org/02tk2gv85', 'no_lang_code', 1, 'https://ror.org/02tk2gv85 Kapsch (Austria)'), (17328, 'https://ror.org/02tkbtm16', 'no_lang_code', 1, 'https://ror.org/02tkbtm16 Grimm Aerosol Technik (Germany)'), (17329, 'https://ror.org/02tr0ps12', 'en', 1, 'https://ror.org/02tr0ps12 CHI St. Vincent'), (17330, 'https://ror.org/02trhs052', 'no_lang_code', 1, 'https://ror.org/02trhs052 KOAC'), (17331, 'https://ror.org/02trqpj90', 'sl', 1, 'https://ror.org/02trqpj90 Center za Kartografijo Favne in Flore Centre for Cartography of Fauna and Flora'), (17332, 'https://ror.org/02tte3f94', 'en', 1, 'https://ror.org/02tte3f94 Engineering Employers'' Federation'), (17333, 'https://ror.org/02ttqft70', 'en', 1, 'https://ror.org/02ttqft70 American National Standards Institute'), (17334, 'https://ror.org/02tty6654', 'no_lang_code', 1, 'https://ror.org/02tty6654 Base Materials (United Kingdom)'), (17335, 'https://ror.org/02twn9v08', 'no_lang_code', 1, 'https://ror.org/02twn9v08 ABB (Canada)'), (17336, 'https://ror.org/02tzm9s47', 'en', 1, 'https://ror.org/02tzm9s47 Foundation for Research on Sexually Transmitted Diseases'), (17337, 'https://ror.org/02tzpx885', 'no_lang_code', 1, 'https://ror.org/02tzpx885 CertiFlyer (Netherlands)'), (17338, 'https://ror.org/02v0zfv65', 'en', 1, 'https://ror.org/02v0zfv65 Sixteenth Street Community Health Center'), (17339, 'https://ror.org/02v11vt47', 'no_lang_code', 1, 'https://ror.org/02v11vt47 Biomay (Austria)'), (17340, 'https://ror.org/02v226c57', 'en', 1, 'https://ror.org/02v226c57 Federation of the European Sporting Goods Industry'), (17341, 'https://ror.org/02v3h7t65', 'en', 1, 'https://ror.org/02v3h7t65 Horizon Human Services'), (17342, 'https://ror.org/02v431325', 'en', 1, 'https://ror.org/02v431325 Harrington College of Design'), (17343, 'https://ror.org/02v4nv830', 'en', 1, 'https://ror.org/02v4nv830 Institute for Fuels and Renewable Energy'), (17344, 'https://ror.org/02v5dd905', 'en', 1, 'https://ror.org/02v5dd905 SunServe'), (17345, 'https://ror.org/02v5tks88', 'no_lang_code', 1, 'https://ror.org/02v5tks88 Ultrawave Labs (United States)'), (17346, 'https://ror.org/02v6d7v96', 'en', 1, 'https://ror.org/02v6d7v96 Joliet Public Library'), (17347, 'https://ror.org/02v6nd536', 'en', 1, 'https://ror.org/02v6nd536 Federal Ministry of Health'), (17348, 'https://ror.org/02v7ms182', 'en', 1, 'https://ror.org/02v7ms182 Clifford Beers Clinic'), (17349, 'https://ror.org/02v82mn77', 'no_lang_code', 1, 'https://ror.org/02v82mn77 Agilent Technologies (Italy)'), (17350, 'https://ror.org/02vawy993', 'en', 1, 'https://ror.org/02vawy993 United States Government Accountability Office'), (17351, 'https://ror.org/02vc1x915', 'no_lang_code', 1, 'https://ror.org/02vc1x915 Sova Pharmaceuticals (United States)'), (17352, 'https://ror.org/02vc6t684', 'en', 1, 'https://ror.org/02vc6t684 Catlin Gabel School'), (17353, 'https://ror.org/02venxm51', 'en', 1, 'https://ror.org/02venxm51 Principia College'), (17354, 'https://ror.org/02vhrn167', 'en', 1, 'https://ror.org/02vhrn167 European Distribution System Operators for Smart Grids'), (17355, 'https://ror.org/02vjprr88', 'en', 1, 'https://ror.org/02vjprr88 Bachmann-Strauss Dystonia & Parkinson Foundation'), (17356, 'https://ror.org/02vm4nz81', 'no_lang_code', 1, 'https://ror.org/02vm4nz81 ECT Oekotoxikologie (Germany)'), (17357, 'https://ror.org/02vnjpj41', 'en', 1, 'https://ror.org/02vnjpj41 St. Joseph Museums'), (17358, 'https://ror.org/02vpcxy68', 'en', 1, 'https://ror.org/02vpcxy68 Elyria Public Library System'), (17359, 'https://ror.org/02vpy2028', 'en', 1, 'https://ror.org/02vpy2028 American Society for Virology'), (17360, 'https://ror.org/02vpzk077', 'no_lang_code', 1, 'https://ror.org/02vpzk077 BioMed Design (United States)'), (17361, 'https://ror.org/02vsz1415', 'ro', 1, 'https://ror.org/02vsz1415 Ministerul Sanatatii Ministry of Health of Romania'), (17362, 'https://ror.org/02vv13147', 'en', 1, 'https://ror.org/02vv13147 Deerfield Public Library'), (17363, 'https://ror.org/02vvm5369', 'no_lang_code', 1, 'https://ror.org/02vvm5369 Aptiv (United Kingdom)'), (17364, 'https://ror.org/02vx35127', 'en', 1, 'https://ror.org/02vx35127 Medical Data Exchange'), (17365, 'https://ror.org/02vxa5545', 'no_lang_code', 1, 'https://ror.org/02vxa5545 Haemonetics (United States)'), (17366, 'https://ror.org/02vxh6382', 'en', 1, 'https://ror.org/02vxh6382 Pinky Swear Foundation'); INSERT INTO `rors` VALUES (17367, 'https://ror.org/02vzrk436', 'en', 1, 'https://ror.org/02vzrk436 Vibrant Emotional Health'), (17368, 'https://ror.org/02vzsb460', 'no_lang_code', 1, 'https://ror.org/02vzsb460 Cavitation-Control Technology'), (17369, 'https://ror.org/02w1sf669', 'no_lang_code', 1, 'https://ror.org/02w1sf669 Isovolta (Austria)'), (17370, 'https://ror.org/02w1skc55', 'en', 1, 'https://ror.org/02w1skc55 Cape Cod Community College'), (17371, 'https://ror.org/02w3y1050', 'no_lang_code', 1, 'https://ror.org/02w3y1050 Arena Pharmaceuticals (United States)'), (17372, 'https://ror.org/02w506a46', 'no_lang_code', 1, 'https://ror.org/02w506a46 Guardian Chemicals (Canada)'), (17373, 'https://ror.org/02w5hgx58', 'en', 1, 'https://ror.org/02w5hgx58 Greek Solar Industry Association'), (17374, 'https://ror.org/02w6ewz22', 'en', 1, 'https://ror.org/02w6ewz22 Iceland GeoSurvey Íslenskar orkurannsóknir'), (17375, 'https://ror.org/02w7v5077', 'en', 1, 'https://ror.org/02w7v5077 El Centro Elementary School District'), (17376, 'https://ror.org/02w8ez808', 'it', 1, 'https://ror.org/02w8ez808 Fondazione Stella Maris'), (17377, 'https://ror.org/02waqnt49', 'no_lang_code', 1, 'https://ror.org/02waqnt49 Grainger and Worral (United Kingdom)'), (17378, 'https://ror.org/02wb36b75', 'en', 1, 'https://ror.org/02wb36b75 Lubbock Christian University'), (17379, 'https://ror.org/02wc7yv39', 'no_lang_code', 1, 'https://ror.org/02wc7yv39 ideXlab (France)'), (17380, 'https://ror.org/02wd3kv51', 'en', 1, 'https://ror.org/02wd3kv51 Leigh Yawkey Woodson Art Museum'), (17381, 'https://ror.org/02we0q870', 'en', 1, 'https://ror.org/02we0q870 State Geological Institute of Dionýz Štúr'), (17382, 'https://ror.org/02wena850', 'en', 1, 'https://ror.org/02wena850 Forschungsinstitut für Telekommunikation Research Institute for Telecommunication Cooperation'), (17383, 'https://ror.org/02wf9ck77', 'pt', 1, 'https://ror.org/02wf9ck77 Instituto Português de Malacologia'), (17384, 'https://ror.org/02wfzks91', 'de', 1, 'https://ror.org/02wfzks91 Landwirtschaftliche Fachschule Tulln professional school for agriculture Tulln'), (17385, 'https://ror.org/02wg4cc89', 'en', 1, 'https://ror.org/02wg4cc89 Holy Wisdom Monastery'), (17386, 'https://ror.org/02wg88z59', 'no_lang_code', 1, 'https://ror.org/02wg88z59 Veolia (Italy)'), (17387, 'https://ror.org/02wghjg14', 'no_lang_code', 1, 'https://ror.org/02wghjg14 Integrated Systems Development (Greece)'), (17388, 'https://ror.org/02wgwxy44', 'en', 1, 'https://ror.org/02wgwxy44 Rajiv Poor People Welfare Society'), (17389, 'https://ror.org/02wh1sf51', 'en', 1, 'https://ror.org/02wh1sf51 Roanoke Rapids Graded School District'), (17390, 'https://ror.org/02wjcvj62', 'no_lang_code', 1, 'https://ror.org/02wjcvj62 Dytecna (United Kingdom)'), (17391, 'https://ror.org/02wjdtq78', 'es', 1, 'https://ror.org/02wjdtq78 Agencia de Energía Nuclear y Tecnologías de Avanzada'), (17392, 'https://ror.org/02wp9w043', 'en', 1, 'https://ror.org/02wp9w043 Leeds City Council'), (17393, 'https://ror.org/02wr4ty93', 'en', 1, 'https://ror.org/02wr4ty93 Zionsville Community High School'), (17394, 'https://ror.org/02wrd4h10', 'en', 1, 'https://ror.org/02wrd4h10 Instituto Multimedia'), (17395, 'https://ror.org/02wyqrf98', 'en', 1, 'https://ror.org/02wyqrf98 National Association of School Psychologists'), (17396, 'https://ror.org/02x20cn33', 'no_lang_code', 1, 'https://ror.org/02x20cn33 BioFluidix (Germany)'), (17397, 'https://ror.org/02x3e5q37', 'en', 1, 'https://ror.org/02x3e5q37 Weems Community Mental Health Center'), (17398, 'https://ror.org/02x3nwd23', 'en', 1, 'https://ror.org/02x3nwd23 Institute for Sustainable Development'), (17399, 'https://ror.org/02x4af624', 'en', 1, 'https://ror.org/02x4af624 Central Statistics Office'), (17400, 'https://ror.org/02x4zab94', 'en', 1, 'https://ror.org/02x4zab94 Federation of European Publishers'), (17401, 'https://ror.org/02x5wxx17', 'no_lang_code', 1, 'https://ror.org/02x5wxx17 Faculty of 1000 (United States)'), (17402, 'https://ror.org/02x6t2s89', 'no_lang_code', 1, 'https://ror.org/02x6t2s89 Kopoos Consulting (France)'), (17403, 'https://ror.org/02x8cxb12', 'no_lang_code', 1, 'https://ror.org/02x8cxb12 Clearfield (United States)'), (17404, 'https://ror.org/02xa7j758', 'en', 1, 'https://ror.org/02xa7j758 Queensland Children’s Medical Research Institute'), (17405, 'https://ror.org/02xaxz408', 'en', 1, 'https://ror.org/02xaxz408 Southern State Community College'), (17406, 'https://ror.org/02xfmex92', 'en', 1, 'https://ror.org/02xfmex92 Army and Navy Club'), (17407, 'https://ror.org/02xhmts30', 'no_lang_code', 1, 'https://ror.org/02xhmts30 Aerotek (Germany)'), (17408, 'https://ror.org/02xkzav80', 'en', 1, 'https://ror.org/02xkzav80 Housing & Care 21'), (17409, 'https://ror.org/02xm60v03', 'en', 1, 'https://ror.org/02xm60v03 Wilmette Public Library'), (17410, 'https://ror.org/02xm6e195', 'no_lang_code', 1, 'https://ror.org/02xm6e195 Bitgear (Serbia)'), (17411, 'https://ror.org/02xn8bh65', 'en', 1, 'https://ror.org/02xn8bh65 University of Divinity'), (17412, 'https://ror.org/02xnhzs58', 'en', 1, 'https://ror.org/02xnhzs58 Solving Kids'' Cancer'), (17413, 'https://ror.org/02xptb358', 'no_lang_code', 1, 'https://ror.org/02xptb358 Lonix (Finland)'), (17414, 'https://ror.org/02xvm3d98', 'no_lang_code', 1, 'https://ror.org/02xvm3d98 StemMed (United States)'), (17415, 'https://ror.org/02xwe8780', 'no_lang_code', 1, 'https://ror.org/02xwe8780 PREtest Consult (United States)'), (17416, 'https://ror.org/02xy96n81', 'no_lang_code', 1, 'https://ror.org/02xy96n81 Ericsson (Greece)'), (17417, 'https://ror.org/02xz7d723', 'en', 1, 'https://ror.org/02xz7d723 Harry Perkins Institute of Medical Research'), (17418, 'https://ror.org/02y1mqg45', 'no_lang_code', 1, 'https://ror.org/02y1mqg45 Irish Hydrodata (Ireland)'), (17419, 'https://ror.org/02y220324', 'en', 1, 'https://ror.org/02y220324 Setauket Fire Department'), (17420, 'https://ror.org/02y2yt761', 'no_lang_code', 1, 'https://ror.org/02y2yt761 Container Speditions und Transportgesellschaft (Germany)'), (17421, 'https://ror.org/02y3dtg29', 'en', 1, 'https://ror.org/02y3dtg29 Deutsches Rotes Kreuz German Red Cross'), (17422, 'https://ror.org/02y4rar07', 'en', 1, 'https://ror.org/02y4rar07 The Center for Pranic Healing'), (17423, 'https://ror.org/02y7e7h61', 'no_lang_code', 1, 'https://ror.org/02y7e7h61 Bodymetrics (United Kingdom)'), (17424, 'https://ror.org/02y899687', 'no_lang_code', 1, 'https://ror.org/02y899687 Cohera Medical (United States)'), (17425, 'https://ror.org/02y8azp93', 'ca', 1, 'https://ror.org/02y8azp93 Foment del Treball Nacional'), (17426, 'https://ror.org/02yakpb28', 'no_lang_code', 1, 'https://ror.org/02yakpb28 Hidromod (Portugal)'), (17427, 'https://ror.org/02ydk7b78', 'en', 1, 'https://ror.org/02ydk7b78 Heartland Family Service'), (17428, 'https://ror.org/02ydpt711', 'en', 1, 'https://ror.org/02ydpt711 John D Bray MD'), (17429, 'https://ror.org/02ydpvv49', 'en', 1, 'https://ror.org/02ydpvv49 Flint and Saginaw Odyssey House'), (17430, 'https://ror.org/02yfbej13', 'en', 1, 'https://ror.org/02yfbej13 Elmhurst Public Library'), (17431, 'https://ror.org/02ygdtt22', 'en', 1, 'https://ror.org/02ygdtt22 HSBC Holdings'), (17432, 'https://ror.org/02ygxgy27', 'en', 1, 'https://ror.org/02ygxgy27 Hawaii State Department of Education'), (17433, 'https://ror.org/02yh73909', 'no_lang_code', 1, 'https://ror.org/02yh73909 ImaSight (Canada)'), (17434, 'https://ror.org/02yn5by09', 'es', 1, 'https://ror.org/02yn5by09 Catholic University of Cuyo Universidad Católica de Cuyo'), (17435, 'https://ror.org/02ype5435', 'en', 1, 'https://ror.org/02ype5435 Louisiana Department of Education'), (17436, 'https://ror.org/02yr5fm11', 'fr', 1, 'https://ror.org/02yr5fm11 Institut de Conseil et d''Études en Développement Durable Institute for Consultancy and Studies in Sustainable Development'), (17437, 'https://ror.org/02ys6ht81', 'no_lang_code', 1, 'https://ror.org/02ys6ht81 Livos (Germany)'), (17438, 'https://ror.org/02ytbnx96', 'en', 1, 'https://ror.org/02ytbnx96 Wells Institute for Health Awareness'), (17439, 'https://ror.org/02yvffa38', 'en', 1, 'https://ror.org/02yvffa38 Anchorage School District'), (17440, 'https://ror.org/02yvt1b82', 'no_lang_code', 1, 'https://ror.org/02yvt1b82 Chart Industries (United Kingdom)'), (17441, 'https://ror.org/02yxgbz14', 'no_lang_code', 1, 'https://ror.org/02yxgbz14 Perscitus Biosciences (United States)'), (17442, 'https://ror.org/02yyaze44', 'no_lang_code', 1, 'https://ror.org/02yyaze44 Perle Bioscience (United States)'), (17443, 'https://ror.org/02yyb7m34', 'no_lang_code', 1, 'https://ror.org/02yyb7m34 Embedded Access (Canada)'), (17444, 'https://ror.org/02yzsw326', 'en', 1, 'https://ror.org/02yzsw326 Institute for Applied Environmental Economics'), (17445, 'https://ror.org/02z06eb16', 'en', 1, 'https://ror.org/02z06eb16 Centre for Sustainable Energy'), (17446, 'https://ror.org/02z2hxe94', 'it', 1, 'https://ror.org/02z2hxe94 Centre of Theoretical and Applied Ecology Centro di Ecologia Teorica ed Applicata'), (17447, 'https://ror.org/02z38kp20', 'en', 1, 'https://ror.org/02z38kp20 DeVry University'), (17448, 'https://ror.org/02z3rcy16', 'no_lang_code', 1, 'https://ror.org/02z3rcy16 Translational Therapeutics (United States)'), (17449, 'https://ror.org/02z3xdq04', 'pt', 1, 'https://ror.org/02z3xdq04 Instituto de Ciência e Tecnologia de Polímeros Polymer Science and Technology Institute'), (17450, 'https://ror.org/02z468g17', 'en', 1, 'https://ror.org/02z468g17 Internet Archive'), (17451, 'https://ror.org/02z57jm04', 'en', 1, 'https://ror.org/02z57jm04 South Texas Institutes of Health'), (17452, 'https://ror.org/02z89wd67', 'fr', 1, 'https://ror.org/02z89wd67 Confédération Générale du Travail General Confederation of Labour'), (17453, 'https://ror.org/02zc4jh04', 'no_lang_code', 1, 'https://ror.org/02zc4jh04 AFT Automation (Germany)'), (17454, 'https://ror.org/02zk9yr48', 'no_lang_code', 1, 'https://ror.org/02zk9yr48 Leotech Rapid Prototyping und Werkzeugbau (Germany)'), (17455, 'https://ror.org/02zm9fh11', 'en', 1, 'https://ror.org/02zm9fh11 Lietuvos dailės muziejus Lithuanian Art Museum'), (17456, 'https://ror.org/02zpzxx25', 'en', 1, 'https://ror.org/02zpzxx25 Hunterdon Prevention Resources'), (17457, 'https://ror.org/02zqy3981', 'en', 1, 'https://ror.org/02zqy3981 Department for Digital, Culture, Media & Sport Yr Adran Ddigidol, Diwylliant, Cyfryngau a Chwaraeon'), (17458, 'https://ror.org/02zrqj244', 'no_lang_code', 1, 'https://ror.org/02zrqj244 Hidrowatt (Spain)'), (17459, 'https://ror.org/02zsfmb11', 'en', 1, 'https://ror.org/02zsfmb11 Ray of Hope Cancer Foundation'), (17460, 'https://ror.org/02zt74990', 'no_lang_code', 1, 'https://ror.org/02zt74990 Joel Popkin and Company'), (17461, 'https://ror.org/02ztc9f43', 'no_lang_code', 1, 'https://ror.org/02ztc9f43 Rare Disease Therapeutics (United States)'), (17462, 'https://ror.org/02zvx4k42', 'no_lang_code', 1, 'https://ror.org/02zvx4k42 Eurospider Information Technology (Switzerland)'), (17463, 'https://ror.org/02zwppv60', 'no_lang_code', 1, 'https://ror.org/02zwppv60 Ateknea Solutions (Malta)'), (17464, 'https://ror.org/02zz4qz23', 'no_lang_code', 1, 'https://ror.org/02zz4qz23 DVST (United Kingdom)'), (17465, 'https://ror.org/0300em778', 'en', 1, 'https://ror.org/0300em778 iNets South West'), (17466, 'https://ror.org/030148f67', 'en', 1, 'https://ror.org/030148f67 Tuscarawas County Public Library'), (17467, 'https://ror.org/0303sda91', 'en', 1, 'https://ror.org/0303sda91 Kishwaukee College'), (17468, 'https://ror.org/0306p6665', 'en', 1, 'https://ror.org/0306p6665 Play Group Theatre'), (17469, 'https://ror.org/03078rq26', 'en', 1, 'https://ror.org/03078rq26 Athens Medical Center Ιατρικό Κέντρο Αθηνών'), (17470, 'https://ror.org/03084a880', 'no_lang_code', 1, 'https://ror.org/03084a880 Latham & Watkins (United States)'), (17471, 'https://ror.org/0308zvy22', 'en', 1, 'https://ror.org/0308zvy22 USTA Foundation'), (17472, 'https://ror.org/030b24d60', 'no_lang_code', 1, 'https://ror.org/030b24d60 Erbicol (Switzerland)'), (17473, 'https://ror.org/030bsqk21', 'no_lang_code', 1, 'https://ror.org/030bsqk21 Plant Health Care (United States)'), (17474, 'https://ror.org/030c07a62', 'no_lang_code', 1, 'https://ror.org/030c07a62 Bombardier (Portugal)'), (17475, 'https://ror.org/030fq6p50', 'en', 1, 'https://ror.org/030fq6p50 PreventionFirst'), (17476, 'https://ror.org/030prv062', 'en', 1, 'https://ror.org/030prv062 Institute of Museum and Library Services'), (17477, 'https://ror.org/030qje202', 'en', 1, 'https://ror.org/030qje202 Peace Winds America'), (17478, 'https://ror.org/030r0t953', 'es', 1, 'https://ror.org/030r0t953 Instituto Tecnológico de Materiales de Asturias'), (17479, 'https://ror.org/030rzq778', 'en', 1, 'https://ror.org/030rzq778 Fresh Pond Research Institute'), (17480, 'https://ror.org/030tp6t18', 'no_lang_code', 1, 'https://ror.org/030tp6t18 Discovery Air (Canada)'), (17481, 'https://ror.org/030v6tx56', 'en', 1, 'https://ror.org/030v6tx56 THETA Uganda'), (17482, 'https://ror.org/030vvqf88', 'en', 1, 'https://ror.org/030vvqf88 Children’s Village'), (17483, 'https://ror.org/030wwwa97', 'en', 1, 'https://ror.org/030wwwa97 Sail To Prevail'), (17484, 'https://ror.org/030x0x547', 'no_lang_code', 1, 'https://ror.org/030x0x547 Sea Lane Biotechnologies (United States)'), (17485, 'https://ror.org/030z4b668', 'en', 1, 'https://ror.org/030z4b668 Assyrian Universal Alliance Foundation'), (17486, 'https://ror.org/030zsh764', 'en', 1, 'https://ror.org/030zsh764 Worcestershire Acute Hospitals NHS Trust'), (17487, 'https://ror.org/031213047', 'no_lang_code', 1, 'https://ror.org/031213047 Hebridean Seaweed (United Kingdom)'), (17488, 'https://ror.org/031241j87', 'no_lang_code', 1, 'https://ror.org/031241j87 Artificial Cell Technologies (United States)'), (17489, 'https://ror.org/0312ax070', 'no_lang_code', 1, 'https://ror.org/0312ax070 LifeWatch (Israel)'), (17490, 'https://ror.org/03143bq61', 'no_lang_code', 1, 'https://ror.org/03143bq61 ANDalyze (United States)'), (17491, 'https://ror.org/0314qpx15', 'en', 1, 'https://ror.org/0314qpx15 Share and Care Foundation'), (17492, 'https://ror.org/0315xr544', 'no_lang_code', 1, 'https://ror.org/0315xr544 ReveraGen BioPharma (United States)'), (17493, 'https://ror.org/0317phh79', 'no_lang_code', 1, 'https://ror.org/0317phh79 MaxCyte (United States)'), (17494, 'https://ror.org/03185ph79', 'no_lang_code', 1, 'https://ror.org/03185ph79 Halliday James (United Kingdom)'), (17495, 'https://ror.org/03190vh75', 'no_lang_code', 1, 'https://ror.org/03190vh75 Carmell Therapeutics (United States)'), (17496, 'https://ror.org/03199wg76', 'en', 1, 'https://ror.org/03199wg76 PearlPoint Cancer Support'), (17497, 'https://ror.org/0319d2e87', 'en', 1, 'https://ror.org/0319d2e87 St Helens Hospital'), (17498, 'https://ror.org/031bxfd44', 'en', 1, 'https://ror.org/031bxfd44 Walking Miracles Family Foundation'), (17499, 'https://ror.org/031cs6d58', 'no_lang_code', 1, 'https://ror.org/031cs6d58 Toshiba (Switzerland)'), (17500, 'https://ror.org/031dsww89', 'no_lang_code', 1, 'https://ror.org/031dsww89 Becton Dickinson (Canada)'), (17501, 'https://ror.org/031e8jz65', 'en', 1, 'https://ror.org/031e8jz65 The Family Center'), (17502, 'https://ror.org/031emjj03', 'en', 1, 'https://ror.org/031emjj03 Indian Hills Community College'), (17503, 'https://ror.org/031evws22', 'no_lang_code', 1, 'https://ror.org/031evws22 Galaxy Biotech (United States)'), (17504, 'https://ror.org/031fm6b66', 'no_lang_code', 1, 'https://ror.org/031fm6b66 GlycoMar (United Kingdom)'), (17505, 'https://ror.org/031h71w90', 'en', 1, 'https://ror.org/031h71w90 Bavarian State Library Bayerische Staatsbibliothek'), (17506, 'https://ror.org/031h74a50', 'en', 1, 'https://ror.org/031h74a50 Iowa Federation of Families for Children''s Mental Health'), (17507, 'https://ror.org/031hbfw38', 'no_lang_code', 1, 'https://ror.org/031hbfw38 Deltagen (United States)'), (17508, 'https://ror.org/031khrq71', 'no_lang_code', 1, 'https://ror.org/031khrq71 MARS Laser (Germany)'), (17509, 'https://ror.org/031m09z27', 'en', 1, 'https://ror.org/031m09z27 Riverside Unified School District'), (17510, 'https://ror.org/031me7t03', 'en', 1, 'https://ror.org/031me7t03 Cardiff Council'), (17511, 'https://ror.org/031mjy523', 'no_lang_code', 1, 'https://ror.org/031mjy523 Europa Media (Hungary)'), (17512, 'https://ror.org/031mpgh04', 'no_lang_code', 1, 'https://ror.org/031mpgh04 Linkra (Italy)'), (17513, 'https://ror.org/031mpj251', 'en', 1, 'https://ror.org/031mpj251 Mid-State Technical College'), (17514, 'https://ror.org/031nang70', 'pl', 1, 'https://ror.org/031nang70 Innowacja Polska'), (17515, 'https://ror.org/031nh9x49', 'en', 1, 'https://ror.org/031nh9x49 Animal Behavior Society'), (17516, 'https://ror.org/031npn793', 'en', 1, 'https://ror.org/031npn793 ComedyCures Foundation'), (17517, 'https://ror.org/031s7jq69', 'de', 1, 'https://ror.org/031s7jq69 Leonardo Büro Sachsen Anhalt'), (17518, 'https://ror.org/031sed648', 'no_lang_code', 1, 'https://ror.org/031sed648 Stavros'), (17519, 'https://ror.org/031ts9d41', 'no_lang_code', 1, 'https://ror.org/031ts9d41 Comité de Concertation et de Coordination de l''Apprentissage du Bâtiment et des Travaux Publics'), (17520, 'https://ror.org/031twcj28', 'en', 1, 'https://ror.org/031twcj28 Providence Pediatric Pulmonology & Cystic Fibrosis'), (17521, 'https://ror.org/031x2yz16', 'no_lang_code', 1, 'https://ror.org/031x2yz16 Arri (Germany)'), (17522, 'https://ror.org/031x5zp43', 'en', 1, 'https://ror.org/031x5zp43 European Centre for Knowledge and Technology Transfer'), (17523, 'https://ror.org/031xnh898', 'no_lang_code', 1, 'https://ror.org/031xnh898 Glycosyn (United States)'), (17524, 'https://ror.org/031yp1y05', 'no_lang_code', 1, 'https://ror.org/031yp1y05 Loufakis (Greece) ΛΟΥΦΑΚΗΣ ΧΗΜΙΚΑ'), (17525, 'https://ror.org/031ytbe94', 'no_lang_code', 1, 'https://ror.org/031ytbe94 Mahlo (Germany)'), (17526, 'https://ror.org/0320bge18', 'en', 1, 'https://ror.org/0320bge18 Department for Education'), (17527, 'https://ror.org/0320hew69', 'no_lang_code', 1, 'https://ror.org/0320hew69 Ferroday (United Kingdom)'), (17528, 'https://ror.org/0321gjx92', 'en', 1, 'https://ror.org/0321gjx92 The Salvation Army Zambia'), (17529, 'https://ror.org/032303h97', 'no_lang_code', 1, 'https://ror.org/032303h97 Geographic Information Management (Belgium)'), (17530, 'https://ror.org/0325p1j31', 'no_lang_code', 1, 'https://ror.org/0325p1j31 Coherent (Germany)'), (17531, 'https://ror.org/032685859', 'en', 1, 'https://ror.org/032685859 Vitiligo and Pigmentation Institute of Southern California'), (17532, 'https://ror.org/0326f1w25', 'en', 1, 'https://ror.org/0326f1w25 Douglas County Health Department'), (17533, 'https://ror.org/03277sm65', 'en', 1, 'https://ror.org/03277sm65 Society of Surgical Oncology'), (17534, 'https://ror.org/0327edc10', 'no_lang_code', 1, 'https://ror.org/0327edc10 Laser Optical Engineering (United Kingdom)'), (17535, 'https://ror.org/0327mxq88', 'it', 1, 'https://ror.org/0327mxq88 Consorzio Italiano per la Ricerca in Medicina'), (17536, 'https://ror.org/0327ybn08', 'en', 1, 'https://ror.org/0327ybn08 Summit School'), (17537, 'https://ror.org/032891704', 'no_lang_code', 1, 'https://ror.org/032891704 Clarifica (Canada)'), (17538, 'https://ror.org/0328hyd77', 'no_lang_code', 1, 'https://ror.org/0328hyd77 Invistics (United States)'), (17539, 'https://ror.org/0329n2y83', 'no_lang_code', 1, 'https://ror.org/0329n2y83 Max Fordham (United Kingdom)'), (17540, 'https://ror.org/032av0b93', 'no_lang_code', 1, 'https://ror.org/032av0b93 Expert System (Italy)'), (17541, 'https://ror.org/032by2j30', 'it', 1, 'https://ror.org/032by2j30 Fondazione Filarete'), (17542, 'https://ror.org/032dgyz67', 'no_lang_code', 1, 'https://ror.org/032dgyz67 IncreaseTime (Portugal)'), (17543, 'https://ror.org/032dnw027', 'no_lang_code', 1, 'https://ror.org/032dnw027 HiETA Technologies (United Kingdom)'), (17544, 'https://ror.org/032g1nc88', 'no_lang_code', 1, 'https://ror.org/032g1nc88 Albemarle (Belgium)'), (17545, 'https://ror.org/032gaeg66', 'no_lang_code', 1, 'https://ror.org/032gaeg66 Innoterm (Hungary)'), (17546, 'https://ror.org/032h1gp10', 'no_lang_code', 1, 'https://ror.org/032h1gp10 Fernando Domínguez (Spain)'), (17547, 'https://ror.org/032pt1y71', 'no_lang_code', 1, 'https://ror.org/032pt1y71 Britwind (United Kingdom)'), (17548, 'https://ror.org/032qg9c61', 'en', 1, 'https://ror.org/032qg9c61 European Community Shipowners'' Associations'), (17549, 'https://ror.org/032tkjf28', 'no_lang_code', 1, 'https://ror.org/032tkjf28 WPP (United States)'), (17550, 'https://ror.org/032tx7v10', 'en', 1, 'https://ror.org/032tx7v10 College of Saint Elizabeth'), (17551, 'https://ror.org/032vk7j62', 'no_lang_code', 1, 'https://ror.org/032vk7j62 Information & Image Management Systems (Spain)'), (17552, 'https://ror.org/032wq4586', 'it', 1, 'https://ror.org/032wq4586 Associazione Regionale Allevatori della Lombardia'), (17553, 'https://ror.org/032wrwd21', 'no_lang_code', 1, 'https://ror.org/032wrwd21 Takara (France)'), (17554, 'https://ror.org/03310m039', 'no_lang_code', 1, 'https://ror.org/03310m039 Brinker Technology (United Kingdom)'), (17555, 'https://ror.org/0331p6r75', 'no_lang_code', 1, 'https://ror.org/0331p6r75 Emcien (United States)'), (17556, 'https://ror.org/0334h0b13', 'no_lang_code', 1, 'https://ror.org/0334h0b13 Columbus NanoWorks (United States)'), (17557, 'https://ror.org/0334ht072', 'no_lang_code', 1, 'https://ror.org/0334ht072 EyeRx Research (United States)'), (17558, 'https://ror.org/033523d69', 'en', 1, 'https://ror.org/033523d69 Association for Research in Vision and Ophthalmology'), (17559, 'https://ror.org/0337f4c15', 'en', 1, 'https://ror.org/0337f4c15 WCA Hospital'), (17560, 'https://ror.org/0338fxs55', 'en', 1, 'https://ror.org/0338fxs55 Skin Cancer Foundation'), (17561, 'https://ror.org/033cp0g08', 'no_lang_code', 1, 'https://ror.org/033cp0g08 Fidelity Systems (United States)'), (17562, 'https://ror.org/033env547', 'en', 1, 'https://ror.org/033env547 Laskeek Bay Conservation Society'), (17563, 'https://ror.org/033epb951', 'no_lang_code', 1, 'https://ror.org/033epb951 Powerway (United States)'), (17564, 'https://ror.org/033gqy043', 'no_lang_code', 1, 'https://ror.org/033gqy043 Fiedler Optoelektronik (Germany) Fiedler optoelectronics'), (17565, 'https://ror.org/033hv7h54', 'no_lang_code', 1, 'https://ror.org/033hv7h54 Cambridge Consultants (United Kingdom)'), (17566, 'https://ror.org/033hy7589', 'en', 1, 'https://ror.org/033hy7589 Cook County Law Library'), (17567, 'https://ror.org/033j79j49', 'en', 1, 'https://ror.org/033j79j49 Family & Children’s Services'), (17568, 'https://ror.org/033ns4d21', 'en', 1, 'https://ror.org/033ns4d21 Stairstep Foundation'), (17569, 'https://ror.org/033nt4y02', 'no_lang_code', 1, 'https://ror.org/033nt4y02 Advance Concepts for Interactive Technology (Germany)'), (17570, 'https://ror.org/033pbx564', 'no_lang_code', 1, 'https://ror.org/033pbx564 3S Photonics (France)'), (17571, 'https://ror.org/033pjdm33', 'no_lang_code', 1, 'https://ror.org/033pjdm33 Inael (Spain)'), (17572, 'https://ror.org/033px5146', 'en', 1, 'https://ror.org/033px5146 Institute of Linguistics Федеральное государственное бюджетное учреждение науки Институт языкознания Российской академии наук'), (17573, 'https://ror.org/033pxr844', 'en', 1, 'https://ror.org/033pxr844 New York State PTA'), (17574, 'https://ror.org/033rk2n62', 'no_lang_code', 1, 'https://ror.org/033rk2n62 Etiometry (United States)'), (17575, 'https://ror.org/033rkxx65', 'en', 1, 'https://ror.org/033rkxx65 Vermont Studio Center'), (17576, 'https://ror.org/033spbm30', 'en', 1, 'https://ror.org/033spbm30 St. Joseph’s Candler Hospital'), (17577, 'https://ror.org/033tgbx59', 'en', 1, 'https://ror.org/033tgbx59 The Centers'), (17578, 'https://ror.org/033tw3v53', 'no_lang_code', 1, 'https://ror.org/033tw3v53 Skulpt (United States)'), (17579, 'https://ror.org/033whn587', 'en', 1, 'https://ror.org/033whn587 Lincoln Library'), (17580, 'https://ror.org/033yatp22', 'en', 1, 'https://ror.org/033yatp22 Ministerstvo Vnútra Slovenskej Republiky Ministry of Interior'), (17581, 'https://ror.org/033z0vf69', 'en', 1, 'https://ror.org/033z0vf69 Roanoke River Valley Education Consortium'), (17582, 'https://ror.org/033zbpq04', 'no_lang_code', 1, 'https://ror.org/033zbpq04 Industrial Systems and Control (United Kingdom)'), (17583, 'https://ror.org/0340nty70', 'en', 1, 'https://ror.org/0340nty70 Winston-Salem/Forsyth County Schools'), (17584, 'https://ror.org/0343dap81', 'en', 1, 'https://ror.org/0343dap81 IEEE Information Theory Society'), (17585, 'https://ror.org/034546p91', 'en', 1, 'https://ror.org/034546p91 Rochester City School District'), (17586, 'https://ror.org/03459qp74', 'no_lang_code', 1, 'https://ror.org/03459qp74 TRUMPF (Germany)'), (17587, 'https://ror.org/0345va412', 'en', 1, 'https://ror.org/0345va412 Strides To Success'), (17588, 'https://ror.org/034ahpr11', 'no_lang_code', 1, 'https://ror.org/034ahpr11 IBM (India)'), (17589, 'https://ror.org/034b4j008', 'no_lang_code', 1, 'https://ror.org/034b4j008 Centice (United States)'), (17590, 'https://ror.org/034c9fe80', 'no_lang_code', 1, 'https://ror.org/034c9fe80 Rofin (Switzerland)'), (17591, 'https://ror.org/034ca3821', 'en', 1, 'https://ror.org/034ca3821 London Regional Children''s Museum'), (17592, 'https://ror.org/034czvt81', 'en', 1, 'https://ror.org/034czvt81 Rockefeller Philanthropy Advisors'), (17593, 'https://ror.org/034d0qf45', 'no_lang_code', 1, 'https://ror.org/034d0qf45 Assystem (France)'), (17594, 'https://ror.org/034d3kf40', 'no_lang_code', 1, 'https://ror.org/034d3kf40 Telekom Srbija (Serbia)'), (17595, 'https://ror.org/034deqj96', 'en', 1, 'https://ror.org/034deqj96 Arab Center for the Studies of Arid Zones and Dry Lands'), (17596, 'https://ror.org/034dp0092', 'es', 1, 'https://ror.org/034dp0092 Centro Tecnológico Nacional de la Conserva y Alimentación'), (17597, 'https://ror.org/034fpp998', 'no_lang_code', 1, 'https://ror.org/034fpp998 International Medias Data Services (Canada)'), (17598, 'https://ror.org/034j4s684', 'en', 1, 'https://ror.org/034j4s684 European-Mediterranean Seismological Centre'), (17599, 'https://ror.org/034jtsg79', 'no_lang_code', 1, 'https://ror.org/034jtsg79 Evidentia Publishing (Netherlands)'), (17600, 'https://ror.org/034k91b65', 'no_lang_code', 1, 'https://ror.org/034k91b65 CloudSigma (Switzerland)'), (17601, 'https://ror.org/034kfx415', 'en', 1, 'https://ror.org/034kfx415 Sky Tavern Junior Ski Program'), (17602, 'https://ror.org/034kkc914', 'no_lang_code', 1, 'https://ror.org/034kkc914 Didael KTS (Italy)'), (17603, 'https://ror.org/034qqhd60', 'no_lang_code', 1, 'https://ror.org/034qqhd60 Advanced Network and Services (United States)'), (17604, 'https://ror.org/034szbq97', 'no_lang_code', 1, 'https://ror.org/034szbq97 Soltigua (Italy)'), (17605, 'https://ror.org/034tcbt19', 'no_lang_code', 1, 'https://ror.org/034tcbt19 Catalyse'), (17606, 'https://ror.org/034vn4e02', 'no_lang_code', 1, 'https://ror.org/034vn4e02 Volkswagen Group (United Kingdom)'), (17607, 'https://ror.org/034vxep50', 'no_lang_code', 1, 'https://ror.org/034vxep50 Idio (United Kingdom)'), (17608, 'https://ror.org/034vz8e35', 'en', 1, 'https://ror.org/034vz8e35 Justice & Public Safety Cabinet'), (17609, 'https://ror.org/034wxzt12', 'no_lang_code', 1, 'https://ror.org/034wxzt12 Highland Biosciences (United Kingdom)'), (17610, 'https://ror.org/034wzpw61', 'no_lang_code', 1, 'https://ror.org/034wzpw61 Hodos Media (United Kingdom)'), (17611, 'https://ror.org/034x1ve75', 'no_lang_code', 1, 'https://ror.org/034x1ve75 McGraw-Hill Education (United States)'), (17612, 'https://ror.org/0351agv44', 'en', 1, 'https://ror.org/0351agv44 National Labor Relations Board'), (17613, 'https://ror.org/035280t21', 'en', 1, 'https://ror.org/035280t21 Greater Western Library Alliance'), (17614, 'https://ror.org/03534h624', 'en', 1, 'https://ror.org/03534h624 JustCommunity'), (17615, 'https://ror.org/0353cdc64', 'en', 1, 'https://ror.org/0353cdc64 The QuadW Foundation'), (17616, 'https://ror.org/0354gjj39', 'en', 1, 'https://ror.org/0354gjj39 St. Christopher Iba Mar Diop College of Medicine'), (17617, 'https://ror.org/0357b6665', 'fr', 1, 'https://ror.org/0357b6665 Centre d''Etudes des Transports pour la Méditerranée Occidentale'), (17618, 'https://ror.org/0358hkb18', 'en', 1, 'https://ror.org/0358hkb18 Cross-Border Research Association'), (17619, 'https://ror.org/0359nwj91', 'no_lang_code', 1, 'https://ror.org/0359nwj91 Abamotor Energia (Spain)'), (17620, 'https://ror.org/035bjd142', 'no_lang_code', 1, 'https://ror.org/035bjd142 Anheuser-Busch InBev (United States)'), (17621, 'https://ror.org/035dh8y26', 'no_lang_code', 1, 'https://ror.org/035dh8y26 Developmental Technologies (United States)'), (17622, 'https://ror.org/035dzyj47', 'de', 1, 'https://ror.org/035dzyj47 Emschergenossenschaft'), (17623, 'https://ror.org/035eg8817', 'no_lang_code', 1, 'https://ror.org/035eg8817 Qiagen (France)'), (17624, 'https://ror.org/035fm0b85', 'en', 1, 'https://ror.org/035fm0b85 St Vincent’s Private Hospital Brisbane'), (17625, 'https://ror.org/035hs0289', 'en', 1, 'https://ror.org/035hs0289 e-Forum'), (17626, 'https://ror.org/035k7ej72', 'no_lang_code', 1, 'https://ror.org/035k7ej72 Kompetente Werthaltige Ingenieurleistung (Austria)'), (17627, 'https://ror.org/035kfrg53', 'no_lang_code', 1, 'https://ror.org/035kfrg53 Argela (Turkey)'), (17628, 'https://ror.org/035r27d93', 'es', 1, 'https://ror.org/035r27d93 Centro Dr. Belluscio'), (17629, 'https://ror.org/035rr6c23', 'en', 1, 'https://ror.org/035rr6c23 MacGillivray Freeman Films'), (17630, 'https://ror.org/035v7sk27', 'no_lang_code', 1, 'https://ror.org/035v7sk27 Pharminox (United Kingdom)'), (17631, 'https://ror.org/035vdar92', 'en', 1, 'https://ror.org/035vdar92 Hands on Science Outreach'), (17632, 'https://ror.org/035x4a178', 'no_lang_code', 1, 'https://ror.org/035x4a178 Fluential (United States)'), (17633, 'https://ror.org/036178197', 'no_lang_code', 1, 'https://ror.org/036178197 eBOS Technologies (Cyprus)'), (17634, 'https://ror.org/0363g3q34', 'no_lang_code', 1, 'https://ror.org/0363g3q34 Innovative Design Labs (United States)'), (17635, 'https://ror.org/03645fg60', 'no_lang_code', 1, 'https://ror.org/03645fg60 Ceres Power (United Kingdom)'), (17636, 'https://ror.org/0365sd121', 'en', 1, 'https://ror.org/0365sd121 UPMC McKeesport'), (17637, 'https://ror.org/03679qg67', 'en', 1, 'https://ror.org/03679qg67 Johnson County Public Library'), (17638, 'https://ror.org/03682w532', 'no_lang_code', 1, 'https://ror.org/03682w532 EUnited (Belgium)'), (17639, 'https://ror.org/03693et41', 'en', 1, 'https://ror.org/03693et41 Sheridan Technical College'), (17640, 'https://ror.org/03694tx76', 'en', 1, 'https://ror.org/03694tx76 South Elgin FUNdation'), (17641, 'https://ror.org/0369g1y44', 'en', 1, 'https://ror.org/0369g1y44 Ministry of Agriculture Forestry and Food'), (17642, 'https://ror.org/0369thf37', 'en', 1, 'https://ror.org/0369thf37 Illinois Eastern Community Colleges'), (17643, 'https://ror.org/036atcw47', 'en', 1, 'https://ror.org/036atcw47 Alfred Mann Foundation'), (17644, 'https://ror.org/036ay9k05', 'en', 1, 'https://ror.org/036ay9k05 Fresno City College'), (17645, 'https://ror.org/036dfng96', 'en', 1, 'https://ror.org/036dfng96 Beamish Museum'), (17646, 'https://ror.org/036f8hp55', 'no_lang_code', 1, 'https://ror.org/036f8hp55 3D Industries (United Kingdom)'), (17647, 'https://ror.org/036grjg58', 'en', 1, 'https://ror.org/036grjg58 Ministry of the Interior Sisäministeriö'), (17648, 'https://ror.org/036gzc033', 'no_lang_code', 1, 'https://ror.org/036gzc033 DM-STAT (United States)'), (17649, 'https://ror.org/036hyk644', 'en', 1, 'https://ror.org/036hyk644 Nazarene Theological Seminary'), (17650, 'https://ror.org/036j3t423', 'no_lang_code', 1, 'https://ror.org/036j3t423 Piraeus Bank Τράπεζα Πειραιώς'), (17651, 'https://ror.org/036j9qe85', 'no_lang_code', 1, 'https://ror.org/036j9qe85 Agricen (United States)'), (17652, 'https://ror.org/036n5h252', 'no_lang_code', 1, 'https://ror.org/036n5h252 Trana Discovery (United States)'), (17653, 'https://ror.org/036n9m383', 'no_lang_code', 1, 'https://ror.org/036n9m383 AB Agri'), (17654, 'https://ror.org/036pnqr73', 'en', 1, 'https://ror.org/036pnqr73 Sinnissippi Centers'), (17655, 'https://ror.org/036w35s91', 'no_lang_code', 1, 'https://ror.org/036w35s91 Kelliher & Associates (United States)'), (17656, 'https://ror.org/036x58c57', 'no_lang_code', 1, 'https://ror.org/036x58c57 PharmatrophiX (United States)'), (17657, 'https://ror.org/0370m6q82', 'no_lang_code', 1, 'https://ror.org/0370m6q82 Chipworks (Canada)'), (17658, 'https://ror.org/037263y09', 'en', 1, 'https://ror.org/037263y09 Canadian Lung Association'), (17659, 'https://ror.org/03731r596', 'no_lang_code', 1, 'https://ror.org/03731r596 Legendary Games (United Kingdom)'), (17660, 'https://ror.org/0373f6s78', 'no_lang_code', 1, 'https://ror.org/0373f6s78 Innovative Technologies Center (Greece) Κέντρο καινοτόμων τεχνολογιών'), (17661, 'https://ror.org/0374c0d66', 'en', 1, 'https://ror.org/0374c0d66 National Louis University'), (17662, 'https://ror.org/037588233', 'en', 1, 'https://ror.org/037588233 Association for the Promotion of Information on Science and Technology for All Countries'), (17663, 'https://ror.org/0375z3382', 'en', 1, 'https://ror.org/0375z3382 Sundance Research Institute'), (17664, 'https://ror.org/0376pw173', 'no_lang_code', 1, 'https://ror.org/0376pw173 Alteryx (United Kingdom)'), (17665, 'https://ror.org/0376wcg10', 'en', 1, 'https://ror.org/0376wcg10 National Counterterrorism Center'), (17666, 'https://ror.org/0377kyv52', 'en', 1, 'https://ror.org/0377kyv52 United Lincolnshire Hospitals NHS Trust'), (17667, 'https://ror.org/0377xq834', 'en', 1, 'https://ror.org/0377xq834 Association of Black Women Physicians'), (17668, 'https://ror.org/037807332', 'no_lang_code', 1, 'https://ror.org/037807332 Best High Pressure & Drilling Technology (Austria)'), (17669, 'https://ror.org/0378d7n06', 'en', 1, 'https://ror.org/0378d7n06 Wyoming Comprehensive Cancer Control Consortium'), (17670, 'https://ror.org/0378pjg29', 'no_lang_code', 1, 'https://ror.org/0378pjg29 Kombiverkehr (Germany)'), (17671, 'https://ror.org/037aj8726', 'en', 1, 'https://ror.org/037aj8726 North Florida Area Agency on Aging'), (17672, 'https://ror.org/037ch9n61', 'no_lang_code', 1, 'https://ror.org/037ch9n61 Collaborative Group (United States)'), (17673, 'https://ror.org/037cpgk40', 'en', 1, 'https://ror.org/037cpgk40 Women’s Rehabilitation Centre'), (17674, 'https://ror.org/037dhrw12', 'no_lang_code', 1, 'https://ror.org/037dhrw12 Fully Distributed Systems (United Kingdom)'), (17675, 'https://ror.org/037es9x13', 'en', 1, 'https://ror.org/037es9x13 European Games Developer Federation'), (17676, 'https://ror.org/037jdf520', 'no_lang_code', 1, 'https://ror.org/037jdf520 Doimak (Spain)'), (17677, 'https://ror.org/037m11k76', 'no_lang_code', 1, 'https://ror.org/037m11k76 3d Scanners (United Kingdom)'), (17678, 'https://ror.org/037n8p820', 'en', 1, 'https://ror.org/037n8p820 Ministerstvo školství, mládeže a tělovýchovy České republiky Ministry of Education Youth and Sports'), (17679, 'https://ror.org/037p72q74', 'en', 1, 'https://ror.org/037p72q74 Raise Hope Foundation'), (17680, 'https://ror.org/037psbw62', 'en', 1, 'https://ror.org/037psbw62 Stanley Park'), (17681, 'https://ror.org/037sqac13', 'no_lang_code', 1, 'https://ror.org/037sqac13 Intelen (Cyprus)'), (17682, 'https://ror.org/037x4qk98', 'en', 1, 'https://ror.org/037x4qk98 International Union Against Tuberculosis and Lung Disease'), (17683, 'https://ror.org/037ydha73', 'en', 1, 'https://ror.org/037ydha73 Hamburg Institute of International Economics Hamburgisches WeltWirtschafts Institut'), (17684, 'https://ror.org/0380g9t27', 'en', 1, 'https://ror.org/0380g9t27 Lurleen B Wallace Community College'), (17685, 'https://ror.org/038147z68', 'no_lang_code', 1, 'https://ror.org/038147z68 Promotora de Informaciones (Spain)'), (17686, 'https://ror.org/038212696', 'en', 1, 'https://ror.org/038212696 Benaki Museum Μουσείο Μπενάκη'), (17687, 'https://ror.org/0382ee542', 'en', 1, 'https://ror.org/0382ee542 Park Ridge Public Library'), (17688, 'https://ror.org/038680g19', 'en', 1, 'https://ror.org/038680g19 Bundesamt für Eich- und Vermessungswesen Federal Office of Metrology and Surveying'), (17689, 'https://ror.org/0386d9c06', 'no_lang_code', 1, 'https://ror.org/0386d9c06 ChemDiv (United States)'), (17690, 'https://ror.org/038729s57', 'no_lang_code', 1, 'https://ror.org/038729s57 ERS Steuerungstechnik (Germany)'), (17691, 'https://ror.org/0387ev146', 'en', 1, 'https://ror.org/0387ev146 Lancaster City Council'), (17692, 'https://ror.org/0387prb75', 'en', 1, 'https://ror.org/0387prb75 FIZ Karlsruhe - Leibniz-Institut für Informationsinfrastruktur FIZ Karlsruhe – Leibniz Institute for Information Infrastructure'), (17693, 'https://ror.org/0389mec09', 'no_lang_code', 1, 'https://ror.org/0389mec09 Biothermica (Canada)'), (17694, 'https://ror.org/0389pd205', 'no_lang_code', 1, 'https://ror.org/0389pd205 Helitune (United Kingdom)'), (17695, 'https://ror.org/038ctdt29', 'en', 1, 'https://ror.org/038ctdt29 Community Services Institute'), (17696, 'https://ror.org/038dact55', 'no_lang_code', 1, 'https://ror.org/038dact55 Battery Ventures (United States)'), (17697, 'https://ror.org/038enx362', 'en', 1, 'https://ror.org/038enx362 Vannie E. Cook Jr. Cancer Foundation'), (17698, 'https://ror.org/038fwj823', 'en', 1, 'https://ror.org/038fwj823 Aspen Cancer Conference'), (17699, 'https://ror.org/038fxe657', 'no_lang_code', 1, 'https://ror.org/038fxe657 Extended Home Living Services'), (17700, 'https://ror.org/038ja4880', 'en', 1, 'https://ror.org/038ja4880 Alex''s Lemonade Stand Foundation'), (17701, 'https://ror.org/038jkh114', 'no_lang_code', 1, 'https://ror.org/038jkh114 Kentech Instruments (United Kingdom)'), (17702, 'https://ror.org/038k3ws77', 'en', 1, 'https://ror.org/038k3ws77 Centre of Polymer and Carbon Materials'), (17703, 'https://ror.org/038n1rk38', 'en', 1, 'https://ror.org/038n1rk38 Business Innovation Centre'), (17704, 'https://ror.org/038nw4939', 'fr', 1, 'https://ror.org/038nw4939 Institut Technique de l''Agriculture Biologique'), (17705, 'https://ror.org/038s1ax16', 'en', 1, 'https://ror.org/038s1ax16 Temple College'), (17706, 'https://ror.org/038s1hq41', 'en', 1, 'https://ror.org/038s1hq41 All Russian Research Institute of Hydrometeorological information World Data Center Всероссийский научно-исследовательский институт России гидрометеорологической информации Мировой центр данных'), (17707, 'https://ror.org/038srqh25', 'fr', 1, 'https://ror.org/038srqh25 Études Métallurgiques Traitements Thermiques'), (17708, 'https://ror.org/038yk2262', 'no_lang_code', 1, 'https://ror.org/038yk2262 Burness (United States)'), (17709, 'https://ror.org/0390mzx53', 'en', 1, 'https://ror.org/0390mzx53 London Institute for Mathematical Sciences'), (17710, 'https://ror.org/0390pfr19', 'en', 1, 'https://ror.org/0390pfr19 European Association for the Study of Obesity'), (17711, 'https://ror.org/0390twm75', 'en', 1, 'https://ror.org/0390twm75 Canadian Institute of Public Health Inspectors'), (17712, 'https://ror.org/03912g573', 'no_lang_code', 1, 'https://ror.org/03912g573 Idom (Spain)'), (17713, 'https://ror.org/0391yk308', 'no_lang_code', 1, 'https://ror.org/0391yk308 Altran (Austria)'), (17714, 'https://ror.org/0393dce17', 'no_lang_code', 1, 'https://ror.org/0393dce17 Maire Tecnimont (Italy)'), (17715, 'https://ror.org/0393dxb43', 'no_lang_code', 1, 'https://ror.org/0393dxb43 Flisom (Switzerland)'), (17716, 'https://ror.org/039479p46', 'en', 1, 'https://ror.org/039479p46 Roper St. Francis Healthcare'), (17717, 'https://ror.org/0394awa03', 'no_lang_code', 1, 'https://ror.org/0394awa03 Atos (Turkey)'), (17718, 'https://ror.org/03952wq53', 'en', 1, 'https://ror.org/03952wq53 United Way of Southeastern Idaho'), (17719, 'https://ror.org/0396vya75', 'no_lang_code', 1, 'https://ror.org/0396vya75 Bilfinger (Germany)'), (17720, 'https://ror.org/0399jq845', 'no_lang_code', 1, 'https://ror.org/0399jq845 Lafer (Italy)'), (17721, 'https://ror.org/039g7yg54', 'no_lang_code', 1, 'https://ror.org/039g7yg54 Automobile Association (United Kingdom)'), (17722, 'https://ror.org/039g7zn40', 'en', 1, 'https://ror.org/039g7zn40 Veterans Education and Research Association of Northern New England'), (17723, 'https://ror.org/039kb9274', 'en', 1, 'https://ror.org/039kb9274 Center for Asbestos Related Disease'), (17724, 'https://ror.org/039pwme76', 'no_lang_code', 1, 'https://ror.org/039pwme76 Viasat (United States)'), (17725, 'https://ror.org/039se1n41', 'no_lang_code', 1, 'https://ror.org/039se1n41 Ideasis (Greece)'), (17726, 'https://ror.org/039vmq038', 'no_lang_code', 1, 'https://ror.org/039vmq038 Lyncean Technologies (United States)'), (17727, 'https://ror.org/039vvqy75', 'en', 1, 'https://ror.org/039vvqy75 Phoebe Sumter Medical Center'), (17728, 'https://ror.org/039vz4177', 'no_lang_code', 1, 'https://ror.org/039vz4177 Granlund (Finland)'), (17729, 'https://ror.org/039xd5z05', 'no_lang_code', 1, 'https://ror.org/039xd5z05 Logística y Acondicionamientos Industriales (Spain)'), (17730, 'https://ror.org/039xp9584', 'en', 1, 'https://ror.org/039xp9584 Westside Health Authority'), (17731, 'https://ror.org/039y05x37', 'en', 1, 'https://ror.org/039y05x37 Association of American State Geologists'), (17732, 'https://ror.org/039z65d40', 'en', 1, 'https://ror.org/039z65d40 European Welding Federation'), (17733, 'https://ror.org/03a4hjz39', 'no_lang_code', 1, 'https://ror.org/03a4hjz39 Getas Petrogeo (Italy)'), (17734, 'https://ror.org/03a76f909', 'en', 1, 'https://ror.org/03a76f909 Autoridad Portuaria de Santander Santander Port Authority'), (17735, 'https://ror.org/03a9d3647', 'en', 1, 'https://ror.org/03a9d3647 Rhodes State College'), (17736, 'https://ror.org/03aajm102', 'no_lang_code', 1, 'https://ror.org/03aajm102 Keronite (United Kingdom)'), (17737, 'https://ror.org/03aak0114', 'no_lang_code', 1, 'https://ror.org/03aak0114 Capital Technology Information Services'), (17738, 'https://ror.org/03aat3341', 'en', 1, 'https://ror.org/03aat3341 Atlantic Union College'), (17739, 'https://ror.org/03adps494', 'en', 1, 'https://ror.org/03adps494 Community Network Services'), (17740, 'https://ror.org/03adw6z89', 'no_lang_code', 1, 'https://ror.org/03adw6z89 Cox Analytical Systems (Sweden)'), (17741, 'https://ror.org/03afcx383', 'es', 1, 'https://ror.org/03afcx383 Asociación Española de Fabricantes de Equipos y Componentes para Automoción'), (17742, 'https://ror.org/03afd3b65', 'en', 1, 'https://ror.org/03afd3b65 Moraine Park Technical College'), (17743, 'https://ror.org/03ag8py18', 'fr', 1, 'https://ror.org/03ag8py18 Académie de Montpellier'), (17744, 'https://ror.org/03ajkmw94', 'en', 1, 'https://ror.org/03ajkmw94 British Academy of Film and Television Arts'), (17745, 'https://ror.org/03ak9f780', 'en', 1, 'https://ror.org/03ak9f780 Harrington Cancer Center'), (17746, 'https://ror.org/03akswg93', 'en', 1, 'https://ror.org/03akswg93 Safe Horizon'), (17747, 'https://ror.org/03anw0996', 'no_lang_code', 1, 'https://ror.org/03anw0996 Coord3 Industries (Italy)'), (17748, 'https://ror.org/03apr9j04', 'en', 1, 'https://ror.org/03apr9j04 Signature Research Institute'), (17749, 'https://ror.org/03ar2j538', 'no_lang_code', 1, 'https://ror.org/03ar2j538 Innospec (United Kingdom)'), (17750, 'https://ror.org/03ar82423', 'en', 1, 'https://ror.org/03ar82423 Watauga Medical Center'), (17751, 'https://ror.org/03avx4w11', 'no_lang_code', 1, 'https://ror.org/03avx4w11 Costruzioni Apparecchiature Elettroniche Nucleari (Italy)'), (17752, 'https://ror.org/03awk9p59', 'en', 1, 'https://ror.org/03awk9p59 Wallace Laboratories'), (17753, 'https://ror.org/03awv1y89', 'en', 1, 'https://ror.org/03awv1y89 Reproductive Medicine Institute'), (17754, 'https://ror.org/03aydnn87', 'en', 1, 'https://ror.org/03aydnn87 Ars Electronica Center'), (17755, 'https://ror.org/03aztvx54', 'en', 1, 'https://ror.org/03aztvx54 International Organization for Migration'), (17756, 'https://ror.org/03b01rf26', 'it', 1, 'https://ror.org/03b01rf26 Formedil'), (17757, 'https://ror.org/03b03v914', 'en', 1, 'https://ror.org/03b03v914 Wheaton Public Library'), (17758, 'https://ror.org/03b1p5875', 'fr', 1, 'https://ror.org/03b1p5875 Ministère de la Santé Publique et de la Population'), (17759, 'https://ror.org/03b27e555', 'en', 1, 'https://ror.org/03b27e555 Warren-Trumbull County Public Library'), (17760, 'https://ror.org/03b2j7609', 'no_lang_code', 1, 'https://ror.org/03b2j7609 Geomer (Germany)'), (17761, 'https://ror.org/03b4ksy95', 'en', 1, 'https://ror.org/03b4ksy95 Institute of Global Climate and Ecology Институт глобального климата и экологии'), (17762, 'https://ror.org/03b8hyb18', 'no_lang_code', 1, 'https://ror.org/03b8hyb18 Columbus Superconductors (Italy)'), (17763, 'https://ror.org/03b92zg63', 'en', 1, 'https://ror.org/03b92zg63 Alabama Department of Agriculture and Industries'), (17764, 'https://ror.org/03bc9tz11', 'en', 1, 'https://ror.org/03bc9tz11 USA Cares'), (17765, 'https://ror.org/03bcvxv20', 'en', 1, 'https://ror.org/03bcvxv20 Sisters of Providence Health System'), (17766, 'https://ror.org/03bngxz45', 'no_lang_code', 1, 'https://ror.org/03bngxz45 Advanced Energy Materials (United States)'), (17767, 'https://ror.org/03bq13516', 'en', 1, 'https://ror.org/03bq13516 Guilford Technical Community College'), (17768, 'https://ror.org/03bqmf942', 'no_lang_code', 1, 'https://ror.org/03bqmf942 Atrium Innovations (Canada)'), (17769, 'https://ror.org/03br44f40', 'en', 1, 'https://ror.org/03br44f40 Unlimited Abilities Foundation'), (17770, 'https://ror.org/03bskcm82', 'no_lang_code', 1, 'https://ror.org/03bskcm82 Contextual Change (United States)'), (17771, 'https://ror.org/03btbhp73', 'no_lang_code', 1, 'https://ror.org/03btbhp73 Circulomics (United States)'), (17772, 'https://ror.org/03bvw7q76', 'no_lang_code', 1, 'https://ror.org/03bvw7q76 Dolphin Design (France)'), (17773, 'https://ror.org/03bvy3496', 'en', 1, 'https://ror.org/03bvy3496 European Geothermal Energy Council'), (17774, 'https://ror.org/03c0cr114', 'en', 1, 'https://ror.org/03c0cr114 Center of Maritime Technologies'), (17775, 'https://ror.org/03c1rcd16', 'no_lang_code', 1, 'https://ror.org/03c1rcd16 Daher (France)'), (17776, 'https://ror.org/03c22w876', 'en', 1, 'https://ror.org/03c22w876 Vittal Mallya Scientific Research Foundation'), (17777, 'https://ror.org/03c3kz798', 'fr', 1, 'https://ror.org/03c3kz798 ATECA - Applications Technologie Avancée'), (17778, 'https://ror.org/03c8hnh70', 'en', 1, 'https://ror.org/03c8hnh70 German Breast group'), (17779, 'https://ror.org/03cev9t93', 'fr', 1, 'https://ror.org/03cev9t93 Centre National de l''Informatique'), (17780, 'https://ror.org/03cf36w49', 'en', 1, 'https://ror.org/03cf36w49 Southern Wesleyan University'), (17781, 'https://ror.org/03cjp2c87', 'en', 1, 'https://ror.org/03cjp2c87 Glasgow Victoria Infirmary'), (17782, 'https://ror.org/03cjt8a33', 'en', 1, 'https://ror.org/03cjt8a33 Wolfe Eye Clinic'), (17783, 'https://ror.org/03cnry959', 'no_lang_code', 1, 'https://ror.org/03cnry959 European & International Federation of Natural Stone Industries Federation Europeenne & Internationale des Industries de la Pierre Naturelle'), (17784, 'https://ror.org/03cpyj611', 'en', 1, 'https://ror.org/03cpyj611 East Central College'), (17785, 'https://ror.org/03cr5p796', 'no_lang_code', 1, 'https://ror.org/03cr5p796 Learning Express Toys (United States)'), (17786, 'https://ror.org/03ct7hd51', 'no_lang_code', 1, 'https://ror.org/03ct7hd51 Henkel (Netherlands)'), (17787, 'https://ror.org/03d169816', 'no_lang_code', 1, 'https://ror.org/03d169816 Benten Technologies (United States)'), (17788, 'https://ror.org/03d1aqs10', 'no_lang_code', 1, 'https://ror.org/03d1aqs10 ACMA Social Marketing'), (17789, 'https://ror.org/03d2ezn18', 'ca', 1, 'https://ror.org/03d2ezn18 Institut Cartogràfic i Geològic de Catalunya'), (17790, 'https://ror.org/03d2qa639', 'no_lang_code', 1, 'https://ror.org/03d2qa639 AnyWi Technologies (Netherlands)'), (17791, 'https://ror.org/03ddhrn22', 'no_lang_code', 1, 'https://ror.org/03ddhrn22 Shri Vile Parle Kelavani Mandal'), (17792, 'https://ror.org/03de9mq04', 'en', 1, 'https://ror.org/03de9mq04 Tuomey Healthcare System'), (17793, 'https://ror.org/03df4xq04', 'no_lang_code', 1, 'https://ror.org/03df4xq04 Espion (Ireland)'), (17794, 'https://ror.org/03dfsfy59', 'en', 1, 'https://ror.org/03dfsfy59 Waubonsee Community College'), (17795, 'https://ror.org/03dgqxa26', 'no_lang_code', 1, 'https://ror.org/03dgqxa26 E2S (Belgium)'), (17796, 'https://ror.org/03dh12p89', 'en', 1, 'https://ror.org/03dh12p89 Perinatal Institute'), (17797, 'https://ror.org/03dp7mk93', 'en', 1, 'https://ror.org/03dp7mk93 Whole Elephant Institute'), (17798, 'https://ror.org/03dpzam72', 'es', 1, 'https://ror.org/03dpzam72 Instituto Nacional del Agua'), (17799, 'https://ror.org/03dq1ad60', 'no_lang_code', 1, 'https://ror.org/03dq1ad60 Galorath (United Kingdom)'), (17800, 'https://ror.org/03dr4sp04', 'en', 1, 'https://ror.org/03dr4sp04 AEROTRON Research'), (17801, 'https://ror.org/03drnt809', 'no_lang_code', 1, 'https://ror.org/03drnt809 Scynexis (United States)'), (17802, 'https://ror.org/03dtd0v69', 'no_lang_code', 1, 'https://ror.org/03dtd0v69 Cellix (Ireland)'), (17803, 'https://ror.org/03dtjkc02', 'no_lang_code', 1, 'https://ror.org/03dtjkc02 Erothitan (Germany)'), (17804, 'https://ror.org/03dwnrz57', 'no_lang_code', 1, 'https://ror.org/03dwnrz57 Insulcon (Netherlands)'), (17805, 'https://ror.org/03dx84k02', 'no_lang_code', 1, 'https://ror.org/03dx84k02 AtriCure (United States)'), (17806, 'https://ror.org/03dxy5y92', 'en', 1, 'https://ror.org/03dxy5y92 The Arthroplasty Patient Foundation'), (17807, 'https://ror.org/03dyemd88', 'en', 1, 'https://ror.org/03dyemd88 Nunez Community College'), (17808, 'https://ror.org/03e1jqq60', 'en', 1, 'https://ror.org/03e1jqq60 Franklin Pierce University'), (17809, 'https://ror.org/03e3kts03', 'en', 1, 'https://ror.org/03e3kts03 South Australian Health and Medical Research Institute'), (17810, 'https://ror.org/03e491272', 'en', 1, 'https://ror.org/03e491272 Irish Congress of Trade Unions'), (17811, 'https://ror.org/03ee26z15', 'no_lang_code', 1, 'https://ror.org/03ee26z15 Formatec Technical Ceramics (Netherlands)'); INSERT INTO `rors` VALUES (17812, 'https://ror.org/03eg5yv61', 'no_lang_code', 1, 'https://ror.org/03eg5yv61 Neogen Europe (United Kingdom)'), (17813, 'https://ror.org/03ej57906', 'no_lang_code', 1, 'https://ror.org/03ej57906 Belsim (Belgium)'), (17814, 'https://ror.org/03ejd2z94', 'en', 1, 'https://ror.org/03ejd2z94 Iowa Department of Education'), (17815, 'https://ror.org/03ekg6244', 'no_lang_code', 1, 'https://ror.org/03ekg6244 Etna Biotech (Italy)'), (17816, 'https://ror.org/03emf1n04', 'no_lang_code', 1, 'https://ror.org/03emf1n04 Bristol-Myers Squibb (United Kingdom)'), (17817, 'https://ror.org/03en68s56', 'no_lang_code', 1, 'https://ror.org/03en68s56 Haesevoets (Belgium)'), (17818, 'https://ror.org/03epk7q46', 'en', 1, 'https://ror.org/03epk7q46 Storrs Library'), (17819, 'https://ror.org/03es33149', 'no_lang_code', 1, 'https://ror.org/03es33149 SWAZ Potato Farms (United States)'), (17820, 'https://ror.org/03esv2r68', 'no_lang_code', 1, 'https://ror.org/03esv2r68 Stealth Biosciences (United States)'), (17821, 'https://ror.org/03et11k80', 'no_lang_code', 1, 'https://ror.org/03et11k80 Eurosolare (Italy)'), (17822, 'https://ror.org/03ewz3a13', 'no_lang_code', 1, 'https://ror.org/03ewz3a13 Delta Technologies Sud Ouest (France)'), (17823, 'https://ror.org/03exh9a13', 'en', 1, 'https://ror.org/03exh9a13 West Humboldt Park Development Council'), (17824, 'https://ror.org/03exwgf66', 'en', 1, 'https://ror.org/03exwgf66 Fife House'), (17825, 'https://ror.org/03eypca36', 'no_lang_code', 1, 'https://ror.org/03eypca36 FMC (Norway)'), (17826, 'https://ror.org/03ezean90', 'en', 1, 'https://ror.org/03ezean90 Washington Regional Medical Center'), (17827, 'https://ror.org/03f015z81', 'en', 1, 'https://ror.org/03f015z81 Zhejiang Center for Disease Control and Prevention 浙江省疾病预防控制中心'), (17828, 'https://ror.org/03f0njg03', 'fr', 1, 'https://ror.org/03f0njg03 Université des Sciences et Techniques de Masuku'), (17829, 'https://ror.org/03f1p6998', 'en', 1, 'https://ror.org/03f1p6998 Infectious Diseases Society of America'), (17830, 'https://ror.org/03f22z049', 'en', 1, 'https://ror.org/03f22z049 Exeter City Council'), (17831, 'https://ror.org/03f2kwz12', 'no_lang_code', 1, 'https://ror.org/03f2kwz12 BIA Separations (Slovenia)'), (17832, 'https://ror.org/03f5avr03', 'en', 1, 'https://ror.org/03f5avr03 Electrotechnical Institute'), (17833, 'https://ror.org/03f8sb410', 'no_lang_code', 1, 'https://ror.org/03f8sb410 Maus (Germany)'), (17834, 'https://ror.org/03f8z3m49', 'no_lang_code', 1, 'https://ror.org/03f8z3m49 InfoCulture (United States)'), (17835, 'https://ror.org/03f90wp03', 'en', 1, 'https://ror.org/03f90wp03 Canadian Association for Girls in Science'), (17836, 'https://ror.org/03f9kek24', 'no_lang_code', 1, 'https://ror.org/03f9kek24 Fatman (Finland)'), (17837, 'https://ror.org/03f9m1k43', 'no_lang_code', 1, 'https://ror.org/03f9m1k43 BP (France)'), (17838, 'https://ror.org/03fadn241', 'no_lang_code', 1, 'https://ror.org/03fadn241 Martechnic (Germany)'), (17839, 'https://ror.org/03faeab35', 'no_lang_code', 1, 'https://ror.org/03faeab35 ABB (Finland)'), (17840, 'https://ror.org/03fcx1h14', 'en', 1, 'https://ror.org/03fcx1h14 SSM Health Rehabilitation Hospital'), (17841, 'https://ror.org/03fej8604', 'no_lang_code', 1, 'https://ror.org/03fej8604 Elforlight (United Kingdom)'), (17842, 'https://ror.org/03fgg2060', 'no_lang_code', 1, 'https://ror.org/03fgg2060 DIARC-Technology (Finland)'), (17843, 'https://ror.org/03fjxe887', 'no_lang_code', 1, 'https://ror.org/03fjxe887 Sumitomo Chemical (United Kingdom)'), (17844, 'https://ror.org/03fjxhp48', 'en', 1, 'https://ror.org/03fjxhp48 Hoard Historical Museum'), (17845, 'https://ror.org/03fkfdh53', 'no_lang_code', 1, 'https://ror.org/03fkfdh53 AED-SICAD (Germany)'), (17846, 'https://ror.org/03fkh3x71', 'en', 1, 'https://ror.org/03fkh3x71 Roger C. Peace Rehabilitation Hospital'), (17847, 'https://ror.org/03fkvkp40', 'en', 1, 'https://ror.org/03fkvkp40 Star Neuroscience Foundation'), (17848, 'https://ror.org/03fmc9y65', 'no_lang_code', 1, 'https://ror.org/03fmc9y65 Albany Molecular Research (United Kingdom)'), (17849, 'https://ror.org/03fpb6q62', 'no_lang_code', 1, 'https://ror.org/03fpb6q62 Exalos (Switzerland)'), (17850, 'https://ror.org/03fqpp165', 'no_lang_code', 1, 'https://ror.org/03fqpp165 Bioergonomics (United States)'), (17851, 'https://ror.org/03fqqns24', 'fr', 1, 'https://ror.org/03fqqns24 Missions Publiques'), (17852, 'https://ror.org/03fs09n75', 'no_lang_code', 1, 'https://ror.org/03fs09n75 Aalborg Portland (Denmark)'), (17853, 'https://ror.org/03fsr8g81', 'en', 1, 'https://ror.org/03fsr8g81 Children’s Cause for Cancer Advocacy'), (17854, 'https://ror.org/03fw2bn12', 'fr', 1, 'https://ror.org/03fw2bn12 Centre d''Imagerie BioMedicale'), (17855, 'https://ror.org/03fw4vf13', 'no_lang_code', 1, 'https://ror.org/03fw4vf13 Total Quadran (France)'), (17856, 'https://ror.org/03fwsh914', 'en', 1, 'https://ror.org/03fwsh914 State Library of Ohio'), (17857, 'https://ror.org/03fxegb97', 'en', 1, 'https://ror.org/03fxegb97 Alpha Consulting Services'), (17858, 'https://ror.org/03g0fjd93', 'no_lang_code', 1, 'https://ror.org/03g0fjd93 RM Education (United Kingdom)'), (17859, 'https://ror.org/03g0jst60', 'no_lang_code', 1, 'https://ror.org/03g0jst60 Selecta Biosciences (United States)'), (17860, 'https://ror.org/03g0nfg79', 'en', 1, 'https://ror.org/03g0nfg79 Heritage Museum and Cultural Center'), (17861, 'https://ror.org/03g1bs356', 'no_lang_code', 1, 'https://ror.org/03g1bs356 BioAssessments (United States)'), (17862, 'https://ror.org/03g25vn60', 'en', 1, 'https://ror.org/03g25vn60 Wings Cancer Foundation'), (17863, 'https://ror.org/03g46y557', 'no_lang_code', 1, 'https://ror.org/03g46y557 Codeplay (United Kingdom)'), (17864, 'https://ror.org/03g4gca53', 'en', 1, 'https://ror.org/03g4gca53 Florida SouthWestern State College'), (17865, 'https://ror.org/03g5d6c96', 'en', 1, 'https://ror.org/03g5d6c96 Cancer Council Queensland'), (17866, 'https://ror.org/03g6j6055', 'no_lang_code', 1, 'https://ror.org/03g6j6055 BASF (Switzerland)'), (17867, 'https://ror.org/03g83ha52', 'en', 1, 'https://ror.org/03g83ha52 Ukrainian Anti Cancer Institute Ukrainisches Institut für Krebsbekämpfung'), (17868, 'https://ror.org/03g9ch715', 'en', 1, 'https://ror.org/03g9ch715 National Center for Supercomputing Applications'), (17869, 'https://ror.org/03g9n2p49', 'no_lang_code', 1, 'https://ror.org/03g9n2p49 Airtren (Spain)'), (17870, 'https://ror.org/03ga5xc36', 'no_lang_code', 1, 'https://ror.org/03ga5xc36 Wockhardt Hospitals'), (17871, 'https://ror.org/03gamv550', 'en', 1, 'https://ror.org/03gamv550 U.S. Committee for Refugees and Immigrants'), (17872, 'https://ror.org/03gb01811', 'en', 1, 'https://ror.org/03gb01811 Washington State Department of Ecology'), (17873, 'https://ror.org/03gb5pj65', 'no_lang_code', 1, 'https://ror.org/03gb5pj65 Fuchs (Austria)'), (17874, 'https://ror.org/03gbp6p96', 'en', 1, 'https://ror.org/03gbp6p96 Hospital of Prato'), (17875, 'https://ror.org/03gbwkj22', 'en', 1, 'https://ror.org/03gbwkj22 Vincennes University'), (17876, 'https://ror.org/03gd10562', 'no_lang_code', 1, 'https://ror.org/03gd10562 Converspeech (United States)'), (17877, 'https://ror.org/03gf89e85', 'en', 1, 'https://ror.org/03gf89e85 SportsClub'), (17878, 'https://ror.org/03gg7kg14', 'en', 1, 'https://ror.org/03gg7kg14 youthSpark'), (17879, 'https://ror.org/03gjpwc41', 'no_lang_code', 1, 'https://ror.org/03gjpwc41 Cosmetic (Greece)'), (17880, 'https://ror.org/03gkf9664', 'no_lang_code', 1, 'https://ror.org/03gkf9664 IBK-Innovation (Germany)'), (17881, 'https://ror.org/03gkfpj41', 'no_lang_code', 1, 'https://ror.org/03gkfpj41 Icelandic New Energy (Iceland)'), (17882, 'https://ror.org/03gkhzn08', 'no_lang_code', 1, 'https://ror.org/03gkhzn08 Crowell & Moring (United States)'), (17883, 'https://ror.org/03gnfa870', 'en', 1, 'https://ror.org/03gnfa870 Athenaeum of Ohio'), (17884, 'https://ror.org/03gpg3e34', 'no_lang_code', 1, 'https://ror.org/03gpg3e34 Pillar (Ukraine)'), (17885, 'https://ror.org/03gpg5f33', 'no_lang_code', 1, 'https://ror.org/03gpg5f33 RJS Biologics (United States)'), (17886, 'https://ror.org/03gqeqw02', 'en', 1, 'https://ror.org/03gqeqw02 Youth Net and Counselling'), (17887, 'https://ror.org/03gr38452', 'no_lang_code', 1, 'https://ror.org/03gr38452 Metallurgische Verfahrenstechnik (Germany)'), (17888, 'https://ror.org/03grwn392', 'en', 1, 'https://ror.org/03grwn392 Santa Clara County Probation Department'), (17889, 'https://ror.org/03gt1hw33', 'en', 1, 'https://ror.org/03gt1hw33 St. Mary’s Healthcare System for Children'), (17890, 'https://ror.org/03gtcr185', 'en', 1, 'https://ror.org/03gtcr185 W.K. Kellogg Foundation'), (17891, 'https://ror.org/03gtqhp76', 'en', 1, 'https://ror.org/03gtqhp76 Central Laboratory for Agricultural Climate المعمل المركزي للمناخ الزراعي'), (17892, 'https://ror.org/03gtrve45', 'en', 1, 'https://ror.org/03gtrve45 Society for the Investigation of Early Pregnancy'), (17893, 'https://ror.org/03gvvb706', 'en', 1, 'https://ror.org/03gvvb706 Association of Schools and Programs of Public Health'), (17894, 'https://ror.org/03gwjxa72', 'en', 1, 'https://ror.org/03gwjxa72 Alliance for Positive Health'), (17895, 'https://ror.org/03gzf5338', 'en', 1, 'https://ror.org/03gzf5338 International Ecological Engineering Society'), (17896, 'https://ror.org/03h0ffq42', 'no_lang_code', 1, 'https://ror.org/03h0ffq42 Elite Bread Industry (Greece)'), (17897, 'https://ror.org/03h1gea69', 'en', 1, 'https://ror.org/03h1gea69 St. Baldrick''s Foundation'), (17898, 'https://ror.org/03h22yx22', 'no_lang_code', 1, 'https://ror.org/03h22yx22 C & L Instruments (United States)'), (17899, 'https://ror.org/03h41j949', 'no_lang_code', 1, 'https://ror.org/03h41j949 Cureveda (United States)'), (17900, 'https://ror.org/03h42b392', 'en', 1, 'https://ror.org/03h42b392 Biblioteca Nazionale Centrale di Roma Rome National Central Library'), (17901, 'https://ror.org/03h5m5b13', 'no_lang_code', 1, 'https://ror.org/03h5m5b13 Acromas Holdings (United Kingdom)'), (17902, 'https://ror.org/03h60kq84', 'no_lang_code', 1, 'https://ror.org/03h60kq84 Medennium (United States)'), (17903, 'https://ror.org/03h7p3m59', 'en', 1, 'https://ror.org/03h7p3m59 Wake County Public School System'), (17904, 'https://ror.org/03h80hk08', 'no_lang_code', 1, 'https://ror.org/03h80hk08 Alligator Bioscience (Sweden)'), (17905, 'https://ror.org/03h9pd916', 'no_lang_code', 1, 'https://ror.org/03h9pd916 Idrodepurazione (Italy)'), (17906, 'https://ror.org/03hb5cs16', 'en', 1, 'https://ror.org/03hb5cs16 Road and Bridge Research Institute'), (17907, 'https://ror.org/03hb5ht18', 'no_lang_code', 1, 'https://ror.org/03hb5ht18 Craftsman Tools (United Kingdom)'), (17908, 'https://ror.org/03hc96946', 'no_lang_code', 1, 'https://ror.org/03hc96946 Facilia (Sweden)'), (17909, 'https://ror.org/03hcjbn12', 'no_lang_code', 1, 'https://ror.org/03hcjbn12 interactive instruments (Germany)'), (17910, 'https://ror.org/03hd9e620', 'en', 1, 'https://ror.org/03hd9e620 Pediatric Neurology Briefs'), (17911, 'https://ror.org/03hhmg705', 'no_lang_code', 1, 'https://ror.org/03hhmg705 Medvis (United States)'), (17912, 'https://ror.org/03hm54n21', 'it', 1, 'https://ror.org/03hm54n21 Istituto Italiano della Saldatura Italian Institute of Welding'), (17913, 'https://ror.org/03hndsz31', 'en', 1, 'https://ror.org/03hndsz31 British Editorial Society of Bone & Joint Surgery'), (17914, 'https://ror.org/03hnjq088', 'no_lang_code', 1, 'https://ror.org/03hnjq088 Informatique Electromagnetisme Electronique Analyse Numerique (France)'), (17915, 'https://ror.org/03hr9ag95', 'no_lang_code', 1, 'https://ror.org/03hr9ag95 RMG Consultants (United States)'), (17916, 'https://ror.org/03ht7jd59', 'en', 1, 'https://ror.org/03ht7jd59 Edgewood Independent School District'), (17917, 'https://ror.org/03hwfnp11', 'en', 1, 'https://ror.org/03hwfnp11 Computer Emergency Response Team'), (17918, 'https://ror.org/03hx2yz19', 'no_lang_code', 1, 'https://ror.org/03hx2yz19 Paccar (United Kingdom)'), (17919, 'https://ror.org/03hx4fx74', 'en', 1, 'https://ror.org/03hx4fx74 Keuka College'), (17920, 'https://ror.org/03hxyy911', 'en', 1, 'https://ror.org/03hxyy911 Day One'), (17921, 'https://ror.org/03hz0jb14', 'no_lang_code', 1, 'https://ror.org/03hz0jb14 Avaxia Biologics (United States)'), (17922, 'https://ror.org/03j1srb55', 'no_lang_code', 1, 'https://ror.org/03j1srb55 Laser- und Medizin-Technologie (Germany)'), (17923, 'https://ror.org/03j22xd51', 'no_lang_code', 1, 'https://ror.org/03j22xd51 The SoundWell (United States)'), (17924, 'https://ror.org/03j2pv534', 'en', 1, 'https://ror.org/03j2pv534 YR Gaitonde Centre for AIDS Research and Education'), (17925, 'https://ror.org/03j2znq68', 'en', 1, 'https://ror.org/03j2znq68 Schoolcraft College'), (17926, 'https://ror.org/03j4bbt02', 'no_lang_code', 1, 'https://ror.org/03j4bbt02 Biopolis (Spain)'), (17927, 'https://ror.org/03j4qkf39', 'no_lang_code', 1, 'https://ror.org/03j4qkf39 Attocube Systems (Germany)'), (17928, 'https://ror.org/03j705z82', 'en', 1, 'https://ror.org/03j705z82 United Hospice'), (17929, 'https://ror.org/03j84nv98', 'no_lang_code', 1, 'https://ror.org/03j84nv98 Heart Imaging Technologies (United States)'), (17930, 'https://ror.org/03jaw3x77', 'en', 1, 'https://ror.org/03jaw3x77 Quality of Life Plus'), (17931, 'https://ror.org/03jbgaw48', 'en', 1, 'https://ror.org/03jbgaw48 Women for Peace and Democracy – Nepal'), (17932, 'https://ror.org/03jd1w748', 'no_lang_code', 1, 'https://ror.org/03jd1w748 CCTV User Group (United Kingdom)'), (17933, 'https://ror.org/03jg2ja29', 'de', 1, 'https://ror.org/03jg2ja29 Forschungszentrum für Kältetechnik und Wärmepumpen'), (17934, 'https://ror.org/03jhg3q89', 'en', 1, 'https://ror.org/03jhg3q89 Care Resource'), (17935, 'https://ror.org/03jkjqx69', 'no_lang_code', 1, 'https://ror.org/03jkjqx69 Helliniki Meletitiki (Greece)'), (17936, 'https://ror.org/03jn58q55', 'no_lang_code', 1, 'https://ror.org/03jn58q55 Innu-Science (Canada)'), (17937, 'https://ror.org/03jq88n71', 'en', 1, 'https://ror.org/03jq88n71 Seattle Cancer Care Alliance'), (17938, 'https://ror.org/03jr1w081', 'no_lang_code', 1, 'https://ror.org/03jr1w081 Bandvulc (United Kingdom)'), (17939, 'https://ror.org/03jr3a030', 'en', 1, 'https://ror.org/03jr3a030 Canadian Parks and Wilderness Society la Société pour la nature et les parcs du Canada'), (17940, 'https://ror.org/03jrtvr32', 'en', 1, 'https://ror.org/03jrtvr32 Agence Nationale pour le Développement des Energies Renouvelables et l’Efficacité Energétique National Agency for the Development of Renewable Energy and Energy Efficiency'), (17941, 'https://ror.org/03jsdjx34', 'no_lang_code', 1, 'https://ror.org/03jsdjx34 Cambridge University Press'), (17942, 'https://ror.org/03jtym624', 'no_lang_code', 1, 'https://ror.org/03jtym624 Integrated Sensing Systems (United States)'), (17943, 'https://ror.org/03jtz4s80', 'no_lang_code', 1, 'https://ror.org/03jtz4s80 Microsoft (Norway)'), (17944, 'https://ror.org/03jwcxq96', 'en', 1, 'https://ror.org/03jwcxq96 Taiz University جامعة تعز'), (17945, 'https://ror.org/03jwfrf17', 'en', 1, 'https://ror.org/03jwfrf17 European Convention for Constructional Steelwork'), (17946, 'https://ror.org/03jzs4815', 'en', 1, 'https://ror.org/03jzs4815 A. N. Nesmeyanov Institute of Organoelement Compounds Федеральное государственное бюджетное учреждение науки Институт элементоорганических соединений им. А.Н.Несмеянова Российской академии наук'), (17947, 'https://ror.org/03k03ec42', 'no_lang_code', 1, 'https://ror.org/03k03ec42 Computer Technology Associates (United States)'), (17948, 'https://ror.org/03k10gx48', 'en', 1, 'https://ror.org/03k10gx48 British Empire and Commonwealth Museum'), (17949, 'https://ror.org/03k3apd45', 'en', 1, 'https://ror.org/03k3apd45 International Commission on Radiological Protection'), (17950, 'https://ror.org/03k3pk368', 'en', 1, 'https://ror.org/03k3pk368 Allen County Public Library'), (17951, 'https://ror.org/03k3w2a28', 'en', 1, 'https://ror.org/03k3w2a28 Philip Rogers Elementary School'), (17952, 'https://ror.org/03k5mg797', 'no_lang_code', 1, 'https://ror.org/03k5mg797 Flanders Color (Belgium)'), (17953, 'https://ror.org/03k77wm53', 'en', 1, 'https://ror.org/03k77wm53 Washtenaw Community College'), (17954, 'https://ror.org/03k8cn029', 'no_lang_code', 1, 'https://ror.org/03k8cn029 Lynkeus (Italy)'), (17955, 'https://ror.org/03k90y290', 'en', 1, 'https://ror.org/03k90y290 Finnish Marine Industries'), (17956, 'https://ror.org/03k952713', 'en', 1, 'https://ror.org/03k952713 Airborne Research Associates'), (17957, 'https://ror.org/03kdt9j02', 'no_lang_code', 1, 'https://ror.org/03kdt9j02 Keracol (United Kingdom)'), (17958, 'https://ror.org/03kf30874', 'en', 1, 'https://ror.org/03kf30874 District of Columbia Public School Écoles publiques du district de Columbia'), (17959, 'https://ror.org/03kf4k440', 'no_lang_code', 1, 'https://ror.org/03kf4k440 Danish Power Systems (Denmark)'), (17960, 'https://ror.org/03kg1jt28', 'en', 1, 'https://ror.org/03kg1jt28 European Research Institute on Cooperative and Social Enterprise'), (17961, 'https://ror.org/03khjbj61', 'en', 1, 'https://ror.org/03khjbj61 Cerritos College'), (17962, 'https://ror.org/03kjp3580', 'pt', 1, 'https://ror.org/03kjp3580 Gabinete de Estudos Olisiponenses'), (17963, 'https://ror.org/03knfbb08', 'sv', 1, 'https://ror.org/03knfbb08 IQ Samhällsbyggnad'), (17964, 'https://ror.org/03kp5tn18', 'no_lang_code', 1, 'https://ror.org/03kp5tn18 Blatraden (Sweden)'), (17965, 'https://ror.org/03kq2rg86', 'no_lang_code', 1, 'https://ror.org/03kq2rg86 Konrad Fischer (Austria)'), (17966, 'https://ror.org/03kt5jr23', 'en', 1, 'https://ror.org/03kt5jr23 Department of Health and Social Affairs'), (17967, 'https://ror.org/03ktbzq37', 'en', 1, 'https://ror.org/03ktbzq37 John A. Hartford Foundation'), (17968, 'https://ror.org/03ktt9079', 'en', 1, 'https://ror.org/03ktt9079 Neurotech Networks'), (17969, 'https://ror.org/03kvbr153', 'en', 1, 'https://ror.org/03kvbr153 UF Health Shands Hospital'), (17970, 'https://ror.org/03kxew167', 'en', 1, 'https://ror.org/03kxew167 La Grange Public Library'), (17971, 'https://ror.org/03kxyq577', 'en', 1, 'https://ror.org/03kxyq577 Emerald Education Systems'), (17972, 'https://ror.org/03ky7jj30', 'no_lang_code', 1, 'https://ror.org/03ky7jj30 Ensco (United States)'), (17973, 'https://ror.org/03kyqs312', 'en', 1, 'https://ror.org/03kyqs312 Art Institute of Chicago Institut d''Art de Chicago Instituto de Arte de Chicago'), (17974, 'https://ror.org/03kyxhh57', 'en', 1, 'https://ror.org/03kyxhh57 Wisconsin Historical Society'), (17975, 'https://ror.org/03kz78w44', 'en', 1, 'https://ror.org/03kz78w44 Uganda Health and Science Press Association'), (17976, 'https://ror.org/03m0aw686', 'en', 1, 'https://ror.org/03m0aw686 Winchester Hospital'), (17977, 'https://ror.org/03m0njh07', 'en', 1, 'https://ror.org/03m0njh07 Midstate College'), (17978, 'https://ror.org/03m0pn190', 'en', 1, 'https://ror.org/03m0pn190 Yo San University'), (17979, 'https://ror.org/03m233w73', 'no_lang_code', 1, 'https://ror.org/03m233w73 Michell Instruments (France)'), (17980, 'https://ror.org/03m3an259', 'no_lang_code', 1, 'https://ror.org/03m3an259 Arisan Therapeutics (United States)'), (17981, 'https://ror.org/03m3g5338', 'en', 1, 'https://ror.org/03m3g5338 Institute for Structural Research'), (17982, 'https://ror.org/03m4w0286', 'en', 1, 'https://ror.org/03m4w0286 Tahoe Forest Hospital'), (17983, 'https://ror.org/03m6f8x93', 'no_lang_code', 1, 'https://ror.org/03m6f8x93 GTD System & Software Engineering (Spain)'), (17984, 'https://ror.org/03m8wps61', 'no_lang_code', 1, 'https://ror.org/03m8wps61 2 Sisters Food Group (United Kingdom)'), (17985, 'https://ror.org/03m9crh17', 'no_lang_code', 1, 'https://ror.org/03m9crh17 III-N Technology (United States)'), (17986, 'https://ror.org/03m9nwe27', 'ca', 1, 'https://ror.org/03m9nwe27 Centre d''Innovació i Desenvolupament Empresarial'), (17987, 'https://ror.org/03mam1w77', 'no_lang_code', 1, 'https://ror.org/03mam1w77 CS Transport (France)'), (17988, 'https://ror.org/03mbgzm57', 'en', 1, 'https://ror.org/03mbgzm57 Washington State Community College'), (17989, 'https://ror.org/03me50s15', 'no_lang_code', 1, 'https://ror.org/03me50s15 Elekta (United States)'), (17990, 'https://ror.org/03meb8t18', 'en', 1, 'https://ror.org/03meb8t18 Center for Advanced Aerospace Technologies Centro Avanzado de Tecnologías Aeroespaciales'), (17991, 'https://ror.org/03mfabb88', 'no_lang_code', 1, 'https://ror.org/03mfabb88 FormTech (Germany)'), (17992, 'https://ror.org/03mg4b565', 'it', 1, 'https://ror.org/03mg4b565 Autorità di bacino dei fiumi Isonzo, Tagliamento, Livenza, Piave, Brenta-Bacchiglione'), (17993, 'https://ror.org/03mgga463', 'no_lang_code', 1, 'https://ror.org/03mgga463 Greenbank Group (United Kingdom)'), (17994, 'https://ror.org/03mh23547', 'no_lang_code', 1, 'https://ror.org/03mh23547 Ironbound Films (United States)'), (17995, 'https://ror.org/03mj2tv58', 'no_lang_code', 1, 'https://ror.org/03mj2tv58 Ewos Innovation (Norway)'), (17996, 'https://ror.org/03mmsp106', 'no_lang_code', 1, 'https://ror.org/03mmsp106 KeraMed (United States)'), (17997, 'https://ror.org/03mnfhy36', 'no_lang_code', 1, 'https://ror.org/03mnfhy36 Hanover Scotland Housing Association (United Kingdom)'), (17998, 'https://ror.org/03mpcp089', 'no_lang_code', 1, 'https://ror.org/03mpcp089 DeWitt Tool (United States)'), (17999, 'https://ror.org/03mr4tp73', 'no_lang_code', 1, 'https://ror.org/03mr4tp73 BioAtlantis (Ireland)'), (18000, 'https://ror.org/03ms86h56', 'en', 1, 'https://ror.org/03ms86h56 Tetra Society of North America'), (18001, 'https://ror.org/03mt07d61', 'fr', 1, 'https://ror.org/03mt07d61 Ag Quest'), (18002, 'https://ror.org/03mtqjg23', 'no_lang_code', 1, 'https://ror.org/03mtqjg23 Mary Maguire Foundation'), (18003, 'https://ror.org/03mv52406', 'en', 1, 'https://ror.org/03mv52406 Stark County District Library'), (18004, 'https://ror.org/03myb1z84', 'no_lang_code', 1, 'https://ror.org/03myb1z84 Capita Translation and Interpreting (United Kingdom)'), (18005, 'https://ror.org/03mz5a533', 'no_lang_code', 1, 'https://ror.org/03mz5a533 iXpressGenes (United States)'), (18006, 'https://ror.org/03mzpfx25', 'pt', 1, 'https://ror.org/03mzpfx25 A Rocha'), (18007, 'https://ror.org/03n027779', 'en', 1, 'https://ror.org/03n027779 Thyroid Head and Neck Cancer Foundation'), (18008, 'https://ror.org/03n0ge846', 'no_lang_code', 1, 'https://ror.org/03n0ge846 Eight19 (United Kingdom)'), (18009, 'https://ror.org/03n0gvg35', 'en', 1, 'https://ror.org/03n0gvg35 Batchelor Institute of Indigenous Tertiary Education'), (18010, 'https://ror.org/03n0yd032', 'en', 1, 'https://ror.org/03n0yd032 Central American University Universidad Centroamericana'), (18011, 'https://ror.org/03n2a3p06', 'en', 1, 'https://ror.org/03n2a3p06 New York Stem Cell Foundation'), (18012, 'https://ror.org/03n4efr54', 'no_lang_code', 1, 'https://ror.org/03n4efr54 OhioNET'), (18013, 'https://ror.org/03n678n37', 'en', 1, 'https://ror.org/03n678n37 Greeneville Community Hospital West'), (18014, 'https://ror.org/03n6gc586', 'en', 1, 'https://ror.org/03n6gc586 Columbus College of Art and Design'), (18015, 'https://ror.org/03n7edp26', 'no_lang_code', 1, 'https://ror.org/03n7edp26 Enpro Consult (Bulgaria)'), (18016, 'https://ror.org/03n7krn06', 'en', 1, 'https://ror.org/03n7krn06 Centro de Recursos Naturais, Ambiente e Sociedade Research Center for Natural Resources, Environment and Society'), (18017, 'https://ror.org/03n7scr80', 'en', 1, 'https://ror.org/03n7scr80 Federal Reserve Bank of Chicago'), (18018, 'https://ror.org/03n8jr770', 'no_lang_code', 1, 'https://ror.org/03n8jr770 ACAL Energy (United Kingdom)'), (18019, 'https://ror.org/03nb0an85', 'no_lang_code', 1, 'https://ror.org/03nb0an85 Aviointeriors (Italy)'), (18020, 'https://ror.org/03nbnyc28', 'no_lang_code', 1, 'https://ror.org/03nbnyc28 Brain Innovation (Netherlands)'), (18021, 'https://ror.org/03nd0ms94', 'no_lang_code', 1, 'https://ror.org/03nd0ms94 Doris Engineering (France)'), (18022, 'https://ror.org/03ngn6116', 'no_lang_code', 1, 'https://ror.org/03ngn6116 Green Tide Turbines (United Kingdom)'), (18023, 'https://ror.org/03ngsbp86', 'en', 1, 'https://ror.org/03ngsbp86 Dubuque County Safe Youth Coalition'), (18024, 'https://ror.org/03nhmbj89', 'en', 1, 'https://ror.org/03nhmbj89 Comisión Reguladora Nuclear de Estados Unidos Commission de réglementation nucléaire des États-unis United States Nuclear Regulatory Commission'), (18025, 'https://ror.org/03nmmp510', 'no_lang_code', 1, 'https://ror.org/03nmmp510 Saoirse (United States)'), (18026, 'https://ror.org/03nqngt38', 'en', 1, 'https://ror.org/03nqngt38 International Fishmeal and Oil Manufacturers Association'), (18027, 'https://ror.org/03nrmdg87', 'en', 1, 'https://ror.org/03nrmdg87 Public Library of Mount Vernon and Knox County'), (18028, 'https://ror.org/03nsh5473', 'en', 1, 'https://ror.org/03nsh5473 Oakland Community College'), (18029, 'https://ror.org/03nte2z44', 'no_lang_code', 1, 'https://ror.org/03nte2z44 Iris (Italy)'), (18030, 'https://ror.org/03ntt6y47', 'en', 1, 'https://ror.org/03ntt6y47 SS. Cyril & Methodius Seminary'), (18031, 'https://ror.org/03nw55154', 'no_lang_code', 1, 'https://ror.org/03nw55154 Fastcom Technology (Switzerland)'), (18032, 'https://ror.org/03nygzm95', 'no_lang_code', 1, 'https://ror.org/03nygzm95 E-Semble (Netherlands)'), (18033, 'https://ror.org/03nzb9h73', 'no_lang_code', 1, 'https://ror.org/03nzb9h73 Riverkeeper'), (18034, 'https://ror.org/03nzfjp98', 'no_lang_code', 1, 'https://ror.org/03nzfjp98 Keepmoat (United Kingdom)'), (18035, 'https://ror.org/03p0exs25', 'en', 1, 'https://ror.org/03p0exs25 Will2Walk Foundation'), (18036, 'https://ror.org/03p14zg79', 'no_lang_code', 1, 'https://ror.org/03p14zg79 Loake Shoemakers (United Kingdom)'), (18037, 'https://ror.org/03p4y9t51', 'no_lang_code', 1, 'https://ror.org/03p4y9t51 Probiodrug (Germany)'), (18038, 'https://ror.org/03p6bvv51', 'no_lang_code', 1, 'https://ror.org/03p6bvv51 Revlon (United States)'), (18039, 'https://ror.org/03p76jc78', 'no_lang_code', 1, 'https://ror.org/03p76jc78 ES Technology (United Kingdom)'), (18040, 'https://ror.org/03p9p9g95', 'en', 1, 'https://ror.org/03p9p9g95 Balzekas Museum of Lithuanian Culture'), (18041, 'https://ror.org/03pbeak36', 'en', 1, 'https://ror.org/03pbeak36 Bulgarian Research and Education Network Българска изследователска и образователна мрежа'), (18042, 'https://ror.org/03pca8c78', 'no_lang_code', 1, 'https://ror.org/03pca8c78 H-Cubed (United States)'), (18043, 'https://ror.org/03pcn5m15', 'no_lang_code', 1, 'https://ror.org/03pcn5m15 Datamat (Italy)'), (18044, 'https://ror.org/03pd1sq22', 'no_lang_code', 1, 'https://ror.org/03pd1sq22 Linagora (France)'), (18045, 'https://ror.org/03pdkyj36', 'no_lang_code', 1, 'https://ror.org/03pdkyj36 Evening Star Productions (United States)'), (18046, 'https://ror.org/03pejb093', 'en', 1, 'https://ror.org/03pejb093 National Research Development Institute for Animal Biology and Nutrition'), (18047, 'https://ror.org/03pja1237', 'en', 1, 'https://ror.org/03pja1237 Yuba City Unified School District'), (18048, 'https://ror.org/03pkvgf29', 'no_lang_code', 1, 'https://ror.org/03pkvgf29 Cyke (United States)'), (18049, 'https://ror.org/03pmf2g70', 'no_lang_code', 1, 'https://ror.org/03pmf2g70 Fdt Depuratori d'' Acqua (Italy)'), (18050, 'https://ror.org/03pmmsa77', 'de', 1, 'https://ror.org/03pmmsa77 Kooperationsstelle Hamburg'), (18051, 'https://ror.org/03pnd9115', 'en', 1, 'https://ror.org/03pnd9115 Community Foundation'), (18052, 'https://ror.org/03pnx3e94', 'fr', 1, 'https://ror.org/03pnx3e94 Centre d''Études et de Recherches de l''Industrie du Béton'), (18053, 'https://ror.org/03pr40c41', 'en', 1, 'https://ror.org/03pr40c41 Red Devils'), (18054, 'https://ror.org/03prbmy37', 'en', 1, 'https://ror.org/03prbmy37 Women Against Rape'), (18055, 'https://ror.org/03prbp808', 'cs', 1, 'https://ror.org/03prbp808 Czech Television Česká televize'), (18056, 'https://ror.org/03pt2cx46', 'no_lang_code', 1, 'https://ror.org/03pt2cx46 Films of Record'), (18057, 'https://ror.org/03px39j76', 'en', 1, 'https://ror.org/03px39j76 Belgian Institute of Management Accountants & Controllers'), (18058, 'https://ror.org/03px3wr77', 'en', 1, 'https://ror.org/03px3wr77 Danish Academy of Technical Sciences'), (18059, 'https://ror.org/03py22436', 'no_lang_code', 1, 'https://ror.org/03py22436 Zodiac Aerospace (United States)'), (18060, 'https://ror.org/03pydk223', 'en', 1, 'https://ror.org/03pydk223 Beijing Transportation Research Center'), (18061, 'https://ror.org/03q3bdj78', 'no_lang_code', 1, 'https://ror.org/03q3bdj78 Ericsson (United States)'), (18062, 'https://ror.org/03q4r8597', 'en', 1, 'https://ror.org/03q4r8597 St. Charles Foundation'), (18063, 'https://ror.org/03q4ysy37', 'en', 1, 'https://ror.org/03q4ysy37 Amistades'), (18064, 'https://ror.org/03q5mqx63', 'en', 1, 'https://ror.org/03q5mqx63 California Health and Human Services Agency'), (18065, 'https://ror.org/03q5psq50', 'no_lang_code', 1, 'https://ror.org/03q5psq50 EDI Group (United Kingdom)'), (18066, 'https://ror.org/03q7dzc06', 'en', 1, 'https://ror.org/03q7dzc06 Breakfast Club'), (18067, 'https://ror.org/03q9x9z62', 'pt', 1, 'https://ror.org/03q9x9z62 Centro de Formação Profissional para o Sector Alimentar'), (18068, 'https://ror.org/03qa74b49', 'no_lang_code', 1, 'https://ror.org/03qa74b49 ICTS (United Kingdom)'), (18069, 'https://ror.org/03qc7cz08', 'no_lang_code', 1, 'https://ror.org/03qc7cz08 Diversified Maintenance Systems (United States)'), (18070, 'https://ror.org/03qemwx69', 'no_lang_code', 1, 'https://ror.org/03qemwx69 Wolters Kluwer (Netherlands)'), (18071, 'https://ror.org/03qfyes53', 'no_lang_code', 1, 'https://ror.org/03qfyes53 Interaction Design (United Kingdom)'), (18072, 'https://ror.org/03qg0dp28', 'no_lang_code', 1, 'https://ror.org/03qg0dp28 Agora Conseil'), (18073, 'https://ror.org/03qgkkv45', 'en', 1, 'https://ror.org/03qgkkv45 Police Scotland'), (18074, 'https://ror.org/03qgqvs90', 'en', 1, 'https://ror.org/03qgqvs90 American Alliance of Museums'), (18075, 'https://ror.org/03qm16g93', 'no_lang_code', 1, 'https://ror.org/03qm16g93 Aluminium Surface Engineering (United Kingdom)'), (18076, 'https://ror.org/03qnzan29', 'no_lang_code', 1, 'https://ror.org/03qnzan29 ATARD Defense and Aerospace Industry'), (18077, 'https://ror.org/03qpmfz94', 'no_lang_code', 1, 'https://ror.org/03qpmfz94 GenetiVision (United States)'), (18078, 'https://ror.org/03qraer96', 'en', 1, 'https://ror.org/03qraer96 Council of Prairie and Pacific University Libraries'), (18079, 'https://ror.org/03qsq2n78', 'no_lang_code', 1, 'https://ror.org/03qsq2n78 DVC (Belgium)'), (18080, 'https://ror.org/03qtxy027', 'en', 1, 'https://ror.org/03qtxy027 Fonds voor Wetenschappelijk Onderzoek - Vlaanderen Research Foundation - Flanders'), (18081, 'https://ror.org/03qw1d968', 'no_lang_code', 1, 'https://ror.org/03qw1d968 PSI Group (Belgium)'), (18082, 'https://ror.org/03qw7se63', 'en', 1, 'https://ror.org/03qw7se63 Soledad Community Health Care District Foundation'), (18083, 'https://ror.org/03qxmr865', 'no_lang_code', 1, 'https://ror.org/03qxmr865 Amanova (Slovenia)'), (18084, 'https://ror.org/03qyvqf30', 'en', 1, 'https://ror.org/03qyvqf30 IS practice'), (18085, 'https://ror.org/03r1ch818', 'en', 1, 'https://ror.org/03r1ch818 Indiana Institute of Technology'), (18086, 'https://ror.org/03r2fj775', 'en', 1, 'https://ror.org/03r2fj775 Maine Audubon'), (18087, 'https://ror.org/03r41zp91', 'no_lang_code', 1, 'https://ror.org/03r41zp91 DAS Environmental Expert (Germany)'), (18088, 'https://ror.org/03r516865', 'no_lang_code', 1, 'https://ror.org/03r516865 Informatizacija Energetika Avtomatizacija (Slovenia)'), (18089, 'https://ror.org/03r51h682', 'no_lang_code', 1, 'https://ror.org/03r51h682 Clear Communication Associates'), (18090, 'https://ror.org/03r8kkn98', 'en', 1, 'https://ror.org/03r8kkn98 L.E. Phillips Memorial Public Library'), (18091, 'https://ror.org/03rcdym39', 'en', 1, 'https://ror.org/03rcdym39 Empower Abilities'), (18092, 'https://ror.org/03rce1k45', 'en', 1, 'https://ror.org/03rce1k45 Daniel Boone Regional Library'), (18093, 'https://ror.org/03rf62a76', 'no_lang_code', 1, 'https://ror.org/03rf62a76 Imagination Technologies (United Kingdom)'), (18094, 'https://ror.org/03rjyn861', 'en', 1, 'https://ror.org/03rjyn861 Zekel Healthcare'), (18095, 'https://ror.org/03rqvr941', 'no_lang_code', 1, 'https://ror.org/03rqvr941 Circadian (United States)'), (18096, 'https://ror.org/03rqwpv17', 'no_lang_code', 1, 'https://ror.org/03rqwpv17 Amcor (Switzerland)'), (18097, 'https://ror.org/03rsh9n69', 'en', 1, 'https://ror.org/03rsh9n69 StarRecreation'), (18098, 'https://ror.org/03rt32119', 'no_lang_code', 1, 'https://ror.org/03rt32119 Caesar Systems (United Kingdom)'), (18099, 'https://ror.org/03rt9jf88', 'no_lang_code', 1, 'https://ror.org/03rt9jf88 Austrian Competence Centre of Food Safety Lebensmittelversuchsanstalt'), (18100, 'https://ror.org/03rw5mv34', 'en', 1, 'https://ror.org/03rw5mv34 Colorado Coalition for the Homeless'), (18101, 'https://ror.org/03rwh4x08', 'no_lang_code', 1, 'https://ror.org/03rwh4x08 HRS Spiratube (Spain)'), (18102, 'https://ror.org/03rxv1p12', 'en', 1, 'https://ror.org/03rxv1p12 Hannibal–LaGrange University'), (18103, 'https://ror.org/03s0stn41', 'it', 1, 'https://ror.org/03s0stn41 Confederazione Italiana della Piccola e Media Industria'), (18104, 'https://ror.org/03s1f5p42', 'en', 1, 'https://ror.org/03s1f5p42 Thohoyandou Victim Empowerment Programme'), (18105, 'https://ror.org/03s1jks46', 'no_lang_code', 1, 'https://ror.org/03s1jks46 Hero España (Spain)'), (18106, 'https://ror.org/03s24wa94', 'en', 1, 'https://ror.org/03s24wa94 Missouri Department of Natural Resources'), (18107, 'https://ror.org/03s25h048', 'en', 1, 'https://ror.org/03s25h048 European Steel Association'), (18108, 'https://ror.org/03s2y3a28', 'en', 1, 'https://ror.org/03s2y3a28 Touro Infirmary Foundation'), (18109, 'https://ror.org/03s48cw66', 'en', 1, 'https://ror.org/03s48cw66 SBH Behavioral Health'), (18110, 'https://ror.org/03s538y47', 'en', 1, 'https://ror.org/03s538y47 Dallas Independent School District'), (18111, 'https://ror.org/03s593324', 'en', 1, 'https://ror.org/03s593324 Geauga County Public Library'), (18112, 'https://ror.org/03s5wqn16', 'no_lang_code', 1, 'https://ror.org/03s5wqn16 FilmLight (United Kingdom)'), (18113, 'https://ror.org/03s68kq02', 'en', 1, 'https://ror.org/03s68kq02 Grossmont Cuyamaca Community College District'), (18114, 'https://ror.org/03s727m55', 'en', 1, 'https://ror.org/03s727m55 Western DuPage Special Recreation Association'), (18115, 'https://ror.org/03s917094', 'en', 1, 'https://ror.org/03s917094 Community Counseling Institute'), (18116, 'https://ror.org/03sarta97', 'no_lang_code', 1, 'https://ror.org/03sarta97 Maxwell Technologies (Switzerland)'), (18117, 'https://ror.org/03sb41874', 'en', 1, 'https://ror.org/03sb41874 Arlington Heights Memorial Library'), (18118, 'https://ror.org/03sb44z08', 'no_lang_code', 1, 'https://ror.org/03sb44z08 Quantum Design (Germany)'), (18119, 'https://ror.org/03sjv2g98', 'no_lang_code', 1, 'https://ror.org/03sjv2g98 Applied Resources (United States)'), (18120, 'https://ror.org/03sjyg353', 'no_lang_code', 1, 'https://ror.org/03sjyg353 Diagnostic Biochips (United States)'), (18121, 'https://ror.org/03snc5898', 'no_lang_code', 1, 'https://ror.org/03snc5898 ioGenetics (United States)'), (18122, 'https://ror.org/03snfqm79', 'en', 1, 'https://ror.org/03snfqm79 Lancashire County Council'), (18123, 'https://ror.org/03ss97438', 'no_lang_code', 1, 'https://ror.org/03ss97438 CenterLine (Canada)'), (18124, 'https://ror.org/03ssm0977', 'no_lang_code', 1, 'https://ror.org/03ssm0977 Cellbond (United Kingdom)'), (18125, 'https://ror.org/03stcpv37', 'no_lang_code', 1, 'https://ror.org/03stcpv37 Cummins (United Kingdom)'), (18126, 'https://ror.org/03t15zy94', 'no_lang_code', 1, 'https://ror.org/03t15zy94 LifeTec Group (Netherlands)'), (18127, 'https://ror.org/03t1snc02', 'en', 1, 'https://ror.org/03t1snc02 Advocate South Suburban Hospital'), (18128, 'https://ror.org/03t1w6410', 'en', 1, 'https://ror.org/03t1w6410 WISPALS Library Consortium'), (18129, 'https://ror.org/03t26ts93', 'no_lang_code', 1, 'https://ror.org/03t26ts93 Imatecno (Italy)'), (18130, 'https://ror.org/03t2egq54', 'en', 1, 'https://ror.org/03t2egq54 Regional Medical Center'), (18131, 'https://ror.org/03t2hta05', 'fr', 1, 'https://ror.org/03t2hta05 Laboratoire d''Analyses Génétiques pour les Espèces Animales'), (18132, 'https://ror.org/03t2wy197', 'no_lang_code', 1, 'https://ror.org/03t2wy197 HydroLogic (Netherlands)'), (18133, 'https://ror.org/03t3ktm93', 'no_lang_code', 1, 'https://ror.org/03t3ktm93 Holonix (Italy)'), (18134, 'https://ror.org/03t496v77', 'no_lang_code', 1, 'https://ror.org/03t496v77 Virovek (United States)'), (18135, 'https://ror.org/03t4qcg79', 'no_lang_code', 1, 'https://ror.org/03t4qcg79 Royal BAM Group (United Kingdom)'), (18136, 'https://ror.org/03t6r2q91', 'no_lang_code', 1, 'https://ror.org/03t6r2q91 Ec3 NetWorks (Austria)'), (18137, 'https://ror.org/03t8x1c03', 'no_lang_code', 1, 'https://ror.org/03t8x1c03 Aalterpaint (Belgium)'), (18138, 'https://ror.org/03t95vv46', 'no_lang_code', 1, 'https://ror.org/03t95vv46 Gate Fuels (United States)'), (18139, 'https://ror.org/03t95yr58', 'no_lang_code', 1, 'https://ror.org/03t95yr58 BioClinica (United States)'), (18140, 'https://ror.org/03ta6rc77', 'no_lang_code', 1, 'https://ror.org/03ta6rc77 Lloyds Banking Group (United Kingdom)'), (18141, 'https://ror.org/03tafg684', 'no_lang_code', 1, 'https://ror.org/03tafg684 Clark-MXR (United States)'), (18142, 'https://ror.org/03tap5z28', 'no_lang_code', 1, 'https://ror.org/03tap5z28 Dairygold Co-Operative Society (Ireland)'), (18143, 'https://ror.org/03tb49961', 'no_lang_code', 1, 'https://ror.org/03tb49961 Elektrobit (Finland)'), (18144, 'https://ror.org/03tc4hb20', 'no_lang_code', 1, 'https://ror.org/03tc4hb20 Hessen Agentur (Germany)'), (18145, 'https://ror.org/03tdxyb14', 'no_lang_code', 1, 'https://ror.org/03tdxyb14 ChK Group (United States)'), (18146, 'https://ror.org/03tg0tp84', 'en', 1, 'https://ror.org/03tg0tp84 Institute for the Study of Societies and Knowledge Институт за изследване на обществата и знанието'), (18147, 'https://ror.org/03tgve420', 'en', 1, 'https://ror.org/03tgve420 Cielo Institute'), (18148, 'https://ror.org/03tgxkn38', 'no_lang_code', 1, 'https://ror.org/03tgxkn38 Atlantic Industries (Canada)'), (18149, 'https://ror.org/03thqnc26', 'no_lang_code', 1, 'https://ror.org/03thqnc26 Aircraft Development and Systems Engineering (Netherlands)'), (18150, 'https://ror.org/03tjjy644', 'en', 1, 'https://ror.org/03tjjy644 Greater West Bloomfield Historical Society'), (18151, 'https://ror.org/03tkh4446', 'en', 1, 'https://ror.org/03tkh4446 College of Southern Maryland'), (18152, 'https://ror.org/03tmcyr03', 'en', 1, 'https://ror.org/03tmcyr03 Hartford Public Schools'), (18153, 'https://ror.org/03tmjzy81', 'en', 1, 'https://ror.org/03tmjzy81 Ministerstwo Kultury i Dziedzictwa Narodowego Ministry of Culture and National Heritage'), (18154, 'https://ror.org/03tnb9s98', 'no_lang_code', 1, 'https://ror.org/03tnb9s98 Holo3'), (18155, 'https://ror.org/03tngxx72', 'no_lang_code', 1, 'https://ror.org/03tngxx72 Midwest Tape (United States)'), (18156, 'https://ror.org/03tnncq39', 'no_lang_code', 1, 'https://ror.org/03tnncq39 Enkon (Turkey)'), (18157, 'https://ror.org/03trkbn45', 'en', 1, 'https://ror.org/03trkbn45 Congressional Budget Office'), (18158, 'https://ror.org/03tv3cs72', 'en', 1, 'https://ror.org/03tv3cs72 The Washington Institute for Near East Policy'), (18159, 'https://ror.org/03tx9ef16', 'no_lang_code', 1, 'https://ror.org/03tx9ef16 Materia (United States)'), (18160, 'https://ror.org/03tx9qd31', 'en', 1, 'https://ror.org/03tx9qd31 Gulf of Maine Research Institute'), (18161, 'https://ror.org/03ty9nf77', 'no_lang_code', 1, 'https://ror.org/03ty9nf77 Bruker (United Kingdom)'), (18162, 'https://ror.org/03tz7dc68', 'no_lang_code', 1, 'https://ror.org/03tz7dc68 Total (Italy)'), (18163, 'https://ror.org/03tzy5638', 'no_lang_code', 1, 'https://ror.org/03tzy5638 Link2Energy (United Kingdom)'), (18164, 'https://ror.org/03v1rmf39', 'no_lang_code', 1, 'https://ror.org/03v1rmf39 Electron Energy Corporation (United States)'), (18165, 'https://ror.org/03v2e2v10', 'en', 1, 'https://ror.org/03v2e2v10 Nederland Voedsel- en Waren Autoriteit Netherlands Food and Consumer Product Safety Authority'), (18166, 'https://ror.org/03v5b4741', 'no_lang_code', 1, 'https://ror.org/03v5b4741 Ella-Cs (Czechia)'), (18167, 'https://ror.org/03v5kxx62', 'en', 1, 'https://ror.org/03v5kxx62 Farmworker Justice'), (18168, 'https://ror.org/03v79p997', 'no_lang_code', 1, 'https://ror.org/03v79p997 Cidete (Spain)'), (18169, 'https://ror.org/03v7mfg33', 'en', 1, 'https://ror.org/03v7mfg33 Legacy Community Health Services'), (18170, 'https://ror.org/03v7mmm26', 'en', 1, 'https://ror.org/03v7mmm26 Bundesamt für Sicherheit in der Informationstechnik Federal Office for Information Security'), (18171, 'https://ror.org/03v7zdq71', 'no_lang_code', 1, 'https://ror.org/03v7zdq71 Encraft (United Kingdom)'), (18172, 'https://ror.org/03v8atx30', 'en', 1, 'https://ror.org/03v8atx30 College of Lake County'), (18173, 'https://ror.org/03vcdbg75', 'no_lang_code', 1, 'https://ror.org/03vcdbg75 ATUM (United States)'), (18174, 'https://ror.org/03vcezw91', 'en', 1, 'https://ror.org/03vcezw91 California Coalition Against Sexual Assault'), (18175, 'https://ror.org/03vcgp521', 'no_lang_code', 1, 'https://ror.org/03vcgp521 Ripamonti'), (18176, 'https://ror.org/03vd5fy29', 'no_lang_code', 1, 'https://ror.org/03vd5fy29 Cezanne (Italy)'), (18177, 'https://ror.org/03ve07f57', 'no_lang_code', 1, 'https://ror.org/03ve07f57 Kongsberg Gruppen (Norway)'), (18178, 'https://ror.org/03ve6sf73', 'no_lang_code', 1, 'https://ror.org/03ve6sf73 BioSystem (Germany)'), (18179, 'https://ror.org/03vghmn25', 'no_lang_code', 1, 'https://ror.org/03vghmn25 Cementec Industries (Canada)'), (18180, 'https://ror.org/03vm0h048', 'no_lang_code', 1, 'https://ror.org/03vm0h048 Choc Edge (United Kingdom)'), (18181, 'https://ror.org/03vqa3g80', 'en', 1, 'https://ror.org/03vqa3g80 Species360'), (18182, 'https://ror.org/03vqqr080', 'no_lang_code', 1, 'https://ror.org/03vqqr080 Sapna NYC'), (18183, 'https://ror.org/03vqwnv59', 'en', 1, 'https://ror.org/03vqwnv59 Grand Rapids Public Museum'), (18184, 'https://ror.org/03vrea996', 'no_lang_code', 1, 'https://ror.org/03vrea996 Source BioScience (Germany)'), (18185, 'https://ror.org/03vtekn80', 'fr', 1, 'https://ror.org/03vtekn80 Association pour la Recherche-Développement de l''Enseignement Multimédia et Interactif'), (18186, 'https://ror.org/03vttd812', 'en', 1, 'https://ror.org/03vttd812 Connecticut Education Association'), (18187, 'https://ror.org/03vvh8670', 'en', 1, 'https://ror.org/03vvh8670 Complete Home Care'), (18188, 'https://ror.org/03vyrpd61', 'no_lang_code', 1, 'https://ror.org/03vyrpd61 GFI Informática (Spain)'), (18189, 'https://ror.org/03w08v283', 'no_lang_code', 1, 'https://ror.org/03w08v283 Gram & Juhl (Denmark)'), (18190, 'https://ror.org/03w1c1p82', 'no_lang_code', 1, 'https://ror.org/03w1c1p82 Huntsman (Belgium)'), (18191, 'https://ror.org/03w2zhm87', 'no_lang_code', 1, 'https://ror.org/03w2zhm87 DuPont (Germany)'), (18192, 'https://ror.org/03w3w9873', 'en', 1, 'https://ror.org/03w3w9873 Maryland Public Television'), (18193, 'https://ror.org/03w60e920', 'no_lang_code', 1, 'https://ror.org/03w60e920 Magee Scientific (United States)'), (18194, 'https://ror.org/03w80jr87', 'no_lang_code', 1, 'https://ror.org/03w80jr87 Ecosil Technologies (United States)'), (18195, 'https://ror.org/03w8j7142', 'en', 1, 'https://ror.org/03w8j7142 Windber Research Institute'), (18196, 'https://ror.org/03wadyw29', 'no_lang_code', 1, 'https://ror.org/03wadyw29 Parrot (France)'), (18197, 'https://ror.org/03wawr393', 'no_lang_code', 1, 'https://ror.org/03wawr393 CarboNix (United States)'), (18198, 'https://ror.org/03wbjgx32', 'en', 1, 'https://ror.org/03wbjgx32 Robert Louis Stevenson School'), (18199, 'https://ror.org/03wbpr740', 'no_lang_code', 1, 'https://ror.org/03wbpr740 Innovative Solution In Space (Netherlands)'), (18200, 'https://ror.org/03wdd2732', 'no_lang_code', 1, 'https://ror.org/03wdd2732 FIP Industriale (Italy)'), (18201, 'https://ror.org/03wde7j36', 'no_lang_code', 1, 'https://ror.org/03wde7j36 Averbis (Germany)'), (18202, 'https://ror.org/03wdfz437', 'en', 1, 'https://ror.org/03wdfz437 Valencia Port'), (18203, 'https://ror.org/03wfejh61', 'no_lang_code', 1, 'https://ror.org/03wfejh61 J.M. Smucker Company (United States)'), (18204, 'https://ror.org/03wgq5m90', 'en', 1, 'https://ror.org/03wgq5m90 Massachusetts Department of Higher Education'), (18205, 'https://ror.org/03wjvv117', 'en', 1, 'https://ror.org/03wjvv117 IGAD Climate Prediction and Applications Center'), (18206, 'https://ror.org/03wk3n561', 'en', 1, 'https://ror.org/03wk3n561 Biblioteca Pública de Cincinnati Public Library of Cincinnati and Hamilton County'), (18207, 'https://ror.org/03wk52r49', 'no_lang_code', 1, 'https://ror.org/03wk52r49 Stella Therapeutics (United States)'), (18208, 'https://ror.org/03wkdj490', 'no_lang_code', 1, 'https://ror.org/03wkdj490 RGenix (United States)'), (18209, 'https://ror.org/03wm8rh48', 'no_lang_code', 1, 'https://ror.org/03wm8rh48 Canam Group (Canada)'), (18210, 'https://ror.org/03wn0d080', 'en', 1, 'https://ror.org/03wn0d080 Morton College'), (18211, 'https://ror.org/03wq0ts29', 'en', 1, 'https://ror.org/03wq0ts29 College of the Redwoods'), (18212, 'https://ror.org/03wqd2h57', 'en', 1, 'https://ror.org/03wqd2h57 Phillips Graduate Institute'), (18213, 'https://ror.org/03ws6g685', 'no_lang_code', 1, 'https://ror.org/03ws6g685 Aciturri (Spain)'), (18214, 'https://ror.org/03ws7wb17', 'no_lang_code', 1, 'https://ror.org/03ws7wb17 Hamakua-Kohala Health'), (18215, 'https://ror.org/03wtwre51', 'en', 1, 'https://ror.org/03wtwre51 Decatur Memorial Hospital'), (18216, 'https://ror.org/03wv11p67', 'no_lang_code', 1, 'https://ror.org/03wv11p67 InterveXion Therapeutics (United States)'), (18217, 'https://ror.org/03ww5p627', 'en', 1, 'https://ror.org/03ww5p627 Florence Crittenton Agency'), (18218, 'https://ror.org/03wwts623', 'en', 1, 'https://ror.org/03wwts623 Public Libraries of Saginaw'), (18219, 'https://ror.org/03wxz7j86', 'no_lang_code', 1, 'https://ror.org/03wxz7j86 Diamond Aircraft Industries (Austria)'), (18220, 'https://ror.org/03wy6f566', 'en', 1, 'https://ror.org/03wy6f566 Georgia Parent Support Network'), (18221, 'https://ror.org/03wykcx19', 'en', 1, 'https://ror.org/03wykcx19 Association Forestière Canadienne Canadian Forestry Association'), (18222, 'https://ror.org/03wyknn52', 'no_lang_code', 1, 'https://ror.org/03wyknn52 Inaccess (Greece)'), (18223, 'https://ror.org/03x0c7470', 'no_lang_code', 1, 'https://ror.org/03x0c7470 European Research Services'), (18224, 'https://ror.org/03x2x0e06', 'en', 1, 'https://ror.org/03x2x0e06 Elgin Community College'), (18225, 'https://ror.org/03x320790', 'no_lang_code', 1, 'https://ror.org/03x320790 Dieffe (Italy)'), (18226, 'https://ror.org/03x497b72', 'en', 1, 'https://ror.org/03x497b72 Miami County Museum'), (18227, 'https://ror.org/03x4rma83', 'no_lang_code', 1, 'https://ror.org/03x4rma83 Aztec Systems (United States)'), (18228, 'https://ror.org/03x5r0t69', 'no_lang_code', 1, 'https://ror.org/03x5r0t69 GreenField Specialty Alcolhols (Canada)'), (18229, 'https://ror.org/03x67zn13', 'no_lang_code', 1, 'https://ror.org/03x67zn13 Cadauta Engineering (Italy)'), (18230, 'https://ror.org/03x7vv863', 'no_lang_code', 1, 'https://ror.org/03x7vv863 Novocaptis (Greece)'), (18231, 'https://ror.org/03x86fq67', 'no_lang_code', 1, 'https://ror.org/03x86fq67 Xen Biofluidx (United States)'), (18232, 'https://ror.org/03x8f0b85', 'no_lang_code', 1, 'https://ror.org/03x8f0b85 Hi-Z Technology (United States)'), (18233, 'https://ror.org/03x9snd86', 'no_lang_code', 1, 'https://ror.org/03x9snd86 PeerJ (United States)'), (18234, 'https://ror.org/03xaz7s88', 'en', 1, 'https://ror.org/03xaz7s88 Claremont Colleges'), (18235, 'https://ror.org/03xb7n045', 'en', 1, 'https://ror.org/03xb7n045 St. Clair County Community College'), (18236, 'https://ror.org/03xdg2f86', 'no_lang_code', 1, 'https://ror.org/03xdg2f86 Flame Spray (Italy)'), (18237, 'https://ror.org/03xdnx124', 'no_lang_code', 1, 'https://ror.org/03xdnx124 Cortexica (United Kingdom)'), (18238, 'https://ror.org/03xfskc23', 'no_lang_code', 1, 'https://ror.org/03xfskc23 Advanced Environmental Technologies (Portugal)'), (18239, 'https://ror.org/03xjr3d37', 'no_lang_code', 1, 'https://ror.org/03xjr3d37 HaloSource (United States)'), (18240, 'https://ror.org/03xnb5h64', 'no_lang_code', 1, 'https://ror.org/03xnb5h64 FerRobotics Compliant Robot Technology (Austria)'), (18241, 'https://ror.org/03xq46679', 'no_lang_code', 1, 'https://ror.org/03xq46679 Hochtief (Germany) Hochtief Aktiengesellschaft'), (18242, 'https://ror.org/03xr60403', 'en', 1, 'https://ror.org/03xr60403 Terra State Community College'), (18243, 'https://ror.org/03xsa3q34', 'en', 1, 'https://ror.org/03xsa3q34 Roper St. Francis Foundation'), (18244, 'https://ror.org/03xsax711', 'cs', 1, 'https://ror.org/03xsax711 Cznic'), (18245, 'https://ror.org/03xvpr131', 'no_lang_code', 1, 'https://ror.org/03xvpr131 Jule (United States)'), (18246, 'https://ror.org/03xwmpp53', 'no_lang_code', 1, 'https://ror.org/03xwmpp53 Aeromet International (United Kingdom)'), (18247, 'https://ror.org/03xyjk354', 'en', 1, 'https://ror.org/03xyjk354 Peer Assistance Services'), (18248, 'https://ror.org/03xznyg79', 'en', 1, 'https://ror.org/03xznyg79 Distance Expert'), (18249, 'https://ror.org/03y0c3933', 'no_lang_code', 1, 'https://ror.org/03y0c3933 Environmental and Life Support Technology (United States)'), (18250, 'https://ror.org/03y255h89', 'en', 1, 'https://ror.org/03y255h89 Washington Township Fire Department'), (18251, 'https://ror.org/03y2be923', 'en', 1, 'https://ror.org/03y2be923 Economic Research Institute Икономически институт за научни изследвания'), (18252, 'https://ror.org/03y446t42', 'en', 1, 'https://ror.org/03y446t42 St. Louis Public Library'), (18253, 'https://ror.org/03y5p2k10', 'en', 1, 'https://ror.org/03y5p2k10 Wellness House'), (18254, 'https://ror.org/03y7gah37', 'no_lang_code', 1, 'https://ror.org/03y7gah37 Prothelia (United States)'); INSERT INTO `rors` VALUES (18255, 'https://ror.org/03y83c407', 'no_lang_code', 1, 'https://ror.org/03y83c407 Babcock Power (United Kingdom)'), (18256, 'https://ror.org/03yberd21', 'no_lang_code', 1, 'https://ror.org/03yberd21 DataFlow/Alaska (United States)'), (18257, 'https://ror.org/03yc4yk34', 'no_lang_code', 1, 'https://ror.org/03yc4yk34 Avitronics Research (Greece)'), (18258, 'https://ror.org/03yc87g51', 'en', 1, 'https://ror.org/03yc87g51 Council for Basic Education'), (18259, 'https://ror.org/03yf4bd98', 'en', 1, 'https://ror.org/03yf4bd98 Sierra Institute for Community and Environment'), (18260, 'https://ror.org/03yh9bm54', 'no_lang_code', 1, 'https://ror.org/03yh9bm54 AGILIS Α.Ε. ΣΤΑΤΙΣΤΙΚΗΣ ΚΑΙ ΠΛΗΡΟΦΟΡΙΚΗΣ Agilis (Greece)'), (18261, 'https://ror.org/03yhkgk91', 'en', 1, 'https://ror.org/03yhkgk91 South West Special Recreation Association'), (18262, 'https://ror.org/03yhnhz23', 'pt', 1, 'https://ror.org/03yhnhz23 Centro Interuniversitário de História das Ciências e da Tecnologia'), (18263, 'https://ror.org/03yk73538', 'no_lang_code', 1, 'https://ror.org/03yk73538 Doduco (Germany)'), (18264, 'https://ror.org/03ypjf385', 'no_lang_code', 1, 'https://ror.org/03ypjf385 Neos Resources (United Kingdom)'), (18265, 'https://ror.org/03ypk5989', 'en', 1, 'https://ror.org/03ypk5989 Green Aviation Research and Development Network'), (18266, 'https://ror.org/03yrced67', 'no_lang_code', 1, 'https://ror.org/03yrced67 Blue Wave Semiconductors (United States)'), (18267, 'https://ror.org/03yvy0733', 'no_lang_code', 1, 'https://ror.org/03yvy0733 Hightec MC (Switzerland)'), (18268, 'https://ror.org/03ywb2q15', 'en', 1, 'https://ror.org/03ywb2q15 Lafayette School Corporation'), (18269, 'https://ror.org/03yxgvp63', 'no_lang_code', 1, 'https://ror.org/03yxgvp63 IGI Global (United States)'), (18270, 'https://ror.org/03yxn7r03', 'no_lang_code', 1, 'https://ror.org/03yxn7r03 Pittini Group (Italy)'), (18271, 'https://ror.org/03z0rr544', 'en', 1, 'https://ror.org/03z0rr544 Sanford Health Foundation'), (18272, 'https://ror.org/03z1f5h46', 'no_lang_code', 1, 'https://ror.org/03z1f5h46 Compañía Ibérica De Paneles Sintéticos (Spain)'), (18273, 'https://ror.org/03z2p9q19', 'en', 1, 'https://ror.org/03z2p9q19 Rhode Island Cancer Council'), (18274, 'https://ror.org/03z2rq360', 'no_lang_code', 1, 'https://ror.org/03z2rq360 Camfridge (United Kingdom)'), (18275, 'https://ror.org/03z3dqe20', 'en', 1, 'https://ror.org/03z3dqe20 Educopia Institute'), (18276, 'https://ror.org/03z3n0g53', 'no_lang_code', 1, 'https://ror.org/03z3n0g53 Brainstorm (Spain)'), (18277, 'https://ror.org/03z5q7c50', 'fr', 1, 'https://ror.org/03z5q7c50 Chambre de Commerce et d''Industrie Pays de la Loire'), (18278, 'https://ror.org/03z7ay868', 'no_lang_code', 1, 'https://ror.org/03z7ay868 Atout Vent (France)'), (18279, 'https://ror.org/03z7rky51', 'no_lang_code', 1, 'https://ror.org/03z7rky51 CEI-Bois'), (18280, 'https://ror.org/03z97cd47', 'es', 1, 'https://ror.org/03z97cd47 Fundació Privada Centre CIM'), (18281, 'https://ror.org/03z9rt353', 'en', 1, 'https://ror.org/03z9rt353 American Association of State Colleges and Universities'), (18282, 'https://ror.org/03zbr5052', 'en', 1, 'https://ror.org/03zbr5052 Spectrum Neuroscience and Treatment Institute'), (18283, 'https://ror.org/03zd0v772', 'no_lang_code', 1, 'https://ror.org/03zd0v772 Cv Cryptovision (Germany)'), (18284, 'https://ror.org/03zdah694', 'no_lang_code', 1, 'https://ror.org/03zdah694 Qualiber (United States)'), (18285, 'https://ror.org/03zh9hp36', 'en', 1, 'https://ror.org/03zh9hp36 William S. Hall Psychiatric Institute'), (18286, 'https://ror.org/03zh9kr32', 'en', 1, 'https://ror.org/03zh9kr32 American Sokol'), (18287, 'https://ror.org/03zjprt16', 'en', 1, 'https://ror.org/03zjprt16 Institute for Cognitive Prosthetics'), (18288, 'https://ror.org/03zm24q55', 'no_lang_code', 1, 'https://ror.org/03zm24q55 Canadian Bank Note Company (Canada)'), (18289, 'https://ror.org/03zp7nb85', 'no_lang_code', 1, 'https://ror.org/03zp7nb85 Active Technologies (Italy)'), (18290, 'https://ror.org/03zs6xb29', 'en', 1, 'https://ror.org/03zs6xb29 Innovate Manitoba'), (18291, 'https://ror.org/03ztrsx19', 'en', 1, 'https://ror.org/03ztrsx19 Poway Unified School District'), (18292, 'https://ror.org/03ztvfr23', 'no_lang_code', 1, 'https://ror.org/03ztvfr23 Global Inkjet Systems (United Kingdom)'), (18293, 'https://ror.org/03zvc9c15', 'no_lang_code', 1, 'https://ror.org/03zvc9c15 Hirst Magnetic Instruments (United Kingdom)'), (18294, 'https://ror.org/03zwh7x79', 'no_lang_code', 1, 'https://ror.org/03zwh7x79 Fibre Extrusion Technology (United Kingdom)'), (18295, 'https://ror.org/0400w6m91', 'no_lang_code', 1, 'https://ror.org/0400w6m91 Basler & Hofmann (Switzerland)'), (18296, 'https://ror.org/0401a6w30', 'en', 1, 'https://ror.org/0401a6w30 Keys for Networking'), (18297, 'https://ror.org/0402bxc90', 'no_lang_code', 1, 'https://ror.org/0402bxc90 Barriquand (France)'), (18298, 'https://ror.org/0403wzz51', 'en', 1, 'https://ror.org/0403wzz51 European Aquaculture Technology and Innovation Platform'), (18299, 'https://ror.org/0404q6692', 'en', 1, 'https://ror.org/0404q6692 Valley Medical Center Foundation'), (18300, 'https://ror.org/0405v6d59', 'no_lang_code', 1, 'https://ror.org/0405v6d59 Elektrobit (Austria)'), (18301, 'https://ror.org/040730h60', 'en', 1, 'https://ror.org/040730h60 Waukesha Public Library'), (18302, 'https://ror.org/04083zv18', 'no_lang_code', 1, 'https://ror.org/04083zv18 Intelligent Mechatronic Systems (United States)'), (18303, 'https://ror.org/0408a5x16', 'no_lang_code', 1, 'https://ror.org/0408a5x16 Bühler (Germany)'), (18304, 'https://ror.org/0408c7e30', 'it', 1, 'https://ror.org/0408c7e30 Associazione Italiana Prove non Distruttive'), (18305, 'https://ror.org/0408zq502', 'en', 1, 'https://ror.org/0408zq502 Institute of Social Innovations'), (18306, 'https://ror.org/040cyhh47', 'no_lang_code', 1, 'https://ror.org/040cyhh47 Family Works'), (18307, 'https://ror.org/040dbbn57', 'no_lang_code', 1, 'https://ror.org/040dbbn57 HIT09 (Italy)'), (18308, 'https://ror.org/040emvj36', 'no_lang_code', 1, 'https://ror.org/040emvj36 IDI Eikon (Spain)'), (18309, 'https://ror.org/040jdz280', 'en', 1, 'https://ror.org/040jdz280 National Federation of Advanced Information Services'), (18310, 'https://ror.org/040jf9322', 'en', 1, 'https://ror.org/040jf9322 Centre d''études de populations, de pauvreté et de politiques socio-économiques Luxembourg Institute of Socio-Economic Research'), (18311, 'https://ror.org/040jnxh95', 'no_lang_code', 1, 'https://ror.org/040jnxh95 AliénorEU'), (18312, 'https://ror.org/040k7ca93', 'en', 1, 'https://ror.org/040k7ca93 World Education'), (18313, 'https://ror.org/040mhcr37', 'no_lang_code', 1, 'https://ror.org/040mhcr37 Roland Mills United (Germany) Rolandmühle'), (18314, 'https://ror.org/040q70c97', 'no_lang_code', 1, 'https://ror.org/040q70c97 Aurrenak (Spain)'), (18315, 'https://ror.org/040qe3166', 'no_lang_code', 1, 'https://ror.org/040qe3166 Class Editori (Italy)'), (18316, 'https://ror.org/040qfvc89', 'fr', 1, 'https://ror.org/040qfvc89 Fédération des Plastiques et Alliances Composites'), (18317, 'https://ror.org/040shh675', 'en', 1, 'https://ror.org/040shh675 Porter County Public Library System'), (18318, 'https://ror.org/040shjw10', 'fr', 1, 'https://ror.org/040shjw10 Association Nationale pour la Formation Professionnelle des Adultes'), (18319, 'https://ror.org/040tnnq16', 'en', 1, 'https://ror.org/040tnnq16 Broward County Board'), (18320, 'https://ror.org/040xsmt05', 'en', 1, 'https://ror.org/040xsmt05 Coating Development Coating Développement'), (18321, 'https://ror.org/040y40f79', 'it', 1, 'https://ror.org/040y40f79 Fondazione per Adroterapia Oncologica'), (18322, 'https://ror.org/040ydq726', 'en', 1, 'https://ror.org/040ydq726 Idaho Federation of Families for Children''s Mental Health'), (18323, 'https://ror.org/040z8en63', 'en', 1, 'https://ror.org/040z8en63 Bay Area Tumor Institute'), (18324, 'https://ror.org/0411qha08', 'en', 1, 'https://ror.org/0411qha08 BioIndustry Association'), (18325, 'https://ror.org/0411vej12', 'no_lang_code', 1, 'https://ror.org/0411vej12 Hill Group (United States)'), (18326, 'https://ror.org/0414m8677', 'no_lang_code', 1, 'https://ror.org/0414m8677 Duferco (Belgium)'), (18327, 'https://ror.org/041554441', 'no_lang_code', 1, 'https://ror.org/041554441 ConMed (Finland)'), (18328, 'https://ror.org/0415j9862', 'no_lang_code', 1, 'https://ror.org/0415j9862 Institute for Renewable Energy (Poland)'), (18329, 'https://ror.org/0415p9s42', 'no_lang_code', 1, 'https://ror.org/0415p9s42 Dräger (Germany)'), (18330, 'https://ror.org/04161kh40', 'en', 1, 'https://ror.org/04161kh40 Indiana University Kokomo'), (18331, 'https://ror.org/0416ckt74', 'en', 1, 'https://ror.org/0416ckt74 Cancer Connection'), (18332, 'https://ror.org/0416tx222', 'en', 1, 'https://ror.org/0416tx222 International Association for Cereal Science and Technology Internationale Gesellschaft für Getreidewissenschaft und -technologie'), (18333, 'https://ror.org/0417eed32', 'it', 1, 'https://ror.org/0417eed32 Associazione per l''Alta Formazione Giuridico-Economica'), (18334, 'https://ror.org/0418rrk10', 'no_lang_code', 1, 'https://ror.org/0418rrk10 Creative Action (United States)'), (18335, 'https://ror.org/041ad9g51', 'no_lang_code', 1, 'https://ror.org/041ad9g51 EDALab (Italy)'), (18336, 'https://ror.org/041b2r204', 'en', 1, 'https://ror.org/041b2r204 Association of Village Council Presidents'), (18337, 'https://ror.org/041b3m426', 'en', 1, 'https://ror.org/041b3m426 Indigenous Peoples Task Force'), (18338, 'https://ror.org/041c1w327', 'no_lang_code', 1, 'https://ror.org/041c1w327 DHL (Spain)'), (18339, 'https://ror.org/041ch6a11', 'no_lang_code', 1, 'https://ror.org/041ch6a11 Barilla (Italy)'), (18340, 'https://ror.org/041d53j42', 'en', 1, 'https://ror.org/041d53j42 Eesti Rahvusraamatukogu National Library of Estonia Национальная библиотека Эстонии'), (18341, 'https://ror.org/041d7g367', 'no_lang_code', 1, 'https://ror.org/041d7g367 Friuli Innovazione (Italy)'), (18342, 'https://ror.org/041ddw474', 'en', 1, 'https://ror.org/041ddw474 Tallahassee Memorial HealthCare'), (18343, 'https://ror.org/041dgkx86', 'en', 1, 'https://ror.org/041dgkx86 Audrain County Historical Society'), (18344, 'https://ror.org/041dnb131', 'no_lang_code', 1, 'https://ror.org/041dnb131 CGI (Spain)'), (18345, 'https://ror.org/041g9dd66', 'it', 1, 'https://ror.org/041g9dd66 Centro Europeo Sviluppo Applicazioni Plastiche'), (18346, 'https://ror.org/041gnf006', 'no_lang_code', 1, 'https://ror.org/041gnf006 E-nema (Germany)'), (18347, 'https://ror.org/041grwk58', 'en', 1, 'https://ror.org/041grwk58 Cleveland Law Library Association'), (18348, 'https://ror.org/041hy4p77', 'no_lang_code', 1, 'https://ror.org/041hy4p77 ConocoPhillips (United Kingdom)'), (18349, 'https://ror.org/041khxm91', 'no_lang_code', 1, 'https://ror.org/041khxm91 Vanquish Oncology (United States)'), (18350, 'https://ror.org/041nyfq10', 'no_lang_code', 1, 'https://ror.org/041nyfq10 Mistras Group (Greece)'), (18351, 'https://ror.org/041v7ky66', 'en', 1, 'https://ror.org/041v7ky66 American Society for Photogrammetry and Remote Sensing'), (18352, 'https://ror.org/041w3g952', 'no_lang_code', 1, 'https://ror.org/041w3g952 Intune Networks (Ireland)'), (18353, 'https://ror.org/041yv5j17', 'en', 1, 'https://ror.org/041yv5j17 Washington School for the Deaf'), (18354, 'https://ror.org/04201qf96', 'no_lang_code', 1, 'https://ror.org/04201qf96 as2con (Croatia)'), (18355, 'https://ror.org/0420ycb55', 'en', 1, 'https://ror.org/0420ycb55 Lithuanian Research and Studies Center'), (18356, 'https://ror.org/0424v9690', 'no_lang_code', 1, 'https://ror.org/0424v9690 Heliatek (Germany)'), (18357, 'https://ror.org/0425phg59', 'en', 1, 'https://ror.org/0425phg59 Cuesta College'), (18358, 'https://ror.org/042656673', 'en', 1, 'https://ror.org/042656673 Agricultural Institute of Canada'), (18359, 'https://ror.org/0429rc964', 'en', 1, 'https://ror.org/0429rc964 Shoshone-Bannock Tribes'), (18360, 'https://ror.org/0429xrf24', 'en', 1, 'https://ror.org/0429xrf24 Canadian Science Writers Association'), (18361, 'https://ror.org/042bat638', 'no_lang_code', 1, 'https://ror.org/042bat638 ConfometRx (United States)'), (18362, 'https://ror.org/042bdjp78', 'no_lang_code', 1, 'https://ror.org/042bdjp78 Astato (France)'), (18363, 'https://ror.org/042epbw18', 'no_lang_code', 1, 'https://ror.org/042epbw18 IP Group (United Kingdom)'), (18364, 'https://ror.org/042fpk261', 'no_lang_code', 1, 'https://ror.org/042fpk261 Freudenberg (Germany)'), (18365, 'https://ror.org/042h3a043', 'en', 1, 'https://ror.org/042h3a043 Southern Vermont College'), (18366, 'https://ror.org/042jr0j26', 'en', 1, 'https://ror.org/042jr0j26 Derby City Council'), (18367, 'https://ror.org/042qv2836', 'en', 1, 'https://ror.org/042qv2836 Empowerment Program'), (18368, 'https://ror.org/042r22f45', 'en', 1, 'https://ror.org/042r22f45 Quadriplegics United Against Dependency'), (18369, 'https://ror.org/042seb440', 'de', 1, 'https://ror.org/042seb440 Berufsförderungszentrum Essen'), (18370, 'https://ror.org/042t7yh44', 'en', 1, 'https://ror.org/042t7yh44 Women''s Hospital, School of Medicine, Zhejiang University 浙江大学医学院附属妇产科医院'), (18371, 'https://ror.org/042th2969', 'no_lang_code', 1, 'https://ror.org/042th2969 Centro de Innovación de Infraestructuras Inteligentes (Spain)'), (18372, 'https://ror.org/042th8w18', 'en', 1, 'https://ror.org/042th8w18 Iowa Wesleyan College'), (18373, 'https://ror.org/042v2q176', 'en', 1, 'https://ror.org/042v2q176 Florida Department of Environmental Protection'), (18374, 'https://ror.org/042w3r845', 'en', 1, 'https://ror.org/042w3r845 Scarsdale Public Schools'), (18375, 'https://ror.org/042zjqf83', 'en', 1, 'https://ror.org/042zjqf83 Hohenstein Institute'), (18376, 'https://ror.org/0431y1695', 'no_lang_code', 1, 'https://ror.org/0431y1695 Eppendorf (Belgium)'), (18377, 'https://ror.org/0431zrt90', 'en', 1, 'https://ror.org/0431zrt90 Scientific Electronic Library Online'), (18378, 'https://ror.org/0433seb41', 'no_lang_code', 1, 'https://ror.org/0433seb41 Lybradyn (United States)'), (18379, 'https://ror.org/0433tpc78', 'en', 1, 'https://ror.org/0433tpc78 La Palma Research Centre for Future Studies'), (18380, 'https://ror.org/043422d20', 'no_lang_code', 1, 'https://ror.org/043422d20 Itelsa (Spain)'), (18381, 'https://ror.org/0435xdk58', 'en', 1, 'https://ror.org/0435xdk58 NERL Consortium'), (18382, 'https://ror.org/043648k83', 'en', 1, 'https://ror.org/043648k83 China National Health Development Research Center 卫生部卫生发展研究中心'), (18383, 'https://ror.org/04366aw25', 'en', 1, 'https://ror.org/04366aw25 People for Parks'), (18384, 'https://ror.org/0437g4y96', 'no_lang_code', 1, 'https://ror.org/0437g4y96 Mega Electronics (Finland)'), (18385, 'https://ror.org/0438kyb38', 'en', 1, 'https://ror.org/0438kyb38 Association for Psychological Science'), (18386, 'https://ror.org/043affe91', 'no_lang_code', 1, 'https://ror.org/043affe91 Stryker (United States)'), (18387, 'https://ror.org/043b9gp27', 'en', 1, 'https://ror.org/043b9gp27 Architect of the Capitol'), (18388, 'https://ror.org/043bemg15', 'en', 1, 'https://ror.org/043bemg15 Lakeview College of Nursing'), (18389, 'https://ror.org/043bxbz53', 'en', 1, 'https://ror.org/043bxbz53 Experimentarium'), (18390, 'https://ror.org/043cevr52', 'no_lang_code', 1, 'https://ror.org/043cevr52 Gem Pharmaceuticals (United States)'), (18391, 'https://ror.org/043dpct50', 'no_lang_code', 1, 'https://ror.org/043dpct50 Innovative Biologics (United States)'), (18392, 'https://ror.org/043e96c15', 'en', 1, 'https://ror.org/043e96c15 Push to Walk'), (18393, 'https://ror.org/043esfj33', 'en', 1, 'https://ror.org/043esfj33 Medical Institute for Sexual Health'), (18394, 'https://ror.org/043fjaj52', 'no_lang_code', 1, 'https://ror.org/043fjaj52 Capita (United Kingdom)'), (18395, 'https://ror.org/043fjtb89', 'en', 1, 'https://ror.org/043fjtb89 Coalition for Networked Information'), (18396, 'https://ror.org/043fmt380', 'en', 1, 'https://ror.org/043fmt380 Dayton Metro Library'), (18397, 'https://ror.org/043hjsp66', 'en', 1, 'https://ror.org/043hjsp66 P.L. Kapitza Institute for Physical Problems Институт физических проблем имени П. Л. Капицы РАН'), (18398, 'https://ror.org/043m8qc33', 'no_lang_code', 1, 'https://ror.org/043m8qc33 European Institute of Printed Circuits'), (18399, 'https://ror.org/043mrfn25', 'no_lang_code', 1, 'https://ror.org/043mrfn25 Digirad (United States)'), (18400, 'https://ror.org/043n2ap46', 'en', 1, 'https://ror.org/043n2ap46 The School of Theoretical Modeling'), (18401, 'https://ror.org/043pn0570', 'no_lang_code', 1, 'https://ror.org/043pn0570 Chilworth Technology (United Kingdom)'), (18402, 'https://ror.org/043rf9d68', 'no_lang_code', 1, 'https://ror.org/043rf9d68 Europlasma (Belgium)'), (18403, 'https://ror.org/043vm9914', 'no_lang_code', 1, 'https://ror.org/043vm9914 Dynamic Systems (United States)'), (18404, 'https://ror.org/043xrkf48', 'no_lang_code', 1, 'https://ror.org/043xrkf48 Fomento de San Sebastián (Spain)'), (18405, 'https://ror.org/043y57f64', 'en', 1, 'https://ror.org/043y57f64 Hyde Housing Association'), (18406, 'https://ror.org/043z38488', 'no_lang_code', 1, 'https://ror.org/043z38488 Laryngograph (United Kingdom)'), (18407, 'https://ror.org/043zcz508', 'en', 1, 'https://ror.org/043zcz508 Starfleet Academy'), (18408, 'https://ror.org/04419vp62', 'en', 1, 'https://ror.org/04419vp62 Putnam County HomeCare & Hospice Auxiliary'), (18409, 'https://ror.org/0441w6k76', 'no_lang_code', 1, 'https://ror.org/0441w6k76 DTK Electronics (Bulgaria)'), (18410, 'https://ror.org/04426r665', 'en', 1, 'https://ror.org/04426r665 Morley Library'), (18411, 'https://ror.org/0442gk010', 'no_lang_code', 1, 'https://ror.org/0442gk010 ImaTx (United States)'), (18412, 'https://ror.org/0444akq51', 'no_lang_code', 1, 'https://ror.org/0444akq51 Now Publishers (United States)'), (18413, 'https://ror.org/0445d9h15', 'de', 1, 'https://ror.org/0445d9h15 Institut für Mikroelektronik- und Mechatronik-Systeme'), (18414, 'https://ror.org/0447b5h55', 'en', 1, 'https://ror.org/0447b5h55 Barrow Arctic Science Consortium'), (18415, 'https://ror.org/044a2za73', 'en', 1, 'https://ror.org/044a2za73 Education of Young Leaders Society for Training and Development'), (18416, 'https://ror.org/044as9138', 'no_lang_code', 1, 'https://ror.org/044as9138 IntelliView Technologies (Canada)'), (18417, 'https://ror.org/044b6j563', 'en', 1, 'https://ror.org/044b6j563 Society of Thoracic Surgeons'), (18418, 'https://ror.org/044b7f107', 'no_lang_code', 1, 'https://ror.org/044b7f107 BioPhage Pharma (Canada)'), (18419, 'https://ror.org/044bdm595', 'no_lang_code', 1, 'https://ror.org/044bdm595 Hephaestus Holdings (United Kingdom)'), (18420, 'https://ror.org/044csjs83', 'en', 1, 'https://ror.org/044csjs83 Hispanic Serving Health Professions Schools'), (18421, 'https://ror.org/044ddr125', 'no_lang_code', 1, 'https://ror.org/044ddr125 Agfa-Gevaert (Canada)'), (18422, 'https://ror.org/044dnpj34', 'en', 1, 'https://ror.org/044dnpj34 Harlow College'), (18423, 'https://ror.org/044dzr604', 'en', 1, 'https://ror.org/044dzr604 Visiting Nurse Association of South Central Connecticut'), (18424, 'https://ror.org/044geq124', 'en', 1, 'https://ror.org/044geq124 Ministry of Water Resources and Irrigation وزارة الموارد المائية والري'), (18425, 'https://ror.org/044h88456', 'en', 1, 'https://ror.org/044h88456 South Bend Museum of Art'), (18426, 'https://ror.org/044j1gb67', 'no_lang_code', 1, 'https://ror.org/044j1gb67 Hycult Biotech (Netherlands)'), (18427, 'https://ror.org/044n8q784', 'en', 1, 'https://ror.org/044n8q784 Community College of Allegheny County'), (18428, 'https://ror.org/044nkqy76', 'no_lang_code', 1, 'https://ror.org/044nkqy76 Ayogo (Canada)'), (18429, 'https://ror.org/044nrx235', 'en', 1, 'https://ror.org/044nrx235 Gay-Straight Alliance Network'), (18430, 'https://ror.org/044q67424', 'no_lang_code', 1, 'https://ror.org/044q67424 Asius Technologies (United States)'), (18431, 'https://ror.org/044s55g62', 'en', 1, 'https://ror.org/044s55g62 Women''s Refugee Commission'), (18432, 'https://ror.org/044t8ez79', 'no_lang_code', 1, 'https://ror.org/044t8ez79 Cybermoor (United Kingdom)'), (18433, 'https://ror.org/044v41k28', 'no_lang_code', 1, 'https://ror.org/044v41k28 Concrete Repairs (United Kingdom)'), (18434, 'https://ror.org/044w95594', 'it', 1, 'https://ror.org/044w95594 Consorzio di Bioingegneria e Informatica Medica'), (18435, 'https://ror.org/044xhw248', 'no_lang_code', 1, 'https://ror.org/044xhw248 Cell Microsystems (United States)'), (18436, 'https://ror.org/044xjyn25', 'no_lang_code', 1, 'https://ror.org/044xjyn25 Advantech AMT (Canada)'), (18437, 'https://ror.org/044yv1k53', 'en', 1, 'https://ror.org/044yv1k53 Justice Resource Institute'), (18438, 'https://ror.org/0451y5857', 'en', 1, 'https://ror.org/0451y5857 Infant Trust'), (18439, 'https://ror.org/0452enn61', 'no_lang_code', 1, 'https://ror.org/0452enn61 Sri Ganapathi Sachchidananda Vagdevi Center'), (18440, 'https://ror.org/0452jaa17', 'en', 1, 'https://ror.org/0452jaa17 Institute of Plasma Physics and Laser Microfusion'), (18441, 'https://ror.org/0454dtg60', 'en', 1, 'https://ror.org/0454dtg60 Reaching Across Illinois Library System'), (18442, 'https://ror.org/04573hn72', 'no_lang_code', 1, 'https://ror.org/04573hn72 Borit (Belgium)'), (18443, 'https://ror.org/04574r077', 'en', 1, 'https://ror.org/04574r077 Lietuvos Mokslininkų Sąjungos Lithuanian Scientific Society'), (18444, 'https://ror.org/0459dq860', 'no_lang_code', 1, 'https://ror.org/0459dq860 SPEED BioSystems (United States)'), (18445, 'https://ror.org/045ced850', 'no_lang_code', 1, 'https://ror.org/045ced850 DILAS (Germany)'), (18446, 'https://ror.org/045cj2n31', 'no_lang_code', 1, 'https://ror.org/045cj2n31 FiveFocal (United States)'), (18447, 'https://ror.org/045e9rn67', 'no_lang_code', 1, 'https://ror.org/045e9rn67 EmbedRF (United States)'), (18448, 'https://ror.org/045fjnt03', 'no_lang_code', 1, 'https://ror.org/045fjnt03 Eonic Systems (Belgium)'), (18449, 'https://ror.org/045g6w049', 'no_lang_code', 1, 'https://ror.org/045g6w049 Eminate (United Kingdom)'), (18450, 'https://ror.org/045gnpt57', 'no_lang_code', 1, 'https://ror.org/045gnpt57 LETIPharma (Spain)'), (18451, 'https://ror.org/045j3za34', 'no_lang_code', 1, 'https://ror.org/045j3za34 AnsuR Technologies (Norway)'), (18452, 'https://ror.org/045nwkm81', 'no_lang_code', 1, 'https://ror.org/045nwkm81 Assing (Italy)'), (18453, 'https://ror.org/045pqzn81', 'no_lang_code', 1, 'https://ror.org/045pqzn81 Mécanique et Engrenage Moderne (France)'), (18454, 'https://ror.org/045q3sv53', 'no_lang_code', 1, 'https://ror.org/045q3sv53 Seneb BioSciences (United States)'), (18455, 'https://ror.org/045t28w66', 'en', 1, 'https://ror.org/045t28w66 Pennsylvania Academy of Family Physicians and Foundation'), (18456, 'https://ror.org/045w5nd37', 'en', 1, 'https://ror.org/045w5nd37 Visitation Catholic School'), (18457, 'https://ror.org/045wp1309', 'en', 1, 'https://ror.org/045wp1309 St. Vincent Hospital'), (18458, 'https://ror.org/045x59t40', 'en', 1, 'https://ror.org/045x59t40 Hillsborough County Anti Drug Alliance’s'), (18459, 'https://ror.org/045xce929', 'no_lang_code', 1, 'https://ror.org/045xce929 Double S Instructional Systems'), (18460, 'https://ror.org/045ybeh27', 'no_lang_code', 1, 'https://ror.org/045ybeh27 Inmatec Technologies (Germany)'), (18461, 'https://ror.org/045zcth28', 'en', 1, 'https://ror.org/045zcth28 McLaren Greater Lansing'), (18462, 'https://ror.org/045zhyc13', 'no_lang_code', 1, 'https://ror.org/045zhyc13 Imtech Marine (Netherlands)'), (18463, 'https://ror.org/045zwy983', 'en', 1, 'https://ror.org/045zwy983 Women of Faith and Hope'), (18464, 'https://ror.org/04606j127', 'no_lang_code', 1, 'https://ror.org/04606j127 GarcíaRama (Spain)'), (18465, 'https://ror.org/0461v4y70', 'no_lang_code', 1, 'https://ror.org/0461v4y70 Codrico (Netherlands)'), (18466, 'https://ror.org/0462h0957', 'en', 1, 'https://ror.org/0462h0957 International Centre of Biodynamics'), (18467, 'https://ror.org/04638h934', 'no_lang_code', 1, 'https://ror.org/04638h934 FCT Systeme (Germany)'), (18468, 'https://ror.org/0463rqm34', 'en', 1, 'https://ror.org/0463rqm34 Center and Courses of Advanced Technology on Image Analysis Centro y Cursos de Tecnología Avanzada de Análisis de Imágenes'), (18469, 'https://ror.org/046467720', 'en', 1, 'https://ror.org/046467720 CB Wetlands & Environmental Specialists'), (18470, 'https://ror.org/04663qn06', 'no_lang_code', 1, 'https://ror.org/04663qn06 Insight Design Labs (Canada)'), (18471, 'https://ror.org/0466tpr53', 'en', 1, 'https://ror.org/0466tpr53 International Foundation of Employee Benefit Plans'), (18472, 'https://ror.org/0466y0231', 'no_lang_code', 1, 'https://ror.org/0466y0231 Competitive Design Network (Spain)'), (18473, 'https://ror.org/0466zcr09', 'en', 1, 'https://ror.org/0466zcr09 SkyTeam'), (18474, 'https://ror.org/0467vhn46', 'en', 1, 'https://ror.org/0467vhn46 St. Joseph County Public Library'), (18475, 'https://ror.org/046a8r834', 'no_lang_code', 1, 'https://ror.org/046a8r834 Siamab Therapeutics (United States)'), (18476, 'https://ror.org/046b74p91', 'no_lang_code', 1, 'https://ror.org/046b74p91 Mayer Brown (United States)'), (18477, 'https://ror.org/046c16x31', 'en', 1, 'https://ror.org/046c16x31 Pacific Clinics'), (18478, 'https://ror.org/046dtqb83', 'no_lang_code', 1, 'https://ror.org/046dtqb83 Kayser (Italy)'), (18479, 'https://ror.org/046dybe93', 'en', 1, 'https://ror.org/046dybe93 Office of Missouri Governor'), (18480, 'https://ror.org/046etfw78', 'no_lang_code', 1, 'https://ror.org/046etfw78 Gilden Photonics (United Kingdom)'), (18481, 'https://ror.org/046fjdw68', 'en', 1, 'https://ror.org/046fjdw68 Guerilla Science'), (18482, 'https://ror.org/046hz2n20', 'en', 1, 'https://ror.org/046hz2n20 Association of British HealthTech Industries'), (18483, 'https://ror.org/046nm0a12', 'en', 1, 'https://ror.org/046nm0a12 Adaptive Sports Foundation'), (18484, 'https://ror.org/046nv5659', 'no_lang_code', 1, 'https://ror.org/046nv5659 Dsan Research Solutions'), (18485, 'https://ror.org/046q8mv93', 'no_lang_code', 1, 'https://ror.org/046q8mv93 Mitel (Ireland)'), (18486, 'https://ror.org/046qxc353', 'no_lang_code', 1, 'https://ror.org/046qxc353 Bioengineering Technology and Systems (Italy)'), (18487, 'https://ror.org/046y74b83', 'no_lang_code', 1, 'https://ror.org/046y74b83 Careers Europe'), (18488, 'https://ror.org/046yjek33', 'no_lang_code', 1, 'https://ror.org/046yjek33 Aicas (Germany)'), (18489, 'https://ror.org/046z39w60', 'no_lang_code', 1, 'https://ror.org/046z39w60 EnSilica (United Kingdom)'), (18490, 'https://ror.org/046z54t28', 'en', 1, 'https://ror.org/046z54t28 Indiana University East'), (18491, 'https://ror.org/047137m93', 'en', 1, 'https://ror.org/047137m93 Prince George''s County Public Schools'), (18492, 'https://ror.org/047223947', 'en', 1, 'https://ror.org/047223947 Foundation for the Research Development and Application of Composite Materials Fundación para la Investigación, Desarrollo y Aplicación de los Materiales Compuestos'), (18493, 'https://ror.org/0472rwr52', 'en', 1, 'https://ror.org/0472rwr52 Cancer Navigator'), (18494, 'https://ror.org/047527p77', 'no_lang_code', 1, 'https://ror.org/047527p77 Hummingbird Scientific (United States)'), (18495, 'https://ror.org/0476vb322', 'no_lang_code', 1, 'https://ror.org/0476vb322 Carcerano (Italy)'), (18496, 'https://ror.org/0476zhn05', 'no_lang_code', 1, 'https://ror.org/0476zhn05 Lakka (Finland)'), (18497, 'https://ror.org/047866h90', 'no_lang_code', 1, 'https://ror.org/047866h90 BioInvent (Sweden)'), (18498, 'https://ror.org/0478xk890', 'en', 1, 'https://ror.org/0478xk890 Community Connections'), (18499, 'https://ror.org/04790m696', 'no_lang_code', 1, 'https://ror.org/04790m696 Composites Evolution (United Kingdom)'), (18500, 'https://ror.org/047979f88', 'no_lang_code', 1, 'https://ror.org/047979f88 Águas de Portugal (Portugal)'), (18501, 'https://ror.org/047ac3d11', 'no_lang_code', 1, 'https://ror.org/047ac3d11 Alpha Marine (Greece)'), (18502, 'https://ror.org/047acnn05', 'no_lang_code', 1, 'https://ror.org/047acnn05 Asymptote (United Kingdom)'), (18503, 'https://ror.org/047atj319', 'no_lang_code', 1, 'https://ror.org/047atj319 Functional Technologies (United Kingdom)'), (18504, 'https://ror.org/047b7n641', 'no_lang_code', 1, 'https://ror.org/047b7n641 Gilardoni Vittorio (Italy)'), (18505, 'https://ror.org/047bknx65', 'no_lang_code', 1, 'https://ror.org/047bknx65 Eco-Energy (NI) (United Kingdom)'), (18506, 'https://ror.org/047cnmy82', 'no_lang_code', 1, 'https://ror.org/047cnmy82 3M (Germany)'), (18507, 'https://ror.org/047cyjw83', 'en', 1, 'https://ror.org/047cyjw83 Pender County Schools'), (18508, 'https://ror.org/047d3ep63', 'en', 1, 'https://ror.org/047d3ep63 Ministry for Education and Employment'), (18509, 'https://ror.org/047etja20', 'no_lang_code', 1, 'https://ror.org/047etja20 Everis (Spain)'), (18510, 'https://ror.org/047h1e475', 'no_lang_code', 1, 'https://ror.org/047h1e475 Celica (Slovenia)'), (18511, 'https://ror.org/047jmhw86', 'no_lang_code', 1, 'https://ror.org/047jmhw86 Aqua Consult Ingenieur (Germany)'), (18512, 'https://ror.org/047k18g44', 'en', 1, 'https://ror.org/047k18g44 International Bureau for Environmental Studies'), (18513, 'https://ror.org/047kvxr97', 'no_lang_code', 1, 'https://ror.org/047kvxr97 Bexion Pharmaceuticals (United States)'), (18514, 'https://ror.org/047m6hg73', 'no_lang_code', 1, 'https://ror.org/047m6hg73 Management Intelligenter Technologien (Germany)'), (18515, 'https://ror.org/047mzc334', 'en', 1, 'https://ror.org/047mzc334 Lisle Library District'), (18516, 'https://ror.org/047n2sq83', 'en', 1, 'https://ror.org/047n2sq83 Wicomico County Health Department'), (18517, 'https://ror.org/047n4sz26', 'en', 1, 'https://ror.org/047n4sz26 Institute of Non-ferrous and Rare Metals'), (18518, 'https://ror.org/047pgxk19', 'no_lang_code', 1, 'https://ror.org/047pgxk19 Aswega (Estonia)'), (18519, 'https://ror.org/047t0gj04', 'en', 1, 'https://ror.org/047t0gj04 Friendship College'), (18520, 'https://ror.org/047tbwy41', 'no_lang_code', 1, 'https://ror.org/047tbwy41 Lucid Technologies (United States)'), (18521, 'https://ror.org/047xexk42', 'en', 1, 'https://ror.org/047xexk42 Lorain Public Library System'), (18522, 'https://ror.org/0480v3r94', 'en', 1, 'https://ror.org/0480v3r94 Torrance Memorial Medical Center'), (18523, 'https://ror.org/0481ybd91', 'en', 1, 'https://ror.org/0481ybd91 Jewish Home'), (18524, 'https://ror.org/0485axj58', 'en', 1, 'https://ror.org/0485axj58 University Hospital Southampton NHS Foundation Trust'), (18525, 'https://ror.org/0486dk737', 'en', 1, 'https://ror.org/0486dk737 National Food Chain Safety Office'), (18526, 'https://ror.org/0488q6085', 'it', 1, 'https://ror.org/0488q6085 Ente nazionale italiano di unificazione Italian National Unification'), (18527, 'https://ror.org/048a46z74', 'no_lang_code', 1, 'https://ror.org/048a46z74 Facit Research (Germany)'), (18528, 'https://ror.org/048abfv28', 'en', 1, 'https://ror.org/048abfv28 Federation of European Motorcyclists Associations'), (18529, 'https://ror.org/048b14s48', 'en', 1, 'https://ror.org/048b14s48 Hudson Library and Historical Society'), (18530, 'https://ror.org/048c9kr85', 'no_lang_code', 1, 'https://ror.org/048c9kr85 AXYS Technologies (Canada)'), (18531, 'https://ror.org/048cmes41', 'en', 1, 'https://ror.org/048cmes41 Tempe Union High School District'), (18532, 'https://ror.org/048dpf041', 'no_lang_code', 1, 'https://ror.org/048dpf041 Lucchini (Italy)'), (18533, 'https://ror.org/048gzej48', 'no_lang_code', 1, 'https://ror.org/048gzej48 Lanner Group (United Kingdom)'), (18534, 'https://ror.org/048hrra09', 'no_lang_code', 1, 'https://ror.org/048hrra09 Medicon (United States)'), (18535, 'https://ror.org/048jb8q77', 'en', 1, 'https://ror.org/048jb8q77 Brandywine Counseling & Community Services'), (18536, 'https://ror.org/048kc5t54', 'en', 1, 'https://ror.org/048kc5t54 Faulkner University'), (18537, 'https://ror.org/048kt6872', 'no_lang_code', 1, 'https://ror.org/048kt6872 Amphenol (United Kingdom)'), (18538, 'https://ror.org/048mhm070', 'it', 1, 'https://ror.org/048mhm070 Famiglia Artigiana Fratelli Ruffatti'), (18539, 'https://ror.org/048pz4a95', 'no_lang_code', 1, 'https://ror.org/048pz4a95 Vionyx (United States)'), (18540, 'https://ror.org/048rsxe24', 'en', 1, 'https://ror.org/048rsxe24 Lakeshore Technical College'), (18541, 'https://ror.org/048t7p270', 'fr', 1, 'https://ror.org/048t7p270 GDG Environnement'), (18542, 'https://ror.org/048tfbp61', 'no_lang_code', 1, 'https://ror.org/048tfbp61 MobiLife (United States)'), (18543, 'https://ror.org/048tktj22', 'en', 1, 'https://ror.org/048tktj22 McHenry County College'), (18544, 'https://ror.org/048trsg90', 'no_lang_code', 1, 'https://ror.org/048trsg90 Cambustion (United Kingdom)'), (18545, 'https://ror.org/048vgks49', 'en', 1, 'https://ror.org/048vgks49 Maine Parent Federation'), (18546, 'https://ror.org/048y6cv72', 'no_lang_code', 1, 'https://ror.org/048y6cv72 Advanced Sensor Technologies (United States)'), (18547, 'https://ror.org/048z9aw23', 'en', 1, 'https://ror.org/048z9aw23 Monroe County Historical Museum'), (18548, 'https://ror.org/048zew673', 'no_lang_code', 1, 'https://ror.org/048zew673 Centrotherm Photovoltaics (Germany)'), (18549, 'https://ror.org/049040e46', 'no_lang_code', 1, 'https://ror.org/049040e46 Imaging Biometrics (United States)'), (18550, 'https://ror.org/0491wxq94', 'no_lang_code', 1, 'https://ror.org/0491wxq94 LSVT Global (United States)'), (18551, 'https://ror.org/0492wg980', 'en', 1, 'https://ror.org/0492wg980 Women With A Vision'), (18552, 'https://ror.org/04931ty90', 'en', 1, 'https://ror.org/04931ty90 Detroit Recovery Project'), (18553, 'https://ror.org/04976jw76', 'en', 1, 'https://ror.org/04976jw76 Missouri Department of Elementary and Secondary Education'), (18554, 'https://ror.org/0497jzm12', 'no_lang_code', 1, 'https://ror.org/0497jzm12 Dykema (United States)'), (18555, 'https://ror.org/0498ppz55', 'no_lang_code', 1, 'https://ror.org/0498ppz55 Gel-Del Technologies (United States)'), (18556, 'https://ror.org/04997dd62', 'es', 1, 'https://ror.org/04997dd62 Basque Energy Cluster Cluster de Energía'), (18557, 'https://ror.org/04997nh58', 'en', 1, 'https://ror.org/04997nh58 Center for Health Care Services'), (18558, 'https://ror.org/0499qn039', 'en', 1, 'https://ror.org/0499qn039 Lebanese Agricultural Research Institute'), (18559, 'https://ror.org/0499vqt91', 'no_lang_code', 1, 'https://ror.org/0499vqt91 Globe Water (Sweden)'), (18560, 'https://ror.org/049bcjd44', 'en', 1, 'https://ror.org/049bcjd44 International Transports & Cargo Agency'), (18561, 'https://ror.org/049d2y756', 'no_lang_code', 1, 'https://ror.org/049d2y756 Breyer Group (United Kingdom)'), (18562, 'https://ror.org/049e8me77', 'no_lang_code', 1, 'https://ror.org/049e8me77 Heraeus (United Kingdom)'), (18563, 'https://ror.org/049ecjx61', 'en', 1, 'https://ror.org/049ecjx61 A.V. Shubnikov Institute of Crystallography Федеральное государственное бюджетное учреждение науки Институт кристаллографии им. А.В. Шубникова Российской академии наук'), (18564, 'https://ror.org/049jrjb36', 'no_lang_code', 1, 'https://ror.org/049jrjb36 Treventis (United States)'), (18565, 'https://ror.org/049k1wy83', 'no_lang_code', 1, 'https://ror.org/049k1wy83 Acciai Speciali Terni (Italy)'), (18566, 'https://ror.org/049kpjn93', 'en', 1, 'https://ror.org/049kpjn93 Westlake Porter Public Library'), (18567, 'https://ror.org/049kzbj92', 'en', 1, 'https://ror.org/049kzbj92 Commonwealth Fund'), (18568, 'https://ror.org/049ngdd28', 'no_lang_code', 1, 'https://ror.org/049ngdd28 KPMG (United States)'), (18569, 'https://ror.org/049png478', 'no_lang_code', 1, 'https://ror.org/049png478 Materion (United Kingdom)'), (18570, 'https://ror.org/049px0x49', 'no_lang_code', 1, 'https://ror.org/049px0x49 Dow Chemical (Netherlands)'), (18571, 'https://ror.org/049qtwk65', 'no_lang_code', 1, 'https://ror.org/049qtwk65 Centre de Pyrolyse de Marienau (France)'), (18572, 'https://ror.org/049s5qx48', 'en', 1, 'https://ror.org/049s5qx48 Connecticut State Department of Education'), (18573, 'https://ror.org/049sbzn78', 'en', 1, 'https://ror.org/049sbzn78 Institute of Chemical Engineering Институт по инженерна химия'), (18574, 'https://ror.org/049twep74', 'no_lang_code', 1, 'https://ror.org/049twep74 Lati Industria Termoplastici (Italy)'), (18575, 'https://ror.org/049wsgv73', 'en', 1, 'https://ror.org/049wsgv73 UF Health Shands Rehab Hospital'), (18576, 'https://ror.org/049wyn804', 'no_lang_code', 1, 'https://ror.org/049wyn804 Data Fusion Research Center'), (18577, 'https://ror.org/049x3vp31', 'en', 1, 'https://ror.org/049x3vp31 Tuscaloosa City Schools'), (18578, 'https://ror.org/049xhbc08', 'no_lang_code', 1, 'https://ror.org/049xhbc08 FACET Innovations (United States)'), (18579, 'https://ror.org/049yptc43', 'en', 1, 'https://ror.org/049yptc43 Asian Pacific Partners for Empowerment, Advocacy and Leadership'), (18580, 'https://ror.org/04a007b13', 'no_lang_code', 1, 'https://ror.org/04a007b13 Nissatech Innovation Centre (Serbia)'), (18581, 'https://ror.org/04a0kbv92', 'en', 1, 'https://ror.org/04a0kbv92 West County Health Centers'), (18582, 'https://ror.org/04a1ad523', 'no_lang_code', 1, 'https://ror.org/04a1ad523 I.CO.P (Italy)'), (18583, 'https://ror.org/04a37aq75', 'no_lang_code', 1, 'https://ror.org/04a37aq75 Omnicom Group (United States)'), (18584, 'https://ror.org/04a3jpq51', 'no_lang_code', 1, 'https://ror.org/04a3jpq51 Adaptronica (Poland)'), (18585, 'https://ror.org/04a3nrb88', 'en', 1, 'https://ror.org/04a3nrb88 Institute of Energy Problems of Chemical Physics Федеральное государственное бюджетное учреждение науки Институт энергетических проблем химической физики им. В.Л. Тальрозе Российской академии наук'), (18586, 'https://ror.org/04a46sy91', 'de', 1, 'https://ror.org/04a46sy91 Institut für Automation und Kommunikation'), (18587, 'https://ror.org/04a6kdq42', 'no_lang_code', 1, 'https://ror.org/04a6kdq42 Information Highway Group (Spain)'), (18588, 'https://ror.org/04abnen92', 'fr', 1, 'https://ror.org/04abnen92 Institut National des Sciences et Technologies de la Mer National Institute of Marine Sciences and Technologies'), (18589, 'https://ror.org/04absy687', 'no_lang_code', 1, 'https://ror.org/04absy687 DanTech (United Kingdom)'), (18590, 'https://ror.org/04aby3d05', 'en', 1, 'https://ror.org/04aby3d05 Stretch to Kindergarten'), (18591, 'https://ror.org/04ae0v143', 'no_lang_code', 1, 'https://ror.org/04ae0v143 Delfoi (Finland)'), (18592, 'https://ror.org/04aemx979', 'en', 1, 'https://ror.org/04aemx979 Roots Community Health Center'), (18593, 'https://ror.org/04akkw537', 'no_lang_code', 1, 'https://ror.org/04akkw537 Akira (France)'), (18594, 'https://ror.org/04an1th16', 'en', 1, 'https://ror.org/04an1th16 Computer Professionals for Social Responsibility'), (18595, 'https://ror.org/04anj6w22', 'en', 1, 'https://ror.org/04anj6w22 Federation of Industries of Northern Greece'), (18596, 'https://ror.org/04apkgm45', 'en', 1, 'https://ror.org/04apkgm45 European Jewellery Technology Network'), (18597, 'https://ror.org/04apsy796', 'no_lang_code', 1, 'https://ror.org/04apsy796 BioInVision (United States)'), (18598, 'https://ror.org/04aptxm88', 'en', 1, 'https://ror.org/04aptxm88 International Office for Water Office International de l’Eau Oficina Internacional del Agua'), (18599, 'https://ror.org/04apv5y66', 'en', 1, 'https://ror.org/04apv5y66 Rensselaerville Institute'), (18600, 'https://ror.org/04arpqr50', 'en', 1, 'https://ror.org/04arpqr50 Matanuska-Susitna Borough School District'), (18601, 'https://ror.org/04asmr016', 'en', 1, 'https://ror.org/04asmr016 Bay County Library System'), (18602, 'https://ror.org/04axpdp25', 'no_lang_code', 1, 'https://ror.org/04axpdp25 Sefacor (United States)'), (18603, 'https://ror.org/04axy2g94', 'en', 1, 'https://ror.org/04axy2g94 Euclid Public Library'), (18604, 'https://ror.org/04ay93s32', 'lt', 1, 'https://ror.org/04ay93s32 Aplinkos Apsaugos Agentura Environmental Protection Agency'), (18605, 'https://ror.org/04aza2289', 'no_lang_code', 1, 'https://ror.org/04aza2289 Celoxica (United Kingdom)'), (18606, 'https://ror.org/04b295810', 'fr', 1, 'https://ror.org/04b295810 Fédération Générale du Travail de Belgique General Federation of Belgian Labour'), (18607, 'https://ror.org/04b29ff96', 'no_lang_code', 1, 'https://ror.org/04b29ff96 Energetiq Technology (United States)'), (18608, 'https://ror.org/04b2p2059', 'en', 1, 'https://ror.org/04b2p2059 St. Elizabeth Healthcare'), (18609, 'https://ror.org/04b3zhw41', 'en', 1, 'https://ror.org/04b3zhw41 Kaskaskia College'), (18610, 'https://ror.org/04b4qa207', 'no_lang_code', 1, 'https://ror.org/04b4qa207 ZeptoMetrix (United States)'), (18611, 'https://ror.org/04b699k03', 'no_lang_code', 1, 'https://ror.org/04b699k03 Canatu (Finland)'), (18612, 'https://ror.org/04b6m8j66', 'no_lang_code', 1, 'https://ror.org/04b6m8j66 Goodman Research Group (United States)'), (18613, 'https://ror.org/04b76w231', 'no_lang_code', 1, 'https://ror.org/04b76w231 A.S.Sadykov Institute of Bioorganic Chemistry'), (18614, 'https://ror.org/04b8h1p59', 'en', 1, 'https://ror.org/04b8h1p59 Wave Hill'), (18615, 'https://ror.org/04b8jke36', 'no_lang_code', 1, 'https://ror.org/04b8jke36 enablingMNT (Germany)'), (18616, 'https://ror.org/04bac3z79', 'en', 1, 'https://ror.org/04bac3z79 Shelby County Schools'), (18617, 'https://ror.org/04bd74a48', 'en', 1, 'https://ror.org/04bd74a48 Lake Land College'), (18618, 'https://ror.org/04bdtkb86', 'en', 1, 'https://ror.org/04bdtkb86 Federation of Greek Mariculture'), (18619, 'https://ror.org/04bgs8335', 'en', 1, 'https://ror.org/04bgs8335 Foresight Project'), (18620, 'https://ror.org/04bjh1v02', 'de', 1, 'https://ror.org/04bjh1v02 Business Upper Austria – OÖ Wirtschaftsagentur, OÖ Wirtschaftsagentur GmbH'), (18621, 'https://ror.org/04bkhy554', 'en', 1, 'https://ror.org/04bkhy554 Changzhou No.2 People''s Hospital 常州市第二人民医院'), (18622, 'https://ror.org/04bn6e003', 'no_lang_code', 1, 'https://ror.org/04bn6e003 Medical Indicators (United States)'), (18623, 'https://ror.org/04bq4z840', 'en', 1, 'https://ror.org/04bq4z840 Washington Institute of Dermatologic Laser Surgery'), (18624, 'https://ror.org/04bq7yh11', 'no_lang_code', 1, 'https://ror.org/04bq7yh11 Fujifilm (United Kingdom)'), (18625, 'https://ror.org/04bthcb08', 'en', 1, 'https://ror.org/04bthcb08 La Roche College'), (18626, 'https://ror.org/04btmch86', 'no_lang_code', 1, 'https://ror.org/04btmch86 AccSys Technology (United States)'), (18627, 'https://ror.org/04btmq148', 'en', 1, 'https://ror.org/04btmq148 Transylvania County Schools'), (18628, 'https://ror.org/04bzc6m85', 'no_lang_code', 1, 'https://ror.org/04bzc6m85 Broadley James (United States)'), (18629, 'https://ror.org/04c0z3e83', 'no_lang_code', 1, 'https://ror.org/04c0z3e83 Morgan, Lewis & Bockius (United States)'), (18630, 'https://ror.org/04c1zgk38', 'no_lang_code', 1, 'https://ror.org/04c1zgk38 MAKScientific (United States)'), (18631, 'https://ror.org/04c4tvj54', 'en', 1, 'https://ror.org/04c4tvj54 To Help Everyone Health and Wellness Centers'), (18632, 'https://ror.org/04c4y1k56', 'no_lang_code', 1, 'https://ror.org/04c4y1k56 CoorsTek (United Kingdom)'), (18633, 'https://ror.org/04c6qad64', 'en', 1, 'https://ror.org/04c6qad64 USTA Intermountain Colorado'), (18634, 'https://ror.org/04c8tnm64', 'ca', 1, 'https://ror.org/04c8tnm64 Badalona Serveis Assistencials'), (18635, 'https://ror.org/04c9wtt72', 'no_lang_code', 1, 'https://ror.org/04c9wtt72 MagArray (United States)'), (18636, 'https://ror.org/04ca3hj20', 'no_lang_code', 1, 'https://ror.org/04ca3hj20 Haydale (United Kingdom)'), (18637, 'https://ror.org/04carjf23', 'en', 1, 'https://ror.org/04carjf23 Institute for Sustainability'), (18638, 'https://ror.org/04ccq0223', 'no_lang_code', 1, 'https://ror.org/04ccq0223 Future Carbon (Germany)'), (18639, 'https://ror.org/04cg6c004', 'en', 1, 'https://ror.org/04cg6c004 Academic College of Tel Aviv-Yafo'), (18640, 'https://ror.org/04cgqw370', 'en', 1, 'https://ror.org/04cgqw370 Brearley School'), (18641, 'https://ror.org/04cgwch75', 'no_lang_code', 1, 'https://ror.org/04cgwch75 Bio-Quick (United States)'), (18642, 'https://ror.org/04chs2v90', 'en', 1, 'https://ror.org/04chs2v90 Appalachian College of Pharmacy'), (18643, 'https://ror.org/04cj8sj38', 'no_lang_code', 1, 'https://ror.org/04cj8sj38 Hydrogenics (Belgium)'), (18644, 'https://ror.org/04cnktn59', 'en', 1, 'https://ror.org/04cnktn59 Institute of Animal Reproduction and Food Research'), (18645, 'https://ror.org/04cqe3x57', 'no_lang_code', 1, 'https://ror.org/04cqe3x57 Arctur (Slovenia)'), (18646, 'https://ror.org/04crav288', 'no_lang_code', 1, 'https://ror.org/04crav288 Surgisense'), (18647, 'https://ror.org/04cvatx71', 'no_lang_code', 1, 'https://ror.org/04cvatx71 Elumotion (United Kingdom)'), (18648, 'https://ror.org/04cwntf34', 'en', 1, 'https://ror.org/04cwntf34 Indiana Archives and Records Administration'), (18649, 'https://ror.org/04cx6n327', 'en', 1, 'https://ror.org/04cx6n327 Cornell Scott-Hill Health Center'), (18650, 'https://ror.org/04czczm92', 'no_lang_code', 1, 'https://ror.org/04czczm92 Medes (France)'), (18651, 'https://ror.org/04d06q394', 'no_lang_code', 1, 'https://ror.org/04d06q394 Google (Canada)'), (18652, 'https://ror.org/04d0tnm02', 'no_lang_code', 1, 'https://ror.org/04d0tnm02 Euro Heat Pipes (Belgium)'), (18653, 'https://ror.org/04d3r9p82', 'no_lang_code', 1, 'https://ror.org/04d3r9p82 Becs Technology (United States)'), (18654, 'https://ror.org/04d3zk673', 'no_lang_code', 1, 'https://ror.org/04d3zk673 Faust & Backhaus Environmental Consulting'), (18655, 'https://ror.org/04d534064', 'en', 1, 'https://ror.org/04d534064 Children''s Cancer Connection'), (18656, 'https://ror.org/04d62a771', 'en', 1, 'https://ror.org/04d62a771 Leibniz Institute for Agricultural Engineering and Bioeconomy Leibniz-Institut für Agrartechnik und Bioökonomie'), (18657, 'https://ror.org/04d75wd27', 'en', 1, 'https://ror.org/04d75wd27 Estonian Educational and Research Network'), (18658, 'https://ror.org/04d87y574', 'en', 1, 'https://ror.org/04d87y574 Sydney Children’s Hospitals Network'), (18659, 'https://ror.org/04ddx8z75', 'no_lang_code', 1, 'https://ror.org/04ddx8z75 Codema (Ireland)'), (18660, 'https://ror.org/04dec0k98', 'no_lang_code', 1, 'https://ror.org/04dec0k98 Innovative Research (United States)'), (18661, 'https://ror.org/04dfr9g69', 'no_lang_code', 1, 'https://ror.org/04dfr9g69 KSB (Germany)'), (18662, 'https://ror.org/04dh2y609', 'en', 1, 'https://ror.org/04dh2y609 School of the Art Institute of Chicago École de l''institut d''art de chicago'), (18663, 'https://ror.org/04dhhgk48', 'no_lang_code', 1, 'https://ror.org/04dhhgk48 Nuclea Biotechnologies (United States)'), (18664, 'https://ror.org/04dngsc68', 'no_lang_code', 1, 'https://ror.org/04dngsc68 ALA Scientific Instruments (United States)'), (18665, 'https://ror.org/04dree482', 'en', 1, 'https://ror.org/04dree482 Euro Inter'), (18666, 'https://ror.org/04drxvh51', 'no_lang_code', 1, 'https://ror.org/04drxvh51 Holscot Fluoroplastics (United Kingdom)'), (18667, 'https://ror.org/04dsm0326', 'no_lang_code', 1, 'https://ror.org/04dsm0326 Bioiliberis Research and Development (Spain)'), (18668, 'https://ror.org/04dszkr43', 'no_lang_code', 1, 'https://ror.org/04dszkr43 De Agostini (Italy)'), (18669, 'https://ror.org/04dt1y190', 'no_lang_code', 1, 'https://ror.org/04dt1y190 Claremont BioSolutions (United States)'), (18670, 'https://ror.org/04dv7yp79', 'en', 1, 'https://ror.org/04dv7yp79 Montel Williams MS Foundation'), (18671, 'https://ror.org/04dwtmx31', 'en', 1, 'https://ror.org/04dwtmx31 Career Education Corporation'), (18672, 'https://ror.org/04dxb7m07', 'no_lang_code', 1, 'https://ror.org/04dxb7m07 Bactiguard (Sweden)'), (18673, 'https://ror.org/04dzh1r95', 'en', 1, 'https://ror.org/04dzh1r95 Public School Forum of North Carolina'), (18674, 'https://ror.org/04e3mez11', 'no_lang_code', 1, 'https://ror.org/04e3mez11 Immucor (United States)'), (18675, 'https://ror.org/04e472991', 'no_lang_code', 1, 'https://ror.org/04e472991 HQ-Dielectrics (Germany)'), (18676, 'https://ror.org/04e4qaj02', 'en', 1, 'https://ror.org/04e4qaj02 Central Maine Community College'), (18677, 'https://ror.org/04e5k0n06', 'no_lang_code', 1, 'https://ror.org/04e5k0n06 Civilized Software (United States)'), (18678, 'https://ror.org/04e6e5356', 'en', 1, 'https://ror.org/04e6e5356 Masonry Society'), (18679, 'https://ror.org/04e6s6j73', 'no_lang_code', 1, 'https://ror.org/04e6s6j73 Genotype (Germany)'), (18680, 'https://ror.org/04e86kw41', 'en', 1, 'https://ror.org/04e86kw41 Arizona Youth Partnership'), (18681, 'https://ror.org/04eb8df09', 'no_lang_code', 1, 'https://ror.org/04eb8df09 Orano (United States)'), (18682, 'https://ror.org/04ecbsf74', 'en', 1, 'https://ror.org/04ecbsf74 Westbury Friends School'), (18683, 'https://ror.org/04ecr4902', 'no_lang_code', 1, 'https://ror.org/04ecr4902 Bio S&T (Canada)'), (18684, 'https://ror.org/04ee51h57', 'no_lang_code', 1, 'https://ror.org/04ee51h57 InSightec (Israel)'), (18685, 'https://ror.org/04ef4sc21', 'no_lang_code', 1, 'https://ror.org/04ef4sc21 HT Laser (Finland)'), (18686, 'https://ror.org/04eg2gq66', 'no_lang_code', 1, 'https://ror.org/04eg2gq66 AEC3 (United Kingdom)'), (18687, 'https://ror.org/04eh72y51', 'en', 1, 'https://ror.org/04eh72y51 Weldon City Schools'), (18688, 'https://ror.org/04ehgfn88', 'no_lang_code', 1, 'https://ror.org/04ehgfn88 Arge Vegetationsökologie und Landschaftsplanung'), (18689, 'https://ror.org/04ehq7g28', 'en', 1, 'https://ror.org/04ehq7g28 Clark County School District'), (18690, 'https://ror.org/04ejmve12', 'no_lang_code', 1, 'https://ror.org/04ejmve12 J. J. Keller & Associates (United States)'), (18691, 'https://ror.org/04emmg248', 'en', 1, 'https://ror.org/04emmg248 Tahirih Justice Center'), (18692, 'https://ror.org/04en4ww09', 'en', 1, 'https://ror.org/04en4ww09 Institute for Behavioral Medicine'), (18693, 'https://ror.org/04eqdqx09', 'no_lang_code', 1, 'https://ror.org/04eqdqx09 Smart Monitor (United States)'), (18694, 'https://ror.org/04erezm33', 'no_lang_code', 1, 'https://ror.org/04erezm33 Dompé (Italy)'), (18695, 'https://ror.org/04erj9z09', 'no_lang_code', 1, 'https://ror.org/04erj9z09 Bayessoft (United States)'); INSERT INTO `rors` VALUES (18696, 'https://ror.org/04es3ne34', 'en', 1, 'https://ror.org/04es3ne34 Ministry of Health Ministério da Saúde'), (18697, 'https://ror.org/04esscd53', 'no_lang_code', 1, 'https://ror.org/04esscd53 Amires (Czechia)'), (18698, 'https://ror.org/04ewcb322', 'fr', 1, 'https://ror.org/04ewcb322 Réseau pour la Transition Énergétique'), (18699, 'https://ror.org/04exnj962', 'en', 1, 'https://ror.org/04exnj962 Wig Bank of Caldwell County'), (18700, 'https://ror.org/04eyx5a65', 'en', 1, 'https://ror.org/04eyx5a65 Center for Transboundary Cooperation'), (18701, 'https://ror.org/04ez22252', 'en', 1, 'https://ror.org/04ez22252 International Rehabilitation Forum'), (18702, 'https://ror.org/04ez98579', 'de', 1, 'https://ror.org/04ez98579 GründerRegio M'), (18703, 'https://ror.org/04f085c77', 'no_lang_code', 1, 'https://ror.org/04f085c77 Enco (Italy)'), (18704, 'https://ror.org/04f0jzg23', 'en', 1, 'https://ror.org/04f0jzg23 Wellness House'), (18705, 'https://ror.org/04f1fpz24', 'no_lang_code', 1, 'https://ror.org/04f1fpz24 InTouch (United Kingdom)'), (18706, 'https://ror.org/04f3yc598', 'en', 1, 'https://ror.org/04f3yc598 Lydia Project'), (18707, 'https://ror.org/04f43m378', 'en', 1, 'https://ror.org/04f43m378 Greenhope Services for Women'), (18708, 'https://ror.org/04f6c7j28', 'no_lang_code', 1, 'https://ror.org/04f6c7j28 ESP Central (United Kingdom)'), (18709, 'https://ror.org/04f6xma27', 'no_lang_code', 1, 'https://ror.org/04f6xma27 ClinInfo (France)'), (18710, 'https://ror.org/04f87d812', 'fr', 1, 'https://ror.org/04f87d812 Centre d''Etudes Superieures Industrielles'), (18711, 'https://ror.org/04f9m0784', 'no_lang_code', 1, 'https://ror.org/04f9m0784 LifeSensors (United States)'), (18712, 'https://ror.org/04fax8843', 'no_lang_code', 1, 'https://ror.org/04fax8843 Juice Technology (United Kingdom)'), (18713, 'https://ror.org/04fbd2g40', 'no_lang_code', 1, 'https://ror.org/04fbd2g40 BioNTech (Germany)'), (18714, 'https://ror.org/04fcaga30', 'en', 1, 'https://ror.org/04fcaga30 Jefferson College'), (18715, 'https://ror.org/04fhf9k38', 'no_lang_code', 1, 'https://ror.org/04fhf9k38 Generic Robotics (United Kingdom)'), (18716, 'https://ror.org/04fjz0k13', 'no_lang_code', 1, 'https://ror.org/04fjz0k13 Sicherheit, Informatik und Zentrale Services'), (18717, 'https://ror.org/04fkf4s26', 'no_lang_code', 1, 'https://ror.org/04fkf4s26 Intellijoint Surgical (Canada)'), (18718, 'https://ror.org/04fmn4153', 'en', 1, 'https://ror.org/04fmn4153 Leelanau Historical Society'), (18719, 'https://ror.org/04fmvrn11', 'en', 1, 'https://ror.org/04fmvrn11 Susan Cohan Colon Cancer Foundation'), (18720, 'https://ror.org/04fpakc82', 'en', 1, 'https://ror.org/04fpakc82 Cliff Funnell Associates'), (18721, 'https://ror.org/04fq6zd17', 'en', 1, 'https://ror.org/04fq6zd17 Virginia Hospital Center'), (18722, 'https://ror.org/04ftykp35', 'fr', 1, 'https://ror.org/04ftykp35 Association pour le Developpement de l''Institut de la Viande'), (18723, 'https://ror.org/04fv2f128', 'no_lang_code', 1, 'https://ror.org/04fv2f128 Krejci Engineering (Czechia)'), (18724, 'https://ror.org/04fvsd280', 'en', 1, 'https://ror.org/04fvsd280 Danish Agriculture and Food Council'), (18725, 'https://ror.org/04fwa5r65', 'en', 1, 'https://ror.org/04fwa5r65 Cook Memorial Public Library District'), (18726, 'https://ror.org/04fwrmd76', 'de', 1, 'https://ror.org/04fwrmd76 Gesellschaft zur Förderung angewandter Informatik'), (18727, 'https://ror.org/04fx4e978', 'no_lang_code', 1, 'https://ror.org/04fx4e978 Graybug Vision (United States)'), (18728, 'https://ror.org/04g0yyw61', 'no_lang_code', 1, 'https://ror.org/04g0yyw61 Krones (Germany)'), (18729, 'https://ror.org/04g1y2z78', 'no_lang_code', 1, 'https://ror.org/04g1y2z78 Engineering Arts (United States)'), (18730, 'https://ror.org/04g2pxd54', 'en', 1, 'https://ror.org/04g2pxd54 Chipola College'), (18731, 'https://ror.org/04g42c417', 'en', 1, 'https://ror.org/04g42c417 Perinatal Treatment Services'), (18732, 'https://ror.org/04g47bb58', 'no_lang_code', 1, 'https://ror.org/04g47bb58 Innostart (Hungary) Innostart Nemzeti Üzleti és Innovációs Központ Alapítvány'), (18733, 'https://ror.org/04g544j85', 'no_lang_code', 1, 'https://ror.org/04g544j85 M.A. Turbo Engine (Canada)'), (18734, 'https://ror.org/04g5xjh29', 'en', 1, 'https://ror.org/04g5xjh29 Bangkok Metropolitan Administration'), (18735, 'https://ror.org/04g6csw95', 'no_lang_code', 1, 'https://ror.org/04g6csw95 Holland Renewable Energy Technologies (Netherlands)'), (18736, 'https://ror.org/04g6ht049', 'en', 1, 'https://ror.org/04g6ht049 South Florida Veterans Affairs Foundation for Research and Education'), (18737, 'https://ror.org/04g9a2k03', 'en', 1, 'https://ror.org/04g9a2k03 Community Education Group'), (18738, 'https://ror.org/04g9wby70', 'en', 1, 'https://ror.org/04g9wby70 European Organisation for Research and Treatment of Cancer'), (18739, 'https://ror.org/04gafx689', 'en', 1, 'https://ror.org/04gafx689 Society for the Preservation of Long Island Antiquities'), (18740, 'https://ror.org/04gana571', 'no_lang_code', 1, 'https://ror.org/04gana571 AirBoss Defense (Canada)'), (18741, 'https://ror.org/04gbmxr55', 'en', 1, 'https://ror.org/04gbmxr55 Southerners on New Ground'), (18742, 'https://ror.org/04gbvx157', 'no_lang_code', 1, 'https://ror.org/04gbvx157 Elusys Therapeutics (United States)'), (18743, 'https://ror.org/04gc48f88', 'no_lang_code', 1, 'https://ror.org/04gc48f88 Earthwise Construction (United Kingdom)'), (18744, 'https://ror.org/04gczvb13', 'en', 1, 'https://ror.org/04gczvb13 Illinois Archaeological Survey'), (18745, 'https://ror.org/04ge7a533', 'no_lang_code', 1, 'https://ror.org/04ge7a533 Digital Video (Italy)'), (18746, 'https://ror.org/04gegbz50', 'en', 1, 'https://ror.org/04gegbz50 Bay Medical Center'), (18747, 'https://ror.org/04gehpa59', 'no_lang_code', 1, 'https://ror.org/04gehpa59 Digipolis (Belgium)'), (18748, 'https://ror.org/04gewa138', 'no_lang_code', 1, 'https://ror.org/04gewa138 Evigia Systems (United States)'), (18749, 'https://ror.org/04gfner94', 'en', 1, 'https://ror.org/04gfner94 Green Mountain College'), (18750, 'https://ror.org/04ghttx68', 'en', 1, 'https://ror.org/04ghttx68 Nicholas Conor Institute'), (18751, 'https://ror.org/04gk6e387', 'en', 1, 'https://ror.org/04gk6e387 Forest-based Sector Technology Platform'), (18752, 'https://ror.org/04gkw9q47', 'en', 1, 'https://ror.org/04gkw9q47 Direction Générale Énergie Directorate-General for Energy Generaldirektion der Kommission'), (18753, 'https://ror.org/04gns8903', 'en', 1, 'https://ror.org/04gns8903 Joint Institute for High Temperatures Федеральное государственное бюджетное учреждение науки Институт энергетических исследований Российской академии наук'), (18754, 'https://ror.org/04gxaf668', 'en', 1, 'https://ror.org/04gxaf668 Fevered Sleep'), (18755, 'https://ror.org/04gz57z30', 'en', 1, 'https://ror.org/04gz57z30 Seabrook'), (18756, 'https://ror.org/04gzrkk07', 'en', 1, 'https://ror.org/04gzrkk07 Clay County Archives and Historical Library'), (18757, 'https://ror.org/04h1txa22', 'en', 1, 'https://ror.org/04h1txa22 Pentacle'), (18758, 'https://ror.org/04h4j7e88', 'no_lang_code', 1, 'https://ror.org/04h4j7e88 Critical Systems Labs'), (18759, 'https://ror.org/04h6nb532', 'no_lang_code', 1, 'https://ror.org/04h6nb532 Cyberce (Greece)'), (18760, 'https://ror.org/04h6xfr41', 'no_lang_code', 1, 'https://ror.org/04h6xfr41 77 Elektronika (Hungary)'), (18761, 'https://ror.org/04h71df97', 'no_lang_code', 1, 'https://ror.org/04h71df97 Flentrop Orgelbouw (Netherlands)'), (18762, 'https://ror.org/04h79hz18', 'en', 1, 'https://ror.org/04h79hz18 Chimp Haven'), (18763, 'https://ror.org/04h7d2806', 'no_lang_code', 1, 'https://ror.org/04h7d2806 Betrieb für InformationsTechnologie'), (18764, 'https://ror.org/04h92v005', 'en', 1, 'https://ror.org/04h92v005 Waldo County Healthcare'), (18765, 'https://ror.org/04h9m3j18', 'no_lang_code', 1, 'https://ror.org/04h9m3j18 CIT Energy Management (Sweden)'), (18766, 'https://ror.org/04hayh169', 'no_lang_code', 1, 'https://ror.org/04hayh169 DSI Informationstechnik (Germany)'), (18767, 'https://ror.org/04hb7mq03', 'no_lang_code', 1, 'https://ror.org/04hb7mq03 Accessible Designs (United States)'), (18768, 'https://ror.org/04hf34n81', 'no_lang_code', 1, 'https://ror.org/04hf34n81 AmpTec (Germany)'), (18769, 'https://ror.org/04hf68923', 'en', 1, 'https://ror.org/04hf68923 Bath Labs'), (18770, 'https://ror.org/04hf8j803', 'en', 1, 'https://ror.org/04hf8j803 European Federation of Nurses Associations'), (18771, 'https://ror.org/04hf9rd26', 'en', 1, 'https://ror.org/04hf9rd26 Preble County District Library'), (18772, 'https://ror.org/04hfwsn29', 'no_lang_code', 1, 'https://ror.org/04hfwsn29 Information Today (United States)'), (18773, 'https://ror.org/04hgy0088', 'no_lang_code', 1, 'https://ror.org/04hgy0088 Association of French Motorway Companies'), (18774, 'https://ror.org/04hh2pc08', 'no_lang_code', 1, 'https://ror.org/04hh2pc08 Daat Research (United States)'), (18775, 'https://ror.org/04hhzbh37', 'no_lang_code', 1, 'https://ror.org/04hhzbh37 CertiChem (United States)'), (18776, 'https://ror.org/04hjxdv96', 'no_lang_code', 1, 'https://ror.org/04hjxdv96 Evidence (Italy)'), (18777, 'https://ror.org/04hmk0w62', 'en', 1, 'https://ror.org/04hmk0w62 Kokomo-Howard County Public Library'), (18778, 'https://ror.org/04hnb2h89', 'no_lang_code', 1, 'https://ror.org/04hnb2h89 Vinngroup (Sweden)'), (18779, 'https://ror.org/04hnb7242', 'no_lang_code', 1, 'https://ror.org/04hnb7242 Cognia (United States)'), (18780, 'https://ror.org/04hpt8s23', 'en', 1, 'https://ror.org/04hpt8s23 Supreme Court of Ohio'), (18781, 'https://ror.org/04hq7r724', 'no_lang_code', 1, 'https://ror.org/04hq7r724 INERCO (Spain)'), (18782, 'https://ror.org/04hs88j18', 'en', 1, 'https://ror.org/04hs88j18 Yale Griffin Prevention Research Center'), (18783, 'https://ror.org/04hsde529', 'en', 1, 'https://ror.org/04hsde529 Wisconsin Institute of Nutrition Research Foundation'), (18784, 'https://ror.org/04hsn8391', 'en', 1, 'https://ror.org/04hsn8391 Fairview Health Services'), (18785, 'https://ror.org/04hsqns05', 'no_lang_code', 1, 'https://ror.org/04hsqns05 IPCOS (Belgium)'), (18786, 'https://ror.org/04ht12d51', 'en', 1, 'https://ror.org/04ht12d51 Lunaria Association'), (18787, 'https://ror.org/04hv45e07', 'no_lang_code', 1, 'https://ror.org/04hv45e07 Gedex (Canada)'), (18788, 'https://ror.org/04hvtwq28', 'no_lang_code', 1, 'https://ror.org/04hvtwq28 Inox Pneumatic (Denmark)'), (18789, 'https://ror.org/04hwjfc40', 'en', 1, 'https://ror.org/04hwjfc40 Sapir College המכללה האקדמית ספיר'), (18790, 'https://ror.org/04hypbt36', 'no_lang_code', 1, 'https://ror.org/04hypbt36 BISDN (Germany)'), (18791, 'https://ror.org/04hzk8845', 'en', 1, 'https://ror.org/04hzk8845 Institute of Chemistry'), (18792, 'https://ror.org/04j1e5984', 'no_lang_code', 1, 'https://ror.org/04j1e5984 Magyar Posta'), (18793, 'https://ror.org/04j2j9782', 'en', 1, 'https://ror.org/04j2j9782 Institute of Ideas'), (18794, 'https://ror.org/04j47vk14', 'en', 1, 'https://ror.org/04j47vk14 Austrian Research Institute for Artificial Intelligence Österreichisches Forschungsinstitut für Artificial Intelligence'), (18795, 'https://ror.org/04j58pw68', 'no_lang_code', 1, 'https://ror.org/04j58pw68 Eaker Epidemiology Enterprises (United States)'), (18796, 'https://ror.org/04j62p693', 'en', 1, 'https://ror.org/04j62p693 Department of Geodesy, Remote Sensing and Land Offices Geodézia, Távérzékelés és Földhivatalok Tanszék'), (18797, 'https://ror.org/04j7dyy47', 'en', 1, 'https://ror.org/04j7dyy47 St. Charles Community College'), (18798, 'https://ror.org/04jdd6f04', 'no_lang_code', 1, 'https://ror.org/04jdd6f04 Curtumes Aveneda (Portugal)'), (18799, 'https://ror.org/04je8vh10', 'no_lang_code', 1, 'https://ror.org/04je8vh10 DryScrub (United States)'), (18800, 'https://ror.org/04jfpc645', 'en', 1, 'https://ror.org/04jfpc645 Behavioral Health Network'), (18801, 'https://ror.org/04jfzmb35', 'no_lang_code', 1, 'https://ror.org/04jfzmb35 Biosensia (Ireland)'), (18802, 'https://ror.org/04jgrhh38', 'en', 1, 'https://ror.org/04jgrhh38 United States Government Publishing Office'), (18803, 'https://ror.org/04jh9y258', 'no_lang_code', 1, 'https://ror.org/04jh9y258 Global RNA (United States)'), (18804, 'https://ror.org/04jj71316', 'no_lang_code', 1, 'https://ror.org/04jj71316 Delap & Waller (Ireland)'), (18805, 'https://ror.org/04jjrwe69', 'no_lang_code', 1, 'https://ror.org/04jjrwe69 A E Solutions (United Kingdom)'), (18806, 'https://ror.org/04jmejg35', 'no_lang_code', 1, 'https://ror.org/04jmejg35 Dacord (United Kingdom)'), (18807, 'https://ror.org/04jmj5q32', 'no_lang_code', 1, 'https://ror.org/04jmj5q32 Clarity Biosolutions (United Kingdom)'), (18808, 'https://ror.org/04jna0a58', 'en', 1, 'https://ror.org/04jna0a58 Center for Discovery'), (18809, 'https://ror.org/04jp86b51', 'no_lang_code', 1, 'https://ror.org/04jp86b51 Delta T Devices (United Kingdom)'), (18810, 'https://ror.org/04jpf5f68', 'en', 1, 'https://ror.org/04jpf5f68 CaringFamily'), (18811, 'https://ror.org/04jqbzt84', 'en', 1, 'https://ror.org/04jqbzt84 I.I. Schmalhausen Institute of Zoology Інститут зоології ім. І. І. Шмальгаузена Національної академії наук України'), (18812, 'https://ror.org/04jqmw447', 'en', 1, 'https://ror.org/04jqmw447 Institute of World Economy and International Relations Институт мировой экономики и международных отношений'), (18813, 'https://ror.org/04jr7pd40', 'en', 1, 'https://ror.org/04jr7pd40 Cleveland State Community College'), (18814, 'https://ror.org/04jt2r126', 'no_lang_code', 1, 'https://ror.org/04jt2r126 LaserLeap Technologies (Portugal)'), (18815, 'https://ror.org/04jvb9y72', 'no_lang_code', 1, 'https://ror.org/04jvb9y72 Cellular Research (United States)'), (18816, 'https://ror.org/04jwsnw10', 'en', 1, 'https://ror.org/04jwsnw10 CoxHealth'), (18817, 'https://ror.org/04jyp8093', 'en', 1, 'https://ror.org/04jyp8093 National Healthcare Service Center Állami Egészségügyi Ellátó Központ'), (18818, 'https://ror.org/04jzz3236', 'en', 1, 'https://ror.org/04jzz3236 Victory Christian International Ministries'), (18819, 'https://ror.org/04k2gbm60', 'en', 1, 'https://ror.org/04k2gbm60 Riverkids Pediatric Home Health'), (18820, 'https://ror.org/04k3etn62', 'en', 1, 'https://ror.org/04k3etn62 Vermont Cancer Support Network'), (18821, 'https://ror.org/04k49td77', 'en', 1, 'https://ror.org/04k49td77 Shaw Regional Cancer Center'), (18822, 'https://ror.org/04k57j098', 'en', 1, 'https://ror.org/04k57j098 Health Initiatives for Youth'), (18823, 'https://ror.org/04k6w8620', 'en', 1, 'https://ror.org/04k6w8620 Westside Institute for Science and Education'), (18824, 'https://ror.org/04k7qsz50', 'en', 1, 'https://ror.org/04k7qsz50 Archmere Academy'), (18825, 'https://ror.org/04k7ty438', 'no_lang_code', 1, 'https://ror.org/04k7ty438 Bitecic (United Kingdom)'), (18826, 'https://ror.org/04k8crc02', 'no_lang_code', 1, 'https://ror.org/04k8crc02 Bright Cloud International (United States)'), (18827, 'https://ror.org/04k8qhz96', 'no_lang_code', 1, 'https://ror.org/04k8qhz96 EnginSoft (United Kingdom)'), (18828, 'https://ror.org/04kbxxk13', 'en', 1, 'https://ror.org/04kbxxk13 Research Centre for Applied System Safety and Industrial Medicine'), (18829, 'https://ror.org/04kcbt127', 'no_lang_code', 1, 'https://ror.org/04kcbt127 CEDEO (Italy)'), (18830, 'https://ror.org/04kcn2w48', 'no_lang_code', 1, 'https://ror.org/04kcn2w48 Eisenmann (Germany)'), (18831, 'https://ror.org/04kcnzc28', 'no_lang_code', 1, 'https://ror.org/04kcnzc28 Hanzo Archives (United Kingdom)'), (18832, 'https://ror.org/04kdd0e80', 'no_lang_code', 1, 'https://ror.org/04kdd0e80 Ansys (Canada)'), (18833, 'https://ror.org/04kfyt897', 'en', 1, 'https://ror.org/04kfyt897 Center for Theoretical Physics'), (18834, 'https://ror.org/04kjf4a42', 'no_lang_code', 1, 'https://ror.org/04kjf4a42 Amron (United States)'), (18835, 'https://ror.org/04kkgz961', 'en', 1, 'https://ror.org/04kkgz961 Life Monologue Project'), (18836, 'https://ror.org/04kktsb78', 'en', 1, 'https://ror.org/04kktsb78 Excellence Community Education Welfare Scheme'), (18837, 'https://ror.org/04kn99c11', 'en', 1, 'https://ror.org/04kn99c11 Domus Academy'), (18838, 'https://ror.org/04knh8e66', 'no_lang_code', 1, 'https://ror.org/04knh8e66 Aselsan (Turkey) Askeri Elektronik Sanayi Military Electronic Industries'), (18839, 'https://ror.org/04kp3hw27', 'en', 1, 'https://ror.org/04kp3hw27 Urbana University'), (18840, 'https://ror.org/04kpvds24', 'no_lang_code', 1, 'https://ror.org/04kpvds24 Applied Logic Laboratory (Hungary)'), (18841, 'https://ror.org/04kq9w562', 'en', 1, 'https://ror.org/04kq9w562 JKM Library'), (18842, 'https://ror.org/04ks3jq11', 'no_lang_code', 1, 'https://ror.org/04ks3jq11 HITEK Electronic Materials (United Kingdom)'), (18843, 'https://ror.org/04ksf9y74', 'no_lang_code', 1, 'https://ror.org/04ksf9y74 MEMX (United States)'), (18844, 'https://ror.org/04kte8x98', 'no_lang_code', 1, 'https://ror.org/04kte8x98 Datamed Systems Integration (Greece)'), (18845, 'https://ror.org/04kwq4x05', 'no_lang_code', 1, 'https://ror.org/04kwq4x05 Harmonic Drive (Germany)'), (18846, 'https://ror.org/04kxasy49', 'no_lang_code', 1, 'https://ror.org/04kxasy49 Exide Technologies (France)'), (18847, 'https://ror.org/04kxs9506', 'fr', 1, 'https://ror.org/04kxs9506 Centre de Suivi Ecologique'), (18848, 'https://ror.org/04ky2re88', 'en', 1, 'https://ror.org/04ky2re88 Wesley Theological Seminary'), (18849, 'https://ror.org/04kz5w381', 'en', 1, 'https://ror.org/04kz5w381 Family Health Enterprise'), (18850, 'https://ror.org/04kzfav20', 'no_lang_code', 1, 'https://ror.org/04kzfav20 Alterra Power (Canada)'), (18851, 'https://ror.org/04m41m709', 'no_lang_code', 1, 'https://ror.org/04m41m709 AppliFlex (United States)'), (18852, 'https://ror.org/04m57ab39', 'en', 1, 'https://ror.org/04m57ab39 Austin Travis County Integral Care'), (18853, 'https://ror.org/04m8q0w70', 'no_lang_code', 1, 'https://ror.org/04m8q0w70 BioTransformations (United Kingdom)'), (18854, 'https://ror.org/04mavvr54', 'no_lang_code', 1, 'https://ror.org/04mavvr54 Ergo (Greece)'), (18855, 'https://ror.org/04mb2v544', 'fr', 1, 'https://ror.org/04mb2v544 Institut de recherches économiques et sociales'), (18856, 'https://ror.org/04md9sc62', 'en', 1, 'https://ror.org/04md9sc62 Bienvenidos Children''s Center'), (18857, 'https://ror.org/04mekkj24', 'no_lang_code', 1, 'https://ror.org/04mekkj24 GeoAdvice Engineering (Canada)'), (18858, 'https://ror.org/04mf4f618', 'no_lang_code', 1, 'https://ror.org/04mf4f618 IS Instruments (United Kingdom)'), (18859, 'https://ror.org/04mg5jx38', 'en', 1, 'https://ror.org/04mg5jx38 Dr Williams''s Library'), (18860, 'https://ror.org/04mk6vb04', 'en', 1, 'https://ror.org/04mk6vb04 Southeastern Wisconsin Information Technology Exchange Consortium'), (18861, 'https://ror.org/04mkdzx81', 'en', 1, 'https://ror.org/04mkdzx81 American Bowen Academy'), (18862, 'https://ror.org/04mmdfz16', 'no_lang_code', 1, 'https://ror.org/04mmdfz16 Bio Med Sciences (United States)'), (18863, 'https://ror.org/04mmhym95', 'no_lang_code', 1, 'https://ror.org/04mmhym95 Argans (United Kingdom)'), (18864, 'https://ror.org/04mnq8476', 'en', 1, 'https://ror.org/04mnq8476 Aluminium Valley Société de la Vallée de l''Aluminium'), (18865, 'https://ror.org/04mpq0910', 'no_lang_code', 1, 'https://ror.org/04mpq0910 RTD Services (Austria)'), (18866, 'https://ror.org/04mvbrf96', 'no_lang_code', 1, 'https://ror.org/04mvbrf96 Emissions Reduzierungs Concepte (Germany)'), (18867, 'https://ror.org/04mw34986', 'en', 1, 'https://ror.org/04mw34986 Gloucestershire Hospitals NHS Foundation Trust'), (18868, 'https://ror.org/04mxgrm58', 'no_lang_code', 1, 'https://ror.org/04mxgrm58 Aquamarine Power (United Kingdom)'), (18869, 'https://ror.org/04mya7254', 'no_lang_code', 1, 'https://ror.org/04mya7254 James Kent (United Kingdom)'), (18870, 'https://ror.org/04mzgaa85', 'no_lang_code', 1, 'https://ror.org/04mzgaa85 PCAsso Diagnostics (United States)'), (18871, 'https://ror.org/04mzgvt54', 'en', 1, 'https://ror.org/04mzgvt54 Environmental Research Institute'), (18872, 'https://ror.org/04mzr3655', 'en', 1, 'https://ror.org/04mzr3655 Zibo Vocational Institute'), (18873, 'https://ror.org/04n2fyr96', 'en', 1, 'https://ror.org/04n2fyr96 Presence Saint Joseph Hospital'), (18874, 'https://ror.org/04n30cc76', 'no_lang_code', 1, 'https://ror.org/04n30cc76 Guifi.net'), (18875, 'https://ror.org/04n664s92', 'no_lang_code', 1, 'https://ror.org/04n664s92 BPM (Greece)'), (18876, 'https://ror.org/04n9ds574', 'no_lang_code', 1, 'https://ror.org/04n9ds574 Bridge 129 (Italy)'), (18877, 'https://ror.org/04nb68247', 'no_lang_code', 1, 'https://ror.org/04nb68247 Balcas (United Kingdom)'), (18878, 'https://ror.org/04nb6x947', 'no_lang_code', 1, 'https://ror.org/04nb6x947 Hamamatsu Photonics (United Kingdom)'), (18879, 'https://ror.org/04nfv1e19', 'no_lang_code', 1, 'https://ror.org/04nfv1e19 ALPhANOV (France)'), (18880, 'https://ror.org/04nj1pt13', 'no_lang_code', 1, 'https://ror.org/04nj1pt13 Hybrigenics (France)'), (18881, 'https://ror.org/04nkrm103', 'no_lang_code', 1, 'https://ror.org/04nkrm103 Energrid (Italy)'), (18882, 'https://ror.org/04nmnc538', 'no_lang_code', 1, 'https://ror.org/04nmnc538 FEIG Electronic (Germany)'), (18883, 'https://ror.org/04nmrty73', 'en', 1, 'https://ror.org/04nmrty73 Biblioteca Nazionale Marciana National Library of St Mark'), (18884, 'https://ror.org/04nmzan17', 'en', 1, 'https://ror.org/04nmzan17 Chabot–Las Positas Community College District'), (18885, 'https://ror.org/04np39c31', 'en', 1, 'https://ror.org/04np39c31 Oshkosh Public Library'), (18886, 'https://ror.org/04nt2zc43', 'no_lang_code', 1, 'https://ror.org/04nt2zc43 FIT Biotech (Finland)'), (18887, 'https://ror.org/04nt8wd35', 'en', 1, 'https://ror.org/04nt8wd35 Comhairle Contae Luimnigh Limerick County Council'), (18888, 'https://ror.org/04ntvzq34', 'en', 1, 'https://ror.org/04ntvzq34 Hearing Health Foundation'), (18889, 'https://ror.org/04nvb1488', 'en', 1, 'https://ror.org/04nvb1488 FutureEverything'), (18890, 'https://ror.org/04nvpdc40', 'es', 1, 'https://ror.org/04nvpdc40 Fundación Chile'), (18891, 'https://ror.org/04nwdyy60', 'fr', 1, 'https://ror.org/04nwdyy60 Fidal'), (18892, 'https://ror.org/04nx30h94', 'en', 1, 'https://ror.org/04nx30h94 African Malaria Network Trust'), (18893, 'https://ror.org/04nx63b17', 'fr', 1, 'https://ror.org/04nx63b17 Ministère de l''Économie et des Finances'), (18894, 'https://ror.org/04nxrgp88', 'en', 1, 'https://ror.org/04nxrgp88 South Asian American Digital Archive'), (18895, 'https://ror.org/04ny0re85', 'no_lang_code', 1, 'https://ror.org/04ny0re85 Biopharma Technology (United Kingdom)'), (18896, 'https://ror.org/04nzhmg91', 'en', 1, 'https://ror.org/04nzhmg91 Ministerie van Justitie en Veiligheid Ministry of Security and Justice'), (18897, 'https://ror.org/04p276q92', 'en', 1, 'https://ror.org/04p276q92 ISC Intelligence in Science'), (18898, 'https://ror.org/04p5jrq42', 'no_lang_code', 1, 'https://ror.org/04p5jrq42 Idropan dell’Orto Depuratori (Italy)'), (18899, 'https://ror.org/04p6spd57', 'no_lang_code', 1, 'https://ror.org/04p6spd57 Inbios (Italy)'), (18900, 'https://ror.org/04p89va55', 'no_lang_code', 1, 'https://ror.org/04p89va55 TRW Automotive (France)'), (18901, 'https://ror.org/04p90jr61', 'no_lang_code', 1, 'https://ror.org/04p90jr61 Delphinus Medical Technologies (United States)'), (18902, 'https://ror.org/04pavt865', 'en', 1, 'https://ror.org/04pavt865 Bulgarian Ship Hydrodynamics Centre Български Център по хидро- и аеродинамика'), (18903, 'https://ror.org/04pd0d926', 'no_lang_code', 1, 'https://ror.org/04pd0d926 TumorEnd (United States)'), (18904, 'https://ror.org/04peavn87', 'en', 1, 'https://ror.org/04peavn87 Fund for Global Human Rights'), (18905, 'https://ror.org/04pese132', 'no_lang_code', 1, 'https://ror.org/04pese132 Equipo de Tecnicos en Transporte y Territorio'), (18906, 'https://ror.org/04pfsgw07', 'en', 1, 'https://ror.org/04pfsgw07 Fort Wayne Museum of Art'), (18907, 'https://ror.org/04pg24b43', 'en', 1, 'https://ror.org/04pg24b43 Links Incorporated'), (18908, 'https://ror.org/04pg25v93', 'no_lang_code', 1, 'https://ror.org/04pg25v93 Englekirk (United States)'), (18909, 'https://ror.org/04pgnnw35', 'no_lang_code', 1, 'https://ror.org/04pgnnw35 Darlow Smithson Productions (United Kingdom)'), (18910, 'https://ror.org/04pgtsj35', 'en', 1, 'https://ror.org/04pgtsj35 Hearth'), (18911, 'https://ror.org/04ph1ah53', 'no_lang_code', 1, 'https://ror.org/04ph1ah53 ARES Energiesysteme (Germany)'), (18912, 'https://ror.org/04pjbp005', 'no_lang_code', 1, 'https://ror.org/04pjbp005 Camelot Biomedical Systems (Italy)'), (18913, 'https://ror.org/04pk7g992', 'en', 1, 'https://ror.org/04pk7g992 Dorset Green Technology Park'), (18914, 'https://ror.org/04pkfgh33', 'no_lang_code', 1, 'https://ror.org/04pkfgh33 Tecnicas Cientificas Para Laboratorio (Spain)'), (18915, 'https://ror.org/04png2m53', 'en', 1, 'https://ror.org/04png2m53 Maryland Coalition of Families'), (18916, 'https://ror.org/04pp47x89', 'en', 1, 'https://ror.org/04pp47x89 Evansville Vanderburgh Public Library'), (18917, 'https://ror.org/04pqqac29', 'no_lang_code', 1, 'https://ror.org/04pqqac29 Bac2 (United Kingdom)'), (18918, 'https://ror.org/04prb1696', 'en', 1, 'https://ror.org/04prb1696 Missouri History Museum'), (18919, 'https://ror.org/04pt73775', 'en', 1, 'https://ror.org/04pt73775 Executive Office of Governor'), (18920, 'https://ror.org/04pthvp83', 'no_lang_code', 1, 'https://ror.org/04pthvp83 Henkel (Belgium)'), (18921, 'https://ror.org/04pvq8g37', 'no_lang_code', 1, 'https://ror.org/04pvq8g37 IC Consulenten Ziviltechniker (Austria)'), (18922, 'https://ror.org/04pvwy558', 'en', 1, 'https://ror.org/04pvwy558 Leuven Security Excellence Consortium'), (18923, 'https://ror.org/04pwkqp57', 'en', 1, 'https://ror.org/04pwkqp57 Kansas City Public Library'), (18924, 'https://ror.org/04pwzxj71', 'no_lang_code', 1, 'https://ror.org/04pwzxj71 TVAX Biomedical (United States)'), (18925, 'https://ror.org/04pyzzc05', 'en', 1, 'https://ror.org/04pyzzc05 Bacon Street'), (18926, 'https://ror.org/04pzwwc57', 'no_lang_code', 1, 'https://ror.org/04pzwwc57 General Patent Corporation (United States)'), (18927, 'https://ror.org/04pzyxy68', 'en', 1, 'https://ror.org/04pzyxy68 Lakeshore Museum Center'), (18928, 'https://ror.org/04q0te651', 'en', 1, 'https://ror.org/04q0te651 Society for Research on Nicotine and Tobacco'), (18929, 'https://ror.org/04q2p9044', 'no_lang_code', 1, 'https://ror.org/04q2p9044 MakeBelieve Arts (United Kingdom)'), (18930, 'https://ror.org/04q4pzv93', 'no_lang_code', 1, 'https://ror.org/04q4pzv93 Glottal Enterprises (United States)'), (18931, 'https://ror.org/04q6gmg31', 'en', 1, 'https://ror.org/04q6gmg31 South Central Community Services'), (18932, 'https://ror.org/04q91nm90', 'en', 1, 'https://ror.org/04q91nm90 Wonders and Worries'), (18933, 'https://ror.org/04qaypf21', 'no_lang_code', 1, 'https://ror.org/04qaypf21 Trapeze (United Kingdom)'), (18934, 'https://ror.org/04qd57q23', 'es', 1, 'https://ror.org/04qd57q23 Instituto Tecnológico de la Energía'), (18935, 'https://ror.org/04qf1h664', 'en', 1, 'https://ror.org/04qf1h664 Williams County Public Library'), (18936, 'https://ror.org/04qf21777', 'no_lang_code', 1, 'https://ror.org/04qf21777 Fuchs (United Kingdom)'), (18937, 'https://ror.org/04qh7gr18', 'en', 1, 'https://ror.org/04qh7gr18 South Shore YMCA'), (18938, 'https://ror.org/04qhdw391', 'en', 1, 'https://ror.org/04qhdw391 Beverly Hospital'), (18939, 'https://ror.org/04qjx1736', 'no_lang_code', 1, 'https://ror.org/04qjx1736 Biosensor Applications (Sweden)'), (18940, 'https://ror.org/04qktt137', 'no_lang_code', 1, 'https://ror.org/04qktt137 Bumaga (Netherlands)'), (18941, 'https://ror.org/04qp61r47', 'no_lang_code', 1, 'https://ror.org/04qp61r47 ADRIA Développement'), (18942, 'https://ror.org/04qs86835', 'no_lang_code', 1, 'https://ror.org/04qs86835 Euro Projects (United Kingdom)'), (18943, 'https://ror.org/04qv87944', 'en', 1, 'https://ror.org/04qv87944 Trinity Lutheran Seminary'), (18944, 'https://ror.org/04qw0nt96', 'no_lang_code', 1, 'https://ror.org/04qw0nt96 Immatics Biotechnologies (Germany)'), (18945, 'https://ror.org/04qwevz50', 'en', 1, 'https://ror.org/04qwevz50 Regional Innovation Agency of Central Hungary'), (18946, 'https://ror.org/04qx59376', 'en', 1, 'https://ror.org/04qx59376 Westmont Public Library'), (18947, 'https://ror.org/04qx8er17', 'no_lang_code', 1, 'https://ror.org/04qx8er17 Magnetfabrik Bonn (Germany)'), (18948, 'https://ror.org/04qydbg58', 'no_lang_code', 1, 'https://ror.org/04qydbg58 Arcola Energy (United Kingdom)'), (18949, 'https://ror.org/04r13g438', 'en', 1, 'https://ror.org/04r13g438 Louisiana Federation of Families for Children''s Mental Health'), (18950, 'https://ror.org/04r2khh81', 'no_lang_code', 1, 'https://ror.org/04r2khh81 IVU Traffic Technologies (Germany)'), (18951, 'https://ror.org/04r3h5j56', 'no_lang_code', 1, 'https://ror.org/04r3h5j56 Jowat (Germany)'), (18952, 'https://ror.org/04r49a107', 'en', 1, 'https://ror.org/04r49a107 Southern Illinois Healthcare'), (18953, 'https://ror.org/04r50xh35', 'en', 1, 'https://ror.org/04r50xh35 Palatine Public Library District'), (18954, 'https://ror.org/04r7d8a74', 'no_lang_code', 1, 'https://ror.org/04r7d8a74 Halevi Dweck (Israel)'), (18955, 'https://ror.org/04r837x41', 'en', 1, 'https://ror.org/04r837x41 Institute of Economics'), (18956, 'https://ror.org/04r9xv549', 'no_lang_code', 1, 'https://ror.org/04r9xv549 Conoship International (Netherlands)'), (18957, 'https://ror.org/04rd5j182', 'no_lang_code', 1, 'https://ror.org/04rd5j182 Leeoat (United States)'), (18958, 'https://ror.org/04rfx4365', 'en', 1, 'https://ror.org/04rfx4365 Licking County Alcoholism Prevention Program'), (18959, 'https://ror.org/04rghc237', 'en', 1, 'https://ror.org/04rghc237 Dream of Hattiesburg'), (18960, 'https://ror.org/04rgj3y73', 'en', 1, 'https://ror.org/04rgj3y73 Skokie Public Library'), (18961, 'https://ror.org/04rj91175', 'no_lang_code', 1, 'https://ror.org/04rj91175 Braemar (United Kingdom)'), (18962, 'https://ror.org/04rk35v57', 'no_lang_code', 1, 'https://ror.org/04rk35v57 Colt International (Germany)'), (18963, 'https://ror.org/04rkfpx64', 'en', 1, 'https://ror.org/04rkfpx64 Center for Community Health Education Research and Service'), (18964, 'https://ror.org/04rmmk944', 'no_lang_code', 1, 'https://ror.org/04rmmk944 SV Health Investors (United States)'), (18965, 'https://ror.org/04rpjz321', 'no_lang_code', 1, 'https://ror.org/04rpjz321 Handy Chemicals (Canada)'), (18966, 'https://ror.org/04rpkcv59', 'en', 1, 'https://ror.org/04rpkcv59 Star Center'), (18967, 'https://ror.org/04rt32z32', 'en', 1, 'https://ror.org/04rt32z32 Centre d''Expertise en Traitement et Gestion de l''Eau Centre for Expertise in the Treatment and Management of Water'), (18968, 'https://ror.org/04rtc8031', 'no_lang_code', 1, 'https://ror.org/04rtc8031 WPP (United Kingdom)'), (18969, 'https://ror.org/04rxhfh18', 'en', 1, 'https://ror.org/04rxhfh18 Grosse Pointe Public Library'), (18970, 'https://ror.org/04s0wf777', 'pt', 1, 'https://ror.org/04s0wf777 Empresa Municipal de Mobilidade e Estacionamento de Lisboa'), (18971, 'https://ror.org/04s181d41', 'it', 1, 'https://ror.org/04s181d41 Ev-K2-Cnr'), (18972, 'https://ror.org/04s2jm085', 'en', 1, 'https://ror.org/04s2jm085 Georgian College'), (18973, 'https://ror.org/04s3t0375', 'no_lang_code', 1, 'https://ror.org/04s3t0375 CTVC (United Kingdom)'), (18974, 'https://ror.org/04s4agn64', 'en', 1, 'https://ror.org/04s4agn64 International Brotherhood of Teamsters'), (18975, 'https://ror.org/04s68jp10', 'en', 1, 'https://ror.org/04s68jp10 Gulf Research Center'), (18976, 'https://ror.org/04s7a0g31', 'en', 1, 'https://ror.org/04s7a0g31 Rancho Research Institute'), (18977, 'https://ror.org/04s7djw12', 'en', 1, 'https://ror.org/04s7djw12 Gateway ImpACT Coalition'), (18978, 'https://ror.org/04s84vw78', 'en', 1, 'https://ror.org/04s84vw78 Walton Foundation for Independence'), (18979, 'https://ror.org/04s87ky63', 'en', 1, 'https://ror.org/04s87ky63 A.P. Karpinsky Russian Geological Research Institute Всероссийский научно-исследовательский геологический институт им. А.П. Карпинского'), (18980, 'https://ror.org/04sbqvh08', 'no_lang_code', 1, 'https://ror.org/04sbqvh08 Iberia (Spain)'), (18981, 'https://ror.org/04sd5y079', 'no_lang_code', 1, 'https://ror.org/04sd5y079 LS Plant Breeding (United Kingdom)'), (18982, 'https://ror.org/04sfrpz15', 'en', 1, 'https://ror.org/04sfrpz15 Dairyland Power Cooperative'), (18983, 'https://ror.org/04sgyk254', 'en', 1, 'https://ror.org/04sgyk254 Rochester College'), (18984, 'https://ror.org/04sj6pm22', 'no_lang_code', 1, 'https://ror.org/04sj6pm22 Volkswagen Group (Italy)'), (18985, 'https://ror.org/04sjgrc77', 'no_lang_code', 1, 'https://ror.org/04sjgrc77 Danish Micro Engineering (Denmark)'), (18986, 'https://ror.org/04sm3yz09', 'no_lang_code', 1, 'https://ror.org/04sm3yz09 Marathon Oil (United States)'), (18987, 'https://ror.org/04sn0fx55', 'en', 1, 'https://ror.org/04sn0fx55 Troy Public Library'), (18988, 'https://ror.org/04sp71t37', 'en', 1, 'https://ror.org/04sp71t37 Texans Care for Children'), (18989, 'https://ror.org/04spw3a80', 'en', 1, 'https://ror.org/04spw3a80 Hope Light Foundation'), (18990, 'https://ror.org/04sq8d504', 'no_lang_code', 1, 'https://ror.org/04sq8d504 Cogent Technology (United Kingdom)'), (18991, 'https://ror.org/04sr9sh66', 'en', 1, 'https://ror.org/04sr9sh66 Bartlett Public Library District'), (18992, 'https://ror.org/04ss5f518', 'en', 1, 'https://ror.org/04ss5f518 Studio Museum in Harlem'), (18993, 'https://ror.org/04ss7ct16', 'no_lang_code', 1, 'https://ror.org/04ss7ct16 LLA Instruments (Germany)'), (18994, 'https://ror.org/04stxdv93', 'en', 1, 'https://ror.org/04stxdv93 Jefferson County Library System'), (18995, 'https://ror.org/04svmrs70', 'no_lang_code', 1, 'https://ror.org/04svmrs70 Intercytex (United Kingdom)'), (18996, 'https://ror.org/04swdfh12', 'no_lang_code', 1, 'https://ror.org/04swdfh12 Ericsson (Ireland)'), (18997, 'https://ror.org/04swvpw46', 'no_lang_code', 1, 'https://ror.org/04swvpw46 Ivanhoe Energy (Canada)'), (18998, 'https://ror.org/04sxwc885', 'en', 1, 'https://ror.org/04sxwc885 Super Stars Literacy'), (18999, 'https://ror.org/04syjst69', 'no_lang_code', 1, 'https://ror.org/04syjst69 GALLOP Corporation (United States)'), (19000, 'https://ror.org/04t059p48', 'en', 1, 'https://ror.org/04t059p48 Quinn Community Outreach Corporation'), (19001, 'https://ror.org/04t0e1f58', 'en', 1, 'https://ror.org/04t0e1f58 Wilderness Inquiry'), (19002, 'https://ror.org/04t3kx162', 'no_lang_code', 1, 'https://ror.org/04t3kx162 Danya Institute'), (19003, 'https://ror.org/04t3pzj12', 'en', 1, 'https://ror.org/04t3pzj12 Archdiocese of Chicago'), (19004, 'https://ror.org/04t48m922', 'en', 1, 'https://ror.org/04t48m922 Wisconsin Legislative Reference Bureau'), (19005, 'https://ror.org/04t4e0r52', 'no_lang_code', 1, 'https://ror.org/04t4e0r52 Yamasa Corporation (Japan) ヤマサ醤油'), (19006, 'https://ror.org/04t4pcw17', 'en', 1, 'https://ror.org/04t4pcw17 Astronomical Observatory Astronomická Observatoř Bělehrad'), (19007, 'https://ror.org/04t5w6b17', 'no_lang_code', 1, 'https://ror.org/04t5w6b17 Lavrentyev Institute of Hydrodynamics Федеральное государственное бюджетное учреждение науки Институт гидродинамики им. М.А. Лаврентьева Сибирского отделения Российской академии наук'), (19008, 'https://ror.org/04t70d627', 'ro', 1, 'https://ror.org/04t70d627 Institutul Naţional de Cercetare Dezvoltare pentru Chimie si Petrochimie'), (19009, 'https://ror.org/04t7syk29', 'en', 1, 'https://ror.org/04t7syk29 American Board of Nuclear Medicine'), (19010, 'https://ror.org/04tbkx594', 'en', 1, 'https://ror.org/04tbkx594 European Centre for Executive Development'), (19011, 'https://ror.org/04tf53s67', 'en', 1, 'https://ror.org/04tf53s67 People’s Community Baptist Church'), (19012, 'https://ror.org/04tgdfs98', 'en', 1, 'https://ror.org/04tgdfs98 Sense of Security'), (19013, 'https://ror.org/04thmk358', 'no_lang_code', 1, 'https://ror.org/04thmk358 Kyorin (United States)'), (19014, 'https://ror.org/04tp44r29', 'no_lang_code', 1, 'https://ror.org/04tp44r29 Anton Paar (Austria)'), (19015, 'https://ror.org/04tpfm663', 'no_lang_code', 1, 'https://ror.org/04tpfm663 Aktive Arc (Switzerland)'), (19016, 'https://ror.org/04tqgg260', 'de', 1, 'https://ror.org/04tqgg260 FH Aachen'), (19017, 'https://ror.org/04tqs3t69', 'en', 1, 'https://ror.org/04tqs3t69 Bay College'), (19018, 'https://ror.org/04ts3qa26', 'en', 1, 'https://ror.org/04ts3qa26 China Association of Rural Energy Industry'), (19019, 'https://ror.org/04tsbwh72', 'fr', 1, 'https://ror.org/04tsbwh72 CRÉ de Montréal'), (19020, 'https://ror.org/04tsmgv27', 'en', 1, 'https://ror.org/04tsmgv27 St. Ann''s Episcopal Church'), (19021, 'https://ror.org/04ttjs010', 'en', 1, 'https://ror.org/04ttjs010 Indianapolis Public Schools'), (19022, 'https://ror.org/04ttp1a84', 'en', 1, 'https://ror.org/04ttp1a84 United States Association of Blind Athletes'), (19023, 'https://ror.org/04tv3wg24', 'no_lang_code', 1, 'https://ror.org/04tv3wg24 Henkel (Ireland)'), (19024, 'https://ror.org/04twgwn91', 'en', 1, 'https://ror.org/04twgwn91 The Sherkow Center for Child Development and Autism Spectrum Disorder'), (19025, 'https://ror.org/04twxbp02', 'en', 1, 'https://ror.org/04twxbp02 Centro Ricerche Economico Sociali Economical and Social Research Centre'), (19026, 'https://ror.org/04txhk134', 'en', 1, 'https://ror.org/04txhk134 Eastern University'), (19027, 'https://ror.org/04v074446', 'en', 1, 'https://ror.org/04v074446 Institute of Physical and Organic Chemistry'), (19028, 'https://ror.org/04v13n874', 'no_lang_code', 1, 'https://ror.org/04v13n874 AndroScience (United States)'), (19029, 'https://ror.org/04v1k1t27', 'en', 1, 'https://ror.org/04v1k1t27 Illinois Valley Community College'), (19030, 'https://ror.org/04v1xq350', 'no_lang_code', 1, 'https://ror.org/04v1xq350 SunEdison (Italy)'), (19031, 'https://ror.org/04v3cx114', 'en', 1, 'https://ror.org/04v3cx114 The Beautiful Gate'), (19032, 'https://ror.org/04v4mek61', 'no_lang_code', 1, 'https://ror.org/04v4mek61 Harman Technology (United Kingdom)'), (19033, 'https://ror.org/04v5a5910', 'no_lang_code', 1, 'https://ror.org/04v5a5910 Bruhn NewTech (Denmark)'), (19034, 'https://ror.org/04v76c606', 'en', 1, 'https://ror.org/04v76c606 Community Health Center Association of Mississippi'), (19035, 'https://ror.org/04v8m3m69', 'no_lang_code', 1, 'https://ror.org/04v8m3m69 Enclavix (United States)'), (19036, 'https://ror.org/04v999613', 'en', 1, 'https://ror.org/04v999613 Wingate Institute מכון וינגייט'), (19037, 'https://ror.org/04vafcv05', 'no_lang_code', 1, 'https://ror.org/04vafcv05 AlgaPlus (Portugal)'), (19038, 'https://ror.org/04vam3d04', 'no_lang_code', 1, 'https://ror.org/04vam3d04 Tracon Pharmaceuticals (United States)'), (19039, 'https://ror.org/04vcmzn19', 'no_lang_code', 1, 'https://ror.org/04vcmzn19 Meggitt (Denmark)'), (19040, 'https://ror.org/04veekh32', 'en', 1, 'https://ror.org/04veekh32 Autonomous Undersea Systems Institute'), (19041, 'https://ror.org/04vejaw21', 'en', 1, 'https://ror.org/04vejaw21 Portage County District Library'), (19042, 'https://ror.org/04vfnb935', 'no_lang_code', 1, 'https://ror.org/04vfnb935 Foreco (Netherlands)'), (19043, 'https://ror.org/04vft5g71', 'en', 1, 'https://ror.org/04vft5g71 Ruth Mott Foundation'), (19044, 'https://ror.org/04vkzy908', 'no_lang_code', 1, 'https://ror.org/04vkzy908 GeoVax (United States)'), (19045, 'https://ror.org/04vn0ra85', 'en', 1, 'https://ror.org/04vn0ra85 Vessel Work'), (19046, 'https://ror.org/04vnkt240', 'no_lang_code', 1, 'https://ror.org/04vnkt240 Alexza Pharmaceuticals (United States)'), (19047, 'https://ror.org/04vsqr388', 'no_lang_code', 1, 'https://ror.org/04vsqr388 Deutsche Telekom (Hungary)'), (19048, 'https://ror.org/04vtdnj65', 'no_lang_code', 1, 'https://ror.org/04vtdnj65 Aries Alliance (France)'), (19049, 'https://ror.org/04vv4v570', 'en', 1, 'https://ror.org/04vv4v570 Landmark College'), (19050, 'https://ror.org/04vvcpa15', 'no_lang_code', 1, 'https://ror.org/04vvcpa15 Fiberline Composites (Denmark)'), (19051, 'https://ror.org/04vwqra35', 'no_lang_code', 1, 'https://ror.org/04vwqra35 GF Machining Solutions (Switzerland)'), (19052, 'https://ror.org/04w00xm72', 'en', 1, 'https://ror.org/04w00xm72 Shanghai Municipal Center For Disease Control Prevention 上海市疾病预防控制中心'), (19053, 'https://ror.org/04w12eh87', 'no_lang_code', 1, 'https://ror.org/04w12eh87 Incogna (Canada)'), (19054, 'https://ror.org/04w16j270', 'en', 1, 'https://ror.org/04w16j270 Brooklyn Botanic Garden'), (19055, 'https://ror.org/04w2a0822', 'no_lang_code', 1, 'https://ror.org/04w2a0822 Element Six (Ireland)'), (19056, 'https://ror.org/04w30qj40', 'en', 1, 'https://ror.org/04w30qj40 Free Methodist Church'), (19057, 'https://ror.org/04w3v4n03', 'no_lang_code', 1, 'https://ror.org/04w3v4n03 Biostat (United States)'), (19058, 'https://ror.org/04w4gg556', 'en', 1, 'https://ror.org/04w4gg556 Student Sponsor Partners'), (19059, 'https://ror.org/04w96ag64', 'no_lang_code', 1, 'https://ror.org/04w96ag64 BioSentinel (United States)'), (19060, 'https://ror.org/04wbka248', 'en', 1, 'https://ror.org/04wbka248 International Security & Counter Terrorism Academy'), (19061, 'https://ror.org/04wbxh769', 'en', 1, 'https://ror.org/04wbxh769 Cornwall Council'), (19062, 'https://ror.org/04wck6395', 'no_lang_code', 1, 'https://ror.org/04wck6395 Aegis Rubber Engineering (United Kingdom)'), (19063, 'https://ror.org/04wfr2810', 'en', 1, 'https://ror.org/04wfr2810 European Molecular Biology Organization'), (19064, 'https://ror.org/04wfsv479', 'no_lang_code', 1, 'https://ror.org/04wfsv479 Cisco Systems (United Kingdom)'), (19065, 'https://ror.org/04wg1q828', 'en', 1, 'https://ror.org/04wg1q828 Goalistics'), (19066, 'https://ror.org/04wgs4413', 'en', 1, 'https://ror.org/04wgs4413 Tomorrows Children’s Fund'), (19067, 'https://ror.org/04wkbmw59', 'en', 1, 'https://ror.org/04wkbmw59 Canadian Institute for the Relief of Pain and Disability'), (19068, 'https://ror.org/04wkx5d83', 'en', 1, 'https://ror.org/04wkx5d83 Caribbean Public Health Agency'), (19069, 'https://ror.org/04wmc0p46', 'en', 1, 'https://ror.org/04wmc0p46 Azerbaijan Research Educational Network Association'), (19070, 'https://ror.org/04wmwts90', 'no_lang_code', 1, 'https://ror.org/04wmwts90 Connexor (Finland)'), (19071, 'https://ror.org/04wn64r03', 'en', 1, 'https://ror.org/04wn64r03 Slavic Assistance Center'), (19072, 'https://ror.org/04wpg4c25', 'en', 1, 'https://ror.org/04wpg4c25 The University of Vermont Health Network Home Health & Hospice'), (19073, 'https://ror.org/04wr95t62', 'no_lang_code', 1, 'https://ror.org/04wr95t62 Alpex Technologies'), (19074, 'https://ror.org/04wrzra57', 'en', 1, 'https://ror.org/04wrzra57 Biomedical Engineering Society'), (19075, 'https://ror.org/04wrzsj34', 'no_lang_code', 1, 'https://ror.org/04wrzsj34 Data-Mate (Finland)'), (19076, 'https://ror.org/04wv9b696', 'no_lang_code', 1, 'https://ror.org/04wv9b696 PetsDx Veterinary Imaging (United States)'), (19077, 'https://ror.org/04wzebn39', 'en', 1, 'https://ror.org/04wzebn39 Brown County Public Library'), (19078, 'https://ror.org/04wzsj946', 'en', 1, 'https://ror.org/04wzsj946 Pediatric Brain Tumor Consortium Foundation'), (19079, 'https://ror.org/04x29sy28', 'no_lang_code', 1, 'https://ror.org/04x29sy28 Innovation Strategies (Spain)'), (19080, 'https://ror.org/04x32t337', 'en', 1, 'https://ror.org/04x32t337 London TravelWatch'), (19081, 'https://ror.org/04x4tst13', 'no_lang_code', 1, 'https://ror.org/04x4tst13 Bioprojet (France)'), (19082, 'https://ror.org/04x6q7861', 'it', 1, 'https://ror.org/04x6q7861 ASSTRA - Associazione Trasporti'), (19083, 'https://ror.org/04xbnc005', 'en', 1, 'https://ror.org/04xbnc005 Ben Franklin Technology Partners'), (19084, 'https://ror.org/04xcy4533', 'en', 1, 'https://ror.org/04xcy4533 Eye Cancer Foundation'), (19085, 'https://ror.org/04xfc5120', 'no_lang_code', 1, 'https://ror.org/04xfc5120 Itrust Consulting'), (19086, 'https://ror.org/04xh10z69', 'en', 1, 'https://ror.org/04xh10z69 Cleveland Municipal Court'), (19087, 'https://ror.org/04xhv0r49', 'en', 1, 'https://ror.org/04xhv0r49 Graceland University'), (19088, 'https://ror.org/04xncs852', 'en', 1, 'https://ror.org/04xncs852 Hernando Community Coalition'), (19089, 'https://ror.org/04xqb6e91', 'en', 1, 'https://ror.org/04xqb6e91 Calvary Bible College'), (19090, 'https://ror.org/04xtpdj18', 'en', 1, 'https://ror.org/04xtpdj18 Institute of Mathematical Problems of Biology Институт математических проблем биологии (ИМПБ РАН)'), (19091, 'https://ror.org/04xwa2949', 'no_lang_code', 1, 'https://ror.org/04xwa2949 ForestRe (United Kingdom)'), (19092, 'https://ror.org/04xwjzk13', 'no_lang_code', 1, 'https://ror.org/04xwjzk13 LogControl (Germany)'), (19093, 'https://ror.org/04xx5ce35', 'en', 1, 'https://ror.org/04xx5ce35 Fairfield Hospital'), (19094, 'https://ror.org/04xy11e47', 'fr', 1, 'https://ror.org/04xy11e47 Association Française de Médecine Morpho-Esthétique et anti-âge'), (19095, 'https://ror.org/04xy2mq71', 'en', 1, 'https://ror.org/04xy2mq71 Istituto per la Valorizzazione del Legno e delle Specie Arboree Trees and Timber Institute'), (19096, 'https://ror.org/04xybmk80', 'en', 1, 'https://ror.org/04xybmk80 GS1 Belgium & Luxembourg'), (19097, 'https://ror.org/04y17xm23', 'en', 1, 'https://ror.org/04y17xm23 Southwestern Illinois College'), (19098, 'https://ror.org/04y2v5q05', 'no_lang_code', 1, 'https://ror.org/04y2v5q05 Alcoa (United Kingdom)'), (19099, 'https://ror.org/04y3nvy62', 'no_lang_code', 1, 'https://ror.org/04y3nvy62 Lablogic Systems (United Kingdom)'), (19100, 'https://ror.org/04y419f85', 'tr', 1, 'https://ror.org/04y419f85 Moleküler Biyoloji Derneği'), (19101, 'https://ror.org/04y4a7s50', 'en', 1, 'https://ror.org/04y4a7s50 American Board of Medical Specialties'), (19102, 'https://ror.org/04y4jzv33', 'no_lang_code', 1, 'https://ror.org/04y4jzv33 Aeromics (United States)'), (19103, 'https://ror.org/04y4zad82', 'no_lang_code', 1, 'https://ror.org/04y4zad82 Perma-Fix (United States)'), (19104, 'https://ror.org/04y589z24', 'no_lang_code', 1, 'https://ror.org/04y589z24 3dMD (United Kingdom)'), (19105, 'https://ror.org/04y61qm95', 'en', 1, 'https://ror.org/04y61qm95 University Of Medicine 1 Yangon ဆေးတက္ကသိုလ် ၁ ရန်ကုန်'), (19106, 'https://ror.org/04y7he712', 'no_lang_code', 1, 'https://ror.org/04y7he712 Dacon (Norway)'), (19107, 'https://ror.org/04y80fq57', 'en', 1, 'https://ror.org/04y80fq57 St. Margaret Mary School'), (19108, 'https://ror.org/04yadxf37', 'en', 1, 'https://ror.org/04yadxf37 Ministry of Health'), (19109, 'https://ror.org/04ybbb927', 'no_lang_code', 1, 'https://ror.org/04ybbb927 Beicip Franlab (France)'), (19110, 'https://ror.org/04ybtcs72', 'en', 1, 'https://ror.org/04ybtcs72 Eureka College'), (19111, 'https://ror.org/04ycg6942', 'no_lang_code', 1, 'https://ror.org/04ycg6942 Interporto Bologna (Italy)'), (19112, 'https://ror.org/04yctbp37', 'en', 1, 'https://ror.org/04yctbp37 Czech Centre for Science and Society'), (19113, 'https://ror.org/04yecmt82', 'no_lang_code', 1, 'https://ror.org/04yecmt82 InHand Electronics (United States)'), (19114, 'https://ror.org/04yejes77', 'no_lang_code', 1, 'https://ror.org/04yejes77 A.P.E. Research (Italy)'), (19115, 'https://ror.org/04yga0669', 'no_lang_code', 1, 'https://ror.org/04yga0669 ChromoLogic (United States)'), (19116, 'https://ror.org/04ygec227', 'no_lang_code', 1, 'https://ror.org/04ygec227 Aixtooling (Germany)'), (19117, 'https://ror.org/04yhme281', 'en', 1, 'https://ror.org/04yhme281 Jane Coffin Childs Memorial Fund for Medical Research'), (19118, 'https://ror.org/04yk5j107', 'no_lang_code', 1, 'https://ror.org/04yk5j107 EOX IT Services (Austria)'), (19119, 'https://ror.org/04yk5p402', 'no_lang_code', 1, 'https://ror.org/04yk5p402 TransCure BioServices (Switzerland)'), (19120, 'https://ror.org/04ynpt476', 'no_lang_code', 1, 'https://ror.org/04ynpt476 Aquilus Pharmaceuticals (United States)'), (19121, 'https://ror.org/04ynv8j79', 'en', 1, 'https://ror.org/04ynv8j79 Three Village Garden Club'), (19122, 'https://ror.org/04yqne831', 'es', 1, 'https://ror.org/04yqne831 Confederacion Española De Fabricantes De Alimentos Compuestos Para Animales'), (19123, 'https://ror.org/04yr9v708', 'no_lang_code', 1, 'https://ror.org/04yr9v708 HemoGenix (United States)'), (19124, 'https://ror.org/04yrw5p64', 'no_lang_code', 1, 'https://ror.org/04yrw5p64 MedPharm (United Kingdom)'), (19125, 'https://ror.org/04ytq7468', 'no_lang_code', 1, 'https://ror.org/04ytq7468 Exfo Electro-Optical Engineering (Canada)'), (19126, 'https://ror.org/04ytszy78', 'en', 1, 'https://ror.org/04ytszy78 Wings of Hope Hospice'), (19127, 'https://ror.org/04yvx5a03', 'en', 1, 'https://ror.org/04yvx5a03 WORLD'), (19128, 'https://ror.org/04yw9th96', 'no_lang_code', 1, 'https://ror.org/04yw9th96 Ionic Software (Belgium)'), (19129, 'https://ror.org/04ywd9355', 'en', 1, 'https://ror.org/04ywd9355 EDItEUR'), (19130, 'https://ror.org/04yycxd24', 'no_lang_code', 1, 'https://ror.org/04yycxd24 Honeywell (Romania)'), (19131, 'https://ror.org/04z08rc02', 'no_lang_code', 1, 'https://ror.org/04z08rc02 Iren Acqua Gas (Italy)'), (19132, 'https://ror.org/04z0xef73', 'no_lang_code', 1, 'https://ror.org/04z0xef73 Current Water Technologies (Canada)'), (19133, 'https://ror.org/04z1wkk88', 'no_lang_code', 1, 'https://ror.org/04z1wkk88 Atos (Italy)'), (19134, 'https://ror.org/04z3krz71', 'en', 1, 'https://ror.org/04z3krz71 Unio Recovery Center'), (19135, 'https://ror.org/04z572642', 'en', 1, 'https://ror.org/04z572642 Centre International de Hautes Etudes Agronomiques Méditerranéennes International Centre for Advanced Mediterranean Agronomic Studies'), (19136, 'https://ror.org/04z5qbc60', 'no_lang_code', 1, 'https://ror.org/04z5qbc60 InterSystems (United States)'), (19137, 'https://ror.org/04z7a1k12', 'en', 1, 'https://ror.org/04z7a1k12 Family Support Network'), (19138, 'https://ror.org/04za13042', 'no_lang_code', 1, 'https://ror.org/04za13042 GL Chemtec International (Canada)'), (19139, 'https://ror.org/04zagqw70', 'en', 1, 'https://ror.org/04zagqw70 Plymouth Historical Museum'); INSERT INTO `rors` VALUES (19140, 'https://ror.org/04zatss13', 'no_lang_code', 1, 'https://ror.org/04zatss13 Eastern Analytical (United States)'), (19141, 'https://ror.org/04zb7yk64', 'no_lang_code', 1, 'https://ror.org/04zb7yk64 Ardaco (Slovakia)'), (19142, 'https://ror.org/04zc40243', 'en', 1, 'https://ror.org/04zc40243 Instituto Nacional de Medicina National Legal Medicine Institute'), (19143, 'https://ror.org/04zd61g23', 'en', 1, 'https://ror.org/04zd61g23 The Urbana Free Library'), (19144, 'https://ror.org/04zfyj091', 'no_lang_code', 1, 'https://ror.org/04zfyj091 McMillan and Moss Research'), (19145, 'https://ror.org/04zg0fn89', 'en', 1, 'https://ror.org/04zg0fn89 Sierra Nevada Memorial Hospital Foundation'), (19146, 'https://ror.org/04zj5m910', 'no_lang_code', 1, 'https://ror.org/04zj5m910 Actalia (France)'), (19147, 'https://ror.org/04zjxe411', 'en', 1, 'https://ror.org/04zjxe411 Detroit Public Library'), (19148, 'https://ror.org/04zmm8y38', 'en', 1, 'https://ror.org/04zmm8y38 Central Methodist University'), (19149, 'https://ror.org/04zp06k22', 'en', 1, 'https://ror.org/04zp06k22 Statewide California Electronic Library Consortium'), (19150, 'https://ror.org/04zp3vy09', 'en', 1, 'https://ror.org/04zp3vy09 Temple Missionary Baptist Church'), (19151, 'https://ror.org/04zpv5q97', 'en', 1, 'https://ror.org/04zpv5q97 Stockholm Environment Institute Säästva Eesti Instituut, Stockholmi Keskkonnainstituudi Tallinna Keskus'), (19152, 'https://ror.org/04zr95r14', 'it', 1, 'https://ror.org/04zr95r14 Centro Italiano Materiali di Applicazione Calzaturiera'), (19153, 'https://ror.org/04zssq864', 'no_lang_code', 1, 'https://ror.org/04zssq864 K&S Projektmanagement (Germany)'), (19154, 'https://ror.org/04ztqy570', 'en', 1, 'https://ror.org/04ztqy570 Sacramento VA Medical Center'), (19155, 'https://ror.org/04zxtsh93', 'en', 1, 'https://ror.org/04zxtsh93 Wichita Clinic'), (19156, 'https://ror.org/04zy24864', 'en', 1, 'https://ror.org/04zy24864 Institute of Thermophysics Федеральное государственное бюджетное учреждение науки Институт теплофизики Уральского отделения Российской академии наук'), (19157, 'https://ror.org/04zyghr89', 'en', 1, 'https://ror.org/04zyghr89 Pension Benefit Guaranty Corporation'), (19158, 'https://ror.org/04zym2g32', 'no_lang_code', 1, 'https://ror.org/04zym2g32 Lightpoint Medical (United Kingdom)'), (19159, 'https://ror.org/04zzepa29', 'en', 1, 'https://ror.org/04zzepa29 Shriners Hospitals for Children - Salt Lake City'), (19160, 'https://ror.org/0500fyd17', 'no_lang_code', 1, 'https://ror.org/0500fyd17 Huawei Technologies (Sweden)'), (19161, 'https://ror.org/0500x9g47', 'no_lang_code', 1, 'https://ror.org/0500x9g47 Senergy (United Kingdom)'), (19162, 'https://ror.org/0502g5y81', 'no_lang_code', 1, 'https://ror.org/0502g5y81 Endomag (United Kingdom)'), (19163, 'https://ror.org/0503ft796', 'no_lang_code', 1, 'https://ror.org/0503ft796 Castrol (United Kingdom)'), (19164, 'https://ror.org/050473r14', 'no_lang_code', 1, 'https://ror.org/050473r14 Spectrum Pharmaceuticals (United States)'), (19165, 'https://ror.org/0504a7h38', 'en', 1, 'https://ror.org/0504a7h38 Baltic Energy Conservation Agency'), (19166, 'https://ror.org/0504r6d12', 'en', 1, 'https://ror.org/0504r6d12 ASTER Aster, la station de vulgarisation et de loisirs scientifiques du Bas-Saint-Laurent'), (19167, 'https://ror.org/0504yp647', 'no_lang_code', 1, 'https://ror.org/0504yp647 Materials Solutions (United Kingdom)'), (19168, 'https://ror.org/05051a828', 'en', 1, 'https://ror.org/05051a828 Asian Community Mental Health Services'), (19169, 'https://ror.org/0505c0p37', 'no_lang_code', 1, 'https://ror.org/0505c0p37 Icometrix (Belgium)'), (19170, 'https://ror.org/0505c3j52', 'no_lang_code', 1, 'https://ror.org/0505c3j52 Sabinet (South Africa)'), (19171, 'https://ror.org/0506wz312', 'no_lang_code', 1, 'https://ror.org/0506wz312 AER Group (United States)'), (19172, 'https://ror.org/0507a9w72', 'en', 1, 'https://ror.org/0507a9w72 Brown Mackie College'), (19173, 'https://ror.org/050bkn381', 'no_lang_code', 1, 'https://ror.org/050bkn381 Interoud Innovation (Spain)'), (19174, 'https://ror.org/050bz3f23', 'en', 1, 'https://ror.org/050bz3f23 Wake County Human Services'), (19175, 'https://ror.org/050cc0966', 'en', 1, 'https://ror.org/050cc0966 Sanford Children''s Specialty Clinic'), (19176, 'https://ror.org/050d44380', 'en', 1, 'https://ror.org/050d44380 Life Science Association of Manitoba'), (19177, 'https://ror.org/050g4m073', 'no_lang_code', 1, 'https://ror.org/050g4m073 Crest Nicholson (United Kingdom)'), (19178, 'https://ror.org/050hz4v21', 'no_lang_code', 1, 'https://ror.org/050hz4v21 A2Dominion'), (19179, 'https://ror.org/050k5ft87', 'en', 1, 'https://ror.org/050k5ft87 Mars Hill University'), (19180, 'https://ror.org/050kt0y53', 'no_lang_code', 1, 'https://ror.org/050kt0y53 Citrix (United Kingdom)'), (19181, 'https://ror.org/050pc9c24', 'no_lang_code', 1, 'https://ror.org/050pc9c24 Kistler (Switzerland)'), (19182, 'https://ror.org/050pmr719', 'en', 1, 'https://ror.org/050pmr719 European Patent Organisation Europäische Patentorganisation'), (19183, 'https://ror.org/050rdvn58', 'en', 1, 'https://ror.org/050rdvn58 Philippine Heart Center'), (19184, 'https://ror.org/050rfr085', 'de', 1, 'https://ror.org/050rfr085 Bayerisches Landesamt für Denkmalpflege'), (19185, 'https://ror.org/050rqx152', 'en', 1, 'https://ror.org/050rqx152 Confederation of Organisations in Road Transport Enforcement'), (19186, 'https://ror.org/050sbwe70', 'no_lang_code', 1, 'https://ror.org/050sbwe70 Romus (Spain)'), (19187, 'https://ror.org/050t3rs25', 'no_lang_code', 1, 'https://ror.org/050t3rs25 HireGround (Canada)'), (19188, 'https://ror.org/0510q5f30', 'no_lang_code', 1, 'https://ror.org/0510q5f30 European Multimedia Forum (United Kingdom)'), (19189, 'https://ror.org/0510trc57', 'en', 1, 'https://ror.org/0510trc57 Lake Michigan College'), (19190, 'https://ror.org/0511egv62', 'no_lang_code', 1, 'https://ror.org/0511egv62 Viamet Pharmaceuticals (United States)'), (19191, 'https://ror.org/0512c6n60', 'no_lang_code', 1, 'https://ror.org/0512c6n60 Advent Technologies (Greece)'), (19192, 'https://ror.org/05135fy66', 'no_lang_code', 1, 'https://ror.org/05135fy66 Black & Veatch (United Kingdom)'), (19193, 'https://ror.org/05150xp52', 'fr', 1, 'https://ror.org/05150xp52 Association Nationale de Parents d''Enfants Déficients Auditifs'), (19194, 'https://ror.org/0515z7d79', 'no_lang_code', 1, 'https://ror.org/0515z7d79 IGE Therapeutics (United States)'), (19195, 'https://ror.org/051659894', 'no_lang_code', 1, 'https://ror.org/051659894 BP (United States)'), (19196, 'https://ror.org/05168x816', 'no_lang_code', 1, 'https://ror.org/05168x816 Biocrates Life Sciences (Austria)'), (19197, 'https://ror.org/0516c4k86', 'en', 1, 'https://ror.org/0516c4k86 Union Hospital'), (19198, 'https://ror.org/05177zd25', 'no_lang_code', 1, 'https://ror.org/05177zd25 Fenix TNT (Czechia)'), (19199, 'https://ror.org/051940627', 'en', 1, 'https://ror.org/051940627 Wright Memorial Public Library'), (19200, 'https://ror.org/0519yw032', 'en', 1, 'https://ror.org/0519yw032 EcoSpark'), (19201, 'https://ror.org/051a9ap09', 'no_lang_code', 1, 'https://ror.org/051a9ap09 Bibliotheca Alexandrina Center for Documentation of Cultural and Natural Heritage مكتبة الإسكندرية'), (19202, 'https://ror.org/051aeqp85', 'en', 1, 'https://ror.org/051aeqp85 Mississippi Department of Education'), (19203, 'https://ror.org/051b3zp86', 'en', 1, 'https://ror.org/051b3zp86 Academy of Entrepreneurship'), (19204, 'https://ror.org/051bvnz41', 'en', 1, 'https://ror.org/051bvnz41 Children''s Treehouse Foundation'), (19205, 'https://ror.org/051c1hy38', 'no_lang_code', 1, 'https://ror.org/051c1hy38 Avecom (Belgium)'), (19206, 'https://ror.org/051g2vd56', 'no_lang_code', 1, 'https://ror.org/051g2vd56 Lehigh Hanson (Canada)'), (19207, 'https://ror.org/051h5at53', 'en', 1, 'https://ror.org/051h5at53 Marathon County Public Library'), (19208, 'https://ror.org/051hpv692', 'en', 1, 'https://ror.org/051hpv692 CSIRO Publishing'), (19209, 'https://ror.org/051jp6337', 'en', 1, 'https://ror.org/051jp6337 Impression 5 Science Center'), (19210, 'https://ror.org/051npad76', 'en', 1, 'https://ror.org/051npad76 Institute for Economic Research on Firms and Growth Istituto di Ricerca sull''Impresa e lo Sviluppo'), (19211, 'https://ror.org/051p1yx12', 'no_lang_code', 1, 'https://ror.org/051p1yx12 Egetaepper (Denmark)'), (19212, 'https://ror.org/051qkf035', 'no_lang_code', 1, 'https://ror.org/051qkf035 Constellation Technology (United States)'), (19213, 'https://ror.org/051tq1j63', 'en', 1, 'https://ror.org/051tq1j63 Elmhurst History Museum'), (19214, 'https://ror.org/051v7cd19', 'en', 1, 'https://ror.org/051v7cd19 Belmont College'), (19215, 'https://ror.org/051w1mx35', 'no_lang_code', 1, 'https://ror.org/051w1mx35 Thales (Portugal)'), (19216, 'https://ror.org/051xf7e84', 'en', 1, 'https://ror.org/051xf7e84 Gloucestershire County Council'), (19217, 'https://ror.org/051yn8276', 'en', 1, 'https://ror.org/051yn8276 Women''s Oncology Research and Dialogue'), (19218, 'https://ror.org/05206wn55', 'no_lang_code', 1, 'https://ror.org/05206wn55 Aspen Systems (United States)'), (19219, 'https://ror.org/0520ezd47', 'no_lang_code', 1, 'https://ror.org/0520ezd47 Esys (United Kingdom)'), (19220, 'https://ror.org/0520p3z27', 'en', 1, 'https://ror.org/0520p3z27 Rainbow Hospice and Palliative Care'), (19221, 'https://ror.org/05223j896', 'en', 1, 'https://ror.org/05223j896 Daniel Drake Center'), (19222, 'https://ror.org/0522v1289', 'it', 1, 'https://ror.org/0522v1289 Museo Nazionale della Scienza e della Tecnologia Leonardo da Vinci'), (19223, 'https://ror.org/0523sbv14', 'en', 1, 'https://ror.org/0523sbv14 Open Source Science Project'), (19224, 'https://ror.org/0524j0t30', 'en', 1, 'https://ror.org/0524j0t30 National Federation of Families for Children''s Mental Health'), (19225, 'https://ror.org/052567m16', 'no_lang_code', 1, 'https://ror.org/052567m16 Amorim Cork Composites (Portugal)'), (19226, 'https://ror.org/0525npv05', 'no_lang_code', 1, 'https://ror.org/0525npv05 Dr Matzat & Co (Germany)'), (19227, 'https://ror.org/05262hj55', 'en', 1, 'https://ror.org/05262hj55 RCAP Solutions'), (19228, 'https://ror.org/05269ja13', 'no_lang_code', 1, 'https://ror.org/05269ja13 Advanced Laser Technology (United Kingdom)'), (19229, 'https://ror.org/052811a42', 'en', 1, 'https://ror.org/052811a42 Canadian Meteorological and Oceanographic Society La Société canadienne de météorologie et d''océanographie'), (19230, 'https://ror.org/052ahwq68', 'en', 1, 'https://ror.org/052ahwq68 Muskegon Area District Library'), (19231, 'https://ror.org/052b68304', 'no_lang_code', 1, 'https://ror.org/052b68304 Magna Parva (United Kingdom)'), (19232, 'https://ror.org/052bszm02', 'en', 1, 'https://ror.org/052bszm02 Culex Environmental'), (19233, 'https://ror.org/052c3cf27', 'no_lang_code', 1, 'https://ror.org/052c3cf27 Oceaneering International (United Kingdom)'), (19234, 'https://ror.org/052dkve29', 'no_lang_code', 1, 'https://ror.org/052dkve29 Biomedical Enterprises (United States)'), (19235, 'https://ror.org/052eb7a13', 'en', 1, 'https://ror.org/052eb7a13 European Membrane House'), (19236, 'https://ror.org/052hb4r33', 'no_lang_code', 1, 'https://ror.org/052hb4r33 EnerTech (United States)'), (19237, 'https://ror.org/052j1gk85', 'en', 1, 'https://ror.org/052j1gk85 Milwaukee Public Library'), (19238, 'https://ror.org/052jw4t43', 'no_lang_code', 1, 'https://ror.org/052jw4t43 M Wright and Sons (United Kingdom)'), (19239, 'https://ror.org/052kwn289', 'no_lang_code', 1, 'https://ror.org/052kwn289 Avantium (Netherlands)'), (19240, 'https://ror.org/052qpep46', 'en', 1, 'https://ror.org/052qpep46 Michigan History Center'), (19241, 'https://ror.org/052r5gz16', 'en', 1, 'https://ror.org/052r5gz16 People''s Clinic of Morehead'), (19242, 'https://ror.org/052tawh47', 'en', 1, 'https://ror.org/052tawh47 Wallace-Kettering Neuroscience Institute'), (19243, 'https://ror.org/052v6gh58', 'no_lang_code', 1, 'https://ror.org/052v6gh58 Integrated Micro Sensors (United States)'), (19244, 'https://ror.org/052vb0z63', 'no_lang_code', 1, 'https://ror.org/052vb0z63 Tokyo Electron (Ireland)'), (19245, 'https://ror.org/052w1b871', 'no_lang_code', 1, 'https://ror.org/052w1b871 Bellicum Pharmaceuticals (United States)'), (19246, 'https://ror.org/052z4yp15', 'no_lang_code', 1, 'https://ror.org/052z4yp15 BioActor (Netherlands)'), (19247, 'https://ror.org/0531gz477', 'en', 1, 'https://ror.org/0531gz477 University Settlement'), (19248, 'https://ror.org/0531hmb77', 'en', 1, 'https://ror.org/0531hmb77 Behavioral Tech'), (19249, 'https://ror.org/05320rs34', 'en', 1, 'https://ror.org/05320rs34 Applied Information Management Institute'), (19250, 'https://ror.org/05335sh79', 'en', 1, 'https://ror.org/05335sh79 Office of Juvenile Justice and Delinquency Prevention'), (19251, 'https://ror.org/0533m8w24', 'no_lang_code', 1, 'https://ror.org/0533m8w24 Advanced Simulation & Design (Germany)'), (19252, 'https://ror.org/0533xsy32', 'no_lang_code', 1, 'https://ror.org/0533xsy32 Computercraft (United States)'), (19253, 'https://ror.org/053833993', 'en', 1, 'https://ror.org/053833993 Institute of Optical Materials and Technologies Jordan Malinowski Институт по оптически материали и технологии “Акад. Йордан Малиновски”'), (19254, 'https://ror.org/053aamg33', 'no_lang_code', 1, 'https://ror.org/053aamg33 Flying-Cam (Belgium)'), (19255, 'https://ror.org/053dpzm93', 'pt', 1, 'https://ror.org/053dpzm93 Lusa Agência de Notícias de Portugal'), (19256, 'https://ror.org/053g97n06', 'en', 1, 'https://ror.org/053g97n06 European Genetic Alliances Network'), (19257, 'https://ror.org/053hexc75', 'no_lang_code', 1, 'https://ror.org/053hexc75 CS Communication & Systèmes (France)'), (19258, 'https://ror.org/053jctp32', 'no_lang_code', 1, 'https://ror.org/053jctp32 Green Biologics (United Kingdom)'), (19259, 'https://ror.org/053mpbz30', 'en', 1, 'https://ror.org/053mpbz30 Association of Research Libraries'), (19260, 'https://ror.org/053n5f413', 'en', 1, 'https://ror.org/053n5f413 Walnut Creek Hearing Aid Center'), (19261, 'https://ror.org/053n8rm70', 'en', 1, 'https://ror.org/053n8rm70 European Patients Forum'), (19262, 'https://ror.org/053nwxy06', 'en', 1, 'https://ror.org/053nwxy06 Los Angeles County Arboretum and Botanic Garden'), (19263, 'https://ror.org/053pbpj30', 'en', 1, 'https://ror.org/053pbpj30 American Veterinary Medical Association'), (19264, 'https://ror.org/053pt1j04', 'no_lang_code', 1, 'https://ror.org/053pt1j04 Hugin Expert (Denmark)'), (19265, 'https://ror.org/053q7dc62', 'en', 1, 'https://ror.org/053q7dc62 Shanta Foundation'), (19266, 'https://ror.org/053qa4s13', 'it', 1, 'https://ror.org/053qa4s13 Camera di Commercio di Firenze Florence International Mediation Chamber'), (19267, 'https://ror.org/053qf6056', 'no_lang_code', 1, 'https://ror.org/053qf6056 Ingenico (France)'), (19268, 'https://ror.org/053sbf336', 'en', 1, 'https://ror.org/053sbf336 Grand Rapids Public Library'), (19269, 'https://ror.org/053sja846', 'en', 1, 'https://ror.org/053sja846 Susan G Komen Arkansas'), (19270, 'https://ror.org/053swdh51', 'no_lang_code', 1, 'https://ror.org/053swdh51 ADIRA (Portugal)'), (19271, 'https://ror.org/053t4zs10', 'no_lang_code', 1, 'https://ror.org/053t4zs10 Bunnell (United States)'), (19272, 'https://ror.org/053tcf519', 'no_lang_code', 1, 'https://ror.org/053tcf519 Innopole (Spain)'), (19273, 'https://ror.org/053txhk38', 'no_lang_code', 1, 'https://ror.org/053txhk38 BroadBit (Slovakia)'), (19274, 'https://ror.org/053vrw097', 'no_lang_code', 1, 'https://ror.org/053vrw097 Incogen (United States)'), (19275, 'https://ror.org/053y7vn39', 'no_lang_code', 1, 'https://ror.org/053y7vn39 European Dynamics (Greece)'), (19276, 'https://ror.org/05406m268', 'no_lang_code', 1, 'https://ror.org/05406m268 Applied DNA Sciences (United States)'), (19277, 'https://ror.org/0546cha72', 'no_lang_code', 1, 'https://ror.org/0546cha72 Agoria (Belgium)'), (19278, 'https://ror.org/05488qq19', 'en', 1, 'https://ror.org/05488qq19 Highland County District Library'), (19279, 'https://ror.org/0549xxn78', 'no_lang_code', 1, 'https://ror.org/0549xxn78 Rusal (Ireland) РУСАЛ'), (19280, 'https://ror.org/054bssx30', 'en', 1, 'https://ror.org/054bssx30 Cincinnati Public Schools'), (19281, 'https://ror.org/054c8sq43', 'en', 1, 'https://ror.org/054c8sq43 Warren Clinic'), (19282, 'https://ror.org/054ckmy78', 'no_lang_code', 1, 'https://ror.org/054ckmy78 Cap Eiger (Spain)'), (19283, 'https://ror.org/054exvb85', 'en', 1, 'https://ror.org/054exvb85 British Nutrition Foundation'), (19284, 'https://ror.org/054gder17', 'en', 1, 'https://ror.org/054gder17 Elephant Thoughts'), (19285, 'https://ror.org/054gj9d11', 'no_lang_code', 1, 'https://ror.org/054gj9d11 Bay Glass (United States)'), (19286, 'https://ror.org/054h7rn92', 'en', 1, 'https://ror.org/054h7rn92 Arc of High Point'), (19287, 'https://ror.org/054hm6j14', 'en', 1, 'https://ror.org/054hm6j14 Vollum Institute'), (19288, 'https://ror.org/054hp8k77', 'no_lang_code', 1, 'https://ror.org/054hp8k77 Informed Horizons Education (United States)'), (19289, 'https://ror.org/054hpzj06', 'no_lang_code', 1, 'https://ror.org/054hpzj06 Infinium (United States)'), (19290, 'https://ror.org/054hr5a68', 'en', 1, 'https://ror.org/054hr5a68 Greg Foundation'), (19291, 'https://ror.org/054hsde96', 'no_lang_code', 1, 'https://ror.org/054hsde96 Gesellschaft für Technologieförderung Itzehoe'), (19292, 'https://ror.org/054j6z281', 'en', 1, 'https://ror.org/054j6z281 Integrity House'), (19293, 'https://ror.org/054nctx58', 'no_lang_code', 1, 'https://ror.org/054nctx58 Cenex (United Kingdom)'), (19294, 'https://ror.org/054rms077', 'no_lang_code', 1, 'https://ror.org/054rms077 Innegra Technologies (United States)'), (19295, 'https://ror.org/054sw3365', 'en', 1, 'https://ror.org/054sw3365 GIS - Transfer Center Foundation'), (19296, 'https://ror.org/054tjx319', 'en', 1, 'https://ror.org/054tjx319 Tree House Humane Society'), (19297, 'https://ror.org/054w4h840', 'no_lang_code', 1, 'https://ror.org/054w4h840 Enig Associates (United States)'), (19298, 'https://ror.org/054x1vp63', 'en', 1, 'https://ror.org/054x1vp63 International Primatological Society'), (19299, 'https://ror.org/054x53k79', 'no_lang_code', 1, 'https://ror.org/054x53k79 Fluid Operations (Germany)'), (19300, 'https://ror.org/054xwps40', 'no_lang_code', 1, 'https://ror.org/054xwps40 Axsym (United Kingdom)'), (19301, 'https://ror.org/054xyc945', 'no_lang_code', 1, 'https://ror.org/054xyc945 Pharmaxis (Australia)'), (19302, 'https://ror.org/054y4pt02', 'no_lang_code', 1, 'https://ror.org/054y4pt02 Harineras Villamayor (Spain)'), (19303, 'https://ror.org/054ykvg32', 'no_lang_code', 1, 'https://ror.org/054ykvg32 Heartware International (United States)'), (19304, 'https://ror.org/054zgtc98', 'en', 1, 'https://ror.org/054zgtc98 Calumet College of Saint Joseph, Calumet College of St. Joseph'), (19305, 'https://ror.org/05509w645', 'en', 1, 'https://ror.org/05509w645 European Passengers'' Federation Europäische Fahrgastverband'), (19306, 'https://ror.org/0554emb10', 'en', 1, 'https://ror.org/0554emb10 Manufacturers’ Representatives Educational Research Foundation'), (19307, 'https://ror.org/0556b6g90', 'en', 1, 'https://ror.org/0556b6g90 St. Francis Hospital'), (19308, 'https://ror.org/0557zev80', 'no_lang_code', 1, 'https://ror.org/0557zev80 Advirna (United States)'), (19309, 'https://ror.org/055ag5z32', 'no_lang_code', 1, 'https://ror.org/055ag5z32 DIERS International (Germany)'), (19310, 'https://ror.org/055e80y87', 'en', 1, 'https://ror.org/055e80y87 Davenport University'), (19311, 'https://ror.org/055e84666', 'no_lang_code', 1, 'https://ror.org/055e84666 Acme Express'), (19312, 'https://ror.org/055et8y89', 'no_lang_code', 1, 'https://ror.org/055et8y89 Barnett Technical Services (United States)'), (19313, 'https://ror.org/055he6t71', 'en', 1, 'https://ror.org/055he6t71 Mansfield Richland County Public Library'), (19314, 'https://ror.org/055hv2t95', 'no_lang_code', 1, 'https://ror.org/055hv2t95 Imagina (Spain)'), (19315, 'https://ror.org/055jqqn57', 'no_lang_code', 1, 'https://ror.org/055jqqn57 Bundesdruckerei (Germany) Reichsdruckerei'), (19316, 'https://ror.org/055k4r149', 'no_lang_code', 1, 'https://ror.org/055k4r149 ITEMS International'), (19317, 'https://ror.org/055qvd023', 'no_lang_code', 1, 'https://ror.org/055qvd023 Qualizyme (Austria)'), (19318, 'https://ror.org/055rvqr15', 'en', 1, 'https://ror.org/055rvqr15 Visions'), (19319, 'https://ror.org/055s5z318', 'en', 1, 'https://ror.org/055s5z318 Sacred Heart Major Seminary'), (19320, 'https://ror.org/055wera52', 'en', 1, 'https://ror.org/055wera52 Chapter Arts Centre'), (19321, 'https://ror.org/055wrb292', 'no_lang_code', 1, 'https://ror.org/055wrb292 VizSeek (United States)'), (19322, 'https://ror.org/055xrn550', 'en', 1, 'https://ror.org/055xrn550 Wheaton Franciscan Healthcare'), (19323, 'https://ror.org/055zm4v44', 'en', 1, 'https://ror.org/055zm4v44 La Fondation Stan Cassidy Stan Cassidy Foundation'), (19324, 'https://ror.org/0561r3x79', 'no_lang_code', 1, 'https://ror.org/0561r3x79 Geosciences Consultants'), (19325, 'https://ror.org/0562dax79', 'en', 1, 'https://ror.org/0562dax79 Colchester School District'), (19326, 'https://ror.org/0562rw148', 'no_lang_code', 1, 'https://ror.org/0562rw148 Biotronics 3D (United Kingdom)'), (19327, 'https://ror.org/056458z20', 'no_lang_code', 1, 'https://ror.org/056458z20 3T RPD (United Kingdom)'), (19328, 'https://ror.org/0565atc18', 'en', 1, 'https://ror.org/0565atc18 Calista Elders Council'), (19329, 'https://ror.org/056635736', 'en', 1, 'https://ror.org/056635736 Institute of Oriental Studies Институт востоковедения'), (19330, 'https://ror.org/05691sn15', 'en', 1, 'https://ror.org/05691sn15 UN Women’s Office for India, Bhutan, Maldives and Sri Lanka'), (19331, 'https://ror.org/056bwsz84', 'en', 1, 'https://ror.org/056bwsz84 Akron Art Museum'), (19332, 'https://ror.org/056cdnf90', 'en', 1, 'https://ror.org/056cdnf90 Wheels of Progress'), (19333, 'https://ror.org/056ceb060', 'no_lang_code', 1, 'https://ror.org/056ceb060 Coillte (Ireland)'), (19334, 'https://ror.org/056g2wd64', 'en', 1, 'https://ror.org/056g2wd64 Cervantes Institute Instituto Cervantes'), (19335, 'https://ror.org/056g65q42', 'en', 1, 'https://ror.org/056g65q42 Berlin Centre of Competence for Water Kompetenzzentrum Wasser Berlin'), (19336, 'https://ror.org/056h1w707', 'no_lang_code', 1, 'https://ror.org/056h1w707 Onxeo (France)'), (19337, 'https://ror.org/056j0ka11', 'no_lang_code', 1, 'https://ror.org/056j0ka11 JenLab (Germany)'), (19338, 'https://ror.org/056j7x372', 'en', 1, 'https://ror.org/056j7x372 Neuroworx'), (19339, 'https://ror.org/056jn9s46', 'en', 1, 'https://ror.org/056jn9s46 Sibley Memorial Hospital'), (19340, 'https://ror.org/056krdw94', 'no_lang_code', 1, 'https://ror.org/056krdw94 Jáfi-Autókut (Hungary)'), (19341, 'https://ror.org/056n4cb97', 'no_lang_code', 1, 'https://ror.org/056n4cb97 Jürging (Germany)'), (19342, 'https://ror.org/056ndgk74', 'no_lang_code', 1, 'https://ror.org/056ndgk74 Creme Global (Ireland)'), (19343, 'https://ror.org/056nnvc71', 'en', 1, 'https://ror.org/056nnvc71 Women''s Link Worldwide'), (19344, 'https://ror.org/056pr3z43', 'no_lang_code', 1, 'https://ror.org/056pr3z43 Rolled-Ribbon (United States)'), (19345, 'https://ror.org/056rxwh87', 'no_lang_code', 1, 'https://ror.org/056rxwh87 General Paints (Ireland)'), (19346, 'https://ror.org/056t81323', 'en', 1, 'https://ror.org/056t81323 The Seany Foundation'), (19347, 'https://ror.org/056v1v664', 'no_lang_code', 1, 'https://ror.org/056v1v664 Insilico Biotechnology (Germany)'), (19348, 'https://ror.org/056v90990', 'pl', 1, 'https://ror.org/056v90990 Fundusz Górnośląski S.A. Oddział w Katowicach'), (19349, 'https://ror.org/056vj7p55', 'no_lang_code', 1, 'https://ror.org/056vj7p55 ElectroCell (Sweden)'), (19350, 'https://ror.org/056vvdf79', 'no_lang_code', 1, 'https://ror.org/056vvdf79 Marsilio Editori (Italy)'), (19351, 'https://ror.org/056wf8856', 'en', 1, 'https://ror.org/056wf8856 Kola Science Centre Федеральное государственное бюджетное учреждение науки Горный институт Кольского научного центра Российской академии наук'), (19352, 'https://ror.org/056xved97', 'en', 1, 'https://ror.org/056xved97 Lindamood-Bell'), (19353, 'https://ror.org/056yk1794', 'no_lang_code', 1, 'https://ror.org/056yk1794 Fire Safety Design'), (19354, 'https://ror.org/056z2mp63', 'fr', 1, 'https://ror.org/056z2mp63 Euro Inox'), (19355, 'https://ror.org/056zchc22', 'en', 1, 'https://ror.org/056zchc22 Women''s Center of Jacksonville'), (19356, 'https://ror.org/0570x4g13', 'no_lang_code', 1, 'https://ror.org/0570x4g13 Aquamarijn (Netherlands)'), (19357, 'https://ror.org/05733ar04', 'en', 1, 'https://ror.org/05733ar04 Community Healthlink'), (19358, 'https://ror.org/05740ft58', 'no_lang_code', 1, 'https://ror.org/05740ft58 El Corte Inglés (Spain)'), (19359, 'https://ror.org/0574bwf68', 'en', 1, 'https://ror.org/0574bwf68 Holy Cross College'), (19360, 'https://ror.org/0574rre95', 'en', 1, 'https://ror.org/0574rre95 Umpqua Community College'), (19361, 'https://ror.org/0575kzg87', 'no_lang_code', 1, 'https://ror.org/0575kzg87 Applied Research Using OMIC Sciences (Spain)'), (19362, 'https://ror.org/0576t9y10', 'no_lang_code', 1, 'https://ror.org/0576t9y10 JR Technology (United Kingdom)'), (19363, 'https://ror.org/0579ray12', 'fr', 1, 'https://ror.org/0579ray12 Centre National de la Recherche Appliquée au Developpement Rural'), (19364, 'https://ror.org/057a9pj22', 'en', 1, 'https://ror.org/057a9pj22 Cabrini University'), (19365, 'https://ror.org/057afqq06', 'en', 1, 'https://ror.org/057afqq06 Delta College'), (19366, 'https://ror.org/057bk3f95', 'no_lang_code', 1, 'https://ror.org/057bk3f95 Cantine d''Alfonso del Sordo (Italy)'), (19367, 'https://ror.org/057fshk20', 'no_lang_code', 1, 'https://ror.org/057fshk20 IHS Markit (Canada)'), (19368, 'https://ror.org/057gtbv76', 'en', 1, 'https://ror.org/057gtbv76 Wolfson Children''s Hospital'), (19369, 'https://ror.org/057hsm867', 'en', 1, 'https://ror.org/057hsm867 Institute of Solid State Chemistry and Mechanochemistry Федеральное государственное бюджетное учреждение науки Институт химии твердого тела и механохимии Сибирского отделения Российской академии наук'), (19370, 'https://ror.org/057j98494', 'en', 1, 'https://ror.org/057j98494 Cleveland Museum of Art'), (19371, 'https://ror.org/057m2em33', 'en', 1, 'https://ror.org/057m2em33 Washington Hospital Healthcare System'), (19372, 'https://ror.org/057n96m12', 'no_lang_code', 1, 'https://ror.org/057n96m12 Zanardi Fonderie (Italy)'), (19373, 'https://ror.org/057pnws69', 'en', 1, 'https://ror.org/057pnws69 Centre for Planning and Economic Research'), (19374, 'https://ror.org/057ppfc30', 'en', 1, 'https://ror.org/057ppfc30 The Donna Foundation'), (19375, 'https://ror.org/057qrfa57', 'no_lang_code', 1, 'https://ror.org/057qrfa57 Atlantec Enterprise Solutions (Germany)'), (19376, 'https://ror.org/057r54s29', 'en', 1, 'https://ror.org/057r54s29 Baton Rouge Community College'), (19377, 'https://ror.org/057r81391', 'no_lang_code', 1, 'https://ror.org/057r81391 Energidalen (Sweden)'), (19378, 'https://ror.org/057rd1163', 'no_lang_code', 1, 'https://ror.org/057rd1163 Biomol Informatics (Spain)'), (19379, 'https://ror.org/057tpct07', 'en', 1, 'https://ror.org/057tpct07 Lenawee District Library'), (19380, 'https://ror.org/057w1af56', 'en', 1, 'https://ror.org/057w1af56 Gateway Community Services'), (19381, 'https://ror.org/057x3a607', 'en', 1, 'https://ror.org/057x3a607 Foundation for Science Technology and Civilisation'), (19382, 'https://ror.org/057ydan45', 'en', 1, 'https://ror.org/057ydan45 Copyright Licensing Agency'), (19383, 'https://ror.org/0580j1464', 'no_lang_code', 1, 'https://ror.org/0580j1464 Meloni Vini (Italy)'), (19384, 'https://ror.org/0582tp073', 'no_lang_code', 1, 'https://ror.org/0582tp073 Orflo Technologies (United States)'), (19385, 'https://ror.org/0583fqn04', 'en', 1, 'https://ror.org/0583fqn04 Crow Canyon Archaeological Center'), (19386, 'https://ror.org/0584ce792', 'fr', 1, 'https://ror.org/0584ce792 Chambre de Commerce et d''Industrie Auvergne-Rhône-Alpes'), (19387, 'https://ror.org/0584wbt59', 'en', 1, 'https://ror.org/0584wbt59 European Network for Cyber Security'), (19388, 'https://ror.org/0588atr11', 'en', 1, 'https://ror.org/0588atr11 Illinois Community College Board'), (19389, 'https://ror.org/0588zzw94', 'no_lang_code', 1, 'https://ror.org/0588zzw94 Arranta Bio (United States)'), (19390, 'https://ror.org/058936h36', 'en', 1, 'https://ror.org/058936h36 SHIELDS for Families'), (19391, 'https://ror.org/058az4744', 'en', 1, 'https://ror.org/058az4744 Virtua Health'), (19392, 'https://ror.org/058bza610', 'no_lang_code', 1, 'https://ror.org/058bza610 Angiologica (Italy)'), (19393, 'https://ror.org/058cxws58', 'no_lang_code', 1, 'https://ror.org/058cxws58 Intel (United Kingdom)'), (19394, 'https://ror.org/058d74429', 'no_lang_code', 1, 'https://ror.org/058d74429 Ernst Wittner (Austria)'), (19395, 'https://ror.org/058er4930', 'en', 1, 'https://ror.org/058er4930 Center for Health Justice'), (19396, 'https://ror.org/058f8dm33', 'no_lang_code', 1, 'https://ror.org/058f8dm33 LifeGlimmer (Germany)'), (19397, 'https://ror.org/058fftp70', 'no_lang_code', 1, 'https://ror.org/058fftp70 General Marble (Greece)'), (19398, 'https://ror.org/058gk5394', 'en', 1, 'https://ror.org/058gk5394 Ministrstvo za pravosodje Ministry of Justice'), (19399, 'https://ror.org/058hrmf93', 'en', 1, 'https://ror.org/058hrmf93 La Crosse Public Library'), (19400, 'https://ror.org/058jaty48', 'no_lang_code', 1, 'https://ror.org/058jaty48 Breivoll Inspection Technologies (Norway)'), (19401, 'https://ror.org/058qk8f51', 'no_lang_code', 1, 'https://ror.org/058qk8f51 Innovative Sensor Technology (Switzerland)'), (19402, 'https://ror.org/058skdy22', 'en', 1, 'https://ror.org/058skdy22 Saint Paul’s Hospital Iloilo'), (19403, 'https://ror.org/058wdq771', 'pt', 1, 'https://ror.org/058wdq771 Escola Secundária de Loulé'), (19404, 'https://ror.org/058ysfr19', 'en', 1, 'https://ror.org/058ysfr19 Bulgarian European Community Studies Association'), (19405, 'https://ror.org/058ywcv06', 'no_lang_code', 1, 'https://ror.org/058ywcv06 Advanced Applications (United States)'), (19406, 'https://ror.org/058ze9c42', 'en', 1, 'https://ror.org/058ze9c42 RadioIsotope Therapy of America Foundation'), (19407, 'https://ror.org/058zs5j81', 'en', 1, 'https://ror.org/058zs5j81 Institute for Reproductive and Family Health'), (19408, 'https://ror.org/05905mf04', 'no_lang_code', 1, 'https://ror.org/05905mf04 ACI Plastics (United States)'), (19409, 'https://ror.org/0591r7s41', 'en', 1, 'https://ror.org/0591r7s41 Sensory Processing Disorder Foundation'), (19410, 'https://ror.org/0591zqj11', 'no_lang_code', 1, 'https://ror.org/0591zqj11 Gas Sensing Solutions (United Kingdom)'), (19411, 'https://ror.org/05939ef94', 'no_lang_code', 1, 'https://ror.org/05939ef94 Altair Engineering (United States)'), (19412, 'https://ror.org/0595qv417', 'no_lang_code', 1, 'https://ror.org/0595qv417 Abzyme Therapeutics (United States)'), (19413, 'https://ror.org/0596xsc43', 'en', 1, 'https://ror.org/0596xsc43 EMH Group'), (19414, 'https://ror.org/05986z039', 'en', 1, 'https://ror.org/05986z039 Chancellor University'), (19415, 'https://ror.org/059ap3j92', 'en', 1, 'https://ror.org/059ap3j92 St. Augustine College'), (19416, 'https://ror.org/059cb7973', 'no_lang_code', 1, 'https://ror.org/059cb7973 SIPX (United States)'), (19417, 'https://ror.org/059eesf83', 'en', 1, 'https://ror.org/059eesf83 St. Laurent Institute'), (19418, 'https://ror.org/059ep5752', 'en', 1, 'https://ror.org/059ep5752 Hamilton East Public Library'), (19419, 'https://ror.org/059et9981', 'en', 1, 'https://ror.org/059et9981 ING Bank Internationale Nederlanden Groep'), (19420, 'https://ror.org/059fvx214', 'no_lang_code', 1, 'https://ror.org/059fvx214 Mössner (Germany)'), (19421, 'https://ror.org/059hgmr83', 'no_lang_code', 1, 'https://ror.org/059hgmr83 Cavion (United States)'), (19422, 'https://ror.org/059j8wt77', 'en', 1, 'https://ror.org/059j8wt77 Alexandria Department of Community and Human Services'), (19423, 'https://ror.org/059kj1x27', 'en', 1, 'https://ror.org/059kj1x27 Rock County Historical Society'), (19424, 'https://ror.org/059m1rc96', 'no_lang_code', 1, 'https://ror.org/059m1rc96 Institut für Prüftechnik Gerätebau (Germany)'), (19425, 'https://ror.org/059mcbz87', 'en', 1, 'https://ror.org/059mcbz87 Mid-Continent Public Library'), (19426, 'https://ror.org/059pjy887', 'en', 1, 'https://ror.org/059pjy887 Tuality Healthcare'), (19427, 'https://ror.org/059q7ds12', 'no_lang_code', 1, 'https://ror.org/059q7ds12 Alpha Therm (Germany)'), (19428, 'https://ror.org/059s01p87', 'no_lang_code', 1, 'https://ror.org/059s01p87 AFRY (United Kingdom)'), (19429, 'https://ror.org/059vksz24', 'en', 1, 'https://ror.org/059vksz24 Glass Technology Services'), (19430, 'https://ror.org/059vymd37', 'de', 1, 'https://ror.org/059vymd37 Hochschule Osnabrück Osnabrück University of Applied Sciences'), (19431, 'https://ror.org/059wtn003', 'en', 1, 'https://ror.org/059wtn003 Bavarian Center for Applied Energy Research Bayerisches Zentrum für Angewandte Energieforschung'), (19432, 'https://ror.org/05a628j96', 'no_lang_code', 1, 'https://ror.org/05a628j96 Aquatest (Czechia)'), (19433, 'https://ror.org/05a6z7k50', 'en', 1, 'https://ror.org/05a6z7k50 Canadore College'), (19434, 'https://ror.org/05abmv045', 'en', 1, 'https://ror.org/05abmv045 Sieć Badawcza Łukasiewicz – Instytut Mechanizacji Budownictwa i Górnictwa Skalnego Łukasiewicz Research Network - Institute of Mechanised Construction and Rock Mining'), (19435, 'https://ror.org/05afhka30', 'no_lang_code', 1, 'https://ror.org/05afhka30 Delsys (United States)'), (19436, 'https://ror.org/05ajme216', 'pt', 1, 'https://ror.org/05ajme216 Hospital de Santo Espirito de Angra do Heroísmo'), (19437, 'https://ror.org/05amva544', 'no_lang_code', 1, 'https://ror.org/05amva544 Fyodor Biotechnologies (United States)'), (19438, 'https://ror.org/05apy4h12', 'no_lang_code', 1, 'https://ror.org/05apy4h12 Energy Consulting Network (Denmark)'), (19439, 'https://ror.org/05atpj522', 'no_lang_code', 1, 'https://ror.org/05atpj522 Cyprus Chamber of Commerce and Industry (Cyprus)'), (19440, 'https://ror.org/05avcpr91', 'en', 1, 'https://ror.org/05avcpr91 American Institute for Medical and Biological Engineering'), (19441, 'https://ror.org/05axffz73', 'no_lang_code', 1, 'https://ror.org/05axffz73 Amar International (United States)'), (19442, 'https://ror.org/05az64h21', 'no_lang_code', 1, 'https://ror.org/05az64h21 Grupo Lederval (Spain)'), (19443, 'https://ror.org/05b023967', 'no_lang_code', 1, 'https://ror.org/05b023967 BioTechnica (United States)'), (19444, 'https://ror.org/05b35wm26', 'en', 1, 'https://ror.org/05b35wm26 ThinkFirst Foundation'), (19445, 'https://ror.org/05b3fmb74', 'no_lang_code', 1, 'https://ror.org/05b3fmb74 Elmos Semiconductor (Germany)'), (19446, 'https://ror.org/05b3qpf29', 'en', 1, 'https://ror.org/05b3qpf29 Community Resources for Justice'), (19447, 'https://ror.org/05b6bjd03', 'no_lang_code', 1, 'https://ror.org/05b6bjd03 Construction Solutions (United States)'), (19448, 'https://ror.org/05b6fta51', 'no_lang_code', 1, 'https://ror.org/05b6fta51 Fujifilm (Netherlands)'), (19449, 'https://ror.org/05b7n5w28', 'no_lang_code', 1, 'https://ror.org/05b7n5w28 Corpora Systems (United States)'), (19450, 'https://ror.org/05b8s7b69', 'en', 1, 'https://ror.org/05b8s7b69 Advances in Mineral Metabolism'), (19451, 'https://ror.org/05b8tgb13', 'en', 1, 'https://ror.org/05b8tgb13 Robin Hood Foundation'), (19452, 'https://ror.org/05ba2cw74', 'en', 1, 'https://ror.org/05ba2cw74 Shared Adventures'), (19453, 'https://ror.org/05bacvf60', 'en', 1, 'https://ror.org/05bacvf60 Watson Clinic'), (19454, 'https://ror.org/05bbhmq49', 'no_lang_code', 1, 'https://ror.org/05bbhmq49 McBride and Associates (United States)'), (19455, 'https://ror.org/05bc0ed68', 'en', 1, 'https://ror.org/05bc0ed68 Healthy Communities Initiative of St Joseph County'), (19456, 'https://ror.org/05bdy6z50', 'no_lang_code', 1, 'https://ror.org/05bdy6z50 AJ Plastic Components (Ireland)'), (19457, 'https://ror.org/05be7xx76', 'no_lang_code', 1, 'https://ror.org/05be7xx76 Sun Chemical (United Kingdom)'), (19458, 'https://ror.org/05becgp50', 'no_lang_code', 1, 'https://ror.org/05becgp50 Hocoma (Switzerland)'), (19459, 'https://ror.org/05bhzk792', 'en', 1, 'https://ror.org/05bhzk792 Covington and Burling'), (19460, 'https://ror.org/05bjb2m32', 'no_lang_code', 1, 'https://ror.org/05bjb2m32 AAC Clyde Space (United Kingdom)'), (19461, 'https://ror.org/05bjnkp72', 'en', 1, 'https://ror.org/05bjnkp72 Broadway'), (19462, 'https://ror.org/05bk7gd90', 'en', 1, 'https://ror.org/05bk7gd90 Association for Childrens Mental Health'), (19463, 'https://ror.org/05bm86k51', 'no_lang_code', 1, 'https://ror.org/05bm86k51 Ludger (United Kingdom)'), (19464, 'https://ror.org/05bmabg32', 'no_lang_code', 1, 'https://ror.org/05bmabg32 Advanced Optics Solutions (Germany)'), (19465, 'https://ror.org/05bmjxa33', 'no_lang_code', 1, 'https://ror.org/05bmjxa33 Aero Montreal (Canada)'), (19466, 'https://ror.org/05bn6qf70', 'en', 1, 'https://ror.org/05bn6qf70 Aurora College'), (19467, 'https://ror.org/05bnfx215', 'no_lang_code', 1, 'https://ror.org/05bnfx215 Sumitomo Chemical (United States)'), (19468, 'https://ror.org/05bpzr679', 'no_lang_code', 1, 'https://ror.org/05bpzr679 FM Management Consultancy'), (19469, 'https://ror.org/05btx4z39', 'en', 1, 'https://ror.org/05btx4z39 Durham County Council'), (19470, 'https://ror.org/05btye950', 'en', 1, 'https://ror.org/05btye950 Southwest Autism Research & Resource Center'), (19471, 'https://ror.org/05bvf9f86', 'en', 1, 'https://ror.org/05bvf9f86 Raising Spirits Foundation'), (19472, 'https://ror.org/05bvps080', 'de', 1, 'https://ror.org/05bvps080 Institut Wohnen und Umwelt'), (19473, 'https://ror.org/05bxa5v91', 'en', 1, 'https://ror.org/05bxa5v91 Indianapolis Public Library'), (19474, 'https://ror.org/05bxrj827', 'no_lang_code', 1, 'https://ror.org/05bxrj827 ATON-HT (Poland)'), (19475, 'https://ror.org/05byg9k74', 'no_lang_code', 1, 'https://ror.org/05byg9k74 Filtronic (United Kingdom)'), (19476, 'https://ror.org/05bzyzw86', 'en', 1, 'https://ror.org/05bzyzw86 Cimosa'), (19477, 'https://ror.org/05c0tak18', 'no_lang_code', 1, 'https://ror.org/05c0tak18 Inner Health'), (19478, 'https://ror.org/05c1xmf93', 'en', 1, 'https://ror.org/05c1xmf93 Canton Public Library'), (19479, 'https://ror.org/05c2ase32', 'no_lang_code', 1, 'https://ror.org/05c2ase32 Dynamic Systems Analysis (Canada)'), (19480, 'https://ror.org/05c2m7279', 'no_lang_code', 1, 'https://ror.org/05c2m7279 Companhia de Equipamentos Industriais'), (19481, 'https://ror.org/05c2mz691', 'no_lang_code', 1, 'https://ror.org/05c2mz691 BMT Group (Germany)'), (19482, 'https://ror.org/05c2nqw49', 'no_lang_code', 1, 'https://ror.org/05c2nqw49 Deutsche Energy Agency (Germany)'), (19483, 'https://ror.org/05c2wgj05', 'no_lang_code', 1, 'https://ror.org/05c2wgj05 Aquasium (United Kingdom)'), (19484, 'https://ror.org/05c4ny054', 'no_lang_code', 1, 'https://ror.org/05c4ny054 De Neef Chemical Processing (Belgium)'), (19485, 'https://ror.org/05c56kx15', 'no_lang_code', 1, 'https://ror.org/05c56kx15 Fronius (Austria)'), (19486, 'https://ror.org/05c5nrc66', 'en', 1, 'https://ror.org/05c5nrc66 Methodist Theological School in Ohio'), (19487, 'https://ror.org/05c6smb53', 'no_lang_code', 1, 'https://ror.org/05c6smb53 Aqui-S (New Zealand)'), (19488, 'https://ror.org/05c88z534', 'pl', 1, 'https://ror.org/05c88z534 Dolnośląski Park Innowacji i Nauki'), (19489, 'https://ror.org/05c9m3a41', 'en', 1, 'https://ror.org/05c9m3a41 South Suburban Genealogical and Historical Society'), (19490, 'https://ror.org/05c9yxc90', 'no_lang_code', 1, 'https://ror.org/05c9yxc90 Hill+Knowlton Strategies (Estonia)'), (19491, 'https://ror.org/05ccmc339', 'no_lang_code', 1, 'https://ror.org/05ccmc339 Etra (Spain)'), (19492, 'https://ror.org/05cd3ee03', 'en', 1, 'https://ror.org/05cd3ee03 ACLS Humanities E-Book'), (19493, 'https://ror.org/05cdy0410', 'en', 1, 'https://ror.org/05cdy0410 Wild Lens'), (19494, 'https://ror.org/05cend965', 'en', 1, 'https://ror.org/05cend965 Eurocarers'), (19495, 'https://ror.org/05cewnq61', 'en', 1, 'https://ror.org/05cewnq61 HealthInsight'), (19496, 'https://ror.org/05cghfn11', 'en', 1, 'https://ror.org/05cghfn11 The Center for Mind-Body Medicine'), (19497, 'https://ror.org/05ch6rk19', 'no_lang_code', 1, 'https://ror.org/05ch6rk19 AvanSci Bio (United States)'), (19498, 'https://ror.org/05chgd482', 'no_lang_code', 1, 'https://ror.org/05chgd482 Lyngsø Marine (Denmark)'), (19499, 'https://ror.org/05cjbf184', 'it', 1, 'https://ror.org/05cjbf184 Agenzia per la Promozione All''estero e l''Internazionalizzazione Delle Imprese Italiane Italian Trade Promotion Agency'), (19500, 'https://ror.org/05cmaqt93', 'no_lang_code', 1, 'https://ror.org/05cmaqt93 Lumiphore (United States)'), (19501, 'https://ror.org/05cmkp264', 'en', 1, 'https://ror.org/05cmkp264 British Institute of Radiology'), (19502, 'https://ror.org/05cpjy057', 'no_lang_code', 1, 'https://ror.org/05cpjy057 Edelweiss Connect (Switzerland)'), (19503, 'https://ror.org/05cs67685', 'no_lang_code', 1, 'https://ror.org/05cs67685 Elwood Landscape Design (United Kingdom)'), (19504, 'https://ror.org/05cvd4x54', 'en', 1, 'https://ror.org/05cvd4x54 SHARE'), (19505, 'https://ror.org/05cvky844', 'en', 1, 'https://ror.org/05cvky844 Ministry of Transport and Communications'), (19506, 'https://ror.org/05cxce809', 'no_lang_code', 1, 'https://ror.org/05cxce809 EcologicTech (United States)'), (19507, 'https://ror.org/05cy18k60', 'fr', 1, 'https://ror.org/05cy18k60 Agence Nationale des Technologies de l''Information et de la Communication'), (19508, 'https://ror.org/05cyjba52', 'pt', 1, 'https://ror.org/05cyjba52 Ministry of Agriculture, Forestry and Rural Development Ministério da Agricultura, Ministério da Agricultura, Florestas e Desenvolvimento Rural'), (19509, 'https://ror.org/05cz9t057', 'no_lang_code', 1, 'https://ror.org/05cz9t057 Edinethics (United Kingdom)'), (19510, 'https://ror.org/05d0bdm05', 'en', 1, 'https://ror.org/05d0bdm05 Crimean Astrophysical Observatory Крымская астрофизическая обсерватория'), (19511, 'https://ror.org/05d2wqp79', 'en', 1, 'https://ror.org/05d2wqp79 Greenville Children''s Hospital'), (19512, 'https://ror.org/05d30jn11', 'en', 1, 'https://ror.org/05d30jn11 Clean Air Action Group'), (19513, 'https://ror.org/05d5d9f59', 'no_lang_code', 1, 'https://ror.org/05d5d9f59 Licentia (Finland)'), (19514, 'https://ror.org/05d74m226', 'en', 1, 'https://ror.org/05d74m226 Central Laboratory of General Ecology Централна лаборатория по обща екология'), (19515, 'https://ror.org/05d8hxw39', 'en', 1, 'https://ror.org/05d8hxw39 Community Mental Health Affiliates'), (19516, 'https://ror.org/05d8pm274', 'en', 1, 'https://ror.org/05d8pm274 University of Guyana'), (19517, 'https://ror.org/05dah1e64', 'en', 1, 'https://ror.org/05dah1e64 Idaho State Department of Education'), (19518, 'https://ror.org/05ddxpg43', 'fr', 1, 'https://ror.org/05ddxpg43 École Nationale Supérieure de Chimie, de Biologie et de Physique'), (19519, 'https://ror.org/05debfj90', 'no_lang_code', 1, 'https://ror.org/05debfj90 Highland Fine Cheeses (United Kingdom)'), (19520, 'https://ror.org/05der9a39', 'no_lang_code', 1, 'https://ror.org/05der9a39 Lemvig Varmeværk (Denmark)'), (19521, 'https://ror.org/05deyvp19', 'no_lang_code', 1, 'https://ror.org/05deyvp19 Food Machinery Española (Spain)'), (19522, 'https://ror.org/05dez2x05', 'en', 1, 'https://ror.org/05dez2x05 Institute for Advanced Studies in Aging and Geriatric Medicine'), (19523, 'https://ror.org/05dh3w354', 'no_lang_code', 1, 'https://ror.org/05dh3w354 Quantum Spatial (United States)'), (19524, 'https://ror.org/05dky1a08', 'en', 1, 'https://ror.org/05dky1a08 Center for Research Libraries'), (19525, 'https://ror.org/05dmfnv36', 'fr', 1, 'https://ror.org/05dmfnv36 Alcimed'), (19526, 'https://ror.org/05dmmmj28', 'no_lang_code', 1, 'https://ror.org/05dmmmj28 Machinefabriek Otto Schouten (Netherlands)'), (19527, 'https://ror.org/05dpc2207', 'en', 1, 'https://ror.org/05dpc2207 Instytut Morski w Gdańsku Maritime Institute in Gdansk'), (19528, 'https://ror.org/05dpd3531', 'en', 1, 'https://ror.org/05dpd3531 Cooperative Educational Service Agencies'), (19529, 'https://ror.org/05dpxhh36', 'ms', 1, 'https://ror.org/05dpxhh36 Institut Penyelidikan Veterinar'), (19530, 'https://ror.org/05ds63q12', 'en', 1, 'https://ror.org/05ds63q12 Bakken Museum'), (19531, 'https://ror.org/05dss5t31', 'no_lang_code', 1, 'https://ror.org/05dss5t31 Advance Composite Fibers (Spain)'), (19532, 'https://ror.org/05dtcxa32', 'en', 1, 'https://ror.org/05dtcxa32 Capital Area District Libraries'), (19533, 'https://ror.org/05dwg9278', 'en', 1, 'https://ror.org/05dwg9278 Tampa Veterans Research and Education Foundation'), (19534, 'https://ror.org/05dwtb503', 'no_lang_code', 1, 'https://ror.org/05dwtb503 Silence Therapeutics (United States)'), (19535, 'https://ror.org/05dww8f34', 'en', 1, 'https://ror.org/05dww8f34 Balm In Gilead'), (19536, 'https://ror.org/05dxcae66', 'no_lang_code', 1, 'https://ror.org/05dxcae66 Vantia (United Kingdom)'), (19537, 'https://ror.org/05dxmfh27', 'en', 1, 'https://ror.org/05dxmfh27 Energy System Analysis and Planning'), (19538, 'https://ror.org/05dyc0249', 'en', 1, 'https://ror.org/05dyc0249 Papageno Foundation Stichting Papageno'), (19539, 'https://ror.org/05dzkb247', 'it', 1, 'https://ror.org/05dzkb247 Environmental and Ethical Certification Institute Istituto per la Certificazione Etica ed Ambientale'), (19540, 'https://ror.org/05dzxqx07', 'no_lang_code', 1, 'https://ror.org/05dzxqx07 KBC Advanced Technologies (United Kingdom)'), (19541, 'https://ror.org/05e0mbv58', 'no_lang_code', 1, 'https://ror.org/05e0mbv58 Evestra (United States)'), (19542, 'https://ror.org/05e0yvq18', 'no_lang_code', 1, 'https://ror.org/05e0yvq18 DSVM Group (Denmark)'), (19543, 'https://ror.org/05e1bqs36', 'no_lang_code', 1, 'https://ror.org/05e1bqs36 IMET Corporation (United States)'), (19544, 'https://ror.org/05e7hwa20', 'en', 1, 'https://ror.org/05e7hwa20 European Heat Pump Association'), (19545, 'https://ror.org/05e7tm136', 'no_lang_code', 1, 'https://ror.org/05e7tm136 World Scientific (Singapore)'), (19546, 'https://ror.org/05e946j54', 'en', 1, 'https://ror.org/05e946j54 University of Louisville Physicians'), (19547, 'https://ror.org/05e99em22', 'fi', 1, 'https://ror.org/05e99em22 Etelä-Karjalan sosiaali ja terveyspiiri South Karelia Social and Health Care District'), (19548, 'https://ror.org/05eaem981', 'no_lang_code', 1, 'https://ror.org/05eaem981 Intecsea (Canada)'), (19549, 'https://ror.org/05eazss97', 'en', 1, 'https://ror.org/05eazss97 Berkshire Record Office'), (19550, 'https://ror.org/05eb0w304', 'no_lang_code', 1, 'https://ror.org/05eb0w304 ABM SOLID (Poland)'), (19551, 'https://ror.org/05ebj0z80', 'no_lang_code', 1, 'https://ror.org/05ebj0z80 VOCK Maschinen- und Stahlbau (Germany)'), (19552, 'https://ror.org/05ecnxy68', 'no_lang_code', 1, 'https://ror.org/05ecnxy68 Electronic Systems Design (Malta)'), (19553, 'https://ror.org/05ecqm310', 'en', 1, 'https://ror.org/05ecqm310 Northwest State Community College'), (19554, 'https://ror.org/05ecr8233', 'no_lang_code', 1, 'https://ror.org/05ecr8233 Mectron (Italy)'), (19555, 'https://ror.org/05eeps779', 'no_lang_code', 1, 'https://ror.org/05eeps779 Home Group (United Kingdom)'), (19556, 'https://ror.org/05egsp010', 'en', 1, 'https://ror.org/05egsp010 Danish Ministry of Transport Transportministeriet'), (19557, 'https://ror.org/05ejpyv46', 'no_lang_code', 1, 'https://ror.org/05ejpyv46 Applied Materials (Germany)'), (19558, 'https://ror.org/05eq12k28', 'en', 1, 'https://ror.org/05eq12k28 Thomas Edison State University'), (19559, 'https://ror.org/05ermrg42', 'en', 1, 'https://ror.org/05ermrg42 Vavilov Institute of General Genetics Федеральное государственное бюджетное учреждение науки Институт общей генетики им. Н.И. Вавилова Российской академии наук'), (19560, 'https://ror.org/05es2h531', 'no_lang_code', 1, 'https://ror.org/05es2h531 Eagle Engineering (United States)'), (19561, 'https://ror.org/05esks986', 'en', 1, 'https://ror.org/05esks986 Yankton Rural Area Health Education Center'), (19562, 'https://ror.org/05etp2h92', 'en', 1, 'https://ror.org/05etp2h92 Stop Calling It Autism'), (19563, 'https://ror.org/05ey8y327', 'no_lang_code', 1, 'https://ror.org/05ey8y327 Berlin Energy Agency Berliner Energieagentur (Germany)'), (19564, 'https://ror.org/05f29ae28', 'en', 1, 'https://ror.org/05f29ae28 Wilderness Matters'), (19565, 'https://ror.org/05f2srq42', 'no_lang_code', 1, 'https://ror.org/05f2srq42 Stratasys (United States)'), (19566, 'https://ror.org/05f3jmw47', 'en', 1, 'https://ror.org/05f3jmw47 Thrive'), (19567, 'https://ror.org/05f3k0a16', 'no_lang_code', 1, 'https://ror.org/05f3k0a16 Consorzio CREO (Italy)'), (19568, 'https://ror.org/05f3yt521', 'en', 1, 'https://ror.org/05f3yt521 V. A. Trapeznikov Institute of Control Sciences W.A.Trapeznikow Institut für Steuerungswissenschaften Федеральное государственное бюджетное учреждение науки Институт проблем управления им. В. А. Трапезникова Российской академии наук'), (19569, 'https://ror.org/05f5ae947', 'no_lang_code', 1, 'https://ror.org/05f5ae947 Levitronix (United States)'), (19570, 'https://ror.org/05f5tv502', 'en', 1, 'https://ror.org/05f5tv502 Temecula Valley Unified School District'), (19571, 'https://ror.org/05f624153', 'no_lang_code', 1, 'https://ror.org/05f624153 Cargill (France)'), (19572, 'https://ror.org/05f8df042', 'en', 1, 'https://ror.org/05f8df042 Usher III Initiative'), (19573, 'https://ror.org/05f8m5935', 'fr', 1, 'https://ror.org/05f8m5935 Cégep de Rimouski'), (19574, 'https://ror.org/05f935s79', 'no_lang_code', 1, 'https://ror.org/05f935s79 Ikusi (Spain)'), (19575, 'https://ror.org/05f9xnq60', 'en', 1, 'https://ror.org/05f9xnq60 Livonia Public Library'); INSERT INTO `rors` VALUES (19576, 'https://ror.org/05fa80v88', 'it', 1, 'https://ror.org/05fa80v88 Confederazione Nazionale dell''Artigianato e Della Piccola e Media Impresa'), (19577, 'https://ror.org/05fahdk25', 'no_lang_code', 1, 'https://ror.org/05fahdk25 Knudsen Plast (Denmark)'), (19578, 'https://ror.org/05fc83474', 'no_lang_code', 1, 'https://ror.org/05fc83474 Ahlstrom-Munksjö (France)'), (19579, 'https://ror.org/05fea9w83', 'de', 1, 'https://ror.org/05fea9w83 Gas- und Wärme-Institut Essen'), (19580, 'https://ror.org/05fezbd26', 'no_lang_code', 1, 'https://ror.org/05fezbd26 Elcriton (United States)'), (19581, 'https://ror.org/05ffhjy73', 'en', 1, 'https://ror.org/05ffhjy73 MacCormac College'), (19582, 'https://ror.org/05fgmb597', 'no_lang_code', 1, 'https://ror.org/05fgmb597 Aitek (Italy)'), (19583, 'https://ror.org/05fh0g986', 'en', 1, 'https://ror.org/05fh0g986 Chicago Theological Seminary'), (19584, 'https://ror.org/05fjnk551', 'en', 1, 'https://ror.org/05fjnk551 Racine Public Library'), (19585, 'https://ror.org/05fmqg429', 'en', 1, 'https://ror.org/05fmqg429 American Federation of State, County and Municipal Employees'), (19586, 'https://ror.org/05fnat077', 'en', 1, 'https://ror.org/05fnat077 Arise'), (19587, 'https://ror.org/05fqdmq12', 'en', 1, 'https://ror.org/05fqdmq12 Institute of Automation and Electrometry Федеральное государственное бюджетное учреждение науки Институт автоматики и электрометрии Сибирского отделения Российской академии наук'), (19588, 'https://ror.org/05fr4xz54', 'no_lang_code', 1, 'https://ror.org/05fr4xz54 Nitto (United States)'), (19589, 'https://ror.org/05frh7832', 'no_lang_code', 1, 'https://ror.org/05frh7832 Eni (France)'), (19590, 'https://ror.org/05frrjn34', 'no_lang_code', 1, 'https://ror.org/05frrjn34 Lynx (Italy)'), (19591, 'https://ror.org/05fwffr47', 'no_lang_code', 1, 'https://ror.org/05fwffr47 inuTech (Germany)'), (19592, 'https://ror.org/05fwx1x78', 'no_lang_code', 1, 'https://ror.org/05fwx1x78 Vaxiion Therapeutics (United States)'), (19593, 'https://ror.org/05fwz3716', 'en', 1, 'https://ror.org/05fwz3716 Soldiers'' Angels'), (19594, 'https://ror.org/05fxq1221', 'no_lang_code', 1, 'https://ror.org/05fxq1221 Spero Therapeutics (United States)'), (19595, 'https://ror.org/05fyshf19', 'no_lang_code', 1, 'https://ror.org/05fyshf19 Blastech (United Kingdom)'), (19596, 'https://ror.org/05fz04663', 'no_lang_code', 1, 'https://ror.org/05fz04663 Activation Laboratories'), (19597, 'https://ror.org/05fzt6j85', 'en', 1, 'https://ror.org/05fzt6j85 Saint Anne''s Hospital'), (19598, 'https://ror.org/05g0sd071', 'no_lang_code', 1, 'https://ror.org/05g0sd071 Central Research Laboratories (United Kingdom)'), (19599, 'https://ror.org/05g12js95', 'no_lang_code', 1, 'https://ror.org/05g12js95 ImmersiveTouch (United States)'), (19600, 'https://ror.org/05g2tt321', 'en', 1, 'https://ror.org/05g2tt321 Coastal Horizons Center'), (19601, 'https://ror.org/05g4knm43', 'en', 1, 'https://ror.org/05g4knm43 Phoenix Indian Medical Center'), (19602, 'https://ror.org/05g4w0661', 'en', 1, 'https://ror.org/05g4w0661 Canmore Museum and Geoscience Centre'), (19603, 'https://ror.org/05g51bs78', 'no_lang_code', 1, 'https://ror.org/05g51bs78 Acelot (United States)'), (19604, 'https://ror.org/05g5f7985', 'no_lang_code', 1, 'https://ror.org/05g5f7985 Western Oncolytics (United States)'), (19605, 'https://ror.org/05g5ny036', 'en', 1, 'https://ror.org/05g5ny036 Sonke Gender Justice'), (19606, 'https://ror.org/05g65zz68', 'no_lang_code', 1, 'https://ror.org/05g65zz68 Conwal (United States)'), (19607, 'https://ror.org/05g6nzm31', 'en', 1, 'https://ror.org/05g6nzm31 Bloomfield Township Public Library'), (19608, 'https://ror.org/05g7t5c49', 'no_lang_code', 1, 'https://ror.org/05g7t5c49 Jenoptik (Germany)'), (19609, 'https://ror.org/05gcmgp11', 'no_lang_code', 1, 'https://ror.org/05gcmgp11 Jefar-Indústria De Calçado'), (19610, 'https://ror.org/05ges7821', 'en', 1, 'https://ror.org/05ges7821 Carl Sandburg College'), (19611, 'https://ror.org/05gexen20', 'en', 1, 'https://ror.org/05gexen20 Clatsop Community College'), (19612, 'https://ror.org/05gh88052', 'no_lang_code', 1, 'https://ror.org/05gh88052 iQur (United Kingdom)'), (19613, 'https://ror.org/05ghq7b13', 'no_lang_code', 1, 'https://ror.org/05ghq7b13 Vergnano (Italy)'), (19614, 'https://ror.org/05gjd3067', 'en', 1, 'https://ror.org/05gjd3067 Youth Action on Tobacco Control and Health'), (19615, 'https://ror.org/05gjytt71', 'en', 1, 'https://ror.org/05gjytt71 E-Connection'), (19616, 'https://ror.org/05gm3ry77', 'pt', 1, 'https://ror.org/05gm3ry77 Estrutura de Missão para a Extensão da Plataforma Continental Task Group for the Extension of the Continental Shelf'), (19617, 'https://ror.org/05gm41t98', 'en', 1, 'https://ror.org/05gm41t98 Joint Clinical Research Centre'), (19618, 'https://ror.org/05gmpv778', 'no_lang_code', 1, 'https://ror.org/05gmpv778 Innolume (Germany)'), (19619, 'https://ror.org/05gqxfr13', 'en', 1, 'https://ror.org/05gqxfr13 Heartland Alliance'), (19620, 'https://ror.org/05gsw2536', 'no_lang_code', 1, 'https://ror.org/05gsw2536 IGNIS Innovation (Canada)'), (19621, 'https://ror.org/05gtsta03', 'en', 1, 'https://ror.org/05gtsta03 Life Raft Group'), (19622, 'https://ror.org/05gv0a532', 'no_lang_code', 1, 'https://ror.org/05gv0a532 Fraport (Germany)'), (19623, 'https://ror.org/05gxeae76', 'en', 1, 'https://ror.org/05gxeae76 Connecticut Center for Primary Care'), (19624, 'https://ror.org/05gxmbr45', 'no_lang_code', 1, 'https://ror.org/05gxmbr45 Crown Packaging (United Kingdom)'), (19625, 'https://ror.org/05gxt5b76', 'en', 1, 'https://ror.org/05gxt5b76 Telluride Adaptive Sports Program'), (19626, 'https://ror.org/05gyeb173', 'fr', 1, 'https://ror.org/05gyeb173 College of General and Vocational Education Cégep de Jonquière'), (19627, 'https://ror.org/05gyk0k71', 'no_lang_code', 1, 'https://ror.org/05gyk0k71 IMS Nanofabrication (Austria)'), (19628, 'https://ror.org/05h0qhk33', 'no_lang_code', 1, 'https://ror.org/05h0qhk33 Double Helix (United States)'), (19629, 'https://ror.org/05h443j18', 'no_lang_code', 1, 'https://ror.org/05h443j18 Innova (Hungary)'), (19630, 'https://ror.org/05h5q0a22', 'no_lang_code', 1, 'https://ror.org/05h5q0a22 CLU (Italy)'), (19631, 'https://ror.org/05h60ts97', 'no_lang_code', 1, 'https://ror.org/05h60ts97 Infoport (Spain)'), (19632, 'https://ror.org/05h6av881', 'no_lang_code', 1, 'https://ror.org/05h6av881 Life & Brain (Germany)'), (19633, 'https://ror.org/05h6qy815', 'en', 1, 'https://ror.org/05h6qy815 Bio Nano Consulting'), (19634, 'https://ror.org/05h70tr57', 'no_lang_code', 1, 'https://ror.org/05h70tr57 Altec Software (Greece)'), (19635, 'https://ror.org/05h8s0v03', 'en', 1, 'https://ror.org/05h8s0v03 The Ohio State University at Mansfield'), (19636, 'https://ror.org/05h8v3e12', 'en', 1, 'https://ror.org/05h8v3e12 Scotland Memorial Hospital'), (19637, 'https://ror.org/05hczjf77', 'no_lang_code', 1, 'https://ror.org/05hczjf77 DNAmicroarray (United States)'), (19638, 'https://ror.org/05hdjr057', 'pt', 1, 'https://ror.org/05hdjr057 Administracao Central do Sistema de Saude'), (19639, 'https://ror.org/05hfas298', 'no_lang_code', 1, 'https://ror.org/05hfas298 Targepeutics (United States)'), (19640, 'https://ror.org/05hgx8167', 'en', 1, 'https://ror.org/05hgx8167 Massachusetts Department of Mental Health'), (19641, 'https://ror.org/05hj3r720', 'en', 1, 'https://ror.org/05hj3r720 Clearity Foundation'), (19642, 'https://ror.org/05hmdkd37', 'no_lang_code', 1, 'https://ror.org/05hmdkd37 Learning Multi Systems (United States)'), (19643, 'https://ror.org/05hp30b06', 'en', 1, 'https://ror.org/05hp30b06 Exploration Place Museum and Science Centre'), (19644, 'https://ror.org/05hphav28', 'fr', 1, 'https://ror.org/05hphav28 Airparif'), (19645, 'https://ror.org/05hq14k73', 'en', 1, 'https://ror.org/05hq14k73 Advanced Lead Acid Battery Consortium'), (19646, 'https://ror.org/05hqw0n54', 'no_lang_code', 1, 'https://ror.org/05hqw0n54 Corden Pharma (United States)'), (19647, 'https://ror.org/05hqxem06', 'en', 1, 'https://ror.org/05hqxem06 Association of British Science Writers'), (19648, 'https://ror.org/05hsggr76', 'en', 1, 'https://ror.org/05hsggr76 Etats-unis. international trade commission United States International Trade Commission'), (19649, 'https://ror.org/05hwfvk38', 'en', 1, 'https://ror.org/05hwfvk38 Touro College'), (19650, 'https://ror.org/05hwnvk36', 'no_lang_code', 1, 'https://ror.org/05hwnvk36 The Bridge (United States)'), (19651, 'https://ror.org/05hxvc906', 'no_lang_code', 1, 'https://ror.org/05hxvc906 Solvay (Netherlands)'), (19652, 'https://ror.org/05hz1rf52', 'no_lang_code', 1, 'https://ror.org/05hz1rf52 Astech Electronics (United Kingdom)'), (19653, 'https://ror.org/05hzvxx71', 'en', 1, 'https://ror.org/05hzvxx71 Autism Society of America'), (19654, 'https://ror.org/05hzwst11', 'no_lang_code', 1, 'https://ror.org/05hzwst11 Lucite International (United Kingdom)'), (19655, 'https://ror.org/05j59av97', 'en', 1, 'https://ror.org/05j59av97 Kista Photonics Research Center'), (19656, 'https://ror.org/05j6xg781', 'no_lang_code', 1, 'https://ror.org/05j6xg781 TeamBest (United States)'), (19657, 'https://ror.org/05j7s4w29', 'no_lang_code', 1, 'https://ror.org/05j7s4w29 SGH Martineau (United Kingdom)'), (19658, 'https://ror.org/05j9fmg63', 'no_lang_code', 1, 'https://ror.org/05j9fmg63 DuPont (Spain)'), (19659, 'https://ror.org/05ja6kg22', 'en', 1, 'https://ror.org/05ja6kg22 Quietmind Foundation'), (19660, 'https://ror.org/05jcb1s51', 'no_lang_code', 1, 'https://ror.org/05jcb1s51 Regio (Estonia)'), (19661, 'https://ror.org/05jd76e15', 'en', 1, 'https://ror.org/05jd76e15 Zero Breast Cancer'), (19662, 'https://ror.org/05jeb9h94', 'en', 1, 'https://ror.org/05jeb9h94 Cemit Center of Excellence in Medicine and IT'), (19663, 'https://ror.org/05jkfya49', 'en', 1, 'https://ror.org/05jkfya49 Mishawaka-Penn-Harris Public Library'), (19664, 'https://ror.org/05jkv6633', 'no_lang_code', 1, 'https://ror.org/05jkv6633 Artemis Intelligent Power (United Kingdom)'), (19665, 'https://ror.org/05jm4z849', 'en', 1, 'https://ror.org/05jm4z849 Pacific Breast Pathology'), (19666, 'https://ror.org/05jmy3s26', 'no_lang_code', 1, 'https://ror.org/05jmy3s26 Artes Biotechnology (Germany)'), (19667, 'https://ror.org/05jnv7j09', 'no_lang_code', 1, 'https://ror.org/05jnv7j09 Michael Baker International (United States)'), (19668, 'https://ror.org/05jp8nm45', 'en', 1, 'https://ror.org/05jp8nm45 Open The Government'), (19669, 'https://ror.org/05jqr8t95', 'no_lang_code', 1, 'https://ror.org/05jqr8t95 Biogas Fuel Cell (Spain)'), (19670, 'https://ror.org/05jqsyj76', 'en', 1, 'https://ror.org/05jqsyj76 German Games Industry Association'), (19671, 'https://ror.org/05jtwwy05', 'en', 1, 'https://ror.org/05jtwwy05 Rock Valley College'), (19672, 'https://ror.org/05jye0b93', 'de', 1, 'https://ror.org/05jye0b93 Institut für Europäische Politik Institute for European Politics'), (19673, 'https://ror.org/05jyxzj98', 'en', 1, 'https://ror.org/05jyxzj98 Meadville Lombard Theological School'), (19674, 'https://ror.org/05k0zr802', 'en', 1, 'https://ror.org/05k0zr802 MultiCare Tacoma General Hospital'), (19675, 'https://ror.org/05k1e9879', 'en', 1, 'https://ror.org/05k1e9879 Health Promotion Services'), (19676, 'https://ror.org/05k2n4n22', 'no_lang_code', 1, 'https://ror.org/05k2n4n22 RELX Group (United States)'), (19677, 'https://ror.org/05k52qr71', 'no_lang_code', 1, 'https://ror.org/05k52qr71 Euroitalia (Italy)'), (19678, 'https://ror.org/05k551411', 'en', 1, 'https://ror.org/05k551411 Racine Art Museum'), (19679, 'https://ror.org/05k5b7r52', 'no_lang_code', 1, 'https://ror.org/05k5b7r52 Eurospital (Italy)'), (19680, 'https://ror.org/05k7amn53', 'no_lang_code', 1, 'https://ror.org/05k7amn53 ESTeam (Sweden)'), (19681, 'https://ror.org/05k7mmk88', 'en', 1, 'https://ror.org/05k7mmk88 Youth Unlimited Programs'), (19682, 'https://ror.org/05k8fh812', 'no_lang_code', 1, 'https://ror.org/05k8fh812 Brechtel (United States)'), (19683, 'https://ror.org/05ka98816', 'no_lang_code', 1, 'https://ror.org/05ka98816 Bio-Prodict (Netherlands)'), (19684, 'https://ror.org/05kb6er29', 'no_lang_code', 1, 'https://ror.org/05kb6er29 SOLIDpower (Switzerland)'), (19685, 'https://ror.org/05kbent92', 'no_lang_code', 1, 'https://ror.org/05kbent92 Trust Control International (France)'), (19686, 'https://ror.org/05kc20304', 'no_lang_code', 1, 'https://ror.org/05kc20304 Netsmart Technologies (United States)'), (19687, 'https://ror.org/05keyq749', 'en', 1, 'https://ror.org/05keyq749 Virginia Community Action Partnership'), (19688, 'https://ror.org/05kf1qd30', 'en', 1, 'https://ror.org/05kf1qd30 Hedberg Public Library'), (19689, 'https://ror.org/05kfe4t97', 'en', 1, 'https://ror.org/05kfe4t97 Innovation Initiatives Ontario North'), (19690, 'https://ror.org/05kfxbf35', 'no_lang_code', 1, 'https://ror.org/05kfxbf35 Carnego Systems (United Kingdom)'), (19691, 'https://ror.org/05kg0va65', 'en', 1, 'https://ror.org/05kg0va65 Healing Co-Operative'), (19692, 'https://ror.org/05kg32t88', 'no_lang_code', 1, 'https://ror.org/05kg32t88 Estanda (Spain)'), (19693, 'https://ror.org/05khkqa44', 'en', 1, 'https://ror.org/05khkqa44 Lietuvos Respublikos vidaus reikalų ministerija Ministry of the Interior of the Republic of Lithuania'), (19694, 'https://ror.org/05kj4rm74', 'en', 1, 'https://ror.org/05kj4rm74 Wood Hudson Cancer Research Laboratory'), (19695, 'https://ror.org/05kjfpp30', 'en', 1, 'https://ror.org/05kjfpp30 Westwood College'), (19696, 'https://ror.org/05km40z28', 'en', 1, 'https://ror.org/05km40z28 Start Treatment & Recovery Centers'), (19697, 'https://ror.org/05km9fv21', 'en', 1, 'https://ror.org/05km9fv21 National Stem Cell Foundation of Australia'), (19698, 'https://ror.org/05kmn9e50', 'en', 1, 'https://ror.org/05kmn9e50 Greater Bridgeport Area Prevention Program'), (19699, 'https://ror.org/05kmsp524', 'en', 1, 'https://ror.org/05kmsp524 Indiana Supreme Court'), (19700, 'https://ror.org/05kn3ey67', 'no_lang_code', 1, 'https://ror.org/05kn3ey67 Encyclopædia Britannica (United States)'), (19701, 'https://ror.org/05kqy9x67', 'no_lang_code', 1, 'https://ror.org/05kqy9x67 Engage (Germany)'), (19702, 'https://ror.org/05kre7h31', 'en', 1, 'https://ror.org/05kre7h31 St. Vincent''s HealthCare'), (19703, 'https://ror.org/05krzb242', 'en', 1, 'https://ror.org/05krzb242 Healthy Teen Network'), (19704, 'https://ror.org/05ktp5w69', 'no_lang_code', 1, 'https://ror.org/05ktp5w69 BioPharm (United Kingdom)'), (19705, 'https://ror.org/05kv82629', 'no_lang_code', 1, 'https://ror.org/05kv82629 Applied Microengineering Limited (United Kingdom)'), (19706, 'https://ror.org/05kw43n08', 'no_lang_code', 1, 'https://ror.org/05kw43n08 Berufsfortbildungswerk'), (19707, 'https://ror.org/05kxf7578', 'no_lang_code', 1, 'https://ror.org/05kxf7578 Sphinx (Netherlands)'), (19708, 'https://ror.org/05kxkjm75', 'no_lang_code', 1, 'https://ror.org/05kxkjm75 Interface Europe (Belgium)'), (19709, 'https://ror.org/05kxs0h64', 'en', 1, 'https://ror.org/05kxs0h64 Kankakee County Museum'), (19710, 'https://ror.org/05kxwp233', 'en', 1, 'https://ror.org/05kxwp233 Oak Lawn Public Library'), (19711, 'https://ror.org/05kyb8602', 'no_lang_code', 1, 'https://ror.org/05kyb8602 Bertec (United States)'), (19712, 'https://ror.org/05kzy7y09', 'en', 1, 'https://ror.org/05kzy7y09 Arthritis Research Institute of America'), (19713, 'https://ror.org/05m029q63', 'it', 1, 'https://ror.org/05m029q63 Federazione Italiana Lavoratori Commercio Albergo Mensa e Servizi'), (19714, 'https://ror.org/05m09p369', 'en', 1, 'https://ror.org/05m09p369 Brown County Library'), (19715, 'https://ror.org/05m15kh47', 'no_lang_code', 1, 'https://ror.org/05m15kh47 Diageo (Ireland)'), (19716, 'https://ror.org/05m21we88', 'no_lang_code', 1, 'https://ror.org/05m21we88 Delta Extinguishers (Belgium)'), (19717, 'https://ror.org/05m4zpg77', 'no_lang_code', 1, 'https://ror.org/05m4zpg77 Materials Development (United States)'), (19718, 'https://ror.org/05m615h78', 'en', 1, 'https://ror.org/05m615h78 Cork County Council'), (19719, 'https://ror.org/05m6bg654', 'en', 1, 'https://ror.org/05m6bg654 Help Committee'), (19720, 'https://ror.org/05m9m0021', 'en', 1, 'https://ror.org/05m9m0021 United Jewish Appeal Federation of New York'), (19721, 'https://ror.org/05mb9ke45', 'no_lang_code', 1, 'https://ror.org/05mb9ke45 GTC Kappelmeyer (Germany)'), (19722, 'https://ror.org/05mbb3v54', 'en', 1, 'https://ror.org/05mbb3v54 Children''s Home of Wheeling'), (19723, 'https://ror.org/05mc3r439', 'en', 1, 'https://ror.org/05mc3r439 Cape Fear Community College'), (19724, 'https://ror.org/05mchsq43', 'en', 1, 'https://ror.org/05mchsq43 Keweenaw Bay Ojibwa Community College'), (19725, 'https://ror.org/05md44a87', 'en', 1, 'https://ror.org/05md44a87 Wyoming Valley Alcohol and Drug Services'), (19726, 'https://ror.org/05me4xs24', 'no_lang_code', 1, 'https://ror.org/05me4xs24 Compugraphics (United Kingdom)'), (19727, 'https://ror.org/05mgtkj71', 'no_lang_code', 1, 'https://ror.org/05mgtkj71 Limetec (United Kingdom)'), (19728, 'https://ror.org/05mhnzk71', 'en', 1, 'https://ror.org/05mhnzk71 Hungarian Chemical Industry Association'), (19729, 'https://ror.org/05mhp5f89', 'no_lang_code', 1, 'https://ror.org/05mhp5f89 Af-cityplan (Czechia)'), (19730, 'https://ror.org/05mn3rr77', 'en', 1, 'https://ror.org/05mn3rr77 National Cancer Registration Service'), (19731, 'https://ror.org/05mngvs08', 'no_lang_code', 1, 'https://ror.org/05mngvs08 HalTech'), (19732, 'https://ror.org/05mq2xn70', 'no_lang_code', 1, 'https://ror.org/05mq2xn70 Drug Prevention Resources'), (19733, 'https://ror.org/05mqvfk86', 'en', 1, 'https://ror.org/05mqvfk86 Association of State Public Health Nutritionists'), (19734, 'https://ror.org/05mr17y43', 'en', 1, 'https://ror.org/05mr17y43 SUDEP Aware'), (19735, 'https://ror.org/05mrhv083', 'en', 1, 'https://ror.org/05mrhv083 Brookdale Community College'), (19736, 'https://ror.org/05mvb6w45', 'en', 1, 'https://ror.org/05mvb6w45 Alaska Network on Domestic Violence and Sexual Assault'), (19737, 'https://ror.org/05mxdx712', 'en', 1, 'https://ror.org/05mxdx712 Trinity United Church of Christ Child Care Centers'), (19738, 'https://ror.org/05mydvn22', 'en', 1, 'https://ror.org/05mydvn22 Massachusetts Technology Collaborative'), (19739, 'https://ror.org/05n13t702', 'en', 1, 'https://ror.org/05n13t702 Washington Radiology Associates'), (19740, 'https://ror.org/05n1gam72', 'en', 1, 'https://ror.org/05n1gam72 Babbage Institute for Knowledge and Information Technologies'), (19741, 'https://ror.org/05n2bp911', 'en', 1, 'https://ror.org/05n2bp911 Eiteljorg Museum of American Indians and Western Art'), (19742, 'https://ror.org/05n2hx334', 'en', 1, 'https://ror.org/05n2hx334 Wood River Ability Program'), (19743, 'https://ror.org/05n3hnq20', 'fr', 1, 'https://ror.org/05n3hnq20 Centre de Transfert de Technologie du Mans'), (19744, 'https://ror.org/05n686b12', 'no_lang_code', 1, 'https://ror.org/05n686b12 Maillefer (Switzerland)'), (19745, 'https://ror.org/05n6ehk94', 'no_lang_code', 1, 'https://ror.org/05n6ehk94 SipNose (Israel)'), (19746, 'https://ror.org/05n7a7b34', 'no_lang_code', 1, 'https://ror.org/05n7a7b34 Moog CSA Engineering (United States)'), (19747, 'https://ror.org/05n8b0n83', 'no_lang_code', 1, 'https://ror.org/05n8b0n83 Insoco (Spain)'), (19748, 'https://ror.org/05nd73j43', 'en', 1, 'https://ror.org/05nd73j43 Libby Ross Foundation'), (19749, 'https://ror.org/05nefdd87', 'no_lang_code', 1, 'https://ror.org/05nefdd87 BioMarck Pharmaceuticals (United States)'), (19750, 'https://ror.org/05ngeh012', 'en', 1, 'https://ror.org/05ngeh012 Northwestern College - Illinois'), (19751, 'https://ror.org/05ngy7r54', 'en', 1, 'https://ror.org/05ngy7r54 Winning Wheels'), (19752, 'https://ror.org/05nhb7q85', 'no_lang_code', 1, 'https://ror.org/05nhb7q85 ALcontrol Laboratories'), (19753, 'https://ror.org/05nkc6r27', 'it', 1, 'https://ror.org/05nkc6r27 Centro Estero per l''Internazionalizzazione Piemonte Agency for Investments, Export and Tourism'), (19754, 'https://ror.org/05nkcfv27', 'fr', 1, 'https://ror.org/05nkcfv27 Fondation Sophia Antipolis'), (19755, 'https://ror.org/05np0jp17', 'en', 1, 'https://ror.org/05np0jp17 Lethbridge College'), (19756, 'https://ror.org/05nrca761', 'no_lang_code', 1, 'https://ror.org/05nrca761 Capgemini (Italy)'), (19757, 'https://ror.org/05nsngn76', 'en', 1, 'https://ror.org/05nsngn76 WellShare International'), (19758, 'https://ror.org/05ntqkc30', 'en', 1, 'https://ror.org/05ntqkc30 Velindre NHS Trust'), (19759, 'https://ror.org/05ntqke24', 'en', 1, 'https://ror.org/05ntqke24 UnityPoint Health'), (19760, 'https://ror.org/05nw98r31', 'en', 1, 'https://ror.org/05nw98r31 European Gravitational Observatory'), (19761, 'https://ror.org/05nwva972', 'en', 1, 'https://ror.org/05nwva972 ICE Publishing'), (19762, 'https://ror.org/05nx6m946', 'fi', 1, 'https://ror.org/05nx6m946 Arkistolaitos National Archives Service'), (19763, 'https://ror.org/05p0z2z51', 'en', 1, 'https://ror.org/05p0z2z51 Goddard College'), (19764, 'https://ror.org/05p1q6h89', 'no_lang_code', 1, 'https://ror.org/05p1q6h89 D Addato Agroalimentare (Italy)'), (19765, 'https://ror.org/05p21nc51', 'en', 1, 'https://ror.org/05p21nc51 United States Quad Rugby Association'), (19766, 'https://ror.org/05p29dk84', 'no_lang_code', 1, 'https://ror.org/05p29dk84 Bisiach & Carru (Italy)'), (19767, 'https://ror.org/05p3we513', 'no_lang_code', 1, 'https://ror.org/05p3we513 Melodea (Israel)'), (19768, 'https://ror.org/05p403c12', 'en', 1, 'https://ror.org/05p403c12 Akron-Summit County Public Library'), (19769, 'https://ror.org/05p4ysp91', 'no_lang_code', 1, 'https://ror.org/05p4ysp91 Advanced Microwave Systems (Greece) ΠΡΟΗΓΜΕΝΑ ΜΙΚΡΟΚΥΜΑΤΙΚΑ ΣΥΣΤΗΜΑΤΑ IKE'), (19770, 'https://ror.org/05p590m36', 'no_lang_code', 1, 'https://ror.org/05p590m36 Artificial Intelligence in Medicine (Canada)'), (19771, 'https://ror.org/05p90pk86', 'no_lang_code', 1, 'https://ror.org/05p90pk86 Culgi (Netherlands)'), (19772, 'https://ror.org/05p9w4h97', 'en', 1, 'https://ror.org/05p9w4h97 Union Graduate College'), (19773, 'https://ror.org/05pbmky22', 'no_lang_code', 1, 'https://ror.org/05pbmky22 Dickinson Wright (United States)'), (19774, 'https://ror.org/05pdgb763', 'no_lang_code', 1, 'https://ror.org/05pdgb763 Analog and Digital Peripherals (United States)'), (19775, 'https://ror.org/05pdz8949', 'no_lang_code', 1, 'https://ror.org/05pdz8949 BFI Betriebstechnik (Germany)'), (19776, 'https://ror.org/05peac723', 'no_lang_code', 1, 'https://ror.org/05peac723 Gammastamp (Italy)'), (19777, 'https://ror.org/05ph11b68', 'no_lang_code', 1, 'https://ror.org/05ph11b68 Tunstall (Ireland)'), (19778, 'https://ror.org/05pnx2m87', 'en', 1, 'https://ror.org/05pnx2m87 Fighting Back Partnership'), (19779, 'https://ror.org/05pqvzr51', 'no_lang_code', 1, 'https://ror.org/05pqvzr51 FlexTech Systems (United States)'), (19780, 'https://ror.org/05pr8kn76', 'no_lang_code', 1, 'https://ror.org/05pr8kn76 Tansna Theraputics (United States)'), (19781, 'https://ror.org/05pt5rg11', 'no_lang_code', 1, 'https://ror.org/05pt5rg11 LexRite (United States)'), (19782, 'https://ror.org/05pvaka44', 'en', 1, 'https://ror.org/05pvaka44 Laramie County Community College'), (19783, 'https://ror.org/05pvjgr61', 'no_lang_code', 1, 'https://ror.org/05pvjgr61 Biker Fashion Arena Hamburg'), (19784, 'https://ror.org/05pvkp656', 'en', 1, 'https://ror.org/05pvkp656 RiverStone Health'), (19785, 'https://ror.org/05px2re83', 'en', 1, 'https://ror.org/05px2re83 Tanner Health System'), (19786, 'https://ror.org/05pxff726', 'no_lang_code', 1, 'https://ror.org/05pxff726 CBRNE (United Kingdom)'), (19787, 'https://ror.org/05q0qkg33', 'en', 1, 'https://ror.org/05q0qkg33 Fontbonne University'), (19788, 'https://ror.org/05q0wgb11', 'en', 1, 'https://ror.org/05q0wgb11 John A. Logan College'), (19789, 'https://ror.org/05q0xtj32', 'no_lang_code', 1, 'https://ror.org/05q0xtj32 Hydrodata (Italy)'), (19790, 'https://ror.org/05q16h268', 'no_lang_code', 1, 'https://ror.org/05q16h268 Total (United Kingdom)'), (19791, 'https://ror.org/05q398y82', 'en', 1, 'https://ror.org/05q398y82 St. John''s Riverside Hospital'), (19792, 'https://ror.org/05q482v10', 'no_lang_code', 1, 'https://ror.org/05q482v10 Ilunion Consulting (Spain)'), (19793, 'https://ror.org/05q4npq70', 'no_lang_code', 1, 'https://ror.org/05q4npq70 Absynth Biologics (United Kingdom)'), (19794, 'https://ror.org/05q6gmw98', 'en', 1, 'https://ror.org/05q6gmw98 Asatrem'), (19795, 'https://ror.org/05q6k4747', 'no_lang_code', 1, 'https://ror.org/05q6k4747 Fullwell Mill (United Kingdom)'), (19796, 'https://ror.org/05q8m5985', 'en', 1, 'https://ror.org/05q8m5985 Center for Security Studies Κέντρο Μελετών Ασφαλείας'), (19797, 'https://ror.org/05qaxe808', 'en', 1, 'https://ror.org/05qaxe808 Inuit Circumpolar Council'), (19798, 'https://ror.org/05qbjh804', 'en', 1, 'https://ror.org/05qbjh804 Spina Bifida Resource Network'), (19799, 'https://ror.org/05qbzsj10', 'en', 1, 'https://ror.org/05qbzsj10 Danish Institute of Fire and Security Technology Danmarks videncenter for brand og sikring'), (19800, 'https://ror.org/05qck2d60', 'no_lang_code', 1, 'https://ror.org/05qck2d60 I+ (Italy)'), (19801, 'https://ror.org/05qeark78', 'no_lang_code', 1, 'https://ror.org/05qeark78 Adicep Technologies (United States)'), (19802, 'https://ror.org/05qhdpg52', 'en', 1, 'https://ror.org/05qhdpg52 Thorax Foundation Ίδρυμα ΘΩΡΑΞ'), (19803, 'https://ror.org/05qjkay50', 'no_lang_code', 1, 'https://ror.org/05qjkay50 ABB (Norway)'), (19804, 'https://ror.org/05qjv6v20', 'en', 1, 'https://ror.org/05qjv6v20 Medina County District Library'), (19805, 'https://ror.org/05qm32213', 'it', 1, 'https://ror.org/05qm32213 Ente Nazionale ACLI Istruzione Professionale National Network OF Services for Training and Employment Promotion'), (19806, 'https://ror.org/05qm91k56', 'en', 1, 'https://ror.org/05qm91k56 International Network for Advancing Science and Policy'), (19807, 'https://ror.org/05qpe4e51', 'en', 1, 'https://ror.org/05qpe4e51 Secondopinion'), (19808, 'https://ror.org/05qq13q49', 'no_lang_code', 1, 'https://ror.org/05qq13q49 CISC Semiconductor (Austria)'), (19809, 'https://ror.org/05qq44506', 'en', 1, 'https://ror.org/05qq44506'), (19810, 'https://ror.org/05qq9j971', 'no_lang_code', 1, 'https://ror.org/05qq9j971 Giotto Biotech (Italy)'), (19811, 'https://ror.org/05qss3897', 'no_lang_code', 1, 'https://ror.org/05qss3897 Bord na Móna (Ireland)'), (19812, 'https://ror.org/05qvwps75', 'en', 1, 'https://ror.org/05qvwps75 Helio International'), (19813, 'https://ror.org/05qzdw571', 'no_lang_code', 1, 'https://ror.org/05qzdw571 Agentscape (Germany)'), (19814, 'https://ror.org/05r1dd276', 'no_lang_code', 1, 'https://ror.org/05r1dd276 ICF International (United Kingdom)'), (19815, 'https://ror.org/05r2g1b90', 'en', 1, 'https://ror.org/05r2g1b90 Annual Reviews'), (19816, 'https://ror.org/05r4z9y47', 'no_lang_code', 1, 'https://ror.org/05r4z9y47 H2 Logic (Denmark)'), (19817, 'https://ror.org/05r5gyx33', 'no_lang_code', 1, 'https://ror.org/05r5gyx33 Hummingbird Precision Machine (United States)'), (19818, 'https://ror.org/05r5zsh59', 'en', 1, 'https://ror.org/05r5zsh59 Genetic Alliance'), (19819, 'https://ror.org/05r66pc04', 'no_lang_code', 1, 'https://ror.org/05r66pc04 Elviex (Greece)'), (19820, 'https://ror.org/05r716r40', 'no_lang_code', 1, 'https://ror.org/05r716r40 Dynamic Concepts (United States)'), (19821, 'https://ror.org/05r830x40', 'en', 1, 'https://ror.org/05r830x40 Grand Forks Air Force Base'), (19822, 'https://ror.org/05r9zy719', 'no_lang_code', 1, 'https://ror.org/05r9zy719 Innowep (Germany)'), (19823, 'https://ror.org/05rczw006', 'en', 1, 'https://ror.org/05rczw006 Scotland County Schools'), (19824, 'https://ror.org/05rdxva62', 'no_lang_code', 1, 'https://ror.org/05rdxva62 Terapio (United States)'), (19825, 'https://ror.org/05rjsp326', 'no_lang_code', 1, 'https://ror.org/05rjsp326 KPMG (United Kingdom)'), (19826, 'https://ror.org/05rkgsm35', 'en', 1, 'https://ror.org/05rkgsm35 Delgado Community College'), (19827, 'https://ror.org/05rmcwb88', 'en', 1, 'https://ror.org/05rmcwb88 Barber–Scotia College'), (19828, 'https://ror.org/05rpt7y81', 'en', 1, 'https://ror.org/05rpt7y81 Wisconsin Maritime Museum'), (19829, 'https://ror.org/05rqggm48', 'en', 1, 'https://ror.org/05rqggm48 New Vista'), (19830, 'https://ror.org/05rs7kt47', 'en', 1, 'https://ror.org/05rs7kt47 Peninsula Library and Historical Society'), (19831, 'https://ror.org/05rtb6q31', 'no_lang_code', 1, 'https://ror.org/05rtb6q31 Life Length (Spain)'), (19832, 'https://ror.org/05rw40a45', 'no_lang_code', 1, 'https://ror.org/05rw40a45 Epleblomsten (Norway)'), (19833, 'https://ror.org/05rx7ak81', 'no_lang_code', 1, 'https://ror.org/05rx7ak81 Eos Neuroscience (United States)'), (19834, 'https://ror.org/05rxghr70', 'no_lang_code', 1, 'https://ror.org/05rxghr70 Receptors (United States)'), (19835, 'https://ror.org/05ry7ey09', 'en', 1, 'https://ror.org/05ry7ey09 Chanda Plan Foundation'), (19836, 'https://ror.org/05rzk0426', 'en', 1, 'https://ror.org/05rzk0426 West Michigan Cancer Center'), (19837, 'https://ror.org/05s1dqz78', 'no_lang_code', 1, 'https://ror.org/05s1dqz78 451 Research (United Kingdom)'), (19838, 'https://ror.org/05s1j9511', 'no_lang_code', 1, 'https://ror.org/05s1j9511 dMetrics (United States)'), (19839, 'https://ror.org/05s1w1241', 'en', 1, 'https://ror.org/05s1w1241 Aplastic Anemia and MDS International Foundation'), (19840, 'https://ror.org/05s259e10', 'en', 1, 'https://ror.org/05s259e10 Tashkent Pediatric Medical Institute'), (19841, 'https://ror.org/05s3yra18', 'en', 1, 'https://ror.org/05s3yra18 International Union for Electricity applications'), (19842, 'https://ror.org/05s43gd64', 'en', 1, 'https://ror.org/05s43gd64 Bio Base Europe'), (19843, 'https://ror.org/05s47z440', 'no_lang_code', 1, 'https://ror.org/05s47z440 Folder Media'), (19844, 'https://ror.org/05s48v759', 'no_lang_code', 1, 'https://ror.org/05s48v759 Meccanica Nova (Italy)'), (19845, 'https://ror.org/05s4pg032', 'en', 1, 'https://ror.org/05s4pg032 Walsh College'), (19846, 'https://ror.org/05s52c121', 'en', 1, 'https://ror.org/05s52c121 Santa Clara County Behavioral Health Services'), (19847, 'https://ror.org/05s565w61', 'no_lang_code', 1, 'https://ror.org/05s565w61 MeaningCloud (Spain)'), (19848, 'https://ror.org/05s5kq870', 'en', 1, 'https://ror.org/05s5kq870 Institute of International Education'), (19849, 'https://ror.org/05s6yhj52', 'en', 1, 'https://ror.org/05s6yhj52 American Association for Higher Education and Accreditation'), (19850, 'https://ror.org/05sa51379', 'en', 1, 'https://ror.org/05sa51379 Birmingham Repertory Theatre'), (19851, 'https://ror.org/05sadtq09', 'no_lang_code', 1, 'https://ror.org/05sadtq09 Sycamore Entertainment Group (United States)'), (19852, 'https://ror.org/05se6w266', 'en', 1, 'https://ror.org/05se6w266 Dutch Institute for Healthcare Improvement'), (19853, 'https://ror.org/05sej3528', 'en', 1, 'https://ror.org/05sej3528 Centraal Orgaan voor Kwaliteitsaangelegenheden in de Zuivel Netherlands Controlling Authority for Milk and Milk Products'), (19854, 'https://ror.org/05sft7551', 'no_lang_code', 1, 'https://ror.org/05sft7551 Living Systems (United States)'), (19855, 'https://ror.org/05sfzsk90', 'en', 1, 'https://ror.org/05sfzsk90 College of Western Idaho'), (19856, 'https://ror.org/05shefr17', 'de', 1, 'https://ror.org/05shefr17 Handwerkskammer Trier'), (19857, 'https://ror.org/05shjdq49', 'no_lang_code', 1, 'https://ror.org/05shjdq49 Argo (Greece)'), (19858, 'https://ror.org/05sjw7d59', 'no_lang_code', 1, 'https://ror.org/05sjw7d59 Key Industrial Software Systems (United Kingdom)'), (19859, 'https://ror.org/05sjz3b60', 'no_lang_code', 1, 'https://ror.org/05sjz3b60 British Standards Institution'), (19860, 'https://ror.org/05spzbw39', 'en', 1, 'https://ror.org/05spzbw39 Brown Mackie College'), (19861, 'https://ror.org/05srg8k79', 'en', 1, 'https://ror.org/05srg8k79 Uganda Protestant Medical Bureau'), (19862, 'https://ror.org/05ssz5085', 'no_lang_code', 1, 'https://ror.org/05ssz5085 Materials Technology (United Kingdom)'), (19863, 'https://ror.org/05sv2w840', 'en', 1, 'https://ror.org/05sv2w840 Silver Lake College'), (19864, 'https://ror.org/05svz4z02', 'en', 1, 'https://ror.org/05svz4z02 Los Alamos Public Schools'), (19865, 'https://ror.org/05swdaw77', 'en', 1, 'https://ror.org/05swdaw77 Urals Research Center for Radiation Medicine'), (19866, 'https://ror.org/05swz5441', 'en', 1, 'https://ror.org/05swz5441 Institute for Social Research'), (19867, 'https://ror.org/05sy37k83', 'no_lang_code', 1, 'https://ror.org/05sy37k83 Eurofins (United States)'), (19868, 'https://ror.org/05sz9r015', 'en', 1, 'https://ror.org/05sz9r015 Massachusetts General Court'), (19869, 'https://ror.org/05sze1z59', 'en', 1, 'https://ror.org/05sze1z59 American Thrombosis and Hemostasis Network'), (19870, 'https://ror.org/05szq2344', 'en', 1, 'https://ror.org/05szq2344 Pingjin Hospital 平津医院'), (19871, 'https://ror.org/05t0e1a79', 'no_lang_code', 1, 'https://ror.org/05t0e1a79 Mannesmann Demag (Germany)'), (19872, 'https://ror.org/05t28nr70', 'en', 1, 'https://ror.org/05t28nr70 Cedarhurst Center For The Arts'), (19873, 'https://ror.org/05t738f97', 'no_lang_code', 1, 'https://ror.org/05t738f97 Geoanalysis (Greece) ΓΕΩΑΝΑΛΥΣΗ'), (19874, 'https://ror.org/05t7wym31', 'en', 1, 'https://ror.org/05t7wym31 Federation of Clinical Immunology Societies'), (19875, 'https://ror.org/05t9f6t69', 'fr', 1, 'https://ror.org/05t9f6t69 Institut National d’Hygiène Publique'), (19876, 'https://ror.org/05tbrqg27', 'no_lang_code', 1, 'https://ror.org/05tbrqg27 Agrobiogen (Germany)'), (19877, 'https://ror.org/05td14x20', 'no_lang_code', 1, 'https://ror.org/05td14x20 Hunting Energy Services (United Kingdom)'), (19878, 'https://ror.org/05td2ja26', 'no_lang_code', 1, 'https://ror.org/05td2ja26 MBC Research (United States)'), (19879, 'https://ror.org/05td63169', 'no_lang_code', 1, 'https://ror.org/05td63169 Deltatec (Belgium)'), (19880, 'https://ror.org/05te4ha46', 'no_lang_code', 1, 'https://ror.org/05te4ha46 Sparks & Co (France)'), (19881, 'https://ror.org/05tf37670', 'en', 1, 'https://ror.org/05tf37670 The Public Theater'), (19882, 'https://ror.org/05tf5t656', 'no_lang_code', 1, 'https://ror.org/05tf5t656 Baebies (United States)'), (19883, 'https://ror.org/05th36098', 'en', 1, 'https://ror.org/05th36098 Association for the Advancement of Mexican Americans'), (19884, 'https://ror.org/05thfaz05', 'en', 1, 'https://ror.org/05thfaz05 Mach4 Lab'), (19885, 'https://ror.org/05thqfz72', 'no_lang_code', 1, 'https://ror.org/05thqfz72 Ultra Electronics (United Kingdom)'), (19886, 'https://ror.org/05tmezz59', 'pt', 1, 'https://ror.org/05tmezz59 Agrupamento de Escolas de Caldas de Vizela'), (19887, 'https://ror.org/05tpcqx04', 'en', 1, 'https://ror.org/05tpcqx04 Volunteers of America Alaska'), (19888, 'https://ror.org/05tpn0h14', 'no_lang_code', 1, 'https://ror.org/05tpn0h14 LightForm (United States)'), (19889, 'https://ror.org/05tq5tc82', 'en', 1, 'https://ror.org/05tq5tc82 Concordia Seminary Seminario Concordia'), (19890, 'https://ror.org/05ttdb909', 'en', 1, 'https://ror.org/05ttdb909 Max Perutz Library'), (19891, 'https://ror.org/05tvxb796', 'fr', 1, 'https://ror.org/05tvxb796 Fédération des Parcs Naturels Régionaux'), (19892, 'https://ror.org/05tyn2m51', 'no_lang_code', 1, 'https://ror.org/05tyn2m51 COG Analytics (United States)'), (19893, 'https://ror.org/05tyymd87', 'no_lang_code', 1, 'https://ror.org/05tyymd87 DHL (Switzerland)'), (19894, 'https://ror.org/05tzsrw37', 'en', 1, 'https://ror.org/05tzsrw37 Joint Nature Conservation Committee'), (19895, 'https://ror.org/05v0gvx94', 'en', 1, 'https://ror.org/05v0gvx94 National Institute for Research and Development of Isotopic and Molecular Technologies'), (19896, 'https://ror.org/05v0str08', 'en', 1, 'https://ror.org/05v0str08 Midland University'), (19897, 'https://ror.org/05v1frz10', 'no_lang_code', 1, 'https://ror.org/05v1frz10 United Aircraft (Russia) Объединённая авиастроительная корпорация'), (19898, 'https://ror.org/05v2dq092', 'fr', 1, 'https://ror.org/05v2dq092 Centre International des Technologies de l''Environnement de Tunis'), (19899, 'https://ror.org/05v4dhb64', 'no_lang_code', 1, 'https://ror.org/05v4dhb64 Bluefrog Design (United Kingdom)'), (19900, 'https://ror.org/05v5s8n75', 'no_lang_code', 1, 'https://ror.org/05v5s8n75 Ipec (United Kingdom)'), (19901, 'https://ror.org/05v60wx04', 'no_lang_code', 1, 'https://ror.org/05v60wx04 Oryx International Growth Fund (Ireland)'), (19902, 'https://ror.org/05v7e2b49', 'no_lang_code', 1, 'https://ror.org/05v7e2b49 Hazen Research (United States)'), (19903, 'https://ror.org/05v7gv656', 'en', 1, 'https://ror.org/05v7gv656 Federal Energy Regulatory Commission'), (19904, 'https://ror.org/05v8rqa59', 'no_lang_code', 1, 'https://ror.org/05v8rqa59 FTL Systems (United Kingdom)'), (19905, 'https://ror.org/05v9tzp52', 'en', 1, 'https://ror.org/05v9tzp52 National Physician and Family Referral'), (19906, 'https://ror.org/05vb5dy28', 'en', 1, 'https://ror.org/05vb5dy28 International Dark Sky Association'), (19907, 'https://ror.org/05vcy2476', 'it', 1, 'https://ror.org/05vcy2476 Fondazione Vincenzo Pansadoro Vincenzo Pansadoro Foundation'), (19908, 'https://ror.org/05vdt4g65', 'no_lang_code', 1, 'https://ror.org/05vdt4g65 TeloVISION (United States)'), (19909, 'https://ror.org/05veett18', 'en', 1, 'https://ror.org/05veett18 Technology Partners Foundation'), (19910, 'https://ror.org/05vekkk95', 'no_lang_code', 1, 'https://ror.org/05vekkk95 Duffy Engineering and Associates (United States)'), (19911, 'https://ror.org/05vepfk90', 'no_lang_code', 1, 'https://ror.org/05vepfk90 Cosmas (United States)'), (19912, 'https://ror.org/05vg3p333', 'no_lang_code', 1, 'https://ror.org/05vg3p333 Lakeshore Group (United States)'), (19913, 'https://ror.org/05vgm9d49', 'no_lang_code', 1, 'https://ror.org/05vgm9d49 FKuR Kunststoff (Germany)'), (19914, 'https://ror.org/05vjt2s15', 'no_lang_code', 1, 'https://ror.org/05vjt2s15 EnerSearch'), (19915, 'https://ror.org/05vkmhj10', 'en', 1, 'https://ror.org/05vkmhj10 Georgia Gwinnett College'), (19916, 'https://ror.org/05vnht861', 'en', 1, 'https://ror.org/05vnht861 Essex County Council'), (19917, 'https://ror.org/05vnnaf55', 'no_lang_code', 1, 'https://ror.org/05vnnaf55 Kompania Węglowa (Poland)'), (19918, 'https://ror.org/05vp4ka74', 'en', 1, 'https://ror.org/05vp4ka74 Bundesministerium für Gesundheit Federal Ministry of Health'), (19919, 'https://ror.org/05vphmq64', 'en', 1, 'https://ror.org/05vphmq64 Natrona County School District'), (19920, 'https://ror.org/05vs3ac92', 'no_lang_code', 1, 'https://ror.org/05vs3ac92 Postnova Analytics (United States)'), (19921, 'https://ror.org/05vs4fq96', 'en', 1, 'https://ror.org/05vs4fq96 Hillsdale College'), (19922, 'https://ror.org/05vs4ye41', 'no_lang_code', 1, 'https://ror.org/05vs4ye41 Ansmart (United Kingdom)'), (19923, 'https://ror.org/05vyrqa83', 'en', 1, 'https://ror.org/05vyrqa83 Marylhurst University'), (19924, 'https://ror.org/05vytj560', 'en', 1, 'https://ror.org/05vytj560 Scioto County Juvenile Court'), (19925, 'https://ror.org/05vzvmc30', 'no_lang_code', 1, 'https://ror.org/05vzvmc30 DE Technologies (United States)'), (19926, 'https://ror.org/05w0qtv14', 'en', 1, 'https://ror.org/05w0qtv14 American InterContinental University'), (19927, 'https://ror.org/05w1d3q28', 'en', 1, 'https://ror.org/05w1d3q28 Coastal Behavioral Healthcare'), (19928, 'https://ror.org/05w1nn565', 'en', 1, 'https://ror.org/05w1nn565 Ministerstvo vnitra Ministry of the Interior'), (19929, 'https://ror.org/05w3cd862', 'en', 1, 'https://ror.org/05w3cd862 Cottey College'), (19930, 'https://ror.org/05w4kcm12', 'no_lang_code', 1, 'https://ror.org/05w4kcm12 Emergence Tech Limited (United Kingdom)'), (19931, 'https://ror.org/05w59af50', 'no_lang_code', 1, 'https://ror.org/05w59af50 Deimos Engenharia (Portugal)'), (19932, 'https://ror.org/05w6jpy68', 'no_lang_code', 1, 'https://ror.org/05w6jpy68 Kanthal (Sweden)'), (19933, 'https://ror.org/05w72d176', 'en', 1, 'https://ror.org/05w72d176 The People of the United Methodist Church'), (19934, 'https://ror.org/05w8pa285', 'no_lang_code', 1, 'https://ror.org/05w8pa285 Iron Pump (Denmark)'), (19935, 'https://ror.org/05w8qnb04', 'no_lang_code', 1, 'https://ror.org/05w8qnb04 Axion Biosystems (United States)'), (19936, 'https://ror.org/05w93eq54', 'en', 1, 'https://ror.org/05w93eq54 Drug Free Charlotte County'), (19937, 'https://ror.org/05wbpnh19', 'en', 1, 'https://ror.org/05wbpnh19 Fishermen and Scientists Research Society'), (19938, 'https://ror.org/05wbr5e76', 'en', 1, 'https://ror.org/05wbr5e76 Kansas Department for Aging and Disability Services'), (19939, 'https://ror.org/05wd26881', 'en', 1, 'https://ror.org/05wd26881 Gogebic Community College'), (19940, 'https://ror.org/05wffnp93', 'en', 1, 'https://ror.org/05wffnp93 Institut biblique moody Moody Bible Institute'), (19941, 'https://ror.org/05wfyqn93', 'en', 1, 'https://ror.org/05wfyqn93 Missouri Baptist University'), (19942, 'https://ror.org/05wg6j504', 'en', 1, 'https://ror.org/05wg6j504 Catholic Community Services Of Southern Arizona'), (19943, 'https://ror.org/05wge1d25', 'en', 1, 'https://ror.org/05wge1d25 GS1 Germany'), (19944, 'https://ror.org/05wpve720', 'no_lang_code', 1, 'https://ror.org/05wpve720 AdCapital (Germany)'), (19945, 'https://ror.org/05wrxmc86', 'fr', 1, 'https://ror.org/05wrxmc86 Association des Communicateurs Scientifiques du Québec'), (19946, 'https://ror.org/05wrxrk69', 'en', 1, 'https://ror.org/05wrxrk69 Center For Social Innovation'), (19947, 'https://ror.org/05ws8g470', 'en', 1, 'https://ror.org/05ws8g470 Institute for Biotechnology and Bioengineering'), (19948, 'https://ror.org/05wtnrd36', 'no_lang_code', 1, 'https://ror.org/05wtnrd36 Dr. Schär (Italy)'), (19949, 'https://ror.org/05wttv044', 'en', 1, 'https://ror.org/05wttv044 Berwyn Public Library'), (19950, 'https://ror.org/05wvn6j57', 'no_lang_code', 1, 'https://ror.org/05wvn6j57 Invent (Italy)'), (19951, 'https://ror.org/05wx9za24', 'no_lang_code', 1, 'https://ror.org/05wx9za24 Ortec (France)'), (19952, 'https://ror.org/05x1fc249', 'no_lang_code', 1, 'https://ror.org/05x1fc249 Pyrexar Medical (United States)'), (19953, 'https://ror.org/05x2sc041', 'en', 1, 'https://ror.org/05x2sc041 Project Walk-Austin'), (19954, 'https://ror.org/05x3a2381', 'no_lang_code', 1, 'https://ror.org/05x3a2381 KCET'), (19955, 'https://ror.org/05x3t0w31', 'en', 1, 'https://ror.org/05x3t0w31 Richland Community College'), (19956, 'https://ror.org/05x45y691', 'en', 1, 'https://ror.org/05x45y691 United Fire Service Women'), (19957, 'https://ror.org/05x54c792', 'en', 1, 'https://ror.org/05x54c792 Women''s Cancer Resource Center'), (19958, 'https://ror.org/05x6z3731', 'no_lang_code', 1, 'https://ror.org/05x6z3731 International Biomedical (United States)'), (19959, 'https://ror.org/05x76z110', 'no_lang_code', 1, 'https://ror.org/05x76z110 John Caunt Scientific (United Kingdom)'), (19960, 'https://ror.org/05x8aff37', 'no_lang_code', 1, 'https://ror.org/05x8aff37 Matrasur Composites (France)'), (19961, 'https://ror.org/05xc7zw37', 'no_lang_code', 1, 'https://ror.org/05xc7zw37 CIM Group (Serbia)'), (19962, 'https://ror.org/05xca6483', 'en', 1, 'https://ror.org/05xca6483 Bay Path University'), (19963, 'https://ror.org/05xcney74', 'it', 1, 'https://ror.org/05xcney74 Azienda Sanitaria Locale Roma 3'), (19964, 'https://ror.org/05xdrja94', 'en', 1, 'https://ror.org/05xdrja94 Gail Borden Public Library District'), (19965, 'https://ror.org/05xdwy846', 'fr', 1, 'https://ror.org/05xdwy846 Centre de Recherche en Économie Appliquée pour le Développement'), (19966, 'https://ror.org/05xevhk22', 'en', 1, 'https://ror.org/05xevhk22 Tiffin University'), (19967, 'https://ror.org/05xfx3765', 'en', 1, 'https://ror.org/05xfx3765 Women''s International Leadership Institute'), (19968, 'https://ror.org/05xhmq411', 'no_lang_code', 1, 'https://ror.org/05xhmq411 Control 2K'), (19969, 'https://ror.org/05xhvxn93', 'no_lang_code', 1, 'https://ror.org/05xhvxn93 MemEx (Italy)'), (19970, 'https://ror.org/05xj9r987', 'en', 1, 'https://ror.org/05xj9r987 Forum Internazionale ed Europeo di Ricerche sull’Immigrazione International and European Forum on Migration Research'), (19971, 'https://ror.org/05xmmkz88', 'no_lang_code', 1, 'https://ror.org/05xmmkz88 Clear Guide Medical (United States)'), (19972, 'https://ror.org/05xn6v862', 'no_lang_code', 1, 'https://ror.org/05xn6v862 ChromaDex (United States)'), (19973, 'https://ror.org/05xng4y02', 'no_lang_code', 1, 'https://ror.org/05xng4y02 Gridpoint solutions (United Kingdom)'), (19974, 'https://ror.org/05xpqbj32', 'no_lang_code', 1, 'https://ror.org/05xpqbj32 Forschungsinstitut für Mineralische und Metallische Werkstoffe Edelsteine/Edemetalle Research Institute for Mineral and Metallic Materials Gemstones/Precious Metals'), (19975, 'https://ror.org/05xqwqf73', 'en', 1, 'https://ror.org/05xqwqf73 European Embedded Control Institute Institut Européen de Contrôle Embarqué'), (19976, 'https://ror.org/05xr55z04', 'no_lang_code', 1, 'https://ror.org/05xr55z04 Angewandte Micro Messtechnik (Germany)'), (19977, 'https://ror.org/05xtrfa17', 'no_lang_code', 1, 'https://ror.org/05xtrfa17 Denso (Germany)'), (19978, 'https://ror.org/05xvkjh87', 'no_lang_code', 1, 'https://ror.org/05xvkjh87 Metabolomx (United States)'), (19979, 'https://ror.org/05xxwq927', 'en', 1, 'https://ror.org/05xxwq927 European Blind Union'), (19980, 'https://ror.org/05xyrf554', 'de', 1, 'https://ror.org/05xyrf554 Intelligent Transport Systems Niedersachsen'), (19981, 'https://ror.org/05xzrxq68', 'no_lang_code', 1, 'https://ror.org/05xzrxq68 Amos Media (United States)'), (19982, 'https://ror.org/05y10b138', 'pt', 1, 'https://ror.org/05y10b138 Centro Tecnológico da Pedra Natural de Portugal'), (19983, 'https://ror.org/05y20sz16', 'pt', 1, 'https://ror.org/05y20sz16 Ministry of National Defense Ministério da Defesa Nacional'), (19984, 'https://ror.org/05y26rr34', 'en', 1, 'https://ror.org/05y26rr34 Ancilla College'), (19985, 'https://ror.org/05y3agr14', 'no_lang_code', 1, 'https://ror.org/05y3agr14 Ai2 (United Kingdom)'), (19986, 'https://ror.org/05y64p741', 'no_lang_code', 1, 'https://ror.org/05y64p741 MP Biomedicals (United States)'), (19987, 'https://ror.org/05y742b63', 'no_lang_code', 1, 'https://ror.org/05y742b63 Delley Seeds and Plants (Switzerland)'), (19988, 'https://ror.org/05y9mxh13', 'pt', 1, 'https://ror.org/05y9mxh13 Hospital do Mar'), (19989, 'https://ror.org/05yakbd29', 'no_lang_code', 1, 'https://ror.org/05yakbd29 Aspen Products Group (United States)'), (19990, 'https://ror.org/05yapj268', 'en', 1, 'https://ror.org/05yapj268 Education Scotland Foghlam Alba'), (19991, 'https://ror.org/05ybzyq68', 'no_lang_code', 1, 'https://ror.org/05ybzyq68 Castor Technologies (Canada)'), (19992, 'https://ror.org/05ye48k35', 'no_lang_code', 1, 'https://ror.org/05ye48k35 Brainlab (Germany)'), (19993, 'https://ror.org/05ye51q48', 'no_lang_code', 1, 'https://ror.org/05ye51q48 Phylogeny (United States)'), (19994, 'https://ror.org/05ygm7711', 'en', 1, 'https://ror.org/05ygm7711 GEICAM – Spanish Breast Cancer Group Grupo Español de Investigación en Cáncer de Mama'), (19995, 'https://ror.org/05yh81666', 'en', 1, 'https://ror.org/05yh81666 Stephen Gaynor School'), (19996, 'https://ror.org/05yhsbg08', 'no_lang_code', 1, 'https://ror.org/05yhsbg08 OS Alliance (Austria)'), (19997, 'https://ror.org/05ykwy958', 'no_lang_code', 1, 'https://ror.org/05ykwy958 Dyson Technical Ceramics (United Kingdom)'), (19998, 'https://ror.org/05ym5dp96', 'en', 1, 'https://ror.org/05ym5dp96 Liverpool City Council'), (19999, 'https://ror.org/05yny8j84', 'en', 1, 'https://ror.org/05yny8j84 Americas Commercial Transportation Research'), (20000, 'https://ror.org/05yq10v05', 'en', 1, 'https://ror.org/05yq10v05 Global Alliance of Mental Illness Advocacy Networks-Europe'), (20001, 'https://ror.org/0003ahp46', 'es', 1, 'https://ror.org/0003ahp46 Universidad ETAC'), (20002, 'https://ror.org/0003ccc38', 'en', 1, 'https://ror.org/0003ccc38 St Monicas Hospital'), (20003, 'https://ror.org/0004h8z94', 'en', 1, 'https://ror.org/0004h8z94 US Ignite'), (20004, 'https://ror.org/0004r6b85', 'en', 1, 'https://ror.org/0004r6b85 Hochschule Biberach University of Applied Sciences Biberach'), (20005, 'https://ror.org/0006g9r95', 'es', 1, 'https://ror.org/0006g9r95 Universidad América Latina'), (20006, 'https://ror.org/000848h33', 'fr', 1, 'https://ror.org/000848h33 Hautes Études Chrétiennes de Management et de Mathématiques Appliquées'), (20007, 'https://ror.org/000az4664', 'en', 1, 'https://ror.org/000az4664 Canada Foundation for Innovation Fondation canadienne pour l''innovation'), (20008, 'https://ror.org/000bkwn04', 'fr', 1, 'https://ror.org/000bkwn04 Université Protestante d''Afrique de l''Ouest'), (20009, 'https://ror.org/000ed3w25', 'en', 1, 'https://ror.org/000ed3w25 St Vincent''s Hospital Sydney'), (20010, 'https://ror.org/000f7jy90', 'en', 1, 'https://ror.org/000f7jy90 Danmarks Statistik Statistics Denmark'), (20011, 'https://ror.org/000g0zm60', 'en', 1, 'https://ror.org/000g0zm60 University of Jendouba Université de jendouba جامعة جندوبة'), (20012, 'https://ror.org/000hc8n84', 'no_lang_code', 1, 'https://ror.org/000hc8n84 Sequoia Scientific (United States)'), (20013, 'https://ror.org/000hzts19', 'no_lang_code', 1, 'https://ror.org/000hzts19 Synthesia Group (Spain)'), (20014, 'https://ror.org/000jvv118', 'en', 1, 'https://ror.org/000jvv118 Ziane Achour University of Djelfa جامعة زيان عاشور-الجلفة'), (20015, 'https://ror.org/000kfx178', 'en', 1, 'https://ror.org/000kfx178 Calderstones Partnership NHS Foundation Trust'), (20016, 'https://ror.org/000kgrw24', 'no_lang_code', 1, 'https://ror.org/000kgrw24 Savcor (Finland)'), (20017, 'https://ror.org/000mgxg22', 'es', 1, 'https://ror.org/000mgxg22 Universidad Anáhuac Querétaro'), (20018, 'https://ror.org/000qn5756', 'en', 1, 'https://ror.org/000qn5756 Newport News Public Schools'), (20019, 'https://ror.org/000qwnj69', 'en', 1, 'https://ror.org/000qwnj69 Institute of Public Administration of Canada'), (20020, 'https://ror.org/000rhjc77', 'es', 1, 'https://ror.org/000rhjc77 Universidad Centro de Altos Estudios en Ciencias Exactas'), (20021, 'https://ror.org/000s9mk50', 'no_lang_code', 1, 'https://ror.org/000s9mk50 Ordecsys (Switzerland)'), (20022, 'https://ror.org/000t5z820', 'no_lang_code', 1, 'https://ror.org/000t5z820 SensoMotoric Instruments (Germany)'), (20023, 'https://ror.org/000ttz716', 'en', 1, 'https://ror.org/000ttz716 Ludlow Community Hospital'); INSERT INTO `rors` VALUES (20024, 'https://ror.org/000wpdz03', 'no_lang_code', 1, 'https://ror.org/000wpdz03 Plaxica (United Kingdom)'), (20025, 'https://ror.org/000xmhb57', 'es', 1, 'https://ror.org/000xmhb57 Universidad Incca de Colombia'), (20026, 'https://ror.org/0010mjy66', 'en', 1, 'https://ror.org/0010mjy66 Byurakan Astrophysical Observatory'), (20027, 'https://ror.org/0010vn771', 'en', 1, 'https://ror.org/0010vn771 Dunston Hill Hospital'), (20028, 'https://ror.org/00143hx31', 'no_lang_code', 1, 'https://ror.org/00143hx31 Varsi (Slovenia)'), (20029, 'https://ror.org/00158bh81', 'no_lang_code', 1, 'https://ror.org/00158bh81 Monarch Media (United States)'), (20030, 'https://ror.org/00160a123', 'fr', 1, 'https://ror.org/00160a123 École Supérieure des Multimédia, Informatique & Réseaux'), (20031, 'https://ror.org/00161f548', 'en', 1, 'https://ror.org/00161f548 Kobe Medical Center 神戸医療センター'), (20032, 'https://ror.org/0017nar98', 'no_lang_code', 1, 'https://ror.org/0017nar98 Safe Engineering Services & Technologies (Canada)'), (20033, 'https://ror.org/00185f784', 'no_lang_code', 1, 'https://ror.org/00185f784 OptiEnz Sensors (United States)'), (20034, 'https://ror.org/0018h5d52', 'en', 1, 'https://ror.org/0018h5d52 Virginia Western Community College'), (20035, 'https://ror.org/0019g1982', 'es', 1, 'https://ror.org/0019g1982 Universidad de Hermosillo'), (20036, 'https://ror.org/001bj3k32', 'en', 1, 'https://ror.org/001bj3k32 Administration for Children''s Services'), (20037, 'https://ror.org/001d74r65', 'en', 1, 'https://ror.org/001d74r65 Post and Telecom Administration Póst og Fjarskiptastofnun'), (20038, 'https://ror.org/001eqnp72', 'no_lang_code', 1, 'https://ror.org/001eqnp72 Transeuropean Consultants for Transport, Development and Information Technology (Greece) διευρωπαϊκών Συμβούλων Μεταφορών, Ανάπτυξης και Πληροφορικής'), (20039, 'https://ror.org/001f54z88', 'no_lang_code', 1, 'https://ror.org/001f54z88 Phytodata'), (20040, 'https://ror.org/001fphc23', 'en', 1, 'https://ror.org/001fphc23 Universidade de Cabo Verde University of Cape Verde'), (20041, 'https://ror.org/001fypf81', 'pt', 1, 'https://ror.org/001fypf81 Universidade Unigranrio'), (20042, 'https://ror.org/001gc6461', 'en', 1, 'https://ror.org/001gc6461 Oregon Public Broadcasting'), (20043, 'https://ror.org/001gmby50', 'no_lang_code', 1, 'https://ror.org/001gmby50 Oracle (Spain)'), (20044, 'https://ror.org/001m8k465', 'es', 1, 'https://ror.org/001m8k465 Universidad Iberoamericana de Ciencias y Tecnología'), (20045, 'https://ror.org/001msrs66', 'fr', 1, 'https://ror.org/001msrs66 Institut Panafricain pour le Développement Afrique Centrale'), (20046, 'https://ror.org/001n2yb14', 'no_lang_code', 1, 'https://ror.org/001n2yb14 Zadig (Italy)'), (20047, 'https://ror.org/001nq7s39', 'en', 1, 'https://ror.org/001nq7s39 American Jewish University'), (20048, 'https://ror.org/001pma463', 'en', 1, 'https://ror.org/001pma463 University of Kara Université de Kara'), (20049, 'https://ror.org/001pw8x48', 'no_lang_code', 1, 'https://ror.org/001pw8x48 NZI (Spain)'), (20050, 'https://ror.org/001qp3c53', 'no_lang_code', 1, 'https://ror.org/001qp3c53 Procoat Tecnologias (Spain)'), (20051, 'https://ror.org/001rahr89', 'en', 1, 'https://ror.org/001rahr89 Affiliated Hospital of Nantong University 南通大学附属医院'), (20052, 'https://ror.org/001szys49', 'en', 1, 'https://ror.org/001szys49 Turkish Society of HVAC and Sanitary Engineers'), (20053, 'https://ror.org/001v8xr05', 'fr', 1, 'https://ror.org/001v8xr05 Institut Supérieur de la Communication, des Affaires et du Management'), (20054, 'https://ror.org/001xgg719', 'no_lang_code', 1, 'https://ror.org/001xgg719 Metal Matrix Cast Composites (United States)'), (20055, 'https://ror.org/001y71q13', 'no_lang_code', 1, 'https://ror.org/001y71q13 Wave Dragon (Denmark)'), (20056, 'https://ror.org/001ym8t39', 'en', 1, 'https://ror.org/001ym8t39 Peer Services'), (20057, 'https://ror.org/001yzzh53', 'en', 1, 'https://ror.org/001yzzh53 Hyogo Chuo National Hospital 兵庫中央病院'), (20058, 'https://ror.org/001z81t90', 'no_lang_code', 1, 'https://ror.org/001z81t90 OPeNDAP'), (20059, 'https://ror.org/001zajz59', 'no_lang_code', 1, 'https://ror.org/001zajz59 Canadian Malartic (Canada)'), (20060, 'https://ror.org/001zdzp98', 'en', 1, 'https://ror.org/001zdzp98 Collège universitaire dominicain Dominican University College'), (20061, 'https://ror.org/00238wh69', 'no_lang_code', 1, 'https://ror.org/00238wh69 TSD Projects (Italy)'), (20062, 'https://ror.org/0023n7k70', 'en', 1, 'https://ror.org/0023n7k70 Memorial Blood Centers'), (20063, 'https://ror.org/0023x8n30', 'no_lang_code', 1, 'https://ror.org/0023x8n30 Science Wares (United States)'), (20064, 'https://ror.org/0024fc285', 'en', 1, 'https://ror.org/0024fc285 FrontLine Service'), (20065, 'https://ror.org/00259c050', 'no_lang_code', 1, 'https://ror.org/00259c050 Chibaken Saiseikai Narashino Hospital 千葉県済生会習志野病院'), (20066, 'https://ror.org/0025p3069', 'es', 1, 'https://ror.org/0025p3069 Corporación Universitaria de Colombia Ideas'), (20067, 'https://ror.org/0026b6z69', 'en', 1, 'https://ror.org/0026b6z69 Whitchurch Community Hospital'), (20068, 'https://ror.org/0027kz691', 'no_lang_code', 1, 'https://ror.org/0027kz691 Sbs Byfornyelse'), (20069, 'https://ror.org/0028kf729', 'en', 1, 'https://ror.org/0028kf729 Concordia University Irvine'), (20070, 'https://ror.org/0028r9r35', 'en', 1, 'https://ror.org/0028r9r35 Akureyri Hospital Sjúkrahúsið á Akureyri'), (20071, 'https://ror.org/0029df882', 'es', 1, 'https://ror.org/0029df882 Universidad Modelo'), (20072, 'https://ror.org/002ekrn29', 'en', 1, 'https://ror.org/002ekrn29 Abingdon Community Hospital'), (20073, 'https://ror.org/002gezp78', 'es', 1, 'https://ror.org/002gezp78 Instituto Universitario de Tecnologia y Humanidades'), (20074, 'https://ror.org/002j43z05', 'no_lang_code', 1, 'https://ror.org/002j43z05 Wolframcarb (Italy)'), (20075, 'https://ror.org/002p5mx82', 'no_lang_code', 1, 'https://ror.org/002p5mx82 Microtest (United Kingdom)'), (20076, 'https://ror.org/002pa9318', 'en', 1, 'https://ror.org/002pa9318 East Lancashire Hospitals NHS Trust'), (20077, 'https://ror.org/002rcs021', 'es', 1, 'https://ror.org/002rcs021 Universidad Partenón de Cozumel'), (20078, 'https://ror.org/002sayz20', 'no_lang_code', 1, 'https://ror.org/002sayz20 SMST Designers & Constructors (Netherlands)'), (20079, 'https://ror.org/002sg8b56', 'no_lang_code', 1, 'https://ror.org/002sg8b56 Resource (United States)'), (20080, 'https://ror.org/002wz8j95', 'no_lang_code', 1, 'https://ror.org/002wz8j95 Norton Hydraulics (United Kingdom)'), (20081, 'https://ror.org/002yssj28', 'en', 1, 'https://ror.org/002yssj28 Wharfedale Hospital'), (20082, 'https://ror.org/002z77y34', 'en', 1, 'https://ror.org/002z77y34 Copperstone University'), (20083, 'https://ror.org/002ze7e15', 'no_lang_code', 1, 'https://ror.org/002ze7e15 Syntiron (United States)'), (20084, 'https://ror.org/0030hgr47', 'es', 1, 'https://ror.org/0030hgr47 Universidad Nacional José María Arguedas'), (20085, 'https://ror.org/00315pw02', 'pt', 1, 'https://ror.org/00315pw02 Universidade Potiguar'), (20086, 'https://ror.org/0038dsf96', 'en', 1, 'https://ror.org/0038dsf96 St Leonards Community Hospital'), (20087, 'https://ror.org/003ct7658', 'pt', 1, 'https://ror.org/003ct7658 Centro Universitário Católico Salesiano Auxilium'), (20088, 'https://ror.org/003dyzj34', 'en', 1, 'https://ror.org/003dyzj34 Danetre Hospital'), (20089, 'https://ror.org/003e62q52', 'en', 1, 'https://ror.org/003e62q52 Ellesmere Port Hospital'), (20090, 'https://ror.org/003fj3t94', 'en', 1, 'https://ror.org/003fj3t94 Swanage Community Hospital'), (20091, 'https://ror.org/003g85c66', 'en', 1, 'https://ror.org/003g85c66 Silver Buffalo Consulting'), (20092, 'https://ror.org/003gh8k45', 'es', 1, 'https://ror.org/003gh8k45 Universidad Tecnológica del Sureste de Veracruz'), (20093, 'https://ror.org/003jrsn97', 'no_lang_code', 1, 'https://ror.org/003jrsn97 Software AG (Italy)'), (20094, 'https://ror.org/003kfm697', 'no_lang_code', 1, 'https://ror.org/003kfm697 Niagara Scientific Products (United States)'), (20095, 'https://ror.org/003mpdt17', 'es', 1, 'https://ror.org/003mpdt17 Universidad Católica Silva Henríquez'), (20096, 'https://ror.org/003pb1s55', 'en', 1, 'https://ror.org/003pb1s55 South West London and St George''s Mental Health NHS Trust'), (20097, 'https://ror.org/003r53j91', 'en', 1, 'https://ror.org/003r53j91 Royal Navy'), (20098, 'https://ror.org/003s4cb46', 'no_lang_code', 1, 'https://ror.org/003s4cb46 YIT (Finland)'), (20099, 'https://ror.org/003sfv155', 'en', 1, 'https://ror.org/003sfv155 Nuclear Physics European Collaboration Committee'), (20100, 'https://ror.org/003srnj92', 'no_lang_code', 1, 'https://ror.org/003srnj92 MicroDish (Netherlands)'), (20101, 'https://ror.org/003vxvw45', 'pt', 1, 'https://ror.org/003vxvw45 Universidade da Amazônia'), (20102, 'https://ror.org/003wm4260', 'es', 1, 'https://ror.org/003wm4260 Universitario Crandon'), (20103, 'https://ror.org/003wrb977', 'en', 1, 'https://ror.org/003wrb977 Toiyabe Indian Health Project'), (20104, 'https://ror.org/0040db356', 'en', 1, 'https://ror.org/0040db356 Al Fashir University جامعة الفاشر'), (20105, 'https://ror.org/0042wf948', 'no_lang_code', 1, 'https://ror.org/0042wf948 Hochschule Hólar Hólar University College Hólaskóli - Háskólinn á Hólum'), (20106, 'https://ror.org/0042ycb06', 'no_lang_code', 1, 'https://ror.org/0042ycb06 Naftosol (Greece)'), (20107, 'https://ror.org/0046y6b22', 'pt', 1, 'https://ror.org/0046y6b22 Centro Universitário Ítalo Brasileiro'), (20108, 'https://ror.org/0047ad446', 'no_lang_code', 1, 'https://ror.org/0047ad446 Yara (United Kingdom)'), (20109, 'https://ror.org/0048r6h17', 'no_lang_code', 1, 'https://ror.org/0048r6h17 United Silicon Carbide (United States)'), (20110, 'https://ror.org/0049xjz07', 'en', 1, 'https://ror.org/0049xjz07 San Luis Obispo County Public Health Department'), (20111, 'https://ror.org/004b3k735', 'no_lang_code', 1, 'https://ror.org/004b3k735 Sigma Engineering (Germany)'), (20112, 'https://ror.org/004ckc033', 'en', 1, 'https://ror.org/004ckc033 National Stroke Foundation'), (20113, 'https://ror.org/004dan487', 'fr', 1, 'https://ror.org/004dan487 Centre Hospitalier Universitaire de La Réunion'), (20114, 'https://ror.org/004fs0e42', 'en', 1, 'https://ror.org/004fs0e42 National University of Cajamarca Universidad Nacional de Cajamarca'), (20115, 'https://ror.org/004hn8266', 'en', 1, 'https://ror.org/004hn8266 Danish National Police'), (20116, 'https://ror.org/004k51631', 'en', 1, 'https://ror.org/004k51631 Sheridan College'), (20117, 'https://ror.org/004kq1w56', 'en', 1, 'https://ror.org/004kq1w56 Mesoamerican University Universidad Mesoamericana'), (20118, 'https://ror.org/004nw8z31', 'no_lang_code', 1, 'https://ror.org/004nw8z31 Studiengesellschaft für Eisenerzaufbereitung (Germany)'), (20119, 'https://ror.org/004nxe453', 'es', 1, 'https://ror.org/004nxe453 Universidad Evangélica del Paraguay'), (20120, 'https://ror.org/004nyzb81', 'es', 1, 'https://ror.org/004nyzb81 Universidad Privada de Santa Cruz de la Sierra'), (20121, 'https://ror.org/004pedq54', 'de', 1, 'https://ror.org/004pedq54 Katholisches Kinderkrankenhaus Wilhelmstift'), (20122, 'https://ror.org/004qdne14', 'no_lang_code', 1, 'https://ror.org/004qdne14 Source Production & Equipment Company (United States)'), (20123, 'https://ror.org/004rjvc46', 'no_lang_code', 1, 'https://ror.org/004rjvc46 Home Bank (United States)'), (20124, 'https://ror.org/004wx9438', 'no_lang_code', 1, 'https://ror.org/004wx9438 Micropyretics Heater International (United States)'), (20125, 'https://ror.org/004xtaq37', 'es', 1, 'https://ror.org/004xtaq37 Universidad Especializada del Contador Público Autorizado'), (20126, 'https://ror.org/004y9tt39', 'pt', 1, 'https://ror.org/004y9tt39 Instituto Superior de Ciências Económicas e Empresariais'), (20127, 'https://ror.org/004z6x951', 'en', 1, 'https://ror.org/004z6x951 Collège marianopolis Marianopolis College'), (20128, 'https://ror.org/004zb6b85', 'en', 1, 'https://ror.org/004zb6b85 Spire Cheshire Hospital'), (20129, 'https://ror.org/004zfsx81', 'no_lang_code', 1, 'https://ror.org/004zfsx81 Embraer (Portugal)'), (20130, 'https://ror.org/0052qvr31', 'fr', 1, 'https://ror.org/0052qvr31 École Normale Supérieure Casablanca'), (20131, 'https://ror.org/0053y3939', 'es', 1, 'https://ror.org/0053y3939 Universidad del Futbol y Ciencias del Deporte'), (20132, 'https://ror.org/005430417', 'no_lang_code', 1, 'https://ror.org/005430417 Arqiva (United Kingdom)'), (20133, 'https://ror.org/0057ag334', 'pt', 1, 'https://ror.org/0057ag334 Agostinho Neto University, Universidade Agostinho Neto'), (20134, 'https://ror.org/0057f6x09', 'en', 1, 'https://ror.org/0057f6x09 Airedale NHS Foundation Trust'), (20135, 'https://ror.org/005a4vt43', 'en', 1, 'https://ror.org/005a4vt43 Ohio Domestic Violence Network'), (20136, 'https://ror.org/005bfja03', 'en', 1, 'https://ror.org/005bfja03 Regenesys Business School'), (20137, 'https://ror.org/005c60751', 'en', 1, 'https://ror.org/005c60751 Raritan Valley Community College'), (20138, 'https://ror.org/005cdk606', 'no_lang_code', 1, 'https://ror.org/005cdk606 Visual Awareness Research Group (United States)'), (20139, 'https://ror.org/005cgg117', 'es', 1, 'https://ror.org/005cgg117 Universidad Estatal de Bolívar'), (20140, 'https://ror.org/005jzz257', 'en', 1, 'https://ror.org/005jzz257 Liverpool Community Health NHS Trust'), (20141, 'https://ror.org/005kb9y44', 'no_lang_code', 1, 'https://ror.org/005kb9y44 Vinidea'), (20142, 'https://ror.org/005s79z43', 'no_lang_code', 1, 'https://ror.org/005s79z43 Rolatube Technology (United Kingdom)'), (20143, 'https://ror.org/005tyn647', 'en', 1, 'https://ror.org/005tyn647 Bibliographical Society of Canada La Société Bibliographique du Canada'), (20144, 'https://ror.org/005vfwz38', 'no_lang_code', 1, 'https://ror.org/005vfwz38 Gifu Kyoritsu University 岐阜協立大学'), (20145, 'https://ror.org/005xdc256', 'es', 1, 'https://ror.org/005xdc256 Fundación Universitaria Bellas Artes'), (20146, 'https://ror.org/005ywxj74', 'en', 1, 'https://ror.org/005ywxj74 Yobe State University'), (20147, 'https://ror.org/005zc2807', 'no_lang_code', 1, 'https://ror.org/005zc2807 Tissue Regeneration Systems (United States)'), (20148, 'https://ror.org/00603mc70', 'no_lang_code', 1, 'https://ror.org/00603mc70 University of Lusaka'), (20149, 'https://ror.org/0060wre92', 'en', 1, 'https://ror.org/0060wre92 Troitsk Institute for Innovation and Fusion Research Троицкий институт инновационных и термоядерных исследований'), (20150, 'https://ror.org/0063qh129', 'no_lang_code', 1, 'https://ror.org/0063qh129 Hungarian Electricity Private (Hungary)'), (20151, 'https://ror.org/0063tkv49', 'en', 1, 'https://ror.org/0063tkv49 Kaduna State University'), (20152, 'https://ror.org/0066vpg85', 'en', 1, 'https://ror.org/0066vpg85 Jiujiang University 九江学院'), (20153, 'https://ror.org/0068fs539', 'no_lang_code', 1, 'https://ror.org/0068fs539 TTS (Sweden)'), (20154, 'https://ror.org/006a4jj40', 'en', 1, 'https://ror.org/006a4jj40 Mount Stromlo Observatory'), (20155, 'https://ror.org/006bj3v15', 'no_lang_code', 1, 'https://ror.org/006bj3v15 Peppermint (Germany)'), (20156, 'https://ror.org/006cvtz77', 'en', 1, 'https://ror.org/006cvtz77 Kebbi State University of Science and Technology'), (20157, 'https://ror.org/006ghrq92', 'no_lang_code', 1, 'https://ror.org/006ghrq92 Principia Ingenieros Consultores'), (20158, 'https://ror.org/006gmnk03', 'no_lang_code', 1, 'https://ror.org/006gmnk03 Tecnia'), (20159, 'https://ror.org/006gxfz55', 'no_lang_code', 1, 'https://ror.org/006gxfz55 Terminal San Giorgio (Italy)'), (20160, 'https://ror.org/006jqh454', 'en', 1, 'https://ror.org/006jqh454 Brookfields Hospital'), (20161, 'https://ror.org/006nw5s10', 'en', 1, 'https://ror.org/006nw5s10 Wellesley Institute'), (20162, 'https://ror.org/006s85q77', 'no_lang_code', 1, 'https://ror.org/006s85q77 Michelin (France)'), (20163, 'https://ror.org/006sa3014', 'en', 1, 'https://ror.org/006sa3014 Rivers Hospital'), (20164, 'https://ror.org/006sw6d69', 'en', 1, 'https://ror.org/006sw6d69 Scottish Agricultural Science Agency'), (20165, 'https://ror.org/006tpsn23', 'en', 1, 'https://ror.org/006tpsn23 College of Marin'), (20166, 'https://ror.org/006yr9253', 'es', 1, 'https://ror.org/006yr9253 Campo Catino Astronomical Observatory Osservatorio Astronomico di Campo Catino'), (20167, 'https://ror.org/006zfr810', 'en', 1, 'https://ror.org/006zfr810 Philippine Educational Theater Association'), (20168, 'https://ror.org/006zn6z18', 'en', 1, 'https://ror.org/006zn6z18 Xinxiang Central Hospital 新乡市中心医院'), (20169, 'https://ror.org/006zzfd13', 'pt', 1, 'https://ror.org/006zzfd13 Centro Universitário da Fundação Educacional de Barretos'), (20170, 'https://ror.org/0072e5x58', 'fr', 1, 'https://ror.org/0072e5x58 University Notre Dame of Haiti Université Notre Dame d''Haïti'), (20171, 'https://ror.org/00746ch50', 'en', 1, 'https://ror.org/00746ch50 Modern University for Information and Technology الجامعة الحديثة للتكنولوجيا والمعلومات'), (20172, 'https://ror.org/0077djf60', 'no_lang_code', 1, 'https://ror.org/0077djf60 Landauer (United States)'), (20173, 'https://ror.org/0078tmr20', 'es', 1, 'https://ror.org/0078tmr20 Universidad Hebraica'), (20174, 'https://ror.org/0079mgn81', 'no_lang_code', 1, 'https://ror.org/0079mgn81 Modelon (Sweden)'), (20175, 'https://ror.org/007b4bn60', 'no_lang_code', 1, 'https://ror.org/007b4bn60 McWane Technology (United Kingdom)'), (20176, 'https://ror.org/007b5mw80', 'en', 1, 'https://ror.org/007b5mw80 Physicians for a Smoke-Free Canada'), (20177, 'https://ror.org/007bkwj81', 'no_lang_code', 1, 'https://ror.org/007bkwj81 Oktal (France)'), (20178, 'https://ror.org/007bv1h22', 'en', 1, 'https://ror.org/007bv1h22 The Edgbaston Hospital'), (20179, 'https://ror.org/007chxf81', 'en', 1, 'https://ror.org/007chxf81 Universidad de Pinar del Río University of Pinar del Río'), (20180, 'https://ror.org/007drf487', 'es', 1, 'https://ror.org/007drf487 Centro de Investigación Docencia y Consultoria Administrativa'), (20181, 'https://ror.org/007dt0z55', 'en', 1, 'https://ror.org/007dt0z55 Holy Cross Hospital'), (20182, 'https://ror.org/007e25j64', 'no_lang_code', 1, 'https://ror.org/007e25j64 NanoPhos (Greece)'), (20183, 'https://ror.org/007f12622', 'en', 1, 'https://ror.org/007f12622 Bognor Regis War Memorial Hospital'), (20184, 'https://ror.org/007fxh757', 'pt', 1, 'https://ror.org/007fxh757 Centro Universitário Salesiano de São Paulo'), (20185, 'https://ror.org/007gsak37', 'en', 1, 'https://ror.org/007gsak37 National Public Health Information Coalition'), (20186, 'https://ror.org/007h7f935', 'en', 1, 'https://ror.org/007h7f935 State University of Haiti, University of Haiti Université d''État d''haïti'), (20187, 'https://ror.org/007hw9631', 'no_lang_code', 1, 'https://ror.org/007hw9631 Surface Phenomena Researches Group (Russia)'), (20188, 'https://ror.org/007m7ww56', 'es', 1, 'https://ror.org/007m7ww56 Lamar Universidad'), (20189, 'https://ror.org/007n30b05', 'en', 1, 'https://ror.org/007n30b05 MPC Corporation'), (20190, 'https://ror.org/007pfmx21', 'no_lang_code', 1, 'https://ror.org/007pfmx21 Seafarm (Netherlands)'), (20191, 'https://ror.org/007phxq15', 'en', 1, 'https://ror.org/007phxq15 N.D. Zelinsky Institute of Organic Chemistry Федеральное государственное бюджетное учреждение науки Институт органической химии им. Н.Д. Зелинского Российской академии наук'), (20192, 'https://ror.org/007qdam28', 'pt', 1, 'https://ror.org/007qdam28 Centro Universitário de Lins'), (20193, 'https://ror.org/007t9h129', 'en', 1, 'https://ror.org/007t9h129 Universidade de Vassouras University of Vassouras'), (20194, 'https://ror.org/007ywk955', 'es', 1, 'https://ror.org/007ywk955 Universidad Bethesda'), (20195, 'https://ror.org/0084en736', 'es', 1, 'https://ror.org/0084en736 Universidad Regional del Sureste'), (20196, 'https://ror.org/0085ewn55', 'es', 1, 'https://ror.org/0085ewn55 Universidad del Istmo University of the Isthmus'), (20197, 'https://ror.org/0086db414', 'en', 1, 'https://ror.org/0086db414 Hôpital Ignace Deen Ignace Deen Hospital'), (20198, 'https://ror.org/0086t2w58', 'no_lang_code', 1, 'https://ror.org/0086t2w58 Dustin (Norway)'), (20199, 'https://ror.org/0087jna26', 'en', 1, 'https://ror.org/0087jna26 Jorge Basadre Grohmann National University Universidad Nacional Jorge Basadre Grohmann'), (20200, 'https://ror.org/0087wh857', 'es', 1, 'https://ror.org/0087wh857 Institución Universitaria Colegio Mayor del Cauca'), (20201, 'https://ror.org/0089sg868', 'no_lang_code', 1, 'https://ror.org/0089sg868 Risk Management Solutions (United Kingdom)'), (20202, 'https://ror.org/008am1c32', 'no_lang_code', 1, 'https://ror.org/008am1c32 Recore Systems (Netherlands)'), (20203, 'https://ror.org/008bzz504', 'es', 1, 'https://ror.org/008bzz504 Universidad Xicotepetl'), (20204, 'https://ror.org/008g13a47', 'ms', 1, 'https://ror.org/008g13a47 Sirim Berhad'), (20205, 'https://ror.org/008ggzb67', 'no_lang_code', 1, 'https://ror.org/008ggzb67 Navtech Radar (United Kingdom)'), (20206, 'https://ror.org/008jpgg46', 'en', 1, 'https://ror.org/008jpgg46 New England Wild Flower Society'), (20207, 'https://ror.org/008ksm830', 'en', 1, 'https://ror.org/008ksm830 Valley City Public School District'), (20208, 'https://ror.org/008kv0w14', 'en', 1, 'https://ror.org/008kv0w14 Siberian Center for Environmental Research and Training Сибирский центр климато-экологических исследований и образования'), (20209, 'https://ror.org/008ngcp91', 'en', 1, 'https://ror.org/008ngcp91 Central London Community Healthcare NHS Trust'), (20210, 'https://ror.org/008nycg72', 'no_lang_code', 1, 'https://ror.org/008nycg72 SynChem (United States)'), (20211, 'https://ror.org/008rn4f38', 'es', 1, 'https://ror.org/008rn4f38 Universidad Tecnológica Nicaragüense'), (20212, 'https://ror.org/008rp3t36', 'no_lang_code', 1, 'https://ror.org/008rp3t36 Ocera Therapeutics (United States)'), (20213, 'https://ror.org/008s23110', 'no_lang_code', 1, 'https://ror.org/008s23110 Metso (Finland)'), (20214, 'https://ror.org/008t11f85', 'fr', 1, 'https://ror.org/008t11f85 Université Ouaga II'), (20215, 'https://ror.org/008tcyj69', 'it', 1, 'https://ror.org/008tcyj69 Ospedale di Sanremo'), (20216, 'https://ror.org/008v08256', 'fr', 1, 'https://ror.org/008v08256 Université de Cepromad'), (20217, 'https://ror.org/008v1x891', 'en', 1, 'https://ror.org/008v1x891 Pathways to Housing'), (20218, 'https://ror.org/008wxtx05', 'no_lang_code', 1, 'https://ror.org/008wxtx05 Ossidian Technologies (Ireland)'), (20219, 'https://ror.org/008xh4d89', 'en', 1, 'https://ror.org/008xh4d89 Brixiis Astronomical Observatory'), (20220, 'https://ror.org/008yv5115', 'no_lang_code', 1, 'https://ror.org/008yv5115 MetaSystem (Italy)'), (20221, 'https://ror.org/0090bh305', 'no_lang_code', 1, 'https://ror.org/0090bh305 Proveca (United Kingdom)'), (20222, 'https://ror.org/0093xx764', 'no_lang_code', 1, 'https://ror.org/0093xx764 Moog (United Kingdom)'), (20223, 'https://ror.org/0094fh067', 'no_lang_code', 1, 'https://ror.org/0094fh067 Manpower Employment Organisation'), (20224, 'https://ror.org/0095wd727', 'no_lang_code', 1, 'https://ror.org/0095wd727 Robbe (France)'), (20225, 'https://ror.org/0096wds27', 'en', 1, 'https://ror.org/0096wds27 Tartu Science Park'), (20226, 'https://ror.org/00985q454', 'en', 1, 'https://ror.org/00985q454 Science, Technology, Engineering and Mathematics Network'), (20227, 'https://ror.org/0098w0b67', 'en', 1, 'https://ror.org/0098w0b67 Teignmouth Community Hospital'), (20228, 'https://ror.org/009apaj69', 'en', 1, 'https://ror.org/009apaj69 Cherkasy National University Черкаський національний університет імені Богдана Хмельницького'), (20229, 'https://ror.org/009axdy66', 'no_lang_code', 1, 'https://ror.org/009axdy66 Erka Group (Turkey)'), (20230, 'https://ror.org/009b3qm07', 'en', 1, 'https://ror.org/009b3qm07 PAU Education'), (20231, 'https://ror.org/009czp143', 'en', 1, 'https://ror.org/009czp143 Shaanxi Provincial People''s Hospital 陕西省人民医院'), (20232, 'https://ror.org/009drq556', 'en', 1, 'https://ror.org/009drq556 Bells University of Technology'), (20233, 'https://ror.org/009dw2t03', 'en', 1, 'https://ror.org/009dw2t03 Pima County Health Department'), (20234, 'https://ror.org/009e19j97', 'no_lang_code', 1, 'https://ror.org/009e19j97 Nissan (United Kingdom)'), (20235, 'https://ror.org/009ephb22', 'no_lang_code', 1, 'https://ror.org/009ephb22 Rood Wit Blauw Water Services (Netherlands)'), (20236, 'https://ror.org/009fkxv41', 'en', 1, 'https://ror.org/009fkxv41 Arturo Michelena University Universidad Arturo Michelena'), (20237, 'https://ror.org/009jr9909', 'no_lang_code', 1, 'https://ror.org/009jr9909 Sagivtech (Israel)'), (20238, 'https://ror.org/009kktb11', 'en', 1, 'https://ror.org/009kktb11 Los Andes Peruvian University Universidad Peruana Los Andes'), (20239, 'https://ror.org/009n3eh62', 'en', 1, 'https://ror.org/009n3eh62 Oakland Family Services'), (20240, 'https://ror.org/009ng5f87', 'no_lang_code', 1, 'https://ror.org/009ng5f87 Modulex (Denmark)'), (20241, 'https://ror.org/009nnap37', 'en', 1, 'https://ror.org/009nnap37 Institute of Accountancy Arusha'), (20242, 'https://ror.org/009q43145', 'no_lang_code', 1, 'https://ror.org/009q43145 Transfer Devices (United States)'), (20243, 'https://ror.org/009rrq568', 'nl', 1, 'https://ror.org/009rrq568 Kenniscentrum Papier en Karton'), (20244, 'https://ror.org/009tveq15', 'en', 1, 'https://ror.org/009tveq15 National Open University of Nigeria'), (20245, 'https://ror.org/009x26v36', 'no_lang_code', 1, 'https://ror.org/009x26v36 Mitsubishi Heavy Industries (Italy)'), (20246, 'https://ror.org/009ytxb56', 'es', 1, 'https://ror.org/009ytxb56 Asociación Psicoanalítica del Uruguay'), (20247, 'https://ror.org/00a3sq030', 'en', 1, 'https://ror.org/00a3sq030 Franklin University'), (20248, 'https://ror.org/00a8ct372', 'en', 1, 'https://ror.org/00a8ct372 Bridlington Hospital'), (20249, 'https://ror.org/00aa17k52', 'es', 1, 'https://ror.org/00aa17k52 Instituto Profesional Ipg'), (20250, 'https://ror.org/00ab9nq73', 'en', 1, 'https://ror.org/00ab9nq73 Indian Maritime University இந்தியக் கடல்சார் பல்கலைக்கழகம்'), (20251, 'https://ror.org/00ah3j950', 'en', 1, 'https://ror.org/00ah3j950 Fountain University'), (20252, 'https://ror.org/00ajddz62', 'en', 1, 'https://ror.org/00ajddz62 Amateur Telescope Makers of Boston'), (20253, 'https://ror.org/00ajy2k49', 'en', 1, 'https://ror.org/00ajy2k49 Cygnet Hospital Beckton'), (20254, 'https://ror.org/00ak30749', 'en', 1, 'https://ror.org/00ak30749 Cheadle Community Hospital'), (20255, 'https://ror.org/00amt5186', 'pt', 1, 'https://ror.org/00amt5186 Centro Universitário Lusíada'), (20256, 'https://ror.org/00amxdy06', 'en', 1, 'https://ror.org/00amxdy06 La Cañada Observatory Observatorio de La Cañada'), (20257, 'https://ror.org/00an7pj80', 'no_lang_code', 1, 'https://ror.org/00an7pj80 William Demant Holding (Denmark)'), (20258, 'https://ror.org/00aq5m079', 'pt', 1, 'https://ror.org/00aq5m079 Centro Universitario de Araras Dr Edmunso Ulson'), (20259, 'https://ror.org/00aqcbq31', 'no_lang_code', 1, 'https://ror.org/00aqcbq31 Testmark Laboratories (Canada)'), (20260, 'https://ror.org/00arjnt84', 'pt', 1, 'https://ror.org/00arjnt84 Centro Universitário de Goiás'), (20261, 'https://ror.org/00awfcg31', 'no_lang_code', 1, 'https://ror.org/00awfcg31 Oval Window Audio (United States)'), (20262, 'https://ror.org/00ax83b61', 'en', 1, 'https://ror.org/00ax83b61 Triangle Universities Nuclear Laboratory'), (20263, 'https://ror.org/00axfqm84', 'en', 1, 'https://ror.org/00axfqm84 Rockland County Department of Mental Health'), (20264, 'https://ror.org/00axnmm79', 'no_lang_code', 1, 'https://ror.org/00axnmm79 Signo Motus (Italy)'), (20265, 'https://ror.org/00ay59j04', 'en', 1, 'https://ror.org/00ay59j04 Koujin Hospital 紘仁病院'), (20266, 'https://ror.org/00aze9982', 'en', 1, 'https://ror.org/00aze9982 St. Paul''s University'), (20267, 'https://ror.org/00b06cz11', 'de', 1, 'https://ror.org/00b06cz11 Kinderkrankenhaus auf der Bult'), (20268, 'https://ror.org/00b1c0c11', 'es', 1, 'https://ror.org/00b1c0c11 Universidad Santa Lucía'), (20269, 'https://ror.org/00b37sa87', 'es', 1, 'https://ror.org/00b37sa87 Universidad de Concepción del Uruguay'), (20270, 'https://ror.org/00b3e0r50', 'no_lang_code', 1, 'https://ror.org/00b3e0r50 Water Services Corporation (Malta)'), (20271, 'https://ror.org/00b43q041', 'en', 1, 'https://ror.org/00b43q041 County Hospital Louth'), (20272, 'https://ror.org/00b6drk25', 'en', 1, 'https://ror.org/00b6drk25 Government Finance Officers Association'), (20273, 'https://ror.org/00b747122', 'de', 1, 'https://ror.org/00b747122 Kantonsspital Baselland'), (20274, 'https://ror.org/00b787347', 'de', 1, 'https://ror.org/00b787347 Naturland'), (20275, 'https://ror.org/00b7ckn36', 'en', 1, 'https://ror.org/00b7ckn36 Bellevue University'), (20276, 'https://ror.org/00b8g9t96', 'en', 1, 'https://ror.org/00b8g9t96 Kumeu Observatory'), (20277, 'https://ror.org/00bcwc583', 'en', 1, 'https://ror.org/00bcwc583 Molina Center for Energy and the Environment'), (20278, 'https://ror.org/00bda6055', 'no_lang_code', 1, 'https://ror.org/00bda6055 Sensor-Technik Wiedemann (Germany)'), (20279, 'https://ror.org/00bgp5503', 'no_lang_code', 1, 'https://ror.org/00bgp5503 Water & Earth Technologie (United States)'), (20280, 'https://ror.org/00bk35j03', 'en', 1, 'https://ror.org/00bk35j03 NF Observatory'), (20281, 'https://ror.org/00bmh7e34', 'es', 1, 'https://ror.org/00bmh7e34 Universidad Autónoma de Centro América'), (20282, 'https://ror.org/00bn8y738', 'en', 1, 'https://ror.org/00bn8y738 Primary Care Development Corporation'), (20283, 'https://ror.org/00bpwbx65', 'en', 1, 'https://ror.org/00bpwbx65 National Composites Centre'), (20284, 'https://ror.org/00bq8y167', 'no_lang_code', 1, 'https://ror.org/00bq8y167 Arcadis (Canada)'), (20285, 'https://ror.org/00br73y72', 'en', 1, 'https://ror.org/00br73y72 Atlantic School of Theology'), (20286, 'https://ror.org/00brc6r59', 'en', 1, 'https://ror.org/00brc6r59 National University of Engineering Universidad Nacional de Ingeniería'), (20287, 'https://ror.org/00c12ad68', 'no_lang_code', 1, 'https://ror.org/00c12ad68 Opera North (United Kingdom)'), (20288, 'https://ror.org/00c1w3156', 'en', 1, 'https://ror.org/00c1w3156 Maryland Area Health Education Center West'), (20289, 'https://ror.org/00c4rk012', 'no_lang_code', 1, 'https://ror.org/00c4rk012 Selcom (Italy)'), (20290, 'https://ror.org/00c6kkt76', 'no_lang_code', 1, 'https://ror.org/00c6kkt76 PLS Consult (Denmark)'), (20291, 'https://ror.org/00c7sr793', 'en', 1, 'https://ror.org/00c7sr793 Tonbridge Cottage Hospital'), (20292, 'https://ror.org/00c8emq34', 'nl', 1, 'https://ror.org/00c8emq34 Vilans'), (20293, 'https://ror.org/00cacz449', 'fr', 1, 'https://ror.org/00cacz449 Institut Supérieur d''Etudes Sociales'), (20294, 'https://ror.org/00cants75', 'en', 1, 'https://ror.org/00cants75 Bishop''s Castle Community Hospital'), (20295, 'https://ror.org/00cbzxk82', 'no_lang_code', 1, 'https://ror.org/00cbzxk82 Econova (Sweden)'), (20296, 'https://ror.org/00cedjf57', 'no_lang_code', 1, 'https://ror.org/00cedjf57 Turbocoating (Italy)'), (20297, 'https://ror.org/00cepga67', 'en', 1, 'https://ror.org/00cepga67 Lambeth Hospital'), (20298, 'https://ror.org/00cepgz04', 'en', 1, 'https://ror.org/00cepgz04 National Higher School of Statistics and Applied Economy المدرسة الوطنية العليا للاحصاء و الاقتصاد التطبيقي الجزائر'), (20299, 'https://ror.org/00cey1j90', 'es', 1, 'https://ror.org/00cey1j90 Universidad Metropolitana'), (20300, 'https://ror.org/00cfsj734', 'en', 1, 'https://ror.org/00cfsj734 St. Joseph''s Hospital'), (20301, 'https://ror.org/00ck9ex56', 'en', 1, 'https://ror.org/00ck9ex56 Malta Enterprise'), (20302, 'https://ror.org/00crq8079', 'en', 1, 'https://ror.org/00crq8079 Euxton Hall Hospital'), (20303, 'https://ror.org/00crwr158', 'en', 1, 'https://ror.org/00crwr158 Palomar College'), (20304, 'https://ror.org/00ct7kr02', 'es', 1, 'https://ror.org/00ct7kr02 Universidad Mariana'), (20305, 'https://ror.org/00cv4n034', 'en', 1, 'https://ror.org/00cv4n034 Royal Brompton Hospital'), (20306, 'https://ror.org/00cvckk37', 'pt', 1, 'https://ror.org/00cvckk37 Centro Universitário Claretiano'), (20307, 'https://ror.org/00cwcb431', 'no_lang_code', 1, 'https://ror.org/00cwcb431 Opticology (United States)'), (20308, 'https://ror.org/00cxaqd06', 'no_lang_code', 1, 'https://ror.org/00cxaqd06 Exceet Group (Germany)'), (20309, 'https://ror.org/00cxp1a86', 'es', 1, 'https://ror.org/00cxp1a86 Universidad Internacional'), (20310, 'https://ror.org/00cxrw595', 'en', 1, 'https://ror.org/00cxrw595 Universidad para la Paz University for Peace'), (20311, 'https://ror.org/00d1mmk36', 'en', 1, 'https://ror.org/00d1mmk36 High Institute of Management and Entrepreneurship Institut de Management et de l'' Entrepreunariat'), (20312, 'https://ror.org/00d2ka202', 'pt', 1, 'https://ror.org/00d2ka202 Centro Hospitalar de Entre o Douro e Vouga E.P.E.'), (20313, 'https://ror.org/00d2v4e22', 'en', 1, 'https://ror.org/00d2v4e22 Barnet Enfield and Haringey Mental Health Trust'), (20314, 'https://ror.org/00d337t51', 'no_lang_code', 1, 'https://ror.org/00d337t51 Wind (Italy)'), (20315, 'https://ror.org/00d4qgb23', 'en', 1, 'https://ror.org/00d4qgb23 GPI Atlantic'), (20316, 'https://ror.org/00d5d1v82', 'es', 1, 'https://ror.org/00d5d1v82 Institución Universitaria Esumer'), (20317, 'https://ror.org/00d6gkv56', 'es', 1, 'https://ror.org/00d6gkv56 Universidad Tecnológica Boliviana'), (20318, 'https://ror.org/00d7rqp94', 'es', 1, 'https://ror.org/00d7rqp94 Universidad de la Cuenca del Plata, University of Cuenca del Plata'), (20319, 'https://ror.org/00d8sh725', 'en', 1, 'https://ror.org/00d8sh725 Coalville Community Hospital'), (20320, 'https://ror.org/00d90r471', 'tr', 1, 'https://ror.org/00d90r471 Uluslararası Nakliyeciler Derneği'), (20321, 'https://ror.org/00dcb6288', 'no_lang_code', 1, 'https://ror.org/00dcb6288 ProSensing (United States)'), (20322, 'https://ror.org/00dd4r039', 'no_lang_code', 1, 'https://ror.org/00dd4r039 Quantemol (United Kingdom)'), (20323, 'https://ror.org/00dee9m47', 'en', 1, 'https://ror.org/00dee9m47 St. Oswald''s Hospital'), (20324, 'https://ror.org/00dheky92', 'en', 1, 'https://ror.org/00dheky92 New England Institute of Addiction Studies'), (20325, 'https://ror.org/00dhh3h17', 'no_lang_code', 1, 'https://ror.org/00dhh3h17 Tokamak Energy (United Kingdom)'), (20326, 'https://ror.org/00dksv941', 'no_lang_code', 1, 'https://ror.org/00dksv941 METabolic Explorer (France)'), (20327, 'https://ror.org/00dqxgc74', 'en', 1, 'https://ror.org/00dqxgc74 Orsett Hospital'), (20328, 'https://ror.org/00dsfsy77', 'es', 1, 'https://ror.org/00dsfsy77 Universidad Chapultepec'), (20329, 'https://ror.org/00dtsyq89', 'es', 1, 'https://ror.org/00dtsyq89 Universidad Pedro de Gante'), (20330, 'https://ror.org/00dwsv166', 'en', 1, 'https://ror.org/00dwsv166 Poltair Community Hospital'), (20331, 'https://ror.org/00dx9f181', 'pt', 1, 'https://ror.org/00dx9f181 Instituto Superior de Comunicação e Imagem de Moçambique'), (20332, 'https://ror.org/00dxj9a45', 'es', 1, 'https://ror.org/00dxj9a45 Universidad Santiago de Cali'), (20333, 'https://ror.org/00dymss37', 'no_lang_code', 1, 'https://ror.org/00dymss37 Safran (United Kingdom)'), (20334, 'https://ror.org/00dyyan63', 'no_lang_code', 1, 'https://ror.org/00dyyan63 Vennsa Technologies (Canada)'), (20335, 'https://ror.org/00e2dwm47', 'no_lang_code', 1, 'https://ror.org/00e2dwm47 RenaSci (United Kingdom)'), (20336, 'https://ror.org/00e2rng16', 'en', 1, 'https://ror.org/00e2rng16 University of Eastern Africa, Baraton'), (20337, 'https://ror.org/00e4rzw98', 'no_lang_code', 1, 'https://ror.org/00e4rzw98 OmniGuide (United States)'), (20338, 'https://ror.org/00e6d8m49', 'no_lang_code', 1, 'https://ror.org/00e6d8m49 Scanimetrics (Canada)'), (20339, 'https://ror.org/00e96sn98', 'en', 1, 'https://ror.org/00e96sn98 Peyton Manning Children’s Hospital at St.Vincent'), (20340, 'https://ror.org/00e9yqc18', 'es', 1, 'https://ror.org/00e9yqc18 Universidad Tollancingo'), (20341, 'https://ror.org/00eagt536', 'no_lang_code', 1, 'https://ror.org/00eagt536 W.F. Baird & Associates Coastal Engineers (Canada)'), (20342, 'https://ror.org/00eg5dk50', 'es', 1, 'https://ror.org/00eg5dk50 Universidad Del Pacífico Ecuador'), (20343, 'https://ror.org/00ehhcx69', 'no_lang_code', 1, 'https://ror.org/00ehhcx69 Performance Communications'), (20344, 'https://ror.org/00ejs3f24', 'no_lang_code', 1, 'https://ror.org/00ejs3f24 Unilever (Portugal)'), (20345, 'https://ror.org/00ekntx28', 'en', 1, 'https://ror.org/00ekntx28 Rutson Hospital'), (20346, 'https://ror.org/00ekyfe59', 'en', 1, 'https://ror.org/00ekyfe59 Palestinian Hydrology Group مجموعة الهيدرولوجيين الفلسطينيين'), (20347, 'https://ror.org/00emh4n53', 'es', 1, 'https://ror.org/00emh4n53 Instituto Profesional Alemán Wilhelm von Humboldt'), (20348, 'https://ror.org/00emq8v37', 'no_lang_code', 1, 'https://ror.org/00emq8v37 Smart Software (United States)'), (20349, 'https://ror.org/00ep9v282', 'en', 1, 'https://ror.org/00ep9v282 Schreiner University'), (20350, 'https://ror.org/00epbww69', 'en', 1, 'https://ror.org/00epbww69 Patten University'), (20351, 'https://ror.org/00eph4903', 'en', 1, 'https://ror.org/00eph4903 North Middlesex Hospital'), (20352, 'https://ror.org/00eq1d260', 'no_lang_code', 1, 'https://ror.org/00eq1d260 Suttle-Straus (United States)'), (20353, 'https://ror.org/00eqcpt58', 'no_lang_code', 1, 'https://ror.org/00eqcpt58 NAVSYS (United States)'), (20354, 'https://ror.org/00eqfbw40', 'no_lang_code', 1, 'https://ror.org/00eqfbw40 Microsoft (Portugal)'), (20355, 'https://ror.org/00erejq84', 'es', 1, 'https://ror.org/00erejq84 Universidad Univer'), (20356, 'https://ror.org/00erf1y78', 'it', 1, 'https://ror.org/00erf1y78 Studio Ricerche Sociali'), (20357, 'https://ror.org/00erq7915', 'en', 1, 'https://ror.org/00erq7915 Sichuan University of Arts and Science 四川文理学院'), (20358, 'https://ror.org/00evp8v92', 'no_lang_code', 1, 'https://ror.org/00evp8v92 Lab21 (United Kingdom)'), (20359, 'https://ror.org/00exe2989', 'es', 1, 'https://ror.org/00exe2989 Centro Universitario del Pacífico Sur'), (20360, 'https://ror.org/00ezmxr80', 'en', 1, 'https://ror.org/00ezmxr80 Fairfield Independent Hospital'), (20361, 'https://ror.org/00f147v33', 'en', 1, 'https://ror.org/00f147v33 Corbett Hospital'), (20362, 'https://ror.org/00f149504', 'no_lang_code', 1, 'https://ror.org/00f149504 Pearlhill Technologies (United States)'), (20363, 'https://ror.org/00f20wb28', 'no_lang_code', 1, 'https://ror.org/00f20wb28 Ziplast (Italy)'), (20364, 'https://ror.org/00f3apt60', 'en', 1, 'https://ror.org/00f3apt60 Kaduna Polytechnic'), (20365, 'https://ror.org/00f574b02', 'en', 1, 'https://ror.org/00f574b02 West Park Hospital'), (20366, 'https://ror.org/00f5s9131', 'no_lang_code', 1, 'https://ror.org/00f5s9131 TeraPore Technologies (United States)'), (20367, 'https://ror.org/00f83h470', 'en', 1, 'https://ror.org/00f83h470 Surrey and Borders Partnership NHS Foundation Trust'), (20368, 'https://ror.org/00f9r7e77', 'en', 1, 'https://ror.org/00f9r7e77 Roane State Community College'), (20369, 'https://ror.org/00fa1k613', 'no_lang_code', 1, 'https://ror.org/00fa1k613 Wrap (United Kingdom)'), (20370, 'https://ror.org/00fc5ew81', 'es', 1, 'https://ror.org/00fc5ew81 Universidad de la Cordillera'), (20371, 'https://ror.org/00fdbgx35', 'en', 1, 'https://ror.org/00fdbgx35 Hospital for Tropical Diseases'), (20372, 'https://ror.org/00ffjew77', 'no_lang_code', 1, 'https://ror.org/00ffjew77 Wiener Stadtwerke (Austria)'), (20373, 'https://ror.org/00ffq6216', 'en', 1, 'https://ror.org/00ffq6216 Central University of Valle del Cauca Unidad Central del Valle del Cauca'), (20374, 'https://ror.org/00ffqn037', 'en', 1, 'https://ror.org/00ffqn037 Hospital of St John & St Elizabeth'), (20375, 'https://ror.org/00fgcap50', 'en', 1, 'https://ror.org/00fgcap50 Universidad de Belice University of Belize'), (20376, 'https://ror.org/00fkes842', 'no_lang_code', 1, 'https://ror.org/00fkes842 Solarplan (Denmark)'), (20377, 'https://ror.org/00fn3n594', 'es', 1, 'https://ror.org/00fn3n594 Centro Universitario Hidalguense'), (20378, 'https://ror.org/00fp42952', 'en', 1, 'https://ror.org/00fp42952 University of Mbuji Mayi'), (20379, 'https://ror.org/00fpcwp04', 'no_lang_code', 1, 'https://ror.org/00fpcwp04 Tessella (United Kingdom)'), (20380, 'https://ror.org/00fr68j09', 'es', 1, 'https://ror.org/00fr68j09 Universidad Nacional Experimental del Táchira'), (20381, 'https://ror.org/00frndg15', 'en', 1, 'https://ror.org/00frndg15 Association des Musées Canadiens Canadian Museums Association'), (20382, 'https://ror.org/00fryxp10', 'en', 1, 'https://ror.org/00fryxp10 Cymdeithas Addysg y Gweithwyr Workers Educational Association'), (20383, 'https://ror.org/00fv12b26', 'en', 1, 'https://ror.org/00fv12b26 Nazareth Hospital'), (20384, 'https://ror.org/00fx5h019', 'es', 1, 'https://ror.org/00fx5h019 Universidad Andina Néstor Cáceres Velásquez'), (20385, 'https://ror.org/00fxhtz28', 'no_lang_code', 1, 'https://ror.org/00fxhtz28 VORtech (Netherlands)'), (20386, 'https://ror.org/00fyj0e42', 'pt', 1, 'https://ror.org/00fyj0e42 Universidade Braz Cubas'), (20387, 'https://ror.org/00g0b5e28', 'no_lang_code', 1, 'https://ror.org/00g0b5e28 Engie (United Kingdom)'), (20388, 'https://ror.org/00g1vdf17', 'en', 1, 'https://ror.org/00g1vdf17 TeamPatent'), (20389, 'https://ror.org/00g20ky41', 'no_lang_code', 1, 'https://ror.org/00g20ky41 Vipap (Slovenia)'), (20390, 'https://ror.org/00g342m42', 'no_lang_code', 1, 'https://ror.org/00g342m42 SVUM (Czechia)'), (20391, 'https://ror.org/00g3ea624', 'en', 1, 'https://ror.org/00g3ea624 Bletchley Community Hospital'), (20392, 'https://ror.org/00g56d382', 'en', 1, 'https://ror.org/00g56d382 Metec Innovation Consulting'), (20393, 'https://ror.org/00g5nn676', 'en', 1, 'https://ror.org/00g5nn676 Phi Theta Kappa Honor Society'), (20394, 'https://ror.org/00g7skf89', 'en', 1, 'https://ror.org/00g7skf89 Private University of Angola Universidade Privada de Angola'), (20395, 'https://ror.org/00gb7zg29', 'en', 1, 'https://ror.org/00gb7zg29 Farm Cove Observatory'), (20396, 'https://ror.org/00gby0d64', 'pt', 1, 'https://ror.org/00gby0d64 City University of São Caetano do Sul Universidade Municipal de São Caetano do Sul'), (20397, 'https://ror.org/00gc3zx13', 'en', 1, 'https://ror.org/00gc3zx13 Ounce of Prevention Fund'), (20398, 'https://ror.org/00gcm2421', 'es', 1, 'https://ror.org/00gcm2421 Universidad Emilio Cárdenas'), (20399, 'https://ror.org/00ge7mp65', 'en', 1, 'https://ror.org/00ge7mp65 Thatcham Research'), (20400, 'https://ror.org/00gerpx08', 'no_lang_code', 1, 'https://ror.org/00gerpx08 Obducat (Sweden)'), (20401, 'https://ror.org/00gfany95', 'en', 1, 'https://ror.org/00gfany95 Royal Agricultural Society of England'), (20402, 'https://ror.org/00gfbsa94', 'no_lang_code', 1, 'https://ror.org/00gfbsa94 Plasma Quest (United Kingdom)'), (20403, 'https://ror.org/00gfqxe82', 'en', 1, 'https://ror.org/00gfqxe82 Wilson Hospital'), (20404, 'https://ror.org/00ghtc020', 'no_lang_code', 1, 'https://ror.org/00ghtc020 Data Sciences International (United States)'), (20405, 'https://ror.org/00gjr9m44', 'en', 1, 'https://ror.org/00gjr9m44 Amridge University'), (20406, 'https://ror.org/00gk22h75', 'en', 1, 'https://ror.org/00gk22h75 Walton Hospital'), (20407, 'https://ror.org/00gknw275', 'en', 1, 'https://ror.org/00gknw275 Responsible Retailing Forum'), (20408, 'https://ror.org/00gm52g34', 'es', 1, 'https://ror.org/00gm52g34 Colegio de Estudios Superiores de Administración'), (20409, 'https://ror.org/00gmbx398', 'en', 1, 'https://ror.org/00gmbx398 Urumqi 4th People''s Hospital 乌鲁木齐市第四人民医院'), (20410, 'https://ror.org/00gmnqd91', 'no_lang_code', 1, 'https://ror.org/00gmnqd91 Ipsen (United Kingdom)'), (20411, 'https://ror.org/00gpdh364', 'no_lang_code', 1, 'https://ror.org/00gpdh364 OncoMark (Ireland)'), (20412, 'https://ror.org/00grdkt08', 'es', 1, 'https://ror.org/00grdkt08 Universidad Técnica de Comercio'), (20413, 'https://ror.org/00grwm276', 'no_lang_code', 1, 'https://ror.org/00grwm276 Peptides International (United States)'), (20414, 'https://ror.org/00gwcs664', 'no_lang_code', 1, 'https://ror.org/00gwcs664 Técnicas y Servicios de Ingeniería (Spain)'), (20415, 'https://ror.org/00gytzf17', 'no_lang_code', 1, 'https://ror.org/00gytzf17 SMS Siemag (Germany)'), (20416, 'https://ror.org/00h0zfe78', 'no_lang_code', 1, 'https://ror.org/00h0zfe78 Prometni institut Ljubljana'), (20417, 'https://ror.org/00h0zws58', 'en', 1, 'https://ror.org/00h0zws58 McCord Museum Musée McCord'), (20418, 'https://ror.org/00h1cg828', 'en', 1, 'https://ror.org/00h1cg828 Marlow Community Hospital'), (20419, 'https://ror.org/00h2art69', 'fr', 1, 'https://ror.org/00h2art69 Société Canadienne de Science Economique'), (20420, 'https://ror.org/00h2car28', 'en', 1, 'https://ror.org/00h2car28 Walton Community Hospital'), (20421, 'https://ror.org/00h3hvd98', 'no_lang_code', 1, 'https://ror.org/00h3hvd98 Linamar (Canada)'), (20422, 'https://ror.org/00h486367', 'en', 1, 'https://ror.org/00h486367 United Hospital Center'), (20423, 'https://ror.org/00h4fan47', 'no_lang_code', 1, 'https://ror.org/00h4fan47 Tauw Group (Netherlands)'), (20424, 'https://ror.org/00h4x2v81', 'no_lang_code', 1, 'https://ror.org/00h4x2v81 Netivei Israel (Israel) החברה הלאומית לדרכים בישראל'), (20425, 'https://ror.org/00h547294', 'pt', 1, 'https://ror.org/00h547294 Centro Universitário Euroamericano'), (20426, 'https://ror.org/00h642n86', 'no_lang_code', 1, 'https://ror.org/00h642n86 Noterik (Netherlands)'), (20427, 'https://ror.org/00h7v7847', 'no_lang_code', 1, 'https://ror.org/00h7v7847 Tanneries du Puy (France)'), (20428, 'https://ror.org/00h8etg68', 'en', 1, 'https://ror.org/00h8etg68 Tavistock Hospital'), (20429, 'https://ror.org/00hbwk525', 'en', 1, 'https://ror.org/00hbwk525 Anhanguera-Uniderp University Universidade Anhanguera Uniderp'), (20430, 'https://ror.org/00hc1y308', 'no_lang_code', 1, 'https://ror.org/00hc1y308 VivoSight (United Kingdom)'), (20431, 'https://ror.org/00hcsja64', 'en', 1, 'https://ror.org/00hcsja64 Allied American University'), (20432, 'https://ror.org/00hgk2d63', 'fr', 1, 'https://ror.org/00hgk2d63 Tourisme Transports Territoires Environnement Conseil'), (20433, 'https://ror.org/00hhvp820', 'fr', 1, 'https://ror.org/00hhvp820 Université de Mahajanga'), (20434, 'https://ror.org/00hj48m64', 'tr', 1, 'https://ror.org/00hj48m64 Technology Development Foundation of Turkey Turkiye Teknoloji Gelistirme Vakfi, Türkiye Teknoloji Geliştirme Vakfı'), (20435, 'https://ror.org/00hm42c93', 'no_lang_code', 1, 'https://ror.org/00hm42c93 Sensor Developments (United States)'), (20436, 'https://ror.org/00hmfe493', 'en', 1, 'https://ror.org/00hmfe493 Doctors Hospital of Laredo'), (20437, 'https://ror.org/00hth7971', 'en', 1, 'https://ror.org/00hth7971 Danish Maritime Authority'), (20438, 'https://ror.org/00htzc939', 'en', 1, 'https://ror.org/00htzc939 Crescent University'), (20439, 'https://ror.org/00hw53j55', 'pt', 1, 'https://ror.org/00hw53j55 Escola Superior de Jornalismo'), (20440, 'https://ror.org/00hwjda20', 'en', 1, 'https://ror.org/00hwjda20 Barking Community Hospital'), (20441, 'https://ror.org/00hysm292', 'pt', 1, 'https://ror.org/00hysm292 Centro Universitário Sant’Anna'), (20442, 'https://ror.org/00hz94r37', 'en', 1, 'https://ror.org/00hz94r37 Rolling Hills Observatory'), (20443, 'https://ror.org/00hzf4v26', 'no_lang_code', 1, 'https://ror.org/00hzf4v26 Sermes CRO (Spain)'), (20444, 'https://ror.org/00j0prg66', 'en', 1, 'https://ror.org/00j0prg66 Tomás Frías Autonomous University Universidad Autónoma Tomás Frías'), (20445, 'https://ror.org/00j31gd42', 'pt', 1, 'https://ror.org/00j31gd42 Centro Universitário de Jaraguá do Sul'), (20446, 'https://ror.org/00j5cb536', 'es', 1, 'https://ror.org/00j5cb536 Universidad Tecnológica de Honduras'), (20447, 'https://ror.org/00j6k1v44', 'fr', 1, 'https://ror.org/00j6k1v44 Institut Supérieur de Formation en Technologie Alimentaire'), (20448, 'https://ror.org/00j7zhd55', 'no_lang_code', 1, 'https://ror.org/00j7zhd55 SMT Machine (Sweden)'), (20449, 'https://ror.org/00j83d509', 'en', 1, 'https://ror.org/00j83d509 Nashua School District'), (20450, 'https://ror.org/00j8x2c33', 'fr', 1, 'https://ror.org/00j8x2c33 Sociologie et Sociétés'), (20451, 'https://ror.org/00j91ek55', 'no_lang_code', 1, 'https://ror.org/00j91ek55 Sundew Technologies (United States)'), (20452, 'https://ror.org/00jat8r15', 'no_lang_code', 1, 'https://ror.org/00jat8r15 VasGene Therapeutics (United States)'), (20453, 'https://ror.org/00jb25p80', 'fr', 1, 'https://ror.org/00jb25p80 Ecole Supérieure d’Economie Appliquée'), (20454, 'https://ror.org/00jc5t317', 'no_lang_code', 1, 'https://ror.org/00jc5t317 SKA Polska (Poland)'), (20455, 'https://ror.org/00jcw6451', 'es', 1, 'https://ror.org/00jcw6451 Universidad Madero'), (20456, 'https://ror.org/00je1p681', 'pt', 1, 'https://ror.org/00je1p681 Universidade da Região de Joinville'), (20457, 'https://ror.org/00jfare13', 'es', 1, 'https://ror.org/00jfare13 Autonomous University of Manizales Universidad Autonoma de Manizales'), (20458, 'https://ror.org/00jjtmm83', 'en', 1, 'https://ror.org/00jjtmm83 Kiriri Women''s University of Science and Technology'), (20459, 'https://ror.org/00jkh1375', 'no_lang_code', 1, 'https://ror.org/00jkh1375 Prometheus Biosciences (United States)'), (20460, 'https://ror.org/00jpzfk69', 'en', 1, 'https://ror.org/00jpzfk69 Kabul Education University of Rabbani د پروفیسور برهان الدین ربانی پوهنتون پوهنتون شهید پروفیسور برهان الدین ربانی'), (20461, 'https://ror.org/00jtt2n09', 'no_lang_code', 1, 'https://ror.org/00jtt2n09 Poeton Industries (United Kingdom)'), (20462, 'https://ror.org/00jtwxn03', 'pt', 1, 'https://ror.org/00jtwxn03 Terra Scenica'), (20463, 'https://ror.org/00jw4j947', 'en', 1, 'https://ror.org/00jw4j947 Bolsover Hospital'); INSERT INTO `rors` VALUES (20464, 'https://ror.org/00jyxmj57', 'es', 1, 'https://ror.org/00jyxmj57 Universidad Westhill'), (20465, 'https://ror.org/00k478g59', 'en', 1, 'https://ror.org/00k478g59 Bealey Community Hospital'), (20466, 'https://ror.org/00k5x6r15', 'id', 1, 'https://ror.org/00k5x6r15 Universitas Ma Chung'), (20467, 'https://ror.org/00k62pe27', 'en', 1, 'https://ror.org/00k62pe27 Technical University of Applied Sciences Wildau Technische Hochschule Wildau'), (20468, 'https://ror.org/00k859c30', 'no_lang_code', 1, 'https://ror.org/00k859c30 United Biscuits (United Kingdom)'), (20469, 'https://ror.org/00k8q6b24', 'no_lang_code', 1, 'https://ror.org/00k8q6b24 Vasade Biosciences (United States)'), (20470, 'https://ror.org/00k9phg42', 'no_lang_code', 1, 'https://ror.org/00k9phg42 Rockwell Automation (United Kingdom)'), (20471, 'https://ror.org/00kaped05', 'en', 1, 'https://ror.org/00kaped05 Chipping Norton War Memorial Community Hospital'), (20472, 'https://ror.org/00kckms84', 'en', 1, 'https://ror.org/00kckms84 Tetbury Hospital'), (20473, 'https://ror.org/00kcqj673', 'no_lang_code', 1, 'https://ror.org/00kcqj673 Grupo TTT (Spain)'), (20474, 'https://ror.org/00kdbj440', 'no_lang_code', 1, 'https://ror.org/00kdbj440 Glencore (Canada)'), (20475, 'https://ror.org/00kdf6750', 'no_lang_code', 1, 'https://ror.org/00kdf6750 Solidus Biosciences (United States)'), (20476, 'https://ror.org/00kdx6519', 'no_lang_code', 1, 'https://ror.org/00kdx6519 Applied Science Laboratories (United States)'), (20477, 'https://ror.org/00kf9rx15', 'en', 1, 'https://ror.org/00kf9rx15 West Yorkshire Police'), (20478, 'https://ror.org/00kgv1q58', 'en', 1, 'https://ror.org/00kgv1q58 Grantham and District Hospital'), (20479, 'https://ror.org/00kjgj482', 'no_lang_code', 1, 'https://ror.org/00kjgj482 VaxInnate (United States)'), (20480, 'https://ror.org/00kjvy846', 'no_lang_code', 1, 'https://ror.org/00kjvy846 PolyPeptide Group (United States)'), (20481, 'https://ror.org/00knakc29', 'no_lang_code', 1, 'https://ror.org/00knakc29 Nestlé (United Kingdom)'), (20482, 'https://ror.org/00knds943', 'en', 1, 'https://ror.org/00knds943 Tolworth Hospital'), (20483, 'https://ror.org/00knefa62', 'en', 1, 'https://ror.org/00knefa62 Canadian Centre for Policy Alternatives'), (20484, 'https://ror.org/00kqye711', 'en', 1, 'https://ror.org/00kqye711 W.E. Upjohn Institute for Employment Research'), (20485, 'https://ror.org/00krqj642', 'es', 1, 'https://ror.org/00krqj642 Universidad Humanista de las Américas'), (20486, 'https://ror.org/00kxa2r20', 'no_lang_code', 1, 'https://ror.org/00kxa2r20 Talking Fingers (United States)'), (20487, 'https://ror.org/00kyx8y88', 'es', 1, 'https://ror.org/00kyx8y88 Universidad del Mar'), (20488, 'https://ror.org/00m0tz504', 'en', 1, 'https://ror.org/00m0tz504 Central University of Nicaragua Universidad Central de Nicaragua'), (20489, 'https://ror.org/00m1cca61', 'en', 1, 'https://ror.org/00m1cca61 Milford Hospital'), (20490, 'https://ror.org/00m448187', 'no_lang_code', 1, 'https://ror.org/00m448187 Vantage Power (United Kingdom)'), (20491, 'https://ror.org/00m4aft17', 'fr', 1, 'https://ror.org/00m4aft17 Université Adam Barka d''Abéché'), (20492, 'https://ror.org/00m4tdv39', 'no_lang_code', 1, 'https://ror.org/00m4tdv39 TeselaGen Biotechnology (United States)'), (20493, 'https://ror.org/00m4w5c43', 'no_lang_code', 1, 'https://ror.org/00m4w5c43 Novarials (United States)'), (20494, 'https://ror.org/00m6mew50', 'hu', 1, 'https://ror.org/00m6mew50 Országos Gyógyintézeti Központ'), (20495, 'https://ror.org/00m8adh64', 'no_lang_code', 1, 'https://ror.org/00m8adh64 Municipal Tsuruga Hospital 市立敦賀病院'), (20496, 'https://ror.org/00m8gx614', 'no_lang_code', 1, 'https://ror.org/00m8gx614 Palomino System Innovations (Canada)'), (20497, 'https://ror.org/00m8jfr10', 'no_lang_code', 1, 'https://ror.org/00m8jfr10 Destia'), (20498, 'https://ror.org/00mb2j026', 'no_lang_code', 1, 'https://ror.org/00mb2j026 Zenotech (United Kingdom)'), (20499, 'https://ror.org/00mbjzh15', 'no_lang_code', 1, 'https://ror.org/00mbjzh15 Montana Molecular (United States)'), (20500, 'https://ror.org/00mcdb425', 'no_lang_code', 1, 'https://ror.org/00mcdb425 HeidelbergCement (Norway)'), (20501, 'https://ror.org/00mehg084', 'no_lang_code', 1, 'https://ror.org/00mehg084 Spectris (United States)'), (20502, 'https://ror.org/00mkdrs62', 'es', 1, 'https://ror.org/00mkdrs62 Universidad Politécnica y Artística del Paraguay'), (20503, 'https://ror.org/00mn36586', 'en', 1, 'https://ror.org/00mn36586 Alberta College of Art + Design'), (20504, 'https://ror.org/00mn8c655', 'en', 1, 'https://ror.org/00mn8c655 Open University of Mauritius'), (20505, 'https://ror.org/00mp5cm68', 'en', 1, 'https://ror.org/00mp5cm68 Arrowe Park Hospital'), (20506, 'https://ror.org/00mq34s35', 'es', 1, 'https://ror.org/00mq34s35 Universidad de Los Altos de Chiapas'), (20507, 'https://ror.org/00ms25z94', 'no_lang_code', 1, 'https://ror.org/00ms25z94 Wates (United Kingdom)'), (20508, 'https://ror.org/00ms2t790', 'en', 1, 'https://ror.org/00ms2t790 Moorpark College'), (20509, 'https://ror.org/00mseky10', 'no_lang_code', 1, 'https://ror.org/00mseky10 Sequoia Environmental Remediation (Canada)'), (20510, 'https://ror.org/00mt2q647', 'no_lang_code', 1, 'https://ror.org/00mt2q647 Nimesis Technology (France)'), (20511, 'https://ror.org/00mxv8r67', 'en', 1, 'https://ror.org/00mxv8r67 Latvijas Nacionālā bibliotēka National Library of Latvia'), (20512, 'https://ror.org/00my1td19', 'en', 1, 'https://ror.org/00my1td19 En''owkin Centre'), (20513, 'https://ror.org/00n0m9p12', 'en', 1, 'https://ror.org/00n0m9p12 The Acre'), (20514, 'https://ror.org/00n293x32', 'en', 1, 'https://ror.org/00n293x32 Clay Cross Hospital'), (20515, 'https://ror.org/00n2m9w05', 'no_lang_code', 1, 'https://ror.org/00n2m9w05 ProBiotix (United States)'), (20516, 'https://ror.org/00n2vs911', 'en', 1, 'https://ror.org/00n2vs911 Newton Abbot Community Hospital'), (20517, 'https://ror.org/00n4nbk77', 'en', 1, 'https://ror.org/00n4nbk77 National Archives of Estonia Rahvusarhiiv'), (20518, 'https://ror.org/00n7jqz22', 'no_lang_code', 1, 'https://ror.org/00n7jqz22 Sagentia (United Kingdom)'), (20519, 'https://ror.org/00n7m6g17', 'es', 1, 'https://ror.org/00n7m6g17 Institución Universitaria Politecnico Grancolombiano, Politécnico Grancolombiano'), (20520, 'https://ror.org/00n7n3773', 'en', 1, 'https://ror.org/00n7n3773 Ecole Nationale d''Architecture National School of Architecture المدرسة الوطنية للهندسة المعمارية'), (20521, 'https://ror.org/00n7se427', 'no_lang_code', 1, 'https://ror.org/00n7se427 NeuroSigma (United States)'), (20522, 'https://ror.org/00n93ay28', 'no_lang_code', 1, 'https://ror.org/00n93ay28 RR Donnelley (United States)'), (20523, 'https://ror.org/00n974j89', 'en', 1, 'https://ror.org/00n974j89 St Charles Hospital'), (20524, 'https://ror.org/00narfz77', 'en', 1, 'https://ror.org/00narfz77 New Mexico Museum of Natural History and Science'), (20525, 'https://ror.org/00nb2fk45', 'no_lang_code', 1, 'https://ror.org/00nb2fk45 RiNA (Germany)'), (20526, 'https://ror.org/00ncdw424', 'en', 1, 'https://ror.org/00ncdw424 Southlands Hospital'), (20527, 'https://ror.org/00ncqx842', 'en', 1, 'https://ror.org/00ncqx842 Seowon University 서원대학교'), (20528, 'https://ror.org/00nct2329', 'en', 1, 'https://ror.org/00nct2329 New Epsom and Ewell Community Hospital'), (20529, 'https://ror.org/00nd98w52', 'en', 1, 'https://ror.org/00nd98w52 Canadian Arthritis Network'), (20530, 'https://ror.org/00nfht809', 'en', 1, 'https://ror.org/00nfht809 Association Canadienne de Justice Pénale Canadian Criminal Justice Association'), (20531, 'https://ror.org/00njayd33', 'no_lang_code', 1, 'https://ror.org/00njayd33 Omax (United States)'), (20532, 'https://ror.org/00njxm476', 'es', 1, 'https://ror.org/00njxm476 Universidad Popular Autónoma del Estado de Puebla'), (20533, 'https://ror.org/00nk1fh63', 'no_lang_code', 1, 'https://ror.org/00nk1fh63 TBZ PARIV (Germany)'), (20534, 'https://ror.org/00nk33e27', 'no_lang_code', 1, 'https://ror.org/00nk33e27 X-Treme Creations (Netherlands)'), (20535, 'https://ror.org/00nmq1179', 'en', 1, 'https://ror.org/00nmq1179 Ndejje University'), (20536, 'https://ror.org/00nmyjn66', 'no_lang_code', 1, 'https://ror.org/00nmyjn66 iTelescope.Net'), (20537, 'https://ror.org/00nn34t03', 'no_lang_code', 1, 'https://ror.org/00nn34t03 Innovation Ecology (Israel)'), (20538, 'https://ror.org/00npj8037', 'en', 1, 'https://ror.org/00npj8037 Paddocks Hospital'), (20539, 'https://ror.org/00nrr4d03', 'es', 1, 'https://ror.org/00nrr4d03 Universidad de Cuautitlán Izcalli'), (20540, 'https://ror.org/00nsta845', 'no_lang_code', 1, 'https://ror.org/00nsta845 Sico Technology (Austria)'), (20541, 'https://ror.org/00nwez256', 'no_lang_code', 1, 'https://ror.org/00nwez256 Sviluppo Toscana (Italy)'), (20542, 'https://ror.org/00nx2d878', 'en', 1, 'https://ror.org/00nx2d878 Mount Washington Observatory'), (20543, 'https://ror.org/00nxhsa79', 'pt', 1, 'https://ror.org/00nxhsa79 Centro Universitário da Fundação de Ensino Octávio Bastos'), (20544, 'https://ror.org/00nyxpe17', 'en', 1, 'https://ror.org/00nyxpe17 Hokkaido Information University 北海道情報大学'), (20545, 'https://ror.org/00p15zq72', 'en', 1, 'https://ror.org/00p15zq72 Okanagan Science Centre'), (20546, 'https://ror.org/00p1j0r66', 'pt', 1, 'https://ror.org/00p1j0r66 Colégio Metodista Bennett'), (20547, 'https://ror.org/00p1jee13', 'en', 1, 'https://ror.org/00p1jee13 Fuyang City People''s Hospital 濮阳市人民医院'), (20548, 'https://ror.org/00p4jn321', 'en', 1, 'https://ror.org/00p4jn321 Sudan International University جامعة السودان العالمية'), (20549, 'https://ror.org/00p5pgq41', 'en', 1, 'https://ror.org/00p5pgq41 Elmleigh Hospital'), (20550, 'https://ror.org/00p5rpb50', 'no_lang_code', 1, 'https://ror.org/00p5rpb50 Synapse Biomedical (United States)'), (20551, 'https://ror.org/00p6q5476', 'en', 1, 'https://ror.org/00p6q5476 Queen Elizabeth Hospital'), (20552, 'https://ror.org/00p7b2q74', 'no_lang_code', 1, 'https://ror.org/00p7b2q74 Tunitas Therapeutics (United States)'), (20553, 'https://ror.org/00p8msr48', 'en', 1, 'https://ror.org/00p8msr48 Chuo Kikuu cha Mtakatifu Agostino Tanzania St. Augustine University of Tanzania'), (20554, 'https://ror.org/00p9b8g15', 'no_lang_code', 1, 'https://ror.org/00p9b8g15 Shellcase (Israel)'), (20555, 'https://ror.org/00pb1mx67', 'en', 1, 'https://ror.org/00pb1mx67 Spire Hull and East Riding Hospital'), (20556, 'https://ror.org/00pbka429', 'no_lang_code', 1, 'https://ror.org/00pbka429 NETvisor (Hungary)'), (20557, 'https://ror.org/00pcpzq46', 'en', 1, 'https://ror.org/00pcpzq46 Danish Meat Trade College'), (20558, 'https://ror.org/00pd4qq98', 'fr', 1, 'https://ror.org/00pd4qq98 Université d’Antsiranana'), (20559, 'https://ror.org/00pefpf42', 'no_lang_code', 1, 'https://ror.org/00pefpf42 RH Lyon (United States)'), (20560, 'https://ror.org/00pew5z05', 'no_lang_code', 1, 'https://ror.org/00pew5z05 Vicon (United Kingdom)'), (20561, 'https://ror.org/00pf6z250', 'en', 1, 'https://ror.org/00pf6z250 Knutsford and District Community Hospital'), (20562, 'https://ror.org/00phhaz14', 'no_lang_code', 1, 'https://ror.org/00phhaz14 Rizzo International (United States)'), (20563, 'https://ror.org/00pk39639', 'en', 1, 'https://ror.org/00pk39639 Canadian Centre for Community Renewal'), (20564, 'https://ror.org/00pmf8m46', 'no_lang_code', 1, 'https://ror.org/00pmf8m46 Neuro Kinetics (United States)'), (20565, 'https://ror.org/00pn7nn48', 'no_lang_code', 1, 'https://ror.org/00pn7nn48 Office Public d''Aménagement et de Construction de l''Isère (France)'), (20566, 'https://ror.org/00pnzak35', 'no_lang_code', 1, 'https://ror.org/00pnzak35 Victrex (United Kingdom)'), (20567, 'https://ror.org/00ppcg417', 'en', 1, 'https://ror.org/00ppcg417 Congress of Aboriginal Peoples'), (20568, 'https://ror.org/00pprbn54', 'no_lang_code', 1, 'https://ror.org/00pprbn54 Newomics (United States)'), (20569, 'https://ror.org/00pt67k84', 'en', 1, 'https://ror.org/00pt67k84 University of Nouakchott Al Aasriya Université de Nouakchott Al Aasriya جامعة نواكشوط'), (20570, 'https://ror.org/00pz2dk38', 'en', 1, 'https://ror.org/00pz2dk38 Orange Coast College'), (20571, 'https://ror.org/00q2cvp40', 'en', 1, 'https://ror.org/00q2cvp40 Cheshunt Minor Injuries Unit'), (20572, 'https://ror.org/00q2rr681', 'no_lang_code', 1, 'https://ror.org/00q2rr681 Nuvation (Canada)'), (20573, 'https://ror.org/00q3p9p08', 'en', 1, 'https://ror.org/00q3p9p08 Suizhou Central Hospital 随州市中心医院'), (20574, 'https://ror.org/00q7btw65', 'en', 1, 'https://ror.org/00q7btw65 Prevention Connections'), (20575, 'https://ror.org/00qasm074', 'no_lang_code', 1, 'https://ror.org/00qasm074 Skyworks Solutions (United Kingdom)'), (20576, 'https://ror.org/00qbkg805', 'en', 1, 'https://ror.org/00qbkg805 Cabrini Hospital'), (20577, 'https://ror.org/00qd4hy53', 'en', 1, 'https://ror.org/00qd4hy53 Southwest Virginia Community College'), (20578, 'https://ror.org/00qfm6q04', 'en', 1, 'https://ror.org/00qfm6q04 Pennsylvania Department of Drug and Alcohol Programs'), (20579, 'https://ror.org/00qfxgm20', 'es', 1, 'https://ror.org/00qfxgm20 Universidad Real'), (20580, 'https://ror.org/00qhqx688', 'no_lang_code', 1, 'https://ror.org/00qhqx688 Ursit (Bulgaria)'), (20581, 'https://ror.org/00qj1mf81', 'no_lang_code', 1, 'https://ror.org/00qj1mf81 Schulman, Ronca & Bucuvalas'), (20582, 'https://ror.org/00qjwgg65', 'en', 1, 'https://ror.org/00qjwgg65 Value-Driven Design Institute'), (20583, 'https://ror.org/00qm7b611', 'en', 1, 'https://ror.org/00qm7b611 Alexandria Higher Institute of Engineering and Technology معهد الاسكندرية العالى للهندسة والتكنولوجيا'), (20584, 'https://ror.org/00qmq1337', 'en', 1, 'https://ror.org/00qmq1337 Stiftung Verum Verum - Foundation for Behaviour and Environment'), (20585, 'https://ror.org/00qnmxq60', 'es', 1, 'https://ror.org/00qnmxq60 Hospital de La Ribera'), (20586, 'https://ror.org/00qnqcd72', 'no_lang_code', 1, 'https://ror.org/00qnqcd72 Vorwerk (Germany)'), (20587, 'https://ror.org/00qnt7d66', 'no_lang_code', 1, 'https://ror.org/00qnt7d66 Photometrics (United States)'), (20588, 'https://ror.org/00qq0vj26', 'no_lang_code', 1, 'https://ror.org/00qq0vj26 Paraytec (United Kingdom)'), (20589, 'https://ror.org/00qq5ag78', 'no_lang_code', 1, 'https://ror.org/00qq5ag78 Sociedad Anónima Industrias Celulosa Aragonesa (Spain)'), (20590, 'https://ror.org/00qs3ke40', 'no_lang_code', 1, 'https://ror.org/00qs3ke40 Ecolyse (United States)'), (20591, 'https://ror.org/00qseeb08', 'es', 1, 'https://ror.org/00qseeb08 Universidad Nacional Experimental de Guayana'), (20592, 'https://ror.org/00qsw2f44', 'no_lang_code', 1, 'https://ror.org/00qsw2f44 Industrins Kraft Abp Teollisuuden Voima (Finland)'), (20593, 'https://ror.org/00qtapa42', 'pt', 1, 'https://ror.org/00qtapa42 Centro Universitário Barão de Mauá'), (20594, 'https://ror.org/00qthcq23', 'no_lang_code', 1, 'https://ror.org/00qthcq23 Talent Systems (Greece)'), (20595, 'https://ror.org/00qvg6x21', 'en', 1, 'https://ror.org/00qvg6x21 Molecular Medicine Ireland'), (20596, 'https://ror.org/00qx46v42', 'en', 1, 'https://ror.org/00qx46v42 Bispham Hospital'), (20597, 'https://ror.org/00qzyfa72', 'en', 1, 'https://ror.org/00qzyfa72 Native American Management Services'), (20598, 'https://ror.org/00r0rx657', 'fr', 1, 'https://ror.org/00r0rx657 Centre Universitaire de Tamanrasset المركز الجامعي تمنراست'), (20599, 'https://ror.org/00r1erk38', 'no_lang_code', 1, 'https://ror.org/00r1erk38 MultiD Analyses (Sweden)'), (20600, 'https://ror.org/00r54sf44', 'es', 1, 'https://ror.org/00r54sf44 Universidad de Morón'), (20601, 'https://ror.org/00r5ys630', 'en', 1, 'https://ror.org/00r5ys630 Amberstone Hospital'), (20602, 'https://ror.org/00r6gb998', 'en', 1, 'https://ror.org/00r6gb998 Chalfonts and Gerrards Cross Hospital'), (20603, 'https://ror.org/00r8rhe65', 'en', 1, 'https://ror.org/00r8rhe65 Progressive Life Center'), (20604, 'https://ror.org/00r8xnn14', 'es', 1, 'https://ror.org/00r8xnn14 Instituto Guillermo Subercaseaux'), (20605, 'https://ror.org/00racmn62', 'no_lang_code', 1, 'https://ror.org/00racmn62 Schneider Electric (United Kingdom)'), (20606, 'https://ror.org/00rd5z074', 'en', 1, 'https://ror.org/00rd5z074 Fifth Hospital of Shijiazhuang'), (20607, 'https://ror.org/00rdvc274', 'no_lang_code', 1, 'https://ror.org/00rdvc274 Metec (Germany)'), (20608, 'https://ror.org/00rg18f40', 'en', 1, 'https://ror.org/00rg18f40 BC Studies'), (20609, 'https://ror.org/00rgatc64', 'en', 1, 'https://ror.org/00rgatc64 Kamloops Art Gallery'), (20610, 'https://ror.org/00rghrr56', 'en', 1, 'https://ror.org/00rghrr56 Kochi University of Technology 高知工科大学'), (20611, 'https://ror.org/00rhh8s91', 'no_lang_code', 1, 'https://ror.org/00rhh8s91 Wallenius Lines (Sweden)'), (20612, 'https://ror.org/00rkfyy45', 'en', 1, 'https://ror.org/00rkfyy45 Ohio Valley University Université de la vallée de l''ohio'), (20613, 'https://ror.org/00rm12d62', 'no_lang_code', 1, 'https://ror.org/00rm12d62 Stena (Sweden)'), (20614, 'https://ror.org/00rnxjt19', 'no_lang_code', 1, 'https://ror.org/00rnxjt19 Federation of Norwegian Industries Norsk Industri (Norway)'), (20615, 'https://ror.org/00rp9y493', 'en', 1, 'https://ror.org/00rp9y493 Rutherford + Chekene'), (20616, 'https://ror.org/00rpjcd45', 'pt', 1, 'https://ror.org/00rpjcd45 Centro Universitário de Várzea Grande'), (20617, 'https://ror.org/00rqys923', 'en', 1, 'https://ror.org/00rqys923 Victoria Community Hospital'), (20618, 'https://ror.org/00rskqs20', 'no_lang_code', 1, 'https://ror.org/00rskqs20 Nuvera (Italy)'), (20619, 'https://ror.org/00rtryt44', 'no_lang_code', 1, 'https://ror.org/00rtryt44 Nzytech (Portugal)'), (20620, 'https://ror.org/00rxcsz93', 'fr', 1, 'https://ror.org/00rxcsz93 Université Privée du Sud'), (20621, 'https://ror.org/00ryba775', 'en', 1, 'https://ror.org/00ryba775 Yellowhawk Tribal Health Center'), (20622, 'https://ror.org/00rzjv003', 'en', 1, 'https://ror.org/00rzjv003 Stretford Memorial Hospital'), (20623, 'https://ror.org/00s35gs08', 'no_lang_code', 1, 'https://ror.org/00s35gs08 Couniniotis Group (Greece)'), (20624, 'https://ror.org/00s6c1066', 'en', 1, 'https://ror.org/00s6c1066 NanoImaging Services'), (20625, 'https://ror.org/00s6gwy34', 'no_lang_code', 1, 'https://ror.org/00s6gwy34 Team Neurodynamics (United States)'), (20626, 'https://ror.org/00s730510', 'no_lang_code', 1, 'https://ror.org/00s730510 Soitec (France)'), (20627, 'https://ror.org/00s7jmd98', 'en', 1, 'https://ror.org/00s7jmd98 Hunan University of Humanities, Science and Technology 湖南人文科技学院'), (20628, 'https://ror.org/00s9rtw68', 'en', 1, 'https://ror.org/00s9rtw68 Peasley Cross Hospital'), (20629, 'https://ror.org/00sa21z63', 'no_lang_code', 1, 'https://ror.org/00sa21z63 Rapport (United States)'), (20630, 'https://ror.org/00sag0k61', 'en', 1, 'https://ror.org/00sag0k61 North American Association for Environmental Education'), (20631, 'https://ror.org/00sb61x57', 'es', 1, 'https://ror.org/00sb61x57 Universidad Lucerna'), (20632, 'https://ror.org/00sdawg68', 'en', 1, 'https://ror.org/00sdawg68 Stardome Observatory'), (20633, 'https://ror.org/00se0qw52', 'en', 1, 'https://ror.org/00se0qw52 Canadian Society for Digital Humanities Société Canadienne pour les Humanités Numériques.'), (20634, 'https://ror.org/00se67j64', 'en', 1, 'https://ror.org/00se67j64 Ehime Medical Center 国立病院機構 愛媛医療センター'), (20635, 'https://ror.org/00sfq3g82', 'it', 1, 'https://ror.org/00sfq3g82 Sinform'), (20636, 'https://ror.org/00sh40694', 'no_lang_code', 1, 'https://ror.org/00sh40694 Rádio e Televisão de Portugal (Portugal)'), (20637, 'https://ror.org/00sh7p618', 'en', 1, 'https://ror.org/00sh7p618 Croydon Health Services NHS Trust'), (20638, 'https://ror.org/00shp5a81', 'no_lang_code', 1, 'https://ror.org/00shp5a81 Rapanelli Fioravante (Italy)'), (20639, 'https://ror.org/00skbbq95', 'sv', 1, 'https://ror.org/00skbbq95 Lantmäteriet Swedish National Land Survey'), (20640, 'https://ror.org/00skx0050', 'en', 1, 'https://ror.org/00skx0050 Canadian Association for Graduate Studies'), (20641, 'https://ror.org/00smnxt90', 'no_lang_code', 1, 'https://ror.org/00smnxt90 pH Matter (United States)'), (20642, 'https://ror.org/00sn5j281', 'no_lang_code', 1, 'https://ror.org/00sn5j281 Move Entwicklungs Infrastruktur und Service (Germany)'), (20643, 'https://ror.org/00sp59e90', 'no_lang_code', 1, 'https://ror.org/00sp59e90 Toscana Biomarkers (Italy)'), (20644, 'https://ror.org/00spvm362', 'no_lang_code', 1, 'https://ror.org/00spvm362 ORME (France)'), (20645, 'https://ror.org/00sr40296', 'no_lang_code', 1, 'https://ror.org/00sr40296 Tangshan Gongren Hospital'), (20646, 'https://ror.org/00sv59x24', 'no_lang_code', 1, 'https://ror.org/00sv59x24 Warburtons (United Kingdom)'), (20647, 'https://ror.org/00swtqd36', 'en', 1, 'https://ror.org/00swtqd36 Vale Community Hospital'), (20648, 'https://ror.org/00sy2m382', 'es', 1, 'https://ror.org/00sy2m382 Instituto Universitario Escuela Superior de Economía y Administración de Empresas'), (20649, 'https://ror.org/00t0mzb74', 'fr', 1, 'https://ror.org/00t0mzb74 Université de Hearst'), (20650, 'https://ror.org/00t0n4y22', 'no_lang_code', 1, 'https://ror.org/00t0n4y22 PaneraTech (United States)'), (20651, 'https://ror.org/00t6yq161', 'no_lang_code', 1, 'https://ror.org/00t6yq161 Powerline Technologies (United Kingdom)'), (20652, 'https://ror.org/00t7chh67', 'fr', 1, 'https://ror.org/00t7chh67 Institut Facultaire des Sciences de l''Information et de la Communication'), (20653, 'https://ror.org/00t7nkj63', 'no_lang_code', 1, 'https://ror.org/00t7nkj63 Ashmore Energy International (United Kingdom)'), (20654, 'https://ror.org/00t93jj79', 'en', 1, 'https://ror.org/00t93jj79 Wuhu Fourth People Hospital 芜湖市第四人民医院'), (20655, 'https://ror.org/00taf6c38', 'es', 1, 'https://ror.org/00taf6c38 Instituto Superior de Formación Docente Salomé Ureña'), (20656, 'https://ror.org/00tcvgn28', 'en', 1, 'https://ror.org/00tcvgn28 Oregon Coast Community College'), (20657, 'https://ror.org/00te64c61', 'pt', 1, 'https://ror.org/00te64c61 Universidade Tuiuti do Paraná'), (20658, 'https://ror.org/00tfjp359', 'pt', 1, 'https://ror.org/00tfjp359 Centro Universitário Leonardo da Vinci'), (20659, 'https://ror.org/00tgz5618', 'en', 1, 'https://ror.org/00tgz5618 Cockermouth Community Hospital'), (20660, 'https://ror.org/00tnac320', 'fr', 1, 'https://ror.org/00tnac320 Université Larbi Tébessi'), (20661, 'https://ror.org/00tnb2p82', 'es', 1, 'https://ror.org/00tnb2p82 Universidad de Morelia University of Morelia'), (20662, 'https://ror.org/00tq70902', 'en', 1, 'https://ror.org/00tq70902 Finchley Memorial Hospital'), (20663, 'https://ror.org/00tsqpx02', 'no_lang_code', 1, 'https://ror.org/00tsqpx02 VocaLink (United Kingdom)'), (20664, 'https://ror.org/00tsxbx86', 'es', 1, 'https://ror.org/00tsxbx86 Universidad Interamericana para el Desarrollo'), (20665, 'https://ror.org/00tsz2810', 'no_lang_code', 1, 'https://ror.org/00tsz2810 Affini Technology (United Kingdom)'), (20666, 'https://ror.org/00tt5kf04', 'en', 1, 'https://ror.org/00tt5kf04 Marien Ngouabi University Université Marien Ngouabi'), (20667, 'https://ror.org/00ttbwp87', 'pt', 1, 'https://ror.org/00ttbwp87 Universidade São Judas Tadeu'), (20668, 'https://ror.org/00tww8m46', 'no_lang_code', 1, 'https://ror.org/00tww8m46 Next Ingegneria dei Sistemi (Italy)'), (20669, 'https://ror.org/00txsqk22', 'en', 1, 'https://ror.org/00txsqk22 Universidad Viña del Mar Viña del Mar University'), (20670, 'https://ror.org/00tymhf19', 'en', 1, 'https://ror.org/00tymhf19 Technology Innovation International'), (20671, 'https://ror.org/00v11es25', 'fr', 1, 'https://ror.org/00v11es25 École Nationale d''Administration'), (20672, 'https://ror.org/00v13f844', 'fr', 1, 'https://ror.org/00v13f844 Institut Supérieur d’Art Dramatique et d’Animation Culturelle'), (20673, 'https://ror.org/00v2tva64', 'es', 1, 'https://ror.org/00v2tva64 Centro de Estudios Universitarios de Baja California'), (20674, 'https://ror.org/00v2w0a04', 'en', 1, 'https://ror.org/00v2w0a04 Polk State College'), (20675, 'https://ror.org/00v60f727', 'en', 1, 'https://ror.org/00v60f727 Conference Board of Canada Le Conference Board du Canada'), (20676, 'https://ror.org/00v6srm21', 'no_lang_code', 1, 'https://ror.org/00v6srm21 PBLH International Consulting'), (20677, 'https://ror.org/00v7w6310', 'no_lang_code', 1, 'https://ror.org/00v7w6310 Questel (France)'), (20678, 'https://ror.org/00v8f0m76', 'no_lang_code', 1, 'https://ror.org/00v8f0m76 Accenture (Italy)'), (20679, 'https://ror.org/00v9kaj80', 'es', 1, 'https://ror.org/00v9kaj80 Universidad México Contemporáneo'), (20680, 'https://ror.org/00v9tt762', 'no_lang_code', 1, 'https://ror.org/00v9tt762 Telefónica (United Kingdom)'), (20681, 'https://ror.org/00vbbfz92', 'en', 1, 'https://ror.org/00vbbfz92 Welding Research Institute - Industrial Institute SR'), (20682, 'https://ror.org/00vc2nm91', 'en', 1, 'https://ror.org/00vc2nm91 Higher Institute on Territorial Systems for Innovation Istituto Superiore sui Sistemi Territoriali per l’Innovazione'), (20683, 'https://ror.org/00vcz1s14', 'no_lang_code', 1, 'https://ror.org/00vcz1s14 Turner Designs (United States)'), (20684, 'https://ror.org/00vfhjf66', 'no_lang_code', 1, 'https://ror.org/00vfhjf66 Vihorlat Observatory Vihorlatská hvezdáreň'), (20685, 'https://ror.org/00vfxd102', 'pt', 1, 'https://ror.org/00vfxd102 Instituto Metodista Izabela Hendrix'), (20686, 'https://ror.org/00vgek070', 'en', 1, 'https://ror.org/00vgek070 Jilin Province Tumor Hospital 吉林省肿瘤医院'), (20687, 'https://ror.org/00vgt4p82', 'no_lang_code', 1, 'https://ror.org/00vgt4p82 Center for Innovation and Technology Zentrum für Innovation und Technik in Nordrhein-Westfalen'), (20688, 'https://ror.org/00vh0dr83', 'es', 1, 'https://ror.org/00vh0dr83 Universidad Salesiana de Bolivia'), (20689, 'https://ror.org/00vnste75', 'en', 1, 'https://ror.org/00vnste75 Galen University Universidad de Galen'), (20690, 'https://ror.org/00vnvj755', 'no_lang_code', 1, 'https://ror.org/00vnvj755 Simmetrix (United States)'), (20691, 'https://ror.org/00vqfx781', 'no_lang_code', 1, 'https://ror.org/00vqfx781 Systran (France)'), (20692, 'https://ror.org/00vr8yd88', 'no_lang_code', 1, 'https://ror.org/00vr8yd88 Oragenics (United States)'), (20693, 'https://ror.org/00vr94b03', 'de', 1, 'https://ror.org/00vr94b03 Katholisches Klinikum Lünen/Werne , St.-Marien-Hospital Lünen'), (20694, 'https://ror.org/00vspj326', 'no_lang_code', 1, 'https://ror.org/00vspj326 Plantechno (Italy)'), (20695, 'https://ror.org/00vtwt580', 'pt', 1, 'https://ror.org/00vtwt580 Centro Universitário Adventista de São Paulo'), (20696, 'https://ror.org/00vvmxh39', 'en', 1, 'https://ror.org/00vvmxh39 Bugshan Hospital مستشفى بقشان'), (20697, 'https://ror.org/00vww8g40', 'fr', 1, 'https://ror.org/00vww8g40 Centre Universitaire de Labé'), (20698, 'https://ror.org/00vyjaz76', 'pt', 1, 'https://ror.org/00vyjaz76 Universidade Jean Piaget de Moçambique'), (20699, 'https://ror.org/00vz50m28', 'en', 1, 'https://ror.org/00vz50m28 Zambian Open University'), (20700, 'https://ror.org/00vzfja08', 'en', 1, 'https://ror.org/00vzfja08 Vermont Agency of Education'), (20701, 'https://ror.org/00w0dbz25', 'no_lang_code', 1, 'https://ror.org/00w0dbz25 Sherbrooke O.E.M (Canada)'), (20702, 'https://ror.org/00w0dra04', 'no_lang_code', 1, 'https://ror.org/00w0dra04 NanoMEMS Research (United States)'), (20703, 'https://ror.org/00w0e7243', 'en', 1, 'https://ror.org/00w0e7243 Renz Addiction Counseling Center'), (20704, 'https://ror.org/00w31we65', 'no_lang_code', 1, 'https://ror.org/00w31we65 Talisman (United States)'), (20705, 'https://ror.org/00w3adw05', 'no_lang_code', 1, 'https://ror.org/00w3adw05 Ramboll (Denmark)'), (20706, 'https://ror.org/00w62r976', 'en', 1, 'https://ror.org/00w62r976 Briar Cliff University'), (20707, 'https://ror.org/00w84v084', 'no_lang_code', 1, 'https://ror.org/00w84v084 PSA (United States)'), (20708, 'https://ror.org/00w8szr09', 'no_lang_code', 1, 'https://ror.org/00w8szr09 NanoTecCenter Weiz Forschungsgesellschaft (Austria)'), (20709, 'https://ror.org/00w940402', 'no_lang_code', 1, 'https://ror.org/00w940402 Muthén & Muthén (United States)'), (20710, 'https://ror.org/00w9htx78', 'en', 1, 'https://ror.org/00w9htx78 Mount Vernon Hospital'), (20711, 'https://ror.org/00w9tyd30', 'en', 1, 'https://ror.org/00w9tyd30 Devizes Community Hospital'), (20712, 'https://ror.org/00wb3z218', 'no_lang_code', 1, 'https://ror.org/00wb3z218 MammaCare (United States)'), (20713, 'https://ror.org/00wf4pt88', 'en', 1, 'https://ror.org/00wf4pt88 Management Sciences for Health'), (20714, 'https://ror.org/00wjxpj07', 'en', 1, 'https://ror.org/00wjxpj07 Union County College'), (20715, 'https://ror.org/00wkvq828', 'en', 1, 'https://ror.org/00wkvq828 Osborne Association'), (20716, 'https://ror.org/00wpr8n40', 'en', 1, 'https://ror.org/00wpr8n40 Morpeth Cottage Hospital'), (20717, 'https://ror.org/00wpwke06', 'en', 1, 'https://ror.org/00wpwke06 wfk - Cleaning Technology Institute'), (20718, 'https://ror.org/00wrevg56', 'en', 1, 'https://ror.org/00wrevg56 University College Hospital'), (20719, 'https://ror.org/00wrkkt81', 'no_lang_code', 1, 'https://ror.org/00wrkkt81 Kemrock Industries And Exports (Italy)'), (20720, 'https://ror.org/00wtp2z59', 'en', 1, 'https://ror.org/00wtp2z59 Palestinian Energy and Environment Research Center'), (20721, 'https://ror.org/00wv4gv48', 'no_lang_code', 1, 'https://ror.org/00wv4gv48 Quick Reaction Corporation (United States)'), (20722, 'https://ror.org/00wwfjc16', 'no_lang_code', 1, 'https://ror.org/00wwfjc16 Singleton Birch (United Kingdom)'), (20723, 'https://ror.org/00wx3ns38', 'fr', 1, 'https://ror.org/00wx3ns38 Institut Supérieur d''Études Maritimes المعهد العالي للدراسات البحرية'), (20724, 'https://ror.org/00wydr975', 'en', 1, 'https://ror.org/00wydr975 Northwest Women''s and Children''s Hospital 西北妇女儿童医院'), (20725, 'https://ror.org/00wyga863', 'no_lang_code', 1, 'https://ror.org/00wyga863 Nanoforce Technology (United Kingdom)'), (20726, 'https://ror.org/00wz3h896', 'no_lang_code', 1, 'https://ror.org/00wz3h896 RedZinc (Ireland)'), (20727, 'https://ror.org/00wz8ne48', 'no_lang_code', 1, 'https://ror.org/00wz8ne48 Zipalog (United States)'), (20728, 'https://ror.org/00wzhk182', 'en', 1, 'https://ror.org/00wzhk182 American University of Health Sciences'), (20729, 'https://ror.org/00x0j8257', 'en', 1, 'https://ror.org/00x0j8257 Goodmayes Hospital'), (20730, 'https://ror.org/00x37ty92', 'en', 1, 'https://ror.org/00x37ty92 Student Biotechnology Network'), (20731, 'https://ror.org/00x444s43', 'en', 1, 'https://ror.org/00x444s43 Homerton University Hospital'), (20732, 'https://ror.org/00x4mmh13', 'no_lang_code', 1, 'https://ror.org/00x4mmh13 Nonwovens Innovation & Research Institute'), (20733, 'https://ror.org/00x4mq261', 'fr', 1, 'https://ror.org/00x4mq261 École Nationale d''Administration'), (20734, 'https://ror.org/00x51ts23', 'pt', 1, 'https://ror.org/00x51ts23 Centro Universitário Campos de Andrade'), (20735, 'https://ror.org/00x6k0023', 'es', 1, 'https://ror.org/00x6k0023 Corporación Educativa del Litoral'), (20736, 'https://ror.org/00x6s3a91', 'en', 1, 'https://ror.org/00x6s3a91 Saint Göran Hospital Sankt Görans sjukhus'), (20737, 'https://ror.org/00x76st93', 'es', 1, 'https://ror.org/00x76st93 Universidad Católica de Costa Rica'), (20738, 'https://ror.org/00x835z16', 'fr', 1, 'https://ror.org/00x835z16 Université Chrétienne du Nord d’Haïti'), (20739, 'https://ror.org/00xag4a20', 'ca', 1, 'https://ror.org/00xag4a20 Petita i Mitjana Empresa de Catalunya'), (20740, 'https://ror.org/00xb81q67', 'fr', 1, 'https://ror.org/00xb81q67 École Supérieure de Gestion'), (20741, 'https://ror.org/00xdrzy17', 'en', 1, 'https://ror.org/00xdrzy17 National Institute of Hospital Administration 卫生部医院管理研究所'), (20742, 'https://ror.org/00xfgvj95', 'en', 1, 'https://ror.org/00xfgvj95 TÜBİTAK National Observatory TÜBİTAK Ulusal Gözlemevi'), (20743, 'https://ror.org/00xfvkq36', 'en', 1, 'https://ror.org/00xfvkq36 Vasyl'' Stus Donetsk National University Донецький національний університет імені Василя Стуса'), (20744, 'https://ror.org/00xhnny30', 'en', 1, 'https://ror.org/00xhnny30 Ideas Foundation'), (20745, 'https://ror.org/00xjnse39', 'en', 1, 'https://ror.org/00xjnse39 Oaks Hospital'), (20746, 'https://ror.org/00xkkpn05', 'en', 1, 'https://ror.org/00xkkpn05 Norfolk Community Health and Care NHS Trust'), (20747, 'https://ror.org/00xmqmx64', 'en', 1, 'https://ror.org/00xmqmx64 Senckenberg Gesellschaft für Naturforschung Senckenberg Society for Nature Research'), (20748, 'https://ror.org/00xpsm226', 'no_lang_code', 1, 'https://ror.org/00xpsm226 Grupo Panorama (Spain)'), (20749, 'https://ror.org/00xsnzk20', 'en', 1, 'https://ror.org/00xsnzk20 Slovak Hydrometeorological Institute'), (20750, 'https://ror.org/00xteb469', 'en', 1, 'https://ror.org/00xteb469 Shanghai Huangpu District Central Hospital 黄浦区中心医院'), (20751, 'https://ror.org/00xwv4z20', 'es', 1, 'https://ror.org/00xwv4z20 Universidad Nacional del Este'), (20752, 'https://ror.org/00xxtbb12', 'no_lang_code', 1, 'https://ror.org/00xxtbb12 Naval Architecture Progress (Greece)'), (20753, 'https://ror.org/00y0cw843', 'no_lang_code', 1, 'https://ror.org/00y0cw843 Scanogen (United States)'), (20754, 'https://ror.org/00y0x8k49', 'en', 1, 'https://ror.org/00y0x8k49 Association Canadienne de Counseling et de Psychothérapie Canadian Counselling and Psychotherapy Association'), (20755, 'https://ror.org/00y13f984', 'es', 1, 'https://ror.org/00y13f984 Universidad Científica Latinoamericana de Hidalgo'), (20756, 'https://ror.org/00y7snj24', 'en', 1, 'https://ror.org/00y7snj24 Northwest University'), (20757, 'https://ror.org/00y8cbr22', 'no_lang_code', 1, 'https://ror.org/00y8cbr22 Senceive (United Kingdom)'), (20758, 'https://ror.org/00yb46674', 'en', 1, 'https://ror.org/00yb46674 Newquay Community Hospital'), (20759, 'https://ror.org/00yb8k233', 'en', 1, 'https://ror.org/00yb8k233 Shanghai Second People''s Hospital 上海市第二人民医院'), (20760, 'https://ror.org/00ychtq28', 'fr', 1, 'https://ror.org/00ychtq28 École des Hautes Études Commerciales'), (20761, 'https://ror.org/00ydm7519', 'es', 1, 'https://ror.org/00ydm7519 Universidad Isidro Fabela de Toluca'), (20762, 'https://ror.org/00ydqb522', 'no_lang_code', 1, 'https://ror.org/00ydqb522 Systemexpert Consulting'), (20763, 'https://ror.org/00yeg5v71', 'no_lang_code', 1, 'https://ror.org/00yeg5v71 Nubad (United States)'), (20764, 'https://ror.org/00yf1b023', 'no_lang_code', 1, 'https://ror.org/00yf1b023 Verbund (Austria)'), (20765, 'https://ror.org/00yfj3947', 'no_lang_code', 1, 'https://ror.org/00yfj3947 Momatec (Germany)'), (20766, 'https://ror.org/00yfjng44', 'en', 1, 'https://ror.org/00yfjng44 Universities at Shady Grove'), (20767, 'https://ror.org/00ygc7g86', 'en', 1, 'https://ror.org/00ygc7g86 National Association of Local Boards of Health'), (20768, 'https://ror.org/00ykc7z09', 'no_lang_code', 1, 'https://ror.org/00ykc7z09 PragmatIC (United Kingdom)'), (20769, 'https://ror.org/00yn7fh07', 'en', 1, 'https://ror.org/00yn7fh07 International Union of Radioecology'), (20770, 'https://ror.org/00yp89t60', 'en', 1, 'https://ror.org/00yp89t60 National School of Business and Management in Settat École Nationale de Commerce et de Gestion de Settat'), (20771, 'https://ror.org/00ypv0m95', 'en', 1, 'https://ror.org/00ypv0m95 Ministry of Culture Ministère de la Culture'), (20772, 'https://ror.org/00ypzqf67', 'en', 1, 'https://ror.org/00ypzqf67 Sanexen Environmental Services'), (20773, 'https://ror.org/00yvkcc48', 'no_lang_code', 1, 'https://ror.org/00yvkcc48 SomaLogic (United States)'), (20774, 'https://ror.org/00z1pf798', 'es', 1, 'https://ror.org/00z1pf798 Universidad de Managua'), (20775, 'https://ror.org/00z1wsn64', 'en', 1, 'https://ror.org/00z1wsn64 Bushey Fields Hospital'), (20776, 'https://ror.org/00z1y4j19', 'en', 1, 'https://ror.org/00z1y4j19 University Hospital of Hartlepool'), (20777, 'https://ror.org/00z4t3785', 'en', 1, 'https://ror.org/00z4t3785 The Rotherham NHS Foundation Trust'), (20778, 'https://ror.org/00z6nh165', 'es', 1, 'https://ror.org/00z6nh165 Universidad Privada San Carlos'), (20779, 'https://ror.org/00z72df47', 'no_lang_code', 1, 'https://ror.org/00z72df47 Scientifica (United Kingdom)'), (20780, 'https://ror.org/00z9hsx23', 'en', 1, 'https://ror.org/00z9hsx23 Rothbury Community Hospital'), (20781, 'https://ror.org/00z9wtp09', 'no_lang_code', 1, 'https://ror.org/00z9wtp09 Aichi Shukutoku University 愛知淑徳大学'), (20782, 'https://ror.org/00zc7cw49', 'no_lang_code', 1, 'https://ror.org/00zc7cw49 Momentum (United Kingdom)'), (20783, 'https://ror.org/00zd3hh13', 'no_lang_code', 1, 'https://ror.org/00zd3hh13 SEQUOIA (Italy)'), (20784, 'https://ror.org/00zda8x95', 'en', 1, 'https://ror.org/00zda8x95 Unity College'), (20785, 'https://ror.org/00zdr6w59', 'en', 1, 'https://ror.org/00zdr6w59 Sutton Hospital'), (20786, 'https://ror.org/00zdyy359', 'en', 1, 'https://ror.org/00zdyy359 Abdullah Gül University Abdullah Gül Üniversitesi'), (20787, 'https://ror.org/00zgqfa58', 'en', 1, 'https://ror.org/00zgqfa58 Odyssey House Louisiana'), (20788, 'https://ror.org/00zpf0626', 'no_lang_code', 1, 'https://ror.org/00zpf0626 Nokia (United Kingdom)'), (20789, 'https://ror.org/00zqfkn54', 'en', 1, 'https://ror.org/00zqfkn54 Wesley University'), (20790, 'https://ror.org/00zthth08', 'no_lang_code', 1, 'https://ror.org/00zthth08 Uvasol (United Kingdom)'), (20791, 'https://ror.org/00zxsnd45', 'en', 1, 'https://ror.org/00zxsnd45 Cranefield College'), (20792, 'https://ror.org/00zy9qe71', 'en', 1, 'https://ror.org/00zy9qe71 Centro de Estudios Universitarios Xochicalco Xochicalco University'), (20793, 'https://ror.org/00zyh6d22', 'no_lang_code', 1, 'https://ror.org/00zyh6d22 Hakim Sabzevari University دانشگاه حکیم سبزواری'), (20794, 'https://ror.org/0102bpa71', 'no_lang_code', 1, 'https://ror.org/0102bpa71 Sisteplant (Spain)'), (20795, 'https://ror.org/0102ea670', 'en', 1, 'https://ror.org/0102ea670 Society for Socialist Studies Société détudes socialistes'), (20796, 'https://ror.org/0103eqz62', 'en', 1, 'https://ror.org/0103eqz62 Recherche Canada Research Canada'), (20797, 'https://ror.org/0103jrh39', 'en', 1, 'https://ror.org/0103jrh39 BMI The London Independent Hospital'), (20798, 'https://ror.org/0105bda30', 'en', 1, 'https://ror.org/0105bda30 Virtual University of Tunis جامعة تونس الافتراضية'), (20799, 'https://ror.org/0105bs557', 'no_lang_code', 1, 'https://ror.org/0105bs557 De Lijn (Belgium)'), (20800, 'https://ror.org/0106dk572', 'nl', 1, 'https://ror.org/0106dk572 Promotie Binnenvaart Vlaanderen Promotion Office for Inland Navigation in Flanders'), (20801, 'https://ror.org/0106g1z72', 'no_lang_code', 1, 'https://ror.org/0106g1z72 Quercus X-ray Technologies (United States)'), (20802, 'https://ror.org/0106g8w88', 'no_lang_code', 1, 'https://ror.org/0106g8w88 Spring Bank Pharmaceuticals (United States)'), (20803, 'https://ror.org/0106ne629', 'no_lang_code', 1, 'https://ror.org/0106ne629 Metronix (Germany)'), (20804, 'https://ror.org/0106sxj39', 'es', 1, 'https://ror.org/0106sxj39 Universidad Casa Blanca'), (20805, 'https://ror.org/01093z329', 'no_lang_code', 1, 'https://ror.org/01093z329 SAS Institute (United States)'), (20806, 'https://ror.org/010c6zy12', 'en', 1, 'https://ror.org/010c6zy12 Trident University International'), (20807, 'https://ror.org/010dms986', 'no_lang_code', 1, 'https://ror.org/010dms986 ORT Israel'), (20808, 'https://ror.org/010e34m27', 'no_lang_code', 1, 'https://ror.org/010e34m27 Zayer (Spain)'), (20809, 'https://ror.org/010exe056', 'en', 1, 'https://ror.org/010exe056 Ilfracombe Tyrrell Hospital'), (20810, 'https://ror.org/010fb5010', 'pt', 1, 'https://ror.org/010fb5010 Secretaria Regional do Ambiente e Recursos Naturais'), (20811, 'https://ror.org/010frds68', 'no_lang_code', 1, 'https://ror.org/010frds68 Seluxit (Denmark)'), (20812, 'https://ror.org/010gr4v10', 'no_lang_code', 1, 'https://ror.org/010gr4v10 Nenuphar (France)'), (20813, 'https://ror.org/010j3wg85', 'en', 1, 'https://ror.org/010j3wg85 Communitech'), (20814, 'https://ror.org/010jcak55', 'no_lang_code', 1, 'https://ror.org/010jcak55 Plastia (Spain)'), (20815, 'https://ror.org/010jktr86', 'en', 1, 'https://ror.org/010jktr86 Norwegian Metrology Service'), (20816, 'https://ror.org/010m84w02', 'no_lang_code', 1, 'https://ror.org/010m84w02 Helix Biopharma (Canada)'), (20817, 'https://ror.org/010n3pg47', 'no_lang_code', 1, 'https://ror.org/010n3pg47 Zeus Scientific (United States)'), (20818, 'https://ror.org/010nb2b07', 'en', 1, 'https://ror.org/010nb2b07 Purley War Memorial Hospital'), (20819, 'https://ror.org/010ps5r85', 'en', 1, 'https://ror.org/010ps5r85 Fundación Universitaria San Martín Saint Martin University'), (20820, 'https://ror.org/010r9dy59', 'es', 1, 'https://ror.org/010r9dy59 Universidad Autónoma de Chile'), (20821, 'https://ror.org/010s9qs41', 'en', 1, 'https://ror.org/010s9qs41 Shijiazhuang Great Wall Hospital 石家庄长城医院'), (20822, 'https://ror.org/010tvj547', 'no_lang_code', 1, 'https://ror.org/010tvj547 Sedia Biosciences (United States)'), (20823, 'https://ror.org/010vqh084', 'en', 1, 'https://ror.org/010vqh084 North Carolina Public Schools'), (20824, 'https://ror.org/010vry420', 'en', 1, 'https://ror.org/010vry420 National Merit Scholarship Corporation'), (20825, 'https://ror.org/010w4rs44', 'es', 1, 'https://ror.org/010w4rs44 Universidad Técnica Luis Vargas Torres'), (20826, 'https://ror.org/010wna455', 'no_lang_code', 1, 'https://ror.org/010wna455 ELFE Group (Greece) Ελληνικά Λιπάσματα και Χημικά'), (20827, 'https://ror.org/010xbqa75', 'de', 1, 'https://ror.org/010xbqa75 Krankenhaus Bruneck'), (20828, 'https://ror.org/01109d775', 'en', 1, 'https://ror.org/01109d775 Cairn University'), (20829, 'https://ror.org/0110g7c84', 'no_lang_code', 1, 'https://ror.org/0110g7c84 WHM Group'), (20830, 'https://ror.org/01138at48', 'no_lang_code', 1, 'https://ror.org/01138at48 Virtual Open Systems (France)'), (20831, 'https://ror.org/0116akb37', 'en', 1, 'https://ror.org/0116akb37 Chiba Kaihin Municipal Hospital 千葉市立海浜病院'), (20832, 'https://ror.org/0116kk067', 'en', 1, 'https://ror.org/0116kk067 Leatherhead Community Hospital'), (20833, 'https://ror.org/0117q7625', 'fr', 1, 'https://ror.org/0117q7625 Protestant University in Congo Université Protestante au Congo'), (20834, 'https://ror.org/0117rgr12', 'en', 1, 'https://ror.org/0117rgr12 Perth Exoplanet Survey Telescope Observatory'), (20835, 'https://ror.org/0119z9797', 'no_lang_code', 1, 'https://ror.org/0119z9797 Cybernet Systems Corporation (Canada)'), (20836, 'https://ror.org/011adk382', 'en', 1, 'https://ror.org/011adk382 Yanbu University College كلية ينبع الجامعية'), (20837, 'https://ror.org/011bd9v54', 'es', 1, 'https://ror.org/011bd9v54 Universidad Casa Grande'), (20838, 'https://ror.org/011c78869', 'en', 1, 'https://ror.org/011c78869 Hemel Hempstead Hospital'), (20839, 'https://ror.org/011d6dm60', 'en', 1, 'https://ror.org/011d6dm60 International University of Management'), (20840, 'https://ror.org/011ebne09', 'pt', 1, 'https://ror.org/011ebne09 Centro Universitário Padre Anchieta'), (20841, 'https://ror.org/011k2tc02', 'en', 1, 'https://ror.org/011k2tc02 Beccles & District War Memorial Hospital'), (20842, 'https://ror.org/011m1x742', 'en', 1, 'https://ror.org/011m1x742 First People''s Hospital of Chongqing 重庆市第一人民医院'), (20843, 'https://ror.org/011n2s048', 'en', 1, 'https://ror.org/011n2s048 Tianjin Anding Hospital 天津市安定医院'), (20844, 'https://ror.org/011nrx077', 'no_lang_code', 1, 'https://ror.org/011nrx077 Systematic (Netherlands)'), (20845, 'https://ror.org/011pn8n48', 'en', 1, 'https://ror.org/011pn8n48 Canadian Association for Commonwealth Literature and Language Studies'), (20846, 'https://ror.org/011va6w40', 'no_lang_code', 1, 'https://ror.org/011va6w40 Stratophase (United Kingdom)'), (20847, 'https://ror.org/011w61724', 'no_lang_code', 1, 'https://ror.org/011w61724 Sysgo (Czechia)'), (20848, 'https://ror.org/011w66729', 'en', 1, 'https://ror.org/011w66729 Daniel Langlois Foundation for Art Science and Technology'), (20849, 'https://ror.org/011wegm62', 'no_lang_code', 1, 'https://ror.org/011wegm62 Technomar (Germany)'), (20850, 'https://ror.org/011wpwt21', 'en', 1, 'https://ror.org/011wpwt21 Southwestern Law School'), (20851, 'https://ror.org/011y4d392', 'en', 1, 'https://ror.org/011y4d392 Superior Court of California'), (20852, 'https://ror.org/011zf9m55', 'no_lang_code', 1, 'https://ror.org/011zf9m55 William Ross (United Kingdom)'), (20853, 'https://ror.org/0120t7422', 'no_lang_code', 1, 'https://ror.org/0120t7422 Sensys Networks (United States)'), (20854, 'https://ror.org/0122g5k54', 'pt', 1, 'https://ror.org/0122g5k54 Centro Universitário de Caratinga'), (20855, 'https://ror.org/0127drs35', 'en', 1, 'https://ror.org/0127drs35 Little Plumstead Hospital'), (20856, 'https://ror.org/012835d77', 'pt', 1, 'https://ror.org/012835d77 Centro Universitário do Pará'), (20857, 'https://ror.org/01299qg41', 'en', 1, 'https://ror.org/01299qg41 Nez Perce Tribal Executive Committee'), (20858, 'https://ror.org/0129z0867', 'en', 1, 'https://ror.org/0129z0867 Jean Piaget University of Angola Universidade Jean Piaget de Angola'), (20859, 'https://ror.org/012g3p565', 'en', 1, 'https://ror.org/012g3p565 St Barnabas Hospital'), (20860, 'https://ror.org/012k6p920', 'no_lang_code', 1, 'https://ror.org/012k6p920 National Microelectronics Applications Centre (Ireland)'), (20861, 'https://ror.org/012m7et47', 'no_lang_code', 1, 'https://ror.org/012m7et47 Naneum (United Kingdom)'), (20862, 'https://ror.org/012mfm969', 'no_lang_code', 1, 'https://ror.org/012mfm969 NIL Technology (Denmark)'), (20863, 'https://ror.org/012mmaq80', 'pt', 1, 'https://ror.org/012mmaq80 Centro Universitário Franciscano do Paraná'), (20864, 'https://ror.org/012tc8p52', 'no_lang_code', 1, 'https://ror.org/012tc8p52 Techint (Italy)'), (20865, 'https://ror.org/012v8ks77', 'en', 1, 'https://ror.org/012v8ks77 San Luis Obispo County Drug and Alcohol Services'), (20866, 'https://ror.org/012wtwr40', 'pt', 1, 'https://ror.org/012wtwr40 Centro Universitário Newton Paiva'), (20867, 'https://ror.org/0134twj05', 'en', 1, 'https://ror.org/0134twj05 Youth Service Project'), (20868, 'https://ror.org/01380h596', 'es', 1, 'https://ror.org/01380h596 Instituto Profesional Latinoamericano de Comercio Exterior'), (20869, 'https://ror.org/01388jj23', 'en', 1, 'https://ror.org/01388jj23 National Consumers League'), (20870, 'https://ror.org/0138bxv06', 'es', 1, 'https://ror.org/0138bxv06 Centro Universitario Luis Donaldo Colosio Murrieta'), (20871, 'https://ror.org/0138xww93', 'no_lang_code', 1, 'https://ror.org/0138xww93 Prism Informatics (Italy)'), (20872, 'https://ror.org/0139vf833', 'es', 1, 'https://ror.org/0139vf833 Universidad San Gregorio de Portoviejo'), (20873, 'https://ror.org/013etyn53', 'en', 1, 'https://ror.org/013etyn53 National Communication Association'), (20874, 'https://ror.org/013fgjz36', 'es', 1, 'https://ror.org/013fgjz36 Universidad Lux'), (20875, 'https://ror.org/013fs2498', 'en', 1, 'https://ror.org/013fs2498 Woodbury University'), (20876, 'https://ror.org/013g3g638', 'no_lang_code', 1, 'https://ror.org/013g3g638 Vertically Integrated Systems (Germany)'), (20877, 'https://ror.org/013jc2p81', 'en', 1, 'https://ror.org/013jc2p81 Swope Health Services'), (20878, 'https://ror.org/013m3my89', 'es', 1, 'https://ror.org/013m3my89 Universidad Nacional Micaela Bastidas de Apurimac'), (20879, 'https://ror.org/013n8jm40', 'no_lang_code', 1, 'https://ror.org/013n8jm40 Thésame (France)'), (20880, 'https://ror.org/013p21z46', 'fr', 1, 'https://ror.org/013p21z46 Institut supérieur de la Magistrature المعهد العالي للقضاء'), (20881, 'https://ror.org/013p2c441', 'no_lang_code', 1, 'https://ror.org/013p2c441 Centre for Imaging Technology Commercialization'), (20882, 'https://ror.org/013pajk64', 'pt', 1, 'https://ror.org/013pajk64 FUMEC University Universidade Fundação Mineira de Educação e Cultura'), (20883, 'https://ror.org/013qbng65', 'en', 1, 'https://ror.org/013qbng65 Andover War Memorial Hospital'), (20884, 'https://ror.org/013qfkw58', 'en', 1, 'https://ror.org/013qfkw58 Maharishi Markandeshwar University, Mullana महर्षि मर्कंदेश्वर विश्वविद्यालय, मुलाना'), (20885, 'https://ror.org/013qt8483', 'en', 1, 'https://ror.org/013qt8483 University of the Ozarks'), (20886, 'https://ror.org/013r61763', 'no_lang_code', 1, 'https://ror.org/013r61763 SignaBlok (United States)'), (20887, 'https://ror.org/013sryf19', 'en', 1, 'https://ror.org/013sryf19 Hertfordshire Community NHS Trust'), (20888, 'https://ror.org/013veys68', 'en', 1, 'https://ror.org/013veys68 Cassel Hospital'), (20889, 'https://ror.org/013vgsx18', 'no_lang_code', 1, 'https://ror.org/013vgsx18 Protein Express (United States)'), (20890, 'https://ror.org/013wfcy24', 'no_lang_code', 1, 'https://ror.org/013wfcy24 Storvik (Norway)'), (20891, 'https://ror.org/013wphc16', 'en', 1, 'https://ror.org/013wphc16 Castleberg Hospital'), (20892, 'https://ror.org/013ykv656', 'en', 1, 'https://ror.org/013ykv656 SEMI'), (20893, 'https://ror.org/013ys5k90', 'es', 1, 'https://ror.org/013ys5k90 Universidad del Sinú'), (20894, 'https://ror.org/0142g0j16', 'en', 1, 'https://ror.org/0142g0j16 Pendle Community Hospital'), (20895, 'https://ror.org/0142kd761', 'it', 1, 'https://ror.org/0142kd761 Ricerca e Progetto'), (20896, 'https://ror.org/0144xq035', 'en', 1, 'https://ror.org/0144xq035 FOD Financiën FÖD Finanzen SPF Finances, Service Public Federal Finances'), (20897, 'https://ror.org/0144zzh56', 'en', 1, 'https://ror.org/0144zzh56 Bassetlaw Hospital'), (20898, 'https://ror.org/01450d509', 'no_lang_code', 1, 'https://ror.org/01450d509 Semantic Web Company (Austria)'), (20899, 'https://ror.org/0145cvg83', 'en', 1, 'https://ror.org/0145cvg83 Business University of Costa Rica Universidad Empresarial de Costa Rica'), (20900, 'https://ror.org/0145dtj11', 'en', 1, 'https://ror.org/0145dtj11 University of Santa Monica'), (20901, 'https://ror.org/0147bee55', 'no_lang_code', 1, 'https://ror.org/0147bee55 Mondragon Corporation (Germany)'); INSERT INTO `rors` VALUES (20902, 'https://ror.org/0148chp23', 'no_lang_code', 1, 'https://ror.org/0148chp23 Cortech Solutions (United States)'), (20903, 'https://ror.org/0148s0r28', 'no_lang_code', 1, 'https://ror.org/0148s0r28 Pharmaxis (Canada)'), (20904, 'https://ror.org/014fgst40', 'no_lang_code', 1, 'https://ror.org/014fgst40 Suni Medical Imaging (United States)'), (20905, 'https://ror.org/014gamn09', 'no_lang_code', 1, 'https://ror.org/014gamn09 Novomer (United States)'), (20906, 'https://ror.org/014hb3529', 'no_lang_code', 1, 'https://ror.org/014hb3529 Synome (United Kingdom)'), (20907, 'https://ror.org/014hye081', 'no_lang_code', 1, 'https://ror.org/014hye081 Maxam (Spain)'), (20908, 'https://ror.org/014hygp17', 'no_lang_code', 1, 'https://ror.org/014hygp17 Vitkovice - Research and Development (Czechia)'), (20909, 'https://ror.org/014khff20', 'en', 1, 'https://ror.org/014khff20 Kampala University'), (20910, 'https://ror.org/014m3pp97', 'en', 1, 'https://ror.org/014m3pp97 San Diego Mesa College'), (20911, 'https://ror.org/014nw6h77', 'en', 1, 'https://ror.org/014nw6h77 Regional Energy Agency of Crete'), (20912, 'https://ror.org/014pn4247', 'no_lang_code', 1, 'https://ror.org/014pn4247 FitBionic (United States)'), (20913, 'https://ror.org/014pqsx51', 'es', 1, 'https://ror.org/014pqsx51 Universidad Privada de Tacna'), (20914, 'https://ror.org/014v77g24', 'en', 1, 'https://ror.org/014v77g24 Centre for Drug Research and Development'), (20915, 'https://ror.org/014x14082', 'en', 1, 'https://ror.org/014x14082 Queen Victoria Hospital'), (20916, 'https://ror.org/014ydfp77', 'no_lang_code', 1, 'https://ror.org/014ydfp77 Neoceram (Belgium)'), (20917, 'https://ror.org/0150qbw95', 'es', 1, 'https://ror.org/0150qbw95 Universidad Mexicana de Educación a Distancia'), (20918, 'https://ror.org/015135f27', 'en', 1, 'https://ror.org/015135f27 Sealaska Heritage Institute'), (20919, 'https://ror.org/01517we84', 'fr', 1, 'https://ror.org/01517we84 Institut Supérieur International du Tourisme de Tanger المعهد العالي الدولي للسياحة'), (20920, 'https://ror.org/0151s7v18', 'no_lang_code', 1, 'https://ror.org/0151s7v18 Umicore (Germany)'), (20921, 'https://ror.org/0152e2z91', 'pt', 1, 'https://ror.org/0152e2z91 Universidade Iguaçu'), (20922, 'https://ror.org/0154ejv33', 'en', 1, 'https://ror.org/0154ejv33 Herts and Essex Hospital'), (20923, 'https://ror.org/01555fr96', 'pt', 1, 'https://ror.org/01555fr96 Centro Universitário Amparense'), (20924, 'https://ror.org/0156q9695', 'no_lang_code', 1, 'https://ror.org/0156q9695 Tecsol'), (20925, 'https://ror.org/0157yqb81', 'en', 1, 'https://ror.org/0157yqb81 Kandahar University دانشگاه قندهار'), (20926, 'https://ror.org/0158yx659', 'fr', 1, 'https://ror.org/0158yx659 Groupe Institut des Hautes Études Économiques et Sociales'), (20927, 'https://ror.org/015a43103', 'no_lang_code', 1, 'https://ror.org/015a43103 Unisoft (Romania)'), (20928, 'https://ror.org/015ahgd08', 'en', 1, 'https://ror.org/015ahgd08 Brescia University'), (20929, 'https://ror.org/015avwq19', 'no_lang_code', 1, 'https://ror.org/015avwq19 Resoltech (France)'), (20930, 'https://ror.org/015b1qg33', 'no_lang_code', 1, 'https://ror.org/015b1qg33 PBL Assay Science (United States)'), (20931, 'https://ror.org/015byt818', 'en', 1, 'https://ror.org/015byt818 National Energy Research Center'), (20932, 'https://ror.org/015c3k777', 'en', 1, 'https://ror.org/015c3k777 Texans Standing Tall'), (20933, 'https://ror.org/015cbgp91', 'en', 1, 'https://ror.org/015cbgp91 Chibune General Hospital 千船病院'), (20934, 'https://ror.org/015cent83', 'es', 1, 'https://ror.org/015cent83 Instituto Profesional Providencia'), (20935, 'https://ror.org/015gsp051', 'en', 1, 'https://ror.org/015gsp051 Tuesdays Children'), (20936, 'https://ror.org/015h3ax78', 'en', 1, 'https://ror.org/015h3ax78 Trevecca Nazarene University'), (20937, 'https://ror.org/015hsqv25', 'es', 1, 'https://ror.org/015hsqv25 Corporación Escuela Superior de Administración y Estudios Tecnológicos'), (20938, 'https://ror.org/015jgm839', 'es', 1, 'https://ror.org/015jgm839 Centro Universitario Emmanuel Kant'), (20939, 'https://ror.org/015mnn720', 'en', 1, 'https://ror.org/015mnn720 Learning Partnership'), (20940, 'https://ror.org/015mptv94', 'hu', 1, 'https://ror.org/015mptv94 Somogy Megyei Kaposi Mór Oktató Kórház'), (20941, 'https://ror.org/015mtjx14', 'no_lang_code', 1, 'https://ror.org/015mtjx14 RegeneMed (United States)'), (20942, 'https://ror.org/015n5ef16', 'en', 1, 'https://ror.org/015n5ef16 Quinsigamond Community College'), (20943, 'https://ror.org/015pd1843', 'no_lang_code', 1, 'https://ror.org/015pd1843 Phoenix Scientific Industries (United Kingdom)'), (20944, 'https://ror.org/015pwzh41', 'no_lang_code', 1, 'https://ror.org/015pwzh41 Weyerhaeuser (United States)'), (20945, 'https://ror.org/015rec412', 'es', 1, 'https://ror.org/015rec412 Corporación Universitaria Autónoma de Nariño'), (20946, 'https://ror.org/015sct804', 'es', 1, 'https://ror.org/015sct804 Universidad de Ciencias Médicas de Sancti Spíritus'), (20947, 'https://ror.org/015snna87', 'no_lang_code', 1, 'https://ror.org/015snna87 NOVA Scientific (United States)'), (20948, 'https://ror.org/015swn341', 'en', 1, 'https://ror.org/015swn341 Hawkhurst Community Hospital'), (20949, 'https://ror.org/015wdp703', 'en', 1, 'https://ror.org/015wdp703 Federico Villarreal National University Universidad Nacional Federico Villarreal'), (20950, 'https://ror.org/015x6xa25', 'es', 1, 'https://ror.org/015x6xa25 Corporación John F. Kennedy'), (20951, 'https://ror.org/015xhb971', 'en', 1, 'https://ror.org/015xhb971 Primrose Hill Hospital'), (20952, 'https://ror.org/015yk4694', 'no_lang_code', 1, 'https://ror.org/015yk4694 Noesis Solutions (Belgium)'), (20953, 'https://ror.org/015yks327', 'en', 1, 'https://ror.org/015yks327 Rhode Island Coalition Against Domestic Violence'), (20954, 'https://ror.org/015z05t63', 'en', 1, 'https://ror.org/015z05t63 Métis National Council Ralliement national des Métis'), (20955, 'https://ror.org/0160m7k04', 'fr', 1, 'https://ror.org/0160m7k04 Institut Supérieur de Technique Médicale'), (20956, 'https://ror.org/01649ww56', 'en', 1, 'https://ror.org/01649ww56 Institut Pontifical d''Études Médiévales Pontifical Institute of Mediaeval Studies'), (20957, 'https://ror.org/01663mv64', 'fr', 1, 'https://ror.org/01663mv64 Centre hospitalier Bretagne Atlantique'), (20958, 'https://ror.org/016967s24', 'es', 1, 'https://ror.org/016967s24 Instituto Profesional Valle Central'), (20959, 'https://ror.org/016aq4f67', 'es', 1, 'https://ror.org/016aq4f67 Centro de Estudios Universitarios Horacio Zuñiga'), (20960, 'https://ror.org/016b8st17', 'es', 1, 'https://ror.org/016b8st17 Universidad Vizcaya de las Américas'), (20961, 'https://ror.org/016bj9f63', 'en', 1, 'https://ror.org/016bj9f63 United Way of Anchorage'), (20962, 'https://ror.org/016ec0748', 'no_lang_code', 1, 'https://ror.org/016ec0748 Naval Hospital Yokosuka Japan 横須賀米海軍病院'), (20963, 'https://ror.org/016eqnh03', 'en', 1, 'https://ror.org/016eqnh03 Tartu Biotechnology Park'), (20964, 'https://ror.org/016fjr533', 'fr', 1, 'https://ror.org/016fjr533 Université du Sine Saloum El-Hâdj Ibrahima NIASS'), (20965, 'https://ror.org/016g07382', 'no_lang_code', 1, 'https://ror.org/016g07382 Saiseikai Takaoka Hospital 済生会高岡病院'), (20966, 'https://ror.org/016jrh007', 'en', 1, 'https://ror.org/016jrh007 Khost University دانشگاه خوست'), (20967, 'https://ror.org/016jwxj93', 'en', 1, 'https://ror.org/016jwxj93 Surrey County Council'), (20968, 'https://ror.org/016k08642', 'es', 1, 'https://ror.org/016k08642 Universidad Sämann de Jalisco'), (20969, 'https://ror.org/016kak391', 'pt', 1, 'https://ror.org/016kak391 Centro Universitário FIEO'), (20970, 'https://ror.org/016kj2436', 'en', 1, 'https://ror.org/016kj2436 Royal Observatory'), (20971, 'https://ror.org/016ntyy59', 'no_lang_code', 1, 'https://ror.org/016ntyy59 Noble’s Hospital'), (20972, 'https://ror.org/016r60a96', 'no_lang_code', 1, 'https://ror.org/016r60a96 NOVASiC (France)'), (20973, 'https://ror.org/016sj4q14', 'en', 1, 'https://ror.org/016sj4q14 Buckingham Community Hospital'), (20974, 'https://ror.org/016vdk046', 'en', 1, 'https://ror.org/016vdk046 Whipps Cross University Hospital'), (20975, 'https://ror.org/016wh5q48', 'es', 1, 'https://ror.org/016wh5q48 Centro Universitario del Valle de Zacapu'), (20976, 'https://ror.org/016xjr028', 'no_lang_code', 1, 'https://ror.org/016xjr028 Rad Data Communications (Israel)'), (20977, 'https://ror.org/017056r72', 'no_lang_code', 1, 'https://ror.org/017056r72 Thales (Belgium)'), (20978, 'https://ror.org/0170ffh34', 'fr', 1, 'https://ror.org/0170ffh34 Institut Supérieur du Génie Appliqué'), (20979, 'https://ror.org/0174fh497', 'no_lang_code', 1, 'https://ror.org/0174fh497 Remmers Bouwchemie (Netherlands)'), (20980, 'https://ror.org/0174ygc67', 'en', 1, 'https://ror.org/0174ygc67 Potters Bar Community Hospital'), (20981, 'https://ror.org/0175p1a50', 'es', 1, 'https://ror.org/0175p1a50 Universidad Latinoamericana de Ciencia y Tecnología'), (20982, 'https://ror.org/0176aa147', 'en', 1, 'https://ror.org/0176aa147 Petrozavodsk State University Петрозаводский государственный университет'), (20983, 'https://ror.org/01776ep11', 'en', 1, 'https://ror.org/01776ep11 Leeds Community Healthcare NHS Trust'), (20984, 'https://ror.org/0178yne88', 'es', 1, 'https://ror.org/0178yne88 Servicio Aragonés de Salud'), (20985, 'https://ror.org/017ah0j38', 'en', 1, 'https://ror.org/017ah0j38 Horsham Hospital'), (20986, 'https://ror.org/017b62a57', 'en', 1, 'https://ror.org/017b62a57 Ashburton and Buckfastleigh Health and Wellbeing Centre'), (20987, 'https://ror.org/017bt7t72', 'en', 1, 'https://ror.org/017bt7t72 Leamington Spa Hospital'), (20988, 'https://ror.org/017bynh47', 'en', 1, 'https://ror.org/017bynh47 Hospital La Paz Institute for Health Research'), (20989, 'https://ror.org/017cs0m08', 'en', 1, 'https://ror.org/017cs0m08 Guisborough Primary Care Hospital'), (20990, 'https://ror.org/017d8cr03', 'nl', 1, 'https://ror.org/017d8cr03 Centre for Agriculture and Environment Foundation Centrum voor Landbouw en Milieu'), (20991, 'https://ror.org/017f0cd82', 'no_lang_code', 1, 'https://ror.org/017f0cd82 Continental (United Kingdom)'), (20992, 'https://ror.org/017g3c465', 'es', 1, 'https://ror.org/017g3c465 Universidad Metropolitana de Ciencia y Tecnología'), (20993, 'https://ror.org/017gvys12', 'no_lang_code', 1, 'https://ror.org/017gvys12 Sogin (Italy)'), (20994, 'https://ror.org/017j8hh08', 'de', 1, 'https://ror.org/017j8hh08 Schweizerisches Forschungsinstitut für Hochgebirgsklima und Medizin'), (20995, 'https://ror.org/017jtd728', 'en', 1, 'https://ror.org/017jtd728 Higher Institute of Mining, Industry and Geology École des Mines, de l''Industrie et de la Géologie'), (20996, 'https://ror.org/017kqf203', 'no_lang_code', 1, 'https://ror.org/017kqf203 Napper Architects (United Kingdom)'), (20997, 'https://ror.org/017m8hp04', 'en', 1, 'https://ror.org/017m8hp04 University of Northern Virginia'), (20998, 'https://ror.org/017mfww27', 'en', 1, 'https://ror.org/017mfww27 Point Park University'), (20999, 'https://ror.org/017n1k193', 'en', 1, 'https://ror.org/017n1k193 French University of Egypt Université française d''Égypte الجامعة الفرنسية في مصر'), (21000, 'https://ror.org/017p13n71', 'es', 1, 'https://ror.org/017p13n71 Universidad del Centro de Estudios Macroeconómicos de Argentina Université du centre d''études macroeconomiques d''argentine'), (21001, 'https://ror.org/017qp3084', 'no_lang_code', 1, 'https://ror.org/017qp3084 Vaasaett (Finland)'), (21002, 'https://ror.org/017qtn133', 'es', 1, 'https://ror.org/017qtn133 Universidad Monteávila'), (21003, 'https://ror.org/017snsh34', 'es', 1, 'https://ror.org/017snsh34 Institución Universitaria Latina'), (21004, 'https://ror.org/017t65n61', 'en', 1, 'https://ror.org/017t65n61 North Carolina Families United'), (21005, 'https://ror.org/017wwgg26', 'en', 1, 'https://ror.org/017wwgg26 Kigali Independent University Université libre de kigali'), (21006, 'https://ror.org/0180ay989', 'no_lang_code', 1, 'https://ror.org/0180ay989 Fukushimura Hospital 伊勢崎福島病院'), (21007, 'https://ror.org/01827cp44', 'en', 1, 'https://ror.org/01827cp44 Geyserland Observatory'), (21008, 'https://ror.org/0182jhx89', 'no_lang_code', 1, 'https://ror.org/0182jhx89 Dunlap-Stone University'), (21009, 'https://ror.org/018322479', 'en', 1, 'https://ror.org/018322479 Sullivan Veterinary Clinic'), (21010, 'https://ror.org/0184kye93', 'es', 1, 'https://ror.org/0184kye93 Universidad del Mar'), (21011, 'https://ror.org/0189yfh12', 'es', 1, 'https://ror.org/0189yfh12 Franco Mexican University Universidad Franco Mexicana'), (21012, 'https://ror.org/018a3we97', 'no_lang_code', 1, 'https://ror.org/018a3we97 RAFT Solutions (United Kingdom)'), (21013, 'https://ror.org/018cwj358', 'no_lang_code', 1, 'https://ror.org/018cwj358 Micromega Dynamics (Belgium)'), (21014, 'https://ror.org/018d33y89', 'en', 1, 'https://ror.org/018d33y89 Neurobehavioral Systems'), (21015, 'https://ror.org/018dcz204', 'en', 1, 'https://ror.org/018dcz204 Scope'), (21016, 'https://ror.org/018ekew90', 'en', 1, 'https://ror.org/018ekew90 New Jersey Department of Corrections'), (21017, 'https://ror.org/018hwj434', 'en', 1, 'https://ror.org/018hwj434 Flemish Public Employment Service Vlaamse Dienst voor Arbeidsbemiddeling en Beroepsopleiding'), (21018, 'https://ror.org/018kks649', 'no_lang_code', 1, 'https://ror.org/018kks649 Optotek (Slovenia)'), (21019, 'https://ror.org/018krw812', 'no_lang_code', 1, 'https://ror.org/018krw812 Ridgeback (Italy)'), (21020, 'https://ror.org/018mj2m06', 'pt', 1, 'https://ror.org/018mj2m06 Centro Universitário do Norte'), (21021, 'https://ror.org/018qh5t24', 'en', 1, 'https://ror.org/018qh5t24 North West Ambulance Service NHS Trust'), (21022, 'https://ror.org/018skgq22', 'no_lang_code', 1, 'https://ror.org/018skgq22 Sellafield (United Kingdom)'), (21023, 'https://ror.org/018v0f754', 'fr', 1, 'https://ror.org/018v0f754 École Supérieure de la Magistrature المدرســـــة العليـــــا للقضــــاء'), (21024, 'https://ror.org/018vhc422', 'fr', 1, 'https://ror.org/018vhc422 École Supérieure des Télécommunications'), (21025, 'https://ror.org/018w5ms25', 'en', 1, 'https://ror.org/018w5ms25 Second Hospital of Liaohe Oilfield'), (21026, 'https://ror.org/018xv9w84', 'no_lang_code', 1, 'https://ror.org/018xv9w84 Starpharma (Australia)'), (21027, 'https://ror.org/018y22094', 'en', 1, 'https://ror.org/018y22094 Hazara University جامعہ ہزارہ'), (21028, 'https://ror.org/018y2gs33', 'ro', 1, 'https://ror.org/018y2gs33 Institutul Naţional de Cercetare-Dezvoltare in Construcţii Urbanism şi Dezvoltare Teritorială Durabilă National Institute for Research and Development in Construction, Urban Planning and Sustainable Spatial Development'), (21029, 'https://ror.org/018ze3r73', 'en', 1, 'https://ror.org/018ze3r73 Chukwuemeka Odumegwu Ojukwu University'), (21030, 'https://ror.org/018zgbn57', 'es', 1, 'https://ror.org/018zgbn57 Universidad del Istmo'), (21031, 'https://ror.org/01902pd86', 'en', 1, 'https://ror.org/01902pd86 Manchester Digital Development Agency'), (21032, 'https://ror.org/01913dg57', 'fr', 1, 'https://ror.org/01913dg57 École Supérieure Multinationale des Télécommunications'), (21033, 'https://ror.org/01930h994', 'no_lang_code', 1, 'https://ror.org/01930h994 TechnoVax (United States)'), (21034, 'https://ror.org/019496w77', 'en', 1, 'https://ror.org/019496w77 Getty Conservation Institute'), (21035, 'https://ror.org/0197qh103', 'en', 1, 'https://ror.org/0197qh103 South Baylo University'), (21036, 'https://ror.org/0197se455', 'no_lang_code', 1, 'https://ror.org/0197se455 Product Innovation and Engineering (United States)'), (21037, 'https://ror.org/0198hft79', 'no_lang_code', 1, 'https://ror.org/0198hft79 Vaxcel (United States)'), (21038, 'https://ror.org/0198n3j25', 'en', 1, 'https://ror.org/0198n3j25 Saint Thomas Aquinas North University Universidad del Norte Santo Tomás de Aquino'), (21039, 'https://ror.org/01997ht09', 'no_lang_code', 1, 'https://ror.org/01997ht09 Virtuelle Fabrik (Switzerland)'), (21040, 'https://ror.org/019af7775', 'en', 1, 'https://ror.org/019af7775 St. Joseph Youth Alliance'), (21041, 'https://ror.org/019b9yp12', 'en', 1, 'https://ror.org/019b9yp12 SINE-Institut Sine Institute Süddeutsches Institut für Empirische Sozialforschung'), (21042, 'https://ror.org/019c89h28', 'en', 1, 'https://ror.org/019c89h28 Oruro Technical University Universidad Técnica de Oruro'), (21043, 'https://ror.org/019dhar59', 'en', 1, 'https://ror.org/019dhar59 Trinity College'), (21044, 'https://ror.org/019dk7w11', 'no_lang_code', 1, 'https://ror.org/019dk7w11 Touch Graphics (United States)'), (21045, 'https://ror.org/019dka583', 'en', 1, 'https://ror.org/019dka583 Petal School District'), (21046, 'https://ror.org/019fhz939', 'es', 1, 'https://ror.org/019fhz939 Escuela Superior de Ciencias Empresariales'), (21047, 'https://ror.org/019fz0m35', 'es', 1, 'https://ror.org/019fz0m35 Universidad Maya de las Américas'), (21048, 'https://ror.org/019h09n30', 'no_lang_code', 1, 'https://ror.org/019h09n30 Positron Systems (United States)'), (21049, 'https://ror.org/019hr5954', 'en', 1, 'https://ror.org/019hr5954 Safe Blood for Africa Foundation'), (21050, 'https://ror.org/019htgm96', 'en', 1, 'https://ror.org/019htgm96 Yili Normal University 伊犁师范学院'), (21051, 'https://ror.org/019jjbt65', 'en', 1, 'https://ror.org/019jjbt65 St. Josefs Hospital'), (21052, 'https://ror.org/019kdps70', 'no_lang_code', 1, 'https://ror.org/019kdps70 Marben (France)'), (21053, 'https://ror.org/019mnh256', 'es', 1, 'https://ror.org/019mnh256 Fundación Centro de Educación Superior Investigación y Profesionalización'), (21054, 'https://ror.org/019nf3y14', 'en', 1, 'https://ror.org/019nf3y14 General Hospital of Jinan Military Command'), (21055, 'https://ror.org/019nfqa94', 'no_lang_code', 1, 'https://ror.org/019nfqa94 Biotage (Sweden)'), (21056, 'https://ror.org/019qrvs61', 'no_lang_code', 1, 'https://ror.org/019qrvs61 Pittards (United Kingdom)'), (21057, 'https://ror.org/019r04q09', 'no_lang_code', 1, 'https://ror.org/019r04q09 SOLIDpower (Italy)'), (21058, 'https://ror.org/019rfn866', 'en', 1, 'https://ror.org/019rfn866 Melton Mowbray Hospital'), (21059, 'https://ror.org/019ryn279', 'en', 1, 'https://ror.org/019ryn279 State and University Library'), (21060, 'https://ror.org/019s0ax51', 'en', 1, 'https://ror.org/019s0ax51 United Way of the Ozarks'), (21061, 'https://ror.org/019sq5g45', 'fr', 1, 'https://ror.org/019sq5g45 Collège de Valleyfield'), (21062, 'https://ror.org/019v2dz26', 'no_lang_code', 1, 'https://ror.org/019v2dz26 Point L (Bulgaria)'), (21063, 'https://ror.org/019vdbe39', 'en', 1, 'https://ror.org/019vdbe39 Ishigaki Local Meteorological Observatory'), (21064, 'https://ror.org/019w06c66', 'en', 1, 'https://ror.org/019w06c66 Association canadienne des revues savantes Canadian Association of Learned Journals'), (21065, 'https://ror.org/019wfwn56', 'no_lang_code', 1, 'https://ror.org/019wfwn56 Putzier Oberflächentechnik (Germany)'), (21066, 'https://ror.org/019y83h24', 'fr', 1, 'https://ror.org/019y83h24 École Supérieure Vinci'), (21067, 'https://ror.org/01a04kj17', 'es', 1, 'https://ror.org/01a04kj17 Universidad Hispanoamerica'), (21068, 'https://ror.org/01a203m72', 'en', 1, 'https://ror.org/01a203m72 Benson Idahosa University'), (21069, 'https://ror.org/01a35x275', 'en', 1, 'https://ror.org/01a35x275 Westminster City Council'), (21070, 'https://ror.org/01a583453', 'en', 1, 'https://ror.org/01a583453 Victoria Heart Institute Foundation'), (21071, 'https://ror.org/01a7g4m79', 'no_lang_code', 1, 'https://ror.org/01a7g4m79 Anyang Eye Hospital 安阳市眼科医院'), (21072, 'https://ror.org/01a81wk68', 'pt', 1, 'https://ror.org/01a81wk68 Centro Universitário de Ensino Superior do Amazonas'), (21073, 'https://ror.org/01a8rv278', 'no_lang_code', 1, 'https://ror.org/01a8rv278 Thermacore (United Kingdom)'), (21074, 'https://ror.org/01adb4m49', 'pt', 1, 'https://ror.org/01adb4m49 Centro Universitário de Franca'), (21075, 'https://ror.org/01af87512', 'en', 1, 'https://ror.org/01af87512 National Policing Improvement Agency'), (21076, 'https://ror.org/01afz2176', 'pt', 1, 'https://ror.org/01afz2176 Universidade Salvador'), (21077, 'https://ror.org/01agfbd76', 'es', 1, 'https://ror.org/01agfbd76 Universidad de las Californias'), (21078, 'https://ror.org/01agq7t95', 'en', 1, 'https://ror.org/01agq7t95 Open Window School of Visual Communication'), (21079, 'https://ror.org/01ahgwn58', 'no_lang_code', 1, 'https://ror.org/01ahgwn58 Eckert & Ziegler (United States)'), (21080, 'https://ror.org/01ajhw692', 'no_lang_code', 1, 'https://ror.org/01ajhw692 NP Photonics (United States)'), (21081, 'https://ror.org/01am32j78', 'no_lang_code', 1, 'https://ror.org/01am32j78 New Metals and Chemicals (United Kingdom)'), (21082, 'https://ror.org/01amy5q57', 'en', 1, 'https://ror.org/01amy5q57 Viewpoints Research Institute'), (21083, 'https://ror.org/01anxpp02', 'no_lang_code', 1, 'https://ror.org/01anxpp02 TissueVision (United States)'), (21084, 'https://ror.org/01ar9ff23', 'en', 1, 'https://ror.org/01ar9ff23 Malvern Community Hospital'), (21085, 'https://ror.org/01avsfs85', 'no_lang_code', 1, 'https://ror.org/01avsfs85 Micromath (United States)'), (21086, 'https://ror.org/01awap711', 'en', 1, 'https://ror.org/01awap711 Office of Naval Research'), (21087, 'https://ror.org/01awd1q38', 'en', 1, 'https://ror.org/01awd1q38 Saint Martin''s University'), (21088, 'https://ror.org/01axmcb72', 'es', 1, 'https://ror.org/01axmcb72 Universidad Dorados'), (21089, 'https://ror.org/01b06j989', 'no_lang_code', 1, 'https://ror.org/01b06j989 Ubiquitous Energy (United States)'), (21090, 'https://ror.org/01b0sca09', 'en', 1, 'https://ror.org/01b0sca09 University of El Imam El Mahdi جامعة الامام المهدي'), (21091, 'https://ror.org/01b0z6r56', 'sv', 1, 'https://ror.org/01b0z6r56 Teknikens Hus The Technology House'), (21092, 'https://ror.org/01b2wke14', 'no_lang_code', 1, 'https://ror.org/01b2wke14 Wowbagger Productions'), (21093, 'https://ror.org/01b3ar606', 'no_lang_code', 1, 'https://ror.org/01b3ar606 Eliko Tehnoloogia Arenduskeskus'), (21094, 'https://ror.org/01b4rx434', 'en', 1, 'https://ror.org/01b4rx434 Union of the Baltic Cities'), (21095, 'https://ror.org/01b6bqq51', 'no_lang_code', 1, 'https://ror.org/01b6bqq51 Mesa Analytics & Computing (United States)'), (21096, 'https://ror.org/01b755e19', 'no_lang_code', 1, 'https://ror.org/01b755e19 Pacbrake (Canada)'), (21097, 'https://ror.org/01b8x5j53', 'en', 1, 'https://ror.org/01b8x5j53 Bệnh viện Trung Ương Huế Hue Central Hospital'), (21098, 'https://ror.org/01b9q6e25', 'es', 1, 'https://ror.org/01b9q6e25 Universidad Valle Continental'), (21099, 'https://ror.org/01ba6zt09', 'no_lang_code', 1, 'https://ror.org/01ba6zt09 Meritor (Germany)'), (21100, 'https://ror.org/01baz4g36', 'no_lang_code', 1, 'https://ror.org/01baz4g36 Gfi Informatique (France)'), (21101, 'https://ror.org/01bb1ac21', 'no_lang_code', 1, 'https://ror.org/01bb1ac21 SCI Engineered Materials (United States)'), (21102, 'https://ror.org/01bc2jm91', 'en', 1, 'https://ror.org/01bc2jm91 Haywards Heath Hospital'), (21103, 'https://ror.org/01bcan022', 'en', 1, 'https://ror.org/01bcan022 National Aids Education and Services for Minorities'), (21104, 'https://ror.org/01bcjx771', 'en', 1, 'https://ror.org/01bcjx771 Southern Astrophysical Research Telescope'), (21105, 'https://ror.org/01bgs7g74', 'no_lang_code', 1, 'https://ror.org/01bgs7g74 Roctest (Canada)'), (21106, 'https://ror.org/01bhb2k54', 'en', 1, 'https://ror.org/01bhb2k54 Quality Meat Scotland'), (21107, 'https://ror.org/01bnn5p02', 'en', 1, 'https://ror.org/01bnn5p02 Uplift'), (21108, 'https://ror.org/01bnxkh93', 'en', 1, 'https://ror.org/01bnxkh93 Petersfield Community Hospital'), (21109, 'https://ror.org/01bpk4154', 'en', 1, 'https://ror.org/01bpk4154 St Clement''s Hospital'), (21110, 'https://ror.org/01bqp7k56', 'en', 1, 'https://ror.org/01bqp7k56 University of Advancing Technology'), (21111, 'https://ror.org/01brsq570', 'en', 1, 'https://ror.org/01brsq570 Weymouth Community Hospital'), (21112, 'https://ror.org/01brx0y03', 'no_lang_code', 1, 'https://ror.org/01brx0y03 Vitec (France)'), (21113, 'https://ror.org/01btem129', 'no_lang_code', 1, 'https://ror.org/01btem129 LeadScope (United States)'), (21114, 'https://ror.org/01btmgx36', 'en', 1, 'https://ror.org/01btmgx36 Spire Cambridge Lea Hospital'), (21115, 'https://ror.org/01btzfj32', 'en', 1, 'https://ror.org/01btzfj32 BMI Healthcare'), (21116, 'https://ror.org/01bxyhb88', 'en', 1, 'https://ror.org/01bxyhb88 Nicaraguan University of Science and Technology Universidad Nicaragüense de Ciencia y Tecnologia'), (21117, 'https://ror.org/01bzgy570', 'en', 1, 'https://ror.org/01bzgy570 Roberts Wesleyan College'), (21118, 'https://ror.org/01c1hh988', 'no_lang_code', 1, 'https://ror.org/01c1hh988 PalmSens (Netherlands)'), (21119, 'https://ror.org/01c3gv589', 'en', 1, 'https://ror.org/01c3gv589 Walters Public Schools'), (21120, 'https://ror.org/01c3gx397', 'en', 1, 'https://ror.org/01c3gx397 Nederlands Jeugdinstituut Netherlands Youth Institute'), (21121, 'https://ror.org/01c3s4w91', 'en', 1, 'https://ror.org/01c3s4w91 University of Fredericton'), (21122, 'https://ror.org/01c7gck54', 'en', 1, 'https://ror.org/01c7gck54 Natural Procreative Technology'), (21123, 'https://ror.org/01c8qhb70', 'en', 1, 'https://ror.org/01c8qhb70 College of The Bahamas'), (21124, 'https://ror.org/01c8vqx53', 'pt', 1, 'https://ror.org/01c8vqx53 Instituto Superior Politécnico de Songo'), (21125, 'https://ror.org/01c983z55', 'no_lang_code', 1, 'https://ror.org/01c983z55 New World Medical (United States)'), (21126, 'https://ror.org/01caave54', 'no_lang_code', 1, 'https://ror.org/01caave54 Technostics (United Kingdom)'), (21127, 'https://ror.org/01cbxe745', 'en', 1, 'https://ror.org/01cbxe745 Queen Victoria Memorial Hospital'), (21128, 'https://ror.org/01cqxqw57', 'no_lang_code', 1, 'https://ror.org/01cqxqw57 Norton Aluminium (United Kingdom)'), (21129, 'https://ror.org/01crqqh49', 'en', 1, 'https://ror.org/01crqqh49 Parmenides Foundation'), (21130, 'https://ror.org/01crvtj80', 'pt', 1, 'https://ror.org/01crvtj80 Instituto Mauá de Tecnologia'), (21131, 'https://ror.org/01crx9472', 'en', 1, 'https://ror.org/01crx9472 Canadian Association for Social Work Education'), (21132, 'https://ror.org/01cs05k22', 'no_lang_code', 1, 'https://ror.org/01cs05k22 Belit (Serbia)'), (21133, 'https://ror.org/01ct8rs42', 'en', 1, 'https://ror.org/01ct8rs42 National Institute of Public Health វិទ្យាស្ថានជាតិសុខភាពសាធារណៈ'), (21134, 'https://ror.org/01cw3ja29', 'en', 1, 'https://ror.org/01cw3ja29 Higher Institute of Social Service'), (21135, 'https://ror.org/01cwv3a06', 'no_lang_code', 1, 'https://ror.org/01cwv3a06 Sixteen Films (United Kingdom)'), (21136, 'https://ror.org/01cxaar63', 'no_lang_code', 1, 'https://ror.org/01cxaar63 Skunkwerks Software (Canada)'), (21137, 'https://ror.org/01cxg6q60', 'no_lang_code', 1, 'https://ror.org/01cxg6q60 Hidaka Hospital ひだか病院'), (21138, 'https://ror.org/01cxtyq16', 'es', 1, 'https://ror.org/01cxtyq16 Isae Universidad'), (21139, 'https://ror.org/01cysch38', 'en', 1, 'https://ror.org/01cysch38 Quebec Federation of University Students'), (21140, 'https://ror.org/01cz7pz66', 'no_lang_code', 1, 'https://ror.org/01cz7pz66 MitoHealth (United States)'), (21141, 'https://ror.org/01d0ans39', 'en', 1, 'https://ror.org/01d0ans39 Nuclear Regulatory Authority of the Slovak Republic'), (21142, 'https://ror.org/01d12jx16', 'no_lang_code', 1, 'https://ror.org/01d12jx16 Nanohmics (United States)'), (21143, 'https://ror.org/01d1pbg09', 'fr', 1, 'https://ror.org/01d1pbg09 École Marocaine des Sciences de l''Ingénieur المدرسة المغربية لعلوم الهندسة'), (21144, 'https://ror.org/01d646h83', 'no_lang_code', 1, 'https://ror.org/01d646h83 Smartec (Switzerland)'), (21145, 'https://ror.org/01d8h9b46', 'en', 1, 'https://ror.org/01d8h9b46 Voyager Sopris Learning'), (21146, 'https://ror.org/01d97fd71', 'en', 1, 'https://ror.org/01d97fd71 Sedgefield Community Hospital'), (21147, 'https://ror.org/01dd13a92', 'en', 1, 'https://ror.org/01dd13a92 Sinai University جامعة سيناء'), (21148, 'https://ror.org/01ddvnr27', 'fr', 1, 'https://ror.org/01ddvnr27 École Supérieure de Psychologie'), (21149, 'https://ror.org/01deq2m43', 'es', 1, 'https://ror.org/01deq2m43 Universidad Del Valle De Cuernavaca'), (21150, 'https://ror.org/01df6fw27', 'en', 1, 'https://ror.org/01df6fw27 National Patient Safety Foundation'), (21151, 'https://ror.org/01dh1ha31', 'no_lang_code', 1, 'https://ror.org/01dh1ha31 Stan''s Cafe (United Kingdom)'), (21152, 'https://ror.org/01dhpn446', 'no_lang_code', 1, 'https://ror.org/01dhpn446 Worgas Bruciatori (Italy)'), (21153, 'https://ror.org/01dp3s597', 'en', 1, 'https://ror.org/01dp3s597 Thresholds'), (21154, 'https://ror.org/01dx1mr58', 'en', 1, 'https://ror.org/01dx1mr58 Royal Stoke University Hospital'), (21155, 'https://ror.org/01dx3d866', 'no_lang_code', 1, 'https://ror.org/01dx3d866 Nesch (United States)'), (21156, 'https://ror.org/01dxdky35', 'en', 1, 'https://ror.org/01dxdky35 Sidwell Friends School'), (21157, 'https://ror.org/01dyr7034', 'en', 1, 'https://ror.org/01dyr7034 Yan''an University 延安大学'), (21158, 'https://ror.org/01dzqrq04', 'pt', 1, 'https://ror.org/01dzqrq04 Universidade La Salle'), (21159, 'https://ror.org/01e0nt744', 'en', 1, 'https://ror.org/01e0nt744 Naga Municipal Hospital 公立那賀病院'), (21160, 'https://ror.org/01e0qt032', 'en', 1, 'https://ror.org/01e0qt032 Polish Institute of International Affairs'), (21161, 'https://ror.org/01e2apd69', 'en', 1, 'https://ror.org/01e2apd69 Wytheville Community College'), (21162, 'https://ror.org/01e2brw58', 'no_lang_code', 1, 'https://ror.org/01e2brw58 Seecon (Switzerland)'), (21163, 'https://ror.org/01e2rnt89', 'en', 1, 'https://ror.org/01e2rnt89 Trans European Policy Studies Association'), (21164, 'https://ror.org/01e3wqt79', 'en', 1, 'https://ror.org/01e3wqt79 Prevent of Brevard'), (21165, 'https://ror.org/01e6b1w57', 'no_lang_code', 1, 'https://ror.org/01e6b1w57 MicroLS (Germany)'), (21166, 'https://ror.org/01e6j9276', 'en', 1, 'https://ror.org/01e6j9276 Caltech Submillimeter Observatory'), (21167, 'https://ror.org/01e78mv37', 'en', 1, 'https://ror.org/01e78mv37 Seminole State College Oklahoma'), (21168, 'https://ror.org/01e7fkm87', 'fr', 1, 'https://ror.org/01e7fkm87 École Supérieure de Design et des Arts Visuels'), (21169, 'https://ror.org/01e8sqr65', 'en', 1, 'https://ror.org/01e8sqr65 Parent Support Network of Rhode Island'), (21170, 'https://ror.org/01e9c5p79', 'no_lang_code', 1, 'https://ror.org/01e9c5p79 Stirling Dynamics (United Kingdom)'), (21171, 'https://ror.org/01e9g9p17', 'en', 1, 'https://ror.org/01e9g9p17 Ysbyty Gwynedd Hospital NHS Trust'), (21172, 'https://ror.org/01eaxze48', 'en', 1, 'https://ror.org/01eaxze48 Catholic University of Dry Tropic Farming and Livestock Universidad Católica del Trópico Seco'), (21173, 'https://ror.org/01ebkw403', 'es', 1, 'https://ror.org/01ebkw403 Universidad YMCA'), (21174, 'https://ror.org/01ee0g236', 'pt', 1, 'https://ror.org/01ee0g236 Universidade do Estado do Rio Grande do Norte'), (21175, 'https://ror.org/01ef0g096', 'pt', 1, 'https://ror.org/01ef0g096 Universidade do Planalto Catarinense'), (21176, 'https://ror.org/01egjwb26', 'fr', 1, 'https://ror.org/01egjwb26 Ministère de l’Éducation nationale, de l’Enfance et de la Jeunesse'), (21177, 'https://ror.org/01egpew89', 'no_lang_code', 1, 'https://ror.org/01egpew89 YTKO (United Kingdom)'), (21178, 'https://ror.org/01eh8k851', 'en', 1, 'https://ror.org/01eh8k851 Bridport Community Hospital'), (21179, 'https://ror.org/01ehwm037', 'no_lang_code', 1, 'https://ror.org/01ehwm037 Ruskinn Technology (United Kingdom)'), (21180, 'https://ror.org/01ekj9t27', 'no_lang_code', 1, 'https://ror.org/01ekj9t27 Nissan (Switzerland)'), (21181, 'https://ror.org/01em71b57', 'es', 1, 'https://ror.org/01em71b57 Universidad Católica Santa Rosa'), (21182, 'https://ror.org/01emh3a91', 'no_lang_code', 1, 'https://ror.org/01emh3a91 Midlands Aerospace Alliance'), (21183, 'https://ror.org/01en9z723', 'en', 1, 'https://ror.org/01en9z723 Redcar Primary Care Hospital'), (21184, 'https://ror.org/01ep0vp31', 'no_lang_code', 1, 'https://ror.org/01ep0vp31 Rheinmetall (Germany)'), (21185, 'https://ror.org/01ep18d71', 'en', 1, 'https://ror.org/01ep18d71 Northern Lincolnshire and Goole Hospitals NHS Foundation Trust'), (21186, 'https://ror.org/01ep8zz70', 'no_lang_code', 1, 'https://ror.org/01ep8zz70 SSPA (Sweden)'), (21187, 'https://ror.org/01erhpg17', 'en', 1, 'https://ror.org/01erhpg17 Catholic University of Madagascar Oniversite Katolika eto Madagasikara Université Catholique de Madagascar'), (21188, 'https://ror.org/01esc3z41', 'en', 1, 'https://ror.org/01esc3z41 Wildlife Conservation Society Canada'), (21189, 'https://ror.org/01eyjev41', 'es', 1, 'https://ror.org/01eyjev41 Universidad Europea'), (21190, 'https://ror.org/01f00fn77', 'en', 1, 'https://ror.org/01f00fn77 Fresno Pacific University'), (21191, 'https://ror.org/01f0erc76', 'no_lang_code', 1, 'https://ror.org/01f0erc76 Uncopiers'), (21192, 'https://ror.org/01f0k6s82', 'en', 1, 'https://ror.org/01f0k6s82 Morgantown High School'), (21193, 'https://ror.org/01f1vsw14', 'no_lang_code', 1, 'https://ror.org/01f1vsw14 Raytek (Germany)'), (21194, 'https://ror.org/01f3f2284', 'en', 1, 'https://ror.org/01f3f2284 National Council for Voluntary Organisations'), (21195, 'https://ror.org/01f51hc20', 'en', 1, 'https://ror.org/01f51hc20 State Agency for the Prevention of Alcohol Related Problems'), (21196, 'https://ror.org/01f7yhe80', 'no_lang_code', 1, 'https://ror.org/01f7yhe80 Relight (Italy)'), (21197, 'https://ror.org/01fc8vj32', 'en', 1, 'https://ror.org/01fc8vj32 Zachary Merton Hospital'), (21198, 'https://ror.org/01fd10471', 'en', 1, 'https://ror.org/01fd10471 Didcot Community Hospital'), (21199, 'https://ror.org/01fgnkn65', 'en', 1, 'https://ror.org/01fgnkn65 Euro-Mediterranean Water Information System Méditerranéen d''Information sur les Savoir'), (21200, 'https://ror.org/01fgscm92', 'es', 1, 'https://ror.org/01fgscm92 Universidad de Huánuco'), (21201, 'https://ror.org/01fk6s398', 'no_lang_code', 1, 'https://ror.org/01fk6s398 Gilead Sciences (Canada)'), (21202, 'https://ror.org/01fmzkf37', 'no_lang_code', 1, 'https://ror.org/01fmzkf37 Pervatech (Netherlands)'), (21203, 'https://ror.org/01fnv4f45', 'no_lang_code', 1, 'https://ror.org/01fnv4f45 Sogesca (Italy)'), (21204, 'https://ror.org/01fpdz014', 'en', 1, 'https://ror.org/01fpdz014 Biggleswade Hospital Spring House'), (21205, 'https://ror.org/01fsqt491', 'no_lang_code', 1, 'https://ror.org/01fsqt491 Da Vinci Institute'), (21206, 'https://ror.org/01fv8ny24', 'fr', 1, 'https://ror.org/01fv8ny24 École Supérieure des Études Administratives et Commerciales'), (21207, 'https://ror.org/01fvz3c20', 'es', 1, 'https://ror.org/01fvz3c20 Universidad del Valle del Fuerte'), (21208, 'https://ror.org/01fx4ky02', 'no_lang_code', 1, 'https://ror.org/01fx4ky02 Protagen (Germany)'), (21209, 'https://ror.org/01fzsd381', 'en', 1, 'https://ror.org/01fzsd381 HafenCity University Hamburg HafenCity Universität Hamburg'), (21210, 'https://ror.org/01g03yb06', 'pt', 1, 'https://ror.org/01g03yb06 Universidade Gregório Semedo'), (21211, 'https://ror.org/01g37t325', 'fr', 1, 'https://ror.org/01g37t325 Université Ibn Khaldoun جامعة إبن خلدون الخاصّة'), (21212, 'https://ror.org/01g5skz36', 'en', 1, 'https://ror.org/01g5skz36 Ahfad University for Women جامعة الأحفاد للبنات'), (21213, 'https://ror.org/01g79at26', 'en', 1, 'https://ror.org/01g79at26 Research Institute for Tropical Medicine'), (21214, 'https://ror.org/01g8wqh49', 'no_lang_code', 1, 'https://ror.org/01g8wqh49 Talkamatic (Sweden)'), (21215, 'https://ror.org/01g96h026', 'en', 1, 'https://ror.org/01g96h026 Corby Community Hospital'), (21216, 'https://ror.org/01g9fy909', 'no_lang_code', 1, 'https://ror.org/01g9fy909 ProAmpac (Canada)'), (21217, 'https://ror.org/01g9vka88', 'en', 1, 'https://ror.org/01g9vka88 College Medical Center'), (21218, 'https://ror.org/01gaavs46', 'en', 1, 'https://ror.org/01gaavs46 Justo Sierra University Universidad Justo Sierra'), (21219, 'https://ror.org/01gah9v52', 'pt', 1, 'https://ror.org/01gah9v52 Centro Universitário de Patos de Minas'), (21220, 'https://ror.org/01gbfax37', 'en', 1, 'https://ror.org/01gbfax37 Shandong Jianzhu University 山东建筑大学'), (21221, 'https://ror.org/01gcsh020', 'en', 1, 'https://ror.org/01gcsh020 Hounslow and Richmond Community Healthcare NHS Trust'), (21222, 'https://ror.org/01gddze50', 'en', 1, 'https://ror.org/01gddze50 Central Michigan University Research Corporation'), (21223, 'https://ror.org/01gdg5y72', 'no_lang_code', 1, 'https://ror.org/01gdg5y72 Syntesa (Faroe Islands)'), (21224, 'https://ror.org/01gdk5c28', 'fr', 1, 'https://ror.org/01gdk5c28 Institut des Hautes Études Bancaires et Financières'), (21225, 'https://ror.org/01gdx5384', 'no_lang_code', 1, 'https://ror.org/01gdx5384 Ribocon (Germany)'), (21226, 'https://ror.org/01gfmr708', 'no_lang_code', 1, 'https://ror.org/01gfmr708 MHG Systems (Finland)'), (21227, 'https://ror.org/01ggm0w72', 'es', 1, 'https://ror.org/01ggm0w72 Universidad Internacional de La Paz'), (21228, 'https://ror.org/01ggnn306', 'en', 1, 'https://ror.org/01ggnn306 Hunan University of Arts and Science 湖南文理学院'), (21229, 'https://ror.org/01ghjfc28', 'en', 1, 'https://ror.org/01ghjfc28 Tigard-Tualatin School District'), (21230, 'https://ror.org/01gnc7759', 'en', 1, 'https://ror.org/01gnc7759 Technical University of Angola Universidade Técnica de Angola'), (21231, 'https://ror.org/01gnx5040', 'en', 1, 'https://ror.org/01gnx5040 Cavendish Hospital'), (21232, 'https://ror.org/01gsj8877', 'es', 1, 'https://ror.org/01gsj8877 Universidad Hispanoamericana'), (21233, 'https://ror.org/01gsm0s82', 'en', 1, 'https://ror.org/01gsm0s82 National Postdoctoral Association'), (21234, 'https://ror.org/01gvkyp03', 'en', 1, 'https://ror.org/01gvkyp03 National Institute of Oceanography राष्ट्रीय समुद्र विज्ञान संस्थान தேசிய கடலியல் நிறுவனம் നാഷണൽ ഇൻസ്റ്റിറ്റ്യൂട്ട് ഓഫ് ഓഷ്യാനോഗ്രഫി'), (21235, 'https://ror.org/01gxfn525', 'es', 1, 'https://ror.org/01gxfn525 Universidad de Ciencias y Artes de Chiapas'), (21236, 'https://ror.org/01gxw4h97', 'en', 1, 'https://ror.org/01gxw4h97 Nottingham Community Housing Association'), (21237, 'https://ror.org/01gyar131', 'en', 1, 'https://ror.org/01gyar131 Tarporley War Memorial Hospital'), (21238, 'https://ror.org/01h0jwd72', 'no_lang_code', 1, 'https://ror.org/01h0jwd72 Alfa Laval (France)'), (21239, 'https://ror.org/01h1szm41', 'es', 1, 'https://ror.org/01h1szm41 Universidad de Chiclayo'), (21240, 'https://ror.org/01h2m4f20', 'en', 1, 'https://ror.org/01h2m4f20 Osaka Sangyo University 大阪産業大学'), (21241, 'https://ror.org/01h39r951', 'es', 1, 'https://ror.org/01h39r951 Universidad Paccioli Xalapa'), (21242, 'https://ror.org/01h4zj733', 'en', 1, 'https://ror.org/01h4zj733 North Cambridgeshire Hospital'), (21243, 'https://ror.org/01h558915', 'es', 1, 'https://ror.org/01h558915 Universidad Católica Santo Toribio de Mogrovejo'), (21244, 'https://ror.org/01h5hcg91', 'no_lang_code', 1, 'https://ror.org/01h5hcg91 Valitor (United States)'), (21245, 'https://ror.org/01h62a972', 'es', 1, 'https://ror.org/01h62a972 Corporación Universitaria de Ciencia y Desarrollo'), (21246, 'https://ror.org/01h7rq191', 'en', 1, 'https://ror.org/01h7rq191 Torrington Hospital'), (21247, 'https://ror.org/01h8pq181', 'no_lang_code', 1, 'https://ror.org/01h8pq181 Ailleron (Poland)'), (21248, 'https://ror.org/01h8yp048', 'es', 1, 'https://ror.org/01h8yp048 Universidad del Cono Sur de las Américas'), (21249, 'https://ror.org/01hb6tn62', 'es', 1, 'https://ror.org/01hb6tn62 Fundación Universitaria del Área Andina'), (21250, 'https://ror.org/01hcefx46', 'en', 1, 'https://ror.org/01hcefx46 ShenZhen People’s Hospital 深圳市人民医院'), (21251, 'https://ror.org/01hf1y767', 'no_lang_code', 1, 'https://ror.org/01hf1y767 Valeport (United Kingdom)'), (21252, 'https://ror.org/01hf4z573', 'no_lang_code', 1, 'https://ror.org/01hf4z573 Smithers Group (United Kingdom)'), (21253, 'https://ror.org/01hftn006', 'no_lang_code', 1, 'https://ror.org/01hftn006 Scientific Software International (United States)'), (21254, 'https://ror.org/01hg95g34', 'en', 1, 'https://ror.org/01hg95g34 York Archaeological Trust'), (21255, 'https://ror.org/01hhbtp58', 'en', 1, 'https://ror.org/01hhbtp58 Julius Nyerere University of Kankan Université Julius Nyerere de Kankan'), (21256, 'https://ror.org/01hhm9k47', 'en', 1, 'https://ror.org/01hhm9k47 Parent Project Muscular Dystrophy'), (21257, 'https://ror.org/01hjdgr63', 'pt', 1, 'https://ror.org/01hjdgr63 Instituto Superior de Transportes e Comunicaçõe'), (21258, 'https://ror.org/01hjj5n27', 'en', 1, 'https://ror.org/01hjj5n27 University of Science and Technology of Benin Université des Sciences et Technologies du Bénin'), (21259, 'https://ror.org/01hk15q16', 'en', 1, 'https://ror.org/01hk15q16 Northwood University'), (21260, 'https://ror.org/01hk5ha98', 'en', 1, 'https://ror.org/01hk5ha98 St Mary''s Hospital'), (21261, 'https://ror.org/01hnk0667', 'en', 1, 'https://ror.org/01hnk0667 Zrínyi Miklós National Defence University'), (21262, 'https://ror.org/01hnk4t11', 'no_lang_code', 1, 'https://ror.org/01hnk4t11 Repotec (Austria)'), (21263, 'https://ror.org/01hnrbb29', 'en', 1, 'https://ror.org/01hnrbb29 Financial University Финансовый университет при Правительстве Российской Федерации'), (21264, 'https://ror.org/01hp71z51', 'no_lang_code', 1, 'https://ror.org/01hp71z51 Philochem (Switzerland)'), (21265, 'https://ror.org/01hpjfm62', 'en', 1, 'https://ror.org/01hpjfm62 National Society of Professional Engineers'), (21266, 'https://ror.org/01hs21r74', 'en', 1, 'https://ror.org/01hs21r74 Anyang Tumor Hospital 安阳市肿瘤医院'), (21267, 'https://ror.org/01hsdm129', 'en', 1, 'https://ror.org/01hsdm129 Wisconsin State Office of the Governor'), (21268, 'https://ror.org/01hwhvh84', 'no_lang_code', 1, 'https://ror.org/01hwhvh84 ObjectSecurity (United Kingdom)'), (21269, 'https://ror.org/01hwpsz06', 'en', 1, 'https://ror.org/01hwpsz06 Federal Food Safety and Veterinary Office'), (21270, 'https://ror.org/01hy5h819', 'no_lang_code', 1, 'https://ror.org/01hy5h819 First Sensor (Canada)'), (21271, 'https://ror.org/01j0sjc77', 'no_lang_code', 1, 'https://ror.org/01j0sjc77 Vanguard Foundry (United Kingdom)'), (21272, 'https://ror.org/01j3b2975', 'es', 1, 'https://ror.org/01j3b2975 Universidad Metropolitana de Asunción'), (21273, 'https://ror.org/01j3wmr10', 'en', 1, 'https://ror.org/01j3wmr10 Accrington Victoria Hospital'), (21274, 'https://ror.org/01j5awv26', 'en', 1, 'https://ror.org/01j5awv26 Prince Mohammed bin Abdulaziz Hospital'), (21275, 'https://ror.org/01j64ar73', 'en', 1, 'https://ror.org/01j64ar73 East Cheshire NHS Trust'), (21276, 'https://ror.org/01j7j0055', 'no_lang_code', 1, 'https://ror.org/01j7j0055 Lear (Spain)'), (21277, 'https://ror.org/01j7x7d84', 'no_lang_code', 1, 'https://ror.org/01j7x7d84 Alzaiem Alazhari University جامعة الزعيم الأزهري'), (21278, 'https://ror.org/01j8j8a87', 'no_lang_code', 1, 'https://ror.org/01j8j8a87 Nanothinx (Greece)'), (21279, 'https://ror.org/01j9fyk40', 'en', 1, 'https://ror.org/01j9fyk40 Chester le Street Community Hospital'), (21280, 'https://ror.org/01jases89', 'en', 1, 'https://ror.org/01jases89 WaterCampus'), (21281, 'https://ror.org/01jc1nc57', 'es', 1, 'https://ror.org/01jc1nc57 Corporación Universitaria del Huila'), (21282, 'https://ror.org/01je02926', 'en', 1, 'https://ror.org/01je02926 Liverpool Heart and Chest Hospital NHS Trust'), (21283, 'https://ror.org/01jfptw72', 'pt', 1, 'https://ror.org/01jfptw72 Centro Universitário do Triângulo'), (21284, 'https://ror.org/01jg4cx18', 'no_lang_code', 1, 'https://ror.org/01jg4cx18 Statiflo International (United Kingdom)'), (21285, 'https://ror.org/01jgs5r19', 'es', 1, 'https://ror.org/01jgs5r19 Universidad Privada de Pucallpa'), (21286, 'https://ror.org/01jmwv231', 'en', 1, 'https://ror.org/01jmwv231 Witney Community Hospital'), (21287, 'https://ror.org/01jmxjw73', 'no_lang_code', 1, 'https://ror.org/01jmxjw73 Cabot Microelectronics (United States)'), (21288, 'https://ror.org/01jncky63', 'en', 1, 'https://ror.org/01jncky63 Williams & Associates'), (21289, 'https://ror.org/01jp0tk64', 'fr', 1, 'https://ror.org/01jp0tk64 Gaston Berger University Université Gaston Berger'), (21290, 'https://ror.org/01jq32a23', 'no_lang_code', 1, 'https://ror.org/01jq32a23 Swanbarton (United Kingdom)'), (21291, 'https://ror.org/01jrpnz59', 'en', 1, 'https://ror.org/01jrpnz59 Serviciul Hidrmetrologic de Stat State Hydrometeorological Service'), (21292, 'https://ror.org/01jrywz31', 'no_lang_code', 1, 'https://ror.org/01jrywz31 Optimare (Germany)'), (21293, 'https://ror.org/01js8h045', 'en', 1, 'https://ror.org/01js8h045 Bērnu klīniskā universitātes slimnīca Children''s Clinical University Hospital'), (21294, 'https://ror.org/01jthvx19', 'en', 1, 'https://ror.org/01jthvx19 University College of Management Studies'), (21295, 'https://ror.org/01jtws262', 'en', 1, 'https://ror.org/01jtws262 Chase Acute Outpatients Hospital'), (21296, 'https://ror.org/01jxhzn15', 'es', 1, 'https://ror.org/01jxhzn15 Centro Universitario México Valle'), (21297, 'https://ror.org/01jyyrs78', 'en', 1, 'https://ror.org/01jyyrs78 Dr Edward Koch Foundation'), (21298, 'https://ror.org/01jzgmh92', 'no_lang_code', 1, 'https://ror.org/01jzgmh92 TRW Automotive (United States)'), (21299, 'https://ror.org/01k0q5v34', 'en', 1, 'https://ror.org/01k0q5v34 PLA 306 Hospital 解放军306医院'), (21300, 'https://ror.org/01k1qm960', 'no_lang_code', 1, 'https://ror.org/01k1qm960 Polytronix (United States)'), (21301, 'https://ror.org/01k2edc04', 'en', 1, 'https://ror.org/01k2edc04 Carter Bequest Primary Care Hospital'), (21302, 'https://ror.org/01k322j33', 'en', 1, 'https://ror.org/01k322j33 Hellesdon Hospital'), (21303, 'https://ror.org/01k42ef11', 'en', 1, 'https://ror.org/01k42ef11 Department of County Human Services'), (21304, 'https://ror.org/01k4bzs92', 'en', 1, 'https://ror.org/01k4bzs92 Association des Cartothèques et Archives Cartographiques du Canada, Association of Canadian Map Libraries and Archives'), (21305, 'https://ror.org/01k7x2c64', 'en', 1, 'https://ror.org/01k7x2c64 Riverside County Superior Court'), (21306, 'https://ror.org/01k80zh77', 'en', 1, 'https://ror.org/01k80zh77 Xingming Observatory'), (21307, 'https://ror.org/01kavk215', 'no_lang_code', 1, 'https://ror.org/01kavk215 Sineurop Nanotech (Germany)'), (21308, 'https://ror.org/01kb1df65', 'en', 1, 'https://ror.org/01kb1df65 National Council for Geographic Education'), (21309, 'https://ror.org/01kdzej58', 'en', 1, 'https://ror.org/01kdzej58 Bohai University 渤海大学'), (21310, 'https://ror.org/01keak954', 'no_lang_code', 1, 'https://ror.org/01keak954 Microelectronica (Romania)'), (21311, 'https://ror.org/01ketq791', 'en', 1, 'https://ror.org/01ketq791 Aldeburgh Hospital'), (21312, 'https://ror.org/01kf1n431', 'en', 1, 'https://ror.org/01kf1n431 Minnesota Educational Computing Consortium'), (21313, 'https://ror.org/01kfgca96', 'no_lang_code', 1, 'https://ror.org/01kfgca96 VersuchsStollen Hagerbach (Switzerland)'), (21314, 'https://ror.org/01kgmdj61', 'en', 1, 'https://ror.org/01kgmdj61 Canadian Arctic Resources Committee'), (21315, 'https://ror.org/01kh3en48', 'no_lang_code', 1, 'https://ror.org/01kh3en48 Prysmian Group (Italy)'), (21316, 'https://ror.org/01kmcym32', 'en', 1, 'https://ror.org/01kmcym32 Ellinbank Observatory'), (21317, 'https://ror.org/01kpbz654', 'en', 1, 'https://ror.org/01kpbz654 National School Boards Association'), (21318, 'https://ror.org/01kse2t29', 'no_lang_code', 1, 'https://ror.org/01kse2t29 Microgen (United States)'), (21319, 'https://ror.org/01kt2cx88', 'en', 1, 'https://ror.org/01kt2cx88 Escuela Agrícola Panamericana Zamorano Zamorano Pan-American Agricultural School'), (21320, 'https://ror.org/01kwj6g62', 'en', 1, 'https://ror.org/01kwj6g62 South Hams Hospital'), (21321, 'https://ror.org/01kyn4312', 'es', 1, 'https://ror.org/01kyn4312 Universidad Agroforestal Fernando Arturo de Meriño'), (21322, 'https://ror.org/01kyqk585', 'en', 1, 'https://ror.org/01kyqk585 Sejet Plant Breeding'), (21323, 'https://ror.org/01kyyzm82', 'es', 1, 'https://ror.org/01kyyzm82 Universidad Central'), (21324, 'https://ror.org/01kz0v978', 'no_lang_code', 1, 'https://ror.org/01kz0v978 eBaltics (Latvia)'), (21325, 'https://ror.org/01m274k23', 'no_lang_code', 1, 'https://ror.org/01m274k23 Zoetis (Canada)'), (21326, 'https://ror.org/01m4ay116', 'en', 1, 'https://ror.org/01m4ay116 Edward Hain Community Hospital'), (21327, 'https://ror.org/01m53p035', 'en', 1, 'https://ror.org/01m53p035 Tickhill Road Hospital'), (21328, 'https://ror.org/01m6agm53', 'en', 1, 'https://ror.org/01m6agm53 Prospect Park Hospital'), (21329, 'https://ror.org/01m71fs94', 'en', 1, 'https://ror.org/01m71fs94 Dutch Polymer Institute'), (21330, 'https://ror.org/01m9ht412', 'no_lang_code', 1, 'https://ror.org/01m9ht412 První Brněnská Strojírna Velká Bíteš (Czechia)'), (21331, 'https://ror.org/01mc2bj25', 'no_lang_code', 1, 'https://ror.org/01mc2bj25 Thor Technologies (United States)'), (21332, 'https://ror.org/01mdg2p21', 'en', 1, 'https://ror.org/01mdg2p21 Oregon Observatory'), (21333, 'https://ror.org/01mdm1v36', 'en', 1, 'https://ror.org/01mdm1v36 Central University Universidad Central'), (21334, 'https://ror.org/01mdqeh78', 'en', 1, 'https://ror.org/01mdqeh78 Agricultural University of Georgia'), (21335, 'https://ror.org/01mgm2h35', 'en', 1, 'https://ror.org/01mgm2h35 Center of Excellence in Energy Efficiency'), (21336, 'https://ror.org/01mhfg188', 'en', 1, 'https://ror.org/01mhfg188 Public Health Authority of the Slovak Republic'), (21337, 'https://ror.org/01mhzw324', 'no_lang_code', 1, 'https://ror.org/01mhzw324 Nottingham Express Transit (United Kingdom)'), (21338, 'https://ror.org/01mk0yp55', 'en', 1, 'https://ror.org/01mk0yp55 Soul City Institute for Health & Development Communication'); INSERT INTO `rors` VALUES (21339, 'https://ror.org/01mkrzp48', 'no_lang_code', 1, 'https://ror.org/01mkrzp48 SKF (Germany)'), (21340, 'https://ror.org/01mkymc65', 'no_lang_code', 1, 'https://ror.org/01mkymc65 N.A.Software (United Kingdom)'), (21341, 'https://ror.org/01mqmer16', 'no_lang_code', 1, 'https://ror.org/01mqmer16 Hoffmann-La Roche Roche (France)'), (21342, 'https://ror.org/01ms7ay74', 'no_lang_code', 1, 'https://ror.org/01ms7ay74 Permobil (United States)'), (21343, 'https://ror.org/01mv7kb54', 'no_lang_code', 1, 'https://ror.org/01mv7kb54 Rescon Technologies (United Kingdom)'), (21344, 'https://ror.org/01mw43m66', 'no_lang_code', 1, 'https://ror.org/01mw43m66 Pallas (Germany)'), (21345, 'https://ror.org/01mx1hz05', 'en', 1, 'https://ror.org/01mx1hz05 Schiller International University'), (21346, 'https://ror.org/01my6jy29', 'en', 1, 'https://ror.org/01my6jy29 Helston Community Hospital'), (21347, 'https://ror.org/01my97204', 'no_lang_code', 1, 'https://ror.org/01my97204 WIND Hellas (Greece)'), (21348, 'https://ror.org/01myfyr56', 'no_lang_code', 1, 'https://ror.org/01myfyr56 Spok'), (21349, 'https://ror.org/01mzcg363', 'no_lang_code', 1, 'https://ror.org/01mzcg363 Tiger Optics (United States)'), (21350, 'https://ror.org/01n1wka83', 'en', 1, 'https://ror.org/01n1wka83 Parent/Professional Advocacy League'), (21351, 'https://ror.org/01n22w217', 'en', 1, 'https://ror.org/01n22w217 Oklahoma City Community College'), (21352, 'https://ror.org/01n2czj98', 'en', 1, 'https://ror.org/01n2czj98 Touring Club Italiano'), (21353, 'https://ror.org/01n4hzf84', 'pt', 1, 'https://ror.org/01n4hzf84 Uniabeu Centro Universitário'), (21354, 'https://ror.org/01n9x4465', 'no_lang_code', 1, 'https://ror.org/01n9x4465 Nordeconsult (Sweden)'), (21355, 'https://ror.org/01na7zr61', 'no_lang_code', 1, 'https://ror.org/01na7zr61 ZTS Výskumno-Vývojový Ústav (Slovakia)'), (21356, 'https://ror.org/01nap1w14', 'no_lang_code', 1, 'https://ror.org/01nap1w14 Transnet (South Africa)'), (21357, 'https://ror.org/01necnd72', 'no_lang_code', 1, 'https://ror.org/01necnd72 Tisec (Canada)'), (21358, 'https://ror.org/01ned1220', 'en', 1, 'https://ror.org/01ned1220 Ispat General Hospital इसपट जनरल अस्पताल'), (21359, 'https://ror.org/01nefj689', 'en', 1, 'https://ror.org/01nefj689 Rye Winchelsea and District Memorial Hospital'), (21360, 'https://ror.org/01ngsex56', 'no_lang_code', 1, 'https://ror.org/01ngsex56 Mologic (United Kingdom)'), (21361, 'https://ror.org/01ngyvd83', 'en', 1, 'https://ror.org/01ngyvd83 Brixham Community Hospital'), (21362, 'https://ror.org/01nmkhv89', 'no_lang_code', 1, 'https://ror.org/01nmkhv89 Squaris'), (21363, 'https://ror.org/01npmjh66', 'no_lang_code', 1, 'https://ror.org/01npmjh66 Team Defence Information (United Kingdom)'), (21364, 'https://ror.org/01nqa4s53', 'no_lang_code', 1, 'https://ror.org/01nqa4s53 Nihonkai General Hospital 日本海総合病院'), (21365, 'https://ror.org/01nscpg76', 'no_lang_code', 1, 'https://ror.org/01nscpg76 OZ Optics (Canada)'), (21366, 'https://ror.org/01nv7k942', 'en', 1, 'https://ror.org/01nv7k942 Hebei General Hospital 河北省人民医院'), (21367, 'https://ror.org/01nvdh647', 'en', 1, 'https://ror.org/01nvdh647 Zaozhuang Municipal Hospital 枣庄市立医院'), (21368, 'https://ror.org/01nvgv947', 'es', 1, 'https://ror.org/01nvgv947 Universidad Evangelica Nicaraguense'), (21369, 'https://ror.org/01nvnhx40', 'en', 1, 'https://ror.org/01nvnhx40 October University of Modern Sciences and Arts جامعة أكتوبر للعلوم الحديثة والآداب'), (21370, 'https://ror.org/01nyfcf47', 'it', 1, 'https://ror.org/01nyfcf47 Unioncamere Piemonte'), (21371, 'https://ror.org/01nzeya05', 'no_lang_code', 1, 'https://ror.org/01nzeya05 Polska Grupa Energetyczna (Poland)'), (21372, 'https://ror.org/01p12g133', 'no_lang_code', 1, 'https://ror.org/01p12g133 VBC Group (United Kingdom)'), (21373, 'https://ror.org/01p2bvc62', 'en', 1, 'https://ror.org/01p2bvc62 Columbia International University'), (21374, 'https://ror.org/01p51xv55', 'en', 1, 'https://ror.org/01p51xv55 St. Marien Hospital'), (21375, 'https://ror.org/01p542m48', 'no_lang_code', 1, 'https://ror.org/01p542m48 NeoCytex Biopharma (United States)'), (21376, 'https://ror.org/01p5m8335', 'no_lang_code', 1, 'https://ror.org/01p5m8335 Rapp (Switzerland)'), (21377, 'https://ror.org/01p6fsx62', 'en', 1, 'https://ror.org/01p6fsx62 Spire Bristol Hospital'), (21378, 'https://ror.org/01p81kj40', 'fr', 1, 'https://ror.org/01p81kj40 Université des Grands Lacs'), (21379, 'https://ror.org/01pakje56', 'no_lang_code', 1, 'https://ror.org/01pakje56 Stellarray (United States)'), (21380, 'https://ror.org/01pe51140', 'no_lang_code', 1, 'https://ror.org/01pe51140 Molecular Sensing (United States)'), (21381, 'https://ror.org/01pe78696', 'es', 1, 'https://ror.org/01pe78696 Universidad del Atlántico'), (21382, 'https://ror.org/01pggea98', 'en', 1, 'https://ror.org/01pggea98 Johnson Community Hospital'), (21383, 'https://ror.org/01phrhn87', 'no_lang_code', 1, 'https://ror.org/01phrhn87 Acobiom (France)'), (21384, 'https://ror.org/01pj4rr81', 'en', 1, 'https://ror.org/01pj4rr81 Mid-America Christian University'), (21385, 'https://ror.org/01pjc8p36', 'en', 1, 'https://ror.org/01pjc8p36 Historical Studies in Education Revue d''histoire de l''éducation'), (21386, 'https://ror.org/01pjkhn78', 'en', 1, 'https://ror.org/01pjkhn78 School District of Palm Beach County'), (21387, 'https://ror.org/01pjrq695', 'es', 1, 'https://ror.org/01pjrq695 Universidad Magister'), (21388, 'https://ror.org/01pk3g458', 'en', 1, 'https://ror.org/01pk3g458 Westchester County Department of Public Safety'), (21389, 'https://ror.org/01pkd0t05', 'es', 1, 'https://ror.org/01pkd0t05 Colegio Libre de Estudios Universitarios'), (21390, 'https://ror.org/01pmnjq51', 'no_lang_code', 1, 'https://ror.org/01pmnjq51 Otoconsult (Belgium)'), (21391, 'https://ror.org/01pn2rg09', 'pt', 1, 'https://ror.org/01pn2rg09 Universidade Castelo Branco'), (21392, 'https://ror.org/01pp7vs05', 'no_lang_code', 1, 'https://ror.org/01pp7vs05 Nexture Consulting'), (21393, 'https://ror.org/01ppn2r43', 'no_lang_code', 1, 'https://ror.org/01ppn2r43 Nemko (Norway) Norges Elektriske Materiellkontroll'), (21394, 'https://ror.org/01pshz178', 'no_lang_code', 1, 'https://ror.org/01pshz178 Nuance Communications (Canada)'), (21395, 'https://ror.org/01pw31s78', 'en', 1, 'https://ror.org/01pw31s78 Huntercombe Hospital'), (21396, 'https://ror.org/01pxyx032', 'es', 1, 'https://ror.org/01pxyx032 Fundación Universitaria Colombo Internacional'), (21397, 'https://ror.org/01pyd3y08', 'en', 1, 'https://ror.org/01pyd3y08 Brampton War Memorial Hospital'), (21398, 'https://ror.org/01q06dd50', 'en', 1, 'https://ror.org/01q06dd50 New Hampshire Department of Education'), (21399, 'https://ror.org/01q103038', 'it', 1, 'https://ror.org/01q103038 Ospedale di Stato della Repubblica di San Marino'), (21400, 'https://ror.org/01q2xjy72', 'no_lang_code', 1, 'https://ror.org/01q2xjy72 ReProtect (United States)'), (21401, 'https://ror.org/01q48h373', 'no_lang_code', 1, 'https://ror.org/01q48h373 Glanbia (Ireland)'), (21402, 'https://ror.org/01q4mdv90', 'es', 1, 'https://ror.org/01q4mdv90 Universidad Privada de Oruro'), (21403, 'https://ror.org/01q5d1g38', 'en', 1, 'https://ror.org/01q5d1g38 Thurrock Community Hospital'), (21404, 'https://ror.org/01q74hp50', 'no_lang_code', 1, 'https://ror.org/01q74hp50 Blackstone (United States)'), (21405, 'https://ror.org/01q7nv767', 'en', 1, 'https://ror.org/01q7nv767 Toronto Arts Foundation'), (21406, 'https://ror.org/01q8pr365', 'en', 1, 'https://ror.org/01q8pr365 Hirslanden Private Hospital Group Privatklinikgruppe Hirslanden'), (21407, 'https://ror.org/01qbtys04', 'no_lang_code', 1, 'https://ror.org/01qbtys04 Stichting Accessibility'), (21408, 'https://ror.org/01qd74814', 'no_lang_code', 1, 'https://ror.org/01qd74814 Porifera (United States)'), (21409, 'https://ror.org/01qgxr245', 'no_lang_code', 1, 'https://ror.org/01qgxr245 NCR (United Kingdom)'), (21410, 'https://ror.org/01qjejj07', 'no_lang_code', 1, 'https://ror.org/01qjejj07 Börsenverein des Deutschen Buchhandels (Germany)'), (21411, 'https://ror.org/01qjpbj62', 'no_lang_code', 1, 'https://ror.org/01qjpbj62 Omm Scientific (United States)'), (21412, 'https://ror.org/01qpqce32', 'en', 1, 'https://ror.org/01qpqce32 Connecticut Science Center'), (21413, 'https://ror.org/01qq4rp48', 'en', 1, 'https://ror.org/01qq4rp48 Wiltshire Council'), (21414, 'https://ror.org/01qv0ss31', 'no_lang_code', 1, 'https://ror.org/01qv0ss31 Reconnecting Youth (United States)'), (21415, 'https://ror.org/01qw5dj60', 'no_lang_code', 1, 'https://ror.org/01qw5dj60 Stellar Biotechnologies (United States)'), (21416, 'https://ror.org/01qx5e557', 'no_lang_code', 1, 'https://ror.org/01qx5e557 Vicinay Cadenas (Spain)'), (21417, 'https://ror.org/01qyk0172', 'no_lang_code', 1, 'https://ror.org/01qyk0172 Tantalus Systems (United States)'), (21418, 'https://ror.org/01r01qv34', 'no_lang_code', 1, 'https://ror.org/01r01qv34 OsteoGeneX (United States)'), (21419, 'https://ror.org/01r2zsa88', 'no_lang_code', 1, 'https://ror.org/01r2zsa88 Vivid Technologies (United States)'), (21420, 'https://ror.org/01r3ms014', 'no_lang_code', 1, 'https://ror.org/01r3ms014 U-Hopper (Italy)'), (21421, 'https://ror.org/01r49jb64', 'no_lang_code', 1, 'https://ror.org/01r49jb64 MicroTEC (Germany)'), (21422, 'https://ror.org/01r5afm23', 'en', 1, 'https://ror.org/01r5afm23 La Gran Colombia University Universidad La Gran Colombia'), (21423, 'https://ror.org/01r5xd980', 'en', 1, 'https://ror.org/01r5xd980 Madonna University'), (21424, 'https://ror.org/01r6bea41', 'es', 1, 'https://ror.org/01r6bea41 Universidad Centroamericana de Ciencias Sociales'), (21425, 'https://ror.org/01r7j6e08', 'no_lang_code', 1, 'https://ror.org/01r7j6e08 Ultima Foods (Canada)'), (21426, 'https://ror.org/01r98zz61', 'es', 1, 'https://ror.org/01r98zz61 Universidad Azteca, Universidad Azteca de Chalco'), (21427, 'https://ror.org/01r99ca40', 'es', 1, 'https://ror.org/01r99ca40 Universidad Abierta y a Distancia de Panamá'), (21428, 'https://ror.org/01r9fck11', 'en', 1, 'https://ror.org/01r9fck11 Manitoba Environmental Industries Association'), (21429, 'https://ror.org/01rb66x86', 'no_lang_code', 1, 'https://ror.org/01rb66x86 Veneto Innovazione (Italy)'), (21430, 'https://ror.org/01rd9jd59', 'en', 1, 'https://ror.org/01rd9jd59 MRB Forschungszentrum für Magnet-Resonanz-Bayern MRB Research Center for Magnetic Resonance Bavaria'), (21431, 'https://ror.org/01rdh6z55', 'en', 1, 'https://ror.org/01rdh6z55 Columbus University'), (21432, 'https://ror.org/01rdkm032', 'no_lang_code', 1, 'https://ror.org/01rdkm032 SSBV Aerospace & Technology Group (United Kingdom)'), (21433, 'https://ror.org/01rdrt489', 'en', 1, 'https://ror.org/01rdrt489 Development of Research and Technologies for Sustainable and Seismically Safe Building'), (21434, 'https://ror.org/01rebhs43', 'en', 1, 'https://ror.org/01rebhs43 Watts Health Center'), (21435, 'https://ror.org/01rfam919', 'en', 1, 'https://ror.org/01rfam919 Inner Mongolia Autonomous Region Meteorological Bureau 内蒙古自治区气象科学研究所'), (21436, 'https://ror.org/01rh2am22', 'no_lang_code', 1, 'https://ror.org/01rh2am22 Pericle Communications (United States)'), (21437, 'https://ror.org/01rhd8q72', 'no_lang_code', 1, 'https://ror.org/01rhd8q72 Tolsa (Spain)'), (21438, 'https://ror.org/01rhgps79', 'no_lang_code', 1, 'https://ror.org/01rhgps79 Oltis Group (Czechia)'), (21439, 'https://ror.org/01rqzkn19', 'no_lang_code', 1, 'https://ror.org/01rqzkn19 Oerlikon (Liechtenstein)'), (21440, 'https://ror.org/01rr8w476', 'no_lang_code', 1, 'https://ror.org/01rr8w476 Przedsiębiorstwo Innowacyjno Wdrożeniowe Complex (Poland)'), (21441, 'https://ror.org/01rswjc57', 'no_lang_code', 1, 'https://ror.org/01rswjc57 Philips (Spain)'), (21442, 'https://ror.org/01rtq8t93', 'en', 1, 'https://ror.org/01rtq8t93 National Institute for Research and Development in Microtechnologies'), (21443, 'https://ror.org/01rwn3f68', 'es', 1, 'https://ror.org/01rwn3f68 Universidad Pedro de Valdivia'), (21444, 'https://ror.org/01rxwxv45', 'no_lang_code', 1, 'https://ror.org/01rxwxv45 Miba (United Kingdom)'), (21445, 'https://ror.org/01ry0d141', 'no_lang_code', 1, 'https://ror.org/01ry0d141 Müller BBM (Germany)'), (21446, 'https://ror.org/01ry2m115', 'no_lang_code', 1, 'https://ror.org/01ry2m115 Samaritan Pharmaceuticals (United States)'), (21447, 'https://ror.org/01ry6r150', 'en', 1, 'https://ror.org/01ry6r150 Pamantasang Silliman Silliman University'), (21448, 'https://ror.org/01rzvxf60', 'en', 1, 'https://ror.org/01rzvxf60 Pittsburgh AIDS Task Force'), (21449, 'https://ror.org/01s12hv96', 'no_lang_code', 1, 'https://ror.org/01s12hv96 Miraculins (Canada)'), (21450, 'https://ror.org/01s3yh696', 'no_lang_code', 1, 'https://ror.org/01s3yh696 Phase Motion Control (Italy)'), (21451, 'https://ror.org/01s4hhr68', 'no_lang_code', 1, 'https://ror.org/01s4hhr68 Polar Mobile (Canada)'), (21452, 'https://ror.org/01s5rx042', 'no_lang_code', 1, 'https://ror.org/01s5rx042 Surrey Satellite Technology (United Kingdom)'), (21453, 'https://ror.org/01s5zad14', 'no_lang_code', 1, 'https://ror.org/01s5zad14 Skanska (Sweden)'), (21454, 'https://ror.org/01s9fwc30', 'no_lang_code', 1, 'https://ror.org/01s9fwc30 Permanova Lasersystem (Sweden)'), (21455, 'https://ror.org/01sa7gm83', 'en', 1, 'https://ror.org/01sa7gm83 South Eastern Europe Telecommunications Academy'), (21456, 'https://ror.org/01sab8554', 'no_lang_code', 1, 'https://ror.org/01sab8554 Moixa Technology (United Kingdom)'), (21457, 'https://ror.org/01safxj67', 'en', 1, 'https://ror.org/01safxj67 Markham Stouffville Hospital'), (21458, 'https://ror.org/01sawky49', 'en', 1, 'https://ror.org/01sawky49 Yorkshire Ambulance Service NHS Trust'), (21459, 'https://ror.org/01scwqh06', 'en', 1, 'https://ror.org/01scwqh06 Catholic University of Colombia Universidad Católica de Colombia'), (21460, 'https://ror.org/01sde3g80', 'no_lang_code', 1, 'https://ror.org/01sde3g80 Nomad Tech (Portugal)'), (21461, 'https://ror.org/01sdtdd95', 'en', 1, 'https://ror.org/01sdtdd95 Canadian Institute for Advanced Research Institut Canadien de Recherches Avancées'), (21462, 'https://ror.org/01sg12c31', 'no_lang_code', 1, 'https://ror.org/01sg12c31 Stabilitech BioPharma (United Kingdom)'), (21463, 'https://ror.org/01sg34z40', 'fr', 1, 'https://ror.org/01sg34z40 Réunion des musées nationaux Grand Palais'), (21464, 'https://ror.org/01sh4dd92', 'pt', 1, 'https://ror.org/01sh4dd92 Universidade Óscar Ribas'), (21465, 'https://ror.org/01sj9rw78', 'no_lang_code', 1, 'https://ror.org/01sj9rw78 Torrecid (Spain)'), (21466, 'https://ror.org/01skbhc43', 'no_lang_code', 1, 'https://ror.org/01skbhc43 Ogilvy (Greece)'), (21467, 'https://ror.org/01skkym94', 'es', 1, 'https://ror.org/01skkym94 Corporación Escuela de Artes y Letras'), (21468, 'https://ror.org/01sm8xv65', 'es', 1, 'https://ror.org/01sm8xv65 Universidad Tecnológica Privada de Santa Cruz'), (21469, 'https://ror.org/01sqy6j62', 'fr', 1, 'https://ror.org/01sqy6j62 Centre Hospitalier Intercommunal André Grégoire Montreuil'), (21470, 'https://ror.org/01stdbz34', 'en', 1, 'https://ror.org/01stdbz34 National Native American AIDS Prevention Center'), (21471, 'https://ror.org/01sv41c41', 'es', 1, 'https://ror.org/01sv41c41 Universidad Villasunción'), (21472, 'https://ror.org/01sv65921', 'no_lang_code', 1, 'https://ror.org/01sv65921 Optima Neuroscience (United States)'), (21473, 'https://ror.org/01svbr712', 'fr', 1, 'https://ror.org/01svbr712 Université Général Lansana Conté'), (21474, 'https://ror.org/01svw4c36', 'no_lang_code', 1, 'https://ror.org/01svw4c36 TwistDx (United Kingdom)'), (21475, 'https://ror.org/01sw8gj26', 'no_lang_code', 1, 'https://ror.org/01sw8gj26 Space Environment Corporation (United States)'), (21476, 'https://ror.org/01swdcs64', 'en', 1, 'https://ror.org/01swdcs64 Tokyo-Kita Medical Center 東京北医療センター'), (21477, 'https://ror.org/01sx0ab33', 'no_lang_code', 1, 'https://ror.org/01sx0ab33 Technology Transfer and Innovation (Italy) Trasferimento Tecnologico e Innovazione'), (21478, 'https://ror.org/01t11nq62', 'en', 1, 'https://ror.org/01t11nq62 Adamawa State University'), (21479, 'https://ror.org/01t1wnw38', 'en', 1, 'https://ror.org/01t1wnw38 Strategic Community Services'), (21480, 'https://ror.org/01t2ccy50', 'en', 1, 'https://ror.org/01t2ccy50 Shellfish Association of Great Britain'), (21481, 'https://ror.org/01t2ez611', 'fr', 1, 'https://ror.org/01t2ez611 Association pour le Développement de la Mesure et de l''Evaluation en Education'), (21482, 'https://ror.org/01t47ze65', 'no_lang_code', 1, 'https://ror.org/01t47ze65 Manus Bio (United States)'), (21483, 'https://ror.org/01t4pxy10', 'en', 1, 'https://ror.org/01t4pxy10 Dresden International University'), (21484, 'https://ror.org/01t573x46', 'es', 1, 'https://ror.org/01t573x46 Universidad del Valle de Guadiana'), (21485, 'https://ror.org/01t881g83', 'en', 1, 'https://ror.org/01t881g83 Saffron Walden Community Hospital'), (21486, 'https://ror.org/01t8zd103', 'en', 1, 'https://ror.org/01t8zd103 Reading Borough Council'), (21487, 'https://ror.org/01ta56j94', 'no_lang_code', 1, 'https://ror.org/01ta56j94 Dalian Dermatosis Hospital 大连市皮肤病医院'), (21488, 'https://ror.org/01tdcdz60', 'no_lang_code', 1, 'https://ror.org/01tdcdz60 Procter & Gamble (Italy)'), (21489, 'https://ror.org/01tegtn91', 'no_lang_code', 1, 'https://ror.org/01tegtn91 Pulp and Paper Research Institute'), (21490, 'https://ror.org/01thvz382', 'es', 1, 'https://ror.org/01thvz382 Universidad de San Jose'), (21491, 'https://ror.org/01tkc7083', 'en', 1, 'https://ror.org/01tkc7083 Royal Dental Hospital of Melbourne'), (21492, 'https://ror.org/01tkmq646', 'es', 1, 'https://ror.org/01tkmq646 Universidad Maimónides'), (21493, 'https://ror.org/01tm0rr86', 'en', 1, 'https://ror.org/01tm0rr86 Fukui University of Technology 福井工業大学'), (21494, 'https://ror.org/01tm7nw04', 'fr', 1, 'https://ror.org/01tm7nw04 Corporation d’Aménagement et de Protection de la Sainte-Anne'), (21495, 'https://ror.org/01tm8wm67', 'no_lang_code', 1, 'https://ror.org/01tm8wm67 Motorola Solutions (Israel)'), (21496, 'https://ror.org/01tnf8c58', 'en', 1, 'https://ror.org/01tnf8c58 Feilding Palmer Hospital'), (21497, 'https://ror.org/01tnfvr41', 'es', 1, 'https://ror.org/01tnfvr41 Universidad de Congreso'), (21498, 'https://ror.org/01ty9p111', 'en', 1, 'https://ror.org/01ty9p111 Mount Alvernia Hospital'), (21499, 'https://ror.org/01v09hh66', 'en', 1, 'https://ror.org/01v09hh66 Rowley Regis Hospital'), (21500, 'https://ror.org/01v0we819', 'en', 1, 'https://ror.org/01v0we819 Redeemer''s University'), (21501, 'https://ror.org/01v1gc487', 'no_lang_code', 1, 'https://ror.org/01v1gc487 Technical Database Services (United States)'), (21502, 'https://ror.org/01v1t8x37', 'en', 1, 'https://ror.org/01v1t8x37 Providence University College and Theological Seminary'), (21503, 'https://ror.org/01v3kn215', 'en', 1, 'https://ror.org/01v3kn215 Shawnee Mission Northwest High School'), (21504, 'https://ror.org/01v5hvs93', 'en', 1, 'https://ror.org/01v5hvs93 Victorian Aboriginal Health Service'), (21505, 'https://ror.org/01v5nhr20', 'en', 1, 'https://ror.org/01v5nhr20 Universidad de la Costa University of the Coast'), (21506, 'https://ror.org/01v7jqw26', 'en', 1, 'https://ror.org/01v7jqw26 Department of General Services'), (21507, 'https://ror.org/01v8mkp61', 'es', 1, 'https://ror.org/01v8mkp61 Universidad Santa Paula'), (21508, 'https://ror.org/01v8tdd80', 'no_lang_code', 1, 'https://ror.org/01v8tdd80 QuantumBio (United States)'), (21509, 'https://ror.org/01v9kmn87', 'es', 1, 'https://ror.org/01v9kmn87 Centro Universitario Vasco de Quiroga de Huejutla'), (21510, 'https://ror.org/01v9zh240', 'en', 1, 'https://ror.org/01v9zh240 Bệnh viện Nhi đồng 2 Children''s Hospital 2'), (21511, 'https://ror.org/01vbx2754', 'no_lang_code', 1, 'https://ror.org/01vbx2754 Unis (Czechia)'), (21512, 'https://ror.org/01vd34q60', 'es', 1, 'https://ror.org/01vd34q60 Universidad de Margarita'), (21513, 'https://ror.org/01vf56d70', 'en', 1, 'https://ror.org/01vf56d70 Balochistan University of Information Technology, Engineering and Management Sciences'), (21514, 'https://ror.org/01vh0ja39', 'en', 1, 'https://ror.org/01vh0ja39 Northgate Hospital'), (21515, 'https://ror.org/01vn2rt83', 'pt', 1, 'https://ror.org/01vn2rt83 Centro Universitário de Volta Redonda'), (21516, 'https://ror.org/01vp1fv93', 'no_lang_code', 1, 'https://ror.org/01vp1fv93 OAS (Germany)'), (21517, 'https://ror.org/01vp36a05', 'en', 1, 'https://ror.org/01vp36a05 Swiss Internet Security Alliance'), (21518, 'https://ror.org/01vp66713', 'es', 1, 'https://ror.org/01vp66713 Sistemas Expertos'), (21519, 'https://ror.org/01vqvef44', 'en', 1, 'https://ror.org/01vqvef44 Achievers University'), (21520, 'https://ror.org/01vspgn73', 'no_lang_code', 1, 'https://ror.org/01vspgn73 Morgan Innovation and Technology (United Kingdom)'), (21521, 'https://ror.org/01vw04q95', 'no_lang_code', 1, 'https://ror.org/01vw04q95 Motor Oil (Greece)'), (21522, 'https://ror.org/01vwap211', 'fr', 1, 'https://ror.org/01vwap211 Institut National des Sciences Comptables et de l’Administration d’Entreprises'), (21523, 'https://ror.org/01vwm8t51', 'en', 1, 'https://ror.org/01vwm8t51 Francisco de Paula Santander University Universidad Francisco de Paula Santander'), (21524, 'https://ror.org/01vx5yq44', 'en', 1, 'https://ror.org/01vx5yq44 Port Said University جامعة بورسعيد'), (21525, 'https://ror.org/01vxy3v29', 'en', 1, 'https://ror.org/01vxy3v29 Eurelectric'), (21526, 'https://ror.org/01vy2y168', 'no_lang_code', 1, 'https://ror.org/01vy2y168 SimulTOF Systems (United States)'), (21527, 'https://ror.org/01vy3hr18', 'en', 1, 'https://ror.org/01vy3hr18 Chuo Kikuu cha Kumbukumbu cha Hubert Kairuki Hubert Kairuki Memorial University'), (21528, 'https://ror.org/01vyfs773', 'no_lang_code', 1, 'https://ror.org/01vyfs773 NETE (United States)'), (21529, 'https://ror.org/01vyn2554', 'en', 1, 'https://ror.org/01vyn2554 Universidad del Caribe del Sur University of the Southern Caribbean Université de la caraïbe du sud'), (21530, 'https://ror.org/01vz7g950', 'en', 1, 'https://ror.org/01vz7g950 Seaford Day Hospital'), (21531, 'https://ror.org/01w0d2z22', 'no_lang_code', 1, 'https://ror.org/01w0d2z22 Sonnenkraft (Austria)'), (21532, 'https://ror.org/01w17ks16', 'en', 1, 'https://ror.org/01w17ks16 Gabriel René Moreno Autonomous University Universidad Autónoma Gabriel René Moreno'), (21533, 'https://ror.org/01w1jmq84', 'fr', 1, 'https://ror.org/01w1jmq84 École Normale Supérieure - Marrakech'), (21534, 'https://ror.org/01w21ky57', 'no_lang_code', 1, 'https://ror.org/01w21ky57 SiMPore (United States)'), (21535, 'https://ror.org/01w37vv29', 'pt', 1, 'https://ror.org/01w37vv29 Centro Universitário Capital'), (21536, 'https://ror.org/01w3f6g06', 'no_lang_code', 1, 'https://ror.org/01w3f6g06 Wieland (Germany)'), (21537, 'https://ror.org/01w41ag04', 'no_lang_code', 1, 'https://ror.org/01w41ag04 Millab Consult (Norway)'), (21538, 'https://ror.org/01w7yex89', 'no_lang_code', 1, 'https://ror.org/01w7yex89 Exechon (Sweden)'), (21539, 'https://ror.org/01w8n3n62', 'no_lang_code', 1, 'https://ror.org/01w8n3n62 Schneider Electric (Germany)'), (21540, 'https://ror.org/01w96sp43', 'pt', 1, 'https://ror.org/01w96sp43 Universidade de Marília'), (21541, 'https://ror.org/01w9xxr98', 'en', 1, 'https://ror.org/01w9xxr98 Freed–Hardeman University'), (21542, 'https://ror.org/01wa93237', 'no_lang_code', 1, 'https://ror.org/01wa93237 Raymor (Canada)'), (21543, 'https://ror.org/01wbcv120', 'en', 1, 'https://ror.org/01wbcv120 Manchester Airport'), (21544, 'https://ror.org/01wca3r14', 'en', 1, 'https://ror.org/01wca3r14 Wavefront Wireless Commercialization Centre'), (21545, 'https://ror.org/01wchfr56', 'no_lang_code', 1, 'https://ror.org/01wchfr56 Mesolight (United States)'), (21546, 'https://ror.org/01we5we17', 'no_lang_code', 1, 'https://ror.org/01we5we17 S. B. Barnes Associates (United States)'), (21547, 'https://ror.org/01wfnf418', 'es', 1, 'https://ror.org/01wfnf418 Universidad Loyola'), (21548, 'https://ror.org/01wgb4d05', 'en', 1, 'https://ror.org/01wgb4d05 Lings Bar Hospital'), (21549, 'https://ror.org/01whdh078', 'no_lang_code', 1, 'https://ror.org/01whdh078 Positron (United States)'), (21550, 'https://ror.org/01whrhv58', 'fr', 1, 'https://ror.org/01whrhv58 Institut Supérieur d’Electronique et des Réseaux & Télécommunications'), (21551, 'https://ror.org/01wj7vt66', 'en', 1, 'https://ror.org/01wj7vt66 Golden Gate University'), (21552, 'https://ror.org/01wnb0b83', 'es', 1, 'https://ror.org/01wnb0b83 Universidad Central'), (21553, 'https://ror.org/01wnj5m91', 'no_lang_code', 1, 'https://ror.org/01wnj5m91 Bonnier Technology Group (Germany)'), (21554, 'https://ror.org/01wnnzc43', 'no_lang_code', 1, 'https://ror.org/01wnnzc43 Tobii (Sweden)'), (21555, 'https://ror.org/01wnxx236', 'en', 1, 'https://ror.org/01wnxx236 Blue Nile University جامعة النيل الأزرق'), (21556, 'https://ror.org/01wpjrj73', 'fr', 1, 'https://ror.org/01wpjrj73 Centre Hospitalier de Niort'), (21557, 'https://ror.org/01wx3s220', 'en', 1, 'https://ror.org/01wx3s220 Alton Community Hospital'), (21558, 'https://ror.org/01wx7k245', 'en', 1, 'https://ror.org/01wx7k245 Langdon Hospital'), (21559, 'https://ror.org/01wze9664', 'no_lang_code', 1, 'https://ror.org/01wze9664 Zeno Semiconductor (United States)'), (21560, 'https://ror.org/01wzp0b05', 'en', 1, 'https://ror.org/01wzp0b05 Milford Elementary School'), (21561, 'https://ror.org/01x2g0m45', 'no_lang_code', 1, 'https://ror.org/01x2g0m45 Ocean Atmosphere Systems (Germany)'), (21562, 'https://ror.org/01x2szn70', 'es', 1, 'https://ror.org/01x2szn70 Universidad Cervantina'), (21563, 'https://ror.org/01x74qw27', 'no_lang_code', 1, 'https://ror.org/01x74qw27 Tribo Flow Separations (United States)'), (21564, 'https://ror.org/01x7pha69', 'fr', 1, 'https://ror.org/01x7pha69 Institut Marocain de Management'), (21565, 'https://ror.org/01x8f1980', 'no_lang_code', 1, 'https://ror.org/01x8f1980 NanoGriptech (United States)'), (21566, 'https://ror.org/01xew6m16', 'en', 1, 'https://ror.org/01xew6m16 Nuffield Health Bristol Hospital'), (21567, 'https://ror.org/01xexqx38', 'en', 1, 'https://ror.org/01xexqx38 Ministarstvo Prosvjete Ministry of Education'), (21568, 'https://ror.org/01xf5pq20', 'fr', 1, 'https://ror.org/01xf5pq20 Université Tunis Carthage جامعة تونس قرطاج'), (21569, 'https://ror.org/01xhcza12', 'en', 1, 'https://ror.org/01xhcza12 University of the West'), (21570, 'https://ror.org/01xjgpq49', 'no_lang_code', 1, 'https://ror.org/01xjgpq49 Sakushin Gakuin University 作新学院大学'), (21571, 'https://ror.org/01xprs690', 'en', 1, 'https://ror.org/01xprs690 Université de ziguinchor Ziguinchor University'), (21572, 'https://ror.org/01xpzce83', 'es', 1, 'https://ror.org/01xpzce83 Centro Universitario Siglo XXI'), (21573, 'https://ror.org/01xq6at75', 'no_lang_code', 1, 'https://ror.org/01xq6at75 Team (Italy)'), (21574, 'https://ror.org/01xqc8g04', 'en', 1, 'https://ror.org/01xqc8g04 Un-Convention'), (21575, 'https://ror.org/01xqg1464', 'en', 1, 'https://ror.org/01xqg1464 Institution of Engineering and Technology'), (21576, 'https://ror.org/01xs3h851', 'en', 1, 'https://ror.org/01xs3h851 Society for the Study of Egyptian Antiquities'), (21577, 'https://ror.org/01xzw5f75', 'es', 1, 'https://ror.org/01xzw5f75 Universidad de San Pedro Sula University of San Pedro Sula'), (21578, 'https://ror.org/01y38kk41', 'en', 1, 'https://ror.org/01y38kk41 Logistics University of People''s Armed Police Force 中国人民武装警察部队后勤学院'), (21579, 'https://ror.org/01y3yr807', 'es', 1, 'https://ror.org/01y3yr807 Universidad Empresarial Siglo 21'), (21580, 'https://ror.org/01y661f36', 'en', 1, 'https://ror.org/01y661f36 Wantage Community Hospital'), (21581, 'https://ror.org/01y9fq553', 'en', 1, 'https://ror.org/01y9fq553 St Helen''s Rehabilitation Hospital'), (21582, 'https://ror.org/01yb75b63', 'no_lang_code', 1, 'https://ror.org/01yb75b63 Zeeko (United Kingdom)'), (21583, 'https://ror.org/01yb9sv02', 'no_lang_code', 1, 'https://ror.org/01yb9sv02 Petroleum Helicopters International (United States)'), (21584, 'https://ror.org/01ybgev21', 'no_lang_code', 1, 'https://ror.org/01ybgev21 Prevas (Norway)'), (21585, 'https://ror.org/01ybmjm77', 'es', 1, 'https://ror.org/01ybmjm77 Instituto Profesional Helen Keller'), (21586, 'https://ror.org/01yczqg15', 'es', 1, 'https://ror.org/01yczqg15 Universidad Enrique Díaz de León'), (21587, 'https://ror.org/01ye8vh67', 'en', 1, 'https://ror.org/01ye8vh67 Hassania School of Public Works École Hassania des travaux publics المدرسة الحسنية للأشغال العمومية'), (21588, 'https://ror.org/01yf3k683', 'en', 1, 'https://ror.org/01yf3k683 New York City Fire Department'), (21589, 'https://ror.org/01yg3gs77', 'es', 1, 'https://ror.org/01yg3gs77 Corporación Politécnico Colombo Andino'), (21590, 'https://ror.org/01ygx6877', 'en', 1, 'https://ror.org/01ygx6877 Mind'), (21591, 'https://ror.org/01yj2ng88', 'no_lang_code', 1, 'https://ror.org/01yj2ng88 ProControl (Italy)'), (21592, 'https://ror.org/01yjpe866', 'en', 1, 'https://ror.org/01yjpe866 Women in Government'), (21593, 'https://ror.org/01ykn4h51', 'es', 1, 'https://ror.org/01ykn4h51 Universidad del Soconusco'), (21594, 'https://ror.org/01yp0v682', 'no_lang_code', 1, 'https://ror.org/01yp0v682 StrateCision (United States)'), (21595, 'https://ror.org/01ypqqm93', 'en', 1, 'https://ror.org/01ypqqm93 Port Elizabeth Provincial Hospital'), (21596, 'https://ror.org/01yrvea59', 'no_lang_code', 1, 'https://ror.org/01yrvea59 Valdez & Associates (United States)'), (21597, 'https://ror.org/01ysbeb83', 'es', 1, 'https://ror.org/01ysbeb83 Universidad de Ciencias Pedagógicas José de la Luz Caballero'), (21598, 'https://ror.org/01yssfs05', 'en', 1, 'https://ror.org/01yssfs05 Green Lane Hospital'), (21599, 'https://ror.org/01yt1q538', 'fr', 1, 'https://ror.org/01yt1q538 Institut International des Sciences et de Technologie'), (21600, 'https://ror.org/01yt8p082', 'no_lang_code', 1, 'https://ror.org/01yt8p082 Nobatek'), (21601, 'https://ror.org/01yw95a78', 'en', 1, 'https://ror.org/01yw95a78 Universidad del Centro Educativo Latinoamericano University of the Latin American Educational Center'), (21602, 'https://ror.org/01ywnqg74', 'en', 1, 'https://ror.org/01ywnqg74 Chichester Hospital'), (21603, 'https://ror.org/01yxt3w38', 'en', 1, 'https://ror.org/01yxt3w38 Dorking Community Hospital'), (21604, 'https://ror.org/01yztcr70', 'pt', 1, 'https://ror.org/01yztcr70 Universidade de Cuiabá'), (21605, 'https://ror.org/01z02vf77', 'no_lang_code', 1, 'https://ror.org/01z02vf77 Oxyrase (United States)'), (21606, 'https://ror.org/01z0qcv19', 'en', 1, 'https://ror.org/01z0qcv19 Oakwater Laboratories'), (21607, 'https://ror.org/01z110311', 'es', 1, 'https://ror.org/01z110311 Universidad Especializada de las Américas'), (21608, 'https://ror.org/01z1mg159', 'no_lang_code', 1, 'https://ror.org/01z1mg159 Schafer-N (Denmark)'), (21609, 'https://ror.org/01z55tz06', 'no_lang_code', 1, 'https://ror.org/01z55tz06 Oxsensis (United Kingdom)'), (21610, 'https://ror.org/01z5z6p69', 'en', 1, 'https://ror.org/01z5z6p69 Alston Community Hospital'), (21611, 'https://ror.org/01z675j45', 'es', 1, 'https://ror.org/01z675j45 Unidades Tecnológicas de Santander'), (21612, 'https://ror.org/01z6f4063', 'en', 1, 'https://ror.org/01z6f4063 DMI St. Eugene University'), (21613, 'https://ror.org/01z947v86', 'no_lang_code', 1, 'https://ror.org/01z947v86 Tetra Corporation (United States)'), (21614, 'https://ror.org/01za8kp04', 'en', 1, 'https://ror.org/01za8kp04 National University of Catamarca Universidad Nacional de Catamarca'), (21615, 'https://ror.org/01zcwem74', 'no_lang_code', 1, 'https://ror.org/01zcwem74 Post Brenhinol Royal Mail Group (United Kingdom) a'' Phuist Rìoghail'), (21616, 'https://ror.org/01zdej617', 'no_lang_code', 1, 'https://ror.org/01zdej617 SyntheZyme (United States)'), (21617, 'https://ror.org/01zfccs95', 'en', 1, 'https://ror.org/01zfccs95 Gravesham Community Hospital'), (21618, 'https://ror.org/01zfx2510', 'it', 1, 'https://ror.org/01zfx2510 TTS Italia'), (21619, 'https://ror.org/01zgv1x24', 'en', 1, 'https://ror.org/01zgv1x24 Portland Public Schools'), (21620, 'https://ror.org/01zhpfy26', 'no_lang_code', 1, 'https://ror.org/01zhpfy26 Next Limit Technologies (Spain)'), (21621, 'https://ror.org/01zhzx806', 'en', 1, 'https://ror.org/01zhzx806 Callington Road Hospital'), (21622, 'https://ror.org/01zjsj463', 'no_lang_code', 1, 'https://ror.org/01zjsj463 Walter Frank & Sons (United Kingdom)'), (21623, 'https://ror.org/01zk9kz10', 'en', 1, 'https://ror.org/01zk9kz10 Nelson Hospital'), (21624, 'https://ror.org/01znaqx63', 'no_lang_code', 1, 'https://ror.org/01znaqx63 Pensoft Publishers (Bulgaria)'), (21625, 'https://ror.org/01znas443', 'en', 1, 'https://ror.org/01znas443 Ministry of Education, Science and Technological Development'), (21626, 'https://ror.org/01znzmx53', 'no_lang_code', 1, 'https://ror.org/01znzmx53 Multimeric Biotherapeutics (United States)'), (21627, 'https://ror.org/01zstgj41', 'es', 1, 'https://ror.org/01zstgj41 Universidad Nacional Experimental Rafael María Baralt'), (21628, 'https://ror.org/01ztsjv38', 'en', 1, 'https://ror.org/01ztsjv38 Mayflower Community Hospital'), (21629, 'https://ror.org/01zv5dm50', 'no_lang_code', 1, 'https://ror.org/01zv5dm50 PDS (United States)'), (21630, 'https://ror.org/01zw0xy27', 'es', 1, 'https://ror.org/01zw0xy27 Escuela de Cadetes de Policía General Santander'), (21631, 'https://ror.org/01zw9zg68', 'no_lang_code', 1, 'https://ror.org/01zw9zg68 African Methodist Episcopal University'), (21632, 'https://ror.org/01zy04g55', 'no_lang_code', 1, 'https://ror.org/01zy04g55 Silios Technologies (France)'), (21633, 'https://ror.org/01zzmf129', 'en', 1, 'https://ror.org/01zzmf129 Xi’an University 西安文理学院'), (21634, 'https://ror.org/01zzt6n55', 'fr', 1, 'https://ror.org/01zzt6n55 Institut d''Histoire de l''Amérique Française'), (21635, 'https://ror.org/0200b5370', 'en', 1, 'https://ror.org/0200b5370 The Gordon Hospital'), (21636, 'https://ror.org/0201by934', 'en', 1, 'https://ror.org/0201by934 Octavia Housing'), (21637, 'https://ror.org/0202f7m63', 'it', 1, 'https://ror.org/0202f7m63 Osservatorio Astronomico Armenzano'), (21638, 'https://ror.org/02045bf64', 'en', 1, 'https://ror.org/02045bf64 Tansian University'), (21639, 'https://ror.org/020ck1591', 'en', 1, 'https://ror.org/020ck1591 Police Academy in Szczytno'), (21640, 'https://ror.org/020e47v47', 'no_lang_code', 1, 'https://ror.org/020e47v47 Organovo (United States)'), (21641, 'https://ror.org/020ek1893', 'no_lang_code', 1, 'https://ror.org/020ek1893 Salsnes Filter (Norway)'), (21642, 'https://ror.org/020gp5z38', 'en', 1, 'https://ror.org/020gp5z38 Newburgh Enlarged City School District'), (21643, 'https://ror.org/020vke347', 'en', 1, 'https://ror.org/020vke347 Queen Mary''s Hospital For Children'), (21644, 'https://ror.org/020vpzw85', 'no_lang_code', 1, 'https://ror.org/020vpzw85 PhaseSpace (United Kingdom)'), (21645, 'https://ror.org/020w9wy05', 'en', 1, 'https://ror.org/020w9wy05 Renaissance University'), (21646, 'https://ror.org/020wq5714', 'en', 1, 'https://ror.org/020wq5714 Chuo Kikuu cha Arusha University of Arusha'), (21647, 'https://ror.org/0210qe842', 'no_lang_code', 1, 'https://ror.org/0210qe842 Mannari Hospital 万成病院'), (21648, 'https://ror.org/0210zq234', 'en', 1, 'https://ror.org/0210zq234 Savernake Community Hospital'), (21649, 'https://ror.org/02123w421', 'no_lang_code', 1, 'https://ror.org/02123w421 Sir Robert McAlpine (United Kingdom)'), (21650, 'https://ror.org/02141x466', 'no_lang_code', 1, 'https://ror.org/02141x466 Subsea 7 (United Kingdom)'), (21651, 'https://ror.org/0215hrs79', 'no_lang_code', 1, 'https://ror.org/0215hrs79 Plasmaterm (Romania)'), (21652, 'https://ror.org/02191hv61', 'no_lang_code', 1, 'https://ror.org/02191hv61 Zyberwear (United States)'), (21653, 'https://ror.org/0219pnb09', 'en', 1, 'https://ror.org/0219pnb09 New Cairo Academy'), (21654, 'https://ror.org/021gxmd22', 'no_lang_code', 1, 'https://ror.org/021gxmd22 RVJ - Editores (Portugal)'), (21655, 'https://ror.org/021jdc910', 'es', 1, 'https://ror.org/021jdc910 Universidad Regional del Norte'), (21656, 'https://ror.org/021k2cy37', 'it', 1, 'https://ror.org/021k2cy37 Suor Orsola Benincasa University of Naples Università degli Studi Suor Orsola Benincasa Université sœur-ursule-benincasa'), (21657, 'https://ror.org/021mz4j77', 'no_lang_code', 1, 'https://ror.org/021mz4j77 Velcourt (United Kingdom)'), (21658, 'https://ror.org/021njs178', 'es', 1, 'https://ror.org/021njs178 Intercontinental University Universidad Intercontinental'), (21659, 'https://ror.org/021q7b987', 'no_lang_code', 1, 'https://ror.org/021q7b987 Tadiran Batteries (Germany)'), (21660, 'https://ror.org/021qf1j15', 'en', 1, 'https://ror.org/021qf1j15 Townlands Memorial Hospital'), (21661, 'https://ror.org/021rhh009', 'no_lang_code', 1, 'https://ror.org/021rhh009 Oracle (Germany)'), (21662, 'https://ror.org/021rpyr13', 'en', 1, 'https://ror.org/021rpyr13 Canadian Society for Italian Studies Société Canadienne pour les Études Italiennes'), (21663, 'https://ror.org/021s39r20', 'es', 1, 'https://ror.org/021s39r20 Colegio Metodista de Costa Rica'), (21664, 'https://ror.org/021wnqb35', 'en', 1, 'https://ror.org/021wnqb35 Withernsea Hospital'), (21665, 'https://ror.org/021wwet11', 'no_lang_code', 1, 'https://ror.org/021wwet11 Transvalor (France)'), (21666, 'https://ror.org/021xsee05', 'no_lang_code', 1, 'https://ror.org/021xsee05 Norac Pharma (United States)'), (21667, 'https://ror.org/021zm0v94', 'es', 1, 'https://ror.org/021zm0v94 Instituto Profesional Agrario Adolfo Matthei'), (21668, 'https://ror.org/0220q4w51', 'en', 1, 'https://ror.org/0220q4w51 WEGEMT'), (21669, 'https://ror.org/0220rp185', 'en', 1, 'https://ror.org/0220rp185 Stockport NHS Foundation Trust'), (21670, 'https://ror.org/022283x63', 'no_lang_code', 1, 'https://ror.org/022283x63 Oxfam'), (21671, 'https://ror.org/0225snd59', 'en', 1, 'https://ror.org/0225snd59 Finis Terrae University Universidad Finis Terrae'), (21672, 'https://ror.org/0227qpa16', 'en', 1, 'https://ror.org/0227qpa16 NHS Blood and Transplant'), (21673, 'https://ror.org/022awwm23', 'en', 1, 'https://ror.org/022awwm23 Wellcome Collection'), (21674, 'https://ror.org/022b6b871', 'en', 1, 'https://ror.org/022b6b871 Jobu University 上武大学'), (21675, 'https://ror.org/022brwp40', 'en', 1, 'https://ror.org/022brwp40 Cannock Chase Hospital'), (21676, 'https://ror.org/022camr20', 'en', 1, 'https://ror.org/022camr20 Universidad de las Ciencias Informáticas University of Information Science'), (21677, 'https://ror.org/022ejqa41', 'en', 1, 'https://ror.org/022ejqa41 BMI The Ridgeway Hospital'), (21678, 'https://ror.org/022fzky59', 'no_lang_code', 1, 'https://ror.org/022fzky59 Optiwave Systems (Canada)'), (21679, 'https://ror.org/022hr6a87', 'en', 1, 'https://ror.org/022hr6a87 Veria Central Public Library δημόσια κεντρική βιβλιοθήκη βέροιας'), (21680, 'https://ror.org/022j77113', 'en', 1, 'https://ror.org/022j77113 San Juan County Partnership'), (21681, 'https://ror.org/022jsgk59', 'en', 1, 'https://ror.org/022jsgk59 West Cornwall Hospital'), (21682, 'https://ror.org/022nmct36', 'en', 1, 'https://ror.org/022nmct36 Michigan Coalition to End Domestic and Sexual Violence'), (21683, 'https://ror.org/022ps9t53', 'en', 1, 'https://ror.org/022ps9t53 New York State Senate'), (21684, 'https://ror.org/022qam104', 'es', 1, 'https://ror.org/022qam104 Spanish Autonomous University of Durango Universidad Autónoma España de Durango'), (21685, 'https://ror.org/022r3pj76', 'es', 1, 'https://ror.org/022r3pj76 Instituto Universitario Asociación Cristiana de Jóvenes'), (21686, 'https://ror.org/022rmxm39', 'no_lang_code', 1, 'https://ror.org/022rmxm39 Sprout Design (United Kingdom)'), (21687, 'https://ror.org/022s5gm85', 'en', 1, 'https://ror.org/022s5gm85 Dongguan People’s Hospital 东莞市人民医院'), (21688, 'https://ror.org/022sn3k05', 'es', 1, 'https://ror.org/022sn3k05 Universidad Peruana de Ciencias e Informática'), (21689, 'https://ror.org/022t9bz35', 'es', 1, 'https://ror.org/022t9bz35 Instituto Profesional Los Leones'), (21690, 'https://ror.org/022vfdk28', 'no_lang_code', 1, 'https://ror.org/022vfdk28 OSM DAN (Israel) או.אס.אמ. - דן בע"מ'), (21691, 'https://ror.org/022vq0k77', 'no_lang_code', 1, 'https://ror.org/022vq0k77 Test Labs International (Canada)'), (21692, 'https://ror.org/022w8nz24', 'no_lang_code', 1, 'https://ror.org/022w8nz24 PlayGen (United Kingdom)'), (21693, 'https://ror.org/022wmtv37', 'en', 1, 'https://ror.org/022wmtv37 Crandall University'), (21694, 'https://ror.org/022wsx863', 'et', 1, 'https://ror.org/022wsx863 Miksike'), (21695, 'https://ror.org/022y4t490', 'en', 1, 'https://ror.org/022y4t490 Sarah Samuels Center for Public Health & Evaluation'), (21696, 'https://ror.org/0231kjt76', 'en', 1, 'https://ror.org/0231kjt76 Montana Office of Public Instruction'), (21697, 'https://ror.org/0231mbz86', 'no_lang_code', 1, 'https://ror.org/0231mbz86 Anglo American (United Kingdom)'), (21698, 'https://ror.org/0232v5h12', 'no_lang_code', 1, 'https://ror.org/0232v5h12 PharmaReview Corporation'), (21699, 'https://ror.org/02336q433', 'no_lang_code', 1, 'https://ror.org/02336q433 Enghouse Interactive (United Kingdom)'), (21700, 'https://ror.org/0233by794', 'no_lang_code', 1, 'https://ror.org/0233by794 ReNeuron (United Kingdom)'), (21701, 'https://ror.org/0233tck35', 'en', 1, 'https://ror.org/0233tck35 Wallingford Community Hospital'), (21702, 'https://ror.org/0235cda14', 'no_lang_code', 1, 'https://ror.org/0235cda14 Qserve Group (Netherlands)'), (21703, 'https://ror.org/0235m5777', 'fr', 1, 'https://ror.org/0235m5777 École Supérieure de Communication et de Publicité'), (21704, 'https://ror.org/02380m508', 'en', 1, 'https://ror.org/02380m508 Medway Maritime Hospital'), (21705, 'https://ror.org/0239tnv53', 'no_lang_code', 1, 'https://ror.org/0239tnv53 Omdurman Ahlia University جامعة أم درمان الأهلية'), (21706, 'https://ror.org/023cpce20', 'en', 1, 'https://ror.org/023cpce20 Universidad Internacional Webber Webber International University'), (21707, 'https://ror.org/023cs4y60', 'no_lang_code', 1, 'https://ror.org/023cs4y60 Remote Sensing Solutions (Germany)'), (21708, 'https://ror.org/023gbp227', 'en', 1, 'https://ror.org/023gbp227 Community Sector Council Newfoundland and Labrador'), (21709, 'https://ror.org/023jjn461', 'no_lang_code', 1, 'https://ror.org/023jjn461 Varta Microbattery (Germany)'), (21710, 'https://ror.org/023k5b089', 'en', 1, 'https://ror.org/023k5b089 Textile Research Institute'), (21711, 'https://ror.org/023kh3y84', 'no_lang_code', 1, 'https://ror.org/023kh3y84 Sidekick Studios (United Kingdom)'), (21712, 'https://ror.org/023m5rq87', 'en', 1, 'https://ror.org/023m5rq87 National Pedagogic University Universidad Pedagógica Nacional'), (21713, 'https://ror.org/023mbkk92', 'no_lang_code', 1, 'https://ror.org/023mbkk92 Tektronix (Canada)'), (21714, 'https://ror.org/023njmx50', 'no_lang_code', 1, 'https://ror.org/023njmx50 Midland Valley Exploration (United Kingdom)'), (21715, 'https://ror.org/023r30q21', 'no_lang_code', 1, 'https://ror.org/023r30q21 Sitex 45 (Romania)'), (21716, 'https://ror.org/023wbcv08', 'no_lang_code', 1, 'https://ror.org/023wbcv08 TP Vision (Belgium)'), (21717, 'https://ror.org/023ys3x64', 'no_lang_code', 1, 'https://ror.org/023ys3x64 Thermo Fisher Scientific (Denmark)'), (21718, 'https://ror.org/023zc1f33', 'fr', 1, 'https://ror.org/023zc1f33 Établissement Dar El Hadith El Hassania مؤسسة دار الحديث الحسنية'), (21719, 'https://ror.org/02401m575', 'no_lang_code', 1, 'https://ror.org/02401m575 Supanetics (United Kingdom)'), (21720, 'https://ror.org/0240exq58', 'en', 1, 'https://ror.org/0240exq58 Skegness Hospital'), (21721, 'https://ror.org/0241a4222', 'es', 1, 'https://ror.org/0241a4222 Hospital Provincial de Rosario'), (21722, 'https://ror.org/0241ard09', 'no_lang_code', 1, 'https://ror.org/0241ard09 Vertellus Specialties (United Kingdom)'), (21723, 'https://ror.org/02440j369', 'no_lang_code', 1, 'https://ror.org/02440j369 NiTech Solutions (United Kingdom)'), (21724, 'https://ror.org/02465cd10', 'fr', 1, 'https://ror.org/02465cd10 Women''s and Gender Studies et Recherches Féministes'), (21725, 'https://ror.org/024am6q88', 'no_lang_code', 1, 'https://ror.org/024am6q88 HBW-Gubesch Kunststoff-Engineering (Germany)'), (21726, 'https://ror.org/024ccd889', 'en', 1, 'https://ror.org/024ccd889 Wayland Baptist University'), (21727, 'https://ror.org/024epr358', 'en', 1, 'https://ror.org/024epr358 Kendray Hospital'), (21728, 'https://ror.org/024et1e33', 'en', 1, 'https://ror.org/024et1e33 Polytechnic University of San Luis Potosí Universidad Politécnica de San Luis Potosí'), (21729, 'https://ror.org/024gy8x37', 'en', 1, 'https://ror.org/024gy8x37 Population Reference Bureau'), (21730, 'https://ror.org/024h3kh50', 'no_lang_code', 1, 'https://ror.org/024h3kh50 Ridan (Poland)'), (21731, 'https://ror.org/024j02139', 'en', 1, 'https://ror.org/024j02139 Northeast Communities Against Substance Abuse'), (21732, 'https://ror.org/024kwvm84', 'en', 1, 'https://ror.org/024kwvm84 Kyungil University'), (21733, 'https://ror.org/024mfhp94', 'no_lang_code', 1, 'https://ror.org/024mfhp94 Scytl (Spain)'), (21734, 'https://ror.org/024mpte60', 'en', 1, 'https://ror.org/024mpte60 University of Kairouan Université de kairouan جامعة القيروان'), (21735, 'https://ror.org/024msj675', 'es', 1, 'https://ror.org/024msj675 Universidad Yacambú'), (21736, 'https://ror.org/024mswg55', 'en', 1, 'https://ror.org/024mswg55 Blakelands Hospital'), (21737, 'https://ror.org/024n99014', 'en', 1, 'https://ror.org/024n99014 Thames Valley Hospital'), (21738, 'https://ror.org/024nbxn35', 'en', 1, 'https://ror.org/024nbxn35 Jiaozuo University 焦作大学'), (21739, 'https://ror.org/024nrkt38', 'no_lang_code', 1, 'https://ror.org/024nrkt38 Diebold Nixdorf (Germany)'), (21740, 'https://ror.org/024pjcr93', 'no_lang_code', 1, 'https://ror.org/024pjcr93 Red Electrica de Espana (Spain)'), (21741, 'https://ror.org/024q7v561', 'no_lang_code', 1, 'https://ror.org/024q7v561 Synyo (Austria)'), (21742, 'https://ror.org/024rsp410', 'pt', 1, 'https://ror.org/024rsp410 Centro Universitário de Lavras'), (21743, 'https://ror.org/024tpjw43', 'en', 1, 'https://ror.org/024tpjw43 The Princess Grace Hospital'), (21744, 'https://ror.org/024v03d05', 'en', 1, 'https://ror.org/024v03d05 Bradwell Community Hospital'), (21745, 'https://ror.org/024w5t184', 'en', 1, 'https://ror.org/024w5t184 Runnymede Trust'), (21746, 'https://ror.org/024wfy702', 'no_lang_code', 1, 'https://ror.org/024wfy702 Niadyne Pharma (United States)'), (21747, 'https://ror.org/024wgn240', 'pt', 1, 'https://ror.org/024wgn240 Centro Universitário de Desenvolvimento do Centro Oeste'), (21748, 'https://ror.org/024xe4a86', 'no_lang_code', 1, 'https://ror.org/024xe4a86 Oros (France)'), (21749, 'https://ror.org/024xqxd02', 'no_lang_code', 1, 'https://ror.org/024xqxd02 RUAG (Sweden)'), (21750, 'https://ror.org/024xrts92', 'en', 1, 'https://ror.org/024xrts92 Port Gamble S''Klallam Tribal Council'), (21751, 'https://ror.org/024yaae06', 'fr', 1, 'https://ror.org/024yaae06 Université Catholique du Congo'), (21752, 'https://ror.org/024yfg990', 'en', 1, 'https://ror.org/024yfg990 Ukrainian Scientific and Research Institute of Ecological Problems'), (21753, 'https://ror.org/02507sy82', 'en', 1, 'https://ror.org/02507sy82 St George''s Hospital'), (21754, 'https://ror.org/0250q0m17', 'es', 1, 'https://ror.org/0250q0m17 Universidad Interamericana'), (21755, 'https://ror.org/02558h854', 'es', 1, 'https://ror.org/02558h854 Hospital Quirónsalud Barcelona'), (21756, 'https://ror.org/0256nsb38', 'no_lang_code', 1, 'https://ror.org/0256nsb38 Urba 2000'), (21757, 'https://ror.org/02571vj15', 'no_lang_code', 1, 'https://ror.org/02571vj15 University of Skikda Université of 20 août 1955 of Skikda'), (21758, 'https://ror.org/02598xm52', 'no_lang_code', 1, 'https://ror.org/02598xm52 Services and Studies for Air Navigation and Aeronautical Safety'), (21759, 'https://ror.org/0259tmr25', 'es', 1, 'https://ror.org/0259tmr25 Centro Universitario Juana de Asbaje'), (21760, 'https://ror.org/0259yjc90', 'en', 1, 'https://ror.org/0259yjc90 Zimbabwe Association of Church-Related Hospitals'), (21761, 'https://ror.org/025bepc78', 'no_lang_code', 1, 'https://ror.org/025bepc78 3D Systems (Belgium)'), (21762, 'https://ror.org/025bx6p27', 'en', 1, 'https://ror.org/025bx6p27 St Pancras Hospital'), (21763, 'https://ror.org/025d3w458', 'es', 1, 'https://ror.org/025d3w458 Universidad Interamericana de Educación a Distancia de Panamá'), (21764, 'https://ror.org/025ebgz81', 'no_lang_code', 1, 'https://ror.org/025ebgz81 NanoTechLabs (United States)'), (21765, 'https://ror.org/025gwsg11', 'en', 1, 'https://ror.org/025gwsg11 Shangqiu First People''s Hospital 商丘市第一人民医院'), (21766, 'https://ror.org/025pjyp02', 'no_lang_code', 1, 'https://ror.org/025pjyp02 Plasma Coatings (United Kingdom)'), (21767, 'https://ror.org/025qja684', 'en', 1, 'https://ror.org/025qja684 Omdurman Islamic University جامعة أم درمان الإسلامية'), (21768, 'https://ror.org/025rxqy43', 'da', 1, 'https://ror.org/025rxqy43 Danish National Archives Statens Arkivers'), (21769, 'https://ror.org/025s2ay93', 'en', 1, 'https://ror.org/025s2ay93 North Cotswolds Hospital'), (21770, 'https://ror.org/025tf9d31', 'no_lang_code', 1, 'https://ror.org/025tf9d31 Red Hat (Ireland)'), (21771, 'https://ror.org/025tsch51', 'no_lang_code', 1, 'https://ror.org/025tsch51 Scientific Computing & Modelling (Netherlands)'), (21772, 'https://ror.org/025tvnr06', 'en', 1, 'https://ror.org/025tvnr06 National School of Built and Ground Works Engineering'), (21773, 'https://ror.org/025tyv665', 'no_lang_code', 1, 'https://ror.org/025tyv665 Pavemetrics Systems (Canada)'), (21774, 'https://ror.org/025xjs150', 'en', 1, 'https://ror.org/025xjs150 El Shorouk Academy'), (21775, 'https://ror.org/025xt6a66', 'no_lang_code', 1, 'https://ror.org/025xt6a66 Samo (Italy)'), (21776, 'https://ror.org/025zd8760', 'pt', 1, 'https://ror.org/025zd8760 Universidade do Vale do Sapucaí'), (21777, 'https://ror.org/025zp0g22', 'en', 1, 'https://ror.org/025zp0g22 Association Canadienne pour les Études sur la Cooperation Canadian Association for Studies in Co-operation'), (21778, 'https://ror.org/025zz8754', 'en', 1, 'https://ror.org/025zz8754 NWT Literacy Council'); INSERT INTO `rors` VALUES (21779, 'https://ror.org/02604an77', 'es', 1, 'https://ror.org/02604an77 Escuela Colombiana de Rehabilitación'), (21780, 'https://ror.org/02606ke74', 'en', 1, 'https://ror.org/02606ke74 Richmond Royal Hospital'), (21781, 'https://ror.org/0260r5f51', 'en', 1, 'https://ror.org/0260r5f51 Swindon Borough Council'), (21782, 'https://ror.org/0260zag83', 'en', 1, 'https://ror.org/0260zag83 St. Lawrence College'), (21783, 'https://ror.org/0261fx274', 'no_lang_code', 1, 'https://ror.org/0261fx274 Schüßler-Plan (Germany)'), (21784, 'https://ror.org/0262yf988', 'en', 1, 'https://ror.org/0262yf988 Alderney Hospital'), (21785, 'https://ror.org/02631q704', 'fr', 1, 'https://ror.org/02631q704 École Supérieure des Industries du Textile et de l''Habillement'), (21786, 'https://ror.org/0263kr214', 'es', 1, 'https://ror.org/0263kr214 Universidad del Valle de Santiago'), (21787, 'https://ror.org/0264gtk20', 'en', 1, 'https://ror.org/0264gtk20 Marion General Hospital'), (21788, 'https://ror.org/0264qnp36', 'en', 1, 'https://ror.org/0264qnp36 Second Artillery General Hospital of Chinese People''s Liberation Army 中国人民解放军第二炮兵总医院'), (21789, 'https://ror.org/02657e607', 'pt', 1, 'https://ror.org/02657e607 Instituto Superior de Ciências e Tecnologia Alberto Chipande'), (21790, 'https://ror.org/0266khk21', 'no_lang_code', 1, 'https://ror.org/0266khk21 Merlin Circuit Technology (United Kingdom)'), (21791, 'https://ror.org/026a52219', 'no_lang_code', 1, 'https://ror.org/026a52219 Moixa (United Kingdom)'), (21792, 'https://ror.org/026b2vr33', 'no_lang_code', 1, 'https://ror.org/026b2vr33 Rofin (United Kingdom)'), (21793, 'https://ror.org/026cgfq41', 'no_lang_code', 1, 'https://ror.org/026cgfq41 Quality Electrodynamics (United States)'), (21794, 'https://ror.org/026cn0061', 'en', 1, 'https://ror.org/026cn0061 Erith and District Hospital'), (21795, 'https://ror.org/026efkc57', 'en', 1, 'https://ror.org/026efkc57 Scottish Universities Physics Alliance'), (21796, 'https://ror.org/026enhk32', 'no_lang_code', 1, 'https://ror.org/026enhk32 Tarp (United States)'), (21797, 'https://ror.org/026jsye16', 'no_lang_code', 1, 'https://ror.org/026jsye16 Y-Stress (United States)'), (21798, 'https://ror.org/026p1jb43', 'en', 1, 'https://ror.org/026p1jb43 Universidad del Valle de Atemajac University of the Valley of Atemajac'), (21799, 'https://ror.org/026pfmg90', 'fr', 1, 'https://ror.org/026pfmg90 École Africaine de la Météorologie et de l''Aviation Civile'), (21800, 'https://ror.org/026s89d26', 'en', 1, 'https://ror.org/026s89d26 William Howard Taft University'), (21801, 'https://ror.org/026tvqe20', 'no_lang_code', 1, 'https://ror.org/026tvqe20 Astronomical Observatory Nicolaus Copernicus астрономическа обсерватория и планетариум „Николай Коперник“'), (21802, 'https://ror.org/026v6r221', 'en', 1, 'https://ror.org/026v6r221 Tewkesbury Community Hospital'), (21803, 'https://ror.org/026vdme11', 'en', 1, 'https://ror.org/026vdme11 Higher Institute for Cooperative and Administrative Studies'), (21804, 'https://ror.org/026x43f05', 'no_lang_code', 1, 'https://ror.org/026x43f05 NKE Instrumentation (France)'), (21805, 'https://ror.org/026xnjn61', 'no_lang_code', 1, 'https://ror.org/026xnjn61 Whirlpool (Italy)'), (21806, 'https://ror.org/026y0w292', 'en', 1, 'https://ror.org/026y0w292 Twyford Church of England High School'), (21807, 'https://ror.org/0271jbv59', 'no_lang_code', 1, 'https://ror.org/0271jbv59 Proactive Oral Solutions (United States)'), (21808, 'https://ror.org/0272t8w72', 'no_lang_code', 1, 'https://ror.org/0272t8w72 Naeva Tec (Spain)'), (21809, 'https://ror.org/0272v4z91', 'en', 1, 'https://ror.org/0272v4z91 Warminster Community Hospital'), (21810, 'https://ror.org/027840k02', 'en', 1, 'https://ror.org/027840k02 Catholic University of Santiago del Estero Universidad Católica de Santiago del Estero'), (21811, 'https://ror.org/02788t795', 'en', 1, 'https://ror.org/02788t795 Maudsley Hospital'), (21812, 'https://ror.org/0279qd249', 'en', 1, 'https://ror.org/0279qd249 Bexhill Hospital'), (21813, 'https://ror.org/0279yv972', 'en', 1, 'https://ror.org/0279yv972 Pharaohs Higher Institute of Computer Information Systems and Management معهد الفراعنة العالى للحاسب الألى ونظم المعلومات والإدارة'), (21814, 'https://ror.org/027a5xq62', 'en', 1, 'https://ror.org/027a5xq62 Women in Resource Development'), (21815, 'https://ror.org/027a72a41', 'no_lang_code', 1, 'https://ror.org/027a72a41 Sioux Manufacturing (United States)'), (21816, 'https://ror.org/027cgen28', 'en', 1, 'https://ror.org/027cgen28 Shanghai Guanghua Hospital of Integrated Traditional Chinese and Western Medicine 上海市光华中西医结合医院'), (21817, 'https://ror.org/027df5686', 'en', 1, 'https://ror.org/027df5686 Learning Ally'), (21818, 'https://ror.org/027e1wk64', 'en', 1, 'https://ror.org/027e1wk64 Hunters Hill Observatory'), (21819, 'https://ror.org/027e4g787', 'en', 1, 'https://ror.org/027e4g787 York Teaching Hospital NHS Foundation Trust'), (21820, 'https://ror.org/027ep7e51', 'en', 1, 'https://ror.org/027ep7e51 Sutton Cottage Hospital'), (21821, 'https://ror.org/027f5z015', 'no_lang_code', 1, 'https://ror.org/027f5z015 Xigen (Switzerland)'), (21822, 'https://ror.org/027fdd835', 'en', 1, 'https://ror.org/027fdd835 Vanier College'), (21823, 'https://ror.org/027g41b71', 'no_lang_code', 1, 'https://ror.org/027g41b71 Picanol (Belgium)'), (21824, 'https://ror.org/027h8t796', 'en', 1, 'https://ror.org/027h8t796 Bundesamt für Statistik Federal Statistical Office Office fédéral de la statistique Ufficio federale di statistica Uffizi federal da statistica'), (21825, 'https://ror.org/027m8k660', 'en', 1, 'https://ror.org/027m8k660 Monroe County Department of Human Services'), (21826, 'https://ror.org/027ng0s03', 'no_lang_code', 1, 'https://ror.org/027ng0s03 META Group'), (21827, 'https://ror.org/027pap738', 'no_lang_code', 1, 'https://ror.org/027pap738 Resensys (United States)'), (21828, 'https://ror.org/027pq2t86', 'no_lang_code', 1, 'https://ror.org/027pq2t86 Sidac (Italy)'), (21829, 'https://ror.org/027pwvz62', 'es', 1, 'https://ror.org/027pwvz62 Universidad Pedagógica Mariscal Sucre'), (21830, 'https://ror.org/027q6qt05', 'es', 1, 'https://ror.org/027q6qt05 Universidad Evangélica de las Américas'), (21831, 'https://ror.org/027qm5t47', 'no_lang_code', 1, 'https://ror.org/027qm5t47 FitzGerald Nurseries (Ireland)'), (21832, 'https://ror.org/027wvv544', 'en', 1, 'https://ror.org/027wvv544 Pershore Community Hospital'), (21833, 'https://ror.org/027x71w42', 'no_lang_code', 1, 'https://ror.org/027x71w42 Mandala Biosciences (United States)'), (21834, 'https://ror.org/027x7jn80', 'no_lang_code', 1, 'https://ror.org/027x7jn80 NeuroSearch (Denmark)'), (21835, 'https://ror.org/027xm5n95', 'en', 1, 'https://ror.org/027xm5n95 National Research and Education Network'), (21836, 'https://ror.org/027y3mp05', 'es', 1, 'https://ror.org/027y3mp05 Universidad Chileno Británica de Cultura'), (21837, 'https://ror.org/027yy2w57', 'en', 1, 'https://ror.org/027yy2w57 Kobatake Hospital 小畠病院'), (21838, 'https://ror.org/027z1kr85', 'no_lang_code', 1, 'https://ror.org/027z1kr85 PhenoSystems (Belgium)'), (21839, 'https://ror.org/0280gjv27', 'no_lang_code', 1, 'https://ror.org/0280gjv27 GMV Innovating Solutions (Portugal)'), (21840, 'https://ror.org/0280r7h11', 'en', 1, 'https://ror.org/0280r7h11 Mid Essex Hospital Services NHS Trust'), (21841, 'https://ror.org/028177t76', 'en', 1, 'https://ror.org/028177t76 Concordia University Texas Universidad Concordia Texas'), (21842, 'https://ror.org/0281stt89', 'no_lang_code', 1, 'https://ror.org/0281stt89 Gruppo Scienzia Machinale (Italy)'), (21843, 'https://ror.org/0281w2821', 'no_lang_code', 1, 'https://ror.org/0281w2821 Sofie Biosciences (United States)'), (21844, 'https://ror.org/0282d8z17', 'no_lang_code', 1, 'https://ror.org/0282d8z17 Coesia (Italy)'), (21845, 'https://ror.org/0282rt868', 'en', 1, 'https://ror.org/0282rt868 Deutsches Hygiene-Museum German Hygiene Museum'), (21846, 'https://ror.org/028301226', 'en', 1, 'https://ror.org/028301226 West Virginia Department of Education'), (21847, 'https://ror.org/028380v12', 'es', 1, 'https://ror.org/028380v12 Fundación Academia de Dibujo Profesional'), (21848, 'https://ror.org/0283d6p96', 'es', 1, 'https://ror.org/0283d6p96 Instituto Profesional Escuela De Contadores Auditores De Santiago'), (21849, 'https://ror.org/02846rb74', 'en', 1, 'https://ror.org/02846rb74 Whitby Hospital'), (21850, 'https://ror.org/02854zp38', 'pt', 1, 'https://ror.org/02854zp38 Centro Universitario Toledo'), (21851, 'https://ror.org/0285v1m71', 'es', 1, 'https://ror.org/0285v1m71 Universidad Comunera'), (21852, 'https://ror.org/0287cjk10', 'en', 1, 'https://ror.org/0287cjk10 Spire Little Aston Hospital'), (21853, 'https://ror.org/0287xzx52', 'en', 1, 'https://ror.org/0287xzx52 Republican Research Center for Radiation Medicine and Human Ecology'), (21854, 'https://ror.org/0289gr697', 'es', 1, 'https://ror.org/0289gr697 Institución Universitaria Colegio Mayor de Antioquia'), (21855, 'https://ror.org/0289zbq28', 'en', 1, 'https://ror.org/0289zbq28 Shasta County Chemical People'), (21856, 'https://ror.org/028dfkq31', 'es', 1, 'https://ror.org/028dfkq31 Universidad Americana de Acapulco'), (21857, 'https://ror.org/028f2wx05', 'en', 1, 'https://ror.org/028f2wx05 Chartwell Diagnostic and Imaging Centre'), (21858, 'https://ror.org/028fpac96', 'es', 1, 'https://ror.org/028fpac96 Fundación Interamericana Técnica'), (21859, 'https://ror.org/028gajb68', 'en', 1, 'https://ror.org/028gajb68 Nile Valley University جامعة وادي النيل'), (21860, 'https://ror.org/028gkvf62', 'pt', 1, 'https://ror.org/028gkvf62 Centro Universitário Nossa Senhora do Patrocínio'), (21861, 'https://ror.org/028m0e381', 'no_lang_code', 1, 'https://ror.org/028m0e381 Protein Technologies (United Kingdom)'), (21862, 'https://ror.org/028r5k665', 'no_lang_code', 1, 'https://ror.org/028r5k665 Platit (Switzerland)'), (21863, 'https://ror.org/028rmam09', 'no_lang_code', 1, 'https://ror.org/028rmam09 Shijiazhuang University 石家庄学院'), (21864, 'https://ror.org/028tdwj14', 'no_lang_code', 1, 'https://ror.org/028tdwj14 RSscan International (Belgium)'), (21865, 'https://ror.org/028th4269', 'fr', 1, 'https://ror.org/028th4269 École des Hautes Études de Biotechnologie et de Santé'), (21866, 'https://ror.org/028w3g135', 'es', 1, 'https://ror.org/028w3g135 Universidad José Carlos Mariategui'), (21867, 'https://ror.org/0293hjc54', 'no_lang_code', 1, 'https://ror.org/0293hjc54 Sustainable Energy Systems (United Kingdom)'), (21868, 'https://ror.org/0294g4w14', 'no_lang_code', 1, 'https://ror.org/0294g4w14 TerOpta (United Kingdom)'), (21869, 'https://ror.org/0294yf460', 'no_lang_code', 1, 'https://ror.org/0294yf460 France Rol (France)'), (21870, 'https://ror.org/0295ktr04', 'no_lang_code', 1, 'https://ror.org/0295ktr04 Nordic Transport Development'), (21871, 'https://ror.org/0295q2p17', 'no_lang_code', 1, 'https://ror.org/0295q2p17 Metabolic Solutions Development Company (United States)'), (21872, 'https://ror.org/0297hyv43', 'en', 1, 'https://ror.org/0297hyv43 National Cancer Registrars Association'), (21873, 'https://ror.org/0297n1v45', 'en', 1, 'https://ror.org/0297n1v45 Amberton University Universidad Amberton'), (21874, 'https://ror.org/029ccny38', 'es', 1, 'https://ror.org/029ccny38 Universidad Católica de Pereira'), (21875, 'https://ror.org/029d6y387', 'no_lang_code', 1, 'https://ror.org/029d6y387 STM Products (Italy)'), (21876, 'https://ror.org/029gksr15', 'no_lang_code', 1, 'https://ror.org/029gksr15 SilicoLife (Portugal)'), (21877, 'https://ror.org/029jcrc31', 'en', 1, 'https://ror.org/029jcrc31 British Constructional Steelwork Association'), (21878, 'https://ror.org/029jgxb70', 'pt', 1, 'https://ror.org/029jgxb70 Centro Universitário Curitiba'), (21879, 'https://ror.org/029jt9a82', 'en', 1, 'https://ror.org/029jt9a82 International University of Africa جامعة إفريقيا العالمية'), (21880, 'https://ror.org/029me2q51', 'en', 1, 'https://ror.org/029me2q51 Egyptian Russian University الجامعة الروسية المصرية'), (21881, 'https://ror.org/029mrrs96', 'en', 1, 'https://ror.org/029mrrs96 Noah''s Ark Children''s Hospital for Wales Ysbyty Arch Noa Plant Cymru'), (21882, 'https://ror.org/029nhgs15', 'no_lang_code', 1, 'https://ror.org/029nhgs15 WesTest Engineering (United States)'), (21883, 'https://ror.org/029nxc858', 'en', 1, 'https://ror.org/029nxc858 Maine Department of Education'), (21884, 'https://ror.org/029qjm428', 'es', 1, 'https://ror.org/029qjm428 Instituto Profesional de Ciencias de la Computación'), (21885, 'https://ror.org/029rkt035', 'en', 1, 'https://ror.org/029rkt035 Remote Sensing Application Center'), (21886, 'https://ror.org/029s29983', 'en', 1, 'https://ror.org/029s29983 Genome Canada'), (21887, 'https://ror.org/029v2wj86', 'en', 1, 'https://ror.org/029v2wj86 Council of Ministers of Education'), (21888, 'https://ror.org/029vb5696', 'en', 1, 'https://ror.org/029vb5696 Zimbabwe National Quality Assurance Program'), (21889, 'https://ror.org/029xkyf70', 'en', 1, 'https://ror.org/029xkyf70 Spire Dunedin Hospital'), (21890, 'https://ror.org/029y8px13', 'en', 1, 'https://ror.org/029y8px13 Newmarket Hospital'), (21891, 'https://ror.org/029z5ap77', 'es', 1, 'https://ror.org/029z5ap77 Corporación Universitaria Republicana'), (21892, 'https://ror.org/029zzvq50', 'es', 1, 'https://ror.org/029zzvq50 Universidad Israel'), (21893, 'https://ror.org/02a46sb39', 'en', 1, 'https://ror.org/02a46sb39 Tetoora Road Observatory'), (21894, 'https://ror.org/02a6j1h04', 'fi', 1, 'https://ror.org/02a6j1h04 Tietotalo'), (21895, 'https://ror.org/02a7np905', 'es', 1, 'https://ror.org/02a7np905 Centro Universitario Latinoamericano de Morelos'), (21896, 'https://ror.org/02a7ztw78', 'no_lang_code', 1, 'https://ror.org/02a7ztw78 Microsemi (United Kingdom)'), (21897, 'https://ror.org/02a809t02', 'no_lang_code', 1, 'https://ror.org/02a809t02 Vizzuality (Spain)'), (21898, 'https://ror.org/02a97td45', 'fr', 1, 'https://ror.org/02a97td45 Observatoire de Dauban'), (21899, 'https://ror.org/02a9dqv95', 'no_lang_code', 1, 'https://ror.org/02a9dqv95 Trias (Greece)'), (21900, 'https://ror.org/02ab1bc46', 'en', 1, 'https://ror.org/02ab1bc46 University Center Augusto Motta'), (21901, 'https://ror.org/02abh5f58', 'no_lang_code', 1, 'https://ror.org/02abh5f58 LC Vision (United States)'), (21902, 'https://ror.org/02abn3h81', 'en', 1, 'https://ror.org/02abn3h81 National Society of Black Physicists'), (21903, 'https://ror.org/02abxwv41', 'en', 1, 'https://ror.org/02abxwv41 Wyoming Department of Education'), (21904, 'https://ror.org/02acc9e56', 'fr', 1, 'https://ror.org/02acc9e56 Institut des Hautes Études de Tunis Institute of Advanced Studies of Tunis'), (21905, 'https://ror.org/02aethq11', 'no_lang_code', 1, 'https://ror.org/02aethq11 Wapice (Finland)'), (21906, 'https://ror.org/02agt5758', 'no_lang_code', 1, 'https://ror.org/02agt5758 Northern Technologies International (United States)'), (21907, 'https://ror.org/02ahe3232', 'en', 1, 'https://ror.org/02ahe3232 European Society of Cardiology'), (21908, 'https://ror.org/02ahky613', 'es', 1, 'https://ror.org/02ahky613 Northeastern University Universidad del Noreste'), (21909, 'https://ror.org/02akddf79', 'en', 1, 'https://ror.org/02akddf79 Canadian Catholic Historical Association'), (21910, 'https://ror.org/02akgnc95', 'no_lang_code', 1, 'https://ror.org/02akgnc95 Solems (France)'), (21911, 'https://ror.org/02aneaq95', 'es', 1, 'https://ror.org/02aneaq95 Universidad de Xalapa'), (21912, 'https://ror.org/02anx2442', 'en', 1, 'https://ror.org/02anx2442 Simon Kuznets Kharkiv National University of Economics Харківський національний економічний університет Харьковский национальный экономический университет'), (21913, 'https://ror.org/02ar3bt91', 'en', 1, 'https://ror.org/02ar3bt91 Bệnh Viện Da Liễu Thành Phố Hồ Chí Minh HCMC Hospital of Dermato Venereology'), (21914, 'https://ror.org/02ar7jm50', 'en', 1, 'https://ror.org/02ar7jm50 Kwara State Polytechnic'), (21915, 'https://ror.org/02arcr276', 'en', 1, 'https://ror.org/02arcr276 National Association of State Departments of Agriculture'), (21916, 'https://ror.org/02arzvn48', 'es', 1, 'https://ror.org/02arzvn48 Instituto de Ciencias Tecnológicas'), (21917, 'https://ror.org/02atwwv43', 'en', 1, 'https://ror.org/02atwwv43 Slovenian Institute for Adult Education'), (21918, 'https://ror.org/02av9qc14', 'no_lang_code', 1, 'https://ror.org/02av9qc14 Protein Metrics (United States)'), (21919, 'https://ror.org/02aye8x76', 'no_lang_code', 1, 'https://ror.org/02aye8x76 Triarii (Netherlands)'), (21920, 'https://ror.org/02ayk5126', 'no_lang_code', 1, 'https://ror.org/02ayk5126 Dalanj University جامعة الدلنج'), (21921, 'https://ror.org/02azgvq37', 'pt', 1, 'https://ror.org/02azgvq37 Universidade Zambeze'), (21922, 'https://ror.org/02b1nt179', 'no_lang_code', 1, 'https://ror.org/02b1nt179 Harvard Bioscience (United States)'), (21923, 'https://ror.org/02b27c547', 'en', 1, 'https://ror.org/02b27c547 Dartford And Gravesham NHS Trust'), (21924, 'https://ror.org/02b2dcj06', 'no_lang_code', 1, 'https://ror.org/02b2dcj06 Nokian Renkaat Nokian Tyres (Finland)'), (21925, 'https://ror.org/02b2fgs53', 'en', 1, 'https://ror.org/02b2fgs53 St Augustine College of South Africa'), (21926, 'https://ror.org/02b2yz332', 'es', 1, 'https://ror.org/02b2yz332 Universidad Nororiental Privada Gran Mariscal de Ayacucho'), (21927, 'https://ror.org/02b34td92', 'no_lang_code', 1, 'https://ror.org/02b34td92 Ai Corporation (United Kingdom)'), (21928, 'https://ror.org/02b4apg34', 'es', 1, 'https://ror.org/02b4apg34 Escuela Politécnica Javeriana del Ecuador'), (21929, 'https://ror.org/02b50et21', 'no_lang_code', 1, 'https://ror.org/02b50et21 Souriau (France)'), (21930, 'https://ror.org/02b7n7v15', 'es', 1, 'https://ror.org/02b7n7v15 Universidad Católica de Santa Fe'), (21931, 'https://ror.org/02bb0ey42', 'es', 1, 'https://ror.org/02bb0ey42 Universidad Nueva Esparta'), (21932, 'https://ror.org/02bczys52', 'en', 1, 'https://ror.org/02bczys52 Society for Science & the Public'), (21933, 'https://ror.org/02bf8nh75', 'no_lang_code', 1, 'https://ror.org/02bf8nh75 ModellTechnik Rapid Prototyping (Germany)'), (21934, 'https://ror.org/02bftc014', 'no_lang_code', 1, 'https://ror.org/02bftc014 Audiprel (Spain)'), (21935, 'https://ror.org/02bgm5h12', 'en', 1, 'https://ror.org/02bgm5h12 Community Living Welland Pelham'), (21936, 'https://ror.org/02bn5bg05', 'no_lang_code', 1, 'https://ror.org/02bn5bg05 Plasticell (United Kingdom)'), (21937, 'https://ror.org/02bnf4x85', 'fr', 1, 'https://ror.org/02bnf4x85 Université Simon Kimbangu'), (21938, 'https://ror.org/02bnw0f54', 'es', 1, 'https://ror.org/02bnw0f54 Universidad de Investigación y Desarrollo, Universitaria de Investigación y Desarrollo'), (21939, 'https://ror.org/02bpb1j41', 'en', 1, 'https://ror.org/02bpb1j41 Nye Communities Coalition'), (21940, 'https://ror.org/02brpgm25', 'en', 1, 'https://ror.org/02brpgm25 Canadian Evaluation Society Société Canadienne d''évaluation'), (21941, 'https://ror.org/02bs1me11', 'en', 1, 'https://ror.org/02bs1me11 Sea Studios Foundation'), (21942, 'https://ror.org/02bsvz023', 'en', 1, 'https://ror.org/02bsvz023 Hinckley and Bosworth Community Hospital'), (21943, 'https://ror.org/02bt72x97', 'no_lang_code', 1, 'https://ror.org/02bt72x97 Sciprom (Switzerland)'), (21944, 'https://ror.org/02bwd6p34', 'en', 1, 'https://ror.org/02bwd6p34 Ashfield Community Hospital'), (21945, 'https://ror.org/02bwmj336', 'no_lang_code', 1, 'https://ror.org/02bwmj336 NSK (United Kingdom)'), (21946, 'https://ror.org/02by00s02', 'no_lang_code', 1, 'https://ror.org/02by00s02 SunPower (Germany)'), (21947, 'https://ror.org/02by1h611', 'no_lang_code', 1, 'https://ror.org/02by1h611 Prospektiker (Spain)'), (21948, 'https://ror.org/02bz32326', 'en', 1, 'https://ror.org/02bz32326 Philadelphia Education Fund'), (21949, 'https://ror.org/02bzvpv63', 'es', 1, 'https://ror.org/02bzvpv63 Universidad Autónoma del Pacífico'), (21950, 'https://ror.org/02c18bt40', 'en', 1, 'https://ror.org/02c18bt40 Leicester Frith Hospital'), (21951, 'https://ror.org/02c2fvd82', 'en', 1, 'https://ror.org/02c2fvd82 Association for Science and Discovery Centres'), (21952, 'https://ror.org/02c3a1v05', 'en', 1, 'https://ror.org/02c3a1v05 Spire Gatwick Park Hospital'), (21953, 'https://ror.org/02c3ywg26', 'no_lang_code', 1, 'https://ror.org/02c3ywg26 Edison (Italy)'), (21954, 'https://ror.org/02c561939', 'en', 1, 'https://ror.org/02c561939 Union University'), (21955, 'https://ror.org/02c5he528', 'en', 1, 'https://ror.org/02c5he528 International Maritime University of Panama Universidad Marítima Internacional de Panamá'), (21956, 'https://ror.org/02c6xtt27', 'en', 1, 'https://ror.org/02c6xtt27 University of East-West Medicine'), (21957, 'https://ror.org/02c8rf527', 'no_lang_code', 1, 'https://ror.org/02c8rf527 Synthesis and Research (Greece)'), (21958, 'https://ror.org/02c8ytn85', 'no_lang_code', 1, 'https://ror.org/02c8ytn85 SMART Group (United Kingdom)'), (21959, 'https://ror.org/02c9ztd98', 'en', 1, 'https://ror.org/02c9ztd98 Seattle Public Schools'), (21960, 'https://ror.org/02ca38p84', 'no_lang_code', 1, 'https://ror.org/02ca38p84 Quretec (Estonia)'), (21961, 'https://ror.org/02canyd30', 'en', 1, 'https://ror.org/02canyd30 Newton Community Hospital'), (21962, 'https://ror.org/02cdhc958', 'no_lang_code', 1, 'https://ror.org/02cdhc958 Parker Hannifin (United Kingdom)'), (21963, 'https://ror.org/02cdyrc89', 'en', 1, 'https://ror.org/02cdyrc89 Suzhou Municipal Hospital 苏州市立医院'), (21964, 'https://ror.org/02cf9zs75', 'es', 1, 'https://ror.org/02cf9zs75 Universidad Americana de Morelos'), (21965, 'https://ror.org/02cgt3c05', 'en', 1, 'https://ror.org/02cgt3c05 Guangxi Zhuang Autonomous Region Brain Hospital 广西壮族自治区脑科医院'), (21966, 'https://ror.org/02ch5h698', 'no_lang_code', 1, 'https://ror.org/02ch5h698 Nexor (United Kingdom)'), (21967, 'https://ror.org/02ch8xp61', 'no_lang_code', 1, 'https://ror.org/02ch8xp61 Oxford NanoSystems (United Kingdom)'), (21968, 'https://ror.org/02cj2g073', 'no_lang_code', 1, 'https://ror.org/02cj2g073 Syzygy Memory Plastics (United States)'), (21969, 'https://ror.org/02ckere89', 'en', 1, 'https://ror.org/02ckere89 Sergio Arboleda University Universidad Sergio Arboleda'), (21970, 'https://ror.org/02ckk6855', 'en', 1, 'https://ror.org/02ckk6855 Kent Community Health NHS Foundation Trust'), (21971, 'https://ror.org/02ckzhz90', 'en', 1, 'https://ror.org/02ckzhz90 Blackberry Hill Hospital'), (21972, 'https://ror.org/02cmcc109', 'no_lang_code', 1, 'https://ror.org/02cmcc109 TRIM edicine (United States)'), (21973, 'https://ror.org/02cntp233', 'en', 1, 'https://ror.org/02cntp233 Daido University 大同大学'), (21974, 'https://ror.org/02cpp6046', 'en', 1, 'https://ror.org/02cpp6046 Regional Advisory and Information Centre Presov'), (21975, 'https://ror.org/02cqr9y77', 'en', 1, 'https://ror.org/02cqr9y77 Possum Observatory'), (21976, 'https://ror.org/02crmer26', 'en', 1, 'https://ror.org/02crmer26 Obong University'), (21977, 'https://ror.org/02crzj551', 'en', 1, 'https://ror.org/02crzj551 Hôpital Montfort Montfort Hospital'), (21978, 'https://ror.org/02cs5nk10', 'pt', 1, 'https://ror.org/02cs5nk10 Centro Universitário do Espírito Santo'), (21979, 'https://ror.org/02cs9pv18', 'en', 1, 'https://ror.org/02cs9pv18 Universidad Ciencias de la Informática University Ucinf'), (21980, 'https://ror.org/02cs9t297', 'no_lang_code', 1, 'https://ror.org/02cs9t297 Thales (Austria)'), (21981, 'https://ror.org/02cv67x09', 'en', 1, 'https://ror.org/02cv67x09 North Dakota Legislative Council'), (21982, 'https://ror.org/02cxvat25', 'en', 1, 'https://ror.org/02cxvat25 University of Bakhtalruda جامعة بخت الرضا'), (21983, 'https://ror.org/02cyaf297', 'no_lang_code', 1, 'https://ror.org/02cyaf297 Sonic Concepts (United States)'), (21984, 'https://ror.org/02cz4sf27', 'en', 1, 'https://ror.org/02cz4sf27 National Alliance for Medication Assisted Recovery'), (21985, 'https://ror.org/02czb6c47', 'en', 1, 'https://ror.org/02czb6c47 Association canadienne d''études en loisir Canadian Association for Leisure Studies'), (21986, 'https://ror.org/02d07sw41', 'no_lang_code', 1, 'https://ror.org/02d07sw41 WS Energia (Portugal)'), (21987, 'https://ror.org/02d0hr347', 'en', 1, 'https://ror.org/02d0hr347 Maryport Victoria Cottage Hospital'), (21988, 'https://ror.org/02d1znh19', 'no_lang_code', 1, 'https://ror.org/02d1znh19 Vallon (Germany)'), (21989, 'https://ror.org/02d3f2520', 'no_lang_code', 1, 'https://ror.org/02d3f2520 Nanonex (United States)'), (21990, 'https://ror.org/02d5d0r05', 'en', 1, 'https://ror.org/02d5d0r05 North Staffordshire Combined Healthcare NHS Trust'), (21991, 'https://ror.org/02d640813', 'en', 1, 'https://ror.org/02d640813 International Centre for Comparative Criminology'), (21992, 'https://ror.org/02d6evb60', 'es', 1, 'https://ror.org/02d6evb60 Instituto Profesional La Araucana'), (21993, 'https://ror.org/02d75a424', 'en', 1, 'https://ror.org/02d75a424 University of Management and Technology'), (21994, 'https://ror.org/02d7rnk16', 'en', 1, 'https://ror.org/02d7rnk16 North Seattle College'), (21995, 'https://ror.org/02d994c36', 'no_lang_code', 1, 'https://ror.org/02d994c36 Aerogeodezijos institutas Institute of Aerial Geodesy (Lithuania)'), (21996, 'https://ror.org/02day0j61', 'no_lang_code', 1, 'https://ror.org/02day0j61 Nova Medical (United States)'), (21997, 'https://ror.org/02dbkpn67', 'no_lang_code', 1, 'https://ror.org/02dbkpn67 Nutech Industries (United States)'), (21998, 'https://ror.org/02dchwm66', 'no_lang_code', 1, 'https://ror.org/02dchwm66 Third Eye Diagnostics (United States)'), (21999, 'https://ror.org/02dd4nc12', 'es', 1, 'https://ror.org/02dd4nc12 Centro Diocesano de Estudio y Reflexión'), (22000, 'https://ror.org/02ddjw503', 'en', 1, 'https://ror.org/02ddjw503 Academy of Arts أكاديمية الفنون'), (22001, 'https://ror.org/02ddk7s51', 'es', 1, 'https://ror.org/02ddk7s51 TICBioMed'), (22002, 'https://ror.org/02de7mm40', 'en', 1, 'https://ror.org/02de7mm40 Basildon Hospital'), (22003, 'https://ror.org/02de9p942', 'no_lang_code', 1, 'https://ror.org/02de9p942 ValveXchange (United States)'), (22004, 'https://ror.org/02dhmwy14', 'en', 1, 'https://ror.org/02dhmwy14 The Berkshire Independent Hospital'), (22005, 'https://ror.org/02dhn4e70', 'en', 1, 'https://ror.org/02dhn4e70 Itami City Hospital 市立伊丹病院'), (22006, 'https://ror.org/02djp1y08', 'es', 1, 'https://ror.org/02djp1y08 Universidad Tajín'), (22007, 'https://ror.org/02dm3hc63', 'pt', 1, 'https://ror.org/02dm3hc63 Centro Universitário de Jales'), (22008, 'https://ror.org/02drgk151', 'en', 1, 'https://ror.org/02drgk151 Coleman University'), (22009, 'https://ror.org/02ds0wa60', 'en', 1, 'https://ror.org/02ds0wa60 Olympic Athletic Center of Athens "Spiros Louis"'), (22010, 'https://ror.org/02dt8zs37', 'en', 1, 'https://ror.org/02dt8zs37 The Foscote Hospital'), (22011, 'https://ror.org/02dv1n029', 'fr', 1, 'https://ror.org/02dv1n029 Santé Mentale au Québec'), (22012, 'https://ror.org/02dveg925', 'en', 1, 'https://ror.org/02dveg925 University of Boumerdes جامعة امحمد بوڤرة بومرداس'), (22013, 'https://ror.org/02dx4w725', 'de', 1, 'https://ror.org/02dx4w725 Wirtschaftsförderungsinstitut'), (22014, 'https://ror.org/02dy89791', 'no_lang_code', 1, 'https://ror.org/02dy89791 Manifattura Italiana del Brembo (Italy)'), (22015, 'https://ror.org/02dyjqg10', 'es', 1, 'https://ror.org/02dyjqg10 Sociedad Hispano Mundial'), (22016, 'https://ror.org/02dzc0673', 'en', 1, 'https://ror.org/02dzc0673 Alliance for Permanent Access'), (22017, 'https://ror.org/02e0n1919', 'es', 1, 'https://ror.org/02e0n1919 Instituto Universitario Centro de Estudio y Diagnóstico de las Disgnacias del Uruguay'), (22018, 'https://ror.org/02e2avb86', 'en', 1, 'https://ror.org/02e2avb86 Information Technology Foundation for Education'), (22019, 'https://ror.org/02e2j2x69', 'no_lang_code', 1, 'https://ror.org/02e2j2x69 Tunstall Healthcare (United Kingdom)'), (22020, 'https://ror.org/02e2ve941', 'en', 1, 'https://ror.org/02e2ve941 Mount Meru University'), (22021, 'https://ror.org/02e2yc259', 'en', 1, 'https://ror.org/02e2yc259 University Yahia Fares of Medea جامعة يحي فارس بالمدية'), (22022, 'https://ror.org/02e3fqh84', 'no_lang_code', 1, 'https://ror.org/02e3fqh84 Serim Research Corporation (United States)'), (22023, 'https://ror.org/02e3jby32', 'en', 1, 'https://ror.org/02e3jby32 BMI The Runnymede Hospital'), (22024, 'https://ror.org/02e4cmf45', 'es', 1, 'https://ror.org/02e4cmf45 Universidad Liceo Cervantino'), (22025, 'https://ror.org/02e5pwb51', 'en', 1, 'https://ror.org/02e5pwb51 Rochford Community Hospital'), (22026, 'https://ror.org/02e6tdc21', 'en', 1, 'https://ror.org/02e6tdc21 Association Canadienne de Linguistique Canadian Linguistic Association'), (22027, 'https://ror.org/02e6wxz44', 'en', 1, 'https://ror.org/02e6wxz44 St Helens and Knowsley Teaching Hospitals NHS Trust'), (22028, 'https://ror.org/02e7h1n39', 'es', 1, 'https://ror.org/02e7h1n39 Universidad Intercultural del Estado de México'), (22029, 'https://ror.org/02e8s3123', 'es', 1, 'https://ror.org/02e8s3123 Instituto Universitario Italiano de Rosario'), (22030, 'https://ror.org/02e9hj615', 'no_lang_code', 1, 'https://ror.org/02e9hj615 Transpire (United States)'), (22031, 'https://ror.org/02e9j2825', 'en', 1, 'https://ror.org/02e9j2825 St. Albans School'), (22032, 'https://ror.org/02ec5fm39', 'no_lang_code', 1, 'https://ror.org/02ec5fm39 First Innovation Park'), (22033, 'https://ror.org/02ecccn63', 'no_lang_code', 1, 'https://ror.org/02ecccn63 Xandem Technology (United States)'), (22034, 'https://ror.org/02ech7z91', 'es', 1, 'https://ror.org/02ech7z91 Corporación Universitaria Rafael Nuñez'), (22035, 'https://ror.org/02ed69v98', 'es', 1, 'https://ror.org/02ed69v98 Instituto Profesional Diego Portales'), (22036, 'https://ror.org/02ef5kc35', 'no_lang_code', 1, 'https://ror.org/02ef5kc35 Vitas (Norway)'), (22037, 'https://ror.org/02eftbv72', 'en', 1, 'https://ror.org/02eftbv72 Rocky Mountain Virology Club'), (22038, 'https://ror.org/02ehsaf86', 'no_lang_code', 1, 'https://ror.org/02ehsaf86 Mark Group (United Kingdom)'), (22039, 'https://ror.org/02ekfze92', 'en', 1, 'https://ror.org/02ekfze92 Ohio County Together We Care Coalition'), (22040, 'https://ror.org/02ekga339', 'en', 1, 'https://ror.org/02ekga339 Duchy Hospital'), (22041, 'https://ror.org/02ekwm539', 'no_lang_code', 1, 'https://ror.org/02ekwm539 Planet'), (22042, 'https://ror.org/02em67c34', 'no_lang_code', 1, 'https://ror.org/02em67c34 Siet (Italy)'), (22043, 'https://ror.org/02emk4871', 'no_lang_code', 1, 'https://ror.org/02emk4871 Polyraz (Israel)'), (22044, 'https://ror.org/02eney694', 'en', 1, 'https://ror.org/02eney694 Nevada PEP'), (22045, 'https://ror.org/02engqd33', 'en', 1, 'https://ror.org/02engqd33 Museum of New Mexico'), (22046, 'https://ror.org/02enncp58', 'no_lang_code', 1, 'https://ror.org/02enncp58 Tigerlily Films (United Kingdom)'), (22047, 'https://ror.org/02esyae02', 'en', 1, 'https://ror.org/02esyae02 Science Fair Foundation of BC'), (22048, 'https://ror.org/02et1jt70', 'no_lang_code', 1, 'https://ror.org/02et1jt70 Peraso Technologies (Canada)'), (22049, 'https://ror.org/02evkff51', 'no_lang_code', 1, 'https://ror.org/02evkff51 J.Schneeberger Maschinen (Switzerland)'), (22050, 'https://ror.org/02evz6a53', 'no_lang_code', 1, 'https://ror.org/02evz6a53 X Flow (Netherlands)'), (22051, 'https://ror.org/02ewbw974', 'en', 1, 'https://ror.org/02ewbw974 Leigh House Hospital'), (22052, 'https://ror.org/02exeb428', 'en', 1, 'https://ror.org/02exeb428 Modern Academy'), (22053, 'https://ror.org/02f25xq68', 'no_lang_code', 1, 'https://ror.org/02f25xq68 Modern Water (United Kingdom)'), (22054, 'https://ror.org/02f28xw52', 'no_lang_code', 1, 'https://ror.org/02f28xw52 Verisante Technology (Canada)'), (22055, 'https://ror.org/02f38w092', 'no_lang_code', 1, 'https://ror.org/02f38w092 Xeros Technologies (United Kingdom)'), (22056, 'https://ror.org/02f3t1d20', 'es', 1, 'https://ror.org/02f3t1d20 Instituto Universitario Franco Inglés de México'), (22057, 'https://ror.org/02f622w49', 'en', 1, 'https://ror.org/02f622w49 Kelling Hospital'), (22058, 'https://ror.org/02f6q5s54', 'es', 1, 'https://ror.org/02f6q5s54 Universidad Americana'), (22059, 'https://ror.org/02f73m916', 'no_lang_code', 1, 'https://ror.org/02f73m916 Sauf Consulting'), (22060, 'https://ror.org/02f7sfa33', 'en', 1, 'https://ror.org/02f7sfa33 John F. Kennedy Center for the Performing Arts'), (22061, 'https://ror.org/02fb1gt16', 'no_lang_code', 1, 'https://ror.org/02fb1gt16 Tribosonics (United Kingdom)'), (22062, 'https://ror.org/02fdpxr39', 'no_lang_code', 1, 'https://ror.org/02fdpxr39 Southern Biotechnology Associates'), (22063, 'https://ror.org/02feeaa54', 'en', 1, 'https://ror.org/02feeaa54 Association Canadienne pour l''Avancement des études Néerlandaises Canadian Association for the Advancement of Netherlandic Studies'), (22064, 'https://ror.org/02ff3pb56', 'no_lang_code', 1, 'https://ror.org/02ff3pb56 NetSmart (Greece)'), (22065, 'https://ror.org/02fg51t11', 'en', 1, 'https://ror.org/02fg51t11 Safe Drinking Water Foundation'), (22066, 'https://ror.org/02fgfjw51', 'en', 1, 'https://ror.org/02fgfjw51 Mauritius Institute of Education'), (22067, 'https://ror.org/02fgyh323', 'es', 1, 'https://ror.org/02fgyh323 Universidad del Valle de Toluca'), (22068, 'https://ror.org/02fj6b627', 'en', 1, 'https://ror.org/02fj6b627 Guangxi University of Science and Technology 广西科技大学'), (22069, 'https://ror.org/02fjyx055', 'fr', 1, 'https://ror.org/02fjyx055 Institut Supérieur de Gestion des Entreprises'), (22070, 'https://ror.org/02fky0856', 'pt', 1, 'https://ror.org/02fky0856 Madeira Tecnopolo'), (22071, 'https://ror.org/02fm5cr50', 'no_lang_code', 1, 'https://ror.org/02fm5cr50 Rohrer (Switzerland)'), (22072, 'https://ror.org/02fnq4841', 'es', 1, 'https://ror.org/02fnq4841 Universidad Católica de Honduras Nuestra Señora Reina de la Paz'), (22073, 'https://ror.org/02fpcgg22', 'en', 1, 'https://ror.org/02fpcgg22 Penrith Community Hospital'), (22074, 'https://ror.org/02fpgs304', 'no_lang_code', 1, 'https://ror.org/02fpgs304 Trimek (Spain)'), (22075, 'https://ror.org/02fqsc924', 'en', 1, 'https://ror.org/02fqsc924 University of Livingstonia'), (22076, 'https://ror.org/02fsk5c21', 'en', 1, 'https://ror.org/02fsk5c21 University Pathologists'), (22077, 'https://ror.org/02fwenk18', 'en', 1, 'https://ror.org/02fwenk18 Thebes Academy أكاديمية طيبه'), (22078, 'https://ror.org/02fwj4283', 'pl', 1, 'https://ror.org/02fwj4283 Geoscience and Marine Research & Consulting Przedsiębiorstwo Badań i Doradztwa'), (22079, 'https://ror.org/02fwtg066', 'en', 1, 'https://ror.org/02fwtg066 Sudan University of Science and Technology جامعة السودان للعلوم والتكنولوجيا'), (22080, 'https://ror.org/02fxyjz60', 'es', 1, 'https://ror.org/02fxyjz60 Universidad Interamericana'), (22081, 'https://ror.org/02fyv5292', 'en', 1, 'https://ror.org/02fyv5292 Mediterranean School of Business المدرسة المتوسطية للأعمال'), (22082, 'https://ror.org/02fz88323', 'no_lang_code', 1, 'https://ror.org/02fz88323 SP Group (Denmark)'), (22083, 'https://ror.org/02g102751', 'en', 1, 'https://ror.org/02g102751 Wisconsin Department of Public Instruction'), (22084, 'https://ror.org/02g14hj64', 'no_lang_code', 1, 'https://ror.org/02g14hj64 Smart Reamer Drilling Systems (United Kingdom)'), (22085, 'https://ror.org/02g21fq05', 'fr', 1, 'https://ror.org/02g21fq05 Institut des Hautes Études Commerciales et Économiques'), (22086, 'https://ror.org/02g236n66', 'fr', 1, 'https://ror.org/02g236n66 Université Roi Henri Christophe'), (22087, 'https://ror.org/02g4dgx92', 'no_lang_code', 1, 'https://ror.org/02g4dgx92 Separation Design Group'), (22088, 'https://ror.org/02g5dr532', 'no_lang_code', 1, 'https://ror.org/02g5dr532 Seirei Sakura Citizen Hospital 聖隷佐倉市民病院'), (22089, 'https://ror.org/02g5n6964', 'no_lang_code', 1, 'https://ror.org/02g5n6964 Sembiosys Genetics (Canada)'), (22090, 'https://ror.org/02g5t8y66', 'no_lang_code', 1, 'https://ror.org/02g5t8y66 Yole Développement (France)'), (22091, 'https://ror.org/02g6vys92', 'no_lang_code', 1, 'https://ror.org/02g6vys92 PFP Cybersecurity (United States)'), (22092, 'https://ror.org/02g77ac10', 'en', 1, 'https://ror.org/02g77ac10 Red Crow Community College'), (22093, 'https://ror.org/02g8ke585', 'fr', 1, 'https://ror.org/02g8ke585 Institut National de Statistique et d''Economie Appliquée المعهد الوطني للإحصاء والاقتصادالتطبيقي'), (22094, 'https://ror.org/02g8ybs83', 'no_lang_code', 1, 'https://ror.org/02g8ybs83 AstenJohnson (Belgium)'), (22095, 'https://ror.org/02g9gg448', 'fr', 1, 'https://ror.org/02g9gg448 École Nationale de Management et de l''Administration de la Santé'), (22096, 'https://ror.org/02gad0c63', 'en', 1, 'https://ror.org/02gad0c63 Polaris Observatory Association'), (22097, 'https://ror.org/02gashc76', 'es', 1, 'https://ror.org/02gashc76 Instituto Profesional Eatri'), (22098, 'https://ror.org/02gdc3814', 'en', 1, 'https://ror.org/02gdc3814 Lipscomb University'), (22099, 'https://ror.org/02gdq7j49', 'en', 1, 'https://ror.org/02gdq7j49 White Balance Projects Pool Agency'), (22100, 'https://ror.org/02gfnab20', 'en', 1, 'https://ror.org/02gfnab20 Bridgnorth Community Hospital'), (22101, 'https://ror.org/02ghs4671', 'pt', 1, 'https://ror.org/02ghs4671 Universidade Independente de Angola'), (22102, 'https://ror.org/02gj0v433', 'en', 1, 'https://ror.org/02gj0v433 Gardner–Webb University'), (22103, 'https://ror.org/02gj6ck68', 'en', 1, 'https://ror.org/02gj6ck68 Iberoamerican University Universidad de Iberoamérica'), (22104, 'https://ror.org/02gk19b80', 'en', 1, 'https://ror.org/02gk19b80 North Central University'), (22105, 'https://ror.org/02gk90651', 'no_lang_code', 1, 'https://ror.org/02gk90651 Mobics (Greece)'), (22106, 'https://ror.org/02gm6vn88', 'es', 1, 'https://ror.org/02gm6vn88 Consorcio Educativo Oxford'), (22107, 'https://ror.org/02gm74063', 'en', 1, 'https://ror.org/02gm74063 Priory Hospital Cheadle Royal'), (22108, 'https://ror.org/02gqhnf32', 'es', 1, 'https://ror.org/02gqhnf32 Centro Universitario Oriente de México'), (22109, 'https://ror.org/02gs7pb27', 'no_lang_code', 1, 'https://ror.org/02gs7pb27 ScanArc Plasma Technologies (Sweden)'), (22110, 'https://ror.org/02gs9j702', 'no_lang_code', 1, 'https://ror.org/02gs9j702 Narco Freedom (United States)'), (22111, 'https://ror.org/02gwnf178', 'en', 1, 'https://ror.org/02gwnf178 Swedish Chemicals Agency'), (22112, 'https://ror.org/02gyrfm31', 'en', 1, 'https://ror.org/02gyrfm31 Sheppey Community Hospital'), (22113, 'https://ror.org/02gz76y84', 'es', 1, 'https://ror.org/02gz76y84 Universidad Nacional Abierta'), (22114, 'https://ror.org/02h0hx086', 'no_lang_code', 1, 'https://ror.org/02h0hx086 Predict (France)'), (22115, 'https://ror.org/02h1gvb73', 'no_lang_code', 1, 'https://ror.org/02h1gvb73 Oliver Crispin Robotics (United Kingdom)'), (22116, 'https://ror.org/02h1mkm69', 'en', 1, 'https://ror.org/02h1mkm69 Musicians Union'), (22117, 'https://ror.org/02h2m5t91', 'no_lang_code', 1, 'https://ror.org/02h2m5t91 WIGeoGIS (Austria)'), (22118, 'https://ror.org/02h3p3q22', 'en', 1, 'https://ror.org/02h3p3q22 Canadian Society for Mesopotamian Studies Société Canadienne des Etudes Mésopotamiennes'), (22119, 'https://ror.org/02h400990', 'no_lang_code', 1, 'https://ror.org/02h400990 Q linea (Sweden)'), (22120, 'https://ror.org/02h43kn72', 'en', 1, 'https://ror.org/02h43kn72 St. Leonards Hospital'), (22121, 'https://ror.org/02h5n6z77', 'en', 1, 'https://ror.org/02h5n6z77 Centro Universitário Jorge Amado Jorge Amado University Center'), (22122, 'https://ror.org/02h7txh22', 'en', 1, 'https://ror.org/02h7txh22 Sage Colleges'), (22123, 'https://ror.org/02h9dhk84', 'no_lang_code', 1, 'https://ror.org/02h9dhk84 SweTree Technologies (Sweden)'), (22124, 'https://ror.org/02haqm712', 'en', 1, 'https://ror.org/02haqm712 Matsubara Mayflower Hospital 松原メイフラワー病'), (22125, 'https://ror.org/02hevb853', 'en', 1, 'https://ror.org/02hevb853 Nebraska Educational Telecommunications'), (22126, 'https://ror.org/02hf6mx60', 'en', 1, 'https://ror.org/02hf6mx60 National Research University of Electronic Technology Национальный исследовательский университет МИЭТ'), (22127, 'https://ror.org/02hfw7a32', 'en', 1, 'https://ror.org/02hfw7a32 North Hennepin Community College'), (22128, 'https://ror.org/02hg69287', 'no_lang_code', 1, 'https://ror.org/02hg69287 Peacocks Medical Group (United Kingdom)'), (22129, 'https://ror.org/02hg9tz16', 'no_lang_code', 1, 'https://ror.org/02hg9tz16 Spree NDT'), (22130, 'https://ror.org/02hgg3s41', 'no_lang_code', 1, 'https://ror.org/02hgg3s41 Veiki-VNL (Hungary)'), (22131, 'https://ror.org/02hh51f62', 'en', 1, 'https://ror.org/02hh51f62 International Medical and Technological University'), (22132, 'https://ror.org/02hjh3741', 'no_lang_code', 1, 'https://ror.org/02hjh3741 THINK3 (France)'), (22133, 'https://ror.org/02hkdyy22', 'no_lang_code', 1, 'https://ror.org/02hkdyy22 OneSource (Portugal)'), (22134, 'https://ror.org/02hm6zw53', 'pt', 1, 'https://ror.org/02hm6zw53 Centro Universitário Belas Artes de São Paulo'), (22135, 'https://ror.org/02hnvfm11', 'pt', 1, 'https://ror.org/02hnvfm11 Universidade de Sorocaba'), (22136, 'https://ror.org/02hqgsn65', 'no_lang_code', 1, 'https://ror.org/02hqgsn65 Visual Dimension (Belgium)'), (22137, 'https://ror.org/02hr72y72', 'en', 1, 'https://ror.org/02hr72y72 Open Data Institute'), (22138, 'https://ror.org/02hrrdm75', 'en', 1, 'https://ror.org/02hrrdm75 Institut für Kooperationsmanagement und interdisziplinäre Forschung Nexus Institute for Cooperation Management and Interdisciplinary Research'), (22139, 'https://ror.org/02hsdts66', 'es', 1, 'https://ror.org/02hsdts66 Universidad de Flores'), (22140, 'https://ror.org/02hsk2p49', 'en', 1, 'https://ror.org/02hsk2p49 United States Conference of Mayors'), (22141, 'https://ror.org/02htksw11', 'en', 1, 'https://ror.org/02htksw11 Longridge Community Hospital'), (22142, 'https://ror.org/02htmyh81', 'en', 1, 'https://ror.org/02htmyh81 Slovak Business Agency'), (22143, 'https://ror.org/02hvxe361', 'en', 1, 'https://ror.org/02hvxe361 Queen''s Hospital'), (22144, 'https://ror.org/02hx0yn76', 'en', 1, 'https://ror.org/02hx0yn76 Quest University Canada'), (22145, 'https://ror.org/02hx18343', 'en', 1, 'https://ror.org/02hx18343 Pudong New Area People''s Hospital'), (22146, 'https://ror.org/02hx2nv16', 'fr', 1, 'https://ror.org/02hx2nv16 École des Hautes Études en Ingénierie des Systèmes d''Information'), (22147, 'https://ror.org/02hxnx131', 'no_lang_code', 1, 'https://ror.org/02hxnx131 T-Connect (Italy)'), (22148, 'https://ror.org/02hy1ey22', 'fr', 1, 'https://ror.org/02hy1ey22 École Polytechnique d''Architecture et d''Urbanisme'), (22149, 'https://ror.org/02hz1w568', 'no_lang_code', 1, 'https://ror.org/02hz1w568 Nanogap Sub-NM-Powder (Spain)'), (22150, 'https://ror.org/02hzqbc55', 'en', 1, 'https://ror.org/02hzqbc55 Kaili University 凯里学院'), (22151, 'https://ror.org/02j003371', 'es', 1, 'https://ror.org/02j003371 Universidad de las Américas'), (22152, 'https://ror.org/02j07fr50', 'fr', 1, 'https://ror.org/02j07fr50 Université Centrale de Tunis الجامعة المركزية الخاصة'), (22153, 'https://ror.org/02j0dnv45', 'en', 1, 'https://ror.org/02j0dnv45 Zambia Centre for Accountancy Studies'), (22154, 'https://ror.org/02j2yhq26', 'en', 1, 'https://ror.org/02j2yhq26 Naval Aeronautical and Astronautical University 中国人民解放军海军航空工程学院'), (22155, 'https://ror.org/02j3qj605', 'en', 1, 'https://ror.org/02j3qj605 Dartmouth Hospital'), (22156, 'https://ror.org/02j3x9q40', 'no_lang_code', 1, 'https://ror.org/02j3x9q40 Polyphotonix (United Kingdom)'), (22157, 'https://ror.org/02j3yv935', 'en', 1, 'https://ror.org/02j3yv935 Oceanites'), (22158, 'https://ror.org/02j5qmn70', 'en', 1, 'https://ror.org/02j5qmn70 Dongguk University Los Angeles'), (22159, 'https://ror.org/02j65kc59', 'no_lang_code', 1, 'https://ror.org/02j65kc59 Simcyp (United Kingdom)'), (22160, 'https://ror.org/02j7n9748', 'en', 1, 'https://ror.org/02j7n9748 Lancashire Teaching Hospitals NHS Foundation Trust'), (22161, 'https://ror.org/02j7qhm81', 'no_lang_code', 1, 'https://ror.org/02j7qhm81 Alu-Releco Oy (Finland)'), (22162, 'https://ror.org/02jakhr06', 'no_lang_code', 1, 'https://ror.org/02jakhr06 Voicekey (United Kingdom)'), (22163, 'https://ror.org/02jewd384', 'no_lang_code', 1, 'https://ror.org/02jewd384 Phil Jones Associates (United Kingdom)'), (22164, 'https://ror.org/02jgpyd84', 'en', 1, 'https://ror.org/02jgpyd84 German Jordanian University الجامعة الألمانية الأردنية'), (22165, 'https://ror.org/02jhx4860', 'en', 1, 'https://ror.org/02jhx4860 Upper Iowa University'), (22166, 'https://ror.org/02jjcbg38', 'en', 1, 'https://ror.org/02jjcbg38 St Ann''s Hospital'), (22167, 'https://ror.org/02jk75847', 'en', 1, 'https://ror.org/02jk75847 Higher National Veterinary School المدرسة الوطنية العليا للبيطرة'), (22168, 'https://ror.org/02jmk1h66', 'en', 1, 'https://ror.org/02jmk1h66 Chuo Kikuu cha Mtakatifu Yohana Tanzania St. John''s University of Tanzania'), (22169, 'https://ror.org/02jn32p79', 'it', 1, 'https://ror.org/02jn32p79 Ospedale Madonna Delle Grazie'), (22170, 'https://ror.org/02jndq195', 'no_lang_code', 1, 'https://ror.org/02jndq195 Vixar (United States)'), (22171, 'https://ror.org/02jpv5m37', 'no_lang_code', 1, 'https://ror.org/02jpv5m37 NorChip (Norway)'), (22172, 'https://ror.org/02js17r36', 'en', 1, 'https://ror.org/02js17r36 South Tees Hospitals NHS Foundation Trust'), (22173, 'https://ror.org/02jtgw663', 'en', 1, 'https://ror.org/02jtgw663 North Walsham and District War Memorial Hospital'), (22174, 'https://ror.org/02jv2qv86', 'en', 1, 'https://ror.org/02jv2qv86 St Mary''s Hospital'), (22175, 'https://ror.org/02jvezs96', 'no_lang_code', 1, 'https://ror.org/02jvezs96 Vamp Tech (Italy)'), (22176, 'https://ror.org/02jwdjd44', 'fr', 1, 'https://ror.org/02jwdjd44 Institut Universitaire Siantou'), (22177, 'https://ror.org/02jxcp012', 'en', 1, 'https://ror.org/02jxcp012 Ida Darwin hospital'), (22178, 'https://ror.org/02jy5b122', 'en', 1, 'https://ror.org/02jy5b122 Management and Development for Health'), (22179, 'https://ror.org/02jybwh86', 'nl', 1, 'https://ror.org/02jybwh86 Stichting Technisch Centrum vd Keramische Industrie'), (22180, 'https://ror.org/02jz9yj75', 'no_lang_code', 1, 'https://ror.org/02jz9yj75 Tecmic (Portugal)'), (22181, 'https://ror.org/02k1p7q76', 'no_lang_code', 1, 'https://ror.org/02k1p7q76 RJ Lee Group (United States)'), (22182, 'https://ror.org/02k20ry04', 'en', 1, 'https://ror.org/02k20ry04 Guadarrama Observatory'), (22183, 'https://ror.org/02k4qm934', 'ca', 1, 'https://ror.org/02k4qm934 Hospital General de Catalunya'), (22184, 'https://ror.org/02k52c211', 'en', 1, 'https://ror.org/02k52c211 Marketing Science Institute'), (22185, 'https://ror.org/02k5gcb44', 'en', 1, 'https://ror.org/02k5gcb44 Society of Nuclear Medicine and Molecular Imaging'), (22186, 'https://ror.org/02k5yax48', 'es', 1, 'https://ror.org/02k5yax48 Universidad Rural de Guatemala'), (22187, 'https://ror.org/02k7ven88', 'es', 1, 'https://ror.org/02k7ven88 Universidad Metropolitana del Centro'), (22188, 'https://ror.org/02k7y2v57', 'fr', 1, 'https://ror.org/02k7y2v57 Université Protestante de Lubumbashi'), (22189, 'https://ror.org/02k87s158', 'no_lang_code', 1, 'https://ror.org/02k87s158 Sherbrooke Innopole (Canada)'), (22190, 'https://ror.org/02k8yy996', 'no_lang_code', 1, 'https://ror.org/02k8yy996 TLS Technik Spezialpulver (Germany)'), (22191, 'https://ror.org/02k98xb21', 'en', 1, 'https://ror.org/02k98xb21 Kim Il-sung University 김일성종합대학'), (22192, 'https://ror.org/02kh2f959', 'en', 1, 'https://ror.org/02kh2f959 Marine Scotland'), (22193, 'https://ror.org/02kha8k84', 'es', 1, 'https://ror.org/02kha8k84 Universidad de la Sierra'), (22194, 'https://ror.org/02kkv7f68', 'en', 1, 'https://ror.org/02kkv7f68 Falmouth Community Hospital'), (22195, 'https://ror.org/02km87d05', 'no_lang_code', 1, 'https://ror.org/02km87d05 Wittmann (Austria)'), (22196, 'https://ror.org/02kpejc28', 'no_lang_code', 1, 'https://ror.org/02kpejc28 Siemens (Greece)'), (22197, 'https://ror.org/02kpg0b77', 'fr', 1, 'https://ror.org/02kpg0b77 Institut des Hautes Études Bancaires, Financières et Managériale'), (22198, 'https://ror.org/02kpy6370', 'es', 1, 'https://ror.org/02kpy6370 Universidad Alfred Nobel de Mexico'), (22199, 'https://ror.org/02kqgpw05', 'no_lang_code', 1, 'https://ror.org/02kqgpw05 Photonic Knowledge (Canada)'), (22200, 'https://ror.org/02krbtc48', 'no_lang_code', 1, 'https://ror.org/02krbtc48 Paradigm Pharmaceuticals (United States)'), (22201, 'https://ror.org/02kss3272', 'en', 1, 'https://ror.org/02kss3272 Newcastle Dental Hospital'), (22202, 'https://ror.org/02ktv4k43', 'no_lang_code', 1, 'https://ror.org/02ktv4k43 Pacific Insight Electronics (Canada)'), (22203, 'https://ror.org/02kv8bx48', 'en', 1, 'https://ror.org/02kv8bx48 American University of Nigeria'), (22204, 'https://ror.org/02kwxw490', 'no_lang_code', 1, 'https://ror.org/02kwxw490 Superform (United Kingdom)'), (22205, 'https://ror.org/02kx72w21', 'en', 1, 'https://ror.org/02kx72w21 University of Philosophical Research'), (22206, 'https://ror.org/02kzda898', 'no_lang_code', 1, 'https://ror.org/02kzda898 Videometer (Denmark)'), (22207, 'https://ror.org/02kzsfv42', 'en', 1, 'https://ror.org/02kzsfv42 Canada Council for the Arts Conseil des Arts du Canada'), (22208, 'https://ror.org/02m0mz421', 'en', 1, 'https://ror.org/02m0mz421 Children''s Society'), (22209, 'https://ror.org/02m4a5582', 'en', 1, 'https://ror.org/02m4a5582 Voronezh State Pedagogical University Воронежский государственный педагогический университет'), (22210, 'https://ror.org/02m4skm46', 'no_lang_code', 1, 'https://ror.org/02m4skm46 National Electric Vehicle Sweden (Sweden)'), (22211, 'https://ror.org/02m8e4g04', 'no_lang_code', 1, 'https://ror.org/02m8e4g04 RTZ Associates (United States)'); INSERT INTO `rors` VALUES (22212, 'https://ror.org/02m8qhj08', 'en', 1, 'https://ror.org/02m8qhj08 Anton de Kom Universiteit van Suriname Anton de Kom University of Suriname'), (22213, 'https://ror.org/02m9n8819', 'no_lang_code', 1, 'https://ror.org/02m9n8819 Polykemi (Sweden)'), (22214, 'https://ror.org/02mb9ff20', 'no_lang_code', 1, 'https://ror.org/02mb9ff20 QuSpin (United States)'), (22215, 'https://ror.org/02mczgx58', 'es', 1, 'https://ror.org/02mczgx58 Universidad Latina de México'), (22216, 'https://ror.org/02mdd6971', 'en', 1, 'https://ror.org/02mdd6971 Canadian Society of Church History Société Canadienne d’Histoire de l’Eglise'), (22217, 'https://ror.org/02mfqq252', 'no_lang_code', 1, 'https://ror.org/02mfqq252 Optivision (United States)'), (22218, 'https://ror.org/02mgaej21', 'en', 1, 'https://ror.org/02mgaej21 Guest Hospital'), (22219, 'https://ror.org/02mgbaa73', 'en', 1, 'https://ror.org/02mgbaa73 Students on Ice'), (22220, 'https://ror.org/02mhr7958', 'en', 1, 'https://ror.org/02mhr7958 Positive Impact'), (22221, 'https://ror.org/02mmf4x63', 'no_lang_code', 1, 'https://ror.org/02mmf4x63 Tetra Therapeutics (United States)'), (22222, 'https://ror.org/02mp26y45', 'no_lang_code', 1, 'https://ror.org/02mp26y45 Precical (Belgium)'), (22223, 'https://ror.org/02mp6w091', 'en', 1, 'https://ror.org/02mp6w091 NewOpera'), (22224, 'https://ror.org/02mpd6q30', 'no_lang_code', 1, 'https://ror.org/02mpd6q30 Velcura Therapeutics (United States)'), (22225, 'https://ror.org/02mr2gx69', 'en', 1, 'https://ror.org/02mr2gx69 Experimental Station for the Industry of the Essential Oils and Citrus Products Stazione Sperimentale per le Industrie delle Essenze e dei Derivati dagli Agrumi'), (22226, 'https://ror.org/02mrv4556', 'en', 1, 'https://ror.org/02mrv4556 Technopolis'), (22227, 'https://ror.org/02msjvh03', 'en', 1, 'https://ror.org/02msjvh03 Govind Ballabh Pant University of Agriculture and Technology गोविन्द बल्लभ पन्त कृषि एवं प्रौद्योगिकी विश्वविद्यालय'), (22228, 'https://ror.org/02mt4w922', 'no_lang_code', 1, 'https://ror.org/02mt4w922 Siemens (Netherlands)'), (22229, 'https://ror.org/02mvdhz93', 'no_lang_code', 1, 'https://ror.org/02mvdhz93 Aqua Metrology Systems (United States)'), (22230, 'https://ror.org/02mvn1p69', 'no_lang_code', 1, 'https://ror.org/02mvn1p69 Ivchenko Progress (Ukraine) Запорізьке машинобудівне конструкторське бюро'), (22231, 'https://ror.org/02mxrwx85', 'en', 1, 'https://ror.org/02mxrwx85 Pinal Hispanic Council'), (22232, 'https://ror.org/02mzn3c26', 'en', 1, 'https://ror.org/02mzn3c26 Holmevalley Memorial Hospital'), (22233, 'https://ror.org/02n094r49', 'en', 1, 'https://ror.org/02n094r49 Universidad del Museo Social Argentino University of Argentine Social Museum'), (22234, 'https://ror.org/02n0het18', 'en', 1, 'https://ror.org/02n0het18 Adventist University of Central Africa Universite Adventiste d''Afrique Central'), (22235, 'https://ror.org/02n4khb55', 'en', 1, 'https://ror.org/02n4khb55 Open University of Sudan جامعة السودان المفتوحة'), (22236, 'https://ror.org/02n6vx076', 'en', 1, 'https://ror.org/02n6vx076 BMI The Highfield Hospital'), (22237, 'https://ror.org/02n84y322', 'no_lang_code', 1, 'https://ror.org/02n84y322 OXGENE (United Kingdom)'), (22238, 'https://ror.org/02na5hw74', 'no_lang_code', 1, 'https://ror.org/02na5hw74 Sciences Computers Consultants (France)'), (22239, 'https://ror.org/02nanqt16', 'no_lang_code', 1, 'https://ror.org/02nanqt16 Planer (United Kingdom)'), (22240, 'https://ror.org/02nbhy609', 'en', 1, 'https://ror.org/02nbhy609 Monroe County Department of Public Health'), (22241, 'https://ror.org/02nbj1r55', 'fr', 1, 'https://ror.org/02nbj1r55 Université des Sciences et de la Technologie d''Oran Mohamed Boudiaf'), (22242, 'https://ror.org/02nc4gn73', 'da', 1, 'https://ror.org/02nc4gn73 Thomas B Thriges Fond'), (22243, 'https://ror.org/02ndvaj90', 'en', 1, 'https://ror.org/02ndvaj90 Westhaven Hospital'), (22244, 'https://ror.org/02nf34254', 'en', 1, 'https://ror.org/02nf34254 Queens University of Charlotte'), (22245, 'https://ror.org/02njbw696', 'es', 1, 'https://ror.org/02njbw696 Simón Bolívar University Universidad Simón Bolívar'), (22246, 'https://ror.org/02nm3nh05', 'fr', 1, 'https://ror.org/02nm3nh05 École des Hautes Études Commerciales Techniques et Informatiques'), (22247, 'https://ror.org/02nn67a65', 'es', 1, 'https://ror.org/02nn67a65 Universidad Tecnológica Indoamérica'), (22248, 'https://ror.org/02np1f094', 'es', 1, 'https://ror.org/02np1f094 Unión Americana de Educación Superior'), (22249, 'https://ror.org/02nq1ed11', 'es', 1, 'https://ror.org/02nq1ed11 Corporación Universitaria Reformada'), (22250, 'https://ror.org/02ns7ka34', 'en', 1, 'https://ror.org/02ns7ka34 Arab Studies and Research Institute معهد البحوث والدراسات العربية'), (22251, 'https://ror.org/02nv0qb16', 'en', 1, 'https://ror.org/02nv0qb16 Ohio Christian University'), (22252, 'https://ror.org/02nv68711', 'es', 1, 'https://ror.org/02nv68711 Universidad del Cine'), (22253, 'https://ror.org/02nwd3v30', 'no_lang_code', 1, 'https://ror.org/02nwd3v30 Groupe Lacroix (France)'), (22254, 'https://ror.org/02nwh8244', 'no_lang_code', 1, 'https://ror.org/02nwh8244 Federal Polytechnic Nekede'), (22255, 'https://ror.org/02nwsnt47', 'en', 1, 'https://ror.org/02nwsnt47 Council of Canadians with Disabilities'), (22256, 'https://ror.org/02nysre97', 'en', 1, 'https://ror.org/02nysre97 Olathe Public Schools'), (22257, 'https://ror.org/02nz5n617', 'en', 1, 'https://ror.org/02nz5n617 Oaklands Hospital'), (22258, 'https://ror.org/02nz79p21', 'no_lang_code', 1, 'https://ror.org/02nz79p21 Solagro'), (22259, 'https://ror.org/02p06pt44', 'es', 1, 'https://ror.org/02p06pt44 Universidad Mexicana'), (22260, 'https://ror.org/02p0xr181', 'es', 1, 'https://ror.org/02p0xr181 Corporación Universitaria Cenda'), (22261, 'https://ror.org/02p1s6n26', 'en', 1, 'https://ror.org/02p1s6n26 Spire Wellesley Hospital'), (22262, 'https://ror.org/02p2msn36', 'en', 1, 'https://ror.org/02p2msn36 Siena Heights University'), (22263, 'https://ror.org/02p303e31', 'es', 1, 'https://ror.org/02p303e31 Universidad Tecnológica Iberoamericana'), (22264, 'https://ror.org/02p48rd74', 'no_lang_code', 1, 'https://ror.org/02p48rd74 Research Detectors (United States)'), (22265, 'https://ror.org/02p4t4z91', 'no_lang_code', 1, 'https://ror.org/02p4t4z91 Ori Martin (Italy)'), (22266, 'https://ror.org/02p5b1x56', 'no_lang_code', 1, 'https://ror.org/02p5b1x56 Spirent Communications (United Kingdom)'), (22267, 'https://ror.org/02p6aa271', 'en', 1, 'https://ror.org/02p6aa271 North-Eastern Federal University Северо-Восточный федеральный университет'), (22268, 'https://ror.org/02p6gmn22', 'es', 1, 'https://ror.org/02p6gmn22 Universidad Anáhuac Puebla'), (22269, 'https://ror.org/02p928v94', 'en', 1, 'https://ror.org/02p928v94 Universidade da Integração Internacional da Lusofonia Afro-Brasileira University for International Integration of the Afro-Brazilian Lusophony'), (22270, 'https://ror.org/02p9tsq18', 'en', 1, 'https://ror.org/02p9tsq18 Nexus Research'), (22271, 'https://ror.org/02pbyff74', 'fr', 1, 'https://ror.org/02pbyff74 Institut Royal de Formation des Cadres de la Jeunesse et des Sports المعهد الملكي لتكوين أطر الشبيبة و الرياضة'), (22272, 'https://ror.org/02pc02b40', 'no_lang_code', 1, 'https://ror.org/02pc02b40 Saturn Bioponics (United Kingdom)'), (22273, 'https://ror.org/02pc4ce72', 'en', 1, 'https://ror.org/02pc4ce72 Richardson Hospital'), (22274, 'https://ror.org/02peb2h94', 'en', 1, 'https://ror.org/02peb2h94 Stockport Metropolitan Borough Council'), (22275, 'https://ror.org/02pfwd463', 'es', 1, 'https://ror.org/02pfwd463 Universidad Gestalt'), (22276, 'https://ror.org/02pfxyr52', 'no_lang_code', 1, 'https://ror.org/02pfxyr52 Sunfire (Germany)'), (22277, 'https://ror.org/02pfzx187', 'no_lang_code', 1, 'https://ror.org/02pfzx187 Norwegian Veterinary Centre for Contract Research and Commercial Services'), (22278, 'https://ror.org/02pg8gw87', 'no_lang_code', 1, 'https://ror.org/02pg8gw87 SPTS Technologies (United Kingdom)'), (22279, 'https://ror.org/02pgkhq67', 'es', 1, 'https://ror.org/02pgkhq67 Universidad del Altiplano'), (22280, 'https://ror.org/02pgzvy52', 'en', 1, 'https://ror.org/02pgzvy52 Westmorland General Hospital'), (22281, 'https://ror.org/02phxrh78', 'no_lang_code', 1, 'https://ror.org/02phxrh78 Samputensili (Italy)'), (22282, 'https://ror.org/02pj05f64', 'no_lang_code', 1, 'https://ror.org/02pj05f64 Etegent Technologies (United States)'), (22283, 'https://ror.org/02pj7we23', 'pt', 1, 'https://ror.org/02pj7we23 Centro Universitário Fundação Santo André'), (22284, 'https://ror.org/02pkcfj18', 'no_lang_code', 1, 'https://ror.org/02pkcfj18 Trivisio Prototyping (Germany)'), (22285, 'https://ror.org/02pn8ds72', 'no_lang_code', 1, 'https://ror.org/02pn8ds72 Wetlands Incubator (Belgium)'), (22286, 'https://ror.org/02pr9jr80', 'no_lang_code', 1, 'https://ror.org/02pr9jr80 Prosys (Germany)'), (22287, 'https://ror.org/02pse8162', 'en', 1, 'https://ror.org/02pse8162 RWI – Leibniz Institute for Economic Research RWI – Leibniz-Institut für Wirtschaftsforschung'), (22288, 'https://ror.org/02pt8pf90', 'en', 1, 'https://ror.org/02pt8pf90 Horncastle War Memorial Hospital'), (22289, 'https://ror.org/02pvy4b66', 'no_lang_code', 1, 'https://ror.org/02pvy4b66 TomTom (Germany)'), (22290, 'https://ror.org/02pygx129', 'pl', 1, 'https://ror.org/02pygx129 Urząd Miasta Krakowa'), (22291, 'https://ror.org/02pyw9g57', 'en', 1, 'https://ror.org/02pyw9g57 Higher Institute of Engineering المعهد العالي للهندسة'), (22292, 'https://ror.org/02pzx2c51', 'no_lang_code', 1, 'https://ror.org/02pzx2c51 OyaGen (United States)'), (22293, 'https://ror.org/02pzxyp49', 'es', 1, 'https://ror.org/02pzxyp49 Universidad Católica de Oriente'), (22294, 'https://ror.org/02q0kr716', 'en', 1, 'https://ror.org/02q0kr716 United Way of Yellowstone County'), (22295, 'https://ror.org/02q28q956', 'en', 1, 'https://ror.org/02q28q956 Chengdu Second People''s Hospital 成都市第二人民医院'), (22296, 'https://ror.org/02q2vkv24', 'en', 1, 'https://ror.org/02q2vkv24 Bodmin Hospital'), (22297, 'https://ror.org/02q3acz97', 'no_lang_code', 1, 'https://ror.org/02q3acz97 Materialise (Germany)'), (22298, 'https://ror.org/02q3wgj37', 'es', 1, 'https://ror.org/02q3wgj37 Instituto Barraquer de América'), (22299, 'https://ror.org/02q4bdb50', 'pt', 1, 'https://ror.org/02q4bdb50 Centro Regional Universitário de Espírito Santo do Pinhal'), (22300, 'https://ror.org/02q5k5n31', 'en', 1, 'https://ror.org/02q5k5n31 Colorado Women''s College'), (22301, 'https://ror.org/02q65bp28', 'no_lang_code', 1, 'https://ror.org/02q65bp28 Tordivel (Norway)'), (22302, 'https://ror.org/02q8ggc38', 'en', 1, 'https://ror.org/02q8ggc38 Transnational Family Research Institute'), (22303, 'https://ror.org/02qch8k63', 'en', 1, 'https://ror.org/02qch8k63 Briercrest College and Seminary'), (22304, 'https://ror.org/02qchka04', 'es', 1, 'https://ror.org/02qchka04 Instituto Universitario de Oaxaca'), (22305, 'https://ror.org/02qdw7f92', 'no_lang_code', 1, 'https://ror.org/02qdw7f92 Solari (Italy)'), (22306, 'https://ror.org/02qfb0f37', 'en', 1, 'https://ror.org/02qfb0f37 San Mateo County Human Services'), (22307, 'https://ror.org/02qgahb88', 'es', 1, 'https://ror.org/02qgahb88 Universidad Técnica de Manabí'), (22308, 'https://ror.org/02qjcp783', 'en', 1, 'https://ror.org/02qjcp783 Services, Industrial, Professional and Technical Union'), (22309, 'https://ror.org/02qmp6f83', 'en', 1, 'https://ror.org/02qmp6f83 Office of the Bronx District Attorney'), (22310, 'https://ror.org/02qn44j35', 'fr', 1, 'https://ror.org/02qn44j35 Université de Moundou'), (22311, 'https://ror.org/02qpg3d02', 'no_lang_code', 1, 'https://ror.org/02qpg3d02 Safran (Germany)'), (22312, 'https://ror.org/02qqh1v44', 'no_lang_code', 1, 'https://ror.org/02qqh1v44 OceanWaveS (Germany)'), (22313, 'https://ror.org/02qrvdj69', 'en', 1, 'https://ror.org/02qrvdj69 Chuo Kikuu cha Mzumbe Mzumbe University'), (22314, 'https://ror.org/02qy5zc16', 'en', 1, 'https://ror.org/02qy5zc16 Women''s Health In Women''s Hands'), (22315, 'https://ror.org/02qykes20', 'fr', 1, 'https://ror.org/02qykes20 Centre Hospitalier de Valence'), (22316, 'https://ror.org/02r084d93', 'fr', 1, 'https://ror.org/02r084d93 Centre Hospitalier Andrée Rosemon'), (22317, 'https://ror.org/02r1ykk72', 'no_lang_code', 1, 'https://ror.org/02r1ykk72 Mobilaps (United States)'), (22318, 'https://ror.org/02r34kc48', 'no_lang_code', 1, 'https://ror.org/02r34kc48 WheelRight (United Kingdom)'), (22319, 'https://ror.org/02r3wcw82', 'en', 1, 'https://ror.org/02r3wcw82 Columbia Southern University'), (22320, 'https://ror.org/02r42y861', 'no_lang_code', 1, 'https://ror.org/02r42y861 Monition (United Kingdom)'), (22321, 'https://ror.org/02r6k7132', 'no_lang_code', 1, 'https://ror.org/02r6k7132 Chiang Mai Rajabhat University มหาวิทยาลัยราชภัฏเชียงใหม่'), (22322, 'https://ror.org/02r6y1x03', 'no_lang_code', 1, 'https://ror.org/02r6y1x03 STC Group (Netherlands)'), (22323, 'https://ror.org/02r7t0d73', 'es', 1, 'https://ror.org/02r7t0d73 Universidad Autónoma Juan Misael Saracho'), (22324, 'https://ror.org/02r8frq60', 'en', 1, 'https://ror.org/02r8frq60 Bisei Astronomical Observatory'), (22325, 'https://ror.org/02r8zc629', 'en', 1, 'https://ror.org/02r8zc629 Market Drayton Cottage Hospital'), (22326, 'https://ror.org/02rabtj57', 'es', 1, 'https://ror.org/02rabtj57 Instituto Profesional de Chile'), (22327, 'https://ror.org/02rbkz523', 'en', 1, 'https://ror.org/02rbkz523 Yancheng First People''s Hospital 盐城市第一人民医院'), (22328, 'https://ror.org/02rbr5948', 'no_lang_code', 1, 'https://ror.org/02rbr5948 Ghana Christian University College'), (22329, 'https://ror.org/02rdhze40', 'en', 1, 'https://ror.org/02rdhze40 Middlesex Community College'), (22330, 'https://ror.org/02rgx8605', 'en', 1, 'https://ror.org/02rgx8605 Scottsdale Community College'), (22331, 'https://ror.org/02rh4fw73', 'en', 1, 'https://ror.org/02rh4fw73 University of Minnesota Rochester'), (22332, 'https://ror.org/02rj52618', 'no_lang_code', 1, 'https://ror.org/02rj52618 RheoSense (United States)'), (22333, 'https://ror.org/02rjekw63', 'fr', 1, 'https://ror.org/02rjekw63 Institut Supérieur des Sciences de l''Éducation de Guinée'), (22334, 'https://ror.org/02rna7j18', 'no_lang_code', 1, 'https://ror.org/02rna7j18 Abzena (United Kingdom)'), (22335, 'https://ror.org/02rp4gd98', 'es', 1, 'https://ror.org/02rp4gd98 Universidad Nacional de Ucayali'), (22336, 'https://ror.org/02rpp4n56', 'en', 1, 'https://ror.org/02rpp4n56 Science and Technology Interactive Center'), (22337, 'https://ror.org/02rq1qj48', 'fr', 1, 'https://ror.org/02rq1qj48 Institut National de la Jeunesse et des Sports'), (22338, 'https://ror.org/02rqc5533', 'en', 1, 'https://ror.org/02rqc5533 Nesta'), (22339, 'https://ror.org/02rrha849', 'pt', 1, 'https://ror.org/02rrha849 Universidade Santa Cecília'), (22340, 'https://ror.org/02rrq8748', 'no_lang_code', 1, 'https://ror.org/02rrq8748 Descartes (Belgium)'), (22341, 'https://ror.org/02rrrky22', 'no_lang_code', 1, 'https://ror.org/02rrrky22 Development Delivery International'), (22342, 'https://ror.org/02rs30x67', 'no_lang_code', 1, 'https://ror.org/02rs30x67 Melexis (Germany)'), (22343, 'https://ror.org/02rsx0d74', 'es', 1, 'https://ror.org/02rsx0d74 Universidad de Puebla'), (22344, 'https://ror.org/02rxdft45', 'en', 1, 'https://ror.org/02rxdft45 Water Authority of Jordan'), (22345, 'https://ror.org/02ry6ba16', 'en', 1, 'https://ror.org/02ry6ba16 Society for the Study of Architecture in Canada Société pour l''Étude de l''Architecture au Canada'), (22346, 'https://ror.org/02ryc4y44', 'en', 1, 'https://ror.org/02ryc4y44 East and North Hertfordshire NHS Trust'), (22347, 'https://ror.org/02rzbnj22', 'no_lang_code', 1, 'https://ror.org/02rzbnj22 Trusted Positioning (Canada)'), (22348, 'https://ror.org/02rzpp332', 'es', 1, 'https://ror.org/02rzpp332 Universidad Cristóbal Colón'), (22349, 'https://ror.org/02s12gd46', 'en', 1, 'https://ror.org/02s12gd46 Sjofartsverket Swedish Maritime Administration'), (22350, 'https://ror.org/02s1b7x83', 'en', 1, 'https://ror.org/02s1b7x83 Workington Community Hospital'), (22351, 'https://ror.org/02s2a9m37', 'en', 1, 'https://ror.org/02s2a9m37 Agricultural University of Havana'), (22352, 'https://ror.org/02s3p6s69', 'en', 1, 'https://ror.org/02s3p6s69 Projects in Motion'), (22353, 'https://ror.org/02s47bv30', 'no_lang_code', 1, 'https://ror.org/02s47bv30 Prosolia (United States)'), (22354, 'https://ror.org/02s93t850', 'es', 1, 'https://ror.org/02s93t850 Universidad Pontificia de México'), (22355, 'https://ror.org/02sca6s74', 'no_lang_code', 1, 'https://ror.org/02sca6s74 Tracasa (Spain)'), (22356, 'https://ror.org/02scrd410', 'no_lang_code', 1, 'https://ror.org/02scrd410 Techin (Poland)'), (22357, 'https://ror.org/02sd61b37', 'no_lang_code', 1, 'https://ror.org/02sd61b37 Yangon ENT Hospital ရန်ကုန် နား နှာခေါင်း လည်ချောင်း ဆေးရုံ'), (22358, 'https://ror.org/02se1sp19', 'en', 1, 'https://ror.org/02se1sp19 Harplands Hospital'), (22359, 'https://ror.org/02se5xj66', 'en', 1, 'https://ror.org/02se5xj66 National Medical Association'), (22360, 'https://ror.org/02sejv728', 'en', 1, 'https://ror.org/02sejv728 Chuo Kikuu cha Zanzibar Zanzibar University جامعة زنجبار'), (22361, 'https://ror.org/02sfdnr59', 'pt', 1, 'https://ror.org/02sfdnr59 Universidade São Marcos'), (22362, 'https://ror.org/02sghbs34', 'en', 1, 'https://ror.org/02sghbs34 University of Rio Grande and Rio Grande Community College'), (22363, 'https://ror.org/02sh10804', 'no_lang_code', 1, 'https://ror.org/02sh10804 Future Electronics (Netherlands)'), (22364, 'https://ror.org/02sh2xr17', 'no_lang_code', 1, 'https://ror.org/02sh2xr17 MIL Corporation (United States)'), (22365, 'https://ror.org/02shmve39', 'en', 1, 'https://ror.org/02shmve39 Mongolian University of Science and Technology Шинжлэх Ухаан Технологийн Их Сургууль'), (22366, 'https://ror.org/02sj6gg16', 'no_lang_code', 1, 'https://ror.org/02sj6gg16 Pharmaplant (Germany)'), (22367, 'https://ror.org/02sqp5835', 'es', 1, 'https://ror.org/02sqp5835 Universidad de los Hemisferios'), (22368, 'https://ror.org/02sr8z564', 'no_lang_code', 1, 'https://ror.org/02sr8z564 Northrop Grumman (Norway)'), (22369, 'https://ror.org/02st14b97', 'no_lang_code', 1, 'https://ror.org/02st14b97 Sokolovská Uhelná (Czechia)'), (22370, 'https://ror.org/02svrcw68', 'no_lang_code', 1, 'https://ror.org/02svrcw68 Micro Systems Engineering (Germany)'), (22371, 'https://ror.org/02sx8r245', 'en', 1, 'https://ror.org/02sx8r245 Southwold Hospital'), (22372, 'https://ror.org/02syy7986', 'en', 1, 'https://ror.org/02syy7986 Norwegian Water Resources and Energy Directorate'), (22373, 'https://ror.org/02szcd955', 'no_lang_code', 1, 'https://ror.org/02szcd955 Positive Action'), (22374, 'https://ror.org/02t055680', 'en', 1, 'https://ror.org/02t055680 Ahram Canadian University جامعة الأهرام الكندية'), (22375, 'https://ror.org/02t1zaz23', 'no_lang_code', 1, 'https://ror.org/02t1zaz23 Procarta Biosystems (United Kingdom)'), (22376, 'https://ror.org/02t22fn57', 'es', 1, 'https://ror.org/02t22fn57 Universidad Anglohispanomexicana'), (22377, 'https://ror.org/02t4nyn12', 'en', 1, 'https://ror.org/02t4nyn12 Aryabhatta Research Institute of Observational Sciences'), (22378, 'https://ror.org/02t51xq98', 'no_lang_code', 1, 'https://ror.org/02t51xq98 SoilVision Systems (Canada)'), (22379, 'https://ror.org/02t54e151', 'en', 1, 'https://ror.org/02t54e151 Icesi University Universidad Icesi'), (22380, 'https://ror.org/02t5bjk31', 'no_lang_code', 1, 'https://ror.org/02t5bjk31 Pulsotronic (Germany)'), (22381, 'https://ror.org/02t5kd339', 'en', 1, 'https://ror.org/02t5kd339 Ontario Aggregate Resources Corporation'), (22382, 'https://ror.org/02t80dd48', 'no_lang_code', 1, 'https://ror.org/02t80dd48 Teem Photonics (France)'), (22383, 'https://ror.org/02t8gc695', 'en', 1, 'https://ror.org/02t8gc695 Odyssey House'), (22384, 'https://ror.org/02t8vgv97', 'no_lang_code', 1, 'https://ror.org/02t8vgv97 Sony (Sweden)'), (22385, 'https://ror.org/02tdw9g37', 'no_lang_code', 1, 'https://ror.org/02tdw9g37 Release Mobile (United Kingdom)'), (22386, 'https://ror.org/02te4t940', 'en', 1, 'https://ror.org/02te4t940 Universidad del Claustro de Sor Juana University of the Cloister of Sor Juana'), (22387, 'https://ror.org/02tfgas26', 'no_lang_code', 1, 'https://ror.org/02tfgas26 Sèleco (Italy)'), (22388, 'https://ror.org/02tg03m61', 'no_lang_code', 1, 'https://ror.org/02tg03m61 Photon Design (United Kingdom)'), (22389, 'https://ror.org/02tg3d712', 'en', 1, 'https://ror.org/02tg3d712 Lambert Memorial Community Hospital'), (22390, 'https://ror.org/02tgqv590', 'en', 1, 'https://ror.org/02tgqv590 Regent University College of Science and Technology'), (22391, 'https://ror.org/02tk9ek40', 'en', 1, 'https://ror.org/02tk9ek40 Clitheroe Community Hospital'), (22392, 'https://ror.org/02tp9ep96', 'en', 1, 'https://ror.org/02tp9ep96 Statistical Office of the Republic of Slovenia'), (22393, 'https://ror.org/02tq8vz07', 'en', 1, 'https://ror.org/02tq8vz07 Quisqueya University Université Quisqueya'), (22394, 'https://ror.org/02trpe492', 'en', 1, 'https://ror.org/02trpe492 Bugema University'), (22395, 'https://ror.org/02tvd9h19', 'no_lang_code', 1, 'https://ror.org/02tvd9h19 Virtual Corporation (United States)'), (22396, 'https://ror.org/02tythz78', 'en', 1, 'https://ror.org/02tythz78 Pan-Atlantic University'), (22397, 'https://ror.org/02v042q73', 'en', 1, 'https://ror.org/02v042q73 Conservatorio del Tolima Conservatory of Tolima'), (22398, 'https://ror.org/02v8m8m62', 'fr', 1, 'https://ror.org/02v8m8m62 École Inter-États des Sciences et Médecine Vétérinaires de Dakar'), (22399, 'https://ror.org/02v92t976', 'fi', 1, 'https://ror.org/02v92t976 Päijät-Hämeen Keskussairaala'), (22400, 'https://ror.org/02v996210', 'no_lang_code', 1, 'https://ror.org/02v996210 NetUnion (Switzerland)'), (22401, 'https://ror.org/02vbc1t40', 'no_lang_code', 1, 'https://ror.org/02vbc1t40 Softing (Germany)'), (22402, 'https://ror.org/02vbm2f39', 'no_lang_code', 1, 'https://ror.org/02vbm2f39 Nanova Biomaterials (United States)'), (22403, 'https://ror.org/02vbtzd72', 'es', 1, 'https://ror.org/02vbtzd72 Universidad Santo Tomás'), (22404, 'https://ror.org/02vbxvt28', 'en', 1, 'https://ror.org/02vbxvt28 Swedish Institute of Assistive Technology'), (22405, 'https://ror.org/02vcffh37', 'en', 1, 'https://ror.org/02vcffh37 Sarah Bush Lincoln Health System'), (22406, 'https://ror.org/02vdg3j11', 'no_lang_code', 1, 'https://ror.org/02vdg3j11 Rational Biotechnology (United States)'), (22407, 'https://ror.org/02vg7rh06', 'es', 1, 'https://ror.org/02vg7rh06 Thomas More Universitas, Universidad Thomas More'), (22408, 'https://ror.org/02vh6gg23', 'en', 1, 'https://ror.org/02vh6gg23 Crawley Hospital'), (22409, 'https://ror.org/02vhqqh86', 'no_lang_code', 1, 'https://ror.org/02vhqqh86 Rio Tinto (United States)'), (22410, 'https://ror.org/02vj2b283', 'en', 1, 'https://ror.org/02vj2b283 Setting Priorities for Retirement Years Foundation'), (22411, 'https://ror.org/02vm0aw48', 'fr', 1, 'https://ror.org/02vm0aw48 Centre Hospitalier de Troyes'), (22412, 'https://ror.org/02vmcxs72', 'no_lang_code', 1, 'https://ror.org/02vmcxs72 Mulungushi University'), (22413, 'https://ror.org/02vmfn041', 'en', 1, 'https://ror.org/02vmfn041 Phoenix Programs'), (22414, 'https://ror.org/02vp0x259', 'en', 1, 'https://ror.org/02vp0x259 Association Canadienne d''Ethnologie et de Folklore Folklore Studies Association of Canada'), (22415, 'https://ror.org/02vpjdc07', 'en', 1, 'https://ror.org/02vpjdc07 Franklyn Community Hospital'), (22416, 'https://ror.org/02vsbhs07', 'no_lang_code', 1, 'https://ror.org/02vsbhs07 Planetek Hellas (Greece)'), (22417, 'https://ror.org/02vt0t860', 'no_lang_code', 1, 'https://ror.org/02vt0t860 In-Situ (United States)'), (22418, 'https://ror.org/02vtemz45', 'en', 1, 'https://ror.org/02vtemz45 Discovery Programme'), (22419, 'https://ror.org/02vttnw51', 'en', 1, 'https://ror.org/02vttnw51 Verification Research, Training and Information Centre'), (22420, 'https://ror.org/02vvsd246', 'no_lang_code', 1, 'https://ror.org/02vvsd246 Vorbeck (United States)'), (22421, 'https://ror.org/02vxbf684', 'en', 1, 'https://ror.org/02vxbf684 Winfield Hospital'), (22422, 'https://ror.org/02w1kdc51', 'en', 1, 'https://ror.org/02w1kdc51 University of Technology, Jamaica'), (22423, 'https://ror.org/02w4pz848', 'en', 1, 'https://ror.org/02w4pz848 Light University of Bujumbur Université lLumière de Bujumbura'), (22424, 'https://ror.org/02w7b8538', 'es', 1, 'https://ror.org/02w7b8538 Centro Universitario de Tenango del Valle'), (22425, 'https://ror.org/02w91w637', 'en', 1, 'https://ror.org/02w91w637 Newcastle upon Tyne Hospital'), (22426, 'https://ror.org/02wa2k617', 'no_lang_code', 1, 'https://ror.org/02wa2k617 Space Syntax (United Kingdom)'), (22427, 'https://ror.org/02wcat891', 'no_lang_code', 1, 'https://ror.org/02wcat891 MRC Holland (Netherlands)'), (22428, 'https://ror.org/02wdfve94', 'no_lang_code', 1, 'https://ror.org/02wdfve94 Stokast (Canada)'), (22429, 'https://ror.org/02wdrwh83', 'en', 1, 'https://ror.org/02wdrwh83 Space Telescope European Coordinating Facility'), (22430, 'https://ror.org/02wfc0z28', 'en', 1, 'https://ror.org/02wfc0z28 Shawnee Mission South High School'), (22431, 'https://ror.org/02wh0by57', 'no_lang_code', 1, 'https://ror.org/02wh0by57 Vybion (United States)'), (22432, 'https://ror.org/02wk2dc91', 'en', 1, 'https://ror.org/02wk2dc91 William Jessup University'), (22433, 'https://ror.org/02wmz0223', 'no_lang_code', 1, 'https://ror.org/02wmz0223 Micropore Technologies (United Kingdom)'), (22434, 'https://ror.org/02wmzx058', 'es', 1, 'https://ror.org/02wmzx058 Universidad José Vasconcelos de Oaxaca'), (22435, 'https://ror.org/02wnmt242', 'no_lang_code', 1, 'https://ror.org/02wnmt242 PhaseBio Pharmaceuticals (United States)'), (22436, 'https://ror.org/02wp8az94', 'no_lang_code', 1, 'https://ror.org/02wp8az94 HolidayCheck Group (Germany)'), (22437, 'https://ror.org/02wqh6z44', 'fr', 1, 'https://ror.org/02wqh6z44 Chateau Guiraud'), (22438, 'https://ror.org/02wr25f53', 'no_lang_code', 1, 'https://ror.org/02wr25f53 Unisense (Denmark)'), (22439, 'https://ror.org/02wtemq51', 'en', 1, 'https://ror.org/02wtemq51 Cumberland University'), (22440, 'https://ror.org/02wtt8e62', 'no_lang_code', 1, 'https://ror.org/02wtt8e62 OpTek Systems (United Kingdom)'), (22441, 'https://ror.org/02wxh6849', 'no_lang_code', 1, 'https://ror.org/02wxh6849 SQW Group (United Kingdom)'), (22442, 'https://ror.org/02wyktf69', 'en', 1, 'https://ror.org/02wyktf69 Mill View Hospital'), (22443, 'https://ror.org/02x14ne40', 'no_lang_code', 1, 'https://ror.org/02x14ne40 Optrak (United Kingdom)'), (22444, 'https://ror.org/02x1vjb06', 'en', 1, 'https://ror.org/02x1vjb06 Nakagawanosato Hospital for the Disabled'), (22445, 'https://ror.org/02x2yhv10', 'en', 1, 'https://ror.org/02x2yhv10 Shawnee Health Service and Development Corporation'), (22446, 'https://ror.org/02x5def49', 'en', 1, 'https://ror.org/02x5def49 Whitstable and Tankerton Hospital'), (22447, 'https://ror.org/02x62qd57', 'es', 1, 'https://ror.org/02x62qd57 Universidad Católica Santa María La Antigua'), (22448, 'https://ror.org/02x6tcp11', 'en', 1, 'https://ror.org/02x6tcp11 Bolivia Adventist University Universidad Adventista de Bolivia'), (22449, 'https://ror.org/02xbagc94', 'no_lang_code', 1, 'https://ror.org/02xbagc94 Yankee Environmental System (United States)'), (22450, 'https://ror.org/02xbmha33', 'en', 1, 'https://ror.org/02xbmha33 Montagu Hospital'), (22451, 'https://ror.org/02xd7yj05', 'no_lang_code', 1, 'https://ror.org/02xd7yj05 Yamaha (Netherlands)'), (22452, 'https://ror.org/02xex0f63', 'en', 1, 'https://ror.org/02xex0f63 Stroud Maternity Hospital'), (22453, 'https://ror.org/02xf01n45', 'en', 1, 'https://ror.org/02xf01n45 Palo Alto Institute'), (22454, 'https://ror.org/02xhybk62', 'en', 1, 'https://ror.org/02xhybk62 National AIDS Commission'), (22455, 'https://ror.org/02xjxgz53', 'en', 1, 'https://ror.org/02xjxgz53 Joetsu University of Education 上越教育大学'), (22456, 'https://ror.org/02xnefk61', 'en', 1, 'https://ror.org/02xnefk61 Ridge Lea Hospital'), (22457, 'https://ror.org/02xphqm22', 'en', 1, 'https://ror.org/02xphqm22 County Hospital'), (22458, 'https://ror.org/02xq7yj60', 'no_lang_code', 1, 'https://ror.org/02xq7yj60 Overspeed (Germany)'), (22459, 'https://ror.org/02xse0b92', 'en', 1, 'https://ror.org/02xse0b92 NIU Observatory'), (22460, 'https://ror.org/02xt2gf57', 'no_lang_code', 1, 'https://ror.org/02xt2gf57 Imamura Hospital 今村病院'), (22461, 'https://ror.org/02xt59385', 'fr', 1, 'https://ror.org/02xt59385 École Supérieure de Gestion et des Sciences de l''Informatique'), (22462, 'https://ror.org/02xtk7r80', 'en', 1, 'https://ror.org/02xtk7r80 New Horizons Community Service Board'), (22463, 'https://ror.org/02xtrpd94', 'no_lang_code', 1, 'https://ror.org/02xtrpd94 Seureco (France)'), (22464, 'https://ror.org/02xv0d283', 'en', 1, 'https://ror.org/02xv0d283 Essays on Canadian Writing'), (22465, 'https://ror.org/02xw8cw23', 'es', 1, 'https://ror.org/02xw8cw23 Universidad del Valle'), (22466, 'https://ror.org/02xxmeg14', 'en', 1, 'https://ror.org/02xxmeg14 MyFace'), (22467, 'https://ror.org/02xyh0e61', 'fr', 1, 'https://ror.org/02xyh0e61 École Africaine des Métiers de l''Architecture et de l''Urbanisme'), (22468, 'https://ror.org/02xz41712', 'en', 1, 'https://ror.org/02xz41712 Billedkunst Skolerne Det Kongelige Danske Kunstakademis Schools of Visual Arts, The Royal Danish Academy of Fine Arts'), (22469, 'https://ror.org/02xzjn598', 'en', 1, 'https://ror.org/02xzjn598 Regent College'), (22470, 'https://ror.org/02xzt0b24', 'no_lang_code', 1, 'https://ror.org/02xzt0b24 Yuzhnoye State Design Office (Ukraine) Державне конструкторське бюро «Південне» ім. М. К. Янгеля'), (22471, 'https://ror.org/02y28sc20', 'en', 1, 'https://ror.org/02y28sc20 Visva-Bharati University विश्व-भारती विश्वविद्यालय বিশ্বভারতী বিশ্ববিদ্যালয় ਵਿਸ਼ਵ ਭਾਰਤੀ ਯੂਨੀਵਰਸਿਟੀ വിശ്വഭാരതി സർ വ്വകലാശാല'), (22472, 'https://ror.org/02y2zxx30', 'en', 1, 'https://ror.org/02y2zxx30 Lizard Hollow Observatory'), (22473, 'https://ror.org/02y4de895', 'en', 1, 'https://ror.org/02y4de895 Methodist University of Angola Universidade Metodista de Angola'), (22474, 'https://ror.org/02y535c02', 'en', 1, 'https://ror.org/02y535c02 State College of Florida Manatee-Sarasota'), (22475, 'https://ror.org/02y600b55', 'no_lang_code', 1, 'https://ror.org/02y600b55 Microlab Devices (United Kingdom)'), (22476, 'https://ror.org/02y6w3696', 'en', 1, 'https://ror.org/02y6w3696 Norwegian Seafood Association'), (22477, 'https://ror.org/02y7rg150', 'pt', 1, 'https://ror.org/02y7rg150 Instituto Superior de Ciências e Tecnologia de Moçambique'), (22478, 'https://ror.org/02y7tka90', 'no_lang_code', 1, 'https://ror.org/02y7tka90 MicroDiscovery (Germany)'), (22479, 'https://ror.org/02y88x190', 'en', 1, 'https://ror.org/02y88x190 Museu Nacional de Arqueologia National Archaeology Museum'), (22480, 'https://ror.org/02y8qpa51', 'no_lang_code', 1, 'https://ror.org/02y8qpa51 JDA Software (Canada)'), (22481, 'https://ror.org/02yeqtv37', 'no_lang_code', 1, 'https://ror.org/02yeqtv37 Wärtsilä (Netherlands)'), (22482, 'https://ror.org/02ykdz073', 'en', 1, 'https://ror.org/02ykdz073 Kwame Nkrumah University'), (22483, 'https://ror.org/02yke5x89', 'es', 1, 'https://ror.org/02yke5x89 Universidad de la Empresa'), (22484, 'https://ror.org/02ync6318', 'en', 1, 'https://ror.org/02ync6318 The Beardwood Hospital'), (22485, 'https://ror.org/02yng3249', 'en', 1, 'https://ror.org/02yng3249 Inner Mongolia People''s Hospital 内蒙古自治区人民医院'), (22486, 'https://ror.org/02yq33n72', 'en', 1, 'https://ror.org/02yq33n72 Maidstone and Tunbridge Wells NHS Trust'), (22487, 'https://ror.org/02ys1m002', 'en', 1, 'https://ror.org/02ys1m002 Association for the Advancement of Scandinavian Studies in Canada l''Association pour l''avancement des études scandinaves au Canada'), (22488, 'https://ror.org/02yvak009', 'en', 1, 'https://ror.org/02yvak009 Holsworthy Community Hospital'), (22489, 'https://ror.org/02yy98a98', 'en', 1, 'https://ror.org/02yy98a98 Zero Carbon Hub'), (22490, 'https://ror.org/02yzpv617', 'no_lang_code', 1, 'https://ror.org/02yzpv617 Piramal (Canada)'), (22491, 'https://ror.org/02z0zz187', 'fr', 1, 'https://ror.org/02z0zz187 Institut Supérieur de comptabilité Audit et Finance'), (22492, 'https://ror.org/02z191186', 'es', 1, 'https://ror.org/02z191186 Universidad Tecnológica Americana'), (22493, 'https://ror.org/02z1yy887', 'no_lang_code', 1, 'https://ror.org/02z1yy887 Population and Social Policy Consultants'), (22494, 'https://ror.org/02z5k4q74', 'fr', 1, 'https://ror.org/02z5k4q74 Université Libre de Luozi'), (22495, 'https://ror.org/02z7t7h39', 'no_lang_code', 1, 'https://ror.org/02z7t7h39 Società Italiana Apparecchi Scientifici (Italy)'), (22496, 'https://ror.org/02za70122', 'no_lang_code', 1, 'https://ror.org/02za70122 Ruhrverband (Germany)'), (22497, 'https://ror.org/02za9ff59', 'en', 1, 'https://ror.org/02za9ff59 European Rail Research Institute'), (22498, 'https://ror.org/02zax3c17', 'en', 1, 'https://ror.org/02zax3c17 Jerusalem Institute for Israel Studies'), (22499, 'https://ror.org/02zb8tm77', 'en', 1, 'https://ror.org/02zb8tm77 Yosemite Community College District'), (22500, 'https://ror.org/02zjv1c92', 'no_lang_code', 1, 'https://ror.org/02zjv1c92 Sustainable Venture Development Partners (United Kingdom)'), (22501, 'https://ror.org/02zkjb195', 'es', 1, 'https://ror.org/02zkjb195 Universidad José María Vargas'), (22502, 'https://ror.org/02zkpaw44', 'en', 1, 'https://ror.org/02zkpaw44 Herbs for Horses'), (22503, 'https://ror.org/02zkph911', 'no_lang_code', 1, 'https://ror.org/02zkph911 AVL (France)'), (22504, 'https://ror.org/02zmc3h95', 'en', 1, 'https://ror.org/02zmc3h95 Public Health Foundation'), (22505, 'https://ror.org/02zmzxn38', 'en', 1, 'https://ror.org/02zmzxn38 Pennsylvania Institute of Technology'), (22506, 'https://ror.org/02znd6t60', 'en', 1, 'https://ror.org/02znd6t60 Canadian Psychological Association'), (22507, 'https://ror.org/02znknb21', 'no_lang_code', 1, 'https://ror.org/02znknb21 Prysmian Group (United Kingdom)'), (22508, 'https://ror.org/02zp2wx66', 'en', 1, 'https://ror.org/02zp2wx66 Schnörringen Telescope Science Institute'), (22509, 'https://ror.org/02zq48n91', 'en', 1, 'https://ror.org/02zq48n91 Hanzhong People''s Hospital 汉中市人民医院'), (22510, 'https://ror.org/02zqg7m89', 'fr', 1, 'https://ror.org/02zqg7m89 Centre Hospitalier de Béthune'), (22511, 'https://ror.org/02zrdtc90', 'en', 1, 'https://ror.org/02zrdtc90 McMaster Divinity College'), (22512, 'https://ror.org/02zrx8k78', 'no_lang_code', 1, 'https://ror.org/02zrx8k78 Resonon (United States)'), (22513, 'https://ror.org/02zw4ny56', 'no_lang_code', 1, 'https://ror.org/02zw4ny56 Vitamib (France)'), (22514, 'https://ror.org/02zy1d441', 'no_lang_code', 1, 'https://ror.org/02zy1d441 Sensap (Greece)'), (22515, 'https://ror.org/02zy3sy39', 'no_lang_code', 1, 'https://ror.org/02zy3sy39 Pacific Biomarkers (United States)'), (22516, 'https://ror.org/02zy8pf47', 'no_lang_code', 1, 'https://ror.org/02zy8pf47 TransÉnergie (France)'), (22517, 'https://ror.org/02zyq5q98', 'no_lang_code', 1, 'https://ror.org/02zyq5q98 Meyer Turku (Finland)'), (22518, 'https://ror.org/03001j263', 'es', 1, 'https://ror.org/03001j263 Universidad Continental de las Ciencias las Artes'), (22519, 'https://ror.org/0302q4d52', 'en', 1, 'https://ror.org/0302q4d52 Manila Observatory'), (22520, 'https://ror.org/0302zgk11', 'en', 1, 'https://ror.org/0302zgk11 Zubov State Oceanographic Institute Федеральное государственное бюджетное учреждение Государственный океанографический институт имени Н.Н.Зубова'), (22521, 'https://ror.org/0303yjn29', 'en', 1, 'https://ror.org/0303yjn29 Ukrainian scientific center of Ecology of Sea'), (22522, 'https://ror.org/0305nje64', 'pt', 1, 'https://ror.org/0305nje64 Universidade Salgado de Oliveira'), (22523, 'https://ror.org/0305q4m96', 'no_lang_code', 1, 'https://ror.org/0305q4m96 PostScriptum (Greece)'), (22524, 'https://ror.org/0305v8773', 'en', 1, 'https://ror.org/0305v8773 Stephens College'), (22525, 'https://ror.org/0306pcd50', 'fr', 1, 'https://ror.org/0306pcd50 Université Evangélique en Afrique'), (22526, 'https://ror.org/03098ta78', 'no_lang_code', 1, 'https://ror.org/03098ta78 Optical Fiber Solutions (Denmark)'), (22527, 'https://ror.org/030b93p62', 'es', 1, 'https://ror.org/030b93p62 Universidad Champagnat'), (22528, 'https://ror.org/030bs8t82', 'no_lang_code', 1, 'https://ror.org/030bs8t82 Zymera (United States)'), (22529, 'https://ror.org/030f3em06', 'no_lang_code', 1, 'https://ror.org/030f3em06 XData Corporation (United States)'), (22530, 'https://ror.org/030jtw105', 'es', 1, 'https://ror.org/030jtw105 Universidad Cuauhnáhuac'), (22531, 'https://ror.org/030ncfx10', 'es', 1, 'https://ror.org/030ncfx10 Universidad Metropolitana de Monterrey'), (22532, 'https://ror.org/030nfm877', 'no_lang_code', 1, 'https://ror.org/030nfm877 Saigata National Hospital 国立病院機構さいがた病院'), (22533, 'https://ror.org/030p4ph45', 'en', 1, 'https://ror.org/030p4ph45 Wotton Lawn Hospital'), (22534, 'https://ror.org/030pd1x82', 'de', 1, 'https://ror.org/030pd1x82 Kreiskliniken Reutlingen'), (22535, 'https://ror.org/030raqa76', 'no_lang_code', 1, 'https://ror.org/030raqa76 Stirling Cryogenics (Netherlands)'), (22536, 'https://ror.org/030rphv15', 'en', 1, 'https://ror.org/030rphv15 Virtual Dimension Center'), (22537, 'https://ror.org/030sq7c39', 'no_lang_code', 1, 'https://ror.org/030sq7c39 IMA (Italy)'), (22538, 'https://ror.org/030tm6614', 'no_lang_code', 1, 'https://ror.org/030tm6614 INES-Ruhengeri Institut d''Enseignement supérieur de Ruhengeri'), (22539, 'https://ror.org/030tx1703', 'no_lang_code', 1, 'https://ror.org/030tx1703 Tacchella Macchine (Italy)'), (22540, 'https://ror.org/030v7ct83', 'es', 1, 'https://ror.org/030v7ct83 Institución Universitaria Antonio José Camacho'), (22541, 'https://ror.org/030vkw561', 'es', 1, 'https://ror.org/030vkw561 Universidad Alejandro de Humboldt'), (22542, 'https://ror.org/030w7x329', 'es', 1, 'https://ror.org/030w7x329 Observatorio astronómico municipal de Murcia "La Murta"'), (22543, 'https://ror.org/030wrns14', 'no_lang_code', 1, 'https://ror.org/030wrns14 Northern Digital (Canada)'), (22544, 'https://ror.org/030xx9n34', 'en', 1, 'https://ror.org/030xx9n34 Mandalay University မန္တလေးတက္ကသိုလ်'), (22545, 'https://ror.org/030zrse19', 'en', 1, 'https://ror.org/030zrse19 New and Renewable Energy Authority'), (22546, 'https://ror.org/0311gd774', 'en', 1, 'https://ror.org/0311gd774 Research Institute of Industrial Economics'), (22547, 'https://ror.org/0311x3t35', 'no_lang_code', 1, 'https://ror.org/0311x3t35 REL (United States)'), (22548, 'https://ror.org/0314vzp76', 'en', 1, 'https://ror.org/0314vzp76 Orkney Fisheries Association'), (22549, 'https://ror.org/03154z139', 'no_lang_code', 1, 'https://ror.org/03154z139 Creation Technologies (United States)'), (22550, 'https://ror.org/031601h81', 'no_lang_code', 1, 'https://ror.org/031601h81 PricewaterhouseCoopers (Netherlands)'), (22551, 'https://ror.org/0317pbn61', 'en', 1, 'https://ror.org/0317pbn61 Minot Public Schools'), (22552, 'https://ror.org/031903y12', 'en', 1, 'https://ror.org/031903y12 Canadian Council on Social Development'), (22553, 'https://ror.org/0319ch597', 'no_lang_code', 1, 'https://ror.org/0319ch597 Floralis (France)'), (22554, 'https://ror.org/031dgzs07', 'no_lang_code', 1, 'https://ror.org/031dgzs07 Dogo Onsen Hospital 道後温泉病院'), (22555, 'https://ror.org/031gdw727', 'no_lang_code', 1, 'https://ror.org/031gdw727 SimulConsult'), (22556, 'https://ror.org/031h0qv85', 'es', 1, 'https://ror.org/031h0qv85 Universidad Nacional Experimental de las Artes'), (22557, 'https://ror.org/031j8q670', 'en', 1, 'https://ror.org/031j8q670 Rafael Urdaneta University Universidad Rafael Urdaneta'), (22558, 'https://ror.org/031jtdj18', 'no_lang_code', 1, 'https://ror.org/031jtdj18 Technologie Agentur Struktur Keramik (Germany)'), (22559, 'https://ror.org/031km1t38', 'no_lang_code', 1, 'https://ror.org/031km1t38 Software for Critical Systems (Spain)'), (22560, 'https://ror.org/031m3tz43', 'es', 1, 'https://ror.org/031m3tz43 Universidad Mesoamericana'), (22561, 'https://ror.org/031mc4w27', 'en', 1, 'https://ror.org/031mc4w27 Hinckley and District Hospital'), (22562, 'https://ror.org/031mcge81', 'en', 1, 'https://ror.org/031mcge81 Nunavik Regional Board of Health and Social Services Régie régionale de la santé et des services sociaux du Nunavik'), (22563, 'https://ror.org/031pdhx80', 'es', 1, 'https://ror.org/031pdhx80 Escuela Superior Politécnica Ecológica Amazónica'), (22564, 'https://ror.org/031ph8d53', 'en', 1, 'https://ror.org/031ph8d53 Hochschule Worms University of Applied Sciences Worms'), (22565, 'https://ror.org/031q3mt20', 'no_lang_code', 1, 'https://ror.org/031q3mt20 UbiVac (United States)'), (22566, 'https://ror.org/031qqmw72', 'no_lang_code', 1, 'https://ror.org/031qqmw72 SmileSonica (Canada)'), (22567, 'https://ror.org/031ra7072', 'fr', 1, 'https://ror.org/031ra7072 Universiapolis - Université Internationale d''Agadir'), (22568, 'https://ror.org/031rhf983', 'no_lang_code', 1, 'https://ror.org/031rhf983 Veeco (United Kingdom)'), (22569, 'https://ror.org/031swr525', 'en', 1, 'https://ror.org/031swr525 Mossley Hill Hospital'), (22570, 'https://ror.org/031tysd23', 'no_lang_code', 1, 'https://ror.org/031tysd23 Coherent (United States)'), (22571, 'https://ror.org/031vfrf75', 'es', 1, 'https://ror.org/031vfrf75 Universidad Nacional de Piura'), (22572, 'https://ror.org/031vt9q97', 'en', 1, 'https://ror.org/031vt9q97 Brønnøysund Register Centre'), (22573, 'https://ror.org/031xrtf85', 'no_lang_code', 1, 'https://ror.org/031xrtf85 PassivSystems (United Kingdom)'), (22574, 'https://ror.org/031y39h26', 'es', 1, 'https://ror.org/031y39h26 Universidad del Valle de Orizaba'), (22575, 'https://ror.org/031y8am81', 'en', 1, 'https://ror.org/031y8am81 Nanjing University of Finance and Economics 南京财经大学'), (22576, 'https://ror.org/0325v0r75', 'en', 1, 'https://ror.org/0325v0r75 Faversham Cottage Hospital'), (22577, 'https://ror.org/03275xe23', 'en', 1, 'https://ror.org/03275xe23 University of Nyala جامعة نيالا'), (22578, 'https://ror.org/032bb5546', 'en', 1, 'https://ror.org/032bb5546 Polis'), (22579, 'https://ror.org/032bg8m67', 'pt', 1, 'https://ror.org/032bg8m67 Centro Universitário da Cidade'), (22580, 'https://ror.org/032bjve71', 'en', 1, 'https://ror.org/032bjve71 Krasnoyarsk Regional Clinical Hospital Красноярская краевая клиническая больница'), (22581, 'https://ror.org/032cxyf89', 'no_lang_code', 1, 'https://ror.org/032cxyf89 Maniero Elettronica (Italy)'), (22582, 'https://ror.org/032e59714', 'en', 1, 'https://ror.org/032e59714 Olsztyn Planetarium and Astronomical Observatory Olsztyńskiego Planetarium i Obserwatorium Astronomicznego'), (22583, 'https://ror.org/032g46r36', 'en', 1, 'https://ror.org/032g46r36 Renal Research Institute'), (22584, 'https://ror.org/032h5dn41', 'no_lang_code', 1, 'https://ror.org/032h5dn41 Orthox (United Kingdom)'), (22585, 'https://ror.org/032j67572', 'no_lang_code', 1, 'https://ror.org/032j67572 Vossloh (Spain)'), (22586, 'https://ror.org/032kn8622', 'en', 1, 'https://ror.org/032kn8622 Colman Hospital'), (22587, 'https://ror.org/032qvyh31', 'en', 1, 'https://ror.org/032qvyh31 Goulandris Natural History Museum Μουσείο Γουλανδρή Φυσικής Ιστορίας'), (22588, 'https://ror.org/032tej786', 'es', 1, 'https://ror.org/032tej786 Centro Universitario Oparin'), (22589, 'https://ror.org/032tne230', 'en', 1, 'https://ror.org/032tne230 Society of Wetland Scientists'), (22590, 'https://ror.org/032wwjz85', 'no_lang_code', 1, 'https://ror.org/032wwjz85 TELINT RTD Consultancy Services (United Kingdom)'), (22591, 'https://ror.org/032ycrz75', 'no_lang_code', 1, 'https://ror.org/032ycrz75 WiCell'), (22592, 'https://ror.org/0331kj160', 'en', 1, 'https://ror.org/0331kj160 Pedagogical University Universidade Pedagógica'), (22593, 'https://ror.org/03323pz98', 'en', 1, 'https://ror.org/03323pz98 Hubei Provincial Women and Children''s Hospital 湖北省妇幼保健院'), (22594, 'https://ror.org/03339q147', 'en', 1, 'https://ror.org/03339q147 HÄRKÄMÄEN OBSERVATORIO Taurus Hill Observatory'), (22595, 'https://ror.org/0333kwv03', 'en', 1, 'https://ror.org/0333kwv03 Millom Hospital'), (22596, 'https://ror.org/0334dng85', 'no_lang_code', 1, 'https://ror.org/0334dng85 Agroknow (Greece)'), (22597, 'https://ror.org/0334n7472', 'nl', 1, 'https://ror.org/0334n7472 Stichting Ecobaby'), (22598, 'https://ror.org/0335q7x18', 'es', 1, 'https://ror.org/0335q7x18 Universidad José Cecilio del Valle'), (22599, 'https://ror.org/0335wvc55', 'no_lang_code', 1, 'https://ror.org/0335wvc55 Teledyne Technologies (Canada)'), (22600, 'https://ror.org/03374t109', 'en', 1, 'https://ror.org/03374t109 Canadian International College الكلية الكندية الدولية'), (22601, 'https://ror.org/0338q3942', 'en', 1, 'https://ror.org/0338q3942 Akhbar El Yom Academy اكاديمية اخبار اليوم'), (22602, 'https://ror.org/033a14h05', 'no_lang_code', 1, 'https://ror.org/033a14h05 Ball (Germany)'), (22603, 'https://ror.org/033dcc869', 'no_lang_code', 1, 'https://ror.org/033dcc869 Nano Liquid Devices (United States)'), (22604, 'https://ror.org/033fgr632', 'es', 1, 'https://ror.org/033fgr632 Universidad de Ciencias Medicas'), (22605, 'https://ror.org/033g2f326', 'en', 1, 'https://ror.org/033g2f326 Pima County Juvenile Court'), (22606, 'https://ror.org/033hgw744', 'en', 1, 'https://ror.org/033hgw744 Hebei Eye Hospital 河北省眼科医院'), (22607, 'https://ror.org/033tvp994', 'en', 1, 'https://ror.org/033tvp994 Kenya Methodist University'), (22608, 'https://ror.org/033vzfc66', 'fr', 1, 'https://ror.org/033vzfc66 École Normale Supérieure de Nouakchott'), (22609, 'https://ror.org/033wn7604', 'en', 1, 'https://ror.org/033wn7604 Babington Hospital'), (22610, 'https://ror.org/033xhzd30', 'en', 1, 'https://ror.org/033xhzd30 Tunisia Private University Université libre de tunis'), (22611, 'https://ror.org/033z3xa85', 'en', 1, 'https://ror.org/033z3xa85 Invest Canada'), (22612, 'https://ror.org/033z99h42', 'en', 1, 'https://ror.org/033z99h42 Montefiore Hospital'), (22613, 'https://ror.org/0340p7w89', 'en', 1, 'https://ror.org/0340p7w89 Crowborough War Memorial Hospital'), (22614, 'https://ror.org/0343mqp27', 'en', 1, 'https://ror.org/0343mqp27 The Portland Hospital'), (22615, 'https://ror.org/03444yt49', 'en', 1, 'https://ror.org/03444yt49 Blackpool Teaching Hospitals NHS Foundation Trust'), (22616, 'https://ror.org/0344tkb11', 'no_lang_code', 1, 'https://ror.org/0344tkb11 Los Alamos Technical Associates (United States)'), (22617, 'https://ror.org/0345azg35', 'no_lang_code', 1, 'https://ror.org/0345azg35 Entellexi (Ireland)'), (22618, 'https://ror.org/0345me483', 'no_lang_code', 1, 'https://ror.org/0345me483 Origo (Iceland)'), (22619, 'https://ror.org/03463y591', 'es', 1, 'https://ror.org/03463y591 Instituto Gamma'), (22620, 'https://ror.org/03477ff34', 'en', 1, 'https://ror.org/03477ff34 Drug-Free NC'), (22621, 'https://ror.org/0347vza26', 'en', 1, 'https://ror.org/0347vza26 Association Canadienne d''Etudes Environnementales Environmental Studies Association of Canada'), (22622, 'https://ror.org/0348e5q84', 'en', 1, 'https://ror.org/0348e5q84 Society of Indian Automobile Manufacturers'), (22623, 'https://ror.org/034dk5y08', 'en', 1, 'https://ror.org/034dk5y08 Ocean Discovery Institute'), (22624, 'https://ror.org/034frgp20', 'no_lang_code', 1, 'https://ror.org/034frgp20 TE Connectivity (United States)'), (22625, 'https://ror.org/034fwy907', 'no_lang_code', 1, 'https://ror.org/034fwy907 Mountain View Clinical Research'), (22626, 'https://ror.org/034g8wg77', 'no_lang_code', 1, 'https://ror.org/034g8wg77 Vandurit (Italy)'), (22627, 'https://ror.org/034hr8t11', 'no_lang_code', 1, 'https://ror.org/034hr8t11 SecurityMatters (Netherlands)'), (22628, 'https://ror.org/034j4d090', 'no_lang_code', 1, 'https://ror.org/034j4d090 Sentinel Oncology (United Kingdom)'), (22629, 'https://ror.org/034kn0n30', 'no_lang_code', 1, 'https://ror.org/034kn0n30 Phio Pharmaceuticals (United States)'), (22630, 'https://ror.org/034msqq35', 'fr', 1, 'https://ror.org/034msqq35 Université Sainte-Anne'), (22631, 'https://ror.org/034mv9n91', 'en', 1, 'https://ror.org/034mv9n91 National Health Information Center Národné Centrum Zdravotníckych Informácií'), (22632, 'https://ror.org/034p8wt80', 'no_lang_code', 1, 'https://ror.org/034p8wt80 Industrial Solar (Germany)'), (22633, 'https://ror.org/034pc0d25', 'no_lang_code', 1, 'https://ror.org/034pc0d25 Versarien Technologies (United Kingdom)'), (22634, 'https://ror.org/034pxmg95', 'no_lang_code', 1, 'https://ror.org/034pxmg95 Silanis Technology (Canada)'), (22635, 'https://ror.org/034sakr12', 'es', 1, 'https://ror.org/034sakr12 Universidad Anahuac Oaxaca'), (22636, 'https://ror.org/034taa614', 'no_lang_code', 1, 'https://ror.org/034taa614 MetaSensing (Netherlands)'), (22637, 'https://ror.org/034vsyd62', 'it', 1, 'https://ror.org/034vsyd62 Ospedale del Tigullio, Presidio Ospedaliero'), (22638, 'https://ror.org/034zkkc78', 'no_lang_code', 1, 'https://ror.org/034zkkc78 Teikyo Heisei University 帝京平成大学'), (22639, 'https://ror.org/034zz5290', 'no_lang_code', 1, 'https://ror.org/034zz5290 Perseus (Belgium)'), (22640, 'https://ror.org/0350h3282', 'es', 1, 'https://ror.org/0350h3282 Universidad del Norte'), (22641, 'https://ror.org/0351rxv20', 'en', 1, 'https://ror.org/0351rxv20 Universidad de Ciencias Comerciales University of Commercial Sciences'), (22642, 'https://ror.org/0352jg241', 'es', 1, 'https://ror.org/0352jg241 Corporación Universitaria Empresarial de Salamanca'); INSERT INTO `rors` VALUES (22643, 'https://ror.org/0358d0w14', 'en', 1, 'https://ror.org/0358d0w14 Antioch University Santa Barbara'), (22644, 'https://ror.org/035a99w03', 'fr', 1, 'https://ror.org/035a99w03 École Nationale d''Administration et de Magistrature'), (22645, 'https://ror.org/035bfyh12', 'en', 1, 'https://ror.org/035bfyh12 Canadian Association for Business Economics'), (22646, 'https://ror.org/035cxwv94', 'en', 1, 'https://ror.org/035cxwv94 South Side Help Center'), (22647, 'https://ror.org/035cyhw15', 'en', 1, 'https://ror.org/035cyhw15 Changchun University of Chinese Medicine'), (22648, 'https://ror.org/035e3w906', 'no_lang_code', 1, 'https://ror.org/035e3w906 Mapper Lithography (Netherlands)'), (22649, 'https://ror.org/035ennw33', 'no_lang_code', 1, 'https://ror.org/035ennw33 Vanchem Performance Chemicals (Canada)'), (22650, 'https://ror.org/035hn9w86', 'en', 1, 'https://ror.org/035hn9w86 Canadian Society for the Study of Higher Education'), (22651, 'https://ror.org/035jyty51', 'en', 1, 'https://ror.org/035jyty51 Moscow State University of Geodesy and Cartography Моско́вский госуда́рственный университе́т геоде́зии и картогра́фии'), (22652, 'https://ror.org/035mpnm25', 'pt', 1, 'https://ror.org/035mpnm25 Universidade Metropolitana de Santos'), (22653, 'https://ror.org/035pp4j25', 'fr', 1, 'https://ror.org/035pp4j25 École Normale Supérieure de l''Enseignement Technique de Mohammedia'), (22654, 'https://ror.org/035r6p857', 'en', 1, 'https://ror.org/035r6p857 Rhode Island League of Cities and Towns'), (22655, 'https://ror.org/035r9vd46', 'en', 1, 'https://ror.org/035r9vd46 Ospidéal Naomh Fionnbarra St. Finbarr''s Hospital'), (22656, 'https://ror.org/035rgqg63', 'fr', 1, 'https://ror.org/035rgqg63 Institut National Supérieur des Sciences et Techniques d''Abéché'), (22657, 'https://ror.org/035s9ab89', 'en', 1, 'https://ror.org/035s9ab89 Canadiana.org'), (22658, 'https://ror.org/035t09566', 'en', 1, 'https://ror.org/035t09566 Universidad del Turismo University of Tourism'), (22659, 'https://ror.org/035tcgz88', 'es', 1, 'https://ror.org/035tcgz88 Universidad Marista'), (22660, 'https://ror.org/035vgnr05', 'no_lang_code', 1, 'https://ror.org/035vgnr05 Nexcis (France)'), (22661, 'https://ror.org/035xbae69', 'en', 1, 'https://ror.org/035xbae69 Lymington New Forest Hospital'), (22662, 'https://ror.org/035zn2q74', 'en', 1, 'https://ror.org/035zn2q74 Pir Mehr Ali Shah Arid Agriculture University پیر مہر علی شاہ بارانی یونیورسٹی'), (22663, 'https://ror.org/03618vx64', 'pt', 1, 'https://ror.org/03618vx64 Centro Universitário Serra dos Órgãos'), (22664, 'https://ror.org/0364c8r59', 'no_lang_code', 1, 'https://ror.org/0364c8r59 Chubu Gakuin University 中部学院大学'), (22665, 'https://ror.org/03673ew24', 'lv', 1, 'https://ror.org/03673ew24 Tehnoloģiju Attīstības Forums'), (22666, 'https://ror.org/0367eqd42', 'es', 1, 'https://ror.org/0367eqd42 Instituto Centroamericano de Administración Pública'), (22667, 'https://ror.org/0368bwa14', 'en', 1, 'https://ror.org/0368bwa14 West Lane Hospital'), (22668, 'https://ror.org/03693e022', 'es', 1, 'https://ror.org/03693e022 Universidad Iberoamericana del Ecuador'), (22669, 'https://ror.org/036b2ns30', 'es', 1, 'https://ror.org/036b2ns30 Catholic University of Bolivia Universidad Católica Bolivia San Pablo'), (22670, 'https://ror.org/036bprp03', 'en', 1, 'https://ror.org/036bprp03 Ridgeview'), (22671, 'https://ror.org/036dhjm48', 'no_lang_code', 1, 'https://ror.org/036dhjm48 Pars Makina (Turkey)'), (22672, 'https://ror.org/036dpa939', 'en', 1, 'https://ror.org/036dpa939 Dawlish Community Hospital'), (22673, 'https://ror.org/036f1as09', 'es', 1, 'https://ror.org/036f1as09 Universidad Evangélica Boliviana'), (22674, 'https://ror.org/036gt0m92', 'en', 1, 'https://ror.org/036gt0m92 Jean Piaget University of Cape Verde Universidade Jean Piaget de Cabo Verde'), (22675, 'https://ror.org/036h2g521', 'no_lang_code', 1, 'https://ror.org/036h2g521 Tony Gee and Partners'), (22676, 'https://ror.org/036j17m86', 'no_lang_code', 1, 'https://ror.org/036j17m86 Soft dB (Canada)'), (22677, 'https://ror.org/036jygv32', 'en', 1, 'https://ror.org/036jygv32 Supreme Council of Antiquities'), (22678, 'https://ror.org/036m3h813', 'en', 1, 'https://ror.org/036m3h813 University of Ngozi Université de Ngozi'), (22679, 'https://ror.org/036nzz613', 'en', 1, 'https://ror.org/036nzz613 Places For People'), (22680, 'https://ror.org/036p7xd52', 'en', 1, 'https://ror.org/036p7xd52 West Berkshire Community Hospital'), (22681, 'https://ror.org/036qcnh52', 'en', 1, 'https://ror.org/036qcnh52 Education Northwest'), (22682, 'https://ror.org/036t2wx59', 'it', 1, 'https://ror.org/036t2wx59 Osservatorio Astronomico di Monte Agliale'), (22683, 'https://ror.org/036tx2n48', 'en', 1, 'https://ror.org/036tx2n48 Edenbridge and District War Memorial Hospital'), (22684, 'https://ror.org/036x6w630', 'en', 1, 'https://ror.org/036x6w630 Shri Mata Vaishno Devi University श्री माता वैष्णो देवी विश्वविद्यालय'), (22685, 'https://ror.org/036yfjc53', 'en', 1, 'https://ror.org/036yfjc53 Nassau Alcohol Crime Drug Abatement Coalition'), (22686, 'https://ror.org/036z4j470', 'no_lang_code', 1, 'https://ror.org/036z4j470 Systems, Applications & Products in Data Processing (Switzerland)'), (22687, 'https://ror.org/0370r0855', 'en', 1, 'https://ror.org/0370r0855 Prevention Links'), (22688, 'https://ror.org/0371t1780', 'es', 1, 'https://ror.org/0371t1780 Universidad Nacional de Itapúa'), (22689, 'https://ror.org/0372scc98', 'no_lang_code', 1, 'https://ror.org/0372scc98 Supply Network Shannon (Ireland)'), (22690, 'https://ror.org/0372w8x42', 'en', 1, 'https://ror.org/0372w8x42 Bideford Medical Centre'), (22691, 'https://ror.org/03758j340', 'es', 1, 'https://ror.org/03758j340 Universidad Privada Boliviana'), (22692, 'https://ror.org/0376t7t08', 'sv', 1, 'https://ror.org/0376t7t08 Södertälje Hospital Södertälje Sjukhus'), (22693, 'https://ror.org/03774pf85', 'en', 1, 'https://ror.org/03774pf85 Fareham Community Hospital'), (22694, 'https://ror.org/0377t1328', 'en', 1, 'https://ror.org/0377t1328 European Southern Observatory'), (22695, 'https://ror.org/03784bx86', 'en', 1, 'https://ror.org/03784bx86 Zhuhai Hospital of Integrated Traditional Chinese and Western Medicine 珠海市第二人民医院'), (22696, 'https://ror.org/03791dn70', 'en', 1, 'https://ror.org/03791dn70 Regional Maritime University'), (22697, 'https://ror.org/0379k6g72', 'en', 1, 'https://ror.org/0379k6g72 Avon and Wiltshire Mental Health Partnership NHS Trust'), (22698, 'https://ror.org/037ampg77', 'en', 1, 'https://ror.org/037ampg77 Office of Science & Technology Austria'), (22699, 'https://ror.org/037bdd431', 'en', 1, 'https://ror.org/037bdd431 Arab Open University الجامعة العربية المفتوحة'), (22700, 'https://ror.org/037bs9x45', 'no_lang_code', 1, 'https://ror.org/037bs9x45 Sivers IMA (Sweden)'), (22701, 'https://ror.org/037f2xv36', 'en', 1, 'https://ror.org/037f2xv36 Buckinghamshire Healthcare NHS Trust'), (22702, 'https://ror.org/037fxwm47', 'no_lang_code', 1, 'https://ror.org/037fxwm47 Iron Mountain (United States)'), (22703, 'https://ror.org/037fz4341', 'en', 1, 'https://ror.org/037fz4341 Moseley Hall Hospital'), (22704, 'https://ror.org/037h6n733', 'es', 1, 'https://ror.org/037h6n733 Corporación Universitaria Regional del Caribe'), (22705, 'https://ror.org/037hxym60', 'de', 1, 'https://ror.org/037hxym60 Evangelisches Krankenhaus Bethesda Mönchengladbach'), (22706, 'https://ror.org/037k3aw68', 'es', 1, 'https://ror.org/037k3aw68 Universidad Internacional de las Américas'), (22707, 'https://ror.org/037ksca52', 'no_lang_code', 1, 'https://ror.org/037ksca52 PerkinElmer (Finland)'), (22708, 'https://ror.org/037mdcp74', 'no_lang_code', 1, 'https://ror.org/037mdcp74 NIS (United Kingdom)'), (22709, 'https://ror.org/037mvh302', 'en', 1, 'https://ror.org/037mvh302 Canadian Association for the Study of Adult Education'), (22710, 'https://ror.org/037p78440', 'no_lang_code', 1, 'https://ror.org/037p78440 Rups Consultancy and Project Management'), (22711, 'https://ror.org/037pkxm09', 'en', 1, 'https://ror.org/037pkxm09 Kyungnam University 경남대학교'), (22712, 'https://ror.org/037xpb040', 'en', 1, 'https://ror.org/037xpb040 Sanford Medical Center'), (22713, 'https://ror.org/037y00t77', 'en', 1, 'https://ror.org/037y00t77 Milton Keynes Council'), (22714, 'https://ror.org/037ya9w12', 'hu', 1, 'https://ror.org/037ya9w12 Állattenyésztési és Takarmányozási Kutatóintézet'), (22715, 'https://ror.org/0381mdg49', 'no_lang_code', 1, 'https://ror.org/0381mdg49 XiO Photonics (Netherlands)'), (22716, 'https://ror.org/03836f632', 'pt', 1, 'https://ror.org/03836f632 Centro Universitário do Planalto de Araxá'), (22717, 'https://ror.org/0384gj524', 'no_lang_code', 1, 'https://ror.org/0384gj524 Diazyme (United States)'), (22718, 'https://ror.org/0384p7414', 'es', 1, 'https://ror.org/0384p7414 Instituto Universitario de la Policía Federal Argentina'), (22719, 'https://ror.org/0385et328', 'no_lang_code', 1, 'https://ror.org/0385et328 R2M Solution (Italy)'), (22720, 'https://ror.org/03862pz95', 'no_lang_code', 1, 'https://ror.org/03862pz95 Trellis Bioscience (United States)'), (22721, 'https://ror.org/038724806', 'en', 1, 'https://ror.org/038724806 University of Yangon ရန်ကုန်တက္ကသိုလ်'), (22722, 'https://ror.org/0387p5v08', 'en', 1, 'https://ror.org/0387p5v08 Research Association for Tunnels and Transport Facilities Studiengesellschaft für Tunnel und Verkehrsanlagen'), (22723, 'https://ror.org/03891kb88', 'en', 1, 'https://ror.org/03891kb88 Tanzania Youth Alliance'), (22724, 'https://ror.org/038ajm817', 'fr', 1, 'https://ror.org/038ajm817 Université Arabe des Sciences'), (22725, 'https://ror.org/038bgqv50', 'es', 1, 'https://ror.org/038bgqv50 Universidad Laica Vicente Rocafuerte de Guayaquil'), (22726, 'https://ror.org/038cq1h45', 'en', 1, 'https://ror.org/038cq1h45 Khartoum International Institute for Arabic Languague معهد الخرطوم الدولي للغة العربية'), (22727, 'https://ror.org/038d7xb21', 'es', 1, 'https://ror.org/038d7xb21 Universidad ICEL'), (22728, 'https://ror.org/038ddjp72', 'en', 1, 'https://ror.org/038ddjp72 State University of Vale do Acaraú Universidade Estadual Vale do Acaraú'), (22729, 'https://ror.org/038h1j843', 'no_lang_code', 1, 'https://ror.org/038h1j843 SGG (Italy)'), (22730, 'https://ror.org/038j0b276', 'es', 1, 'https://ror.org/038j0b276 Universidad Adventista de Chile'), (22731, 'https://ror.org/038jdep47', 'en', 1, 'https://ror.org/038jdep47 Kyushu Nutrition Welfare University 九州栄養福祉大学'), (22732, 'https://ror.org/038k3z155', 'no_lang_code', 1, 'https://ror.org/038k3z155 RDM Group (United Kingdom)'), (22733, 'https://ror.org/038m8ky73', 'no_lang_code', 1, 'https://ror.org/038m8ky73 Promau Engineering (Italy)'), (22734, 'https://ror.org/038n50j48', 'en', 1, 'https://ror.org/038n50j48 Altan Observatory'), (22735, 'https://ror.org/038n73266', 'en', 1, 'https://ror.org/038n73266 St Michael''s Hospital'), (22736, 'https://ror.org/038p55355', 'de', 1, 'https://ror.org/038p55355 Altonaer Kinderkrankenhaus'), (22737, 'https://ror.org/038q56410', 'fr', 1, 'https://ror.org/038q56410 Société de Protection des Forêts contre les Insectes et Maladies'), (22738, 'https://ror.org/038qg8k28', 'no_lang_code', 1, 'https://ror.org/038qg8k28 Prologia (France)'), (22739, 'https://ror.org/038r0hg73', 'en', 1, 'https://ror.org/038r0hg73 Environmental and Sustainable Construction Association'), (22740, 'https://ror.org/038s37067', 'pt', 1, 'https://ror.org/038s37067 Museu de Arte Pré-Histórica de Mação'), (22741, 'https://ror.org/038s91v75', 'en', 1, 'https://ror.org/038s91v75 L''Université du Maine à Fort Kent University of Maine at Fort Kent'), (22742, 'https://ror.org/038t6d126', 'es', 1, 'https://ror.org/038t6d126 Instituto Universitario Aeronáutico'), (22743, 'https://ror.org/038tfyw56', 'no_lang_code', 1, 'https://ror.org/038tfyw56 Sequoyah (Belgium)'), (22744, 'https://ror.org/038thw008', 'en', 1, 'https://ror.org/038thw008 Fujian Provincial People''s Hospital 福建省人民医院'), (22745, 'https://ror.org/038tkhb28', 'no_lang_code', 1, 'https://ror.org/038tkhb28 MicronOptics (United States)'), (22746, 'https://ror.org/038zxea36', 'en', 1, 'https://ror.org/038zxea36 Chelsea and Westminster Hospital'), (22747, 'https://ror.org/0391kcn80', 'no_lang_code', 1, 'https://ror.org/0391kcn80 Zentrum für Rationelle Energieanwendung und Umwelt (Germany)'), (22748, 'https://ror.org/039207457', 'es', 1, 'https://ror.org/039207457 Centro Universitario Hispano Mexicano'), (22749, 'https://ror.org/0392yzq14', 'no_lang_code', 1, 'https://ror.org/0392yzq14 Inanna Publications and Education (Canada)'), (22750, 'https://ror.org/0393pnh14', 'en', 1, 'https://ror.org/0393pnh14 Skyline High School'), (22751, 'https://ror.org/0393z2b10', 'en', 1, 'https://ror.org/0393z2b10 Institute of Fisheries and Aquaculture'), (22752, 'https://ror.org/039401462', 'en', 1, 'https://ror.org/039401462 Yuxian People''s Hospital 盂县人民医院'), (22753, 'https://ror.org/0394e4913', 'no_lang_code', 1, 'https://ror.org/0394e4913 Silicon Radar (Germany)'), (22754, 'https://ror.org/03951zg45', 'es', 1, 'https://ror.org/03951zg45 Universidad Nacional Experimental Simón Rodríguez'), (22755, 'https://ror.org/0395ge265', 'en', 1, 'https://ror.org/0395ge265 Weybridge Community Hospital'), (22756, 'https://ror.org/0395v5z30', 'en', 1, 'https://ror.org/0395v5z30 Austrian Institute of Spatial Planning'), (22757, 'https://ror.org/0396gjt51', 'no_lang_code', 1, 'https://ror.org/0396gjt51 Volterra (United Kingdom)'), (22758, 'https://ror.org/03979gq82', 'es', 1, 'https://ror.org/03979gq82 Universidad Fundepos'), (22759, 'https://ror.org/03984t928', 'en', 1, 'https://ror.org/03984t928 Science Health Allied Research Education'), (22760, 'https://ror.org/0398jd975', 'en', 1, 'https://ror.org/0398jd975 IMM Graduate School of Marketing'), (22761, 'https://ror.org/0399cww89', 'no_lang_code', 1, 'https://ror.org/0399cww89 Toppan (United Kingdom)'), (22762, 'https://ror.org/0399msg87', 'no_lang_code', 1, 'https://ror.org/0399msg87 Grammer (Germany)'), (22763, 'https://ror.org/0399zkh42', 'en', 1, 'https://ror.org/0399zkh42 Wuxi No.2 People''s Hospital 无锡市第二人民医院'), (22764, 'https://ror.org/039ardd72', 'no_lang_code', 1, 'https://ror.org/039ardd72 Xintek (United States)'), (22765, 'https://ror.org/039b6fr04', 'no_lang_code', 1, 'https://ror.org/039b6fr04 SEA-invest (France)'), (22766, 'https://ror.org/039br8e21', 'fr', 1, 'https://ror.org/039br8e21 Topos Aquitaine'), (22767, 'https://ror.org/039deg344', 'no_lang_code', 1, 'https://ror.org/039deg344 OJ-Bio (United Kingdom)'), (22768, 'https://ror.org/039e57198', 'no_lang_code', 1, 'https://ror.org/039e57198 XSB (United States)'), (22769, 'https://ror.org/039emag51', 'es', 1, 'https://ror.org/039emag51 Autonomous University of Fresnillo Universidad Autónoma de Fresnillo'), (22770, 'https://ror.org/039f5pg25', 'it', 1, 'https://ror.org/039f5pg25 Azienda Sanitaria Locale Alessandria'), (22771, 'https://ror.org/039fm7e11', 'en', 1, 'https://ror.org/039fm7e11 Universidad Mayor Real y Pontificia San Francisco Xavier de Chuquisaca University of Saint Francis Xavier'), (22772, 'https://ror.org/039g8ab81', 'en', 1, 'https://ror.org/039g8ab81 Fourth People''s Hospital of Shenzhen 深圳市第四人民医院'), (22773, 'https://ror.org/039gx9203', 'en', 1, 'https://ror.org/039gx9203 Navarro College'), (22774, 'https://ror.org/039he1k03', 'no_lang_code', 1, 'https://ror.org/039he1k03 Nanoparticle BioChem (United States)'), (22775, 'https://ror.org/039j29a96', 'no_lang_code', 1, 'https://ror.org/039j29a96 Plastic Electronics (Netherlands)'), (22776, 'https://ror.org/039je2z22', 'no_lang_code', 1, 'https://ror.org/039je2z22 PathoFinder (Netherlands)'), (22777, 'https://ror.org/039jmcx36', 'no_lang_code', 1, 'https://ror.org/039jmcx36 Csillagászati és Földtudományi Kutatóközpont Konkoly Thege Miklós Csillagászati Intézet Konkoly Observatory'), (22778, 'https://ror.org/039n74540', 'es', 1, 'https://ror.org/039n74540 Centro Universitario de Occidente'), (22779, 'https://ror.org/039neah40', 'en', 1, 'https://ror.org/039neah40 Practical Action'), (22780, 'https://ror.org/039nqq780', 'no_lang_code', 1, 'https://ror.org/039nqq780 Virtualware Group (Spain)'), (22781, 'https://ror.org/039pch476', 'en', 1, 'https://ror.org/039pch476 Josai International University 城西国際大学'), (22782, 'https://ror.org/039pz2z06', 'en', 1, 'https://ror.org/039pz2z06 Norwalk Community College'), (22783, 'https://ror.org/039rc8x03', 'no_lang_code', 1, 'https://ror.org/039rc8x03 Polgenix (United States)'), (22784, 'https://ror.org/039s4ex98', 'en', 1, 'https://ror.org/039s4ex98 Patrick Stead Hospital'), (22785, 'https://ror.org/039sdwk42', 'en', 1, 'https://ror.org/039sdwk42 Leominster Community Hospital'), (22786, 'https://ror.org/039szfp14', 'en', 1, 'https://ror.org/039szfp14 Ranken Technical College'), (22787, 'https://ror.org/03a0kcr96', 'no_lang_code', 1, 'https://ror.org/03a0kcr96 Silverchair Information Systems (United States)'), (22788, 'https://ror.org/03a0s3r85', 'no_lang_code', 1, 'https://ror.org/03a0s3r85 Ziena Optimization (United States)'), (22789, 'https://ror.org/03a0zrg31', 'fr', 1, 'https://ror.org/03a0zrg31 Université Internationale de Tunis الجامعة الدولية لتونس'), (22790, 'https://ror.org/03a17f132', 'no_lang_code', 1, 'https://ror.org/03a17f132 Light Chain Bioscience (Switzerland)'), (22791, 'https://ror.org/03a1a6r50', 'no_lang_code', 1, 'https://ror.org/03a1a6r50 Trasys International (Belgium)'), (22792, 'https://ror.org/03a42q045', 'en', 1, 'https://ror.org/03a42q045 Nara University 奈良大学'), (22793, 'https://ror.org/03a5kqj07', 'pt', 1, 'https://ror.org/03a5kqj07 Centro Universitário Unirondon'), (22794, 'https://ror.org/03a5x6z77', 'es', 1, 'https://ror.org/03a5x6z77 Universidad Nacional de Loja'), (22795, 'https://ror.org/03a7vht50', 'no_lang_code', 1, 'https://ror.org/03a7vht50 Grenson (United Kingdom)'), (22796, 'https://ror.org/03a8wcj58', 'en', 1, 'https://ror.org/03a8wcj58 Research Circle Associates'), (22797, 'https://ror.org/03a98ms41', 'no_lang_code', 1, 'https://ror.org/03a98ms41 New Dawn Enterprises (Canada)'), (22798, 'https://ror.org/03aa02381', 'en', 1, 'https://ror.org/03aa02381 Bulgarian Association of Software Companies'), (22799, 'https://ror.org/03aam4v69', 'pt', 1, 'https://ror.org/03aam4v69 Universidade Colinas de Boé'), (22800, 'https://ror.org/03aawc123', 'es', 1, 'https://ror.org/03aawc123 Fundación Universitaria del Espinal'), (22801, 'https://ror.org/03acae918', 'en', 1, 'https://ror.org/03acae918 Hitchin Hospital'), (22802, 'https://ror.org/03ad1cn37', 'es', 1, 'https://ror.org/03ad1cn37 Universidad Nacional Pedro Henríquez Ureña'), (22803, 'https://ror.org/03af1tj71', 'en', 1, 'https://ror.org/03af1tj71 Queen Charlotte''s and Chelsea Hospital'), (22804, 'https://ror.org/03afd0v14', 'en', 1, 'https://ror.org/03afd0v14 Orpington Hospital'), (22805, 'https://ror.org/03ag0xf08', 'en', 1, 'https://ror.org/03ag0xf08 Bassano Bresciano Astronomical Observatory Osservatorio Astronomico di Bassano Bresciano'), (22806, 'https://ror.org/03agge938', 'no_lang_code', 1, 'https://ror.org/03agge938 Smith & Nephew (United Kingdom)'), (22807, 'https://ror.org/03aqsxt86', 'es', 1, 'https://ror.org/03aqsxt86 Universidad Creativa'), (22808, 'https://ror.org/03arr3t82', 'fr', 1, 'https://ror.org/03arr3t82 Institut Sous-Régional de Statistique et d''Economie Appliquée'), (22809, 'https://ror.org/03atgj124', 'en', 1, 'https://ror.org/03atgj124 World Obesity Federation'), (22810, 'https://ror.org/03aynys49', 'en', 1, 'https://ror.org/03aynys49 Southwest Texas Junior College'), (22811, 'https://ror.org/03b0ym704', 'en', 1, 'https://ror.org/03b0ym704 Tokyo Keizai University 東京経済大学'), (22812, 'https://ror.org/03b135v89', 'en', 1, 'https://ror.org/03b135v89 Moscow Regional Psychiatry Hospital No.5 Психиатрическая больница №5'), (22813, 'https://ror.org/03b243z64', 'no_lang_code', 1, 'https://ror.org/03b243z64 Pellet Productions (United States)'), (22814, 'https://ror.org/03b5r4s12', 'en', 1, 'https://ror.org/03b5r4s12 Victoria Central Hospital'), (22815, 'https://ror.org/03b7kxh09', 'en', 1, 'https://ror.org/03b7kxh09 Balearic Islands Coastal Observing and Forecasting System'), (22816, 'https://ror.org/03b80ms04', 'es', 1, 'https://ror.org/03b80ms04 Universidad Jean Piaget'), (22817, 'https://ror.org/03b80zh39', 'en', 1, 'https://ror.org/03b80zh39 Saskatchewan Science Centre'), (22818, 'https://ror.org/03b9y4e65', 'en', 1, 'https://ror.org/03b9y4e65 Abdul Wali Khan University Mardan'), (22819, 'https://ror.org/03ba09a49', 'es', 1, 'https://ror.org/03ba09a49 Fundación Tecnológica Autónoma de Bogotá'), (22820, 'https://ror.org/03bd77x85', 'no_lang_code', 1, 'https://ror.org/03bd77x85 Raisio (Finland)'), (22821, 'https://ror.org/03befxt38', 'en', 1, 'https://ror.org/03befxt38 Everest University'), (22822, 'https://ror.org/03beypq35', 'es', 1, 'https://ror.org/03beypq35 Universidad Hernán Cortés'), (22823, 'https://ror.org/03bhas793', 'en', 1, 'https://ror.org/03bhas793 Youth Development'), (22824, 'https://ror.org/03bj1fs86', 'es', 1, 'https://ror.org/03bj1fs86 Institución Universitaria Colombo Americana'), (22825, 'https://ror.org/03bjqrv17', 'no_lang_code', 1, 'https://ror.org/03bjqrv17 SeaOwl Technology Solutions (France)'), (22826, 'https://ror.org/03bm5es30', 'en', 1, 'https://ror.org/03bm5es30 University of Dongola جامعة دنقلا'), (22827, 'https://ror.org/03bmvpf93', 'no_lang_code', 1, 'https://ror.org/03bmvpf93 Tesco (United Kingdom)'), (22828, 'https://ror.org/03bnqh738', 'en', 1, 'https://ror.org/03bnqh738 Castleford, Normanton and District Hospital'), (22829, 'https://ror.org/03bpj1h80', 'en', 1, 'https://ror.org/03bpj1h80 Centre for Community Based Research'), (22830, 'https://ror.org/03bq93t15', 'no_lang_code', 1, 'https://ror.org/03bq93t15 NanoVir (United States)'), (22831, 'https://ror.org/03bvdp262', 'en', 1, 'https://ror.org/03bvdp262 Farrington High School'), (22832, 'https://ror.org/03bwvnd45', 'no_lang_code', 1, 'https://ror.org/03bwvnd45 TecPart Verband Technische Kunststoff-Produkte e.V.'), (22833, 'https://ror.org/03byjr489', 'pt', 1, 'https://ror.org/03byjr489 Centro Universitário Cesumar'), (22834, 'https://ror.org/03bzmm215', 'pt', 1, 'https://ror.org/03bzmm215 Centro Universitário da Fundação Educacional Guaxupé'), (22835, 'https://ror.org/03c0n7870', 'es', 1, 'https://ror.org/03c0n7870 Universidad de Tecnología y Comercio'), (22836, 'https://ror.org/03c1bg807', 'pt', 1, 'https://ror.org/03c1bg807 Centro Universitário de Votuporanga'), (22837, 'https://ror.org/03c4aza49', 'en', 1, 'https://ror.org/03c4aza49 HRH Princess Christian''s Hospital'), (22838, 'https://ror.org/03c4na604', 'no_lang_code', 1, 'https://ror.org/03c4na604 Soliani Emc (Italy)'), (22839, 'https://ror.org/03c5e1619', 'en', 1, 'https://ror.org/03c5e1619 Yasuda Women''s University 安田女子大学'), (22840, 'https://ror.org/03c8a9g31', 'no_lang_code', 1, 'https://ror.org/03c8a9g31 Power Lake (Sweden)'), (22841, 'https://ror.org/03c8kha54', 'en', 1, 'https://ror.org/03c8kha54 Spire Hartswood Hospital'), (22842, 'https://ror.org/03c8qq315', 'en', 1, 'https://ror.org/03c8qq315 Tver State University Тверской государственный университет'), (22843, 'https://ror.org/03c922h13', 'no_lang_code', 1, 'https://ror.org/03c922h13 Xerox (United Kingdom)'), (22844, 'https://ror.org/03c9fpk55', 'en', 1, 'https://ror.org/03c9fpk55 Korea National University of Education 한국교원대학교'), (22845, 'https://ror.org/03cacct79', 'no', 1, 'https://ror.org/03cacct79 Seniornett'), (22846, 'https://ror.org/03caevp73', 'en', 1, 'https://ror.org/03caevp73 Renacres Hospital'), (22847, 'https://ror.org/03cdvzq70', 'no_lang_code', 1, 'https://ror.org/03cdvzq70 Körber (Germany)'), (22848, 'https://ror.org/03ceam220', 'pt', 1, 'https://ror.org/03ceam220 Museu da Presidência da República'), (22849, 'https://ror.org/03cej9w90', 'en', 1, 'https://ror.org/03cej9w90 Wokingham Hospital'), (22850, 'https://ror.org/03cgbtn12', 'en', 1, 'https://ror.org/03cgbtn12 Pyay Technological University ပြည်နည်းပညာတက္ကသိုလ်'), (22851, 'https://ror.org/03cgz8503', 'no_lang_code', 1, 'https://ror.org/03cgz8503 Wardell Armstrong (United Kingdom)'), (22852, 'https://ror.org/03chmh893', 'es', 1, 'https://ror.org/03chmh893 Universidad Santa Fe'), (22853, 'https://ror.org/03cj80e19', 'es', 1, 'https://ror.org/03cj80e19 Universitario Bauhaus'), (22854, 'https://ror.org/03cjabw52', 'es', 1, 'https://ror.org/03cjabw52 Institución Universitaria Bellas Artes y Ciencias de Bolívar'), (22855, 'https://ror.org/03ckrc057', 'no_lang_code', 1, 'https://ror.org/03ckrc057 Norsk Hydro (Sweden)'), (22856, 'https://ror.org/03cn75x12', 'no_lang_code', 1, 'https://ror.org/03cn75x12 Elwyn'), (22857, 'https://ror.org/03cqn2k13', 'es', 1, 'https://ror.org/03cqn2k13 Universidad del Tacana'), (22858, 'https://ror.org/03cr9qq80', 'es', 1, 'https://ror.org/03cr9qq80 Instituto Superior de Educación Rural'), (22859, 'https://ror.org/03cssbw37', 'no_lang_code', 1, 'https://ror.org/03cssbw37 Parallel Consulting (United States)'), (22860, 'https://ror.org/03ct1tp35', 'no_lang_code', 1, 'https://ror.org/03ct1tp35 Progressive Energy (United Kingdom)'), (22861, 'https://ror.org/03ctf4s64', 'no_lang_code', 1, 'https://ror.org/03ctf4s64 Safoso (Switzerland)'), (22862, 'https://ror.org/03cx5n871', 'no_lang_code', 1, 'https://ror.org/03cx5n871 OZ Biosciences (France)'), (22863, 'https://ror.org/03cyqfb07', 'sk', 1, 'https://ror.org/03cyqfb07 Tekovská Hvezdáreň, Tekovská hvezdáreň v Leviciach'), (22864, 'https://ror.org/03cyvf362', 'no_lang_code', 1, 'https://ror.org/03cyvf362 Immune Regulation (United Kingdom)'), (22865, 'https://ror.org/03cze4377', 'no_lang_code', 1, 'https://ror.org/03cze4377 Power Curbers (United States)'), (22866, 'https://ror.org/03d1dz577', 'no_lang_code', 1, 'https://ror.org/03d1dz577 WSP Sverige (Sweden)'), (22867, 'https://ror.org/03d47z838', 'en', 1, 'https://ror.org/03d47z838 National Observatory Observatório Nacional'), (22868, 'https://ror.org/03d6w0229', 'es', 1, 'https://ror.org/03d6w0229 Universidad José Antonio Páez'), (22869, 'https://ror.org/03d7x2a93', 'no_lang_code', 1, 'https://ror.org/03d7x2a93 Tritech Group (United Kingdom)'), (22870, 'https://ror.org/03d8nc804', 'en', 1, 'https://ror.org/03d8nc804 Tantramar Wetlands Centre'), (22871, 'https://ror.org/03d8xva75', 'en', 1, 'https://ror.org/03d8xva75 Dilke Memorial Hospital'), (22872, 'https://ror.org/03daw3m97', 'no_lang_code', 1, 'https://ror.org/03daw3m97 Schlumberger (Netherlands)'), (22873, 'https://ror.org/03db1hz44', 'es', 1, 'https://ror.org/03db1hz44 Universidad Católica San Pablo'), (22874, 'https://ror.org/03db8ra47', 'en', 1, 'https://ror.org/03db8ra47 Association for Canadian and Québec Literatures L’Association des littératures canadiennes et québécoise'), (22875, 'https://ror.org/03dbt2x59', 'no_lang_code', 1, 'https://ror.org/03dbt2x59 Villeroy & Boch (Germany)'), (22876, 'https://ror.org/03ddeer04', 'en', 1, 'https://ror.org/03ddeer04 University of Qom دانشگاه قم'), (22877, 'https://ror.org/03ddhqc48', 'no_lang_code', 1, 'https://ror.org/03ddhqc48 Q Sphere (United Kingdom)'), (22878, 'https://ror.org/03ddtra52', 'en', 1, 'https://ror.org/03ddtra52 Mikocheni Agricultural Research Institute'), (22879, 'https://ror.org/03deqdj72', 'es', 1, 'https://ror.org/03deqdj72 Universidad de San Martín de Porres, University of San Martín de Porres'), (22880, 'https://ror.org/03df6me86', 'en', 1, 'https://ror.org/03df6me86 West View Integrated Care Centre'), (22881, 'https://ror.org/03dnnq935', 'en', 1, 'https://ror.org/03dnnq935 Antioch University Los Angeles'), (22882, 'https://ror.org/03dp0vf82', 'no_lang_code', 1, 'https://ror.org/03dp0vf82 Oxford BioMedica (United Kingdom)'), (22883, 'https://ror.org/03dpd7s60', 'no_lang_code', 1, 'https://ror.org/03dpd7s60 Trustor Precision Components (Sweden)'), (22884, 'https://ror.org/03dqd5c54', 'en', 1, 'https://ror.org/03dqd5c54 Telecommunications Policy Research Conference'), (22885, 'https://ror.org/03dr5vm44', 'en', 1, 'https://ror.org/03dr5vm44 Aconcagua University Universidad del Aconcagua'), (22886, 'https://ror.org/03dt5t405', 'fr', 1, 'https://ror.org/03dt5t405 École Supérieure d''Architecture d''Intérieur'), (22887, 'https://ror.org/03dw0z746', 'en', 1, 'https://ror.org/03dw0z746 Halstead Hospital'), (22888, 'https://ror.org/03dwthp43', 'no_lang_code', 1, 'https://ror.org/03dwthp43 Vascular Pharmaceuticals (United States)'), (22889, 'https://ror.org/03dww3s84', 'en', 1, 'https://ror.org/03dww3s84 Springfield Hospital'), (22890, 'https://ror.org/03dy61e04', 'no_lang_code', 1, 'https://ror.org/03dy61e04 ScienCentral (United States)'), (22891, 'https://ror.org/03e207173', 'en', 1, 'https://ror.org/03e207173 Hunan Children''s Hospital 湖南省儿童医院'), (22892, 'https://ror.org/03e398g80', 'es', 1, 'https://ror.org/03e398g80 Centro Universitario Americano del Estado de Morelos'), (22893, 'https://ror.org/03e47dk66', 'es', 1, 'https://ror.org/03e47dk66 Universidad Argentina John F. Kennedy'), (22894, 'https://ror.org/03e4g1593', 'en', 1, 'https://ror.org/03e4g1593 West Hertfordshire Hospitals NHS Trust'), (22895, 'https://ror.org/03e4qp353', 'en', 1, 'https://ror.org/03e4qp353 Sylvia Lawry Centre for Multiple Sclerosis Research'), (22896, 'https://ror.org/03e4w4b74', 'no_lang_code', 1, 'https://ror.org/03e4w4b74 OptTek Systems (United States)'), (22897, 'https://ror.org/03e5ggr08', 'no_lang_code', 1, 'https://ror.org/03e5ggr08 Kelme (Spain)'), (22898, 'https://ror.org/03e79yx85', 'es', 1, 'https://ror.org/03e79yx85 Instituto Tolimense de Formación Técnica Profesional'), (22899, 'https://ror.org/03e7f5c12', 'fr', 1, 'https://ror.org/03e7f5c12 Institut Universitaire de la Côte'), (22900, 'https://ror.org/03ea76440', 'fr', 1, 'https://ror.org/03ea76440 Université Libre de Kinshasa'), (22901, 'https://ror.org/03ee58b76', 'en', 1, 'https://ror.org/03ee58b76 Kellokosken Sairaala Kellokoski Hospital'), (22902, 'https://ror.org/03efy3764', 'no_lang_code', 1, 'https://ror.org/03efy3764 THT Control Oy (Finland)'), (22903, 'https://ror.org/03egk3v94', 'en', 1, 'https://ror.org/03egk3v94 Advanced Applied Physics Solutions'), (22904, 'https://ror.org/03egsqc60', 'no_lang_code', 1, 'https://ror.org/03egsqc60 TiConUno (Italy)'), (22905, 'https://ror.org/03endhe31', 'en', 1, 'https://ror.org/03endhe31 PDC-ARGOS'), (22906, 'https://ror.org/03esg6y90', 'no_lang_code', 1, 'https://ror.org/03esg6y90 Zenalux Biomedical (United States)'), (22907, 'https://ror.org/03et5bx91', 'es', 1, 'https://ror.org/03et5bx91 Fundación Universitaria Juan de Castellanos'), (22908, 'https://ror.org/03etsty64', 'no_lang_code', 1, 'https://ror.org/03etsty64 Tadiso (United States)'), (22909, 'https://ror.org/03etyp213', 'no_lang_code', 1, 'https://ror.org/03etyp213 Municipality of Athens Development Agency'), (22910, 'https://ror.org/03ev3zx04', 'no_lang_code', 1, 'https://ror.org/03ev3zx04 Slider Studio (United Kingdom)'), (22911, 'https://ror.org/03ewnz430', 'en', 1, 'https://ror.org/03ewnz430 Women Accepting Responsibility'), (22912, 'https://ror.org/03ex17v30', 'no_lang_code', 1, 'https://ror.org/03ex17v30 RMC Research (United States)'), (22913, 'https://ror.org/03ex76y18', 'no_lang_code', 1, 'https://ror.org/03ex76y18 Spring Techno (Germany)'), (22914, 'https://ror.org/03ez88s78', 'fr', 1, 'https://ror.org/03ez88s78 Sup de Co Marrakech, École Supérieure de Commerce de Marrakech'), (22915, 'https://ror.org/03f08pf79', 'en', 1, 'https://ror.org/03f08pf79 St. Gregory''s University'), (22916, 'https://ror.org/03f099r71', 'fr', 1, 'https://ror.org/03f099r71 Institut universitaire de technologie, Instituts Universitaires de Technologie'), (22917, 'https://ror.org/03f0t8b71', 'es', 1, 'https://ror.org/03f0t8b71 Universidad Técnica del Norte'), (22918, 'https://ror.org/03f1b8d27', 'no_lang_code', 1, 'https://ror.org/03f1b8d27 Foundry (United Kingdom)'), (22919, 'https://ror.org/03f419588', 'no_lang_code', 1, 'https://ror.org/03f419588 Confers (United Kingdom)'), (22920, 'https://ror.org/03f4xfe90', 'no_lang_code', 1, 'https://ror.org/03f4xfe90 Simulation Solutions (United Kingdom)'), (22921, 'https://ror.org/03f511537', 'no_lang_code', 1, 'https://ror.org/03f511537 Zumtobel Group (United Kingdom)'), (22922, 'https://ror.org/03f5kyb42', 'en', 1, 'https://ror.org/03f5kyb42 Greenside Design Center College of Design'), (22923, 'https://ror.org/03f6phn52', 'no_lang_code', 1, 'https://ror.org/03f6phn52 Compañía Mexicana de Radiología (United States)'), (22924, 'https://ror.org/03f6smv36', 'no_lang_code', 1, 'https://ror.org/03f6smv36 Wind Technologies (United Kingdom)'), (22925, 'https://ror.org/03f750x06', 'en', 1, 'https://ror.org/03f750x06 Technical Chamber of Greece'), (22926, 'https://ror.org/03f7qhc68', 'en', 1, 'https://ror.org/03f7qhc68 Broadgreen Hospital'), (22927, 'https://ror.org/03faefq04', 'no_lang_code', 1, 'https://ror.org/03faefq04 Warwick Analytics (United Kingdom)'), (22928, 'https://ror.org/03fbb4j63', 'no_lang_code', 1, 'https://ror.org/03fbb4j63 Finisar (Sweden)'), (22929, 'https://ror.org/03fcyzf82', 'en', 1, 'https://ror.org/03fcyzf82 New Mexico Family Network'), (22930, 'https://ror.org/03fdxqq72', 'no_lang_code', 1, 'https://ror.org/03fdxqq72 Puracyp (United States)'), (22931, 'https://ror.org/03fehwj53', 'es', 1, 'https://ror.org/03fehwj53 Universidad San Pedro'), (22932, 'https://ror.org/03ff1e896', 'en', 1, 'https://ror.org/03ff1e896 Centre for Applied Psychology, Environmental and Social Research Zentrum für angewandte Psychologie, Umwelt- und Sozialforschung'), (22933, 'https://ror.org/03fgj8421', 'fr', 1, 'https://ror.org/03fgj8421 École d''Architecture de Casablanca'), (22934, 'https://ror.org/03fgtjr33', 'en', 1, 'https://ror.org/03fgtjr33 Copperbelt University'), (22935, 'https://ror.org/03fhhje23', 'en', 1, 'https://ror.org/03fhhje23 Cleary University'), (22936, 'https://ror.org/03fjqhm56', 'es', 1, 'https://ror.org/03fjqhm56 Universidad Cristiana de Bolivia'), (22937, 'https://ror.org/03fknw408', 'en', 1, 'https://ror.org/03fknw408 UK Data Archive'), (22938, 'https://ror.org/03fpnp855', 'fr', 1, 'https://ror.org/03fpnp855 Association Canadienne des Sociologues et Anthropologues de Langue Française'), (22939, 'https://ror.org/03fqttr31', 'en', 1, 'https://ror.org/03fqttr31 Odiham Cottage Hospital'), (22940, 'https://ror.org/03fs0qz59', 'no_lang_code', 1, 'https://ror.org/03fs0qz59 Türksat (Turkey) Türksat Uydu Haberleşme Kablo TV ve İşletme A.Ş.'), (22941, 'https://ror.org/03fv6f056', 'fr', 1, 'https://ror.org/03fv6f056 Centre Hospitalier d''Arras'), (22942, 'https://ror.org/03fxxpd92', 'en', 1, 'https://ror.org/03fxxpd92 National Penghu University of Science and Technology 國立澎湖科技大學'), (22943, 'https://ror.org/03fzdf593', 'de', 1, 'https://ror.org/03fzdf593 PROJEKTkompetenz'), (22944, 'https://ror.org/03fzvpt97', 'en', 1, 'https://ror.org/03fzvpt97 Northeast Iowa Dairy Foundation'), (22945, 'https://ror.org/03g0mt494', 'es', 1, 'https://ror.org/03g0mt494 Universidad Anáhuac de Cancún'), (22946, 'https://ror.org/03g16s487', 'en', 1, 'https://ror.org/03g16s487 Palmer Community Hospital'), (22947, 'https://ror.org/03g33jp38', 'en', 1, 'https://ror.org/03g33jp38 Los Algarrobos Observatory Observatorio Los Algarrobos'), (22948, 'https://ror.org/03g407536', 'en', 1, 'https://ror.org/03g407536 University of Toliara Université de Toliara'), (22949, 'https://ror.org/03g47g866', 'en', 1, 'https://ror.org/03g47g866 University Hospitals of North Midlands NHS Trust'), (22950, 'https://ror.org/03g5fjs36', 'no_lang_code', 1, 'https://ror.org/03g5fjs36 Third Dimension Technologies (United States)'), (22951, 'https://ror.org/03g6mxw58', 'es', 1, 'https://ror.org/03g6mxw58 Universidad Indígena Quechua Boliviana Casimiro Huanca'), (22952, 'https://ror.org/03g867362', 'es', 1, 'https://ror.org/03g867362 Universidad de la Marina Mercante'), (22953, 'https://ror.org/03g8egf97', 'pt', 1, 'https://ror.org/03g8egf97 Centro Universitário do Norte Paulista'), (22954, 'https://ror.org/03ga86b15', 'en', 1, 'https://ror.org/03ga86b15 Living on Earth'), (22955, 'https://ror.org/03gca2v38', 'en', 1, 'https://ror.org/03gca2v38 Production Management Institute of Southern Africa'), (22956, 'https://ror.org/03gd99924', 'en', 1, 'https://ror.org/03gd99924 Spire Alexandra Hospital'), (22957, 'https://ror.org/03gdfyp04', 'en', 1, 'https://ror.org/03gdfyp04 Farnham Hospital & Centre For Health'), (22958, 'https://ror.org/03ge13j80', 'no_lang_code', 1, 'https://ror.org/03ge13j80 Analogic (United States)'), (22959, 'https://ror.org/03ge8ff34', 'es', 1, 'https://ror.org/03ge8ff34 Universidad Latinoamericana'), (22960, 'https://ror.org/03gex3a30', 'en', 1, 'https://ror.org/03gex3a30 PlasticsEurope'), (22961, 'https://ror.org/03gfrak98', 'en', 1, 'https://ror.org/03gfrak98 West Liberty University'), (22962, 'https://ror.org/03gfza185', 'no_lang_code', 1, 'https://ror.org/03gfza185 EduHintOVD (Netherlands)'), (22963, 'https://ror.org/03gh8yg14', 'en', 1, 'https://ror.org/03gh8yg14 Project Oceanology'), (22964, 'https://ror.org/03ghr6q93', 'no_lang_code', 1, 'https://ror.org/03ghr6q93 PLANCO Consulting (Germany)'), (22965, 'https://ror.org/03gq1d339', 'en', 1, 'https://ror.org/03gq1d339 University of Ngaoundéré Université de Ngaoundéré'), (22966, 'https://ror.org/03gq1kz58', 'no_lang_code', 1, 'https://ror.org/03gq1kz58 Research & Diagnostic Antibodies (United States)'), (22967, 'https://ror.org/03gqwjw57', 'en', 1, 'https://ror.org/03gqwjw57 Damelin'), (22968, 'https://ror.org/03gr30s78', 'en', 1, 'https://ror.org/03gr30s78 Buckland Hospital'), (22969, 'https://ror.org/03grmx823', 'es', 1, 'https://ror.org/03grmx823 Universidad Interamericana de Panamá'), (22970, 'https://ror.org/03gs3ft47', 'en', 1, 'https://ror.org/03gs3ft47 Science Museum Group'), (22971, 'https://ror.org/03gsgk545', 'en', 1, 'https://ror.org/03gsgk545 Universidad de la Amazonia University of the Amazon'), (22972, 'https://ror.org/03gtw5096', 'es', 1, 'https://ror.org/03gtw5096 Universidad Xilotzingo'), (22973, 'https://ror.org/03gvct920', 'no_lang_code', 1, 'https://ror.org/03gvct920 Tecnologia e Engenharia de Materiais (Portugal)'), (22974, 'https://ror.org/03gy7zk94', 'no_lang_code', 1, 'https://ror.org/03gy7zk94 O-Ray Pharma (United States)'), (22975, 'https://ror.org/03gz60y52', 'pt', 1, 'https://ror.org/03gz60y52 Raiz - Instituto De Investigação Da Floresta E Papel'), (22976, 'https://ror.org/03h1y5m90', 'fr', 1, 'https://ror.org/03h1y5m90 Institut Supérieur de Statistique de Lubumbashi'), (22977, 'https://ror.org/03h362x79', 'en', 1, 'https://ror.org/03h362x79 Missoula County Public Schools'), (22978, 'https://ror.org/03hbnch67', 'en', 1, 'https://ror.org/03hbnch67 Social Development Commission'), (22979, 'https://ror.org/03hbpmj07', 'no_lang_code', 1, 'https://ror.org/03hbpmj07 ResearchWorks (United States)'), (22980, 'https://ror.org/03hcgzj74', 'en', 1, 'https://ror.org/03hcgzj74 Isebrook Hospital'), (22981, 'https://ror.org/03hefp680', 'es', 1, 'https://ror.org/03hefp680 Universidad Nacional de Huancavelica'), (22982, 'https://ror.org/03hendk30', 'es', 1, 'https://ror.org/03hendk30 Enac Instituto Profesional'), (22983, 'https://ror.org/03hfh6394', 'pt', 1, 'https://ror.org/03hfh6394 Instituto Superior Cristão'), (22984, 'https://ror.org/03hh4xv28', 'en', 1, 'https://ror.org/03hh4xv28 Trades Union Congress'), (22985, 'https://ror.org/03hhd1t97', 'es', 1, 'https://ror.org/03hhd1t97 Universidad Tec De Oriente'), (22986, 'https://ror.org/03hhjm063', 'en', 1, 'https://ror.org/03hhjm063 Western Piedmont Community College'), (22987, 'https://ror.org/03hhk3369', 'fr', 1, 'https://ror.org/03hhk3369 Armand Frappier Museum'), (22988, 'https://ror.org/03hj4jr80', 'en', 1, 'https://ror.org/03hj4jr80 North Carolina Biotechnology Center'), (22989, 'https://ror.org/03hjbt093', 'en', 1, 'https://ror.org/03hjbt093 The Polytechnic Ibadan'), (22990, 'https://ror.org/03hm2pw19', 'no_lang_code', 1, 'https://ror.org/03hm2pw19 NRU Präzisionstechnologie (Germany)'), (22991, 'https://ror.org/03hm6e417', 'en', 1, 'https://ror.org/03hm6e417 Radiation Protection Institute'), (22992, 'https://ror.org/03hqvaq14', 'en', 1, 'https://ror.org/03hqvaq14 Thomas Nelson Community College'), (22993, 'https://ror.org/03hqvqf51', 'no_lang_code', 1, 'https://ror.org/03hqvqf51 Xinyang Central Hospital 信阳市中心医院'), (22994, 'https://ror.org/03hr7f472', 'es', 1, 'https://ror.org/03hr7f472 Centro Universitario de Ciudad Juárez'), (22995, 'https://ror.org/03ht5e806', 'en', 1, 'https://ror.org/03ht5e806 Northern Ostrobothnia Hospital District Pohjois-Pohjanmaan Sairaanhoitopiiri'), (22996, 'https://ror.org/03htt2d69', 'no_lang_code', 1, 'https://ror.org/03htt2d69 Pfizer (Italy)'), (22997, 'https://ror.org/03hxjwt59', 'en', 1, 'https://ror.org/03hxjwt59 Southwest Louisiana Area Health Education Center'), (22998, 'https://ror.org/03hyrhe39', 'no_lang_code', 1, 'https://ror.org/03hyrhe39 Novacta (United Kingdom)'), (22999, 'https://ror.org/03j2kra17', 'no_lang_code', 1, 'https://ror.org/03j2kra17 Prodyne (United States)'), (23000, 'https://ror.org/03j6adw74', 'en', 1, 'https://ror.org/03j6adw74 Gadarif University جامعة القضارف'), (23001, 'https://ror.org/03jafxc29', 'no_lang_code', 1, 'https://ror.org/03jafxc29 Micro Photon Devices'), (23002, 'https://ror.org/03jd2c182', 'no_lang_code', 1, 'https://ror.org/03jd2c182 REFAMED (Italy)'), (23003, 'https://ror.org/03jem4j71', 'no_lang_code', 1, 'https://ror.org/03jem4j71 Meta Vision Systems (United Kingdom)'), (23004, 'https://ror.org/03jf8k683', 'en', 1, 'https://ror.org/03jf8k683 Monterey Peninsula Unified School District'), (23005, 'https://ror.org/03jfhm487', 'en', 1, 'https://ror.org/03jfhm487 National University of Chilecito Universidad Nacional de Chilecito'), (23006, 'https://ror.org/03jfsyd35', 'en', 1, 'https://ror.org/03jfsyd35 Clarke International University'), (23007, 'https://ror.org/03jh7vc52', 'no_lang_code', 1, 'https://ror.org/03jh7vc52 PA Consulting Group'), (23008, 'https://ror.org/03jjrt588', 'en', 1, 'https://ror.org/03jjrt588 Zenith University College'), (23009, 'https://ror.org/03jjx5w61', 'en', 1, 'https://ror.org/03jjx5w61 Rathbone Hospital'), (23010, 'https://ror.org/03jnhsd98', 'en', 1, 'https://ror.org/03jnhsd98 Bioindustrial Innovation Canada'), (23011, 'https://ror.org/03jq5gp77', 'en', 1, 'https://ror.org/03jq5gp77 Minnesota Zoo'), (23012, 'https://ror.org/03jv4cw45', 'no_lang_code', 1, 'https://ror.org/03jv4cw45 AudioCodes (Israel)'), (23013, 'https://ror.org/03jvxy171', 'no_lang_code', 1, 'https://ror.org/03jvxy171 Micro Optics Technologies (United States)'), (23014, 'https://ror.org/03jyntf28', 'no_lang_code', 1, 'https://ror.org/03jyntf28 Zubiola (Spain)'), (23015, 'https://ror.org/03jytqt55', 'en', 1, 'https://ror.org/03jytqt55 BMI Bishops Wood Hospital'), (23016, 'https://ror.org/03jzm5a44', 'es', 1, 'https://ror.org/03jzm5a44 Rafael Landívar University, Universidad Rafael Landívar'), (23017, 'https://ror.org/03jzxkg37', 'en', 1, 'https://ror.org/03jzxkg37 Senshu University 専修大学'), (23018, 'https://ror.org/03k0tfa09', 'no_lang_code', 1, 'https://ror.org/03k0tfa09 Trusted Renewables (United Kingdom)'), (23019, 'https://ror.org/03k3dgs02', 'no_lang_code', 1, 'https://ror.org/03k3dgs02 Orange (Belgium)'), (23020, 'https://ror.org/03k42h168', 'en', 1, 'https://ror.org/03k42h168 Indspire'), (23021, 'https://ror.org/03k552p43', 'es', 1, 'https://ror.org/03k552p43 Universidad Católica de La Plata'), (23022, 'https://ror.org/03k6gj822', 'en', 1, 'https://ror.org/03k6gj822 Ajayi Crowther University'), (23023, 'https://ror.org/03k6wst68', 'en', 1, 'https://ror.org/03k6wst68 Hopewood Park Hospital'), (23024, 'https://ror.org/03k7v9g07', 'no_lang_code', 1, 'https://ror.org/03k7v9g07 Seratec (Germany)'), (23025, 'https://ror.org/03k95y741', 'en', 1, 'https://ror.org/03k95y741 South Warwickshire NHS Foundation Trust'), (23026, 'https://ror.org/03k9hrc16', 'en', 1, 'https://ror.org/03k9hrc16 Florida State University-Panama'), (23027, 'https://ror.org/03kcc1a98', 'no_lang_code', 1, 'https://ror.org/03kcc1a98 Recupyl (France)'), (23028, 'https://ror.org/03kce8684', 'en', 1, 'https://ror.org/03kce8684 Tenbury Community Hospital'), (23029, 'https://ror.org/03kcqne70', 'es', 1, 'https://ror.org/03kcqne70 Instituto Departamental de Bellas Artes'), (23030, 'https://ror.org/03kea0d35', 'en', 1, 'https://ror.org/03kea0d35 St Mary''s Hospital'), (23031, 'https://ror.org/03kfrqx27', 'no_lang_code', 1, 'https://ror.org/03kfrqx27 Nemaura Pharma (United Kingdom)'), (23032, 'https://ror.org/03khznd17', 'en', 1, 'https://ror.org/03khznd17 Gloucestershire Health and Care NHS Foundation Trust'), (23033, 'https://ror.org/03kk6t048', 'no_lang_code', 1, 'https://ror.org/03kk6t048 Taitech (United States)'), (23034, 'https://ror.org/03kkfk814', 'en', 1, 'https://ror.org/03kkfk814 University of Jijel جامعة جيجل'), (23035, 'https://ror.org/03kkjyb15', 'en', 1, 'https://ror.org/03kkjyb15 Peking University Shenzhen Hospital 北京大学深圳医院'), (23036, 'https://ror.org/03kn6cb12', 'en', 1, 'https://ror.org/03kn6cb12 October High Institute For Enginnering and Technology معهد أكتوبر العالي للهندسة والتكنولوجيا'), (23037, 'https://ror.org/03kqcyw85', 'es', 1, 'https://ror.org/03kqcyw85 Universidad Nacional del Altiplano'), (23038, 'https://ror.org/03kqywj10', 'es', 1, 'https://ror.org/03kqywj10 Universidad Nuestra Señora de La Paz'), (23039, 'https://ror.org/03ks3fa41', 'no_lang_code', 1, 'https://ror.org/03ks3fa41 SpazioDati (Italy)'), (23040, 'https://ror.org/03ksty822', 'no_lang_code', 1, 'https://ror.org/03ksty822 New Generation Biogas'), (23041, 'https://ror.org/03kswc577', 'no_lang_code', 1, 'https://ror.org/03kswc577 Statistics Collaborative'), (23042, 'https://ror.org/03ktccz26', 'no_lang_code', 1, 'https://ror.org/03ktccz26 PinMed (United States)'), (23043, 'https://ror.org/03kvekp81', 'no_lang_code', 1, 'https://ror.org/03kvekp81 Turkish Electro Technology (Turkey)'), (23044, 'https://ror.org/03kvq4w45', 'nl', 1, 'https://ror.org/03kvq4w45 Nationaal ICT Instituut in de Zorg'), (23045, 'https://ror.org/03kvy9649', 'fr', 1, 'https://ror.org/03kvy9649 Pour la Solidarité'), (23046, 'https://ror.org/03kw02y34', 'no_lang_code', 1, 'https://ror.org/03kw02y34 Navimetric (Spain)'), (23047, 'https://ror.org/03kytre74', 'no_lang_code', 1, 'https://ror.org/03kytre74 Roslin Cells (United Kingdom)'), (23048, 'https://ror.org/03kytw120', 'no_lang_code', 1, 'https://ror.org/03kytw120 Pro Optica (Romania)'), (23049, 'https://ror.org/03m033p80', 'no_lang_code', 1, 'https://ror.org/03m033p80 Sappi (Netherlands)'), (23050, 'https://ror.org/03m1s4j75', 'es', 1, 'https://ror.org/03m1s4j75 Universidad de Oriente'), (23051, 'https://ror.org/03m3n7e70', 'en', 1, 'https://ror.org/03m3n7e70 Braintree Community Hospital'), (23052, 'https://ror.org/03m69ak30', 'es', 1, 'https://ror.org/03m69ak30 Universidad de Norteamérica'), (23053, 'https://ror.org/03m7qwy32', 'en', 1, 'https://ror.org/03m7qwy32 William Penn University'), (23054, 'https://ror.org/03m7rw736', 'en', 1, 'https://ror.org/03m7rw736 Nacionalni laboratorij za zdravje, okolje in hrano National Laboratory of Health, Environment and Food'), (23055, 'https://ror.org/03maf3k43', 'en', 1, 'https://ror.org/03maf3k43 Indoc Research'), (23056, 'https://ror.org/03mcgtd30', 'es', 1, 'https://ror.org/03mcgtd30 Centro de Diseño, Arquitectura y Construcción'), (23057, 'https://ror.org/03mcm6a50', 'fr', 1, 'https://ror.org/03mcm6a50 Institut Supérieur de Statistiques de Kinshasa'), (23058, 'https://ror.org/03me22p27', 'no_lang_code', 1, 'https://ror.org/03me22p27 ProCertus BioPharm (United States)'), (23059, 'https://ror.org/03mexge56', 'fr', 1, 'https://ror.org/03mexge56 École Supérieure d''Informatique et de Management des Affaires'), (23060, 'https://ror.org/03mg4mw05', 'es', 1, 'https://ror.org/03mg4mw05 Grupo de Observadores Astronómicos de Tenerife'), (23061, 'https://ror.org/03mj51g65', 'it', 1, 'https://ror.org/03mj51g65 Ospedaliero Santa Barbara'), (23062, 'https://ror.org/03mjm4596', 'no_lang_code', 1, 'https://ror.org/03mjm4596 TYPSA Group (Spain)'), (23063, 'https://ror.org/03mmsj102', 'no_lang_code', 1, 'https://ror.org/03mmsj102 Personal Space Technologies (Netherlands)'), (23064, 'https://ror.org/03mnvhz29', 'es', 1, 'https://ror.org/03mnvhz29 Universidad Nacional Experimental Politécnica "Antonio José de Sucre"'), (23065, 'https://ror.org/03mq8zc85', 'en', 1, 'https://ror.org/03mq8zc85 Central Middlesex Hospital'), (23066, 'https://ror.org/03mqxhm40', 'en', 1, 'https://ror.org/03mqxhm40 Museums Association'), (23067, 'https://ror.org/03ms28n48', 'no_lang_code', 1, 'https://ror.org/03ms28n48 Pixelligent (United States)'), (23068, 'https://ror.org/03ms5t516', 'en', 1, 'https://ror.org/03ms5t516 Lydney and District Hospital'), (23069, 'https://ror.org/03mvpvm42', 'en', 1, 'https://ror.org/03mvpvm42 Center Technological University Universidad Tecnológica del Centro'), (23070, 'https://ror.org/03mwysa89', 'en', 1, 'https://ror.org/03mwysa89 The Concrete Centre'), (23071, 'https://ror.org/03mx33742', 'es', 1, 'https://ror.org/03mx33742 Universidad de Santander'), (23072, 'https://ror.org/03mxhve08', 'fr', 1, 'https://ror.org/03mxhve08 Institut Supérieur Pédagogique Technique'), (23073, 'https://ror.org/03myyx716', 'es', 1, 'https://ror.org/03myyx716 Universidad ISA'), (23074, 'https://ror.org/03mzgz227', 'no_lang_code', 1, 'https://ror.org/03mzgz227 Meso (United States)'), (23075, 'https://ror.org/03n0qh685', 'en', 1, 'https://ror.org/03n0qh685 National Patient Safety Agency'), (23076, 'https://ror.org/03n2yg143', 'es', 1, 'https://ror.org/03n2yg143 Centro Universitario en Periodismo y Publicidad'), (23077, 'https://ror.org/03n3q3154', 'en', 1, 'https://ror.org/03n3q3154 Concrete Society'), (23078, 'https://ror.org/03n5zh241', 'no_lang_code', 1, 'https://ror.org/03n5zh241 Oryzon Genomics (Spain)'), (23079, 'https://ror.org/03n7nwh86', 'es', 1, 'https://ror.org/03n7nwh86 Universidad Católica Sedes Sapientiae'); INSERT INTO `rors` VALUES (23080, 'https://ror.org/03n8k5298', 'en', 1, 'https://ror.org/03n8k5298 Association canadienne des industrielles Canadian Industrial Relations Association'), (23081, 'https://ror.org/03ndmx042', 'en', 1, 'https://ror.org/03ndmx042 Riverside County Department of Environmental Health'), (23082, 'https://ror.org/03nfzc873', 'es', 1, 'https://ror.org/03nfzc873 Universidad Boliviana de Informática'), (23083, 'https://ror.org/03nhf7k19', 'no_lang_code', 1, 'https://ror.org/03nhf7k19 PJH (United Kingdom)'), (23084, 'https://ror.org/03njhn887', 'en', 1, 'https://ror.org/03njhn887 Society of Wood Science and Technology'), (23085, 'https://ror.org/03njk0639', 'no_lang_code', 1, 'https://ror.org/03njk0639 Rangen (United States)'), (23086, 'https://ror.org/03njp5837', 'fr', 1, 'https://ror.org/03njp5837 École Royale de l''Air de Marrakech المدرسة الملكية الجوية'), (23087, 'https://ror.org/03njz2k95', 'no_lang_code', 1, 'https://ror.org/03njz2k95 Optech (Canada)'), (23088, 'https://ror.org/03nm76w91', 'es', 1, 'https://ror.org/03nm76w91 Universidad Instituto Universitario del Estado de México'), (23089, 'https://ror.org/03nmehh68', 'fr', 1, 'https://ror.org/03nmehh68 Université du Lac Tanganyika'), (23090, 'https://ror.org/03nr54n68', 'no_lang_code', 1, 'https://ror.org/03nr54n68 Nordic Bioscience (Denmark)'), (23091, 'https://ror.org/03nvtfm43', 'en', 1, 'https://ror.org/03nvtfm43 Concordia University'), (23092, 'https://ror.org/03nycav22', 'en', 1, 'https://ror.org/03nycav22 Roxbourne Medical Centre'), (23093, 'https://ror.org/03p5xhb29', 'es', 1, 'https://ror.org/03p5xhb29 Universidad Nacional de Pilar'), (23094, 'https://ror.org/03p72cz81', 'no_lang_code', 1, 'https://ror.org/03p72cz81 LDK (Greece)'), (23095, 'https://ror.org/03p7g4h78', 'en', 1, 'https://ror.org/03p7g4h78 Gorno-Altaisk State University Горно-Алтайский государственный университет'), (23096, 'https://ror.org/03p7h8068', 'es', 1, 'https://ror.org/03p7h8068 Fundación Universitaria de Popayán'), (23097, 'https://ror.org/03p7psc15', 'no_lang_code', 1, 'https://ror.org/03p7psc15 Stocznia Gdynia (Poland)'), (23098, 'https://ror.org/03p823x35', 'en', 1, 'https://ror.org/03p823x35 Caritas University'), (23099, 'https://ror.org/03paspt34', 'no_lang_code', 1, 'https://ror.org/03paspt34 Microlime (Portugal)'), (23100, 'https://ror.org/03pca2t30', 'en', 1, 'https://ror.org/03pca2t30 Presbyterian Medical Services'), (23101, 'https://ror.org/03pf5zs64', 'en', 1, 'https://ror.org/03pf5zs64 Royal National Throat Nose and Ear Hospital'), (23102, 'https://ror.org/03pge2g16', 'no_lang_code', 1, 'https://ror.org/03pge2g16 NovAtel (Canada)'), (23103, 'https://ror.org/03pgf7z08', 'no_lang_code', 1, 'https://ror.org/03pgf7z08 SSM Computer Systems (Cyprus)'), (23104, 'https://ror.org/03pgvsr43', 'en', 1, 'https://ror.org/03pgvsr43 Mining Industry Human Resources Council'), (23105, 'https://ror.org/03ph49z03', 'en', 1, 'https://ror.org/03ph49z03 Islamic University in Uganda'), (23106, 'https://ror.org/03pj63790', 'no_lang_code', 1, 'https://ror.org/03pj63790 ZirChrom Separations (United States)'), (23107, 'https://ror.org/03pkpht31', 'fr', 1, 'https://ror.org/03pkpht31 Institut Supérieur de Commerce de Kinshasa'), (23108, 'https://ror.org/03pkrx282', 'en', 1, 'https://ror.org/03pkrx282 Loughborough Hospital'), (23109, 'https://ror.org/03pkwvf72', 'en', 1, 'https://ror.org/03pkwvf72 Campion College'), (23110, 'https://ror.org/03pmd4r81', 'no_lang_code', 1, 'https://ror.org/03pmd4r81 R&R Systems (Netherlands)'), (23111, 'https://ror.org/03pmj9e82', 'en', 1, 'https://ror.org/03pmj9e82 Centre for Probe Development and Commercialization'), (23112, 'https://ror.org/03pmvds50', 'en', 1, 'https://ror.org/03pmvds50 MindFuel'), (23113, 'https://ror.org/03pnptn66', 'es', 1, 'https://ror.org/03pnptn66 Universidad Internacional de Profesiones y Escuela Internacional de Turismo'), (23114, 'https://ror.org/03pnxfz55', 'no_lang_code', 1, 'https://ror.org/03pnxfz55 Boehringer Ingelheim (Sweden)'), (23115, 'https://ror.org/03pq0dv21', 'no_lang_code', 1, 'https://ror.org/03pq0dv21 Vecima Technology (United Kingdom)'), (23116, 'https://ror.org/03pq34j38', 'en', 1, 'https://ror.org/03pq34j38 BMI Goring Hall Hospital'), (23117, 'https://ror.org/03pqmqc37', 'en', 1, 'https://ror.org/03pqmqc37 St. Margaret''s Hospital'), (23118, 'https://ror.org/03pwcr767', 'en', 1, 'https://ror.org/03pwcr767 Niger Delta University'), (23119, 'https://ror.org/03pwm1612', 'no_lang_code', 1, 'https://ror.org/03pwm1612 Allied Vision Technologies (Canada)'), (23120, 'https://ror.org/03pxqf194', 'pt', 1, 'https://ror.org/03pxqf194 Centro Universitário Anhanguera'), (23121, 'https://ror.org/03pxqyk55', 'pt', 1, 'https://ror.org/03pxqyk55 Universidade Regional do Noroeste do Estado do Rio Grande do Sul'), (23122, 'https://ror.org/03pxrb028', 'no_lang_code', 1, 'https://ror.org/03pxrb028 Photonic Science (United Kingdom)'), (23123, 'https://ror.org/03pys9888', 'en', 1, 'https://ror.org/03pys9888 High-Tech Rabat-Agdal'), (23124, 'https://ror.org/03pz77m13', 'no_lang_code', 1, 'https://ror.org/03pz77m13 Nemetschek Allplan (Slovakia)'), (23125, 'https://ror.org/03pze9w21', 'es', 1, 'https://ror.org/03pze9w21 Corporación Universitaria Americana'), (23126, 'https://ror.org/03q03s114', 'es', 1, 'https://ror.org/03q03s114 Universidad de las Ciencias y el Arte de Costa Rica'), (23127, 'https://ror.org/03q0dfp67', 'en', 1, 'https://ror.org/03q0dfp67 Catholic University of Central Africa Université catholique d''afrique centrale'), (23128, 'https://ror.org/03q0gmx50', 'es', 1, 'https://ror.org/03q0gmx50 Universidad Libre de Costa Rica'), (23129, 'https://ror.org/03q0k8124', 'no_lang_code', 1, 'https://ror.org/03q0k8124 Xaar (United Kingdom)'), (23130, 'https://ror.org/03q1ded50', 'en', 1, 'https://ror.org/03q1ded50 Midrand Graduate Institute'), (23131, 'https://ror.org/03q1mhb89', 'no_lang_code', 1, 'https://ror.org/03q1mhb89 Scour Prevention Systems (United Kingdom)'), (23132, 'https://ror.org/03q2kkx59', 'no_lang_code', 1, 'https://ror.org/03q2kkx59 Touchstone Research Laboratory (United States)'), (23133, 'https://ror.org/03q83c436', 'en', 1, 'https://ror.org/03q83c436 Association for Canadian Studies'), (23134, 'https://ror.org/03q8g2x76', 'es', 1, 'https://ror.org/03q8g2x76 Universidad Cristiana Autónoma de Nicaragua'), (23135, 'https://ror.org/03q8k9q03', 'no_lang_code', 1, 'https://ror.org/03q8k9q03 Huntsman (United Kingdom)'), (23136, 'https://ror.org/03qc71575', 'en', 1, 'https://ror.org/03qc71575 Western Community Hospital'), (23137, 'https://ror.org/03qecha53', 'no_lang_code', 1, 'https://ror.org/03qecha53 Vaxart (United States)'), (23138, 'https://ror.org/03qg1ka05', 'es', 1, 'https://ror.org/03qg1ka05 Universidad Loyola del Pacífico'), (23139, 'https://ror.org/03qgjv684', 'no_lang_code', 1, 'https://ror.org/03qgjv684 SeaSpace (United States)'), (23140, 'https://ror.org/03qgxnq88', 'no_lang_code', 1, 'https://ror.org/03qgxnq88 Redes Energéticas Nacionais (Portugal)'), (23141, 'https://ror.org/03qjxzd42', 'en', 1, 'https://ror.org/03qjxzd42 South West Regional Authority'), (23142, 'https://ror.org/03qm7cd09', 'no_lang_code', 1, 'https://ror.org/03qm7cd09 TechnoFirst (France)'), (23143, 'https://ror.org/03qn4hk51', 'no_lang_code', 1, 'https://ror.org/03qn4hk51 Xilinx (Canada)'), (23144, 'https://ror.org/03qngxd77', 'es', 1, 'https://ror.org/03qngxd77 Corporación Escuela Tecnológica del Oriente'), (23145, 'https://ror.org/03qsw6f66', 'es', 1, 'https://ror.org/03qsw6f66 Universidad del Alica'), (23146, 'https://ror.org/03qtd7e32', 'es', 1, 'https://ror.org/03qtd7e32 Asociación Psicoanalítica de Buenos Aires'), (23147, 'https://ror.org/03qtxpc80', 'pt', 1, 'https://ror.org/03qtxpc80 Centro Universitário Plínio Leite'), (23148, 'https://ror.org/03qv51n94', 'en', 1, 'https://ror.org/03qv51n94 National Authority for Remote Sensing and Space Sciences'), (23149, 'https://ror.org/03qx9j992', 'en', 1, 'https://ror.org/03qx9j992 Association Canadienne de Communication Canadian Communication Association'), (23150, 'https://ror.org/03qxvyy35', 'en', 1, 'https://ror.org/03qxvyy35 Dhaka University of Engineering & Technology ঢাকা প্রকৌশল ও প্রযুক্তি বিশ্ববিদ্যালয়'), (23151, 'https://ror.org/03qyvw759', 'en', 1, 'https://ror.org/03qyvw759 St Mary''s Hospital'), (23152, 'https://ror.org/03qzc6q48', 'es', 1, 'https://ror.org/03qzc6q48 Universidad de Tijuana'), (23153, 'https://ror.org/03r0ajw35', 'en', 1, 'https://ror.org/03r0ajw35 National Association of Research and Educational e-Infrastructures'), (23154, 'https://ror.org/03r16h820', 'en', 1, 'https://ror.org/03r16h820 Oklahoma Department of Agriculture Food and Forestry'), (23155, 'https://ror.org/03r1qk590', 'en', 1, 'https://ror.org/03r1qk590 Milton Keynes Hospital NHS Foundation Trust'), (23156, 'https://ror.org/03r487h15', 'es', 1, 'https://ror.org/03r487h15 Universidad Notarial Argentina'), (23157, 'https://ror.org/03r4mvw95', 'no_lang_code', 1, 'https://ror.org/03r4mvw95 South Yorkshire Passenger Transport Executive'), (23158, 'https://ror.org/03r7b1f79', 'en', 1, 'https://ror.org/03r7b1f79 Turgut Özal University Turgut Özal Üniversitesi'), (23159, 'https://ror.org/03r885q17', 'no_lang_code', 1, 'https://ror.org/03r885q17 Prolog Development Center'), (23160, 'https://ror.org/03r8s5x58', 'no_lang_code', 1, 'https://ror.org/03r8s5x58 Osiris Therapeutics (United States)'), (23161, 'https://ror.org/03raf0607', 'en', 1, 'https://ror.org/03raf0607 Linzhou Cancer Hospital 林州市肿瘤医院'), (23162, 'https://ror.org/03rb80v65', 'no_lang_code', 1, 'https://ror.org/03rb80v65 Sequenom (United States)'), (23163, 'https://ror.org/03rdgye13', 'pt', 1, 'https://ror.org/03rdgye13 Centro Universitário do Sul de Minas'), (23164, 'https://ror.org/03rhn0886', 'en', 1, 'https://ror.org/03rhn0886 Regional Youth Adult Social Action Partnership'), (23165, 'https://ror.org/03rhw7p81', 'en', 1, 'https://ror.org/03rhw7p81 Camborne Redruth Community Hospital'), (23166, 'https://ror.org/03rj1yh85', 'en', 1, 'https://ror.org/03rj1yh85 Bob Jones University'), (23167, 'https://ror.org/03rjhfb18', 'es', 1, 'https://ror.org/03rjhfb18 Universidad de Aconcagua'), (23168, 'https://ror.org/03rk04a05', 'no_lang_code', 1, 'https://ror.org/03rk04a05 Tecan (United Kingdom)'), (23169, 'https://ror.org/03rk9dw54', 'en', 1, 'https://ror.org/03rk9dw54 Williams Unified School District'), (23170, 'https://ror.org/03rkach21', 'es', 1, 'https://ror.org/03rkach21 Instituto de Estudios Universitarios'), (23171, 'https://ror.org/03rkhvp51', 'en', 1, 'https://ror.org/03rkhvp51 Yamhill County Public Health'), (23172, 'https://ror.org/03rm88931', 'en', 1, 'https://ror.org/03rm88931 Blandford Community Hospital'), (23173, 'https://ror.org/03rmnkv16', 'en', 1, 'https://ror.org/03rmnkv16 Antelope Hills Observatory'), (23174, 'https://ror.org/03rnv3v52', 'no_lang_code', 1, 'https://ror.org/03rnv3v52 Source BioScience (United Kingdom)'), (23175, 'https://ror.org/03rp0q895', 'es', 1, 'https://ror.org/03rp0q895 Universidad Albert Einstein'), (23176, 'https://ror.org/03rqy4d08', 'en', 1, 'https://ror.org/03rqy4d08 Emir Abdelkader University of Islamic Sciences جامعة الأمير عبد القادر'), (23177, 'https://ror.org/03rrvgg66', 'en', 1, 'https://ror.org/03rrvgg66 Women''s Treatment Center'), (23178, 'https://ror.org/03rsfqa52', 'es', 1, 'https://ror.org/03rsfqa52 Universidad de Especialidades'), (23179, 'https://ror.org/03rt1dc30', 'en', 1, 'https://ror.org/03rt1dc30 Swedish Foundry Association'), (23180, 'https://ror.org/03rt6nv56', 'no_lang_code', 1, 'https://ror.org/03rt6nv56 PowerCell (Sweden)'), (23181, 'https://ror.org/03s13ge81', 'en', 1, 'https://ror.org/03s13ge81 Youth and Family Services of Haddam Killingworth'), (23182, 'https://ror.org/03s1cky33', 'en', 1, 'https://ror.org/03s1cky33 Newark Hospital'), (23183, 'https://ror.org/03s2p3287', 'no_lang_code', 1, 'https://ror.org/03s2p3287 Pluservice (Italy)'), (23184, 'https://ror.org/03s5kf753', 'no_lang_code', 1, 'https://ror.org/03s5kf753 ULMA Embedded Solutions'), (23185, 'https://ror.org/03s5r1026', 'en', 1, 'https://ror.org/03s5r1026 Mountains of the Moon University'), (23186, 'https://ror.org/03s746s06', 'no_lang_code', 1, 'https://ror.org/03s746s06 Pinnacle Pharmaceuticals (United States)'), (23187, 'https://ror.org/03s7e5303', 'no_lang_code', 1, 'https://ror.org/03s7e5303 SGF International (Germany)'), (23188, 'https://ror.org/03s8c2x09', 'en', 1, 'https://ror.org/03s8c2x09 Future University in Egypt جامعة المستقبل بمصر'), (23189, 'https://ror.org/03s8xc553', 'en', 1, 'https://ror.org/03s8xc553 Shanxi Datong University 山西大同大学'), (23190, 'https://ror.org/03s9etx54', 'en', 1, 'https://ror.org/03s9etx54 National Economists Club'), (23191, 'https://ror.org/03s9hs139', 'en', 1, 'https://ror.org/03s9hs139 International Islamic University Malaysia Universiti Islam Antarabangsa Malaysia ഇൻറർനാഷനൽ ഇസ്ലാമിക് യൂനിവേഴ്സിറ്റി മലേഷ്യ'), (23192, 'https://ror.org/03s9xhv46', 'no_lang_code', 1, 'https://ror.org/03s9xhv46 Take The Wind (Portugal)'), (23193, 'https://ror.org/03sb6zx08', 'no_lang_code', 1, 'https://ror.org/03sb6zx08 Scanwel (United Kingdom)'), (23194, 'https://ror.org/03sdg3x20', 'es', 1, 'https://ror.org/03sdg3x20 Universidad Femenina del Sagrado Corazón'), (23195, 'https://ror.org/03sj17n32', 'no_lang_code', 1, 'https://ror.org/03sj17n32 Molecular Innovations (United States)'), (23196, 'https://ror.org/03sja0d46', 'en', 1, 'https://ror.org/03sja0d46 Village for Families and Children'), (23197, 'https://ror.org/03skmn868', 'no_lang_code', 1, 'https://ror.org/03skmn868 Saltworks Technologies (Canada)'), (23198, 'https://ror.org/03smwm886', 'en', 1, 'https://ror.org/03smwm886 Higher Institute for Tourism, Hotels and Computer المعهد العالى للسياحة والفنادق والحاسب الآلى - السيوف / الإسكندرية'), (23199, 'https://ror.org/03snwcw72', 'en', 1, 'https://ror.org/03snwcw72 Sittingbourne Memorial Hospital'), (23200, 'https://ror.org/03spqk736', 'fr', 1, 'https://ror.org/03spqk736 Haute École de Commerce et de Management'), (23201, 'https://ror.org/03srdnd02', 'en', 1, 'https://ror.org/03srdnd02 Livingstone Community Hospital'), (23202, 'https://ror.org/03syqx014', 'no_lang_code', 1, 'https://ror.org/03syqx014 Marie Curie Association'), (23203, 'https://ror.org/03sz3nv18', 'no_lang_code', 1, 'https://ror.org/03sz3nv18 VHsquared (United Kingdom)'), (23204, 'https://ror.org/03szqsq92', 'en', 1, 'https://ror.org/03szqsq92 Carter Observatory'), (23205, 'https://ror.org/03t0xat23', 'no_lang_code', 1, 'https://ror.org/03t0xat23 Paralab (Portugal)'), (23206, 'https://ror.org/03t1bjt91', 'es', 1, 'https://ror.org/03t1bjt91 Universidad del Golfo'), (23207, 'https://ror.org/03t1pvr70', 'en', 1, 'https://ror.org/03t1pvr70 Roca'), (23208, 'https://ror.org/03t2yqt79', 'no_lang_code', 1, 'https://ror.org/03t2yqt79 Plastal (Italy)'), (23209, 'https://ror.org/03t542436', 'en', 1, 'https://ror.org/03t542436 Berkshire Healthcare NHS Foundation Trust'), (23210, 'https://ror.org/03t59pc95', 'en', 1, 'https://ror.org/03t59pc95 Pennine Care NHS Foundation Trust'), (23211, 'https://ror.org/03t7ag653', 'ro', 1, 'https://ror.org/03t7ag653 Institutul National de Cercetare Dezvoltare pentru Tehnologii Criogenice si Izotopice'), (23212, 'https://ror.org/03t7c1217', 'en', 1, 'https://ror.org/03t7c1217 Keiju Medical Center 恵寿総合病院'), (23213, 'https://ror.org/03t8fag37', 'no_lang_code', 1, 'https://ror.org/03t8fag37 Tiscali (Italy)'), (23214, 'https://ror.org/03t9xp890', 'en', 1, 'https://ror.org/03t9xp890 East Cleveland Primary Care Hospital'), (23215, 'https://ror.org/03tarqk49', 'en', 1, 'https://ror.org/03tarqk49 Hospital of St. Cross'), (23216, 'https://ror.org/03tbnx652', 'en', 1, 'https://ror.org/03tbnx652 Missouri Area Health Education Center'), (23217, 'https://ror.org/03tdxj229', 'no_lang_code', 1, 'https://ror.org/03tdxj229 VPIphotonics (Germany)'), (23218, 'https://ror.org/03tgm5090', 'en', 1, 'https://ror.org/03tgm5090 Observatorio Astronómico Nacional de España Spanish National Observatory'), (23219, 'https://ror.org/03thbf157', 'en', 1, 'https://ror.org/03thbf157 Bolivarian University of Venezuela Universidad Bolivariana de Venezuela'), (23220, 'https://ror.org/03tjw1547', 'en', 1, 'https://ror.org/03tjw1547 Innovate Niagara'), (23221, 'https://ror.org/03tqyjq53', 'no_lang_code', 1, 'https://ror.org/03tqyjq53 Burness Corlett Three Quays (United Kingdom)'), (23222, 'https://ror.org/03twab133', 'no_lang_code', 1, 'https://ror.org/03twab133 Viper RF (United Kingdom)'), (23223, 'https://ror.org/03twmm656', 'da', 1, 'https://ror.org/03twmm656 Syddansk Erhvervsskole'), (23224, 'https://ror.org/03tx9kw79', 'en', 1, 'https://ror.org/03tx9kw79 The Hydrogen and Fuel Cell Center The Zentrum für BrennstoffzellenTechnik'), (23225, 'https://ror.org/03txgdk33', 'no_lang_code', 1, 'https://ror.org/03txgdk33 Probetex (United States)'), (23226, 'https://ror.org/03tz0hf33', 'es', 1, 'https://ror.org/03tz0hf33 Universidad Internacional San Isidro Labrador'), (23227, 'https://ror.org/03tz9dg23', 'fr', 1, 'https://ror.org/03tz9dg23 La Boîte à lettres'), (23228, 'https://ror.org/03v02jr28', 'no_lang_code', 1, 'https://ror.org/03v02jr28 Amerindian Research in Quebec (Canada)'), (23229, 'https://ror.org/03v11kp57', 'no_lang_code', 1, 'https://ror.org/03v11kp57 Merlexi (United States)'), (23230, 'https://ror.org/03v1e0p66', 'no_lang_code', 1, 'https://ror.org/03v1e0p66 Smiths Detection (France)'), (23231, 'https://ror.org/03v1s7z10', 'no_lang_code', 1, 'https://ror.org/03v1s7z10 Norcontel'), (23232, 'https://ror.org/03v330a52', 'en', 1, 'https://ror.org/03v330a52 Tunbridge Wells Hospital'), (23233, 'https://ror.org/03v5ycz03', 'en', 1, 'https://ror.org/03v5ycz03 Universidad de Belgrano University of Belgrano Université de belgrano'), (23234, 'https://ror.org/03v7qgt03', 'no_lang_code', 1, 'https://ror.org/03v7qgt03 Siemens (Sweden)'), (23235, 'https://ror.org/03v8ncw80', 'no_lang_code', 1, 'https://ror.org/03v8ncw80 Robinson Brothers (United Kingdom)'), (23236, 'https://ror.org/03v8pzh67', 'no_lang_code', 1, 'https://ror.org/03v8pzh67 Eurofins (Germany)'), (23237, 'https://ror.org/03v96p621', 'no_lang_code', 1, 'https://ror.org/03v96p621 TenCate (Netherlands)'), (23238, 'https://ror.org/03vbb1674', 'en', 1, 'https://ror.org/03vbb1674 Longton Cottage Hospital'), (23239, 'https://ror.org/03vcjwt28', 'en', 1, 'https://ror.org/03vcjwt28 Organisation for International Dialogue and Conflict Management'), (23240, 'https://ror.org/03vd9ca20', 'no_lang_code', 1, 'https://ror.org/03vd9ca20 Pflegewerk (Germany)'), (23241, 'https://ror.org/03vfey433', 'no_lang_code', 1, 'https://ror.org/03vfey433 Lion Capital (United Kingdom)'), (23242, 'https://ror.org/03vgpfk89', 'nl', 1, 'https://ror.org/03vgpfk89 Waste'), (23243, 'https://ror.org/03vgyhc77', 'en', 1, 'https://ror.org/03vgyhc77 Northrise University'), (23244, 'https://ror.org/03vn3wv31', 'en', 1, 'https://ror.org/03vn3wv31 Midhurst Community Hospital'), (23245, 'https://ror.org/03vr42a56', 'en', 1, 'https://ror.org/03vr42a56 Oniversite Toamasina University of Toamasina Université de Toamasina'), (23246, 'https://ror.org/03vt4hz19', 'en', 1, 'https://ror.org/03vt4hz19 Belarusian State University of Transport Беларускі дзяржаўны ўніверсітэт транспарту Белорусский государственный университет транспорта'), (23247, 'https://ror.org/03vtyzs10', 'en', 1, 'https://ror.org/03vtyzs10 Mersey Care NHS Trust'), (23248, 'https://ror.org/03vvfjv50', 'en', 1, 'https://ror.org/03vvfjv50 OpticsValley'), (23249, 'https://ror.org/03vyvsr30', 'en', 1, 'https://ror.org/03vyvsr30 Roane County Anti-Drug Coalition'), (23250, 'https://ror.org/03w0prb16', 'es', 1, 'https://ror.org/03w0prb16 Observatorio San Calixto'), (23251, 'https://ror.org/03w1cw951', 'en', 1, 'https://ror.org/03w1cw951 Juan Agustín Maza University Universidad Juan Agustín Maza'), (23252, 'https://ror.org/03w3fxa59', 'no_lang_code', 1, 'https://ror.org/03w3fxa59 Technodyne International (United Kingdom)'), (23253, 'https://ror.org/03w40bm70', 'no_lang_code', 1, 'https://ror.org/03w40bm70 Manufacturas Serviplast (Spain)'), (23254, 'https://ror.org/03w44ry84', 'en', 1, 'https://ror.org/03w44ry84 Mico University College'), (23255, 'https://ror.org/03w4vm615', 'en', 1, 'https://ror.org/03w4vm615 Kitakashiwa Rehabilitation General Hospital 北柏リハビリ総合病院'), (23256, 'https://ror.org/03w52sy75', 'no_lang_code', 1, 'https://ror.org/03w52sy75 Moma (Italy)'), (23257, 'https://ror.org/03w6mvs43', 'en', 1, 'https://ror.org/03w6mvs43 Western International University'), (23258, 'https://ror.org/03wa0f361', 'es', 1, 'https://ror.org/03wa0f361 Instituto Latinoamericano de Computación'), (23259, 'https://ror.org/03wb76824', 'es', 1, 'https://ror.org/03wb76824 The New World University Universidad Nuevo Mundo'), (23260, 'https://ror.org/03wbarw78', 'es', 1, 'https://ror.org/03wbarw78 Universidad Nacional de Tumbes'), (23261, 'https://ror.org/03wbhaj27', 'no_lang_code', 1, 'https://ror.org/03wbhaj27 VIB Isolatietechniek (Netherlands)'), (23262, 'https://ror.org/03wcr7550', 'en', 1, 'https://ror.org/03wcr7550 Sendai Astronomical Observatory'), (23263, 'https://ror.org/03wezdz19', 'es', 1, 'https://ror.org/03wezdz19 Universidad Nacional Experimental de los Llanos Centrales Rómulo Gallegos'), (23264, 'https://ror.org/03wgc9z97', 'en', 1, 'https://ror.org/03wgc9z97 Stanley Park Ecology Society'), (23265, 'https://ror.org/03wgh3441', 'es', 1, 'https://ror.org/03wgh3441 Colegio Francés Hidalgo de México'), (23266, 'https://ror.org/03whcj350', 'en', 1, 'https://ror.org/03whcj350 Universidad Fermín Toro University Fermín Toro'), (23267, 'https://ror.org/03wjfkr41', 'no_lang_code', 1, 'https://ror.org/03wjfkr41 Smiths Group (Germany)'), (23268, 'https://ror.org/03wjn2094', 'es', 1, 'https://ror.org/03wjn2094 Universidad Privada del Valle'), (23269, 'https://ror.org/03wkbyb17', 'en', 1, 'https://ror.org/03wkbyb17 Morioka University 盛岡大学'), (23270, 'https://ror.org/03ws9cb65', 'fr', 1, 'https://ror.org/03ws9cb65 École Supérieure Algérienne des Affaires'), (23271, 'https://ror.org/03wsag231', 'en', 1, 'https://ror.org/03wsag231 Bureau suisse de prévention des accidents Swiss Council for Accident Prevention'), (23272, 'https://ror.org/03wtgv294', 'no_lang_code', 1, 'https://ror.org/03wtgv294 Regulus (Czechia)'), (23273, 'https://ror.org/03wwbgv53', 'es', 1, 'https://ror.org/03wwbgv53 Escuela Argentina de Negocios'), (23274, 'https://ror.org/03wwn0z54', 'no_lang_code', 1, 'https://ror.org/03wwn0z54 NovaMechanics (Cyprus)'), (23275, 'https://ror.org/03wwspn40', 'en', 1, 'https://ror.org/03wwspn40 Palestine Polytechnic University جامعة بوليتكنك فلسطين'), (23276, 'https://ror.org/03wz3nt64', 'es', 1, 'https://ror.org/03wz3nt64 Universidad Autónoma del Noreste'), (23277, 'https://ror.org/03x0e3627', 'no_lang_code', 1, 'https://ror.org/03x0e3627 Regens (Hungary)'), (23278, 'https://ror.org/03x2gtw59', 'no_lang_code', 1, 'https://ror.org/03x2gtw59 TagArray (United States)'), (23279, 'https://ror.org/03x3ydk90', 'en', 1, 'https://ror.org/03x3ydk90 Finansministeriet Ministry of Finance Valtiovarainministeriö'), (23280, 'https://ror.org/03x43nn58', 'de', 1, 'https://ror.org/03x43nn58 Bagnoud Observatory, Observatoire François-Xavier Bagnoud'), (23281, 'https://ror.org/03x4dqr80', 'no_lang_code', 1, 'https://ror.org/03x4dqr80 SiliCycle (Canada)'), (23282, 'https://ror.org/03x53c263', 'es', 1, 'https://ror.org/03x53c263 Facultad de Teología del Uruguay Monseñor Mariano Soler'), (23283, 'https://ror.org/03x653m21', 'es', 1, 'https://ror.org/03x653m21 Universidad Autónoma del Paraguay'), (23284, 'https://ror.org/03x6w2s62', 'fr', 1, 'https://ror.org/03x6w2s62 Université Protestante d''Afrique Centrale'), (23285, 'https://ror.org/03xaemp51', 'no_lang_code', 1, 'https://ror.org/03xaemp51 Phoebus Optoelectronics (United States)'), (23286, 'https://ror.org/03xbfbm37', 'pt', 1, 'https://ror.org/03xbfbm37 Centro Universitário do Cerrado Patrocínio'), (23287, 'https://ror.org/03xbt0w63', 'en', 1, 'https://ror.org/03xbt0w63 New Orleans AIDS Task Force'), (23288, 'https://ror.org/03xe7w214', 'en', 1, 'https://ror.org/03xe7w214 East–West University'), (23289, 'https://ror.org/03xe86v46', 'en', 1, 'https://ror.org/03xe86v46 Wisconsin International University College'), (23290, 'https://ror.org/03xgtvr81', 'it', 1, 'https://ror.org/03xgtvr81 Italian Labour Union Unione Italiana del Lavoro'), (23291, 'https://ror.org/03xmq9934', 'en', 1, 'https://ror.org/03xmq9934 Han Dan City Eye Hospital - The Third Hospital of Handan 邯郸市眼科医院(邯郸市第三医院)'), (23292, 'https://ror.org/03xnr5143', 'en', 1, 'https://ror.org/03xnr5143 Barking, Havering And Redbridge University Hospitals NHS Trust'), (23293, 'https://ror.org/03xvqcz58', 'en', 1, 'https://ror.org/03xvqcz58 Mount Wilson Observatory Observatoire du mont wilson Observatorio Monte Wilson'), (23294, 'https://ror.org/03xyda961', 'en', 1, 'https://ror.org/03xyda961 Northland Pioneer College'), (23295, 'https://ror.org/03xz4j444', 'fr', 1, 'https://ror.org/03xz4j444 École Normale Supérieure de Constantine'), (23296, 'https://ror.org/03y0ep822', 'en', 1, 'https://ror.org/03y0ep822 World Health Organization - Zambia'), (23297, 'https://ror.org/03y2yf271', 'fr', 1, 'https://ror.org/03y2yf271 Time Université'), (23298, 'https://ror.org/03y3mds25', 'no_lang_code', 1, 'https://ror.org/03y3mds25 Phoenix Technologies (Canada)'), (23299, 'https://ror.org/03y42nm11', 'es', 1, 'https://ror.org/03y42nm11 Universidad de Ciencias Pedagógicas Félix Varela Morales'), (23300, 'https://ror.org/03y5bfq47', 'en', 1, 'https://ror.org/03y5bfq47 Health International Private University'), (23301, 'https://ror.org/03y69cp37', 'no_lang_code', 1, 'https://ror.org/03y69cp37 Veris Technologies (United States)'), (23302, 'https://ror.org/03y7n6m87', 'en', 1, 'https://ror.org/03y7n6m87 Norton Sound Health Corporation'), (23303, 'https://ror.org/03y8hzv17', 'no_lang_code', 1, 'https://ror.org/03y8hzv17 Southeast'), (23304, 'https://ror.org/03ybzg790', 'en', 1, 'https://ror.org/03ybzg790 Shoreline Community College'), (23305, 'https://ror.org/03ydszt61', 'fr', 1, 'https://ror.org/03ydszt61 École Supérieure de Banque المدرسة العليا للمصرفة'), (23306, 'https://ror.org/03ye93e96', 'pt', 1, 'https://ror.org/03ye93e96 Centro Universitário Monte Serrat, São Judas Campus Unimonte'), (23307, 'https://ror.org/03yff7e55', 'no_lang_code', 1, 'https://ror.org/03yff7e55 Unisys (Belgium)'), (23308, 'https://ror.org/03ygyva39', 'en', 1, 'https://ror.org/03ygyva39 Walnut Tree Hospital'), (23309, 'https://ror.org/03yj8bt58', 'fr', 1, 'https://ror.org/03yj8bt58 École Nationale de Commerce et de Gestion de Tanger المدرسة الوطنية للتجارة والتسيير بطنجة'), (23310, 'https://ror.org/03yk2q786', 'en', 1, 'https://ror.org/03yk2q786 Wye Valley NHS Trust'), (23311, 'https://ror.org/03ykx6g33', 'pt', 1, 'https://ror.org/03ykx6g33 Centro Universitario FIAM FAAM'), (23312, 'https://ror.org/03ymdz715', 'no_lang_code', 1, 'https://ror.org/03ymdz715 MIDI (United States)'), (23313, 'https://ror.org/03yph8055', 'en', 1, 'https://ror.org/03yph8055 Changsha University of Science and Technology 长沙理工大学'), (23314, 'https://ror.org/03ytfqd86', 'no_lang_code', 1, 'https://ror.org/03ytfqd86 UD-GenoMed (Hungary)'), (23315, 'https://ror.org/03yy7hq10', 'en', 1, 'https://ror.org/03yy7hq10 Grantham University'), (23316, 'https://ror.org/03yy8w025', 'en', 1, 'https://ror.org/03yy8w025 Nuclear Safety Research Institute Nukleáris Biztonsági Kutatóintézet'), (23317, 'https://ror.org/03yz6x113', 'no_lang_code', 1, 'https://ror.org/03yz6x113 Cisco Systems (Israel)'), (23318, 'https://ror.org/03yzht074', 'es', 1, 'https://ror.org/03yzht074 Universidad Valle del Momboy'), (23319, 'https://ror.org/03z02dh69', 'en', 1, 'https://ror.org/03z02dh69 The South Cheshire Private Hospital'), (23320, 'https://ror.org/03z0f3m78', 'es', 1, 'https://ror.org/03z0f3m78 Universidad del Pacífico'), (23321, 'https://ror.org/03z0m9f65', 'es', 1, 'https://ror.org/03z0m9f65 Universidad Pablo Guardado Chávez'), (23322, 'https://ror.org/03z157k13', 'no_lang_code', 1, 'https://ror.org/03z157k13 OceanWorks International (Canada)'), (23323, 'https://ror.org/03z30sy43', 'no_lang_code', 1, 'https://ror.org/03z30sy43 Imenco (Norway)'), (23324, 'https://ror.org/03z3p7a13', 'no_lang_code', 1, 'https://ror.org/03z3p7a13 Turbowinds (Belgium)'), (23325, 'https://ror.org/03z59cm68', 'en', 1, 'https://ror.org/03z59cm68 Henley-Putnam School of Strategic Security'), (23326, 'https://ror.org/03z7yy926', 'no_lang_code', 1, 'https://ror.org/03z7yy926 Techneat Engineering (United Kingdom)'), (23327, 'https://ror.org/03z9psf49', 'no_lang_code', 1, 'https://ror.org/03z9psf49 Protabit (United States)'), (23328, 'https://ror.org/03zaddr67', 'en', 1, 'https://ror.org/03zaddr67 Moorfields Eye Hospital NHS Foundation Trust'), (23329, 'https://ror.org/03zay0n25', 'no_lang_code', 1, 'https://ror.org/03zay0n25 Nasfine Photonics (United States)'), (23330, 'https://ror.org/03zbds496', 'en', 1, 'https://ror.org/03zbds496 Berrywood Hospital'), (23331, 'https://ror.org/03zeb7y98', 'en', 1, 'https://ror.org/03zeb7y98 Institute of Social Work'), (23332, 'https://ror.org/03zefc030', 'en', 1, 'https://ror.org/03zefc030 Lancashire Care NHS Foundation Trust'), (23333, 'https://ror.org/03zhs2308', 'en', 1, 'https://ror.org/03zhs2308 Royal Society of Tropical Medicine and Hygiene'), (23334, 'https://ror.org/03zj6v943', 'en', 1, 'https://ror.org/03zj6v943 Norfolk County Council'), (23335, 'https://ror.org/03zkf9p37', 'fr', 1, 'https://ror.org/03zkf9p37 École Supérieure de Management Appliqué'), (23336, 'https://ror.org/03zrqq643', 'en', 1, 'https://ror.org/03zrqq643 Santa Barbara County Public Health Department'), (23337, 'https://ror.org/03zs39p74', 'en', 1, 'https://ror.org/03zs39p74 Altrincham Hospital'), (23338, 'https://ror.org/03zsfdv59', 'no_lang_code', 1, 'https://ror.org/03zsfdv59 Tecnologías y Equipos para el Medio Ambiente (Spain)'), (23339, 'https://ror.org/03zttj648', 'no_lang_code', 1, 'https://ror.org/03zttj648 Tractell (United States)'), (23340, 'https://ror.org/03ztzw430', 'en', 1, 'https://ror.org/03ztzw430 Uckfield Community Hospital'), (23341, 'https://ror.org/03zvd4k21', 'no_lang_code', 1, 'https://ror.org/03zvd4k21 CFI Technologies (United States)'), (23342, 'https://ror.org/03zvhsj76', 'no_lang_code', 1, 'https://ror.org/03zvhsj76 Microcosm (United States)'), (23343, 'https://ror.org/03zw9a495', 'no_lang_code', 1, 'https://ror.org/03zw9a495 Quantos (France)'), (23344, 'https://ror.org/03zxhtw58', 'no_lang_code', 1, 'https://ror.org/03zxhtw58 Manufacture d''Orgues Muhleisen (France)'), (23345, 'https://ror.org/03zzjgp12', 'en', 1, 'https://ror.org/03zzjgp12 South Carolina Sea Grant Consortium'), (23346, 'https://ror.org/0400yw722', 'en', 1, 'https://ror.org/0400yw722 South African College of Applied Psychology'), (23347, 'https://ror.org/04020mn90', 'no_lang_code', 1, 'https://ror.org/04020mn90 Oxitec (United Kingdom)'), (23348, 'https://ror.org/04031z735', 'pt', 1, 'https://ror.org/04031z735 Universidade Brasil'), (23349, 'https://ror.org/0405vqf70', 'no_lang_code', 1, 'https://ror.org/0405vqf70 Scholastic Corporation (United States)'), (23350, 'https://ror.org/040747t72', 'no_lang_code', 1, 'https://ror.org/040747t72 Substrakt (United Kingdom)'), (23351, 'https://ror.org/0408ee822', 'en', 1, 'https://ror.org/0408ee822 Quebec Labrador Foundation'), (23352, 'https://ror.org/040akr227', 'es', 1, 'https://ror.org/040akr227 Universidad Nacional José Faustino Sánchez Carrión'), (23353, 'https://ror.org/040c7js64', 'no_lang_code', 1, 'https://ror.org/040c7js64 Xi''an Shiyou University 西安石油大学'), (23354, 'https://ror.org/040cwqt59', 'no_lang_code', 1, 'https://ror.org/040cwqt59 Pemu (Hungary)'), (23355, 'https://ror.org/040hyy284', 'es', 1, 'https://ror.org/040hyy284 Universidad Experimental Felix Adam, Universidad Experimental Félix Adam'), (23356, 'https://ror.org/040nc8096', 'no_lang_code', 1, 'https://ror.org/040nc8096 Teknoloji Arastirma ve Gelistirme Endustriyel Urunler Bilisim Teknolojileri San Tic'), (23357, 'https://ror.org/040ngxe09', 'en', 1, 'https://ror.org/040ngxe09 Ashtead Hospital'), (23358, 'https://ror.org/040p70661', 'es', 1, 'https://ror.org/040p70661 Universidad Intercultural de Chiapas'), (23359, 'https://ror.org/040ppgc54', 'no_lang_code', 1, 'https://ror.org/040ppgc54 R-Biopharm (Germany)'), (23360, 'https://ror.org/040r3xq19', 'es', 1, 'https://ror.org/040r3xq19 Universidad de León'), (23361, 'https://ror.org/040tj8752', 'no_lang_code', 1, 'https://ror.org/040tj8752 Multicert (Portugal)'), (23362, 'https://ror.org/040tkk892', 'es', 1, 'https://ror.org/040tkk892 Universidad Nacional Experimental Marítima del Caribe'), (23363, 'https://ror.org/040tqqd15', 'en', 1, 'https://ror.org/040tqqd15 Universidad de Cundinamarca University of Cundinamarca'), (23364, 'https://ror.org/040v4pr09', 'no_lang_code', 1, 'https://ror.org/040v4pr09 RSK Assessments (United States)'), (23365, 'https://ror.org/040w1dr55', 'en', 1, 'https://ror.org/040w1dr55 University of the Arts'), (23366, 'https://ror.org/040ycw505', 'no_lang_code', 1, 'https://ror.org/040ycw505 Oracle (Belgium)'), (23367, 'https://ror.org/0410akr80', 'en', 1, 'https://ror.org/0410akr80 Esperance Hospital'), (23368, 'https://ror.org/041105s88', 'en', 1, 'https://ror.org/041105s88 Dovedale Day Hospital'), (23369, 'https://ror.org/0411fwb51', 'en', 1, 'https://ror.org/0411fwb51 Ellen Badger Hospital'), (23370, 'https://ror.org/0413qrt75', 'no_lang_code', 1, 'https://ror.org/0413qrt75 Stirling Technology (United States)'), (23371, 'https://ror.org/0413w0z02', 'en', 1, 'https://ror.org/0413w0z02 Northeast Document Conservation Center'), (23372, 'https://ror.org/0414fnh91', 'en', 1, 'https://ror.org/0414fnh91 Huntington University'), (23373, 'https://ror.org/0415cr103', 'no_lang_code', 1, 'https://ror.org/0415cr103 Novo Nordisk (United Kingdom)'), (23374, 'https://ror.org/041d0jh94', 'en', 1, 'https://ror.org/041d0jh94 Western Massachusetts Training Consortium'), (23375, 'https://ror.org/041deym60', 'en', 1, 'https://ror.org/041deym60 Center for Technology & Innovation Management'), (23376, 'https://ror.org/041drhd97', 'no_lang_code', 1, 'https://ror.org/041drhd97 United Medix Laboratories (Finland) Yhtyneet Medix Laboratoriot'), (23377, 'https://ror.org/041f1nz98', 'pt', 1, 'https://ror.org/041f1nz98 Universidade Técnica de Moçambique'), (23378, 'https://ror.org/041ftcz16', 'en', 1, 'https://ror.org/041ftcz16 Naugatuck Valley Community College'), (23379, 'https://ror.org/041g8ev90', 'no_lang_code', 1, 'https://ror.org/041g8ev90 Optomesures (France)'), (23380, 'https://ror.org/041geh851', 'en', 1, 'https://ror.org/041geh851 Melksham Community Hospital'), (23381, 'https://ror.org/041gqhg24', 'en', 1, 'https://ror.org/041gqhg24 University of Maine at Augusta'), (23382, 'https://ror.org/041gzn235', 'en', 1, 'https://ror.org/041gzn235 Hendon Hospital'), (23383, 'https://ror.org/041h8y823', 'en', 1, 'https://ror.org/041h8y823 Ecomuseum Zoo Zoo Ecomuseum'), (23384, 'https://ror.org/041mj3y24', 'en', 1, 'https://ror.org/041mj3y24 Eccleshill Community Hospital'), (23385, 'https://ror.org/041q37h40', 'en', 1, 'https://ror.org/041q37h40 Cambridgeshire Community Services NHS Trust'), (23386, 'https://ror.org/041r3wk12', 'en', 1, 'https://ror.org/041r3wk12 Partnership for Food Safety Education'), (23387, 'https://ror.org/041rwsw06', 'en', 1, 'https://ror.org/041rwsw06 Igbinedion University'), (23388, 'https://ror.org/041vrah58', 'no_lang_code', 1, 'https://ror.org/041vrah58 Nanocopoeia (United States)'), (23389, 'https://ror.org/041wsqp45', 'es', 1, 'https://ror.org/041wsqp45 Institución Universitaria Colegios de Colombia'), (23390, 'https://ror.org/041xceh77', 'no_lang_code', 1, 'https://ror.org/041xceh77 Paques (Netherlands)'), (23391, 'https://ror.org/041z9yd20', 'en', 1, 'https://ror.org/041z9yd20 InsPIRE Network for Environment'), (23392, 'https://ror.org/0422ksx61', 'en', 1, 'https://ror.org/0422ksx61 Prostate Centre’s Translational Research Initiative for Accelerated Discovery and Development'), (23393, 'https://ror.org/0422kxg07', 'nl', 1, 'https://ror.org/0422kxg07 Mariaziekenhuis'), (23394, 'https://ror.org/0423djy10', 'no_lang_code', 1, 'https://ror.org/0423djy10 Naturstoff-Technik (Germany)'), (23395, 'https://ror.org/04240b022', 'no_lang_code', 1, 'https://ror.org/04240b022 Feonic Technology (United Kingdom)'), (23396, 'https://ror.org/0424nxb97', 'en', 1, 'https://ror.org/0424nxb97 National Alliance of Healthcare Purchaser Coalitions'), (23397, 'https://ror.org/0425hsv68', 'no_lang_code', 1, 'https://ror.org/0425hsv68 PaxVax (United States)'), (23398, 'https://ror.org/042647v76', 'en', 1, 'https://ror.org/042647v76 Together Enhancing Awareness Coalition'), (23399, 'https://ror.org/0426xa281', 'es', 1, 'https://ror.org/0426xa281 Universidad Tecnológica de Aguascalientes'), (23400, 'https://ror.org/0429kgt51', 'en', 1, 'https://ror.org/0429kgt51 Geophysical Institute of Israel המכון הגיאופיסי לישראל'), (23401, 'https://ror.org/042a0mn98', 'no_lang_code', 1, 'https://ror.org/042a0mn98 Essent (Netherlands)'), (23402, 'https://ror.org/042bpn241', 'en', 1, 'https://ror.org/042bpn241 Bayside Hospital for Animals'), (23403, 'https://ror.org/042c61z58', 'no_lang_code', 1, 'https://ror.org/042c61z58 SimuTech Group (United States)'), (23404, 'https://ror.org/042dcve90', 'en', 1, 'https://ror.org/042dcve90 Rose State College'), (23405, 'https://ror.org/042g3qa69', 'en', 1, 'https://ror.org/042g3qa69 Xian Yang Central Hospital 咸阳市中心医院'), (23406, 'https://ror.org/042ga5208', 'es', 1, 'https://ror.org/042ga5208 Las Campanas Observatory'), (23407, 'https://ror.org/042gckq23', 'en', 1, 'https://ror.org/042gckq23 Peruvian Union University Universidad Peruana Unión'), (23408, 'https://ror.org/042ge2m79', 'no_lang_code', 1, 'https://ror.org/042ge2m79 OptoNet (United States)'), (23409, 'https://ror.org/042jnea65', 'en', 1, 'https://ror.org/042jnea65 Institute of Agricultural Economics and Information'), (23410, 'https://ror.org/042ry7b85', 'en', 1, 'https://ror.org/042ry7b85 Shanxi Provincial Children''s Hospital 山西省妇幼保健院'), (23411, 'https://ror.org/042vkw919', 'no_lang_code', 1, 'https://ror.org/042vkw919 Oxis Energy (United Kingdom)'), (23412, 'https://ror.org/042x9qq51', 'en', 1, 'https://ror.org/042x9qq51 University of Zalingei جامعة زالنجي'), (23413, 'https://ror.org/042xekv98', 'es', 1, 'https://ror.org/042xekv98 Universidad Tamaulipeca'), (23414, 'https://ror.org/042xfk211', 'es', 1, 'https://ror.org/042xfk211 Universidad Politécnica de Baja California'), (23415, 'https://ror.org/042xxm757', 'no_lang_code', 1, 'https://ror.org/042xxm757 Viotech Communications (France)'), (23416, 'https://ror.org/042y9a646', 'en', 1, 'https://ror.org/042y9a646 International Institute for Higher Education in Morocco'), (23417, 'https://ror.org/042yy9v72', 'es', 1, 'https://ror.org/042yy9v72 Fundación Tecnológica Antonio de Arévalo'), (23418, 'https://ror.org/0431avj27', 'en', 1, 'https://ror.org/0431avj27 National University of Education Enrique Guzmán y Valle Universidad Nacional de Educación Enrique Guzmán y Valle'), (23419, 'https://ror.org/0431htb77', 'no_lang_code', 1, 'https://ror.org/0431htb77 Vukov Extra (Slovakia)'), (23420, 'https://ror.org/0431re516', 'no_lang_code', 1, 'https://ror.org/0431re516 Ylec Consultants'), (23421, 'https://ror.org/0432yv872', 'fr', 1, 'https://ror.org/0432yv872 Université Pédagogique Nationale'), (23422, 'https://ror.org/04331z002', 'es', 1, 'https://ror.org/04331z002 Corporación Universitaria Iberoamericana'), (23423, 'https://ror.org/04344z734', 'no_lang_code', 1, 'https://ror.org/04344z734 Romax Technology (United Kingdom)'), (23424, 'https://ror.org/0436f0775', 'en', 1, 'https://ror.org/0436f0775 Ashford Hospital'), (23425, 'https://ror.org/0436xg366', 'es', 1, 'https://ror.org/0436xg366 Instituto Universitario de Ciencias de la Salud - Fundación Héctor A. Barceló'), (23426, 'https://ror.org/043753e82', 'no_lang_code', 1, 'https://ror.org/043753e82 Sarmap (Switzerland)'), (23427, 'https://ror.org/04382kq29', 'es', 1, 'https://ror.org/04382kq29 Universidad Nacional Experimental de los Llanos Occidentales Ezequiel Zamora'), (23428, 'https://ror.org/04389kb95', 'en', 1, 'https://ror.org/04389kb95 Queen Mary''s Hospital'), (23429, 'https://ror.org/043djj103', 'en', 1, 'https://ror.org/043djj103 Goole and District Hospital'), (23430, 'https://ror.org/043e0fg15', 'en', 1, 'https://ror.org/043e0fg15 Chartered Institute of Marketing Ghana'), (23431, 'https://ror.org/043eemy38', 'pt', 1, 'https://ror.org/043eemy38 Centro Universitário de Formiga'), (23432, 'https://ror.org/043f17j87', 'no_lang_code', 1, 'https://ror.org/043f17j87 Pre Chasm Research Limited (United Kingdom)'), (23433, 'https://ror.org/043gn8060', 'en', 1, 'https://ror.org/043gn8060 Adventist University of Haiti Université Adventiste d''Haïti'), (23434, 'https://ror.org/043h8xk50', 'es', 1, 'https://ror.org/043h8xk50 Universidad Maya'), (23435, 'https://ror.org/043hwx747', 'no_lang_code', 1, 'https://ror.org/043hwx747 Proteome Sciences (United Kingdom)'), (23436, 'https://ror.org/043kgww95', 'en', 1, 'https://ror.org/043kgww95 Fowey Hospital'), (23437, 'https://ror.org/043kj4v41', 'en', 1, 'https://ror.org/043kj4v41 William F Ryan Community Health Center'), (23438, 'https://ror.org/043tekr24', 'en', 1, 'https://ror.org/043tekr24 Skipton General Hospital'), (23439, 'https://ror.org/043tt0v89', 'en', 1, 'https://ror.org/043tt0v89 Calderstones Hospital'), (23440, 'https://ror.org/043vxnh96', 'en', 1, 'https://ror.org/043vxnh96 Universidade de Cruz Alta University of Cruz Alta'), (23441, 'https://ror.org/043xyyp36', 'en', 1, 'https://ror.org/043xyyp36 Bethesda University'), (23442, 'https://ror.org/043yfh051', 'de', 1, 'https://ror.org/043yfh051 Prof. Hess Kinderklinik'), (23443, 'https://ror.org/043z5qa52', 'en', 1, 'https://ror.org/043z5qa52 Lead City University'), (23444, 'https://ror.org/043zhb260', 'en', 1, 'https://ror.org/043zhb260 Buxton Hospital'), (23445, 'https://ror.org/0440cy367', 'no_lang_code', 1, 'https://ror.org/0440cy367 University of Liberia'), (23446, 'https://ror.org/0441qm375', 'no_lang_code', 1, 'https://ror.org/0441qm375 Meteotest (Switzerland)'), (23447, 'https://ror.org/04454sk28', 'no_lang_code', 1, 'https://ror.org/04454sk28 Aer Lingus (Ireland)'), (23448, 'https://ror.org/0446qvy77', 'en', 1, 'https://ror.org/0446qvy77 Fuji Heavy Industries Health Insurance Society Ota Memorial Hospital 総合太田病院'), (23449, 'https://ror.org/044bdx604', 'en', 1, 'https://ror.org/044bdx604 Tokyo University of Information Sciences 東京情報大学'), (23450, 'https://ror.org/044ce3082', 'pt', 1, 'https://ror.org/044ce3082 Universidade São Tomás de Moçambique'), (23451, 'https://ror.org/044dman78', 'en', 1, 'https://ror.org/044dman78 National Counter Terrorism Security Office'), (23452, 'https://ror.org/044evsy53', 'es', 1, 'https://ror.org/044evsy53 Universidad San Pablo'), (23453, 'https://ror.org/044g0p936', 'pt', 1, 'https://ror.org/044g0p936 Centro Universitário do Maranhão University Centre of Maranhão'), (23454, 'https://ror.org/044g7e667', 'no_lang_code', 1, 'https://ror.org/044g7e667 R-Biopharm (United Kingdom)'), (23455, 'https://ror.org/044hjch50', 'no_lang_code', 1, 'https://ror.org/044hjch50 Phasex (United States)'), (23456, 'https://ror.org/044ht0n88', 'en', 1, 'https://ror.org/044ht0n88 State Hydrological Institute федеральное государственное бюджетное учреждение Государственный гидрологический институт'), (23457, 'https://ror.org/044j72x94', 'no_lang_code', 1, 'https://ror.org/044j72x94 PolyGene'), (23458, 'https://ror.org/044jexg93', 'es', 1, 'https://ror.org/044jexg93 Universidad Contemporánea'), (23459, 'https://ror.org/044jjd544', 'nl', 1, 'https://ror.org/044jjd544 Dedicon, Federatie Nederlandse Blindenbibliotheken'), (23460, 'https://ror.org/044pany34', 'en', 1, 'https://ror.org/044pany34 Sanming University 三明学院'), (23461, 'https://ror.org/044q21j42', 'en', 1, 'https://ror.org/044q21j42 Ureshino Medical Center 嬉野医療センター'), (23462, 'https://ror.org/044q54x11', 'en', 1, 'https://ror.org/044q54x11 Globe University'), (23463, 'https://ror.org/044qmzh69', 'pt', 1, 'https://ror.org/044qmzh69 Núcleo Interactivo de Astronomia'), (23464, 'https://ror.org/044sckz61', 'no_lang_code', 1, 'https://ror.org/044sckz61 Matsushiro Seismological Observatory 気象庁松代地震観測所'), (23465, 'https://ror.org/044sxgs38', 'en', 1, 'https://ror.org/044sxgs38 National Foundation for Educational Research'), (23466, 'https://ror.org/044t6xx36', 'en', 1, 'https://ror.org/044t6xx36 Chippenham Community Hospital'), (23467, 'https://ror.org/044vb6b87', 'no_lang_code', 1, 'https://ror.org/044vb6b87 Polymark (Netherlands)'), (23468, 'https://ror.org/044wgre19', 'no_lang_code', 1, 'https://ror.org/044wgre19 Octane Wireless (United States)'), (23469, 'https://ror.org/044wksr86', 'no_lang_code', 1, 'https://ror.org/044wksr86 Okayama Saidaiji Hospital 岡山西大寺病院'), (23470, 'https://ror.org/044ypyq07', 'es', 1, 'https://ror.org/044ypyq07 Universidad Hispana'), (23471, 'https://ror.org/044zf4559', 'no_lang_code', 1, 'https://ror.org/044zf4559 Food Machinery Company (United Kingdom)'), (23472, 'https://ror.org/044zpm314', 'no_lang_code', 1, 'https://ror.org/044zpm314 PolarOnyx (United States)'), (23473, 'https://ror.org/044zqfh96', 'no_lang_code', 1, 'https://ror.org/044zqfh96 Oxford Metrics (United Kingdom)'), (23474, 'https://ror.org/0451w9n55', 'en', 1, 'https://ror.org/0451w9n55 Polytechnical University of Kabul دکابل پولی تخنیک پوهنتون'), (23475, 'https://ror.org/04553p226', 'es', 1, 'https://ror.org/04553p226 Instituto Técnico Agrícola'), (23476, 'https://ror.org/0455vfz21', 'en', 1, 'https://ror.org/0455vfz21 Women''s Health Research Institute'), (23477, 'https://ror.org/04570b518', 'en', 1, 'https://ror.org/04570b518 World Conservation Monitoring Centre'), (23478, 'https://ror.org/0457fah73', 'en', 1, 'https://ror.org/0457fah73 Cromer Hospital'), (23479, 'https://ror.org/0457w0821', 'en', 1, 'https://ror.org/0457w0821 OW2 Consortium'), (23480, 'https://ror.org/04581yq69', 'en', 1, 'https://ror.org/04581yq69 Special Olympics'), (23481, 'https://ror.org/045a17r54', 'no_lang_code', 1, 'https://ror.org/045a17r54 Xyken (United States)'), (23482, 'https://ror.org/045bf1m77', 'no_lang_code', 1, 'https://ror.org/045bf1m77 CJR Propulsion (United Kingdom)'), (23483, 'https://ror.org/045ct3157', 'no_lang_code', 1, 'https://ror.org/045ct3157 Zabala Innovation Consulting (Spain)'), (23484, 'https://ror.org/045e6gk66', 'no_lang_code', 1, 'https://ror.org/045e6gk66 Queues Enforth Development (United States)'), (23485, 'https://ror.org/045f0ws19', 'en', 1, 'https://ror.org/045f0ws19 Universities of Giessen and Marburg Lung Center'), (23486, 'https://ror.org/045gpd643', 'en', 1, 'https://ror.org/045gpd643 Volunteers of America Oregon'), (23487, 'https://ror.org/045k6gy12', 'es', 1, 'https://ror.org/045k6gy12 Instituto Universitario Anglo Español'), (23488, 'https://ror.org/045mkqe52', 'en', 1, 'https://ror.org/045mkqe52 Centro Universitário de Brasília University Center of Brasília'), (23489, 'https://ror.org/045n1e339', 'en', 1, 'https://ror.org/045n1e339 Mile End Hospital'), (23490, 'https://ror.org/045na4q63', 'no_lang_code', 1, 'https://ror.org/045na4q63 Nemetschek (Germany)'), (23491, 'https://ror.org/045pr1e07', 'no_lang_code', 1, 'https://ror.org/045pr1e07 Vitalus Nutrition (Canada)'), (23492, 'https://ror.org/045r28721', 'en', 1, 'https://ror.org/045r28721 Newham University Hospital'), (23493, 'https://ror.org/045rvh172', 'en', 1, 'https://ror.org/045rvh172 Cairo Higher Institute'), (23494, 'https://ror.org/045rztm55', 'en', 1, 'https://ror.org/045rztm55 University of Sierra Leone'), (23495, 'https://ror.org/045yxgc38', 'en', 1, 'https://ror.org/045yxgc38 The Beaumont Hospital'), (23496, 'https://ror.org/045z19p32', 'no_lang_code', 1, 'https://ror.org/045z19p32 Virtual Trip (Greece)'), (23497, 'https://ror.org/045zca936', 'no_lang_code', 1, 'https://ror.org/045zca936 Mosaic Films (United Kingdom)'), (23498, 'https://ror.org/045zk7t12', 'en', 1, 'https://ror.org/045zk7t12 Académie internationale mohammed vi de l''aviation civile International Academy Mohammed VI of Civil Aviation أكاديمية محمد السادس الدولية للطيران المدني'), (23499, 'https://ror.org/04606qq63', 'es', 1, 'https://ror.org/04606qq63 Universidad Nacional Evangelica'), (23500, 'https://ror.org/0460r5302', 'en', 1, 'https://ror.org/0460r5302 MaRS Innovation'), (23501, 'https://ror.org/046107172', 'en', 1, 'https://ror.org/046107172 Providence Center'), (23502, 'https://ror.org/0463j8f36', 'en', 1, 'https://ror.org/0463j8f36 Spire Regency Hospital'), (23503, 'https://ror.org/0463w2783', 'en', 1, 'https://ror.org/0463w2783 Confederation of British Metalforming'), (23504, 'https://ror.org/0465c2k31', 'en', 1, 'https://ror.org/0465c2k31 Bupa Cromwell Hospital'), (23505, 'https://ror.org/0465dww62', 'no_lang_code', 1, 'https://ror.org/0465dww62 Acentia (United States)'), (23506, 'https://ror.org/0465f2g39', 'no_lang_code', 1, 'https://ror.org/0465f2g39 RBC Investor & Treasury Services (France)'), (23507, 'https://ror.org/0466m5p44', 'no_lang_code', 1, 'https://ror.org/0466m5p44 ACOEM (France)'), (23508, 'https://ror.org/0468knt27', 'no_lang_code', 1, 'https://ror.org/0468knt27 Worldsensing (Spain)'), (23509, 'https://ror.org/0468v2w64', 'fr', 1, 'https://ror.org/0468v2w64 Union des Industries et des Métiers de la Métallurgie Union of Metallurgies Industries'), (23510, 'https://ror.org/046aa8x19', 'pt', 1, 'https://ror.org/046aa8x19 Centro Universitário de União da Vitória'), (23511, 'https://ror.org/046c75y25', 'no_lang_code', 1, 'https://ror.org/046c75y25 Witt Industrial Electronics (Germany)'), (23512, 'https://ror.org/046dsb945', 'no_lang_code', 1, 'https://ror.org/046dsb945 Cicor (Germany)'); INSERT INTO `rors` VALUES (23513, 'https://ror.org/046e9gn41', 'no_lang_code', 1, 'https://ror.org/046e9gn41 Offshore Monitoring (Cyprus)'), (23514, 'https://ror.org/046f4dc56', 'en', 1, 'https://ror.org/046f4dc56 Dynastee'), (23515, 'https://ror.org/046gbzb64', 'no_lang_code', 1, 'https://ror.org/046gbzb64 A.P. Møller–Mærsk A/S Maersk (Denmark)'), (23516, 'https://ror.org/046k0vn34', 'no_lang_code', 1, 'https://ror.org/046k0vn34 SKF (United Kingdom)'), (23517, 'https://ror.org/046k1jz27', 'no_lang_code', 1, 'https://ror.org/046k1jz27 Troux Technologies (Norway)'), (23518, 'https://ror.org/046m09909', 'no_lang_code', 1, 'https://ror.org/046m09909 Venture Chemicals (United States)'), (23519, 'https://ror.org/046nf9z89', 'en', 1, 'https://ror.org/046nf9z89 Golestan University دانشگاه گلستان'), (23520, 'https://ror.org/046np5693', 'en', 1, 'https://ror.org/046np5693 Metropolitan University Universidad Metropolitana'), (23521, 'https://ror.org/046rmzh87', 'en', 1, 'https://ror.org/046rmzh87 Bensham Hospital'), (23522, 'https://ror.org/046vjzm79', 'es', 1, 'https://ror.org/046vjzm79 Universidad Gastón Dachary'), (23523, 'https://ror.org/046w1bq45', 'en', 1, 'https://ror.org/046w1bq45 Skellefteå Municipality'), (23524, 'https://ror.org/046wsbf61', 'en', 1, 'https://ror.org/046wsbf61 St Michael''s Hospital'), (23525, 'https://ror.org/046xg8y70', 'fr', 1, 'https://ror.org/046xg8y70 École Polytechnique de Thiès'), (23526, 'https://ror.org/046xprq08', 'no_lang_code', 1, 'https://ror.org/046xprq08 Management Support Technology (United States)'), (23527, 'https://ror.org/04700yz30', 'fr', 1, 'https://ror.org/04700yz30 Université libre des Pays des Grands Lacs'), (23528, 'https://ror.org/04709y508', 'no_lang_code', 1, 'https://ror.org/04709y508 Seagate (United Kingdom)'), (23529, 'https://ror.org/0470n4p24', 'en', 1, 'https://ror.org/0470n4p24 Peninsula College'), (23530, 'https://ror.org/04727qm97', 'no_lang_code', 1, 'https://ror.org/04727qm97 Nomor Research (Germany)'), (23531, 'https://ror.org/0472pbn77', 'no_lang_code', 1, 'https://ror.org/0472pbn77 NTN-SNR (France)'), (23532, 'https://ror.org/047353127', 'fr', 1, 'https://ror.org/047353127 Institut Supérieur Pédagogique de Gitwe'), (23533, 'https://ror.org/0473emp75', 'no_lang_code', 1, 'https://ror.org/0473emp75 Moor Instruments (United Kingdom)'), (23534, 'https://ror.org/0473v0343', 'es', 1, 'https://ror.org/0473v0343 Center of Higher University Studies Centro de Estudios Superiores Universitarios'), (23535, 'https://ror.org/0474evh54', 'en', 1, 'https://ror.org/0474evh54 Tioga County Partnership for Community Health'), (23536, 'https://ror.org/0474gxy81', 'en', 1, 'https://ror.org/0474gxy81 Universidad de La Salle (Bogotá) University of La Salle'), (23537, 'https://ror.org/0475dfc79', 'no_lang_code', 1, 'https://ror.org/0475dfc79 Stavanger Installasjon (Norway)'), (23538, 'https://ror.org/0476nv437', 'no_lang_code', 1, 'https://ror.org/0476nv437 Sinhatech (United States)'), (23539, 'https://ror.org/04776hp32', 'en', 1, 'https://ror.org/04776hp32 Prospectors & Developers Association of Canada'), (23540, 'https://ror.org/047865819', 'fr', 1, 'https://ror.org/047865819 NanoQuébec (Canada)'), (23541, 'https://ror.org/04789m930', 'no_lang_code', 1, 'https://ror.org/04789m930 SNL (Sweden)'), (23542, 'https://ror.org/047a24r47', 'es', 1, 'https://ror.org/047a24r47 Universidad Mariano Galvez, Universidad Mariano Gálvez de Guatemala'), (23543, 'https://ror.org/047bp1713', 'en', 1, 'https://ror.org/047bp1713 North University of China 中北大学'), (23544, 'https://ror.org/047dkfr85', 'en', 1, 'https://ror.org/047dkfr85 South East Texas Council on Alcohol and Drug Abuse'), (23545, 'https://ror.org/047dmk096', 'en', 1, 'https://ror.org/047dmk096 Metro Wellness and Community Centers'), (23546, 'https://ror.org/047dr9v36', 'en', 1, 'https://ror.org/047dr9v36 Network Human Services'), (23547, 'https://ror.org/047dz7p79', 'fr', 1, 'https://ror.org/047dz7p79 Océanopolis'), (23548, 'https://ror.org/047e7td90', 'fr', 1, 'https://ror.org/047e7td90 École Supérieure d''Informatique Appliquée'), (23549, 'https://ror.org/047ej6x83', 'no_lang_code', 1, 'https://ror.org/047ej6x83 Within Technologies (United Kingdom)'), (23550, 'https://ror.org/047feaw16', 'en', 1, 'https://ror.org/047feaw16 Shrewsbury and Telford Hospital NHS Trust'), (23551, 'https://ror.org/047fp1735', 'en', 1, 'https://ror.org/047fp1735 Mineral Products Association'), (23552, 'https://ror.org/047gmeb26', 'no_lang_code', 1, 'https://ror.org/047gmeb26 VeraChem (United States)'), (23553, 'https://ror.org/047hq4296', 'es', 1, 'https://ror.org/047hq4296 Universidad Valle del Grijalva'), (23554, 'https://ror.org/047kyg834', 'en', 1, 'https://ror.org/047kyg834 Universidad de Guayaquil University of Guayaquil'), (23555, 'https://ror.org/047m46r71', 'no_lang_code', 1, 'https://ror.org/047m46r71 Oxford Technologies (United Kingdom)'), (23556, 'https://ror.org/047qtjs73', 'es', 1, 'https://ror.org/047qtjs73 Universidad Metropolitana Latin Campus'), (23557, 'https://ror.org/047t0bc17', 'no_lang_code', 1, 'https://ror.org/047t0bc17 Moravek Biochemicals (United States)'), (23558, 'https://ror.org/047tgv290', 'en', 1, 'https://ror.org/047tgv290 Chuo Kikuu cha Kikristo cha Pan Africa Pan Africa Christian University'), (23559, 'https://ror.org/047vkpj90', 'en', 1, 'https://ror.org/047vkpj90 San Cristóbal of Huamanga University Universidad Nacional de San Cristóbal de Huamanga'), (23560, 'https://ror.org/047vmzn25', 'no_lang_code', 1, 'https://ror.org/047vmzn25 Digital Equipment (Germany)'), (23561, 'https://ror.org/047vq0f11', 'fr', 1, 'https://ror.org/047vq0f11 Université du Sahel'), (23562, 'https://ror.org/047xrr705', 'en', 1, 'https://ror.org/047xrr705 Peruvian University of Applied Sciences Universidad Peruana de Ciencias Aplicadas'), (23563, 'https://ror.org/047xxr477', 'es', 1, 'https://ror.org/047xxr477 Institución Universitaria Salazar y Herrera'), (23564, 'https://ror.org/0480jab46', 'fr', 1, 'https://ror.org/0480jab46 Institut International des Assurances'), (23565, 'https://ror.org/0480vrj36', 'en', 1, 'https://ror.org/0480vrj36 Surrey and Sussex Healthcare NHS Trust'), (23566, 'https://ror.org/04811ff34', 'en', 1, 'https://ror.org/04811ff34 Public Entity Risk Institute'), (23567, 'https://ror.org/0481cg432', 'en', 1, 'https://ror.org/0481cg432 Pandit Ravishankar Shukla University पंडित रविशंकर शुक्ल विश्वविद्यालय'), (23568, 'https://ror.org/0482ajw49', 'en', 1, 'https://ror.org/0482ajw49 Ghana Baptist University College'), (23569, 'https://ror.org/0483w8753', 'no_lang_code', 1, 'https://ror.org/0483w8753 Silex Microsystems (Sweden)'), (23570, 'https://ror.org/0485xdc86', 'no_lang_code', 1, 'https://ror.org/0485xdc86 Texas MicroPower (United States)'), (23571, 'https://ror.org/0485yr844', 'en', 1, 'https://ror.org/0485yr844 Bellatrix Astronomical Observatory'), (23572, 'https://ror.org/0486mwv16', 'en', 1, 'https://ror.org/0486mwv16 Portbase'), (23573, 'https://ror.org/048919h66', 'en', 1, 'https://ror.org/048919h66 North Middlesex University Hospital NHS Trust'), (23574, 'https://ror.org/0489rhw98', 'no_lang_code', 1, 'https://ror.org/0489rhw98 Sintec (Italy)'), (23575, 'https://ror.org/0489xkg05', 'no_lang_code', 1, 'https://ror.org/0489xkg05 Traficon (Finland)'), (23576, 'https://ror.org/048aa3w78', 'fr', 1, 'https://ror.org/048aa3w78 Institut Supérieur Agronomique et Vétérinaire Valéry Giscard d''Estaing'), (23577, 'https://ror.org/048aq6484', 'no_lang_code', 1, 'https://ror.org/048aq6484 Intersand (Canada)'), (23578, 'https://ror.org/048b34d51', 'en', 1, 'https://ror.org/048b34d51 National Hospital for Neurology and Neurosurgery'), (23579, 'https://ror.org/048d6we82', 'no_lang_code', 1, 'https://ror.org/048d6we82 TSM Control Systems (Ireland)'), (23580, 'https://ror.org/048e56r52', 'no_lang_code', 1, 'https://ror.org/048e56r52 NexusAB (United Kingdom)'), (23581, 'https://ror.org/048g63s89', 'no_lang_code', 1, 'https://ror.org/048g63s89 Soundprint Media Center'), (23582, 'https://ror.org/048j6y202', 'no_lang_code', 1, 'https://ror.org/048j6y202 Novatea (Italy)'), (23583, 'https://ror.org/048jjtk40', 'no_lang_code', 1, 'https://ror.org/048jjtk40 Youth Radio (United States)'), (23584, 'https://ror.org/048knqr75', 'en', 1, 'https://ror.org/048knqr75 Bicester Community Hospital'), (23585, 'https://ror.org/048kzgs94', 'no_lang_code', 1, 'https://ror.org/048kzgs94 Orla Protein Technologies (United Kingdom)'), (23586, 'https://ror.org/048maqj86', 'no_lang_code', 1, 'https://ror.org/048maqj86 Stone Ridge Technology (United States)'), (23587, 'https://ror.org/048mdnr65', 'no_lang_code', 1, 'https://ror.org/048mdnr65 Nortis (United States)'), (23588, 'https://ror.org/048q8cd91', 'en', 1, 'https://ror.org/048q8cd91 Omaha Nation Community Response Team'), (23589, 'https://ror.org/048s0v676', 'en', 1, 'https://ror.org/048s0v676 Abu Dhabi Falcon Hospital مستشفى أبو ظبي للصقور'), (23590, 'https://ror.org/048s2rn92', 'en', 1, 'https://ror.org/048s2rn92 United States Naval Observatory'), (23591, 'https://ror.org/048sa9h54', 'en', 1, 'https://ror.org/048sa9h54 John Black Day Hospital'), (23592, 'https://ror.org/048t5j590', 'no_lang_code', 1, 'https://ror.org/048t5j590 Seedri Puukool'), (23593, 'https://ror.org/048t8tm52', 'no_lang_code', 1, 'https://ror.org/048t8tm52 Q Bioanalytic (Germany)'), (23594, 'https://ror.org/048tcp333', 'no_lang_code', 1, 'https://ror.org/048tcp333 Polysolar (United Kingdom)'), (23595, 'https://ror.org/048tcym87', 'no_lang_code', 1, 'https://ror.org/048tcym87 Treibacher (Austria)'), (23596, 'https://ror.org/048v4wb07', 'en', 1, 'https://ror.org/048v4wb07 Minnesota Association for Children''s Mental Health'), (23597, 'https://ror.org/048vvpr19', 'en', 1, 'https://ror.org/048vvpr19 Felixstowe Community Hospital'), (23598, 'https://ror.org/048xkyz52', 'no_lang_code', 1, 'https://ror.org/048xkyz52 Umbria Filler (Italy)'), (23599, 'https://ror.org/048yh2980', 'es', 1, 'https://ror.org/048yh2980 Universidad Villa Rica'), (23600, 'https://ror.org/048yn7628', 'en', 1, 'https://ror.org/048yn7628 Harz University of Applied Sciences Hochschule Harz'), (23601, 'https://ror.org/0490r6s77', 'en', 1, 'https://ror.org/0490r6s77 Tapestry Institute'), (23602, 'https://ror.org/0493fng90', 'no_lang_code', 1, 'https://ror.org/0493fng90 Rosti (Denmark)'), (23603, 'https://ror.org/0494t4v58', 'no_lang_code', 1, 'https://ror.org/0494t4v58 Synthesites (Greece)'), (23604, 'https://ror.org/0497ykj02', 'no_lang_code', 1, 'https://ror.org/0497ykj02 Simcon kunststofftechnische Software (Germany)'), (23605, 'https://ror.org/04980c792', 'no_lang_code', 1, 'https://ror.org/04980c792 MOL Group (Hungary)'), (23606, 'https://ror.org/0498fb204', 'es', 1, 'https://ror.org/0498fb204 Instituto Nacional de Educación Superior Dr. Raúl Peña'), (23607, 'https://ror.org/049cnc419', 'no_lang_code', 1, 'https://ror.org/049cnc419 Stemina Biomarker Discovery (United States)'), (23608, 'https://ror.org/049d3ch40', 'en', 1, 'https://ror.org/049d3ch40 Kidderminster Hospital and Treatment Centre'), (23609, 'https://ror.org/049f03n31', 'en', 1, 'https://ror.org/049f03n31 Meridian Community College'), (23610, 'https://ror.org/049q27a79', 'en', 1, 'https://ror.org/049q27a79 Dereham Hospital'), (23611, 'https://ror.org/049r7sn84', 'es', 1, 'https://ror.org/049r7sn84 Universidad Rafael Belloso Chacín'), (23612, 'https://ror.org/049s20792', 'en', 1, 'https://ror.org/049s20792 European Committee of Environmental Technology Suppliers Associations'), (23613, 'https://ror.org/049sdnw14', 'es', 1, 'https://ror.org/049sdnw14 Universidad Veritas'), (23614, 'https://ror.org/049ta3d96', 'en', 1, 'https://ror.org/049ta3d96 Institute For Leadership And Communication Studies'), (23615, 'https://ror.org/049tfqy31', 'es', 1, 'https://ror.org/049tfqy31 Universidad México Americana del Norte'), (23616, 'https://ror.org/049wrh220', 'no_lang_code', 1, 'https://ror.org/049wrh220 Hashimoto Municipal Hospital 橋本市民病院'), (23617, 'https://ror.org/049xny288', 'no_lang_code', 1, 'https://ror.org/049xny288 SERE-Tech Innovation (United Kingdom)'), (23618, 'https://ror.org/049yar178', 'en', 1, 'https://ror.org/049yar178 South Carolina Department of Education'), (23619, 'https://ror.org/04a0xmf69', 'en', 1, 'https://ror.org/04a0xmf69 General Hospital of Nafplio Γενικό Νοσοκομείο Αργολίδας'), (23620, 'https://ror.org/04a2tdz26', 'no_lang_code', 1, 'https://ror.org/04a2tdz26 TheraTarget (United States)'), (23621, 'https://ror.org/04a3htt14', 'it', 1, 'https://ror.org/04a3htt14 Consorzio Interuniversitario Fisica Spaziale'), (23622, 'https://ror.org/04a4v0j95', 'en', 1, 'https://ror.org/04a4v0j95 National Museum of Natural History Национален природонаучен музей'), (23623, 'https://ror.org/04a52t496', 'no_lang_code', 1, 'https://ror.org/04a52t496 Teleprime (United States)'), (23624, 'https://ror.org/04aaq2k96', 'en', 1, 'https://ror.org/04aaq2k96 Martin University'), (23625, 'https://ror.org/04abrpb32', 'es', 1, 'https://ror.org/04abrpb32 Universidad Norbert Wiener'), (23626, 'https://ror.org/04adde783', 'no_lang_code', 1, 'https://ror.org/04adde783 Unisign (Netherlands)'), (23627, 'https://ror.org/04aen0982', 'fr', 1, 'https://ror.org/04aen0982 Centre Africain d''Études Supérieures en Gestion'), (23628, 'https://ror.org/04afz7s27', 'pt', 1, 'https://ror.org/04afz7s27 Centro Universitário Barriga Verde'), (23629, 'https://ror.org/04ag0vk97', 'no_lang_code', 1, 'https://ror.org/04ag0vk97 Stichting AlmereGrid'), (23630, 'https://ror.org/04ahb7r80', 'no_lang_code', 1, 'https://ror.org/04ahb7r80 Chienkuo Technology University 建國科技大學'), (23631, 'https://ror.org/04amrcw69', 'en', 1, 'https://ror.org/04amrcw69 Central Research Institute of Ferrous Metallurgy I P Bardina Центральный научно–исследовательский институт черной металлургии им. И.П. Бардина'), (23632, 'https://ror.org/04amyvf24', 'en', 1, 'https://ror.org/04amyvf24 St Peter''s Hospital'), (23633, 'https://ror.org/04ar26726', 'en', 1, 'https://ror.org/04ar26726 Wesley College'), (23634, 'https://ror.org/04arhmz60', 'en', 1, 'https://ror.org/04arhmz60 Heritage Christian University'), (23635, 'https://ror.org/04arj7s97', 'fr', 1, 'https://ror.org/04arj7s97 Groupe École Supérieure de Commerce de Dakar'), (23636, 'https://ror.org/04artyh12', 'no_lang_code', 1, 'https://ror.org/04artyh12 Opalux (Canada)'), (23637, 'https://ror.org/04as3by48', 'no_lang_code', 1, 'https://ror.org/04as3by48 Electricity Supply Board (United Kingdom)'), (23638, 'https://ror.org/04aszsx88', 'no_lang_code', 1, 'https://ror.org/04aszsx88 Robotronics (United States)'), (23639, 'https://ror.org/04atxr455', 'en', 1, 'https://ror.org/04atxr455 BMI Fawkham Manor Hospital'), (23640, 'https://ror.org/04avwdy85', 'en', 1, 'https://ror.org/04avwdy85 Nottinghamshire County Council'), (23641, 'https://ror.org/04avzvx04', 'en', 1, 'https://ror.org/04avzvx04 National Community Health Partners'), (23642, 'https://ror.org/04aw3a105', 'no_lang_code', 1, 'https://ror.org/04aw3a105 Vitech Systems (United States)'), (23643, 'https://ror.org/04ax1v403', 'no_lang_code', 1, 'https://ror.org/04ax1v403 Renson (Belgium)'), (23644, 'https://ror.org/04ax9w078', 'en', 1, 'https://ror.org/04ax9w078 Canadian Anthropology Society'), (23645, 'https://ror.org/04axt3e70', 'en', 1, 'https://ror.org/04axt3e70 Autonomous Intercultural University of Sinaloa Universidad Autónoma Intercultural de Sinaloa'), (23646, 'https://ror.org/04azbjd07', 'pt', 1, 'https://ror.org/04azbjd07 Centro Universitário de Sete Lagoas'), (23647, 'https://ror.org/04azdj983', 'en', 1, 'https://ror.org/04azdj983 Snow College'), (23648, 'https://ror.org/04b28td81', 'en', 1, 'https://ror.org/04b28td81 Latin University of Panama Universidad Latina de Panamá'), (23649, 'https://ror.org/04b3gg905', 'en', 1, 'https://ror.org/04b3gg905 Evesham Community Hospital'), (23650, 'https://ror.org/04b4w6n09', 'es', 1, 'https://ror.org/04b4w6n09 Universidad de las Naciones'), (23651, 'https://ror.org/04b9js332', 'es', 1, 'https://ror.org/04b9js332 Universidad de San Miguel'), (23652, 'https://ror.org/04bd41p10', 'en', 1, 'https://ror.org/04bd41p10 Bristol Homeopathic Hospital'), (23653, 'https://ror.org/04bdwem21', 'no_lang_code', 1, 'https://ror.org/04bdwem21 Energieversorgungs und Verkehrsgesellschaft Aachen (Germany)'), (23654, 'https://ror.org/04be2dn15', 'en', 1, 'https://ror.org/04be2dn15 University of Science and Technology Bannu بنوں یونیورسٹی آف سائنس اینڈ ٹیکنالوجی'), (23655, 'https://ror.org/04be5z192', 'es', 1, 'https://ror.org/04be5z192 Universidad Bíblica Latinoamericana'), (23656, 'https://ror.org/04bhtgq69', 'no_lang_code', 1, 'https://ror.org/04bhtgq69 Thien eDrives (Austria)'), (23657, 'https://ror.org/04bhzjf61', 'en', 1, 'https://ror.org/04bhzjf61 Minnesota Department of Education'), (23658, 'https://ror.org/04bjr9m61', 'es', 1, 'https://ror.org/04bjr9m61 Manuela Beltrán University Universidad Manuela Beltrán'), (23659, 'https://ror.org/04bk3rn37', 'en', 1, 'https://ror.org/04bk3rn37 Lytham Hospital'), (23660, 'https://ror.org/04bkge991', 'no_lang_code', 1, 'https://ror.org/04bkge991 Next Technology Tecnotessile (Italy)'), (23661, 'https://ror.org/04bm0js74', 'no_lang_code', 1, 'https://ror.org/04bm0js74 Cristal (United Kingdom)'), (23662, 'https://ror.org/04bn7c421', 'no_lang_code', 1, 'https://ror.org/04bn7c421 Trivella (Italy)'), (23663, 'https://ror.org/04bp6s359', 'en', 1, 'https://ror.org/04bp6s359 Association of European Science and Technology Transfer Professionals'), (23664, 'https://ror.org/04bpsn575', 'en', 1, 'https://ror.org/04bpsn575 Metropolitan University of Technology Universidad Tecnológica Metropolitana'), (23665, 'https://ror.org/04bqa8v55', 'en', 1, 'https://ror.org/04bqa8v55 Bowmere Hospital'), (23666, 'https://ror.org/04bs93498', 'en', 1, 'https://ror.org/04bs93498 North Country Health Consortium'), (23667, 'https://ror.org/04bssxt85', 'no_lang_code', 1, 'https://ror.org/04bssxt85 Universal Technology Corporation (United States)'), (23668, 'https://ror.org/04btmx930', 'en', 1, 'https://ror.org/04btmx930 Kaiser Permanente San Leandro Medical Center'), (23669, 'https://ror.org/04btw2k35', 'no_lang_code', 1, 'https://ror.org/04btw2k35 Reagecon (Ireland)'), (23670, 'https://ror.org/04bwwvv47', 'es', 1, 'https://ror.org/04bwwvv47 National Police of Honduras Policía Nacional de Honduras'), (23671, 'https://ror.org/04c1jfd27', 'en', 1, 'https://ror.org/04c1jfd27 Substance Abuse Free Environment'), (23672, 'https://ror.org/04c2yfj62', 'no_lang_code', 1, 'https://ror.org/04c2yfj62 Precision BioLogic (Canada)'), (23673, 'https://ror.org/04c5em741', 'en', 1, 'https://ror.org/04c5em741 Wigton Community Hospital'), (23674, 'https://ror.org/04c5rqn31', 'no_lang_code', 1, 'https://ror.org/04c5rqn31 Projection Plasma Système (France)'), (23675, 'https://ror.org/04c7brx88', 'es', 1, 'https://ror.org/04c7brx88 Centro Universitario de Coatzacoalcos'), (23676, 'https://ror.org/04c97xg15', 'no_lang_code', 1, 'https://ror.org/04c97xg15 Modular Robotics (United States)'), (23677, 'https://ror.org/04caqsq71', 'es', 1, 'https://ror.org/04caqsq71 Universidad Marista de Guadalajara'), (23678, 'https://ror.org/04cat5h68', 'fr', 1, 'https://ror.org/04cat5h68 Institut des Hautes Études de Management Institute for Advanced Studies in Management'), (23679, 'https://ror.org/04cb36z24', 'ro', 1, 'https://ror.org/04cb36z24 Opinia'), (23680, 'https://ror.org/04cd78k07', 'en', 1, 'https://ror.org/04cd78k07 London Ambulance Service NHS Trust'), (23681, 'https://ror.org/04ce08670', 'no_lang_code', 1, 'https://ror.org/04ce08670 IHS Markit (Germany)'), (23682, 'https://ror.org/04ceqtd27', 'no_lang_code', 1, 'https://ror.org/04ceqtd27 Phoenix Systems (United States)'), (23683, 'https://ror.org/04cgmbd24', 'en', 1, 'https://ror.org/04cgmbd24 Pharos University in Alexandria جامعة فاروس بالإسكندرية'), (23684, 'https://ror.org/04ch7mp32', 'no_lang_code', 1, 'https://ror.org/04ch7mp32 PY Automation (France)'), (23685, 'https://ror.org/04cj88d36', 'fr', 1, 'https://ror.org/04cj88d36 Institut National de la Poste et des Technologies de l''Information et de la Communication المعهد الوطني للبريد وتكنولوجيات الإعلام والاتصال'), (23686, 'https://ror.org/04ckzt204', 'en', 1, 'https://ror.org/04ckzt204 Distrito Escolar Unificado de Tucson Tucson Unified School District'), (23687, 'https://ror.org/04cmc9894', 'en', 1, 'https://ror.org/04cmc9894 National Pedagogic University Universidad Pedagógica Nacional'), (23688, 'https://ror.org/04cmmy395', 'en', 1, 'https://ror.org/04cmmy395 Regional Centre for Mapping of Resources for Development'), (23689, 'https://ror.org/04cnaq122', 'es', 1, 'https://ror.org/04cnaq122 Universidad Madero Papaloapan'), (23690, 'https://ror.org/04cntmc13', 'en', 1, 'https://ror.org/04cntmc13 London North West Healthcare NHS Trust'), (23691, 'https://ror.org/04cqvxz08', 'no_lang_code', 1, 'https://ror.org/04cqvxz08 Signum Computer (Germany)'), (23692, 'https://ror.org/04ct9as78', 'en', 1, 'https://ror.org/04ct9as78 Jinzhou Kangning Hospital 锦州市康宁医院'), (23693, 'https://ror.org/04cte7x29', 'no_lang_code', 1, 'https://ror.org/04cte7x29 Randox (United Kingdom)'), (23694, 'https://ror.org/04cvncw24', 'no_lang_code', 1, 'https://ror.org/04cvncw24 Rinicom (United Kingdom)'), (23695, 'https://ror.org/04cw56e87', 'no_lang_code', 1, 'https://ror.org/04cw56e87 Sidasa Engineering (Spain)'), (23696, 'https://ror.org/04cyft771', 'es', 1, 'https://ror.org/04cyft771 Fundación de Estudios Superiores Universitarios de Urabá'), (23697, 'https://ror.org/04cz2yk65', 'en', 1, 'https://ror.org/04cz2yk65 Myndigheten för samhällsskydd och beredskap Swedish Civil Contingencies Agency'), (23698, 'https://ror.org/04d567260', 'en', 1, 'https://ror.org/04d567260 Protein Society'), (23699, 'https://ror.org/04d5w6769', 'en', 1, 'https://ror.org/04d5w6769 STM Association'), (23700, 'https://ror.org/04d6bgk38', 'es', 1, 'https://ror.org/04d6bgk38 Universidad del Distrito Federal'), (23701, 'https://ror.org/04d77zt55', 'en', 1, 'https://ror.org/04d77zt55 Multiprofile Hospital for Active Treatment in Neurology and Psychiatry St. Naum'), (23702, 'https://ror.org/04d78jp86', 'en', 1, 'https://ror.org/04d78jp86 Ripon Community Hospital'), (23703, 'https://ror.org/04d7nv189', 'en', 1, 'https://ror.org/04d7nv189 Wolverhampton Hospital'), (23704, 'https://ror.org/04d87jn14', 'en', 1, 'https://ror.org/04d87jn14 Royston Hospital'), (23705, 'https://ror.org/04d9b4k91', 'no_lang_code', 1, 'https://ror.org/04d9b4k91 Sciarra Laboratories'), (23706, 'https://ror.org/04da2f798', 'no_lang_code', 1, 'https://ror.org/04da2f798 Prime Photonics (United States)'), (23707, 'https://ror.org/04dabmn58', 'en', 1, 'https://ror.org/04dabmn58 Monterey Institute for Research in Astronomy'), (23708, 'https://ror.org/04danph04', 'en', 1, 'https://ror.org/04danph04 British School at Rome'), (23709, 'https://ror.org/04dbvvk55', 'en', 1, 'https://ror.org/04dbvvk55 Bingham University'), (23710, 'https://ror.org/04dcx0979', 'pt', 1, 'https://ror.org/04dcx0979 Centro Universitário Una'), (23711, 'https://ror.org/04dd14e02', 'no_lang_code', 1, 'https://ror.org/04dd14e02 Tymora Analytical Operations (United States)'), (23712, 'https://ror.org/04de4xn59', 'no_lang_code', 1, 'https://ror.org/04de4xn59 Neogen (United States)'), (23713, 'https://ror.org/04dew2c51', 'en', 1, 'https://ror.org/04dew2c51 Russian State Hydrometeorological University федеральное государственное бюджетное образовательное учреждение высшего образования Российский государственный гидрометеорологический университет'), (23714, 'https://ror.org/04dfd2922', 'en', 1, 'https://ror.org/04dfd2922 South Great Plain Regional Innovation Agency'), (23715, 'https://ror.org/04dfr7a85', 'en', 1, 'https://ror.org/04dfr7a85 Universidad de Pamplona University of Pamplona'), (23716, 'https://ror.org/04dga5e65', 'en', 1, 'https://ror.org/04dga5e65 Lifeline Hospital ലൈഫ് ലൈൻ ഹോസ്പിറ്റൽ'), (23717, 'https://ror.org/04dge0m73', 'no_lang_code', 1, 'https://ror.org/04dge0m73 Psutec (Belgium)'), (23718, 'https://ror.org/04dhsfx79', 'en', 1, 'https://ror.org/04dhsfx79 Maritime Administration of Latvia'), (23719, 'https://ror.org/04dj1dn66', 'fr', 1, 'https://ror.org/04dj1dn66 École Nationale Supérieure d''Informatique المدرسة الوطنية العليا للإعلام الألي'), (23720, 'https://ror.org/04dj4k716', 'no_lang_code', 1, 'https://ror.org/04dj4k716 S&F Systemtechnik (Germany)'), (23721, 'https://ror.org/04dj8vz80', 'en', 1, 'https://ror.org/04dj8vz80 Doncaster Gate Hospital'), (23722, 'https://ror.org/04djera41', 'es', 1, 'https://ror.org/04djera41 Universidad La Salle Costa Rica'), (23723, 'https://ror.org/04djzg510', 'no_lang_code', 1, 'https://ror.org/04djzg510 Procter & Gamble (Switzerland)'), (23724, 'https://ror.org/04dkmxz35', 'no_lang_code', 1, 'https://ror.org/04dkmxz35 NorthWestNET'), (23725, 'https://ror.org/04dkzbv90', 'en', 1, 'https://ror.org/04dkzbv90 Society for Personality and Social Psychology'), (23726, 'https://ror.org/04dmp9d90', 'no_lang_code', 1, 'https://ror.org/04dmp9d90 Teinsa (Spain)'), (23727, 'https://ror.org/04dqppw26', 'pt', 1, 'https://ror.org/04dqppw26 Instituto Superior de Ciencias de Saude'), (23728, 'https://ror.org/04dt01t51', 'en', 1, 'https://ror.org/04dt01t51 Orleans Parish School Board'), (23729, 'https://ror.org/04dthhc71', 'no_lang_code', 1, 'https://ror.org/04dthhc71 RODAX Impex (Romania)'), (23730, 'https://ror.org/04dvk9y30', 'es', 1, 'https://ror.org/04dvk9y30 Universidad Autónoma de Asunción'), (23731, 'https://ror.org/04dwrr446', 'no_lang_code', 1, 'https://ror.org/04dwrr446 Optics Technology (United States)'), (23732, 'https://ror.org/04dxan340', 'en', 1, 'https://ror.org/04dxan340 Neumont University'), (23733, 'https://ror.org/04dz93c71', 'es', 1, 'https://ror.org/04dz93c71 Universidad Central de México'), (23734, 'https://ror.org/04e0p7290', 'en', 1, 'https://ror.org/04e0p7290 Cossham Hospital'), (23735, 'https://ror.org/04e118j07', 'en', 1, 'https://ror.org/04e118j07 Dallas Baptist University'), (23736, 'https://ror.org/04e43jr31', 'no_lang_code', 1, 'https://ror.org/04e43jr31 Turris (Canada)'), (23737, 'https://ror.org/04e53n160', 'no_lang_code', 1, 'https://ror.org/04e53n160 Società Industrie Chimiche ITaliane (Italy)'), (23738, 'https://ror.org/04e5ccf06', 'en', 1, 'https://ror.org/04e5ccf06 Society for Muscle Biology'), (23739, 'https://ror.org/04e7cmm10', 'no_lang_code', 1, 'https://ror.org/04e7cmm10 Wherry & Sons (United Kingdom)'), (23740, 'https://ror.org/04e9s0y96', 'en', 1, 'https://ror.org/04e9s0y96 Partnership for Prevention'), (23741, 'https://ror.org/04ea6sw58', 'es', 1, 'https://ror.org/04ea6sw58 Universidad Nicaragüense de Estudios Humanisticos'), (23742, 'https://ror.org/04ebnqc56', 'en', 1, 'https://ror.org/04ebnqc56 Egyptian Institute of Alexandria Academy for Administration & Accounting المعهد المصري لأكاديمية الإسكندرية للإدارة والمحاسبة'), (23743, 'https://ror.org/04ecsax77', 'no_lang_code', 1, 'https://ror.org/04ecsax77 Message Pharmaceuticals (United States)'), (23744, 'https://ror.org/04edxwx83', 'en', 1, 'https://ror.org/04edxwx83 Fidélitas University Universidad Fidélitas'), (23745, 'https://ror.org/04eeanr22', 'es', 1, 'https://ror.org/04eeanr22 Universidad Unidad'), (23746, 'https://ror.org/04eeb2398', 'en', 1, 'https://ror.org/04eeb2398 Post University'), (23747, 'https://ror.org/04eerm638', 'en', 1, 'https://ror.org/04eerm638 Mercer Island School District'), (23748, 'https://ror.org/04eexme77', 'en', 1, 'https://ror.org/04eexme77 Autonomous University of Chiapas Universidad Autónoma de Chiapas'), (23749, 'https://ror.org/04eg77e50', 'no_lang_code', 1, 'https://ror.org/04eg77e50 Texas Instruments (United Kingdom)'), (23750, 'https://ror.org/04egxam60', 'fr', 1, 'https://ror.org/04egxam60 Institut Universitaire du Congo'), (23751, 'https://ror.org/04ehjk122', 'en', 1, 'https://ror.org/04ehjk122 Nottinghamshire Healthcare NHS Foundation Trust'), (23752, 'https://ror.org/04ekw4q78', 'no_lang_code', 1, 'https://ror.org/04ekw4q78 Selective Genetics (United States)'), (23753, 'https://ror.org/04en6gs70', 'es', 1, 'https://ror.org/04en6gs70 Universidad Kino'), (23754, 'https://ror.org/04ena6v85', 'es', 1, 'https://ror.org/04ena6v85 Universidad Politécnica de Chiapas'), (23755, 'https://ror.org/04enbdz15', 'no_lang_code', 1, 'https://ror.org/04enbdz15 Worldwide Fruit (United Kingdom)'), (23756, 'https://ror.org/04epv6m25', 'en', 1, 'https://ror.org/04epv6m25 Hornsea Cottage Hospital'), (23757, 'https://ror.org/04eq6c443', 'no_lang_code', 1, 'https://ror.org/04eq6c443 The Maltsters'' Association of Great Britain (United Kingdom)'), (23758, 'https://ror.org/04eq9z946', 'no_lang_code', 1, 'https://ror.org/04eq9z946 Synergetics (Belgium)'), (23759, 'https://ror.org/04eqf8242', 'no_lang_code', 1, 'https://ror.org/04eqf8242 SKF (France)'), (23760, 'https://ror.org/04es4vf69', 'no_lang_code', 1, 'https://ror.org/04es4vf69 Nemucore Medical Innovations (United States)'), (23761, 'https://ror.org/04etart85', 'no_lang_code', 1, 'https://ror.org/04etart85 Guideline Geo (Sweden)'), (23762, 'https://ror.org/04evvaq96', 'en', 1, 'https://ror.org/04evvaq96 Shirley Oaks Hospital'), (23763, 'https://ror.org/04f0w3t91', 'no_lang_code', 1, 'https://ror.org/04f0w3t91 Vestas (Netherlands)'), (23764, 'https://ror.org/04f1s1f80', 'es', 1, 'https://ror.org/04f1s1f80 Universidad Florencio del Castillo'), (23765, 'https://ror.org/04f1w1v43', 'no_lang_code', 1, 'https://ror.org/04f1w1v43 Teracom (Sweden)'), (23766, 'https://ror.org/04f254318', 'no_lang_code', 1, 'https://ror.org/04f254318 Skretting (Norway)'), (23767, 'https://ror.org/04f2wck35', 'en', 1, 'https://ror.org/04f2wck35 St. Stephen''s University'), (23768, 'https://ror.org/04f33ym80', 'no_lang_code', 1, 'https://ror.org/04f33ym80 Triple Ring Technologies (United States)'), (23769, 'https://ror.org/04f3y7g60', 'no_lang_code', 1, 'https://ror.org/04f3y7g60 Omgatech (Italy)'), (23770, 'https://ror.org/04f4nzq23', 'en', 1, 'https://ror.org/04f4nzq23 Retford Hospital'), (23771, 'https://ror.org/04f5epv26', 'en', 1, 'https://ror.org/04f5epv26 Weskoppies Psychiatric Hospital'), (23772, 'https://ror.org/04f6dd023', 'pt', 1, 'https://ror.org/04f6dd023 Centro Universitário Municipal de São José'), (23773, 'https://ror.org/04f6j3x86', 'en', 1, 'https://ror.org/04f6j3x86 Nordic Innovation'), (23774, 'https://ror.org/04f6sbc78', 'pt', 1, 'https://ror.org/04f6sbc78 Centro Universitario Fluminense'), (23775, 'https://ror.org/04f77nk30', 'en', 1, 'https://ror.org/04f77nk30 National Asian Pacific American Families Against Substance Abuse'), (23776, 'https://ror.org/04f79ny61', 'no_lang_code', 1, 'https://ror.org/04f79ny61 Symetrica Security (United Kingdom)'), (23777, 'https://ror.org/04f8bz958', 'no_lang_code', 1, 'https://ror.org/04f8bz958 Super Pulse (United States)'), (23778, 'https://ror.org/04f8nq106', 'no_lang_code', 1, 'https://ror.org/04f8nq106 PHIMECA (France)'), (23779, 'https://ror.org/04f9bf414', 'en', 1, 'https://ror.org/04f9bf414 Niger State Polytechnic'), (23780, 'https://ror.org/04f9fry73', 'no_lang_code', 1, 'https://ror.org/04f9fry73 Plassys (France)'), (23781, 'https://ror.org/04fb0yn25', 'en', 1, 'https://ror.org/04fb0yn25 The Wellington Hospital'), (23782, 'https://ror.org/04fbzsy15', 'no_lang_code', 1, 'https://ror.org/04fbzsy15 Manus Neurodynamica (United Kingdom)'), (23783, 'https://ror.org/04fcs7q74', 'es', 1, 'https://ror.org/04fcs7q74 Universidad de la Ciénega'), (23784, 'https://ror.org/04fcynh72', 'en', 1, 'https://ror.org/04fcynh72 Departamento de Niños, Juventud y Familias de Nuevo México New Mexico Children Youth and Families Department'), (23785, 'https://ror.org/04fd5vj08', 'pt', 1, 'https://ror.org/04fd5vj08 Instituto Superior Politécnico de Manica'), (23786, 'https://ror.org/04fefzq80', 'en', 1, 'https://ror.org/04fefzq80 Javon Bea Hospital-Rockton'), (23787, 'https://ror.org/04fg67f94', 'en', 1, 'https://ror.org/04fg67f94 German Machine Tool Builders Association Verein Deutscher Werkzeugmaschinenfabriken'), (23788, 'https://ror.org/04fg9yv80', 'en', 1, 'https://ror.org/04fg9yv80 Nature Conservancy of Canada'), (23789, 'https://ror.org/04fham916', 'en', 1, 'https://ror.org/04fham916 Farnham Road Hospital'), (23790, 'https://ror.org/04fjxr127', 'en', 1, 'https://ror.org/04fjxr127 The Silesian Planetarium Śląskie Planetarium i Obserwatorium Astronomiczne'), (23791, 'https://ror.org/04fkxrb51', 'en', 1, 'https://ror.org/04fkxrb51 Devon Partnership NHS Trust'), (23792, 'https://ror.org/04fqgk073', 'en', 1, 'https://ror.org/04fqgk073 Yuba Community College District'), (23793, 'https://ror.org/04ft55h12', 'es', 1, 'https://ror.org/04ft55h12 Universidad del Norte de Nicaragua'), (23794, 'https://ror.org/04fxhkj84', 'no_lang_code', 1, 'https://ror.org/04fxhkj84 Adlink (United Kingdom)'), (23795, 'https://ror.org/04fyd6s73', 'no_lang_code', 1, 'https://ror.org/04fyd6s73 Fiat Chrysler Automobiles (France)'), (23796, 'https://ror.org/04fz79c74', 'en', 1, 'https://ror.org/04fz79c74 Universidad de Palermo University of Palermo'), (23797, 'https://ror.org/04g0t2d47', 'en', 1, 'https://ror.org/04g0t2d47 Western Eye Hospital'), (23798, 'https://ror.org/04g124k93', 'fr', 1, 'https://ror.org/04g124k93 École Supérieure d''Informatique Appliquée à la Gestion'), (23799, 'https://ror.org/04g2nab09', 'no_lang_code', 1, 'https://ror.org/04g2nab09 Snam (Italy)'), (23800, 'https://ror.org/04g3q2c19', 'no_lang_code', 1, 'https://ror.org/04g3q2c19 Stromatec (United States)'), (23801, 'https://ror.org/04g3zjj79', 'en', 1, 'https://ror.org/04g3zjj79 Stratford Hospital'), (23802, 'https://ror.org/04g6ar987', 'no_lang_code', 1, 'https://ror.org/04g6ar987 S-Solar (Sweden)'), (23803, 'https://ror.org/04g6v3637', 'en', 1, 'https://ror.org/04g6v3637 Great Western Hospitals NHS Foundation Trust'), (23804, 'https://ror.org/04g7dxn12', 'es', 1, 'https://ror.org/04g7dxn12 Universidad de Ciencias Empresariales y Sociales'), (23805, 'https://ror.org/04g86yb67', 'no_lang_code', 1, 'https://ror.org/04g86yb67 VLP Biotech (United States)'), (23806, 'https://ror.org/04g934a02', 'no_lang_code', 1, 'https://ror.org/04g934a02 Mierij Meteo'), (23807, 'https://ror.org/04g9r9c91', 'no_lang_code', 1, 'https://ror.org/04g9r9c91 Volcano Corporation (United States)'), (23808, 'https://ror.org/04gdrc249', 'pt', 1, 'https://ror.org/04gdrc249 Centro Universitário de Itajubá'), (23809, 'https://ror.org/04gfxe325', 'en', 1, 'https://ror.org/04gfxe325 Black Swamp Bird Observatory'), (23810, 'https://ror.org/04gka6q50', 'en', 1, 'https://ror.org/04gka6q50 Presbyterian St. Luke''s Medical Center'), (23811, 'https://ror.org/04gmf5p72', 'fr', 1, 'https://ror.org/04gmf5p72 École Nationale Supérieure de Technologie المدرسة الوطنية العليا للتكنولوجي'), (23812, 'https://ror.org/04gp23z26', 'en', 1, 'https://ror.org/04gp23z26 Prudhoe Hospital'), (23813, 'https://ror.org/04gpr3c11', 'no_lang_code', 1, 'https://ror.org/04gpr3c11 Società Italiana Trasporti Automobilistici (Italy)'), (23814, 'https://ror.org/04gptps55', 'no_lang_code', 1, 'https://ror.org/04gptps55 Senstar (Canada)'), (23815, 'https://ror.org/04gq65788', 'pt', 1, 'https://ror.org/04gq65788 Centro Universitário Paulistano'), (23816, 'https://ror.org/04gs1nw86', 'no_lang_code', 1, 'https://ror.org/04gs1nw86 FiberLogix (United Kingdom)'), (23817, 'https://ror.org/04gse8s13', 'no_lang_code', 1, 'https://ror.org/04gse8s13 Xactagen (United States)'), (23818, 'https://ror.org/04gv9vj98', 'en', 1, 'https://ror.org/04gv9vj98 Barnet and Chase Farm NHS Hospitals Trust'), (23819, 'https://ror.org/04gvwsw92', 'no_lang_code', 1, 'https://ror.org/04gvwsw92 Yantric (United States)'), (23820, 'https://ror.org/04gx8zb05', 'de', 1, 'https://ror.org/04gx8zb05 Zentralinstitut für die Kassenärztliche Versorgung in der Bundesrepublik Deutschland'), (23821, 'https://ror.org/04h1c0m97', 'no_lang_code', 1, 'https://ror.org/04h1c0m97 Umweltsensortechnik (Germany)'), (23822, 'https://ror.org/04h2hb382', 'en', 1, 'https://ror.org/04h2hb382 Southwest Georgia Area Health Education Center'), (23823, 'https://ror.org/04h484195', 'no_lang_code', 1, 'https://ror.org/04h484195 Printed Electronics (United Kingdom)'), (23824, 'https://ror.org/04h6f0y45', 'no_lang_code', 1, 'https://ror.org/04h6f0y45 National Hyperbaric Centre'), (23825, 'https://ror.org/04h6jt451', 'en', 1, 'https://ror.org/04h6jt451 Stratton Community Hospital'), (23826, 'https://ror.org/04h6m2g55', 'en', 1, 'https://ror.org/04h6m2g55 Cobham Community Hospital'), (23827, 'https://ror.org/04h794874', 'en', 1, 'https://ror.org/04h794874 Koriyama Women''s University 郡山女子大学'), (23828, 'https://ror.org/04h80zb52', 'no_lang_code', 1, 'https://ror.org/04h80zb52 International Game Technology (Canada)'), (23829, 'https://ror.org/04h86q851', 'fr', 1, 'https://ror.org/04h86q851 École Supérieure Internationale de Gestion'), (23830, 'https://ror.org/04ha7mv34', 'no_lang_code', 1, 'https://ror.org/04ha7mv34 Surface Transforms (United Kingdom)'), (23831, 'https://ror.org/04hb77r84', 'no_lang_code', 1, 'https://ror.org/04hb77r84 Plastic Electronic (Austria)'), (23832, 'https://ror.org/04hcrmf43', 'en', 1, 'https://ror.org/04hcrmf43 National Down Syndrome Society'), (23833, 'https://ror.org/04hdfdt60', 'no_lang_code', 1, 'https://ror.org/04hdfdt60 Spartan Solutions (United Kingdom)'), (23834, 'https://ror.org/04hdj2902', 'en', 1, 'https://ror.org/04hdj2902 Tennessee Temple University'), (23835, 'https://ror.org/04hect109', 'en', 1, 'https://ror.org/04hect109 Saint Gregory''s Catholic College'), (23836, 'https://ror.org/04hm3y828', 'es', 1, 'https://ror.org/04hm3y828 Universidad del Caribe'), (23837, 'https://ror.org/04hmkr267', 'no_lang_code', 1, 'https://ror.org/04hmkr267 Onefive (Switzerland)'), (23838, 'https://ror.org/04hqh3a23', 'nl', 1, 'https://ror.org/04hqh3a23 Stichting Bouwresearch'), (23839, 'https://ror.org/04hsnt894', 'no_lang_code', 1, 'https://ror.org/04hsnt894 Microbial Insights (United States)'), (23840, 'https://ror.org/04htacw13', 'es', 1, 'https://ror.org/04htacw13 Universidad Politécnica Hispano Mexicana'), (23841, 'https://ror.org/04htkzn50', 'en', 1, 'https://ror.org/04htkzn50 Youth & Family Services'), (23842, 'https://ror.org/04hvez104', 'en', 1, 'https://ror.org/04hvez104 Ross on Wye Hospital'), (23843, 'https://ror.org/04hvybk54', 'no_lang_code', 1, 'https://ror.org/04hvybk54 Seneca Productions (United Kingdom)'), (23844, 'https://ror.org/04hx5st34', 'en', 1, 'https://ror.org/04hx5st34 University of Virginia''s College at Wise'), (23845, 'https://ror.org/04hy3rc65', 'no_lang_code', 1, 'https://ror.org/04hy3rc65 Red Tail Hawk Corporation (United States)'), (23846, 'https://ror.org/04hyfx005', 'no_lang_code', 1, 'https://ror.org/04hyfx005 Oxford Nanopore Technologies (United Kingdom)'), (23847, 'https://ror.org/04j2q1352', 'es', 1, 'https://ror.org/04j2q1352 Instituto Centroamericano de Administración de Empresas'), (23848, 'https://ror.org/04j351e79', 'en', 1, 'https://ror.org/04j351e79 Hochschule Koblenz Koblenz University of Applied Sciences'), (23849, 'https://ror.org/04j3tef82', 'es', 1, 'https://ror.org/04j3tef82 Centro Universitario Incarnate Word'), (23850, 'https://ror.org/04j539t95', 'no_lang_code', 1, 'https://ror.org/04j539t95 Meyer Burger Technology (Switzerland)'), (23851, 'https://ror.org/04j5b4618', 'no_lang_code', 1, 'https://ror.org/04j5b4618 Navidea Biopharmaceuticals (United States)'), (23852, 'https://ror.org/04j6csa16', 'en', 1, 'https://ror.org/04j6csa16 Rogers County Volunteers for Youth'), (23853, 'https://ror.org/04j6ssn11', 'en', 1, 'https://ror.org/04j6ssn11 Sinai Higher Institute for Tourism and Hotels المعهد المصرى العالى للسياحة والفنادق'), (23854, 'https://ror.org/04j9dfg85', 'en', 1, 'https://ror.org/04j9dfg85 Kongo University Université Kongo'), (23855, 'https://ror.org/04j9g4c85', 'en', 1, 'https://ror.org/04j9g4c85 Wareham Community Hospital'), (23856, 'https://ror.org/04j9vr008', 'es', 1, 'https://ror.org/04j9vr008 Centro Universitário Internacional'), (23857, 'https://ror.org/04jaxd697', 'no_lang_code', 1, 'https://ror.org/04jaxd697 SeaChange Pharmaceuticals (United States)'), (23858, 'https://ror.org/04jb7ky60', 'no_lang_code', 1, 'https://ror.org/04jb7ky60 Nanocerox (United States)'), (23859, 'https://ror.org/04jbqz480', 'no_lang_code', 1, 'https://ror.org/04jbqz480 Variation Biotechnologies (Canada)'), (23860, 'https://ror.org/04jdjn903', 'en', 1, 'https://ror.org/04jdjn903 Jingning County People''s Hospital 景宁畲族自治县人民医院'), (23861, 'https://ror.org/04jhxpq45', 'es', 1, 'https://ror.org/04jhxpq45 Universidad Iberoamericana'), (23862, 'https://ror.org/04jj38x11', 'en', 1, 'https://ror.org/04jj38x11 West Coast University'), (23863, 'https://ror.org/04jj8zx97', 'no_lang_code', 1, 'https://ror.org/04jj8zx97 Shahid Motahari Hospital بیمارستان شهید مطهری'), (23864, 'https://ror.org/04jjpme94', 'no_lang_code', 1, 'https://ror.org/04jjpme94 Meridian Bioscience (United States)'), (23865, 'https://ror.org/04jjy0g33', 'pt', 1, 'https://ror.org/04jjy0g33 Hospital Braga Hospital de Braga'), (23866, 'https://ror.org/04jk6hn97', 'en', 1, 'https://ror.org/04jk6hn97 Silicon Valley University Universidad de Silicon Valley'), (23867, 'https://ror.org/04jmcwc90', 'en', 1, 'https://ror.org/04jmcwc90 Newcastle College'), (23868, 'https://ror.org/04jmsq731', 'en', 1, 'https://ror.org/04jmsq731 Arab American University الجامعة العربية الأمريكية - جنين'), (23869, 'https://ror.org/04jr0a134', 'en', 1, 'https://ror.org/04jr0a134 Academy of Art University'), (23870, 'https://ror.org/04jr90994', 'en', 1, 'https://ror.org/04jr90994 St Martin''s Hospital'), (23871, 'https://ror.org/04jsebv71', 'en', 1, 'https://ror.org/04jsebv71 Institute of Finance Management'), (23872, 'https://ror.org/04jst1j84', 'es', 1, 'https://ror.org/04jst1j84 Universidad Columbia del Paraguay'), (23873, 'https://ror.org/04jwm9504', 'en', 1, 'https://ror.org/04jwm9504 International Council for Canadian Studies'), (23874, 'https://ror.org/04jxq7458', 'fr', 1, 'https://ror.org/04jxq7458 Association des Démographes du Québec'), (23875, 'https://ror.org/04jxt9a41', 'no_lang_code', 1, 'https://ror.org/04jxt9a41 Plasma Clean (United Kingdom)'), (23876, 'https://ror.org/04jyjz861', 'pt', 1, 'https://ror.org/04jyjz861 Centro Universitário Módulo'), (23877, 'https://ror.org/04jyr6737', 'en', 1, 'https://ror.org/04jyr6737 Hexham General Hospital'), (23878, 'https://ror.org/04jzb8h35', 'no_lang_code', 1, 'https://ror.org/04jzb8h35 Sound&Fury'), (23879, 'https://ror.org/04jzrvb03', 'en', 1, 'https://ror.org/04jzrvb03 Walsall Healthcare NHS Trust'), (23880, 'https://ror.org/04k1c4v44', 'pt', 1, 'https://ror.org/04k1c4v44 Centro Universitário de Barra Mansa'), (23881, 'https://ror.org/04k2dc025', 'es', 1, 'https://ror.org/04k2dc025 Universidad Don Vasco'), (23882, 'https://ror.org/04k2k1k52', 'no_lang_code', 1, 'https://ror.org/04k2k1k52 Isesaki Fukushima Hospital 伊勢崎福島病院'), (23883, 'https://ror.org/04k34dm23', 'en', 1, 'https://ror.org/04k34dm23 John Coupland Hospital'), (23884, 'https://ror.org/04k46b490', 'en', 1, 'https://ror.org/04k46b490 Red Sea University جامعة البحر الأحمر'), (23885, 'https://ror.org/04k7gd586', 'no_lang_code', 1, 'https://ror.org/04k7gd586 Systems, Applications & Products in Data Processing (United Kingdom)'), (23886, 'https://ror.org/04k9y3p96', 'no_lang_code', 1, 'https://ror.org/04k9y3p96 Optoscribe (United Kingdom)'), (23887, 'https://ror.org/04kbsj707', 'es', 1, 'https://ror.org/04kbsj707 Escuela Tecnológica Instituto Técnico Central'), (23888, 'https://ror.org/04kdk0s45', 'es', 1, 'https://ror.org/04kdk0s45 Corporación Universitaria Santa Rosa de Cabal'), (23889, 'https://ror.org/04kdk6h75', 'no_lang_code', 1, 'https://ror.org/04kdk6h75 Registro Internacional Naval (Portugal)'), (23890, 'https://ror.org/04kmnk678', 'en', 1, 'https://ror.org/04kmnk678 Woodstock Union High School & Middle School'), (23891, 'https://ror.org/04kmxp840', 'no_lang_code', 1, 'https://ror.org/04kmxp840 Target (Germany)'), (23892, 'https://ror.org/04kn30428', 'no_lang_code', 1, 'https://ror.org/04kn30428 BSD Crown (Israel)'), (23893, 'https://ror.org/04kpzy923', 'en', 1, 'https://ror.org/04kpzy923 Princess Alexandra Hospital NHS Trust'), (23894, 'https://ror.org/04ks7cj51', 'no_lang_code', 1, 'https://ror.org/04ks7cj51 Petroleum of Venezuela (Venezuela) Petróleos de Venezuela'), (23895, 'https://ror.org/04kw0xk03', 'en', 1, 'https://ror.org/04kw0xk03 Canadian Co-operative Association'), (23896, 'https://ror.org/04kw8a006', 'en', 1, 'https://ror.org/04kw8a006 Julian Hospital'), (23897, 'https://ror.org/04kwdvd47', 'no_lang_code', 1, 'https://ror.org/04kwdvd47 Optronics Technologies (Greece)'), (23898, 'https://ror.org/04kwrcn69', 'es', 1, 'https://ror.org/04kwrcn69 Universidad Tecnológica Costarricense'), (23899, 'https://ror.org/04kxxrj13', 'no_lang_code', 1, 'https://ror.org/04kxxrj13 QCMetrix (United States)'), (23900, 'https://ror.org/04ky2sd92', 'en', 1, 'https://ror.org/04ky2sd92 Squamish Nation'), (23901, 'https://ror.org/04ky74j22', 'en', 1, 'https://ror.org/04ky74j22 Technologie-Transfer-Zentrum Bremerhaven Technology Transfer Center Bremerhaven'), (23902, 'https://ror.org/04m0bzb15', 'en', 1, 'https://ror.org/04m0bzb15 Rogers State University Université d''État de rogers'), (23903, 'https://ror.org/04m1ha467', 'en', 1, 'https://ror.org/04m1ha467 Sebha University جامعة سبها'), (23904, 'https://ror.org/04m4fy391', 'en', 1, 'https://ror.org/04m4fy391 Centro Universitário Senac Senac University Center'), (23905, 'https://ror.org/04m5pzk31', 'es', 1, 'https://ror.org/04m5pzk31 Fundación Universitaria Autónoma De Las Américas'), (23906, 'https://ror.org/04m5tys43', 'it', 1, 'https://ror.org/04m5tys43 Tecnoalimenti'), (23907, 'https://ror.org/04m8jeb72', 'no_lang_code', 1, 'https://ror.org/04m8jeb72 Polymem (France)'), (23908, 'https://ror.org/04mb3yn31', 'en', 1, 'https://ror.org/04mb3yn31 Wansbeck General Hospital'), (23909, 'https://ror.org/04mfpk422', 'no_lang_code', 1, 'https://ror.org/04mfpk422 Srico (United States)'), (23910, 'https://ror.org/04mfr9y95', 'en', 1, 'https://ror.org/04mfr9y95 Midlands Technical College'), (23911, 'https://ror.org/04mfx2z51', 'no_lang_code', 1, 'https://ror.org/04mfx2z51 Replicon (United States)'), (23912, 'https://ror.org/04mgp5b41', 'no_lang_code', 1, 'https://ror.org/04mgp5b41 Sarossa (United States)'), (23913, 'https://ror.org/04mk5mk38', 'en', 1, 'https://ror.org/04mk5mk38 Cyprus International University Uluslararası Kıbrıs Üniversitesi'), (23914, 'https://ror.org/04mma9b71', 'en', 1, 'https://ror.org/04mma9b71 Shri Siddhivinayak Ganapati Cancer Hospital श्री सिद्धिविनायक गणपती कॅन्सर हॉस्पिटल'), (23915, 'https://ror.org/04mmq3h75', 'en', 1, 'https://ror.org/04mmq3h75 University of Defence Универзитет одбране'), (23916, 'https://ror.org/04mptne15', 'no_lang_code', 1, 'https://ror.org/04mptne15 Strategic Solutions Consulting (United States)'), (23917, 'https://ror.org/04msd0t92', 'es', 1, 'https://ror.org/04msd0t92 Universidad Politécnica Estatal del Carchi'), (23918, 'https://ror.org/04mvrqy78', 'es', 1, 'https://ror.org/04mvrqy78 Universidad del Desarrollo Profesional'), (23919, 'https://ror.org/04mw1zx86', 'en', 1, 'https://ror.org/04mw1zx86 Karachay-Cherkess State Pedagogical University Карачаево-Черкесский государственный университет'), (23920, 'https://ror.org/04n037429', 'en', 1, 'https://ror.org/04n037429 Chard & District Hospital'), (23921, 'https://ror.org/04n2k3w88', 'en', 1, 'https://ror.org/04n2k3w88 Welsh Centre for Printing and Coating'), (23922, 'https://ror.org/04n3nh595', 'en', 1, 'https://ror.org/04n3nh595 Department of Forestry'), (23923, 'https://ror.org/04n6hyy67', 'pt', 1, 'https://ror.org/04n6hyy67 Instituto Superior de Artes e Cultura'), (23924, 'https://ror.org/04n6z1w07', 'en', 1, 'https://ror.org/04n6z1w07 Bridgeways Day Hospital'), (23925, 'https://ror.org/04n76m431', 'no_lang_code', 1, 'https://ror.org/04n76m431 Meridian Medical Systems (United States)'), (23926, 'https://ror.org/04na4ar59', 'en', 1, 'https://ror.org/04na4ar59 Center of Informatization in the Sphere of Culture'), (23927, 'https://ror.org/04nckd528', 'en', 1, 'https://ror.org/04nckd528 Dorset County Hospital NHS Foundation Trust'), (23928, 'https://ror.org/04ndj7y66', 'it', 1, 'https://ror.org/04ndj7y66 Osservatorio Astronomico della Regione Autonoma Valle d''Aosta'), (23929, 'https://ror.org/04nen0q36', 'es', 1, 'https://ror.org/04nen0q36 Corporación Tecnológica de Bogotá'), (23930, 'https://ror.org/04nfs2483', 'en', 1, 'https://ror.org/04nfs2483 Universidad de St. Francis University of St. Francis'), (23931, 'https://ror.org/04nhyde41', 'no_lang_code', 1, 'https://ror.org/04nhyde41 Premix (Finland)'), (23932, 'https://ror.org/04nk1k821', 'en', 1, 'https://ror.org/04nk1k821 Kao Yuan University 高苑科技大學'), (23933, 'https://ror.org/04nmbd607', 'en', 1, 'https://ror.org/04nmbd607 Universidad de Córdoba University of Córdoba'), (23934, 'https://ror.org/04nqhm289', 'en', 1, 'https://ror.org/04nqhm289 New Victoria Hospital'), (23935, 'https://ror.org/04ns19e26', 'en', 1, 'https://ror.org/04ns19e26 Association of Canadian College and University Teachers of English'), (23936, 'https://ror.org/04ns7jw88', 'no_lang_code', 1, 'https://ror.org/04ns7jw88 Solo Kleinmotoren (Germany)'), (23937, 'https://ror.org/04nsmrq40', 'en', 1, 'https://ror.org/04nsmrq40 Kwararafa University'), (23938, 'https://ror.org/04nt4km71', 'no_lang_code', 1, 'https://ror.org/04nt4km71 Ventiva (United States)'), (23939, 'https://ror.org/04ntynb59', 'en', 1, 'https://ror.org/04ntynb59 Enugu State University of Science and Technology'), (23940, 'https://ror.org/04nx23795', 'en', 1, 'https://ror.org/04nx23795 Blyth Community Hospital'), (23941, 'https://ror.org/04nxy6d06', 'no_lang_code', 1, 'https://ror.org/04nxy6d06 Stelar (Italy)'); INSERT INTO `rors` VALUES (23942, 'https://ror.org/04ny3nx36', 'es', 1, 'https://ror.org/04ny3nx36 Universidad Benito Juárez García'), (23943, 'https://ror.org/04ny69498', 'no_lang_code', 1, 'https://ror.org/04ny69498 Millidyne (Finland)'), (23944, 'https://ror.org/04ny9jk61', 'en', 1, 'https://ror.org/04ny9jk61 Clevedon Hospital'), (23945, 'https://ror.org/04nz0sd46', 'en', 1, 'https://ror.org/04nz0sd46 Teddington Memorial Hospital'), (23946, 'https://ror.org/04p0fsa07', 'en', 1, 'https://ror.org/04p0fsa07 Bệnh viện đa khoa tỉnh Khánh Hòa Khanh Hoa General Hospital'), (23947, 'https://ror.org/04p0rqr57', 'no_lang_code', 1, 'https://ror.org/04p0rqr57 Unimetrik (Spain)'), (23948, 'https://ror.org/04p2g8a33', 'es', 1, 'https://ror.org/04p2g8a33 Instituto Universitario Puebla'), (23949, 'https://ror.org/04p47he44', 'pt', 1, 'https://ror.org/04p47he44 Sociedade de Ensino Universitário do Nordeste'), (23950, 'https://ror.org/04p58r664', 'no_lang_code', 1, 'https://ror.org/04p58r664 Ratos (Sweden)'), (23951, 'https://ror.org/04p6k7180', 'no_lang_code', 1, 'https://ror.org/04p6k7180 Marksman Cellject (Canada)'), (23952, 'https://ror.org/04p77ts85', 'en', 1, 'https://ror.org/04p77ts85 Canadian Historical Association Société historique du Canada'), (23953, 'https://ror.org/04p83bg23', 'es', 1, 'https://ror.org/04p83bg23 Instituto Profesional Libertador de Los Andes'), (23954, 'https://ror.org/04p861642', 'en', 1, 'https://ror.org/04p861642 Dulwich Community Hospital'), (23955, 'https://ror.org/04p8px794', 'no_lang_code', 1, 'https://ror.org/04p8px794 Optomec (United States)'), (23956, 'https://ror.org/04pan0z69', 'no_lang_code', 1, 'https://ror.org/04pan0z69 Trueflaw (Finland)'), (23957, 'https://ror.org/04pat0b95', 'no_lang_code', 1, 'https://ror.org/04pat0b95 OnTo Technology (United States)'), (23958, 'https://ror.org/04pbdwx95', 'no_lang_code', 1, 'https://ror.org/04pbdwx95 Opway (Portugal)'), (23959, 'https://ror.org/04pcnys31', 'no_lang_code', 1, 'https://ror.org/04pcnys31 Numerical Algorithms Group (United Kingdom)'), (23960, 'https://ror.org/04pdbrh74', 'no_lang_code', 1, 'https://ror.org/04pdbrh74 Sievi (Finland)'), (23961, 'https://ror.org/04peg0q52', 'en', 1, 'https://ror.org/04peg0q52 Network of Aquaculture Centres in Asia-Pacific'), (23962, 'https://ror.org/04pf4cg46', 'no_lang_code', 1, 'https://ror.org/04pf4cg46 Speech Processing Solutions (United States)'), (23963, 'https://ror.org/04pf6mc33', 'en', 1, 'https://ror.org/04pf6mc33 Maine School Administrative District 1'), (23964, 'https://ror.org/04pfq1012', 'no_lang_code', 1, 'https://ror.org/04pfq1012 Pyramid Technical Consultants (United States)'), (23965, 'https://ror.org/04pggra29', 'en', 1, 'https://ror.org/04pggra29 Miami International University of Art & Design Universidad Internacional de Miami de Arte & Diseño'), (23966, 'https://ror.org/04pm6wp87', 'no_lang_code', 1, 'https://ror.org/04pm6wp87 Smiths Detection (Canada)'), (23967, 'https://ror.org/04pnqcx66', 'pt', 1, 'https://ror.org/04pnqcx66 Centro Universitário de João Pessoa'), (23968, 'https://ror.org/04pp32a12', 'no_lang_code', 1, 'https://ror.org/04pp32a12 Pfaff Industriemaschinen (Germany)'), (23969, 'https://ror.org/04ppn0b98', 'no_lang_code', 1, 'https://ror.org/04ppn0b98 Rebellion (United Kingdom)'), (23970, 'https://ror.org/04pqpvr75', 'es', 1, 'https://ror.org/04pqpvr75 Universidad de Los Andes'), (23971, 'https://ror.org/04pqyhc66', 'no_lang_code', 1, 'https://ror.org/04pqyhc66 OptoSci (United Kingdom)'), (23972, 'https://ror.org/04pry7b16', 'fr', 1, 'https://ror.org/04pry7b16 École Normale Supérieure de Tétouan'), (23973, 'https://ror.org/04pt7tz26', 'en', 1, 'https://ror.org/04pt7tz26 West Heath Hospital'), (23974, 'https://ror.org/04ptyy568', 'en', 1, 'https://ror.org/04ptyy568 Western Iowa Tech Community College'), (23975, 'https://ror.org/04pvj3017', 'en', 1, 'https://ror.org/04pvj3017 Wycliffe College'), (23976, 'https://ror.org/04pvywd96', 'no_lang_code', 1, 'https://ror.org/04pvywd96 Microsystems (United Kingdom)'), (23977, 'https://ror.org/04py01q17', 'en', 1, 'https://ror.org/04py01q17 BMI The Droitwich Spa Hospital'), (23978, 'https://ror.org/04pyajs57', 'no_lang_code', 1, 'https://ror.org/04pyajs57 Inspecta (Sweden)'), (23979, 'https://ror.org/04pyed255', 'en', 1, 'https://ror.org/04pyed255 Transport Systems Catapult'), (23980, 'https://ror.org/04pys4598', 'en', 1, 'https://ror.org/04pys4598 Internet Memory Foundation'), (23981, 'https://ror.org/04pyty074', 'en', 1, 'https://ror.org/04pyty074 Pennsylvania Coalition Against Rape'), (23982, 'https://ror.org/04q1p4j28', 'no_lang_code', 1, 'https://ror.org/04q1p4j28 Solvo Biotechnology (Hungary)'), (23983, 'https://ror.org/04q1zdg40', 'en', 1, 'https://ror.org/04q1zdg40 Caterham Dene Hospital'), (23984, 'https://ror.org/04q23nr55', 'en', 1, 'https://ror.org/04q23nr55 Safe States Alliance'), (23985, 'https://ror.org/04q4vw719', 'en', 1, 'https://ror.org/04q4vw719 Plymouth Hospital'), (23986, 'https://ror.org/04q8seb48', 'fr', 1, 'https://ror.org/04q8seb48 École Supérieure de Management'), (23987, 'https://ror.org/04qcmbz41', 'no_lang_code', 1, 'https://ror.org/04qcmbz41 NanOasis Technologies (United States)'), (23988, 'https://ror.org/04qcq6322', 'en', 1, 'https://ror.org/04qcq6322 Yamagata Prefectural University of Health Sciences 山形県立保健医療大学'), (23989, 'https://ror.org/04qctfn73', 'no_lang_code', 1, 'https://ror.org/04qctfn73 Nexus Engineering (Bulgaria)'), (23990, 'https://ror.org/04qd8km43', 'en', 1, 'https://ror.org/04qd8km43 West Valley College'), (23991, 'https://ror.org/04qd9zx60', 'no_lang_code', 1, 'https://ror.org/04qd9zx60 Swatch Group (Switzerland)'), (23992, 'https://ror.org/04qgx7b19', 'es', 1, 'https://ror.org/04qgx7b19 Universidad de Relaciones y Estudios Internacionales'), (23993, 'https://ror.org/04qhjq449', 'no_lang_code', 1, 'https://ror.org/04qhjq449 Nomisma (Italy)'), (23994, 'https://ror.org/04qkkdk37', 'en', 1, 'https://ror.org/04qkkdk37 Royal Oak Community Coalition'), (23995, 'https://ror.org/04qkww785', 'en', 1, 'https://ror.org/04qkww785 Saskatchewan Environment Industry and Managers Association'), (23996, 'https://ror.org/04qkxwh87', 'no_lang_code', 1, 'https://ror.org/04qkxwh87 Wellcore'), (23997, 'https://ror.org/04qm2hq24', 'es', 1, 'https://ror.org/04qm2hq24 Universidad Insurgentes'), (23998, 'https://ror.org/04qnw1866', 'no_lang_code', 1, 'https://ror.org/04qnw1866 Polycom (Slovenia)'), (23999, 'https://ror.org/04qnyww97', 'en', 1, 'https://ror.org/04qnyww97 Spire St Anthony’s Hospital'), (24000, 'https://ror.org/04qpp5q81', 'en', 1, 'https://ror.org/04qpp5q81 Minuteman High School'), (24001, 'https://ror.org/04qrbj889', 'no_lang_code', 1, 'https://ror.org/04qrbj889 Stadtwerke Bochum (Germany)'), (24002, 'https://ror.org/04qrwnv94', 'en', 1, 'https://ror.org/04qrwnv94 Bệnh viện Hùng Vương Hung Vuong Hospital'), (24003, 'https://ror.org/04qs2sz84', 'en', 1, 'https://ror.org/04qs2sz84 Central Hospital of Wuhan 武汉市中心医院'), (24004, 'https://ror.org/04qsyx010', 'no_lang_code', 1, 'https://ror.org/04qsyx010 TriOS Mess und Datentechnik (Germany)'), (24005, 'https://ror.org/04qt1cz93', 'en', 1, 'https://ror.org/04qt1cz93 National Association of EMS Physicians'), (24006, 'https://ror.org/04qtafx02', 'en', 1, 'https://ror.org/04qtafx02 Informal logic (Canada)'), (24007, 'https://ror.org/04qtcz169', 'es', 1, 'https://ror.org/04qtcz169 Universitario Francisco de Asís'), (24008, 'https://ror.org/04qwwm875', 'en', 1, 'https://ror.org/04qwwm875 Nanao hospital 七尾病院'), (24009, 'https://ror.org/04qxpma28', 'pt', 1, 'https://ror.org/04qxpma28 Centro Universitário de Araraquara'), (24010, 'https://ror.org/04qxyd889', 'en', 1, 'https://ror.org/04qxyd889 Ocean County College'), (24011, 'https://ror.org/04qzrw529', 'en', 1, 'https://ror.org/04qzrw529 Yaroslav-the-Wise Novgorod State University Новгородский государственный университет имени Ярослава Мудрого'), (24012, 'https://ror.org/04r10g051', 'en', 1, 'https://ror.org/04r10g051 Birmingham Community Healthcare NHS Trust'), (24013, 'https://ror.org/04r3ghh39', 'no_lang_code', 1, 'https://ror.org/04r3ghh39 Virtici (United States)'), (24014, 'https://ror.org/04r5d4283', 'no_lang_code', 1, 'https://ror.org/04r5d4283 Starfire Industries (United States)'), (24015, 'https://ror.org/04r5hpa11', 'no_lang_code', 1, 'https://ror.org/04r5hpa11 YDreams (Portugal)'), (24016, 'https://ror.org/04r8gaf17', 'pt', 1, 'https://ror.org/04r8gaf17 Universidade Vila Velha'), (24017, 'https://ror.org/04r8t4c49', 'en', 1, 'https://ror.org/04r8t4c49 Sup Management سيب مناجمنت'), (24018, 'https://ror.org/04rb4x926', 'no_lang_code', 1, 'https://ror.org/04rb4x926 ShapeSpace (United Kingdom)'), (24019, 'https://ror.org/04retwk85', 'no_lang_code', 1, 'https://ror.org/04retwk85 O.D. 260 (United States)'), (24020, 'https://ror.org/04rg2ce06', 'no_lang_code', 1, 'https://ror.org/04rg2ce06 VistaMed (Ireland)'), (24021, 'https://ror.org/04rhjk233', 'es', 1, 'https://ror.org/04rhjk233 Universidad Instituto Nacional de Ciencias Exactas'), (24022, 'https://ror.org/04rktjw27', 'no_lang_code', 1, 'https://ror.org/04rktjw27 Profusa (United States)'), (24023, 'https://ror.org/04rnd5t03', 'no_lang_code', 1, 'https://ror.org/04rnd5t03 Nanomotion (Israel)'), (24024, 'https://ror.org/04rqchc36', 'en', 1, 'https://ror.org/04rqchc36 Native Health'), (24025, 'https://ror.org/04rs46204', 'no_lang_code', 1, 'https://ror.org/04rs46204 United Science'), (24026, 'https://ror.org/04rtgz764', 'en', 1, 'https://ror.org/04rtgz764 Texas Center for Infectious Disease'), (24027, 'https://ror.org/04rtnbn65', 'no_lang_code', 1, 'https://ror.org/04rtnbn65 Molecular Networks (Germany)'), (24028, 'https://ror.org/04rtr9n62', 'en', 1, 'https://ror.org/04rtr9n62 Scottish Qualifications Authority'), (24029, 'https://ror.org/04rxffs27', 'en', 1, 'https://ror.org/04rxffs27 Fleet Community Hospital'), (24030, 'https://ror.org/04ry38w69', 'en', 1, 'https://ror.org/04ry38w69 Research Studios Austria'), (24031, 'https://ror.org/04s03zf45', 'en', 1, 'https://ror.org/04s03zf45 Tees, Esk and Wear Valleys NHS Foundation Trust'), (24032, 'https://ror.org/04s1c7214', 'no_lang_code', 1, 'https://ror.org/04s1c7214 Pretexo (France)'), (24033, 'https://ror.org/04s1zn642', 'no_lang_code', 1, 'https://ror.org/04s1zn642 Notox (Denmark)'), (24034, 'https://ror.org/04s2jq961', 'es', 1, 'https://ror.org/04s2jq961 Universidad Nacional del Oriente'), (24035, 'https://ror.org/04s3hp788', 'es', 1, 'https://ror.org/04s3hp788 Centro Universitario del Noreste'), (24036, 'https://ror.org/04s4egp92', 'no', 1, 'https://ror.org/04s4egp92 Tel-Tek'), (24037, 'https://ror.org/04s4k6s39', 'no_lang_code', 1, 'https://ror.org/04s4k6s39 Samsung (Germany)'), (24038, 'https://ror.org/04s65rw96', 'es', 1, 'https://ror.org/04s65rw96 Universidad Regiomontana'), (24039, 'https://ror.org/04s8gft68', 'en', 1, 'https://ror.org/04s8gft68 National Institute for Bioprocessing Research and Training'), (24040, 'https://ror.org/04sahz302', 'en', 1, 'https://ror.org/04sahz302 Newtown Hospital'), (24041, 'https://ror.org/04sbdyg82', 'no_lang_code', 1, 'https://ror.org/04sbdyg82 Piaggio (Spain)'), (24042, 'https://ror.org/04sc7sk27', 'en', 1, 'https://ror.org/04sc7sk27 European Social Observatory'), (24043, 'https://ror.org/04scjv535', 'no_lang_code', 1, 'https://ror.org/04scjv535 Hedgeye (United States)'), (24044, 'https://ror.org/04scnnc07', 'en', 1, 'https://ror.org/04scnnc07 Sadat Academy for Management Sciences أكاديمية السادات للعلوم الإدارية'), (24045, 'https://ror.org/04scsxq13', 'en', 1, 'https://ror.org/04scsxq13 Newholme Hospital'), (24046, 'https://ror.org/04sgryq04', 'no_lang_code', 1, 'https://ror.org/04sgryq04 Mirasys (Finland)'), (24047, 'https://ror.org/04sh4pf16', 'pt', 1, 'https://ror.org/04sh4pf16 Instituto Superior de Ciencias Sociais e Relações Internacionais'), (24048, 'https://ror.org/04shzs249', 'en', 1, 'https://ror.org/04shzs249 Hampshire Hospitals NHS Foundation Trust'), (24049, 'https://ror.org/04sjj9841', 'no_lang_code', 1, 'https://ror.org/04sjj9841 Avid (Germany)'), (24050, 'https://ror.org/04sk00116', 'en', 1, 'https://ror.org/04sk00116 Higher Knowledge Institute of Languages and Translation'), (24051, 'https://ror.org/04skaq459', 'es', 1, 'https://ror.org/04skaq459 Hospital Nacional de Niños'), (24052, 'https://ror.org/04smrv092', 'no_lang_code', 1, 'https://ror.org/04smrv092 KLA (Ireland)'), (24053, 'https://ror.org/04snjkd04', 'en', 1, 'https://ror.org/04snjkd04 Association Canadienne pour la Recherche Théâtrale Canadian Association for Theatre Research'), (24054, 'https://ror.org/04spmxm14', 'en', 1, 'https://ror.org/04spmxm14 Plant Protection Institute'), (24055, 'https://ror.org/04ssgxk51', 'en', 1, 'https://ror.org/04ssgxk51 Ashworth Hospital'), (24056, 'https://ror.org/04svzdw14', 'es', 1, 'https://ror.org/04svzdw14 Centro Universitario de Mercadotecnia y Publicidad'), (24057, 'https://ror.org/04sx1q420', 'en', 1, 'https://ror.org/04sx1q420 East Riding Community Hospital'), (24058, 'https://ror.org/04syg1z63', 'en', 1, 'https://ror.org/04syg1z63 Maniilaq Association'), (24059, 'https://ror.org/04szbq460', 'es', 1, 'https://ror.org/04szbq460 Universidad Abierta'), (24060, 'https://ror.org/04t104d61', 'en', 1, 'https://ror.org/04t104d61 Southwestern College - Kansas'), (24061, 'https://ror.org/04t3bd569', 'no_lang_code', 1, 'https://ror.org/04t3bd569 Power Plus Communications (Germany)'), (24062, 'https://ror.org/04t3wh438', 'en', 1, 'https://ror.org/04t3wh438 Haslemere Hospital'), (24063, 'https://ror.org/04t50sy53', 'sv', 1, 'https://ror.org/04t50sy53 Västerbottens Läns Landsting'), (24064, 'https://ror.org/04t57g552', 'no_lang_code', 1, 'https://ror.org/04t57g552 Reaction Engines (United Kingdom)'), (24065, 'https://ror.org/04t5n6k60', 'no_lang_code', 1, 'https://ror.org/04t5n6k60 Praevium Research (United States)'), (24066, 'https://ror.org/04t60r196', 'no_lang_code', 1, 'https://ror.org/04t60r196 Xiros (United Kingdom)'), (24067, 'https://ror.org/04t6erm02', 'no_lang_code', 1, 'https://ror.org/04t6erm02 Infor (United States)'), (24068, 'https://ror.org/04t718460', 'en', 1, 'https://ror.org/04t718460 Southern New Hampshire University Université du sud du new hampshire'), (24069, 'https://ror.org/04t730v47', 'en', 1, 'https://ror.org/04t730v47 National Technological University Universidad Tecnológica Nacional'), (24070, 'https://ror.org/04t7w7h11', 'en', 1, 'https://ror.org/04t7w7h11 Alfred Bean Hospital'), (24071, 'https://ror.org/04t83hz09', 'en', 1, 'https://ror.org/04t83hz09 Mansfield Community Hospital'), (24072, 'https://ror.org/04t8nza80', 'no_lang_code', 1, 'https://ror.org/04t8nza80 MathWorks (United Kingdom)'), (24073, 'https://ror.org/04t8wxc05', 'en', 1, 'https://ror.org/04t8wxc05 Yorkville University'), (24074, 'https://ror.org/04t93g058', 'en', 1, 'https://ror.org/04t93g058 Rossall Hospital'), (24075, 'https://ror.org/04t9p4363', 'en', 1, 'https://ror.org/04t9p4363 Joseph Ayo Babalola University'), (24076, 'https://ror.org/04tc27d43', 'es', 1, 'https://ror.org/04tc27d43 Escuela Universitaria de Fisioterapia de la ONCE'), (24077, 'https://ror.org/04tccz814', 'no_lang_code', 1, 'https://ror.org/04tccz814 Hua chiew hospital โรงพยาบาลหัวเฉียว'), (24078, 'https://ror.org/04tcyer40', 'en', 1, 'https://ror.org/04tcyer40 High Institute for Management Sciences المعهد العالى للعلوم الإدارية بالقطامية'), (24079, 'https://ror.org/04td9e852', 'en', 1, 'https://ror.org/04td9e852 Wetlands International'), (24080, 'https://ror.org/04thy0g29', 'es', 1, 'https://ror.org/04thy0g29 Universitaria Agustiniana'), (24081, 'https://ror.org/04tjmjk63', 'es', 1, 'https://ror.org/04tjmjk63 Universidad de Zamora'), (24082, 'https://ror.org/04tqrbk66', 'es', 1, 'https://ror.org/04tqrbk66 Hospital Universitario de Móstoles'), (24083, 'https://ror.org/04tqy5b82', 'no_lang_code', 1, 'https://ror.org/04tqy5b82 QuanTech (United States)'), (24084, 'https://ror.org/04tsj5e88', 'no_lang_code', 1, 'https://ror.org/04tsj5e88 New Light Industries (United States)'), (24085, 'https://ror.org/04ttx6h98', 'en', 1, 'https://ror.org/04ttx6h98 Talcott Mountain Science Center for Student Involvement'), (24086, 'https://ror.org/04tvjvp97', 'en', 1, 'https://ror.org/04tvjvp97 East Sussex Healthcare NHS Trust'), (24087, 'https://ror.org/04tzj1935', 'no_lang_code', 1, 'https://ror.org/04tzj1935 Planet'), (24088, 'https://ror.org/04v0as660', 'en', 1, 'https://ror.org/04v0as660 Hillingdon Hospitals NHS Foundation Trust'), (24089, 'https://ror.org/04v3zn617', 'no_lang_code', 1, 'https://ror.org/04v3zn617 Fungisem (Spain)'), (24090, 'https://ror.org/04v5gcw55', 'en', 1, 'https://ror.org/04v5gcw55 Shanghai Pudong New Area Gongli Hospital 上海市浦东新区公利医院'), (24091, 'https://ror.org/04v7h0g25', 'no_lang_code', 1, 'https://ror.org/04v7h0g25 Plant Bioscience Limited (United Kingdom)'), (24092, 'https://ror.org/04v85zm05', 'no_lang_code', 1, 'https://ror.org/04v85zm05 Valencell (United States)'), (24093, 'https://ror.org/04v9get85', 'es', 1, 'https://ror.org/04v9get85 Centro Universitario Patria'), (24094, 'https://ror.org/04v9sac23', 'no_lang_code', 1, 'https://ror.org/04v9sac23 Microflown Technologies (Netherlands)'), (24095, 'https://ror.org/04vb14m12', 'en', 1, 'https://ror.org/04vb14m12 Paignton Health and Wellbeing Centre'), (24096, 'https://ror.org/04vbnwv73', 'es', 1, 'https://ror.org/04vbnwv73 Universidad del Ejército y Fuerza Aérea'), (24097, 'https://ror.org/04vck0k59', 'en', 1, 'https://ror.org/04vck0k59 Ministry of Agriculture وزارة الفلاحة'), (24098, 'https://ror.org/04vev9295', 'de', 1, 'https://ror.org/04vev9295 Technisches Museum Wien Vienna Technical Museum'), (24099, 'https://ror.org/04vf94f14', 'no_lang_code', 1, 'https://ror.org/04vf94f14 Northern Lipids (Canada)'), (24100, 'https://ror.org/04vgz8j88', 'en', 1, 'https://ror.org/04vgz8j88 University Hospital Lewisham'), (24101, 'https://ror.org/04vh21716', 'es', 1, 'https://ror.org/04vh21716 Universidad Unión Bolivariana'), (24102, 'https://ror.org/04vhngq09', 'en', 1, 'https://ror.org/04vhngq09 Salesian University Universidad Salesiana'), (24103, 'https://ror.org/04vjfp916', 'de', 1, 'https://ror.org/04vjfp916 Hochschule Magdeburg-Stendal Magdeburg-Stendal University of Applied Sciences'), (24104, 'https://ror.org/04vndy634', 'en', 1, 'https://ror.org/04vndy634 Friary Community Hospital'), (24105, 'https://ror.org/04vp8rw50', 'en', 1, 'https://ror.org/04vp8rw50 Green IT Amsterdam'), (24106, 'https://ror.org/04vpw3947', 'en', 1, 'https://ror.org/04vpw3947 Spire Southampton Hospital'), (24107, 'https://ror.org/04vq0vq60', 'es', 1, 'https://ror.org/04vq0vq60 Universidad Estatal del Valle de Ecatepec'), (24108, 'https://ror.org/04vq1gm90', 'en', 1, 'https://ror.org/04vq1gm90 V. Bakul Institute for Superhard Materials'), (24109, 'https://ror.org/04vq5b176', 'en', 1, 'https://ror.org/04vq5b176 TESL Canada Federation'), (24110, 'https://ror.org/04vt0z780', 'en', 1, 'https://ror.org/04vt0z780 Warren Wilson College'), (24111, 'https://ror.org/04vt6h473', 'no_lang_code', 1, 'https://ror.org/04vt6h473 Vioryl (Greece)'), (24112, 'https://ror.org/04vv3qe07', 'en', 1, 'https://ror.org/04vv3qe07 Social and Environmental Research Institute'), (24113, 'https://ror.org/04vva3h08', 'fr', 1, 'https://ror.org/04vva3h08 Réseau Trans-Tech’s'), (24114, 'https://ror.org/04vvfch80', 'es', 1, 'https://ror.org/04vvfch80 Sistemas Genómicos'), (24115, 'https://ror.org/04w0krt75', 'no_lang_code', 1, 'https://ror.org/04w0krt75 MLS Multimedia (Greece)'), (24116, 'https://ror.org/04w32pe18', 'no_lang_code', 1, 'https://ror.org/04w32pe18 Thalia Design Automation (United Kingdom)'), (24117, 'https://ror.org/04wd2n987', 'en', 1, 'https://ror.org/04wd2n987 Autonomous University of Durango Universidad Autónoma de Durango'), (24118, 'https://ror.org/04wdzge25', 'no_lang_code', 1, 'https://ror.org/04wdzge25 Semapa (Portugal)'), (24119, 'https://ror.org/04we7sp72', 'no_lang_code', 1, 'https://ror.org/04we7sp72 Visual Acuity (United Kingdom)'), (24120, 'https://ror.org/04wegbp55', 'en', 1, 'https://ror.org/04wegbp55 Tambov State Technical University Тамбовский государственный технический университет'), (24121, 'https://ror.org/04wgyjv21', 'en', 1, 'https://ror.org/04wgyjv21 Le Quy Don Technical University Đại học Kỹ thuật Lê Quý Đôn'), (24122, 'https://ror.org/04wj0w424', 'pt', 1, 'https://ror.org/04wj0w424 Universidade Nilton Lins'), (24123, 'https://ror.org/04wkq2s46', 'en', 1, 'https://ror.org/04wkq2s46 Police University College Poliisiammattikorkeakoulu'), (24124, 'https://ror.org/04wmg9c19', 'en', 1, 'https://ror.org/04wmg9c19 Office of Rail Regulation'), (24125, 'https://ror.org/04wpttf67', 'no_lang_code', 1, 'https://ror.org/04wpttf67 Orbital Biosciences (United States)'), (24126, 'https://ror.org/04wrajv07', 'no_lang_code', 1, 'https://ror.org/04wrajv07 Sirius Thinking (United States)'), (24127, 'https://ror.org/04wsphp71', 'en', 1, 'https://ror.org/04wsphp71 Port of Gothenburg'), (24128, 'https://ror.org/04wvr4b69', 'es', 1, 'https://ror.org/04wvr4b69 Universidad Internacional de la Integración de América Latina'), (24129, 'https://ror.org/04wwnad27', 'en', 1, 'https://ror.org/04wwnad27 Santa Fe Indian School'), (24130, 'https://ror.org/04wwsjb72', 'en', 1, 'https://ror.org/04wwsjb72 Canadian Cartographic Association L''Association Canadienne de Cartographie'), (24131, 'https://ror.org/04wwz3282', 'en', 1, 'https://ror.org/04wwz3282 EIA University Universidad EIA'), (24132, 'https://ror.org/04wx25x02', 'fr', 1, 'https://ror.org/04wx25x02 École des Sciences de I''information مدرسة علوم المعلومات'), (24133, 'https://ror.org/04wz8fg60', 'no_lang_code', 1, 'https://ror.org/04wz8fg60 QED Technologies (United States)'), (24134, 'https://ror.org/04x2ven38', 'en', 1, 'https://ror.org/04x2ven38 Tidewater Community College'), (24135, 'https://ror.org/04x85at27', 'en', 1, 'https://ror.org/04x85at27 Pacific Environment'), (24136, 'https://ror.org/04x8q5j40', 'es', 1, 'https://ror.org/04x8q5j40 Technological University of Hermosillo Universidad Tecnológica de Hermosillo'), (24137, 'https://ror.org/04x94xw62', 'en', 1, 'https://ror.org/04x94xw62 University of Saint Mary'), (24138, 'https://ror.org/04xafps82', 'en', 1, 'https://ror.org/04xafps82 Southern Adventist University'), (24139, 'https://ror.org/04xamr707', 'en', 1, 'https://ror.org/04xamr707 Ilkeston Hospital'), (24140, 'https://ror.org/04xb8zj39', 'no_lang_code', 1, 'https://ror.org/04xb8zj39 Mincon (Ireland)'), (24141, 'https://ror.org/04xbsst68', 'fr', 1, 'https://ror.org/04xbsst68 Higher National Agronomic School École Nationale Supérieure Agronomique لمدرسة الوطنية العليا للفلاحة'), (24142, 'https://ror.org/04xf6c905', 'en', 1, 'https://ror.org/04xf6c905 Northcentral University'), (24143, 'https://ror.org/04xfzjn96', 'no_lang_code', 1, 'https://ror.org/04xfzjn96 Polytec Research (Norway)'), (24144, 'https://ror.org/04xg7ga92', 'en', 1, 'https://ror.org/04xg7ga92 Wathwood Hospital'), (24145, 'https://ror.org/04xhwje32', 'no_lang_code', 1, 'https://ror.org/04xhwje32 Mirriad (United Kingdom)'), (24146, 'https://ror.org/04xjm9m94', 'en', 1, 'https://ror.org/04xjm9m94 Swedish National Police Board'), (24147, 'https://ror.org/04xjs5g68', 'en', 1, 'https://ror.org/04xjs5g68 Spire London East Hospital'), (24148, 'https://ror.org/04xmxqq10', 'no_lang_code', 1, 'https://ror.org/04xmxqq10 Teles (Germany)'), (24149, 'https://ror.org/04xnj7444', 'no_lang_code', 1, 'https://ror.org/04xnj7444 Südwestrundfunk (Germany)'), (24150, 'https://ror.org/04xp48827', 'en', 1, 'https://ror.org/04xp48827 European University Cyprus Ευρωπαϊκό Πανεπιστήμιο Κύπρου'), (24151, 'https://ror.org/04xrk2k91', 'en', 1, 'https://ror.org/04xrk2k91 University of Africa'), (24152, 'https://ror.org/04xtvq436', 'en', 1, 'https://ror.org/04xtvq436 Kurashiki University of Science and the Arts 倉敷芸術科学大学'), (24153, 'https://ror.org/04xx19x53', 'es', 1, 'https://ror.org/04xx19x53 Universidad del Sureste'), (24154, 'https://ror.org/04xxqrf38', 'no_lang_code', 1, 'https://ror.org/04xxqrf38 New Jersey Microsystems (United States)'), (24155, 'https://ror.org/04xxs0n60', 'es', 1, 'https://ror.org/04xxs0n60 Universidad Bicentenaria de Aragua'), (24156, 'https://ror.org/04y086814', 'no_lang_code', 1, 'https://ror.org/04y086814 Onyx Solar (Spain)'), (24157, 'https://ror.org/04y087m76', 'no_lang_code', 1, 'https://ror.org/04y087m76 TRX Systems (United States)'), (24158, 'https://ror.org/04y12vd76', 'fr', 1, 'https://ror.org/04y12vd76 École Nationale Supérieure de l''Administration المدرسة الوطنية العليا للإدارة'), (24159, 'https://ror.org/04y735546', 'en', 1, 'https://ror.org/04y735546 Bệnh Viện Đa Khoa Đồng Tháp Dong Thap Hospital'), (24160, 'https://ror.org/04y784b90', 'no_lang_code', 1, 'https://ror.org/04y784b90 Precision Research (United States)'), (24161, 'https://ror.org/04ychh985', 'es', 1, 'https://ror.org/04ychh985 Universidad del Valle de Tlaxcala'), (24162, 'https://ror.org/04yd0ad61', 'en', 1, 'https://ror.org/04yd0ad61 Latin University of Costa Rica Universidad Latina de Costa Rica'), (24163, 'https://ror.org/04yd2kr04', 'no_lang_code', 1, 'https://ror.org/04yd2kr04 PCB Piezotronics (United States)'), (24164, 'https://ror.org/04yeh8h63', 'en', 1, 'https://ror.org/04yeh8h63 General Secretariat for Research and Technology'), (24165, 'https://ror.org/04yewpw08', 'no_lang_code', 1, 'https://ror.org/04yewpw08 Xim (United Kingdom)'), (24166, 'https://ror.org/04yexcn51', 'no_lang_code', 1, 'https://ror.org/04yexcn51 Ghana Institute of Management and Public Administration'), (24167, 'https://ror.org/04yfnda77', 'en', 1, 'https://ror.org/04yfnda77 UK Energy Research Centre'), (24168, 'https://ror.org/04ygf3832', 'en', 1, 'https://ror.org/04ygf3832 Whitworth Hospital'), (24169, 'https://ror.org/04yhr9792', 'ca', 1, 'https://ror.org/04yhr9792 Fundació Observatori Esteve Duran'), (24170, 'https://ror.org/04yhwpc24', 'no_lang_code', 1, 'https://ror.org/04yhwpc24 Microbial ID (United States)'), (24171, 'https://ror.org/04ykrg907', 'en', 1, 'https://ror.org/04ykrg907 Atlantic University'), (24172, 'https://ror.org/04ymc1w90', 'en', 1, 'https://ror.org/04ymc1w90 Admiral Makarov National University of Shipbuilding Национальный университет кораблестроения имени адмирала Макарова Національний університет кораблебудування імені адмірала Макарова'), (24173, 'https://ror.org/04ymgwq66', 'en', 1, 'https://ror.org/04ymgwq66 Changzhou University 常州大学'), (24174, 'https://ror.org/04ymsjg74', 'no_lang_code', 1, 'https://ror.org/04ymsjg74 MRK Systeme (Germany)'), (24175, 'https://ror.org/04yrw8521', 'es', 1, 'https://ror.org/04yrw8521 Instituto Profesional Carlos Casanueva'), (24176, 'https://ror.org/04yv47b75', 'en', 1, 'https://ror.org/04yv47b75 Northern Caribbean University'), (24177, 'https://ror.org/04yvhah88', 'no_lang_code', 1, 'https://ror.org/04yvhah88 SymTrend (United States)'), (24178, 'https://ror.org/04yytzs50', 'no_lang_code', 1, 'https://ror.org/04yytzs50 Avaya (Israel)'), (24179, 'https://ror.org/04yzd5a95', 'en', 1, 'https://ror.org/04yzd5a95 Mental Health Consumer Survivor Network'), (24180, 'https://ror.org/04yzhbz69', 'no_lang_code', 1, 'https://ror.org/04yzhbz69 Produtec (Germany)'), (24181, 'https://ror.org/04z26gb41', 'no_lang_code', 1, 'https://ror.org/04z26gb41 Workbook Publishing'), (24182, 'https://ror.org/04z5gvs07', 'en', 1, 'https://ror.org/04z5gvs07 Bureau des Services à la Jeunesse Youth Services Bureau of Ottawa'), (24183, 'https://ror.org/04z5n3121', 'en', 1, 'https://ror.org/04z5n3121 Kings Park Hospital'), (24184, 'https://ror.org/04z6mea27', 'no_lang_code', 1, 'https://ror.org/04z6mea27 Mexel (France)'), (24185, 'https://ror.org/04z7f4v54', 'pt', 1, 'https://ror.org/04z7f4v54 Centro Universitário Herminio Ometto de Araras'), (24186, 'https://ror.org/04z7k0065', 'no_lang_code', 1, 'https://ror.org/04z7k0065 Phoenix Contact (Germany)'), (24187, 'https://ror.org/04z80e107', 'es', 1, 'https://ror.org/04z80e107 Universidad Blas Pascal'), (24188, 'https://ror.org/04z8j8871', 'en', 1, 'https://ror.org/04z8j8871 Mental Health Mental Retardation of Tarrant County'), (24189, 'https://ror.org/04z95ym83', 'no_lang_code', 1, 'https://ror.org/04z95ym83 Takao Hospital すむのさと高尾病院'), (24190, 'https://ror.org/04zc4t851', 'en', 1, 'https://ror.org/04zc4t851 Ruby Lake Lagoon Nature Reserve Society'), (24191, 'https://ror.org/04zccg612', 'es', 1, 'https://ror.org/04zccg612 Universidad Centroamericana de Ciencias Empresariales'), (24192, 'https://ror.org/04zcv8n51', 'no_lang_code', 1, 'https://ror.org/04zcv8n51 Ohmatex (Denmark)'), (24193, 'https://ror.org/04ze4qf38', 'en', 1, 'https://ror.org/04ze4qf38 Thame Community Hospital'), (24194, 'https://ror.org/04zfq3f98', 'en', 1, 'https://ror.org/04zfq3f98 University of Kordofan جامعة كردفان'), (24195, 'https://ror.org/04zg05e03', 'no_lang_code', 1, 'https://ror.org/04zg05e03 Autoneum (Switzerland)'), (24196, 'https://ror.org/04zgwt671', 'es', 1, 'https://ror.org/04zgwt671 Universidad Vasco de Quiroga'), (24197, 'https://ror.org/04zhcfg57', 'en', 1, 'https://ror.org/04zhcfg57 Avataq Cultural Institute'), (24198, 'https://ror.org/04zj5v917', 'en', 1, 'https://ror.org/04zj5v917 Peabody'), (24199, 'https://ror.org/04zqv4n59', 'no_lang_code', 1, 'https://ror.org/04zqv4n59 MetraLabs (Germany)'), (24200, 'https://ror.org/04zvs4n17', 'no_lang_code', 1, 'https://ror.org/04zvs4n17 SRM Reti e Mobilità (Italy)'), (24201, 'https://ror.org/04zvx4d72', 'en', 1, 'https://ror.org/04zvx4d72 Royal Commission on the Ancient and Historical Monuments of Wales'), (24202, 'https://ror.org/04zwbxk42', 'en', 1, 'https://ror.org/04zwbxk42 Switchboard of Miami'), (24203, 'https://ror.org/04zzdbj59', 'en', 1, 'https://ror.org/04zzdbj59 Canadian Nautical Research Society Société Canadienne Pour la Recherche Nautique'), (24204, 'https://ror.org/04zzpgm55', 'en', 1, 'https://ror.org/04zzpgm55 Abbey Ridge Observatory'), (24205, 'https://ror.org/0500ysm83', 'no_lang_code', 1, 'https://ror.org/0500ysm83 RoadNarrows (United States)'), (24206, 'https://ror.org/0501n4373', 'es', 1, 'https://ror.org/0501n4373 Grupo Universitario Modelo'), (24207, 'https://ror.org/0502t5s28', 'en', 1, 'https://ror.org/0502t5s28 International Research Institute of Stavanger'), (24208, 'https://ror.org/0502vxg14', 'en', 1, 'https://ror.org/0502vxg14 Catholic University College of Ghana'), (24209, 'https://ror.org/0504dfg48', 'no_lang_code', 1, 'https://ror.org/0504dfg48 Tohoku Gakuin University 東北学院大学'), (24210, 'https://ror.org/0504g5x95', 'no_lang_code', 1, 'https://ror.org/0504g5x95 Vornia Biomaterials (Ireland)'), (24211, 'https://ror.org/0506tgm76', 'en', 1, 'https://ror.org/0506tgm76 Shahrekord University of Medical Sciences دانشگاه علوم پزشکي شهرکرد'), (24212, 'https://ror.org/05072ws38', 'no_lang_code', 1, 'https://ror.org/05072ws38 Omtaş (Turkey)'), (24213, 'https://ror.org/050850526', 'en', 1, 'https://ror.org/050850526 Michael Okpara University of Agriculture'), (24214, 'https://ror.org/0509k2n94', 'en', 1, 'https://ror.org/0509k2n94 Society for Research on Biological Rhythms'), (24215, 'https://ror.org/050bn6e97', 'no_lang_code', 1, 'https://ror.org/050bn6e97 Sächsische Binnenhäfen Oberelbe (Germany)'), (24216, 'https://ror.org/050e4js82', 'no_lang_code', 1, 'https://ror.org/050e4js82 Neumedicines (United States)'), (24217, 'https://ror.org/050h4qj76', 'es', 1, 'https://ror.org/050h4qj76 Universidad del Desarrollo Empresarial y Pedagógico'), (24218, 'https://ror.org/050j0b044', 'es', 1, 'https://ror.org/050j0b044 Universidad Privada Cumbre'), (24219, 'https://ror.org/050j7sq19', 'en', 1, 'https://ror.org/050j7sq19 Woodlands Hospital'), (24220, 'https://ror.org/050m0fd20', 'no_lang_code', 1, 'https://ror.org/050m0fd20 Texilia (Italy)'), (24221, 'https://ror.org/050m55h61', 'no_lang_code', 1, 'https://ror.org/050m55h61 Stansted Fluid Power (United Kingdom)'), (24222, 'https://ror.org/050mgpz97', 'en', 1, 'https://ror.org/050mgpz97 Jungwon University'), (24223, 'https://ror.org/050nfgr37', 'en', 1, 'https://ror.org/050nfgr37 Beijing Tsinghua Chang Gung Hospital 北京清华长庚医院'), (24224, 'https://ror.org/050pakd64', 'no_lang_code', 1, 'https://ror.org/050pakd64 Diodes (United Kingdom)'), (24225, 'https://ror.org/050qdy167', 'en', 1, 'https://ror.org/050qdy167 Knowledge Centre Wind turbine Materials and Constructions'), (24226, 'https://ror.org/050swxx85', 'en', 1, 'https://ror.org/050swxx85 Plateau State University'), (24227, 'https://ror.org/050znhp97', 'no_lang_code', 1, 'https://ror.org/050znhp97 Sirtres (Italy)'), (24228, 'https://ror.org/050zs3956', 'en', 1, 'https://ror.org/050zs3956 Herat University دانشگاه هرات'), (24229, 'https://ror.org/0513sfw33', 'en', 1, 'https://ror.org/0513sfw33 BMI The Princess Margaret Hospital'), (24230, 'https://ror.org/05152r856', 'no_lang_code', 1, 'https://ror.org/05152r856 Socotec (France)'), (24231, 'https://ror.org/051544512', 'no_lang_code', 1, 'https://ror.org/051544512 Oncovir (United States)'), (24232, 'https://ror.org/0519xb662', 'no_lang_code', 1, 'https://ror.org/0519xb662 Sensor Coating Systems (United Kingdom)'), (24233, 'https://ror.org/051ar9e27', 'en', 1, 'https://ror.org/051ar9e27 St Albans City Hospital'), (24234, 'https://ror.org/051bw0z52', 'en', 1, 'https://ror.org/051bw0z52 Emsworth Hospital'), (24235, 'https://ror.org/051dv4419', 'en', 1, 'https://ror.org/051dv4419 Woodlands Hospital'), (24236, 'https://ror.org/051dyvc17', 'en', 1, 'https://ror.org/051dyvc17 Technical College of Applied Sciences'), (24237, 'https://ror.org/051e4zg07', 'no_lang_code', 1, 'https://ror.org/051e4zg07 Risk Engineering (Bulgaria) Риск инженеринг'), (24238, 'https://ror.org/051ewjv50', 'no_lang_code', 1, 'https://ror.org/051ewjv50 Nohms Technologies (United States)'), (24239, 'https://ror.org/051ff2v60', 'en', 1, 'https://ror.org/051ff2v60 House of Experiments'), (24240, 'https://ror.org/051g6zc94', 'no_lang_code', 1, 'https://ror.org/051g6zc94 VM Discovery (United States)'), (24241, 'https://ror.org/051gp5616', 'no_lang_code', 1, 'https://ror.org/051gp5616 Teledyne Princeton Instruments (United States)'), (24242, 'https://ror.org/051jrjw38', 'en', 1, 'https://ror.org/051jrjw38 University of Lahore جامعہ لاہور'), (24243, 'https://ror.org/051kdrm61', 'es', 1, 'https://ror.org/051kdrm61 Universidad Santa María'), (24244, 'https://ror.org/051mkpw87', 'en', 1, 'https://ror.org/051mkpw87 Nipomo Health Center'), (24245, 'https://ror.org/051nhdr80', 'es', 1, 'https://ror.org/051nhdr80 Universidad del Centro de México'), (24246, 'https://ror.org/051ny1b38', 'no_lang_code', 1, 'https://ror.org/051ny1b38 Orthogonal (United States)'), (24247, 'https://ror.org/051p4rr20', 'en', 1, 'https://ror.org/051p4rr20 Ashford and St Peter''s Hospitals NHS Foundation Trust'), (24248, 'https://ror.org/051rngw70', 'no_lang_code', 1, 'https://ror.org/051rngw70 Shahrekord University دانشگاه شهرکرد'), (24249, 'https://ror.org/051s9as34', 'en', 1, 'https://ror.org/051s9as34 Hundens Lane Day Hospital'), (24250, 'https://ror.org/051t2wp85', 'no_lang_code', 1, 'https://ror.org/051t2wp85 Pulmotect (United States)'), (24251, 'https://ror.org/051tn6h07', 'no_lang_code', 1, 'https://ror.org/051tn6h07 Heraeus (Germany) Heraeus Konzern'), (24252, 'https://ror.org/051tv6j02', 'en', 1, 'https://ror.org/051tv6j02 Canadian Bioethics Society Société Canadienne de la Bioéthique Médicale'), (24253, 'https://ror.org/051vg7x60', 'en', 1, 'https://ror.org/051vg7x60 Simpson University'), (24254, 'https://ror.org/051vt5y84', 'no_lang_code', 1, 'https://ror.org/051vt5y84 Turkcell (Turkey)'), (24255, 'https://ror.org/051xvqh87', 'es', 1, 'https://ror.org/051xvqh87 Católica del Norte Fundación Universitaria'), (24256, 'https://ror.org/0522zyy65', 'no_lang_code', 1, 'https://ror.org/0522zyy65 Rusangu University'), (24257, 'https://ror.org/0523dv891', 'no_lang_code', 1, 'https://ror.org/0523dv891 3R Agrocarbon (Hungary)'), (24258, 'https://ror.org/0523w1957', 'no_lang_code', 1, 'https://ror.org/0523w1957 Micromatica (Italy)'), (24259, 'https://ror.org/0524gsp03', 'no_lang_code', 1, 'https://ror.org/0524gsp03 Visup (Italy)'), (24260, 'https://ror.org/0527rwj48', 'es', 1, 'https://ror.org/0527rwj48 Colegiatura Colombiana Institución Universitaria'), (24261, 'https://ror.org/0529f2p24', 'no_lang_code', 1, 'https://ror.org/0529f2p24 Trillium Therapeutics (Canada)'), (24262, 'https://ror.org/052am5598', 'no_lang_code', 1, 'https://ror.org/052am5598 Vida Diagnostics (United States)'), (24263, 'https://ror.org/052b1ym09', 'en', 1, 'https://ror.org/052b1ym09 Oxford City Council'), (24264, 'https://ror.org/052bnvt46', 'fr', 1, 'https://ror.org/052bnvt46 Institut National des Postes et Télécommunications المعهد الوطني للبريد والمواصلات'), (24265, 'https://ror.org/052e8ag96', 'en', 1, 'https://ror.org/052e8ag96 Northwest Florida State College'), (24266, 'https://ror.org/052egrr51', 'es', 1, 'https://ror.org/052egrr51 Universidad del Pedregal'), (24267, 'https://ror.org/052f9ak76', 'no_lang_code', 1, 'https://ror.org/052f9ak76 Recylex (France)'), (24268, 'https://ror.org/052gehj09', 'no_lang_code', 1, 'https://ror.org/052gehj09 TBC Innovations (France)'), (24269, 'https://ror.org/052heck55', 'no_lang_code', 1, 'https://ror.org/052heck55 SelenBio (United States)'), (24270, 'https://ror.org/052hkvj39', 'en', 1, 'https://ror.org/052hkvj39 Spot Observatory'), (24271, 'https://ror.org/052hs4w81', 'no_lang_code', 1, 'https://ror.org/052hs4w81 Bonn Science Shop Wissenschaftsladen'), (24272, 'https://ror.org/052j5y866', 'no_lang_code', 1, 'https://ror.org/052j5y866 On Our Own of Maryland (United States)'), (24273, 'https://ror.org/052j6vb86', 'no_lang_code', 1, 'https://ror.org/052j6vb86 WPP (Belgium)'), (24274, 'https://ror.org/052matx73', 'no_lang_code', 1, 'https://ror.org/052matx73 Span'), (24275, 'https://ror.org/052mp5r63', 'fr', 1, 'https://ror.org/052mp5r63 Pigier Bénin'), (24276, 'https://ror.org/052q8e925', 'fr', 1, 'https://ror.org/052q8e925 École Normale Supérieure de Bouzareah Alger المدرسة العليا للأساتذة ببوزريعة'), (24277, 'https://ror.org/052vng007', 'en', 1, 'https://ror.org/052vng007 University of Mkar'), (24278, 'https://ror.org/052yb5x42', 'en', 1, 'https://ror.org/052yb5x42 San Luis Obispo County Mental Health Services'), (24279, 'https://ror.org/05323ve69', 'no_lang_code', 1, 'https://ror.org/05323ve69 RetroVirox (United States)'), (24280, 'https://ror.org/0532a6411', 'no_lang_code', 1, 'https://ror.org/0532a6411 Twickenham Plating Group (United Kingdom)'), (24281, 'https://ror.org/0533vxh11', 'no_lang_code', 1, 'https://ror.org/0533vxh11 RISC Software (Austria)'), (24282, 'https://ror.org/0535vdn91', 'en', 1, 'https://ror.org/0535vdn91 Soma Central Hospital 茶畑会 相馬中央病院'), (24283, 'https://ror.org/05367pr87', 'no_lang_code', 1, 'https://ror.org/05367pr87 Smart Polymers Research Corporation (United States)'), (24284, 'https://ror.org/0536ye693', 'en', 1, 'https://ror.org/0536ye693 Mental Health and Recovery Services Board'), (24285, 'https://ror.org/05397ce75', 'en', 1, 'https://ror.org/05397ce75 Busoga University'), (24286, 'https://ror.org/053ctwk70', 'pt', 1, 'https://ror.org/053ctwk70 Centro Universitário Assunção'), (24287, 'https://ror.org/053d5gs04', 'es', 1, 'https://ror.org/053d5gs04 Universidad Filadelfia de México'), (24288, 'https://ror.org/053f59471', 'en', 1, 'https://ror.org/053f59471 Haltwhistle War Memorial Hospital'), (24289, 'https://ror.org/053gqad93', 'en', 1, 'https://ror.org/053gqad93 Swaffham Community Hospital'), (24290, 'https://ror.org/053mas820', 'en', 1, 'https://ror.org/053mas820 The Holly Private Hospital'), (24291, 'https://ror.org/053nycv62', 'en', 1, 'https://ror.org/053nycv62 Korea University of Technology and Education 한국기술교육대학교'), (24292, 'https://ror.org/053pwmv60', 'en', 1, 'https://ror.org/053pwmv60 V.I. Vernadsky Institute of Geochemistry and Analytical Chemistry Федеральное государственное бюджетное учреждение науки Ордена Ленина и Ордена Октябрьской Революции Институт геохимии и аналитической химии им. В.И. Вернадского Российской академии наук'), (24293, 'https://ror.org/053qp6k29', 'no_lang_code', 1, 'https://ror.org/053qp6k29 MAN (Denmark)'), (24294, 'https://ror.org/053qrc350', 'no_lang_code', 1, 'https://ror.org/053qrc350 Riegger Diamantwerkzeuge (Germany)'), (24295, 'https://ror.org/053sksp51', 'en', 1, 'https://ror.org/053sksp51 Perth Observatory'), (24296, 'https://ror.org/053tj6993', 'no_lang_code', 1, 'https://ror.org/053tj6993 Schauenburg (United Kingdom)'), (24297, 'https://ror.org/053x1t631', 'no_lang_code', 1, 'https://ror.org/053x1t631 Neotherix (United Kingdom)'), (24298, 'https://ror.org/053x7m526', 'no_lang_code', 1, 'https://ror.org/053x7m526 Renewable Energy Corporation (Norway)'), (24299, 'https://ror.org/053xzd705', 'en', 1, 'https://ror.org/053xzd705 St Martins Hospital'), (24300, 'https://ror.org/053zbv090', 'es', 1, 'https://ror.org/053zbv090 Facultad de Teología Pontificia y Civil de Lima'), (24301, 'https://ror.org/0540xtx50', 'es', 1, 'https://ror.org/0540xtx50 Corporación Internacional para el Desarrollo Educativo'), (24302, 'https://ror.org/0543r8412', 'en', 1, 'https://ror.org/0543r8412 Public Technology Institute'), (24303, 'https://ror.org/054446c79', 'no_lang_code', 1, 'https://ror.org/054446c79 SAS Institute (United Kingdom)'), (24304, 'https://ror.org/0544vva66', 'es', 1, 'https://ror.org/0544vva66 Universidad Fray Luca Paccioli'), (24305, 'https://ror.org/05478zz46', 'es', 1, 'https://ror.org/05478zz46 Autonomous University of Santo Domingo Universidad Autónoma de Santo Domingo'), (24306, 'https://ror.org/0547s4559', 'en', 1, 'https://ror.org/0547s4559 Catholic University of Angola Universidade Católica de Angola'), (24307, 'https://ror.org/0547wea53', 'en', 1, 'https://ror.org/0547wea53 St George''s Park'), (24308, 'https://ror.org/0548ncv24', 'fr', 1, 'https://ror.org/0548ncv24 Federation of Canadian Demographers Fédération Canadienne de Démographie'), (24309, 'https://ror.org/0548x8e24', 'en', 1, 'https://ror.org/0548x8e24 Waypoint Centre de Soins de Santé Mentale Waypoint Centre for Mental Health Care'), (24310, 'https://ror.org/054dn2d35', 'en', 1, 'https://ror.org/054dn2d35 Institute for Christian Studies'), (24311, 'https://ror.org/054e03k79', 'no_lang_code', 1, 'https://ror.org/054e03k79 PML Applications (United Kingdom)'), (24312, 'https://ror.org/054etzm63', 'en', 1, 'https://ror.org/054etzm63 Minghsin University of Science and Technology 明新科技大學'), (24313, 'https://ror.org/054gfsx77', 'no_lang_code', 1, 'https://ror.org/054gfsx77 Techno Innovation South Tyrol (Italy)'), (24314, 'https://ror.org/054hbkf39', 'pt', 1, 'https://ror.org/054hbkf39 Centro Universitário Carioca'), (24315, 'https://ror.org/054ja5q23', 'en', 1, 'https://ror.org/054ja5q23 National Alliance for Partnerships in Equity'), (24316, 'https://ror.org/054ky9h60', 'en', 1, 'https://ror.org/054ky9h60 Bel Campus Technological University Université Technologique Bel Campus'), (24317, 'https://ror.org/054mek730', 'no_lang_code', 1, 'https://ror.org/054mek730 Zoo Digital (United Kingdom)'), (24318, 'https://ror.org/054nkx469', 'en', 1, 'https://ror.org/054nkx469 Capital University of Physical Education and Sports 首都体育学院'), (24319, 'https://ror.org/054phan86', 'en', 1, 'https://ror.org/054phan86 Independence University'), (24320, 'https://ror.org/054s7hj41', 'en', 1, 'https://ror.org/054s7hj41 Jones International University'), (24321, 'https://ror.org/054s94437', 'es', 1, 'https://ror.org/054s94437 Escuela de Administración y Mercadotecnia del Quindío'), (24322, 'https://ror.org/054s97w65', 'en', 1, 'https://ror.org/054s97w65 National School of Public Health, Management and Professional Development Şcoala Naţională de Sănătate Publică, Management şi Perfecţionare în Domeniul Sanitar'), (24323, 'https://ror.org/054tzxc20', 'es', 1, 'https://ror.org/054tzxc20 Universidad Católica Nordestana'), (24324, 'https://ror.org/054v4yq51', 'es', 1, 'https://ror.org/054v4yq51 Universidad de Londres, University of London'), (24325, 'https://ror.org/054v95b28', 'en', 1, 'https://ror.org/054v95b28 Tufts Health Care Institute'), (24326, 'https://ror.org/054w60c75', 'no_lang_code', 1, 'https://ror.org/054w60c75 Touchstone Exploration (Canada)'), (24327, 'https://ror.org/054wcm905', 'en', 1, 'https://ror.org/054wcm905 Stroud General Hospital'), (24328, 'https://ror.org/054ysee23', 'en', 1, 'https://ror.org/054ysee23 Barton Community Health & Care Centre'), (24329, 'https://ror.org/054zyxm40', 'en', 1, 'https://ror.org/054zyxm40 Urban planning Institute of the Republic of Slovenia Urbanistični inštitut Republike Slovenije'), (24330, 'https://ror.org/055133v13', 'no_lang_code', 1, 'https://ror.org/055133v13 Segasist Technologies (Canada)'), (24331, 'https://ror.org/0551j4575', 'no_lang_code', 1, 'https://ror.org/0551j4575 Parabon Computation (United States)'), (24332, 'https://ror.org/055214t07', 'no_lang_code', 1, 'https://ror.org/055214t07 ProImmune (United Kingdom)'), (24333, 'https://ror.org/0552sh187', 'no_lang_code', 1, 'https://ror.org/0552sh187 Cohort (United Kingdom)'), (24334, 'https://ror.org/05535qr20', 'en', 1, 'https://ror.org/05535qr20 New Selby War Memorial Hospital'), (24335, 'https://ror.org/0554vw273', 'en', 1, 'https://ror.org/0554vw273 Molesey Hospital'), (24336, 'https://ror.org/05552se64', 'no_lang_code', 1, 'https://ror.org/05552se64 Proceed (United States)'), (24337, 'https://ror.org/0555qme52', 'en', 1, 'https://ror.org/0555qme52 Third People''s Hospital of Yunnan Province 云南省第三人民医院'), (24338, 'https://ror.org/055622428', 'en', 1, 'https://ror.org/055622428 Digital Heritage Netherlands'), (24339, 'https://ror.org/055663266', 'sl', 1, 'https://ror.org/055663266 Inštitut za Celulozo in Papir Ljubljana'), (24340, 'https://ror.org/0556an218', 'no_lang_code', 1, 'https://ror.org/0556an218 Tescan (Czechia)'), (24341, 'https://ror.org/0557nfa06', 'no_lang_code', 1, 'https://ror.org/0557nfa06 Société Tunisienne de l''Electricité et du Gaz (Tunisia) الشركة التونسية للكهرباء و الغاز'), (24342, 'https://ror.org/05589zr38', 'en', 1, 'https://ror.org/05589zr38 Cuttington University'), (24343, 'https://ror.org/0558fr586', 'en', 1, 'https://ror.org/0558fr586 Mental Health Systems'), (24344, 'https://ror.org/055a3gx21', 'no_lang_code', 1, 'https://ror.org/055a3gx21 Schoenfabriek Wed. J.P. van Bommel (Netherlands)'), (24345, 'https://ror.org/055agmx53', 'en', 1, 'https://ror.org/055agmx53 Michigan Department of Education'), (24346, 'https://ror.org/055c5vt19', 'no_lang_code', 1, 'https://ror.org/055c5vt19 EnServe Group (United Kingdom)'), (24347, 'https://ror.org/055d5bf90', 'es', 1, 'https://ror.org/055d5bf90 Universidad Católica Luis Amigó'), (24348, 'https://ror.org/055jskg35', 'en', 1, 'https://ror.org/055jskg35 Eastman Dental Hospital'), (24349, 'https://ror.org/055k1rd14', 'en', 1, 'https://ror.org/055k1rd14 GreenCentre Canada'), (24350, 'https://ror.org/055k5br96', 'en', 1, 'https://ror.org/055k5br96 Bridgewater Hospital'), (24351, 'https://ror.org/055k73q58', 'es', 1, 'https://ror.org/055k73q58 Corporación Universitaria Autónoma del Cauca'), (24352, 'https://ror.org/055khg266', 'fr', 1, 'https://ror.org/055khg266 Institut Universitaire de France'), (24353, 'https://ror.org/055kzt142', 'es', 1, 'https://ror.org/055kzt142 Fundación Universitaria Internacional del Tropico Américano'), (24354, 'https://ror.org/055mabf46', 'es', 1, 'https://ror.org/055mabf46 Universidad Colegio Mayor de Cundinamarca'), (24355, 'https://ror.org/055mawj54', 'en', 1, 'https://ror.org/055mawj54 Mercy Medical Center Merced'), (24356, 'https://ror.org/055pdxb86', 'en', 1, 'https://ror.org/055pdxb86 East Midlands Ambulance Service NHS Trust'), (24357, 'https://ror.org/055qatb41', 'en', 1, 'https://ror.org/055qatb41 Royal London Hospital for Integrated Medicine'), (24358, 'https://ror.org/055qs4r72', 'en', 1, 'https://ror.org/055qs4r72 Gosport War Memorial Hospital'), (24359, 'https://ror.org/055sezq52', 'en', 1, 'https://ror.org/055sezq52 Northumbria Specialist Emergency Care Hospital'), (24360, 'https://ror.org/055vanj37', 'no_lang_code', 1, 'https://ror.org/055vanj37 Shift (United Kingdom)'), (24361, 'https://ror.org/055vv6n72', 'en', 1, 'https://ror.org/055vv6n72 Sevenoaks Hospital'), (24362, 'https://ror.org/055wnve73', 'en', 1, 'https://ror.org/055wnve73 Bromyard Community Hospital'), (24363, 'https://ror.org/055wq3834', 'en', 1, 'https://ror.org/055wq3834 Samra University of Oriental Medicine'), (24364, 'https://ror.org/055x1j102', 'en', 1, 'https://ror.org/055x1j102 Norwegian Shipowners'' Association'), (24365, 'https://ror.org/055yhzz06', 'en', 1, 'https://ror.org/055yhzz06 Transport Research Institute'), (24366, 'https://ror.org/055zfv570', 'no_lang_code', 1, 'https://ror.org/055zfv570 Brookes Publishing (United States)'), (24367, 'https://ror.org/0562efv25', 'de', 1, 'https://ror.org/0562efv25 Stadtwerke Bad Urach (Germany)'), (24368, 'https://ror.org/0563nxn44', 'en', 1, 'https://ror.org/0563nxn44 Tennessee Wesleyan College'), (24369, 'https://ror.org/05641j286', 'en', 1, 'https://ror.org/05641j286 Leek Moorlands Hospital'), (24370, 'https://ror.org/0565qcy75', 'es', 1, 'https://ror.org/0565qcy75 Universidad Privada Abierta Latinoamericana'), (24371, 'https://ror.org/0565tfh19', 'no_lang_code', 1, 'https://ror.org/0565tfh19 Sol-Gel Solutions (United States)'), (24372, 'https://ror.org/0566ns265', 'es', 1, 'https://ror.org/0566ns265 Politécnico de la Costa Atlántica'), (24373, 'https://ror.org/0567d0m75', 'en', 1, 'https://ror.org/0567d0m75 Shropshire Council'), (24374, 'https://ror.org/0568p5w10', 'pt', 1, 'https://ror.org/0568p5w10 Centro Universitário Central Paulista'), (24375, 'https://ror.org/0568rcd29', 'no_lang_code', 1, 'https://ror.org/0568rcd29 Kharkov Technologies'); INSERT INTO `rors` VALUES (24376, 'https://ror.org/0568y3j03', 'en', 1, 'https://ror.org/0568y3j03 Federal University of Technology Minna'), (24377, 'https://ror.org/056az9397', 'es', 1, 'https://ror.org/056az9397 Universidad Santo Tomas de Oriente y Medio Día'), (24378, 'https://ror.org/056bwcz71', 'en', 1, 'https://ror.org/056bwcz71 Scottish Funding Council'), (24379, 'https://ror.org/056cpmr59', 'no_lang_code', 1, 'https://ror.org/056cpmr59 Aluminium Refining, Degassing and Filtering (Canada)'), (24380, 'https://ror.org/056cswn75', 'no_lang_code', 1, 'https://ror.org/056cswn75 Tesi (Italy)'), (24381, 'https://ror.org/056ct0w58', 'en', 1, 'https://ror.org/056ct0w58 George Moore Community Clinic'), (24382, 'https://ror.org/056e22e24', 'en', 1, 'https://ror.org/056e22e24 Vaughn College of Aeronautics and Technology'), (24383, 'https://ror.org/056e30g48', 'en', 1, 'https://ror.org/056e30g48 Salem University'), (24384, 'https://ror.org/056g73y51', 'es', 1, 'https://ror.org/056g73y51 Politécnico Colombiano Jaime Isaza Cadavid'), (24385, 'https://ror.org/056j3a225', 'no_lang_code', 1, 'https://ror.org/056j3a225 Tele-Rilevamento Europa (Italy)'), (24386, 'https://ror.org/056jc8s48', 'en', 1, 'https://ror.org/056jc8s48 Regent Business School'), (24387, 'https://ror.org/056kd2x19', 'en', 1, 'https://ror.org/056kd2x19 Moors for the Future Partnership'), (24388, 'https://ror.org/056nda222', 'en', 1, 'https://ror.org/056nda222 Kentucky Christian University'), (24389, 'https://ror.org/056nq5k92', 'pt', 1, 'https://ror.org/056nq5k92 Universidade Presidente Antônio Carlos'), (24390, 'https://ror.org/056qmem13', 'en', 1, 'https://ror.org/056qmem13 Xenobiotic Detection Systems'), (24391, 'https://ror.org/056r32056', 'en', 1, 'https://ror.org/056r32056 Spire Manchester Hospital'), (24392, 'https://ror.org/056s99406', 'no_lang_code', 1, 'https://ror.org/056s99406 Norcada (Canada)'), (24393, 'https://ror.org/056sq4g25', 'en', 1, 'https://ror.org/056sq4g25 Bệnh viện Đa khoa Trung tâm Tiền Giang Tien Giang General Hospital'), (24394, 'https://ror.org/056twcg53', 'en', 1, 'https://ror.org/056twcg53 Terros'), (24395, 'https://ror.org/056w4rq63', 'no_lang_code', 1, 'https://ror.org/056w4rq63 Trentino Network (Italy)'), (24396, 'https://ror.org/056z4ss26', 'no_lang_code', 1, 'https://ror.org/056z4ss26 People Designs (United States)'), (24397, 'https://ror.org/056zqx422', 'en', 1, 'https://ror.org/056zqx422 Chantry House Day Hospital'), (24398, 'https://ror.org/0570cz029', 'no_lang_code', 1, 'https://ror.org/0570cz029 Rodenburg Biopolymers (Netherlands)'), (24399, 'https://ror.org/0570zmv60', 'es', 1, 'https://ror.org/0570zmv60 Universidad Técnica de Babahoyo'), (24400, 'https://ror.org/0572yqv42', 'no_lang_code', 1, 'https://ror.org/0572yqv42 Sunplugged (Austria)'), (24401, 'https://ror.org/0573cnq15', 'es', 1, 'https://ror.org/0573cnq15 Instituto Superior Politécnico José Antonio Echeverría, Polytechnic José Antonio Echeverría'), (24402, 'https://ror.org/0575c3z81', 'en', 1, 'https://ror.org/0575c3z81 Sullivan University'), (24403, 'https://ror.org/0576nnr74', 'en', 1, 'https://ror.org/0576nnr74 Pacific Union College'), (24404, 'https://ror.org/0576s0350', 'es', 1, 'https://ror.org/0576s0350 Universidad Autónoma de Colombia'), (24405, 'https://ror.org/05773jf61', 'es', 1, 'https://ror.org/05773jf61 Universidad Olmeca'), (24406, 'https://ror.org/0577hrn12', 'es', 1, 'https://ror.org/0577hrn12 Instituto Profesional Esucomex'), (24407, 'https://ror.org/0577sef82', 'en', 1, 'https://ror.org/0577sef82 Severtsov Institute of Ecology and Evolution Федеральное государственное бюджетное учреждение науки Институт проблем экологии и эволюции им.А.Н. Северцова Российской академии наук'), (24408, 'https://ror.org/057943037', 'no_lang_code', 1, 'https://ror.org/057943037 National Institute of Public Administration'), (24409, 'https://ror.org/0579rm888', 'en', 1, 'https://ror.org/0579rm888 St Nicholas Hospital'), (24410, 'https://ror.org/0579ze136', 'en', 1, 'https://ror.org/0579ze136 Havant War Memorial Hospital'), (24411, 'https://ror.org/057ckep42', 'es', 1, 'https://ror.org/057ckep42 Universidad Jean-Jacques Rousseau'), (24412, 'https://ror.org/057ewam52', 'no_lang_code', 1, 'https://ror.org/057ewam52 Oxford Intelligent Machines (United Kingdom)'), (24413, 'https://ror.org/057g08s23', 'es', 1, 'https://ror.org/057g08s23 Universidad Anáhuac México Sur, Universidad Anáhuac del Sur'), (24414, 'https://ror.org/057j7ch92', 'no_lang_code', 1, 'https://ror.org/057j7ch92 National Bank of Greece (Greece) Εθνική Τράπεζα της Ελλάδος'), (24415, 'https://ror.org/057jy1g44', 'en', 1, 'https://ror.org/057jy1g44 Liskeard Community Hospital'), (24416, 'https://ror.org/057ngt219', 'es', 1, 'https://ror.org/057ngt219 Universidad de Sotavento'), (24417, 'https://ror.org/057nkmn52', 'es', 1, 'https://ror.org/057nkmn52 Universidad Escuela Libre de Derecho'), (24418, 'https://ror.org/057pbd488', 'es', 1, 'https://ror.org/057pbd488 Universidad Mesoamericana de San Agustín'), (24419, 'https://ror.org/057s2cn07', 'en', 1, 'https://ror.org/057s2cn07 Minneapolis Public Schools'), (24420, 'https://ror.org/057stj941', 'en', 1, 'https://ror.org/057stj941 National Trust for Scotland'), (24421, 'https://ror.org/057tq3593', 'en', 1, 'https://ror.org/057tq3593 Technologiestichting STW Technology Foundation STW'), (24422, 'https://ror.org/057trv649', 'en', 1, 'https://ror.org/057trv649 Edgware Community Hospital'), (24423, 'https://ror.org/0580hfn92', 'no_lang_code', 1, 'https://ror.org/0580hfn92 Solidica (United States)'), (24424, 'https://ror.org/0581ret63', 'no_lang_code', 1, 'https://ror.org/0581ret63 Societate Comerciala Pentru Cercetare, Proiectare si Productie de Echipamente si Instalatii de Automatizare (Romania)'), (24425, 'https://ror.org/0582rgx13', 'no_lang_code', 1, 'https://ror.org/0582rgx13 Veolia (United Kingdom)'), (24426, 'https://ror.org/0583cna36', 'no_lang_code', 1, 'https://ror.org/0583cna36 Rochal Industries (United States)'), (24427, 'https://ror.org/0586wsk08', 'no_lang_code', 1, 'https://ror.org/0586wsk08 OHB (Germany)'), (24428, 'https://ror.org/05874db82', 'en', 1, 'https://ror.org/05874db82 Excellence Cluster Universe Exzellenzcluster Universe'), (24429, 'https://ror.org/05884e364', 'no_lang_code', 1, 'https://ror.org/05884e364 nsm Norbert Schläfli (Switzerland)'), (24430, 'https://ror.org/0589vxh51', 'no_lang_code', 1, 'https://ror.org/0589vxh51 Datacorp (United States)'), (24431, 'https://ror.org/058aanc53', 'es', 1, 'https://ror.org/058aanc53 Escuela Moderna de Música y Danza, Instituto Profesional Escuela Moderna De Musica'), (24432, 'https://ror.org/058cq2c73', 'es', 1, 'https://ror.org/058cq2c73 Centro Universitario de Sonora'), (24433, 'https://ror.org/058gc3944', 'en', 1, 'https://ror.org/058gc3944 The Chiltern Hospital'), (24434, 'https://ror.org/058gcv483', 'en', 1, 'https://ror.org/058gcv483 Antioch University Seattle'), (24435, 'https://ror.org/058m4x348', 'no_lang_code', 1, 'https://ror.org/058m4x348 Setas (Turkey)'), (24436, 'https://ror.org/058mq4s80', 'en', 1, 'https://ror.org/058mq4s80 Stamford and Rutland Hospital'), (24437, 'https://ror.org/058n7kw16', 'en', 1, 'https://ror.org/058n7kw16 Netcare Jakaranda Hospital'), (24438, 'https://ror.org/058qd2v11', 'en', 1, 'https://ror.org/058qd2v11 Auchi Polytechnic'), (24439, 'https://ror.org/058t5ay13', 'no_lang_code', 1, 'https://ror.org/058t5ay13 RGB Medical Devices (Spain)'), (24440, 'https://ror.org/058t6q245', 'no_lang_code', 1, 'https://ror.org/058t6q245 Chemsupply (Switzerland)'), (24441, 'https://ror.org/058tjhm78', 'en', 1, 'https://ror.org/058tjhm78 Grays Court Community Hospital'), (24442, 'https://ror.org/058vzj997', 'en', 1, 'https://ror.org/058vzj997 MidAmerica Nazarene University'), (24443, 'https://ror.org/058xhgv89', 'no_lang_code', 1, 'https://ror.org/058xhgv89 Railinfratrust (Netherlands)'), (24444, 'https://ror.org/058y6mx80', 'en', 1, 'https://ror.org/058y6mx80 Shipley Hospital'), (24445, 'https://ror.org/058znsm64', 'en', 1, 'https://ror.org/058znsm64 Bluefields Indian and Caribbean University'), (24446, 'https://ror.org/0591ezr39', 'no_lang_code', 1, 'https://ror.org/0591ezr39 Desso (Belgium)'), (24447, 'https://ror.org/0593ysv62', 'no_lang_code', 1, 'https://ror.org/0593ysv62 Rainbow Photonics (Switzerland)'), (24448, 'https://ror.org/0594b8154', 'no_lang_code', 1, 'https://ror.org/0594b8154 SiteOne Therapeutics (United States)'), (24449, 'https://ror.org/05956p547', 'pt', 1, 'https://ror.org/05956p547 Centro Universitário Moura Lacerda'), (24450, 'https://ror.org/0595jb241', 'no_lang_code', 1, 'https://ror.org/0595jb241 Mikron (Germany)'), (24451, 'https://ror.org/0597mp424', 'no_lang_code', 1, 'https://ror.org/0597mp424 Myasishchev Design Bureau (Russia)'), (24452, 'https://ror.org/0599s7z02', 'no_lang_code', 1, 'https://ror.org/0599s7z02 QuantLogic (United States)'), (24453, 'https://ror.org/059aewc73', 'en', 1, 'https://ror.org/059aewc73 New England College'), (24454, 'https://ror.org/059b0jm33', 'no_lang_code', 1, 'https://ror.org/059b0jm33 Management Science Associates (United States)'), (24455, 'https://ror.org/059c7vm29', 'en', 1, 'https://ror.org/059c7vm29 St Lukes Hospital'), (24456, 'https://ror.org/059cxs985', 'no_lang_code', 1, 'https://ror.org/059cxs985 MariLim (Germany)'), (24457, 'https://ror.org/059dwew39', 'fr', 1, 'https://ror.org/059dwew39 École Supérieure des Sciences de l''Ingénierie Commerciale'), (24458, 'https://ror.org/059g9tt96', 'no_lang_code', 1, 'https://ror.org/059g9tt96 Finisar (Germany)'), (24459, 'https://ror.org/059gprs28', 'no_lang_code', 1, 'https://ror.org/059gprs28 Rocky Research (United States)'), (24460, 'https://ror.org/059hjnz30', 'es', 1, 'https://ror.org/059hjnz30 Fundación de Estudios Superiores Comfanorte, Universidad FESC'), (24461, 'https://ror.org/059jz3381', 'en', 1, 'https://ror.org/059jz3381 Cygnet Hospital Wyke'), (24462, 'https://ror.org/059m1x137', 'en', 1, 'https://ror.org/059m1x137 Universidad de Celaya University of Celaya'), (24463, 'https://ror.org/059n14w82', 'no_lang_code', 1, 'https://ror.org/059n14w82 TomTom (Belgium)'), (24464, 'https://ror.org/059p0a776', 'en', 1, 'https://ror.org/059p0a776 American Sentinel University'), (24465, 'https://ror.org/059q1xd66', 'no_lang_code', 1, 'https://ror.org/059q1xd66 RE Hydrogen (United Kingdom)'), (24466, 'https://ror.org/059r07p39', 'no_lang_code', 1, 'https://ror.org/059r07p39 Silver Lake Research (United States)'), (24467, 'https://ror.org/059r50h13', 'en', 1, 'https://ror.org/059r50h13 Gyeongnam National University of Science and Technology 경남과학기술대학교'), (24468, 'https://ror.org/059sj0146', 'en', 1, 'https://ror.org/059sj0146 Trường Đại học Công nghiệp Việt Trì Viet Tri University of Industry'), (24469, 'https://ror.org/059srqj16', 'en', 1, 'https://ror.org/059srqj16 Responsive Centers For Psychology & Learning'), (24470, 'https://ror.org/059vkfm47', 'it', 1, 'https://ror.org/059vkfm47 Agenzia Regionale di Sanità della Toscana'), (24471, 'https://ror.org/059ymwe78', 'no_lang_code', 1, 'https://ror.org/059ymwe78 Tangerine (United Kingdom)'), (24472, 'https://ror.org/059zvbg42', 'en', 1, 'https://ror.org/059zvbg42 Balkh University پوهنتون بلخ'), (24473, 'https://ror.org/05a2d1861', 'no_lang_code', 1, 'https://ror.org/05a2d1861 Transfaction (United Kingdom)'), (24474, 'https://ror.org/05a5dkj17', 'en', 1, 'https://ror.org/05a5dkj17 Exeter Hospital'), (24475, 'https://ror.org/05a8pa318', 'no_lang_code', 1, 'https://ror.org/05a8pa318 Vertex Pharmaceuticals (Canada)'), (24476, 'https://ror.org/05a9sj961', 'en', 1, 'https://ror.org/05a9sj961 Methodist University College Ghana'), (24477, 'https://ror.org/05a9wb080', 'es', 1, 'https://ror.org/05a9wb080 Universidad Adventista de Nicaragua'), (24478, 'https://ror.org/05a9xrg77', 'en', 1, 'https://ror.org/05a9xrg77 Mayfair Day Hospital'), (24479, 'https://ror.org/05aargr36', 'en', 1, 'https://ror.org/05aargr36 Association Canadienne d’études Cinématographiques Film Studies Association of Canada'), (24480, 'https://ror.org/05abphe57', 'no_lang_code', 1, 'https://ror.org/05abphe57 Runcom Technologies (Israel)'), (24481, 'https://ror.org/05acryg85', 'en', 1, 'https://ror.org/05acryg85 Claremont Private Hospital'), (24482, 'https://ror.org/05afmgm93', 'no_lang_code', 1, 'https://ror.org/05afmgm93 Sachtleben Bergbau (Germany)'), (24483, 'https://ror.org/05afs3z13', 'no_lang_code', 1, 'https://ror.org/05afs3z13 Novartis (Canada)'), (24484, 'https://ror.org/05akcf597', 'en', 1, 'https://ror.org/05akcf597 Geological Observatory of Coldigioco Osservatorio Geologico di Coldigioco'), (24485, 'https://ror.org/05amrd548', 'en', 1, 'https://ror.org/05amrd548 University of Ouargla جامعة قاصدي مرباح'), (24486, 'https://ror.org/05anzrg13', 'en', 1, 'https://ror.org/05anzrg13 East of England Ambulance Service NHS Trust'), (24487, 'https://ror.org/05ap1zt54', 'en', 1, 'https://ror.org/05ap1zt54 Miguel de Cervantes University Universidad Miguel de Cervantes'), (24488, 'https://ror.org/05aq6yn88', 'en', 1, 'https://ror.org/05aq6yn88 Office of Extramural Research'), (24489, 'https://ror.org/05arjae42', 'en', 1, 'https://ror.org/05arjae42 Guilin University of Electronic Technology 桂林电子科技大学'), (24490, 'https://ror.org/05as1qb59', 'en', 1, 'https://ror.org/05as1qb59 Texas Higher Education Coordinating Board'), (24491, 'https://ror.org/05atnc387', 'no_lang_code', 1, 'https://ror.org/05atnc387 O.N. Diagnostics (United States)'), (24492, 'https://ror.org/05av3kx76', 'no_lang_code', 1, 'https://ror.org/05av3kx76 Ramon.Space (Israel)'), (24493, 'https://ror.org/05avmn224', 'es', 1, 'https://ror.org/05avmn224 Fundación Universitaria San Alfonso'), (24494, 'https://ror.org/05awwc719', 'fr', 1, 'https://ror.org/05awwc719 Institut Supérieur de l''Information et de la Communication'), (24495, 'https://ror.org/05ax6jr03', 'no_lang_code', 1, 'https://ror.org/05ax6jr03 Polymer Chemistry Innovations (United States)'), (24496, 'https://ror.org/05ay23762', 'en', 1, 'https://ror.org/05ay23762 Liaoning University of Technology 辽宁工业大学'), (24497, 'https://ror.org/05ay71920', 'no_lang_code', 1, 'https://ror.org/05ay71920 Solpros (Finland)'), (24498, 'https://ror.org/05aydvg23', 'de', 1, 'https://ror.org/05aydvg23 Verband Deutscher Maschinen- und Anlagenbau'), (24499, 'https://ror.org/05azmgh93', 'en', 1, 'https://ror.org/05azmgh93 Merseytravel'), (24500, 'https://ror.org/05b0f8e85', 'en', 1, 'https://ror.org/05b0f8e85 Orenburg State University Оренбургский государственный университет'), (24501, 'https://ror.org/05b51m931', 'es', 1, 'https://ror.org/05b51m931 Universidad Nacional de Agricultura'), (24502, 'https://ror.org/05b6t0504', 'en', 1, 'https://ror.org/05b6t0504 Queen Victoria Memorial Hospital'), (24503, 'https://ror.org/05b724e43', 'en', 1, 'https://ror.org/05b724e43 Society of Behavioral Medicine'), (24504, 'https://ror.org/05ba61w94', 'no_lang_code', 1, 'https://ror.org/05ba61w94 Photonics Bretagne (France)'), (24505, 'https://ror.org/05baf4s06', 'en', 1, 'https://ror.org/05baf4s06 Ussuriysk Astrophysical Observatory Уссурийская астрофизическая обсерватория ДВО РАН'), (24506, 'https://ror.org/05be09h62', 'en', 1, 'https://ror.org/05be09h62 Fordingbridge Hospital'), (24507, 'https://ror.org/05bep5d95', 'no_lang_code', 1, 'https://ror.org/05bep5d95 Schumacher Orgelbau (Belgium)'), (24508, 'https://ror.org/05bf5jb12', 'es', 1, 'https://ror.org/05bf5jb12 Universidad Alzate de Ozumba'), (24509, 'https://ror.org/05bh64v90', 'en', 1, 'https://ror.org/05bh64v90 South Thames College'), (24510, 'https://ror.org/05bh7ap46', 'en', 1, 'https://ror.org/05bh7ap46 Management College of Southern Africa'), (24511, 'https://ror.org/05bhh5n73', 'no_lang_code', 1, 'https://ror.org/05bhh5n73 Utility Systems Science and Software (United States)'), (24512, 'https://ror.org/05bk70695', 'fr', 1, 'https://ror.org/05bk70695 Association Canadienne d''Education de Langue Française'), (24513, 'https://ror.org/05bkfzh58', 'en', 1, 'https://ror.org/05bkfzh58 Surfactant Associates'), (24514, 'https://ror.org/05bmme985', 'en', 1, 'https://ror.org/05bmme985 Monkwearmouth Hospital'), (24515, 'https://ror.org/05bnh4739', 'pt', 1, 'https://ror.org/05bnh4739 Universidade Regional Integrada do Alto Uruguai e das Missões'), (24516, 'https://ror.org/05bpqke85', 'en', 1, 'https://ror.org/05bpqke85 Coddenham Astronomical Observatory'), (24517, 'https://ror.org/05bvt3s14', 'no_lang_code', 1, 'https://ror.org/05bvt3s14 S2 Grupo (Spain)'), (24518, 'https://ror.org/05by3c979', 'no_lang_code', 1, 'https://ror.org/05by3c979 Verax Biomedical (United States)'), (24519, 'https://ror.org/05bzhd221', 'no_lang_code', 1, 'https://ror.org/05bzhd221 Ridge and Partners (United Kingdom)'), (24520, 'https://ror.org/05c016d08', 'no_lang_code', 1, 'https://ror.org/05c016d08 ECW Press (Canada)'), (24521, 'https://ror.org/05c0hj959', 'en', 1, 'https://ror.org/05c0hj959 Hospital Tengku Ampuan Rahimah Tengku Ampuan Rahimah Hospital'), (24522, 'https://ror.org/05c0ns027', 'en', 1, 'https://ror.org/05c0ns027 Perm National Research Polytechnic University Федеральное государственное бюджетное образовательное учреждение высшего профессионального образования Пермский национальный исследовательский политехнический университет'), (24523, 'https://ror.org/05c2yb215', 'fr', 1, 'https://ror.org/05c2yb215 École des Hautes Études Économiques et Commerciales'), (24524, 'https://ror.org/05c815e48', 'fr', 1, 'https://ror.org/05c815e48 Centre Hospitalier Intercommunal de Fréjus Saint-Raphaël'), (24525, 'https://ror.org/05c9jga87', 'en', 1, 'https://ror.org/05c9jga87 Assumption University'), (24526, 'https://ror.org/05c9nwr56', 'en', 1, 'https://ror.org/05c9nwr56 Riverland Community College'), (24527, 'https://ror.org/05cckd696', 'no_lang_code', 1, 'https://ror.org/05cckd696 PCAS (France)'), (24528, 'https://ror.org/05ccyg372', 'en', 1, 'https://ror.org/05ccyg372 National Institute for Nuclear, Chemical and Biological Protection'), (24529, 'https://ror.org/05cdryb21', 'fr', 1, 'https://ror.org/05cdryb21 Université Montplaisir Tunis'), (24530, 'https://ror.org/05cedyx57', 'fr', 1, 'https://ror.org/05cedyx57 Institut Supérieur de Commerce et d''Administration des Entreprises'), (24531, 'https://ror.org/05chrxg27', 'en', 1, 'https://ror.org/05chrxg27 Ibrahim Badamasi Babangida University'), (24532, 'https://ror.org/05cka2t18', 'en', 1, 'https://ror.org/05cka2t18 Agricultural Academy Селскостопанска академия'), (24533, 'https://ror.org/05cq1w341', 'fr', 1, 'https://ror.org/05cq1w341 Société Canadienne de Théologie'), (24534, 'https://ror.org/05cqf3m25', 'en', 1, 'https://ror.org/05cqf3m25 Adventist University Cosendai Université Adventiste Cosendai'), (24535, 'https://ror.org/05cqge031', 'es', 1, 'https://ror.org/05cqge031 Universidad Católica del Táchira'), (24536, 'https://ror.org/05cwdc397', 'es', 1, 'https://ror.org/05cwdc397 Hospital Posadas'), (24537, 'https://ror.org/05cydna96', 'no_lang_code', 1, 'https://ror.org/05cydna96 TPF (Poland)'), (24538, 'https://ror.org/05czwfr97', 'no_lang_code', 1, 'https://ror.org/05czwfr97 Innovalia (Spain)'), (24539, 'https://ror.org/05d10zv92', 'en', 1, 'https://ror.org/05d10zv92 Monkton Hall Hospital'), (24540, 'https://ror.org/05d4aam89', 'en', 1, 'https://ror.org/05d4aam89 Woking Community Hospital'), (24541, 'https://ror.org/05d4tza70', 'no_lang_code', 1, 'https://ror.org/05d4tza70 Roland Hill (United Kingdom)'), (24542, 'https://ror.org/05d6fm330', 'es', 1, 'https://ror.org/05d6fm330 Universidad Privada del Estado de México'), (24543, 'https://ror.org/05d7z0p34', 'es', 1, 'https://ror.org/05d7z0p34 Instituto Universitario en Sistemas Administrativos de Monterrey'), (24544, 'https://ror.org/05d8vt634', 'en', 1, 'https://ror.org/05d8vt634 Harrison Middleton University'), (24545, 'https://ror.org/05d944x37', 'en', 1, 'https://ror.org/05d944x37 Jimo District Qingdao Hospital of Traditional Chinese Medicine 青岛市即墨区中医医院'), (24546, 'https://ror.org/05d9zj517', 'en', 1, 'https://ror.org/05d9zj517 Ormskirk District General Hospital'), (24547, 'https://ror.org/05db2n282', 'no_lang_code', 1, 'https://ror.org/05db2n282 Willmott Dixon (United Kingdom)'), (24548, 'https://ror.org/05db8zr24', 'en', 1, 'https://ror.org/05db8zr24 NED University of Engineering and Technology انجنيئرڱ ۽ ٽيڪنالاجي جي جامعہ اين اي ڊي جامعہ این ای ڈی برائے انجنئرنگ اور ٹیکنالوجی'), (24549, 'https://ror.org/05ddevr29', 'es', 1, 'https://ror.org/05ddevr29 Universidad Técnica Privada Cosmos'), (24550, 'https://ror.org/05ddtd277', 'no_lang_code', 1, 'https://ror.org/05ddtd277 Tinsley Bridge Group'), (24551, 'https://ror.org/05debfq75', 'en', 1, 'https://ror.org/05debfq75 Misr University for Science and Technology جامعة مصر للعلوم والتكنولوجيا'), (24552, 'https://ror.org/05dfkf260', 'en', 1, 'https://ror.org/05dfkf260 Cirencester Hospital'), (24553, 'https://ror.org/05dgxmx67', 'en', 1, 'https://ror.org/05dgxmx67 Romanian Authority For Nuclear Activities'), (24554, 'https://ror.org/05dj7d812', 'en', 1, 'https://ror.org/05dj7d812 Midorigaoka Hospital みどりヶ丘病院'), (24555, 'https://ror.org/05dj7ef89', 'en', 1, 'https://ror.org/05dj7ef89 Canadian Network for Innovation in Education Réseau Canadien Pour l''innovation en Education'), (24556, 'https://ror.org/05dktpm65', 'en', 1, 'https://ror.org/05dktpm65 White Cross Court Rehabilitation Hospital'), (24557, 'https://ror.org/05dm1m153', 'es', 1, 'https://ror.org/05dm1m153 International University of America Universidad Internacional de América'), (24558, 'https://ror.org/05dnz5861', 'no_lang_code', 1, 'https://ror.org/05dnz5861 Metalografica (Spain)'), (24559, 'https://ror.org/05drjbx41', 'en', 1, 'https://ror.org/05drjbx41 MiningWatch Canada'), (24560, 'https://ror.org/05dsrdr13', 'en', 1, 'https://ror.org/05dsrdr13 Canadian Forum on Civil Justice'), (24561, 'https://ror.org/05dvsnx49', 'en', 1, 'https://ror.org/05dvsnx49 Al-Neelain University جامعة النيلين'), (24562, 'https://ror.org/05dx64395', 'en', 1, 'https://ror.org/05dx64395 National University of the Arts Universidad Nacional de las Artes'), (24563, 'https://ror.org/05dyv4r79', 'en', 1, 'https://ror.org/05dyv4r79 Women In Need'), (24564, 'https://ror.org/05dyy5830', 'es', 1, 'https://ror.org/05dyy5830 Corporación Universitaria Unitec'), (24565, 'https://ror.org/05e1h7h42', 'en', 1, 'https://ror.org/05e1h7h42 Pan-Provincial Vaccine Enterprise'), (24566, 'https://ror.org/05e1n7415', 'en', 1, 'https://ror.org/05e1n7415 Highbury Hospital'), (24567, 'https://ror.org/05e29fw09', 'en', 1, 'https://ror.org/05e29fw09 Wright House Wellness Center'), (24568, 'https://ror.org/05e2hx460', 'fr', 1, 'https://ror.org/05e2hx460 École Marocaine de Banque et de Commerce International'), (24569, 'https://ror.org/05e2jbm26', 'es', 1, 'https://ror.org/05e2jbm26 Universidad Privada Antonio Guillermo Urrelo'), (24570, 'https://ror.org/05e3env38', 'no_lang_code', 1, 'https://ror.org/05e3env38 Sintex (Czechia)'), (24571, 'https://ror.org/05e4e0g07', 'en', 1, 'https://ror.org/05e4e0g07 Westbourne Green Community Hospital'), (24572, 'https://ror.org/05e812q79', 'es', 1, 'https://ror.org/05e812q79 Universidad Católica Tecnológica de Barahona'), (24573, 'https://ror.org/05e8ym512', 'en', 1, 'https://ror.org/05e8ym512 Stockholm International Peace Research Institute'), (24574, 'https://ror.org/05e9egp81', 'no_lang_code', 1, 'https://ror.org/05e9egp81 Swamp Optics (United States)'), (24575, 'https://ror.org/05ede8r89', 'en', 1, 'https://ror.org/05ede8r89 Central American Adventist University Universidad Adventista de Centro America'), (24576, 'https://ror.org/05eg6hv92', 'no_lang_code', 1, 'https://ror.org/05eg6hv92 Thunderhead Engineering (United States)'), (24577, 'https://ror.org/05ehb7y93', 'no_lang_code', 1, 'https://ror.org/05ehb7y93 PageFlip (United States)'), (24578, 'https://ror.org/05ejj5g23', 'no_lang_code', 1, 'https://ror.org/05ejj5g23 Pipistrel (Slovenia)'), (24579, 'https://ror.org/05epxhz73', 'en', 1, 'https://ror.org/05epxhz73 South Molton Medical Centre'), (24580, 'https://ror.org/05eq5hq62', 'en', 1, 'https://ror.org/05eq5hq62 Tabbin Institute for Metallurgical Studies معهد التبين للدراسات المعدنية'), (24581, 'https://ror.org/05eqgj969', 'en', 1, 'https://ror.org/05eqgj969 Austrian Society for Environment and Technology Österreichische Gesellschaft für Umwelt und Technik'), (24582, 'https://ror.org/05esb3126', 'en', 1, 'https://ror.org/05esb3126 Mountain Comprehensive Care Centre'), (24583, 'https://ror.org/05f1mgb50', 'no_lang_code', 1, 'https://ror.org/05f1mgb50 Phytolutions (Germany)'), (24584, 'https://ror.org/05f1yv317', 'no_lang_code', 1, 'https://ror.org/05f1yv317 Zansors (United States)'), (24585, 'https://ror.org/05f2jr081', 'pt', 1, 'https://ror.org/05f2jr081 Centro Universitário de Rio Preto'), (24586, 'https://ror.org/05f3efm35', 'en', 1, 'https://ror.org/05f3efm35 Tulsa Community College'), (24587, 'https://ror.org/05f46p870', 'pt', 1, 'https://ror.org/05f46p870 Centro Universitário Católico do Sudoeste do Paraná'), (24588, 'https://ror.org/05f4fmq20', 'en', 1, 'https://ror.org/05f4fmq20 Brentwood Community Hospital'), (24589, 'https://ror.org/05f560223', 'no_lang_code', 1, 'https://ror.org/05f560223 Skymark (United Kingdom)'), (24590, 'https://ror.org/05f57qd45', 'no_lang_code', 1, 'https://ror.org/05f57qd45 Simbiente (Portugal)'), (24591, 'https://ror.org/05f5j6225', 'en', 1, 'https://ror.org/05f5j6225 University Town of Shenzhen 深圳大学城'), (24592, 'https://ror.org/05f6vdg41', 'no_lang_code', 1, 'https://ror.org/05f6vdg41 Noray Bioinformatics (Spain)'), (24593, 'https://ror.org/05f7acz87', 'no_lang_code', 1, 'https://ror.org/05f7acz87 W/E Consultants'), (24594, 'https://ror.org/05f8ahf97', 'en', 1, 'https://ror.org/05f8ahf97 Llandrindod Wells Hospital'), (24595, 'https://ror.org/05f93c840', 'en', 1, 'https://ror.org/05f93c840 International Academy for Engineering and Media Science الاكاديمية الدولية للهندسة وعلوم الاعلام'), (24596, 'https://ror.org/05f9e0404', 'en', 1, 'https://ror.org/05f9e0404 Paulton Hospital'), (24597, 'https://ror.org/05fa42p74', 'en', 1, 'https://ror.org/05fa42p74 Southend University Hospital NHS Foundation Trust'), (24598, 'https://ror.org/05fafcp48', 'no_lang_code', 1, 'https://ror.org/05fafcp48 Golder Associates (United Kingdom)'), (24599, 'https://ror.org/05fdmhs75', 'fr', 1, 'https://ror.org/05fdmhs75 Institut National des Sciences de l''Archéologie et du Patrimoine المعهد الوطني لعلوم الآثار والتراث'), (24600, 'https://ror.org/05fejsj94', 'en', 1, 'https://ror.org/05fejsj94 Volunteer Behavioral Health Care System'), (24601, 'https://ror.org/05ffyfw07', 'en', 1, 'https://ror.org/05ffyfw07 Association canadienne de science politique Canadian Political Science Association'), (24602, 'https://ror.org/05fgy3p67', 'en', 1, 'https://ror.org/05fgy3p67 West London Mental Health NHS Trust'), (24603, 'https://ror.org/05fheeb41', 'en', 1, 'https://ror.org/05fheeb41 Universidad de Sancti Spíritus José Martí Pérez University of Sancti Spíritus José Martí Pérez'), (24604, 'https://ror.org/05fhgtk93', 'en', 1, 'https://ror.org/05fhgtk93 La commission des étudiants Students Commission'), (24605, 'https://ror.org/05fhkjk84', 'no_lang_code', 1, 'https://ror.org/05fhkjk84 Onteca (United Kingdom)'), (24606, 'https://ror.org/05fnph064', 'es', 1, 'https://ror.org/05fnph064 Universidad Realística de México'), (24607, 'https://ror.org/05fnsjm04', 'en', 1, 'https://ror.org/05fnsjm04 Brooklands Hospital'), (24608, 'https://ror.org/05fsfff09', 'en', 1, 'https://ror.org/05fsfff09 L''Association d''art des universités du Canada Universities Art Association of Canada'), (24609, 'https://ror.org/05fsnfd13', 'en', 1, 'https://ror.org/05fsnfd13 Lewes Victoria Hospital'), (24610, 'https://ror.org/05g0b4875', 'no_lang_code', 1, 'https://ror.org/05g0b4875 Teknimed (France)'), (24611, 'https://ror.org/05g1k4d79', 'en', 1, 'https://ror.org/05g1k4d79 North-Caucasus Federal University Северо-Кавказский федеральный университет'), (24612, 'https://ror.org/05g223j58', 'no_lang_code', 1, 'https://ror.org/05g223j58 Plant (United States)'), (24613, 'https://ror.org/05g23q746', 'en', 1, 'https://ror.org/05g23q746 Mid Yorkshire Hospitals NHS Trust'), (24614, 'https://ror.org/05g269s74', 'no_lang_code', 1, 'https://ror.org/05g269s74 Systemite (Sweden)'), (24615, 'https://ror.org/05g3wdh84', 'en', 1, 'https://ror.org/05g3wdh84 Akwa Ibom State University'), (24616, 'https://ror.org/05g82f642', 'en', 1, 'https://ror.org/05g82f642 National Telecommunications Institute المعهد القومى للاتصالات'), (24617, 'https://ror.org/05g9kje37', 'fr', 1, 'https://ror.org/05g9kje37 Institut Supérieur de Gestion'), (24618, 'https://ror.org/05ga8m074', 'en', 1, 'https://ror.org/05ga8m074 Pennine Acute Hospitals NHS Trust'), (24619, 'https://ror.org/05gaa6j70', 'en', 1, 'https://ror.org/05gaa6j70 Bolivarian University of Chile Universidad Bolivariana de Chile'), (24620, 'https://ror.org/05gcakm88', 'en', 1, 'https://ror.org/05gcakm88 Association of Lunar and Planetary Observers'), (24621, 'https://ror.org/05ge25h32', 'en', 1, 'https://ror.org/05ge25h32 National Circus School École nationale de cirque'), (24622, 'https://ror.org/05gfgee67', 'no_lang_code', 1, 'https://ror.org/05gfgee67 ProteinLogic (United Kingdom)'), (24623, 'https://ror.org/05ggcs531', 'en', 1, 'https://ror.org/05ggcs531 Catholic University of Trujillo Universidad Católica de Trujillo'), (24624, 'https://ror.org/05ggndd89', 'no_lang_code', 1, 'https://ror.org/05ggndd89 eLEAF (Netherlands)'), (24625, 'https://ror.org/05gj0xf20', 'no_lang_code', 1, 'https://ror.org/05gj0xf20 Ubisense'), (24626, 'https://ror.org/05gjd9170', 'en', 1, 'https://ror.org/05gjd9170 Polytechnic University of the Valley of Mexico Universidad Politécnica del Valle de México'), (24627, 'https://ror.org/05gn43523', 'no_lang_code', 1, 'https://ror.org/05gn43523 Smart Metering Systems (United Kingdom)'), (24628, 'https://ror.org/05gp0bv85', 'no_lang_code', 1, 'https://ror.org/05gp0bv85 SEAS-NVE (Denmark)'), (24629, 'https://ror.org/05gptew44', 'no_lang_code', 1, 'https://ror.org/05gptew44 National Computing Centre (United Kingdom)'), (24630, 'https://ror.org/05gqfmc91', 'en', 1, 'https://ror.org/05gqfmc91 Nebraska Department of Agriculture'), (24631, 'https://ror.org/05gqfsf87', 'es', 1, 'https://ror.org/05gqfsf87 Universidad Autónoma del Caribe'), (24632, 'https://ror.org/05gtkhg75', 'no_lang_code', 1, 'https://ror.org/05gtkhg75 Predictek (United States)'), (24633, 'https://ror.org/05gwcqj56', 'en', 1, 'https://ror.org/05gwcqj56 Umaru Musa Yar''adua University'), (24634, 'https://ror.org/05gwq9m97', 'no_lang_code', 1, 'https://ror.org/05gwq9m97 SpectraGenetics (United States)'), (24635, 'https://ror.org/05gx5rk78', 'no_lang_code', 1, 'https://ror.org/05gx5rk78 Spolchemie (Czechia) Spolek pro chemickou a hutní výrobu'), (24636, 'https://ror.org/05gzs4q18', 'no_lang_code', 1, 'https://ror.org/05gzs4q18 Tesla Engineering (United Kingdom)'), (24637, 'https://ror.org/05h017e13', 'no_lang_code', 1, 'https://ror.org/05h017e13 Sciperio (United States)'), (24638, 'https://ror.org/05h22s698', 'fi', 1, 'https://ror.org/05h22s698 Hankasalmen observatorio, Hankasalmi Observatory'), (24639, 'https://ror.org/05h279t85', 'en', 1, 'https://ror.org/05h279t85 Observatoire du vatican Specola Vaticana Vatican Observatory Vatikanische Sternwarte'), (24640, 'https://ror.org/05h2czb21', 'no_lang_code', 1, 'https://ror.org/05h2czb21 Nutech (Germany)'), (24641, 'https://ror.org/05h2sfb33', 'de', 1, 'https://ror.org/05h2sfb33 Platte Consult'), (24642, 'https://ror.org/05h2ydr55', 'no_lang_code', 1, 'https://ror.org/05h2ydr55 Milagen (United States)'), (24643, 'https://ror.org/05h3nqt19', 'no_lang_code', 1, 'https://ror.org/05h3nqt19 TC Scientific (Canada)'), (24644, 'https://ror.org/05h4nz838', 'no_lang_code', 1, 'https://ror.org/05h4nz838 UCO Raymond Denim (Belgium)'), (24645, 'https://ror.org/05h6yvy73', 'es', 1, 'https://ror.org/05h6yvy73 Universidad Nacional de la Amazonía Peruana'), (24646, 'https://ror.org/05h85dx49', 'no_lang_code', 1, 'https://ror.org/05h85dx49 Vipem Hackert (Germany)'), (24647, 'https://ror.org/05h877m37', 'no_lang_code', 1, 'https://ror.org/05h877m37 WaterstofNet (Belgium)'), (24648, 'https://ror.org/05h9c3z20', 'es', 1, 'https://ror.org/05h9c3z20 Universidad del Valle de México'), (24649, 'https://ror.org/05h9h0e34', 'en', 1, 'https://ror.org/05h9h0e34 Hokkai Gakuen University 北海学園大学'), (24650, 'https://ror.org/05h9ysj75', 'en', 1, 'https://ror.org/05h9ysj75 Willesden Community Rehabilitation Hospital'), (24651, 'https://ror.org/05ha03268', 'en', 1, 'https://ror.org/05ha03268 Lincolnshire Community Health Services NHS Trust'), (24652, 'https://ror.org/05hawxe81', 'en', 1, 'https://ror.org/05hawxe81 YangPu Geriatric Hospital 上海市杨浦老年医院'), (24653, 'https://ror.org/05hhc1155', 'en', 1, 'https://ror.org/05hhc1155 Bronberg Observatory'), (24654, 'https://ror.org/05hjjhn63', 'es', 1, 'https://ror.org/05hjjhn63 Centro de Estudios Universitarios Arkos'), (24655, 'https://ror.org/05hjs5k87', 'no_lang_code', 1, 'https://ror.org/05hjs5k87 Sick (Germany)'), (24656, 'https://ror.org/05hjyfv39', 'es', 1, 'https://ror.org/05hjyfv39 Universidad del Centro del Bajío'), (24657, 'https://ror.org/05hk9ey90', 'en', 1, 'https://ror.org/05hk9ey90 Sage Gateshead'), (24658, 'https://ror.org/05hkcdk24', 'en', 1, 'https://ror.org/05hkcdk24 Union of Dairy Beef Food Industrialists and Producers of Turkey'), (24659, 'https://ror.org/05hnnj870', 'hu', 1, 'https://ror.org/05hnnj870 VADASKERT FOUNDATION FOR CHILDREN''S MENTAL HEALTH Vadaskert Alapítvány a Gyermekek Lelki Egészségéért'), (24660, 'https://ror.org/05hpc6k82', 'es', 1, 'https://ror.org/05hpc6k82 Universidad Marista de Mérida'), (24661, 'https://ror.org/05hpjvd22', 'en', 1, 'https://ror.org/05hpjvd22 Republican Research and Practical Center for Epidemiology and Microbiology Республиканский научно-практический центр эпидемиологии и микробиологии'), (24662, 'https://ror.org/05hpsdw90', 'no_lang_code', 1, 'https://ror.org/05hpsdw90 Nice Systems (Israel)'), (24663, 'https://ror.org/05hsgxf19', 'en', 1, 'https://ror.org/05hsgxf19 Milpark Education'), (24664, 'https://ror.org/05htddj49', 'en', 1, 'https://ror.org/05htddj49 Orange County Board of Commissioners'), (24665, 'https://ror.org/05htkw892', 'no_lang_code', 1, 'https://ror.org/05htkw892 Hemanext (United States)'), (24666, 'https://ror.org/05htw0667', 'en', 1, 'https://ror.org/05htw0667 Finlandia University Université finlandia'), (24667, 'https://ror.org/05htw5381', 'no_lang_code', 1, 'https://ror.org/05htw5381 Organogenesis (United States)'), (24668, 'https://ror.org/05hvsnq92', 'en', 1, 'https://ror.org/05hvsnq92 Naropa University'), (24669, 'https://ror.org/05j2jar38', 'en', 1, 'https://ror.org/05j2jar38 Peterlee Community Hospital'), (24670, 'https://ror.org/05j2xah23', 'es', 1, 'https://ror.org/05j2xah23 Universidad Latina de América'), (24671, 'https://ror.org/05j35dh88', 'no_lang_code', 1, 'https://ror.org/05j35dh88 Q Bot (United Kingdom)'), (24672, 'https://ror.org/05j49wk85', 'en', 1, 'https://ror.org/05j49wk85 Springfield University Hospital'), (24673, 'https://ror.org/05j4pfa30', 'pt', 1, 'https://ror.org/05j4pfa30 Hospital de São Sebastião'), (24674, 'https://ror.org/05j53g380', 'no_lang_code', 1, 'https://ror.org/05j53g380 Innovation Pharmaceuticals (United States)'), (24675, 'https://ror.org/05j75hk11', 'no_lang_code', 1, 'https://ror.org/05j75hk11 Masermic (Spain)'), (24676, 'https://ror.org/05j7bes85', 'no_lang_code', 1, 'https://ror.org/05j7bes85 Progress Printing (United States)'), (24677, 'https://ror.org/05j857112', 'no_lang_code', 1, 'https://ror.org/05j857112 WS (Germany)'), (24678, 'https://ror.org/05j8jw743', 'es', 1, 'https://ror.org/05j8jw743 Universidad de la Comunicación'), (24679, 'https://ror.org/05j8nkz58', 'no_lang_code', 1, 'https://ror.org/05j8nkz58 Innovation Enterprise Impuls (Poland)'), (24680, 'https://ror.org/05j9gf041', 'no_lang_code', 1, 'https://ror.org/05j9gf041 Merinova (Finland)'), (24681, 'https://ror.org/05jf4s961', 'no_lang_code', 1, 'https://ror.org/05jf4s961 NanoIntegris (United States)'), (24682, 'https://ror.org/05jj6ma85', 'es', 1, 'https://ror.org/05jj6ma85 Institución Universitaria de Envigado'), (24683, 'https://ror.org/05jj78523', 'no_lang_code', 1, 'https://ror.org/05jj78523 Polinter (Spain)'), (24684, 'https://ror.org/05jjyv308', 'en', 1, 'https://ror.org/05jjyv308 Chelmsford and Essex Hospital'), (24685, 'https://ror.org/05jk5p721', 'no_lang_code', 1, 'https://ror.org/05jk5p721 Pedro Roquet (Spain)'), (24686, 'https://ror.org/05jm9mh74', 'fr', 1, 'https://ror.org/05jm9mh74 Centre Hospitalier René-Dubos'), (24687, 'https://ror.org/05jn5y837', 'en', 1, 'https://ror.org/05jn5y837 Cross Lane Hospital'), (24688, 'https://ror.org/05jnqz832', 'es', 1, 'https://ror.org/05jnqz832 Catholic University of Culiacan Universidad Católica de Culiacán'), (24689, 'https://ror.org/05jrasj33', 'no_lang_code', 1, 'https://ror.org/05jrasj33 Optocap (United Kingdom)'), (24690, 'https://ror.org/05jsyda60', 'no_lang_code', 1, 'https://ror.org/05jsyda60 Technoport (Luxembourg)'), (24691, 'https://ror.org/05jthnf79', 'no_lang_code', 1, 'https://ror.org/05jthnf79 PBS Turbo (Czechia)'), (24692, 'https://ror.org/05jthsa98', 'es', 1, 'https://ror.org/05jthsa98 Universidad Abierta Para Adultos'), (24693, 'https://ror.org/05jtjvf20', 'no_lang_code', 1, 'https://ror.org/05jtjvf20 Omnisense (United Kingdom)'), (24694, 'https://ror.org/05jtnhy61', 'en', 1, 'https://ror.org/05jtnhy61 Bệnh viện Nhi đồng 1 Children''s Hospital 1'), (24695, 'https://ror.org/05jv51744', 'no_lang_code', 1, 'https://ror.org/05jv51744 Surflay Nanotec (Germany)'), (24696, 'https://ror.org/05jvh0739', 'en', 1, 'https://ror.org/05jvh0739 Sonoda Women''s University 園田学園女子大学'), (24697, 'https://ror.org/05jy9jt03', 'en', 1, 'https://ror.org/05jy9jt03 Sierra College'), (24698, 'https://ror.org/05jybk243', 'en', 1, 'https://ror.org/05jybk243 Professional Engineers Ontario'), (24699, 'https://ror.org/05jz3sn81', 'en', 1, 'https://ror.org/05jz3sn81 University of the Cumberlands'), (24700, 'https://ror.org/05k120s23', 'en', 1, 'https://ror.org/05k120s23 Nasson College'), (24701, 'https://ror.org/05k19bk82', 'es', 1, 'https://ror.org/05k19bk82 Universidad Cristiana de Panamá'), (24702, 'https://ror.org/05k1xfg56', 'no_lang_code', 1, 'https://ror.org/05k1xfg56 Pharos International (Belgium)'), (24703, 'https://ror.org/05k21nx54', 'en', 1, 'https://ror.org/05k21nx54 Samuel Johnson Community Hospital'), (24704, 'https://ror.org/05k2ek264', 'no_lang_code', 1, 'https://ror.org/05k2ek264 Vigo System (Poland)'), (24705, 'https://ror.org/05k35b119', 'de', 1, 'https://ror.org/05k35b119 Staatliches Museum für Naturkunde Stuttgart State Museum of Natural History Stuttgart'), (24706, 'https://ror.org/05k5g2d46', 'no_lang_code', 1, 'https://ror.org/05k5g2d46 NBE Tech (United States)'), (24707, 'https://ror.org/05k6ewa71', 'no_lang_code', 1, 'https://ror.org/05k6ewa71 Where''s Everybody (Malta)'), (24708, 'https://ror.org/05k887p27', 'no_lang_code', 1, 'https://ror.org/05k887p27 R&D Systems (United States)'), (24709, 'https://ror.org/05ke08a35', 'no_lang_code', 1, 'https://ror.org/05ke08a35 Air Products (Spain)'), (24710, 'https://ror.org/05keb2d81', 'no_lang_code', 1, 'https://ror.org/05keb2d81 Yprema (France)'), (24711, 'https://ror.org/05khdc453', 'es', 1, 'https://ror.org/05khdc453 Universidad Pública de El Alto'), (24712, 'https://ror.org/05kkct931', 'es', 1, 'https://ror.org/05kkct931 Universidad APEC, Universidad Acción Pro-Educación y Cultura'), (24713, 'https://ror.org/05km9hp38', 'en', 1, 'https://ror.org/05km9hp38 Jefferson Hospital for Neuroscience'), (24714, 'https://ror.org/05kpdq249', 'pt', 1, 'https://ror.org/05kpdq249 Centro Universitário Celso Lisboa'), (24715, 'https://ror.org/05kvc3j25', 'es', 1, 'https://ror.org/05kvc3j25 Universidad Mundial'), (24716, 'https://ror.org/05kzvw994', 'en', 1, 'https://ror.org/05kzvw994 Three Rivers Community College'), (24717, 'https://ror.org/05m031e17', 'en', 1, 'https://ror.org/05m031e17 Universidad de Cienfuegos University of Cienfuegos'), (24718, 'https://ror.org/05m0z9f45', 'no_lang_code', 1, 'https://ror.org/05m0z9f45 Duro Felguera (Spain)'), (24719, 'https://ror.org/05m25x550', 'no_lang_code', 1, 'https://ror.org/05m25x550 Microsens (Switzerland)'), (24720, 'https://ror.org/05m3mzx29', 'no_lang_code', 1, 'https://ror.org/05m3mzx29 Gnubila Technology (France)'), (24721, 'https://ror.org/05m3wdv79', 'en', 1, 'https://ror.org/05m3wdv79 Wichita Community Foundation'), (24722, 'https://ror.org/05m4hh157', 'no_lang_code', 1, 'https://ror.org/05m4hh157 Pulkovo Observatory Пулковская обсерватория'), (24723, 'https://ror.org/05m58vw43', 'en', 1, 'https://ror.org/05m58vw43 St Austell Community Hospital'), (24724, 'https://ror.org/05m7smv12', 'en', 1, 'https://ror.org/05m7smv12 Egyptian Aviation Academy الأكاديمية المصرية لعلوم الطيران'), (24725, 'https://ror.org/05mb0rj41', 'no_lang_code', 1, 'https://ror.org/05mb0rj41 Virtual Brands (United States)'), (24726, 'https://ror.org/05mbcxm36', 'no_lang_code', 1, 'https://ror.org/05mbcxm36 Almina (Portugal)'), (24727, 'https://ror.org/05mcdgy79', 'en', 1, 'https://ror.org/05mcdgy79 Spire Clare Park Hospital'), (24728, 'https://ror.org/05mcefa73', 'no_lang_code', 1, 'https://ror.org/05mcefa73 Sifam Tinsley (United Kingdom)'), (24729, 'https://ror.org/05mcesg65', 'en', 1, 'https://ror.org/05mcesg65 Colorado Christian University'), (24730, 'https://ror.org/05mjwb095', 'no_lang_code', 1, 'https://ror.org/05mjwb095 NanoWave (United States)'), (24731, 'https://ror.org/05mnjs436', 'en', 1, 'https://ror.org/05mnjs436 Dezhou University 德州学院'), (24732, 'https://ror.org/05mpv2p10', 'no_lang_code', 1, 'https://ror.org/05mpv2p10 Sunamp (United Kingdom)'), (24733, 'https://ror.org/05mqxwn60', 'no_lang_code', 1, 'https://ror.org/05mqxwn60 Star-Oddi (Iceland)'), (24734, 'https://ror.org/05msnze33', 'de', 1, 'https://ror.org/05msnze33 Agaplesion Diakonieklinikum Rotenburg'), (24735, 'https://ror.org/05mwf7z25', 'no_lang_code', 1, 'https://ror.org/05mwf7z25 Refind (Sweden)'), (24736, 'https://ror.org/05mx53e97', 'es', 1, 'https://ror.org/05mx53e97 Universidad Amazonica de Pando'), (24737, 'https://ror.org/05mxhk636', 'en', 1, 'https://ror.org/05mxhk636 Princess of Wales Community Hospital'), (24738, 'https://ror.org/05myvnr67', 'en', 1, 'https://ror.org/05myvnr67 Romsey Hospital'), (24739, 'https://ror.org/05myvyk91', 'es', 1, 'https://ror.org/05myvyk91 Universidad del Arte Ganexa'), (24740, 'https://ror.org/05mzsjr54', 'no_lang_code', 1, 'https://ror.org/05mzsjr54 TechnoPhage (Portugal)'), (24741, 'https://ror.org/05n1t5q87', 'en', 1, 'https://ror.org/05n1t5q87 Ripley Hospital'), (24742, 'https://ror.org/05n2gzs35', 'fr', 1, 'https://ror.org/05n2gzs35 Université Djilali Bounaama Khemis Miliana جامعة جيلالي بونعامة خميس مليانة'), (24743, 'https://ror.org/05n47cs30', 'en', 1, 'https://ror.org/05n47cs30 Nangarhar University دانشگاه ننگرهار'), (24744, 'https://ror.org/05n7j1m63', 'en', 1, 'https://ror.org/05n7j1m63 West Valley High School'), (24745, 'https://ror.org/05n8nz691', 'no_lang_code', 1, 'https://ror.org/05n8nz691 SOLID (Austria)'), (24746, 'https://ror.org/05ncmk960', 'fr', 1, 'https://ror.org/05ncmk960 Institut National d''Aménagement et d''Urbanisme'), (24747, 'https://ror.org/05ncqj764', 'en', 1, 'https://ror.org/05ncqj764 Huangshi Central Hospital 黄石市中心医院'), (24748, 'https://ror.org/05ndyzk28', 'no_lang_code', 1, 'https://ror.org/05ndyzk28 Luftfartsverket (Sweden) Swedish Civil Aviation Administration'), (24749, 'https://ror.org/05net6471', 'pt', 1, 'https://ror.org/05net6471 Centro Universitário da Grande Dourados'), (24750, 'https://ror.org/05nkfrm56', 'fr', 1, 'https://ror.org/05nkfrm56 Ministère de l''Enseignement Superieur et de la Recherche'), (24751, 'https://ror.org/05nm1mf61', 'no_lang_code', 1, 'https://ror.org/05nm1mf61 Cegos (Italy)'), (24752, 'https://ror.org/05np2xn95', 'en', 1, 'https://ror.org/05np2xn95 Kwara State University'), (24753, 'https://ror.org/05nq31604', 'no_lang_code', 1, 'https://ror.org/05nq31604 Mirari Biosciences (United States)'), (24754, 'https://ror.org/05nqrfj72', 'no_lang_code', 1, 'https://ror.org/05nqrfj72 UK Power Networks'), (24755, 'https://ror.org/05nrv0z71', 'no_lang_code', 1, 'https://ror.org/05nrv0z71 Sorain Cecchini Tecno (Italy)'), (24756, 'https://ror.org/05ntbjw82', 'no_lang_code', 1, 'https://ror.org/05ntbjw82 Microtest (Spain)'), (24757, 'https://ror.org/05nvnp350', 'en', 1, 'https://ror.org/05nvnp350 Richmond Area Multi-Services'), (24758, 'https://ror.org/05nw3yr55', 'en', 1, 'https://ror.org/05nw3yr55 St Ann’s Hospital'), (24759, 'https://ror.org/05p2fta25', 'en', 1, 'https://ror.org/05p2fta25 Harwich And District Hospital'), (24760, 'https://ror.org/05p4rzq96', 'es', 1, 'https://ror.org/05p4rzq96 Universidad Señor de Sipán'), (24761, 'https://ror.org/05p4xk507', 'en', 1, 'https://ror.org/05p4xk507 Canadian Research Institute for the Advancement of Women Institut Canadien de Recherches sur les Femmes'), (24762, 'https://ror.org/05p5dfv61', 'en', 1, 'https://ror.org/05p5dfv61 Tennessee Voices for Children'), (24763, 'https://ror.org/05p811391', 'en', 1, 'https://ror.org/05p811391 National Advanced School of Public Works École Nationale Supérieure des Travaux Publics'), (24764, 'https://ror.org/05p8sx023', 'es', 1, 'https://ror.org/05p8sx023 Corporación Universitaria Centro Superior'), (24765, 'https://ror.org/05p9dka41', 'es', 1, 'https://ror.org/05p9dka41 Universidad de Matehuala'), (24766, 'https://ror.org/05pa24340', 'fr', 1, 'https://ror.org/05pa24340 École Royale Navale'), (24767, 'https://ror.org/05pa5kt82', 'en', 1, 'https://ror.org/05pa5kt82 Radioactive Waste Repository Authority'), (24768, 'https://ror.org/05pbbmz23', 'en', 1, 'https://ror.org/05pbbmz23 Bureau du Conseil privé Privy Council Office'), (24769, 'https://ror.org/05pbmhp44', 'en', 1, 'https://ror.org/05pbmhp44 Mediterranean Network of Basin Organisations'), (24770, 'https://ror.org/05petvd47', 'en', 1, 'https://ror.org/05petvd47 Tibet University 西藏大学'), (24771, 'https://ror.org/05pgmqf50', 'no_lang_code', 1, 'https://ror.org/05pgmqf50 Profile Associates (United States)'), (24772, 'https://ror.org/05pjd0m90', 'en', 1, 'https://ror.org/05pjd0m90 The Royal Wolverhampton NHS Trust'), (24773, 'https://ror.org/05pm0vd24', 'es', 1, 'https://ror.org/05pm0vd24 Fundación Universitaria Los Libertadores University Foundation Los Libertadores'), (24774, 'https://ror.org/05pnejf26', 'fr', 1, 'https://ror.org/05pnejf26 École Polyvalente Supérieure d''Informatique et d''Électronique'), (24775, 'https://ror.org/05pnzjf85', 'es', 1, 'https://ror.org/05pnzjf85 Universidad Estatal del Sur de Manabi'), (24776, 'https://ror.org/05ppcbv70', 'no_lang_code', 1, 'https://ror.org/05ppcbv70 Meggitt (France)'), (24777, 'https://ror.org/05ppgmq25', 'no_lang_code', 1, 'https://ror.org/05ppgmq25 Socialdata (Germany)'), (24778, 'https://ror.org/05ppr9v64', 'no_lang_code', 1, 'https://ror.org/05ppr9v64 Posit Science (United States)'), (24779, 'https://ror.org/05pq96t26', 'no_lang_code', 1, 'https://ror.org/05pq96t26 Association of the Austrian Cement Industry Vereinigung der Österreichischen Zementindustrie'), (24780, 'https://ror.org/05pqt0f15', 'no_lang_code', 1, 'https://ror.org/05pqt0f15 NanoPET Pharma (Germany)'), (24781, 'https://ror.org/05pv4jg27', 'en', 1, 'https://ror.org/05pv4jg27 Udaipur Solar Observatory'), (24782, 'https://ror.org/05pvbk494', 'en', 1, 'https://ror.org/05pvbk494 Western Delta University'), (24783, 'https://ror.org/05pvtn103', 'en', 1, 'https://ror.org/05pvtn103 Hythe Hospital'), (24784, 'https://ror.org/05py7h914', 'no_lang_code', 1, 'https://ror.org/05py7h914 Nimbus (Italy)'), (24785, 'https://ror.org/05pzh4402', 'sv', 1, 'https://ror.org/05pzh4402 Visby lasarett'), (24786, 'https://ror.org/05q041y44', 'no_lang_code', 1, 'https://ror.org/05q041y44 Kokugakuin University 國學院大學'), (24787, 'https://ror.org/05q10zf45', 'no_lang_code', 1, 'https://ror.org/05q10zf45 Quviq (Sweden)'), (24788, 'https://ror.org/05q1et630', 'no_lang_code', 1, 'https://ror.org/05q1et630 Prototal (Sweden)'), (24789, 'https://ror.org/05q1nwf35', 'sv', 1, 'https://ror.org/05q1nwf35 NordGen'), (24790, 'https://ror.org/05q1xcs51', 'no_lang_code', 1, 'https://ror.org/05q1xcs51 PDS Biotechnology (United States)'), (24791, 'https://ror.org/05q2fkx40', 'no_lang_code', 1, 'https://ror.org/05q2fkx40 Mondeca (France)'), (24792, 'https://ror.org/05q2q5n15', 'no_lang_code', 1, 'https://ror.org/05q2q5n15 Progis Software (Austria)'), (24793, 'https://ror.org/05q37wj74', 'es', 1, 'https://ror.org/05q37wj74 Fundación Universitaria de San Gil'), (24794, 'https://ror.org/05q6p8h20', 'en', 1, 'https://ror.org/05q6p8h20 Wilkes-Barre General Hospital'), (24795, 'https://ror.org/05q6sxg43', 'es', 1, 'https://ror.org/05q6sxg43 Universidad Interamericana del Norte'), (24796, 'https://ror.org/05q7b6a32', 'en', 1, 'https://ror.org/05q7b6a32 Orchards Day Hospital'), (24797, 'https://ror.org/05q9vjc76', 'no_lang_code', 1, 'https://ror.org/05q9vjc76 Richmond Chemical (United States)'), (24798, 'https://ror.org/05qc8r157', 'no_lang_code', 1, 'https://ror.org/05qc8r157 Portic Barcelona'), (24799, 'https://ror.org/05qd85289', 'no_lang_code', 1, 'https://ror.org/05qd85289 Outotec (Finland)'), (24800, 'https://ror.org/05qdfs727', 'no_lang_code', 1, 'https://ror.org/05qdfs727 Silicon Audio (United States)'), (24801, 'https://ror.org/05qep9y26', 'no_lang_code', 1, 'https://ror.org/05qep9y26 Perceptive Engineering (United Kingdom)'), (24802, 'https://ror.org/05qf4x681', 'en', 1, 'https://ror.org/05qf4x681 Manchester Digital Laboratory'); INSERT INTO `rors` VALUES (24803, 'https://ror.org/05qgtj846', 'no_lang_code', 1, 'https://ror.org/05qgtj846 Ogenx Therapeutics (United States)'), (24804, 'https://ror.org/05qh38f12', 'en', 1, 'https://ror.org/05qh38f12 Takushoku University 拓殖 大学'), (24805, 'https://ror.org/05qj15q72', 'en', 1, 'https://ror.org/05qj15q72 Southwestern Christian University'), (24806, 'https://ror.org/05qj4gz58', 'no_lang_code', 1, 'https://ror.org/05qj4gz58 MicroSurfaces (United States)'), (24807, 'https://ror.org/05qj64q37', 'en', 1, 'https://ror.org/05qj64q37 United States International University Africa'), (24808, 'https://ror.org/05qqnvx16', 'no_lang_code', 1, 'https://ror.org/05qqnvx16 Metropolitana Milanese (Italy)'), (24809, 'https://ror.org/05qqqz947', 'en', 1, 'https://ror.org/05qqqz947 Ohio Development Services Agency'), (24810, 'https://ror.org/05qs31q25', 'en', 1, 'https://ror.org/05qs31q25 Kyoto University Research Reactor Institute 京都大学複合原子力科学研究所'), (24811, 'https://ror.org/05qtb1210', 'no_lang_code', 1, 'https://ror.org/05qtb1210 Poste Italiane (Italy)'), (24812, 'https://ror.org/05qteks55', 'no_lang_code', 1, 'https://ror.org/05qteks55 Ametek (United Kingdom)'), (24813, 'https://ror.org/05qxc8r48', 'es', 1, 'https://ror.org/05qxc8r48 Instituto Profesional De Ciencias Y Artes'), (24814, 'https://ror.org/05r2h7161', 'en', 1, 'https://ror.org/05r2h7161 Test Positive Aware Network'), (24815, 'https://ror.org/05r2yk395', 'en', 1, 'https://ror.org/05r2yk395 Tähtitieteellinen yhdistys Ursa ry Ursa Astronomical Association'), (24816, 'https://ror.org/05r4ezy10', 'no_lang_code', 1, 'https://ror.org/05r4ezy10 XMOS (United Kingdom)'), (24817, 'https://ror.org/05r5dcc67', 'en', 1, 'https://ror.org/05r5dcc67 Mold Community Hospital Ysbyty Cymuned yr Wyddgrug'), (24818, 'https://ror.org/05r61jg22', 'no_lang_code', 1, 'https://ror.org/05r61jg22 Oikon (Croatia)'), (24819, 'https://ror.org/05r754v60', 'es', 1, 'https://ror.org/05r754v60 Universidad Autónoma de Piedras Negras'), (24820, 'https://ror.org/05r7p7m46', 'no_lang_code', 1, 'https://ror.org/05r7p7m46 Offshore Installation Services (United Kingdom)'), (24821, 'https://ror.org/05r7wgd74', 'no_lang_code', 1, 'https://ror.org/05r7wgd74 Nexans (Germany)'), (24822, 'https://ror.org/05r7x7136', 'en', 1, 'https://ror.org/05r7x7136 Society for Mathematical Psychology'), (24823, 'https://ror.org/05r89fw56', 'es', 1, 'https://ror.org/05r89fw56 Universidad del Valle de Puebla'), (24824, 'https://ror.org/05r8m9m38', 'no_lang_code', 1, 'https://ror.org/05r8m9m38 Newbiotechnic (Spain)'), (24825, 'https://ror.org/05r9r2h28', 'es', 1, 'https://ror.org/05r9r2h28 Universidad de la Integración de las Américas'), (24826, 'https://ror.org/05radvt19', 'en', 1, 'https://ror.org/05radvt19 University of Hawaii–West Oahu'), (24827, 'https://ror.org/05rcf8d17', 'es', 1, 'https://ror.org/05rcf8d17 Universidad Continental'), (24828, 'https://ror.org/05rcqrz41', 'en', 1, 'https://ror.org/05rcqrz41 African Institute of Science and Technology'), (24829, 'https://ror.org/05reesp83', 'en', 1, 'https://ror.org/05reesp83 University Psychiatric Hospital Univerzitetna psihiatrična klinika Ljubljana'), (24830, 'https://ror.org/05ref2c25', 'no_lang_code', 1, 'https://ror.org/05ref2c25 Valacta (Canada)'), (24831, 'https://ror.org/05rfgws98', 'en', 1, 'https://ror.org/05rfgws98 Department of Health'), (24832, 'https://ror.org/05rga6m50', 'no_lang_code', 1, 'https://ror.org/05rga6m50 OmniActive Health Technologies (Canada)'), (24833, 'https://ror.org/05rnpra73', 'no_lang_code', 1, 'https://ror.org/05rnpra73 Tapecon (United States)'), (24834, 'https://ror.org/05rp7bv68', 'no_lang_code', 1, 'https://ror.org/05rp7bv68 Polatis (United Kingdom)'), (24835, 'https://ror.org/05rqdkd73', 'es', 1, 'https://ror.org/05rqdkd73 Centro Universitario Columbia'), (24836, 'https://ror.org/05rr3y439', 'en', 1, 'https://ror.org/05rr3y439 Free University of Tbilisi Свободный университет Тбилиси თავისუფალი უნივერსიტეტი'), (24837, 'https://ror.org/05rrwve30', 'no_lang_code', 1, 'https://ror.org/05rrwve30 Ripple (United States)'), (24838, 'https://ror.org/05rsfnx05', 'es', 1, 'https://ror.org/05rsfnx05 Universidad Pedagógica Nacional Francisco Morazán'), (24839, 'https://ror.org/05rtxtk57', 'en', 1, 'https://ror.org/05rtxtk57 Pocatello High School'), (24840, 'https://ror.org/05rvmn457', 'no_lang_code', 1, 'https://ror.org/05rvmn457 Visual Health Information'), (24841, 'https://ror.org/05rye6v40', 'en', 1, 'https://ror.org/05rye6v40 Saskatchewan Conservation Learning Centre'), (24842, 'https://ror.org/05s08zz66', 'no_lang_code', 1, 'https://ror.org/05s08zz66 Ultrasion (Spain)'), (24843, 'https://ror.org/05s293m17', 'en', 1, 'https://ror.org/05s293m17 Congleton War Memorial Hospital'), (24844, 'https://ror.org/05s29c959', 'en', 1, 'https://ror.org/05s29c959 Nahda University جامعة النهضة'), (24845, 'https://ror.org/05s8ae250', 'es', 1, 'https://ror.org/05s8ae250 American Isthmus University Universidad Istmo Americana'), (24846, 'https://ror.org/05s8x6c38', 'en', 1, 'https://ror.org/05s8x6c38 Novena University'), (24847, 'https://ror.org/05sagpq04', 'en', 1, 'https://ror.org/05sagpq04 Women in Science and Engineering Newfoundland and Labrador'), (24848, 'https://ror.org/05sbphk63', 'no_lang_code', 1, 'https://ror.org/05sbphk63 Plastic Flow (United States)'), (24849, 'https://ror.org/05sd0rs38', 'no_lang_code', 1, 'https://ror.org/05sd0rs38 Reach Technologies (Canada)'), (24850, 'https://ror.org/05sd11n59', 'fr', 1, 'https://ror.org/05sd11n59 École Nationale d''Administration et de Magistrature'), (24851, 'https://ror.org/05sd91r15', 'en', 1, 'https://ror.org/05sd91r15 Istituto di Ricerca per la Terapia Genetica Umana Research Institute for Genetic and Human Therapy'), (24852, 'https://ror.org/05sdess02', 'no_lang_code', 1, 'https://ror.org/05sdess02 mLED (United Kingdom)'), (24853, 'https://ror.org/05sed7d42', 'no_lang_code', 1, 'https://ror.org/05sed7d42 Tingtun (Norway)'), (24854, 'https://ror.org/05sfyk691', 'en', 1, 'https://ror.org/05sfyk691 Department of Behavioral Health and Intellectual Disability Services'), (24855, 'https://ror.org/05shyvt50', 'en', 1, 'https://ror.org/05shyvt50 Langley Green Hospital'), (24856, 'https://ror.org/05sj65q02', 'no_lang_code', 1, 'https://ror.org/05sj65q02 THAP Group (United States)'), (24857, 'https://ror.org/05sjfxm32', 'en', 1, 'https://ror.org/05sjfxm32 Orders of St John Care Trust'), (24858, 'https://ror.org/05sjmgm82', 'en', 1, 'https://ror.org/05sjmgm82 World Agency of Planetary Monitoring & Earthquake Risk Reduction'), (24859, 'https://ror.org/05sjznd72', 'en', 1, 'https://ror.org/05sjznd72 Morinomiya University of Medical Sciences 森ノ宮医療大学'), (24860, 'https://ror.org/05skzv947', 'no_lang_code', 1, 'https://ror.org/05skzv947 CTT Group (Canada)'), (24861, 'https://ror.org/05smvaw93', 'no_lang_code', 1, 'https://ror.org/05smvaw93 Zigpos (Germany)'), (24862, 'https://ror.org/05smwx616', 'no_lang_code', 1, 'https://ror.org/05smwx616 Schneeberger (Switzerland)'), (24863, 'https://ror.org/05smxxj12', 'en', 1, 'https://ror.org/05smxxj12 Malton Community Hospital'), (24864, 'https://ror.org/05sngcy82', 'no_lang_code', 1, 'https://ror.org/05sngcy82 STEAG (Germany) Steinkohlen-Elektrizität'), (24865, 'https://ror.org/05spgdz37', 'es', 1, 'https://ror.org/05spgdz37 Universidad Autónoma de La Laguna'), (24866, 'https://ror.org/05sps8h71', 'no_lang_code', 1, 'https://ror.org/05sps8h71 Reischauer (Germany)'), (24867, 'https://ror.org/05spz0x25', 'en', 1, 'https://ror.org/05spz0x25 National Institute of Building Sciences'), (24868, 'https://ror.org/05sq6ae13', 'en', 1, 'https://ror.org/05sq6ae13 Manor Hospital'), (24869, 'https://ror.org/05sr81t86', 'no_lang_code', 1, 'https://ror.org/05sr81t86 Scan Messtechnik (Austria)'), (24870, 'https://ror.org/05srxwy94', 'en', 1, 'https://ror.org/05srxwy94 Higher Institute of Applied Arts المعهد العالي للفنون التطبيقية'), (24871, 'https://ror.org/05ss0jg28', 'es', 1, 'https://ror.org/05ss0jg28 Institución Tecnológica Cedesistemas'), (24872, 'https://ror.org/05st2e578', 'no_lang_code', 1, 'https://ror.org/05st2e578 Verdezyne (United States)'), (24873, 'https://ror.org/05sxd8019', 'en', 1, 'https://ror.org/05sxd8019 Six County Association of Governments'), (24874, 'https://ror.org/05szy4c49', 'en', 1, 'https://ror.org/05szy4c49 San Diego City College'), (24875, 'https://ror.org/05t156v90', 'no_lang_code', 1, 'https://ror.org/05t156v90 ZS-Handling (Germany)'), (24876, 'https://ror.org/05t197591', 'en', 1, 'https://ror.org/05t197591 American University of Paris'), (24877, 'https://ror.org/05t1w2321', 'en', 1, 'https://ror.org/05t1w2321 Wells Community Hospital'), (24878, 'https://ror.org/05t3rbf71', 'no_lang_code', 1, 'https://ror.org/05t3rbf71 Voxiva (United States)'), (24879, 'https://ror.org/05t6b6536', 'no_lang_code', 1, 'https://ror.org/05t6b6536 PhotoBiotics (United Kingdom)'), (24880, 'https://ror.org/05t6bf545', 'es', 1, 'https://ror.org/05t6bf545 Centro Universitario Interamericano'), (24881, 'https://ror.org/05t8m1733', 'en', 1, 'https://ror.org/05t8m1733 Social Work Institute in Cairo'), (24882, 'https://ror.org/05t9gqf54', 'en', 1, 'https://ror.org/05t9gqf54 New Charter University'), (24883, 'https://ror.org/05td7ze90', 'en', 1, 'https://ror.org/05td7ze90 GB Hunter Memorial Hospital'), (24884, 'https://ror.org/05tdgzn66', 'en', 1, 'https://ror.org/05tdgzn66 Troy Community Coalition'), (24885, 'https://ror.org/05te51965', 'en', 1, 'https://ror.org/05te51965 Kure Medical Center 国立病院機構呉医療センター'), (24886, 'https://ror.org/05teaww98', 'en', 1, 'https://ror.org/05teaww98 York Technical College'), (24887, 'https://ror.org/05tfkwc03', 'en', 1, 'https://ror.org/05tfkwc03 Barnes Hospital'), (24888, 'https://ror.org/05tfp2303', 'en', 1, 'https://ror.org/05tfp2303 Clacton Hospital'), (24889, 'https://ror.org/05thgyd14', 'en', 1, 'https://ror.org/05thgyd14 Metropolitan Interdenominational Church'), (24890, 'https://ror.org/05tjaf288', 'en', 1, 'https://ror.org/05tjaf288 Komazawa University 駒澤大学'), (24891, 'https://ror.org/05tjt1495', 'no_lang_code', 1, 'https://ror.org/05tjt1495 Systèmes d''Information à Référence Spatiale (France)'), (24892, 'https://ror.org/05tk74w54', 'fr', 1, 'https://ror.org/05tk74w54 Fédération Hospitalière de France'), (24893, 'https://ror.org/05tkb8v92', 'es', 1, 'https://ror.org/05tkb8v92 Universidad Autónoma Latinoamericana'), (24894, 'https://ror.org/05tkd5f92', 'no_lang_code', 1, 'https://ror.org/05tkd5f92 UGN-Umwelttechnik (Germany)'), (24895, 'https://ror.org/05tv4xd72', 'es', 1, 'https://ror.org/05tv4xd72 Universidad Tecnológica Intercontinental'), (24896, 'https://ror.org/05tv80m53', 'pt', 1, 'https://ror.org/05tv80m53 Instituto Superior Politecnico de Tete'), (24897, 'https://ror.org/05twfp995', 'en', 1, 'https://ror.org/05twfp995 Africa Nazarene University'), (24898, 'https://ror.org/05twga530', 'en', 1, 'https://ror.org/05twga530 Oklahoma Wesleyan University'), (24899, 'https://ror.org/05ty6tb10', 'en', 1, 'https://ror.org/05ty6tb10 Native Women''s Association of Canada'), (24900, 'https://ror.org/05v1ekw79', 'en', 1, 'https://ror.org/05v1ekw79 Dongyang University 동양대학교'), (24901, 'https://ror.org/05v2asf50', 'es', 1, 'https://ror.org/05v2asf50 Universidad Nacional de Moquegua'), (24902, 'https://ror.org/05v3fv602', 'no_lang_code', 1, 'https://ror.org/05v3fv602 Endeavour (United Kingdom)'), (24903, 'https://ror.org/05v3gve10', 'no_lang_code', 1, 'https://ror.org/05v3gve10 Prolon Control Systems (Denmark)'), (24904, 'https://ror.org/05v4wt877', 'en', 1, 'https://ror.org/05v4wt877 Paul Watkiss Associates'), (24905, 'https://ror.org/05v8dd891', 'no_lang_code', 1, 'https://ror.org/05v8dd891 Tekkva Consult (Denmark)'), (24906, 'https://ror.org/05v8evh13', 'no_lang_code', 1, 'https://ror.org/05v8evh13 Nutra Canada (Canada)'), (24907, 'https://ror.org/05vawe413', 'no_lang_code', 1, 'https://ror.org/05vawe413 Yuhuangding Hospital 烟台毓璜顶医院'), (24908, 'https://ror.org/05vh9vp33', 'en', 1, 'https://ror.org/05vh9vp33 Zucker Hillside Hospital'), (24909, 'https://ror.org/05vhbmg11', 'en', 1, 'https://ror.org/05vhbmg11 Auckland Park Hospital'), (24910, 'https://ror.org/05vkg6y29', 'en', 1, 'https://ror.org/05vkg6y29 Fieldhead Hospital'), (24911, 'https://ror.org/05vm4ac48', 'es', 1, 'https://ror.org/05vm4ac48 Universidad Alva Edison'), (24912, 'https://ror.org/05vmcgv71', 'no_lang_code', 1, 'https://ror.org/05vmcgv71 Dana (Germany)'), (24913, 'https://ror.org/05vn6by16', 'no_lang_code', 1, 'https://ror.org/05vn6by16 Viewrope'), (24914, 'https://ror.org/05vr9w866', 'en', 1, 'https://ror.org/05vr9w866 Latin American University of Science and Technology Universidad Latinoamericana de Ciencia y Tecnología'), (24915, 'https://ror.org/05vv75456', 'en', 1, 'https://ror.org/05vv75456 Alcoholism Center for Women'), (24916, 'https://ror.org/05vwr6v04', 'no_lang_code', 1, 'https://ror.org/05vwr6v04 Sistemas Y Redes Telematicas (Spain)'), (24917, 'https://ror.org/05w0kdr76', 'en', 1, 'https://ror.org/05w0kdr76 Us Helping Us People Into Living'), (24918, 'https://ror.org/05w0r7981', 'no_lang_code', 1, 'https://ror.org/05w0r7981 Steven Winter Associates (United States)'), (24919, 'https://ror.org/05w3scj59', 'en', 1, 'https://ror.org/05w3scj59 Doddington Hospital'), (24920, 'https://ror.org/05w4mbn40', 'en', 1, 'https://ror.org/05w4mbn40 Aichi Developmental Disability Center 愛知県医療療育総合センター'), (24921, 'https://ror.org/05w5qjg18', 'en', 1, 'https://ror.org/05w5qjg18 Milwaukee Public Schools'), (24922, 'https://ror.org/05w7nha79', 'no_lang_code', 1, 'https://ror.org/05w7nha79 Seekda (Austria)'), (24923, 'https://ror.org/05w9cds44', 'no_lang_code', 1, 'https://ror.org/05w9cds44 Oelheld (Germany)'), (24924, 'https://ror.org/05w9m5a46', 'en', 1, 'https://ror.org/05w9m5a46 National Blood Clot Alliance'), (24925, 'https://ror.org/05war1b27', 'no_lang_code', 1, 'https://ror.org/05war1b27 TQ Environmental (United Kingdom)'), (24926, 'https://ror.org/05wc21r71', 'es', 1, 'https://ror.org/05wc21r71 Universidad de Negocios ISEC'), (24927, 'https://ror.org/05wch2w55', 'no_lang_code', 1, 'https://ror.org/05wch2w55 Zylon (United States)'), (24928, 'https://ror.org/05we8km13', 'en', 1, 'https://ror.org/05we8km13 Leeds Dental Hospital'), (24929, 'https://ror.org/05wgv9z07', 'no_lang_code', 1, 'https://ror.org/05wgv9z07 Resonant Sensors (United States)'), (24930, 'https://ror.org/05wgye104', 'no_lang_code', 1, 'https://ror.org/05wgye104 143-Gnosca Osservatorio Astronomico di Gnosca'), (24931, 'https://ror.org/05wh3xd46', 'en', 1, 'https://ror.org/05wh3xd46 Riga Graduate School of Law Rygos aukštoji teisės mokykla Рижская высшая школа права'), (24932, 'https://ror.org/05wj4em96', 'no_lang_code', 1, 'https://ror.org/05wj4em96 NextInput (United States)'), (24933, 'https://ror.org/05wn3nd60', 'no_lang_code', 1, 'https://ror.org/05wn3nd60 Specto Natura'), (24934, 'https://ror.org/05wnzmz28', 'no_lang_code', 1, 'https://ror.org/05wnzmz28 S2 Corporation (United States)'), (24935, 'https://ror.org/05wq53m96', 'no_lang_code', 1, 'https://ror.org/05wq53m96 Rockwood Lithium (Germany)'), (24936, 'https://ror.org/05wrc0w56', 'en', 1, 'https://ror.org/05wrc0w56 National University of Formosa Universidad Nacional de Formosa'), (24937, 'https://ror.org/05wt11w07', 'no_lang_code', 1, 'https://ror.org/05wt11w07 Pultrall (Canada)'), (24938, 'https://ror.org/05wt6nv93', 'en', 1, 'https://ror.org/05wt6nv93 University College of Technology'), (24939, 'https://ror.org/05wvb7e41', 'no_lang_code', 1, 'https://ror.org/05wvb7e41 Mentor InterActive (United States)'), (24940, 'https://ror.org/05wwhcb10', 'no_lang_code', 1, 'https://ror.org/05wwhcb10 Western Systems Research (United States)'), (24941, 'https://ror.org/05wwm0q58', 'en', 1, 'https://ror.org/05wwm0q58 Chung Shan Hospital 中山醫院'), (24942, 'https://ror.org/05wxraw41', 'no_lang_code', 1, 'https://ror.org/05wxraw41 Nortek (Canada)'), (24943, 'https://ror.org/05x0fca68', 'en', 1, 'https://ror.org/05x0fca68 Universidad de Navojoa University of Navojoa'), (24944, 'https://ror.org/05x1e2z17', 'no_lang_code', 1, 'https://ror.org/05x1e2z17 Sherwood Scientific (United Kingdom)'), (24945, 'https://ror.org/05x1mdb86', 'en', 1, 'https://ror.org/05x1mdb86 Totnes Community Hospital'), (24946, 'https://ror.org/05x1tpn63', 'fr', 1, 'https://ror.org/05x1tpn63 Pôle Véhicule du Futur'), (24947, 'https://ror.org/05x21v161', 'fr', 1, 'https://ror.org/05x21v161 Institut Supérieur d’Informatique, Programmation et Analyse'), (24948, 'https://ror.org/05x3h8029', 'no_lang_code', 1, 'https://ror.org/05x3h8029 Gruppo Trombini (Italy)'), (24949, 'https://ror.org/05x5xt830', 'en', 1, 'https://ror.org/05x5xt830 Spire Washington Hospital'), (24950, 'https://ror.org/05x6q7t13', 'no_lang_code', 1, 'https://ror.org/05x6q7t13 Alberoni University دانشگاه البیرونی'), (24951, 'https://ror.org/05x6t5z92', 'en', 1, 'https://ror.org/05x6t5z92 Fleetwood Hospital'), (24952, 'https://ror.org/05x786n86', 'no_lang_code', 1, 'https://ror.org/05x786n86 Stopford Energy & Environment (United Kingdom)'), (24953, 'https://ror.org/05x8hy709', 'en', 1, 'https://ror.org/05x8hy709 North Carolina Wesleyan College'), (24954, 'https://ror.org/05x92kx88', 'en', 1, 'https://ror.org/05x92kx88 North Dakota State Board of Higher Education'), (24955, 'https://ror.org/05x9bmy83', 'no_lang_code', 1, 'https://ror.org/05x9bmy83 Ommic (France)'), (24956, 'https://ror.org/05x9r8j38', 'no_lang_code', 1, 'https://ror.org/05x9r8j38 Vector Fabrics (Netherlands)'), (24957, 'https://ror.org/05xbyzq55', 'en', 1, 'https://ror.org/05xbyzq55 Tokyo Kasei University 東京家政大学'), (24958, 'https://ror.org/05xc4qj60', 'en', 1, 'https://ror.org/05xc4qj60 Libertador Experimental Pedagogical University Universidad Pedagógica Experimental Libertador'), (24959, 'https://ror.org/05xeh0r58', 'no_lang_code', 1, 'https://ror.org/05xeh0r58 PhytoCeutica (United States)'), (24960, 'https://ror.org/05xekmj63', 'en', 1, 'https://ror.org/05xekmj63 Sir Robert Peel Community Hospital'), (24961, 'https://ror.org/05xg5y175', 'es', 1, 'https://ror.org/05xg5y175 Polytechnic University of Aguascalientes Universidad Politécnica de Aguascalientes'), (24962, 'https://ror.org/05xhfc919', 'en', 1, 'https://ror.org/05xhfc919 Fairford Hospital'), (24963, 'https://ror.org/05xjh4a29', 'no_lang_code', 1, 'https://ror.org/05xjh4a29 Mine Safety Appliances (United States)'), (24964, 'https://ror.org/05xk81g65', 'no_lang_code', 1, 'https://ror.org/05xk81g65 SR Technics (Ireland)'), (24965, 'https://ror.org/05xmgd629', 'en', 1, 'https://ror.org/05xmgd629 TB HIV Care Association'), (24966, 'https://ror.org/05xnzvx23', 'no_lang_code', 1, 'https://ror.org/05xnzvx23 Multimatic ILSA (Germany)'), (24967, 'https://ror.org/05xpg8a23', 'en', 1, 'https://ror.org/05xpg8a23 Grace University'), (24968, 'https://ror.org/05xq4gr47', 'en', 1, 'https://ror.org/05xq4gr47 Canada–France–Hawaii Telescope'), (24969, 'https://ror.org/05xq4sr56', 'lv', 1, 'https://ror.org/05xq4sr56 Ventspils Digitālais Centrs'), (24970, 'https://ror.org/05xrt2s12', 'es', 1, 'https://ror.org/05xrt2s12 Universidad del Desarrollo del Estado de Puebla'), (24971, 'https://ror.org/05xrwp171', 'pt', 1, 'https://ror.org/05xrwp171 Centro Universitário Geraldo Di Biase'), (24972, 'https://ror.org/05xs36f43', 'es', 1, 'https://ror.org/05xs36f43 Universidad La República'), (24973, 'https://ror.org/05xw5kw49', 'es', 1, 'https://ror.org/05xw5kw49 Universidad de Tamazunchale'), (24974, 'https://ror.org/05xwfa541', 'en', 1, 'https://ror.org/05xwfa541 Keswick Community Hospital'), (24975, 'https://ror.org/05xz7ye37', 'no_lang_code', 1, 'https://ror.org/05xz7ye37 Union Biometrica (United States)'), (24976, 'https://ror.org/05y0ts542', 'no_lang_code', 1, 'https://ror.org/05y0ts542 Norton Cast Products (United Kingdom)'), (24977, 'https://ror.org/05y3ab566', 'en', 1, 'https://ror.org/05y3ab566 Okayama Ceramics Research Foundation 岡山セラミックスセンター'), (24978, 'https://ror.org/05y5wb377', 'no_lang_code', 1, 'https://ror.org/05y5wb377 Vanderpol''s Eggs (Canada)'), (24979, 'https://ror.org/05y6c0296', 'no_lang_code', 1, 'https://ror.org/05y6c0296 Tetra Tech (Canada)'), (24980, 'https://ror.org/05y7edy46', 'no_lang_code', 1, 'https://ror.org/05y7edy46 West Kordofan University جامعة غرب كردفان'), (24981, 'https://ror.org/05y7nb940', 'nl', 1, 'https://ror.org/05y7nb940 Stichting Lettinga Associates'), (24982, 'https://ror.org/05y8ejc62', 'no_lang_code', 1, 'https://ror.org/05y8ejc62 Mellon Technologies (Greece)'), (24983, 'https://ror.org/05y8sjx72', 'no_lang_code', 1, 'https://ror.org/05y8sjx72 Nanofiber Solutions (United States)'), (24984, 'https://ror.org/05yat8w11', 'no_lang_code', 1, 'https://ror.org/05yat8w11 Valtronic (Switzerland)'), (24985, 'https://ror.org/05ycegt40', 'en', 1, 'https://ror.org/05ycegt40 Banasthali University वनस्थली विद्यापीठ'), (24986, 'https://ror.org/05yd5nz87', 'no_lang_code', 1, 'https://ror.org/05yd5nz87 Glintt (Portugal)'), (24987, 'https://ror.org/05yd61k38', 'en', 1, 'https://ror.org/05yd61k38 Hollins Park Hospital'), (24988, 'https://ror.org/05ydfbx15', 'de', 1, 'https://ror.org/05ydfbx15 Klinikum St. Marien Amberg'), (24989, 'https://ror.org/05ye5k232', 'no_lang_code', 1, 'https://ror.org/05ye5k232 Pontydysgu'), (24990, 'https://ror.org/05yede386', 'no_lang_code', 1, 'https://ror.org/05yede386 Manz (Germany)'), (24991, 'https://ror.org/05yevm258', 'en', 1, 'https://ror.org/05yevm258 Bệnh viện Phạm Ngọc Thạch Pham Ngoc Thach Hospital'), (24992, 'https://ror.org/05yfwg049', 'en', 1, 'https://ror.org/05yfwg049 College of African Wildlife Management'), (24993, 'https://ror.org/05ygpsa84', 'en', 1, 'https://ror.org/05ygpsa84 North Downs Hospital'), (24994, 'https://ror.org/05yh2rr37', 'en', 1, 'https://ror.org/05yh2rr37 Caribbean University Université Caraïbe'), (24995, 'https://ror.org/05yh37w40', 'en', 1, 'https://ror.org/05yh37w40 Uganda Management Institute'), (24996, 'https://ror.org/05yhgzh28', 'no_lang_code', 1, 'https://ror.org/05yhgzh28 Vaisala (Finland) ʋæi̯sælæ'), (24997, 'https://ror.org/05yj9kv10', 'de', 1, 'https://ror.org/05yj9kv10 Salus-Fachklinikum Uchtspringe Klinik für Allgemeine Psychiatrie und Psychotherapie'), (24998, 'https://ror.org/05ymj3g35', 'en', 1, 'https://ror.org/05ymj3g35 Trowbridge Community Hospital'), (24999, 'https://ror.org/05yprsb81', 'en', 1, 'https://ror.org/05yprsb81 The Chagrin Valley Astronomical Society'), (25000, 'https://ror.org/05yq37p91', 'pt', 1, 'https://ror.org/05yq37p91 Centro Universitário do Leste de Minas Gerais'), (25001, 'https://ror.org/0003nwf42', 'en', 1, 'https://ror.org/0003nwf42 Martha''s Vineyard Museum'), (25002, 'https://ror.org/0005k2a75', 'id', 1, 'https://ror.org/0005k2a75 Universitas Suryadarma'), (25003, 'https://ror.org/0008aac48', 'en', 1, 'https://ror.org/0008aac48 Confederated Tribes of Warm Springs'), (25004, 'https://ror.org/0008bt423', 'en', 1, 'https://ror.org/0008bt423 University of Fiji'), (25005, 'https://ror.org/0008taf66', 'en', 1, 'https://ror.org/0008taf66 Bushnell University'), (25006, 'https://ror.org/000b7ms85', 'en', 1, 'https://ror.org/000b7ms85 Zhongkai University of Agriculture and Engineering 仲恺农业工程学院'), (25007, 'https://ror.org/000cpw023', 'en', 1, 'https://ror.org/000cpw023 Philadelphia History Museum'), (25008, 'https://ror.org/000etct68', 'en', 1, 'https://ror.org/000etct68 Muteesa I Royal University'), (25009, 'https://ror.org/000hf9438', 'en', 1, 'https://ror.org/000hf9438 Monmouth Museum'), (25010, 'https://ror.org/000hzy098', 'en', 1, 'https://ror.org/000hzy098 Saint Petersburg State Pediatric Medical University Санкт-Петербургский государственный педиатрический медицинский университет'), (25011, 'https://ror.org/000jexb59', 'no_lang_code', 1, 'https://ror.org/000jexb59 Chemcomex (Czechia)'), (25012, 'https://ror.org/000ks8283', 'id', 1, 'https://ror.org/000ks8283 Universitas Soerjo Ngawi'), (25013, 'https://ror.org/000nj1063', 'en', 1, 'https://ror.org/000nj1063 Akademia Humanistyczna im. Aleksandra Gieysztora w Pułtusku Pułtusk Academy of Humanities'), (25014, 'https://ror.org/000p7dd29', 'en', 1, 'https://ror.org/000p7dd29 Trade Co-operative University of Moldova Universitatea Cooperatist-Comerciala din Moldova'), (25015, 'https://ror.org/000qred46', 'no_lang_code', 1, 'https://ror.org/000qred46 Zero Liquid Discharge (Czechia)'), (25016, 'https://ror.org/000rak666', 'en', 1, 'https://ror.org/000rak666 Humak University of Applied Sciences Humanistinen ammattikorkeakoulu'), (25017, 'https://ror.org/000rmbn42', 'en', 1, 'https://ror.org/000rmbn42 American Conservatory Theater'), (25018, 'https://ror.org/000ta0r04', 'en', 1, 'https://ror.org/000ta0r04 Springdale Public Library'), (25019, 'https://ror.org/000tee703', 'en', 1, 'https://ror.org/000tee703 Northeastern State University Северный государственный медицинский университет'), (25020, 'https://ror.org/000vgrb22', 'en', 1, 'https://ror.org/000vgrb22 Pyongyang University of Science and Technology 평양과학기술대학'), (25021, 'https://ror.org/000vknf06', 'en', 1, 'https://ror.org/000vknf06 Państwowa Wyższa Szkoła Filmowa, Telewizyjna i Teatralna im. Leona Schillera Łódź Film School'), (25022, 'https://ror.org/000wbnn77', 'en', 1, 'https://ror.org/000wbnn77 Texarkana Regional Arts and Humanities Council'), (25023, 'https://ror.org/000wr2p83', 'en', 1, 'https://ror.org/000wr2p83 Biblioteca Pública de Los Ángeles Bibliothèque publique de los angeles Los Angeles Public Library'), (25024, 'https://ror.org/000z6yg06', 'no_lang_code', 1, 'https://ror.org/000z6yg06 Brano Group (Czechia)'), (25025, 'https://ror.org/000zjjz42', 'en', 1, 'https://ror.org/000zjjz42 Russell Library'), (25026, 'https://ror.org/000zprs97', 'en', 1, 'https://ror.org/000zprs97 Kaliningrad Law Institute Ministry of Internal Affairs of the Russian Federation Калининградский Филиал Санкт - Петербургского Университета МВД России'), (25027, 'https://ror.org/0014xm371', 'en', 1, 'https://ror.org/0014xm371 Foundation for Research on Information Technologies in Society'), (25028, 'https://ror.org/00156qz84', 'no_lang_code', 1, 'https://ror.org/00156qz84 Al-Shahbaa University جامعة الشهباء'), (25029, 'https://ror.org/001575385', 'en', 1, 'https://ror.org/001575385 International Centre for Genetic Engineering and Biotechnology'), (25030, 'https://ror.org/0015fn754', 'en', 1, 'https://ror.org/0015fn754 Corpus Christi Public Libraries'), (25031, 'https://ror.org/0016yxd93', 'en', 1, 'https://ror.org/0016yxd93 Early Manuscripts Electronic Library'), (25032, 'https://ror.org/00172cb16', 'en', 1, 'https://ror.org/00172cb16 Boston Athenaeum'), (25033, 'https://ror.org/001889b65', 'en', 1, 'https://ror.org/001889b65 University of the Holy Quran and Islamic Sciences جامعة القرآن الكريم والعلوم الإسلامية'), (25034, 'https://ror.org/0018jvy55', 'id', 1, 'https://ror.org/0018jvy55 Universitas Alkhairaat'), (25035, 'https://ror.org/00194tb08', 'en', 1, 'https://ror.org/00194tb08 People''s University of Bangladesh দ্য পিপলস ইউনিভার্সিটি অফ বাংলাদেশ'), (25036, 'https://ror.org/0019bf448', 'en', 1, 'https://ror.org/0019bf448 University of Pittsburgh at Bradford'), (25037, 'https://ror.org/0019h0z47', 'en', 1, 'https://ror.org/0019h0z47 AlAlamein International University جامعة العلمين'), (25038, 'https://ror.org/001ekgz09', 'no_lang_code', 1, 'https://ror.org/001ekgz09 Babu Banarasi Das University బాబు బనారసీ దాస్ విశ్వవిద్యాలయం'), (25039, 'https://ror.org/001et4e78', 'en', 1, 'https://ror.org/001et4e78 Hiroshima City University 広島市立大学'), (25040, 'https://ror.org/001gw2c60', 'id', 1, 'https://ror.org/001gw2c60 Universitas Muhammadiyah Luwuk Banggai'), (25041, 'https://ror.org/001hawd46', 'id', 1, 'https://ror.org/001hawd46 Universitas Al-washliyah Labuhanbatu'), (25042, 'https://ror.org/001jzfx32', 'en', 1, 'https://ror.org/001jzfx32 Santa Barbara Trust for Historic Preservation'), (25043, 'https://ror.org/001ksx577', 'en', 1, 'https://ror.org/001ksx577 Milligan College'), (25044, 'https://ror.org/001nzxd62', 'en', 1, 'https://ror.org/001nzxd62 Nagoya Women''s University 名古屋女子大学'), (25045, 'https://ror.org/001r73k91', 'en', 1, 'https://ror.org/001r73k91 AMA Computer University Pamantasang Pangkompyuter ng AMA'), (25046, 'https://ror.org/001rxva70', 'en', 1, 'https://ror.org/001rxva70 Recreation and Conservation Office'), (25047, 'https://ror.org/001t9zn91', 'en', 1, 'https://ror.org/001t9zn91 South Dakota Department of Tourism'), (25048, 'https://ror.org/001tgea40', 'cs', 1, 'https://ror.org/001tgea40 Muzeum Vysočiny Jihlava'), (25049, 'https://ror.org/001tjgg88', 'en', 1, 'https://ror.org/001tjgg88 Save the Bay'), (25050, 'https://ror.org/001vaag74', 'en', 1, 'https://ror.org/001vaag74 Poughkeepsie Public Library District'), (25051, 'https://ror.org/001w4ps18', 'en', 1, 'https://ror.org/001w4ps18 Tula State Pedagogical University named after L.N. Tolstoy Тульский государственный педагогический университет имени Л. Н. Толстого'), (25052, 'https://ror.org/001wjeh94', 'en', 1, 'https://ror.org/001wjeh94 Hokusho University 北翔大学'), (25053, 'https://ror.org/001wq6b70', 'en', 1, 'https://ror.org/001wq6b70 Appalachian Mountain Club'), (25054, 'https://ror.org/001x6y413', 'no_lang_code', 1, 'https://ror.org/001x6y413 Palamuru University పాలమూరు విశ్వవిద్యాలయము'), (25055, 'https://ror.org/001y2wd07', 'en', 1, 'https://ror.org/001y2wd07 Lunghwa University of Science and Technology 龍華科技大學'), (25056, 'https://ror.org/0020vtt98', 'en', 1, 'https://ror.org/0020vtt98 Ohr-O''Keefe Museum Of Art'), (25057, 'https://ror.org/0022yfe36', 'en', 1, 'https://ror.org/0022yfe36 Lviv National Musical Academy named after Mykola Lysenko Львівська національна музична академія імені М. В. Лисенка'), (25058, 'https://ror.org/0024s9602', 'en', 1, 'https://ror.org/0024s9602 Vermont Public Radio'), (25059, 'https://ror.org/0025x8m44', 'en', 1, 'https://ror.org/0025x8m44 SeaWorld Entertainment'), (25060, 'https://ror.org/0029qfe93', 'en', 1, 'https://ror.org/0029qfe93 Society of Biblical Literature'), (25061, 'https://ror.org/0029zp883', 'en', 1, 'https://ror.org/0029zp883 Trường Đại học Sân khấu – Điện ảnh Thành phố Hồ Chí Minh University of Theatre and Cinema Ho Chi Minh City'), (25062, 'https://ror.org/002c8b395', 'en', 1, 'https://ror.org/002c8b395 Christian Bilingual University of Congo Université Chrétienne Bilingue du Congo'), (25063, 'https://ror.org/002dktj83', 'en', 1, 'https://ror.org/002dktj83 Meru University of Science and Technology'), (25064, 'https://ror.org/002dnpc64', 'cs', 1, 'https://ror.org/002dnpc64 Muzeum a Galerie Orlických Hor'), (25065, 'https://ror.org/002e3gt76', 'no_lang_code', 1, 'https://ror.org/002e3gt76 Compureg Plzen (Czechia)'), (25066, 'https://ror.org/002ec3041', 'no_lang_code', 1, 'https://ror.org/002ec3041 Vodni Zdroje (Czechia)'), (25067, 'https://ror.org/002f6by15', 'no_lang_code', 1, 'https://ror.org/002f6by15 Dicom (Czechia)'), (25068, 'https://ror.org/002gjns90', 'en', 1, 'https://ror.org/002gjns90 Collaborative for Educational Services'), (25069, 'https://ror.org/002grtm11', 'no_lang_code', 1, 'https://ror.org/002grtm11 Dakshina Bharat Hindi Prachar Sabha'), (25070, 'https://ror.org/002h08g67', 'en', 1, 'https://ror.org/002h08g67 Las Vegas Convention and Visitors Authority'), (25071, 'https://ror.org/002hbfc50', 'en', 1, 'https://ror.org/002hbfc50 Jilin Jianzhu University 吉林建筑大学'), (25072, 'https://ror.org/002jehj87', 'no_lang_code', 1, 'https://ror.org/002jehj87 Hussite Museum Tabor'), (25073, 'https://ror.org/002jtmt62', 'en', 1, 'https://ror.org/002jtmt62 Business School Ostrava'), (25074, 'https://ror.org/002m6kk35', 'no_lang_code', 1, 'https://ror.org/002m6kk35 Vanda Institute វិទ្យាស្ថាន វ៉ាន់ដា'), (25075, 'https://ror.org/002qeva03', 'en', 1, 'https://ror.org/002qeva03 Bangkok University มหาวิทยาลัยกรุงเทพ'), (25076, 'https://ror.org/002qkam19', 'en', 1, 'https://ror.org/002qkam19 Izhevsk State Agricultural Academy Ижевская государственная сельскохозяйственная академия'), (25077, 'https://ror.org/002rp1x36', 'no_lang_code', 1, 'https://ror.org/002rp1x36 Siemens (Czechia)'), (25078, 'https://ror.org/002rphp73', 'id', 1, 'https://ror.org/002rphp73 Universitas Tri Dharma'), (25079, 'https://ror.org/002s77n28', 'en', 1, 'https://ror.org/002s77n28 National University of Architecture and Construction of Armenia Ճարտարապետության և շինարարարության Հայաստանի ազգային համալսարան'), (25080, 'https://ror.org/002t87n17', 'en', 1, 'https://ror.org/002t87n17 Hawaiian Islands Land Trust'), (25081, 'https://ror.org/002x5gq86', 'en', 1, 'https://ror.org/002x5gq86 Turkmen Agricultural University Named after S.A. Niyazov Туркменский сельскохозяйственный университет имени С. А. Ниязова'), (25082, 'https://ror.org/002xar614', 'en', 1, 'https://ror.org/002xar614 Takming University of Science and Technology 德明財經科技大學'), (25083, 'https://ror.org/002xc5p11', 'en', 1, 'https://ror.org/002xc5p11 Dr. Babasaheb Ambedkar Open University ડો. બાબાસાહેબ આંબેડકર ઓપન યુનિવર્સિટી'), (25084, 'https://ror.org/002xnzp34', 'en', 1, 'https://ror.org/002xnzp34 Rostov State Transport University Ростовский государственный университет путей сообщения'), (25085, 'https://ror.org/002xvag29', 'en', 1, 'https://ror.org/002xvag29 Moscow Regional Institute of Management and Law Московский областной институт управления и права'), (25086, 'https://ror.org/002yd0837', 'en', 1, 'https://ror.org/002yd0837 New York State Office of Parks, Recreation and Historic Preservation'), (25087, 'https://ror.org/002zjz985', 'en', 1, 'https://ror.org/002zjz985 Ural Institute of Economics, Management and Law Уральский институт экономики, управления и права'), (25088, 'https://ror.org/003042j23', 'en', 1, 'https://ror.org/003042j23 Gulf of Maine Association'), (25089, 'https://ror.org/00331xs95', 'en', 1, 'https://ror.org/00331xs95 Howon University 호원대학교'), (25090, 'https://ror.org/0033b8372', 'en', 1, 'https://ror.org/0033b8372 Hallmark University'), (25091, 'https://ror.org/0033gxm08', 'en', 1, 'https://ror.org/0033gxm08 Mahambet Otemiusly West Kazakhstan University Махамбет Өтемісов атындағы Батыс Қазақстан Мемлекеттік Университеті'), (25092, 'https://ror.org/0033tjv05', 'en', 1, 'https://ror.org/0033tjv05 Freeport Art Museum'), (25093, 'https://ror.org/0033vjp52', 'en', 1, 'https://ror.org/0033vjp52 Museum of the Cherokee Indian'), (25094, 'https://ror.org/0034wme67', 'id', 1, 'https://ror.org/0034wme67 Universitas Muhammadiyah Bengkulu'), (25095, 'https://ror.org/0035dw758', 'en', 1, 'https://ror.org/0035dw758 Rustavi Academy of Higher Education'), (25096, 'https://ror.org/0036qse20', 'no_lang_code', 1, 'https://ror.org/0036qse20 Ohkagakuen University 桜花学園大学'), (25097, 'https://ror.org/00379n634', 'en', 1, 'https://ror.org/00379n634 Kyrgyz State University of Construction, Transport and Architecture named after N. Isanov Кыргызский государственный университет строительства, транспорта и архитектуры им.Н.Исанова Н.Исанов атындагы Кыргыз мамлекеттик курулуш, транспорт жана архитектура университети'), (25098, 'https://ror.org/0037an472', 'en', 1, 'https://ror.org/0037an472 Kyoto Bunkyo University 京都文教大学'), (25099, 'https://ror.org/0037nyg09', 'en', 1, 'https://ror.org/0037nyg09 UNIVERSITAS MUHAMMADIYAH MATARAM University of Muhammadiyah Mataram'), (25100, 'https://ror.org/0038d9d86', 'en', 1, 'https://ror.org/0038d9d86 Kentucky Historical Society'), (25101, 'https://ror.org/003ag3w45', 'en', 1, 'https://ror.org/003ag3w45 Saint Andrew First-Called Georgian University of the Patriarchate of Georgia საქართველოს საპატრიარქოს წმიდა ანდრია პირველწოდებულის სახელობის ქართული უნივერსიტეტი'), (25102, 'https://ror.org/003aj1676', 'en', 1, 'https://ror.org/003aj1676 Volgograd Academy of the Russian Internal Affairs Ministry Волгоградская академия Министерства внутренних дел Российской Федерации'), (25103, 'https://ror.org/003ajks37', 'en', 1, 'https://ror.org/003ajks37 Bessemer Historical Society'), (25104, 'https://ror.org/003e2cn37', 'en', 1, 'https://ror.org/003e2cn37 Chinese Historical Society of America'), (25105, 'https://ror.org/003gx4r22', 'en', 1, 'https://ror.org/003gx4r22 University of Georgia Press'), (25106, 'https://ror.org/003h4kj85', 'en', 1, 'https://ror.org/003h4kj85 Rajamangala University of Technology Rattanakosin มหาวิทยาลัยเทคโนโลยีราชมงคลรัตนโกสินทร์'), (25107, 'https://ror.org/003jq9j58', 'pl', 1, 'https://ror.org/003jq9j58 Papieski Wydział Teologiczny we Wrocławiu'), (25108, 'https://ror.org/003js3p07', 'en', 1, 'https://ror.org/003js3p07 University of Valley Forge'), (25109, 'https://ror.org/003ktzf45', 'id', 1, 'https://ror.org/003ktzf45 Universitas Respati Yogyakarta'), (25110, 'https://ror.org/003nhtz06', 'en', 1, 'https://ror.org/003nhtz06 Pekin Public Library'), (25111, 'https://ror.org/003pkj597', 'en', 1, 'https://ror.org/003pkj597 State Historical Society of North Dakota'), (25112, 'https://ror.org/003rage82', 'en', 1, 'https://ror.org/003rage82 National-Louis University'), (25113, 'https://ror.org/003rjf961', 'en', 1, 'https://ror.org/003rjf961 WGBH Educational Foundation'), (25114, 'https://ror.org/003sxhp42', 'en', 1, 'https://ror.org/003sxhp42 Higher Institute of Management Высший институт управления'), (25115, 'https://ror.org/003w6kb85', 'no_lang_code', 1, 'https://ror.org/003w6kb85 Shikoku Gakuin University 四国学院大学'), (25116, 'https://ror.org/003wx9n05', 'en', 1, 'https://ror.org/003wx9n05 Stony Brook School'), (25117, 'https://ror.org/003y2vw22', 'en', 1, 'https://ror.org/003y2vw22 Worcester Art Museum'), (25118, 'https://ror.org/00402nc75', 'en', 1, 'https://ror.org/00402nc75 Pennsylvania Historical and Museum Commission'), (25119, 'https://ror.org/00409ce90', 'en', 1, 'https://ror.org/00409ce90 Ethiopian Civil Service University የኢትዮጵያ ሲቪል ሰርቪስ ዩኒቨርሲቲ'), (25120, 'https://ror.org/004140w27', 'en', 1, 'https://ror.org/004140w27 Park City Museum'), (25121, 'https://ror.org/0045h2h15', 'en', 1, 'https://ror.org/0045h2h15 Southern Ute Museum'), (25122, 'https://ror.org/004684q56', 'en', 1, 'https://ror.org/004684q56 Takamatsu University 高松大学'), (25123, 'https://ror.org/00473rv55', 'en', 1, 'https://ror.org/00473rv55 Pamantasan ng Makati University of Makati'), (25124, 'https://ror.org/0047xfd47', 'en', 1, 'https://ror.org/0047xfd47 National Kaohsiung University of Hospitality and Tourism 國立高雄餐旅大學'), (25125, 'https://ror.org/004cg6a95', 'pl', 1, 'https://ror.org/004cg6a95 Wyższa Szkoła Ekonomii, Prawa i Nauk Medycznych im. prof. Edwarda Lipińskiego'), (25126, 'https://ror.org/004drcv69', 'id', 1, 'https://ror.org/004drcv69 Universitas Iskandar Muda'), (25127, 'https://ror.org/004eeze55', 'en', 1, 'https://ror.org/004eeze55 Hainan Medical University 海南医学院'), (25128, 'https://ror.org/004emtb57', 'en', 1, 'https://ror.org/004emtb57 Phetchabun Rajabhat University มหาวิทยาลัยราชภัฎเพชรบูรณ์'), (25129, 'https://ror.org/004fm2e78', 'no_lang_code', 1, 'https://ror.org/004fm2e78 Gascontrol (Czechia)'), (25130, 'https://ror.org/004h6zh49', 'en', 1, 'https://ror.org/004h6zh49 Samuel S. Fleisher Art Memorial'), (25131, 'https://ror.org/004hnyk37', 'en', 1, 'https://ror.org/004hnyk37 Rangamati Science and Technology University রাঙ্গামাটি বিজ্ঞান ও প্রযুক্তি বিশ্ববিদ্যালয়'), (25132, 'https://ror.org/004j0wk96', 'en', 1, 'https://ror.org/004j0wk96 Princeton Theological Seminary'), (25133, 'https://ror.org/004j2ry26', 'en', 1, 'https://ror.org/004j2ry26 Women''s Studio Workshop'), (25134, 'https://ror.org/004mb3588', 'no_lang_code', 1, 'https://ror.org/004mb3588 TL Ultralight (Czechia)'), (25135, 'https://ror.org/004n8kf32', 'en', 1, 'https://ror.org/004n8kf32 Idaho Governors Office of Species Conservation'), (25136, 'https://ror.org/004qjck53', 'en', 1, 'https://ror.org/004qjck53 University of Science and Technology Omdurman جامعة العلوم والتقانة السودانية'), (25137, 'https://ror.org/004rj5351', 'en', 1, 'https://ror.org/004rj5351 Herndon Home Museum'), (25138, 'https://ror.org/004s6ct47', 'en', 1, 'https://ror.org/004s6ct47 Orenburg State Agrarian University Оренбургский государственный аграрный университет'), (25139, 'https://ror.org/004th3s59', 'en', 1, 'https://ror.org/004th3s59 International Budo University 国際武道大学'), (25140, 'https://ror.org/004tqq928', 'en', 1, 'https://ror.org/004tqq928 Haverford Township Free Library'), (25141, 'https://ror.org/004wnty12', 'en', 1, 'https://ror.org/004wnty12 Open University of Kaohsiung 高雄市立空中大學'), (25142, 'https://ror.org/004yhfd32', 'en', 1, 'https://ror.org/004yhfd32 Museum of Innovation and Science'), (25143, 'https://ror.org/004z40955', 'no_lang_code', 1, 'https://ror.org/004z40955 Alfa Union (Czechia)'), (25144, 'https://ror.org/004ze6w33', 'en', 1, 'https://ror.org/004ze6w33 Chechen State University Чеченский государственный университет'), (25145, 'https://ror.org/005059r08', 'no_lang_code', 1, 'https://ror.org/005059r08 Naberezhnye Chelny State Pedagogical Institute Набережночелнинский государственный педагогический университет'), (25146, 'https://ror.org/0051kz410', 'en', 1, 'https://ror.org/0051kz410 Tokiwa University 常磐大学'), (25147, 'https://ror.org/0051sgx15', 'en', 1, 'https://ror.org/0051sgx15 University of Bagamoyo'), (25148, 'https://ror.org/0053ash76', 'no_lang_code', 1, 'https://ror.org/0053ash76 Aero (Czechia)'), (25149, 'https://ror.org/0054vex45', 'en', 1, 'https://ror.org/0054vex45 Victoria University of Bangladesh ভিক্টোরিয়া ইউনিভার্সিটি অফ বাংলাদেশ'), (25150, 'https://ror.org/00567j574', 'id', 1, 'https://ror.org/00567j574 Universitas Malahayati'), (25151, 'https://ror.org/0056fa628', 'en', 1, 'https://ror.org/0056fa628 Monad University'), (25152, 'https://ror.org/0056jkv70', 'en', 1, 'https://ror.org/0056jkv70 Dr. Rajendra Prasad Central Agriculture University डॉ. राजेंद्र प्रसाद केन्द्रीय कृषि विश्वविद्यालय'), (25153, 'https://ror.org/00571jt67', 'en', 1, 'https://ror.org/00571jt67 St. Francis College'), (25154, 'https://ror.org/0057j2q22', 'en', 1, 'https://ror.org/0057j2q22 Pennsylvania Fish and Boat Commission'), (25155, 'https://ror.org/0058h2h62', 'en', 1, 'https://ror.org/0058h2h62 Museum of History & Industry'), (25156, 'https://ror.org/0058jyq07', 'en', 1, 'https://ror.org/0058jyq07 Holy Trinity University'), (25157, 'https://ror.org/0058n8150', 'no_lang_code', 1, 'https://ror.org/0058n8150 Lasak (Czechia)'), (25158, 'https://ror.org/0058xhs49', 'en', 1, 'https://ror.org/0058xhs49 Constantin Brâncuși University of Targu Jiu'), (25159, 'https://ror.org/005adyv40', 'no_lang_code', 1, 'https://ror.org/005adyv40 Coming Plus (Czechia)'), (25160, 'https://ror.org/005b14v72', 'es', 1, 'https://ror.org/005b14v72 Universidad Interglobal'), (25161, 'https://ror.org/005bjd415', 'en', 1, 'https://ror.org/005bjd415 Sultan Idris Education University Universiti Pendidikan Sultan Idris பெண்டிடிக்கான் சுல்தான் இத்ரீசு பல்கலைக்கழகம்'), (25162, 'https://ror.org/005d8s603', 'en', 1, 'https://ror.org/005d8s603 University of Finance and Economics Санхүү Эдийн Засгийн Их Сургууль'), (25163, 'https://ror.org/005da4z68', 'en', 1, 'https://ror.org/005da4z68 Mykolaiv V.O. Sukhomlynskyi National University Миколаївський національний університет імені В.О. Сухомлинського'), (25164, 'https://ror.org/005e2k071', 'en', 1, 'https://ror.org/005e2k071 Burao University Jaamacada Burco'), (25165, 'https://ror.org/005fbjb88', 'en', 1, 'https://ror.org/005fbjb88 San Diego Unified Port District'), (25166, 'https://ror.org/005gjt698', 'en', 1, 'https://ror.org/005gjt698 University Geomedi უნივერსიტეტი გეომედი'), (25167, 'https://ror.org/005j4qv80', 'no_lang_code', 1, 'https://ror.org/005j4qv80 Xinjiang Petroleum Society 中国石油学会'), (25168, 'https://ror.org/005k0q572', 'en', 1, 'https://ror.org/005k0q572 Tajik State University of Law Business and Politics Донишгоҳи Давлатии Ҳуқуқ, Бизнес, ва Сиёсати Тоҷикистон'), (25169, 'https://ror.org/005kyzk28', 'en', 1, 'https://ror.org/005kyzk28 Kurt Weill Foundation for Music'), (25170, 'https://ror.org/005mtxn43', 'en', 1, 'https://ror.org/005mtxn43 Tunica Museum'), (25171, 'https://ror.org/005nxh826', 'en', 1, 'https://ror.org/005nxh826 Samuel Adegboyega University'), (25172, 'https://ror.org/005q8d646', 'en', 1, 'https://ror.org/005q8d646 European Faculty of Law Evropska pravna fakulteta'), (25173, 'https://ror.org/005qaye06', 'en', 1, 'https://ror.org/005qaye06 Beaux-arts de pennsylvanie Pennsylvania Academy of the Fine Arts'), (25174, 'https://ror.org/005qr1k22', 'no_lang_code', 1, 'https://ror.org/005qr1k22 Bhaktivedanta College Bhaktivedanta Hittudományi Főiskola'), (25175, 'https://ror.org/005qzg609', 'en', 1, 'https://ror.org/005qzg609 University of Arkansas Community College at Batesville'), (25176, 'https://ror.org/005vjg312', 'en', 1, 'https://ror.org/005vjg312 University of Ecology and Management in Warsaw Wyższa Szkoła Ekologii i Zarządzania w Warszawie'), (25177, 'https://ror.org/005y2a635', 'en', 1, 'https://ror.org/005y2a635 Earth Island Institute'), (25178, 'https://ror.org/005z3e143', 'id', 1, 'https://ror.org/005z3e143 Universitas Abulyatama'), (25179, 'https://ror.org/005zjex51', 'en', 1, 'https://ror.org/005zjex51 Saint-Petersburg State University of Technology and Design'), (25180, 'https://ror.org/00602gv86', 'en', 1, 'https://ror.org/00602gv86 Akademia Polonijna Polonia University'), (25181, 'https://ror.org/0060bz664', 'en', 1, 'https://ror.org/0060bz664 Mississippi Department of Archives and History'), (25182, 'https://ror.org/0062skg93', 'en', 1, 'https://ror.org/0062skg93 University of South Florida Sarasota–Manatee'), (25183, 'https://ror.org/00648rz05', 'en', 1, 'https://ror.org/00648rz05 W. H. Over Museum'), (25184, 'https://ror.org/0064m4x84', 'en', 1, 'https://ror.org/0064m4x84 Colorado Heights University'), (25185, 'https://ror.org/00656df32', 'en', 1, 'https://ror.org/00656df32 National Society of The Colonial Dames of America'), (25186, 'https://ror.org/0065qv150', 'en', 1, 'https://ror.org/0065qv150 Ludwik Solski Academy for the Dramatic Arts Państwowa Wyższa Szkoła Teatralna im. Ludwika Solskiego w Krakowie'), (25187, 'https://ror.org/0067y8s97', 'en', 1, 'https://ror.org/0067y8s97 Texas Marine Mammal Stranding Network'), (25188, 'https://ror.org/0069psd02', 'en', 1, 'https://ror.org/0069psd02 European School of Law and Administration Europejska Wyższa Szkoła Prawa i Administracji'), (25189, 'https://ror.org/006a84f66', 'en', 1, 'https://ror.org/006a84f66 Humane Society of the United States'), (25190, 'https://ror.org/006c2dp67', 'en', 1, 'https://ror.org/006c2dp67 Kwassui Women''s University 活水女子大学'), (25191, 'https://ror.org/006cjk069', 'en', 1, 'https://ror.org/006cjk069 Krishna Kanta Handiqui State Open University কৃষ্ণকান্ত সন্দিকৈ রাজ্যিক মুক্ত বিশ্ববিদ্যালয়'), (25192, 'https://ror.org/006eggh59', 'cs', 1, 'https://ror.org/006eggh59 Jihomoravské muzeum ve Znojmě, South Moravian Museum in Znojmo'), (25193, 'https://ror.org/006fs1j92', 'en', 1, 'https://ror.org/006fs1j92 Gangwon Provincial University'), (25194, 'https://ror.org/006gp7f65', 'no_lang_code', 1, 'https://ror.org/006gp7f65 Baekseok Arts University 백석예술대학교'), (25195, 'https://ror.org/006hvb134', 'en', 1, 'https://ror.org/006hvb134 Idaho State Historical Society'), (25196, 'https://ror.org/006ks2460', 'en', 1, 'https://ror.org/006ks2460 Juraj Dobrila University of Pula Sveučilište Jurja Dobrile u Puli Универзитет Јураја Добриле у Пули'), (25197, 'https://ror.org/006pnw132', 'en', 1, 'https://ror.org/006pnw132 Le Iunivesite Aoao o Samoa National University of Samoa'), (25198, 'https://ror.org/006qbbs65', 'en', 1, 'https://ror.org/006qbbs65 Dallas Historical Society'), (25199, 'https://ror.org/006r53q22', 'en', 1, 'https://ror.org/006r53q22 Tom Lea Institute'), (25200, 'https://ror.org/006rbkq36', 'no_lang_code', 1, 'https://ror.org/006rbkq36 T-MAPY (Czechia)'); INSERT INTO `rors` VALUES (25201, 'https://ror.org/006sv2266', 'en', 1, 'https://ror.org/006sv2266 Classic Private University Класичний приватний університет'), (25202, 'https://ror.org/006sy0h18', 'no_lang_code', 1, 'https://ror.org/006sy0h18 Unit Plus (Czechia)'), (25203, 'https://ror.org/006tnfe02', 'en', 1, 'https://ror.org/006tnfe02 National Taichung University of Education 國立臺中教育大學'), (25204, 'https://ror.org/006v7bf86', 'en', 1, 'https://ror.org/006v7bf86 Harvard University Press'), (25205, 'https://ror.org/006wqrx41', 'en', 1, 'https://ror.org/006wqrx41 Korea National University of Cultural Heritage 한국전통문화대학교'), (25206, 'https://ror.org/00711xr15', 'en', 1, 'https://ror.org/00711xr15 Tallahassee Museum'), (25207, 'https://ror.org/0071art98', 'no_lang_code', 1, 'https://ror.org/0071art98 Angkor University សាកលវិទ្យាល័យអង្គរ'), (25208, 'https://ror.org/0072em063', 'en', 1, 'https://ror.org/0072em063 World Music Productions'), (25209, 'https://ror.org/007528s45', 'no_lang_code', 1, 'https://ror.org/007528s45 CKD Elektrotechnika (Czechia)'), (25210, 'https://ror.org/0075h8406', 'no_lang_code', 1, 'https://ror.org/0075h8406 Ghazni University دانشگاه غزنی'), (25211, 'https://ror.org/0077sy889', 'en', 1, 'https://ror.org/0077sy889 School of Economics and Management of Public Administration in Bratislava Vysoká škola ekonómie a manažmentu verejnej správy v Bratislave'), (25212, 'https://ror.org/00791c793', 'id', 1, 'https://ror.org/00791c793 Universitas Persada Indonesia Yayasan Administrasi Indonesia'), (25213, 'https://ror.org/007a2j788', 'en', 1, 'https://ror.org/007a2j788 Smolensk State Agricultural Academy Смоленская государственная сельскохозяйственная академия'), (25214, 'https://ror.org/007avbc90', 'en', 1, 'https://ror.org/007avbc90 Kansai University of Social Welfare 関西福祉大学'), (25215, 'https://ror.org/007dt0y58', 'en', 1, 'https://ror.org/007dt0y58 Pacific Marine Mammal Center'), (25216, 'https://ror.org/007fy8586', 'en', 1, 'https://ror.org/007fy8586 Houghton Lake Public Library'), (25217, 'https://ror.org/007hp0t61', 'en', 1, 'https://ror.org/007hp0t61 Muhammadiyah University of North Maluku Universitas Muhammadiyah Maluku Utara'), (25218, 'https://ror.org/007jmf435', 'en', 1, 'https://ror.org/007jmf435 Ecology Action'), (25219, 'https://ror.org/007mjrc64', 'cs', 1, 'https://ror.org/007mjrc64 Gerontologické Centrum'), (25220, 'https://ror.org/007qxz427', 'en', 1, 'https://ror.org/007qxz427 Tamil Nadu Teachers Education University தமிழ்நாடு ஆசிரியர் கல்வியியல் பல்கலைக்கழகம்'), (25221, 'https://ror.org/007s0q763', 'no_lang_code', 1, 'https://ror.org/007s0q763 ERA (Czechia)'), (25222, 'https://ror.org/007s7qx27', 'en', 1, 'https://ror.org/007s7qx27 Gyeongin National University of Education 경인교육대학교'), (25223, 'https://ror.org/007sfrj26', 'en', 1, 'https://ror.org/007sfrj26 Tver State Technical University Тверской государственный технический университет'), (25224, 'https://ror.org/007vwze84', 'en', 1, 'https://ror.org/007vwze84 Saint Petersburg State University of Cinema and Television Санкт-Петербургский государственный институт кино и телевидения'), (25225, 'https://ror.org/007w4fd36', 'en', 1, 'https://ror.org/007w4fd36 Japan Center for Michigan Universities ミシガン州立大学連合日本センター'), (25226, 'https://ror.org/007y61a09', 'en', 1, 'https://ror.org/007y61a09 Carbon County Museum'), (25227, 'https://ror.org/0080c1a18', 'en', 1, 'https://ror.org/0080c1a18 Azerbaijan State University of Culture and Arts Azərbaycan Dövlət Mədəniyyət və İncəsənət Universiteti Азербайджанский государственный университет культуры и искусств'), (25228, 'https://ror.org/0085esk58', 'id', 1, 'https://ror.org/0085esk58 Universitas Kutai Kartanegara'), (25229, 'https://ror.org/0085wxm22', 'no_lang_code', 1, 'https://ror.org/0085wxm22 Seijoh University 星城大学'), (25230, 'https://ror.org/008642w33', 'en', 1, 'https://ror.org/008642w33 Plains Art Museum'), (25231, 'https://ror.org/00869mm41', 'en', 1, 'https://ror.org/00869mm41 Rochester Historical Society'), (25232, 'https://ror.org/008754496', 'no_lang_code', 1, 'https://ror.org/008754496 Ryutsu Keizai University 流通経済大学'), (25233, 'https://ror.org/008836v19', 'pt', 1, 'https://ror.org/008836v19 Universidade Sénior Contemporânea'), (25234, 'https://ror.org/0089fq749', 'en', 1, 'https://ror.org/0089fq749 Baddi University of Emerging Sciences and Technologies बद्दी युनिवर्सिटी ऑफ़ एमेर्गिंग साइंसेस और टेक्नोलॉजी'), (25235, 'https://ror.org/008a62c70', 'en', 1, 'https://ror.org/008a62c70 Pacific Shellfish Institute'), (25236, 'https://ror.org/008bb2h75', 'no_lang_code', 1, 'https://ror.org/008bb2h75 Musashino Academia Musicae 武蔵野音楽大学'), (25237, 'https://ror.org/008bbzm95', 'en', 1, 'https://ror.org/008bbzm95 Korea Nazarene University 나사렛대학교'), (25238, 'https://ror.org/008cmk776', 'id', 1, 'https://ror.org/008cmk776 Universitas Islam Attahiriyah'), (25239, 'https://ror.org/008dh2426', 'en', 1, 'https://ror.org/008dh2426 National University of Modern Languages قومی جامعہ برائے جدید لسانیات'), (25240, 'https://ror.org/008hty861', 'en', 1, 'https://ror.org/008hty861 Cincinnati Art Museum'), (25241, 'https://ror.org/008jssb69', 'en', 1, 'https://ror.org/008jssb69 University of Computer Studies Mandalay'), (25242, 'https://ror.org/008mz8m34', 'en', 1, 'https://ror.org/008mz8m34 Jagadguru Rambhadracharya Handicapped University जगद्गुरु रामभद्राचार्य विकलांग विश्वविद्यालय જગદ્ગુરુ રામભદ્રાચાર્ય વિકલાંગ વિશ્વવિદ્યાલય'), (25243, 'https://ror.org/008nk3d11', 'en', 1, 'https://ror.org/008nk3d11 Zetech University'), (25244, 'https://ror.org/008p8p838', 'en', 1, 'https://ror.org/008p8p838 Ontario County Historical Society'), (25245, 'https://ror.org/008phw744', 'en', 1, 'https://ror.org/008phw744 Canal Corridor Association'), (25246, 'https://ror.org/008pxsf13', 'en', 1, 'https://ror.org/008pxsf13 Yangon Technological University ရန်ကုန်နည်းပညာတက္ကသိုလ်'), (25247, 'https://ror.org/008q9az43', 'en', 1, 'https://ror.org/008q9az43 Western Heritage Center'), (25248, 'https://ror.org/008vs4b49', 'en', 1, 'https://ror.org/008vs4b49 Maymont Foundation'), (25249, 'https://ror.org/008wejk32', 'en', 1, 'https://ror.org/008wejk32 Trauma Hospital of Brno Úrazová nemocnice'), (25250, 'https://ror.org/008wkze26', 'en', 1, 'https://ror.org/008wkze26 Phitsanulok University มหาวิทยาลัยพิษณุโลก'), (25251, 'https://ror.org/008xj1y67', 'en', 1, 'https://ror.org/008xj1y67 National Technical Training Institute វិទ្យាស្ថានជាតិបណ្តុះបណ្តាលបច្ចេកទេស'), (25252, 'https://ror.org/0090dta57', 'id', 1, 'https://ror.org/0090dta57 Universitas Islam Nusantara'), (25253, 'https://ror.org/0090r4223', 'en', 1, 'https://ror.org/0090r4223 St. John International University'), (25254, 'https://ror.org/0091wgk69', 'en', 1, 'https://ror.org/0091wgk69 Khabarovsk State Institute of Arts and Culture Хабаровский государственный институт искусств и культуры'), (25255, 'https://ror.org/0092t1z08', 'en', 1, 'https://ror.org/0092t1z08 The Future University جامعة المستقبل'), (25256, 'https://ror.org/009323b35', 'id', 1, 'https://ror.org/009323b35 Universitas Sultan Fatah'), (25257, 'https://ror.org/009565791', 'en', 1, 'https://ror.org/009565791 Orca Network'), (25258, 'https://ror.org/0095v1k44', 'en', 1, 'https://ror.org/0095v1k44 Chelyabinsk State Agroengineering Academy Южно-Ура́льский госуда́рственный агра́рный университе́т'), (25259, 'https://ror.org/0095xcq10', 'en', 1, 'https://ror.org/0095xcq10 University of Management and Technology یونیورسٹی آف مینجمنٹ اینڈ ٹیکنالوجی'), (25260, 'https://ror.org/0097e1k27', 'en', 1, 'https://ror.org/0097e1k27 Wright-Patterson Air Force Base'), (25261, 'https://ror.org/0097mbe50', 'en', 1, 'https://ror.org/0097mbe50 Kharkiv National University of Construction and Architecture Харківський національний університет будівництва й архітектури'), (25262, 'https://ror.org/009bn4527', 'en', 1, 'https://ror.org/009bn4527 Moscow International Higher Business School Московская международная высшая школа бизнеса'), (25263, 'https://ror.org/009c3s802', 'en', 1, 'https://ror.org/009c3s802 Martin Luther Christian University'), (25264, 'https://ror.org/009e66y24', 'en', 1, 'https://ror.org/009e66y24 Urals Institute of Management Уральский институт управления'), (25265, 'https://ror.org/009f6yv14', 'en', 1, 'https://ror.org/009f6yv14 Kansai University of Nursing and Health Sciences 関西看護医療大学'), (25266, 'https://ror.org/009fpea76', 'en', 1, 'https://ror.org/009fpea76 Katonah Museum of Art'), (25267, 'https://ror.org/009jm4h46', 'en', 1, 'https://ror.org/009jm4h46 Sara Hightower Regional Library System'), (25268, 'https://ror.org/009jymh91', 'en', 1, 'https://ror.org/009jymh91 Dallas Heritage Village'), (25269, 'https://ror.org/009kcw598', 'en', 1, 'https://ror.org/009kcw598 Jatiya Kabi Kazi Nazrul Islam University জাতীয় কবি কাজী নজরুল ইসলাম বিশ্ববিদ্যালয়'), (25270, 'https://ror.org/009m17x95', 'en', 1, 'https://ror.org/009m17x95 Kyrgyz Economic University Кыргыз Экономика университети М. Рыскулбеков Кыргызский экономический университет им. М. Рыскулбекова'), (25271, 'https://ror.org/009mf3820', 'en', 1, 'https://ror.org/009mf3820 Artsakh State University Арцахский государственный университет Արցախի պետական համալսարանի գիտական տեղեկագիր'), (25272, 'https://ror.org/009mysd22', 'no_lang_code', 1, 'https://ror.org/009mysd22 Otemon Gakuin University 追手門学院大学'), (25273, 'https://ror.org/009ramd78', 'en', 1, 'https://ror.org/009ramd78 Pacific Adventist University'), (25274, 'https://ror.org/009ryyp22', 'en', 1, 'https://ror.org/009ryyp22 Auburn City Schools'), (25275, 'https://ror.org/009st3569', 'en', 1, 'https://ror.org/009st3569 Tel Hai Academic College המכללה האקדמית תל-חי'), (25276, 'https://ror.org/009sv4j63', 'en', 1, 'https://ror.org/009sv4j63 La Consolacion University Philippines Pamantasang La Consolacion sa Pilipinas'), (25277, 'https://ror.org/009tdqt52', 'en', 1, 'https://ror.org/009tdqt52 National Maritime Museum of the Gulf of Mexico'), (25278, 'https://ror.org/009ty3557', 'no_lang_code', 1, 'https://ror.org/009ty3557 Stavexis (Czechia)'), (25279, 'https://ror.org/009w67677', 'no_lang_code', 1, 'https://ror.org/009w67677 Cross Zlín (Czechia)'), (25280, 'https://ror.org/009wgvk87', 'en', 1, 'https://ror.org/009wgvk87 Centre for Higher Education Studies'), (25281, 'https://ror.org/009yjbg58', 'en', 1, 'https://ror.org/009yjbg58 Notre Dame of Dadiangas University'), (25282, 'https://ror.org/009yykm50', 'en', 1, 'https://ror.org/009yykm50 Palm Springs Art Museum'), (25283, 'https://ror.org/009z6a066', 'en', 1, 'https://ror.org/009z6a066 California State Coastal Conservancy'), (25284, 'https://ror.org/00a08ze66', 'en', 1, 'https://ror.org/00a08ze66 Laurel University'), (25285, 'https://ror.org/00a2bsk55', 'en', 1, 'https://ror.org/00a2bsk55 Jewish Historical Society of Greater Washington'), (25286, 'https://ror.org/00a686c80', 'en', 1, 'https://ror.org/00a686c80 Maranatha Baptist University'), (25287, 'https://ror.org/00a6ctc34', 'en', 1, 'https://ror.org/00a6ctc34 EIILM University ई.आइ.आइ.एल.एम विश्वविद्यालय'), (25288, 'https://ror.org/00a6ywr91', 'en', 1, 'https://ror.org/00a6ywr91 Szkoła Główna Turystyki i Hotelarstwa Vistula Vistula School of Hospitality'), (25289, 'https://ror.org/00a7f9203', 'no_lang_code', 1, 'https://ror.org/00a7f9203 KRD (Czechia)'), (25290, 'https://ror.org/00a7q4w79', 'en', 1, 'https://ror.org/00a7q4w79 Caribbean Cultural Center African Diaspora Institute'), (25291, 'https://ror.org/00a7wgt63', 'en', 1, 'https://ror.org/00a7wgt63 Winterthur Museum Garden and Library'), (25292, 'https://ror.org/00a8hpd04', 'en', 1, 'https://ror.org/00a8hpd04 Niigata University of Rehabilitation 新潟リハビリテーション大学'), (25293, 'https://ror.org/00aahf144', 'en', 1, 'https://ror.org/00aahf144 Telfair Museum of Art'), (25294, 'https://ror.org/00abagg24', 'en', 1, 'https://ror.org/00abagg24 Janardan Rai Nagar Rajasthan Vidyapeeth University जनार्दन राय नागर राजस्थान विद्यापीठ विश्वविद्यालय'), (25295, 'https://ror.org/00ae65a65', 'en', 1, 'https://ror.org/00ae65a65 Samarkand Institute of Economics and Service Samarqand iqtisodiyot va servis instituti'), (25296, 'https://ror.org/00afkg479', 'en', 1, 'https://ror.org/00afkg479 Anchorage Museum'), (25297, 'https://ror.org/00ag8ns14', 'en', 1, 'https://ror.org/00ag8ns14 Modern Language Association'), (25298, 'https://ror.org/00ak23720', 'en', 1, 'https://ror.org/00ak23720 Higher Education Centre Novo Mesto Visokošolsko Središče Novo Mesto'), (25299, 'https://ror.org/00amtww28', 'en', 1, 'https://ror.org/00amtww28 Lummi Indian Business Council'), (25300, 'https://ror.org/00andm809', 'pl', 1, 'https://ror.org/00andm809 Akademia Sztuk Pięknych w Gdańsku'), (25301, 'https://ror.org/00angtv54', 'en', 1, 'https://ror.org/00angtv54 Western Museum of Mining & Industry'), (25302, 'https://ror.org/00ap81005', 'en', 1, 'https://ror.org/00ap81005 Amon Carter Museum of American Art'), (25303, 'https://ror.org/00aq42n63', 'en', 1, 'https://ror.org/00aq42n63 Salem College'), (25304, 'https://ror.org/00atcgp07', 'en', 1, 'https://ror.org/00atcgp07 Manuel L. Quezon University Pamantasang Manuel L. Quezon'), (25305, 'https://ror.org/00atp1s12', 'en', 1, 'https://ror.org/00atp1s12 Caucasus International University'), (25306, 'https://ror.org/00avk7342', 'en', 1, 'https://ror.org/00avk7342 Friends of Fellows Riverside Gardens'), (25307, 'https://ror.org/00avnw427', 'en', 1, 'https://ror.org/00avnw427 Minnesota Historical Society'), (25308, 'https://ror.org/00axxxt35', 'en', 1, 'https://ror.org/00axxxt35 Parkway School District'), (25309, 'https://ror.org/00ay49j69', 'no_lang_code', 1, 'https://ror.org/00ay49j69 Hlasové centrum Praha Medical Healthcom (Czechia)'), (25310, 'https://ror.org/00azgtq24', 'en', 1, 'https://ror.org/00azgtq24 Shri Jagannath Sanskrit University श्री जगन्नाथ संस्कृत विश्वविद्यालय ଶ୍ରୀ ଜଗନ୍ନାଥ ସଂସ୍କୃତ ବିଶ୍ୱବିଦ୍ୟାଳୟ'), (25311, 'https://ror.org/00b52zb38', 'no_lang_code', 1, 'https://ror.org/00b52zb38 Tramaz (Czechia)'), (25312, 'https://ror.org/00b718e82', 'en', 1, 'https://ror.org/00b718e82 Shanto-Mariam University of Creative Technology শান্ত-মরিয়ম সৃজনশীল প্রযুক্তি বিশ্ববিদ্যালয়'), (25313, 'https://ror.org/00bad4666', 'en', 1, 'https://ror.org/00bad4666 Andijan State University Andijon davlat universiteti'), (25314, 'https://ror.org/00bah2v32', 'en', 1, 'https://ror.org/00bah2v32 Kyrgyz State Medical Academy'), (25315, 'https://ror.org/00bdm1273', 'en', 1, 'https://ror.org/00bdm1273 Institute for Marine Mammal Studies'), (25316, 'https://ror.org/00beege11', 'no_lang_code', 1, 'https://ror.org/00beege11 Webnode (Czechia)'), (25317, 'https://ror.org/00bfxmt28', 'en', 1, 'https://ror.org/00bfxmt28 Washington National Opera'), (25318, 'https://ror.org/00bgzqr58', 'id', 1, 'https://ror.org/00bgzqr58 Universitas Sains dan Teknologi Jayapura'), (25319, 'https://ror.org/00bhzt187', 'id', 1, 'https://ror.org/00bhzt187 Universitas Pembinaan Masyarakat Indonesia Medan'), (25320, 'https://ror.org/00bn59524', 'en', 1, 'https://ror.org/00bn59524 Ethics and Public Policy Center'), (25321, 'https://ror.org/00bt0h739', 'id', 1, 'https://ror.org/00bt0h739 Universitas Muhammadiyah Parepare'), (25322, 'https://ror.org/00bt5t811', 'en', 1, 'https://ror.org/00bt5t811 Tennessee State Museum'), (25323, 'https://ror.org/00bwfj843', 'en', 1, 'https://ror.org/00bwfj843 Private Fachhochschule Wedel University of Applied Sciences Wedel'), (25324, 'https://ror.org/00bwtjf83', 'en', 1, 'https://ror.org/00bwtjf83 Tampere University of Applied Sciences Tampereen Ammattikorkeakoulu'), (25325, 'https://ror.org/00byxyj96', 'en', 1, 'https://ror.org/00byxyj96 Gemological Centers'), (25326, 'https://ror.org/00bzckd95', 'en', 1, 'https://ror.org/00bzckd95 Arts, Sciences and Technology University in Lebanon'), (25327, 'https://ror.org/00c0mqp91', 'en', 1, 'https://ror.org/00c0mqp91 Christian Business Faculty Association'), (25328, 'https://ror.org/00c2t9540', 'en', 1, 'https://ror.org/00c2t9540 Taisho University 大正大学'), (25329, 'https://ror.org/00c3r5g90', 'no_lang_code', 1, 'https://ror.org/00c3r5g90 Generi Biotech (Czechia)'), (25330, 'https://ror.org/00c4wmy51', 'no_lang_code', 1, 'https://ror.org/00c4wmy51 Surugadai University 駿河台大学'), (25331, 'https://ror.org/00ca12a38', 'hi', 1, 'https://ror.org/00ca12a38 Mahatma Gandhi Chitrakoot Gramodaya Vishwavidyalaya'), (25332, 'https://ror.org/00ca5f112', 'en', 1, 'https://ror.org/00ca5f112 Oklahoma Historical Society'), (25333, 'https://ror.org/00cae8n39', 'en', 1, 'https://ror.org/00cae8n39 Yessenov University Ш. Есенов атындағы Университет'), (25334, 'https://ror.org/00cbhey71', 'en', 1, 'https://ror.org/00cbhey71 Changchun Normal University 长春师范大学'), (25335, 'https://ror.org/00cbm0437', 'en', 1, 'https://ror.org/00cbm0437 Bridge University'), (25336, 'https://ror.org/00ccd8760', 'no_lang_code', 1, 'https://ror.org/00ccd8760 Formdesign (Czechia)'), (25337, 'https://ror.org/00ceabv15', 'en', 1, 'https://ror.org/00ceabv15 International Coalition of Sites of Conscience'), (25338, 'https://ror.org/00cf0ab87', 'en', 1, 'https://ror.org/00cf0ab87 Southeast University সাউথইস্ট বিশ্ববিদ্যালয়'), (25339, 'https://ror.org/00cfc2e66', 'en', 1, 'https://ror.org/00cfc2e66 Mission Inn Foundation'), (25340, 'https://ror.org/00cgkxv41', 'en', 1, 'https://ror.org/00cgkxv41 Buriram Rajabhat University มหาวิทยาลัยราชภัฏบุรีรัมย์'), (25341, 'https://ror.org/00chesn46', 'en', 1, 'https://ror.org/00chesn46 Olney Carnegie Library'), (25342, 'https://ror.org/00cjtj637', 'en', 1, 'https://ror.org/00cjtj637 Abraham Lincoln University'), (25343, 'https://ror.org/00cnm9016', 'no_lang_code', 1, 'https://ror.org/00cnm9016 Upper Volga Institute'), (25344, 'https://ror.org/00cnme797', 'no_lang_code', 1, 'https://ror.org/00cnme797 Kanazawa Gakuin University 金沢学院大学'), (25345, 'https://ror.org/00cqxck67', 'en', 1, 'https://ror.org/00cqxck67 Center for Southern Folklore'), (25346, 'https://ror.org/00cvkwk76', 'en', 1, 'https://ror.org/00cvkwk76 Flagler College'), (25347, 'https://ror.org/00cwqzv43', 'en', 1, 'https://ror.org/00cwqzv43 Northeast Historic Film'), (25348, 'https://ror.org/00cwwxh37', 'id', 1, 'https://ror.org/00cwwxh37 Universitas Esa Unggul'), (25349, 'https://ror.org/00cyrce09', 'en', 1, 'https://ror.org/00cyrce09 Akademie Sting Sting Academy'), (25350, 'https://ror.org/00cyrx553', 'id', 1, 'https://ror.org/00cyrx553 Universitas Prof. Dr. Hazairin SH.'), (25351, 'https://ror.org/00cz1vp94', 'en', 1, 'https://ror.org/00cz1vp94 Linebaugh Public Library'), (25352, 'https://ror.org/00d059615', 'no_lang_code', 1, 'https://ror.org/00d059615 Komfi (Czechia)'), (25353, 'https://ror.org/00d167n54', 'en', 1, 'https://ror.org/00d167n54 Novosibirsk State Medical University Новосибирский государственный медицинский университет'), (25354, 'https://ror.org/00d18mr25', 'en', 1, 'https://ror.org/00d18mr25 Chabot College'), (25355, 'https://ror.org/00d440w27', 'no_lang_code', 1, 'https://ror.org/00d440w27 Tenri University 天理大学'), (25356, 'https://ror.org/00d54pv09', 'en', 1, 'https://ror.org/00d54pv09 Henry Morrison Flagler Museum'), (25357, 'https://ror.org/00d55g310', 'en', 1, 'https://ror.org/00d55g310 Transbaikal State University Забайкальский государственный университет'), (25358, 'https://ror.org/00d7gza76', 'id', 1, 'https://ror.org/00d7gza76 Universitas Darul Ulum Islamic Centre Sudirman'), (25359, 'https://ror.org/00d8vfy18', 'no_lang_code', 1, 'https://ror.org/00d8vfy18 Seawater Greenhouse (United Kingdom)'), (25360, 'https://ror.org/00db2vc28', 'en', 1, 'https://ror.org/00db2vc28 Karelia University of Applied Sciences Karelia-ammattikorkeakoulu'), (25361, 'https://ror.org/00dbgmf72', 'en', 1, 'https://ror.org/00dbgmf72 Washburn Norlands Living History Center'), (25362, 'https://ror.org/00dbrh564', 'en', 1, 'https://ror.org/00dbrh564 Maldives National University ދިވެހިރާއްޖޭގެ ޤައުމީ ޔުނިވަރސިޓީ'), (25363, 'https://ror.org/00dcg0248', 'no_lang_code', 1, 'https://ror.org/00dcg0248 Yadanabon University ရတနာပုံ တက္ကသိုလ်'), (25364, 'https://ror.org/00dd6af44', 'en', 1, 'https://ror.org/00dd6af44 Thang Long University Trường Đại học Thăng Long'), (25365, 'https://ror.org/00df8wr13', 'no_lang_code', 1, 'https://ror.org/00df8wr13 Education Management Corporation (United States)'), (25366, 'https://ror.org/00dfrzy25', 'en', 1, 'https://ror.org/00dfrzy25 Carnegie Trust for the Universities of Scotland'), (25367, 'https://ror.org/00dgmek64', 'en', 1, 'https://ror.org/00dgmek64 Anthology Film Archives'), (25368, 'https://ror.org/00dgyv454', 'en', 1, 'https://ror.org/00dgyv454 Fuji University 富士大学'), (25369, 'https://ror.org/00dh8qa61', 'en', 1, 'https://ror.org/00dh8qa61 East Bohemian Museum in Pardubice Východočeské muzeum v Pardubicích'), (25370, 'https://ror.org/00dj68t85', 'en', 1, 'https://ror.org/00dj68t85 Bishop John T. Walker National Learning Center'), (25371, 'https://ror.org/00dpn5080', 'en', 1, 'https://ror.org/00dpn5080 Coastal Resources Management Council'), (25372, 'https://ror.org/00ds41r10', 'en', 1, 'https://ror.org/00ds41r10 Carnegie Mellon University Australia'), (25373, 'https://ror.org/00dwyn417', 'en', 1, 'https://ror.org/00dwyn417 Takachiho University 高千穂大学'), (25374, 'https://ror.org/00dyv5995', 'en', 1, 'https://ror.org/00dyv5995 Institute of Foreign Languages Институт иностранных языков'), (25375, 'https://ror.org/00e26jr92', 'id', 1, 'https://ror.org/00e26jr92 Universitas Bale Bandung'), (25376, 'https://ror.org/00e42hf98', 'en', 1, 'https://ror.org/00e42hf98 Kurgan State Agricultural Academy by T S Maltsev Курганская государственная сельскохозяйственная академия имени Т.С'), (25377, 'https://ror.org/00e4pwa85', 'en', 1, 'https://ror.org/00e4pwa85 Rudny Industrial Institute Рудный Индустриалдық Институты'), (25378, 'https://ror.org/00e5rqn68', 'en', 1, 'https://ror.org/00e5rqn68 Sonoma County Library'), (25379, 'https://ror.org/00e7n9517', 'en', 1, 'https://ror.org/00e7n9517 Pryazovskyi State Technical University Przyazowski Państwowy Uniwersytet Techniczny Приазовский государственный технический университет Приазовський державний технічний університет'), (25380, 'https://ror.org/00e936y53', 'en', 1, 'https://ror.org/00e936y53 Turkmen State Institute of Transport and Communication'), (25381, 'https://ror.org/00ea13906', 'en', 1, 'https://ror.org/00ea13906 Kangnam University 강남대학교'), (25382, 'https://ror.org/00eaycp31', 'en', 1, 'https://ror.org/00eaycp31 IMC Fachhochschule Krems IMC University of Applied Sciences Krems'), (25383, 'https://ror.org/00ebesp71', 'en', 1, 'https://ror.org/00ebesp71 Dagestan State Agricultural Academy'), (25384, 'https://ror.org/00ebk5277', 'en', 1, 'https://ror.org/00ebk5277 Tbilisi Humanitarian Teaching University თბილისის ჰუმანიტარული სასწავლო უნივერსიტეტი'), (25385, 'https://ror.org/00eckk830', 'en', 1, 'https://ror.org/00eckk830 Oman Medical College كلية عُمان الطبية'), (25386, 'https://ror.org/00ecy3w15', 'en', 1, 'https://ror.org/00ecy3w15 Jan Amos Komensky University Univerzita Jana Amose Komenského Praha'), (25387, 'https://ror.org/00edm2h72', 'en', 1, 'https://ror.org/00edm2h72 Wadi International University جامعة الوادي الدولية الخاصة'), (25388, 'https://ror.org/00efgh409', 'en', 1, 'https://ror.org/00efgh409 Indian Institute of Foreign Trade भारतीय विदेश व्यापार संस्थान'), (25389, 'https://ror.org/00ege8681', 'en', 1, 'https://ror.org/00ege8681 Bamyan University دبامیان پوهنتون پوهنتون بامیان'), (25390, 'https://ror.org/00eq8hh49', 'en', 1, 'https://ror.org/00eq8hh49 Karagandy State University Е.А.Бөкетов атындағы Қарағанды мемлекеттік университеті Карагандинский государственный университет имени Е. А. Букетова'), (25391, 'https://ror.org/00eqgy272', 'en', 1, 'https://ror.org/00eqgy272 Allameh Mohaddes Nouri University دانشگاه علامه محدث نوری'), (25392, 'https://ror.org/00eqjev45', 'en', 1, 'https://ror.org/00eqjev45 Society for the Protection of New Hampshire Forests'), (25393, 'https://ror.org/00eqtt103', 'no_lang_code', 1, 'https://ror.org/00eqtt103 Pneukom (Czechia)'), (25394, 'https://ror.org/00erb5q72', 'en', 1, 'https://ror.org/00erb5q72 Caraga State University'), (25395, 'https://ror.org/00erv7q04', 'en', 1, 'https://ror.org/00erv7q04 Kumar Bhaskar Varma Sanskrit and Ancient Studies University कुमार भास्कर वर्मा संस्कृत एवं पुरातन अध्ययन विश्वविद्यालय কুমাৰ ভাস্কৰ বৰ্মা সংস্কৃত আৰু পুৰাতন অধ্যয়ন বিশ্ববিদ্যালয়'), (25396, 'https://ror.org/00et8e744', 'en', 1, 'https://ror.org/00et8e744 English Speaking Union'), (25397, 'https://ror.org/00et93377', 'en', 1, 'https://ror.org/00et93377 Rattana Bundit University มหาวิทยาลัยรัตนบัณฑิต'), (25398, 'https://ror.org/00exza086', 'en', 1, 'https://ror.org/00exza086 Malama Kai Foundation'), (25399, 'https://ror.org/00ey2ce45', 'id', 1, 'https://ror.org/00ey2ce45 Universitas Simalungun'), (25400, 'https://ror.org/00ey9xa07', 'en', 1, 'https://ror.org/00ey9xa07 Harbin University 哈尔滨学院'), (25401, 'https://ror.org/00ez0sd51', 'en', 1, 'https://ror.org/00ez0sd51 Institute for Environmental Policy'), (25402, 'https://ror.org/00f2nse09', 'en', 1, 'https://ror.org/00f2nse09 Cape Ann Museum'), (25403, 'https://ror.org/00f3w5j61', 'no_lang_code', 1, 'https://ror.org/00f3w5j61 Oikos University'), (25404, 'https://ror.org/00f5esq17', 'en', 1, 'https://ror.org/00f5esq17 Hijiyama University 比治山大学'), (25405, 'https://ror.org/00f60z765', 'en', 1, 'https://ror.org/00f60z765 Los Angeles County Museum of Art'), (25406, 'https://ror.org/00f7p4623', 'en', 1, 'https://ror.org/00f7p4623 City Lore the New York Center for Urban Culture'), (25407, 'https://ror.org/00f8d9297', 'id', 1, 'https://ror.org/00f8d9297 Universitas Muhammadiyah Gresik'), (25408, 'https://ror.org/00f99ht56', 'en', 1, 'https://ror.org/00f99ht56 Washington State Historical Society'), (25409, 'https://ror.org/00fc27062', 'en', 1, 'https://ror.org/00fc27062 Providence Public Library'), (25410, 'https://ror.org/00fchwr06', 'no_lang_code', 1, 'https://ror.org/00fchwr06 Optokon (Czechia)'), (25411, 'https://ror.org/00fcxqx79', 'en', 1, 'https://ror.org/00fcxqx79 Budapesti Metropolitan Egyetem University of Applied Science Budapest'), (25412, 'https://ror.org/00fds2k14', 'en', 1, 'https://ror.org/00fds2k14 Fargʻona politexnika instituti Ferghana Polytechnical Institute Ферганский Политехнический Институт'), (25413, 'https://ror.org/00fh84p67', 'fr', 1, 'https://ror.org/00fh84p67 École d''Informatique, d''Électronique et d''Expertise Comptable'), (25414, 'https://ror.org/00fhcxc56', 'en', 1, 'https://ror.org/00fhcxc56 Ibb University جامعة إب'), (25415, 'https://ror.org/00fjsz467', 'en', 1, 'https://ror.org/00fjsz467 North Carolina Wildlife Resources Commission'), (25416, 'https://ror.org/00fkbtp02', 'en', 1, 'https://ror.org/00fkbtp02 Alhosn University جامعة الحصن'), (25417, 'https://ror.org/00fkjwd61', 'en', 1, 'https://ror.org/00fkjwd61 Ural Law Institute Russian Ministry of Internal Affairs Уральский юридический институт'), (25418, 'https://ror.org/00fkkrz35', 'en', 1, 'https://ror.org/00fkkrz35 Adirondack Museum'), (25419, 'https://ror.org/00fky1y76', 'no_lang_code', 1, 'https://ror.org/00fky1y76 MBT Metal (Czechia)'), (25420, 'https://ror.org/00fmwma48', 'en', 1, 'https://ror.org/00fmwma48 Alaska Fisheries Development Foundation'), (25421, 'https://ror.org/00fnehe27', 'en', 1, 'https://ror.org/00fnehe27 Riverside Metropolitan Museum'), (25422, 'https://ror.org/00fnry208', 'en', 1, 'https://ror.org/00fnry208 Daejeon Catholic University'), (25423, 'https://ror.org/00fp2m518', 'en', 1, 'https://ror.org/00fp2m518 Baba Ghulam Shah Badshah University بابا غُلام شاہ بادشاہ یونیورسٹی बाबा ग़ुलाम शाह बादशाह यूनिवर्सिटी'), (25424, 'https://ror.org/00fpr8c10', 'en', 1, 'https://ror.org/00fpr8c10 Fort Ross Conservancy'), (25425, 'https://ror.org/00fqce595', 'en', 1, 'https://ror.org/00fqce595 Birmingham Civil Rights Institute'), (25426, 'https://ror.org/00fqfkm54', 'no_lang_code', 1, 'https://ror.org/00fqfkm54 Matsuyama Shinonome College 松山東雲女子大学'), (25427, 'https://ror.org/00frehm74', 'en', 1, 'https://ror.org/00frehm74 Daegu Technical University 대구공업대학교'), (25428, 'https://ror.org/00frg6v09', 'en', 1, 'https://ror.org/00frg6v09 Budapest Contemporary Dance Academy Budapest Kortárstánc Főiskola'), (25429, 'https://ror.org/00fs9wb06', 'en', 1, 'https://ror.org/00fs9wb06 University of Raparin جامعة رابرين'), (25430, 'https://ror.org/00fshqt18', 'no_lang_code', 1, 'https://ror.org/00fshqt18 Exbio (Czechia)'), (25431, 'https://ror.org/00ft99q05', 'en', 1, 'https://ror.org/00ft99q05 Portland Museum'), (25432, 'https://ror.org/00fx6sd20', 'en', 1, 'https://ror.org/00fx6sd20 Frank Lloyd Wright Trust'), (25433, 'https://ror.org/00fxdpg38', 'en', 1, 'https://ror.org/00fxdpg38 Defiant Requiem Foundation'), (25434, 'https://ror.org/00g0n6t22', 'en', 1, 'https://ror.org/00g0n6t22 Fakir Mohan University'), (25435, 'https://ror.org/00g0p9k78', 'en', 1, 'https://ror.org/00g0p9k78 Onomichi City University 尾道市立大学'), (25436, 'https://ror.org/00g0t4m04', 'en', 1, 'https://ror.org/00g0t4m04 Japanese Red Cross College of Nursing 日本赤十字看護大学'), (25437, 'https://ror.org/00g1je163', 'en', 1, 'https://ror.org/00g1je163 Almetyevsk State Oil Institute Альметьевский государственный нефтяной институт'), (25438, 'https://ror.org/00g1psz15', 'en', 1, 'https://ror.org/00g1psz15 Azerbaijan University Azərbaycan Universiteti'), (25439, 'https://ror.org/00g1zds18', 'en', 1, 'https://ror.org/00g1zds18 Samara State University of Social Sciences and Education Самарский государственный социально-педагогический университет'), (25440, 'https://ror.org/00g3q3z36', 'en', 1, 'https://ror.org/00g3q3z36 Arizona State Museum'), (25441, 'https://ror.org/00g49fd96', 'en', 1, 'https://ror.org/00g49fd96 Pandit Deendayal Upadhyaya Shekhawati University पंडित दीनदयाल उपाध्याय शेखावाटी विश्वविद्यालय'), (25442, 'https://ror.org/00g6nvj03', 'en', 1, 'https://ror.org/00g6nvj03 Institute of State and Law Институт государства и права Российской академии наук'), (25443, 'https://ror.org/00g8avn41', 'en', 1, 'https://ror.org/00g8avn41 Portland Art Museum'), (25444, 'https://ror.org/00g9rmg66', 'en', 1, 'https://ror.org/00g9rmg66 Institut Pertanian Malang'), (25445, 'https://ror.org/00gdqcd57', 'en', 1, 'https://ror.org/00gdqcd57 Lipeck Ecology-Humanitarian Institute Липецкий эколого-гуманитарный институт'), (25446, 'https://ror.org/00ge2jh15', 'en', 1, 'https://ror.org/00ge2jh15 Peres Academic Center המרכז האקדמי פרס'), (25447, 'https://ror.org/00ggmmz77', 'en', 1, 'https://ror.org/00ggmmz77 Iakob Gogebashvili Telavi State University იაკობ გოგებაშვილის სახელობის თელავის სახელმწიფო უნივერსტიტეტი'), (25448, 'https://ror.org/00gh5bn60', 'en', 1, 'https://ror.org/00gh5bn60 Deep Springs College'), (25449, 'https://ror.org/00ghnnz67', 'en', 1, 'https://ror.org/00ghnnz67 Unity Productions Foundation'), (25450, 'https://ror.org/00ghshv09', 'en', 1, 'https://ror.org/00ghshv09 Kotarbinski University of Information Technology and Management in Olsztyn'), (25451, 'https://ror.org/00ghx1590', 'en', 1, 'https://ror.org/00ghx1590 International Balkan University'), (25452, 'https://ror.org/00gj2kk32', 'en', 1, 'https://ror.org/00gj2kk32 Russian New University'), (25453, 'https://ror.org/00gjkwr85', 'en', 1, 'https://ror.org/00gjkwr85 Hanoi Open University Trường Đại học Mở Hà Nội'), (25454, 'https://ror.org/00gjmav90', 'id', 1, 'https://ror.org/00gjmav90 Universitas Sunan Giri'), (25455, 'https://ror.org/00gjv5s24', 'en', 1, 'https://ror.org/00gjv5s24 H.S. Skovoroda Kharkiv National Pedagogical University Харківський національний педагогічний університет імені Григорія Сковороди Харьковский национальный педагогический университет имени Сковороды'), (25456, 'https://ror.org/00gkfj461', 'en', 1, 'https://ror.org/00gkfj461 Marine Mammal Stranding Center'), (25457, 'https://ror.org/00gpcst68', 'en', 1, 'https://ror.org/00gpcst68 Brunswick-Glynn County Library'), (25458, 'https://ror.org/00gpmpm48', 'en', 1, 'https://ror.org/00gpmpm48 Morton Museum'), (25459, 'https://ror.org/00gq3pb70', 'en', 1, 'https://ror.org/00gq3pb70 Vologda State Milk Academy named after NV Vereshchagina'), (25460, 'https://ror.org/00grg8947', 'cs', 1, 'https://ror.org/00grg8947 Ústav Archeologické Památkové Péče Středních Čech'), (25461, 'https://ror.org/00grh1m39', 'en', 1, 'https://ror.org/00grh1m39 National College of Arts نیشنل کالج آف آرٹس'), (25462, 'https://ror.org/00gxe6p18', 'en', 1, 'https://ror.org/00gxe6p18 Nizhny Novgorod Commercial Institute Нижегородский коммерческий институт'), (25463, 'https://ror.org/00gxhrz08', 'en', 1, 'https://ror.org/00gxhrz08 Gulf of Alaska Coastal Communities Coalition'), (25464, 'https://ror.org/00gxmhc57', 'en', 1, 'https://ror.org/00gxmhc57 Kent State University at Stark'), (25465, 'https://ror.org/00gz03w45', 'pl', 1, 'https://ror.org/00gz03w45 West Pomeranian Business School in Szczecin Zachodniopomorska Szkoła Biznesu w Szczecinie'), (25466, 'https://ror.org/00gzbxs44', 'no_lang_code', 1, 'https://ror.org/00gzbxs44 Invos (Czechia)'), (25467, 'https://ror.org/00h15ta02', 'en', 1, 'https://ror.org/00h15ta02 AMA International University جامعة أما الدولية البحرين'), (25468, 'https://ror.org/00h4vp021', 'no_lang_code', 1, 'https://ror.org/00h4vp021 Hexagon (Czechia)'), (25469, 'https://ror.org/00h4y9r32', 'en', 1, 'https://ror.org/00h4y9r32 Dallas Public Library'), (25470, 'https://ror.org/00h6mz496', 'en', 1, 'https://ror.org/00h6mz496 High Museum of Art'), (25471, 'https://ror.org/00h8svb48', 'en', 1, 'https://ror.org/00h8svb48 Fruitlands Museum'), (25472, 'https://ror.org/00h9f3r10', 'en', 1, 'https://ror.org/00h9f3r10 Historic Macon Foundation'), (25473, 'https://ror.org/00hay9j83', 'en', 1, 'https://ror.org/00hay9j83 Sakhalin State University Сахалинский государственный университет'), (25474, 'https://ror.org/00hb0gy21', 'en', 1, 'https://ror.org/00hb0gy21 Kuzbass Institute of Economics and Law Кузбасский институт экономики и права'), (25475, 'https://ror.org/00hbg5c91', 'no_lang_code', 1, 'https://ror.org/00hbg5c91 Business Innovation Centre (Czechia) Podnikatelské Inovační Centrum'), (25476, 'https://ror.org/00hcj4147', 'en', 1, 'https://ror.org/00hcj4147 Kidscommons Columbus Community Children''s Museum'), (25477, 'https://ror.org/00hcmxe97', 'en', 1, 'https://ror.org/00hcmxe97 Volgograd State Pedagogical University Волгоградский государственный социально-педагогический университет'), (25478, 'https://ror.org/00hdt0550', 'en', 1, 'https://ror.org/00hdt0550 Kagawa Prefectural College of Health Sciences 香川県立保健医療大学'), (25479, 'https://ror.org/00he2gv62', 'en', 1, 'https://ror.org/00he2gv62 Africa Center'), (25480, 'https://ror.org/00hj5kv86', 'no_lang_code', 1, 'https://ror.org/00hj5kv86 CKD Blansko Engineering (Czechia)'), (25481, 'https://ror.org/00hmh4f17', 'en', 1, 'https://ror.org/00hmh4f17 Volgograd State Academy of Physical Culture Волгоградская государственная академия физической культуры'), (25482, 'https://ror.org/00hn38v76', 'hu', 1, 'https://ror.org/00hn38v76 John Wesley Theological College Wesley János Lelkészképző Főiskola'), (25483, 'https://ror.org/00hnkz789', 'en', 1, 'https://ror.org/00hnkz789 Bohol Island State University'), (25484, 'https://ror.org/00hnq3t35', 'id', 1, 'https://ror.org/00hnq3t35 Universitas Satyagama'), (25485, 'https://ror.org/00hny2n79', 'en', 1, 'https://ror.org/00hny2n79 Pamantasan ng Asya at Pasipiko University of Asia and the Pacific'), (25486, 'https://ror.org/00hqpmg61', 'en', 1, 'https://ror.org/00hqpmg61 Indus University انڊس يونيورسٽي'), (25487, 'https://ror.org/00hvbx079', 'en', 1, 'https://ror.org/00hvbx079 School of International Relations دانشکده روابط بینالملل وزارت امور خارجه'), (25488, 'https://ror.org/00hvwkt50', 'en', 1, 'https://ror.org/00hvwkt50 Leibniz Institute for the German Language Leibniz-Institut für Deutsche Sprache'), (25489, 'https://ror.org/00hzk4n75', 'en', 1, 'https://ror.org/00hzk4n75 WTVS Detroit Public Television'), (25490, 'https://ror.org/00j0x9b96', 'en', 1, 'https://ror.org/00j0x9b96 Ulyanovsk State Pedagogical University Named After I. Ulyanov Ульяновский государственный педагогический университет имени И. Н. Ульянова'), (25491, 'https://ror.org/00j11hr96', 'en', 1, 'https://ror.org/00j11hr96 National Symphony Orchestra'), (25492, 'https://ror.org/00j2vzg50', 'en', 1, 'https://ror.org/00j2vzg50 McArthur Public Library'), (25493, 'https://ror.org/00j78xh95', 'no_lang_code', 1, 'https://ror.org/00j78xh95 Dongyang Mirae University 동양미래대학교'), (25494, 'https://ror.org/00j8vky29', 'no_lang_code', 1, 'https://ror.org/00j8vky29 Euroalarm (Czechia)'), (25495, 'https://ror.org/00jcrsy58', 'en', 1, 'https://ror.org/00jcrsy58 Sugino Fashion College 杉野服飾大学'), (25496, 'https://ror.org/00jenrw75', 'en', 1, 'https://ror.org/00jenrw75 American Jewish Archives'), (25497, 'https://ror.org/00jfh4f20', 'en', 1, 'https://ror.org/00jfh4f20 Northwest Indian Fisheries Commission'), (25498, 'https://ror.org/00jgwn197', 'en', 1, 'https://ror.org/00jgwn197 Sher-e-Kashmir University of Agricultural Sciences and Technology of Kashmir शेर-ए-कश्मीर कृषि विज्ञान एवं प्रौद्योगिकी विश्वविद्यालय'), (25499, 'https://ror.org/00jkdhd30', 'en', 1, 'https://ror.org/00jkdhd30 Saint Mary''s University'), (25500, 'https://ror.org/00jkprj19', 'en', 1, 'https://ror.org/00jkprj19 John Paul the Great Catholic University'), (25501, 'https://ror.org/00jn77c36', 'en', 1, 'https://ror.org/00jn77c36 Voronezh State Academy of Arts Воронежская государственная академия искусств'), (25502, 'https://ror.org/00jnbe692', 'en', 1, 'https://ror.org/00jnbe692 University of Business and Administration in Gdynia Wyższa Szkoła Administracji i Biznesu im. Eugeniusza Kwiatkowskiego w Gdyni'), (25503, 'https://ror.org/00jpcea69', 'en', 1, 'https://ror.org/00jpcea69 Hawaii Nature Center'), (25504, 'https://ror.org/00jpcnb73', 'en', 1, 'https://ror.org/00jpcnb73 Russian Institute of Theatre Arts Российский институт театрального искусства'), (25505, 'https://ror.org/00jpxtg25', 'en', 1, 'https://ror.org/00jpxtg25 Baekseok Culture University 백석문화대학교'), (25506, 'https://ror.org/00jrqwc52', 'en', 1, 'https://ror.org/00jrqwc52 Shuya State Pedagogical University Шуйский Государственный Педагогический Университет'), (25507, 'https://ror.org/00jwjhn70', 'no_lang_code', 1, 'https://ror.org/00jwjhn70 Satturn Holešov (Czechia)'), (25508, 'https://ror.org/00jxh3a14', 'en', 1, 'https://ror.org/00jxh3a14 Chicago Humanities Festival'), (25509, 'https://ror.org/00jy45w85', 'en', 1, 'https://ror.org/00jy45w85 Northland Community and Technical College'), (25510, 'https://ror.org/00jycx546', 'en', 1, 'https://ror.org/00jycx546 John Jermain Memorial Library'), (25511, 'https://ror.org/00jyqx898', 'en', 1, 'https://ror.org/00jyqx898 University of Maryland Baltimore Washington Medical Center'), (25512, 'https://ror.org/00jzdyg03', 'en', 1, 'https://ror.org/00jzdyg03 Buryat State Academy of Agriculture Бурятский Государственный Университет'), (25513, 'https://ror.org/00k0bzz46', 'en', 1, 'https://ror.org/00k0bzz46 Far-Eastern Academy of Public Service Дальневосточная академия государственной службы'), (25514, 'https://ror.org/00k27aj44', 'en', 1, 'https://ror.org/00k27aj44 University of the Philippines Open University'), (25515, 'https://ror.org/00k5dse37', 'no_lang_code', 1, 'https://ror.org/00k5dse37 Lučební Závody Draslovka (Czechia)'), (25516, 'https://ror.org/00k5tp492', 'en', 1, 'https://ror.org/00k5tp492 Bac Ha International University Trường Đại học Quốc tế Bắc Hà'), (25517, 'https://ror.org/00k5yxn79', 'no_lang_code', 1, 'https://ror.org/00k5yxn79 Applus+ IDIADA (Czechia)'), (25518, 'https://ror.org/00k6ffj36', 'en', 1, 'https://ror.org/00k6ffj36 Caucasus Academic Centre'), (25519, 'https://ror.org/00k729t32', 'id', 1, 'https://ror.org/00k729t32 Institut Teknologi Minaesa'), (25520, 'https://ror.org/00k82dv87', 'en', 1, 'https://ror.org/00k82dv87 Society for Classical Studies'), (25521, 'https://ror.org/00k9d9279', 'en', 1, 'https://ror.org/00k9d9279 Bass Museum'), (25522, 'https://ror.org/00k9qqk71', 'en', 1, 'https://ror.org/00k9qqk71 Washington Performing Arts'), (25523, 'https://ror.org/00kd3pe49', 'en', 1, 'https://ror.org/00kd3pe49 Association for Documentary Editing'), (25524, 'https://ror.org/00ke8ye77', 'en', 1, 'https://ror.org/00ke8ye77 Aletheia University 真理大學'), (25525, 'https://ror.org/00kgrdz47', 'en', 1, 'https://ror.org/00kgrdz47 Digital Hollywood University デジタルハリウッド大学'), (25526, 'https://ror.org/00kj4zk54', 'en', 1, 'https://ror.org/00kj4zk54 Tabriz Islamic Arts University دانشگاه هنر اسلامی تبریز'), (25527, 'https://ror.org/00kjhnt51', 'id', 1, 'https://ror.org/00kjhnt51 Universitas Bhayangkara Jakarta Raya'), (25528, 'https://ror.org/00kjtwf88', 'no_lang_code', 1, 'https://ror.org/00kjtwf88 Medtec VOP (Czechia)'), (25529, 'https://ror.org/00kkavr87', 'en', 1, 'https://ror.org/00kkavr87 Heisei College of Music 平成音楽大学'), (25530, 'https://ror.org/00kp9ef37', 'en', 1, 'https://ror.org/00kp9ef37 Shahid Sattari University of Aeronautical Engineering دانشگاه علوم و فنون هوایی شهید ستاری'), (25531, 'https://ror.org/00kr4pg87', 'en', 1, 'https://ror.org/00kr4pg87 Durham Museum'), (25532, 'https://ror.org/00krt8g98', 'id', 1, 'https://ror.org/00krt8g98 Institut Kesenian Makassar'), (25533, 'https://ror.org/00ksn4909', 'en', 1, 'https://ror.org/00ksn4909 Ulyanovsk State Technical University Ульяновский государственный технический университет'), (25534, 'https://ror.org/00kswsq18', 'no_lang_code', 1, 'https://ror.org/00kswsq18 Sand Team (Czechia)'), (25535, 'https://ror.org/00kvgk775', 'en', 1, 'https://ror.org/00kvgk775 Rise Adventures'), (25536, 'https://ror.org/00kvxyg87', 'no_lang_code', 1, 'https://ror.org/00kvxyg87 Tesla Blatna (Czechia)'), (25537, 'https://ror.org/00kxb1h72', 'en', 1, 'https://ror.org/00kxb1h72 China Foreign Affairs University 外交学院'), (25538, 'https://ror.org/00kza6883', 'en', 1, 'https://ror.org/00kza6883 National Italian American Foundation'), (25539, 'https://ror.org/00kzy6m08', 'no_lang_code', 1, 'https://ror.org/00kzy6m08 Poličské Strojírny (Czechia)'), (25540, 'https://ror.org/00m1jj386', 'en', 1, 'https://ror.org/00m1jj386 Rybinsk State Aviation Technological Academy'), (25541, 'https://ror.org/00m2sk374', 'en', 1, 'https://ror.org/00m2sk374 Asia Pacific International University, Asia-Pacific International University มหาวิทยาลัยนานาชาติเอเชีย-แปซิฟิก'), (25542, 'https://ror.org/00m2v3519', 'no_lang_code', 1, 'https://ror.org/00m2v3519 Zasagt Khan institute'), (25543, 'https://ror.org/00m4aws33', 'en', 1, 'https://ror.org/00m4aws33 Seoul Theological University 서울신학대학교'), (25544, 'https://ror.org/00m5dhe11', 'en', 1, 'https://ror.org/00m5dhe11 Arunai Engineering College அருணை பொறியியல் கல்லூரி'), (25545, 'https://ror.org/00m6vcy72', 'no_lang_code', 1, 'https://ror.org/00m6vcy72 Edip (Czechia)'), (25546, 'https://ror.org/00m77t269', 'id', 1, 'https://ror.org/00m77t269 Institut Ilmu Kesehatan Bhakti Wiyata'), (25547, 'https://ror.org/00m9qmh56', 'en', 1, 'https://ror.org/00m9qmh56 Moffatt-Ladd House and Garden'), (25548, 'https://ror.org/00mc18523', 'en', 1, 'https://ror.org/00mc18523 British University in Dubai'), (25549, 'https://ror.org/00mc6bw20', 'en', 1, 'https://ror.org/00mc6bw20 Dr. C. V. Raman University डॉ. सी.वी. रमन विश्वविद्यालय'), (25550, 'https://ror.org/00mct1g07', 'en', 1, 'https://ror.org/00mct1g07 Museum of the City of New York'), (25551, 'https://ror.org/00mcwq335', 'en', 1, 'https://ror.org/00mcwq335 Indira Gandhi Agricultural University इंदिरा गांधी कृषि विश्वविद्यालय'), (25552, 'https://ror.org/00megt644', 'en', 1, 'https://ror.org/00megt644 Namangan Engineering Pedagogical Institute Namangan muhandislik-pedagogika instituti'), (25553, 'https://ror.org/00mhsjf71', 'en', 1, 'https://ror.org/00mhsjf71 Lake Simcoe Region Conservation Authority'), (25554, 'https://ror.org/00mhtk149', 'en', 1, 'https://ror.org/00mhtk149 National History Day'), (25555, 'https://ror.org/00mjyx438', 'en', 1, 'https://ror.org/00mjyx438 Mount Vernon Hotel Museum & Garden'), (25556, 'https://ror.org/00mm4ys28', 'en', 1, 'https://ror.org/00mm4ys28 Bitlis Eren University Bitlis Eren Üniversitesi'), (25557, 'https://ror.org/00mmgjm27', 'en', 1, 'https://ror.org/00mmgjm27 Museum of Boulder'), (25558, 'https://ror.org/00mns7418', 'no_lang_code', 1, 'https://ror.org/00mns7418 Hiroshima Kokusai Gakuin University 広島国際学院大学'), (25559, 'https://ror.org/00mpnf546', 'en', 1, 'https://ror.org/00mpnf546 Unibersidad ng Mindanaw University of Mindanao'), (25560, 'https://ror.org/00mqpp445', 'id', 1, 'https://ror.org/00mqpp445 Universitas Samawa'), (25561, 'https://ror.org/00msaq364', 'en', 1, 'https://ror.org/00msaq364 Sault Ste. Marie Area Public Schools'), (25562, 'https://ror.org/00mwkta11', 'en', 1, 'https://ror.org/00mwkta11 Coonamessett Farm Foundation'), (25563, 'https://ror.org/00mxaqt17', 'en', 1, 'https://ror.org/00mxaqt17 Cleveland Community College'), (25564, 'https://ror.org/00my96x13', 'no_lang_code', 1, 'https://ror.org/00my96x13 Farmet (Czechia)'), (25565, 'https://ror.org/00myp7129', 'en', 1, 'https://ror.org/00myp7129 Youngsan University of Son Studies 영산선학대학교'), (25566, 'https://ror.org/00mzm0g64', 'en', 1, 'https://ror.org/00mzm0g64 Berkshire Museum'), (25567, 'https://ror.org/00n1ygd32', 'en', 1, 'https://ror.org/00n1ygd32 Belarusian State Agrarian Technical University Беларускі дзяржаўны аграрны тэхнічны ўніверсітэт'), (25568, 'https://ror.org/00n34gb90', 'en', 1, 'https://ror.org/00n34gb90 St. Mary''s Seminary and University'), (25569, 'https://ror.org/00n357243', 'en', 1, 'https://ror.org/00n357243 New York Folklore Society'), (25570, 'https://ror.org/00n3kap46', 'en', 1, 'https://ror.org/00n3kap46 KCRW Foundation'), (25571, 'https://ror.org/00n5y3d41', 'en', 1, 'https://ror.org/00n5y3d41 Boston Public Library'); INSERT INTO `rors` VALUES (25572, 'https://ror.org/00n6web48', 'en', 1, 'https://ror.org/00n6web48 Georgian State University of Subtropical Agriculture Грузинский государственный университет субтропического хозяйства'), (25573, 'https://ror.org/00n8j9g10', 'en', 1, 'https://ror.org/00n8j9g10 Corban University'), (25574, 'https://ror.org/00n9dj543', 'en', 1, 'https://ror.org/00n9dj543 Museo de Bellas Artes de Houston Museum of Fine Arts, Houston Musée des beaux-arts de houston'), (25575, 'https://ror.org/00na8b236', 'en', 1, 'https://ror.org/00na8b236 De La Salle Araneta University Pamantasang De La Salle Araneta'), (25576, 'https://ror.org/00nagev26', 'en', 1, 'https://ror.org/00nagev26 Vinnytsia National Technical University Winnicki Narodowy Uniwersytet Techniczny Вінницький національний технічний університет'), (25577, 'https://ror.org/00nbyv331', 'en', 1, 'https://ror.org/00nbyv331 Central Academy of Fine Arts 中央美术学院'), (25578, 'https://ror.org/00ndyyr79', 'en', 1, 'https://ror.org/00ndyyr79 Walker Art Center'), (25579, 'https://ror.org/00nf68x61', 'en', 1, 'https://ror.org/00nf68x61 Belgorod State Agricultural University Белгородский государственный аграрный университет'), (25580, 'https://ror.org/00nk7p507', 'en', 1, 'https://ror.org/00nk7p507 Riau University Universitas Riau'), (25581, 'https://ror.org/00nk9hm21', 'en', 1, 'https://ror.org/00nk9hm21 Ingush State University Ингушский Государственный Университет'), (25582, 'https://ror.org/00nm35319', 'en', 1, 'https://ror.org/00nm35319 St. Johnsbury Athenaeum'), (25583, 'https://ror.org/00nncg672', 'en', 1, 'https://ror.org/00nncg672 Moscow Financial Legal Institution Московский финансово-правовой институт'), (25584, 'https://ror.org/00nnwpb90', 'no_lang_code', 1, 'https://ror.org/00nnwpb90 Novosibirsk Humanitarian Institute Новосибирский гуманитарный институт'), (25585, 'https://ror.org/00nphdr35', 'en', 1, 'https://ror.org/00nphdr35 Rayalaseema University రాయలసీమ విశ్వవిద్యాలయం'), (25586, 'https://ror.org/00nqcp204', 'no_lang_code', 1, 'https://ror.org/00nqcp204 Niigata Seiryo University 新潟青陵大学'), (25587, 'https://ror.org/00nsa3x45', 'en', 1, 'https://ror.org/00nsa3x45 Museum of Fine Arts, Boston'), (25588, 'https://ror.org/00nsejf36', 'no_lang_code', 1, 'https://ror.org/00nsejf36 Museum of Casa Grande'), (25589, 'https://ror.org/00nszah81', 'en', 1, 'https://ror.org/00nszah81 Krasnoyarsk State Pedagogical University Красноярский государственный педагогический университет'), (25590, 'https://ror.org/00nthvx56', 'en', 1, 'https://ror.org/00nthvx56 Kansai University of International Studies 関西国際大学'), (25591, 'https://ror.org/00ntmy339', 'en', 1, 'https://ror.org/00ntmy339 New Bedford Whaling Museum'), (25592, 'https://ror.org/00nv3pd93', 'en', 1, 'https://ror.org/00nv3pd93 Kanazawa College of Art 金沢美術工芸大学'), (25593, 'https://ror.org/00nv6q035', 'en', 1, 'https://ror.org/00nv6q035 Khyber Medical University جامعہ طبی خیبر'), (25594, 'https://ror.org/00nvmb859', 'en', 1, 'https://ror.org/00nvmb859 International Research & Exchanges Board'), (25595, 'https://ror.org/00nvwb533', 'fr', 1, 'https://ror.org/00nvwb533 Université Internationale de Casablanca'), (25596, 'https://ror.org/00nzbtt45', 'en', 1, 'https://ror.org/00nzbtt45 Cazenovia College'), (25597, 'https://ror.org/00p04vc15', 'en', 1, 'https://ror.org/00p04vc15 U15 Group of Canadian Research Universities'), (25598, 'https://ror.org/00p08ff25', 'no_lang_code', 1, 'https://ror.org/00p08ff25 Portál (Czechia)'), (25599, 'https://ror.org/00p092380', 'en', 1, 'https://ror.org/00p092380 Wyoming State Archives'), (25600, 'https://ror.org/00p29dt33', 'no_lang_code', 1, 'https://ror.org/00p29dt33 SIGMA Výzkumný a Vývojový Ústav (Czechia)'), (25601, 'https://ror.org/00p61n467', 'en', 1, 'https://ror.org/00p61n467 Cambridge Public School'), (25602, 'https://ror.org/00p70j486', 'no_lang_code', 1, 'https://ror.org/00p70j486 Romotop (Czechia)'), (25603, 'https://ror.org/00p8em311', 'en', 1, 'https://ror.org/00p8em311 Gyeongju University 경주대학교'), (25604, 'https://ror.org/00pajwz74', 'en', 1, 'https://ror.org/00pajwz74 Lodz International Studies Academy Wyższa Szkoła Studiów Międzynarodowych w Łodzi'), (25605, 'https://ror.org/00pbj0581', 'en', 1, 'https://ror.org/00pbj0581 Institute of Management and Business Институт менеджмента и бизнеса'), (25606, 'https://ror.org/00pbv8y11', 'en', 1, 'https://ror.org/00pbv8y11 Otaru University of Commerce 小樽商科大学'), (25607, 'https://ror.org/00pcrgz71', 'en', 1, 'https://ror.org/00pcrgz71 Historians of Netherlandish Art'), (25608, 'https://ror.org/00pcyc255', 'en', 1, 'https://ror.org/00pcyc255 Saint-Petersburg State University of Telecommunications Санкт-Петербургский государственный университет телекоммуникаций имени проф. М. А. Бонч-Бруевича'), (25609, 'https://ror.org/00pdwbh96', 'en', 1, 'https://ror.org/00pdwbh96 University of St. La Salle'), (25610, 'https://ror.org/00peyn760', 'no_lang_code', 1, 'https://ror.org/00peyn760 Vongchavalitkul University มหาวิทยาลัยวงษ์ชวลิตกุล'), (25611, 'https://ror.org/00pj6qg65', 'en', 1, 'https://ror.org/00pj6qg65 Franklin County Historical and Museum Society'), (25612, 'https://ror.org/00pkb2403', 'en', 1, 'https://ror.org/00pkb2403 Historical Society of Rockland County'), (25613, 'https://ror.org/00pnmpx53', 'en', 1, 'https://ror.org/00pnmpx53 Trường Đại học Mỹ thuật Việt Nam Vietnam University of Fine Arts École des beaux-arts du viêt nam'), (25614, 'https://ror.org/00pqc4v87', 'id', 1, 'https://ror.org/00pqc4v87 Universitas Widya Dharma Klaten'), (25615, 'https://ror.org/00pqvmk25', 'en', 1, 'https://ror.org/00pqvmk25 Lalit Narayan Mithila University ललित नारायण मिथिला विश्वविद्यालय'), (25616, 'https://ror.org/00ps2tb42', 'en', 1, 'https://ror.org/00ps2tb42 Confederation of Industry of the Czech Republic'), (25617, 'https://ror.org/00pt5by23', 'en', 1, 'https://ror.org/00pt5by23 Xi''an Physical Education University 西安体育学院'), (25618, 'https://ror.org/00pvwxq76', 'no_lang_code', 1, 'https://ror.org/00pvwxq76 Damodaram Sanjivayya National Law University దామోదరం సంజీవయ్య జాతీయ లా విశ్వవిద్యాలయం'), (25619, 'https://ror.org/00pxasb28', 'en', 1, 'https://ror.org/00pxasb28 Bunka Fashion Graduate University 文化ファッション大学院大学'), (25620, 'https://ror.org/00pz8ca62', 'en', 1, 'https://ror.org/00pz8ca62 University of Donja Gorica Univerzitet Donja Gorica Универзитет Доња Горица'), (25621, 'https://ror.org/00pzf4g66', 'en', 1, 'https://ror.org/00pzf4g66 Academia Navală Mircea cel Bătrân Mircea cel Batran Naval Academy'), (25622, 'https://ror.org/00q15p987', 'en', 1, 'https://ror.org/00q15p987 Dadabhoy Institute of Higher Education داداڀوئي انسٽيٽيوٽ آف هائير ايجوڪيشن'), (25623, 'https://ror.org/00q6g3329', 'en', 1, 'https://ror.org/00q6g3329 Virginia Aquarium & Marine Science Center'), (25624, 'https://ror.org/00q6pka22', 'en', 1, 'https://ror.org/00q6pka22 Gujarat National Law University'), (25625, 'https://ror.org/00q709v87', 'en', 1, 'https://ror.org/00q709v87 Kellogg Community College'), (25626, 'https://ror.org/00q798164', 'en', 1, 'https://ror.org/00q798164 Voronezh Institute of Economics and Social Management Воронежский институт экономики и социального управления'), (25627, 'https://ror.org/00q96wx12', 'en', 1, 'https://ror.org/00q96wx12 Vitebsk State Technological University Витебский государственный технологический университет Віцебскі дзяржаўны тэхналагічны ўніверсітэт'), (25628, 'https://ror.org/00qa31321', 'en', 1, 'https://ror.org/00qa31321 The Ohio State University at Lima'), (25629, 'https://ror.org/00qa5cz12', 'id', 1, 'https://ror.org/00qa5cz12 Institut Seni Indonesia Padangpanjang'), (25630, 'https://ror.org/00qacgj85', 'en', 1, 'https://ror.org/00qacgj85 Chappaqua Central School District'), (25631, 'https://ror.org/00qaje814', 'en', 1, 'https://ror.org/00qaje814 Rīgas Ekonomikas augstskola Stockholm School of Economics in Riga Stokholmo ekonomikos aukštoji mokykla Rygoje'), (25632, 'https://ror.org/00qb4ds53', 'en', 1, 'https://ror.org/00qb4ds53 Getty Research Institute'), (25633, 'https://ror.org/00qcawn35', 'en', 1, 'https://ror.org/00qcawn35 Chicago Metro History Education Center'), (25634, 'https://ror.org/00qcnss81', 'en', 1, 'https://ror.org/00qcnss81 Mongolian National University Монгол Үндэсний Их Сургууль'), (25635, 'https://ror.org/00qf4ya40', 'en', 1, 'https://ror.org/00qf4ya40 EarthCorps'), (25636, 'https://ror.org/00qgfa553', 'en', 1, 'https://ror.org/00qgfa553 California Historical Society'), (25637, 'https://ror.org/00qgg7097', 'id', 1, 'https://ror.org/00qgg7097 Universitas Majalengka'), (25638, 'https://ror.org/00qjgk605', 'en', 1, 'https://ror.org/00qjgk605 Mercu Buana University Universitas Mercu Buana'), (25639, 'https://ror.org/00qjr8462', 'en', 1, 'https://ror.org/00qjr8462 Association for Public Art'), (25640, 'https://ror.org/00qkjg138', 'en', 1, 'https://ror.org/00qkjg138 Center for Independent Documentary'), (25641, 'https://ror.org/00qmy9z88', 'en', 1, 'https://ror.org/00qmy9z88 Higher Colleges of Technology كليّات التقنيّة العليا'), (25642, 'https://ror.org/00qp7zm97', 'en', 1, 'https://ror.org/00qp7zm97 Ypsilanti District Library'), (25643, 'https://ror.org/00qpbmv96', 'en', 1, 'https://ror.org/00qpbmv96 Päpstliche Universität der Salesianer Salesian Pontifical University Università Pontificia Salesiana Université pontificale salésienne'), (25644, 'https://ror.org/00qqptx17', 'en', 1, 'https://ror.org/00qqptx17 St. Petersburg Institute of Jewish Studies Петербургский Институт Иудаики'), (25645, 'https://ror.org/00qqt8p51', 'en', 1, 'https://ror.org/00qqt8p51 Rolling Hills Library'), (25646, 'https://ror.org/00qt2x502', 'ro', 1, 'https://ror.org/00qt2x502 Universitatea Danubius Galati'), (25647, 'https://ror.org/00qte7767', 'no_lang_code', 1, 'https://ror.org/00qte7767 Camea (Czechia)'), (25648, 'https://ror.org/00qyadr13', 'en', 1, 'https://ror.org/00qyadr13 Hanyang Women''s University 한양여자대학교'), (25649, 'https://ror.org/00r0xhf81', 'en', 1, 'https://ror.org/00r0xhf81 Petroleum University of Technology دانشگاه صنعت نفت'), (25650, 'https://ror.org/00r4zhc79', 'no_lang_code', 1, 'https://ror.org/00r4zhc79 Pskov Volny Institute Псковский Вольный институт'), (25651, 'https://ror.org/00r664k32', 'en', 1, 'https://ror.org/00r664k32 University Hospital'), (25652, 'https://ror.org/00r6f6s13', 'en', 1, 'https://ror.org/00r6f6s13 Bostonian Society'), (25653, 'https://ror.org/00r6nzx24', 'en', 1, 'https://ror.org/00r6nzx24 Ibaraki Christian University 茨城キリスト教大学'), (25654, 'https://ror.org/00r8qyj34', 'en', 1, 'https://ror.org/00r8qyj34 Sendai University 仙台大学'), (25655, 'https://ror.org/00r8vrd74', 'en', 1, 'https://ror.org/00r8vrd74 Poplar Forest'), (25656, 'https://ror.org/00r9wsd64', 'en', 1, 'https://ror.org/00r9wsd64 Florida State College at Jacksonville'), (25657, 'https://ror.org/00r9zdb57', 'en', 1, 'https://ror.org/00r9zdb57 Pueblo of Pojoaque'), (25658, 'https://ror.org/00rb8n537', 'en', 1, 'https://ror.org/00rb8n537 University of Structural Engineering and Architecture Lyuben Karavelov Висше строително училище "Любен Каравелов"'), (25659, 'https://ror.org/00rb9a558', 'en', 1, 'https://ror.org/00rb9a558 Technical museum in Brno Technické muzeum v Brně'), (25660, 'https://ror.org/00rcpgp95', 'en', 1, 'https://ror.org/00rcpgp95 Capitol University Medical Center'), (25661, 'https://ror.org/00rfn0469', 'en', 1, 'https://ror.org/00rfn0469 Tangshan College 唐山学院'), (25662, 'https://ror.org/00rfz2d73', 'en', 1, 'https://ror.org/00rfz2d73 Baltimore Museum of Industry'), (25663, 'https://ror.org/00rgtms46', 'en', 1, 'https://ror.org/00rgtms46 American Jewish Committee'), (25664, 'https://ror.org/00rhgqg04', 'en', 1, 'https://ror.org/00rhgqg04 Almaty Management University Международная академия бизнеса Халықаралық бизнес академиясы'), (25665, 'https://ror.org/00rjhzp80', 'en', 1, 'https://ror.org/00rjhzp80 Peter Yegen Jr. Yellowstone County Museum'), (25666, 'https://ror.org/00rm3g179', 'en', 1, 'https://ror.org/00rm3g179 Ifugao State University Pamantasang Estado ng Ifugao'), (25667, 'https://ror.org/00rmfj856', 'en', 1, 'https://ror.org/00rmfj856 Assam Don Bosco University অসম ডনব’স্ক’ বিশ্ববিদ্যালয়'), (25668, 'https://ror.org/00rn8t694', 'en', 1, 'https://ror.org/00rn8t694 Lushootseed Research'), (25669, 'https://ror.org/00rnbsz17', 'no_lang_code', 1, 'https://ror.org/00rnbsz17 ISATech (Czechia)'), (25670, 'https://ror.org/00rpbm450', 'en', 1, 'https://ror.org/00rpbm450 Bronx Museum of the Arts'), (25671, 'https://ror.org/00rq40n03', 'en', 1, 'https://ror.org/00rq40n03 Janusz Korczak Pedagogical University in Warsaw Wyższa Szkoła Pedagogiczna im. Janusza Korczaka w Warszawie'), (25672, 'https://ror.org/00rq5kg69', 'en', 1, 'https://ror.org/00rq5kg69 Azerbaijan International University'), (25673, 'https://ror.org/00rqx7a67', 'en', 1, 'https://ror.org/00rqx7a67 St. Louis County Historical Society'), (25674, 'https://ror.org/00rspdh33', 'en', 1, 'https://ror.org/00rspdh33 Asia Euro University សាកលវិទ្យាល័យ អាស៊ី អឺរ៉ុប'), (25675, 'https://ror.org/00rswnr18', 'en', 1, 'https://ror.org/00rswnr18 Newport Public Library'), (25676, 'https://ror.org/00rt3cy21', 'en', 1, 'https://ror.org/00rt3cy21 Visayas State University'), (25677, 'https://ror.org/00rwcdf75', 'en', 1, 'https://ror.org/00rwcdf75 Narodowy Uniwersytet Leśnictwa Ukrainy Ukrainian National Forestry University Национальный лесотехнический университет Украины Національний лісотехнічний університет України'), (25678, 'https://ror.org/00rz4p908', 'en', 1, 'https://ror.org/00rz4p908 American Sports University'), (25679, 'https://ror.org/00s18am05', 'en', 1, 'https://ror.org/00s18am05 Everglades University'), (25680, 'https://ror.org/00s1rmw18', 'en', 1, 'https://ror.org/00s1rmw18 Christian Theological Academy in Warsaw Warsaw Chrześcijańska Akademia Teologiczna w Warszawie'), (25681, 'https://ror.org/00s2dgg43', 'id', 1, 'https://ror.org/00s2dgg43 Universitas Iba'), (25682, 'https://ror.org/00s2rk252', 'en', 1, 'https://ror.org/00s2rk252 Shaheed Benazir Bhutto Women University شہید بے نظیر بھٹو ویمن یونیورسٹی'), (25683, 'https://ror.org/00s4gpc71', 'no_lang_code', 1, 'https://ror.org/00s4gpc71 HELP International Corporation (Malaysia)'), (25684, 'https://ror.org/00s4n9v76', 'no_lang_code', 1, 'https://ror.org/00s4n9v76 Sasol (United Kingdom)'), (25685, 'https://ror.org/00s71kj23', 'en', 1, 'https://ror.org/00s71kj23 Oregon Department of Land Conservation and Development'), (25686, 'https://ror.org/00s817895', 'en', 1, 'https://ror.org/00s817895 French-American Foundation'), (25687, 'https://ror.org/00s8h5d08', 'en', 1, 'https://ror.org/00s8h5d08 Hodges University'), (25688, 'https://ror.org/00s8r8p14', 'en', 1, 'https://ror.org/00s8r8p14 Faculty of Media Fakulteta za medije'), (25689, 'https://ror.org/00s8wpn62', 'en', 1, 'https://ror.org/00s8wpn62 Consortium of Universities of the Washington Metropolitan Area'), (25690, 'https://ror.org/00sew4x53', 'en', 1, 'https://ror.org/00sew4x53 Odlar Yurdu Universiteti Odlar Yurdu University'), (25691, 'https://ror.org/00sftz254', 'en', 1, 'https://ror.org/00sftz254 Archaeological Conservancy'), (25692, 'https://ror.org/00shnh382', 'en', 1, 'https://ror.org/00shnh382 Lugansk National Agrarian University Луганський національний аграрний університет'), (25693, 'https://ror.org/00skfd876', 'en', 1, 'https://ror.org/00skfd876 International Higher School of Practical Psychology Starptautiskā Praktiskās Psiholoģijas Augstskola'), (25694, 'https://ror.org/00smk4k22', 'cs', 1, 'https://ror.org/00smk4k22 Observatory and planetarium České Budějovice and Klet'' Observatory'), (25695, 'https://ror.org/00ssp9h11', 'en', 1, 'https://ror.org/00ssp9h11 Arba Minch University የአርባ ምንጭ ዩኒቨርሲቲ'), (25696, 'https://ror.org/00stqsy74', 'en', 1, 'https://ror.org/00stqsy74 Samara State Agrarian University Самарская государственная сельскохозяйственная академия'), (25697, 'https://ror.org/00strmv13', 'en', 1, 'https://ror.org/00strmv13 Queens University কুইন্স বিশ্ববিদ্যালয়'), (25698, 'https://ror.org/00swfpj56', 'no_lang_code', 1, 'https://ror.org/00swfpj56 Alu Like'), (25699, 'https://ror.org/00sx18m30', 'en', 1, 'https://ror.org/00sx18m30 Charles River Museum of Industry & Innovation'), (25700, 'https://ror.org/00sx9nz72', 'en', 1, 'https://ror.org/00sx9nz72 American Council for Southern Asian Art'), (25701, 'https://ror.org/00sxgks21', 'en', 1, 'https://ror.org/00sxgks21 New Jersey Historical Society'), (25702, 'https://ror.org/00sxnz850', 'en', 1, 'https://ror.org/00sxnz850 University of Development Alternative ইউনিভার্সিটি অব ডেভলপমেন্ট অল্টারনেটিভ'), (25703, 'https://ror.org/00sxtta05', 'en', 1, 'https://ror.org/00sxtta05 University of Ragusa Università di Ragusa'), (25704, 'https://ror.org/00syfh407', 'en', 1, 'https://ror.org/00syfh407 Strawbery Banke Museum'), (25705, 'https://ror.org/00syjsq54', 'en', 1, 'https://ror.org/00syjsq54 Bezalel Academy of Arts and Design בצלאל, אקדמיה לאמנות ועיצוב'), (25706, 'https://ror.org/00syyzh74', 'id', 1, 'https://ror.org/00syyzh74 Institut Bisnis Nusantara'), (25707, 'https://ror.org/00sz2vy62', 'no_lang_code', 1, 'https://ror.org/00sz2vy62 Foton (Czechia)'), (25708, 'https://ror.org/00t12nc24', 'no_lang_code', 1, 'https://ror.org/00t12nc24 Pfeiffer Vacuum (France)'), (25709, 'https://ror.org/00t30sg60', 'en', 1, 'https://ror.org/00t30sg60 Baltic International Institute of Tourism Балтийский международный институт туризма'), (25710, 'https://ror.org/00t4hq413', 'en', 1, 'https://ror.org/00t4hq413 Barrington Public Library'), (25711, 'https://ror.org/00t5e6645', 'no_lang_code', 1, 'https://ror.org/00t5e6645 Debiopharm Group (Canada)'), (25712, 'https://ror.org/00t7tpg38', 'no_lang_code', 1, 'https://ror.org/00t7tpg38 Zetor (Czechia)'), (25713, 'https://ror.org/00takby20', 'hu', 1, 'https://ror.org/00takby20 Gál Ferenc Főiskola'), (25714, 'https://ror.org/00tas1680', 'en', 1, 'https://ror.org/00tas1680 North Sumatra Islamic University Universitas Islam Sumatera Utara'), (25715, 'https://ror.org/00td5v713', 'en', 1, 'https://ror.org/00td5v713 National Institute of Public Administration المعهد الوطني للإدارة العامة'), (25716, 'https://ror.org/00tean533', 'en', 1, 'https://ror.org/00tean533 Ho Chi Minh City Open University Trường Đại học Mở Thành phố Hồ Chí Minh'), (25717, 'https://ror.org/00tf0yk25', 'en', 1, 'https://ror.org/00tf0yk25 Adyghe State University Адыгейский Государственный Университет'), (25718, 'https://ror.org/00tfv9y59', 'en', 1, 'https://ror.org/00tfv9y59 Ukrainian Academy of Banking of the National Bank of Ukraine країнська академія банківської справи НБУ'), (25719, 'https://ror.org/00thekh91', 'en', 1, 'https://ror.org/00thekh91 Nagoya University of Commerce and Business 名古屋商科大学'), (25720, 'https://ror.org/00tm62b95', 'no_lang_code', 1, 'https://ror.org/00tm62b95 Samara Medical Institute Reaviz Самарский медицинский институт Reavis'), (25721, 'https://ror.org/00tngcb91', 'en', 1, 'https://ror.org/00tngcb91 Oregon State University Cascades'), (25722, 'https://ror.org/00tnt9w66', 'en', 1, 'https://ror.org/00tnt9w66 Montpelier Foundation'), (25723, 'https://ror.org/00tspj053', 'en', 1, 'https://ror.org/00tspj053 Prydniprovs’ka State Academy of Civil Engineering and Architecture Придніпровська державна академія будівництва та архітектури'), (25724, 'https://ror.org/00txwbc30', 'en', 1, 'https://ror.org/00txwbc30 Chanakya National Law University चाणक्य राष्ट्रीय विधि विश्वविद्यालय'), (25725, 'https://ror.org/00tzc5v60', 'en', 1, 'https://ror.org/00tzc5v60 Maikop State Technological University Майкопский государственный технологический университет'), (25726, 'https://ror.org/00tzrs836', 'no_lang_code', 1, 'https://ror.org/00tzrs836 Stahl-Zentrum (Germany)'), (25727, 'https://ror.org/00v1asp42', 'no_lang_code', 1, 'https://ror.org/00v1asp42 Eldis Pardubice (Czechia)'), (25728, 'https://ror.org/00v23bh67', 'en', 1, 'https://ror.org/00v23bh67 University of Fairfax'), (25729, 'https://ror.org/00v2ecp17', 'en', 1, 'https://ror.org/00v2ecp17 St. Louis County Department of Parks and Recreation'), (25730, 'https://ror.org/00v3ejk86', 'en', 1, 'https://ror.org/00v3ejk86 National Institute of Business វិទ្យាស្ថានជាតិពាណិជ្ជសាស្រ្ដ'), (25731, 'https://ror.org/00v3y0a25', 'id', 1, 'https://ror.org/00v3y0a25 Universitas Ichsan Gorontalo'), (25732, 'https://ror.org/00v4vjb95', 'en', 1, 'https://ror.org/00v4vjb95 Technological University of the Philippines Teknolohikal na Unibersidad ng Pilipinas'), (25733, 'https://ror.org/00v6e9296', 'no_lang_code', 1, 'https://ror.org/00v6e9296 Dormer Pramet Tools (Czechia)'), (25734, 'https://ror.org/00v76vw28', 'en', 1, 'https://ror.org/00v76vw28 Tajik State University of Commerce Донишгоҳи давлатии тиҷорати Тоҷикистон Таджикский государственный университет коммерции'), (25735, 'https://ror.org/00v8gq385', 'en', 1, 'https://ror.org/00v8gq385 Marist School'), (25736, 'https://ror.org/00v8sj862', 'en', 1, 'https://ror.org/00v8sj862 Cure 4 The Kids Foundation'), (25737, 'https://ror.org/00v8szc63', 'pl', 1, 'https://ror.org/00v8szc63 Warszawska Szkoła Zarządzania - Szkoła Wyższa'), (25738, 'https://ror.org/00v8tm605', 'en', 1, 'https://ror.org/00v8tm605 United South End Settlements'), (25739, 'https://ror.org/00v9n6a67', 'en', 1, 'https://ror.org/00v9n6a67 Moscow University of Finance and Law Московский финансово-юридический университет'), (25740, 'https://ror.org/00va6jd32', 'en', 1, 'https://ror.org/00va6jd32 Academician Yuriy Bugay International Scientific and Technical University Міжнародний науково-технічний університет імені академіка Юрія Бугая'), (25741, 'https://ror.org/00vab0213', 'en', 1, 'https://ror.org/00vab0213 University of Tripoli Lebanon جامعة طرابلس لبنان'), (25742, 'https://ror.org/00vadgf54', 'no_lang_code', 1, 'https://ror.org/00vadgf54 Kaziranga University'), (25743, 'https://ror.org/00vb9c215', 'en', 1, 'https://ror.org/00vb9c215 Universitas Bunda Mulia University of Bunda Mulia'), (25744, 'https://ror.org/00vbzs544', 'en', 1, 'https://ror.org/00vbzs544 Trường Đại học Văn Hiến Văn Hiến University'), (25745, 'https://ror.org/00vc1fz20', 'en', 1, 'https://ror.org/00vc1fz20 Universitas Singaperbangsa Karawang University of Singaperbangsa Karawang'), (25746, 'https://ror.org/00vcqer65', 'id', 1, 'https://ror.org/00vcqer65 Universitas Mahendradatta'), (25747, 'https://ror.org/00vcrhv91', 'en', 1, 'https://ror.org/00vcrhv91 Potato Research Institute'), (25748, 'https://ror.org/00vd44543', 'en', 1, 'https://ror.org/00vd44543 American Jewish Historical Society'), (25749, 'https://ror.org/00vetxt84', 'en', 1, 'https://ror.org/00vetxt84 Maine State Museum'), (25750, 'https://ror.org/00vfdqg37', 'en', 1, 'https://ror.org/00vfdqg37 Modern University for the Humanities Современная гуманитарная академия'), (25751, 'https://ror.org/00vgj0470', 'en', 1, 'https://ror.org/00vgj0470 American World University'), (25752, 'https://ror.org/00vhkhz92', 'en', 1, 'https://ror.org/00vhkhz92 Fairbanks North Star Borough Library'), (25753, 'https://ror.org/00vk44673', 'en', 1, 'https://ror.org/00vk44673 Petro Mohyla Black Sea National University Черноморский государственный университет имени Петра Могилы Чорноморський національний університет імені Петра Могили'), (25754, 'https://ror.org/00vk7w211', 'en', 1, 'https://ror.org/00vk7w211 North Ossetian State University Северо-Осетинский государственный университет имени К. Л. Хетагурова'), (25755, 'https://ror.org/00vkd8x05', 'en', 1, 'https://ror.org/00vkd8x05 International Islamic University College Selangor Kolej Universiti Islam Antarabangsa Selangor'), (25756, 'https://ror.org/00vnfjq11', 'no_lang_code', 1, 'https://ror.org/00vnfjq11 CereProc (United Kingdom)'), (25757, 'https://ror.org/00vnpja80', 'en', 1, 'https://ror.org/00vnpja80 Modern University for Business and Science الجامعة الحديثة للإدارة والعلوم'), (25758, 'https://ror.org/00vp4y570', 'id', 1, 'https://ror.org/00vp4y570 Universitas 17 Agustus 1945 Jakarta'), (25759, 'https://ror.org/00vq1d511', 'en', 1, 'https://ror.org/00vq1d511 Shizuoka Institute of Science and Technology 静岡理工科大学'), (25760, 'https://ror.org/00vr9xx71', 'en', 1, 'https://ror.org/00vr9xx71 Central University of Tibetan Studies'), (25761, 'https://ror.org/00vsh5s78', 'en', 1, 'https://ror.org/00vsh5s78 Arts and Science Center for Southeast Arkansas'), (25762, 'https://ror.org/00vss0n50', 'en', 1, 'https://ror.org/00vss0n50 Reinhardt University'), (25763, 'https://ror.org/00vx77439', 'en', 1, 'https://ror.org/00vx77439 National Association for Equal Opportunity in Higher Education'), (25764, 'https://ror.org/00w19nh03', 'en', 1, 'https://ror.org/00w19nh03 Biblioteca Pública de Chicago Chicago Public Library'), (25765, 'https://ror.org/00w2phz39', 'no_lang_code', 1, 'https://ror.org/00w2phz39 Rigaku Innovative Technologies Europe (Czechia)'), (25766, 'https://ror.org/00w64gh11', 'en', 1, 'https://ror.org/00w64gh11 Oregon Department of Fish and Wildlife'), (25767, 'https://ror.org/00w8pm168', 'en', 1, 'https://ror.org/00w8pm168 Everson Museum of Art'), (25768, 'https://ror.org/00wbbfv86', 'fr', 1, 'https://ror.org/00wbbfv86 Université Catholique du Graben'), (25769, 'https://ror.org/00wd70b02', 'en', 1, 'https://ror.org/00wd70b02 Pennsylvania Department of Environmental Protection'), (25770, 'https://ror.org/00we17t20', 'en', 1, 'https://ror.org/00we17t20 Foundation University'), (25771, 'https://ror.org/00wez3666', 'en', 1, 'https://ror.org/00wez3666 Joslyn Art Museum'), (25772, 'https://ror.org/00wftzf58', 'no_lang_code', 1, 'https://ror.org/00wftzf58 Chepos (Czechia)'), (25773, 'https://ror.org/00whe2089', 'en', 1, 'https://ror.org/00whe2089 Donetsk National Technical University Doniecki Narodowy Uniwersytet Techniczny Донецкий национальный технический университет Донецький національний технічний університет'), (25774, 'https://ror.org/00whryr74', 'en', 1, 'https://ror.org/00whryr74 Knox County Public Library'), (25775, 'https://ror.org/00wnxn610', 'en', 1, 'https://ror.org/00wnxn610 ETV Endowment of South Carolina'), (25776, 'https://ror.org/00wptnt05', 'en', 1, 'https://ror.org/00wptnt05 Utsunomiya Kyowa University 宇都宮共和大学'), (25777, 'https://ror.org/00wswag56', 'en', 1, 'https://ror.org/00wswag56 Concord Museum'), (25778, 'https://ror.org/00wtb8g49', 'en', 1, 'https://ror.org/00wtb8g49 Shobi University 尚美学園大学'), (25779, 'https://ror.org/00wtwp073', 'en', 1, 'https://ror.org/00wtwp073 St. Matthew''s University'), (25780, 'https://ror.org/00ww0x553', 'no_lang_code', 1, 'https://ror.org/00ww0x553 Energie - Stavební a Báňská (Czechia)'), (25781, 'https://ror.org/00wwdre49', 'no_lang_code', 1, 'https://ror.org/00wwdre49 Trexima (Czechia)'), (25782, 'https://ror.org/00wx9pc76', 'en', 1, 'https://ror.org/00wx9pc76 Washakie Museum & Cultural Center'), (25783, 'https://ror.org/00wy14q17', 'en', 1, 'https://ror.org/00wy14q17 National Taiwan University of Arts 國立臺灣藝術大學'), (25784, 'https://ror.org/00wyq5s37', 'en', 1, 'https://ror.org/00wyq5s37 St. John''s University 聖約翰科技大學'), (25785, 'https://ror.org/00wzhrk33', 'en', 1, 'https://ror.org/00wzhrk33 Pratt Museum'), (25786, 'https://ror.org/00wzykr41', 'en', 1, 'https://ror.org/00wzykr41 New Hampshire State Library'), (25787, 'https://ror.org/00x3gtf37', 'en', 1, 'https://ror.org/00x3gtf37 Shizuoka Sangyo University 静岡産業大学'), (25788, 'https://ror.org/00x481437', 'en', 1, 'https://ror.org/00x481437 George Eastman House'), (25789, 'https://ror.org/00x4epv84', 'en', 1, 'https://ror.org/00x4epv84 Southern Luzon State University'), (25790, 'https://ror.org/00x4r3w91', 'no_lang_code', 1, 'https://ror.org/00x4r3w91 Vakar (Czechia)'), (25791, 'https://ror.org/00x5je630', 'en', 1, 'https://ror.org/00x5je630 Don State Technical University учреждение высшего образования Донской государственный технический университет'), (25792, 'https://ror.org/00x6sm138', 'en', 1, 'https://ror.org/00x6sm138 Neural Stem Cell Institute'), (25793, 'https://ror.org/00x705929', 'no_lang_code', 1, 'https://ror.org/00x705929 Vítkovické Slévárny (Czechia)'), (25794, 'https://ror.org/00x7x0z13', 'en', 1, 'https://ror.org/00x7x0z13 New Jersey Community College Consortium For Workforce & Economic Development'), (25795, 'https://ror.org/00x9nm172', 'en', 1, 'https://ror.org/00x9nm172 Chuvash State Pedagogical University Чувашский государственный педагогический университет имени И. Я. Яковлева'), (25796, 'https://ror.org/00xbjad38', 'en', 1, 'https://ror.org/00xbjad38 Adamson University Pamantasang Adamson'), (25797, 'https://ror.org/00xe94w55', 'en', 1, 'https://ror.org/00xe94w55 Pre Columbian Art Research Institute'), (25798, 'https://ror.org/00xf20k05', 'en', 1, 'https://ror.org/00xf20k05 Institute of Natural Sciences and Ecology Институт естественных наук и экологии'), (25799, 'https://ror.org/00xfxvy87', 'en', 1, 'https://ror.org/00xfxvy87 Irbid National University جامعة إربد الأهلية'), (25800, 'https://ror.org/00xgkd576', 'en', 1, 'https://ror.org/00xgkd576 Mescalero Apache Tribe'), (25801, 'https://ror.org/00xh8va68', 'no_lang_code', 1, 'https://ror.org/00xh8va68 Shri Venkateshwara University श्री वेंकटेश्वर विश्वविद्यालय'), (25802, 'https://ror.org/00xhtpg39', 'en', 1, 'https://ror.org/00xhtpg39 Taungoo University တောင်ငူတက္ကသိုလ်'), (25803, 'https://ror.org/00xjfn370', 'no_lang_code', 1, 'https://ror.org/00xjfn370 JAP Industries (Czechia)'), (25804, 'https://ror.org/00xmaxz39', 'no_lang_code', 1, 'https://ror.org/00xmaxz39 Portland Stage (United States)'), (25805, 'https://ror.org/00xngee30', 'en', 1, 'https://ror.org/00xngee30 Alice Lloyd College'), (25806, 'https://ror.org/00xpev657', 'en', 1, 'https://ror.org/00xpev657 Pacific American Foundation'), (25807, 'https://ror.org/00xqebk56', 'en', 1, 'https://ror.org/00xqebk56 West Los Angeles College'), (25808, 'https://ror.org/00xs48965', 'en', 1, 'https://ror.org/00xs48965 Graduate Theological Union'), (25809, 'https://ror.org/00xtqnh37', 'en', 1, 'https://ror.org/00xtqnh37 Rochester Institute of Technology Kosovo'), (25810, 'https://ror.org/00xwqff48', 'en', 1, 'https://ror.org/00xwqff48 Ave Maria University'), (25811, 'https://ror.org/00xwryd04', 'en', 1, 'https://ror.org/00xwryd04 Kobe Shinwa Women''s University 神戸親和女子大学'), (25812, 'https://ror.org/00xxekd18', 'en', 1, 'https://ror.org/00xxekd18 Latvian Maritime Academy Latvijas Jūras Akadēmija'), (25813, 'https://ror.org/00xz8jv85', 'en', 1, 'https://ror.org/00xz8jv85 Richard J. Daley College'), (25814, 'https://ror.org/00y0cnq88', 'id', 1, 'https://ror.org/00y0cnq88 Universitas Bung Karno'), (25815, 'https://ror.org/00y184b33', 'en', 1, 'https://ror.org/00y184b33 Jaamacadda Teknoolajiyadda Somaliland Somaliland University of Technology'), (25816, 'https://ror.org/00y47bm46', 'en', 1, 'https://ror.org/00y47bm46 Crimean State Engineering Pedagogical University Кримський інженерно-педагогічний університет Крымский инженерно-педагогический университет'), (25817, 'https://ror.org/00y5xdc54', 'id', 1, 'https://ror.org/00y5xdc54 Universitas Nahdlatul Ulama Surakarta'), (25818, 'https://ror.org/00y611a79', 'en', 1, 'https://ror.org/00y611a79 Shiraz University of Arts دانشگاه هنر شیراز'), (25819, 'https://ror.org/00y64xg88', 'en', 1, 'https://ror.org/00y64xg88 Vermont Folklife Center'), (25820, 'https://ror.org/00y792711', 'en', 1, 'https://ror.org/00y792711 Technological University of Tajikistan Донишгоҳи техникии Тоҷикистон ба номи М.Осимӣ Таджикский технический университет имени М. Осими'), (25821, 'https://ror.org/00y809n33', 'en', 1, 'https://ror.org/00y809n33 Tokyo University of the Arts 東京芸術大学'), (25822, 'https://ror.org/00ybawk55', 'en', 1, 'https://ror.org/00ybawk55 Florida International University Alumni Association'), (25823, 'https://ror.org/00ybfzj27', 'en', 1, 'https://ror.org/00ybfzj27 Karnataka State Dr.Gangubai Hanagal Music and Performing Arts University ಕರ್ನಾಟಕ ರಾಜ್ಯ ಡಾ. ಗಂಗೂಬಾಯಿ ಹಾನಗಲ್ ಸಂಗೀತ ಮತ್ತು ಪ್ರದರ್ಶಕ ಕಲೆಗಳ ವಿಶ್ವವಿದ್ಯಾಲಯ'), (25824, 'https://ror.org/00yc4pf20', 'no_lang_code', 1, 'https://ror.org/00yc4pf20 BD Sensors (Czechia)'), (25825, 'https://ror.org/00yctqd52', 'en', 1, 'https://ror.org/00yctqd52 Eastern Economics and Law Humanities Восточная экономико-юридическая гуманитарная академия'), (25826, 'https://ror.org/00yezxw87', 'no_lang_code', 1, 'https://ror.org/00yezxw87 Chodang University 초당대학교'), (25827, 'https://ror.org/00yf8nr88', 'en', 1, 'https://ror.org/00yf8nr88 Institute of Technology and Business'), (25828, 'https://ror.org/00ymx4t37', 'en', 1, 'https://ror.org/00ymx4t37 MUSE Film and Television'), (25829, 'https://ror.org/00ynatg20', 'no_lang_code', 1, 'https://ror.org/00ynatg20 Universal Research Group (Pakistan)'), (25830, 'https://ror.org/00yrjw682', 'id', 1, 'https://ror.org/00yrjw682 Universitas Darussalam Ambon'), (25831, 'https://ror.org/00ys4cv94', 'en', 1, 'https://ror.org/00ys4cv94 Agora University Universitatea Agora'), (25832, 'https://ror.org/00ytmwg30', 'en', 1, 'https://ror.org/00ytmwg30 Donga College of Health 동아보건대학교'), (25833, 'https://ror.org/00yydx071', 'no_lang_code', 1, 'https://ror.org/00yydx071 Osaka Seikei University 大阪成蹊大学'), (25834, 'https://ror.org/00z249n13', 'no_lang_code', 1, 'https://ror.org/00z249n13 Nagoya Bunri University 名古屋文理大学'), (25835, 'https://ror.org/00z3zzh92', 'en', 1, 'https://ror.org/00z3zzh92 Iliff School of Theology'), (25836, 'https://ror.org/00z50sv45', 'en', 1, 'https://ror.org/00z50sv45 Shin Ansan University 신안산대학교'), (25837, 'https://ror.org/00z6fc259', 'en', 1, 'https://ror.org/00z6fc259 Jewish Theological Seminary'), (25838, 'https://ror.org/00z6fwj27', 'en', 1, 'https://ror.org/00z6fwj27 Magnitogorsk State University Магнитогорский государственный университет'), (25839, 'https://ror.org/00z9cn431', 'en', 1, 'https://ror.org/00z9cn431 Kühne Logistics University'), (25840, 'https://ror.org/00zabvw84', 'en', 1, 'https://ror.org/00zabvw84 Russian State Specialized Academy of Arts Российская государственная специализированная академия искусств'), (25841, 'https://ror.org/00zc2km17', 'en', 1, 'https://ror.org/00zc2km17 Living History Farms'), (25842, 'https://ror.org/00zgr4s34', 'en', 1, 'https://ror.org/00zgr4s34 Sokoto State University'), (25843, 'https://ror.org/00zh3gn22', 'en', 1, 'https://ror.org/00zh3gn22 Auro University'), (25844, 'https://ror.org/00zjez215', 'en', 1, 'https://ror.org/00zjez215 Czech Medical Association of J.E. Purkyne Česká lékařská společnost Jana Evangelisty Purkyně'), (25845, 'https://ror.org/00zk06669', 'en', 1, 'https://ror.org/00zk06669 Songho University 송호대학교'), (25846, 'https://ror.org/00znvr495', 'en', 1, 'https://ror.org/00znvr495 Mattress Factory'), (25847, 'https://ror.org/00zqbkp20', 'en', 1, 'https://ror.org/00zqbkp20 Omsk State Institute of Service Омский государственный институт сервиса'), (25848, 'https://ror.org/00zs3p911', 'en', 1, 'https://ror.org/00zs3p911 San Antonio Public Library Foundation'), (25849, 'https://ror.org/00ztyd753', 'en', 1, 'https://ror.org/00ztyd753 University of Puthisastra សាកលវិទ្យាល័យ ពុទ្ធិសាស្ត្រ'), (25850, 'https://ror.org/00zv9ny53', 'en', 1, 'https://ror.org/00zv9ny53 Moscow Region State University Московский государственный областной университет'), (25851, 'https://ror.org/00zvja711', 'en', 1, 'https://ror.org/00zvja711 Carlyle House Historic Park'), (25852, 'https://ror.org/00zvtrm48', 'en', 1, 'https://ror.org/00zvtrm48 Delaware Department of Natural Resources and Environmental Control'), (25853, 'https://ror.org/00zxty319', 'no_lang_code', 1, 'https://ror.org/00zxty319 Naragakuen University 奈良産業大学'), (25854, 'https://ror.org/00zxz8845', 'en', 1, 'https://ror.org/00zxz8845 National University of Pharmacy Національний фармацевтичний університет'), (25855, 'https://ror.org/00zyp8708', 'en', 1, 'https://ror.org/00zyp8708 Shevchenko Transnistria State University Universitatea de Stat din Transnistria Приднестровский государственный университет имени Тараса Шевченко'), (25856, 'https://ror.org/00zz2cd87', 'en', 1, 'https://ror.org/00zz2cd87 Kannur University കണ്ണൂർ സർവ്വകലാശാല'), (25857, 'https://ror.org/0100d8y50', 'id', 1, 'https://ror.org/0100d8y50 Universitas Tamansiswa, Universitas Tamansiswa Padang'), (25858, 'https://ror.org/010299218', 'en', 1, 'https://ror.org/010299218 Minnesota Public Radio'), (25859, 'https://ror.org/01041e172', 'en', 1, 'https://ror.org/01041e172 University of Maryland Rehabilitation & Orthopaedic Institute'), (25860, 'https://ror.org/01044vd48', 'en', 1, 'https://ror.org/01044vd48 Tama Art University 多摩美術大学'), (25861, 'https://ror.org/01062jn59', 'no_lang_code', 1, 'https://ror.org/01062jn59 Archaia Brno (Czechia)'), (25862, 'https://ror.org/0106zg078', 'no_lang_code', 1, 'https://ror.org/0106zg078 ENKI (Czechia)'), (25863, 'https://ror.org/01083gz70', 'no_lang_code', 1, 'https://ror.org/01083gz70 Daiichi Sankyo (United Kingdom)'), (25864, 'https://ror.org/0108chx74', 'en', 1, 'https://ror.org/0108chx74 Akademia Muzyczna im. Karola Szymanowskiego w Katowicach Karol Szymanowski Academy of Music'), (25865, 'https://ror.org/010bdvy81', 'en', 1, 'https://ror.org/010bdvy81 Omsk State Pedagogical University Омский государственный педагогический университет'), (25866, 'https://ror.org/010btwb70', 'en', 1, 'https://ror.org/010btwb70 Donbas National Academy of Civil Engineering and Architecture Донбаська національна академія будівництва і архітектури'), (25867, 'https://ror.org/010cbg926', 'en', 1, 'https://ror.org/010cbg926 Hyupsung University 협성대학교'), (25868, 'https://ror.org/010hy3w58', 'en', 1, 'https://ror.org/010hy3w58 Kharkiv State University of Food Technology and Trade Харківський державний університет харчування та торгівлі Харьковский государственный университет питания и торговли'), (25869, 'https://ror.org/010j1fa26', 'en', 1, 'https://ror.org/010j1fa26 History Center of Olmsted County'), (25870, 'https://ror.org/010kbv636', 'en', 1, 'https://ror.org/010kbv636 Hubei Institute of Fine Arts 湖北美术学院'), (25871, 'https://ror.org/010m6ab92', 'en', 1, 'https://ror.org/010m6ab92 Kuzbass State Pedagogical Academy Novokuzneckij Gosudarstvennyj Pedagogičeskij Institut'), (25872, 'https://ror.org/010nsc013', 'no_lang_code', 1, 'https://ror.org/010nsc013 Svay Rieng University សាកលវិទ្យាល័យស្វាយរៀង'), (25873, 'https://ror.org/010nsv610', 'no_lang_code', 1, 'https://ror.org/010nsv610 Seisen Jogakuin College 清泉女学院大学'), (25874, 'https://ror.org/010pg3352', 'cs', 1, 'https://ror.org/010pg3352 Comenius Museum in Přerov, Muzeum Komenského v Přerově'), (25875, 'https://ror.org/010pkba38', 'en', 1, 'https://ror.org/010pkba38 Sanyo Gakuen University 山陽学園大学'), (25876, 'https://ror.org/010qmx075', 'en', 1, 'https://ror.org/010qmx075 Howard County Library System'), (25877, 'https://ror.org/010s58a40', 'en', 1, 'https://ror.org/010s58a40 Volgograd Municipal Institute of Arts Волгоградская консерватория имени П. А. Серебрякова [править | править вики-текст]'), (25878, 'https://ror.org/010vxxa64', 'en', 1, 'https://ror.org/010vxxa64 Kyrgyz State National University И.Арабаев атындагы Кыргыз мамлекеттик университети'), (25879, 'https://ror.org/010x2s304', 'en', 1, 'https://ror.org/010x2s304 Krasnodar State University of Culture and Arts Краснодарский государственный институт культуры'), (25880, 'https://ror.org/010xtt879', 'no_lang_code', 1, 'https://ror.org/010xtt879 VUP Medical (Czechia) Výzkumný Ústav Pletařský'), (25881, 'https://ror.org/010zm1770', 'en', 1, 'https://ror.org/010zm1770 Kansas City Museum'), (25882, 'https://ror.org/0110at529', 'en', 1, 'https://ror.org/0110at529 Odessa National Medical University Одесский национальный медицинский университет Одеський національний медичний університет'), (25883, 'https://ror.org/0112cfy18', 'en', 1, 'https://ror.org/0112cfy18 Belarusian Trade-Economic University of Consumer Cooperation Беларускі гандлёва-эканамічны ўніверсітэт спажывецкай кааперацыі'), (25884, 'https://ror.org/01131jt26', 'en', 1, 'https://ror.org/01131jt26 Chester County Historical Society'), (25885, 'https://ror.org/01136x372', 'en', 1, 'https://ror.org/01136x372 Institute of Nuclear Physics'), (25886, 'https://ror.org/0113dxj57', 'en', 1, 'https://ror.org/0113dxj57 Baltimore City Life Museums'), (25887, 'https://ror.org/0115qty58', 'en', 1, 'https://ror.org/0115qty58 St. Petersburg University of the Ministry of Internal Affairs of Russia Санкт-Петербургский университет МВД России'), (25888, 'https://ror.org/0116q3567', 'en', 1, 'https://ror.org/0116q3567 Community Renewal Society'), (25889, 'https://ror.org/0118mmr39', 'en', 1, 'https://ror.org/0118mmr39 Institute for American Indian Studies'), (25890, 'https://ror.org/0119xjz67', 'en', 1, 'https://ror.org/0119xjz67 Moscow Banking Institute Московский банковский институт'), (25891, 'https://ror.org/011bzep68', 'en', 1, 'https://ror.org/011bzep68 Catticus Corporation'), (25892, 'https://ror.org/011c0vt04', 'en', 1, 'https://ror.org/011c0vt04 Ho Chi Minh City University of Transport Trường Đại học Giao thông vận tải Thành phố Hồ Chí Minh'), (25893, 'https://ror.org/011d8sm39', 'en', 1, 'https://ror.org/011d8sm39 Changsha University 长沙学院'), (25894, 'https://ror.org/011m7wt79', 'id', 1, 'https://ror.org/011m7wt79 Universitas Trunajaya Bontang'), (25895, 'https://ror.org/011p6p421', 'en', 1, 'https://ror.org/011p6p421 Barrington Area Historical Society'), (25896, 'https://ror.org/011rv5893', 'en', 1, 'https://ror.org/011rv5893 Delmon University for Science & Technology جامعة دلمون للعلوم والتكنولوجيا'), (25897, 'https://ror.org/011tc6n71', 'en', 1, 'https://ror.org/011tc6n71 Cebu Doctors'' University'), (25898, 'https://ror.org/011tkrr13', 'en', 1, 'https://ror.org/011tkrr13 Federation of State Humanities Councils'), (25899, 'https://ror.org/011tvp436', 'en', 1, 'https://ror.org/011tvp436 Iona Senior Services'), (25900, 'https://ror.org/011vbeg19', 'en', 1, 'https://ror.org/011vbeg19 Rizal Technological University'), (25901, 'https://ror.org/011w3dy65', 'no_lang_code', 1, 'https://ror.org/011w3dy65 Bhupendra Narayan Mandal University भूपेंद्र नारायण मंडल विश्वविद्यालय'), (25902, 'https://ror.org/011wymc20', 'en', 1, 'https://ror.org/011wymc20 Maitama Sule University Kano'), (25903, 'https://ror.org/011x6fh62', 'en', 1, 'https://ror.org/011x6fh62 Tamil Nadu Dr. Ambedkar Law University டாக்டர் அம்பேத்கர் சட்டப் பல்கலைக்கழகம்'), (25904, 'https://ror.org/011xrgv27', 'en', 1, 'https://ror.org/011xrgv27 Leyte Normal University'), (25905, 'https://ror.org/011y7xt38', 'en', 1, 'https://ror.org/011y7xt38 Çankırı Karatekin University Çankırı Karatekin Üniversitesi'), (25906, 'https://ror.org/011ydgp35', 'en', 1, 'https://ror.org/011ydgp35 Otgontenger University Отгонтэнгэр их сургууль'), (25907, 'https://ror.org/01224kh78', 'en', 1, 'https://ror.org/01224kh78 Sunflower County Library'), (25908, 'https://ror.org/0123ya521', 'en', 1, 'https://ror.org/0123ya521 South Dakota Library Association'), (25909, 'https://ror.org/01250xt95', 'en', 1, 'https://ror.org/01250xt95 National Fish and Wildlife Foundation'), (25910, 'https://ror.org/01268am16', 'en', 1, 'https://ror.org/01268am16 National Museum Institute of the History of Art, Conservation and Museology राष्ट्रीय संग्रहालय संस्थान कला इतिहास, संरक्षण एवं संग्रहालय विज्ञान'), (25911, 'https://ror.org/012752q54', 'en', 1, 'https://ror.org/012752q54 East Meadow Public Library'), (25912, 'https://ror.org/01295by53', 'en', 1, 'https://ror.org/01295by53 Terrebonne Parish Library'), (25913, 'https://ror.org/0129z1286', 'en', 1, 'https://ror.org/0129z1286 Ipswich Historical Society'), (25914, 'https://ror.org/012a85e51', 'en', 1, 'https://ror.org/012a85e51 University of Economics and Innovation Wyższa Szkoła Ekonomii i Innowacjii w Lublinie'), (25915, 'https://ror.org/012br3z79', 'en', 1, 'https://ror.org/012br3z79 University of Liberal Arts Bangladesh ইউনির্ভাসিটি অব লিবারেল আর্টস বাংলাদেশ'), (25916, 'https://ror.org/012g45386', 'en', 1, 'https://ror.org/012g45386 Papua New Guinea University of Technology'), (25917, 'https://ror.org/012jv0m98', 'en', 1, 'https://ror.org/012jv0m98 Hanoi University of Business and Technology Trường Đại học Kinh doanh và Công nghệ Hà Nội'), (25918, 'https://ror.org/012mcha64', 'en', 1, 'https://ror.org/012mcha64 Czech Association of Scientific and Technical Societies'), (25919, 'https://ror.org/012pr3y94', 'no_lang_code', 1, 'https://ror.org/012pr3y94 Variel (Czechia)'), (25920, 'https://ror.org/012rxev91', 'hi', 1, 'https://ror.org/012rxev91 Jai Prakash Vishwavidyalaya'), (25921, 'https://ror.org/012tb7473', 'en', 1, 'https://ror.org/012tb7473 Malawi Adventist University'), (25922, 'https://ror.org/012w6mj89', 'cs', 1, 'https://ror.org/012w6mj89 Regionální muzeum ve Vysokém Mýtě, Vysoké Mýto Regional Museum'), (25923, 'https://ror.org/0130a6s10', 'en', 1, 'https://ror.org/0130a6s10 Foundation University Islamabad فاؤنڈیشن یونیورسٹی اسلام آباد'), (25924, 'https://ror.org/013164r34', 'en', 1, 'https://ror.org/013164r34 Chesapeake Bay Maritime Museum'), (25925, 'https://ror.org/0133h5567', 'en', 1, 'https://ror.org/0133h5567 Yangon University of Economics'), (25926, 'https://ror.org/0133zej97', 'cs', 1, 'https://ror.org/0133zej97 Muzejní a Vlastivědná Společnost v Brně'), (25927, 'https://ror.org/013609965', 'en', 1, 'https://ror.org/013609965 City University جامعة المنار في طرابلس'), (25928, 'https://ror.org/013812419', 'en', 1, 'https://ror.org/013812419 Jack Straw Cultural Center'), (25929, 'https://ror.org/013922990', 'en', 1, 'https://ror.org/013922990 Brandman University'), (25930, 'https://ror.org/013aqa754', 'en', 1, 'https://ror.org/013aqa754 Tamil Nadu Open University தமிழ்நாடு திறந்தநிலைப் பல்கலைக்கழகம்'), (25931, 'https://ror.org/013cc5h66', 'en', 1, 'https://ror.org/013cc5h66 Tver State Medical University Тверская государственная медицинская академия'); INSERT INTO `rors` VALUES (25932, 'https://ror.org/013cp5728', 'en', 1, 'https://ror.org/013cp5728 Vladikavkaz Institute of Management Владикавказский Институт Управления'), (25933, 'https://ror.org/013d87239', 'en', 1, 'https://ror.org/013d87239 HITEC University'), (25934, 'https://ror.org/013dqcj88', 'en', 1, 'https://ror.org/013dqcj88 University of Medical Technology Yangon'), (25935, 'https://ror.org/013gnjn86', 'en', 1, 'https://ror.org/013gnjn86 Linguistics University of Nizhny Novgorod Нижегородский государственный лингвистический университет имени Н. А. Добролюбова'), (25936, 'https://ror.org/013gnym04', 'no_lang_code', 1, 'https://ror.org/013gnym04 Tanger computersystems'), (25937, 'https://ror.org/013h3xr51', 'en', 1, 'https://ror.org/013h3xr51 Izmir University İzmir Üniversitesi'), (25938, 'https://ror.org/013kf9t32', 'en', 1, 'https://ror.org/013kf9t32 Hanseatic University Rostock Private Hanseuniversität'), (25939, 'https://ror.org/013mk4f48', 'id', 1, 'https://ror.org/013mk4f48 Universitas Wiralodra'), (25940, 'https://ror.org/013mrxa54', 'en', 1, 'https://ror.org/013mrxa54 East Baton Rouge Parish Library'), (25941, 'https://ror.org/013rj3567', 'en', 1, 'https://ror.org/013rj3567 Studio of Ecological Models'), (25942, 'https://ror.org/013s89d74', 'en', 1, 'https://ror.org/013s89d74 St James''s University Hospital'), (25943, 'https://ror.org/013tad429', 'en', 1, 'https://ror.org/013tad429 Benadir University Jaamacada Banaadir جامعـــة بنـــادر'), (25944, 'https://ror.org/013v4ng57', 'en', 1, 'https://ror.org/013v4ng57 Biblioteca Pública de San Francisco Bibliothèque publique de san francisco San Francisco Public Library'), (25945, 'https://ror.org/013ye6h36', 'en', 1, 'https://ror.org/013ye6h36 Fort Bend Museum'), (25946, 'https://ror.org/013yz2z49', 'en', 1, 'https://ror.org/013yz2z49 Presbyterian Historical Society'), (25947, 'https://ror.org/0140mkx22', 'en', 1, 'https://ror.org/0140mkx22 West Baton Rouge Museum'), (25948, 'https://ror.org/01473qm81', 'en', 1, 'https://ror.org/01473qm81 Siberian Institute of Business Management and Psychology Сибирский институт бизнеса, управления и психологии'), (25949, 'https://ror.org/0148bwv84', 'en', 1, 'https://ror.org/0148bwv84 Lafayette Public Library'), (25950, 'https://ror.org/01491yv14', 'en', 1, 'https://ror.org/01491yv14 Ukrainian Academy of Printing Украинская академия печати Українська академія друкарства'), (25951, 'https://ror.org/01492me75', 'en', 1, 'https://ror.org/01492me75 University of Management and Administration in Zamosc Wyższa Szkoła Zarządzania i Administracji'), (25952, 'https://ror.org/0149y8a98', 'en', 1, 'https://ror.org/0149y8a98 Turkmen State Power Engineering Institute Türkmenistanyñ Döwlet Energetika Instituty'), (25953, 'https://ror.org/014bbcf72', 'en', 1, 'https://ror.org/014bbcf72 Nagasaki Wesleyan University 長崎ウエスレヤン大学'), (25954, 'https://ror.org/014bfp158', 'en', 1, 'https://ror.org/014bfp158 OASIS Institute'), (25955, 'https://ror.org/014bk4g26', 'en', 1, 'https://ror.org/014bk4g26 International Teaching University of Georgia თბილისის სასწავლო უნივერსიტეტი "გორგასალი"'), (25956, 'https://ror.org/014cjmc76', 'en', 1, 'https://ror.org/014cjmc76 Swinburne University of Technology Sarawak Campus'), (25957, 'https://ror.org/014cke235', 'en', 1, 'https://ror.org/014cke235 Dalat University Trường Đại học Đà Lạt Université de Dalat 大叻大学'), (25958, 'https://ror.org/014cnmj57', 'en', 1, 'https://ror.org/014cnmj57 Duale Hochschule Baden-Württemberg Ravensburg Ravensburg University of Cooperative Education'), (25959, 'https://ror.org/014e5wn40', 'no_lang_code', 1, 'https://ror.org/014e5wn40 MSV Systems (Czechia)'), (25960, 'https://ror.org/014e7p840', 'en', 1, 'https://ror.org/014e7p840 Robert Morris University Illinois'), (25961, 'https://ror.org/014f6m860', 'en', 1, 'https://ror.org/014f6m860 Yelets State University named after Ivan Bunin Елецкий государственный университет им.И.А. Бунина'), (25962, 'https://ror.org/014hxxb31', 'en', 1, 'https://ror.org/014hxxb31 Oryol State University of Economics and Trade Орловский государственный университет экономики и торговли'), (25963, 'https://ror.org/014jej306', 'en', 1, 'https://ror.org/014jej306 Alice Ferguson Foundation'), (25964, 'https://ror.org/014jqnm52', 'en', 1, 'https://ror.org/014jqnm52 J.C. Bose University of Science & Technology, YMCA'), (25965, 'https://ror.org/014jyaw47', 'en', 1, 'https://ror.org/014jyaw47 Fukuoka Prefectural University 福岡県立大学'), (25966, 'https://ror.org/014mbfe79', 'en', 1, 'https://ror.org/014mbfe79 Fairfax County Park Authority'), (25967, 'https://ror.org/014napr78', 'en', 1, 'https://ror.org/014napr78 Moscow State Mining University Московский государственный горный университет'), (25968, 'https://ror.org/014phfv49', 'en', 1, 'https://ror.org/014phfv49 Kobe College 神戸女学院大学'), (25969, 'https://ror.org/014pw6s10', 'en', 1, 'https://ror.org/014pw6s10 Public Health Institute Ostrava Zdravotní ústav se sídlem v Ostravě'), (25970, 'https://ror.org/014q5e672', 'no_lang_code', 1, 'https://ror.org/014q5e672 Tedom (Czechia)'), (25971, 'https://ror.org/014qdh252', 'en', 1, 'https://ror.org/014qdh252 Ural State Forestry Engineering University Уральский государственный лесотехнический университет'), (25972, 'https://ror.org/014qh1461', 'cs', 1, 'https://ror.org/014qh1461 Regional Museum in Olomouc Vlastivědné Muzeum v Olomouci'), (25973, 'https://ror.org/014tq2r65', 'en', 1, 'https://ror.org/014tq2r65 Imaginarium of South Texas'), (25974, 'https://ror.org/014y22g21', 'en', 1, 'https://ror.org/014y22g21 Conseil des universités de l''Ontario Council of Ontario Universities'), (25975, 'https://ror.org/014yxjm16', 'en', 1, 'https://ror.org/014yxjm16 Moscow State Academy of Water Transport Московская государственная академия водного транспорта'), (25976, 'https://ror.org/014zenb08', 'en', 1, 'https://ror.org/014zenb08 Jāzepa Vītola Latvijas Mūzikas akadēmija Jāzeps Vītols Latvian Academy of Music Latvijos Jazepo Vytuolio muzikos akademija Латвийская музыкальная академия имени Язепа Витола'), (25977, 'https://ror.org/0150mxn38', 'en', 1, 'https://ror.org/0150mxn38 President Ramon Magsaysay State University'), (25978, 'https://ror.org/01539v588', 'en', 1, 'https://ror.org/01539v588 Oranim Academic College of Education אורנים - המכללה האקדמית לחינוך اورنيم'), (25979, 'https://ror.org/01563cr83', 'en', 1, 'https://ror.org/01563cr83 Santa Barbara Museum of Art'), (25980, 'https://ror.org/015bdn754', 'no_lang_code', 1, 'https://ror.org/015bdn754 Hanalei Watershed Hui'), (25981, 'https://ror.org/015dapv07', 'en', 1, 'https://ror.org/015dapv07 Tajik State Pedagogical University Донишгоҳи давлатии омӯзгории Тоҷикистон ба номи Садриддин Айнӣ Таджикский государственный педагогический университет им. С.Айни'), (25982, 'https://ror.org/015dhy417', 'en', 1, 'https://ror.org/015dhy417 Luther University 루터대학교'), (25983, 'https://ror.org/015es7f77', 'en', 1, 'https://ror.org/015es7f77 Centre international de la photographie Centro internacional de Fotografía International Center of Photography'), (25984, 'https://ror.org/015f81693', 'en', 1, 'https://ror.org/015f81693 Atlantic Council'), (25985, 'https://ror.org/015j3ky41', 'en', 1, 'https://ror.org/015j3ky41 Art Academy of Latvia Latvijas Mākslas akadēmija Latvijos dailės akademija Латвийская Академия художеств'), (25986, 'https://ror.org/015jqsk41', 'en', 1, 'https://ror.org/015jqsk41 Penza State Agricultural Academy Пензенский государственный аграрный университет'), (25987, 'https://ror.org/015k56t61', 'id', 1, 'https://ror.org/015k56t61 Universitas Tribhuwana Tunggadewi'), (25988, 'https://ror.org/015kg8q36', 'en', 1, 'https://ror.org/015kg8q36 National University of Study and Research in Law'), (25989, 'https://ror.org/015mnqg92', 'en', 1, 'https://ror.org/015mnqg92 Italian Cultural Society of Washington D.C.'), (25990, 'https://ror.org/015n4ka04', 'en', 1, 'https://ror.org/015n4ka04 Webster University Thailand มหาวิทยาลัยเวบสเตอร์'), (25991, 'https://ror.org/015ndca91', 'en', 1, 'https://ror.org/015ndca91 Three Village Historical Society'), (25992, 'https://ror.org/015q2z284', 'en', 1, 'https://ror.org/015q2z284 Tsukuba International University つくば国際大学'), (25993, 'https://ror.org/015t2rt70', 'en', 1, 'https://ror.org/015t2rt70 East Hampton Historical Society'), (25994, 'https://ror.org/015t4c879', 'id', 1, 'https://ror.org/015t4c879 Universitas Nurtanio'), (25995, 'https://ror.org/015tjr078', 'en', 1, 'https://ror.org/015tjr078 California Marine Sanctuary Foundation'), (25996, 'https://ror.org/015va4q78', 'en', 1, 'https://ror.org/015va4q78 Humanitarian Institute of Television and Broadcasting M.A. Litovèina Гуманитарный институт телевидения и радиовещания'), (25997, 'https://ror.org/015ve7h33', 'en', 1, 'https://ror.org/015ve7h33 Iloilo Science and Technology University Universitas Technologiae et Scientiarum Iloilensis'), (25998, 'https://ror.org/015vt5466', 'en', 1, 'https://ror.org/015vt5466 Preservation Society of Newport County'), (25999, 'https://ror.org/015zf4p69', 'en', 1, 'https://ror.org/015zf4p69 Jewish Publication Society'), (26000, 'https://ror.org/015zw2f19', 'en', 1, 'https://ror.org/015zw2f19 Moscow Technical University of Communication and Informatics Московский технический университет связи и информатики'), (26001, 'https://ror.org/01628w679', 'en', 1, 'https://ror.org/01628w679 Transport and Telecommunication Institute Transporta un Sakaru Institūts Институт Транспорта и Связи'), (26002, 'https://ror.org/0163dw893', 'en', 1, 'https://ror.org/0163dw893 Aichi Mizuho College 愛知みずほ大学'), (26003, 'https://ror.org/0163jwc47', 'en', 1, 'https://ror.org/0163jwc47 Kutafin Moscow State Law University Московский государственный юридический университет имени О. Е. Кутафина'), (26004, 'https://ror.org/01652va36', 'en', 1, 'https://ror.org/01652va36 Kenya Highlands University'), (26005, 'https://ror.org/0165g4976', 'no_lang_code', 1, 'https://ror.org/0165g4976 Selton (Czechia) Výzkumné Centrum Selton'), (26006, 'https://ror.org/0165s9m45', 'en', 1, 'https://ror.org/0165s9m45 Kabardino-Balkar State Agrarian University Кабардино-Балкарский государственный аграрный университет имени В. М. Кокова'), (26007, 'https://ror.org/01670bg46', 'en', 1, 'https://ror.org/01670bg46 Bahir Dar University ባህር ዳር ዩኒቨርስቲ'), (26008, 'https://ror.org/0167rnj42', 'en', 1, 'https://ror.org/0167rnj42 Ansbach University of Applied Sciences Hochschule Ansbach'), (26009, 'https://ror.org/016848p13', 'en', 1, 'https://ror.org/016848p13 Baptist University of the Américas'), (26010, 'https://ror.org/0168zcn11', 'en', 1, 'https://ror.org/0168zcn11 Korea National University of Arts 한국예술종합학교'), (26011, 'https://ror.org/016ahab87', 'en', 1, 'https://ror.org/016ahab87 Alecu Russo State University of Bălți Universitatea de Stat Alecu Russo din Bălți Бельцкий государственный университет'), (26012, 'https://ror.org/016bpc336', 'en', 1, 'https://ror.org/016bpc336 International Pacific University 環太平洋大学'), (26013, 'https://ror.org/016ck0282', 'en', 1, 'https://ror.org/016ck0282 Pima County Public Library'), (26014, 'https://ror.org/016e0xz09', 'en', 1, 'https://ror.org/016e0xz09 Kent State University at Salem'), (26015, 'https://ror.org/016epqy31', 'en', 1, 'https://ror.org/016epqy31 Kansai University of Welfare Sciences 関西福祉科学大学'), (26016, 'https://ror.org/016ezn892', 'en', 1, 'https://ror.org/016ezn892 Freedom Trail Foundation'), (26017, 'https://ror.org/016gp6x28', 'en', 1, 'https://ror.org/016gp6x28 University of South Florida St. Petersburg'), (26018, 'https://ror.org/016grcy95', 'en', 1, 'https://ror.org/016grcy95 Takaoka University of Law 高岡法科大学'), (26019, 'https://ror.org/016hp9x85', 'en', 1, 'https://ror.org/016hp9x85 Gunma Prefectural Women''s University 群馬県立女子大学'), (26020, 'https://ror.org/016jek077', 'no_lang_code', 1, 'https://ror.org/016jek077 Vítkovice Machinery Group (Czechia)'), (26021, 'https://ror.org/016jp5513', 'cs', 1, 'https://ror.org/016jp5513 Západočeské Muzeum v Plzni'), (26022, 'https://ror.org/016mg6236', 'en', 1, 'https://ror.org/016mg6236 Columbia County Historical Society'), (26023, 'https://ror.org/016mnyy39', 'no_lang_code', 1, 'https://ror.org/016mnyy39 Dekra (Czechia)'), (26024, 'https://ror.org/016n6yn28', 'id', 1, 'https://ror.org/016n6yn28 Universitas Yudharta Pasuruan'), (26025, 'https://ror.org/016p6a998', 'en', 1, 'https://ror.org/016p6a998 Ukhta State Technical University'), (26026, 'https://ror.org/016rpxr13', 'no_lang_code', 1, 'https://ror.org/016rpxr13 Ing. Ivo Herman (Czechia)'), (26027, 'https://ror.org/016t28114', 'en', 1, 'https://ror.org/016t28114 Negros Oriental State University Pamantasang Estatal ng Negros Oriental'), (26028, 'https://ror.org/016tn3814', 'en', 1, 'https://ror.org/016tn3814 Komi State Pedagogical Institute Коми государственный педагогический институт'), (26029, 'https://ror.org/016ty7524', 'en', 1, 'https://ror.org/016ty7524 Fort Mason Center'), (26030, 'https://ror.org/016w0gt88', 'en', 1, 'https://ror.org/016w0gt88 American Institute for Yemeni Studies'), (26031, 'https://ror.org/016wtjs52', 'no_lang_code', 1, 'https://ror.org/016wtjs52 Sobriety (Czechia) Střízlivost'), (26032, 'https://ror.org/016xtkd46', 'en', 1, 'https://ror.org/016xtkd46 Cambridge Arts Council'), (26033, 'https://ror.org/016yc1h10', 'en', 1, 'https://ror.org/016yc1h10 Doon University दून विश्वविद्यालय'), (26034, 'https://ror.org/01704t520', 'en', 1, 'https://ror.org/01704t520 Foreign Policy Association'), (26035, 'https://ror.org/0172hvg27', 'en', 1, 'https://ror.org/0172hvg27 Aichi University 愛知大学'), (26036, 'https://ror.org/0173r0e90', 'en', 1, 'https://ror.org/0173r0e90 Arellano University'), (26037, 'https://ror.org/0173s1z72', 'en', 1, 'https://ror.org/0173s1z72 Museum of the Moving Image'), (26038, 'https://ror.org/01743b883', 'en', 1, 'https://ror.org/01743b883 Central Women''s University কেন্দ্রীয় মহিলা বিশ্ববিদ্যালয়'), (26039, 'https://ror.org/0174xeh18', 'en', 1, 'https://ror.org/0174xeh18 Plains Indians & Pioneers Museum'), (26040, 'https://ror.org/0175kt397', 'en', 1, 'https://ror.org/0175kt397 Lahore School of Economics'), (26041, 'https://ror.org/0179yft03', 'en', 1, 'https://ror.org/0179yft03 Indus Valley School of Art and Architecture انڊس ويلي اسڪول آف آرٽ اينڊ آرڪيٽيڪچر'), (26042, 'https://ror.org/017b2mp08', 'en', 1, 'https://ror.org/017b2mp08 Old Sturbridge Village'), (26043, 'https://ror.org/017fqwn34', 'en', 1, 'https://ror.org/017fqwn34 Upper Nile University'), (26044, 'https://ror.org/017fw5s62', 'en', 1, 'https://ror.org/017fw5s62 Des Moines Public Library'), (26045, 'https://ror.org/017hfdc92', 'en', 1, 'https://ror.org/017hfdc92 Kharkiv University of Humanities People’s Ukrainian Academy Харківський гуманітарний університет «Народна українська академія» Харьковский гуманитарный университет «Народная украинская академия»'), (26046, 'https://ror.org/017mhpd33', 'en', 1, 'https://ror.org/017mhpd33 Massachusetts Library Association'), (26047, 'https://ror.org/017nqsd88', 'no_lang_code', 1, 'https://ror.org/017nqsd88 Sampurnanand Sanskrit Vishwavidyalaya सम्पूर्णानन्द संस्कृत विश्वविद्यालय சம்பூர்ணானந்து சமசுகிருத பல்கலைக்கழகம்'), (26048, 'https://ror.org/017qmqm77', 'en', 1, 'https://ror.org/017qmqm77 Americas Society'), (26049, 'https://ror.org/017sgna85', 'en', 1, 'https://ror.org/017sgna85 University Medical Center of Southern Nevada'), (26050, 'https://ror.org/017tesn46', 'en', 1, 'https://ror.org/017tesn46 Orel State Agrarian University Орловский сельскохозяйственный институт'), (26051, 'https://ror.org/017v7rz39', 'no_lang_code', 1, 'https://ror.org/017v7rz39 Singidunum University Универзитет Сингидунум'), (26052, 'https://ror.org/017vp5k51', 'en', 1, 'https://ror.org/017vp5k51 Saratov State Academy of Law Саратовская государственная юридическая академия'), (26053, 'https://ror.org/017wcen79', 'en', 1, 'https://ror.org/017wcen79 Alabama Public Library Service'), (26054, 'https://ror.org/017wmdt28', 'en', 1, 'https://ror.org/017wmdt28 S. Toraighyrov Pavlodar State University Торайғыров атындағы Павлодар мемлекеттік университеті'), (26055, 'https://ror.org/017ybv328', 'no_lang_code', 1, 'https://ror.org/017ybv328 TES VsetÍn (Czechia)'), (26056, 'https://ror.org/017yg8081', 'no_lang_code', 1, 'https://ror.org/017yg8081 PPM Factum Research'), (26057, 'https://ror.org/0183bt791', 'en', 1, 'https://ror.org/0183bt791 Rhode Island Department of Environmental Management'), (26058, 'https://ror.org/01845nt85', 'id', 1, 'https://ror.org/01845nt85 Universitas Pendidikan Putra Indonesia Cianjur'), (26059, 'https://ror.org/01846yk50', 'no_lang_code', 1, 'https://ror.org/01846yk50 Chuo Kikuu cha Teofilo Kisanji Teofilo Kisanji University'), (26060, 'https://ror.org/0184f3p11', 'en', 1, 'https://ror.org/0184f3p11 Central Mindanao University'), (26061, 'https://ror.org/018528593', 'en', 1, 'https://ror.org/018528593 Nyenrode Business Universiteit Nyenrode Business University'), (26062, 'https://ror.org/018av9q43', 'en', 1, 'https://ror.org/018av9q43 Association for Recorded Sound Collections'), (26063, 'https://ror.org/018cbs791', 'en', 1, 'https://ror.org/018cbs791 Salt Lake City Public Library'), (26064, 'https://ror.org/018cj0796', 'en', 1, 'https://ror.org/018cj0796 Japanese American Citizens League'), (26065, 'https://ror.org/018cmez05', 'en', 1, 'https://ror.org/018cmez05 Adventist HealthCare Shady Grove Medical Center'), (26066, 'https://ror.org/018ey4p62', 'no_lang_code', 1, 'https://ror.org/018ey4p62 Advanced Hall Sensors (United Kingdom)'), (26067, 'https://ror.org/018g81q42', 'en', 1, 'https://ror.org/018g81q42 Comisión Histórica de Texas Texas Historical Commission'), (26068, 'https://ror.org/018gqjy33', 'en', 1, 'https://ror.org/018gqjy33 Charleston Museum'), (26069, 'https://ror.org/018gzjd49', 'en', 1, 'https://ror.org/018gzjd49 Bataan Peninsula State University'), (26070, 'https://ror.org/018h19434', 'en', 1, 'https://ror.org/018h19434 Institute of Practical Oriental Studies Институт практического востоковедения'), (26071, 'https://ror.org/018jdfk45', 'en', 1, 'https://ror.org/018jdfk45 Jiaying University 嘉应学院'), (26072, 'https://ror.org/018jek817', 'no_lang_code', 1, 'https://ror.org/018jek817 Shuchiin University 種智院大学'), (26073, 'https://ror.org/018kzpw73', 'en', 1, 'https://ror.org/018kzpw73 Krasnodar University of Ministry of Internal Affairs of Russia Краснодарский университет МВД России'), (26074, 'https://ror.org/018mf9d35', 'en', 1, 'https://ror.org/018mf9d35 Tashkent Financial Institute Toshkent Moliya Instituti Ташкентский Финансовый институт'), (26075, 'https://ror.org/018nbkm47', 'en', 1, 'https://ror.org/018nbkm47 L. C. Bates Museum'), (26076, 'https://ror.org/018p1hd91', 'en', 1, 'https://ror.org/018p1hd91 Kainan University 開南大學'), (26077, 'https://ror.org/018pdh902', 'en', 1, 'https://ror.org/018pdh902 Anyang University 안양대학교'), (26078, 'https://ror.org/018qe6n41', 'en', 1, 'https://ror.org/018qe6n41 International Humanitarian and Economic Institute Международный гуманитарно-экономический институт'), (26079, 'https://ror.org/018sv0913', 'en', 1, 'https://ror.org/018sv0913 McGill-Queen''s University Press'), (26080, 'https://ror.org/018tkrn90', 'id', 1, 'https://ror.org/018tkrn90 Universitas Islam Batik'), (26081, 'https://ror.org/018vp6382', 'no_lang_code', 1, 'https://ror.org/018vp6382 ASICentrum (Czechia)'), (26082, 'https://ror.org/018vvrr03', 'id', 1, 'https://ror.org/018vvrr03 Universitas Gajayana Malang'), (26083, 'https://ror.org/018wdpk10', 'no_lang_code', 1, 'https://ror.org/018wdpk10 GeneProof (Czechia)'), (26084, 'https://ror.org/018zgez30', 'en', 1, 'https://ror.org/018zgez30 Hammond Castle Museum'), (26085, 'https://ror.org/0191rk783', 'id', 1, 'https://ror.org/0191rk783 Universitas Sains Al-Qur''an'), (26086, 'https://ror.org/0191vmf59', 'en', 1, 'https://ror.org/0191vmf59 Ocean County Library'), (26087, 'https://ror.org/0192kva73', 'en', 1, 'https://ror.org/0192kva73 Teton County Library'), (26088, 'https://ror.org/0194nje30', 'id', 1, 'https://ror.org/0194nje30 Universitas Kuningan'), (26089, 'https://ror.org/0195p5j91', 'en', 1, 'https://ror.org/0195p5j91 Hawaii Department of Defense'), (26090, 'https://ror.org/01960yv21', 'en', 1, 'https://ror.org/01960yv21 Columbia River Inter-Tribal Fish Commission'), (26091, 'https://ror.org/019787q29', 'en', 1, 'https://ror.org/019787q29 UCSI University Universiti UCSI'), (26092, 'https://ror.org/01981np70', 'en', 1, 'https://ror.org/01981np70 Tenshi College 天使大学'), (26093, 'https://ror.org/0198m6535', 'en', 1, 'https://ror.org/0198m6535 Faculty of Polymer Technology Fakulteta za Tehnologijo Polimerov'), (26094, 'https://ror.org/01992n513', 'en', 1, 'https://ror.org/01992n513 Lexington Historical Society'), (26095, 'https://ror.org/019cqkm24', 'en', 1, 'https://ror.org/019cqkm24 Cannon Cancer Ministry'), (26096, 'https://ror.org/019cy2194', 'en', 1, 'https://ror.org/019cy2194 Kyiv International University Київський міжнародний університет'), (26097, 'https://ror.org/019en2y21', 'en', 1, 'https://ror.org/019en2y21 Batangas State University Pambansang Pamantasan ng Batangas'), (26098, 'https://ror.org/019j0kq88', 'en', 1, 'https://ror.org/019j0kq88 International Tennis Hall of Fame'), (26099, 'https://ror.org/019jcfv68', 'en', 1, 'https://ror.org/019jcfv68 American Bar Association Fund for Justice and Education'), (26100, 'https://ror.org/019kr0669', 'en', 1, 'https://ror.org/019kr0669 Southwest University of Visual Arts'), (26101, 'https://ror.org/019n6wd93', 'en', 1, 'https://ror.org/019n6wd93 St. Paul University Manila'), (26102, 'https://ror.org/019nq5750', 'no_lang_code', 1, 'https://ror.org/019nq5750 Tieto (Czechia)'), (26103, 'https://ror.org/019qp0530', 'id', 1, 'https://ror.org/019qp0530 Universitas Boyolali'), (26104, 'https://ror.org/019v5rt51', 'en', 1, 'https://ror.org/019v5rt51 Wallenberg Institute of Special Education and Psychology Институт специальной педагогики и психологии'), (26105, 'https://ror.org/019vbp610', 'en', 1, 'https://ror.org/019vbp610 Siberian State University of Telecommunications and Informatics Сибирский государственный университет телекоммуникаций и информатики'), (26106, 'https://ror.org/019xw1562', 'en', 1, 'https://ror.org/019xw1562 Instituto de Arte de Mineápolis Minneapolis Institute of Arts'), (26107, 'https://ror.org/019z71x08', 'en', 1, 'https://ror.org/019z71x08 Kijowski Narodowy Uniwersytet Ekonomiczny im. Wadyma Hetmana Kyiv National Economic University named after Vadym Hetman Киевский национальный экономический университет Київський національний економічний університет імені Вадима Гетьмана'), (26108, 'https://ror.org/01a0xg480', 'no_lang_code', 1, 'https://ror.org/01a0xg480 STV Group (Czechia)'), (26109, 'https://ror.org/01a1mkv71', 'en', 1, 'https://ror.org/01a1mkv71 Dayton Art Institute'), (26110, 'https://ror.org/01a233t53', 'en', 1, 'https://ror.org/01a233t53 Moscow State Art and Industry Academy named after SG Stroganov Московская государственная художественно-промышленная академия имени С. Г. Строганова'), (26111, 'https://ror.org/01a26qd14', 'en', 1, 'https://ror.org/01a26qd14 American Littoral Society'), (26112, 'https://ror.org/01a2dv184', 'no_lang_code', 1, 'https://ror.org/01a2dv184 Fine (Czechia)'), (26113, 'https://ror.org/01a3vkf51', 'en', 1, 'https://ror.org/01a3vkf51 Harold Washington College'), (26114, 'https://ror.org/01a3w2x24', 'no_lang_code', 1, 'https://ror.org/01a3w2x24 Magadh University मगध विश्वविद्यालय'), (26115, 'https://ror.org/01a3wy042', 'es', 1, 'https://ror.org/01a3wy042 Fundación Vía Libre'), (26116, 'https://ror.org/01a4bey28', 'en', 1, 'https://ror.org/01a4bey28 Polish Open University Wyższa Szkoła Zarządzania'), (26117, 'https://ror.org/01a4tb013', 'en', 1, 'https://ror.org/01a4tb013 World Turtle Trust'), (26118, 'https://ror.org/01a4wvs18', 'en', 1, 'https://ror.org/01a4wvs18 Eastern Liaoning University 辽东学院'), (26119, 'https://ror.org/01a6gjq30', 'id', 1, 'https://ror.org/01a6gjq30 Universitas Methodist Indonesia'), (26120, 'https://ror.org/01a7snz60', 'en', 1, 'https://ror.org/01a7snz60 Hochschule für Fernsehen und Film München University of Television and Film Munich'), (26121, 'https://ror.org/01a9q0j25', 'en', 1, 'https://ror.org/01a9q0j25 Enoch Pratt Free Library'), (26122, 'https://ror.org/01aa0f770', 'en', 1, 'https://ror.org/01aa0f770 Archaeology Society of Staten Island'), (26123, 'https://ror.org/01aa4jj71', 'en', 1, 'https://ror.org/01aa4jj71 Internacionalni univerzitet u Sarajevu International University of Sarajevo Međunarodno sveučilište u Sarajevu'), (26124, 'https://ror.org/01aa9v197', 'no_lang_code', 1, 'https://ror.org/01aa9v197 Zbrojovka Vsetín (Czechia)'), (26125, 'https://ror.org/01aacw488', 'en', 1, 'https://ror.org/01aacw488 Historic St. Mary’s City Commission'), (26126, 'https://ror.org/01aadv713', 'en', 1, 'https://ror.org/01aadv713 Herzegovina University Sveučilište Hercegovina'), (26127, 'https://ror.org/01abaah21', 'en', 1, 'https://ror.org/01abaah21 Học viện Nông nghiệp Việt Nam Université d''agriculture de hanoï Vietnam National University of Agriculture'), (26128, 'https://ror.org/01abd7j14', 'cs', 1, 'https://ror.org/01abd7j14 Ústav Archeologické Památkové Péče Severozápadních Čech'), (26129, 'https://ror.org/01abtgj51', 'en', 1, 'https://ror.org/01abtgj51 Gandhigram Rural Institute ग्राँधीग्राम ग्रामीण संस्थान காந்தி கிராமம் கிராமியப் பல்கலைக்கழகம் ഗാന്ധിഗ്രാം കല്പിത സർവ്വകലാശാല'), (26130, 'https://ror.org/01aebfd38', 'no_lang_code', 1, 'https://ror.org/01aebfd38 Ortep (Czechia)'), (26131, 'https://ror.org/01aepry57', 'en', 1, 'https://ror.org/01aepry57 AlMughtaribeen University جامعة المغتربين'), (26132, 'https://ror.org/01afz1h27', 'en', 1, 'https://ror.org/01afz1h27 Minnesota State Community and Technical College'), (26133, 'https://ror.org/01agfg023', 'en', 1, 'https://ror.org/01agfg023 Detroit Historical Society'), (26134, 'https://ror.org/01ah0xq26', 'id', 1, 'https://ror.org/01ah0xq26 Universitas Sjakhyakirti'), (26135, 'https://ror.org/01aj86x04', 'en', 1, 'https://ror.org/01aj86x04 National Constitution Center'), (26136, 'https://ror.org/01ak8sk10', 'en', 1, 'https://ror.org/01ak8sk10 Wayne County Community College District'), (26137, 'https://ror.org/01akgs808', 'en', 1, 'https://ror.org/01akgs808 National Transport University Національний транспортний університет'), (26138, 'https://ror.org/01amn0803', 'en', 1, 'https://ror.org/01amn0803 Waljat Colleges of Applied Sciences كليةولجات للعلوم التطبيقية'), (26139, 'https://ror.org/01anxqg21', 'en', 1, 'https://ror.org/01anxqg21 Vyatka State University Вятский государственный университет'), (26140, 'https://ror.org/01apvpc22', 'no_lang_code', 1, 'https://ror.org/01apvpc22 Summa (Czechia)'), (26141, 'https://ror.org/01aq4v448', 'no_lang_code', 1, 'https://ror.org/01aq4v448 Dias Turnov (Czechia)'), (26142, 'https://ror.org/01aqm4b31', 'en', 1, 'https://ror.org/01aqm4b31 Chrysler Museum of Art'), (26143, 'https://ror.org/01asa8g02', 'en', 1, 'https://ror.org/01asa8g02 Tongmyong University 동명 대학교'), (26144, 'https://ror.org/01asxey89', 'en', 1, 'https://ror.org/01asxey89 Please Touch Museum'), (26145, 'https://ror.org/01atxym92', 'en', 1, 'https://ror.org/01atxym92 Peabody Institute Library'), (26146, 'https://ror.org/01avkfv81', 'en', 1, 'https://ror.org/01avkfv81 Baqir Al-Olum University دانشگاه باقرالعلوم'), (26147, 'https://ror.org/01awa7g66', 'en', 1, 'https://ror.org/01awa7g66 Lakeland College'), (26148, 'https://ror.org/01ayynt22', 'en', 1, 'https://ror.org/01ayynt22 Calvert Marine Museum'), (26149, 'https://ror.org/01azf6k87', 'en', 1, 'https://ror.org/01azf6k87 Malcolm X College'), (26150, 'https://ror.org/01b15w051', 'en', 1, 'https://ror.org/01b15w051 Institut Manajemen Telkom Telkom Institute of Management'), (26151, 'https://ror.org/01b1rvg28', 'en', 1, 'https://ror.org/01b1rvg28 Daegu Arts University 대구예술대학교'), (26152, 'https://ror.org/01b33j376', 'en', 1, 'https://ror.org/01b33j376 Academy of Fine Arts in Katowice Akademia Sztuk Pięknych w Katowicach'), (26153, 'https://ror.org/01b54nd92', 'en', 1, 'https://ror.org/01b54nd92 AJINIYOZ NOMIDAGI NUKUS DAVLAT PEDAGOGIKA INSTITUTI Nukus State Pedagogical Institute named after Ajiniyaz'), (26154, 'https://ror.org/01b5krq60', 'en', 1, 'https://ror.org/01b5krq60 Arhoolie Foundation'), (26155, 'https://ror.org/01b8htz39', 'en', 1, 'https://ror.org/01b8htz39 Poltava University of Economics and Trade Полтавский университет экономики и торговли Полтавський університет економіки і торгівлі'), (26156, 'https://ror.org/01b8wwr26', 'no_lang_code', 1, 'https://ror.org/01b8wwr26 University Hospital Center Dr Dragiša Mišović Клиничко-болнички центар Др Драгиша Мишовић-Дедиње'), (26157, 'https://ror.org/01ba09j13', 'no_lang_code', 1, 'https://ror.org/01ba09j13 Edinburgh Instruments (United Kingdom)'), (26158, 'https://ror.org/01bawjd60', 'en', 1, 'https://ror.org/01bawjd60 Municipal Art Society of New York'), (26159, 'https://ror.org/01bb96d76', 'id', 1, 'https://ror.org/01bb96d76 Universitas Musi Rawas'), (26160, 'https://ror.org/01bdmvf66', 'id', 1, 'https://ror.org/01bdmvf66 Institut Teknologi Nasional Malang'), (26161, 'https://ror.org/01bf2c792', 'no_lang_code', 1, 'https://ror.org/01bf2c792 ING Corporation (Czechia)'), (26162, 'https://ror.org/01bgnmj50', 'en', 1, 'https://ror.org/01bgnmj50 Bryan College'), (26163, 'https://ror.org/01bhqx716', 'en', 1, 'https://ror.org/01bhqx716 Moscow New Law Institute Московский Новый Юридический Институт'), (26164, 'https://ror.org/01bjw7k75', 'en', 1, 'https://ror.org/01bjw7k75 Gelato University'), (26165, 'https://ror.org/01bkha031', 'en', 1, 'https://ror.org/01bkha031 International University in Moscow Международный университет в Москве'), (26166, 'https://ror.org/01bmg2a15', 'en', 1, 'https://ror.org/01bmg2a15 Islom Karimov nomidagi Toshkent davlat texnika universiteti Tashkent State Technical University named after Islam Karimov'), (26167, 'https://ror.org/01bnbne13', 'en', 1, 'https://ror.org/01bnbne13 Rochester Hills Public Library'), (26168, 'https://ror.org/01bndk311', 'en', 1, 'https://ror.org/01bndk311 Berkeley Public Library'), (26169, 'https://ror.org/01bp4wd47', 'en', 1, 'https://ror.org/01bp4wd47 Aklan State University'), (26170, 'https://ror.org/01bq0zt34', 'no_lang_code', 1, 'https://ror.org/01bq0zt34 HVM Plasma (Czechia)'), (26171, 'https://ror.org/01bq81t66', 'en', 1, 'https://ror.org/01bq81t66 Philippine Women''s University'), (26172, 'https://ror.org/01bt5mj78', 'en', 1, 'https://ror.org/01bt5mj78 Quchan University of Advanced Technology دانشگاه مهندسی فناوریهای نوین قوچان'), (26173, 'https://ror.org/01bw8k626', 'no_lang_code', 1, 'https://ror.org/01bw8k626 SHM (Czechia)'), (26174, 'https://ror.org/01bwbjs64', 'id', 1, 'https://ror.org/01bwbjs64 Universitas Katolik Santo Thomas'), (26175, 'https://ror.org/01bx6mz39', 'no_lang_code', 1, 'https://ror.org/01bx6mz39 Dekonta (Czechia)'), (26176, 'https://ror.org/01bxsr356', 'en', 1, 'https://ror.org/01bxsr356 Hansei University 한세대학교'), (26177, 'https://ror.org/01bz4gq06', 'en', 1, 'https://ror.org/01bz4gq06 University of Management TISBI Университет Управления "ТИСБИ"'), (26178, 'https://ror.org/01bzvkv54', 'en', 1, 'https://ror.org/01bzvkv54 Chugye University for the Arts 추계예술대학교'), (26179, 'https://ror.org/01c07rv55', 'en', 1, 'https://ror.org/01c07rv55 Spring Lake District Library'), (26180, 'https://ror.org/01c2b7840', 'en', 1, 'https://ror.org/01c2b7840 Center for Anti-Slavery Studies'), (26181, 'https://ror.org/01c2d8v48', 'en', 1, 'https://ror.org/01c2d8v48 International Association for Continuing Engineering Education ИНСТИТУТ МЕНЕДЖМЕНТА И РЫНКА'), (26182, 'https://ror.org/01c2m5m96', 'en', 1, 'https://ror.org/01c2m5m96 Alaska State Library'), (26183, 'https://ror.org/01c3xmp59', 'en', 1, 'https://ror.org/01c3xmp59 State University of Land Use Planning Государственный университет по землеустройству'), (26184, 'https://ror.org/01c4p4327', 'id', 1, 'https://ror.org/01c4p4327 Universitas Darwan Ali'), (26185, 'https://ror.org/01c5aqg65', 'en', 1, 'https://ror.org/01c5aqg65 Bulacan State University Pamantasang Pampamahalaang Bulacan'), (26186, 'https://ror.org/01c81a459', 'en', 1, 'https://ror.org/01c81a459 Holy Name University'), (26187, 'https://ror.org/01cayw543', 'en', 1, 'https://ror.org/01cayw543 North Dakota Superintendent of Public Instruction'), (26188, 'https://ror.org/01ccvyq03', 'en', 1, 'https://ror.org/01ccvyq03 Gretsa University'), (26189, 'https://ror.org/01cczbd45', 'no_lang_code', 1, 'https://ror.org/01cczbd45 PrimeCell Therapeutics (Czechia)'), (26190, 'https://ror.org/01cewnk49', 'no_lang_code', 1, 'https://ror.org/01cewnk49 Associated British Foods (United Kingdom)'), (26191, 'https://ror.org/01cg6kh39', 'en', 1, 'https://ror.org/01cg6kh39 Far Eastern University มหาวิทยาลัยฟาร์อีสเทอร์น'), (26192, 'https://ror.org/01ch6q924', 'en', 1, 'https://ror.org/01ch6q924 Globis University Graduate School of Management グロービス経営大学院大学'), (26193, 'https://ror.org/01chwg263', 'en', 1, 'https://ror.org/01chwg263 St. George''s School'), (26194, 'https://ror.org/01cj4g713', 'no_lang_code', 1, 'https://ror.org/01cj4g713 Ashiwi Awan Museum and Heritage Center'), (26195, 'https://ror.org/01cn1fp33', 'en', 1, 'https://ror.org/01cn1fp33 Hibbing Public Library'), (26196, 'https://ror.org/01cnqpt53', 'en', 1, 'https://ror.org/01cnqpt53 Jain University'), (26197, 'https://ror.org/01crwkz66', 'en', 1, 'https://ror.org/01crwkz66 Fatoni University มหาวิทยาลัยฟาฏอนี'), (26198, 'https://ror.org/01ct2zf81', 'en', 1, 'https://ror.org/01ct2zf81 North Dakota State Railroad Museum'), (26199, 'https://ror.org/01cxrck43', 'en', 1, 'https://ror.org/01cxrck43 Connecticut River Joint Commissions'), (26200, 'https://ror.org/01cyq8n55', 'en', 1, 'https://ror.org/01cyq8n55 Asia University 亜細亜大学'), (26201, 'https://ror.org/01cyvd251', 'pl', 1, 'https://ror.org/01cyvd251 Wyższa Szkoła Zarządzania i Administracji w Opolu'), (26202, 'https://ror.org/01d0v9064', 'en', 1, 'https://ror.org/01d0v9064 Virginia Department of Conservation and Recreation'), (26203, 'https://ror.org/01d1mtx18', 'en', 1, 'https://ror.org/01d1mtx18 Stillwater Public Library'), (26204, 'https://ror.org/01d30w739', 'en', 1, 'https://ror.org/01d30w739 Deutsche Universität für Verwaltungswissenschaften Speyer German University of Administrative Sciences'), (26205, 'https://ror.org/01d357781', 'en', 1, 'https://ror.org/01d357781 Institut Bisnis dan Informatika Kwik Kian Gie Kwik Kian Gie School of Business'), (26206, 'https://ror.org/01d3jsk91', 'en', 1, 'https://ror.org/01d3jsk91 Phetchaburi Rajabhat University มหาวิทยาลัยราชภัฏเพชรบุรี'), (26207, 'https://ror.org/01d3tej48', 'en', 1, 'https://ror.org/01d3tej48 University of New York Tirana'), (26208, 'https://ror.org/01d4s2403', 'en', 1, 'https://ror.org/01d4s2403 Prince William County Public Schools'), (26209, 'https://ror.org/01d5d9q11', 'no_lang_code', 1, 'https://ror.org/01d5d9q11 Vodohospodářský Rozvoj a Výstavba'), (26210, 'https://ror.org/01d606394', 'en', 1, 'https://ror.org/01d606394 Shoshone Episcopal Mission'), (26211, 'https://ror.org/01d6nwa88', 'no_lang_code', 1, 'https://ror.org/01d6nwa88 Hajvery University جامعہ ہجویری'), (26212, 'https://ror.org/01d763831', 'en', 1, 'https://ror.org/01d763831 Siberian State Industrial University Сибирский государственный индустриальный университет'), (26213, 'https://ror.org/01d81q939', 'en', 1, 'https://ror.org/01d81q939 National Open University 國立空中大學'), (26214, 'https://ror.org/01dafqj83', 'en', 1, 'https://ror.org/01dafqj83 Japan Lutheran College ルーテル学院大学'), (26215, 'https://ror.org/01dbbhw70', 'en', 1, 'https://ror.org/01dbbhw70 Bashkir Academy of Public Administration and Management under the Head of the Republic of Bashkortostan Башкирская академия государственной службы и управления при Главе Республики Башкортостан'), (26216, 'https://ror.org/01dfpjy51', 'en', 1, 'https://ror.org/01dfpjy51 Gulf University كلية البحرين الجامعية'), (26217, 'https://ror.org/01dfsmx55', 'en', 1, 'https://ror.org/01dfsmx55 De Anza College'), (26218, 'https://ror.org/01dgmap57', 'en', 1, 'https://ror.org/01dgmap57 Saskatchewan Registered Nurses Association'), (26219, 'https://ror.org/01djkf495', 'en', 1, 'https://ror.org/01djkf495 BaiCheng Normal University 白城师范学院'), (26220, 'https://ror.org/01dk2f490', 'en', 1, 'https://ror.org/01dk2f490 Newton Public Schools'), (26221, 'https://ror.org/01dnm0v11', 'en', 1, 'https://ror.org/01dnm0v11 Historic Northampton'), (26222, 'https://ror.org/01drxfn09', 'en', 1, 'https://ror.org/01drxfn09 American Film Institute'), (26223, 'https://ror.org/01dssfj41', 'en', 1, 'https://ror.org/01dssfj41 University Memory and Aging Center'), (26224, 'https://ror.org/01dtz7721', 'en', 1, 'https://ror.org/01dtz7721 Shelburne Museum'), (26225, 'https://ror.org/01dv2a529', 'no_lang_code', 1, 'https://ror.org/01dv2a529 University of Novi Pazar Univerzitet u Novom Pazaru'), (26226, 'https://ror.org/01dw2jw22', 'en', 1, 'https://ror.org/01dw2jw22 National Museum of African Art'), (26227, 'https://ror.org/01e0a6275', 'no_lang_code', 1, 'https://ror.org/01e0a6275 Military Research Institute Vojenský Výzkumný Ústav'), (26228, 'https://ror.org/01e0ns064', 'en', 1, 'https://ror.org/01e0ns064 University of East يونيورسٽي آف انجنيئرڱ، آرٽس، سائنس اينڊ ٽيڪنالاجي'), (26229, 'https://ror.org/01e0p8e37', 'en', 1, 'https://ror.org/01e0p8e37 China Youth University for Political Sciences 中国青年政治学院'), (26230, 'https://ror.org/01e0stw12', 'en', 1, 'https://ror.org/01e0stw12 Universitatea de Vest Vasile Goldiș din Arad Vasile Goldis Western University of Arad'), (26231, 'https://ror.org/01e15b368', 'no_lang_code', 1, 'https://ror.org/01e15b368 ÚVP Běchovice (Czechia)'), (26232, 'https://ror.org/01e249g49', 'en', 1, 'https://ror.org/01e249g49 Point University'), (26233, 'https://ror.org/01e3ztx72', 'en', 1, 'https://ror.org/01e3ztx72 Oregon Zoo'), (26234, 'https://ror.org/01e438y82', 'en', 1, 'https://ror.org/01e438y82 White House Historical Association'), (26235, 'https://ror.org/01e5xrj50', 'no_lang_code', 1, 'https://ror.org/01e5xrj50 Elko Ep (Czechia)'), (26236, 'https://ror.org/01e6gz331', 'en', 1, 'https://ror.org/01e6gz331 Armenian State University of Economics Հայաստանի պետական տնտեսագիտական համալսարան'), (26237, 'https://ror.org/01e8b7f16', 'en', 1, 'https://ror.org/01e8b7f16 La Salle University Pamantasang La Salle ng Ozamis'), (26238, 'https://ror.org/01e8byp18', 'en', 1, 'https://ror.org/01e8byp18 Pamantasang Kristiyano ng Pilipinas Philippine Christian University'), (26239, 'https://ror.org/01e8sd806', 'en', 1, 'https://ror.org/01e8sd806 Himalayan University'), (26240, 'https://ror.org/01e9k5563', 'en', 1, 'https://ror.org/01e9k5563 New Hanover County Public Library'), (26241, 'https://ror.org/01ea9yh77', 'en', 1, 'https://ror.org/01ea9yh77 Magic Valley Arts Council'), (26242, 'https://ror.org/01ede0v48', 'en', 1, 'https://ror.org/01ede0v48 Potomac River Fisheries Commission'), (26243, 'https://ror.org/01edg5683', 'en', 1, 'https://ror.org/01edg5683 Nevada Department of Tourism and Cultural Affairs'), (26244, 'https://ror.org/01efqy167', 'en', 1, 'https://ror.org/01efqy167 Pambansang Pamantasan ng Tarlac Tarlac State University'), (26245, 'https://ror.org/01egc7v56', 'en', 1, 'https://ror.org/01egc7v56 Camden County Historical Society'), (26246, 'https://ror.org/01egvzq87', 'en', 1, 'https://ror.org/01egvzq87 Louisiana Baptist University'), (26247, 'https://ror.org/01epw0x06', 'en', 1, 'https://ror.org/01epw0x06 Fahd bin Sultan University جامعة الأمير فهد بن سلطان'), (26248, 'https://ror.org/01eq17163', 'en', 1, 'https://ror.org/01eq17163 James V Brown Library'), (26249, 'https://ror.org/01eqdrh28', 'en', 1, 'https://ror.org/01eqdrh28 Thousand Islands Museum'), (26250, 'https://ror.org/01eqf3s47', 'en', 1, 'https://ror.org/01eqf3s47 Tyumen State Academy of World Economics, Management and Law Тюменская государственная академия мировой экономики, управления и права'), (26251, 'https://ror.org/01erfz980', 'en', 1, 'https://ror.org/01erfz980 Donbas State Technical University Донбасский государственный технический университет Донбаський державний технічний університет'), (26252, 'https://ror.org/01etj5m31', 'en', 1, 'https://ror.org/01etj5m31 Oregon Department of State Lands'), (26253, 'https://ror.org/01etn5q21', 'en', 1, 'https://ror.org/01etn5q21 Tokyo Fuji University 東京富士大学'), (26254, 'https://ror.org/01etvnv23', 'en', 1, 'https://ror.org/01etvnv23 Polish University Abroad'), (26255, 'https://ror.org/01ewram45', 'en', 1, 'https://ror.org/01ewram45 International University of Business and Law Міжнародний університет бізнесу і права'), (26256, 'https://ror.org/01ewxsd47', 'en', 1, 'https://ror.org/01ewxsd47 Russian State Vocational Pedagogical University Российский государственный профессионально-педагогический университет'), (26257, 'https://ror.org/01exjg943', 'no_lang_code', 1, 'https://ror.org/01exjg943 Fukuyama Heisei University 福山平成大学'), (26258, 'https://ror.org/01ezcv773', 'en', 1, 'https://ror.org/01ezcv773 Interregional Academy of Personnel Management Międzyregionalna Akademia Zarządzania Personelem w Kijowie Межрегиональная академия управления персоналом Міжрегіональна академія управління персоналом'), (26259, 'https://ror.org/01f1fsr30', 'en', 1, 'https://ror.org/01f1fsr30 Saigon University Trường Đại học Sài Gòn Université de saigon 西贡大学'), (26260, 'https://ror.org/01f1ses45', 'en', 1, 'https://ror.org/01f1ses45 Ivano-Frankivsk National Technical University of Oil and Gas Івано-Франківський національний технічний університет нафти і газу'), (26261, 'https://ror.org/01f3q9353', 'en', 1, 'https://ror.org/01f3q9353 Cedar Rapids Public Library'), (26262, 'https://ror.org/01f42q428', 'en', 1, 'https://ror.org/01f42q428 Center for Asian American Media'), (26263, 'https://ror.org/01f4b0a81', 'en', 1, 'https://ror.org/01f4b0a81 Friends of the Saint Paul Public Library'), (26264, 'https://ror.org/01f51gm92', 'en', 1, 'https://ror.org/01f51gm92 Mindanao State University Naawan'), (26265, 'https://ror.org/01f5z6908', 'en', 1, 'https://ror.org/01f5z6908 Massachusetts Archives'), (26266, 'https://ror.org/01far4758', 'en', 1, 'https://ror.org/01far4758 Delaware County Historical Association'), (26267, 'https://ror.org/01favr389', 'en', 1, 'https://ror.org/01favr389 Saint Petersburg State University of Architecture and Civil Engineering Санкт-Петербургский государственный архитектурно-строительный университет'), (26268, 'https://ror.org/01fazjm63', 'en', 1, 'https://ror.org/01fazjm63 Faculté pontificale de théologie saint-bonaventure Pontifical University of St. Bonaventure Pontificia Facoltà Teologica San Bonaventura'), (26269, 'https://ror.org/01fcxf261', 'en', 1, 'https://ror.org/01fcxf261 Caulfield Hospital'), (26270, 'https://ror.org/01feqhy89', 'en', 1, 'https://ror.org/01feqhy89 Campbell Center for Historic Preservation Studies'), (26271, 'https://ror.org/01ff1ev27', 'en', 1, 'https://ror.org/01ff1ev27 University of Kamina Université de Kamina'), (26272, 'https://ror.org/01ffhnr70', 'en', 1, 'https://ror.org/01ffhnr70 Cambridge University Health Partners'), (26273, 'https://ror.org/01fjc2t47', 'no_lang_code', 1, 'https://ror.org/01fjc2t47 Stavus (Czechia)'), (26274, 'https://ror.org/01fjdq469', 'en', 1, 'https://ror.org/01fjdq469 John Cabot University'), (26275, 'https://ror.org/01fmz7t89', 'en', 1, 'https://ror.org/01fmz7t89 Lesgaft National State University of Physical Education, Sport and Health Национальный государственный университет физической культуры, спорта и здоровья им. Лесгафта'), (26276, 'https://ror.org/01fnz6z30', 'id', 1, 'https://ror.org/01fnz6z30 Universitas Islam Jember'), (26277, 'https://ror.org/01fqmwr23', 'en', 1, 'https://ror.org/01fqmwr23 Czech Moravian Psychological Society, Czech-Moravian Psychological Society'), (26278, 'https://ror.org/01fwksc03', 'en', 1, 'https://ror.org/01fwksc03 Far East University'), (26279, 'https://ror.org/01fxfpm96', 'en', 1, 'https://ror.org/01fxfpm96 Techno Global University टेक्नो ग्लोबल युनिवर्सिटी, सिरोंज'), (26280, 'https://ror.org/01fyk0v41', 'en', 1, 'https://ror.org/01fyk0v41 Shimonoseki City University 下関市立大学'), (26281, 'https://ror.org/01fyxr563', 'no_lang_code', 1, 'https://ror.org/01fyxr563 DHA Suffa University ڊي ايڇ اي سفا يونيورسٽي'), (26282, 'https://ror.org/01fzwn388', 'no_lang_code', 1, 'https://ror.org/01fzwn388 Józef Piłsudski Institute of America'), (26283, 'https://ror.org/01g0ns998', 'en', 1, 'https://ror.org/01g0ns998 Private University of Trujillo Universidad Privada de Trujillo'), (26284, 'https://ror.org/01g0sat63', 'en', 1, 'https://ror.org/01g0sat63 Salam University سلام پوهنتون پوهنتون سلام)'), (26285, 'https://ror.org/01g14tq52', 'en', 1, 'https://ror.org/01g14tq52 State University of Bangladesh স্টেট ইউনিভার্সিটি অফ বাংলাদেশ'), (26286, 'https://ror.org/01g1t6g78', 'en', 1, 'https://ror.org/01g1t6g78 Whitney Museum of American Art'), (26287, 'https://ror.org/01g5vrq32', 'en', 1, 'https://ror.org/01g5vrq32 Cincinnati Fire Museum'), (26288, 'https://ror.org/01g9q1f24', 'id', 1, 'https://ror.org/01g9q1f24 Universitas Informatika dan Bisnis Indonesia'), (26289, 'https://ror.org/01ga8zd22', 'en', 1, 'https://ror.org/01ga8zd22 Andijan State Medical Institute Andijon Davlat Tibbiyot Instituti'), (26290, 'https://ror.org/01gcnxt20', 'no_lang_code', 1, 'https://ror.org/01gcnxt20 Gwangju University 광주대학교'), (26291, 'https://ror.org/01gdhra86', 'en', 1, 'https://ror.org/01gdhra86 Hewlett Woodmere Public Library'), (26292, 'https://ror.org/01gevtd65', 'en', 1, 'https://ror.org/01gevtd65 Electronic Literature Organization'), (26293, 'https://ror.org/01gffqk05', 'en', 1, 'https://ror.org/01gffqk05 Victorian Society in America'), (26294, 'https://ror.org/01gfny940', 'en', 1, 'https://ror.org/01gfny940 Miyazaki Municipal University 宮崎公立大学'), (26295, 'https://ror.org/01gktk238', 'en', 1, 'https://ror.org/01gktk238 Velikie Luki State Academy of Physical Culture and Sports Великолукская государственная академия физической культуры и спорта'); INSERT INTO `rors` VALUES (26296, 'https://ror.org/01gm99y36', 'hi', 1, 'https://ror.org/01gm99y36 Gujarat Vidyapith, गुजरात विद्यापीठ ગુજરાત વિદ્યાપીઠ குஜராத் வித்யாபீடம்'), (26297, 'https://ror.org/01gneb536', 'en', 1, 'https://ror.org/01gneb536 Wolf Hollow Wildlife Rehabilitation Center'), (26298, 'https://ror.org/01gpjtj97', 'en', 1, 'https://ror.org/01gpjtj97 Delhi Historical Society'), (26299, 'https://ror.org/01gpyzk95', 'en', 1, 'https://ror.org/01gpyzk95 Samudra University Universitas Samudra'), (26300, 'https://ror.org/01gq85p89', 'no_lang_code', 1, 'https://ror.org/01gq85p89 RPC Promens (Czechia)'), (26301, 'https://ror.org/01gq8b646', 'en', 1, 'https://ror.org/01gq8b646 Griot Museum of Black History & Culture'), (26302, 'https://ror.org/01gtgc095', 'en', 1, 'https://ror.org/01gtgc095 Kyoei University 共栄大学'), (26303, 'https://ror.org/01gtvs751', 'no_lang_code', 1, 'https://ror.org/01gtvs751 Ahmet Yesevi University Международный казахско-турецкий университет имени Х. А. Яссави Халықаралық қазақ-түрік университеті'), (26304, 'https://ror.org/01gw7yt49', 'en', 1, 'https://ror.org/01gw7yt49 Samara Institute of Management Самарский институт управления'), (26305, 'https://ror.org/01gwmqw64', 'en', 1, 'https://ror.org/01gwmqw64 Mandalay Technological University မန္တလေးနည်းပညာတက္ကသိုလ်'), (26306, 'https://ror.org/01gwrbq98', 'id', 1, 'https://ror.org/01gwrbq98 Institut Pertanian Stiper'), (26307, 'https://ror.org/01gz5zx42', 'it', 1, 'https://ror.org/01gz5zx42 Università per Stranieri Dante Alighieri Université pour Étrangers de Reggio de Calabre'), (26308, 'https://ror.org/01gzemj61', 'en', 1, 'https://ror.org/01gzemj61 Liepājas Universitāte University of Liepāja'), (26309, 'https://ror.org/01h2mws14', 'en', 1, 'https://ror.org/01h2mws14 Chicago Film Archives'), (26310, 'https://ror.org/01h37vy24', 'en', 1, 'https://ror.org/01h37vy24 Wake County Public Libraries'), (26311, 'https://ror.org/01h4b7m22', 'en', 1, 'https://ror.org/01h4b7m22 Litchfield Historical Society'), (26312, 'https://ror.org/01h55mk94', 'en', 1, 'https://ror.org/01h55mk94 Aryabhatta Knowledge University आर्यभट्ट ज्ञान विश्वविद्यालय'), (26313, 'https://ror.org/01h6cr239', 'en', 1, 'https://ror.org/01h6cr239 International University of Kagoshima 鹿児島国際大学'), (26314, 'https://ror.org/01h7dw523', 'en', 1, 'https://ror.org/01h7dw523 South Street Seaport Museum'), (26315, 'https://ror.org/01h8c9041', 'en', 1, 'https://ror.org/01h8c9041 Syrian Private University الجامعة السورية الخاصة'), (26316, 'https://ror.org/01h8y6y39', 'en', 1, 'https://ror.org/01h8y6y39 Panzhihua University 攀枝花学院'), (26317, 'https://ror.org/01h9zz434', 'en', 1, 'https://ror.org/01h9zz434 Japanese Red Cross Kyushu International College of Nursing 日本赤十字九州国際看護大学'), (26318, 'https://ror.org/01hcvr073', 'en', 1, 'https://ror.org/01hcvr073 Ranchi University रांची विश्वविद्यालय'), (26319, 'https://ror.org/01hd68v37', 'en', 1, 'https://ror.org/01hd68v37 Ittihad University'), (26320, 'https://ror.org/01hdcfr51', 'en', 1, 'https://ror.org/01hdcfr51 Islamic Azad University, Komijan Branch دانشگاه آزاد اسلامی کمیجان'), (26321, 'https://ror.org/01hdkb925', 'en', 1, 'https://ror.org/01hdkb925 Jožef Stefan International Postgraduate School'), (26322, 'https://ror.org/01hgeey64', 'en', 1, 'https://ror.org/01hgeey64 Novosibirsk State Agricultural University Новосибирский государственный аграрный университет'), (26323, 'https://ror.org/01hhetk66', 'no_lang_code', 1, 'https://ror.org/01hhetk66 Kavikulaguru Kalidas Sanskrit University कविकुलगुरु कालिदास संस्कृत विश्वविद्यालय'), (26324, 'https://ror.org/01hhj0x41', 'en', 1, 'https://ror.org/01hhj0x41 Biznesa augstskola Turība Turība University'), (26325, 'https://ror.org/01hnnne31', 'en', 1, 'https://ror.org/01hnnne31 Siddhartha University'), (26326, 'https://ror.org/01hq9q866', 'no_lang_code', 1, 'https://ror.org/01hq9q866 Hirosaki Gakuin University 弘前学院大学'), (26327, 'https://ror.org/01hvh9s85', 'en', 1, 'https://ror.org/01hvh9s85 Jewish Museum of Maryland'), (26328, 'https://ror.org/01hw7a574', 'en', 1, 'https://ror.org/01hw7a574 Vermilion Parish Library'), (26329, 'https://ror.org/01hxe3g21', 'en', 1, 'https://ror.org/01hxe3g21 Hanoi University of Culture Đại học Văn hóa Hà Nội'), (26330, 'https://ror.org/01hzjbc83', 'no_lang_code', 1, 'https://ror.org/01hzjbc83 TÜV SÜD (Czechia)'), (26331, 'https://ror.org/01j11yw06', 'en', 1, 'https://ror.org/01j11yw06 ConVida - Popular Arts of the Americas'), (26332, 'https://ror.org/01j1wt659', 'id', 1, 'https://ror.org/01j1wt659 Universitas Muhammadiyah Malang'), (26333, 'https://ror.org/01j33wn03', 'en', 1, 'https://ror.org/01j33wn03 Andrew County Museum'), (26334, 'https://ror.org/01j5wgc53', 'id', 1, 'https://ror.org/01j5wgc53 Universitas Djuanda'), (26335, 'https://ror.org/01j8m3g31', 'en', 1, 'https://ror.org/01j8m3g31 Brookings Public Library'), (26336, 'https://ror.org/01jaj0217', 'en', 1, 'https://ror.org/01jaj0217 Manchester Historic Association'), (26337, 'https://ror.org/01jbjw881', 'en', 1, 'https://ror.org/01jbjw881 Youngdong University 영동대학교'), (26338, 'https://ror.org/01jc1xp35', 'en', 1, 'https://ror.org/01jc1xp35 Northern University Bangladesh নর্দার্ন ইউনিভার্সিটি'), (26339, 'https://ror.org/01jc4j574', 'en', 1, 'https://ror.org/01jc4j574 Chaudhary Devi Lal University चौधरी देवी लाल युनिवर्सिटी'), (26340, 'https://ror.org/01jcts315', 'no_lang_code', 1, 'https://ror.org/01jcts315 Green Gas (Czechia)'), (26341, 'https://ror.org/01jdxxe39', 'en', 1, 'https://ror.org/01jdxxe39 Central Bicol State University of Agriculture'), (26342, 'https://ror.org/01jdzvf98', 'en', 1, 'https://ror.org/01jdzvf98 Pamantasang Estado ng Pangasinan Pangasinan State University'), (26343, 'https://ror.org/01jfxry94', 'en', 1, 'https://ror.org/01jfxry94 Worcester Public Library'), (26344, 'https://ror.org/01jk54m37', 'en', 1, 'https://ror.org/01jk54m37 WTTW'), (26345, 'https://ror.org/01jm65960', 'en', 1, 'https://ror.org/01jm65960 Academia de Muzică Gheorghe Dima Gheorghe Dima Music Academy'), (26346, 'https://ror.org/01jptvt03', 'no_lang_code', 1, 'https://ror.org/01jptvt03 Moravian Museum Moravské Zemské Muzeum'), (26347, 'https://ror.org/01jqhew41', 'no_lang_code', 1, 'https://ror.org/01jqhew41 Svar Life Science (Netherlands)'), (26348, 'https://ror.org/01jra8x56', 'id', 1, 'https://ror.org/01jra8x56 Institut Kesenian Jakarta'), (26349, 'https://ror.org/01js4x705', 'en', 1, 'https://ror.org/01js4x705 Försvarshögskolan Maanpuolustuskorkeakoulu National Defence University'), (26350, 'https://ror.org/01jseqj92', 'en', 1, 'https://ror.org/01jseqj92 Elkhorn Slough Foundation'), (26351, 'https://ror.org/01jsqmy50', 'en', 1, 'https://ror.org/01jsqmy50 Longmont Museum'), (26352, 'https://ror.org/01jswq303', 'en', 1, 'https://ror.org/01jswq303 Spartan Health Sciences University'), (26353, 'https://ror.org/01jt32312', 'en', 1, 'https://ror.org/01jt32312 Uiduk University 위덕대학교'), (26354, 'https://ror.org/01jvfs579', 'no_lang_code', 1, 'https://ror.org/01jvfs579 MEgA Measuring Energy Apparatus (Czechia)'), (26355, 'https://ror.org/01jwftv68', 'en', 1, 'https://ror.org/01jwftv68 San Joaquin County Historical Society & Museum'), (26356, 'https://ror.org/01jwyc227', 'no_lang_code', 1, 'https://ror.org/01jwyc227 VOP (Czechia)'), (26357, 'https://ror.org/01jxtqc31', 'en', 1, 'https://ror.org/01jxtqc31 Trường Đại học Việt - Đức Vietnamese-German University'), (26358, 'https://ror.org/01jy7a082', 'en', 1, 'https://ror.org/01jy7a082 Institute for Languages and Cultures Leo Tolstoy Институт языков и культур имени Льва Толстого'), (26359, 'https://ror.org/01jyn4427', 'en', 1, 'https://ror.org/01jyn4427 Cyprus College of Art'), (26360, 'https://ror.org/01jyq0293', 'en', 1, 'https://ror.org/01jyq0293 Tennessee Historical Society'), (26361, 'https://ror.org/01k073v05', 'en', 1, 'https://ror.org/01k073v05 Macon County History Museum'), (26362, 'https://ror.org/01k0nxd36', 'en', 1, 'https://ror.org/01k0nxd36 Gulf of Maine Lobster Foundation'), (26363, 'https://ror.org/01k12f283', 'no_lang_code', 1, 'https://ror.org/01k12f283 Dhurakij Pundit University มหาวิทยาลัยธุรกิจบัณฑิตย์'), (26364, 'https://ror.org/01k1ffv36', 'en', 1, 'https://ror.org/01k1ffv36 Finance and Economics Institute of Tajikistan'), (26365, 'https://ror.org/01k21s024', 'en', 1, 'https://ror.org/01k21s024 Caldwell West Caldwell Public Schools'), (26366, 'https://ror.org/01k5wet88', 'en', 1, 'https://ror.org/01k5wet88 Institute of Theology of Estonian Evangelical Lutheran Church'), (26367, 'https://ror.org/01k604769', 'en', 1, 'https://ror.org/01k604769 University of Santo Tomas–Legazpi'), (26368, 'https://ror.org/01k7msp60', 'en', 1, 'https://ror.org/01k7msp60 Leominster Public Library'), (26369, 'https://ror.org/01k93bx74', 'no_lang_code', 1, 'https://ror.org/01k93bx74 Borcad (Czechia)'), (26370, 'https://ror.org/01k9bj230', 'en', 1, 'https://ror.org/01k9bj230 Jissen Women''s University 実践女子大学'), (26371, 'https://ror.org/01k9bqa11', 'en', 1, 'https://ror.org/01k9bqa11 Ehime Prefectural University of Health Science 愛媛県立医療技術大学'), (26372, 'https://ror.org/01ka28180', 'en', 1, 'https://ror.org/01ka28180 Massachusetts College of Liberal Arts'), (26373, 'https://ror.org/01kbgns38', 'en', 1, 'https://ror.org/01kbgns38 Coastal Society'), (26374, 'https://ror.org/01kbvt179', 'en', 1, 'https://ror.org/01kbvt179 New Mexico State University Carlsbad'), (26375, 'https://ror.org/01kbx8t50', 'pl', 1, 'https://ror.org/01kbx8t50 Wyższa Szkoła Handlu i Finansów Międzynarodowych im. Fryderyka Skarbka'), (26376, 'https://ror.org/01kcmgv15', 'en', 1, 'https://ror.org/01kcmgv15 Shakespeare and Company'), (26377, 'https://ror.org/01kdeza40', 'en', 1, 'https://ror.org/01kdeza40 Taipei National University of the Arts 國立臺北藝術大學'), (26378, 'https://ror.org/01kghnd85', 'en', 1, 'https://ror.org/01kghnd85 Czech Society for Oriental Studies'), (26379, 'https://ror.org/01khb1c27', 'en', 1, 'https://ror.org/01khb1c27 Sichuan Conservatory of Music 四川音乐学院'), (26380, 'https://ror.org/01khe0643', 'en', 1, 'https://ror.org/01khe0643 Harapan Bangsa Institute of Technology Institut Teknologi Harapan Bangsa'), (26381, 'https://ror.org/01khmmn16', 'en', 1, 'https://ror.org/01khmmn16 Boston Latin Academy'), (26382, 'https://ror.org/01kk80q05', 'no_lang_code', 1, 'https://ror.org/01kk80q05 Envites (Czechia)'), (26383, 'https://ror.org/01km1t027', 'id', 1, 'https://ror.org/01km1t027 Universitas Pesantren Tinggi Darul Ulum Jombang'), (26384, 'https://ror.org/01km3r089', 'no_lang_code', 1, 'https://ror.org/01km3r089 Lias Vintířov (Czechia)'), (26385, 'https://ror.org/01kn8x502', 'en', 1, 'https://ror.org/01kn8x502 Ural State Agrarian University Федеральное государственное бюджетное образовательное учреждение высшего образования Уральский государственный аграрный университет'), (26386, 'https://ror.org/01kq1we52', 'en', 1, 'https://ror.org/01kq1we52 Eastern Asia University มหาวิทยาลัยอีสเทิร์นเอเชีย'), (26387, 'https://ror.org/01kqsbg21', 'en', 1, 'https://ror.org/01kqsbg21 American Federation of Arts'), (26388, 'https://ror.org/01kr68e52', 'en', 1, 'https://ror.org/01kr68e52 Germantown Historical Society'), (26389, 'https://ror.org/01kt71615', 'en', 1, 'https://ror.org/01kt71615 TOSHKENT TO''QIMACHILIK VA YENGIL SANOAT INSTITUTI Tashkent Institute of Textile and Light Industry ТАШКЕНТСКИЙ ИНСТИТУТ ТЕКСТИЛЬНОЙ И ЛЕГКОЙ ПРОМЫШЛЕННОСТИ'), (26390, 'https://ror.org/01kxpxf76', 'en', 1, 'https://ror.org/01kxpxf76 Yashwantrao Chavan Maharashtra Open University यशवंतराव चव्हाण महाराष्ट्र मुक्त विद्यापीठ'), (26391, 'https://ror.org/01ky50t09', 'pl', 1, 'https://ror.org/01ky50t09 Uczelnia Techniczno-Handlowa im. Heleny Chodkowskiej'), (26392, 'https://ror.org/01kyajw84', 'en', 1, 'https://ror.org/01kyajw84 Pamantasan ng Iloilo University of Iloilo'), (26393, 'https://ror.org/01kyzdy66', 'fr', 1, 'https://ror.org/01kyzdy66 Al Imam Al Ouzai University جامعة الإمام الأوزاعي الإسلامية'), (26394, 'https://ror.org/01m00b434', 'en', 1, 'https://ror.org/01m00b434 Islamic University of Niger Université islamique de say'), (26395, 'https://ror.org/01m0m3p30', 'en', 1, 'https://ror.org/01m0m3p30 Saint Petersburg State Theatre Arts Academy Санкт-Петербургская государственная академия театрального искусства'), (26396, 'https://ror.org/01m20f643', 'en', 1, 'https://ror.org/01m20f643 Voronezh State Technical University ВОРОНЕЖСКИЙ ГОСУДАРСТВЕННЫЙ ТЕХНИЧЕСКИЙ УНИВЕРСИТЕТ'), (26397, 'https://ror.org/01m28kg79', 'en', 1, 'https://ror.org/01m28kg79 Ajloun National University جامعة عجلون الوطنية'), (26398, 'https://ror.org/01m54ds80', 'en', 1, 'https://ror.org/01m54ds80 Cherkasy State Technological University Черкаський державний технологічний університет'), (26399, 'https://ror.org/01m5bd961', 'en', 1, 'https://ror.org/01m5bd961 Cabell County Public Library'), (26400, 'https://ror.org/01m631n05', 'en', 1, 'https://ror.org/01m631n05 Southern Sakhalin Institute of Economics, Law and Computer Science'), (26401, 'https://ror.org/01m67jf71', 'en', 1, 'https://ror.org/01m67jf71 NIILM University नीलम युनिवर्सिटी'), (26402, 'https://ror.org/01m6ap410', 'en', 1, 'https://ror.org/01m6ap410 Universidade de São José University of Saint Joseph 聖若瑟大學'), (26403, 'https://ror.org/01m877795', 'en', 1, 'https://ror.org/01m877795 Museum of Contemporary Art Chicago'), (26404, 'https://ror.org/01m91v580', 'en', 1, 'https://ror.org/01m91v580 Universiti Tun Abdul Razak'), (26405, 'https://ror.org/01m9cz451', 'en', 1, 'https://ror.org/01m9cz451 Tanzania Commission for Universities'), (26406, 'https://ror.org/01mc23556', 'cs', 1, 'https://ror.org/01mc23556 Krajská Nemocnice Liberec'), (26407, 'https://ror.org/01mcrnj60', 'en', 1, 'https://ror.org/01mcrnj60 Majmaah University جامعة المجمعة'), (26408, 'https://ror.org/01md6nx87', 'en', 1, 'https://ror.org/01md6nx87 Samuel Bogumił Linde College of Modern Languages Wyższa Szkoła Języków Obcych im. Samuela Bogumiła Lindego'), (26409, 'https://ror.org/01mebf576', 'en', 1, 'https://ror.org/01mebf576 Voronezh State University of Engineering Technologies Воронежский государственный университет инженерных технологий'), (26410, 'https://ror.org/01mema083', 'en', 1, 'https://ror.org/01mema083 Emirates Aviation University جامعة طيران الامارات'), (26411, 'https://ror.org/01mh73q44', 'en', 1, 'https://ror.org/01mh73q44 Potti Sreeramulu Telugu University தெலுங்கு பல்கலைக்கழகம் పొట్టి శ్రీరాములు తెలుగు విశ్వవిద్యాలయము'), (26412, 'https://ror.org/01mhwy230', 'no_lang_code', 1, 'https://ror.org/01mhwy230 Řepařský Institut Semčice (Czechia)'), (26413, 'https://ror.org/01mj1hb53', 'it', 1, 'https://ror.org/01mj1hb53 Consorzio Interuniversitario per la Ricerca Tecnologica Nucleare'), (26414, 'https://ror.org/01mjqan41', 'en', 1, 'https://ror.org/01mjqan41 Moscow Institute of State Management and Law Московский институт государственного управления и права'), (26415, 'https://ror.org/01mkm2y61', 'en', 1, 'https://ror.org/01mkm2y61 Sri Sai University'), (26416, 'https://ror.org/01mkmmc36', 'no_lang_code', 1, 'https://ror.org/01mkmmc36 Hop Research Institute (Czechia)'), (26417, 'https://ror.org/01mm32049', 'en', 1, 'https://ror.org/01mm32049 Pamantasan ng Lungsod ng Kalookan University of Caloocan City'), (26418, 'https://ror.org/01mmcf932', 'en', 1, 'https://ror.org/01mmcf932 California College of the Arts'), (26419, 'https://ror.org/01mp0jc41', 'en', 1, 'https://ror.org/01mp0jc41 Language Conservancy'), (26420, 'https://ror.org/01mq0zx57', 'en', 1, 'https://ror.org/01mq0zx57 Virgen Milagrosa University Foundation'), (26421, 'https://ror.org/01mqdq746', 'en', 1, 'https://ror.org/01mqdq746 Johnstown Area Heritage Association'), (26422, 'https://ror.org/01mr2n737', 'no_lang_code', 1, 'https://ror.org/01mr2n737 Škoda (Czechia)'), (26423, 'https://ror.org/01msfnj86', 'id', 1, 'https://ror.org/01msfnj86 Universitas Sisingamangaraja XII'), (26424, 'https://ror.org/01mt0cc57', 'en', 1, 'https://ror.org/01mt0cc57 Kiang Wu Nursing College of Macau 澳门江湖护理学院'), (26425, 'https://ror.org/01mt0f775', 'en', 1, 'https://ror.org/01mt0f775 Northwest Straits Foundation'), (26426, 'https://ror.org/01mtmt650', 'no_lang_code', 1, 'https://ror.org/01mtmt650 TTC Telekomunikace (Czechia)'), (26427, 'https://ror.org/01mxx0e62', 'en', 1, 'https://ror.org/01mxx0e62 Hanoi University Trường Đại học Hà Nội Université de hanoï'), (26428, 'https://ror.org/01mys8c02', 'en', 1, 'https://ror.org/01mys8c02 Niigata University of Management 新潟経営大学'), (26429, 'https://ror.org/01mz1bm43', 'id', 1, 'https://ror.org/01mz1bm43 Universitas Flores'), (26430, 'https://ror.org/01mz8f913', 'en', 1, 'https://ror.org/01mz8f913 Abbe Museum'), (26431, 'https://ror.org/01n0ygw36', 'en', 1, 'https://ror.org/01n0ygw36 Slamka Consulting'), (26432, 'https://ror.org/01n0ym997', 'en', 1, 'https://ror.org/01n0ym997 Kaichi International University 開智国際大学'), (26433, 'https://ror.org/01n6wkv11', 'id', 1, 'https://ror.org/01n6wkv11 Universitas Muara Bungo'), (26434, 'https://ror.org/01n7ngw29', 'en', 1, 'https://ror.org/01n7ngw29 NationsUniversity'), (26435, 'https://ror.org/01n7wbg90', 'no_lang_code', 1, 'https://ror.org/01n7wbg90 Higashiosaka College & Higashiosaka Junior College 東大阪大学・東大阪大学短期大学部'), (26436, 'https://ror.org/01n85yk97', 'en', 1, 'https://ror.org/01n85yk97 Stephen Phillips Memorial Trust House in Salem'), (26437, 'https://ror.org/01nag1a70', 'id', 1, 'https://ror.org/01nag1a70 Institut Teknologi Indonesia'), (26438, 'https://ror.org/01nbgfe29', 'en', 1, 'https://ror.org/01nbgfe29 Build Bright University សាកលវិទ្យាល័យបៀលប្រាយ រាជធានីភ្នំពេញ'), (26439, 'https://ror.org/01ncpsy43', 'en', 1, 'https://ror.org/01ncpsy43 Wisconsin Department of Administration'), (26440, 'https://ror.org/01nevky14', 'en', 1, 'https://ror.org/01nevky14 Hayfield University'), (26441, 'https://ror.org/01nf6pr96', 'en', 1, 'https://ror.org/01nf6pr96 Buffalo History Museum'), (26442, 'https://ror.org/01nfka669', 'en', 1, 'https://ror.org/01nfka669 South Carolina State Museum'), (26443, 'https://ror.org/01ng7yw81', 'en', 1, 'https://ror.org/01ng7yw81 Society for Values in Higher Education'), (26444, 'https://ror.org/01ngjj893', 'en', 1, 'https://ror.org/01ngjj893 University of Human Arts and Sciences 人間総合科学大学'), (26445, 'https://ror.org/01nkqk925', 'en', 1, 'https://ror.org/01nkqk925 Jain Vishva Bharati University जैन विश्व भारती विश्वविद्यालय'), (26446, 'https://ror.org/01nm0nj94', 'en', 1, 'https://ror.org/01nm0nj94 Jesus University'), (26447, 'https://ror.org/01nrk6j30', 'en', 1, 'https://ror.org/01nrk6j30 MingDao University 明道大學'), (26448, 'https://ror.org/01nrsdg41', 'en', 1, 'https://ror.org/01nrsdg41 Saint - Petersburg State Chemical Pharmaceutical Academy Санкт-Петербургская государственная химико-фармацевтическая академия'), (26449, 'https://ror.org/01nsk9g93', 'cs', 1, 'https://ror.org/01nsk9g93 Matice Moravská'), (26450, 'https://ror.org/01nsv4k44', 'id', 1, 'https://ror.org/01nsv4k44 Universitas Swadaya Gunung Jati'), (26451, 'https://ror.org/01nsvrs46', 'no_lang_code', 1, 'https://ror.org/01nsvrs46 UniControls (Czechia)'), (26452, 'https://ror.org/01ntg7h46', 'no_lang_code', 1, 'https://ror.org/01ntg7h46 VÚHŽ (Czechia)'), (26453, 'https://ror.org/01ntn7t82', 'en', 1, 'https://ror.org/01ntn7t82 Newark Public Library'), (26454, 'https://ror.org/01ntwgd63', 'en', 1, 'https://ror.org/01ntwgd63 Nosov Magnitogorsk State Technical University Магнитогорский государственный технический университет'), (26455, 'https://ror.org/01nvm2856', 'en', 1, 'https://ror.org/01nvm2856 Maryland University of Integrative Health'), (26456, 'https://ror.org/01nwz9n42', 'en', 1, 'https://ror.org/01nwz9n42 International School for Social and Business Studies Mednarodna Fakulteta za Družbene in Poslovne Študije'), (26457, 'https://ror.org/01p3ehe02', 'no_lang_code', 1, 'https://ror.org/01p3ehe02 Souphanouvong University ມະຫາວິທະຍາໄລສຸພານຸວົງ'), (26458, 'https://ror.org/01p48z987', 'en', 1, 'https://ror.org/01p48z987 Columbus Museum of Art'), (26459, 'https://ror.org/01p4b7n26', 'en', 1, 'https://ror.org/01p4b7n26 Electric Power University Trường Đại học Điện lực'), (26460, 'https://ror.org/01p4pqq97', 'sl', 1, 'https://ror.org/01p4pqq97 Šola za Risanje in Slikanje'), (26461, 'https://ror.org/01p68kb80', 'en', 1, 'https://ror.org/01p68kb80 Idaho Department of Parks and Recreation'), (26462, 'https://ror.org/01p6xxb83', 'en', 1, 'https://ror.org/01p6xxb83 Belarusian State University of Culture and Arts Беларускі дзяржаўны ўніверсітэт культуры і мастацтваў Белорусский государственный университет культуры и искусств'), (26463, 'https://ror.org/01pahsa11', 'no_lang_code', 1, 'https://ror.org/01pahsa11 KM Trade (Czechia)'), (26464, 'https://ror.org/01pc8bt60', 'en', 1, 'https://ror.org/01pc8bt60 Higher Institute of Islamic Studies المعهد العالى للدراسات الاسلامية'), (26465, 'https://ror.org/01pcwfm43', 'en', 1, 'https://ror.org/01pcwfm43 Saint-Petersburg Institute of Economy and Management Санкт-Петербургский институт экономики и управления'), (26466, 'https://ror.org/01pddqk16', 'en', 1, 'https://ror.org/01pddqk16 National University of Theatre and Film I.L. Caragiale Universitatea Naţională de Artă Teatrală şi Cinematografică I.L.Caragiale'), (26467, 'https://ror.org/01pdmef49', 'no_lang_code', 1, 'https://ror.org/01pdmef49 KKCG (Czechia)'), (26468, 'https://ror.org/01pebx748', 'en', 1, 'https://ror.org/01pebx748 National Farmers Union'), (26469, 'https://ror.org/01pewms44', 'en', 1, 'https://ror.org/01pewms44 Balch Institute for Ethnic Studies'), (26470, 'https://ror.org/01pf23a70', 'en', 1, 'https://ror.org/01pf23a70 YIVO Institute for Jewish Research'), (26471, 'https://ror.org/01phqre83', 'en', 1, 'https://ror.org/01phqre83 Tohoku Institute of Technology 東北工業大学'), (26472, 'https://ror.org/01phypy63', 'en', 1, 'https://ror.org/01phypy63 Motlow State Community College'), (26473, 'https://ror.org/01pjme364', 'en', 1, 'https://ror.org/01pjme364 Nanyang Academy of Fine Arts நன்யாங் அகாடமி ஆஃப் ஃபைன் ஆர்ட்ஸ்'), (26474, 'https://ror.org/01pjy1768', 'en', 1, 'https://ror.org/01pjy1768 Armavir Linguistic Social Institution Армавирский лингвистический социальный институт'), (26475, 'https://ror.org/01pk8rb11', 'en', 1, 'https://ror.org/01pk8rb11 University of Kirkuk جامعة كركوك'), (26476, 'https://ror.org/01pkeax38', 'en', 1, 'https://ror.org/01pkeax38 Saitama Institute of Technology 埼玉工業大学'), (26477, 'https://ror.org/01pn1ra92', 'en', 1, 'https://ror.org/01pn1ra92 International Institute of Management LINK Международный институт менеджмента ЛИНК'), (26478, 'https://ror.org/01pqsf698', 'en', 1, 'https://ror.org/01pqsf698 Bangladesh Islami University বাংলাদেশ ইসলামী বিশ্ববিদ্যালয়'), (26479, 'https://ror.org/01pr3g631', 'en', 1, 'https://ror.org/01pr3g631 Staten Island Historical Society'), (26480, 'https://ror.org/01przwh33', 'en', 1, 'https://ror.org/01przwh33 Akademia Teatralna im. Aleksandra Zelwerowicza w Warszawie Aleksander Zelwerowicz National Academy of Dramatic Art in Warsaw'), (26481, 'https://ror.org/01pt4x202', 'en', 1, 'https://ror.org/01pt4x202 Kyushu Institute of Information Sciences 九州情報大学'), (26482, 'https://ror.org/01pv73b02', 'en', 1, 'https://ror.org/01pv73b02 Czech Science Foundation'), (26483, 'https://ror.org/01px61q40', 'fr', 1, 'https://ror.org/01px61q40 Institut Privé de Gestion Institut Supérieur de Technologie Industrielle'), (26484, 'https://ror.org/01pxd1c06', 'en', 1, 'https://ror.org/01pxd1c06 Southern Maryland Regional Library Association'), (26485, 'https://ror.org/01pxek286', 'en', 1, 'https://ror.org/01pxek286 Thongsook College วิทยาลัยทองสุข'), (26486, 'https://ror.org/01pytr632', 'en', 1, 'https://ror.org/01pytr632 Murmansk Arctic State University Мурманский арктический государственный университет'), (26487, 'https://ror.org/01pzyyx54', 'en', 1, 'https://ror.org/01pzyyx54 National Information and Consulting Centre for Culture'), (26488, 'https://ror.org/01q00vp39', 'en', 1, 'https://ror.org/01q00vp39 Nagoya University of Arts 名古屋芸術大学'), (26489, 'https://ror.org/01q0sjp54', 'en', 1, 'https://ror.org/01q0sjp54 University of Buraimi جامعة البريمي'), (26490, 'https://ror.org/01q2ncb61', 'en', 1, 'https://ror.org/01q2ncb61 Osaka University of Comprehensive Children Education 大阪総合保育大学'), (26491, 'https://ror.org/01q2ngy08', 'en', 1, 'https://ror.org/01q2ngy08 Moscow Institute of Entrepreneurship and Law Московский институт предпринимательства и права'), (26492, 'https://ror.org/01q4jy609', 'en', 1, 'https://ror.org/01q4jy609 Radio America'), (26493, 'https://ror.org/01q5jse34', 'en', 1, 'https://ror.org/01q5jse34 Krasnoyarsk State Institute of Art Красноярский государственный институт искусств'), (26494, 'https://ror.org/01q6w5x52', 'en', 1, 'https://ror.org/01q6w5x52 North Eastern University มหาวิทยาลัยภาคตะวันออกเฉียงเหนือ'), (26495, 'https://ror.org/01qa01910', 'en', 1, 'https://ror.org/01qa01910 Currier Museum of Art'), (26496, 'https://ror.org/01qadzk38', 'en', 1, 'https://ror.org/01qadzk38 Pacific Coast University'), (26497, 'https://ror.org/01qafy255', 'en', 1, 'https://ror.org/01qafy255 MF Norwegian School of Theology, Religion and Society'), (26498, 'https://ror.org/01qc33y56', 'en', 1, 'https://ror.org/01qc33y56 National Institute of Sports and Tourism of Turkmenistan'), (26499, 'https://ror.org/01qe1a488', 'en', 1, 'https://ror.org/01qe1a488 Azerbaijan Technical University Azərbaycan Texniki Universiteti Азербайджанский технический университет'), (26500, 'https://ror.org/01qg39d38', 'en', 1, 'https://ror.org/01qg39d38 Old Swedes Foundation'), (26501, 'https://ror.org/01qgdf403', 'en', 1, 'https://ror.org/01qgdf403 Catholic University Our Lady of Good Counsel Kompleksi Spitalor Universitar "Zoja e Këshillit të Mirë"'), (26502, 'https://ror.org/01qh9t631', 'en', 1, 'https://ror.org/01qh9t631 International University of Logistics and Transport in Wrocław Międzynarodowa Wyższa Szkoła Logistyki i Transportu we Wrocławiu'), (26503, 'https://ror.org/01qheje62', 'no_lang_code', 1, 'https://ror.org/01qheje62 Shokei Gakuin University 尚絅学院大学'), (26504, 'https://ror.org/01qhq4s12', 'en', 1, 'https://ror.org/01qhq4s12 Wells National Estuarine Research Reserve'), (26505, 'https://ror.org/01qkgph35', 'en', 1, 'https://ror.org/01qkgph35 Pennsbury Manor'), (26506, 'https://ror.org/01qkq8c66', 'en', 1, 'https://ror.org/01qkq8c66 Spiru Haret University Universitatea Spiru Haret'), (26507, 'https://ror.org/01qne9c81', 'en', 1, 'https://ror.org/01qne9c81 St. Catherine University 聖カタリナ大学'), (26508, 'https://ror.org/01qnswy10', 'en', 1, 'https://ror.org/01qnswy10 University Press of Kansas'), (26509, 'https://ror.org/01qp4wa34', 'en', 1, 'https://ror.org/01qp4wa34 Asian Art Museum'), (26510, 'https://ror.org/01qq6yz91', 'en', 1, 'https://ror.org/01qq6yz91 Manila Central University'), (26511, 'https://ror.org/01qva9798', 'en', 1, 'https://ror.org/01qva9798 Mewar University मेवाड़ विश्वविद्यालय'), (26512, 'https://ror.org/01qvty264', 'en', 1, 'https://ror.org/01qvty264 Central Agency for Jewish Education'), (26513, 'https://ror.org/01qw7a563', 'no_lang_code', 1, 'https://ror.org/01qw7a563 Tokyo Seitoku University 東京成徳大学'), (26514, 'https://ror.org/01qxgsr72', 'en', 1, 'https://ror.org/01qxgsr72 Latvijas Nacionālā Aizsardzības Akadēmija National Defence Academy of Latvia'), (26515, 'https://ror.org/01qxhf360', 'en', 1, 'https://ror.org/01qxhf360 Concordia University'), (26516, 'https://ror.org/01qzkbq71', 'en', 1, 'https://ror.org/01qzkbq71 Multnomah University'), (26517, 'https://ror.org/01qzzz835', 'en', 1, 'https://ror.org/01qzzz835 Levine Museum of the New South'), (26518, 'https://ror.org/01r097937', 'en', 1, 'https://ror.org/01r097937 Defense Acquisition University'), (26519, 'https://ror.org/01r1xp191', 'no_lang_code', 1, 'https://ror.org/01r1xp191 AEC (Czechia)'), (26520, 'https://ror.org/01r27v904', 'en', 1, 'https://ror.org/01r27v904 Sardar Vallabhbhai Patel University of Agriculture & Technology सरदार वल्लभभाई पटेल युनिवर्सिटी ऑफ़ एग्रीकल्चर & टेक्नोलॉजी'), (26521, 'https://ror.org/01r2j4a39', 'en', 1, 'https://ror.org/01r2j4a39 GEA College'), (26522, 'https://ror.org/01r35da74', 'no_lang_code', 1, 'https://ror.org/01r35da74 Löw & Spol (Czechia)'), (26523, 'https://ror.org/01r3kcg18', 'en', 1, 'https://ror.org/01r3kcg18 Osaka University of Economics and Law 大阪経済法科大学'), (26524, 'https://ror.org/01r3zxa49', 'id', 1, 'https://ror.org/01r3zxa49 Indonesian Institute of Informatics Institut Informatika Indonesia'), (26525, 'https://ror.org/01r4khx38', 'en', 1, 'https://ror.org/01r4khx38 Aichi Prefectural University of Fine Arts and Music 愛知県立芸術大学'), (26526, 'https://ror.org/01r61sr78', 'en', 1, 'https://ror.org/01r61sr78 China Academy of Art 中国美术学院'), (26527, 'https://ror.org/01r8s1c93', 'en', 1, 'https://ror.org/01r8s1c93 Siberian State University of Physical Education and Sport Сибирский государственный университет физической культуры и спорта'), (26528, 'https://ror.org/01ra0jf88', 'no_lang_code', 1, 'https://ror.org/01ra0jf88 Aseko (Czechia)'), (26529, 'https://ror.org/01rb75107', 'en', 1, 'https://ror.org/01rb75107 National University of Advanced Legal Studies'), (26530, 'https://ror.org/01rbdtr54', 'en', 1, 'https://ror.org/01rbdtr54 Faculty for State and European Studies, Faculty of Administrative and European Studies Fakultet za državne i evropske studije'), (26531, 'https://ror.org/01rbtc528', 'en', 1, 'https://ror.org/01rbtc528 National Council of La Raza'), (26532, 'https://ror.org/01rckwh32', 'en', 1, 'https://ror.org/01rckwh32 Mawlamyine University မော်လမြိုင် တက္ကသိုလ်'), (26533, 'https://ror.org/01rcq3q20', 'en', 1, 'https://ror.org/01rcq3q20 Hankou University 汉口学院'), (26534, 'https://ror.org/01rd41j61', 'en', 1, 'https://ror.org/01rd41j61 Sevastopol National University of Nuclear Energy and Industry Севастопольский национальный университет ядерной энергии и промышленности Севастопольський національний університет ядерної енергії та промисловості'), (26535, 'https://ror.org/01rec3330', 'no_lang_code', 1, 'https://ror.org/01rec3330 University of Mbandaka Université de mbandaka'), (26536, 'https://ror.org/01rf04680', 'en', 1, 'https://ror.org/01rf04680 Busan National University of Education 부산교육대학교'), (26537, 'https://ror.org/01rk9d029', 'en', 1, 'https://ror.org/01rk9d029 International University of Struga Меѓународен Универзитет Струга'), (26538, 'https://ror.org/01rkrzs64', 'en', 1, 'https://ror.org/01rkrzs64 Hokkaido Bunkyo University 北海道文教大学'), (26539, 'https://ror.org/01rn0fp76', 'en', 1, 'https://ror.org/01rn0fp76 Kazakh-British Technical University Казахстанско-Британский технический университет Қазақстан-Британ техникалық университеті'), (26540, 'https://ror.org/01rnr2315', 'en', 1, 'https://ror.org/01rnr2315 Institute of Management Sciences Lahore'), (26541, 'https://ror.org/01rqcwn02', 'en', 1, 'https://ror.org/01rqcwn02 LCC International University LCC tarptautinis universitetas'), (26542, 'https://ror.org/01rrz9s51', 'en', 1, 'https://ror.org/01rrz9s51 Victoria University'), (26543, 'https://ror.org/01rs03g07', 'en', 1, 'https://ror.org/01rs03g07 Uttaradit Rajabhat University มหาวิทยาลัยราชภัฏอุตรดิตถ์'), (26544, 'https://ror.org/01rtkeb16', 'id', 1, 'https://ror.org/01rtkeb16 Universitas Merdeka Malang'), (26545, 'https://ror.org/01rvscc63', 'en', 1, 'https://ror.org/01rvscc63 Ossabaw Island Foundation'), (26546, 'https://ror.org/01rx5pn96', 'en', 1, 'https://ror.org/01rx5pn96 Mashantucket Pequot Museum and Research Center'), (26547, 'https://ror.org/01rxjzf54', 'en', 1, 'https://ror.org/01rxjzf54 University of the East Ramon Magsaysay Memorial Medical Center'), (26548, 'https://ror.org/01ryrzh03', 'en', 1, 'https://ror.org/01ryrzh03 Kobe City College of Nursing 神戸市看護大学'), (26549, 'https://ror.org/01ryxs984', 'en', 1, 'https://ror.org/01ryxs984 NorthEast Regional Epilepsy Group'), (26550, 'https://ror.org/01rz15025', 'en', 1, 'https://ror.org/01rz15025 New York University Press'), (26551, 'https://ror.org/01s0tbs34', 'en', 1, 'https://ror.org/01s0tbs34 Sukhishvili Teaching University'), (26552, 'https://ror.org/01s1qps03', 'en', 1, 'https://ror.org/01s1qps03 American Academic Research Institute in Iraq'), (26553, 'https://ror.org/01s4pfm44', 'fr', 1, 'https://ror.org/01s4pfm44 Institut Africain d''Informatique'), (26554, 'https://ror.org/01s5kvh23', 'en', 1, 'https://ror.org/01s5kvh23 Youngsan University 영산대학교'), (26555, 'https://ror.org/01s5r7k60', 'en', 1, 'https://ror.org/01s5r7k60 Razavi University of Islamic Sciences دانشگاه علوم اسلامی رضوی'), (26556, 'https://ror.org/01sbmsw53', 'no_lang_code', 1, 'https://ror.org/01sbmsw53 Saku University 佐久大学'), (26557, 'https://ror.org/01sby4e06', 'en', 1, 'https://ror.org/01sby4e06 Nizhny Novgorod State Conservatory named after M.I. Glinka Нижегородская государственная консерватория имени М. И. Глинки [править | править вики-текст]'), (26558, 'https://ror.org/01scq9q08', 'no_lang_code', 1, 'https://ror.org/01scq9q08 Tanadgusix (United States)'), (26559, 'https://ror.org/01sczx256', 'en', 1, 'https://ror.org/01sczx256 Athens Regional Library System'), (26560, 'https://ror.org/01se2zd78', 'no_lang_code', 1, 'https://ror.org/01se2zd78 Adikavi Nannaya University ఆదికవి నన్నయ విశ్వవిద్యాలయము'), (26561, 'https://ror.org/01setje54', 'en', 1, 'https://ror.org/01setje54 Institute of Contemporary Art'), (26562, 'https://ror.org/01sfc5174', 'en', 1, 'https://ror.org/01sfc5174 Research Foundation for the State University of New York'), (26563, 'https://ror.org/01sfz7q36', 'en', 1, 'https://ror.org/01sfz7q36 University of South Asia جامعہ جنوبی ایشیا'), (26564, 'https://ror.org/01sg1cf32', 'en', 1, 'https://ror.org/01sg1cf32 Santa Monica Public Library'), (26565, 'https://ror.org/01sgknf35', 'en', 1, 'https://ror.org/01sgknf35 Hakodate University 函館大学'), (26566, 'https://ror.org/01sm6nn11', 'en', 1, 'https://ror.org/01sm6nn11 Central Ukrainian National Technical University Центральноукраїнський національний технічний університет'), (26567, 'https://ror.org/01smbry50', 'en', 1, 'https://ror.org/01smbry50 Daehan Theological University 대한신학대학원대학교'), (26568, 'https://ror.org/01sr63h27', 'en', 1, 'https://ror.org/01sr63h27 Chuo Kikuu cha Kumbukumbu cha Sebastian Kolowa Sebastian Kolowa Memorial University'), (26569, 'https://ror.org/01sw9sf76', 'en', 1, 'https://ror.org/01sw9sf76 Ellis University'), (26570, 'https://ror.org/01sy57r11', 'en', 1, 'https://ror.org/01sy57r11 Kazan State Conservatoire named after N. Zhiganov Казанская государственная консерватории им. Н.Г.Жиганова'), (26571, 'https://ror.org/01szxxe12', 'en', 1, 'https://ror.org/01szxxe12 Busan Presbyterian University 부산장신대학교'), (26572, 'https://ror.org/01t027h44', 'en', 1, 'https://ror.org/01t027h44 Clark County Museum'), (26573, 'https://ror.org/01t085091', 'en', 1, 'https://ror.org/01t085091 Native American Center for the Living Arts'), (26574, 'https://ror.org/01t0d1m90', 'en', 1, 'https://ror.org/01t0d1m90 Iran Banking Institute مؤسسه عالی بانکداری ایران'), (26575, 'https://ror.org/01t2k5x76', 'no_lang_code', 1, 'https://ror.org/01t2k5x76 Deona Medi (Czechia)'), (26576, 'https://ror.org/01t4e0y16', 'en', 1, 'https://ror.org/01t4e0y16 North Enterprise Institute Северный институт предпринимательства'), (26577, 'https://ror.org/01t588655', 'no_lang_code', 1, 'https://ror.org/01t588655 Theatre for a New Audience'), (26578, 'https://ror.org/01t79g318', 'id', 1, 'https://ror.org/01t79g318 Universitas Slamet Riyadi'), (26579, 'https://ror.org/01t8hz352', 'en', 1, 'https://ror.org/01t8hz352 Ivanovo State Power University федеральное государственное бюджетное образовательное учреждение высшего образования Ивановский государственный энергетический университет имени В.И. Ленина'), (26580, 'https://ror.org/01tfbz441', 'no_lang_code', 1, 'https://ror.org/01tfbz441 Nanhua University 南華大學'), (26581, 'https://ror.org/01tkgk805', 'en', 1, 'https://ror.org/01tkgk805 Moravian Gallery in Brno'), (26582, 'https://ror.org/01tmmzv45', 'en', 1, 'https://ror.org/01tmmzv45 Institute of Space Technology انسٹی ٹیوٹ آف اسپیس ٹیکنالوجی'), (26583, 'https://ror.org/01tmv6x44', 'en', 1, 'https://ror.org/01tmv6x44 Marine Animal Rescue Society'), (26584, 'https://ror.org/01tqhyj40', 'en', 1, 'https://ror.org/01tqhyj40 Chaiyaphum Rajabhat University มหาวิทยาลัยราชภัฏชัยภูมิ'), (26585, 'https://ror.org/01txr9233', 'en', 1, 'https://ror.org/01txr9233 Great Lakes Commission'), (26586, 'https://ror.org/01txxd494', 'en', 1, 'https://ror.org/01txxd494 French Cultural Center'), (26587, 'https://ror.org/01tycan35', 'no_lang_code', 1, 'https://ror.org/01tycan35 Elis Plzen (Czechia)'), (26588, 'https://ror.org/01tz4vf62', 'en', 1, 'https://ror.org/01tz4vf62 Kyiv National I. K. Karpenko-Kary Theatre, Cinema and Television University Ки́ївський націона́льний університе́т теа́тру, кіно́ і телеба́чення і́мені Іва́на Ка́рповича Карпе́нка-Ка́рого Киевский национальный университет театра, кино и телевидения имени И. К. Карпенко-Карого'), (26589, 'https://ror.org/01tze4598', 'no_lang_code', 1, 'https://ror.org/01tze4598 SVCS Process Innovation (Czechia)'), (26590, 'https://ror.org/01v4enb76', 'en', 1, 'https://ror.org/01v4enb76 Richard Bland College'), (26591, 'https://ror.org/01v53ec59', 'no_lang_code', 1, 'https://ror.org/01v53ec59 OCHI Inženýring (Czechia)'), (26592, 'https://ror.org/01v6rb042', 'en', 1, 'https://ror.org/01v6rb042 New Orleans Public Library'), (26593, 'https://ror.org/01vap5e49', 'en', 1, 'https://ror.org/01vap5e49 Saint Petersburg Institute of International Economic Relations, Economics and Law Институ́т внешнеэкономи́ческих свя́зей, эконо́мики и пра́ва, ИВЭСЭ́П'), (26594, 'https://ror.org/01vbp3w59', 'no_lang_code', 1, 'https://ror.org/01vbp3w59 Instantview (United Kingdom)'), (26595, 'https://ror.org/01vg6n598', 'en', 1, 'https://ror.org/01vg6n598 Darul Ihsan University দারুল ইহসান ইউনিভার্সিটি'), (26596, 'https://ror.org/01vgnaz04', 'en', 1, 'https://ror.org/01vgnaz04 Carnegie Museum of Art'), (26597, 'https://ror.org/01vk4fh57', 'en', 1, 'https://ror.org/01vk4fh57 Armavir State Pedagogical Academy Армавирский государственный педагогический университет'), (26598, 'https://ror.org/01vkmy441', 'en', 1, 'https://ror.org/01vkmy441 Earth Force'), (26599, 'https://ror.org/01vpt4w06', 'id', 1, 'https://ror.org/01vpt4w06 Universitas Iqra Buru'), (26600, 'https://ror.org/01vtcxa47', 'no_lang_code', 1, 'https://ror.org/01vtcxa47 CoorsTek (Czechia)'), (26601, 'https://ror.org/01vw69t89', 'en', 1, 'https://ror.org/01vw69t89 Dagestan State University Дагестанский государственный университет'), (26602, 'https://ror.org/01vwk0k32', 'en', 1, 'https://ror.org/01vwk0k32 John L. Miller Great Neck North High School'), (26603, 'https://ror.org/01vwns954', 'no_lang_code', 1, 'https://ror.org/01vwns954 Lingaya''s Vidyapeeth'), (26604, 'https://ror.org/01w0a0q45', 'no_lang_code', 1, 'https://ror.org/01w0a0q45 Speel Praha (Czechia)'), (26605, 'https://ror.org/01w0fb867', 'en', 1, 'https://ror.org/01w0fb867 Alanus Hochschule für Kunst und Gesellschaft Alanus University of Arts and Social Sciences'), (26606, 'https://ror.org/01w1er029', 'en', 1, 'https://ror.org/01w1er029 International University College Of Technology Kolej Universiti Teknologi Antarabangsa Twintech'), (26607, 'https://ror.org/01w33af17', 'en', 1, 'https://ror.org/01w33af17 Royal University of Fine Arts Université royale des beaux-arts សាកលវិទ្យាល័យភូមិន្ទវិចិត្រសិល្បៈ'), (26608, 'https://ror.org/01w423a47', 'en', 1, 'https://ror.org/01w423a47 Tomsk State University of Architecture and Building Томский государственный архитектурно-строительный университет'), (26609, 'https://ror.org/01w4nn703', 'en', 1, 'https://ror.org/01w4nn703 Central Community College'), (26610, 'https://ror.org/01w60n236', 'en', 1, 'https://ror.org/01w60n236 Sumy State University Сумский государственный университет Сумський державний університет'), (26611, 'https://ror.org/01w6bk780', 'en', 1, 'https://ror.org/01w6bk780 Historic New England'), (26612, 'https://ror.org/01w7c9759', 'id', 1, 'https://ror.org/01w7c9759 Universitas Islam Al-Azhar Mataram'), (26613, 'https://ror.org/01w860d88', 'en', 1, 'https://ror.org/01w860d88 National Experimental University of the Armed Forces Universidad Nacional Experimental Politécnica de la Fuerza Armada Bolivariana'), (26614, 'https://ror.org/01w9gwk84', 'en', 1, 'https://ror.org/01w9gwk84 Charleston County Public Library'), (26615, 'https://ror.org/01wacaj92', 'en', 1, 'https://ror.org/01wacaj92 Nation University มหาวิทยาลัยเนชั่น'), (26616, 'https://ror.org/01wbbse44', 'en', 1, 'https://ror.org/01wbbse44 Marine Mammal Center'), (26617, 'https://ror.org/01wcf4732', 'en', 1, 'https://ror.org/01wcf4732 Kenton County Public Library'), (26618, 'https://ror.org/01wdhap14', 'en', 1, 'https://ror.org/01wdhap14 University of Health Sciences Antigua'), (26619, 'https://ror.org/01wfhkb67', 'en', 1, 'https://ror.org/01wfhkb67 Iraqi University الجامعة العراقية'), (26620, 'https://ror.org/01wfs6j95', 'en', 1, 'https://ror.org/01wfs6j95 U.S. Association of Former Members of Congress'), (26621, 'https://ror.org/01wfzer83', 'en', 1, 'https://ror.org/01wfzer83 Dire Dawa University'), (26622, 'https://ror.org/01wgqyk09', 'no_lang_code', 1, 'https://ror.org/01wgqyk09 B&C Dopravní Systémy (Czechia)'), (26623, 'https://ror.org/01whfz932', 'en', 1, 'https://ror.org/01whfz932 Belarusian State Academy of Telecommunications Беларуская дзяржа́ўная акадэмія су́вязі Белорусская государственная академия связи'), (26624, 'https://ror.org/01wj9kt25', 'en', 1, 'https://ror.org/01wj9kt25 Museum of Contemporary Art, Los Angeles'), (26625, 'https://ror.org/01wk6nt82', 'en', 1, 'https://ror.org/01wk6nt82 Northwest Maritime Center'), (26626, 'https://ror.org/01wmc1580', 'en', 1, 'https://ror.org/01wmc1580 Methodist Theological University'), (26627, 'https://ror.org/01wmn7w14', 'en', 1, 'https://ror.org/01wmn7w14 Institute of Advanced Media Arts and Sciences 情報科学芸術大学院大学'), (26628, 'https://ror.org/01wmx5158', 'no_lang_code', 1, 'https://ror.org/01wmx5158 Tohoku Bunka Gakuen University 東北文化学園大学'), (26629, 'https://ror.org/01wp52t96', 'en', 1, 'https://ror.org/01wp52t96 Asian University for Women এশিয়ান ইউনিভার্সিটি ফর উইমেন'), (26630, 'https://ror.org/01wqn3353', 'id', 1, 'https://ror.org/01wqn3353 Universitas Muhammadiyah Prof Dr Hamka'), (26631, 'https://ror.org/01wr29484', 'en', 1, 'https://ror.org/01wr29484 Rostov State Rakhmaninov Conservatory Ростовская государственная консерватория им. С.В. Рахманинова'), (26632, 'https://ror.org/01wsre374', 'en', 1, 'https://ror.org/01wsre374 Olive–Harvey College'), (26633, 'https://ror.org/01wwdyj49', 'en', 1, 'https://ror.org/01wwdyj49 ICFAI University, Mizoram'), (26634, 'https://ror.org/01wx5mw98', 'en', 1, 'https://ror.org/01wx5mw98 Buddhist and Pali University of Sri Lanka ශ්රී ලංකා බෞද්ධ හා පාලි විශ්වවිද්යාලය'), (26635, 'https://ror.org/01wx9h016', 'en', 1, 'https://ror.org/01wx9h016 Clinton-Macomb Public Library'), (26636, 'https://ror.org/01wy5em73', 'en', 1, 'https://ror.org/01wy5em73 North Slope Borough'), (26637, 'https://ror.org/01wy81410', 'no_lang_code', 1, 'https://ror.org/01wy81410 Fite (Czechia)'), (26638, 'https://ror.org/01wz7zs96', 'no_lang_code', 1, 'https://ror.org/01wz7zs96 Mimasaka University 美作大学'), (26639, 'https://ror.org/01x05rm94', 'en', 1, 'https://ror.org/01x05rm94 Maebashi Institute of Technology 前橋工科大学'), (26640, 'https://ror.org/01x1bp495', 'en', 1, 'https://ror.org/01x1bp495 Holy Angel University Pamantasang Holy Angel'), (26641, 'https://ror.org/01x1xh678', 'en', 1, 'https://ror.org/01x1xh678 East Bohemian Museum Muzeum východních Čech'), (26642, 'https://ror.org/01x24z916', 'en', 1, 'https://ror.org/01x24z916 Turkmen State Institute of Architecture and Construction'), (26643, 'https://ror.org/01x3s6v81', 'en', 1, 'https://ror.org/01x3s6v81 Primary Source'), (26644, 'https://ror.org/01x3sga45', 'en', 1, 'https://ror.org/01x3sga45 St. Louis County Missouri'), (26645, 'https://ror.org/01x4bmq04', 'en', 1, 'https://ror.org/01x4bmq04 Ekaterinburg State Theatre Institute Екатеринбургский государственный театральный институт'), (26646, 'https://ror.org/01x5f7a18', 'en', 1, 'https://ror.org/01x5f7a18 Byzantine Studies Association of North America'), (26647, 'https://ror.org/01x5kh380', 'en', 1, 'https://ror.org/01x5kh380 University of West Yangon ရန်ကုန် အနောက်ပိုင်း တက္ကသိုလ်'), (26648, 'https://ror.org/01x7y0t66', 'en', 1, 'https://ror.org/01x7y0t66 Tuscaloosa Public Library'), (26649, 'https://ror.org/01x7yyx87', 'en', 1, 'https://ror.org/01x7yyx87 National Ribat University جامعة الرباط الوطني'), (26650, 'https://ror.org/01x8ank07', 'en', 1, 'https://ror.org/01x8ank07 Kyiv Slavonic University Київсього славістичного університету'), (26651, 'https://ror.org/01xapxe37', 'en', 1, 'https://ror.org/01xapxe37 Dr. Hari Singh Gour University डॉ. हरिसिंह गौर विश्वविद्यालय'), (26652, 'https://ror.org/01xc8qy31', 'no_lang_code', 1, 'https://ror.org/01xc8qy31 Ujp Praha (Czechia)'), (26653, 'https://ror.org/01xcp0546', 'no_lang_code', 1, 'https://ror.org/01xcp0546 Fishmaster (United States)'), (26654, 'https://ror.org/01xe4n390', 'en', 1, 'https://ror.org/01xe4n390 Downeast Institute'), (26655, 'https://ror.org/01xh0rq67', 'no_lang_code', 1, 'https://ror.org/01xh0rq67 Lajovic Tuba Embalaža (Slovenia)'), (26656, 'https://ror.org/01xhsfb21', 'en', 1, 'https://ror.org/01xhsfb21 Kursk State Agricultural Academy named after Professor II Ivanova Курская государственная сельскохозяйственная академия имени профессора Иванова II'); INSERT INTO `rors` VALUES (26657, 'https://ror.org/01xmbc541', 'en', 1, 'https://ror.org/01xmbc541 Lafayette Science Museum'), (26658, 'https://ror.org/01xmbf059', 'en', 1, 'https://ror.org/01xmbf059 Universities at Medway'), (26659, 'https://ror.org/01xn8m022', 'en', 1, 'https://ror.org/01xn8m022 Mark Twain House and Museum'), (26660, 'https://ror.org/01xnx1y03', 'en', 1, 'https://ror.org/01xnx1y03 Hartford Seminary'), (26661, 'https://ror.org/01xq9f254', 'en', 1, 'https://ror.org/01xq9f254 State Legislative Leaders Foundation'), (26662, 'https://ror.org/01xr78s65', 'pl', 1, 'https://ror.org/01xr78s65 Wyższa Szkoła Kultury Prawa i Sztuki Marketingu'), (26663, 'https://ror.org/01xsjnd35', 'en', 1, 'https://ror.org/01xsjnd35 Tilak Maharashtra Vidyapeeth टिळक महाराष्ट्र विद्यापीठ'), (26664, 'https://ror.org/01xts9v65', 'en', 1, 'https://ror.org/01xts9v65 Seoul National University of Education 서울교육대학교'), (26665, 'https://ror.org/01xy1dh32', 'en', 1, 'https://ror.org/01xy1dh32 Kobe International University 神戸国際大学'), (26666, 'https://ror.org/01xydej26', 'id', 1, 'https://ror.org/01xydej26 Universitas Mahaputra Muhammad Yamin'), (26667, 'https://ror.org/01xyxtp53', 'en', 1, 'https://ror.org/01xyxtp53 CECOS University'), (26668, 'https://ror.org/01xz43q57', 'en', 1, 'https://ror.org/01xz43q57 Academy of Choral Arts named after V Popov Академия хорового искусства'), (26669, 'https://ror.org/01y2mxy57', 'en', 1, 'https://ror.org/01y2mxy57 José Rizal University Pamantasang José Rizal'), (26670, 'https://ror.org/01y3cgz33', 'no_lang_code', 1, 'https://ror.org/01y3cgz33 Jihostroj (Czechia)'), (26671, 'https://ror.org/01y3mxb71', 'no_lang_code', 1, 'https://ror.org/01y3mxb71 Central European Data Agency (Czechia)'), (26672, 'https://ror.org/01y56kp76', 'en', 1, 'https://ror.org/01y56kp76 Southeast Bangkok College วิทยาลัยเซาธ์อีสท์บางกอก'), (26673, 'https://ror.org/01y5fjx51', 'en', 1, 'https://ror.org/01y5fjx51 Hainan Tropical Ocean University 海南热带海洋学院'), (26674, 'https://ror.org/01y5jsp78', 'en', 1, 'https://ror.org/01y5jsp78 Public Radio International'), (26675, 'https://ror.org/01y6vee45', 'en', 1, 'https://ror.org/01y6vee45 Chelyabinsk Institute of Economics and Law named after M.V.Ladoshin Челябинский институт экономики и права имени M.V.Ladoshin'), (26676, 'https://ror.org/01y7t5s25', 'en', 1, 'https://ror.org/01y7t5s25 Samarkand State Architectural and Civil-Engineering Institute Samarqand davlat arxitektura qurilish instituti'), (26677, 'https://ror.org/01y80n017', 'id', 1, 'https://ror.org/01y80n017 Universitas Achmad Yani'), (26678, 'https://ror.org/01y82bt90', 'no_lang_code', 1, 'https://ror.org/01y82bt90 Tamástslikt Cultural Institute'), (26679, 'https://ror.org/01y8d6z34', 'en', 1, 'https://ror.org/01y8d6z34 MVN University'), (26680, 'https://ror.org/01y9hq132', 'en', 1, 'https://ror.org/01y9hq132 Oregon Historical Society'), (26681, 'https://ror.org/01yapab09', 'en', 1, 'https://ror.org/01yapab09 Moravian Music Foundation'), (26682, 'https://ror.org/01yarzs52', 'en', 1, 'https://ror.org/01yarzs52 Medici Archive Project'), (26683, 'https://ror.org/01ygp7b39', 'en', 1, 'https://ror.org/01ygp7b39 National Law University Jodhpur'), (26684, 'https://ror.org/01yjjdm95', 'no_lang_code', 1, 'https://ror.org/01yjjdm95 Lenam (Czechia)'), (26685, 'https://ror.org/01yjpt684', 'en', 1, 'https://ror.org/01yjpt684 Pontifical Urban University Pontificia Università Urbaniana Päpstliche Universität Urbaniana Université pontificale urbaniana'), (26686, 'https://ror.org/01yjw8d43', 'en', 1, 'https://ror.org/01yjw8d43 Mari State University Марийский государственный университет'), (26687, 'https://ror.org/01yk0dg70', 'no_lang_code', 1, 'https://ror.org/01yk0dg70 VVUU (Czechia)'), (26688, 'https://ror.org/01ypcyq30', 'en', 1, 'https://ror.org/01ypcyq30 Nagasaki University of Foreign Studies 長崎外国語大学'), (26689, 'https://ror.org/01yq8nk56', 'en', 1, 'https://ror.org/01yq8nk56 Learning Through an Expanded Arts Program'), (26690, 'https://ror.org/01ysajg40', 'en', 1, 'https://ror.org/01ysajg40 Conception Seminary College'), (26691, 'https://ror.org/01ysyyn95', 'en', 1, 'https://ror.org/01ysyyn95 Rensselaer County Historical Society'), (26692, 'https://ror.org/01yv6y468', 'no_lang_code', 1, 'https://ror.org/01yv6y468 Setec Institute វិទ្យាស្ថាន ស៊ិតិក'), (26693, 'https://ror.org/01yvmh709', 'en', 1, 'https://ror.org/01yvmh709 Astrakhan State Medical University Астраханский Государственный Медицинский Университет'), (26694, 'https://ror.org/01yyzg640', 'en', 1, 'https://ror.org/01yyzg640 West Ural Institute of Economics and Law Западно-Уральский институт экономики и права'), (26695, 'https://ror.org/01yzd1685', 'no_lang_code', 1, 'https://ror.org/01yzd1685 Stomix (Czechia)'), (26696, 'https://ror.org/01z1bn264', 'en', 1, 'https://ror.org/01z1bn264 Trường Đại học Ngoại ngữ, Đại học Quốc gia Hà Nội University of Languages and International Studies'), (26697, 'https://ror.org/01z1xpx75', 'en', 1, 'https://ror.org/01z1xpx75 Mordovia State Pedagogical Institute named after ME Evseveva Федеральное государственное бюджетное образовательное учреждение высшего профессионального образования "Мордовский государственный педагогический институт имени М. Е. Евсевьева"'), (26698, 'https://ror.org/01z1zmc91', 'en', 1, 'https://ror.org/01z1zmc91 Moscow State Forest University Московский государственный университет леса'), (26699, 'https://ror.org/01z23y265', 'en', 1, 'https://ror.org/01z23y265 Kharkiv National Agrarian University named after V.V.Dokuchajev Харківський національний аграрний університет ім. В.В. Докучаєва'), (26700, 'https://ror.org/01z3yjr32', 'en', 1, 'https://ror.org/01z3yjr32 El Paso Children''s Hospital'), (26701, 'https://ror.org/01z5b9q11', 'en', 1, 'https://ror.org/01z5b9q11 Dance Notation Bureau'), (26702, 'https://ror.org/01z75n202', 'en', 1, 'https://ror.org/01z75n202 Institute of Contemporary Education "YurInfoR-MGU"'), (26703, 'https://ror.org/01z91qx97', 'en', 1, 'https://ror.org/01z91qx97 Sea Research Foundation'), (26704, 'https://ror.org/01za4nr66', 'en', 1, 'https://ror.org/01za4nr66 Loudoun County Public Library'), (26705, 'https://ror.org/01zdg1s07', 'en', 1, 'https://ror.org/01zdg1s07 Vermont Historical Society'), (26706, 'https://ror.org/01zdsw203', 'en', 1, 'https://ror.org/01zdsw203 Tatar American Regional Institute Татарско-американский региональный институт'), (26707, 'https://ror.org/01zgmhv16', 'no_lang_code', 1, 'https://ror.org/01zgmhv16 Danaher (Belgium)'), (26708, 'https://ror.org/01zmykx63', 'en', 1, 'https://ror.org/01zmykx63 Central Arkansas Library System'), (26709, 'https://ror.org/01zmze177', 'pl', 1, 'https://ror.org/01zmze177 Gdańska Wyższa Szkoła Humanistyczna'), (26710, 'https://ror.org/01znwv148', 'en', 1, 'https://ror.org/01znwv148 Azerbaijan State Marine Academy Azərbaycan Dövlət Dəniz Akademiyası Азербайджанская государственная морская академия'), (26711, 'https://ror.org/01zpp3d44', 'en', 1, 'https://ror.org/01zpp3d44 Homerton University Hospital NHS Foundation Trust'), (26712, 'https://ror.org/01zr7q119', 'es', 1, 'https://ror.org/01zr7q119 Universidad Autónoma de Santa Ana'), (26713, 'https://ror.org/01zs84n26', 'en', 1, 'https://ror.org/01zs84n26 Institute of Management Business and Law Институт управления, бизнеса и права'), (26714, 'https://ror.org/01zskeg15', 'en', 1, 'https://ror.org/01zskeg15 Animal Production Institute'), (26715, 'https://ror.org/01zte6c10', 'id', 1, 'https://ror.org/01zte6c10 Universitas Cordova'), (26716, 'https://ror.org/01zvpbb37', 'pl', 1, 'https://ror.org/01zvpbb37 Wyższa Szkoła Zarządzania i Bankowości w Poznaniu'), (26717, 'https://ror.org/01zwh2149', 'no_lang_code', 1, 'https://ror.org/01zwh2149 Jawaharlal Nehru Krishi Vishwa Vidyalaya जवाहरलाल नेहरू कृषि विश्वविद्यालय'), (26718, 'https://ror.org/01zxjwg19', 'no_lang_code', 1, 'https://ror.org/01zxjwg19 Lymphedema Therapy (United States)'), (26719, 'https://ror.org/01zy6vk67', 'en', 1, 'https://ror.org/01zy6vk67 Bishop Stuart University'), (26720, 'https://ror.org/01zzs2082', 'en', 1, 'https://ror.org/01zzs2082 Swedish American Historical Society'), (26721, 'https://ror.org/0204b4294', 'en', 1, 'https://ror.org/0204b4294 Pamantasang Imaculada Conception University of the Immaculate Conception'), (26722, 'https://ror.org/0204dk470', 'en', 1, 'https://ror.org/0204dk470 Stuhr Museum'), (26723, 'https://ror.org/0204f9621', 'en', 1, 'https://ror.org/0204f9621 Muhammad University of Islam'), (26724, 'https://ror.org/020756q03', 'en', 1, 'https://ror.org/020756q03 Chiba Prefectural University of Health Sciences 千葉県立保健医療大学'), (26725, 'https://ror.org/0207r1190', 'en', 1, 'https://ror.org/0207r1190 Urawa University 浦和大学'), (26726, 'https://ror.org/020an1644', 'en', 1, 'https://ror.org/020an1644 Maulana Azad National Urdu University مولانا آزاد نیشنل اردو یونیورسٹی மவுலானா ஆசாத் தேசிய உருது பல்கலைக்கழகம் മൌലാനാ ആസാദ് നാഷനൽ ഉർദു യൂനിവേഴ്സിറ്റി ਮੌਲਾਨਾ ਆਜ਼ਾਦ ਨੈਸ਼ਨਲ ਉਰਦੂ ਯੂਨੀਵਰਸਿਟੀ'), (26727, 'https://ror.org/020b0tc15', 'en', 1, 'https://ror.org/020b0tc15 Louisiana Library Association'), (26728, 'https://ror.org/020bck234', 'en', 1, 'https://ror.org/020bck234 Philadelphia Zoo'), (26729, 'https://ror.org/020czch62', 'no_lang_code', 1, 'https://ror.org/020czch62 TESLA (Czechia)'), (26730, 'https://ror.org/020db1e56', 'no_lang_code', 1, 'https://ror.org/020db1e56 Joongbu University 중부대학교'), (26731, 'https://ror.org/020extk17', 'en', 1, 'https://ror.org/020extk17 Institute of Professional Evaluation Институт профессиональной оценки'), (26732, 'https://ror.org/020frqf17', 'en', 1, 'https://ror.org/020frqf17 Gorky Institute of World Literature Институт мировой литературы имени А. М. Горького РАН'), (26733, 'https://ror.org/020hbs629', 'en', 1, 'https://ror.org/020hbs629 Kyiv National Linguistic University Киевский национальный лингвистический университет Київський національний лінгвістичний університет'), (26734, 'https://ror.org/020hftg31', 'en', 1, 'https://ror.org/020hftg31 Institute for Schools of the Future'), (26735, 'https://ror.org/020ja6z54', 'en', 1, 'https://ror.org/020ja6z54 Kamphaeng Phet Rajabhat University มหาวิทยาลัยราชภัฏกำแพงเพชร'), (26736, 'https://ror.org/020jhxv22', 'en', 1, 'https://ror.org/020jhxv22 Clarksburg-Harrison Public Library'), (26737, 'https://ror.org/020jv3j52', 'en', 1, 'https://ror.org/020jv3j52 Zaoksky Adventist University Заокский адвентистский университет'), (26738, 'https://ror.org/020kbv448', 'en', 1, 'https://ror.org/020kbv448 Johnson University Florida'), (26739, 'https://ror.org/020kwj692', 'en', 1, 'https://ror.org/020kwj692 Sumy State A.S.Makarenko Pedagogical University'), (26740, 'https://ror.org/020kyg948', 'en', 1, 'https://ror.org/020kyg948 Health Charities Coalition of Canada'), (26741, 'https://ror.org/020m36v47', 'en', 1, 'https://ror.org/020m36v47 South Ural State Institute of Arts named after P.I. Tchaikovsky Южно-Уральский государственный институт искусств им. П.И. Чайковского'), (26742, 'https://ror.org/020mrfq61', 'en', 1, 'https://ror.org/020mrfq61 Changzhou Institute of Technology 常州工学院'), (26743, 'https://ror.org/020p0cm86', 'en', 1, 'https://ror.org/020p0cm86 Ryazan Institute of Management and Law Рязанский институт управления и права'), (26744, 'https://ror.org/020peey21', 'en', 1, 'https://ror.org/020peey21 Kobe City University of Foreign Studies 神戸市外国語大学'), (26745, 'https://ror.org/020qfzf72', 'en', 1, 'https://ror.org/020qfzf72 Kyrgyz-Russian Slavic University named after B.N. Yeltsin Киргизско-российский славянский университет имени Бориса Ельцина'), (26746, 'https://ror.org/020rm6403', 'no_lang_code', 1, 'https://ror.org/020rm6403 National Cell and Tissue Centre (Czechia)'), (26747, 'https://ror.org/020rnar76', 'no_lang_code', 1, 'https://ror.org/020rnar76 Bochemie (Czechia)'), (26748, 'https://ror.org/020rxmm63', 'no_lang_code', 1, 'https://ror.org/020rxmm63 Kovárna VIVA (Czechia)'), (26749, 'https://ror.org/020stct92', 'en', 1, 'https://ror.org/020stct92 Department of Conservation and Recreation'), (26750, 'https://ror.org/020t5em76', 'en', 1, 'https://ror.org/020t5em76 Museum of Sonoma County'), (26751, 'https://ror.org/020we4134', 'en', 1, 'https://ror.org/020we4134 University of Wah واہ یونیورسٹی'), (26752, 'https://ror.org/020y85m88', 'en', 1, 'https://ror.org/020y85m88 Andover Historical Society'), (26753, 'https://ror.org/020ywsx42', 'en', 1, 'https://ror.org/020ywsx42 Moscow Academy of Education Natalia Nesterova Московская академия образования Натальи Нестеровой'), (26754, 'https://ror.org/020z26690', 'en', 1, 'https://ror.org/020z26690 Moscow State Linguistic University Московский государственный лингвистический университет'), (26755, 'https://ror.org/020z55s31', 'en', 1, 'https://ror.org/020z55s31 Hogeschool Wittenborg Wittenborg University'), (26756, 'https://ror.org/0210pwe06', 'en', 1, 'https://ror.org/0210pwe06 Tezukayama University 帝塚山大学'), (26757, 'https://ror.org/0210srm80', 'en', 1, 'https://ror.org/0210srm80 Lutheran School of Theology at Chicago'), (26758, 'https://ror.org/0210z5p53', 'en', 1, 'https://ror.org/0210z5p53 Northern Virginia Regional Park Authority'), (26759, 'https://ror.org/0211wgq19', 'en', 1, 'https://ror.org/0211wgq19 Tver State Agricultural Academy Тверской государственный медицинский университет'), (26760, 'https://ror.org/02128gy91', 'en', 1, 'https://ror.org/02128gy91 Thai Nguyen University Đại học Thái Nguyên'), (26761, 'https://ror.org/0212gyx73', 'en', 1, 'https://ror.org/0212gyx73 Batumi Shota Rustaveli State University Батумский государственный университет имени Шота Руставели ბათუმის შოთა რუსთაველის სახელმწიფო უნივერსიტეტი'), (26762, 'https://ror.org/0212pqc18', 'en', 1, 'https://ror.org/0212pqc18 Lasbela University of Agriculture Water and Marine Science'), (26763, 'https://ror.org/0212sa234', 'no_lang_code', 1, 'https://ror.org/0212sa234 Cybula (United Kingdom)'), (26764, 'https://ror.org/02152vc29', 'en', 1, 'https://ror.org/02152vc29 Bogdan Voda University Universitatea „Bogdan Vodă”'), (26765, 'https://ror.org/0217vcy92', 'en', 1, 'https://ror.org/0217vcy92 Franklin University Switzerland'), (26766, 'https://ror.org/021a5w723', 'id', 1, 'https://ror.org/021a5w723 Universitas Patria Artha'), (26767, 'https://ror.org/021anqv82', 'no_lang_code', 1, 'https://ror.org/021anqv82 Shirayuri University 白百合女子大学'), (26768, 'https://ror.org/021b48m83', 'en', 1, 'https://ror.org/021b48m83 Luhansk State University of Internal Affairs named after E.O.Didorenko Луганский государственный университет внутренних дел имени Э. А. Дидоренко Луганський державний університет внутрішніх справ імені Едуарда Дідоренка'), (26769, 'https://ror.org/021djka98', 'en', 1, 'https://ror.org/021djka98 National Underground Railroad Freedom Center'), (26770, 'https://ror.org/021f6t344', 'no_lang_code', 1, 'https://ror.org/021f6t344 Elvac Ekotechnika (Czechia)'), (26771, 'https://ror.org/021fekh57', 'en', 1, 'https://ror.org/021fekh57 Rhode Island Black Heritage Society'), (26772, 'https://ror.org/021hq5q33', 'en', 1, 'https://ror.org/021hq5q33 Sebelas Maret University Universitas Sebelas Maret'), (26773, 'https://ror.org/021hqjd76', 'en', 1, 'https://ror.org/021hqjd76 Dagestan State Medical Academy Дагестанский государственный медицинский университет'), (26774, 'https://ror.org/021hrr735', 'en', 1, 'https://ror.org/021hrr735 Huntington Museum of Art'), (26775, 'https://ror.org/021m3j510', 'en', 1, 'https://ror.org/021m3j510 International Academy of Philosophy Internationale Akademie für Philosophie'), (26776, 'https://ror.org/021m4bd11', 'en', 1, 'https://ror.org/021m4bd11 European Peace University'), (26777, 'https://ror.org/021myjd74', 'en', 1, 'https://ror.org/021myjd74 National Museum of Mexican Art'), (26778, 'https://ror.org/021p07t45', 'id', 1, 'https://ror.org/021p07t45 Universitas Gunung Rinjani'), (26779, 'https://ror.org/021s7kp67', 'en', 1, 'https://ror.org/021s7kp67 Gorsky State Agrarian University Горский государственный аграрный университет'), (26780, 'https://ror.org/021tdez87', 'en', 1, 'https://ror.org/021tdez87 Dallas Museum of Art'), (26781, 'https://ror.org/021tsqw04', 'en', 1, 'https://ror.org/021tsqw04 Ateneo de Naga University Pamantasang Ateneo de Naga'), (26782, 'https://ror.org/021wtff78', 'en', 1, 'https://ror.org/021wtff78 Seattle Art Museum'), (26783, 'https://ror.org/021yq0b87', 'en', 1, 'https://ror.org/021yq0b87 Wesleyan University Philippines'), (26784, 'https://ror.org/021zagz69', 'en', 1, 'https://ror.org/021zagz69 Slavic Business Institute'), (26785, 'https://ror.org/0220wbr36', 'en', 1, 'https://ror.org/0220wbr36 Community College Humanities Association'), (26786, 'https://ror.org/02216ze18', 'no_lang_code', 1, 'https://ror.org/02216ze18 Pilsen Tools (Czechia)'), (26787, 'https://ror.org/0221rj138', 'en', 1, 'https://ror.org/0221rj138 Hanford Mills Museum'), (26788, 'https://ror.org/02221cp63', 'no_lang_code', 1, 'https://ror.org/02221cp63 PROCES - Centre for Municipal and Regional Development (Czechia)'), (26789, 'https://ror.org/02232tv51', 'en', 1, 'https://ror.org/02232tv51 Buzzards Bay Coalition'), (26790, 'https://ror.org/0223jhh02', 'en', 1, 'https://ror.org/0223jhh02 Louisiana State Museum'), (26791, 'https://ror.org/0224tgs93', 'en', 1, 'https://ror.org/0224tgs93 Pamantasang Trinitas ng Asya Trinity University of Asia'), (26792, 'https://ror.org/0227kwk61', 'en', 1, 'https://ror.org/0227kwk61 Hai Phong University Trường Đại học Hải Phòng'), (26793, 'https://ror.org/02285qe65', 'id', 1, 'https://ror.org/02285qe65 Institut Teknologi Padang'), (26794, 'https://ror.org/0229a7v30', 'no_lang_code', 1, 'https://ror.org/0229a7v30 SVM Microwaves (Czechia)'), (26795, 'https://ror.org/0229k3q35', 'en', 1, 'https://ror.org/0229k3q35 Maharshi Dayanand Saraswati University महर्षि दयानन्द सरस्वती विश्वविद्यालय, अजमेर'), (26796, 'https://ror.org/022a1fs04', 'en', 1, 'https://ror.org/022a1fs04 Prime University প্রাইম ইউনিভার্সিটি'), (26797, 'https://ror.org/022a4es02', 'en', 1, 'https://ror.org/022a4es02 Institute of Economics and Culture Институт экономики и культуры'), (26798, 'https://ror.org/022b23347', 'en', 1, 'https://ror.org/022b23347 Seian University of Art and Design 成安造形大学'), (26799, 'https://ror.org/022ckte53', 'en', 1, 'https://ror.org/022ckte53 Institute of Chartered Financial Analysts of India भारतीय चार्टर्ड वित्तीय विश्लेषक संस्थान'), (26800, 'https://ror.org/022ef1r75', 'en', 1, 'https://ror.org/022ef1r75 Delaware Historical Society'), (26801, 'https://ror.org/022j0r779', 'en', 1, 'https://ror.org/022j0r779 American Institute for Conservation of Historic & Artistic Works'), (26802, 'https://ror.org/022j25y55', 'en', 1, 'https://ror.org/022j25y55 East Delta University ইস্ট ডেল্টা বিশ্ববিদ্যালয়'), (26803, 'https://ror.org/022jg8f66', 'en', 1, 'https://ror.org/022jg8f66 Yemenia University الجامعة اليمنية'), (26804, 'https://ror.org/022jkh022', 'no_lang_code', 1, 'https://ror.org/022jkh022 Hradecký Písek (Czechia)'), (26805, 'https://ror.org/022ktzz27', 'en', 1, 'https://ror.org/022ktzz27 Uman National University of Horticulture Уманський національний університет садівництва'), (26806, 'https://ror.org/022nh8g63', 'en', 1, 'https://ror.org/022nh8g63 Huntsville Museum of Art'), (26807, 'https://ror.org/022qy6h97', 'en', 1, 'https://ror.org/022qy6h97 Alcide De Gasperi University of Euroregional Economy in Józefów Alcide De Gasperi University of Euroregional Economy w Józefowie'), (26808, 'https://ror.org/022rp9q74', 'en', 1, 'https://ror.org/022rp9q74 Senri Kinran University 千里金蘭大学'), (26809, 'https://ror.org/022v6g479', 'en', 1, 'https://ror.org/022v6g479 Henderson County Public Library'), (26810, 'https://ror.org/022xhck05', 'en', 1, 'https://ror.org/022xhck05 Haliç University Haliç Üniversitesi'), (26811, 'https://ror.org/02311bm93', 'en', 1, 'https://ror.org/02311bm93 Inner Mongolia University of Finance and Economics 内蒙古财经大学'), (26812, 'https://ror.org/0231s0n71', 'no_lang_code', 1, 'https://ror.org/0231s0n71 Watrad (Czechia)'), (26813, 'https://ror.org/0232btn91', 'en', 1, 'https://ror.org/0232btn91 New England Historic Genealogical Society'), (26814, 'https://ror.org/0233vx723', 'en', 1, 'https://ror.org/0233vx723 Freeport Historical Society'), (26815, 'https://ror.org/0234wz714', 'no_lang_code', 1, 'https://ror.org/0234wz714 Environmental Technologies (United States)'), (26816, 'https://ror.org/0236n1k26', 'en', 1, 'https://ror.org/0236n1k26 Association of the Innovation Center of Electronics'), (26817, 'https://ror.org/0236zx722', 'no_lang_code', 1, 'https://ror.org/0236zx722 Gundalow (United States)'), (26818, 'https://ror.org/02375ts60', 'en', 1, 'https://ror.org/02375ts60 New Siberian Institute Новый сибирский институт'), (26819, 'https://ror.org/02376g836', 'en', 1, 'https://ror.org/02376g836 Franz Liszt Academy of Music'), (26820, 'https://ror.org/0238cf984', 'en', 1, 'https://ror.org/0238cf984 Central Philippine University Pamantasang Sentral ng Pilipinas'), (26821, 'https://ror.org/0238qsm25', 'en', 1, 'https://ror.org/0238qsm25 Nihon Fukushi University 日本福祉大学'), (26822, 'https://ror.org/0239rpj17', 'en', 1, 'https://ror.org/0239rpj17 ImagineIF Libraries'), (26823, 'https://ror.org/023b1vx40', 'no_lang_code', 1, 'https://ror.org/023b1vx40 MathAn Praha (Czechia)'), (26824, 'https://ror.org/023bes347', 'en', 1, 'https://ror.org/023bes347 Sikkim Manipal University'), (26825, 'https://ror.org/023crty50', 'en', 1, 'https://ror.org/023crty50 Shahroud University of Medical Sciences'), (26826, 'https://ror.org/023cthp32', 'en', 1, 'https://ror.org/023cthp32 Witherspoon Institute'), (26827, 'https://ror.org/023czz272', 'en', 1, 'https://ror.org/023czz272 American University of Rome Amerikanische Universität Rom Université américaine de Rome'), (26828, 'https://ror.org/023d4z626', 'en', 1, 'https://ror.org/023d4z626 University Hospital of Oran مستشفى وهران الجامعي'), (26829, 'https://ror.org/023gma697', 'no_lang_code', 1, 'https://ror.org/023gma697 Synthos Group (Czechia)'), (26830, 'https://ror.org/023gw3p07', 'no_lang_code', 1, 'https://ror.org/023gw3p07 Washington Ballet (United States)'), (26831, 'https://ror.org/023jsyh61', 'en', 1, 'https://ror.org/023jsyh61 Mokpo National Maritime University 목포해양대학교'), (26832, 'https://ror.org/023jtzw61', 'en', 1, 'https://ror.org/023jtzw61 Flowerdew Hundred Foundation'), (26833, 'https://ror.org/023jw8186', 'no_lang_code', 1, 'https://ror.org/023jw8186 Sapporo Ōtani University 札幌大谷大学'), (26834, 'https://ror.org/023k50a48', 'it', 1, 'https://ror.org/023k50a48 Fondazione Italiana per la Ricerca in Agricoltura Biologica e Biodinamica'), (26835, 'https://ror.org/023mp3m37', 'en', 1, 'https://ror.org/023mp3m37 Hong Kong Virtual University 香港虛擬大學'), (26836, 'https://ror.org/023ntbt15', 'en', 1, 'https://ror.org/023ntbt15 Japanese Red Cross Toyota College of Nursing 日本赤十字豊田看護大学'), (26837, 'https://ror.org/023ra7e85', 'en', 1, 'https://ror.org/023ra7e85 Allen Public Library'), (26838, 'https://ror.org/023rme066', 'en', 1, 'https://ror.org/023rme066 South Puget Sound Community College'), (26839, 'https://ror.org/023t8mt09', 'en', 1, 'https://ror.org/023t8mt09 Hong Kong Shue Yan University 香港樹仁大學'), (26840, 'https://ror.org/023tdry64', 'en', 1, 'https://ror.org/023tdry64 Sirjan University of Technology دانشگاه صنعتی سیرجان'), (26841, 'https://ror.org/023tegq12', 'en', 1, 'https://ror.org/023tegq12 Jaamacadda Hargeysa University of Hargeisa جامعة هرجيسا'), (26842, 'https://ror.org/023wavd33', 'en', 1, 'https://ror.org/023wavd33 Pampanga State Agricultural University'), (26843, 'https://ror.org/023y0xv72', 'en', 1, 'https://ror.org/023y0xv72 Paul Revere Memorial Association'), (26844, 'https://ror.org/0242zbf37', 'en', 1, 'https://ror.org/0242zbf37 Alaska Seafood Marketing Institute'), (26845, 'https://ror.org/0243h2p98', 'en', 1, 'https://ror.org/0243h2p98 St.Tikhon''s Orthodox University Православный Свято-Тихоновский гуманитарный университет'), (26846, 'https://ror.org/0244fjs95', 'en', 1, 'https://ror.org/0244fjs95 San Antonio Public Library'), (26847, 'https://ror.org/02450sh88', 'en', 1, 'https://ror.org/02450sh88 Society for American Music'), (26848, 'https://ror.org/0246ges37', 'en', 1, 'https://ror.org/0246ges37 Independence Seaport Museum'), (26849, 'https://ror.org/0247ag655', 'id', 1, 'https://ror.org/0247ag655 Universitas Islam Indragiri'), (26850, 'https://ror.org/0247jm624', 'en', 1, 'https://ror.org/0247jm624 Gulf of Mexico Foundation'), (26851, 'https://ror.org/0247pbj10', 'en', 1, 'https://ror.org/0247pbj10 Ubon Ratchathani Rajabhat University มหาวิทยาลัยราชภัฏอุบลราชธานี'), (26852, 'https://ror.org/024b38m94', 'en', 1, 'https://ror.org/024b38m94 St. Paul University Quezon City'), (26853, 'https://ror.org/024ba6473', 'en', 1, 'https://ror.org/024ba6473 Hebei Institute of Physical Education 河北体育学院'), (26854, 'https://ror.org/024ckfb15', 'en', 1, 'https://ror.org/024ckfb15 Academy of the Police Force in Bratislava Akadémia Policajného zboru v Bratislave'), (26855, 'https://ror.org/024d7eg57', 'id', 1, 'https://ror.org/024d7eg57 Universitas Sulawesi Tenggara'), (26856, 'https://ror.org/024e4df17', 'en', 1, 'https://ror.org/024e4df17 California Institute of the Arts Instituto de Artes de California'), (26857, 'https://ror.org/024etxn40', 'en', 1, 'https://ror.org/024etxn40 S.Seifullin Kazakh Agro Technical University С. Сейфуллин атындағы қазақ агротехникалық университеті'), (26858, 'https://ror.org/024h65n23', 'no_lang_code', 1, 'https://ror.org/024h65n23 Favea (Czechia)'), (26859, 'https://ror.org/024hcay96', 'en', 1, 'https://ror.org/024hcay96 Achva Academic College המכללה האקדמית אחוה'), (26860, 'https://ror.org/024j7nb58', 'en', 1, 'https://ror.org/024j7nb58 Pavlodar State Pedagogical University Павлодар мемлекеттік педагогикалық университеті'), (26861, 'https://ror.org/024jjwz66', 'en', 1, 'https://ror.org/024jjwz66 Regional Communal Higher Educational Institution Institute of Entrepreneurship Strategy Київський інститут традиційної медицини'), (26862, 'https://ror.org/024jn1h80', 'en', 1, 'https://ror.org/024jn1h80 Arts and Theatre Institute'), (26863, 'https://ror.org/024mdxt30', 'en', 1, 'https://ror.org/024mdxt30 Moscow Institute of Foreign Languages Московский институт иностранных языков'), (26864, 'https://ror.org/024nn8203', 'hu', 1, 'https://ror.org/024nn8203 Adventista Teológiai Fõiskola Hungarian Adventist Theological College'), (26865, 'https://ror.org/024p3pn20', 'no_lang_code', 1, 'https://ror.org/024p3pn20 Seisa Dohto University 星槎道都大学'), (26866, 'https://ror.org/024psbf52', 'en', 1, 'https://ror.org/024psbf52 W. F. Albright Institute of Archaeological Research'), (26867, 'https://ror.org/024s2tr48', 'en', 1, 'https://ror.org/024s2tr48 Bakke Graduate University'), (26868, 'https://ror.org/024t55b22', 'en', 1, 'https://ror.org/024t55b22 Ulysses S. Grant Association'), (26869, 'https://ror.org/024v1qn33', 'en', 1, 'https://ror.org/024v1qn33 Arizona State Land Department'), (26870, 'https://ror.org/024w08x16', 'en', 1, 'https://ror.org/024w08x16 Columbia River Maritime Museum'), (26871, 'https://ror.org/024xmp423', 'en', 1, 'https://ror.org/024xmp423 Ural State University of Physical Culture'), (26872, 'https://ror.org/024ytaq06', 'en', 1, 'https://ror.org/024ytaq06 Field Studies Council'), (26873, 'https://ror.org/024zspx22', 'en', 1, 'https://ror.org/024zspx22 Comrat State University Komrat Devlet Üniversitesi Universitatea de Stat din Comrat Комратский государственный университет'), (26874, 'https://ror.org/02532pm14', 'en', 1, 'https://ror.org/02532pm14 International University of Korea 한국국제대학교'), (26875, 'https://ror.org/02543bv68', 'en', 1, 'https://ror.org/02543bv68 Akita University of Nursing and Welfare 秋田看護福祉大学'), (26876, 'https://ror.org/0255nn983', 'en', 1, 'https://ror.org/0255nn983 Thiruvalluvar University திருவள்ளுவர் பல்கலைக்கழகம்'), (26877, 'https://ror.org/02579k123', 'id', 1, 'https://ror.org/02579k123 Universitas Bina Darma'), (26878, 'https://ror.org/025acyt23', 'en', 1, 'https://ror.org/025acyt23 Warner University'), (26879, 'https://ror.org/025b8gs35', 'no_lang_code', 1, 'https://ror.org/025b8gs35 Bioveta (Czechia)'), (26880, 'https://ror.org/025dv5233', 'en', 1, 'https://ror.org/025dv5233 Iberia Parish Library'), (26881, 'https://ror.org/025e3rc84', 'en', 1, 'https://ror.org/025e3rc84 University of Cambodia សាកលវិទ្យាល័យកម្ពុជា'), (26882, 'https://ror.org/025ee3160', 'id', 1, 'https://ror.org/025ee3160 Universitas WR Supratman'), (26883, 'https://ror.org/025gjwv49', 'no_lang_code', 1, 'https://ror.org/025gjwv49 Ekowatt (Czechia)'), (26884, 'https://ror.org/025h0r574', 'es', 1, 'https://ror.org/025h0r574 Fundación Pública Galega de Medicina Xenómica Genomic Medicine Group'), (26885, 'https://ror.org/025hwk980', 'en', 1, 'https://ror.org/025hwk980 South Kazakhstan Medical Academy Оңтүстік Қазақстан медицина академиясы'), (26886, 'https://ror.org/025kkqh74', 'en', 1, 'https://ror.org/025kkqh74 Ural State Conservatory named after M.P. Mussorgsky Уральская государственная консерватория имени М. П. Мусоргского'), (26887, 'https://ror.org/025km4h87', 'en', 1, 'https://ror.org/025km4h87 Gansu Institute of Political Science and Law 甘肃政法学院'), (26888, 'https://ror.org/025kxab11', 'en', 1, 'https://ror.org/025kxab11 Jilin College of the Arts 吉林艺术学院'), (26889, 'https://ror.org/025p05r74', 'en', 1, 'https://ror.org/025p05r74 Sachem Public Library'), (26890, 'https://ror.org/025p0rk11', 'en', 1, 'https://ror.org/025p0rk11 Islamic Azad University of Garmsar دانشگاه آزاد اسلامی واحد گرمسار'), (26891, 'https://ror.org/025p4jf48', 'en', 1, 'https://ror.org/025p4jf48 Tokyo Junshin University 東京純心大学'), (26892, 'https://ror.org/025q3xb93', 'en', 1, 'https://ror.org/025q3xb93 FEATI University'), (26893, 'https://ror.org/025q7w350', 'en', 1, 'https://ror.org/025q7w350 Yezin Agricultural University ရေဆင်းစိုက်ပျိုးရေးတက္ကသိုလ်'), (26894, 'https://ror.org/025qjtp52', 'en', 1, 'https://ror.org/025qjtp52 Annapolis Maritime Museum'), (26895, 'https://ror.org/025s3sg85', 'no_lang_code', 1, 'https://ror.org/025s3sg85 Elceram (Czechia)'), (26896, 'https://ror.org/025sb3367', 'en', 1, 'https://ror.org/025sb3367 Gavar State University Գավառի պետական համալսարան'), (26897, 'https://ror.org/025vabz67', 'en', 1, 'https://ror.org/025vabz67 California Coastal Commission'), (26898, 'https://ror.org/025vqqa73', 'no_lang_code', 1, 'https://ror.org/025vqqa73 J P Kenny'), (26899, 'https://ror.org/025ycfy09', 'en', 1, 'https://ror.org/025ycfy09 Iowa Department of Cultural Affairs'), (26900, 'https://ror.org/025yf4572', 'en', 1, 'https://ror.org/025yf4572 New Jersey State Library'), (26901, 'https://ror.org/025ytsr97', 'en', 1, 'https://ror.org/025ytsr97 Kerala University of Fisheries and Ocean Studies'), (26902, 'https://ror.org/025ze7j58', 'en', 1, 'https://ror.org/025ze7j58 Kansas City, Kansas Public Library'), (26903, 'https://ror.org/0262acg06', 'en', 1, 'https://ror.org/0262acg06 American Textile History Museum'), (26904, 'https://ror.org/0264cyj93', 'en', 1, 'https://ror.org/0264cyj93 Sagami Women''s University 相模女子大学'), (26905, 'https://ror.org/0265z5881', 'en', 1, 'https://ror.org/0265z5881 Elizabeth River Project'), (26906, 'https://ror.org/0266qh788', 'en', 1, 'https://ror.org/0266qh788 North-West Institute of Management Северо-Западный институт управления'), (26907, 'https://ror.org/0266ryr82', 'no_lang_code', 1, 'https://ror.org/0266ryr82 ApS Brno (Czechia)'), (26908, 'https://ror.org/0267k9n61', 'no_lang_code', 1, 'https://ror.org/0267k9n61 Kinjo University 金城大学'), (26909, 'https://ror.org/026b8w395', 'en', 1, 'https://ror.org/026b8w395 Girne American University Girne Amerikan Üniversitesi'), (26910, 'https://ror.org/026b9sf88', 'no_lang_code', 1, 'https://ror.org/026b9sf88 KR Mangalam University के.आर. मंगलम विश्वविद्यालय'), (26911, 'https://ror.org/026g5rw93', 'en', 1, 'https://ror.org/026g5rw93 Pensacola Historical Society'), (26912, 'https://ror.org/026gk3798', 'en', 1, 'https://ror.org/026gk3798 Baku Slavic University Bakı Slavyan Universiteti Бакинский славянский университет'), (26913, 'https://ror.org/026j13a09', 'en', 1, 'https://ror.org/026j13a09 Doho University 同朋大学'), (26914, 'https://ror.org/026k26b95', 'no_lang_code', 1, 'https://ror.org/026k26b95 Aomori Chuo Gakuin University 青森中央学院大学'), (26915, 'https://ror.org/026katm53', 'pl', 1, 'https://ror.org/026katm53 Wyższa Szkoła Zarządzania Marketingowego i Języków Obcych'), (26916, 'https://ror.org/026mhap18', 'en', 1, 'https://ror.org/026mhap18 Apollonia University Universitatea Apollonia'), (26917, 'https://ror.org/026nzdq35', 'no_lang_code', 1, 'https://ror.org/026nzdq35 Feminist Press'), (26918, 'https://ror.org/026q96n20', 'en', 1, 'https://ror.org/026q96n20 Keiwa College 敬和学園大学'), (26919, 'https://ror.org/026qjzt27', 'en', 1, 'https://ror.org/026qjzt27 Saint - Petersburg Institute of Management and Law Санкт-Петербургский Институт Управления и Права'), (26920, 'https://ror.org/026qx6917', 'en', 1, 'https://ror.org/026qx6917 Chongshin University 총신대학교'), (26921, 'https://ror.org/026qypj38', 'en', 1, 'https://ror.org/026qypj38 Petre Andrei University of Iași Universitatea "Petre Andrei" din Iasi'), (26922, 'https://ror.org/026r2c210', 'en', 1, 'https://ror.org/026r2c210 Dallas Institute of Humanities and Culture'), (26923, 'https://ror.org/026rmnx29', 'en', 1, 'https://ror.org/026rmnx29 Via Vinci Academy'), (26924, 'https://ror.org/026wj5m95', 'en', 1, 'https://ror.org/026wj5m95 South Carolina Association of Public Library Administration'), (26925, 'https://ror.org/0272csn50', 'en', 1, 'https://ror.org/0272csn50 Lakshmibai National Institute of Physical Education'), (26926, 'https://ror.org/02746y325', 'en', 1, 'https://ror.org/02746y325 Operahögskolan i Stockholm Tukholman oopperakorkeakoulu University College of Opera in Stockholm'), (26927, 'https://ror.org/0274ane14', 'en', 1, 'https://ror.org/0274ane14 John Carter Brown Library'), (26928, 'https://ror.org/0274gjx61', 'en', 1, 'https://ror.org/0274gjx61 University of Traditional Medicine, Mandalay တိုင်းရင်းဆေးသိပ္ပံကျောင်း'), (26929, 'https://ror.org/0276taz87', 'en', 1, 'https://ror.org/0276taz87 Association for Computers and the Humanities'), (26930, 'https://ror.org/0277k6k46', 'en', 1, 'https://ror.org/0277k6k46 Maine Maritime Museum'), (26931, 'https://ror.org/027a68c09', 'no_lang_code', 1, 'https://ror.org/027a68c09 Oritest Group (Czechia)'), (26932, 'https://ror.org/027anng05', 'en', 1, 'https://ror.org/027anng05 Lebanese International University الجامعة الدولية اللبنانية'), (26933, 'https://ror.org/027b58k10', 'en', 1, 'https://ror.org/027b58k10 Hiroshima University of Economics 広島経済大学'), (26934, 'https://ror.org/027dkjg03', 'en', 1, 'https://ror.org/027dkjg03 Keisen University 恵泉女学園大学'), (26935, 'https://ror.org/027mg2511', 'en', 1, 'https://ror.org/027mg2511 Tsuda University 津田塾大学'), (26936, 'https://ror.org/027n8z047', 'en', 1, 'https://ror.org/027n8z047 St. Cyril and St. Methodius University of Veliko Tarnovo Великотърновски университет'), (26937, 'https://ror.org/027n9q071', 'fr', 1, 'https://ror.org/027n9q071 Université des Montagnes'), (26938, 'https://ror.org/027ngh677', 'en', 1, 'https://ror.org/027ngh677 Roberson Museum and Science Center'), (26939, 'https://ror.org/027rk0w58', 'en', 1, 'https://ror.org/027rk0w58 Heritage Center of the Union League of Philadelphia'), (26940, 'https://ror.org/027rrs715', 'en', 1, 'https://ror.org/027rrs715 Rhema University'), (26941, 'https://ror.org/027thw408', 'en', 1, 'https://ror.org/027thw408 Palo Alto Unified School District'), (26942, 'https://ror.org/027vj6z88', 'en', 1, 'https://ror.org/027vj6z88 International College of Applied Kinesiology-USA'), (26943, 'https://ror.org/027yf1g97', 'en', 1, 'https://ror.org/027yf1g97 Daegu Cyber University 대구사이버대학교'), (26944, 'https://ror.org/0282prk66', 'en', 1, 'https://ror.org/0282prk66 National University Odesa Law Academy Национальный Университет Одесская юридическая академия Національний університет Одеська юридична академія'), (26945, 'https://ror.org/0282stx37', 'en', 1, 'https://ror.org/0282stx37 Aston Magna Foundation'), (26946, 'https://ror.org/02836fb11', 'en', 1, 'https://ror.org/02836fb11 Univers Moldova'), (26947, 'https://ror.org/0283yy536', 'id', 1, 'https://ror.org/0283yy536 Universitas Lancang Kuning'), (26948, 'https://ror.org/0285m7689', 'en', 1, 'https://ror.org/0285m7689 Phnom Penh International University'), (26949, 'https://ror.org/02865ms07', 'en', 1, 'https://ror.org/02865ms07 Islamic Azad University of Gorgan دانشگاه آزاد اسلامی واحد گرگان'), (26950, 'https://ror.org/02866re76', 'en', 1, 'https://ror.org/02866re76 Boston University Academy'), (26951, 'https://ror.org/0287pc187', 'en', 1, 'https://ror.org/0287pc187 Mount Auburn Cemetery'), (26952, 'https://ror.org/0287qtx49', 'id', 1, 'https://ror.org/0287qtx49 Universitas Sintuwu Maroso'), (26953, 'https://ror.org/02890tv09', 'en', 1, 'https://ror.org/02890tv09 American Public University System'), (26954, 'https://ror.org/0289me815', 'en', 1, 'https://ror.org/0289me815 University of South Carolina Lancaster'), (26955, 'https://ror.org/028a67802', 'no_lang_code', 1, 'https://ror.org/028a67802 Alma Mater Europaea'), (26956, 'https://ror.org/028bh4q69', 'en', 1, 'https://ror.org/028bh4q69 Bell County Museum'), (26957, 'https://ror.org/028bz2q30', 'en', 1, 'https://ror.org/028bz2q30 Marlboro College'), (26958, 'https://ror.org/028bztp57', 'en', 1, 'https://ror.org/028bztp57 Institute of Modern Technologies and Economy институт современных технологий и экономики'), (26959, 'https://ror.org/028ecsj10', 'en', 1, 'https://ror.org/028ecsj10 Periyar Maniammai Institute of Science & Technology பெரியார் மணியம்மை பல்கலைக்கழகம்'), (26960, 'https://ror.org/028h95t32', 'en', 1, 'https://ror.org/028h95t32 Ludong University 鲁东大学'), (26961, 'https://ror.org/028kehd60', 'en', 1, 'https://ror.org/028kehd60 Ashesi University'), (26962, 'https://ror.org/028mtfb17', 'en', 1, 'https://ror.org/028mtfb17 Synergy University Московский финансово-промышленный университет Синергия'), (26963, 'https://ror.org/028ptjw77', 'en', 1, 'https://ror.org/028ptjw77 Baltic Institute of Economics and Finance Балтийский институт экономики и финансов'), (26964, 'https://ror.org/028qksx08', 'en', 1, 'https://ror.org/028qksx08 Institute of Economics and Law Воронежский экономико-правовой институт'), (26965, 'https://ror.org/028r0g017', 'no_lang_code', 1, 'https://ror.org/028r0g017 EMP (Czechia)'), (26966, 'https://ror.org/028r4zr88', 'en', 1, 'https://ror.org/028r4zr88 Multimedia University of Kenya'), (26967, 'https://ror.org/028t56857', 'en', 1, 'https://ror.org/028t56857 Magnes Collection of Jewish Art and Life'), (26968, 'https://ror.org/028vh3r56', 'en', 1, 'https://ror.org/028vh3r56 Suzuka University 鈴鹿国際大学'), (26969, 'https://ror.org/0292bh813', 'en', 1, 'https://ror.org/0292bh813 Mahaveer Academy of Technology and Science University मैट्स विश्वविद्यालय'), (26970, 'https://ror.org/0292j7348', 'en', 1, 'https://ror.org/0292j7348 Kingswood University'), (26971, 'https://ror.org/02952pd71', 'en', 1, 'https://ror.org/02952pd71 Pwani University'), (26972, 'https://ror.org/0297ekn51', 'en', 1, 'https://ror.org/0297ekn51 Bergenfield Public Library'), (26973, 'https://ror.org/0299k9v97', 'en', 1, 'https://ror.org/0299k9v97 Hudson River Valley Greenway'), (26974, 'https://ror.org/029aq5550', 'no_lang_code', 1, 'https://ror.org/029aq5550 Jaamacada Kismaayo Kismayo University'), (26975, 'https://ror.org/029bnc353', 'en', 1, 'https://ror.org/029bnc353 American Shakespeare Center'), (26976, 'https://ror.org/029cdgh07', 'no_lang_code', 1, 'https://ror.org/029cdgh07 HBH Projekt (Czechia)'), (26977, 'https://ror.org/029d56x50', 'en', 1, 'https://ror.org/029d56x50 St. Lawrence University'), (26978, 'https://ror.org/029e8g588', 'en', 1, 'https://ror.org/029e8g588 Akobo Heritage and Memorial University'), (26979, 'https://ror.org/029hrv109', 'en', 1, 'https://ror.org/029hrv109 National Taipei University of Business 國立臺北商業大學'), (26980, 'https://ror.org/029hynv20', 'en', 1, 'https://ror.org/029hynv20 Saint Petersburg Medical Technical Institute Санкт-Петербургский технический институт медицинских'), (26981, 'https://ror.org/029nrcq47', 'no_lang_code', 1, 'https://ror.org/029nrcq47 RS Dynamics (Czechia)'), (26982, 'https://ror.org/029pyt764', 'en', 1, 'https://ror.org/029pyt764 Inter-University Center for Japanese Language Studies アメリカ・カナダ大学連合日本研究センター'), (26983, 'https://ror.org/029sbsp57', 'en', 1, 'https://ror.org/029sbsp57 Badakhshan University پوهنتون بدخشان'), (26984, 'https://ror.org/029smmd76', 'en', 1, 'https://ror.org/029smmd76 University of Human Environments 人間環境大学'), (26985, 'https://ror.org/029t3me68', 'en', 1, 'https://ror.org/029t3me68 Mary Bridge Children''s Health Center'), (26986, 'https://ror.org/029vq3n45', 'no_lang_code', 1, 'https://ror.org/029vq3n45 Thermo Fisher Scientific (Czechia)'), (26987, 'https://ror.org/029w8yh46', 'en', 1, 'https://ror.org/029w8yh46 Jacksonville Public Library'), (26988, 'https://ror.org/029xngd29', 'en', 1, 'https://ror.org/029xngd29 Fryderyk Chopin University of Music Uniwersytet Muzyczny Fryderyka Chopina'), (26989, 'https://ror.org/029ykak92', 'cs', 1, 'https://ror.org/029ykak92 Krajská Hygienická Stanice Středočeského Kraje se Sídlem v Praze'), (26990, 'https://ror.org/029zgsn59', 'en', 1, 'https://ror.org/029zgsn59 Canadian University of Dubai الجامعة الكندية دبي'), (26991, 'https://ror.org/029zx7z39', 'en', 1, 'https://ror.org/029zx7z39 Aomori Public University 青森公立大学'), (26992, 'https://ror.org/02a1v1364', 'id', 1, 'https://ror.org/02a1v1364 Universitas Lakidende'), (26993, 'https://ror.org/02a4ky105', 'en', 1, 'https://ror.org/02a4ky105 Hawai''i Wildlife Fund'), (26994, 'https://ror.org/02a67c878', 'no_lang_code', 1, 'https://ror.org/02a67c878 Vakuum Praha (Czechia)'), (26995, 'https://ror.org/02a6jmr02', 'en', 1, 'https://ror.org/02a6jmr02 Cebu Institute of Technology University'), (26996, 'https://ror.org/02a7kg544', 'no_lang_code', 1, 'https://ror.org/02a7kg544 Seoul Jangsin University'), (26997, 'https://ror.org/02a7s0q69', 'en', 1, 'https://ror.org/02a7s0q69 American Swedish Historical Museum'), (26998, 'https://ror.org/02a7zg443', 'en', 1, 'https://ror.org/02a7zg443 University of the Humanities Хүмүүнлэгийн Ухааны Их Сургууль'), (26999, 'https://ror.org/02a86ry03', 'en', 1, 'https://ror.org/02a86ry03 Chuo Kikuu cha Waislamu Morogoro Muslim University of Morogoro'), (27000, 'https://ror.org/02a9gfy77', 'en', 1, 'https://ror.org/02a9gfy77 Gaston County Public Library'), (27001, 'https://ror.org/02aayd667', 'en', 1, 'https://ror.org/02aayd667 Emanuel University Universitatea Emanuel'), (27002, 'https://ror.org/02abkvw08', 'no_lang_code', 1, 'https://ror.org/02abkvw08 Linet (Czechia)'), (27003, 'https://ror.org/02ad4my11', 'no_lang_code', 1, 'https://ror.org/02ad4my11 Dopravní Rozvojové Středisko (Czechia)'), (27004, 'https://ror.org/02afr7y67', 'en', 1, 'https://ror.org/02afr7y67 Onondaga County Public Library'), (27005, 'https://ror.org/02agqkc58', 'en', 1, 'https://ror.org/02agqkc58 Western University សាកលវិទ្យាល័យវេស្ទើន'), (27006, 'https://ror.org/02ahyfq08', 'en', 1, 'https://ror.org/02ahyfq08 University of the Potomac'), (27007, 'https://ror.org/02ahzqq48', 'no_lang_code', 1, 'https://ror.org/02ahzqq48 Fer Kladno (Czechia)'), (27008, 'https://ror.org/02amxp214', 'no_lang_code', 1, 'https://ror.org/02amxp214 Mahachulalongkornrajavidyalaya University มหาวิทยาลัยมหาจุฬาลงกรณราชวิทยาลัย'), (27009, 'https://ror.org/02aps7m22', 'en', 1, 'https://ror.org/02aps7m22 Golden Gate National Parks Conservancy'), (27010, 'https://ror.org/02aq38w28', 'en', 1, 'https://ror.org/02aq38w28 Lackawanna County Library System'), (27011, 'https://ror.org/02aq91h52', 'en', 1, 'https://ror.org/02aq91h52 Academy of Public Administration under the aegis of the President of the Republic of Belarus Акаде́мия управле́ния при Президе́нте Респу́блики Белару́сь Акадэ́мiя кiрава́ння пры Прэзiдэ́нце Рэспу́блiкi Белару́сь'), (27012, 'https://ror.org/02ar8my54', 'en', 1, 'https://ror.org/02ar8my54 Yakima Valley Museum'), (27013, 'https://ror.org/02asgt557', 'en', 1, 'https://ror.org/02asgt557 Arab Open University الجامعة العربية المفتوحة / الأردن'), (27014, 'https://ror.org/02at53m79', 'en', 1, 'https://ror.org/02at53m79 Northern University ناردرن پوهنتون نوښار ناردرن یونیورسٹی نوشہرہ'), (27015, 'https://ror.org/02avqnk51', 'en', 1, 'https://ror.org/02avqnk51 Kazakh Academy of Sport and Tourism Қазақ спорт және туризм академиясы'), (27016, 'https://ror.org/02azpgf48', 'en', 1, 'https://ror.org/02azpgf48 American University of Iraq Sulaimani الجامعة الأمريكية في السليمانية'), (27017, 'https://ror.org/02azr0g93', 'en', 1, 'https://ror.org/02azr0g93 Khairun University Universitas Khairun'), (27018, 'https://ror.org/02b2qz884', 'no_lang_code', 1, 'https://ror.org/02b2qz884 Sinar Mas (Indonesia)'), (27019, 'https://ror.org/02b394754', 'en', 1, 'https://ror.org/02b394754 University of Pittsburgh at Greensburg'), (27020, 'https://ror.org/02b3jvc59', 'en', 1, 'https://ror.org/02b3jvc59 South Dakota State Historical Society'), (27021, 'https://ror.org/02b4gv182', 'en', 1, 'https://ror.org/02b4gv182 Moscow State Agroengineering University named after V.P. Goryachkin Московский государственный агроинженерный университет имени В. П. Горячкина'), (27022, 'https://ror.org/02b5k3s39', 'en', 1, 'https://ror.org/02b5k3s39 Texas Parks and Wildlife Department'), (27023, 'https://ror.org/02barjc38', 'en', 1, 'https://ror.org/02barjc38 Arni University अर्नी विश्वविद्यालय'), (27024, 'https://ror.org/02bbvzp74', 'en', 1, 'https://ror.org/02bbvzp74 Indian Law Institute'), (27025, 'https://ror.org/02bc24n80', 'en', 1, 'https://ror.org/02bc24n80 Sendai Shirayuri Women''s College 仙台白百合女子大学'), (27026, 'https://ror.org/02bcg1976', 'en', 1, 'https://ror.org/02bcg1976 Islamic Azad University of Tafresh دانشگاه آزاد اسلامی واحد تفرش'), (27027, 'https://ror.org/02bdt4v11', 'en', 1, 'https://ror.org/02bdt4v11 Pakistan Institute of Development Economics'); INSERT INTO `rors` VALUES (27028, 'https://ror.org/02bf1c960', 'en', 1, 'https://ror.org/02bf1c960 Isabella Stewart Gardner Museum'), (27029, 'https://ror.org/02bfxj795', 'no_lang_code', 1, 'https://ror.org/02bfxj795 Halla Visteon Climate Control (Czechia)'), (27030, 'https://ror.org/02bgarq81', 'en', 1, 'https://ror.org/02bgarq81 Bay Institute'), (27031, 'https://ror.org/02bhpc673', 'en', 1, 'https://ror.org/02bhpc673 Bristol Bay Native Association'), (27032, 'https://ror.org/02bk4fc75', 'en', 1, 'https://ror.org/02bk4fc75 International Conference for the Study of Political Thought'), (27033, 'https://ror.org/02bk71j42', 'en', 1, 'https://ror.org/02bk71j42 Alaska Department of Military and Veterans Affairs'), (27034, 'https://ror.org/02bkc9a40', 'en', 1, 'https://ror.org/02bkc9a40 American Academy of Religion'), (27035, 'https://ror.org/02bkjet92', 'en', 1, 'https://ror.org/02bkjet92 Mississippi Library Commission'), (27036, 'https://ror.org/02bkptf71', 'no_lang_code', 1, 'https://ror.org/02bkptf71 Silniční Vývoj (Czechia)'), (27037, 'https://ror.org/02bmams93', 'en', 1, 'https://ror.org/02bmams93 St. Thomas University'), (27038, 'https://ror.org/02bn3q971', 'en', 1, 'https://ror.org/02bn3q971 Rivne State University of Humanities Рівненський державний гуманітарний університет'), (27039, 'https://ror.org/02bn7h511', 'en', 1, 'https://ror.org/02bn7h511 University of La Salette'), (27040, 'https://ror.org/02bnkm316', 'en', 1, 'https://ror.org/02bnkm316 University of Computer Sciences and Skills Wyższa Szkoła Informatyki w Łodzi'), (27041, 'https://ror.org/02bprcs59', 'en', 1, 'https://ror.org/02bprcs59 Mariano Marcos State University Pambansang Pamantasan ng Mariano Marcos'), (27042, 'https://ror.org/02bqzgt47', 'en', 1, 'https://ror.org/02bqzgt47 Dans- och Cirkushögskolan University of Dance and Circus'), (27043, 'https://ror.org/02btq3988', 'en', 1, 'https://ror.org/02btq3988 Sweetwater County Historical Museum'), (27044, 'https://ror.org/02bvdvz71', 'en', 1, 'https://ror.org/02bvdvz71 Stamford International University มหาวิทยาลัยนานาชาติแสตมฟอร์ด'), (27045, 'https://ror.org/02bvvhn54', 'en', 1, 'https://ror.org/02bvvhn54 Abai Kazakh National Pedagogical University Абай атындағы Қазақ ұлттық педагогика университеті'), (27046, 'https://ror.org/02bvwpb24', 'en', 1, 'https://ror.org/02bvwpb24 Kokshetau State University Кокшетауский государственный университет Көкшетау мемлекеттік университеті'), (27047, 'https://ror.org/02bwrhb42', 'no_lang_code', 1, 'https://ror.org/02bwrhb42 EnerGoConsult (Czechia)'), (27048, 'https://ror.org/02bwv2c23', 'no_lang_code', 1, 'https://ror.org/02bwv2c23 Letecke Pristroje Praha (Czechia)'), (27049, 'https://ror.org/02bx4hs93', 'en', 1, 'https://ror.org/02bx4hs93 Buffalo and Erie County Public Library'), (27050, 'https://ror.org/02bxk9349', 'no_lang_code', 1, 'https://ror.org/02bxk9349 Miracle (Czechia)'), (27051, 'https://ror.org/02byvvk38', 'no_lang_code', 1, 'https://ror.org/02byvvk38 Disk (Czechia)'), (27052, 'https://ror.org/02byy8g27', 'en', 1, 'https://ror.org/02byy8g27 Kyushu Lutheran College 九州ルーテル学院大学'), (27053, 'https://ror.org/02bzpph30', 'en', 1, 'https://ror.org/02bzpph30 National Taipei University of Education 國立臺北教育大學'), (27054, 'https://ror.org/02c1wsz97', 'en', 1, 'https://ror.org/02c1wsz97 National Foundation for Jewish Culture'), (27055, 'https://ror.org/02c2her03', 'en', 1, 'https://ror.org/02c2her03 Sri Guru Granth Sahib World University ਸ੍ਰੀ ਗੁਰੂ ਗ੍ਰੰਥ ਸਾਹਿਬ ਵਰਲਡ ਯੂਨੀਵਰਸਿਟੀ'), (27056, 'https://ror.org/02c2rwt41', 'en', 1, 'https://ror.org/02c2rwt41 Coral Reef Alliance'), (27057, 'https://ror.org/02c37r983', 'en', 1, 'https://ror.org/02c37r983 University of Negros Occidental – Recoletos'), (27058, 'https://ror.org/02c385802', 'en', 1, 'https://ror.org/02c385802 George Wythe University'), (27059, 'https://ror.org/02c733g32', 'id', 1, 'https://ror.org/02c733g32 Universitas Tulang Bawang Lampung'), (27060, 'https://ror.org/02c7fax93', 'en', 1, 'https://ror.org/02c7fax93 Al Furat University جامعة الفرات'), (27061, 'https://ror.org/02c875652', 'no_lang_code', 1, 'https://ror.org/02c875652 Research Institute of Textile Machinery VUTS (Czechia)'), (27062, 'https://ror.org/02c8cxz64', 'en', 1, 'https://ror.org/02c8cxz64 University of the Republic of San Marino Università degli Studi della Repubblica di San Marino'), (27063, 'https://ror.org/02c8fr539', 'en', 1, 'https://ror.org/02c8fr539 North Bengal Agricultural University Uttar Banga Krishi Viswavidyalaya'), (27064, 'https://ror.org/02cbb2q94', 'en', 1, 'https://ror.org/02cbb2q94 Trinity Southwest University'), (27065, 'https://ror.org/02cbm8069', 'en', 1, 'https://ror.org/02cbm8069 South Coast Railroad Museum'), (27066, 'https://ror.org/02cc4gc68', 'en', 1, 'https://ror.org/02cc4gc68 Allameh Tabataba''i University دانشگاه علامه طباطبایی'), (27067, 'https://ror.org/02cd6sx47', 'en', 1, 'https://ror.org/02cd6sx47 Seirei Christopher University 聖隷クリストファー大学'), (27068, 'https://ror.org/02cfjr625', 'no_lang_code', 1, 'https://ror.org/02cfjr625 Kovohutě Příbram Nástupnická (Czechia)'), (27069, 'https://ror.org/02cgbcj98', 'en', 1, 'https://ror.org/02cgbcj98 Limkokwing University of Creative Technology Universiti Teknologi Kreatif Limkokwing'), (27070, 'https://ror.org/02cknsb32', 'en', 1, 'https://ror.org/02cknsb32 WQED'), (27071, 'https://ror.org/02cm0sv45', 'en', 1, 'https://ror.org/02cm0sv45 Chicago Filmmakers'), (27072, 'https://ror.org/02cmw6227', 'cs', 1, 'https://ror.org/02cmw6227 Krkonoše Mountains National Park Správa Krkonošského Národního Parku'), (27073, 'https://ror.org/02cmz8k74', 'en', 1, 'https://ror.org/02cmz8k74 Parsons School of Design'), (27074, 'https://ror.org/02cne5608', 'en', 1, 'https://ror.org/02cne5608 Glazov State Pedagogical Institute Named after VG Korolenko ГЛАЗОВСКИЙ ГОСУДАРСТВЕННЫЙ ПЕДАГОГИЧЕСКИЙ ИНСТИТУТ ИМЕНИ В.Г. КОРОЛЕНКО'), (27075, 'https://ror.org/02cpgzn10', 'no_lang_code', 1, 'https://ror.org/02cpgzn10 AI Biosciences (United States)'), (27076, 'https://ror.org/02csxcg02', 'id', 1, 'https://ror.org/02csxcg02 Universitas Dian Nuswantoro'), (27077, 'https://ror.org/02ct4rh41', 'en', 1, 'https://ror.org/02ct4rh41 Biblioteca Pública de Queens Queens Public Library'), (27078, 'https://ror.org/02cxtyv10', 'cs', 1, 'https://ror.org/02cxtyv10 Český Svaz Stavebních Inženýrů'), (27079, 'https://ror.org/02cxy7q30', 'en', 1, 'https://ror.org/02cxy7q30 Belarusian State Aviation Academy Белорусская государственная академия авиации'), (27080, 'https://ror.org/02czn2d69', 'en', 1, 'https://ror.org/02czn2d69 Society of Architectural Historians'), (27081, 'https://ror.org/02d04zk75', 'no_lang_code', 1, 'https://ror.org/02d04zk75 Fans (Czechia)'), (27082, 'https://ror.org/02d0jmr12', 'en', 1, 'https://ror.org/02d0jmr12 Louisville Free Public Library'), (27083, 'https://ror.org/02d12kw26', 'en', 1, 'https://ror.org/02d12kw26 Eesti Ettevõtluskõrgkool Mainor Estonian Entrepreneurship University of Applied Sciences'), (27084, 'https://ror.org/02d19m529', 'en', 1, 'https://ror.org/02d19m529 Tianjin Open University 天津开放大学'), (27085, 'https://ror.org/02d2yjc53', 'en', 1, 'https://ror.org/02d2yjc53 University of the Russian Academy of Education Университет Российской Академии Образования'), (27086, 'https://ror.org/02d4sgc96', 'en', 1, 'https://ror.org/02d4sgc96 Oyster Recovery Partnership'), (27087, 'https://ror.org/02d6sp246', 'en', 1, 'https://ror.org/02d6sp246 Karoly Robert Foiskola Károly Róbert University College'), (27088, 'https://ror.org/02d8ecr17', 'en', 1, 'https://ror.org/02d8ecr17 Vitebsk State Medical University Віцебскі дзяржаўны медыцынскі ўнівэрсітэт'), (27089, 'https://ror.org/02d9d7j52', 'en', 1, 'https://ror.org/02d9d7j52 Thunchath Ezhuthachan Malayalam University துஞ்சத்து எழுத்தச்சன் மலையாள பல்கலைக்கழகம் തുഞ്ചത്ത് എഴുത്തച്ഛൻ മലയാളം സർവ്വകലാശാല'), (27090, 'https://ror.org/02dbhfj05', 'no_lang_code', 1, 'https://ror.org/02dbhfj05 Euro Support (Czechia)'), (27091, 'https://ror.org/02dbzr904', 'no_lang_code', 1, 'https://ror.org/02dbzr904 Solikamsk State Pedagogical Institute'), (27092, 'https://ror.org/02ddvb580', 'en', 1, 'https://ror.org/02ddvb580 Oregon Department of Geology and Mineral Industries'), (27093, 'https://ror.org/02dfcd792', 'no_lang_code', 1, 'https://ror.org/02dfcd792 Intens (Czechia)'), (27094, 'https://ror.org/02dg6na50', 'en', 1, 'https://ror.org/02dg6na50 Halkara Türkmen-Türk uniwersiteti International Turkmen-Turkish University Международный туркмено-турецкий университет'), (27095, 'https://ror.org/02dgqz246', 'no_lang_code', 1, 'https://ror.org/02dgqz246 Cominfo (Czechia)'), (27096, 'https://ror.org/02dh37d82', 'no_lang_code', 1, 'https://ror.org/02dh37d82 Vidia (Czechia)'), (27097, 'https://ror.org/02dhd8054', 'no_lang_code', 1, 'https://ror.org/02dhd8054 Arqball (United States)'), (27098, 'https://ror.org/02dhkpg18', 'no_lang_code', 1, 'https://ror.org/02dhkpg18 Center for Visual Communication (United States)'), (27099, 'https://ror.org/02djb3912', 'no_lang_code', 1, 'https://ror.org/02djb3912 Enacon (Czechia)'), (27100, 'https://ror.org/02dmq8z55', 'no_lang_code', 1, 'https://ror.org/02dmq8z55 General Electric (Czechia)'), (27101, 'https://ror.org/02dn6hy62', 'en', 1, 'https://ror.org/02dn6hy62 Moscow State University of Environmental Engineering Московский государственный университет инженерной экологии'), (27102, 'https://ror.org/02dndas03', 'en', 1, 'https://ror.org/02dndas03 Kandiyohi County Historical Society'), (27103, 'https://ror.org/02dnt2x11', 'en', 1, 'https://ror.org/02dnt2x11 National Training Fund'), (27104, 'https://ror.org/02dp3m016', 'no_lang_code', 1, 'https://ror.org/02dp3m016 Prefa Brno (Czechia)'), (27105, 'https://ror.org/02dq9yd39', 'en', 1, 'https://ror.org/02dq9yd39 North Carolina Museum of History'), (27106, 'https://ror.org/02dqf3w62', 'en', 1, 'https://ror.org/02dqf3w62 Osaka International University 大阪国際大学'), (27107, 'https://ror.org/02drbka58', 'en', 1, 'https://ror.org/02drbka58 Council of the Southern Mountains'), (27108, 'https://ror.org/02dvskw32', 'en', 1, 'https://ror.org/02dvskw32 Makhanlal Chaturvedi National University of Journalism and Communication माखनलाल चतुर्वेदी राष्ट्रीय पत्रकारिता एवं संचार विश्वविद्यालय'), (27109, 'https://ror.org/02dwjjq70', 'no_lang_code', 1, 'https://ror.org/02dwjjq70 Cycleco (France)'), (27110, 'https://ror.org/02dzk6f82', 'en', 1, 'https://ror.org/02dzk6f82 Providence Athenaeum'), (27111, 'https://ror.org/02dzzka09', 'no_lang_code', 1, 'https://ror.org/02dzzka09 Sungkyul University'), (27112, 'https://ror.org/02e16wz39', 'en', 1, 'https://ror.org/02e16wz39 Moscow State University of Printing Arts Московский государственный университет печати'), (27113, 'https://ror.org/02e2kkf63', 'en', 1, 'https://ror.org/02e2kkf63 Ocean Trust'), (27114, 'https://ror.org/02e2nnq08', 'en', 1, 'https://ror.org/02e2nnq08 Shandong University of Finance and Economics 山东财经大学'), (27115, 'https://ror.org/02e46xh50', 'en', 1, 'https://ror.org/02e46xh50 International Documentary Association'), (27116, 'https://ror.org/02e6yym45', 'en', 1, 'https://ror.org/02e6yym45 Apprend Foundation'), (27117, 'https://ror.org/02e8gsm88', 'no_lang_code', 1, 'https://ror.org/02e8gsm88 ZKL (Czechia)'), (27118, 'https://ror.org/02e8yt306', 'id', 1, 'https://ror.org/02e8yt306 Nusa Tenggara Barat University Universitas Nusa Tenggara Barat'), (27119, 'https://ror.org/02ecg3h97', 'en', 1, 'https://ror.org/02ecg3h97 ICFAI University, Dehradun'), (27120, 'https://ror.org/02ee19461', 'en', 1, 'https://ror.org/02ee19461 Open Universities Australia'), (27121, 'https://ror.org/02ee2t316', 'en', 1, 'https://ror.org/02ee2t316 University of Wasit جامعة واسط'), (27122, 'https://ror.org/02eg6d927', 'en', 1, 'https://ror.org/02eg6d927 University of the Cordilleras'), (27123, 'https://ror.org/02egpvc59', 'en', 1, 'https://ror.org/02egpvc59 Pierce County Library System'), (27124, 'https://ror.org/02ehsvt70', 'pt', 1, 'https://ror.org/02ehsvt70 Hospital do Divino Espírito Santo'), (27125, 'https://ror.org/02ek1bx64', 'en', 1, 'https://ror.org/02ek1bx64 Burgas Free University Бургаски свободен университет'), (27126, 'https://ror.org/02em0x482', 'en', 1, 'https://ror.org/02em0x482 Kentucky Department for Libraries and Archives'), (27127, 'https://ror.org/02em1tr51', 'en', 1, 'https://ror.org/02em1tr51 University of Petroleum'), (27128, 'https://ror.org/02emvsg33', 'en', 1, 'https://ror.org/02emvsg33 Tajik State Medical University Донишгоҳи давлатии тиббии Тоҷикистон ба номи Абӯалӣ Ибни Сино Таджикский государственный медицинский университет'), (27129, 'https://ror.org/02ephqy68', 'en', 1, 'https://ror.org/02ephqy68 Don State Agrarian University Донской государственный аграрный университет'), (27130, 'https://ror.org/02er6sh59', 'en', 1, 'https://ror.org/02er6sh59 Suncoast Health Council'), (27131, 'https://ror.org/02erjps28', 'en', 1, 'https://ror.org/02erjps28 Moscow Institute of Modern Business Московский институт современного бизнеса'), (27132, 'https://ror.org/02erz7116', 'no_lang_code', 1, 'https://ror.org/02erz7116 Gakushūin School Corporation 学校法人 学習院'), (27133, 'https://ror.org/02esqkz27', 'no_lang_code', 1, 'https://ror.org/02esqkz27 Závod Automatizační Techniky (Czechia)'), (27134, 'https://ror.org/02et39n43', 'no_lang_code', 1, 'https://ror.org/02et39n43 Kerala Kalamandalam கலாமண்டலம் കേരളകലാമണ്ഡലം'), (27135, 'https://ror.org/02ev5wr74', 'no_lang_code', 1, 'https://ror.org/02ev5wr74 Hatyai University มหาวิทยาลัยหาดใหญ่'), (27136, 'https://ror.org/02ewm5p09', 'en', 1, 'https://ror.org/02ewm5p09 Saitama Gakuen University 埼玉学園大学'), (27137, 'https://ror.org/02exegz49', 'en', 1, 'https://ror.org/02exegz49 Yokkaichi Nursing and Medical Care University 四日市看護医療大学'), (27138, 'https://ror.org/02exm7r59', 'en', 1, 'https://ror.org/02exm7r59 Rokeby Museum'), (27139, 'https://ror.org/02f3j0q24', 'en', 1, 'https://ror.org/02f3j0q24 Baliuag University'), (27140, 'https://ror.org/02f49t952', 'id', 1, 'https://ror.org/02f49t952 Universitas Almuslim'), (27141, 'https://ror.org/02f5k4n77', 'en', 1, 'https://ror.org/02f5k4n77 DeKalb County Public Library'), (27142, 'https://ror.org/02f7nxk86', 'id', 1, 'https://ror.org/02f7nxk86 Universitas Palembang'), (27143, 'https://ror.org/02f8a6404', 'en', 1, 'https://ror.org/02f8a6404 Albanian University'), (27144, 'https://ror.org/02f9rwx65', 'en', 1, 'https://ror.org/02f9rwx65 Honam Theological University and Seminary 호남신학대학교'), (27145, 'https://ror.org/02fcwvm90', 'en', 1, 'https://ror.org/02fcwvm90 Suquamish Museum'), (27146, 'https://ror.org/02ffca462', 'en', 1, 'https://ror.org/02ffca462 Megatrend University Мегатренд универзитет'), (27147, 'https://ror.org/02fg4j559', 'en', 1, 'https://ror.org/02fg4j559 Gimcheon University 김천대학교'), (27148, 'https://ror.org/02fh5m162', 'cs', 1, 'https://ror.org/02fh5m162 Národní Pedagogické Muzeum a Knihovna J. A. Komenského'), (27149, 'https://ror.org/02fm1my09', 'id', 1, 'https://ror.org/02fm1my09 Universitas Kristen Indonesia Paulus'), (27150, 'https://ror.org/02fney094', 'en', 1, 'https://ror.org/02fney094 Billerica Public Library'), (27151, 'https://ror.org/02fprm943', 'en', 1, 'https://ror.org/02fprm943 Oberlin Heritage Center'), (27152, 'https://ror.org/02fs2ee62', 'en', 1, 'https://ror.org/02fs2ee62 University of Pikeville Université de pikeville'), (27153, 'https://ror.org/02fstjp34', 'en', 1, 'https://ror.org/02fstjp34 Hochschule für Künste Bremen University of the Arts Bremen'), (27154, 'https://ror.org/02fvj8330', 'no_lang_code', 1, 'https://ror.org/02fvj8330 Toyohashi Sozo College 豊橋創造大学'), (27155, 'https://ror.org/02fwtv659', 'en', 1, 'https://ror.org/02fwtv659 Herzing University'), (27156, 'https://ror.org/02fy2kw04', 'no_lang_code', 1, 'https://ror.org/02fy2kw04 Dufonev (Czechia)'), (27157, 'https://ror.org/02fyfj503', 'en', 1, 'https://ror.org/02fyfj503 Media Working Group'), (27158, 'https://ror.org/02g30pd64', 'en', 1, 'https://ror.org/02g30pd64 Pontifical University of the Holy Cross Pontificia Università della Santa Croce Päpstliche Universität vom Heiligen Kreuz Universitat Pontifícia de la Santa Creu Université pontificale de la sainte-croix'), (27159, 'https://ror.org/02g3wgj66', 'en', 1, 'https://ror.org/02g3wgj66 Beijing Dance Academy 北京舞蹈学院'), (27160, 'https://ror.org/02g4rm341', 'no_lang_code', 1, 'https://ror.org/02g4rm341 G Impuls Praha (Czechia)'), (27161, 'https://ror.org/02g50bf58', 'en', 1, 'https://ror.org/02g50bf58 Natural History Museum of Utah'), (27162, 'https://ror.org/02g6px103', 'en', 1, 'https://ror.org/02g6px103 Vologda Institute of Law and Economics Вологодский институт права и экономики'), (27163, 'https://ror.org/02g702008', 'en', 1, 'https://ror.org/02g702008 Kalasin University มหาวิทยาลัยกาฬสินธุ์'), (27164, 'https://ror.org/02g847680', 'en', 1, 'https://ror.org/02g847680 University of Kalamoon جامعة القلمون الخاصة'), (27165, 'https://ror.org/02g8brk88', 'no_lang_code', 1, 'https://ror.org/02g8brk88 Phranakhon Si Ayutthaya Rajabhat University มหาวิทยาลัยราชภัฏพระนครศรีอยุธยา'), (27166, 'https://ror.org/02g97km06', 'en', 1, 'https://ror.org/02g97km06 Russian Islamic University Российский исламский институт'), (27167, 'https://ror.org/02g9ex009', 'en', 1, 'https://ror.org/02g9ex009 Worcester Historical Museum'), (27168, 'https://ror.org/02ga6x098', 'en', 1, 'https://ror.org/02ga6x098 Fine Arts Museums of San Francisco Museo de Bellas Artes de San Francisco Musée des beaux-arts de san francisco'), (27169, 'https://ror.org/02gb3y251', 'en', 1, 'https://ror.org/02gb3y251 Denver Seminary'), (27170, 'https://ror.org/02gdq8g56', 'en', 1, 'https://ror.org/02gdq8g56 Tama University 多摩大学'), (27171, 'https://ror.org/02gf32v67', 'en', 1, 'https://ror.org/02gf32v67 Voronezh State Agrarian University named after Emperor Peter the Great Воро́нежский госуда́рственный агра́рный университе́т и́мени импера́тора Петра́ I'), (27172, 'https://ror.org/02gfhhc90', 'en', 1, 'https://ror.org/02gfhhc90 Komazawa Women''s University 駒沢女子大学'), (27173, 'https://ror.org/02ggacn82', 'en', 1, 'https://ror.org/02ggacn82 New Hampshire Historical Society'), (27174, 'https://ror.org/02ggnbj54', 'en', 1, 'https://ror.org/02ggnbj54 Tehran University of Art دانشگاه هنر'), (27175, 'https://ror.org/02ggx8458', 'no_lang_code', 1, 'https://ror.org/02ggx8458 Vuab Pharma (Czechia)'), (27176, 'https://ror.org/02gkave86', 'en', 1, 'https://ror.org/02gkave86 Rosenbach Museum and Library'), (27177, 'https://ror.org/02gm2ae61', 'en', 1, 'https://ror.org/02gm2ae61 University of Science and Technology of Ivory Coast Université des Sciences et Technologies de Côte d''Ivoire'), (27178, 'https://ror.org/02gmebg52', 'no_lang_code', 1, 'https://ror.org/02gmebg52 Mega (Czechia)'), (27179, 'https://ror.org/02gne5439', 'en', 1, 'https://ror.org/02gne5439 National Agrarian University Universidad Nacional Agraria'), (27180, 'https://ror.org/02gnwrw46', 'en', 1, 'https://ror.org/02gnwrw46 Cyprus Institute of Marketing'), (27181, 'https://ror.org/02gpy8g87', 'en', 1, 'https://ror.org/02gpy8g87 Western Philippines University'), (27182, 'https://ror.org/02gqmg750', 'en', 1, 'https://ror.org/02gqmg750 State Classical Academy named after Maimonides Государственная классическая академия имени Маймонида'), (27183, 'https://ror.org/02grx1n44', 'en', 1, 'https://ror.org/02grx1n44 New Haven Unified School District'), (27184, 'https://ror.org/02gv7s365', 'en', 1, 'https://ror.org/02gv7s365 Romanian University of Sciences and Arts "Gheorghe Cristea" Universitatea Româna de Știinte și Arte „Gheorghe Cristea”'), (27185, 'https://ror.org/02gvn8796', 'en', 1, 'https://ror.org/02gvn8796 Sultan Sharif Ali Islamic University Universiti Islam Sultan Sharif Ali'), (27186, 'https://ror.org/02gxh9k41', 'en', 1, 'https://ror.org/02gxh9k41 Bullock Museum'), (27187, 'https://ror.org/02gxppt96', 'no_lang_code', 1, 'https://ror.org/02gxppt96 Materiálový A Metalurgický Výzkum (Czechia)'), (27188, 'https://ror.org/02gxxae53', 'id', 1, 'https://ror.org/02gxxae53 Universitas Panji Sakti'), (27189, 'https://ror.org/02gyp0j55', 'en', 1, 'https://ror.org/02gyp0j55 Ural Institute of Commerce and Law Уральский институт коммерции и права'), (27190, 'https://ror.org/02h7f3665', 'en', 1, 'https://ror.org/02h7f3665 Departamento de Transporte de Wisconsin Département des transports du wisconsin Wisconsin Department of Transportation'), (27191, 'https://ror.org/02h7g1s38', 'en', 1, 'https://ror.org/02h7g1s38 Jawaharlal Nehru Architecture and Fine Arts University जवाहरलाल नेहरू वास्तुकला तथा ललितकला विश्वविद्यालय'), (27192, 'https://ror.org/02h7vzs32', 'en', 1, 'https://ror.org/02h7vzs32 Korea Development Institute 한국개발연구원'), (27193, 'https://ror.org/02h8tmh67', 'it', 1, 'https://ror.org/02h8tmh67 Istituto Guglielmo Tagliacarne'), (27194, 'https://ror.org/02h8xd110', 'id', 1, 'https://ror.org/02h8xd110 Universitas Quality'), (27195, 'https://ror.org/02h97hh92', 'en', 1, 'https://ror.org/02h97hh92 Cavendish University Uganda'), (27196, 'https://ror.org/02h9hn661', 'en', 1, 'https://ror.org/02h9hn661 Latvian Academy of Sport Education Latvijas Sporta Pedagoģijas Akadēmija'), (27197, 'https://ror.org/02hb34304', 'en', 1, 'https://ror.org/02hb34304 EuroAcademy Euroakadeemia'), (27198, 'https://ror.org/02hbg0y44', 'no_lang_code', 1, 'https://ror.org/02hbg0y44 Hofmeister (Czechia)'), (27199, 'https://ror.org/02hda4733', 'en', 1, 'https://ror.org/02hda4733 Pamantasan ng San Agustin University of San Agustin'), (27200, 'https://ror.org/02hf81m35', 'en', 1, 'https://ror.org/02hf81m35 Riordan Clinic'), (27201, 'https://ror.org/02hfhf494', 'en', 1, 'https://ror.org/02hfhf494 Kuzbass State Technical University Кузбасский государственный технический университет'), (27202, 'https://ror.org/02hgdn135', 'en', 1, 'https://ror.org/02hgdn135 Center for Wooden Boats'), (27203, 'https://ror.org/02hhqwv47', 'no_lang_code', 1, 'https://ror.org/02hhqwv47 Tonak (Czechia)'), (27204, 'https://ror.org/02hngjw26', 'en', 1, 'https://ror.org/02hngjw26 Seoul Christian University'), (27205, 'https://ror.org/02hp1db34', 'no_lang_code', 1, 'https://ror.org/02hp1db34 Research Institute of Organic Syntheses (Czechia) Výzkumný Ústav Organických Syntéz'), (27206, 'https://ror.org/02hph8r17', 'en', 1, 'https://ror.org/02hph8r17 Grigol Robakidze University გრიგოლ რობაქიძის სახელობის უნივერსიტეტი'), (27207, 'https://ror.org/02hpqxd69', 'en', 1, 'https://ror.org/02hpqxd69 Slater Mill'), (27208, 'https://ror.org/02hpvf222', 'en', 1, 'https://ror.org/02hpvf222 Moscow Institute of Medical and Social Rehabilitologists Московский институт медико-социальной реабилитологии'), (27209, 'https://ror.org/02hqgw034', 'no_lang_code', 1, 'https://ror.org/02hqgw034 Envinet (Czechia)'), (27210, 'https://ror.org/02hrree94', 'en', 1, 'https://ror.org/02hrree94 Gomel State Medical University Гомельский государственный медицинский университет Гомельскі дзяржаўны медыцынскі ўніверсітэт'), (27211, 'https://ror.org/02hrvn918', 'no_lang_code', 1, 'https://ror.org/02hrvn918 Hydrion (Netherlands)'), (27212, 'https://ror.org/02hs3et22', 'en', 1, 'https://ror.org/02hs3et22 Grand View University'), (27213, 'https://ror.org/02hssg709', 'en', 1, 'https://ror.org/02hssg709 Adventist University of the Philippines'), (27214, 'https://ror.org/02ht5pq60', 'en', 1, 'https://ror.org/02ht5pq60 Kabul University دانشگاه کابل'), (27215, 'https://ror.org/02ht85z18', 'en', 1, 'https://ror.org/02ht85z18 Illinois State Historical Society'), (27216, 'https://ror.org/02htv7m79', 'en', 1, 'https://ror.org/02htv7m79 Araullo University'), (27217, 'https://ror.org/02hxajc23', 'en', 1, 'https://ror.org/02hxajc23 Kyoto City University of Arts 京都市立芸術大学'), (27218, 'https://ror.org/02hyahm52', 'en', 1, 'https://ror.org/02hyahm52 University of Judicial Sciences and Administrative Services دانشگاه علوم قضایی و خدمات اداری'), (27219, 'https://ror.org/02j123a71', 'en', 1, 'https://ror.org/02j123a71 National Park Foundation'), (27220, 'https://ror.org/02j1b8103', 'en', 1, 'https://ror.org/02j1b8103 San Mateo County History Museum'), (27221, 'https://ror.org/02j1sgb41', 'no_lang_code', 1, 'https://ror.org/02j1sgb41 Jerid (Czechia)'), (27222, 'https://ror.org/02j1xr113', 'en', 1, 'https://ror.org/02j1xr113 Ashoka University अशोका युनिवर्सिटी'), (27223, 'https://ror.org/02j3w7f30', 'en', 1, 'https://ror.org/02j3w7f30 Madhya Pradesh Bhoj Open University मध्य प्रदेश भोज मुक्त विश्वविद्यालय'), (27224, 'https://ror.org/02j5fab28', 'en', 1, 'https://ror.org/02j5fab28 Institute of Economics and Management Институт экономики и управления (г. Пятигорск)'), (27225, 'https://ror.org/02j60s620', 'en', 1, 'https://ror.org/02j60s620 North Pacific Marine Science Foundation'), (27226, 'https://ror.org/02j6rby23', 'no_lang_code', 1, 'https://ror.org/02j6rby23 Ekola (Czechia)'), (27227, 'https://ror.org/02j8ga255', 'en', 1, 'https://ror.org/02j8ga255 American International University-Bangladesh আমেরিকান ইন্টারন্যাশনাল ইউনিভার্সিটি-বাংলাদেশ'), (27228, 'https://ror.org/02j96nm37', 'en', 1, 'https://ror.org/02j96nm37 Premier University প্রিমিয়ার ইউনিভার্সিটি'), (27229, 'https://ror.org/02j98rq95', 'en', 1, 'https://ror.org/02j98rq95 Ternopil Volodymyr Hnatiuk National Pedagogical University Тернопольский национальный педагогический университет имени Владимира Гнатюка Тернопільський національний педагогічний університет імені Володимира Гнатюка'), (27230, 'https://ror.org/02jaw4a32', 'en', 1, 'https://ror.org/02jaw4a32 Carnegie Council for Ethics in International Affairs'), (27231, 'https://ror.org/02jazz476', 'en', 1, 'https://ror.org/02jazz476 National Centre of Social Studies'), (27232, 'https://ror.org/02jb0mk52', 'no_lang_code', 1, 'https://ror.org/02jb0mk52 International Data Group (United States)'), (27233, 'https://ror.org/02jdm8069', 'en', 1, 'https://ror.org/02jdm8069 Tangshan Normal University 唐山师范大学'), (27234, 'https://ror.org/02jf4jr88', 'en', 1, 'https://ror.org/02jf4jr88 Montana Historical Society'), (27235, 'https://ror.org/02jj93564', 'en', 1, 'https://ror.org/02jj93564 Pontifical University of Salamanca Universidad Pontificia de Salamanca Universitat Pontifícia de Salamanca'), (27236, 'https://ror.org/02jkgrk30', 'en', 1, 'https://ror.org/02jkgrk30 Parwan University دانشگاه پروان'), (27237, 'https://ror.org/02jkgvx03', 'no_lang_code', 1, 'https://ror.org/02jkgvx03 Edutus Egyetem Edutus University'), (27238, 'https://ror.org/02jmvh098', 'en', 1, 'https://ror.org/02jmvh098 Angarsk State Technical Academy Ангарская Государственная Техническая Академия'), (27239, 'https://ror.org/02jpbb755', 'en', 1, 'https://ror.org/02jpbb755 Mobile Public Library'), (27240, 'https://ror.org/02jr43a19', 'en', 1, 'https://ror.org/02jr43a19 Graduate Institute of Applied Linguistics'), (27241, 'https://ror.org/02jsdya97', 'en', 1, 'https://ror.org/02jsdya97 City University of Science and Information Technology سٹی یونیورسٹی آف سائنس اینڈ انفارمیشن ٹیکنالوجی'), (27242, 'https://ror.org/02jwe8b72', 'fr', 1, 'https://ror.org/02jwe8b72 Université Alassane Ouattara'), (27243, 'https://ror.org/02jwrhw59', 'en', 1, 'https://ror.org/02jwrhw59 Excelsior Springs Museum & Archives'), (27244, 'https://ror.org/02jx61y97', 'no_lang_code', 1, 'https://ror.org/02jx61y97 Eurocarbon (Netherlands)'), (27245, 'https://ror.org/02jywrv14', 'no_lang_code', 1, 'https://ror.org/02jywrv14 ON Semiconductor (Czechia)'), (27246, 'https://ror.org/02k11zt98', 'en', 1, 'https://ror.org/02k11zt98 Daghestan State Pedagogical University Дагестанский государственный педагогический университет'), (27247, 'https://ror.org/02k14cb26', 'en', 1, 'https://ror.org/02k14cb26 Donbass State Engineering Academy Донбаська державна машинобудівна академія'), (27248, 'https://ror.org/02k1der83', 'id', 1, 'https://ror.org/02k1der83 Jenderal Achmad Yani University Universitas Jenderal Achmad Yani'), (27249, 'https://ror.org/02k1vq030', 'no_lang_code', 1, 'https://ror.org/02k1vq030 Ryotokuji University 了徳寺大学'), (27250, 'https://ror.org/02k3bdy11', 'no_lang_code', 1, 'https://ror.org/02k3bdy11 Litmas (Czechia)'), (27251, 'https://ror.org/02k517853', 'en', 1, 'https://ror.org/02k517853 Luxun Academy of Fine Arts'), (27252, 'https://ror.org/02k6mtm19', 'en', 1, 'https://ror.org/02k6mtm19 Moscow Academy of Economics and Law Московская академия экономики и права'), (27253, 'https://ror.org/02k884a42', 'no_lang_code', 1, 'https://ror.org/02k884a42 Montstav (Czechia)'), (27254, 'https://ror.org/02k8qat92', 'cs', 1, 'https://ror.org/02k8qat92 Valašské Muzeum v Přírodě'), (27255, 'https://ror.org/02kb5sz66', 'en', 1, 'https://ror.org/02kb5sz66 International University of Monaco Université internationale de monaco'), (27256, 'https://ror.org/02kdbxe33', 'en', 1, 'https://ror.org/02kdbxe33 International Institute of Computer Technologies Международный институт компьютерных технологий'), (27257, 'https://ror.org/02ke44656', 'en', 1, 'https://ror.org/02ke44656 Collegium Da Vinci'), (27258, 'https://ror.org/02keg3263', 'no_lang_code', 1, 'https://ror.org/02keg3263 Cheju Halla University 제주한라대학교'), (27259, 'https://ror.org/02kfn1p21', 'no_lang_code', 1, 'https://ror.org/02kfn1p21 Cybergenetics (United States)'), (27260, 'https://ror.org/02kgkbv06', 'en', 1, 'https://ror.org/02kgkbv06 Delaware Library Association'), (27261, 'https://ror.org/02kht3n03', 'en', 1, 'https://ror.org/02kht3n03 Fitchburg Art Museum'), (27262, 'https://ror.org/02khw0n64', 'en', 1, 'https://ror.org/02khw0n64 Dniprovsk State Technical University Дніпровський державний технічний університет'), (27263, 'https://ror.org/02kj9vk28', 'en', 1, 'https://ror.org/02kj9vk28 International University of East Africa'), (27264, 'https://ror.org/02kja7485', 'en', 1, 'https://ror.org/02kja7485 Hopa Mountain'), (27265, 'https://ror.org/02kmhbb12', 'en', 1, 'https://ror.org/02kmhbb12 Mattatuck Museum'), (27266, 'https://ror.org/02knr1992', 'en', 1, 'https://ror.org/02knr1992 International University សាកលវិទ្យាល័យអន្តរជាតិ'), (27267, 'https://ror.org/02kpzs615', 'en', 1, 'https://ror.org/02kpzs615 University Academy Holbeach'), (27268, 'https://ror.org/02kq60523', 'id', 1, 'https://ror.org/02kq60523 Universitas Muhammadiyah Metro'), (27269, 'https://ror.org/02kqed404', 'en', 1, 'https://ror.org/02kqed404 College of Environmental Protection Visoka šola za varstvo okolja'), (27270, 'https://ror.org/02kqv7v54', 'en', 1, 'https://ror.org/02kqv7v54 Baika Women''s University 梅花女子大学'), (27271, 'https://ror.org/02kr5r375', 'en', 1, 'https://ror.org/02kr5r375 Meridian International Center'), (27272, 'https://ror.org/02ktptg11', 'en', 1, 'https://ror.org/02ktptg11 Saint Petersburg State University of Culture and Arts ственный университет культуры и искусств'), (27273, 'https://ror.org/02kvrk655', 'en', 1, 'https://ror.org/02kvrk655 Universitas Katolik Widya Karya Malang Widya Karya Catholic University'), (27274, 'https://ror.org/02kw8bv11', 'en', 1, 'https://ror.org/02kw8bv11 Moscow Regional Socio-Economic Institute Московский региональный социально-экономический институт'), (27275, 'https://ror.org/02kx91r96', 'pl', 1, 'https://ror.org/02kx91r96 Małopolska Wyższa Szkoła Ekonomiczna'), (27276, 'https://ror.org/02m04pz98', 'en', 1, 'https://ror.org/02m04pz98 Tashkent State Higher School of National Dance and Choreography'), (27277, 'https://ror.org/02m0d6s97', 'id', 1, 'https://ror.org/02m0d6s97 Institut Sains & Teknologi Akprind Yogyakarta'), (27278, 'https://ror.org/02m0m4f58', 'en', 1, 'https://ror.org/02m0m4f58 Novi Sad Open University Новосадски отворени универзитет'), (27279, 'https://ror.org/02m2dej40', 'en', 1, 'https://ror.org/02m2dej40 University of South Asia ইউনিভার্সিটি অফ সাউথ এশিয়া'), (27280, 'https://ror.org/02m3g8h90', 'en', 1, 'https://ror.org/02m3g8h90 National Children''s Museum'), (27281, 'https://ror.org/02m4xf424', 'no_lang_code', 1, 'https://ror.org/02m4xf424 WAK System (Czechia)'), (27282, 'https://ror.org/02m5g6p84', 'en', 1, 'https://ror.org/02m5g6p84 Arizona Historical Society'), (27283, 'https://ror.org/02m71k567', 'no_lang_code', 1, 'https://ror.org/02m71k567 Nishogakusha University 二松學舍大学'), (27284, 'https://ror.org/02m77cm13', 'en', 1, 'https://ror.org/02m77cm13 Nan Jeon University of Science and Technology 南榮科技大學'), (27285, 'https://ror.org/02m7y2120', 'en', 1, 'https://ror.org/02m7y2120 Kapiolani Community College'), (27286, 'https://ror.org/02ma9y414', 'en', 1, 'https://ror.org/02ma9y414 Medical University of the Americas'), (27287, 'https://ror.org/02mbc1535', 'en', 1, 'https://ror.org/02mbc1535 International Pacific Halibut Commission'), (27288, 'https://ror.org/02md2kv66', 'en', 1, 'https://ror.org/02md2kv66 Kryvyi Rih National University Криворізький національний університет'), (27289, 'https://ror.org/02mewhb28', 'en', 1, 'https://ror.org/02mewhb28 Economic and Law Institute in Moscow МОСКОВСКИЙ ЭКОНОМИКО-ПРАВОВОЙ ИНСТИТУТ'), (27290, 'https://ror.org/02mf8ey61', 'en', 1, 'https://ror.org/02mf8ey61 Kaya University'), (27291, 'https://ror.org/02mfjgm25', 'en', 1, 'https://ror.org/02mfjgm25 Hwa Hsia University of Technology 華夏科技大學'), (27292, 'https://ror.org/02mfr8m15', 'en', 1, 'https://ror.org/02mfr8m15 Kamsky Institute of Humanitarian and Engineering Technologies Камский институт гуманитарных и инженерных технологий'), (27293, 'https://ror.org/02mfskv37', 'en', 1, 'https://ror.org/02mfskv37 Omsk State Transport University Омский государственный университет путей сообщения'), (27294, 'https://ror.org/02mgerj62', 'en', 1, 'https://ror.org/02mgerj62 Great Lakes University of Kisumu'), (27295, 'https://ror.org/02mh2b743', 'no_lang_code', 1, 'https://ror.org/02mh2b743 Princip (Czechia)'), (27296, 'https://ror.org/02mh3at17', 'en', 1, 'https://ror.org/02mh3at17 Royal University of Law and Economics Université royale de droit et des sciences economiques សាកលវិទ្យាល័យភូមិន្ទនីតិសាស្ត្រនិងវិទ្យាសាស្ត្រសេដ្ឋកិច្ច'), (27297, 'https://ror.org/02mkkqv65', 'en', 1, 'https://ror.org/02mkkqv65 Imam Sadiq University دانشگاه امام صادق'), (27298, 'https://ror.org/02mpq1w39', 'en', 1, 'https://ror.org/02mpq1w39 Suamandeep Vidyapeeth University સુમનદીપ વિધાપીઠ'), (27299, 'https://ror.org/02mq5h296', 'en', 1, 'https://ror.org/02mq5h296 Communal Societies Association'), (27300, 'https://ror.org/02mqbt594', 'no_lang_code', 1, 'https://ror.org/02mqbt594 Hokusei Gakuen University 北星学園大学'), (27301, 'https://ror.org/02mwnfc70', 'en', 1, 'https://ror.org/02mwnfc70 Turkmen State Institute of Culture'), (27302, 'https://ror.org/02n0ams94', 'en', 1, 'https://ror.org/02n0ams94 Patriot Bible University'), (27303, 'https://ror.org/02n3d5p55', 'en', 1, 'https://ror.org/02n3d5p55 Yaroslavl State Pedagogical University федеральное государственное бюджетное образовательное учреждение высшего профессионального образования Ярославский государственный педагогический университет им. К.Д. Ушинского'), (27304, 'https://ror.org/02n4kqn31', 'en', 1, 'https://ror.org/02n4kqn31 Sir Syed University of Engineering and Technology انجنيئرڱ ۽ ٽيڪنيڀياس جي جامعہ سر سيد'), (27305, 'https://ror.org/02n4s8f32', 'pl', 1, 'https://ror.org/02n4s8f32 Uczelnia Warszawska im. Marii Skłodowskiej-Curie'), (27306, 'https://ror.org/02n78dn25', 'en', 1, 'https://ror.org/02n78dn25 Higher School of Applied Sciences Visoka šola za storitve'), (27307, 'https://ror.org/02nas7g61', 'en', 1, 'https://ror.org/02nas7g61 Czech and Slovak Crystallographic Association'), (27308, 'https://ror.org/02nbq4b63', 'en', 1, 'https://ror.org/02nbq4b63 Maharishi Mahesh Yogi Vedic University महर्षि महेश योगी वैदिक विश्वविद्यालय'), (27309, 'https://ror.org/02nc54350', 'id', 1, 'https://ror.org/02nc54350 Universitas Sawerigading Makassar'), (27310, 'https://ror.org/02nct1437', 'en', 1, 'https://ror.org/02nct1437 Japanese American National Museum'), (27311, 'https://ror.org/02nctxr05', 'en', 1, 'https://ror.org/02nctxr05 University of Horticultural Sciences Bagalkote ತೋಟಗಾರಿಕೆ ವಿಜ್ಞಾನಗಳ ವಿಶ್ವವಿದ್ಯಾಲಯ, ಬಾಗಲಕೋಟೆ'), (27312, 'https://ror.org/02ndmzk78', 'en', 1, 'https://ror.org/02ndmzk78 Virginia Department of Environmental Quality'), (27313, 'https://ror.org/02ndvz068', 'en', 1, 'https://ror.org/02ndvz068 Kabul Medical University دانشگاه طب کابل'), (27314, 'https://ror.org/02ne6gz21', 'en', 1, 'https://ror.org/02ne6gz21 Stavropol State Agrarian University Ставропольский государственный аграрный университет'), (27315, 'https://ror.org/02nfjwv95', 'en', 1, 'https://ror.org/02nfjwv95 St. Paul University Dumaguete'), (27316, 'https://ror.org/02nfx9606', 'en', 1, 'https://ror.org/02nfx9606 Altai State Humanities Pedagogical University Алтайский государственный гуманитарно-педагогический университет имени В. М. Шукшина'), (27317, 'https://ror.org/02ngpcc15', 'no_lang_code', 1, 'https://ror.org/02ngpcc15 CompX (United States)'), (27318, 'https://ror.org/02nh5kj96', 'en', 1, 'https://ror.org/02nh5kj96 National Academy of Fine Art and Architecture Націона́льна акаде́мія образотво́рчого мисте́цтва і архітекту́ри'), (27319, 'https://ror.org/02nnvm683', 'en', 1, 'https://ror.org/02nnvm683 Trout Unlimited'), (27320, 'https://ror.org/02nsv5p42', 'en', 1, 'https://ror.org/02nsv5p42 Pandit Deendayal Petroleum University पंडित दीनदयाल पेट्रोलियम यूनिवर्सिटी પંડિત દીનદયાળ પેટ્રોલિયમ યુનિવર્સિટી'), (27321, 'https://ror.org/02ntfea48', 'en', 1, 'https://ror.org/02ntfea48 Prison University Project'), (27322, 'https://ror.org/02ntrvv07', 'en', 1, 'https://ror.org/02ntrvv07 University Press of New England'), (27323, 'https://ror.org/02nz5n326', 'en', 1, 'https://ror.org/02nz5n326 South Carolina Historical Society'), (27324, 'https://ror.org/02p0nzs51', 'pl', 1, 'https://ror.org/02p0nzs51 Wyższa Szkoła Komunikowania i Mediów Społecznych im. Jerzego Giedroycia'), (27325, 'https://ror.org/02p3kxs50', 'en', 1, 'https://ror.org/02p3kxs50 Museum of International Folk Art'), (27326, 'https://ror.org/02p42am41', 'en', 1, 'https://ror.org/02p42am41 Islamic Azad University of Birjand دانشگاه آزاد اسلامی بیرجند'), (27327, 'https://ror.org/02p4ap272', 'en', 1, 'https://ror.org/02p4ap272 Seneca Falls Historical Society'), (27328, 'https://ror.org/02p5gkq58', 'en', 1, 'https://ror.org/02p5gkq58 King’s University'), (27329, 'https://ror.org/02p6jga18', 'en', 1, 'https://ror.org/02p6jga18 Doshisha Women''s College of Liberal Arts 同志社女子大学'), (27330, 'https://ror.org/02p76dr31', 'id', 1, 'https://ror.org/02p76dr31 Universitas Tridinanti Palembang'), (27331, 'https://ror.org/02pad2v09', 'fr', 1, 'https://ror.org/02pad2v09 Université Officielle de Bukavu'), (27332, 'https://ror.org/02pd46y72', 'id', 1, 'https://ror.org/02pd46y72 Universitas Respati Indonesia'), (27333, 'https://ror.org/02peanc96', 'en', 1, 'https://ror.org/02peanc96 Four County Library System'), (27334, 'https://ror.org/02pfsj857', 'en', 1, 'https://ror.org/02pfsj857 Shenyang Institute of Engineering 沈阳工程学院'), (27335, 'https://ror.org/02pg2aq98', 'en', 1, 'https://ror.org/02pg2aq98 Private University in the Principality of Liechtenstein Private Universität im Fürstentum Liechtenstein'), (27336, 'https://ror.org/02pht8w30', 'en', 1, 'https://ror.org/02pht8w30 Universidad de Nueva Caceres University of Nueva Caceres'), (27337, 'https://ror.org/02pk0yz95', 'en', 1, 'https://ror.org/02pk0yz95 Al Mansour University College كلية المنصور الجامعة'), (27338, 'https://ror.org/02pky3s76', 'en', 1, 'https://ror.org/02pky3s76 Heard Museum'), (27339, 'https://ror.org/02pnhcc10', 'en', 1, 'https://ror.org/02pnhcc10 Hochschule für Forstwirtschaft Rottenburg Rottenburg University of Applied Forest Sciences'), (27340, 'https://ror.org/02pns7e61', 'en', 1, 'https://ror.org/02pns7e61 Magnitogorsk State Conservatory named after M I Glinka Магнитогорская государственная консерватория имени М. И. Глинки'), (27341, 'https://ror.org/02pppmh23', 'en', 1, 'https://ror.org/02pppmh23 Moscow University Touro Московский Институт ТУРО'), (27342, 'https://ror.org/02pxamv84', 'en', 1, 'https://ror.org/02pxamv84 Black Mountain College Museum and Arts Center'), (27343, 'https://ror.org/02pxj5t37', 'en', 1, 'https://ror.org/02pxj5t37 Utah State Historical Society'), (27344, 'https://ror.org/02pxsrh16', 'en', 1, 'https://ror.org/02pxsrh16 Singhania University सिंघानिया विश्वविद्यालय'), (27345, 'https://ror.org/02pzqs694', 'en', 1, 'https://ror.org/02pzqs694 Riara University'), (27346, 'https://ror.org/02q22s572', 'en', 1, 'https://ror.org/02q22s572 National Catholic Educational Association'), (27347, 'https://ror.org/02q35ve03', 'en', 1, 'https://ror.org/02q35ve03 Kazakh Ablai Khan University of International Relations and World Languages Казахский университет международных отношений и мировых языков имени Абылай хана Қазақ халықаралық қатынастар және әлем тілдері университеті'), (27348, 'https://ror.org/02q3t9m57', 'en', 1, 'https://ror.org/02q3t9m57 National Law Institute University'), (27349, 'https://ror.org/02q9fse63', 'en', 1, 'https://ror.org/02q9fse63 Southern University Law Center'), (27350, 'https://ror.org/02q9yhv11', 'en', 1, 'https://ror.org/02q9yhv11 Chesapeake Bay Environmental Center'), (27351, 'https://ror.org/02qd5e669', 'en', 1, 'https://ror.org/02qd5e669 Moscow State Open University'), (27352, 'https://ror.org/02qedp211', 'en', 1, 'https://ror.org/02qedp211 Kyungdong University'), (27353, 'https://ror.org/02qf7df19', 'en', 1, 'https://ror.org/02qf7df19 Central Luzon State University Pamantasang Estado sa Gitnang Luzon'), (27354, 'https://ror.org/02qfzwh20', 'en', 1, 'https://ror.org/02qfzwh20 Samara Humanitarian Academy Самарская гуманитарная академия'), (27355, 'https://ror.org/02qjzgf79', 'en', 1, 'https://ror.org/02qjzgf79 Lake Champlain Maritime Museum'), (27356, 'https://ror.org/02qn0vb48', 'en', 1, 'https://ror.org/02qn0vb48 Chiba University of Commerce 千葉商科大学'), (27357, 'https://ror.org/02qnwnc62', 'en', 1, 'https://ror.org/02qnwnc62 IEDC-Bled School of Management'), (27358, 'https://ror.org/02qp15436', 'en', 1, 'https://ror.org/02qp15436 Kijowski Narodowy Uniwersytet Budownictwa i Architektury Kyiv National University of Construction and Architecture Киевский национальный университет строительства и архитектуры Київський національний університет будівництва і архітектури'), (27359, 'https://ror.org/02qq9kc45', 'en', 1, 'https://ror.org/02qq9kc45 Lexington Public Library'), (27360, 'https://ror.org/02qrax274', 'en', 1, 'https://ror.org/02qrax274 Ras al-Khaimah Medical and Health Sciences University'), (27361, 'https://ror.org/02qxynb76', 'en', 1, 'https://ror.org/02qxynb76 Montgomery County Historical Society'), (27362, 'https://ror.org/02qy8xv65', 'en', 1, 'https://ror.org/02qy8xv65 Kazi Nazrul University কাজী নজরুল বিশ্ববিদ্যালয়'), (27363, 'https://ror.org/02r0jqm23', 'no_lang_code', 1, 'https://ror.org/02r0jqm23 Microrisc (Czechia)'), (27364, 'https://ror.org/02r11sv96', 'en', 1, 'https://ror.org/02r11sv96 Free University of Ireland Saor-Ollscoil na hÉireann'), (27365, 'https://ror.org/02r3m1966', 'en', 1, 'https://ror.org/02r3m1966 National Museum of Wildlife Art'), (27366, 'https://ror.org/02r6cx512', 'en', 1, 'https://ror.org/02r6cx512 Khujand State University Донишгоҳи давлатии Хуҷанд ба номи академик Б. Ғафуров Худжандский государственный университет'), (27367, 'https://ror.org/02r9h1127', 'en', 1, 'https://ror.org/02r9h1127 Kharkiv State Academy of Culture'), (27368, 'https://ror.org/02ra15158', 'en', 1, 'https://ror.org/02ra15158 Persian Heritage Foundation'), (27369, 'https://ror.org/02rbqkj03', 'id', 1, 'https://ror.org/02rbqkj03 Universitas Pramita Indonesia'), (27370, 'https://ror.org/02rc7w578', 'en', 1, 'https://ror.org/02rc7w578 National Alliance of Black School Educators'), (27371, 'https://ror.org/02rcadd38', 'en', 1, 'https://ror.org/02rcadd38 Nagaoka University 長岡大学'), (27372, 'https://ror.org/02re2pw48', 'en', 1, 'https://ror.org/02re2pw48 Paktia University دانشگاه پکتیا'), (27373, 'https://ror.org/02re6fe17', 'en', 1, 'https://ror.org/02re6fe17 Norton University សាកលវិទ្យាល័យ ន័រតុន'), (27374, 'https://ror.org/02rntm597', 'en', 1, 'https://ror.org/02rntm597 Omsk Academy of the Russian Interior Ministry Омская Академия МВД России'), (27375, 'https://ror.org/02rrx7g18', 'en', 1, 'https://ror.org/02rrx7g18 Barnaul Law Institute of the Russian Interior Ministry Барнаульский юридический институт Министерства внутренних дел Российской Федерации'), (27376, 'https://ror.org/02rsbkz45', 'en', 1, 'https://ror.org/02rsbkz45 Institute of Psychology and Pedagogy Институт психологии и педагогики'), (27377, 'https://ror.org/02rsxaa93', 'en', 1, 'https://ror.org/02rsxaa93 Saint Petersburg State University of Aerospace and Instrumentation Санкт-Петербургский государственный университет аэрокосмического приборостроения'), (27378, 'https://ror.org/02rt36v36', 'en', 1, 'https://ror.org/02rt36v36 Organization of American Historians'), (27379, 'https://ror.org/02rts6b12', 'cs', 1, 'https://ror.org/02rts6b12 Národní Klimatický Program'), (27380, 'https://ror.org/02rttk866', 'en', 1, 'https://ror.org/02rttk866 Matsumoto University 松本大学'), (27381, 'https://ror.org/02rv57d03', 'en', 1, 'https://ror.org/02rv57d03 International University of the Caribbean'), (27382, 'https://ror.org/02rvdqw36', 'en', 1, 'https://ror.org/02rvdqw36 Virginia Sesquicentennial of the American Civil War Commission'), (27383, 'https://ror.org/02rwyg032', 'no_lang_code', 1, 'https://ror.org/02rwyg032 Reitaku University 麗澤大学'), (27384, 'https://ror.org/02rzsax38', 'en', 1, 'https://ror.org/02rzsax38 Ural Institute of Finance and Law УРАЛЬСКИЙ ФИНАНСОВО-ЮРИДИЧЕСКИЙ ИНСТИТУТ'), (27385, 'https://ror.org/02rzsmv54', 'en', 1, 'https://ror.org/02rzsmv54 Smolensk State Institute of Fine Arts Смоленский государственный институт искусств'); INSERT INTO `rors` VALUES (27386, 'https://ror.org/02s22e816', 'en', 1, 'https://ror.org/02s22e816 Kyushu International University 九州国際大学'), (27387, 'https://ror.org/02s232b27', 'en', 1, 'https://ror.org/02s232b27 Shah Abdul Latif University جامعہ شاہ عبداللطیف شاه عبداللطيف يونيورسٽي'), (27388, 'https://ror.org/02s3pgd18', 'en', 1, 'https://ror.org/02s3pgd18 Rivier University Université rivier'), (27389, 'https://ror.org/02s5d1b23', 'en', 1, 'https://ror.org/02s5d1b23 Yokohama College of Commerce 横浜商科大学'), (27390, 'https://ror.org/02s5jck73', 'en', 1, 'https://ror.org/02s5jck73 J. F. Oberlin University 桜美林大学'), (27391, 'https://ror.org/02s5s5e14', 'en', 1, 'https://ror.org/02s5s5e14 Daegu National University of Education 대구교육대학교'), (27392, 'https://ror.org/02s6q6726', 'id', 1, 'https://ror.org/02s6q6726 Universitas Al Washliyah'), (27393, 'https://ror.org/02s89kd69', 'en', 1, 'https://ror.org/02s89kd69 Korean National Police University 경찰대학'), (27394, 'https://ror.org/02s8x5a25', 'en', 1, 'https://ror.org/02s8x5a25 Suleyman Demirel University Сүлейман Демирел атындағы Университет'), (27395, 'https://ror.org/02s9exq69', 'en', 1, 'https://ror.org/02s9exq69 Midwest Art Conservation Center'), (27396, 'https://ror.org/02s9hd024', 'no_lang_code', 1, 'https://ror.org/02s9hd024 Spur (Czechia)'), (27397, 'https://ror.org/02sak2w47', 'en', 1, 'https://ror.org/02sak2w47 Neumann University'), (27398, 'https://ror.org/02saqjz85', 'no_lang_code', 1, 'https://ror.org/02saqjz85 Chukyo Gakuin University 中京学院大学'), (27399, 'https://ror.org/02scgt846', 'id', 1, 'https://ror.org/02scgt846 Universitas Ngurah Rai'), (27400, 'https://ror.org/02sd77t30', 'en', 1, 'https://ror.org/02sd77t30 Baewha Women''s University 배화여자대학교'), (27401, 'https://ror.org/02sdhsy65', 'en', 1, 'https://ror.org/02sdhsy65 National Academy for Public Administration under the President of Ukraine Національна академія державного управління'), (27402, 'https://ror.org/02sdmkj94', 'en', 1, 'https://ror.org/02sdmkj94 Karachi Institute of Economics and Technology'), (27403, 'https://ror.org/02se7pe38', 'en', 1, 'https://ror.org/02se7pe38 League of Women Voters'), (27404, 'https://ror.org/02sfa0g63', 'id', 1, 'https://ror.org/02sfa0g63 Universitas Muhamadiyah Sorong'), (27405, 'https://ror.org/02shm3a27', 'en', 1, 'https://ror.org/02shm3a27 Azerbaijan University of Architecture and Construction Azərbaycan Memarlıq və İnşaat Universiteti'), (27406, 'https://ror.org/02sknrf76', 'en', 1, 'https://ror.org/02sknrf76 East Siberian Academy of Culture and Arts Восточно- Сибирский Государственный Институт Культуры'), (27407, 'https://ror.org/02snehe53', 'en', 1, 'https://ror.org/02snehe53 Kiryu University 桐生大学'), (27408, 'https://ror.org/02spway15', 'en', 1, 'https://ror.org/02spway15 Francisco Gavidia University Universidad Francisco Gavidia'), (27409, 'https://ror.org/02sqe5a64', 'en', 1, 'https://ror.org/02sqe5a64 Puget Sound Restoration Fund'), (27410, 'https://ror.org/02sqfdy44', 'en', 1, 'https://ror.org/02sqfdy44 Kagoshima Immaculate Heart University 鹿児島純心女子大学'), (27411, 'https://ror.org/02srtfa27', 'en', 1, 'https://ror.org/02srtfa27 B&O Railroad Museum'), (27412, 'https://ror.org/02stszq80', 'no_lang_code', 1, 'https://ror.org/02stszq80 Poltava V.G. Korolenko National Pedagogical University Полтавський національний педагогічний університет імені В.Г.Короленка'), (27413, 'https://ror.org/02sxhaw47', 'en', 1, 'https://ror.org/02sxhaw47 YWCA Madison'), (27414, 'https://ror.org/02sxwqc72', 'en', 1, 'https://ror.org/02sxwqc72 Decorah Public Library'), (27415, 'https://ror.org/02syb3g35', 'en', 1, 'https://ror.org/02syb3g35 Washington County Museum'), (27416, 'https://ror.org/02syyrn67', 'en', 1, 'https://ror.org/02syyrn67 PLA Army Service Academy 中国人民解放军后勤工程学院'), (27417, 'https://ror.org/02sz0ks17', 'en', 1, 'https://ror.org/02sz0ks17 Canaan Valley Institute'), (27418, 'https://ror.org/02t0s0z58', 'en', 1, 'https://ror.org/02t0s0z58 LUNGevity Foundation'), (27419, 'https://ror.org/02t3bgg27', 'no_lang_code', 1, 'https://ror.org/02t3bgg27 Russian Orthodox Institute Sacred Ioann Bogolslov Российский православный университет святого Иоанна Богослова'), (27420, 'https://ror.org/02t3h6354', 'en', 1, 'https://ror.org/02t3h6354 Suwon Catholic University'), (27421, 'https://ror.org/02t6ppt32', 'en', 1, 'https://ror.org/02t6ppt32 Milwaukee Art Museum'), (27422, 'https://ror.org/02t8zwv43', 'no_lang_code', 1, 'https://ror.org/02t8zwv43 Milcom (Czechia)'), (27423, 'https://ror.org/02t903v50', 'en', 1, 'https://ror.org/02t903v50 Copper River Watershed Project'), (27424, 'https://ror.org/02tb9dy59', 'no_lang_code', 1, 'https://ror.org/02tb9dy59 P-D Refractories (Czechia)'), (27425, 'https://ror.org/02tc4et63', 'en', 1, 'https://ror.org/02tc4et63 Caucasus University კავკასიის უნივერსიტეტი'), (27426, 'https://ror.org/02tc9zr52', 'en', 1, 'https://ror.org/02tc9zr52 Darul Ulum Islamic University Universitas Islam Darul Ulum Lamongan'), (27427, 'https://ror.org/02te2cv05', 'en', 1, 'https://ror.org/02te2cv05 Perm State Pharmaceutical Academy Пермская государственная фармацевтическая академия'), (27428, 'https://ror.org/02tj4bx84', 'en', 1, 'https://ror.org/02tj4bx84 Armavir Orthodox-Social Institute Армавирский Православно-Социальный Институт'), (27429, 'https://ror.org/02tjjy347', 'en', 1, 'https://ror.org/02tjjy347 Taiwan Comprehensive University System 台灣綜合大學系統'), (27430, 'https://ror.org/02tme6r37', 'en', 1, 'https://ror.org/02tme6r37 Heliopolis University جامعة هليوبوليس'), (27431, 'https://ror.org/02tms8754', 'no_lang_code', 1, 'https://ror.org/02tms8754 Research and Testing Institute Plzen (Czechia) Výzkumný a zkušební ústav Plzeň'), (27432, 'https://ror.org/02tp47674', 'en', 1, 'https://ror.org/02tp47674 Karaite Jewish University'), (27433, 'https://ror.org/02tr3dx87', 'no_lang_code', 1, 'https://ror.org/02tr3dx87 Vakos XT (Czechia)'), (27434, 'https://ror.org/02ts93992', 'en', 1, 'https://ror.org/02ts93992 Kaw Nation'), (27435, 'https://ror.org/02tsdk069', 'en', 1, 'https://ror.org/02tsdk069 North Greenville University'), (27436, 'https://ror.org/02tt49y26', 'en', 1, 'https://ror.org/02tt49y26 Far Eastern State Transport University'), (27437, 'https://ror.org/02ttmd632', 'en', 1, 'https://ror.org/02ttmd632 Polessky State University Палескі дзяржаўны універсітэт Полесский государственный университет'), (27438, 'https://ror.org/02twyz205', 'en', 1, 'https://ror.org/02twyz205 CMJ University सीएमजे विश्वविद्यालय'), (27439, 'https://ror.org/02tyvzz27', 'en', 1, 'https://ror.org/02tyvzz27 Ho Chi Minh City University of Architecture Trường Đại học Kiến trúc Thành phố Hồ Chí Minh'), (27440, 'https://ror.org/02v157r64', 'en', 1, 'https://ror.org/02v157r64 Siberian Transport University Сибирский государственный университет путей сообщения'), (27441, 'https://ror.org/02v1sf687', 'en', 1, 'https://ror.org/02v1sf687 University of Kochi 高知県立大学'), (27442, 'https://ror.org/02v319z25', 'en', 1, 'https://ror.org/02v319z25 Urmia University of Technology دانشگاه صنعتی ارومیه'), (27443, 'https://ror.org/02v40vz65', 'en', 1, 'https://ror.org/02v40vz65 Belgorod State Technological University Белгородский государственный технологический университет им. В. Г. Шухова'), (27444, 'https://ror.org/02v5ef260', 'en', 1, 'https://ror.org/02v5ef260 Hong Bang International University Trường Đại học Quốc tế Hồng Bàng'), (27445, 'https://ror.org/02v7gew56', 'en', 1, 'https://ror.org/02v7gew56 Adair County Historical Society'), (27446, 'https://ror.org/02v91zq07', 'no_lang_code', 1, 'https://ror.org/02v91zq07 Wakkanai Hokusei Gakuen College 稚内北星学園大学'), (27447, 'https://ror.org/02vbq0s06', 'en', 1, 'https://ror.org/02vbq0s06 Siberian Law Institute of Russian Federal Drug Control Service Сибирский юридический институт ФСКН России'), (27448, 'https://ror.org/02vbtbv10', 'en', 1, 'https://ror.org/02vbtbv10 Oklahoma Christian University'), (27449, 'https://ror.org/02vbwxp10', 'en', 1, 'https://ror.org/02vbwxp10 Dyer Library / Saco Museum'), (27450, 'https://ror.org/02vc4jb94', 'en', 1, 'https://ror.org/02vc4jb94 Ministry of Foreign Affairs of Turkmenistan МИНИСТЕРСТВО ИНОСТРАННЫХ ДЕЛ ТУРКМЕНИСТАНА'), (27451, 'https://ror.org/02vd4ns12', 'en', 1, 'https://ror.org/02vd4ns12 Warren County Public Library'), (27452, 'https://ror.org/02vdy9f86', 'en', 1, 'https://ror.org/02vdy9f86 Broward Public Library Foundation'), (27453, 'https://ror.org/02vf5zz47', 'no_lang_code', 1, 'https://ror.org/02vf5zz47 Ford Motor Company (Czechia)'), (27454, 'https://ror.org/02vg1a239', 'en', 1, 'https://ror.org/02vg1a239 Alkauthar Islamic University جامعۃ الکوثر'), (27455, 'https://ror.org/02vgg4e89', 'en', 1, 'https://ror.org/02vgg4e89 Tainan National University of the Arts 國立臺南藝術大學'), (27456, 'https://ror.org/02vh85b91', 'no_lang_code', 1, 'https://ror.org/02vh85b91 Sido Kanhu Murmu University सिदो कान्हू मुर्मू युनिवर्सिटी'), (27457, 'https://ror.org/02vjjqw44', 'en', 1, 'https://ror.org/02vjjqw44 Broward County Library'), (27458, 'https://ror.org/02vme4x02', 'no_lang_code', 1, 'https://ror.org/02vme4x02 HistoryMiami'), (27459, 'https://ror.org/02vmeq302', 'no_lang_code', 1, 'https://ror.org/02vmeq302 JULI Motorenwerk (Czechia)'), (27460, 'https://ror.org/02vncvd63', 'en', 1, 'https://ror.org/02vncvd63 Philological School of Higher Education Wyższa Szkoła Filologiczna'), (27461, 'https://ror.org/02vpfbn76', 'en', 1, 'https://ror.org/02vpfbn76 Boston University Brussels'), (27462, 'https://ror.org/02vpqss43', 'en', 1, 'https://ror.org/02vpqss43 Meadville Public Library'), (27463, 'https://ror.org/02vrjqh13', 'en', 1, 'https://ror.org/02vrjqh13 Union of Czech Mathematicians and Physicists Verein fur freie Vortrage aus der Mathematik und Physik'), (27464, 'https://ror.org/02vvanv81', 'no_lang_code', 1, 'https://ror.org/02vvanv81 Ecosond (Czechia)'), (27465, 'https://ror.org/02vw63h19', 'en', 1, 'https://ror.org/02vw63h19 Uganda Pentecostal University'), (27466, 'https://ror.org/02vwdd886', 'en', 1, 'https://ror.org/02vwdd886 Belarusian State University of Physical Culture Беларускі дзяржаўны ўніверсітэт фізічнай культуры Белорусский государственный университет физической культуры'), (27467, 'https://ror.org/02vwn4357', 'en', 1, 'https://ror.org/02vwn4357 National Humanities Center'), (27468, 'https://ror.org/02vx41k98', 'en', 1, 'https://ror.org/02vx41k98 Hulunbuir University 呼伦贝尔学院'), (27469, 'https://ror.org/02vz8g891', 'en', 1, 'https://ror.org/02vz8g891 San Antonio Museum of Art'), (27470, 'https://ror.org/02w1psy08', 'en', 1, 'https://ror.org/02w1psy08 New England Fishery Management Council'), (27471, 'https://ror.org/02w34pv31', 'en', 1, 'https://ror.org/02w34pv31 International Community of Women Living with HIV'), (27472, 'https://ror.org/02w403504', 'en', 1, 'https://ror.org/02w403504 South Eastern Kenya University'), (27473, 'https://ror.org/02w6v9q55', 'en', 1, 'https://ror.org/02w6v9q55 Akademia Pedagogiki Specjalnej im. Marii Grzegorzewskiej Maria Grzegorzewska Academy of Special Education'), (27474, 'https://ror.org/02w7eph15', 'en', 1, 'https://ror.org/02w7eph15 New Hampshire Fish and Game Department'), (27475, 'https://ror.org/02w982447', 'en', 1, 'https://ror.org/02w982447 Library Company of Philadelphia'), (27476, 'https://ror.org/02wajwy78', 'en', 1, 'https://ror.org/02wajwy78 Brazos Valley Museum of Natural History'), (27477, 'https://ror.org/02wbgfm85', 'en', 1, 'https://ror.org/02wbgfm85 Warsaw School of Information Technology Wyższa Szkoła Informatyki Stosowanej i Zarządzania'), (27478, 'https://ror.org/02wbhea49', 'en', 1, 'https://ror.org/02wbhea49 Academy of Federal Security Guard Service of Russian Federation Академия Федеральной службы охраны Российской Федерации'), (27479, 'https://ror.org/02wbzep73', 'en', 1, 'https://ror.org/02wbzep73 West Visayas State University'), (27480, 'https://ror.org/02wcxpr65', 'no_lang_code', 1, 'https://ror.org/02wcxpr65 ATAS (Czechia) ATAS elektromotory Náchod'), (27481, 'https://ror.org/02wdfg707', 'en', 1, 'https://ror.org/02wdfg707 Chhattisgarh Swami Vivekanand Technical University छत्तीसगढ़ स्वामी विवेकानंद तकनीकी विश्वविद्यालय ছত্তীসগঢ় স্বামী বিবেকানন্দ প্রযুক্তি বিশ্ববিদ্যালয়'), (27482, 'https://ror.org/02we34e32', 'en', 1, 'https://ror.org/02we34e32 Khakass Institute of Business Хакасский институт бизнеса'), (27483, 'https://ror.org/02we77t30', 'en', 1, 'https://ror.org/02we77t30 Preston Institute of Management Science and Technology'), (27484, 'https://ror.org/02weg9v26', 'en', 1, 'https://ror.org/02weg9v26 Universiti Terbuka Wawasan Wawasan Open University 宏愿开放大学'), (27485, 'https://ror.org/02weq6r62', 'en', 1, 'https://ror.org/02weq6r62 Smolensk State Academy of Physical Culture, Sport and Tourism Смоленская государственная академия физической культуры, спорта и туризма'), (27486, 'https://ror.org/02wf2mv31', 'en', 1, 'https://ror.org/02wf2mv31 Mihail Kogălniceanu University Universitatea Mihail Kogălniceanu'), (27487, 'https://ror.org/02whebm50', 'en', 1, 'https://ror.org/02whebm50 Moscow Institute of Economics Politics and Law Московский институт экономики, политики и права'), (27488, 'https://ror.org/02whw1h12', 'id', 1, 'https://ror.org/02whw1h12 Universitas Kristen Indonesia Tomohon'), (27489, 'https://ror.org/02wmsc916', 'en', 1, 'https://ror.org/02wmsc916 Guizhou University 贵州大学'), (27490, 'https://ror.org/02wne9d91', 'en', 1, 'https://ror.org/02wne9d91 Nakhchivan State University Naxçıvan Dövlət Universiteti Нахичеванский государственный университет'), (27491, 'https://ror.org/02wp4vw89', 'no_lang_code', 1, 'https://ror.org/02wp4vw89 Nippon Bunri University 日本文理大学'), (27492, 'https://ror.org/02wq2gg07', 'no_lang_code', 1, 'https://ror.org/02wq2gg07 Huachiew Chalermprakiet University มหาวิทยาลัยหัวเฉียวเฉลิมพระเกียรติ'), (27493, 'https://ror.org/02wq67465', 'en', 1, 'https://ror.org/02wq67465 Solomon R. Guggenheim Museum'), (27494, 'https://ror.org/02wqs2q29', 'en', 1, 'https://ror.org/02wqs2q29 Western Mindanao State University'), (27495, 'https://ror.org/02wra6g16', 'en', 1, 'https://ror.org/02wra6g16 Glendale University College of Law'), (27496, 'https://ror.org/02wsba348', 'en', 1, 'https://ror.org/02wsba348 Samara State University of Economics Самарский государственный экономический университет'), (27497, 'https://ror.org/02wsqx654', 'en', 1, 'https://ror.org/02wsqx654 Highland Park Public Library'), (27498, 'https://ror.org/02wsybq15', 'en', 1, 'https://ror.org/02wsybq15 Museum of Ventura County'), (27499, 'https://ror.org/02wtp9k17', 'en', 1, 'https://ror.org/02wtp9k17 Legnica University of Management Wyższa Szkoła Menedżerska w Legnicy'), (27500, 'https://ror.org/02wvjw989', 'en', 1, 'https://ror.org/02wvjw989 Dr. K.N.Modi University डॉ. के.एन.मोदी यूनिवर्सिटी'), (27501, 'https://ror.org/02wwnew71', 'en', 1, 'https://ror.org/02wwnew71 Smolensk State Medical University смоленский государственный медицинский университет'), (27502, 'https://ror.org/02wy0t670', 'en', 1, 'https://ror.org/02wy0t670 Talladega Public Library'), (27503, 'https://ror.org/02wyv1n88', 'en', 1, 'https://ror.org/02wyv1n88 Fairfax County Public Library'), (27504, 'https://ror.org/02wz4qt92', 'en', 1, 'https://ror.org/02wz4qt92 New Brunswick Free Public Library'), (27505, 'https://ror.org/02x04jw38', 'en', 1, 'https://ror.org/02x04jw38 Children''s Museum of Pittsburgh'), (27506, 'https://ror.org/02x0s3f55', 'en', 1, 'https://ror.org/02x0s3f55 Fauquier County Public Library'), (27507, 'https://ror.org/02x0vsr17', 'en', 1, 'https://ror.org/02x0vsr17 Grass Roots Art and Community Effort'), (27508, 'https://ror.org/02x3m5z11', 'en', 1, 'https://ror.org/02x3m5z11 Delta International University'), (27509, 'https://ror.org/02x3whk24', 'no_lang_code', 1, 'https://ror.org/02x3whk24 Betosan (Czechia)'), (27510, 'https://ror.org/02x3ztz93', 'en', 1, 'https://ror.org/02x3ztz93 Shoin University 松蔭大学'), (27511, 'https://ror.org/02x5hb316', 'en', 1, 'https://ror.org/02x5hb316 Huafan University 華梵大學'), (27512, 'https://ror.org/02x7w2961', 'en', 1, 'https://ror.org/02x7w2961 Pibulsongkram Rajabhat University มหาวิทยาลัยราชภัฏพิบูลสงคราม'), (27513, 'https://ror.org/02x8vnm69', 'en', 1, 'https://ror.org/02x8vnm69 Noyes Museum'), (27514, 'https://ror.org/02x8vxm77', 'en', 1, 'https://ror.org/02x8vxm77 Mexic-Arte Museum'), (27515, 'https://ror.org/02xbkp909', 'en', 1, 'https://ror.org/02xbkp909 Riverside County Parks'), (27516, 'https://ror.org/02xddbh84', 'en', 1, 'https://ror.org/02xddbh84 Russian Academy of Entrepreneurship Российская Академия Предпринимательства'), (27517, 'https://ror.org/02xdzy536', 'en', 1, 'https://ror.org/02xdzy536 Baden-Wuerttemberg Cooperative State University Duale Hochschule Baden-Württemberg'), (27518, 'https://ror.org/02xfdng11', 'en', 1, 'https://ror.org/02xfdng11 Boricua College'), (27519, 'https://ror.org/02xg13584', 'en', 1, 'https://ror.org/02xg13584 Alabama Department of Revenue'), (27520, 'https://ror.org/02xhk8637', 'en', 1, 'https://ror.org/02xhk8637 International Market Institute Международный институт рынка'), (27521, 'https://ror.org/02xjmhc17', 'cs', 1, 'https://ror.org/02xjmhc17 Vysoká Skola Logistiky'), (27522, 'https://ror.org/02xpf0x05', 'en', 1, 'https://ror.org/02xpf0x05 St. Paul University Philippines'), (27523, 'https://ror.org/02xr3yb07', 'en', 1, 'https://ror.org/02xr3yb07 University of Bijeljina Univerzitet Bijeljina Универзитет Бијељина'), (27524, 'https://ror.org/02xrm8562', 'id', 1, 'https://ror.org/02xrm8562 Universitas 17 Agustus 1945 Surabaya'), (27525, 'https://ror.org/02xs4jc78', 'en', 1, 'https://ror.org/02xs4jc78 Algerian Petroleum Institute Institut Algérien du Pétrole'), (27526, 'https://ror.org/02xwcny57', 'id', 1, 'https://ror.org/02xwcny57 Universitas Muhammadiyah Buton'), (27527, 'https://ror.org/02xx4jg88', 'en', 1, 'https://ror.org/02xx4jg88 Mohammad Ali Jinnah University جامعہ محمد علی جناح'), (27528, 'https://ror.org/02xzh7w80', 'no_lang_code', 1, 'https://ror.org/02xzh7w80 SE-MI Technology (Czechia)'), (27529, 'https://ror.org/02y0s5375', 'en', 1, 'https://ror.org/02y0s5375 Roland Park Country School'), (27530, 'https://ror.org/02y1frf83', 'en', 1, 'https://ror.org/02y1frf83 John Garang Memorial University of Science and Technology'), (27531, 'https://ror.org/02y1pga23', 'no_lang_code', 1, 'https://ror.org/02y1pga23 Kushabhau Thakre Patrakarita Avam Jansanchar University कुशाभाऊ ठाकरे पत्रकारिता एवं संचार विश्वविद्यालय'), (27532, 'https://ror.org/02y394t43', 'en', 1, 'https://ror.org/02y394t43 Sardar Vallabhbhai National Institute of Technology Surat सरदार वल्लभभाई राष्ट्रीय प्रौद्योगिकी संस्थान, सूरत'), (27533, 'https://ror.org/02y561s55', 'no_lang_code', 1, 'https://ror.org/02y561s55 LOM Praha (Czechia)'), (27534, 'https://ror.org/02y676g76', 'en', 1, 'https://ror.org/02y676g76 Springfield Museums'), (27535, 'https://ror.org/02y6ewg31', 'en', 1, 'https://ror.org/02y6ewg31 Bashkir State Agrarian University Башкирский государственный аграрный университет'), (27536, 'https://ror.org/02y6r1c45', 'en', 1, 'https://ror.org/02y6r1c45 Kogakkan University 皇學館大学'), (27537, 'https://ror.org/02y7be508', 'en', 1, 'https://ror.org/02y7be508 Gomel Engineering Institute Гомельский инженерный институт МЧС Республики Беларусь'), (27538, 'https://ror.org/02y7mzf89', 'en', 1, 'https://ror.org/02y7mzf89 Museum of Decorative Arts in Prague Uměleckoprůmyslové Muzeum v Praze'), (27539, 'https://ror.org/02y7yba16', 'en', 1, 'https://ror.org/02y7yba16 North Pacific Fishery Management Council'), (27540, 'https://ror.org/02yac4e68', 'pl', 1, 'https://ror.org/02yac4e68 Masurian University in Olecko Wszechnica Mazurska w Olecku'), (27541, 'https://ror.org/02ydm7k86', 'en', 1, 'https://ror.org/02ydm7k86 Hawaii State Judiciary'), (27542, 'https://ror.org/02ykdqq93', 'no_lang_code', 1, 'https://ror.org/02ykdqq93 APS (Czechia)'), (27543, 'https://ror.org/02ykntn67', 'en', 1, 'https://ror.org/02ykntn67 University Press of Mississippi'), (27544, 'https://ror.org/02ym28w56', 'en', 1, 'https://ror.org/02ym28w56 Fraunces Tavern Museum'), (27545, 'https://ror.org/02ym98p07', 'no_lang_code', 1, 'https://ror.org/02ym98p07 AMF Reece (Czechia)'), (27546, 'https://ror.org/02ymr0w73', 'en', 1, 'https://ror.org/02ymr0w73 University of Rizal System'), (27547, 'https://ror.org/02ymwej51', 'en', 1, 'https://ror.org/02ymwej51 Lyman Museum'), (27548, 'https://ror.org/02ypf3368', 'no_lang_code', 1, 'https://ror.org/02ypf3368 Tsaritsyn Orthodox University of St. Sergius of Radonezh Царицынский православный университет преподобного Сергия Радонежского'), (27549, 'https://ror.org/02yse4t33', 'no_lang_code', 1, 'https://ror.org/02yse4t33 Ham-Final (Czechia)'), (27550, 'https://ror.org/02ytxkh27', 'en', 1, 'https://ror.org/02ytxkh27 Sirte University جامعة سرت'), (27551, 'https://ror.org/02ywmkj38', 'en', 1, 'https://ror.org/02ywmkj38 Ukrainian Free University Ukrainische Freie Universität München'), (27552, 'https://ror.org/02ywx2b39', 'en', 1, 'https://ror.org/02ywx2b39 Resource Conservation District of Santa Cruz County'), (27553, 'https://ror.org/02yx5w936', 'en', 1, 'https://ror.org/02yx5w936 Bering Sea Fishermen’s Association'), (27554, 'https://ror.org/02yypjn06', 'no_lang_code', 1, 'https://ror.org/02yypjn06 Hiroshima Jogakuin University 広島女学院大学'), (27555, 'https://ror.org/02yyxkw16', 'en', 1, 'https://ror.org/02yyxkw16 Arab Open University الجامعة العربية المفتوحة'), (27556, 'https://ror.org/02yz8wm13', 'en', 1, 'https://ror.org/02yz8wm13 Tokyo Future University 東京未来大学'), (27557, 'https://ror.org/02yzsqk70', 'id', 1, 'https://ror.org/02yzsqk70 Universitas Al-Ghifari'), (27558, 'https://ror.org/02z51gq92', 'en', 1, 'https://ror.org/02z51gq92 National Civil Rights Museum'), (27559, 'https://ror.org/02z5czc07', 'en', 1, 'https://ror.org/02z5czc07 Samara State Medical University Самарский Государственный Медицинский Университет'), (27560, 'https://ror.org/02z5xhm28', 'id', 1, 'https://ror.org/02z5xhm28 Universitas Gunung Kidul'), (27561, 'https://ror.org/02z79er63', 'en', 1, 'https://ror.org/02z79er63 Al Assad University Hospital مستشفى الأسد الجامعي'), (27562, 'https://ror.org/02z7csx58', 'en', 1, 'https://ror.org/02z7csx58 Hawaiian Historical Society'), (27563, 'https://ror.org/02z7pfr92', 'en', 1, 'https://ror.org/02z7pfr92 Oita University of Nursing and Health Sciences 大分県立看護科学大学'), (27564, 'https://ror.org/02z9b5492', 'en', 1, 'https://ror.org/02z9b5492 Institute of Commerce and Law Институт коммерции и праваWebsiteDirections'), (27565, 'https://ror.org/02zfq4z39', 'en', 1, 'https://ror.org/02zfq4z39 Taiwan Hospitality and Tourism University 臺灣觀光學院'), (27566, 'https://ror.org/02zm6mf23', 'en', 1, 'https://ror.org/02zm6mf23 Bisbee Mining & Historical Museums'), (27567, 'https://ror.org/02zp6e752', 'en', 1, 'https://ror.org/02zp6e752 Osaka University of Tourism 大阪観光大学'), (27568, 'https://ror.org/02zptxe07', 'hi', 1, 'https://ror.org/02zptxe07 Sri Padmavati Mahila Visvavidyalayam పద్మావతి మహిళా విశ్వవిద్యాలయము'), (27569, 'https://ror.org/02zqv0c70', 'en', 1, 'https://ror.org/02zqv0c70 Ufa State Institute of Arts Уфимский государственный институт искусств имени Загира Исмагилова'), (27570, 'https://ror.org/02zry2p95', 'en', 1, 'https://ror.org/02zry2p95 Almamer University'), (27571, 'https://ror.org/02zrz7n38', 'id', 1, 'https://ror.org/02zrz7n38 Universitas Dian Nusantara'), (27572, 'https://ror.org/02ztfnz06', 'en', 1, 'https://ror.org/02ztfnz06 Gori State Teaching University გორის უნივერსიტეტი'), (27573, 'https://ror.org/02zy6f603', 'tl', 1, 'https://ror.org/02zy6f603 Centro Escolar University Makati'), (27574, 'https://ror.org/02zzdhn44', 'en', 1, 'https://ror.org/02zzdhn44 Kyiv Institute of Traditional Medicine'), (27575, 'https://ror.org/0300ggk05', 'en', 1, 'https://ror.org/0300ggk05 Berkshire Community College'), (27576, 'https://ror.org/0300khg14', 'fr', 1, 'https://ror.org/0300khg14 Institut Supérieur de Formation à Distance'), (27577, 'https://ror.org/03016c374', 'en', 1, 'https://ror.org/03016c374 Chungwoon University 청운대학교'), (27578, 'https://ror.org/030290415', 'en', 1, 'https://ror.org/030290415 Gifu College of Nursing 岐阜県立看護大学'), (27579, 'https://ror.org/0302dpf35', 'en', 1, 'https://ror.org/0302dpf35 Western New York Public Broadcasting Association'), (27580, 'https://ror.org/0302nvj93', 'id', 1, 'https://ror.org/0302nvj93 Universitas Nusa Lontar Rote'), (27581, 'https://ror.org/03030f487', 'en', 1, 'https://ror.org/03030f487 Nong Lam University Ho Chi Minh City Trường Đại học Nông Lâm Thành phố Hồ Chí Minh'), (27582, 'https://ror.org/0303m8c17', 'no_lang_code', 1, 'https://ror.org/0303m8c17 Pontex (Czechia)'), (27583, 'https://ror.org/0304weq09', 'en', 1, 'https://ror.org/0304weq09 California Conservation Corps'), (27584, 'https://ror.org/03054hf98', 'en', 1, 'https://ror.org/03054hf98 Ider University Идэр дээд сургууль'), (27585, 'https://ror.org/03068df82', 'en', 1, 'https://ror.org/03068df82 Jumonji University 十文字学園女子大学'), (27586, 'https://ror.org/0308w0t08', 'en', 1, 'https://ror.org/0308w0t08 Institute for Architecture and Urban Studies'), (27587, 'https://ror.org/03092z988', 'en', 1, 'https://ror.org/03092z988 Saint Petersburg State University of Civil Aviation Санкт-Петербургский государственный университет гражданской авиации'), (27588, 'https://ror.org/030a9rt17', 'en', 1, 'https://ror.org/030a9rt17 Marine Conservation Institute'), (27589, 'https://ror.org/030c1ef86', 'en', 1, 'https://ror.org/030c1ef86 Bhagwant University भगवंत युनिवर्सिटी'), (27590, 'https://ror.org/030c9z695', 'en', 1, 'https://ror.org/030c9z695 Madison Museum of Contemporary Art'), (27591, 'https://ror.org/030dak672', 'en', 1, 'https://ror.org/030dak672 National Textile University نیشنل ٹیکسٹائل یونیورسٹی'), (27592, 'https://ror.org/030ew6d86', 'en', 1, 'https://ror.org/030ew6d86 Museum of Danish America'), (27593, 'https://ror.org/030fd1j28', 'no_lang_code', 1, 'https://ror.org/030fd1j28 Yamanashi Eiwa College 山梨英和大学'), (27594, 'https://ror.org/030hvht91', 'en', 1, 'https://ror.org/030hvht91 Texas Folklife Resources'), (27595, 'https://ror.org/030jhgm36', 'en', 1, 'https://ror.org/030jhgm36 Rappahannock Community College'), (27596, 'https://ror.org/030kbv745', 'en', 1, 'https://ror.org/030kbv745 Watsonville Wetlands Watch'), (27597, 'https://ror.org/030kg2v23', 'en', 1, 'https://ror.org/030kg2v23 Oaksterdam University'), (27598, 'https://ror.org/030nhjt85', 'en', 1, 'https://ror.org/030nhjt85 Webb School of Knoxville'), (27599, 'https://ror.org/030p1h383', 'en', 1, 'https://ror.org/030p1h383 Buckingham Browne & Nichols'), (27600, 'https://ror.org/030q11033', 'en', 1, 'https://ror.org/030q11033 Nizhny Novgorod Institute of Management and Business Нижегородский институт менеджмента и бизнеса'), (27601, 'https://ror.org/030qptj94', 'en', 1, 'https://ror.org/030qptj94 Lahore Leads University لاہور لیڈز یونیورسٹی'), (27602, 'https://ror.org/030rcn265', 'en', 1, 'https://ror.org/030rcn265 University of Arts'), (27603, 'https://ror.org/030sr3j49', 'no_lang_code', 1, 'https://ror.org/030sr3j49 Medistyl (Czechia)'), (27604, 'https://ror.org/030t96b35', 'en', 1, 'https://ror.org/030t96b35 Lebanese French University الجامعة اللبنانية الفرنسية للأعمال و الإدارة في اربيل'), (27605, 'https://ror.org/030vbff53', 'id', 1, 'https://ror.org/030vbff53 Universitas Muhammadiyah Sumatera Barat'), (27606, 'https://ror.org/030wf7z82', 'en', 1, 'https://ror.org/030wf7z82 Texas State Historical Association'), (27607, 'https://ror.org/030wwj796', 'id', 1, 'https://ror.org/030wwj796 Universitas Jabal Ghafur'), (27608, 'https://ror.org/030xw6n96', 'en', 1, 'https://ror.org/030xw6n96 Dawood University of Engineering and Technology داؤد یونیورسٹی آف انجینئرنگ اینڈ ٹیکنالوجی'), (27609, 'https://ror.org/030y6zg68', 'en', 1, 'https://ror.org/030y6zg68 Birmingham Museum of Art'), (27610, 'https://ror.org/030z21q40', 'en', 1, 'https://ror.org/030z21q40 Orleans Parish Civil Clerk of Court'), (27611, 'https://ror.org/030zy2k76', 'en', 1, 'https://ror.org/030zy2k76 Wilbur Wright College'), (27612, 'https://ror.org/0310pe913', 'en', 1, 'https://ror.org/0310pe913 Institute of World Civilizations'), (27613, 'https://ror.org/0311whq26', 'en', 1, 'https://ror.org/0311whq26 St Theresa International College วิทยาลัยนานาชาติ เซนต์เทเรซา'), (27614, 'https://ror.org/0314ahf24', 'en', 1, 'https://ror.org/0314ahf24 TransWorld University 環球科技大學'), (27615, 'https://ror.org/0314zyy82', 'en', 1, 'https://ror.org/0314zyy82 Ferris University フェリス女学院大学'), (27616, 'https://ror.org/03156th50', 'no_lang_code', 1, 'https://ror.org/03156th50 Koexpro Ostrava (Czechia)'), (27617, 'https://ror.org/0316yxf08', 'en', 1, 'https://ror.org/0316yxf08 Museum of the Gulf Coast'), (27618, 'https://ror.org/0318kta67', 'en', 1, 'https://ror.org/0318kta67 Tohoku University of Art and Design 東北芸術工科大学'), (27619, 'https://ror.org/031ahrf94', 'en', 1, 'https://ror.org/031ahrf94 University of Bamenda Université de Bamenda'), (27620, 'https://ror.org/031bayg24', 'en', 1, 'https://ror.org/031bayg24 Cenderawasih University Universitas Cenderawasih'), (27621, 'https://ror.org/031bs2a09', 'en', 1, 'https://ror.org/031bs2a09 Ukrainian State University of Chemical Technology Український державний хіміко-технологічний університет'), (27622, 'https://ror.org/031eg3302', 'en', 1, 'https://ror.org/031eg3302 Teaneck Public Library'), (27623, 'https://ror.org/031gj7m30', 'id', 1, 'https://ror.org/031gj7m30 Universitas Kristen Papua'), (27624, 'https://ror.org/031grv787', 'no_lang_code', 1, 'https://ror.org/031grv787 AHT Energetics (Czechia) AHT Energetika'), (27625, 'https://ror.org/031j5va63', 'en', 1, 'https://ror.org/031j5va63 Blount County Government'), (27626, 'https://ror.org/031mwx454', 'en', 1, 'https://ror.org/031mwx454 Brigham City Museum-Gallery'), (27627, 'https://ror.org/031p96b92', 'ro', 1, 'https://ror.org/031p96b92 Universitatea Andrei Şaguna'), (27628, 'https://ror.org/031px5f40', 'id', 1, 'https://ror.org/031px5f40 Universitas Muhammadiyah Jakarta'), (27629, 'https://ror.org/031pz1630', 'no_lang_code', 1, 'https://ror.org/031pz1630 Crawford & Stearns (United States)'), (27630, 'https://ror.org/031rbbf63', 'en', 1, 'https://ror.org/031rbbf63 Japanese American Service Committee'), (27631, 'https://ror.org/031t0qj16', 'pl', 1, 'https://ror.org/031t0qj16 Wyższa Szkoła Zarządzania w Częstochowie'), (27632, 'https://ror.org/031tn5142', 'id', 1, 'https://ror.org/031tn5142 Universitas Prof Dr Moestopo'), (27633, 'https://ror.org/031yv7164', 'en', 1, 'https://ror.org/031yv7164 Hochschule für Musik und Theater Rostock Rostock University of Music and Theatre'), (27634, 'https://ror.org/031yzhe66', 'en', 1, 'https://ror.org/031yzhe66 Cyprus American Archaeological Research Institute'), (27635, 'https://ror.org/0322dgg87', 'en', 1, 'https://ror.org/0322dgg87 American University of Culture and Education الجامعة الأمريكية للثقافة والتعليم'), (27636, 'https://ror.org/032392f02', 'en', 1, 'https://ror.org/032392f02 Sisaket Rajabhat University มหาวิทยาลัยราชภัฏ ศรีสะเกษ'), (27637, 'https://ror.org/0324chf70', 'en', 1, 'https://ror.org/0324chf70 Sheffield Historical Society'), (27638, 'https://ror.org/0324psq83', 'en', 1, 'https://ror.org/0324psq83 National Center for Jewish Film'), (27639, 'https://ror.org/0326y8887', 'en', 1, 'https://ror.org/0326y8887 Kent Memorial Library'), (27640, 'https://ror.org/03271bg65', 'en', 1, 'https://ror.org/03271bg65 General John A Logan Museum'), (27641, 'https://ror.org/0328gjw85', 'en', 1, 'https://ror.org/0328gjw85 Florida Aquarium'), (27642, 'https://ror.org/032dg3327', 'no_lang_code', 1, 'https://ror.org/032dg3327 Trystom (Czechia)'), (27643, 'https://ror.org/032eyg648', 'en', 1, 'https://ror.org/032eyg648 Belgorod Law Institute of the Russian Interior Ministry Белгородский юридический институт Министерства внутренних дел Российской Федерации'), (27644, 'https://ror.org/032f9e998', 'id', 1, 'https://ror.org/032f9e998 Universitas Muhammadiyah Kendari'), (27645, 'https://ror.org/032fhk095', 'en', 1, 'https://ror.org/032fhk095 Karaj Payam Noor University دانشگاه پیام نور کرج'), (27646, 'https://ror.org/032k6a629', 'en', 1, 'https://ror.org/032k6a629 Faculté d''art et design du massachusetts Massachusetts College of Art and Design'), (27647, 'https://ror.org/032pgsv75', 'en', 1, 'https://ror.org/032pgsv75 Artifex University Universitatea Artifex'), (27648, 'https://ror.org/032pgwm02', 'en', 1, 'https://ror.org/032pgwm02 Petre Shotadze Tbilisi Medical Academy პეტრე შოთაძის სახელობის თბილისის სამედიცინო აკადემია'), (27649, 'https://ror.org/032pkq250', 'en', 1, 'https://ror.org/032pkq250 Admiral Ushakov State Maritime University'), (27650, 'https://ror.org/032se3k78', 'en', 1, 'https://ror.org/032se3k78 Yanbian University of Science and Technology 延边科技大学'), (27651, 'https://ror.org/032sgfc78', 'en', 1, 'https://ror.org/032sgfc78 Ivanovo State Medical Academy Ивановская государственная медицинская академия'), (27652, 'https://ror.org/032t2sn55', 'id', 1, 'https://ror.org/032t2sn55 Universitas Wisnuwardhana Malang'), (27653, 'https://ror.org/032xpkz45', 'no_lang_code', 1, 'https://ror.org/032xpkz45 Tenza (Czechia)'), (27654, 'https://ror.org/032zdh829', 'no_lang_code', 1, 'https://ror.org/032zdh829 Soning (Czechia)'), (27655, 'https://ror.org/0330rc745', 'en', 1, 'https://ror.org/0330rc745 Ashikaga University 足利工業大学'), (27656, 'https://ror.org/033243786', 'id', 1, 'https://ror.org/033243786 Universitas Muhammadiyah Sukabumi'), (27657, 'https://ror.org/0336rcx12', 'no_lang_code', 1, 'https://ror.org/0336rcx12 Korkyt Ata Kyzylorda State University Қорқыт Ата атындағы Қызылорда мемлекеттік университеті'), (27658, 'https://ror.org/03373tb44', 'en', 1, 'https://ror.org/03373tb44 Toyama University of International Studies 富山国際大学'), (27659, 'https://ror.org/033ajm422', 'en', 1, 'https://ror.org/033ajm422 Boot Hill Museum'), (27660, 'https://ror.org/033ddqa09', 'en', 1, 'https://ror.org/033ddqa09 Yaroslavl State Theatre Institute Ярославский государственный театральный институт'), (27661, 'https://ror.org/033dq6x61', 'en', 1, 'https://ror.org/033dq6x61 Ho Chi Minh City University of Law Trường Đại học Luật Thành phố Hồ Chí Minh Université de droit d''hô-chi-minh-ville'), (27662, 'https://ror.org/033g82k60', 'en', 1, 'https://ror.org/033g82k60 Institute of Parliamentarism and Entrepreneurship Институт парламентаризма и предпринимательства'), (27663, 'https://ror.org/033ga7d50', 'en', 1, 'https://ror.org/033ga7d50 Old Independence Regional Museum'), (27664, 'https://ror.org/033hwa625', 'pl', 1, 'https://ror.org/033hwa625 Wyższa Szkoła Pedagogiczna w Łodzi'), (27665, 'https://ror.org/033kqn293', 'no_lang_code', 1, 'https://ror.org/033kqn293 SMS (Czechia)'), (27666, 'https://ror.org/033kwjh11', 'no_lang_code', 1, 'https://ror.org/033kwjh11 Nepal Sanskrit University नेपाल संस्कृत विश्वविद्यालय'), (27667, 'https://ror.org/033mv0745', 'no_lang_code', 1, 'https://ror.org/033mv0745 Mott MacDonald (Czechia)'), (27668, 'https://ror.org/033rd6g83', 'no_lang_code', 1, 'https://ror.org/033rd6g83 Beta Control (Czechia)'), (27669, 'https://ror.org/033rfce62', 'en', 1, 'https://ror.org/033rfce62 Uniwersytet Szawelski Šiauliai University Šiaulių universitetas'), (27670, 'https://ror.org/033v1q508', 'en', 1, 'https://ror.org/033v1q508 Frontier Nursing University'), (27671, 'https://ror.org/033v2cg93', 'no_lang_code', 1, 'https://ror.org/033v2cg93 Jig Jiga Jigjiga University'), (27672, 'https://ror.org/033z56h08', 'en', 1, 'https://ror.org/033z56h08 Polish American Historical Association'), (27673, 'https://ror.org/03414dm82', 'en', 1, 'https://ror.org/03414dm82 Western Pacific Regional Fishery Management Council'), (27674, 'https://ror.org/034172q61', 'pl', 1, 'https://ror.org/034172q61 Akademia Muzyczna im. Ignacego Jana Paderewskiego w Poznaniu'), (27675, 'https://ror.org/0341e8845', 'en', 1, 'https://ror.org/0341e8845 Saengtham College วิทยาลัยแสงธรรม'), (27676, 'https://ror.org/03455qw25', 'no_lang_code', 1, 'https://ror.org/03455qw25 Trumf International (Czechia)'), (27677, 'https://ror.org/03472k602', 'no_lang_code', 1, 'https://ror.org/03472k602 Tohoku Seikatsu Bunka University 東北生活文化大学'), (27678, 'https://ror.org/034882z59', 'en', 1, 'https://ror.org/034882z59 Saint Petersburg State Forest Technical University Санкт-Петербургский государственный лесотехнический университет'), (27679, 'https://ror.org/034a2ss16', 'en', 1, 'https://ror.org/034a2ss16 Amoud University Jaamacadda Camuud جامعة عمود'), (27680, 'https://ror.org/034agrd14', 'en', 1, 'https://ror.org/034agrd14 Lebanese International University Université internationale libanaise الجامعة اللبنانية الدولية'), (27681, 'https://ror.org/034cgwt87', 'en', 1, 'https://ror.org/034cgwt87 Eugene O''Neill Theater Center'), (27682, 'https://ror.org/034cj1z12', 'en', 1, 'https://ror.org/034cj1z12 Forestry and Game Management Research Institute'), (27683, 'https://ror.org/034f9gk34', 'en', 1, 'https://ror.org/034f9gk34 Institute of Professional Innovations ИНСТИТУТ ПРОФЕССИОНАЛЬНЫХ ИННОВАЦИЙ'), (27684, 'https://ror.org/034f9zy16', 'en', 1, 'https://ror.org/034f9zy16 Samara State Institute of Culture Самарский государственный институт культуры'), (27685, 'https://ror.org/034ghyw40', 'en', 1, 'https://ror.org/034ghyw40 Ancient Biblical Manuscript Center'), (27686, 'https://ror.org/034h2va53', 'en', 1, 'https://ror.org/034h2va53 Maharashtra Animal and Fishery Sciences University महाराष्ट्र पशु व मत्स्य विज्ञान विद्यापीठ, नागपूर'), (27687, 'https://ror.org/034jfs648', 'en', 1, 'https://ror.org/034jfs648 MNEPU Academy Международный Независимый Эколого-Политологический Университет'), (27688, 'https://ror.org/034jwk961', 'pl', 1, 'https://ror.org/034jwk961 Wyższa Szkoła Wychowania Fizycznego i Turystyki w Białymstoku'), (27689, 'https://ror.org/034k66c68', 'en', 1, 'https://ror.org/034k66c68 Yangon University Of Distance Education အဝေးသင် တက္ကသိုလ်'), (27690, 'https://ror.org/034m42x03', 'en', 1, 'https://ror.org/034m42x03 Abraham Lincoln Presidential Library Foundation'), (27691, 'https://ror.org/034mgds22', 'en', 1, 'https://ror.org/034mgds22 Siberian State University of Water Transport Сибирский государственный университет водного транспорта'), (27692, 'https://ror.org/034nbgh40', 'en', 1, 'https://ror.org/034nbgh40 Academy of Labour and Social Relations Академия труда и социальных отношений'), (27693, 'https://ror.org/034teep98', 'no_lang_code', 1, 'https://ror.org/034teep98 SOMA Engineering (Czechia)'), (27694, 'https://ror.org/034tqw466', 'en', 1, 'https://ror.org/034tqw466 Grozny State Oil Technical University named after Academician MD Millionshtchikov Грозненский государственный нефтяной технический университет имени академика М. Д. Миллионщикова'), (27695, 'https://ror.org/034xkmw20', 'en', 1, 'https://ror.org/034xkmw20 Pamantasan ng Cebu University of Cebu'), (27696, 'https://ror.org/035047r89', 'no_lang_code', 1, 'https://ror.org/035047r89 Hydrosystem Project (Czechia)'), (27697, 'https://ror.org/0350qvj56', 'en', 1, 'https://ror.org/0350qvj56 Karshi State University Qarshi Davlat Universiteti'), (27698, 'https://ror.org/0351dnm69', 'en', 1, 'https://ror.org/0351dnm69 American Antiquarian Society'), (27699, 'https://ror.org/0351h0721', 'no_lang_code', 1, 'https://ror.org/0351h0721 ProSpon (Czechia)'), (27700, 'https://ror.org/0351xae06', 'en', 1, 'https://ror.org/0351xae06 Torrens University Australia'), (27701, 'https://ror.org/0351zfv36', 'en', 1, 'https://ror.org/0351zfv36 Surya University'), (27702, 'https://ror.org/035367g48', 'no_lang_code', 1, 'https://ror.org/035367g48 Tomakomai Komazawa University 苫小牧駒澤大学'), (27703, 'https://ror.org/0354d9t07', 'cs', 1, 'https://ror.org/0354d9t07 Nemocnice Podlesí'), (27704, 'https://ror.org/0357f5c77', 'en', 1, 'https://ror.org/0357f5c77 Bangkok Business College โรงเรียนกรุงเทพการบัญชีวิทยาลัย'), (27705, 'https://ror.org/03592wg71', 'no_lang_code', 1, 'https://ror.org/03592wg71 Decomkov Praha (Czechia)'), (27706, 'https://ror.org/0359yqb07', 'en', 1, 'https://ror.org/0359yqb07 Hawaii Seafood Council'), (27707, 'https://ror.org/035b5r707', 'en', 1, 'https://ror.org/035b5r707 Essex County College'), (27708, 'https://ror.org/035bxea77', 'en', 1, 'https://ror.org/035bxea77 Bunka Gakuen University 文化学園大学'), (27709, 'https://ror.org/035gqys29', 'en', 1, 'https://ror.org/035gqys29 Coastland University'), (27710, 'https://ror.org/035h3f182', 'en', 1, 'https://ror.org/035h3f182 Moscow State Regional Socio-Humanitarian Institute'), (27711, 'https://ror.org/035m5dp49', 'en', 1, 'https://ror.org/035m5dp49 Concord Free Public Library'), (27712, 'https://ror.org/035qaq447', 'en', 1, 'https://ror.org/035qaq447 Yong In University 용인대학교'), (27713, 'https://ror.org/035rzdj42', 'en', 1, 'https://ror.org/035rzdj42 University of Asmara'), (27714, 'https://ror.org/035t6en21', 'en', 1, 'https://ror.org/035t6en21 Westfield Center for Historical Keyboard Studies'), (27715, 'https://ror.org/035tbm153', 'en', 1, 'https://ror.org/035tbm153 North Star Museum of Boy Scouting and Girl Scouting'), (27716, 'https://ror.org/035tsca78', 'en', 1, 'https://ror.org/035tsca78 Craft Contemporary'), (27717, 'https://ror.org/035v8gz14', 'en', 1, 'https://ror.org/035v8gz14 Fifth Maine Regiment Museum'), (27718, 'https://ror.org/035xy4n68', 'no_lang_code', 1, 'https://ror.org/035xy4n68 Jawa (Czechia)'), (27719, 'https://ror.org/035yj9j43', 'id', 1, 'https://ror.org/035yj9j43 Universitas Gresik'), (27720, 'https://ror.org/035z20t37', 'en', 1, 'https://ror.org/035z20t37 Chelyabinsk State Institute of Culture Челябинский государственный институт культуры'), (27721, 'https://ror.org/035zypg15', 'en', 1, 'https://ror.org/035zypg15 Uttara University উত্তরা ইউনিভার্সিটি'), (27722, 'https://ror.org/0361pb971', 'en', 1, 'https://ror.org/0361pb971 CuriOdyssey'), (27723, 'https://ror.org/03626nk78', 'en', 1, 'https://ror.org/03626nk78 Pamantasang Lungsod ng Urdaneta Urdaneta City University'), (27724, 'https://ror.org/0362r6n51', 'en', 1, 'https://ror.org/0362r6n51 Kokand State Pedagogical Institute named after Mukimi Muqimiy nomidagi Qo''qon davlat pedagogika instituti'), (27725, 'https://ror.org/0365deq57', 'en', 1, 'https://ror.org/0365deq57 University of Computer Sciences and Economics in Olsztyn WYŻSZA SZKOŁA INFORMATYKI I EKONOMII TWP W OLSZTYNIE'), (27726, 'https://ror.org/0365emg19', 'en', 1, 'https://ror.org/0365emg19 Captain Avery Museum'), (27727, 'https://ror.org/0367ee363', 'fr', 1, 'https://ror.org/0367ee363 Centre Hospitalier Universitaire Notre Dame des Secours مستشفى سيدة المعونات الجامعي'), (27728, 'https://ror.org/0367q9f19', 'no_lang_code', 1, 'https://ror.org/0367q9f19 Shakespeare Theatre Company'), (27729, 'https://ror.org/0367qb939', 'en', 1, 'https://ror.org/0367qb939 Titu Maiorescu University Universitatea Titu Maiorescu'), (27730, 'https://ror.org/03697kk98', 'en', 1, 'https://ror.org/03697kk98 Intrepid Sea Air & Space Museum'), (27731, 'https://ror.org/0369c2s29', 'en', 1, 'https://ror.org/0369c2s29 Maine Historical Society'), (27732, 'https://ror.org/036b03a90', 'en', 1, 'https://ror.org/036b03a90 Al Yamamah University جامعة اليمامة'), (27733, 'https://ror.org/036b8hr27', 'en', 1, 'https://ror.org/036b8hr27 Michigan State Police'), (27734, 'https://ror.org/036cktz33', 'no_lang_code', 1, 'https://ror.org/036cktz33 Inco Engineering (Czechia)'), (27735, 'https://ror.org/036cz4488', 'no_lang_code', 1, 'https://ror.org/036cz4488 Sudop Praha (Czechia)'), (27736, 'https://ror.org/036d1w285', 'en', 1, 'https://ror.org/036d1w285 Academy of Fine Arts in Warsaw Akademia Sztuk Pięknych w Warszawie'), (27737, 'https://ror.org/036d5d592', 'en', 1, 'https://ror.org/036d5d592 Butte-Silver Bow Public Archives'), (27738, 'https://ror.org/036feze91', 'no_lang_code', 1, 'https://ror.org/036feze91 Miyagi Gakuin Women''s University 宮城学院女子大学'), (27739, 'https://ror.org/036fndg97', 'en', 1, 'https://ror.org/036fndg97 Madina Academy أكاديمية المدينه'), (27740, 'https://ror.org/036gxc260', 'en', 1, 'https://ror.org/036gxc260 Institute of Management, Marketing and Finance Институт менеджмента, маркетинга и финансов'), (27741, 'https://ror.org/036ppfa42', 'en', 1, 'https://ror.org/036ppfa42 Kenai Peninsula Borough'), (27742, 'https://ror.org/036prgm77', 'en', 1, 'https://ror.org/036prgm77 Honghe University'), (27743, 'https://ror.org/036pt7h44', 'en', 1, 'https://ror.org/036pt7h44 University Medical Center'), (27744, 'https://ror.org/036s8jv96', 'en', 1, 'https://ror.org/036s8jv96 Historic Charleston Foundation'), (27745, 'https://ror.org/036swew50', 'en', 1, 'https://ror.org/036swew50 Chiangrai College วิทยาลัยเชียงราย'), (27746, 'https://ror.org/036swtt68', 'cs', 1, 'https://ror.org/036swtt68 České Ekologické Manažerské Centrum'), (27747, 'https://ror.org/036vgbd10', 'en', 1, 'https://ror.org/036vgbd10 David Yellin College of Education המכללה לחינוך ע"ש דוד ילין'), (27748, 'https://ror.org/036y50s64', 'en', 1, 'https://ror.org/036y50s64 University Press of Kentucky'), (27749, 'https://ror.org/0372dx737', 'en', 1, 'https://ror.org/0372dx737 Wheelwright Museum of the American Indian'), (27750, 'https://ror.org/0374ybm50', 'en', 1, 'https://ror.org/0374ybm50 Erie Canal Museum'), (27751, 'https://ror.org/0375f2x73', 'pl', 1, 'https://ror.org/0375f2x73 Uczelnia Łazarskiego'), (27752, 'https://ror.org/03761pf32', 'en', 1, 'https://ror.org/03761pf32 Euro Mediterranean University Evro-sredozemska univerza'), (27753, 'https://ror.org/037732v94', 'en', 1, 'https://ror.org/037732v94 Central University'), (27754, 'https://ror.org/0377t7h89', 'no_lang_code', 1, 'https://ror.org/0377t7h89 První Železářská Společnost Kladno (Czechia)'), (27755, 'https://ror.org/0378gm372', 'en', 1, 'https://ror.org/0378gm372 Hochschule RheinMain RheinMain University of Applied Sciences'), (27756, 'https://ror.org/0378r5x41', 'en', 1, 'https://ror.org/0378r5x41 Tambov State Music and Pedagogical Institute named after S.V. Rachmaninov ТАМБОВСКИЙ ГОСУДАРСТВЕННЫЙ МУЗЫКАЛЬНО-ПЕДАГОГИЧЕСКИЙ ИНСТИТУТ ИМ. С.В. РАХМАНИНОВА'), (27757, 'https://ror.org/0379e1d13', 'no_lang_code', 1, 'https://ror.org/0379e1d13 Oseva Pro (Czechia)'); INSERT INTO `rors` VALUES (27758, 'https://ror.org/037a1p293', 'id', 1, 'https://ror.org/037a1p293 Universitas Merdeka Pasuruan'), (27759, 'https://ror.org/037bsar61', 'de', 1, 'https://ror.org/037bsar61 Bundeskriminalamt Federal Criminal Police Office'), (27760, 'https://ror.org/037fds271', 'en', 1, 'https://ror.org/037fds271 Boxerwood Nature Center and Woodland Garden'), (27761, 'https://ror.org/037gcmv13', 'en', 1, 'https://ror.org/037gcmv13 Siberian University of Consumer Cooperatives Сибирский университет потребительской кооперации'), (27762, 'https://ror.org/037gx5d02', 'en', 1, 'https://ror.org/037gx5d02 Yewon Arts University 예원예술대학교'), (27763, 'https://ror.org/037gzsw41', 'en', 1, 'https://ror.org/037gzsw41 Robert S. Peabody Museum of Archaeology'), (27764, 'https://ror.org/037mm8r94', 'en', 1, 'https://ror.org/037mm8r94 National Building Museum'), (27765, 'https://ror.org/037r7e845', 'en', 1, 'https://ror.org/037r7e845 Institute of International Law, Economy, Humanitarian Sciences and Management named after K.V. Rossinskogo ИНСТИТУТ МЕЖДУНАРОДНОГО ПРАВА, ЭКОНОМИКИ, ГУМАНИТАРНЫХ НАУК И УПРАВЛЕНИЯ ИМЕНИ К.В. РОССИНСКОГО'), (27766, 'https://ror.org/037t55w20', 'en', 1, 'https://ror.org/037t55w20 American Writers Museum'), (27767, 'https://ror.org/037thy319', 'id', 1, 'https://ror.org/037thy319 Kartini University Universitas Kartini'), (27768, 'https://ror.org/037wmkw40', 'en', 1, 'https://ror.org/037wmkw40 Benguet State University'), (27769, 'https://ror.org/037wmsn67', 'en', 1, 'https://ror.org/037wmsn67 Nagoya Sangyo University 名古屋産業大学'), (27770, 'https://ror.org/037wnwd29', 'no_lang_code', 1, 'https://ror.org/037wnwd29 Safina (Czechia)'), (27771, 'https://ror.org/037wq3107', 'en', 1, 'https://ror.org/037wq3107 Henry Ford Museum'), (27772, 'https://ror.org/037ykcx09', 'en', 1, 'https://ror.org/037ykcx09 Gollis University جامعة جولس'), (27773, 'https://ror.org/037yy5v69', 'en', 1, 'https://ror.org/037yy5v69 Open University Malaysia Universiti Terbuka Malaysia 马来西亚开放大学'), (27774, 'https://ror.org/037zqsm37', 'en', 1, 'https://ror.org/037zqsm37 Nilai University Universiti Nilai'), (27775, 'https://ror.org/0382vme49', 'en', 1, 'https://ror.org/0382vme49 Quality Leadership University Panama'), (27776, 'https://ror.org/03866db80', 'en', 1, 'https://ror.org/03866db80 Kushiro Public University of Economics 釧路公立大学'), (27777, 'https://ror.org/038840v63', 'cs', 1, 'https://ror.org/038840v63 Hygienická stanice hlavního města Prahy'), (27778, 'https://ror.org/038ahjw20', 'en', 1, 'https://ror.org/038ahjw20 Association for International Affairs'), (27779, 'https://ror.org/038aqt498', 'en', 1, 'https://ror.org/038aqt498 Infrastructure University Kuala Lumpur Kolej Universiti Infrastruktur Kuala Lumpur'), (27780, 'https://ror.org/038h9k518', 'en', 1, 'https://ror.org/038h9k518 Museum of History and Art'), (27781, 'https://ror.org/038hwvh16', 'fr', 1, 'https://ror.org/038hwvh16 École Supérieure des Affaires الكلية العالية لادارة الاعمال'), (27782, 'https://ror.org/038j0hg40', 'en', 1, 'https://ror.org/038j0hg40 Shelton History Center'), (27783, 'https://ror.org/038mrg284', 'en', 1, 'https://ror.org/038mrg284 Dane County Library Service'), (27784, 'https://ror.org/038nzs086', 'en', 1, 'https://ror.org/038nzs086 Orenburg State Pedagogical University Оренбургский государственный педагогический университет'), (27785, 'https://ror.org/038rep477', 'en', 1, 'https://ror.org/038rep477 Friedensau Adventist University Theologische Hochschule Friedensau'), (27786, 'https://ror.org/038sdcw17', 'en', 1, 'https://ror.org/038sdcw17 Cyber University サイバー大学'), (27787, 'https://ror.org/038t7hz69', 'en', 1, 'https://ror.org/038t7hz69 IB Euro-Caucasus University'), (27788, 'https://ror.org/038vzfq40', 'en', 1, 'https://ror.org/038vzfq40 Tuvan State University Тувинский государственный университет'), (27789, 'https://ror.org/038xsq518', 'en', 1, 'https://ror.org/038xsq518 Lviv National Agrarian University Львівський Національний Аграрний Університет'), (27790, 'https://ror.org/0390yrq93', 'en', 1, 'https://ror.org/0390yrq93 Mariners'' Museum'), (27791, 'https://ror.org/0391xbs96', 'en', 1, 'https://ror.org/0391xbs96 Hokkai School of Commerce 北海商科大学'), (27792, 'https://ror.org/0393qmm36', 'en', 1, 'https://ror.org/0393qmm36 Fuller Craft Museum'), (27793, 'https://ror.org/0395g0930', 'en', 1, 'https://ror.org/0395g0930 Toho College of Music 東邦音楽大学'), (27794, 'https://ror.org/03967fe87', 'en', 1, 'https://ror.org/03967fe87 Tainan University of Technology 台南應用科技大學'), (27795, 'https://ror.org/0398ex766', 'en', 1, 'https://ror.org/0398ex766 Saint Petersburg State University of Economics Санкт-Петербургский государственный университет сервиса и экономики'), (27796, 'https://ror.org/039aamd19', 'en', 1, 'https://ror.org/039aamd19 Nihon Pharmaceutical University 日本薬科大学'), (27797, 'https://ror.org/039akp542', 'en', 1, 'https://ror.org/039akp542 Oleksandr Dovzhenko Hlukhiv National Pedagogical University Глуховский национальный педагогический университет имени Александра Довженко Глухівський національний педагогічний університет імені Олександра Довженка'), (27798, 'https://ror.org/039avsx35', 'en', 1, 'https://ror.org/039avsx35 Georgian Institute of Public Affairs საქართველოს საზოგადოებრივ საქმეთა ინსტიტუტი'), (27799, 'https://ror.org/039bc5x74', 'en', 1, 'https://ror.org/039bc5x74 Belhaven University'), (27800, 'https://ror.org/039byrc41', 'en', 1, 'https://ror.org/039byrc41 Herring Gut Learning Center'), (27801, 'https://ror.org/039dz9590', 'en', 1, 'https://ror.org/039dz9590 Tianjin Conservatory of Music 天津音乐学院'), (27802, 'https://ror.org/039fgyk85', 'en', 1, 'https://ror.org/039fgyk85 Hanshin University 한신대학교'), (27803, 'https://ror.org/039hcn695', 'en', 1, 'https://ror.org/039hcn695 Nalanda Open University नालन्दा खुला विश्वविद्यालय'), (27804, 'https://ror.org/039jmdw40', 'en', 1, 'https://ror.org/039jmdw40 America Bangladesh University আমেরিকা বাংলাদেশ ইউনিভার্সিটি'), (27805, 'https://ror.org/039k5fe46', 'en', 1, 'https://ror.org/039k5fe46 Japan University of Economics 日本経済大学'), (27806, 'https://ror.org/039p35x89', 'en', 1, 'https://ror.org/039p35x89 Academy of American Franciscan History'), (27807, 'https://ror.org/039p5s648', 'en', 1, 'https://ror.org/039p5s648 Assam Down Town University'), (27808, 'https://ror.org/039pzne76', 'en', 1, 'https://ror.org/039pzne76 Beirut Islamic University الجامعة الإسلامية في لبنان'), (27809, 'https://ror.org/039qk4d23', 'en', 1, 'https://ror.org/039qk4d23 Ella Sharp Museum'), (27810, 'https://ror.org/039r94y94', 'en', 1, 'https://ror.org/039r94y94 Ulyanovsk Higher Civil Aviation School Ульяновское высшее авиационное училище гражданской авиации'), (27811, 'https://ror.org/039rewm17', 'en', 1, 'https://ror.org/039rewm17 Kasem Bundit University มหาวิทยาลัยเกษมบัณฑิต'), (27812, 'https://ror.org/039sshh33', 'no_lang_code', 1, 'https://ror.org/039sshh33 Children of the Sea Na Kama Kai'), (27813, 'https://ror.org/039t4sn90', 'en', 1, 'https://ror.org/039t4sn90 Soegijapranata Catholic University Universitas Katolik Soegijapranata'), (27814, 'https://ror.org/039wqxn34', 'en', 1, 'https://ror.org/039wqxn34 Cherkasy Institute of Fire Safety named after Chornobyl Heroes of National University of Civil Defence of Ukraine'), (27815, 'https://ror.org/039xc0449', 'no_lang_code', 1, 'https://ror.org/039xc0449 Ecofluid Group (Czechia)'), (27816, 'https://ror.org/039xekb14', 'en', 1, 'https://ror.org/039xekb14 Amman Arab University جامعة عمان العربية للدراسات العليا الخاصة'), (27817, 'https://ror.org/039xv0h05', 'en', 1, 'https://ror.org/039xv0h05 Xi''an Conservatory of Music 西安音乐学院'), (27818, 'https://ror.org/03a0cvz60', 'en', 1, 'https://ror.org/03a0cvz60 Hsuan Chuang University 玄奘大學'), (27819, 'https://ror.org/03a2jdj94', 'en', 1, 'https://ror.org/03a2jdj94 Heritage Museums and Gardens'), (27820, 'https://ror.org/03a2yg438', 'id', 1, 'https://ror.org/03a2yg438 Institut Seni Budaya Indonesia Bandung'), (27821, 'https://ror.org/03a367103', 'en', 1, 'https://ror.org/03a367103 Sandusky Library'), (27822, 'https://ror.org/03a586v96', 'no_lang_code', 1, 'https://ror.org/03a586v96 Best - Business (Czechia)'), (27823, 'https://ror.org/03a5bb278', 'en', 1, 'https://ror.org/03a5bb278 Kent State University, East Liverpool'), (27824, 'https://ror.org/03a6cpb51', 'en', 1, 'https://ror.org/03a6cpb51 University of Goma Université de goma'), (27825, 'https://ror.org/03a752p22', 'en', 1, 'https://ror.org/03a752p22 Department of Land and Natural Resources'), (27826, 'https://ror.org/03a7ksb41', 'en', 1, 'https://ror.org/03a7ksb41 Birsa Agricultural University बिरसा कृषि विश्वविद्यालय'), (27827, 'https://ror.org/03a8q7p75', 'en', 1, 'https://ror.org/03a8q7p75 Foreign Trade University Đại học Ngoại Thương'), (27828, 'https://ror.org/03a8rwx10', 'en', 1, 'https://ror.org/03a8rwx10 Universitas YARSI Yarsi University'), (27829, 'https://ror.org/03aet8853', 'no_lang_code', 1, 'https://ror.org/03aet8853 Tokai Gakuen University 東海学園大学'), (27830, 'https://ror.org/03ag2jv25', 'en', 1, 'https://ror.org/03ag2jv25 Flint Public Library'), (27831, 'https://ror.org/03ah0ss28', 'en', 1, 'https://ror.org/03ah0ss28 Denver Public Library'), (27832, 'https://ror.org/03aj6fx58', 'en', 1, 'https://ror.org/03aj6fx58 Far Eastern State Technical Fisheries University'), (27833, 'https://ror.org/03ajsbp04', 'en', 1, 'https://ror.org/03ajsbp04 Accra Institute of Technology'), (27834, 'https://ror.org/03an54s92', 'en', 1, 'https://ror.org/03an54s92 Summit County Juvenile Court'), (27835, 'https://ror.org/03an7d434', 'en', 1, 'https://ror.org/03an7d434 Hyperion University Universitatea Hyperion din Bucureşti'), (27836, 'https://ror.org/03apehb04', 'en', 1, 'https://ror.org/03apehb04 Muncie Public Library'), (27837, 'https://ror.org/03aptyv62', 'en', 1, 'https://ror.org/03aptyv62 Nagano University 長野大学'), (27838, 'https://ror.org/03aqgee13', 'en', 1, 'https://ror.org/03aqgee13 Isfahan University of Art دانشگاه هنر اصفهان'), (27839, 'https://ror.org/03avqt992', 'en', 1, 'https://ror.org/03avqt992 Nizhny Novgorod State University of Architecture and Civil Engineering НИЖЕГОРОДСКИЙ ГОСУДАРСТВЕННЫЙ АРХИТЕКТУРНО-СТРОИТЕЛЬНЫЙ УНИВЕРСИТЕТ'), (27840, 'https://ror.org/03ayd8t59', 'en', 1, 'https://ror.org/03ayd8t59 Qidong Liver Cancer Prevention Research'), (27841, 'https://ror.org/03b2rjh82', 'en', 1, 'https://ror.org/03b2rjh82 Marine Conservation Alliance'), (27842, 'https://ror.org/03b3s2n43', 'en', 1, 'https://ror.org/03b3s2n43 Piedmont Community College'), (27843, 'https://ror.org/03b4bdb78', 'no_lang_code', 1, 'https://ror.org/03b4bdb78 BLOCK (Czechia)'), (27844, 'https://ror.org/03b5fdt21', 'no_lang_code', 1, 'https://ror.org/03b5fdt21 Juta (Czechia)'), (27845, 'https://ror.org/03b657f73', 'en', 1, 'https://ror.org/03b657f73 Kio University 畿央大学'), (27846, 'https://ror.org/03bch0x53', 'en', 1, 'https://ror.org/03bch0x53 Oakland Museum of California'), (27847, 'https://ror.org/03bdv1r55', 'en', 1, 'https://ror.org/03bdv1r55 Hadassah Academic College מכללה אקדמית הדסה ירושלים'), (27848, 'https://ror.org/03bej0y93', 'en', 1, 'https://ror.org/03bej0y93 Yu Da University 育達科技大學'), (27849, 'https://ror.org/03bg9er42', 'en', 1, 'https://ror.org/03bg9er42 New York Transit Museum'), (27850, 'https://ror.org/03bha2k34', 'en', 1, 'https://ror.org/03bha2k34 University of Medical Technology Mandalay'), (27851, 'https://ror.org/03bhnt079', 'en', 1, 'https://ror.org/03bhnt079 Penobscot River Restoration Trust'), (27852, 'https://ror.org/03bj7cd20', 'en', 1, 'https://ror.org/03bj7cd20 Liberty Memorial'), (27853, 'https://ror.org/03bktwf13', 'no_lang_code', 1, 'https://ror.org/03bktwf13 Aichi Gakusen University 愛知学泉大学'), (27854, 'https://ror.org/03bnp9h65', 'en', 1, 'https://ror.org/03bnp9h65 Islamic Azad University, Bandar Anzali Branch دانشگاه آزاد اسلامي واحد انزلی'), (27855, 'https://ror.org/03bs4te22', 'no_lang_code', 1, 'https://ror.org/03bs4te22 Mizan Tepi University'), (27856, 'https://ror.org/03bvtqh46', 'en', 1, 'https://ror.org/03bvtqh46 Department of Embryology'), (27857, 'https://ror.org/03bwsp312', 'en', 1, 'https://ror.org/03bwsp312 Kobe Shoin Women''s University 神戸松蔭女子学院大学'), (27858, 'https://ror.org/03bxk9355', 'no_lang_code', 1, 'https://ror.org/03bxk9355 Syktyvkar State University Сыктывкарский государственный университет'), (27859, 'https://ror.org/03bya9897', 'en', 1, 'https://ror.org/03bya9897 Seiwa University 清和大学'), (27860, 'https://ror.org/03byfn584', 'en', 1, 'https://ror.org/03byfn584 Academy of Arts of Uzbekistan O‘zbekiston Badiiy akademiyasi Академия художеств Узбекистана'), (27861, 'https://ror.org/03c0qqf32', 'en', 1, 'https://ror.org/03c0qqf32 Frankfurt University of Music and Performing Arts Hochschule für Musik und Darstellende Kunst Frankfurt am Main'), (27862, 'https://ror.org/03c0rtn49', 'en', 1, 'https://ror.org/03c0rtn49 Maryland Historical Society'), (27863, 'https://ror.org/03c19jm06', 'en', 1, 'https://ror.org/03c19jm06 Universiteti i Elbasanit University of Elbasan'), (27864, 'https://ror.org/03c21xx79', 'en', 1, 'https://ror.org/03c21xx79 Malikussaleh University Universitas Malikussaleh'), (27865, 'https://ror.org/03c6e8r26', 'en', 1, 'https://ror.org/03c6e8r26 Dayeh University 大葉大學'), (27866, 'https://ror.org/03c7trt86', 'en', 1, 'https://ror.org/03c7trt86 Center for Social and Environmental Stewardship'), (27867, 'https://ror.org/03c824k52', 'en', 1, 'https://ror.org/03c824k52 Samarkand State Medical Institute САМАРКАНДСКИЙ ГОСУДАРСТВЕННЫЙ МЕДИЦИНСКИЙ ИНСТИТУТ'), (27868, 'https://ror.org/03c8sfz84', 'en', 1, 'https://ror.org/03c8sfz84 Hanoi Architectural University Trường Đại học Kiến trúc Hà Nội'), (27869, 'https://ror.org/03cb6na95', 'en', 1, 'https://ror.org/03cb6na95 University of International Golden Indonesia'), (27870, 'https://ror.org/03cc55r59', 'en', 1, 'https://ror.org/03cc55r59 Sveučilišni Centar za Protestantsku Teologiju Matija Vlačić Ilirik University Center for Protestant Theology Matthias Flacius Illyricus'), (27871, 'https://ror.org/03cd9qk80', 'no_lang_code', 1, 'https://ror.org/03cd9qk80 Heluz (Czechia)'), (27872, 'https://ror.org/03cde6p20', 'en', 1, 'https://ror.org/03cde6p20 Phillips Exeter Academy'), (27873, 'https://ror.org/03cg3mb71', 'en', 1, 'https://ror.org/03cg3mb71 Moscow Humanitarian Institute of E. Dashkova Московский Гуманитарный Институт им. Е.Р. Дашковой'), (27874, 'https://ror.org/03cg4ry50', 'no_lang_code', 1, 'https://ror.org/03cg4ry50 Eltodo (Czechia)'), (27875, 'https://ror.org/03chcr159', 'en', 1, 'https://ror.org/03chcr159 Vision Maker Media'), (27876, 'https://ror.org/03chx4004', 'en', 1, 'https://ror.org/03chx4004 DeKalb Library Foundation'), (27877, 'https://ror.org/03cjmb844', 'no_lang_code', 1, 'https://ror.org/03cjmb844 Fukuoka Jo Gakuin University 福岡女学院大学'), (27878, 'https://ror.org/03ckbnn72', 'en', 1, 'https://ror.org/03ckbnn72 Transnational Law and Business University 국제법률경영대학원대학교'), (27879, 'https://ror.org/03ckcj843', 'en', 1, 'https://ror.org/03ckcj843 Perm State Institute of Arts and Culture Пермский Государственный Институт Искусства и Культуры'), (27880, 'https://ror.org/03cmqyv16', 'cs', 1, 'https://ror.org/03cmqyv16 Středočeské Muzeum v Roztokách u Prahy'), (27881, 'https://ror.org/03cpgdf16', 'en', 1, 'https://ror.org/03cpgdf16 National Academy of Management Национальная академия управления Національна академія управління'), (27882, 'https://ror.org/03ct11z80', 'en', 1, 'https://ror.org/03ct11z80 Scurry County Museum'), (27883, 'https://ror.org/03cv1mx62', 'id', 1, 'https://ror.org/03cv1mx62 Universitas Islam 45 Bekasi'), (27884, 'https://ror.org/03cvm1z63', 'en', 1, 'https://ror.org/03cvm1z63 Office of the Mississippi Secretary of State'), (27885, 'https://ror.org/03cvxzw02', 'en', 1, 'https://ror.org/03cvxzw02 Rajamangala University of Technology Tawan-ok มหาวิทยาลัยราชมงคลตะวันออก'), (27886, 'https://ror.org/03cyyx472', 'no_lang_code', 1, 'https://ror.org/03cyyx472 Katahdin Productions'), (27887, 'https://ror.org/03d2mp652', 'en', 1, 'https://ror.org/03d2mp652 Taganrog Institute of Management and Economics Частное образовательное учреждение высшего образования Таганрогский институт управления и экономики'), (27888, 'https://ror.org/03d5rbb25', 'en', 1, 'https://ror.org/03d5rbb25 Pamantasang Normal ng Pilipinas Philippine Normal University'), (27889, 'https://ror.org/03d7p8g51', 'en', 1, 'https://ror.org/03d7p8g51 Netanya Academic College كلية نتانيا الأكاديمية'), (27890, 'https://ror.org/03d88a580', 'en', 1, 'https://ror.org/03d88a580 Marin Barleti University Universiteti Marin Barleti'), (27891, 'https://ror.org/03d8nmh82', 'en', 1, 'https://ror.org/03d8nmh82 Kameshwar Singh Darbhanga Sanskrit University कामेश्वर सिंह दरभंगा संस्कृत विश्वविद्यालय'), (27892, 'https://ror.org/03d94a118', 'no_lang_code', 1, 'https://ror.org/03d94a118 SatisGeo (Czechia)'), (27893, 'https://ror.org/03dbkxb13', 'en', 1, 'https://ror.org/03dbkxb13 Erie MetroParks'), (27894, 'https://ror.org/03dc0dy65', 'en', 1, 'https://ror.org/03dc0dy65 Kashan University of Medical Sciences'), (27895, 'https://ror.org/03dcvf827', 'en', 1, 'https://ror.org/03dcvf827 Beykent University Beykent Üniversitesi'), (27896, 'https://ror.org/03dd8b657', 'en', 1, 'https://ror.org/03dd8b657 Mohi-ud-Din Islamic University محی الدین اسلامی یونیورسٹی۔'), (27897, 'https://ror.org/03decxd42', 'no_lang_code', 1, 'https://ror.org/03decxd42 Software602 (Czechia)'), (27898, 'https://ror.org/03dgxrg98', 'en', 1, 'https://ror.org/03dgxrg98 Germanna Virginia Community College'), (27899, 'https://ror.org/03dhz6n86', 'en', 1, 'https://ror.org/03dhz6n86 Kanagawa University of Human Services 神奈川県立保健福祉大学'), (27900, 'https://ror.org/03dj8sp02', 'en', 1, 'https://ror.org/03dj8sp02 Providence Montana Health Foundation'), (27901, 'https://ror.org/03djm2720', 'en', 1, 'https://ror.org/03djm2720 Siberian State Technological University Сибирский государственный технологический университет'), (27902, 'https://ror.org/03dmxq167', 'no_lang_code', 1, 'https://ror.org/03dmxq167 GaREP (Czechia)'), (27903, 'https://ror.org/03dr26375', 'en', 1, 'https://ror.org/03dr26375 Jinwen University of Science and Technology 景文科技大學'), (27904, 'https://ror.org/03dv91853', 'en', 1, 'https://ror.org/03dv91853 Dortmund University of Applied Sciences and Arts Fachhochschule Dortmund'), (27905, 'https://ror.org/03dw9f533', 'pl', 1, 'https://ror.org/03dw9f533 Warszawska Wyższa Szkoła Humanistyczna im. Bolesława Prusa'), (27906, 'https://ror.org/03dwyrh96', 'en', 1, 'https://ror.org/03dwyrh96 Rocky Mount Museum'), (27907, 'https://ror.org/03dxh7253', 'id', 1, 'https://ror.org/03dxh7253 Universitas Bojonegoro'), (27908, 'https://ror.org/03dxr8478', 'en', 1, 'https://ror.org/03dxr8478 Farallones Marine Sanctuary Association'), (27909, 'https://ror.org/03dy9v459', 'en', 1, 'https://ror.org/03dy9v459 Fan Noli University Universiteti "Fan S. Noli"'), (27910, 'https://ror.org/03e0h3d81', 'en', 1, 'https://ror.org/03e0h3d81 Bansomdejchaopraya Rajabhat University มหาวิทยาลัยราชภัฏบ้านสมเด็จเจ้าพระยา'), (27911, 'https://ror.org/03e1ymy32', 'en', 1, 'https://ror.org/03e1ymy32 Sorbonne University Abu Dhabi جامعة السوربون أبوظبي'), (27912, 'https://ror.org/03e2ja558', 'en', 1, 'https://ror.org/03e2ja558 Togliatti State University Тольяттинский государственный университет'), (27913, 'https://ror.org/03e6rv013', 'en', 1, 'https://ror.org/03e6rv013 Beaconhouse National University بیکن ہاؤس نیشنل یونیورسٹی'), (27914, 'https://ror.org/03e7c0529', 'en', 1, 'https://ror.org/03e7c0529 Ridgewood Public Schools'), (27915, 'https://ror.org/03e8pcr67', 'cs', 1, 'https://ror.org/03e8pcr67 Krajská Hygienická Stanice Plzeňského Kraje se Sídlem v Plzni'), (27916, 'https://ror.org/03e99kh24', 'en', 1, 'https://ror.org/03e99kh24 Al-Aqsa University جامعة الأقصى'), (27917, 'https://ror.org/03eczrc37', 'en', 1, 'https://ror.org/03eczrc37 Dawat University د دعوت پوهنتون'), (27918, 'https://ror.org/03ef2km18', 'no_lang_code', 1, 'https://ror.org/03ef2km18 SBP Consult'), (27919, 'https://ror.org/03efg7b93', 'no_lang_code', 1, 'https://ror.org/03efg7b93 The Egyptian General Company for Tourism and Hotels (Egypt) ايجوث - الشركة المصرية العامة للسياحة والفنادق'), (27920, 'https://ror.org/03egfpm06', 'en', 1, 'https://ror.org/03egfpm06 Institute of Business Administration Karachi انسٹيٹيوٹ آف بزنس ايڈمنسٹريشن'), (27921, 'https://ror.org/03ekmr487', 'en', 1, 'https://ror.org/03ekmr487 Morgan Library and Museum'), (27922, 'https://ror.org/03em3tg48', 'en', 1, 'https://ror.org/03em3tg48 Czech Concrete Society'), (27923, 'https://ror.org/03emyn761', 'en', 1, 'https://ror.org/03emyn761 Radio Diaries'), (27924, 'https://ror.org/03enayd48', 'en', 1, 'https://ror.org/03enayd48 Perm State Agricultural Academy Пермский государственный аграрно-технологический университет'), (27925, 'https://ror.org/03enrvz51', 'cs', 1, 'https://ror.org/03enrvz51 Národní Ústav pro Vzdělávání'), (27926, 'https://ror.org/03evcb553', 'en', 1, 'https://ror.org/03evcb553 Chechen State Pedagogical Institute Чеченский государственный педагогический институт'), (27927, 'https://ror.org/03evnn851', 'en', 1, 'https://ror.org/03evnn851 Fairbanks Museum and Planetarium'), (27928, 'https://ror.org/03ew6av42', 'en', 1, 'https://ror.org/03ew6av42 Arab Community Center for Economic and Social Services'), (27929, 'https://ror.org/03ewepe58', 'en', 1, 'https://ror.org/03ewepe58 Al-Azhar University Universitas Al-Azhar'), (27930, 'https://ror.org/03ewvg219', 'en', 1, 'https://ror.org/03ewvg219 International Institute of Hotel Management and Tourism Международный институт гостиничного менеджмента и туризма'), (27931, 'https://ror.org/03ewyw715', 'en', 1, 'https://ror.org/03ewyw715 Jose Rizal Memorial State University'), (27932, 'https://ror.org/03f059y22', 'en', 1, 'https://ror.org/03f059y22 Institute of Andean Studies'), (27933, 'https://ror.org/03f0pkh33', 'en', 1, 'https://ror.org/03f0pkh33 Novosibirsk State University of Economics and Management федеральное государственное бюджетное образовательное учреждение высшего образования Новосибирский государственный университет экономики и управления НИНХ'), (27934, 'https://ror.org/03f18y477', 'en', 1, 'https://ror.org/03f18y477 Latvian Academy of Culture Latvijas Kulturas akademija'), (27935, 'https://ror.org/03f31yy77', 'en', 1, 'https://ror.org/03f31yy77 California African American Museum'), (27936, 'https://ror.org/03f4hkk83', 'en', 1, 'https://ror.org/03f4hkk83 Rutherford B. Hayes Presidential Center'), (27937, 'https://ror.org/03f82ns94', 'en', 1, 'https://ror.org/03f82ns94 Tippecanoe County Historical Association'), (27938, 'https://ror.org/03fbdat12', 'en', 1, 'https://ror.org/03fbdat12 Greenwich University'), (27939, 'https://ror.org/03fcx9267', 'en', 1, 'https://ror.org/03fcx9267 Idaho Department of Fish and Game'), (27940, 'https://ror.org/03ffqk344', 'en', 1, 'https://ror.org/03ffqk344 Coastal Georgia Historical Society'), (27941, 'https://ror.org/03ffvb852', 'en', 1, 'https://ror.org/03ffvb852 Jaramogi Oginga Odinga University of Science and Technology'), (27942, 'https://ror.org/03fgk0a27', 'en', 1, 'https://ror.org/03fgk0a27 United Methodist University'), (27943, 'https://ror.org/03fgpgg24', 'en', 1, 'https://ror.org/03fgpgg24 Putnam Museum'), (27944, 'https://ror.org/03fmejp65', 'en', 1, 'https://ror.org/03fmejp65 Norfolk Academy'), (27945, 'https://ror.org/03fqmz304', 'en', 1, 'https://ror.org/03fqmz304 European University of Bangladesh ইউরোপিয়ান বিশ্ববিদ্যালয়'), (27946, 'https://ror.org/03fvscn16', 'en', 1, 'https://ror.org/03fvscn16 Okinawa Prefectural University of Arts 沖縄県立芸術大学'), (27947, 'https://ror.org/03fvtf211', 'en', 1, 'https://ror.org/03fvtf211 Institute for Structural Policy'), (27948, 'https://ror.org/03fws8b96', 'en', 1, 'https://ror.org/03fws8b96 Amur State University Амурский государственный университет'), (27949, 'https://ror.org/03fx09x73', 'en', 1, 'https://ror.org/03fx09x73 Shaoyang University'), (27950, 'https://ror.org/03fxpr782', 'en', 1, 'https://ror.org/03fxpr782 North-Caucasian State Institute of Arts Северо-Кавказский государственный институт искусств'), (27951, 'https://ror.org/03g1eje15', 'en', 1, 'https://ror.org/03g1eje15 Siberian Independent Institute Сибирский независимый институт'), (27952, 'https://ror.org/03g5gja16', 'id', 1, 'https://ror.org/03g5gja16 Universitas Jayabaya'), (27953, 'https://ror.org/03g873n36', 'en', 1, 'https://ror.org/03g873n36 Pacific University Oregon'), (27954, 'https://ror.org/03g8fqe42', 'id', 1, 'https://ror.org/03g8fqe42 Universitas Mpu Tantular'), (27955, 'https://ror.org/03ga61755', 'id', 1, 'https://ror.org/03ga61755 Universitas Bandar Lampung'), (27956, 'https://ror.org/03gb3sn92', 'no_lang_code', 1, 'https://ror.org/03gb3sn92 Dr. Balasaheb Sawant Konkan Krishi Vidyapeeth'), (27957, 'https://ror.org/03gdf8x58', 'en', 1, 'https://ror.org/03gdf8x58 Şifa University Şifa Üniversitesi'), (27958, 'https://ror.org/03gf02c22', 'en', 1, 'https://ror.org/03gf02c22 Folkwang University of the Arts Folkwang Universität der Künste'), (27959, 'https://ror.org/03gghxt23', 'en', 1, 'https://ror.org/03gghxt23 Pacific Islands Fisheries Group'), (27960, 'https://ror.org/03gn53446', 'id', 1, 'https://ror.org/03gn53446 Universitas Setia Budi'), (27961, 'https://ror.org/03gpmrn65', 'en', 1, 'https://ror.org/03gpmrn65 Waterloo Public Library'), (27962, 'https://ror.org/03gqevz94', 'en', 1, 'https://ror.org/03gqevz94 Herguan University'), (27963, 'https://ror.org/03gqgr248', 'en', 1, 'https://ror.org/03gqgr248 New Rochelle Public Library'), (27964, 'https://ror.org/03gqzqb15', 'en', 1, 'https://ror.org/03gqzqb15 Louisiana Department of Wildlife and Fisheries'), (27965, 'https://ror.org/03grptj54', 'en', 1, 'https://ror.org/03grptj54 Federal Penitentiary Service Федеральная служба исполнения наказаний'), (27966, 'https://ror.org/03gs0q910', 'en', 1, 'https://ror.org/03gs0q910 Shri Jagdishprasad Jhabarmal Tibrewala University श्री जगदीशप्रसाद झाबरमल टिबड़ेवाला युनिवर्सिटी'), (27967, 'https://ror.org/03gsd6w61', 'en', 1, 'https://ror.org/03gsd6w61 National University of Saint Anthony the Abbot in Cuzco Universidad Nacional de San Antonio Abad del Cusco'), (27968, 'https://ror.org/03gshtw15', 'no_lang_code', 1, 'https://ror.org/03gshtw15 Global Village Media'), (27969, 'https://ror.org/03gskda23', 'en', 1, 'https://ror.org/03gskda23 LUM Jean Monnet University Libera Università Mediterranea'), (27970, 'https://ror.org/03gsvvm69', 'no_lang_code', 1, 'https://ror.org/03gsvvm69 Nagoya Gakuin University 名古屋学院大学'), (27971, 'https://ror.org/03gveh102', 'en', 1, 'https://ror.org/03gveh102 University of Wisconsin–Fond du Lac'), (27972, 'https://ror.org/03gvw6m91', 'en', 1, 'https://ror.org/03gvw6m91 Higher Institute of Business Administration المعهد العالي لادارة الاعمال'), (27973, 'https://ror.org/03gz4ds16', 'no_lang_code', 1, 'https://ror.org/03gz4ds16 ÚRS Praha (Czechia)'), (27974, 'https://ror.org/03gz88214', 'en', 1, 'https://ror.org/03gz88214 University of Medicine Mandalay မန္တလေးဆေးတက္ကသိုလ်'), (27975, 'https://ror.org/03h43ff92', 'cs', 1, 'https://ror.org/03h43ff92 Association of Chemical Industry of the Czech Republic Svaz chemického průmyslu České republiky'), (27976, 'https://ror.org/03h67v482', 'en', 1, 'https://ror.org/03h67v482 Orsk Humanitarian Technology Institute Орский гуманитарно-технологический институт'), (27977, 'https://ror.org/03h79eg54', 'en', 1, 'https://ror.org/03h79eg54 Wallingford Public Library'), (27978, 'https://ror.org/03h7hxc46', 'no_lang_code', 1, 'https://ror.org/03h7hxc46 OEZ (Czechia)'), (27979, 'https://ror.org/03h8sa373', 'en', 1, 'https://ror.org/03h8sa373 Osmaniye Korkut Ata University Osmaniye Korkut Ata Üniversitesi'), (27980, 'https://ror.org/03hakcq28', 'en', 1, 'https://ror.org/03hakcq28 Qarshi University قرشی یونیورسٹی'), (27981, 'https://ror.org/03hamks61', 'en', 1, 'https://ror.org/03hamks61 American University of the Caribbean'), (27982, 'https://ror.org/03hbktk11', 'no_lang_code', 1, 'https://ror.org/03hbktk11 GiTy (Czechia)'), (27983, 'https://ror.org/03hbved79', 'en', 1, 'https://ror.org/03hbved79 WSPIA University of Rzeszow Wyższa Szkoła Prawa i Administracji Rzeszów-Przemyśl'), (27984, 'https://ror.org/03hc2rf16', 'en', 1, 'https://ror.org/03hc2rf16 Metropolitan Indianapolis Public Broadcasting'), (27985, 'https://ror.org/03hc6qf46', 'en', 1, 'https://ror.org/03hc6qf46 Historic Cherry Hill'), (27986, 'https://ror.org/03hcakg70', 'en', 1, 'https://ror.org/03hcakg70 Pushkin State Russian language Institute Государственный Институт русского языка им. А.С. Пушкина'), (27987, 'https://ror.org/03hd23385', 'en', 1, 'https://ror.org/03hd23385 Sokhumi State University Սուխումի պետական համալսարան სოხუმის სახელმწიფო უნივერსიტეტი'), (27988, 'https://ror.org/03hdcss70', 'cs', 1, 'https://ror.org/03hdcss70 Krajská Zdravotní'), (27989, 'https://ror.org/03hgqv564', 'en', 1, 'https://ror.org/03hgqv564 Association of African American Museums'), (27990, 'https://ror.org/03hja9k84', 'en', 1, 'https://ror.org/03hja9k84 Fuji Women''s University 藤女子大学'), (27991, 'https://ror.org/03hkga097', 'en', 1, 'https://ror.org/03hkga097 Central Academy of Drama 中央戏剧学院'), (27992, 'https://ror.org/03hmxxh50', 'en', 1, 'https://ror.org/03hmxxh50 Czech RE Agency'), (27993, 'https://ror.org/03hn03h23', 'fr', 1, 'https://ror.org/03hn03h23 Université La Sagesse جامعة الحكمة'), (27994, 'https://ror.org/03hnckv05', 'en', 1, 'https://ror.org/03hnckv05 Mokpo Catholic University 목포가톨릭대학교'), (27995, 'https://ror.org/03ht5xf97', 'en', 1, 'https://ror.org/03ht5xf97 Anaheim University'), (27996, 'https://ror.org/03j0zym75', 'en', 1, 'https://ror.org/03j0zym75 Rajapark Institute สถาบันรัชต์ภาคย์'), (27997, 'https://ror.org/03j3t7793', 'en', 1, 'https://ror.org/03j3t7793 Institute of Economics, Management and Law Институт экономики, управления и права'), (27998, 'https://ror.org/03j5g0n26', 'en', 1, 'https://ror.org/03j5g0n26 USS Constitution Museum'), (27999, 'https://ror.org/03j999y97', 'en', 1, 'https://ror.org/03j999y97 Nakhon Phanom University มหาวิทยาลัยนครพนม'), (28000, 'https://ror.org/03j9sfh72', 'en', 1, 'https://ror.org/03j9sfh72 Takarazuka University of Arts & Crafts 宝塚造形芸術大学'), (28001, 'https://ror.org/03jbv9f50', 'en', 1, 'https://ror.org/03jbv9f50 Institute of Friendship of the People of Caucasus Институт Дружбы народов Кавказа'), (28002, 'https://ror.org/03jcg6182', 'en', 1, 'https://ror.org/03jcg6182 Union of Needletrades Industrial and Textile Employees'), (28003, 'https://ror.org/03jd7ez57', 'no_lang_code', 1, 'https://ror.org/03jd7ez57 Malama na Honu'), (28004, 'https://ror.org/03jeahd70', 'no_lang_code', 1, 'https://ror.org/03jeahd70 Shikoku University 四国大学'), (28005, 'https://ror.org/03jhw8y69', 'en', 1, 'https://ror.org/03jhw8y69 Stockbridge Library Association'), (28006, 'https://ror.org/03jj8rb41', 'en', 1, 'https://ror.org/03jj8rb41 Nevada State Library, Archives, and Public Records'), (28007, 'https://ror.org/03jm2w382', 'en', 1, 'https://ror.org/03jm2w382 Gulf of Alaska Keeper'), (28008, 'https://ror.org/03jnxyq69', 'en', 1, 'https://ror.org/03jnxyq69 Banking University Університет банківської справи'), (28009, 'https://ror.org/03jp7rg16', 'en', 1, 'https://ror.org/03jp7rg16 LNM Institute of Information Technology'), (28010, 'https://ror.org/03jqhsn85', 'no_lang_code', 1, 'https://ror.org/03jqhsn85 Seinan Gakuin University 西南学院大学'), (28011, 'https://ror.org/03jr06221', 'en', 1, 'https://ror.org/03jr06221 Dr Panjabrao Deshmukh Krishi Vidyapeeth डॉ. पंजाबराव देशमुख कृषी विद्यापीठ'), (28012, 'https://ror.org/03js41c71', 'hu', 1, 'https://ror.org/03js41c71 Veszprémi Érseki Hittudományi Fõiskola'), (28013, 'https://ror.org/03js77h61', 'en', 1, 'https://ror.org/03js77h61 Classical and Traditional Medicine Academy'), (28014, 'https://ror.org/03jtq9874', 'no_lang_code', 1, 'https://ror.org/03jtq9874 STAPPA mix (Czechia)'), (28015, 'https://ror.org/03jtxwz22', 'en', 1, 'https://ror.org/03jtxwz22 Stavropol Institute of VD Chursina Ставропольский институт имени В.Д. Чурсина'), (28016, 'https://ror.org/03jxhcr96', 'en', 1, 'https://ror.org/03jxhcr96 Peking University International Hospital 北大国际医院'), (28017, 'https://ror.org/03jyrpv84', 'en', 1, 'https://ror.org/03jyrpv84 Oregon Parks and Recreation Department'), (28018, 'https://ror.org/03jz5v392', 'no_lang_code', 1, 'https://ror.org/03jz5v392 Agritec (Czechia)'), (28019, 'https://ror.org/03k0fhh26', 'en', 1, 'https://ror.org/03k0fhh26 University of Maryland Medical Center Midtown Campus'), (28020, 'https://ror.org/03k1g6m92', 'en', 1, 'https://ror.org/03k1g6m92 University of Kindu Université de kindu'), (28021, 'https://ror.org/03k3r1802', 'no_lang_code', 1, 'https://ror.org/03k3r1802 URC Systems (Czechia)'), (28022, 'https://ror.org/03k3yk915', 'en', 1, 'https://ror.org/03k3yk915 Duluth Business University'), (28023, 'https://ror.org/03k44kp71', 'id', 1, 'https://ror.org/03k44kp71 Universitas Darul Ulum'), (28024, 'https://ror.org/03k4a4h69', 'en', 1, 'https://ror.org/03k4a4h69 Brigham City Library'), (28025, 'https://ror.org/03k5bgb88', 'no_lang_code', 1, 'https://ror.org/03k5bgb88 Bombardier (Italy)'), (28026, 'https://ror.org/03k5j0a08', 'en', 1, 'https://ror.org/03k5j0a08 Nayoro City University 名寄市立大学'), (28027, 'https://ror.org/03k5q1m42', 'no_lang_code', 1, 'https://ror.org/03k5q1m42 Poole Gakuin University 学校法人プール学院'), (28028, 'https://ror.org/03k7qz240', 'en', 1, 'https://ror.org/03k7qz240 Maharaja Ranjit Singh Punjab Technical University'), (28029, 'https://ror.org/03k882j22', 'en', 1, 'https://ror.org/03k882j22 Pacific Education Institute'), (28030, 'https://ror.org/03k883a47', 'en', 1, 'https://ror.org/03k883a47 Moscow Architectural Institute Московский Архитектурный Институт'), (28031, 'https://ror.org/03k922132', 'id', 1, 'https://ror.org/03k922132 Universitas Nusa Nipa Maumere'), (28032, 'https://ror.org/03k9f1n96', 'en', 1, 'https://ror.org/03k9f1n96 Nagoya University of Foreign Studies 名古屋外国語大学'), (28033, 'https://ror.org/03kb7hq55', 'en', 1, 'https://ror.org/03kb7hq55 Kurume Institute of Technology 久留米工業大学'), (28034, 'https://ror.org/03kc2e209', 'en', 1, 'https://ror.org/03kc2e209 Muhammadiyah University of Makassar Universitas Muhammadiyah Makassar'), (28035, 'https://ror.org/03kd43413', 'en', 1, 'https://ror.org/03kd43413 Nagoya Zokei University 名古屋造形大学'), (28036, 'https://ror.org/03keyse18', 'en', 1, 'https://ror.org/03keyse18 Vesterheim Norwegian American Museum'), (28037, 'https://ror.org/03kfrc103', 'no_lang_code', 1, 'https://ror.org/03kfrc103 Deutsche Montan Technologie (Germany)'), (28038, 'https://ror.org/03kgy0531', 'en', 1, 'https://ror.org/03kgy0531 Presbyterian University of East Africa'), (28039, 'https://ror.org/03kh0v816', 'en', 1, 'https://ror.org/03kh0v816 Penza State University of Architecture and Construction Пензенский государственный университет архитектуры и строительства'), (28040, 'https://ror.org/03kht9y85', 'en', 1, 'https://ror.org/03kht9y85 Krasnodar Municipal Medical Institute of Higher Nursing Education Краснодарский муниципальный медицинский институт высшего сестринского образования'), (28041, 'https://ror.org/03kjjdy81', 'no_lang_code', 1, 'https://ror.org/03kjjdy81 ŽĎAS (Czechia)'), (28042, 'https://ror.org/03kmzs707', 'no_lang_code', 1, 'https://ror.org/03kmzs707 Strix Chomutov (Czechia)'), (28043, 'https://ror.org/03ksn2k92', 'en', 1, 'https://ror.org/03ksn2k92 University of Dental Medicine'), (28044, 'https://ror.org/03kw5ag50', 'en', 1, 'https://ror.org/03kw5ag50 Halla University 한라대학교'), (28045, 'https://ror.org/03kytj789', 'en', 1, 'https://ror.org/03kytj789 Chung Chou University of Science and Technology 中州科技大學'), (28046, 'https://ror.org/03kzg4d82', 'en', 1, 'https://ror.org/03kzg4d82 Chelyabinsk Law institute of Ministry of Internal Affairs of Russia Челябинский Юридический институт МВД России'), (28047, 'https://ror.org/03kzpe032', 'en', 1, 'https://ror.org/03kzpe032 IEC University'), (28048, 'https://ror.org/03m2qyw61', 'en', 1, 'https://ror.org/03m2qyw61 School of Business and Management Novo Mesto Visoka sola za upravljanje in poslovanje Novo mesto'), (28049, 'https://ror.org/03m5h1s11', 'en', 1, 'https://ror.org/03m5h1s11 Turkmen State Institute of Economics and Management Туркменский государственный институт экономики и управления'), (28050, 'https://ror.org/03m60k875', 'en', 1, 'https://ror.org/03m60k875 Kyushu Women''s University 九州女子大学'), (28051, 'https://ror.org/03m7a5q02', 'en', 1, 'https://ror.org/03m7a5q02 University of the Thai Chamber of Commerce มหาวิทยาลัยหอการค้าไทย'), (28052, 'https://ror.org/03m96yn13', 'en', 1, 'https://ror.org/03m96yn13 Marine Mammal Care Center'), (28053, 'https://ror.org/03mc8zn46', 'en', 1, 'https://ror.org/03mc8zn46 Yeonsung University 연성대학교'), (28054, 'https://ror.org/03meq3t09', 'en', 1, 'https://ror.org/03meq3t09 Kobe Yamate University 神戸山手大学'), (28055, 'https://ror.org/03mf58h04', 'en', 1, 'https://ror.org/03mf58h04 Roosevelt Institute'), (28056, 'https://ror.org/03mh64g46', 'en', 1, 'https://ror.org/03mh64g46 Phuket Rajabhat University มหาวิทยาลัยราชภัฏภูเก็ต'), (28057, 'https://ror.org/03mhzg809', 'en', 1, 'https://ror.org/03mhzg809 ISMA University Informācijas Sistēmu Menedžmenta Augstskola Высшая школа менеджмента и информационных систем'), (28058, 'https://ror.org/03mj71j26', 'en', 1, 'https://ror.org/03mj71j26 Industrial University of Ho Chi Minh City Trường Đại học Công nghiệp Thành phố Hồ Chí Minh'), (28059, 'https://ror.org/03mkcyk72', 'en', 1, 'https://ror.org/03mkcyk72 Heisei International University 平成国際大学'), (28060, 'https://ror.org/03mkgng06', 'en', 1, 'https://ror.org/03mkgng06 NorthEast Independent Living Services'), (28061, 'https://ror.org/03mmdq014', 'id', 1, 'https://ror.org/03mmdq014 Batanghari University Universitas Batanghari'), (28062, 'https://ror.org/03mnd3q76', 'en', 1, 'https://ror.org/03mnd3q76 Thomas Aquinas College'), (28063, 'https://ror.org/03mpxe722', 'en', 1, 'https://ror.org/03mpxe722 Academy of Social Education'), (28064, 'https://ror.org/03mq68c95', 'no_lang_code', 1, 'https://ror.org/03mq68c95 Tokoha Gakuen University 常葉学園大学'), (28065, 'https://ror.org/03mry3754', 'id', 1, 'https://ror.org/03mry3754 Universitas Kristen Immanuel'), (28066, 'https://ror.org/03ms79854', 'en', 1, 'https://ror.org/03ms79854 George Washington University Virginia Campus'), (28067, 'https://ror.org/03ms7mr17', 'en', 1, 'https://ror.org/03ms7mr17 Far East University 遠東科技大學'), (28068, 'https://ror.org/03ms8m606', 'en', 1, 'https://ror.org/03ms8m606 Uttarakhand Technical University उत्तराखंड तकनीकी विश्वविद्यालय'), (28069, 'https://ror.org/03mw9fr44', 'en', 1, 'https://ror.org/03mw9fr44 Atyrau University of Oil and Gas Атырау мұнай және газ Университеті'), (28070, 'https://ror.org/03mzvzx07', 'en', 1, 'https://ror.org/03mzvzx07 Dhonburi Rajabhat University มหาวิทยาลัยราชภัฏธนบุรี'), (28071, 'https://ror.org/03n38sb51', 'no_lang_code', 1, 'https://ror.org/03n38sb51 Hornické muzeum Příbram Mining Museum Pribram'), (28072, 'https://ror.org/03n3y7285', 'en', 1, 'https://ror.org/03n3y7285 American University in Bosnia and Herzegovina Američki univerzitet u Bosni i Hercegovini'), (28073, 'https://ror.org/03n5w2v49', 'id', 1, 'https://ror.org/03n5w2v49 Universitas Nusa Bangsa'), (28074, 'https://ror.org/03n7hja66', 'en', 1, 'https://ror.org/03n7hja66 Louisiana Department of Natural Resources'), (28075, 'https://ror.org/03nb5h994', 'no_lang_code', 1, 'https://ror.org/03nb5h994 EBIS (Czechia)'), (28076, 'https://ror.org/03ncber98', 'en', 1, 'https://ror.org/03ncber98 Garrett–Evangelical Theological Seminary'), (28077, 'https://ror.org/03ncgps69', 'no_lang_code', 1, 'https://ror.org/03ncgps69 Maebashi Kyoai Gakuen College 共愛学園前橋国際大学'), (28078, 'https://ror.org/03ne5hn26', 'en', 1, 'https://ror.org/03ne5hn26 Samtskhe-Javakheti State University სამცხე-ჯავახეთის სახელმწიფო უნივერსიტეტი'), (28079, 'https://ror.org/03nff2e18', 'en', 1, 'https://ror.org/03nff2e18 Kulyab State University named after Abuabdullo Rudaki Донишгоҳи давлатии Кӯлоб ба номи Абӯабдуллоҳи Рӯдакӣ Кулябский государственный университет'), (28080, 'https://ror.org/03nfkpr39', 'en', 1, 'https://ror.org/03nfkpr39 Cheongju National University of Education 청주교육대학교'), (28081, 'https://ror.org/03nhjhr13', 'id', 1, 'https://ror.org/03nhjhr13 Universitas Ekasakti'), (28082, 'https://ror.org/03nskz175', 'en', 1, 'https://ror.org/03nskz175 Niigata University of International and Information Studies 新潟国際情報大学'), (28083, 'https://ror.org/03ntmq932', 'en', 1, 'https://ror.org/03ntmq932 American Rivers'), (28084, 'https://ror.org/03nw0tx25', 'en', 1, 'https://ror.org/03nw0tx25 Shaheed Mohtarma Benazir Bhutto Medical University شهيد محترمه بينظير ڀٽو ميڊيڪل يونيورسٽي شہید محترمہ بے نظیر بھٹو میڈیکل یونیورسٹی'), (28085, 'https://ror.org/03nw44p55', 'cs', 1, 'https://ror.org/03nw44p55 Šumava National Park'), (28086, 'https://ror.org/03nw47j70', 'no_lang_code', 1, 'https://ror.org/03nw47j70 Kanto Gakuen University 関東学園大学'), (28087, 'https://ror.org/03nx1r778', 'en', 1, 'https://ror.org/03nx1r778 Zirve University Zirve Üniversitesi'), (28088, 'https://ror.org/03p1p7q28', 'en', 1, 'https://ror.org/03p1p7q28 Dance Perspectives Foundation'), (28089, 'https://ror.org/03p4md298', 'en', 1, 'https://ror.org/03p4md298 Shibuya University Network シブヤ大学'), (28090, 'https://ror.org/03p5fh293', 'en', 1, 'https://ror.org/03p5fh293 Bethany Global University'), (28091, 'https://ror.org/03p5y6k26', 'cs', 1, 'https://ror.org/03p5y6k26 Česká Společnost Antropologická'), (28092, 'https://ror.org/03p7fww37', 'en', 1, 'https://ror.org/03p7fww37 New York State Department of Environmental Conservation'), (28093, 'https://ror.org/03p7vg590', 'en', 1, 'https://ror.org/03p7vg590 Al-Zahra College for Women كلية الزهراء للبنات'), (28094, 'https://ror.org/03p8px109', 'en', 1, 'https://ror.org/03p8px109 Worthington City School District'), (28095, 'https://ror.org/03p94a441', 'no_lang_code', 1, 'https://ror.org/03p94a441 Rieter (Czechia)'), (28096, 'https://ror.org/03pa4ph68', 'en', 1, 'https://ror.org/03pa4ph68 City of Greeley Museums'), (28097, 'https://ror.org/03paz2a60', 'en', 1, 'https://ror.org/03paz2a60 Moscow Polytechnic University Московский государственный машиностроительный университет'), (28098, 'https://ror.org/03pcb1m79', 'en', 1, 'https://ror.org/03pcb1m79 Shu-Te University 樹德科技大學'), (28099, 'https://ror.org/03pdpfa44', 'en', 1, 'https://ror.org/03pdpfa44 Wadsworth Atheneum Museum of Art'), (28100, 'https://ror.org/03pgsk336', 'en', 1, 'https://ror.org/03pgsk336 Marine Resources Council'), (28101, 'https://ror.org/03phees55', 'en', 1, 'https://ror.org/03phees55 Vikrama Simhapuri University విక్రమ సింహపురి విశ్వవిద్యాలయం'), (28102, 'https://ror.org/03pjs2912', 'en', 1, 'https://ror.org/03pjs2912 Warsaw University of Technology Business School'), (28103, 'https://ror.org/03pkef045', 'no_lang_code', 1, 'https://ror.org/03pkef045 Skyleader (Czechia)'), (28104, 'https://ror.org/03pkka491', 'id', 1, 'https://ror.org/03pkka491 Universitas Islam Syekh Yusuf'), (28105, 'https://ror.org/03pmgn266', 'en', 1, 'https://ror.org/03pmgn266 Faculty of Applied Social Studies in Nova Gorica Fakulteta za uporabne družbene študije v Novi Gorici'), (28106, 'https://ror.org/03ppx1p25', 'en', 1, 'https://ror.org/03ppx1p25 University of Nagasaki 長崎県立大学'), (28107, 'https://ror.org/03pqde616', 'en', 1, 'https://ror.org/03pqde616 Okayama Shoka University 岡山商科大学'), (28108, 'https://ror.org/03prw2k14', 'en', 1, 'https://ror.org/03prw2k14 Baba Mastnath University बाबा मस्तनाथ विश्वविद्यालय'), (28109, 'https://ror.org/03psjxz30', 'en', 1, 'https://ror.org/03psjxz30 Hanoi University of Pharmacy Trường Đại học Dược Hà Nội'), (28110, 'https://ror.org/03pv9jn63', 'en', 1, 'https://ror.org/03pv9jn63 Grodno State Agrarian University Гродзенскі дзяржаўны аграрны ўніверсітэт'), (28111, 'https://ror.org/03pwq8a06', 'en', 1, 'https://ror.org/03pwq8a06 Yangon University of Foreign Languages'), (28112, 'https://ror.org/03pyzpf78', 'en', 1, 'https://ror.org/03pyzpf78 Ural State Pedagogical University Уральский государственный педагогический университет'), (28113, 'https://ror.org/03pzk6650', 'en', 1, 'https://ror.org/03pzk6650 César Ritz Colleges'), (28114, 'https://ror.org/03q05qn16', 'en', 1, 'https://ror.org/03q05qn16 Richard I. Bong Veterans Historical Center'), (28115, 'https://ror.org/03q14nt21', 'en', 1, 'https://ror.org/03q14nt21 Harriet Beecher Stowe Center'), (28116, 'https://ror.org/03q4jaz23', 'en', 1, 'https://ror.org/03q4jaz23 Higher School of National Economy in Kutno Wyższa Szkoła Gospodarki Krajowej w Kutnie'), (28117, 'https://ror.org/03q5fwy02', 'en', 1, 'https://ror.org/03q5fwy02 Notre Dame of Marbel University Pamantasang Notre Dame ng Marbel'), (28118, 'https://ror.org/03q5knn53', 'en', 1, 'https://ror.org/03q5knn53 Pacifica Foundation'), (28119, 'https://ror.org/03q6c2121', 'no_lang_code', 1, 'https://ror.org/03q6c2121 CZ Loko (Czechia)'), (28120, 'https://ror.org/03q6f0894', 'en', 1, 'https://ror.org/03q6f0894 Trường Đại học Tân Tạo Tân Tạo University'), (28121, 'https://ror.org/03q6jrh90', 'pt', 1, 'https://ror.org/03q6jrh90 Centro Universitário das Faculdades Metropolitanas Unidas'), (28122, 'https://ror.org/03q6r4119', 'en', 1, 'https://ror.org/03q6r4119 Transportation Corridor Agencies'), (28123, 'https://ror.org/03q750z50', 'en', 1, 'https://ror.org/03q750z50 Lebanese Canadian University Université Libano-Canadienne'), (28124, 'https://ror.org/03q9g2k63', 'id', 1, 'https://ror.org/03q9g2k63 Universitas Muhammadiyah Gorontalo'), (28125, 'https://ror.org/03qba2h82', 'en', 1, 'https://ror.org/03qba2h82 Ouachita Parish Public Library'), (28126, 'https://ror.org/03qcbea07', 'no_lang_code', 1, 'https://ror.org/03qcbea07 BTL Zdravotnická Technika (Czechia)'), (28127, 'https://ror.org/03qcg1j33', 'no_lang_code', 1, 'https://ror.org/03qcg1j33 Taisei Gakuin University 太成学院大学'), (28128, 'https://ror.org/03qd80k21', 'en', 1, 'https://ror.org/03qd80k21 Jaamacadda Koonfurta Soomaaliya University of Southern Somalia'); INSERT INTO `rors` VALUES (28129, 'https://ror.org/03qef3650', 'en', 1, 'https://ror.org/03qef3650 Michele & Donald D’Amour Museum of Fine Arts'), (28130, 'https://ror.org/03qfmrs34', 'en', 1, 'https://ror.org/03qfmrs34 Central Institute of Fisheries Education'), (28131, 'https://ror.org/03qfy7r49', 'en', 1, 'https://ror.org/03qfy7r49 Carol I National Defence University Universitatea Națională de Apărare „Carol I”'), (28132, 'https://ror.org/03qmqe950', 'en', 1, 'https://ror.org/03qmqe950 Utah Library Association'), (28133, 'https://ror.org/03qnpty21', 'en', 1, 'https://ror.org/03qnpty21 Jai Narain Vyas University जयनारायण व्यास विश्वविद्यालय'), (28134, 'https://ror.org/03qpq3659', 'en', 1, 'https://ror.org/03qpq3659 Peninsula Library System'), (28135, 'https://ror.org/03qrxs205', 'no_lang_code', 1, 'https://ror.org/03qrxs205 Blumenbecker (Czechia)'), (28136, 'https://ror.org/03qtr7n72', 'fr', 1, 'https://ror.org/03qtr7n72 Agence Nationale des Fréquences'), (28137, 'https://ror.org/03qvnw793', 'pl', 1, 'https://ror.org/03qvnw793 Wyższa Szkoła Ekonomii i Administracji w Bytomiu'), (28138, 'https://ror.org/03qw80h61', 'en', 1, 'https://ror.org/03qw80h61 Eastern Kentucky Pride'), (28139, 'https://ror.org/03r1fjj85', 'en', 1, 'https://ror.org/03r1fjj85 Shaker Museum Mount Lebanon'), (28140, 'https://ror.org/03r1pm171', 'en', 1, 'https://ror.org/03r1pm171 Kanchanaburi Rajabhat University มหาวิทยาลัยราชภัฏกาญจนบุรี'), (28141, 'https://ror.org/03r5vbq81', 'en', 1, 'https://ror.org/03r5vbq81 Cape Cod Museum of Natural History'), (28142, 'https://ror.org/03r6cc113', 'en', 1, 'https://ror.org/03r6cc113 Kundong University 건동대학교'), (28143, 'https://ror.org/03r7c7356', 'en', 1, 'https://ror.org/03r7c7356 William Carey University'), (28144, 'https://ror.org/03r9b8045', 'en', 1, 'https://ror.org/03r9b8045 Academy of the State Fire Service EMERCOM of Russia Академия государственной противопожарной службы МЧС России'), (28145, 'https://ror.org/03r9jhj30', 'en', 1, 'https://ror.org/03r9jhj30 Saratov State Conservatory named after L. V. Sobinov Саратовская государственная консерватория имени Л. В. Собинова'), (28146, 'https://ror.org/03r9v0161', 'no_lang_code', 1, 'https://ror.org/03r9v0161 Elektro Ljubljana (Slovenia)'), (28147, 'https://ror.org/03rb61q14', 'en', 1, 'https://ror.org/03rb61q14 Baltimore Museum of Art'), (28148, 'https://ror.org/03rc8sv47', 'en', 1, 'https://ror.org/03rc8sv47 Lutheran Archives Center at Philadelphia'), (28149, 'https://ror.org/03rcc6237', 'en', 1, 'https://ror.org/03rcc6237 Athenaeum of Philadelphia'), (28150, 'https://ror.org/03rfp4q66', 'en', 1, 'https://ror.org/03rfp4q66 Santapol College นิติศาสตร์ วิทยาลัยสันตพล'), (28151, 'https://ror.org/03rhsqw80', 'en', 1, 'https://ror.org/03rhsqw80 Alexandria Museum of Art'), (28152, 'https://ror.org/03rk9qf06', 'en', 1, 'https://ror.org/03rk9qf06 University of Kabianga'), (28153, 'https://ror.org/03rm49h74', 'en', 1, 'https://ror.org/03rm49h74 Jodhpur National University जोधपुर राष्ट्रीय विश्वविद्यालय'), (28154, 'https://ror.org/03rmb5927', 'en', 1, 'https://ror.org/03rmb5927 Poetry Foundation'), (28155, 'https://ror.org/03rmfrm44', 'en', 1, 'https://ror.org/03rmfrm44 Institute of Information Security 情報セキュリティ大学院大学'), (28156, 'https://ror.org/03rn4td60', 'en', 1, 'https://ror.org/03rn4td60 San Diego Public Library'), (28157, 'https://ror.org/03rrkrc24', 'en', 1, 'https://ror.org/03rrkrc24 Shandong Institute of Business and Technology 山东工商学院'), (28158, 'https://ror.org/03rs7bk48', 'en', 1, 'https://ror.org/03rs7bk48 Yeshiva University Museum'), (28159, 'https://ror.org/03rsg0091', 'en', 1, 'https://ror.org/03rsg0091 Greater Southwest Historical Museum'), (28160, 'https://ror.org/03rte5t08', 'cs', 1, 'https://ror.org/03rte5t08 Československá Biologická Společnost'), (28161, 'https://ror.org/03rwzd843', 'id', 1, 'https://ror.org/03rwzd843 Universitas Kristen Indonesia Maluku'), (28162, 'https://ror.org/03ryjp350', 'en', 1, 'https://ror.org/03ryjp350 Pamantasan sa Bisayas University of the Visayas'), (28163, 'https://ror.org/03ryzhm22', 'en', 1, 'https://ror.org/03ryzhm22 Czech Association of Geophysicists'), (28164, 'https://ror.org/03rzxvn19', 'no_lang_code', 1, 'https://ror.org/03rzxvn19 Crystalite Bohemia (Czechia)'), (28165, 'https://ror.org/03s0h5h67', 'en', 1, 'https://ror.org/03s0h5h67 Panhandle Plains Historical Museum'), (28166, 'https://ror.org/03s0nek04', 'no_lang_code', 1, 'https://ror.org/03s0nek04 Lumnamping College วิทยาลัยลุ่มน้ำปิง'), (28167, 'https://ror.org/03s2mhd04', 'en', 1, 'https://ror.org/03s2mhd04 Hanoi Law University Trường Đại học Luật Hà Nội'), (28168, 'https://ror.org/03s2yse38', 'en', 1, 'https://ror.org/03s2yse38 Turkmen National Institute of Foreign Languages named after D. Azadi'), (28169, 'https://ror.org/03s336c88', 'en', 1, 'https://ror.org/03s336c88 Princess of Naradhiwas University มหาวิทยาลัยนราธิวาสราชนครินทร์'), (28170, 'https://ror.org/03s3x9r14', 'en', 1, 'https://ror.org/03s3x9r14 Shri Lal Bahadur Shastri Rashtriya Sanskrit Vidyapeetha श्री लाल बहादुरशास्त्री राष्ट्रियसंस्कृत विद्यापीठ'), (28171, 'https://ror.org/03s49rs22', 'en', 1, 'https://ror.org/03s49rs22 University of Public Health Yangon ပြည်သူ့ကျန်းမာရေးတက္ကသိုလ်(ရန်ကုန်)'), (28172, 'https://ror.org/03s513359', 'en', 1, 'https://ror.org/03s513359 American Institute for Maghrib Studies'), (28173, 'https://ror.org/03s5jv345', 'en', 1, 'https://ror.org/03s5jv345 Humanitas University in Sosnowiec Wyższa Szkoła Humanitas w Sosnowcu'), (28174, 'https://ror.org/03s5p4g14', 'en', 1, 'https://ror.org/03s5p4g14 Agrarian State University of Northern Zauralye Государственный аграрный университет Северного Зауралья'), (28175, 'https://ror.org/03s7g5q07', 'no_lang_code', 1, 'https://ror.org/03s7g5q07 Modelárna Liaz (Czechia)'), (28176, 'https://ror.org/03sb1j698', 'no_lang_code', 1, 'https://ror.org/03sb1j698 Indira Kala Sangeet University इंदिरा कला संगीत विश्वविद्यालय'), (28177, 'https://ror.org/03scay082', 'en', 1, 'https://ror.org/03scay082 University of Arts in Belgrade Univerzitet umetnosti u Beogradu Универзитет уметности у Београду'), (28178, 'https://ror.org/03sdmkg09', 'no_lang_code', 1, 'https://ror.org/03sdmkg09 ATOMA Tepelná Technika (Czechia)'), (28179, 'https://ror.org/03se13x79', 'en', 1, 'https://ror.org/03se13x79 Claremont Lincoln University'), (28180, 'https://ror.org/03sew6f18', 'en', 1, 'https://ror.org/03sew6f18 Institute of International Relations Институт международных связей'), (28181, 'https://ror.org/03sey0f76', 'en', 1, 'https://ror.org/03sey0f76 National Nordic Museum'), (28182, 'https://ror.org/03sf7t726', 'en', 1, 'https://ror.org/03sf7t726 Gongju National University of Education 공주교육대학교'), (28183, 'https://ror.org/03sfj2c48', 'no_lang_code', 1, 'https://ror.org/03sfj2c48 Pegas Nonwovens (Czechia)'), (28184, 'https://ror.org/03sfvke56', 'en', 1, 'https://ror.org/03sfvke56 Kodolányi János Főiskola Kodolányi János University of Applied Sciences'), (28185, 'https://ror.org/03sfxyd37', 'en', 1, 'https://ror.org/03sfxyd37 HopeHealth'), (28186, 'https://ror.org/03sgcr744', 'en', 1, 'https://ror.org/03sgcr744 Ube Frontier University 宇部フロンティア大学'), (28187, 'https://ror.org/03shzqb14', 'en', 1, 'https://ror.org/03shzqb14 Newports Institute of Communications and Economics نيو پورٽس انسٽيٽيوٽ آف ڪميونيڪيشنس اين ايڪانامڪس'), (28188, 'https://ror.org/03sj6v857', 'cs', 1, 'https://ror.org/03sj6v857 Diagnostický Ústav pro Mládež'), (28189, 'https://ror.org/03sk68310', 'en', 1, 'https://ror.org/03sk68310 Larz Anderson Auto Museum'), (28190, 'https://ror.org/03sna8255', 'en', 1, 'https://ror.org/03sna8255 Izhevsk State Medical Academy Ижевская государственная медицинская академия'), (28191, 'https://ror.org/03spdpm68', 'en', 1, 'https://ror.org/03spdpm68 State Marine Technical University of St. Petersburg Санкт-Петербургский государственный морской технический университет'), (28192, 'https://ror.org/03sq7qp22', 'en', 1, 'https://ror.org/03sq7qp22 Kutaisi Institute of Medicine'), (28193, 'https://ror.org/03sqexp58', 'en', 1, 'https://ror.org/03sqexp58 Kawamura Gakuen Women''s University 川村学園女子大学'), (28194, 'https://ror.org/03srgbm67', 'en', 1, 'https://ror.org/03srgbm67 University of Guelph-Humber'), (28195, 'https://ror.org/03ss0k162', 'en', 1, 'https://ror.org/03ss0k162 Aldrich Public Library'), (28196, 'https://ror.org/03ssg8h30', 'no_lang_code', 1, 'https://ror.org/03ssg8h30 Optaglio (Czechia)'), (28197, 'https://ror.org/03sx66s94', 'en', 1, 'https://ror.org/03sx66s94 Kõrgem Kunstikool Pallas Tartu Art College'), (28198, 'https://ror.org/03sy3av50', 'en', 1, 'https://ror.org/03sy3av50 Michigan Department of Environment, Great Lakes, and Energy'), (28199, 'https://ror.org/03sy3gw53', 'en', 1, 'https://ror.org/03sy3gw53 Coalition of Urban and Metropolitan Universities'), (28200, 'https://ror.org/03syp9w72', 'en', 1, 'https://ror.org/03syp9w72 North Carolina Department of Natural and Cultural Resources'), (28201, 'https://ror.org/03t0fy352', 'en', 1, 'https://ror.org/03t0fy352 Okinawa Christian University 沖縄キリスト教学院大学'), (28202, 'https://ror.org/03t0van71', 'en', 1, 'https://ror.org/03t0van71 Makah Cultural and Research Center'), (28203, 'https://ror.org/03t3xs666', 'en', 1, 'https://ror.org/03t3xs666 Institute for Historical Study'), (28204, 'https://ror.org/03t43c845', 'pl', 1, 'https://ror.org/03t43c845 Wyższa Szkoła Pedagogiczna Związku Nauczycielstwa Polskiego'), (28205, 'https://ror.org/03t7x0f36', 'en', 1, 'https://ror.org/03t7x0f36 Orel State Institute of Arts and Culture Орловский государственный институт культуры'), (28206, 'https://ror.org/03t7yan60', 'en', 1, 'https://ror.org/03t7yan60 Seattle Public Library'), (28207, 'https://ror.org/03ta5f363', 'en', 1, 'https://ror.org/03ta5f363 Sons of Union Veterans of the Civil War'), (28208, 'https://ror.org/03tawch75', 'en', 1, 'https://ror.org/03tawch75 Catholic University of Pusan 부산가톨릭대학교'), (28209, 'https://ror.org/03tb4ym49', 'no_lang_code', 1, 'https://ror.org/03tb4ym49 Vjatka Social Economics Institute Вятский социально-экономический институт'), (28210, 'https://ror.org/03tc2j669', 'id', 1, 'https://ror.org/03tc2j669 Institut Teknologi Medan'), (28211, 'https://ror.org/03te2zs36', 'en', 1, 'https://ror.org/03te2zs36 Beijing Language and Culture University 北京语言大学'), (28212, 'https://ror.org/03tekv166', 'no_lang_code', 1, 'https://ror.org/03tekv166 HOST vydavatelství (Czechia)'), (28213, 'https://ror.org/03texeh34', 'en', 1, 'https://ror.org/03texeh34 State of Rhode Island Office of Library and Information Services'), (28214, 'https://ror.org/03tgn8d86', 'en', 1, 'https://ror.org/03tgn8d86 Dennis Gabor College GABOR DENES FOISKOLA'), (28215, 'https://ror.org/03tmd6r11', 'no_lang_code', 1, 'https://ror.org/03tmd6r11 ECO Trend (Czechia)'), (28216, 'https://ror.org/03tmvjq86', 'en', 1, 'https://ror.org/03tmvjq86 Manhattan High School'), (28217, 'https://ror.org/03tnbmz91', 'en', 1, 'https://ror.org/03tnbmz91 Greater New Orleans Educational Television Foundation'), (28218, 'https://ror.org/03tqe1x88', 'en', 1, 'https://ror.org/03tqe1x88 Andijan Institute of Agricultural Andijon qishloq xo''jalik instituti'), (28219, 'https://ror.org/03tsjvt68', 'en', 1, 'https://ror.org/03tsjvt68 Mediterranean University Univerzitet Mediteran'), (28220, 'https://ror.org/03tsq7092', 'en', 1, 'https://ror.org/03tsq7092 Shedd Aquarium'), (28221, 'https://ror.org/03ttsq905', 'en', 1, 'https://ror.org/03ttsq905 Baltic State Academy of the Fishing Fleet Балтийская государственная академия рыбопромыслового флота'), (28222, 'https://ror.org/03tvrky57', 'en', 1, 'https://ror.org/03tvrky57 Chesapeake Bay Foundation'), (28223, 'https://ror.org/03txa8766', 'en', 1, 'https://ror.org/03txa8766 Supreme Court Historical Society'), (28224, 'https://ror.org/03txeq812', 'no_lang_code', 1, 'https://ror.org/03txeq812 Maurer (Germany)'), (28225, 'https://ror.org/03v2fas56', 'en', 1, 'https://ror.org/03v2fas56 Paul Quinn College'), (28226, 'https://ror.org/03v3y9g34', 'en', 1, 'https://ror.org/03v3y9g34 International Solomon University Міжнародний Соломонів університет'), (28227, 'https://ror.org/03v43ry70', 'no_lang_code', 1, 'https://ror.org/03v43ry70 Hybrizyme (United States)'), (28228, 'https://ror.org/03v63wq09', 'en', 1, 'https://ror.org/03v63wq09 Novosibirsk Institute of Economy, Psychology and Law Новосибирский Институт Экономики Психологии и Права'), (28229, 'https://ror.org/03v7b1458', 'en', 1, 'https://ror.org/03v7b1458 Chunnam Techno University 전남과학대학교'), (28230, 'https://ror.org/03v7fdr41', 'en', 1, 'https://ror.org/03v7fdr41 Tenri Health Care University 天理医療大学'), (28231, 'https://ror.org/03ve0eh58', 'id', 1, 'https://ror.org/03ve0eh58 Universitas Muhammadiyah Sumatera Utara'), (28232, 'https://ror.org/03ve83257', 'no_lang_code', 1, 'https://ror.org/03ve83257 Centre for Organic Chemistry (Czechia) Centrum Organické Chemie'), (28233, 'https://ror.org/03vejgn42', 'no_lang_code', 1, 'https://ror.org/03vejgn42 Uekusa Gakuen University 植草学園大学'), (28234, 'https://ror.org/03vfdas15', 'en', 1, 'https://ror.org/03vfdas15 Maine Library Association'), (28235, 'https://ror.org/03vfnky71', 'en', 1, 'https://ror.org/03vfnky71 Arab Open University الجامعة العربية المفتوحة'), (28236, 'https://ror.org/03vganq87', 'en', 1, 'https://ror.org/03vganq87 National Academy of Internal Affairs'), (28237, 'https://ror.org/03vh2mm87', 'en', 1, 'https://ror.org/03vh2mm87 Pinchot University'), (28238, 'https://ror.org/03vhwes25', 'en', 1, 'https://ror.org/03vhwes25 Gwangju Catholic University 광주가톨릭대학교'), (28239, 'https://ror.org/03vp0e929', 'en', 1, 'https://ror.org/03vp0e929 Monroe County History Center'), (28240, 'https://ror.org/03vvasf30', 'en', 1, 'https://ror.org/03vvasf30 Lyndon Baines Johnson Foundation'), (28241, 'https://ror.org/03vw0pp31', 'en', 1, 'https://ror.org/03vw0pp31 Forbes Library'), (28242, 'https://ror.org/03vwtwp93', 'en', 1, 'https://ror.org/03vwtwp93 Pocumtuck Valley Memorial Association'), (28243, 'https://ror.org/03vyspr60', 'en', 1, 'https://ror.org/03vyspr60 Johannelund Theological Seminary Johannelunds teologiska högskola'), (28244, 'https://ror.org/03vzjn737', 'en', 1, 'https://ror.org/03vzjn737 Presidency University প্রেসিডেন্সী বিশ্ববিদ্যালয়'), (28245, 'https://ror.org/03w0tq079', 'en', 1, 'https://ror.org/03w0tq079 Colonial Williamsburg Foundation'), (28246, 'https://ror.org/03w3a0h43', 'en', 1, 'https://ror.org/03w3a0h43 Evangelische Hochschule Freiburg Protestant University of Applied Sciences Freiburg'), (28247, 'https://ror.org/03w6h1q24', 'no_lang_code', 1, 'https://ror.org/03w6h1q24 UVB Technik (Czechia)'), (28248, 'https://ror.org/03w6mtb84', 'en', 1, 'https://ror.org/03w6mtb84 Niigata Institute of Technology 新潟工科大学'), (28249, 'https://ror.org/03w78wk23', 'en', 1, 'https://ror.org/03w78wk23 Duluth Public Library'), (28250, 'https://ror.org/03w99kr42', 'en', 1, 'https://ror.org/03w99kr42 New Orleans Jazz & Heritage Festival and Foundation'), (28251, 'https://ror.org/03w9qt084', 'en', 1, 'https://ror.org/03w9qt084 Ukrainian-American Concordia University Вісконсинський міжнародний Університет (США) в Україні'), (28252, 'https://ror.org/03w9szr81', 'en', 1, 'https://ror.org/03w9szr81 Bucheon University 부천대학교'), (28253, 'https://ror.org/03wbwwy70', 'en', 1, 'https://ror.org/03wbwwy70 Pontifical University of Saint Thomas Aquinas Pontificia Università San Tommaso d''Aquino Päpstliche Universität Heiliger Thomas von Aquin Universitat Pontifícia de Sant Tomás d''Aquino Université pontificale saint-thomas-d''aquin'), (28254, 'https://ror.org/03wcw7m36', 'en', 1, 'https://ror.org/03wcw7m36 Business Breakthrough University ビジネス・ブレークスルー大学'), (28255, 'https://ror.org/03wevch29', 'en', 1, 'https://ror.org/03wevch29 Grinnell Newburg Community School District'), (28256, 'https://ror.org/03whgpr22', 'en', 1, 'https://ror.org/03whgpr22 Scarsdale Historical Society'), (28257, 'https://ror.org/03wj83q95', 'en', 1, 'https://ror.org/03wj83q95 Tashkent Automobile and Road Construction Institute Toshkent avtomobil yo''llarini loyihalash, qurish va ekspluatatsiyasi instituti'), (28258, 'https://ror.org/03wm74n81', 'en', 1, 'https://ror.org/03wm74n81 Jaamacadda Nugaal Nugaal University'), (28259, 'https://ror.org/03wmttm35', 'no_lang_code', 1, 'https://ror.org/03wmttm35 2N Telecommunications (Czechia) 2N Telekomunikace'), (28260, 'https://ror.org/03wpvxm81', 'en', 1, 'https://ror.org/03wpvxm81 Windward Community College'), (28261, 'https://ror.org/03ws6sq43', 'en', 1, 'https://ror.org/03ws6sq43 University of Kalemie Université de kalemie'), (28262, 'https://ror.org/03ws81249', 'en', 1, 'https://ror.org/03ws81249 Karary University جامعة كرري'), (28263, 'https://ror.org/03wt62c10', 'en', 1, 'https://ror.org/03wt62c10 Vinayaka Missions University விநாயகா மிஷன்ஸ் பல்கலைக்கழகம்'), (28264, 'https://ror.org/03wtrat67', 'en', 1, 'https://ror.org/03wtrat67 Centre for Integrated Health Programs'), (28265, 'https://ror.org/03wxwxe24', 'en', 1, 'https://ror.org/03wxwxe24 Budapest University of Jewish Studies Országos Rabbiképző – Zsidó Egyetem'), (28266, 'https://ror.org/03wya1h47', 'id', 1, 'https://ror.org/03wya1h47 Universitas Pandanaran'), (28267, 'https://ror.org/03wz5pw26', 'en', 1, 'https://ror.org/03wz5pw26 Dubrovnik International University Libertas međunarodno sveučilište - Dubrovnik'), (28268, 'https://ror.org/03wzf8z32', 'en', 1, 'https://ror.org/03wzf8z32 Center for Alaskan Coastal Studies'), (28269, 'https://ror.org/03x19vt79', 'cs', 1, 'https://ror.org/03x19vt79 Institut Pro Studium Literatury'), (28270, 'https://ror.org/03x1wer98', 'en', 1, 'https://ror.org/03x1wer98 Kaetsu University 嘉悦大学'), (28271, 'https://ror.org/03x2fyc79', 'no_lang_code', 1, 'https://ror.org/03x2fyc79 Novosibirsk State Pedagogical University Новосибирский государственный педагогический университет'), (28272, 'https://ror.org/03x2r5572', 'en', 1, 'https://ror.org/03x2r5572 Virginia University of Lynchburg'), (28273, 'https://ror.org/03x3axr33', 'en', 1, 'https://ror.org/03x3axr33 Universitatea "Vasile Alecsandri" din Bacău University of Bacău'), (28274, 'https://ror.org/03x858v16', 'en', 1, 'https://ror.org/03x858v16 Oceanside Public Library'), (28275, 'https://ror.org/03x874836', 'en', 1, 'https://ror.org/03x874836 Tsuru University 都留文科大学'), (28276, 'https://ror.org/03x8feb02', 'en', 1, 'https://ror.org/03x8feb02 Saigon International University Trường Đại học Quốc tế Sài Gòn'), (28277, 'https://ror.org/03x8jsf97', 'no_lang_code', 1, 'https://ror.org/03x8jsf97 Elitex slévárna (Czechia)'), (28278, 'https://ror.org/03x8kxy88', 'en', 1, 'https://ror.org/03x8kxy88 Sochi State University Сочинский государственный университет'), (28279, 'https://ror.org/03x9g7m54', 'en', 1, 'https://ror.org/03x9g7m54 Lebanese German University الجامعة اللبنانية الألمانية'), (28280, 'https://ror.org/03xagjf37', 'en', 1, 'https://ror.org/03xagjf37 Kaye Academic College of Education המכללה האקדמית לחינוך ע"ש קיי كلية كي للتربية'), (28281, 'https://ror.org/03xay8k75', 'en', 1, 'https://ror.org/03xay8k75 Constanta Maritime University Universitatea Maritimă din Constanța'), (28282, 'https://ror.org/03xbchh53', 'en', 1, 'https://ror.org/03xbchh53 Islamic Azad University of Shiraz دانشگاه آزاد اسلامی واحد شیراز'), (28283, 'https://ror.org/03xbq6057', 'en', 1, 'https://ror.org/03xbq6057 Kobe Institute Of Computing 神戸情報大学院大学'), (28284, 'https://ror.org/03xcvt065', 'en', 1, 'https://ror.org/03xcvt065 Los Medanos College'), (28285, 'https://ror.org/03xf99d80', 'en', 1, 'https://ror.org/03xf99d80 Hanlyo University 한려대학교'), (28286, 'https://ror.org/03xfjma97', 'en', 1, 'https://ror.org/03xfjma97 Lyceum-Northwestern University'), (28287, 'https://ror.org/03xmtk846', 'en', 1, 'https://ror.org/03xmtk846 Vincent Pol University Wyższa Szkoła Społeczno-Przyrodnicza im. Wincentego Pola w Lublinie'), (28288, 'https://ror.org/03xnq6b79', 'en', 1, 'https://ror.org/03xnq6b79 New York State Historical Association'), (28289, 'https://ror.org/03xpxn276', 'en', 1, 'https://ror.org/03xpxn276 David Agmashenebeli University of Georgia საქართველოს დავით აღმაშენებლის სახელობის უნივერსიტეტი'), (28290, 'https://ror.org/03xqzzq44', 'id', 1, 'https://ror.org/03xqzzq44 Christian University of Indonesia Universitas Kristen Indonesia'), (28291, 'https://ror.org/03xtc7g80', 'en', 1, 'https://ror.org/03xtc7g80 Industrial Management Institute سازمان مديريت صنعتي'), (28292, 'https://ror.org/03xvjtz09', 'en', 1, 'https://ror.org/03xvjtz09 Hengshui University 衡水学院'), (28293, 'https://ror.org/03xyq7v33', 'en', 1, 'https://ror.org/03xyq7v33 Bunkyo Gakuin University 文京学院大学'), (28294, 'https://ror.org/03xywcv04', 'en', 1, 'https://ror.org/03xywcv04 Phoenix Art Museum'), (28295, 'https://ror.org/03xzjyz35', 'en', 1, 'https://ror.org/03xzjyz35 Odessa National Economics University Одесский национальный экономический университет Одеський національний економічний університет'), (28296, 'https://ror.org/03y0kgv22', 'en', 1, 'https://ror.org/03y0kgv22 Ural State Academy of Veterinary Medicine'), (28297, 'https://ror.org/03y0sm881', 'no_lang_code', 1, 'https://ror.org/03y0sm881 Haigazian University Université haigazian Հայկազյան համալսարան جامعة هايكازيان'), (28298, 'https://ror.org/03y0w9190', 'en', 1, 'https://ror.org/03y0w9190 Beijing Film Academy 北京电影学院'), (28299, 'https://ror.org/03y12yp46', 'en', 1, 'https://ror.org/03y12yp46 Nakhon Pathom Rajabhat University มหาวิทยาลัยราชภัฏนครปฐม'), (28300, 'https://ror.org/03y1f1208', 'no_lang_code', 1, 'https://ror.org/03y1f1208 Railway Research Institute (Czechia) Výzkumný Ústav Železniční'), (28301, 'https://ror.org/03y1hrs26', 'en', 1, 'https://ror.org/03y1hrs26 Kolhan University'), (28302, 'https://ror.org/03y2k8882', 'en', 1, 'https://ror.org/03y2k8882 Marathwada Agricultural University वसंतराव नाईक मराठवाडा कृषि विद्यापीठ'), (28303, 'https://ror.org/03y3an855', 'en', 1, 'https://ror.org/03y3an855 Academia Națională de Informații National Intelligence Academy'), (28304, 'https://ror.org/03y601s20', 'en', 1, 'https://ror.org/03y601s20 University of Bihać Univerzitet u Bihaću Универзитет у Бихаћу'), (28305, 'https://ror.org/03y8n3k44', 'en', 1, 'https://ror.org/03y8n3k44 Edogawa University 江戸川大学'), (28306, 'https://ror.org/03ya6rh87', 'en', 1, 'https://ror.org/03ya6rh87 American Repertory Theater'), (28307, 'https://ror.org/03yahhs20', 'en', 1, 'https://ror.org/03yahhs20 Bastar University बस्तर विश्वविद्यालय'), (28308, 'https://ror.org/03yca6a35', 'id', 1, 'https://ror.org/03yca6a35 Universitas Ratu Samban'), (28309, 'https://ror.org/03ydd9q52', 'en', 1, 'https://ror.org/03ydd9q52 Nara Prefectural University 奈良県立大学'), (28310, 'https://ror.org/03yezd949', 'en', 1, 'https://ror.org/03yezd949 Quinebaug Valley Community College'), (28311, 'https://ror.org/03yfe9v83', 'en', 1, 'https://ror.org/03yfe9v83 Air University جامعہ فضایہ'), (28312, 'https://ror.org/03yhc6593', 'en', 1, 'https://ror.org/03yhc6593 Ateneo de Zamboanga University Pamantasang Ateneo de Zamboanga'), (28313, 'https://ror.org/03yhyb689', 'no_lang_code', 1, 'https://ror.org/03yhyb689 Maakhir University جامعة ماخر'), (28314, 'https://ror.org/03yj9h174', 'en', 1, 'https://ror.org/03yj9h174 Gulf and Caribbean Fisheries Institute'), (28315, 'https://ror.org/03yjyed28', 'en', 1, 'https://ror.org/03yjyed28 Karlshochschule International University'), (28316, 'https://ror.org/03yme6x53', 'en', 1, 'https://ror.org/03yme6x53 International Business School'), (28317, 'https://ror.org/03ymnzh47', 'no_lang_code', 1, 'https://ror.org/03ymnzh47 TOS Varnsdorf (Czechia)'), (28318, 'https://ror.org/03ynprv96', 'en', 1, 'https://ror.org/03ynprv96 Shih Hsin University 世新大學'), (28319, 'https://ror.org/03yp2sd38', 'en', 1, 'https://ror.org/03yp2sd38 Massanutten Regional Library'), (28320, 'https://ror.org/03yqhqq55', 'no_lang_code', 1, 'https://ror.org/03yqhqq55 SurfaceTreat (Czechia)'), (28321, 'https://ror.org/03yr0v123', 'en', 1, 'https://ror.org/03yr0v123 Mackinac State Historic Parks'), (28322, 'https://ror.org/03ys01s76', 'en', 1, 'https://ror.org/03ys01s76 Public Media Connect'), (28323, 'https://ror.org/03ys49e51', 'en', 1, 'https://ror.org/03ys49e51 Volga State University of Technology Поволжский государственный технологический университет'), (28324, 'https://ror.org/03yta1g89', 'en', 1, 'https://ror.org/03yta1g89 Niigata College of Nursing 新潟県立看護大学'), (28325, 'https://ror.org/03yv6sb54', 'no_lang_code', 1, 'https://ror.org/03yv6sb54 OT Energy Services (Czechia)'), (28326, 'https://ror.org/03yvdgx21', 'en', 1, 'https://ror.org/03yvdgx21 Victoria School of Management'), (28327, 'https://ror.org/03yyde753', 'en', 1, 'https://ror.org/03yyde753 International Management Institute Saint Petersburg Петербургский международный институт менеджмента'), (28328, 'https://ror.org/03yz74e78', 'no_lang_code', 1, 'https://ror.org/03yz74e78 Shiseikan University 至誠館大学'), (28329, 'https://ror.org/03yzt0f97', 'pl', 1, 'https://ror.org/03yzt0f97 Olsztyńska Szkoła Wyższa im. Józefa Rusieckiego'), (28330, 'https://ror.org/03z4aa977', 'no_lang_code', 1, 'https://ror.org/03z4aa977 Atmos (Czechia)'), (28331, 'https://ror.org/03z698x91', 'en', 1, 'https://ror.org/03z698x91 National Pingtung University 國立屏東大學'), (28332, 'https://ror.org/03zcb0w86', 'en', 1, 'https://ror.org/03zcb0w86 Mercer Museum and Fonthill Castle'), (28333, 'https://ror.org/03zcb2d36', 'en', 1, 'https://ror.org/03zcb2d36 McPherson University'), (28334, 'https://ror.org/03zcd8242', 'en', 1, 'https://ror.org/03zcd8242 Queens Museum'), (28335, 'https://ror.org/03zf73d71', 'id', 1, 'https://ror.org/03zf73d71 Universitas Muhammadiyah Lampung'), (28336, 'https://ror.org/03zfb6x57', 'en', 1, 'https://ror.org/03zfb6x57 Detroit Institute of Arts'), (28337, 'https://ror.org/03zfwg795', 'no_lang_code', 1, 'https://ror.org/03zfwg795 Chuo Gakuin University 中央学院大学'), (28338, 'https://ror.org/03zg21k42', 'en', 1, 'https://ror.org/03zg21k42 Sports Research Institute Of Czech Armed Forces'), (28339, 'https://ror.org/03zgadm16', 'en', 1, 'https://ror.org/03zgadm16 Bunri University of Hospitality 西武文理大学'), (28340, 'https://ror.org/03zhqv657', 'en', 1, 'https://ror.org/03zhqv657 Marshall B. Ketchum University'), (28341, 'https://ror.org/03zjb7z20', 'en', 1, 'https://ror.org/03zjb7z20 Fukushima University 福島大学'), (28342, 'https://ror.org/03zjsm671', 'en', 1, 'https://ror.org/03zjsm671 Riga Aeronautical Institute Rīgas Aeronavigācijas institūts'), (28343, 'https://ror.org/03zjvmt75', 'en', 1, 'https://ror.org/03zjvmt75 Mykolayiv National Agrarian University Миколаївський національний аграрний університет Николаевский государственный аграрный университет'), (28344, 'https://ror.org/03zjy9626', 'en', 1, 'https://ror.org/03zjy9626 Jizzakh Polytechnic Institute Jizzax Poltexnika Instituti'), (28345, 'https://ror.org/03zka7717', 'en', 1, 'https://ror.org/03zka7717 University of Tifariti جامعة تيفاريتي'), (28346, 'https://ror.org/03zkjvs45', 'es', 1, 'https://ror.org/03zkjvs45 Universidad del Tepeyac'), (28347, 'https://ror.org/03zkv1382', 'en', 1, 'https://ror.org/03zkv1382 Amherst Pelham Regional School District'), (28348, 'https://ror.org/03znmxh49', 'en', 1, 'https://ror.org/03znmxh49 Grail Movement'), (28349, 'https://ror.org/03zrfs389', 'en', 1, 'https://ror.org/03zrfs389 Aichi Bunkyo University 愛知文教大学'), (28350, 'https://ror.org/03zwesg40', 'en', 1, 'https://ror.org/03zwesg40 Indonesia Open University Universitas Terbuka'), (28351, 'https://ror.org/03zy1r264', 'en', 1, 'https://ror.org/03zy1r264 Montclair Art Museum'), (28352, 'https://ror.org/03zyppr86', 'en', 1, 'https://ror.org/03zyppr86 Tulsa City-County Library'), (28353, 'https://ror.org/03zz2hh98', 'no_lang_code', 1, 'https://ror.org/03zz2hh98 VR Group (Czechia)'), (28354, 'https://ror.org/03zzekj93', 'en', 1, 'https://ror.org/03zzekj93 University of Luzon'), (28355, 'https://ror.org/04004q467', 'en', 1, 'https://ror.org/04004q467 Ocean Conservancy'), (28356, 'https://ror.org/0400qtr36', 'en', 1, 'https://ror.org/0400qtr36 Lehigh County Historical Society'), (28357, 'https://ror.org/0403tv949', 'en', 1, 'https://ror.org/0403tv949 Nalanda University नालंदा आंतरराष्ट्रीय विद्यापीठ नालन्दा विश्वविद्यालय ਨਾਲੰਦਾ ਯੂਨੀਵਰਸਿਟੀ நாலந்தா பல்கலைக்கழகம் నలందా విశ్వవిద్యాలయము'), (28358, 'https://ror.org/0403ytw22', 'en', 1, 'https://ror.org/0403ytw22 Chandra Shekhar Azad University of Agriculture and Technology चंद्र शेखर आजाद कृषि एवं प्रौद्योगिकी विश्वविद्यालय'), (28359, 'https://ror.org/0404f9j94', 'en', 1, 'https://ror.org/0404f9j94 Gulistan State University Guliston universiteti'), (28360, 'https://ror.org/0404wkz93', 'en', 1, 'https://ror.org/0404wkz93 Silesian Museum Slezské zemské muzeum'), (28361, 'https://ror.org/0406kzg67', 'en', 1, 'https://ror.org/0406kzg67 Georgia OKeeffe Museum'), (28362, 'https://ror.org/0406t3m57', 'fr', 1, 'https://ror.org/0406t3m57 Université Nantes Angers Le Mans'), (28363, 'https://ror.org/0408gh695', 'en', 1, 'https://ror.org/0408gh695 Nakhon Sawan Rajabhat University มหาวิทยาลัยราชภัฏนครสวรรค์'), (28364, 'https://ror.org/04096bn69', 'no_lang_code', 1, 'https://ror.org/04096bn69 Dürr Systems (Czechia)'), (28365, 'https://ror.org/040acyg58', 'en', 1, 'https://ror.org/040acyg58 Saint Patrick''s Seminary and University'), (28366, 'https://ror.org/040cb6934', 'cs', 1, 'https://ror.org/040cb6934 Česká Společnost Chemická'), (28367, 'https://ror.org/040cm8d21', 'en', 1, 'https://ror.org/040cm8d21 International Burch University Međunarodni univerzitet Burch'), (28368, 'https://ror.org/040eqhp13', 'en', 1, 'https://ror.org/040eqhp13 Islamic University of Lebanon الجامعة الإسلامية في لبنان'), (28369, 'https://ror.org/040f6ar92', 'en', 1, 'https://ror.org/040f6ar92 Tafresh University دانشگاه تفرش'), (28370, 'https://ror.org/040gghh09', 'no_lang_code', 1, 'https://ror.org/040gghh09 Chugoku Gakuen University 中国学園大学'), (28371, 'https://ror.org/040jmyh64', 'en', 1, 'https://ror.org/040jmyh64 Jaypee University of Engineering and Technology जेपी अभियांत्रिकी एवं प्रौद्योगिकी विश्विद्यालय, गुना।'), (28372, 'https://ror.org/040knvs26', 'en', 1, 'https://ror.org/040knvs26 Akdeniz Karpaz Üniversitesi University of Mediterranean Karpasia'), (28373, 'https://ror.org/040kwjv41', 'en', 1, 'https://ror.org/040kwjv41 Kobe Kaisei College 神戸海星女子学院大学'), (28374, 'https://ror.org/040m1gm26', 'id', 1, 'https://ror.org/040m1gm26 Universitas Surakarta'), (28375, 'https://ror.org/040n9c877', 'id', 1, 'https://ror.org/040n9c877 Universitas Kadiri'), (28376, 'https://ror.org/040nnqy18', 'en', 1, 'https://ror.org/040nnqy18 National Baseball Hall of Fame and Museum'), (28377, 'https://ror.org/040p5b123', 'en', 1, 'https://ror.org/040p5b123 Neisse University'), (28378, 'https://ror.org/040pya631', 'en', 1, 'https://ror.org/040pya631 State Library of Massachusetts'), (28379, 'https://ror.org/040q3y035', 'en', 1, 'https://ror.org/040q3y035 Volgograd Institute of Economics, Sociology and Law Волгоградский институт экономики, социологии и права'), (28380, 'https://ror.org/040rjhz75', 'en', 1, 'https://ror.org/040rjhz75 Yukon River Drainage Fisheries Association'), (28381, 'https://ror.org/040skpd26', 'pl', 1, 'https://ror.org/040skpd26 Wyższa Szkoła Umiejętności im. Stanisława Staszica w Kielcach'), (28382, 'https://ror.org/040vydp62', 'en', 1, 'https://ror.org/040vydp62 Mint Museum'), (28383, 'https://ror.org/040wb2y55', 'no_lang_code', 1, 'https://ror.org/040wb2y55 University of Luhansk Ługański Uniwersytet Narodowy im. Tarasa Szewczenki Луганский национальный университет имени Тараса Шевченко Луганський національний університет імені Тараса Шевченка'), (28384, 'https://ror.org/040yze711', 'en', 1, 'https://ror.org/040yze711 Schenectady County Historical Society'), (28385, 'https://ror.org/04155gf20', 'en', 1, 'https://ror.org/04155gf20 Institute of Technologists ものつくり大学'), (28386, 'https://ror.org/0415bcp90', 'en', 1, 'https://ror.org/0415bcp90 Churchill Centre'), (28387, 'https://ror.org/0417k2898', 'en', 1, 'https://ror.org/0417k2898 Innovative University of Eurasia Инновационный Евразийский Университет'), (28388, 'https://ror.org/041990296', 'en', 1, 'https://ror.org/041990296 Bratsk State University Братский государственный университет'), (28389, 'https://ror.org/041a5qb18', 'no_lang_code', 1, 'https://ror.org/041a5qb18 KPM Consult (Czechia)'), (28390, 'https://ror.org/041b0hx46', 'en', 1, 'https://ror.org/041b0hx46 Institute of State Administration Институт Государственного Администрирования'), (28391, 'https://ror.org/041bgnt86', 'no_lang_code', 1, 'https://ror.org/041bgnt86 Bila Tserkva National Agrarian University Білоцерківський національний аграрний університет'), (28392, 'https://ror.org/041c53527', 'no_lang_code', 1, 'https://ror.org/041c53527 Třinec Iron and Steel Works Třinecké Železárny (Czechia)'), (28393, 'https://ror.org/041dv9q58', 'en', 1, 'https://ror.org/041dv9q58 Lourdes University'), (28394, 'https://ror.org/041dvv921', 'en', 1, 'https://ror.org/041dvv921 Orange County Library System'), (28395, 'https://ror.org/041fmvm66', 'en', 1, 'https://ror.org/041fmvm66 Astrakhan Institute of Civil Engineering Астраханский инженерно-строительный институт'), (28396, 'https://ror.org/041gg4s51', 'en', 1, 'https://ror.org/041gg4s51 Natrona County Public Library'), (28397, 'https://ror.org/041hzs681', 'en', 1, 'https://ror.org/041hzs681 Chuncheon National University of Education 춘천교육대학교'), (28398, 'https://ror.org/041kq1b88', 'en', 1, 'https://ror.org/041kq1b88 Lenox Library Association'), (28399, 'https://ror.org/041maek06', 'pl', 1, 'https://ror.org/041maek06 Wyższa Szkoła Edukacji Zdrowotnej i Nauk Społecznych w Łodzi'), (28400, 'https://ror.org/041qsth84', 'en', 1, 'https://ror.org/041qsth84 Balochistan University of Engineering and Technology بلوچستان یونیورسٹی آف انجینئرنگ اینڈ ٹیکنالوجی خضدار'), (28401, 'https://ror.org/041r0kq89', 'en', 1, 'https://ror.org/041r0kq89 Russian School of Private Law Российская школа частного права'), (28402, 'https://ror.org/041r66s68', 'en', 1, 'https://ror.org/041r66s68 Moscow State Academy of Veterinary Medicine and Biotechnology named after Skryabin Московская государственная академия ветеринарной медицины и биотехнологии имени К. И. Скрябина'), (28403, 'https://ror.org/041szz343', 'en', 1, 'https://ror.org/041szz343 Volgograd State Technical University Федеральное государственное бюджетное образовательное учреждение высшего образования Волгоградский государственный технический университет'), (28404, 'https://ror.org/041xnqz41', 'en', 1, 'https://ror.org/041xnqz41 Rashtriya Sanskrit Vidyapeetha రాష్ట్రీయ సంస్కృత విద్యాపీఠం'), (28405, 'https://ror.org/0420yxq36', 'no_lang_code', 1, 'https://ror.org/0420yxq36 Demonta Trade (Czechia)'), (28406, 'https://ror.org/042160f93', 'en', 1, 'https://ror.org/042160f93 Astrakhan State Conservatory Астраханская Государственная Консерватория'), (28407, 'https://ror.org/04239hb35', 'en', 1, 'https://ror.org/04239hb35 Arena Stage'), (28408, 'https://ror.org/0423bpd98', 'en', 1, 'https://ror.org/0423bpd98 James Sprunt Community College'), (28409, 'https://ror.org/0423p3470', 'en', 1, 'https://ror.org/0423p3470 Western Pocono Community Library'), (28410, 'https://ror.org/0423r3m86', 'en', 1, 'https://ror.org/0423r3m86 Hellenic American University'), (28411, 'https://ror.org/0424c1c69', 'en', 1, 'https://ror.org/0424c1c69 Stavropol State University'), (28412, 'https://ror.org/0425ee430', 'en', 1, 'https://ror.org/0425ee430 Kona Historical Society'), (28413, 'https://ror.org/042967d53', 'en', 1, 'https://ror.org/042967d53 El Asher University جامعة العاشر من رمضان'), (28414, 'https://ror.org/042acmv76', 'en', 1, 'https://ror.org/042acmv76 Centre Hospitalier et Universitaire de Yaoundé University Teaching Hospital of Yaounde'), (28415, 'https://ror.org/042aj7s67', 'id', 1, 'https://ror.org/042aj7s67 Universitas Muhammadiyah Kupang'), (28416, 'https://ror.org/042asde39', 'en', 1, 'https://ror.org/042asde39 Pennsylvania Emergency Management Agency'), (28417, 'https://ror.org/042cy6c15', 'en', 1, 'https://ror.org/042cy6c15 Salish Sea Expeditions'), (28418, 'https://ror.org/042dtza69', 'en', 1, 'https://ror.org/042dtza69 International Information Technologies University Международный университет информационных технологий Халықаралық ақпараттық технологиялар университеті'), (28419, 'https://ror.org/042h5qy30', 'en', 1, 'https://ror.org/042h5qy30 International Women University'), (28420, 'https://ror.org/042jp8q52', 'en', 1, 'https://ror.org/042jp8q52 Pskov State Pedagogical Institute Псковский государственный педагогический институт'), (28421, 'https://ror.org/042jrxd70', 'en', 1, 'https://ror.org/042jrxd70 International University of Chabahar دانشگاه بینالمللی چابهار'), (28422, 'https://ror.org/042jsgw44', 'en', 1, 'https://ror.org/042jsgw44 Chinju National University of Education 진주교육대학교'), (28423, 'https://ror.org/042k5fe81', 'en', 1, 'https://ror.org/042k5fe81 Yancheng Teachers University'), (28424, 'https://ror.org/042kvvy70', 'en', 1, 'https://ror.org/042kvvy70 American Councils for International Education'), (28425, 'https://ror.org/042mxm271', 'en', 1, 'https://ror.org/042mxm271 Moscow State University of Food Production Московский государственный университет пищевых производств'), (28426, 'https://ror.org/042p6cb87', 'no_lang_code', 1, 'https://ror.org/042p6cb87 Infram (Czechia)'), (28427, 'https://ror.org/042r33k66', 'en', 1, 'https://ror.org/042r33k66 University of Pereslavl Университет города Переславля имени А. К. Айламазяна'), (28428, 'https://ror.org/042rwda30', 'en', 1, 'https://ror.org/042rwda30 North Coast Marine Mammal Center'), (28429, 'https://ror.org/042sm6918', 'en', 1, 'https://ror.org/042sm6918 Historic Annapolis Foundation'), (28430, 'https://ror.org/042v18a02', 'en', 1, 'https://ror.org/042v18a02 Northern Seminary'), (28431, 'https://ror.org/042vq5636', 'en', 1, 'https://ror.org/042vq5636 Krasnoyarsk State Trade and Economic Institute Красноярский государственный торгово-экономический институт'), (28432, 'https://ror.org/042vvq103', 'en', 1, 'https://ror.org/042vvq103 Makassed University جامعة المقاصد في بيروت'), (28433, 'https://ror.org/042xdvf13', 'en', 1, 'https://ror.org/042xdvf13 Chuvash State Agricultural Academy Чувашская государственная сельскохозяйственная академия'), (28434, 'https://ror.org/04304vh75', 'no_lang_code', 1, 'https://ror.org/04304vh75 ArcelorMittal (Czechia)'), (28435, 'https://ror.org/0430hbm78', 'en', 1, 'https://ror.org/0430hbm78 Nigerian University Games Association'), (28436, 'https://ror.org/04314q855', 'en', 1, 'https://ror.org/04314q855 Academy of Physiotheray in Wrocław Wyższa Szkoła Fizjoterapii'), (28437, 'https://ror.org/0431j8w40', 'en', 1, 'https://ror.org/0431j8w40 Rhode Island Historical Society'), (28438, 'https://ror.org/0431sew76', 'en', 1, 'https://ror.org/0431sew76 Copper Queen Library'), (28439, 'https://ror.org/043223922', 'en', 1, 'https://ror.org/043223922 Aino University 藍野大学'), (28440, 'https://ror.org/0433hvq53', 'en', 1, 'https://ror.org/0433hvq53 Gnessin Russian Academy of Music Российская академия музыки имени Гнесиных'), (28441, 'https://ror.org/04345w666', 'en', 1, 'https://ror.org/04345w666 Vermont Ski and Snowboard Museum'), (28442, 'https://ror.org/043519573', 'en', 1, 'https://ror.org/043519573 Rutland Free Library'), (28443, 'https://ror.org/0435nmp91', 'en', 1, 'https://ror.org/0435nmp91 Preservation Virginia'), (28444, 'https://ror.org/0437a7n31', 'en', 1, 'https://ror.org/0437a7n31 Liberal Arts University Гуманитарный университет'), (28445, 'https://ror.org/0438jm029', 'en', 1, 'https://ror.org/0438jm029 Northwest Open Technical University Северо-Западный открытый технический университет'), (28446, 'https://ror.org/043arvz49', 'no_lang_code', 1, 'https://ror.org/043arvz49 Technical services for air protection Prague (Czechia) Technické služby ochrany ovzduší Praha'), (28447, 'https://ror.org/043c66817', 'en', 1, 'https://ror.org/043c66817 International Fund for Animal Welfare'), (28448, 'https://ror.org/043dtk166', 'en', 1, 'https://ror.org/043dtk166 Jahon Iqtisodiyoti va Diplomatiya Universiteti University of World Economy and Diplomacy'), (28449, 'https://ror.org/043gwkh50', 'en', 1, 'https://ror.org/043gwkh50 Biblioteca Pública de Houston Houston Public Library'), (28450, 'https://ror.org/043hpy847', 'en', 1, 'https://ror.org/043hpy847 Royal University for Women الجامعة الملكية للبنات'), (28451, 'https://ror.org/043hwa340', 'en', 1, 'https://ror.org/043hwa340 Huntington Theatre Company'), (28452, 'https://ror.org/043jfav91', 'en', 1, 'https://ror.org/043jfav91 Surigao del Sur State University'), (28453, 'https://ror.org/043nk9b40', 'en', 1, 'https://ror.org/043nk9b40 Vladimir Law Institute ВЛАДИМИРСКИЙ ЮРИДИЧЕСКИЙ ИНСТИТУТ ФСИН РОССИИ'), (28454, 'https://ror.org/043q5er54', 'en', 1, 'https://ror.org/043q5er54 Frederick Taylor University'), (28455, 'https://ror.org/043rtjx90', 'en', 1, 'https://ror.org/043rtjx90 Odessa National A. V. Nezhdanova Academy of Music Одеська національна музична академія імені А. В. Нежданової'), (28456, 'https://ror.org/043say313', 'en', 1, 'https://ror.org/043say313 Cavite State University'), (28457, 'https://ror.org/043spm784', 'en', 1, 'https://ror.org/043spm784 Institute of the Black World'), (28458, 'https://ror.org/043vmz451', 'en', 1, 'https://ror.org/043vmz451 Syrian Virtual University الجامعة الافتراضية السورية'), (28459, 'https://ror.org/043zbt471', 'en', 1, 'https://ror.org/043zbt471 Dusit Thani College วิทยาลัยดุสิตธานี กรุงเทพ'), (28460, 'https://ror.org/043zh9f19', 'en', 1, 'https://ror.org/043zh9f19 Islamic Azad University of Sabzevar دانشگاه آزاد اسلامی واحد سبزوار'), (28461, 'https://ror.org/0440wca55', 'en', 1, 'https://ror.org/0440wca55 Bloomington Public Library'), (28462, 'https://ror.org/0441s6w50', 'no_lang_code', 1, 'https://ror.org/0441s6w50 Seitoku University 聖徳大学'), (28463, 'https://ror.org/0443ap166', 'en', 1, 'https://ror.org/0443ap166 First Moscow Law Institute Первый московский юридический институт'), (28464, 'https://ror.org/0443y6a81', 'en', 1, 'https://ror.org/0443y6a81 Academy of Fine Arts and Design in Bratislava Vysoká škola výtvarných umení v Bratislave'), (28465, 'https://ror.org/0444jhh32', 'en', 1, 'https://ror.org/0444jhh32 Bandung Raya University Universitas Bandung Raya'), (28466, 'https://ror.org/0444rfc43', 'en', 1, 'https://ror.org/0444rfc43 George C Marshall Foundation'), (28467, 'https://ror.org/0447ajy94', 'en', 1, 'https://ror.org/0447ajy94 University of Wollongong in Dubai جامعة ولونغونغ في دبي'), (28468, 'https://ror.org/044b0xj37', 'en', 1, 'https://ror.org/044b0xj37 Indonesia University of Education Universitas Pendidikan Indonesia'), (28469, 'https://ror.org/044b9hy83', 'en', 1, 'https://ror.org/044b9hy83 Faculty of Commercial and Business Sciences Fakultete za Komercialne in Poslovne Vede'), (28470, 'https://ror.org/044c3e517', 'en', 1, 'https://ror.org/044c3e517 Wildlife Research Team'), (28471, 'https://ror.org/044cm3z84', 'en', 1, 'https://ror.org/044cm3z84 Belgorod National Research University Белгородский государственный университет'), (28472, 'https://ror.org/044dnwe52', 'en', 1, 'https://ror.org/044dnwe52 Minnesota Department of Public Safety'), (28473, 'https://ror.org/044es9645', 'no_lang_code', 1, 'https://ror.org/044es9645 Českomoravská Kolben Daněk (Czechia)'), (28474, 'https://ror.org/044f1sg93', 'en', 1, 'https://ror.org/044f1sg93 Oduduwa University'), (28475, 'https://ror.org/044fdxc08', 'en', 1, 'https://ror.org/044fdxc08 Coastal States Organization'), (28476, 'https://ror.org/044g8hq51', 'en', 1, 'https://ror.org/044g8hq51 American Council on the Teaching of Foreign Languages'), (28477, 'https://ror.org/044ghaj56', 'no_lang_code', 1, 'https://ror.org/044ghaj56 Zhytomyr Ivan Franko State University Житомирський державний університет імені Івана Франка'), (28478, 'https://ror.org/044gnjv68', 'en', 1, 'https://ror.org/044gnjv68 Pyatigorsk State University Пятигорский государственный университет'), (28479, 'https://ror.org/044h3my24', 'en', 1, 'https://ror.org/044h3my24 Shadrinsk State Pedagogical Institute Шадринский государственный педагогический университет'), (28480, 'https://ror.org/044k1rn02', 'en', 1, 'https://ror.org/044k1rn02 Institute of Business and Law Институт бизнеса и права'), (28481, 'https://ror.org/044mjsc46', 'en', 1, 'https://ror.org/044mjsc46 Facing History and Ourselves'), (28482, 'https://ror.org/044nhav08', 'id', 1, 'https://ror.org/044nhav08 Institut Sains dan Teknologi Al-Kamal'), (28483, 'https://ror.org/044qb6z05', 'no_lang_code', 1, 'https://ror.org/044qb6z05 University of Goroka'), (28484, 'https://ror.org/044r99091', 'en', 1, 'https://ror.org/044r99091 Saigon Technology University Đại học Công nghệ Sài Gòn'), (28485, 'https://ror.org/044sqta95', 'en', 1, 'https://ror.org/044sqta95 Uczelnia Vistula Vistula University'), (28486, 'https://ror.org/044tdw637', 'en', 1, 'https://ror.org/044tdw637 Mofid University دانشگاه مفید'), (28487, 'https://ror.org/044tv3769', 'id', 1, 'https://ror.org/044tv3769 Universitas Kapuas Sintang'), (28488, 'https://ror.org/044w7r064', 'en', 1, 'https://ror.org/044w7r064 Restore America''s Estuaries'), (28489, 'https://ror.org/044wjg020', 'en', 1, 'https://ror.org/044wjg020 Atlanta-Fulton County Library System'), (28490, 'https://ror.org/0450r7s53', 'no_lang_code', 1, 'https://ror.org/0450r7s53 T-CZ (Czechia)'), (28491, 'https://ror.org/045101r15', 'no_lang_code', 1, 'https://ror.org/045101r15 B & M InterNets (Czechia)'), (28492, 'https://ror.org/04515fs89', 'no_lang_code', 1, 'https://ror.org/04515fs89 Vuje (Czechia)'), (28493, 'https://ror.org/0451bvc41', 'en', 1, 'https://ror.org/0451bvc41 Ganja State University Gəncə Dövlət Universiteti Гянджинский государственный университет'), (28494, 'https://ror.org/0451e0x59', 'en', 1, 'https://ror.org/0451e0x59 Episcopal Diocese of Pennsylvania'); INSERT INTO `rors` VALUES (28495, 'https://ror.org/0451vzh57', 'en', 1, 'https://ror.org/0451vzh57 Laramie Plains Museum'), (28496, 'https://ror.org/0454rb348', 'en', 1, 'https://ror.org/0454rb348 University of Science and Technology of Togo Université des Sciences et Technologies du Togo'), (28497, 'https://ror.org/0455zdm83', 'en', 1, 'https://ror.org/0455zdm83 Busan University of Foreign Studies 부산외국어대학교'), (28498, 'https://ror.org/0456fjb45', 'en', 1, 'https://ror.org/0456fjb45 Jewish Museum'), (28499, 'https://ror.org/0456pvf72', 'en', 1, 'https://ror.org/0456pvf72 WMHT Educational Telecommunications'), (28500, 'https://ror.org/0456z6869', 'no_lang_code', 1, 'https://ror.org/0456z6869 Crytur (Czechia)'), (28501, 'https://ror.org/0457fn135', 'en', 1, 'https://ror.org/0457fn135 University of Community Health Magway ကျန်းမာရေးတက္ကသိုလ်'), (28502, 'https://ror.org/0457pxg28', 'en', 1, 'https://ror.org/0457pxg28 Nanjing University of the Arts 南京艺术学院'), (28503, 'https://ror.org/0457r1112', 'en', 1, 'https://ror.org/0457r1112 New York City Municipal Archives'), (28504, 'https://ror.org/0459j6s55', 'no_lang_code', 1, 'https://ror.org/0459j6s55 Intertek (United Kingdom)'), (28505, 'https://ror.org/045a0wr43', 'en', 1, 'https://ror.org/045a0wr43 Comanche Nation College'), (28506, 'https://ror.org/045a1m333', 'no_lang_code', 1, 'https://ror.org/045a1m333 Lumos Pharma (United States)'), (28507, 'https://ror.org/045c1s446', 'en', 1, 'https://ror.org/045c1s446 Research and Breeding Institute of Pomology Holovousy'), (28508, 'https://ror.org/045c2a463', 'en', 1, 'https://ror.org/045c2a463 Comanche National Museum and Cultural Center'), (28509, 'https://ror.org/045cem663', 'en', 1, 'https://ror.org/045cem663 Albany Institute of History & Art'), (28510, 'https://ror.org/045cv1381', 'no_lang_code', 1, 'https://ror.org/045cv1381 Tajik Agrarian University Shirinsho Shotemur Донишгоҳи аграрии Тоҷикистон Таджикский аграрный университет'), (28511, 'https://ror.org/045fn2c25', 'en', 1, 'https://ror.org/045fn2c25 St.Tammany Parish Government'), (28512, 'https://ror.org/045hmbf04', 'en', 1, 'https://ror.org/045hmbf04 Ternopil Ivan Pului National Technical University Тернопільський національний технічний університет імені Івана Пулюя'), (28513, 'https://ror.org/045jvzr81', 'en', 1, 'https://ror.org/045jvzr81 Quảng Bình University Trường Đại học Quảng Bình'), (28514, 'https://ror.org/045kcbr23', 'en', 1, 'https://ror.org/045kcbr23 Friendship House'), (28515, 'https://ror.org/045m60334', 'en', 1, 'https://ror.org/045m60334 Kazan State University of Culture and Arts'), (28516, 'https://ror.org/045m93336', 'en', 1, 'https://ror.org/045m93336 National University of Equatorial Guinea Universidad Nacional de Guinea Ecuatorial'), (28517, 'https://ror.org/045mxyc94', 'en', 1, 'https://ror.org/045mxyc94 Turan University Тұран Университеті Университет Туран'), (28518, 'https://ror.org/045qb5273', 'en', 1, 'https://ror.org/045qb5273 D.Y. Patil University'), (28519, 'https://ror.org/045qyjz25', 'no_lang_code', 1, 'https://ror.org/045qyjz25 Baekseok University 백석대학교'), (28520, 'https://ror.org/045rmvd16', 'en', 1, 'https://ror.org/045rmvd16 Dhammakaya Open University'), (28521, 'https://ror.org/045rrq664', 'en', 1, 'https://ror.org/045rrq664 Research Institute for Soil and Water Conservation'), (28522, 'https://ror.org/045svrn73', 'en', 1, 'https://ror.org/045svrn73 Institut de l''Université de Londres à Paris University of London Institute in Paris'), (28523, 'https://ror.org/045v19n13', 'en', 1, 'https://ror.org/045v19n13 Breyer State Theology University'), (28524, 'https://ror.org/045vxh980', 'en', 1, 'https://ror.org/045vxh980 National Defence University نیشنل ڈیفنس یونیورسٹی'), (28525, 'https://ror.org/045wqtv91', 'en', 1, 'https://ror.org/045wqtv91 Kislovodsk Humanitarian and Technical Institute Кисловодский Гуманитарно-Технический Институт'), (28526, 'https://ror.org/045z05062', 'en', 1, 'https://ror.org/045z05062 St. Agnes University 平安女学院大学'), (28527, 'https://ror.org/045zwes19', 'en', 1, 'https://ror.org/045zwes19 University of West Los Angeles'), (28528, 'https://ror.org/0461hph98', 'en', 1, 'https://ror.org/0461hph98 Academy of Social and Economic Development Академия управления и производства'), (28529, 'https://ror.org/0461r7q95', 'en', 1, 'https://ror.org/0461r7q95 University of Seychelles'), (28530, 'https://ror.org/0461yj464', 'en', 1, 'https://ror.org/0461yj464 Ural State University of Railway Transport Уральский государственный университет путей сообщения'), (28531, 'https://ror.org/04629sk87', 'en', 1, 'https://ror.org/04629sk87 Bukkyo University 佛教大学'), (28532, 'https://ror.org/0464k6747', 'en', 1, 'https://ror.org/0464k6747 Maine State Archives'), (28533, 'https://ror.org/046581250', 'en', 1, 'https://ror.org/046581250 Medan Area University Universitas Medan Area'), (28534, 'https://ror.org/0465cdj45', 'en', 1, 'https://ror.org/0465cdj45 The Higher School of Art and Design Wyższa Szkoła Sztuki i Projektowania w Łodzi'), (28535, 'https://ror.org/0467jmw31', 'no_lang_code', 1, 'https://ror.org/0467jmw31 ET International (United States)'), (28536, 'https://ror.org/04688a324', 'en', 1, 'https://ror.org/04688a324 Nakhon Ratchasima Rajabhat University มหาวิทยาลัยราชภัฏนครราชสีมา'), (28537, 'https://ror.org/0469ncz24', 'en', 1, 'https://ror.org/0469ncz24 Dnipropetrovsk State Medical Academy Днепропетровская государственная медицинская академия Дніпропетровська державна медична академія'), (28538, 'https://ror.org/046a1ah60', 'en', 1, 'https://ror.org/046a1ah60 Rostov State Medical University Ростовский государственный медицинский университет'), (28539, 'https://ror.org/046d7bv94', 'no_lang_code', 1, 'https://ror.org/046d7bv94 Lodestar Research Corporation (United States)'), (28540, 'https://ror.org/046ha1n26', 'en', 1, 'https://ror.org/046ha1n26 International Vedic Hindu University'), (28541, 'https://ror.org/046k1gm58', 'en', 1, 'https://ror.org/046k1gm58 Verona Public Library'), (28542, 'https://ror.org/046k2tb30', 'en', 1, 'https://ror.org/046k2tb30 Washington State Board for Community and Technical Colleges'), (28543, 'https://ror.org/046r6pk12', 'en', 1, 'https://ror.org/046r6pk12 Guangzhou Sport University 广州体育学院'), (28544, 'https://ror.org/046st9p05', 'en', 1, 'https://ror.org/046st9p05 Taunggyi University တောင်ကြီး တက္ကသိုလ်'), (28545, 'https://ror.org/046wccx89', 'en', 1, 'https://ror.org/046wccx89 Angela Boškin Faculty of Health Care Fakulteta za zdravstvo Angele Boškin'), (28546, 'https://ror.org/046wjy580', 'en', 1, 'https://ror.org/046wjy580 Fo Guang University 佛光大學'), (28547, 'https://ror.org/046xqdg50', 'id', 1, 'https://ror.org/046xqdg50 Universitas Ibnu Chaldun Jakarta'), (28548, 'https://ror.org/046y60k23', 'pl', 1, 'https://ror.org/046y60k23 Wyższa Szkoła Bankowości i Finansów w Katowicach'), (28549, 'https://ror.org/046zepm61', 'en', 1, 'https://ror.org/046zepm61 Okinawa University 沖縄大学'), (28550, 'https://ror.org/046zty610', 'en', 1, 'https://ror.org/046zty610 Lake County Public Library'), (28551, 'https://ror.org/047183794', 'en', 1, 'https://ror.org/047183794 Moscow State Academy of Physical Education Московская государственная академия физической культуры'), (28552, 'https://ror.org/04730q569', 'en', 1, 'https://ror.org/04730q569 International University of Kyrgyzstan'), (28553, 'https://ror.org/0473ch268', 'en', 1, 'https://ror.org/0473ch268 Russian State University for the Humanities Российский государственный гуманитарный университет'), (28554, 'https://ror.org/0473nvz85', 'en', 1, 'https://ror.org/0473nvz85 Hanbuk University'), (28555, 'https://ror.org/04756ha57', 'en', 1, 'https://ror.org/04756ha57 Nagasaki Junshin Catholic University 長崎純心大学'), (28556, 'https://ror.org/0475cfj29', 'en', 1, 'https://ror.org/0475cfj29 Michurinsk State Agrarian University Мичуринский государственный аграрный университет'), (28557, 'https://ror.org/0475wjv32', 'no_lang_code', 1, 'https://ror.org/0475wjv32 Polygra (Czechia)'), (28558, 'https://ror.org/0476g9w78', 'en', 1, 'https://ror.org/0476g9w78 International Marinelife Alliance'), (28559, 'https://ror.org/0476td389', 'en', 1, 'https://ror.org/0476td389 Tibet Autonomous Region People''s Hospital 西藏自治区人民医院'), (28560, 'https://ror.org/0478mxw43', 'en', 1, 'https://ror.org/0478mxw43 Kamakura Women''s University 鎌倉女子大学'), (28561, 'https://ror.org/047a39447', 'en', 1, 'https://ror.org/047a39447 Fayetteville Public Library'), (28562, 'https://ror.org/047dxs002', 'en', 1, 'https://ror.org/047dxs002 Minsk Institute of Management Минский институт управления Мінскі інстытут кіравання'), (28563, 'https://ror.org/047g2hq96', 'en', 1, 'https://ror.org/047g2hq96 Illinois Department of Natural Resources'), (28564, 'https://ror.org/047hk4n08', 'en', 1, 'https://ror.org/047hk4n08 Koahnic Broadcast Corporation'), (28565, 'https://ror.org/047khpn70', 'en', 1, 'https://ror.org/047khpn70 Keio University Shonan Fujisawa 慶應義塾大学湘南藤沢キャンパス'), (28566, 'https://ror.org/047mw5m74', 'en', 1, 'https://ror.org/047mw5m74 Jerash University جامعة جرش'), (28567, 'https://ror.org/047p4k652', 'en', 1, 'https://ror.org/047p4k652 Willa Cather Foundation'), (28568, 'https://ror.org/047pn4f69', 'en', 1, 'https://ror.org/047pn4f69 San José Public Library'), (28569, 'https://ror.org/047qsc013', 'no_lang_code', 1, 'https://ror.org/047qsc013 Telangana University తెలంగాణ విశ్వవిద్యాలయము'), (28570, 'https://ror.org/047r2sc84', 'no_lang_code', 1, 'https://ror.org/047r2sc84 Slobomir P University Slobomir P Univerzitet Слобомир П Универзитет'), (28571, 'https://ror.org/047ref397', 'no_lang_code', 1, 'https://ror.org/047ref397 Telematix Group (Czechia)'), (28572, 'https://ror.org/047rtk203', 'en', 1, 'https://ror.org/047rtk203 Swiss German University Universitas Swiss German'), (28573, 'https://ror.org/047tfmf12', 'en', 1, 'https://ror.org/047tfmf12 Indigenous People''s Council for Marine Mammals'), (28574, 'https://ror.org/047vj8n35', 'en', 1, 'https://ror.org/047vj8n35 Tapee University วิทยาลัยตาปี'), (28575, 'https://ror.org/047wxqh80', 'en', 1, 'https://ror.org/047wxqh80 International Christian University Міжнародний Християнський університет-Київ'), (28576, 'https://ror.org/047wxqn68', 'en', 1, 'https://ror.org/047wxqn68 Mejiro University 目白大学'), (28577, 'https://ror.org/047ypym59', 'en', 1, 'https://ror.org/047ypym59 Saint Petersburg Stieglitz State Academy of Art and Design Санкт-Петербургская государственная художественно-промышленная академия имени А.Л. Штиглица'), (28578, 'https://ror.org/047zrsx48', 'en', 1, 'https://ror.org/047zrsx48 Moscow State Industrial University Московский государственный индустриальный университет'), (28579, 'https://ror.org/0480pdg65', 'no_lang_code', 1, 'https://ror.org/0480pdg65 Shizuoka Eiwa Gakuin University 静岡英和学院大学'), (28580, 'https://ror.org/0481fx056', 'en', 1, 'https://ror.org/0481fx056 Gold Nugget Museum'), (28581, 'https://ror.org/04829c483', 'en', 1, 'https://ror.org/04829c483 Asian American Asian Research Institute'), (28582, 'https://ror.org/0483fxt86', 'en', 1, 'https://ror.org/0483fxt86 Samarkand State Institute of Foreign Languages Samarqand davlat chet tillar instituti'), (28583, 'https://ror.org/0483p3z75', 'en', 1, 'https://ror.org/0483p3z75 Louisiana Museum Foundation'), (28584, 'https://ror.org/0483r5v56', 'en', 1, 'https://ror.org/0483r5v56 Changshin University 창신대학교'), (28585, 'https://ror.org/0485fyg31', 'en', 1, 'https://ror.org/0485fyg31 Russian State Agrarian University - Moscow Timiryazev Agricultural Academy Российский государственный аграрный университет — МСХА имени К.А. Тимирязева'), (28586, 'https://ror.org/048633e68', 'en', 1, 'https://ror.org/048633e68 Higashi Nippon International University 東日本国際大学'), (28587, 'https://ror.org/0486gbb16', 'en', 1, 'https://ror.org/0486gbb16 Higher Institute of Computer Science and Management Technology'), (28588, 'https://ror.org/0486ta465', 'en', 1, 'https://ror.org/0486ta465 Shenzhen Radio and TV University 深圳广播电视大学'), (28589, 'https://ror.org/048a4ax84', 'en', 1, 'https://ror.org/048a4ax84 Northland International University'), (28590, 'https://ror.org/048bfyy22', 'id', 1, 'https://ror.org/048bfyy22 Universitas Islam Kadiri'), (28591, 'https://ror.org/048c1xv24', 'en', 1, 'https://ror.org/048c1xv24 Toyo Gakuen University 東洋学園大学'), (28592, 'https://ror.org/048c5qr58', 'en', 1, 'https://ror.org/048c5qr58 Ciesla Foundation'), (28593, 'https://ror.org/048cnkq84', 'en', 1, 'https://ror.org/048cnkq84 Ontario Confederation of University Faculty Associations'), (28594, 'https://ror.org/048d4j826', 'en', 1, 'https://ror.org/048d4j826 Tamansiswa Palembang University Universitas Tamansiswa Palembang'), (28595, 'https://ror.org/048d53c31', 'en', 1, 'https://ror.org/048d53c31 Dagestan State Institute of National Economy Дагестанский государственный институт народного хозяйства'), (28596, 'https://ror.org/048d6j696', 'en', 1, 'https://ror.org/048d6j696 Kennedy–King College'), (28597, 'https://ror.org/048e0p659', 'en', 1, 'https://ror.org/048e0p659 University of Science and Culture دانشگاه علم و فرهنگ'), (28598, 'https://ror.org/048ef3e11', 'id', 1, 'https://ror.org/048ef3e11 Universitas Atma Jaya Makassar'), (28599, 'https://ror.org/048f9ne85', 'en', 1, 'https://ror.org/048f9ne85 Research Institute of Inorganic Chemistry Výzkumný ústav anorganické chemie, a.s.'), (28600, 'https://ror.org/048j6n969', 'en', 1, 'https://ror.org/048j6n969 Shubun University 修文大学'), (28601, 'https://ror.org/048mwn423', 'en', 1, 'https://ror.org/048mwn423 Sardarkrushinagar Dantiwada Agricultural University કૃષિ યુનિવર્સિટી, સરદારકૃષિનગર દાંતીવાડા'), (28602, 'https://ror.org/048q3sh29', 'en', 1, 'https://ror.org/048q3sh29 Gyan Vihar University'), (28603, 'https://ror.org/048rfph76', 'en', 1, 'https://ror.org/048rfph76 Institute of International Trade and Law Институт международной торговли и права'), (28604, 'https://ror.org/048t58j41', 'en', 1, 'https://ror.org/048t58j41 Kwangshin University'), (28605, 'https://ror.org/048tnx725', 'en', 1, 'https://ror.org/048tnx725 Biblioteca Pública de Filadelfia Free Library of Philadelphia'), (28606, 'https://ror.org/048yye826', 'en', 1, 'https://ror.org/048yye826 Keene Public Library'), (28607, 'https://ror.org/048yz1t88', 'no_lang_code', 1, 'https://ror.org/048yz1t88 Sergiyev Posad Humanitarian Institute Сергиево-Посадский гуманитарный институт'), (28608, 'https://ror.org/048z9th72', 'no_lang_code', 1, 'https://ror.org/048z9th72 Momoyama Gakuin University 桃山学院大学'), (28609, 'https://ror.org/048zea267', 'en', 1, 'https://ror.org/048zea267 Jagran Lakecity University'), (28610, 'https://ror.org/0490a2476', 'en', 1, 'https://ror.org/0490a2476 Sapporo International University 札幌国際大学'), (28611, 'https://ror.org/0491jx134', 'en', 1, 'https://ror.org/0491jx134 Garfield County Libraries'), (28612, 'https://ror.org/049345g13', 'no_lang_code', 1, 'https://ror.org/049345g13 NDCon (Czechia)'), (28613, 'https://ror.org/0495bs219', 'no_lang_code', 1, 'https://ror.org/0495bs219 OKsystem (Czechia)'), (28614, 'https://ror.org/0496p0503', 'en', 1, 'https://ror.org/0496p0503 Rissho University 立正大学'), (28615, 'https://ror.org/0496rd968', 'en', 1, 'https://ror.org/0496rd968 California State Railroad Museum'), (28616, 'https://ror.org/04981wd25', 'en', 1, 'https://ror.org/04981wd25 Reconstructionist Rabbinical College'), (28617, 'https://ror.org/0498bq185', 'no_lang_code', 1, 'https://ror.org/0498bq185 GIS-Geoindustry (Czechia)'), (28618, 'https://ror.org/04999ka44', 'no_lang_code', 1, 'https://ror.org/04999ka44 Medipo ZT (Czechia)'), (28619, 'https://ror.org/049aaxv89', 'no_lang_code', 1, 'https://ror.org/049aaxv89 Sysnet (Czechia)'), (28620, 'https://ror.org/049c2kr37', 'en', 1, 'https://ror.org/049c2kr37 Kalaidos Fachhochschule Kalaidos University of Applied Sciences'), (28621, 'https://ror.org/049d63v97', 'en', 1, 'https://ror.org/049d63v97 Takasaki University of Commerce 高崎商科大学'), (28622, 'https://ror.org/049e2jc83', 'en', 1, 'https://ror.org/049e2jc83 Institute of Legal Economics Институт правовой экономики'), (28623, 'https://ror.org/049fvjs25', 'en', 1, 'https://ror.org/049fvjs25 Tokyo University of Social Welfare 東京福祉大学'), (28624, 'https://ror.org/049gff252', 'en', 1, 'https://ror.org/049gff252 Universitas Sarjanawiyata Tamansiswa University of Sarjanawiyata Tamansiswa'), (28625, 'https://ror.org/049jpg876', 'en', 1, 'https://ror.org/049jpg876 Higher Institute for Qualitative Studies المعهد العالي للدراسات النوعية'), (28626, 'https://ror.org/049m9e566', 'en', 1, 'https://ror.org/049m9e566 Czech Railways'), (28627, 'https://ror.org/049nmp689', 'en', 1, 'https://ror.org/049nmp689 Nevsky Institute of Management and Design Невский институт управления и дизайна'), (28628, 'https://ror.org/049q7vv14', 'id', 1, 'https://ror.org/049q7vv14 Universitas Muhammadiyah Riau'), (28629, 'https://ror.org/049sfwc36', 'en', 1, 'https://ror.org/049sfwc36 National Intelligence University'), (28630, 'https://ror.org/049sxg896', 'en', 1, 'https://ror.org/049sxg896 Hemchandracharya North Gujarat University'), (28631, 'https://ror.org/049te8947', 'en', 1, 'https://ror.org/049te8947 Nayanova University Самарская государственная областная академия'), (28632, 'https://ror.org/049v2fv58', 'en', 1, 'https://ror.org/049v2fv58 Muban Chombueng Rajabhat University มหาวิทยาลัยราชภัฏหมู่บ้านจอมบึง'), (28633, 'https://ror.org/049wy2009', 'no_lang_code', 1, 'https://ror.org/049wy2009 GF Machinery (Czechia)'), (28634, 'https://ror.org/049yjjv56', 'en', 1, 'https://ror.org/049yjjv56 Institute for Social and Environmental Transition-International'), (28635, 'https://ror.org/049ysg747', 'en', 1, 'https://ror.org/049ysg747 Rajshahi University of Engineering & Technology, Rajshahi University of Engineering and Technology রাজশাহী প্রকৌশল ও প্রযুক্তি বিশ্ববিদ্যালয়'), (28636, 'https://ror.org/04a03m737', 'id', 1, 'https://ror.org/04a03m737 Universitas 45 Mataram'), (28637, 'https://ror.org/04a07c178', 'en', 1, 'https://ror.org/04a07c178 Louisiana Coastal Protection and Restoration Authority'), (28638, 'https://ror.org/04a1ctn52', 'en', 1, 'https://ror.org/04a1ctn52 General Lew Wallace Study and Museum'), (28639, 'https://ror.org/04a2eet46', 'en', 1, 'https://ror.org/04a2eet46 Duxbury Free Library'), (28640, 'https://ror.org/04a2rz655', 'en', 1, 'https://ror.org/04a2rz655 Rajamangala University of Technology Isan มหาวิทยาลัยเทคโนโลยีราชมงคลอีสาน'), (28641, 'https://ror.org/04a3e3p04', 'no_lang_code', 1, 'https://ror.org/04a3e3p04 Doosan (Czechia)'), (28642, 'https://ror.org/04a4sww29', 'en', 1, 'https://ror.org/04a4sww29 National University of Civil Defense of Ukraine Национальный университет гражданской защиты Украины Національний університет цивільного захисту України'), (28643, 'https://ror.org/04a5aqx80', 'en', 1, 'https://ror.org/04a5aqx80 Museum of Indian Arts and Culture'), (28644, 'https://ror.org/04a5pdm93', 'no_lang_code', 1, 'https://ror.org/04a5pdm93 GuideStar'), (28645, 'https://ror.org/04a698174', 'no_lang_code', 1, 'https://ror.org/04a698174 Tokyo Kasei Gakuin University 東京家政学院大学'), (28646, 'https://ror.org/04a8t1e98', 'no_lang_code', 1, 'https://ror.org/04a8t1e98 Osaka Gakuin University 大阪学院大学'), (28647, 'https://ror.org/04a8tp355', 'id', 1, 'https://ror.org/04a8tp355 Universitas Teknologi Sulawesi'), (28648, 'https://ror.org/04a98ab79', 'en', 1, 'https://ror.org/04a98ab79 National Museum of Agriculture Národní zemědělské muzeum'), (28649, 'https://ror.org/04a9xrr47', 'en', 1, 'https://ror.org/04a9xrr47 Hebei Finance University 河北金融学院'), (28650, 'https://ror.org/04aamwz87', 'en', 1, 'https://ror.org/04aamwz87 Woodlawn Museum Gardens & Park'), (28651, 'https://ror.org/04abjgr86', 'en', 1, 'https://ror.org/04abjgr86 Sacred Heart University'), (28652, 'https://ror.org/04ag50w09', 'no_lang_code', 1, 'https://ror.org/04ag50w09 Beznoska (Czechia)'), (28653, 'https://ror.org/04ah8rj19', 'en', 1, 'https://ror.org/04ah8rj19 Kyoto International University 京都インターナショナルユニバーシティー'), (28654, 'https://ror.org/04ahqr359', 'en', 1, 'https://ror.org/04ahqr359 Jewish Museum in Prague Židovské muzeum v Praze'), (28655, 'https://ror.org/04ajy5s58', 'en', 1, 'https://ror.org/04ajy5s58 Iman University جامعة الإيمان'), (28656, 'https://ror.org/04anxb269', 'en', 1, 'https://ror.org/04anxb269 Czech Society for New Materials and Technologies'), (28657, 'https://ror.org/04arqjy59', 'en', 1, 'https://ror.org/04arqjy59 Hermann Grima House'), (28658, 'https://ror.org/04arxdw58', 'en', 1, 'https://ror.org/04arxdw58 Delaware Division of Historical and Cultural Affairs'), (28659, 'https://ror.org/04atzpa02', 'en', 1, 'https://ror.org/04atzpa02 Aichi Toho University 愛知東邦大学'), (28660, 'https://ror.org/04aw3qn55', 'en', 1, 'https://ror.org/04aw3qn55 Latvian Christian Academy Latvijas Kristīgā akadēmija'), (28661, 'https://ror.org/04ayrfe72', 'en', 1, 'https://ror.org/04ayrfe72 Tamil Nadu Dr. J Jayalalitha Fisheries University தமிழ்நாடு மீன்வள பல்கலைக்கழகம்'), (28662, 'https://ror.org/04az9eh24', 'en', 1, 'https://ror.org/04az9eh24 Jilin University of Finance and Economics 吉林财经大学'), (28663, 'https://ror.org/04b25wb90', 'no_lang_code', 1, 'https://ror.org/04b25wb90 Anhanguera (Brazil)'), (28664, 'https://ror.org/04b4kxc62', 'id', 1, 'https://ror.org/04b4kxc62 Universitas Halmahera'), (28665, 'https://ror.org/04b4rre17', 'en', 1, 'https://ror.org/04b4rre17 National Law University and Judicial Academy'), (28666, 'https://ror.org/04b5fcb71', 'en', 1, 'https://ror.org/04b5fcb71 Oakland Public Library'), (28667, 'https://ror.org/04bad2882', 'en', 1, 'https://ror.org/04bad2882 Civil Aviation Technology College دانشکده فناوری هواپیمایی هواپیمایی'), (28668, 'https://ror.org/04bccg972', 'en', 1, 'https://ror.org/04bccg972 Tajik National University Донишгоҳи давлатии миллии Тоҷикистон Таджикский национальный университет'), (28669, 'https://ror.org/04bcsz239', 'en', 1, 'https://ror.org/04bcsz239 Dr. Ram Manohar Lohia National Law University डॉ राम मनोहर लोहिया राष्ट्रीय विधि विश्वविद्यालय'), (28670, 'https://ror.org/04bcyx979', 'cs', 1, 'https://ror.org/04bcyx979 Všeobecná Uverová Banka'), (28671, 'https://ror.org/04bfjqy79', 'en', 1, 'https://ror.org/04bfjqy79 Incheon Catholic University 인천가톨릭대학교'), (28672, 'https://ror.org/04bgrkn57', 'en', 1, 'https://ror.org/04bgrkn57 Moscow State University of Medicine and Dentistry Московский государственный медико-стоматологический университет'), (28673, 'https://ror.org/04bj64g74', 'en', 1, 'https://ror.org/04bj64g74 Cherokee Heritage Center'), (28674, 'https://ror.org/04bk45c77', 'en', 1, 'https://ror.org/04bk45c77 Ford''s Theatre'), (28675, 'https://ror.org/04bmm0q23', 'en', 1, 'https://ror.org/04bmm0q23 Sichuan Fine Arts Institute 四川美术学院'), (28676, 'https://ror.org/04bmtez11', 'en', 1, 'https://ror.org/04bmtez11 DOBA Business School DOBA Fakulteta'), (28677, 'https://ror.org/04bn3r984', 'en', 1, 'https://ror.org/04bn3r984 Kemerovo State University of Culture and the Arts Кемеровский государственный институт культуры'), (28678, 'https://ror.org/04bn56254', 'en', 1, 'https://ror.org/04bn56254 Osaka Kawasaki Rehabilitation University 大阪河崎リハビリテーション大学'), (28679, 'https://ror.org/04bnhs754', 'no_lang_code', 1, 'https://ror.org/04bnhs754 Attl (Czechia)'), (28680, 'https://ror.org/04bqj0966', 'en', 1, 'https://ror.org/04bqj0966 Broadview University'), (28681, 'https://ror.org/04bs5h869', 'id', 1, 'https://ror.org/04bs5h869 Institut Teknologi dan Bisnis Kalbe'), (28682, 'https://ror.org/04bwfnh43', 'en', 1, 'https://ror.org/04bwfnh43 Willamette Heritage Center'), (28683, 'https://ror.org/04bwss030', 'no_lang_code', 1, 'https://ror.org/04bwss030 Zhezkazgan Baikonurov University Жезказганский университет имени О.А. Байконурова'), (28684, 'https://ror.org/04bx7h761', 'en', 1, 'https://ror.org/04bx7h761 Museums of Old York'), (28685, 'https://ror.org/04bxa3v83', 'en', 1, 'https://ror.org/04bxa3v83 Shiraz University of Technology دانشگاه صنعتی شیراز'), (28686, 'https://ror.org/04bxdha50', 'en', 1, 'https://ror.org/04bxdha50 New England Quilt Museum'), (28687, 'https://ror.org/04byvwj54', 'en', 1, 'https://ror.org/04byvwj54 Heritage Preservation'), (28688, 'https://ror.org/04byxj259', 'id', 1, 'https://ror.org/04byxj259 Universitas Winaya Mukti'), (28689, 'https://ror.org/04bz0e642', 'no_lang_code', 1, 'https://ror.org/04bz0e642 Sheikh Bahaei University دانشگاه شیخ بهایی'), (28690, 'https://ror.org/04bz6gw73', 'en', 1, 'https://ror.org/04bz6gw73 Sapporo University 札幌大学'), (28691, 'https://ror.org/04bzgnv13', 'en', 1, 'https://ror.org/04bzgnv13 Oklahoma Library Association'), (28692, 'https://ror.org/04c16pd38', 'en', 1, 'https://ror.org/04c16pd38 Jeffco Public Schools'), (28693, 'https://ror.org/04c244340', 'no_lang_code', 1, 'https://ror.org/04c244340 Era-Maptec (Ireland)'), (28694, 'https://ror.org/04c3c7847', 'en', 1, 'https://ror.org/04c3c7847 Akademia Muzyczna im. Karola Lipińskiego we Wrocławiu Karol Lipiński Academy of Music in Wrocław'), (28695, 'https://ror.org/04c3gsq51', 'en', 1, 'https://ror.org/04c3gsq51 Frelinghuysen Morris House And Studio'), (28696, 'https://ror.org/04c89v556', 'en', 1, 'https://ror.org/04c89v556 National Fisheries Institute'), (28697, 'https://ror.org/04c8h8q45', 'en', 1, 'https://ror.org/04c8h8q45 Leonardo Da Vinci University Universidad Privada Leonardo da Vinci'), (28698, 'https://ror.org/04c9af145', 'en', 1, 'https://ror.org/04c9af145 University of Manila'), (28699, 'https://ror.org/04c9fd109', 'en', 1, 'https://ror.org/04c9fd109 Reef Environmental Education Foundation'), (28700, 'https://ror.org/04ccfjy89', 'en', 1, 'https://ror.org/04ccfjy89 Center for Coastal Studies'), (28701, 'https://ror.org/04ce9mt19', 'en', 1, 'https://ror.org/04ce9mt19 Hoover Institution'), (28702, 'https://ror.org/04cfhgb79', 'en', 1, 'https://ror.org/04cfhgb79 Diplomatic Academy of the Russian Foreign Ministry Дипломатическая академия МИД России'), (28703, 'https://ror.org/04cgn5q20', 'en', 1, 'https://ror.org/04cgn5q20 Al-Quds Open University جامعة القدس المفتوحة'), (28704, 'https://ror.org/04chene87', 'no_lang_code', 1, 'https://ror.org/04chene87 Eeip (Czechia)'), (28705, 'https://ror.org/04cj4w646', 'no_lang_code', 1, 'https://ror.org/04cj4w646 Magneton (Czechia)'), (28706, 'https://ror.org/04ck9y280', 'en', 1, 'https://ror.org/04ck9y280 Poznan University of Social Sciences Wyższa Szkoła Umiejętności Społecznych'), (28707, 'https://ror.org/04cns1483', 'en', 1, 'https://ror.org/04cns1483 Center for the Study of Community Colleges'), (28708, 'https://ror.org/04csdwy58', 'no_lang_code', 1, 'https://ror.org/04csdwy58 Mahatma Gandhi Antarrashtriya Hindi Vishwavidyalaya Mahatma Gandhi International Hindi University महात्मा गांधी अन्तरराष्ट्रीय हिन्दी विश्वविद्यालय'), (28709, 'https://ror.org/04ctw6466', 'en', 1, 'https://ror.org/04ctw6466 Seoul Social Welfare Graduate University 서울사회복지대학원대학교'), (28710, 'https://ror.org/04cwkhw19', 'en', 1, 'https://ror.org/04cwkhw19 Council for Native Hawaiian Advancement'), (28711, 'https://ror.org/04cymw545', 'en', 1, 'https://ror.org/04cymw545 Shota Rustaveli Theatre and Film Georgia State University საქართველოს შოთა რუსთაველის თეატრის და კინოს უნივერსიტეტი'), (28712, 'https://ror.org/04cyzbs29', 'en', 1, 'https://ror.org/04cyzbs29 Chaffey College'), (28713, 'https://ror.org/04czac457', 'en', 1, 'https://ror.org/04czac457 Siberian Academy of Finance and Banking Сибирская академия финансов и банковского дела'), (28714, 'https://ror.org/04d1kkx94', 'en', 1, 'https://ror.org/04d1kkx94 Connecticut Historical Society'), (28715, 'https://ror.org/04d3gck32', 'id', 1, 'https://ror.org/04d3gck32 Universitas Wijayakusuma Purwokerto'), (28716, 'https://ror.org/04d4xzq24', 'en', 1, 'https://ror.org/04d4xzq24 Indiana Library Federation'), (28717, 'https://ror.org/04d5c0f12', 'en', 1, 'https://ror.org/04d5c0f12 Hispanic Society of America'), (28718, 'https://ror.org/04d8yqq70', 'en', 1, 'https://ror.org/04d8yqq70 Krirk University มหาวิทยาลัยเกริก'), (28719, 'https://ror.org/04d9rzd67', 'en', 1, 'https://ror.org/04d9rzd67 Gulf University for Science & Technology جامعة الخليج للعلوم والتكنولوجيا'), (28720, 'https://ror.org/04daenq52', 'en', 1, 'https://ror.org/04daenq52 Valley View University'), (28721, 'https://ror.org/04dbkth95', 'en', 1, 'https://ror.org/04dbkth95 Academy of Municipal Management Академія муніципального управління'), (28722, 'https://ror.org/04dea3c58', 'en', 1, 'https://ror.org/04dea3c58 Engineering Academy of the Czech Republic'), (28723, 'https://ror.org/04df59d52', 'no_lang_code', 1, 'https://ror.org/04df59d52 Ceske Lupkove Zavody (Czechia)'), (28724, 'https://ror.org/04dh87p33', 'en', 1, 'https://ror.org/04dh87p33 New York State Department of State'), (28725, 'https://ror.org/04dheyn57', 'en', 1, 'https://ror.org/04dheyn57 Hull Lifesaving Museum'), (28726, 'https://ror.org/04dmdc523', 'en', 1, 'https://ror.org/04dmdc523 Association of Environmental and Resource Economists'), (28727, 'https://ror.org/04dmnxh66', 'en', 1, 'https://ror.org/04dmnxh66 CTBC Business School 中信金融管理學院'), (28728, 'https://ror.org/04dn9wj23', 'en', 1, 'https://ror.org/04dn9wj23 Romblon State University'), (28729, 'https://ror.org/04dpnfr42', 'en', 1, 'https://ror.org/04dpnfr42 Johnson University'), (28730, 'https://ror.org/04dq6em15', 'no_lang_code', 1, 'https://ror.org/04dq6em15 Tribotec (Czechia)'), (28731, 'https://ror.org/04dr3nj83', 'en', 1, 'https://ror.org/04dr3nj83 Fresno County Public Library'), (28732, 'https://ror.org/04drdpz74', 'en', 1, 'https://ror.org/04drdpz74 Wisconsin Educational Communications Board'), (28733, 'https://ror.org/04dsq1c96', 'en', 1, 'https://ror.org/04dsq1c96 Library of Hattiesburg, Petal and Forrest County'), (28734, 'https://ror.org/04e035w81', 'no_lang_code', 1, 'https://ror.org/04e035w81 Reflex (Czechia)'), (28735, 'https://ror.org/04e1g5k93', 'en', 1, 'https://ror.org/04e1g5k93 Saint Petersburg Institute of Law named after Prince P. Oldenburg Институт права имени Принца П.Г.Ольденбургского'), (28736, 'https://ror.org/04e45e551', 'en', 1, 'https://ror.org/04e45e551 Columbia State Community College'), (28737, 'https://ror.org/04e529t38', 'en', 1, 'https://ror.org/04e529t38 Altai State Pedagogical University Алтайская государственная педагогическая академия'), (28738, 'https://ror.org/04e6rv019', 'no_lang_code', 1, 'https://ror.org/04e6rv019 Ateko (Czechia)'), (28739, 'https://ror.org/04eba5983', 'en', 1, 'https://ror.org/04eba5983 Biotechnology Research Institute'), (28740, 'https://ror.org/04ebe6j88', 'en', 1, 'https://ror.org/04ebe6j88 Xi''an Academy of Fine Arts 西安美术学院'), (28741, 'https://ror.org/04ebscd73', 'en', 1, 'https://ror.org/04ebscd73 European University College الكلية الأوروبية الجامعية'), (28742, 'https://ror.org/04ec26n40', 'en', 1, 'https://ror.org/04ec26n40 Saint John''s University มหาวิทยาลัยเซนต์จอห์น'), (28743, 'https://ror.org/04eck9c32', 'en', 1, 'https://ror.org/04eck9c32 International Art Campus Prague'), (28744, 'https://ror.org/04edbcc27', 'en', 1, 'https://ror.org/04edbcc27 James River Association'), (28745, 'https://ror.org/04edybc52', 'no_lang_code', 1, 'https://ror.org/04edybc52 Biwako Seikei Sport College びわこ成蹊スポーツ大学'), (28746, 'https://ror.org/04ehpm154', 'en', 1, 'https://ror.org/04ehpm154 West Kazakhstan Marat Ospanov State Medical University М.Оспанов атындағы Батыс Қазақстан мемлекеттік медицина университеті'), (28747, 'https://ror.org/04ekepb72', 'pl', 1, 'https://ror.org/04ekepb72 Szkoła Wyższa im. Bogdana Jańskiego'), (28748, 'https://ror.org/04eqy7d03', 'en', 1, 'https://ror.org/04eqy7d03 Oklahoma State University Institute of Technology'), (28749, 'https://ror.org/04er67t26', 'en', 1, 'https://ror.org/04er67t26 Old Red Museum of Dallas County History and Culture'), (28750, 'https://ror.org/04es4w891', 'id', 1, 'https://ror.org/04es4w891 Universitas Yapis Papua'), (28751, 'https://ror.org/04ew6mz46', 'en', 1, 'https://ror.org/04ew6mz46 Reklamy Institute Кафедра веб дизайна, Институт рекламы'), (28752, 'https://ror.org/04ez6kn43', 'en', 1, 'https://ror.org/04ez6kn43 Moscow State Academy of Choreography Московская государственная академия хореографии'), (28753, 'https://ror.org/04f7wmd40', 'en', 1, 'https://ror.org/04f7wmd40 Pyeongtaek University 평택대학교'), (28754, 'https://ror.org/04f8x5b20', 'en', 1, 'https://ror.org/04f8x5b20 Hochschule Merseburg Merseburg University of Applied Sciences'), (28755, 'https://ror.org/04f9apy08', 'en', 1, 'https://ror.org/04f9apy08 Advanced Institute of Industrial Technology 産業技術大学院大学'), (28756, 'https://ror.org/04f9eby28', 'en', 1, 'https://ror.org/04f9eby28 Voronezh Institute of High Technologies Воронежский институт высоких технологий'), (28757, 'https://ror.org/04f9r2a11', 'en', 1, 'https://ror.org/04f9r2a11 East African University'), (28758, 'https://ror.org/04fa2qd52', 'en', 1, 'https://ror.org/04fa2qd52 Sanya University 三亚学院'), (28759, 'https://ror.org/04fbh8j71', 'en', 1, 'https://ror.org/04fbh8j71 Arkhangelsk State Technical University Архангельский государственный технический университет'), (28760, 'https://ror.org/04fc8m485', 'no_lang_code', 1, 'https://ror.org/04fc8m485 Monet (Czechia)'), (28761, 'https://ror.org/04fdxfa12', 'en', 1, 'https://ror.org/04fdxfa12 Mangalam Research Center for Buddhist Languages'), (28762, 'https://ror.org/04fe55288', 'es', 1, 'https://ror.org/04fe55288 Asociación de Empresarios Textiles de la Comunidad Valenciana'), (28763, 'https://ror.org/04fe8b875', 'en', 1, 'https://ror.org/04fe8b875 American University of Afghanistan دانشگاه آمریکایی افغانستان'), (28764, 'https://ror.org/04ff49a90', 'en', 1, 'https://ror.org/04ff49a90 Amicable Knowledge Solution University ए के एस विश्वविद्यालय'), (28765, 'https://ror.org/04fgffc11', 'en', 1, 'https://ror.org/04fgffc11 Research Institute of Geodesy, Topography and Cartography'), (28766, 'https://ror.org/04fh2kz81', 'pl', 1, 'https://ror.org/04fh2kz81 Papieski Wydział Teologiczny w Warszawie Pontifical Faculty of Theology in Warsaw'), (28767, 'https://ror.org/04fmzje57', 'en', 1, 'https://ror.org/04fmzje57 Rare Book School'), (28768, 'https://ror.org/04fpqn730', 'en', 1, 'https://ror.org/04fpqn730 International Banking Institute Международный банковский институ'), (28769, 'https://ror.org/04fr5jq93', 'en', 1, 'https://ror.org/04fr5jq93 Georgetown County Library'), (28770, 'https://ror.org/04frcff47', 'en', 1, 'https://ror.org/04frcff47 Malaysia University of Science and Technology Universiti Sains dan Teknologi Malaysia'), (28771, 'https://ror.org/04frgwq67', 'en', 1, 'https://ror.org/04frgwq67 Institute of Aviation Medicine'), (28772, 'https://ror.org/04frhb927', 'en', 1, 'https://ror.org/04frhb927 Global University الجامعة العالمية'), (28773, 'https://ror.org/04frsmv44', 'no_lang_code', 1, 'https://ror.org/04frsmv44 Hamamatsu Gakuin University 浜松学院大学'), (28774, 'https://ror.org/04fswdh23', 'en', 1, 'https://ror.org/04fswdh23 Malama Learning Center'), (28775, 'https://ror.org/04ft1xc20', 'en', 1, 'https://ror.org/04ft1xc20 St. Martinus University'), (28776, 'https://ror.org/04ft9rp47', 'en', 1, 'https://ror.org/04ft9rp47 Textile Institute of Pakistan پاکستان کی ٹیکسٹائل انسٹی ٹیوٹ'), (28777, 'https://ror.org/04ftkte05', 'en', 1, 'https://ror.org/04ftkte05 Libyan International Medical University الجامعة الليبية الدولية للعلوم الطبية'), (28778, 'https://ror.org/04fy6jb97', 'en', 1, 'https://ror.org/04fy6jb97 King Mongkut''s University of Technology North Bangkok มหาวิทยาลัยเทคโนโลยีพระจอมเกล้าพระนครเหนือ'), (28779, 'https://ror.org/04g11bp59', 'en', 1, 'https://ror.org/04g11bp59 Osaka University of Economics 大阪経済大学'), (28780, 'https://ror.org/04g3e3p90', 'en', 1, 'https://ror.org/04g3e3p90 Medieval Academy of America'), (28781, 'https://ror.org/04g3hr176', 'en', 1, 'https://ror.org/04g3hr176 Kingdom University جامعة المملكة'), (28782, 'https://ror.org/04g449w06', 'en', 1, 'https://ror.org/04g449w06 Escuela Juilliard Juilliard School'), (28783, 'https://ror.org/04g5en476', 'no_lang_code', 1, 'https://ror.org/04g5en476 Ammann (Czechia)'), (28784, 'https://ror.org/04g8bba17', 'id', 1, 'https://ror.org/04g8bba17 Universitas Paramadina'), (28785, 'https://ror.org/04gb4k866', 'en', 1, 'https://ror.org/04gb4k866 Rostov State University of Civil Engineering Ростовский Государственный Строительный Университет'), (28786, 'https://ror.org/04gbh9h57', 'en', 1, 'https://ror.org/04gbh9h57 Perkins School for Blind'), (28787, 'https://ror.org/04gbk4749', 'en', 1, 'https://ror.org/04gbk4749 Art and Design University of Cluj-Napoca Művészeti és Design Egyetem Universitatea de Artă și Design'), (28788, 'https://ror.org/04gf7nc77', 'en', 1, 'https://ror.org/04gf7nc77 International Law Institute Международный юридический институт'), (28789, 'https://ror.org/04gj47650', 'en', 1, 'https://ror.org/04gj47650 Primorskaya State Academy of Agriculture Приморская Государственная Сельскохозяйственная Академия'), (28790, 'https://ror.org/04gmqtx37', 'en', 1, 'https://ror.org/04gmqtx37 Smolensk State University Смоленский государственный университет'), (28791, 'https://ror.org/04gndk045', 'en', 1, 'https://ror.org/04gndk045 IMADEC University'), (28792, 'https://ror.org/04gpajp33', 'id', 1, 'https://ror.org/04gpajp33 North Sulawesi University of Technology Universitas Teknologi Sulawesi Utara'), (28793, 'https://ror.org/04gpw1v92', 'en', 1, 'https://ror.org/04gpw1v92 European University Европски универзитет'), (28794, 'https://ror.org/04gqfff71', 'en', 1, 'https://ror.org/04gqfff71 William F. Laman Public Library System'), (28795, 'https://ror.org/04gqmrb58', 'en', 1, 'https://ror.org/04gqmrb58 Centre Hospitalier Universitaire Dr-Georges-L.-Dumont Dr. Georges-L.-Dumont University Hospital Centre'), (28796, 'https://ror.org/04gqpx257', 'en', 1, 'https://ror.org/04gqpx257 Niigata Sangyo University 新潟産業大学'), (28797, 'https://ror.org/04gr21t50', 'en', 1, 'https://ror.org/04gr21t50 Al Madinah International University Universiti Antarabangsa Al-Madinah'), (28798, 'https://ror.org/04gsm6763', 'en', 1, 'https://ror.org/04gsm6763 Museum of Contemporary Art San Diego'), (28799, 'https://ror.org/04gtsq315', 'id', 1, 'https://ror.org/04gtsq315 Universitas Wahid Hasyim'), (28800, 'https://ror.org/04gvm8679', 'en', 1, 'https://ror.org/04gvm8679 Tomsk Institute of Economics and Law Томский экономико-юридический институт'), (28801, 'https://ror.org/04gy42h78', 'en', 1, 'https://ror.org/04gy42h78 Nanjing Sport Institute 南京体育学院'), (28802, 'https://ror.org/04gyfd783', 'no_lang_code', 1, 'https://ror.org/04gyfd783 Chaopraya University มหาวิทยาลัยเจ้าพระยา'), (28803, 'https://ror.org/04gz2h231', 'en', 1, 'https://ror.org/04gz2h231 Okinawa Prefectural College of Nursing 沖縄県立看護大学'), (28804, 'https://ror.org/04h1w2j35', 'en', 1, 'https://ror.org/04h1w2j35 Madan Mohan Malaviya University of Technology मदन मोहन मालवीय इंजीनियरी महाविद्यालय, गोरखपुर'), (28805, 'https://ror.org/04h2cjt54', 'no_lang_code', 1, 'https://ror.org/04h2cjt54 Brookside Museum'), (28806, 'https://ror.org/04h4y6q56', 'en', 1, 'https://ror.org/04h4y6q56 Quy Nhon University Trường Đại Học Quy Nhơn'), (28807, 'https://ror.org/04h5pm325', 'en', 1, 'https://ror.org/04h5pm325 Children''s Museum of Manhattan'), (28808, 'https://ror.org/04h8p1q11', 'en', 1, 'https://ror.org/04h8p1q11 South Atlantic Fishery Management Council'), (28809, 'https://ror.org/04h8sfe51', 'en', 1, 'https://ror.org/04h8sfe51 Institute of World Economy and Information Институт Мировой экономики и информатизации'), (28810, 'https://ror.org/04haaft31', 'en', 1, 'https://ror.org/04haaft31 New Jersey Sea Grant Consortium'), (28811, 'https://ror.org/04haawm62', 'en', 1, 'https://ror.org/04haawm62 Association for Core Texts and Courses'), (28812, 'https://ror.org/04hah6r58', 'en', 1, 'https://ror.org/04hah6r58 Asian University มหาวิทยาลัยเอเชียน'), (28813, 'https://ror.org/04hb2sf66', 'no_lang_code', 1, 'https://ror.org/04hb2sf66 Kypha (United States)'), (28814, 'https://ror.org/04hdbtc84', 'en', 1, 'https://ror.org/04hdbtc84 Netaji Subhas Open University নেতাজি সুভাষ মুক্ত বিশ্ববিদ্যালয়'), (28815, 'https://ror.org/04hdrrs71', 'en', 1, 'https://ror.org/04hdrrs71 Metropolitan University মট্রোপলিটন ইউনিভার্সিটি'), (28816, 'https://ror.org/04heq0532', 'en', 1, 'https://ror.org/04heq0532 Missoula Public Library'), (28817, 'https://ror.org/04hfdwy10', 'en', 1, 'https://ror.org/04hfdwy10 Pfleger Institute of Environmental Research'), (28818, 'https://ror.org/04hfvq252', 'no_lang_code', 1, 'https://ror.org/04hfvq252 Research Institute of Binding Materials Prague (Czechia) Výzkumný ústav maltovin Praha'), (28819, 'https://ror.org/04hfx2z08', 'cs', 1, 'https://ror.org/04hfx2z08 Česká Společnost pro Politické Vědy'), (28820, 'https://ror.org/04hfxwy37', 'en', 1, 'https://ror.org/04hfxwy37 Tyumen Law Institute of the Russian Interior Ministry Тюменский юридический институт МВД России'), (28821, 'https://ror.org/04hj33b78', 'en', 1, 'https://ror.org/04hj33b78 National University of Music Bucharest Universitatea Națională de Muzică București'), (28822, 'https://ror.org/04hjmn382', 'en', 1, 'https://ror.org/04hjmn382 University of Economy in Bydgoszcz Wyższa Szkoła Gospodarki w Bydgoszczy'), (28823, 'https://ror.org/04hjsag95', 'en', 1, 'https://ror.org/04hjsag95 JECRC University'), (28824, 'https://ror.org/04hjv8v27', 'id', 1, 'https://ror.org/04hjv8v27 Universitas Nusantara Manado'), (28825, 'https://ror.org/04hk5r056', 'no_lang_code', 1, 'https://ror.org/04hk5r056 Jihlavan (Czechia)'), (28826, 'https://ror.org/04hks3g45', 'en', 1, 'https://ror.org/04hks3g45 Arkansas Museum of Discovery'), (28827, 'https://ror.org/04hp7kk26', 'no_lang_code', 1, 'https://ror.org/04hp7kk26 Valaya Alongkorn Rajabhat University มหาวิทยาลัยราชภัฏวไลยอลงกรณ์ ในพระบรมราชูปถัมภ์'), (28828, 'https://ror.org/04hsm1w74', 'en', 1, 'https://ror.org/04hsm1w74 Moscow Humanitarian Economic Institute Московский гуманитарно-экономический институт'), (28829, 'https://ror.org/04hsp7g83', 'en', 1, 'https://ror.org/04hsp7g83 Jaamacadda Puntland Puntland State University'), (28830, 'https://ror.org/04htfrz79', 'en', 1, 'https://ror.org/04htfrz79 Wenham Museum'), (28831, 'https://ror.org/04htq1b81', 'id', 1, 'https://ror.org/04htq1b81 Universitas Surapati'), (28832, 'https://ror.org/04hv8rm39', 'en', 1, 'https://ror.org/04hv8rm39 Maulana Mazharul Haque Arabic and Persian University मौलाना मजहरूल हक अरबी व फारसी विश्वविद्यालय'), (28833, 'https://ror.org/04hx9jj82', 'en', 1, 'https://ror.org/04hx9jj82 Kanda University of International Studies 神田外語大学'), (28834, 'https://ror.org/04hz6bt63', 'no_lang_code', 1, 'https://ror.org/04hz6bt63 Kovohutě Rokycany (Czechia)'), (28835, 'https://ror.org/04hzqbs28', 'en', 1, 'https://ror.org/04hzqbs28 Ural Institute of Business Уральский институт бизнеса'), (28836, 'https://ror.org/04j14gs18', 'en', 1, 'https://ror.org/04j14gs18 Rockland Memorial Library'), (28837, 'https://ror.org/04j1jjs80', 'en', 1, 'https://ror.org/04j1jjs80 University of Information Technology and Sciences ইউনির্ভাসিটি অব ইনফরমেশন টেকনোলজি এন্ড সাইন্সেস'), (28838, 'https://ror.org/04j1sf085', 'en', 1, 'https://ror.org/04j1sf085 Maryland State Archives'), (28839, 'https://ror.org/04j1zjr14', 'no_lang_code', 1, 'https://ror.org/04j1zjr14 Lander Institute'), (28840, 'https://ror.org/04j3yrr96', 'no_lang_code', 1, 'https://ror.org/04j3yrr96 Imos Brno (Czechia)'), (28841, 'https://ror.org/04j59hx92', 'en', 1, 'https://ror.org/04j59hx92 William Peace University'), (28842, 'https://ror.org/04j6k3054', 'en', 1, 'https://ror.org/04j6k3054 Vitebsk State University named after P.M. Masherov Витебский государственный университет имени П. М. Машерова Віцебскі дзяржаўны ўніверсітэт імя П. М. Машэрава'), (28843, 'https://ror.org/04janbd12', 'no_lang_code', 1, 'https://ror.org/04janbd12 Centro Escolar University Pamantasang Centro Escolar'), (28844, 'https://ror.org/04japw488', 'en', 1, 'https://ror.org/04japw488 Godfrey Okoye University'), (28845, 'https://ror.org/04jb7yj10', 'en', 1, 'https://ror.org/04jb7yj10 Hannan University 阪南大学'), (28846, 'https://ror.org/04jd89h35', 'en', 1, 'https://ror.org/04jd89h35 Olivet University'), (28847, 'https://ror.org/04jdy5g59', 'en', 1, 'https://ror.org/04jdy5g59 Meenakshi Academy of Higher Education and Research'), (28848, 'https://ror.org/04je1d793', 'en', 1, 'https://ror.org/04je1d793 Institute of the Rockies'), (28849, 'https://ror.org/04jesgk52', 'en', 1, 'https://ror.org/04jesgk52 Baltic Institute of Ecology, Politics and Law Балтийский институт экологии, политики и права'), (28850, 'https://ror.org/04jhcmb20', 'en', 1, 'https://ror.org/04jhcmb20 Kumamoto Gakuen University 熊本学園大学'), (28851, 'https://ror.org/04jhq1580', 'no_lang_code', 1, 'https://ror.org/04jhq1580 Azin (Czechia)'), (28852, 'https://ror.org/04jj9d877', 'en', 1, 'https://ror.org/04jj9d877 Graduate School of Government and European Studies'), (28853, 'https://ror.org/04jpmg381', 'en', 1, 'https://ror.org/04jpmg381 University of Health Science សាកលវិទ្យាល័យវិទ្យាសាស្ត្រសុខាភិបាល'), (28854, 'https://ror.org/04jpmwt24', 'no_lang_code', 1, 'https://ror.org/04jpmwt24 Bidhan Chandra Krishi Viswavidyalaya बिधान चन्द्र कृषि विश्वविद्यालय বিধানচন্দ্র কৃষি বিশ্ববিদ্যালয়'), (28855, 'https://ror.org/04jq39t97', 'en', 1, 'https://ror.org/04jq39t97 Mohammad Ali Jauhar University मोहम्मद अली जौहर युनिवर्सिटी'), (28856, 'https://ror.org/04jr76q91', 'no_lang_code', 1, 'https://ror.org/04jr76q91 Research Institute of Brewing and Malting (Czechia) Výzkumný ústav pivovarský a sladařský'), (28857, 'https://ror.org/04jscf286', 'en', 1, 'https://ror.org/04jscf286 Ottawa University'), (28858, 'https://ror.org/04jta8a45', 'en', 1, 'https://ror.org/04jta8a45 Ohio History Connection'); INSERT INTO `rors` VALUES (28859, 'https://ror.org/04jte2n37', 'en', 1, 'https://ror.org/04jte2n37 Khadim Ali Shah Bukhari Institute of Technology خادم علي شاه بخاري انسٽيٽيوٽ آف تيڪنالاجي'), (28860, 'https://ror.org/04jtrvy64', 'en', 1, 'https://ror.org/04jtrvy64 Mozyr State Pedagogical University named after I.P.Shamyakin Мазырскі дзяржаўны педагагічны ўніверсытэт імя І.П.Шамякіна'), (28861, 'https://ror.org/04jty2903', 'en', 1, 'https://ror.org/04jty2903 Nishinippon Institute of Technology 西日本工業大学'), (28862, 'https://ror.org/04jx76k82', 'en', 1, 'https://ror.org/04jx76k82 Korean Council for University Education 한국대학교육협의회'), (28863, 'https://ror.org/04jxdd920', 'en', 1, 'https://ror.org/04jxdd920 Newport Beach Public Library'), (28864, 'https://ror.org/04jzmk773', 'en', 1, 'https://ror.org/04jzmk773 Tafila Technical University جامعة الطفيلة التقنية'), (28865, 'https://ror.org/04k0d3t24', 'no_lang_code', 1, 'https://ror.org/04k0d3t24 Al-Kafaàt University جامعة الكفاءات'), (28866, 'https://ror.org/04k15jp43', 'en', 1, 'https://ror.org/04k15jp43 Russian State University of Tourism and Service Российский государственный университет туризма и сервиса'), (28867, 'https://ror.org/04k4re972', 'id', 1, 'https://ror.org/04k4re972 Universitas Sisingamangaraja XII Tapanuli'), (28868, 'https://ror.org/04k5ae675', 'en', 1, 'https://ror.org/04k5ae675 Friends of Peralta Hacienda Historical Park'), (28869, 'https://ror.org/04ka27d61', 'en', 1, 'https://ror.org/04ka27d61 Al Asyariah Mandar University Universitas Al Asyariah Mandar'), (28870, 'https://ror.org/04kc1rn33', 'no_lang_code', 1, 'https://ror.org/04kc1rn33 Rcd Radiokomunikace (Czechia)'), (28871, 'https://ror.org/04kc6x746', 'no_lang_code', 1, 'https://ror.org/04kc6x746 Otemae University 大手前大学'), (28872, 'https://ror.org/04ke3vc41', 'en', 1, 'https://ror.org/04ke3vc41 Qurtuba University of Science and Information Technology قرطبہ یونیورسٹی'), (28873, 'https://ror.org/04ke9yr06', 'en', 1, 'https://ror.org/04ke9yr06 Seisa University 星槎大学'), (28874, 'https://ror.org/04kep9f40', 'en', 1, 'https://ror.org/04kep9f40 Whale Museum'), (28875, 'https://ror.org/04kf25f32', 'en', 1, 'https://ror.org/04kf25f32 Shree Guru Gobind Singh Tricentenary University'), (28876, 'https://ror.org/04kfg7139', 'en', 1, 'https://ror.org/04kfg7139 Saint Petersburg State Conservatory named after N.A. Rimsky-Korsakov Санкт-Петербургская государственная консерватория имени Н. А. Римского-Корсакова'), (28877, 'https://ror.org/04kj21e96', 'en', 1, 'https://ror.org/04kj21e96 Society for Historians of the Early American Republic'), (28878, 'https://ror.org/04kjpwa96', 'en', 1, 'https://ror.org/04kjpwa96 Atomi University 跡見学園女子大学'), (28879, 'https://ror.org/04km2jv85', 'en', 1, 'https://ror.org/04km2jv85 National Estuarine Research Reserve Association Sistema Nacional de Reservas de Investigación Estuarina'), (28880, 'https://ror.org/04kn82687', 'en', 1, 'https://ror.org/04kn82687 McLean County Museum of History'), (28881, 'https://ror.org/04knmnr48', 'en', 1, 'https://ror.org/04knmnr48 Bukidnon State University'), (28882, 'https://ror.org/04kv23141', 'en', 1, 'https://ror.org/04kv23141 Institute of Marketing and Social Information Technology Академия маркетинга и социально-информационных технологий'), (28883, 'https://ror.org/04kxzy525', 'en', 1, 'https://ror.org/04kxzy525 Dr. Shakuntala Misra National Rehabilitation University डॉ शकुंतला मिश्रा राष्ट्रीय पुनर्वास विश्वविद्यालय'), (28884, 'https://ror.org/04m1rgc79', 'no_lang_code', 1, 'https://ror.org/04m1rgc79 Hagemann (Czechia)'), (28885, 'https://ror.org/04m2r0735', 'en', 1, 'https://ror.org/04m2r0735 Schechter Institute of Jewish Studies מכון שכטר למדעי היהדות'), (28886, 'https://ror.org/04m42eq84', 'en', 1, 'https://ror.org/04m42eq84 University of Shimane 島根県立大学'), (28887, 'https://ror.org/04m59hw59', 'en', 1, 'https://ror.org/04m59hw59 Musamus Merauke University Universitas Musamus Merauke'), (28888, 'https://ror.org/04m7rat64', 'en', 1, 'https://ror.org/04m7rat64 Guru Ravidas Ayurved University ਗੁਰੂ ਰਵੀਦਾਸ ਆਯੂਰਵੇਦ ਯੂਨੀਵਰਸਿਟੀ'), (28889, 'https://ror.org/04m8f9392', 'en', 1, 'https://ror.org/04m8f9392 Youngnam Foreign Language College 영남 외국어 대학'), (28890, 'https://ror.org/04m8vnf64', 'en', 1, 'https://ror.org/04m8vnf64 Historical Society of Washington'), (28891, 'https://ror.org/04ma34w27', 'en', 1, 'https://ror.org/04ma34w27 Latah County Historical Society'), (28892, 'https://ror.org/04mb01w79', 'en', 1, 'https://ror.org/04mb01w79 Moscow State Regional Institute of Humanities'), (28893, 'https://ror.org/04mbnaz72', 'en', 1, 'https://ror.org/04mbnaz72 Georgian Aviation University საქართველოს საავიაციო უნივერსიტეტი'), (28894, 'https://ror.org/04md71v26', 'en', 1, 'https://ror.org/04md71v26 Kerala University of Health Sciences കേരള ആരോഗ്യ സർവ്വകലാശാല'), (28895, 'https://ror.org/04mdddd78', 'en', 1, 'https://ror.org/04mdddd78 Minobusan University 身延山大学'), (28896, 'https://ror.org/04mdk1103', 'en', 1, 'https://ror.org/04mdk1103 Angeles University Foundation Pundasyong Pamantasang Angeles'), (28897, 'https://ror.org/04mdwrg75', 'en', 1, 'https://ror.org/04mdwrg75 Des Moines Art Center'), (28898, 'https://ror.org/04mez0d16', 'en', 1, 'https://ror.org/04mez0d16 Regional Museum in Teplice Regionální muzeum v Teplicích'), (28899, 'https://ror.org/04mfba740', 'en', 1, 'https://ror.org/04mfba740 Connecticut State Library'), (28900, 'https://ror.org/04mfefe23', 'en', 1, 'https://ror.org/04mfefe23 Kyoto Notre Dame University 京都ノートルダム女子大学'), (28901, 'https://ror.org/04mfnn392', 'no_lang_code', 1, 'https://ror.org/04mfnn392 VVV Most (Czechia)'), (28902, 'https://ror.org/04mgf6n79', 'en', 1, 'https://ror.org/04mgf6n79 Junagadh Agricultural University કૃષિ યુનિવર્સિટી, જૂનાગઢ'), (28903, 'https://ror.org/04mgy5815', 'en', 1, 'https://ror.org/04mgy5815 Kamsky Institute'), (28904, 'https://ror.org/04mj88k68', 'en', 1, 'https://ror.org/04mj88k68 Perry Institute for Marine Science'), (28905, 'https://ror.org/04mtaww72', 'en', 1, 'https://ror.org/04mtaww72 Kansas Oil Museum'), (28906, 'https://ror.org/04mtcj695', 'en', 1, 'https://ror.org/04mtcj695 Unibersidad ng Katimugang Mindanao University of Southern Mindanao'), (28907, 'https://ror.org/04mtv9h48', 'no_lang_code', 1, 'https://ror.org/04mtv9h48 Level (Czechia)'), (28908, 'https://ror.org/04mtx7258', 'en', 1, 'https://ror.org/04mtx7258 Peabody Essex Museum'), (28909, 'https://ror.org/04mvbr723', 'en', 1, 'https://ror.org/04mvbr723 Chuo Kikuu cha Mtakatifu Joseph Tanzania St. Joseph University In Tanzania'), (28910, 'https://ror.org/04mvvs945', 'en', 1, 'https://ror.org/04mvvs945 Leeds Jane Culbreth Library'), (28911, 'https://ror.org/04mw1hy69', 'en', 1, 'https://ror.org/04mw1hy69 Al Wataniya Private University الجامعة الوطنية الخاصة'), (28912, 'https://ror.org/04mwhg379', 'en', 1, 'https://ror.org/04mwhg379 Notre Dame University Pamantasang Notre Dame'), (28913, 'https://ror.org/04my2jj52', 'en', 1, 'https://ror.org/04my2jj52 Center for Strategic and International Studies'), (28914, 'https://ror.org/04myyf417', 'en', 1, 'https://ror.org/04myyf417 State Institute for Drug Control Státní Ústav pro Kontrolu Léčiv'), (28915, 'https://ror.org/04mz77s40', 'en', 1, 'https://ror.org/04mz77s40 El Paso Museum of History'), (28916, 'https://ror.org/04mzk2m46', 'en', 1, 'https://ror.org/04mzk2m46 Kamskij State Institute of Physical Culture Камский государственный институт физической культуры'), (28917, 'https://ror.org/04n0gan09', 'no_lang_code', 1, 'https://ror.org/04n0gan09 Hakel (Czechia)'), (28918, 'https://ror.org/04n0rvp85', 'no_lang_code', 1, 'https://ror.org/04n0rvp85 Tech-X Corporation (United States)'), (28919, 'https://ror.org/04n1dph88', 'id', 1, 'https://ror.org/04n1dph88 Universitas Sariputra Indonesia Tomohon'), (28920, 'https://ror.org/04n1has83', 'id', 1, 'https://ror.org/04n1has83 Universitas Sahid Surakarta'), (28921, 'https://ror.org/04n3hjx90', 'en', 1, 'https://ror.org/04n3hjx90 Association for Slavic East European and Eurasian Studies'), (28922, 'https://ror.org/04n3n6d60', 'en', 1, 'https://ror.org/04n3n6d60 Sher-e-Kashmir University of Agricultural Sciences and Technology of Jammu'), (28923, 'https://ror.org/04n6bbc07', 'en', 1, 'https://ror.org/04n6bbc07 The Millennium University মিলেনিয়াম বিশ্ববিদ্যালয়'), (28924, 'https://ror.org/04n6g3874', 'en', 1, 'https://ror.org/04n6g3874 Central Rappahannock Regional Library'), (28925, 'https://ror.org/04n731m62', 'en', 1, 'https://ror.org/04n731m62 Osaka Shoin Women''s University 大阪樟蔭女子大学'), (28926, 'https://ror.org/04n7td094', 'en', 1, 'https://ror.org/04n7td094 Calvin Coolidge Presidential Foundation'), (28927, 'https://ror.org/04n9bkr44', 'no_lang_code', 1, 'https://ror.org/04n9bkr44 Micronesia Conservation Trust'), (28928, 'https://ror.org/04na2vb51', 'no_lang_code', 1, 'https://ror.org/04na2vb51 Tsukuba Gakuin University 筑波学院大学'), (28929, 'https://ror.org/04nawkn69', 'en', 1, 'https://ror.org/04nawkn69 Bunsei University of Art 文星芸術大學'), (28930, 'https://ror.org/04ncvza93', 'en', 1, 'https://ror.org/04ncvza93 Charlotte-Mecklenburg Historic Landmarks Commission'), (28931, 'https://ror.org/04nk82x68', 'en', 1, 'https://ror.org/04nk82x68 University of South Carolina Sumter'), (28932, 'https://ror.org/04nmr9340', 'en', 1, 'https://ror.org/04nmr9340 Kyoto Saga University of Arts 京都嵯峨芸術大学'), (28933, 'https://ror.org/04nn8h763', 'id', 1, 'https://ror.org/04nn8h763 Universitas Azzahra'), (28934, 'https://ror.org/04nnm2t84', 'en', 1, 'https://ror.org/04nnm2t84 Institute of Information Technologies, Economy and Management ИНСТИТУТ ИНФОРМАЦИОННЫХ ТЕХНОЛОГИЙ, ЭКОНОМИКИ И МЕНЕДЖМЕНТА'), (28935, 'https://ror.org/04nrt0320', 'en', 1, 'https://ror.org/04nrt0320 Fairfax County Public Schools'), (28936, 'https://ror.org/04nvcbr70', 'en', 1, 'https://ror.org/04nvcbr70 Ryazan State Medical University named after Academician I.P. Pavlov Рязанский государственный медицинский университет имени академика I.P. Павлов'), (28937, 'https://ror.org/04nvvrb20', 'no_lang_code', 1, 'https://ror.org/04nvvrb20 Dakel (Czechia)'), (28938, 'https://ror.org/04nwnby06', 'en', 1, 'https://ror.org/04nwnby06 Bayshore Center at Bivalve'), (28939, 'https://ror.org/04nxva438', 'no_lang_code', 1, 'https://ror.org/04nxva438 Czech Consult (Czechia)'), (28940, 'https://ror.org/04nxx3204', 'en', 1, 'https://ror.org/04nxx3204 Delaware Agricultural Museum'), (28941, 'https://ror.org/04nxx3p41', 'en', 1, 'https://ror.org/04nxx3p41 Minsk Radioengineering College Минский Радиотехнический колледж Мі́нскі Радыётэхні́чны Кале́дж'), (28942, 'https://ror.org/04nxym641', 'en', 1, 'https://ror.org/04nxym641 Kazan State Agrarian University Казанский Государственный Аграрный Университет'), (28943, 'https://ror.org/04nyq6w82', 'en', 1, 'https://ror.org/04nyq6w82 Constitutional Rights Foundation Chicago'), (28944, 'https://ror.org/04nz95741', 'en', 1, 'https://ror.org/04nz95741 Tatar State University of Humanities and Education Татар дәүләт гуманитар-педагогика университеты Татарский государственный гуманитарно-педагогический университет'), (28945, 'https://ror.org/04p11wc95', 'en', 1, 'https://ror.org/04p11wc95 National Council for the Traditional Arts'), (28946, 'https://ror.org/04p1p1388', 'en', 1, 'https://ror.org/04p1p1388 Civil Defense Academy Академия гражданской защиты МЧС России'), (28947, 'https://ror.org/04p1tkq77', 'en', 1, 'https://ror.org/04p1tkq77 Podillya State Agrarian and Engineering University Подільський державний аграрно-технічний університет'), (28948, 'https://ror.org/04p3ez076', 'en', 1, 'https://ror.org/04p3ez076 Taipei City University of Science and Technology 臺北城市科技大學'), (28949, 'https://ror.org/04p4fx257', 'no_lang_code', 1, 'https://ror.org/04p4fx257 MSV Elektronika (Czechia)'), (28950, 'https://ror.org/04p5w4d81', 'no_lang_code', 1, 'https://ror.org/04p5w4d81 Vinci (Czechia)'), (28951, 'https://ror.org/04p9d0t65', 'no_lang_code', 1, 'https://ror.org/04p9d0t65 Mesing (Czechia)'), (28952, 'https://ror.org/04p9hvh53', 'en', 1, 'https://ror.org/04p9hvh53 Loei Rajabhat University มหาวิทยาลัยราชภัฏเลย'), (28953, 'https://ror.org/04p9k4b15', 'id', 1, 'https://ror.org/04p9k4b15 Universitas Merdeka Ponorogo'), (28954, 'https://ror.org/04p9zgs78', 'no_lang_code', 1, 'https://ror.org/04p9zgs78 Seigakuin University 聖学院大学'), (28955, 'https://ror.org/04pad1p35', 'id', 1, 'https://ror.org/04pad1p35 Universitas Cokroaminoto Ngayogyakarta, Universitas Cokroaminoto Yogyakarta'), (28956, 'https://ror.org/04pbams03', 'en', 1, 'https://ror.org/04pbams03 Perbanas Institute'), (28957, 'https://ror.org/04pejce58', 'en', 1, 'https://ror.org/04pejce58 Academy of the Interior Ministry of the Republic of Belarus Акадэмія Міністэрства ўнутраных спраў Рэспублікі Беларусь'), (28958, 'https://ror.org/04pfrr552', 'en', 1, 'https://ror.org/04pfrr552 International Institute of Business Education Международный институт бизнес-образования'), (28959, 'https://ror.org/04phxhf89', 'en', 1, 'https://ror.org/04phxhf89 San Francisco Museum of Modern Art'), (28960, 'https://ror.org/04pj3k910', 'no_lang_code', 1, 'https://ror.org/04pj3k910 CultureWorks (United States)'), (28961, 'https://ror.org/04pjsje19', 'en', 1, 'https://ror.org/04pjsje19 Great Books Foundation'), (28962, 'https://ror.org/04pmz9934', 'en', 1, 'https://ror.org/04pmz9934 Siberian State Automobile and Highway University Сибирская государственная автомобильно-дорожная академия'), (28963, 'https://ror.org/04ppdmy96', 'en', 1, 'https://ror.org/04ppdmy96 Tabarestan University مؤسسه آموزش عالی طبرستان'), (28964, 'https://ror.org/04pqedt90', 'en', 1, 'https://ror.org/04pqedt90 Baton Rouge Area Foundation'), (28965, 'https://ror.org/04pqmjc38', 'id', 1, 'https://ror.org/04pqmjc38 Universitas Putra Indonesia "YPTK"'), (28966, 'https://ror.org/04pvpk743', 'en', 1, 'https://ror.org/04pvpk743 University of New Hampshire at Manchester'), (28967, 'https://ror.org/04q1n2n82', 'en', 1, 'https://ror.org/04q1n2n82 Shizuoka University of Art and Culture 静岡文化芸術大学'), (28968, 'https://ror.org/04q1vc929', 'en', 1, 'https://ror.org/04q1vc929 Latin American Youth Center'), (28969, 'https://ror.org/04q3ga974', 'en', 1, 'https://ror.org/04q3ga974 Leeward Community College'), (28970, 'https://ror.org/04q5kpf78', 'no_lang_code', 1, 'https://ror.org/04q5kpf78 Archimedia Workshop (United States)'), (28971, 'https://ror.org/04q5p4a74', 'no_lang_code', 1, 'https://ror.org/04q5p4a74 Seisen University 清泉女子大学'), (28972, 'https://ror.org/04q5v8a44', 'en', 1, 'https://ror.org/04q5v8a44 Ulaanbaatar International University Олон улсын улаанбаатарын их сургууль'), (28973, 'https://ror.org/04q5vv384', 'en', 1, 'https://ror.org/04q5vv384 Hochschule für Angewandte Wissenschaften Hof Hof University of Applied Sciences'), (28974, 'https://ror.org/04q6vjy48', 'en', 1, 'https://ror.org/04q6vjy48 Holyoke Public Library'), (28975, 'https://ror.org/04q7z3j57', 'en', 1, 'https://ror.org/04q7z3j57 Saint Paul Public Library'), (28976, 'https://ror.org/04q98sg39', 'en', 1, 'https://ror.org/04q98sg39 Prague Botanical Garden'), (28977, 'https://ror.org/04q9yc293', 'id', 1, 'https://ror.org/04q9yc293 Universitas Tama Jagakarsa'), (28978, 'https://ror.org/04qa18r22', 'id', 1, 'https://ror.org/04qa18r22 Universitas Tidar'), (28979, 'https://ror.org/04qb0r423', 'en', 1, 'https://ror.org/04qb0r423 Georgian American University ქართულ-ამერიკული უნივერსიტეტი'), (28980, 'https://ror.org/04qbhz780', 'no_lang_code', 1, 'https://ror.org/04qbhz780 Mrag Americas (United States)'), (28981, 'https://ror.org/04qdhg582', 'en', 1, 'https://ror.org/04qdhg582 Jharkhand Rai University'), (28982, 'https://ror.org/04qdzzb42', 'en', 1, 'https://ror.org/04qdzzb42 Musashino Art University 武蔵野美術大学'), (28983, 'https://ror.org/04qfewz28', 'en', 1, 'https://ror.org/04qfewz28 Crimea State Medical University named after S. I. Georgievsky Кримський державний медичний університет ім. С. І. Георгієвського Кры́мский Госуда́рственный Медици́нский Университе́т и́мени С. И. Гео́ргиевского'), (28984, 'https://ror.org/04qgykh45', 'en', 1, 'https://ror.org/04qgykh45 Omsk State Medical University Омский государственный медицинский университет'), (28985, 'https://ror.org/04qhg3f29', 'cs', 1, 'https://ror.org/04qhg3f29 Střední uměleckoprůmyslová škola sklářská Valašské Meziříčí'), (28986, 'https://ror.org/04qj7fy53', 'en', 1, 'https://ror.org/04qj7fy53 Leavenworth Public Library'), (28987, 'https://ror.org/04qjkhc08', 'en', 1, 'https://ror.org/04qjkhc08 Mirpur University of Science and Technology میرپور یونیورسٹی براۓ سائنس اور ٹیکنولوجی'), (28988, 'https://ror.org/04qpsed22', 'en', 1, 'https://ror.org/04qpsed22 East Tennessee Historical Society'), (28989, 'https://ror.org/04qreff64', 'en', 1, 'https://ror.org/04qreff64 Episcopal Academy'), (28990, 'https://ror.org/04qst5w65', 'en', 1, 'https://ror.org/04qst5w65 Zaporizhzhya National University Запорожский национальный университет Запорізький національний університет'), (28991, 'https://ror.org/04qszbx34', 'en', 1, 'https://ror.org/04qszbx34 University of the Sacred Heart 聖心女子大学'), (28992, 'https://ror.org/04qvy9k41', 'no_lang_code', 1, 'https://ror.org/04qvy9k41 Evotec (United Kingdom)'), (28993, 'https://ror.org/04qw45d53', 'en', 1, 'https://ror.org/04qw45d53 Saint Louis Art Museum'), (28994, 'https://ror.org/04qwasw26', 'en', 1, 'https://ror.org/04qwasw26 Daekyeung University 대경대학교'), (28995, 'https://ror.org/04qxzae03', 'en', 1, 'https://ror.org/04qxzae03 University of Business in Wrocław Wyższa Szkoła Handlowa we Wrocławiu'), (28996, 'https://ror.org/04r04yh88', 'no_lang_code', 1, 'https://ror.org/04r04yh88 Shokei College 尚絅大学'), (28997, 'https://ror.org/04r0rbk24', 'en', 1, 'https://ror.org/04r0rbk24 Tarumanagara University'), (28998, 'https://ror.org/04r2bzn21', 'no_lang_code', 1, 'https://ror.org/04r2bzn21 Geomedia (Czechia)'), (28999, 'https://ror.org/04r30sv87', 'id', 1, 'https://ror.org/04r30sv87 Universitas Islam Kalimantan Muhammad Arsyad Al Banjary'), (29000, 'https://ror.org/04r3dny05', 'no_lang_code', 1, 'https://ror.org/04r3dny05 Vanung University 萬能科技大學'), (29001, 'https://ror.org/04r58gt57', 'en', 1, 'https://ror.org/04r58gt57 University of Applied Science and Technology دانشگاه جامع علمی-کاربردی جهاد دانشگاهی ارومیه'), (29002, 'https://ror.org/04r5d0y92', 'en', 1, 'https://ror.org/04r5d0y92 University of Kota कोटा विश्वविद्यालय'), (29003, 'https://ror.org/04r5fv176', 'id', 1, 'https://ror.org/04r5fv176 Universitas Putera Batam'), (29004, 'https://ror.org/04r5nt755', 'en', 1, 'https://ror.org/04r5nt755 Stockholm Academy of Dramatic Arts Stockholms dramatiska högskola'), (29005, 'https://ror.org/04r5ttx52', 'no_lang_code', 1, 'https://ror.org/04r5ttx52 Eprona (Czechia)'), (29006, 'https://ror.org/04r5xzk86', 'en', 1, 'https://ror.org/04r5xzk86 Zhytomyr Polytechnic State University Житомирський державний технологічний університет'), (29007, 'https://ror.org/04r8v5797', 'en', 1, 'https://ror.org/04r8v5797 Hagley Museum and Library'), (29008, 'https://ror.org/04rbrkq32', 'en', 1, 'https://ror.org/04rbrkq32 Yamanashi Prefectural University 山梨県立大学'), (29009, 'https://ror.org/04rc9cg08', 'en', 1, 'https://ror.org/04rc9cg08 American International University West Africa'), (29010, 'https://ror.org/04rdgrr80', 'en', 1, 'https://ror.org/04rdgrr80 Kaluga State University named after K.E.Tsiolkovski Калужский государственный университет имени К. Э. Циолковского'), (29011, 'https://ror.org/04rdq3258', 'en', 1, 'https://ror.org/04rdq3258 University "Eftimie Murgu" of Reşiţa'), (29012, 'https://ror.org/04rep4w03', 'en', 1, 'https://ror.org/04rep4w03 Izmail State University of Humanities Ізмаїльський державний гуманітарний університет'), (29013, 'https://ror.org/04rf2gx08', 'en', 1, 'https://ror.org/04rf2gx08 Alabama Law Enforcement Agency'), (29014, 'https://ror.org/04rf83d41', 'en', 1, 'https://ror.org/04rf83d41 East-Siberian Institute of the Ministry of Internal Affairs of the Russian Federation восточно-сибирский институт министерства внутренних дел российской федерации'), (29015, 'https://ror.org/04rfsd440', 'en', 1, 'https://ror.org/04rfsd440 Buryat State University Бурятский государственный университет'), (29016, 'https://ror.org/04rg3qa61', 'no_lang_code', 1, 'https://ror.org/04rg3qa61 Sungkonghoe University 성공회대학교'), (29017, 'https://ror.org/04rgv1h10', 'en', 1, 'https://ror.org/04rgv1h10 Hebrew Immigrant Aid Society'), (29018, 'https://ror.org/04rhkrb43', 'en', 1, 'https://ror.org/04rhkrb43 Caroline County Public Library'), (29019, 'https://ror.org/04rjm0720', 'en', 1, 'https://ror.org/04rjm0720 Spartanburg County Public Libraries'), (29020, 'https://ror.org/04rkxwr48', 'en', 1, 'https://ror.org/04rkxwr48 Jin-ai University 仁愛大学'), (29021, 'https://ror.org/04rmm3734', 'en', 1, 'https://ror.org/04rmm3734 National Radio Theater'), (29022, 'https://ror.org/04rnnme19', 'en', 1, 'https://ror.org/04rnnme19 Fairfield County District Library'), (29023, 'https://ror.org/04rry3397', 'en', 1, 'https://ror.org/04rry3397 Massachusetts Energy and Environmental Affairs'), (29024, 'https://ror.org/04rwm8k47', 'en', 1, 'https://ror.org/04rwm8k47 Bronx County Historical Society'), (29025, 'https://ror.org/04ryb0b77', 'en', 1, 'https://ror.org/04ryb0b77 Coastal States Stewardship Foundation'), (29026, 'https://ror.org/04s03g948', 'id', 1, 'https://ror.org/04s03g948 Universitas Dr. Soetomo'), (29027, 'https://ror.org/04s0vw952', 'no_lang_code', 1, 'https://ror.org/04s0vw952 Nuova Quasco (Italy)'), (29028, 'https://ror.org/04s222234', 'en', 1, 'https://ror.org/04s222234 Sambalpur University ସମ୍ବଲପୁର ବିଶ୍ବବିଦ୍ୟାଳୟ'), (29029, 'https://ror.org/04s45sk16', 'en', 1, 'https://ror.org/04s45sk16 Rhode Island PBS Foundation'), (29030, 'https://ror.org/04s6e0d17', 'no_lang_code', 1, 'https://ror.org/04s6e0d17 Nagoya Keizai University 名古屋経済大学'), (29031, 'https://ror.org/04s6jxt38', 'en', 1, 'https://ror.org/04s6jxt38 Sindh Agriculture University سنڌ زرعي يونيورسٽي ٽنڊو ڄام'), (29032, 'https://ror.org/04s8jdf66', 'en', 1, 'https://ror.org/04s8jdf66 LASALLE College of the Arts Maktab Seni Lasalle 拉萨尔艺术学院'), (29033, 'https://ror.org/04sb3zx15', 'id', 1, 'https://ror.org/04sb3zx15 Institut Pertanian Intan'), (29034, 'https://ror.org/04scp9x73', 'en', 1, 'https://ror.org/04scp9x73 Unibersidad nin San Antonio University of Saint Anthony'), (29035, 'https://ror.org/04sd0cj41', 'fr', 1, 'https://ror.org/04sd0cj41 Académie des Beaux-Arts'), (29036, 'https://ror.org/04sdbjc29', 'en', 1, 'https://ror.org/04sdbjc29 Kristal University Universiteti Kristal'), (29037, 'https://ror.org/04se5tt51', 'en', 1, 'https://ror.org/04se5tt51 Bikaner Technical University बीकानेर तकनीकी विश्विद्यालय'), (29038, 'https://ror.org/04sfnmc71', 'en', 1, 'https://ror.org/04sfnmc71 Glocal University ग्लोकल युनिवर्सिटी'), (29039, 'https://ror.org/04sfqar89', 'en', 1, 'https://ror.org/04sfqar89 National Marine Life Center'), (29040, 'https://ror.org/04sjvrk20', 'no_lang_code', 1, 'https://ror.org/04sjvrk20 Maharaja Ganga Singh University महाराजा गंगा सिंह विश्वविधालय'), (29041, 'https://ror.org/04spwz235', 'en', 1, 'https://ror.org/04spwz235 American University of Science and Technology Université américaine de sciences et technologie الجامعة الأميركية للعلوم والتكنولوجيا'), (29042, 'https://ror.org/04srpf911', 'en', 1, 'https://ror.org/04srpf911 Kharkiv Petro Vasylenko National Technical University of Agriculture Харківський національний технічний університет сільського господарства ім. Петра Василенка Харьковский национальный технический университет сельского хозяйства имени Петра Василенко'), (29043, 'https://ror.org/04srwt726', 'no_lang_code', 1, 'https://ror.org/04srwt726 HPH (Czechia)'), (29044, 'https://ror.org/04svrs371', 'id', 1, 'https://ror.org/04svrs371 Universitas Bangun Nusantara'), (29045, 'https://ror.org/04sw18p91', 'en', 1, 'https://ror.org/04sw18p91 Murmansk State Technical University Мурманский государственный технический университет'), (29046, 'https://ror.org/04swmc963', 'en', 1, 'https://ror.org/04swmc963 Pilgrim Hall Museum'), (29047, 'https://ror.org/04swndt45', 'en', 1, 'https://ror.org/04swndt45 History Colorado Center'), (29048, 'https://ror.org/04sxw1w14', 'en', 1, 'https://ror.org/04sxw1w14 St. Theresa''s Medical University of Yerevan'), (29049, 'https://ror.org/04synqw60', 'en', 1, 'https://ror.org/04synqw60 Rajamangala University of Technology Lanna มหาวิทยาลัยเทคโนโลยีราชมงคลล้านนา'), (29050, 'https://ror.org/04sysb357', 'en', 1, 'https://ror.org/04sysb357 Library of Virginia'), (29051, 'https://ror.org/04szbnb37', 'no_lang_code', 1, 'https://ror.org/04szbnb37 Vision Consulting Automotive (Czechia)'), (29052, 'https://ror.org/04szp2m52', 'en', 1, 'https://ror.org/04szp2m52 Hsiuping University of Science and Technology 修平科技大學'), (29053, 'https://ror.org/04t09e441', 'en', 1, 'https://ror.org/04t09e441 Volga Business Institute'), (29054, 'https://ror.org/04t1qn077', 'en', 1, 'https://ror.org/04t1qn077 Kyoto Koka Women''s University 京都光華女子大学'), (29055, 'https://ror.org/04t27vc74', 'id', 1, 'https://ror.org/04t27vc74 Universitas Widya Kartika'), (29056, 'https://ror.org/04t2ykm02', 'en', 1, 'https://ror.org/04t2ykm02 Minsk State Linguistic University Минский государственный лингвистический университет Мінскі дзяржаўны лінгвістычны ўніверсітэт'), (29057, 'https://ror.org/04t3peq77', 'id', 1, 'https://ror.org/04t3peq77 Institut Manajemen Koperasi Indonesia'), (29058, 'https://ror.org/04t50yw64', 'en', 1, 'https://ror.org/04t50yw64 Islamic Azad University, Shahinshahr Branch شاهين شهر،شایین شهر'), (29059, 'https://ror.org/04t6tw838', 'en', 1, 'https://ror.org/04t6tw838 Siberian State University Geosystems and Technology Федеральное государственное бюджетное образовательное учреждение высшего образования Сибирский государственный университет геосистем и технологий'), (29060, 'https://ror.org/04t7gxr16', 'en', 1, 'https://ror.org/04t7gxr16 Communication University of Zhejiang 浙江传媒学院'), (29061, 'https://ror.org/04t98w133', 'en', 1, 'https://ror.org/04t98w133 Pacific Salmon Commission'), (29062, 'https://ror.org/04taat540', 'no_lang_code', 1, 'https://ror.org/04taat540 Česká Bioklimatologická Společnost (Czechia)'), (29063, 'https://ror.org/04tcj6w24', 'en', 1, 'https://ror.org/04tcj6w24 Gifu University of Medical Science 岐阜医療科学大学'), (29064, 'https://ror.org/04teq3d43', 'no_lang_code', 1, 'https://ror.org/04teq3d43 Akustika Praha (Czechia)'), (29065, 'https://ror.org/04tf3kx07', 'en', 1, 'https://ror.org/04tf3kx07 Astrakhan State University Астраханский государственный университет'), (29066, 'https://ror.org/04tgeej53', 'en', 1, 'https://ror.org/04tgeej53 American University of Madaba الجامعة الأمريكية في مادبا'), (29067, 'https://ror.org/04tj7ta70', 'en', 1, 'https://ror.org/04tj7ta70 Historical Society of Western Pennsylvania'), (29068, 'https://ror.org/04tp2w352', 'en', 1, 'https://ror.org/04tp2w352 Hagoromo International University 羽衣国際大学'), (29069, 'https://ror.org/04ty4mp95', 'en', 1, 'https://ror.org/04ty4mp95 Jorvik Viking Centre'), (29070, 'https://ror.org/04ty8dh37', 'en', 1, 'https://ror.org/04ty8dh37 Delta State University'), (29071, 'https://ror.org/04tydb537', 'en', 1, 'https://ror.org/04tydb537 New Hampshire Department of Environmental Services'), (29072, 'https://ror.org/04v071k95', 'en', 1, 'https://ror.org/04v071k95 Dagestan State Technical University Дагестанский государственный технический университет'), (29073, 'https://ror.org/04v0eyc78', 'en', 1, 'https://ror.org/04v0eyc78 Carlsbad City Library'), (29074, 'https://ror.org/04v42p132', 'no_lang_code', 1, 'https://ror.org/04v42p132 ETC Consulting'), (29075, 'https://ror.org/04v4fdz58', 'no_lang_code', 1, 'https://ror.org/04v4fdz58 Advanced Technology Group (Czechia)'), (29076, 'https://ror.org/04v55rk33', 'en', 1, 'https://ror.org/04v55rk33 St. Louis Public Schools'), (29077, 'https://ror.org/04v5m9m10', 'en', 1, 'https://ror.org/04v5m9m10 New England Conservatory of Music'), (29078, 'https://ror.org/04v6fdx75', 'no_lang_code', 1, 'https://ror.org/04v6fdx75 Sako Brno (Czechia)'), (29079, 'https://ror.org/04v7cww51', 'id', 1, 'https://ror.org/04v7cww51 Universitas Antakusuma'), (29080, 'https://ror.org/04v7yv031', 'en', 1, 'https://ror.org/04v7yv031 Lanzhou University of Finance and Economics 兰州财经大学'), (29081, 'https://ror.org/04v84zt52', 'en', 1, 'https://ror.org/04v84zt52 Children''s Hospital of Western Ontario'), (29082, 'https://ror.org/04v86ht05', 'en', 1, 'https://ror.org/04v86ht05 The Animas Museum'), (29083, 'https://ror.org/04v9hhn38', 'en', 1, 'https://ror.org/04v9hhn38 International Academy of Business and Management Международная Академия Бизнеса и Управления'), (29084, 'https://ror.org/04vb9qy63', 'en', 1, 'https://ror.org/04vb9qy63 Ishikawa Prefectural Nursing University 石川県立看護大学'), (29085, 'https://ror.org/04vew1z32', 'en', 1, 'https://ror.org/04vew1z32 Kim Chaek University of Technology 김책공업종합대학'), (29086, 'https://ror.org/04vfzt688', 'en', 1, 'https://ror.org/04vfzt688 Archaeological Institute of America'), (29087, 'https://ror.org/04vh2cv64', 'en', 1, 'https://ror.org/04vh2cv64 Miyazaki Prefectural Nursing University 宮崎県立看護大学'), (29088, 'https://ror.org/04vj5r404', 'en', 1, 'https://ror.org/04vj5r404 Honam University 호남대학교'), (29089, 'https://ror.org/04vk90r05', 'en', 1, 'https://ror.org/04vk90r05 Sochi Institute of Economics and Information Technology Сочинский Институт Экономики И Информационных Технологий'), (29090, 'https://ror.org/04vts6h49', 'no_lang_code', 1, 'https://ror.org/04vts6h49 Kardan University دانشگاه کاردان دکاردان پوهنتون'), (29091, 'https://ror.org/04vxqfe68', 'en', 1, 'https://ror.org/04vxqfe68 Pathumthani University มหาวิทยาลัยปทุมธานี'), (29092, 'https://ror.org/04vympt94', 'en', 1, 'https://ror.org/04vympt94 Allama Iqbal Open University علامہ اقبال اوپن یونیورسٹی'), (29093, 'https://ror.org/04vzsq290', 'en', 1, 'https://ror.org/04vzsq290 Mississippi Alabama Sea Grant Consortium'), (29094, 'https://ror.org/04w00w616', 'en', 1, 'https://ror.org/04w00w616 Vardhaman Mahaveer Open University वर्धमान महावीर खुला विश्वविद्यालय'), (29095, 'https://ror.org/04w11h594', 'en', 1, 'https://ror.org/04w11h594 Pacific Science Center'), (29096, 'https://ror.org/04w6xt508', 'en', 1, 'https://ror.org/04w6xt508 University of Minnesota Crookston'), (29097, 'https://ror.org/04w7k2121', 'no_lang_code', 1, 'https://ror.org/04w7k2121 University of Fukuchiyama 福知山公立大学'), (29098, 'https://ror.org/04w893s72', 'en', 1, 'https://ror.org/04w893s72 David Tvildiani Medical University დავით ტვილდიანის სახ. სამედიცინო უნივერსიტეტი'), (29099, 'https://ror.org/04w8r2k84', 'no_lang_code', 1, 'https://ror.org/04w8r2k84 Nova Photonics (United States)'), (29100, 'https://ror.org/04w97d535', 'en', 1, 'https://ror.org/04w97d535 Independent Filmmaker Project'), (29101, 'https://ror.org/04wd4rg36', 'ro', 1, 'https://ror.org/04wd4rg36 Universitatea de Stat din Tiraspol'), (29102, 'https://ror.org/04wdt0z89', 'en', 1, 'https://ror.org/04wdt0z89 Hochschule Rhein-Waal Rhine-Waal University of Applied Sciences'), (29103, 'https://ror.org/04wdw1j96', 'en', 1, 'https://ror.org/04wdw1j96 Volzhsky University after V.N. Tatischev Волжский Университет им. В.Н. Татищева'), (29104, 'https://ror.org/04wewdt41', 'en', 1, 'https://ror.org/04wewdt41 Russian Academy of Advocacy and Notaries Российская академия адвокатуры и нотариата'), (29105, 'https://ror.org/04wf8g409', 'en', 1, 'https://ror.org/04wf8g409 Pushkin Leningrad State University Ленинградский государственный университет имени А. С. Пушкина'), (29106, 'https://ror.org/04wfkgd43', 'en', 1, 'https://ror.org/04wfkgd43 College of Social and Media Culture Wyższa Szkoła Kultury Społecznej i Medialnej w Toruniu'), (29107, 'https://ror.org/04whwem28', 'en', 1, 'https://ror.org/04whwem28 Japan College of Social Work 日本社会事業大学'), (29108, 'https://ror.org/04wjmn281', 'en', 1, 'https://ror.org/04wjmn281 Kemerovo Institute of Food Science and Technology Кемеровский технологический институт пищевой промышленности'), (29109, 'https://ror.org/04wk53b95', 'en', 1, 'https://ror.org/04wk53b95 University of Djibouti Université de djibouti'), (29110, 'https://ror.org/04wn0mt15', 'en', 1, 'https://ror.org/04wn0mt15 Washington Military Department'), (29111, 'https://ror.org/04wtn5j93', 'en', 1, 'https://ror.org/04wtn5j93 Thai Binh University of Medicine and Pharmacy Trường Đại học Y Dược Thái Bình'), (29112, 'https://ror.org/04wv1t552', 'no_lang_code', 1, 'https://ror.org/04wv1t552 T-Soft (Czechia)'), (29113, 'https://ror.org/04wv2vw16', 'en', 1, 'https://ror.org/04wv2vw16 Surindra Rajabhat University มหาวิทยาลัยราชภัฏสุรินทร์'), (29114, 'https://ror.org/04wvk1327', 'en', 1, 'https://ror.org/04wvk1327 Uttarakhand Open University उत्तराखण्ड मुक्त विश्वविद्यालय'), (29115, 'https://ror.org/04wwgp209', 'en', 1, 'https://ror.org/04wwgp209 Hebron University جامعة الخليل'), (29116, 'https://ror.org/04x0kmc95', 'en', 1, 'https://ror.org/04x0kmc95 Indianapolis Museum of Art'), (29117, 'https://ror.org/04x1rx451', 'en', 1, 'https://ror.org/04x1rx451 Calicut University Employees Union കാലിക്കറ്റ് യൂണിവേഴ്സിറ്റി എംപ്ലോയീസ് യൂണിയൻ'), (29118, 'https://ror.org/04x2nbf55', 'no_lang_code', 1, 'https://ror.org/04x2nbf55 Synthesia (Czechia)'), (29119, 'https://ror.org/04x499113', 'en', 1, 'https://ror.org/04x499113 Pundra University of Science and Technology পুন্ড্র ইউনিভার্সিটি অফ সায়েন্স অ্যান্ড টেকনোলজি'), (29120, 'https://ror.org/04x4bgc51', 'fr', 1, 'https://ror.org/04x4bgc51 Institut du Sahel'), (29121, 'https://ror.org/04x60fh82', 'en', 1, 'https://ror.org/04x60fh82 Akademia Muzyczna im. Feliksa Nowowiejskiego w Bydgoszczy Feliks Nowowiejski Academy of Music in Bydgoszcz'), (29122, 'https://ror.org/04x649j07', 'en', 1, 'https://ror.org/04x649j07 Cebu Technological University'), (29123, 'https://ror.org/04x72rc30', 'en', 1, 'https://ror.org/04x72rc30 Delaware Art Museum'), (29124, 'https://ror.org/04x7zja85', 'en', 1, 'https://ror.org/04x7zja85 Cedar Rapids Museum of Art'), (29125, 'https://ror.org/04x8bys48', 'id', 1, 'https://ror.org/04x8bys48 Universitas Widya Mataram Yogyakarta'), (29126, 'https://ror.org/04xak9f33', 'en', 1, 'https://ror.org/04xak9f33 University College of Social Sciences Wyższa Szkoła Lingwistyczna'), (29127, 'https://ror.org/04xampv42', 'en', 1, 'https://ror.org/04xampv42 Sehan University 세한대학교'), (29128, 'https://ror.org/04xbyac61', 'en', 1, 'https://ror.org/04xbyac61 Danville Community College'), (29129, 'https://ror.org/04xbzq724', 'no_lang_code', 1, 'https://ror.org/04xbzq724 VF (Czechia)'), (29130, 'https://ror.org/04xc7z697', 'en', 1, 'https://ror.org/04xc7z697 Navoi State Mining Institute'), (29131, 'https://ror.org/04xg2vm10', 'en', 1, 'https://ror.org/04xg2vm10 Atlanta History Center'), (29132, 'https://ror.org/04xgmcn83', 'en', 1, 'https://ror.org/04xgmcn83 American Folklore Society'), (29133, 'https://ror.org/04xhj8132', 'en', 1, 'https://ror.org/04xhj8132 Moscow State Technical University of Civil Aviation Московский государственный технический университет гражданской авиации'), (29134, 'https://ror.org/04xmkh626', 'id', 1, 'https://ror.org/04xmkh626 Universitas 45 Surabaya'), (29135, 'https://ror.org/04xpe4755', 'en', 1, 'https://ror.org/04xpe4755 Lehman College Art Gallery'), (29136, 'https://ror.org/04xs0cw05', 'en', 1, 'https://ror.org/04xs0cw05 Kyoto University of Art and Design 京都造形芸術大学'), (29137, 'https://ror.org/04xt0wn96', 'en', 1, 'https://ror.org/04xt0wn96 Diamond Harbour Women''s University ডায়মন্ড হারবার মহিলা বিশ্ববিদ্যালয়'), (29138, 'https://ror.org/04xxbqf41', 'no_lang_code', 1, 'https://ror.org/04xxbqf41 Symbiom (Czechia)'), (29139, 'https://ror.org/04xz43j90', 'en', 1, 'https://ror.org/04xz43j90 Kwangju Women''s University 광주여자대학교'), (29140, 'https://ror.org/04y1dd550', 'en', 1, 'https://ror.org/04y1dd550 Philadelphia Department of Records'), (29141, 'https://ror.org/04y6y6h45', 'en', 1, 'https://ror.org/04y6y6h45 Karnataka State Law University ಕರ್ನಾಟಕ ರಾಜ್ಯ ಕಾನೂನು ವಿಶ್ವವಿದ್ಯಾಲಯ'), (29142, 'https://ror.org/04y7f2054', 'en', 1, 'https://ror.org/04y7f2054 Concord Public Schools and Concord-Carlisle Regional School District'), (29143, 'https://ror.org/04y821h28', 'en', 1, 'https://ror.org/04y821h28 Georgia Historical Society'), (29144, 'https://ror.org/04y99m182', 'en', 1, 'https://ror.org/04y99m182 Belarusian State Agricultural Academy Беларуская дзяржаўная сельскагаспадарчая акадэмія'), (29145, 'https://ror.org/04ybx1t57', 'en', 1, 'https://ror.org/04ybx1t57 Krasnoyarsk State Academy of Music and Theatre Красноярская государственная академия музыки и театра'), (29146, 'https://ror.org/04ye9fj05', 'en', 1, 'https://ror.org/04ye9fj05 Surgut State Pedagogical University Сургутский Государственный Педагогический Университет'), (29147, 'https://ror.org/04yff2m38', 'id', 1, 'https://ror.org/04yff2m38 Institut Sains dan Teknologi TD Pardede TD Pardede Institute of Science and Technology'), (29148, 'https://ror.org/04yh6v913', 'en', 1, 'https://ror.org/04yh6v913 North Asia University ノースアジア大学'), (29149, 'https://ror.org/04yh8vz11', 'ro', 1, 'https://ror.org/04yh8vz11 Universitatea George Bacovia Bacau'), (29150, 'https://ror.org/04yhjzf92', 'en', 1, 'https://ror.org/04yhjzf92 Savannah College of Art and Design'), (29151, 'https://ror.org/04yhntq62', 'en', 1, 'https://ror.org/04yhntq62 Krishna University'), (29152, 'https://ror.org/04yjdkj62', 'en', 1, 'https://ror.org/04yjdkj62 Sultan Kudarat State University'), (29153, 'https://ror.org/04yk1tp18', 'en', 1, 'https://ror.org/04yk1tp18 Bost University دانشگاه بست'), (29154, 'https://ror.org/04yntn793', 'id', 1, 'https://ror.org/04yntn793 Universitas Darma Persada'), (29155, 'https://ror.org/04yqxxq63', 'en', 1, 'https://ror.org/04yqxxq63 Zhongnan University of Economics and Law 中南财经政法大学'), (29156, 'https://ror.org/04yrwqa21', 'en', 1, 'https://ror.org/04yrwqa21 Islamic Azad University Shahr-e-Rey دانشگاه آزاد اسلامی واحد شهرری'), (29157, 'https://ror.org/04ysgxa85', 'en', 1, 'https://ror.org/04ysgxa85 Toho Gakuen School of Music 桐朋学園 音楽部門'), (29158, 'https://ror.org/04yvwfh57', 'en', 1, 'https://ror.org/04yvwfh57 Alpena Community College'), (29159, 'https://ror.org/04yz5fm13', 'en', 1, 'https://ror.org/04yz5fm13 Mount Ida College'), (29160, 'https://ror.org/04z1ced74', 'en', 1, 'https://ror.org/04z1ced74 Cascadia Research Collective'), (29161, 'https://ror.org/04z33a802', 'en', 1, 'https://ror.org/04z33a802 Istanbul Yeni Yüzyıl University Yeni Yüzyıl Üniversitesi'), (29162, 'https://ror.org/04z37sn09', 'en', 1, 'https://ror.org/04z37sn09 Eurasia International University Եվրասիա Միջազգային Համալսարան'), (29163, 'https://ror.org/04z3dv266', 'en', 1, 'https://ror.org/04z3dv266 Kostroma State Agricultural Academy Костромская государственная сельскохозяйственная академия'), (29164, 'https://ror.org/04z3jpx43', 'en', 1, 'https://ror.org/04z3jpx43 Shenyang Conservatory of Music 沈阳音乐学院'), (29165, 'https://ror.org/04z484c04', 'id', 1, 'https://ror.org/04z484c04 Universitas Borobudur'), (29166, 'https://ror.org/04z4g6e62', 'en', 1, 'https://ror.org/04z4g6e62 Pavlo Tychyna Uman State Pedagogical University Уманский государственный педагогический университет имени Павла Тычины Уманський державний педагогічний університет імені Павла Тичини'), (29167, 'https://ror.org/04z5xnd65', 'en', 1, 'https://ror.org/04z5xnd65 Ion Mincu University of Architecture and Urbanism Universitatea de Arhitectură și Urbanism Ion Mincu'), (29168, 'https://ror.org/04za16w58', 'en', 1, 'https://ror.org/04za16w58 Open Institute of Law Открытый юридический институт'), (29169, 'https://ror.org/04zax5940', 'en', 1, 'https://ror.org/04zax5940 National Council on Public History'), (29170, 'https://ror.org/04zbaj011', 'no_lang_code', 1, 'https://ror.org/04zbaj011 Seinan Jo Gakuin University 西南女学院大学'), (29171, 'https://ror.org/04zbzhb67', 'en', 1, 'https://ror.org/04zbzhb67 Danish National Academy of Music'), (29172, 'https://ror.org/04zc7sw86', 'en', 1, 'https://ror.org/04zc7sw86 Serang Raya University Universitas Serang Raya'), (29173, 'https://ror.org/04zj95y60', 'en', 1, 'https://ror.org/04zj95y60 Dravidian University द्रविड़ विश्वविद्यालय திராவிடப் பல்கலைக்கழகம் ద్రవిడ విశ్వవిద్యాలయము ದ್ರಾವಿಡ ವಿಶ್ವವಿದ್ಯಾನಿಲಯ'), (29174, 'https://ror.org/04zjz7s05', 'en', 1, 'https://ror.org/04zjz7s05 Nizhyn Gogol State University Нежинский государственный университет имени Николая Гоголя Ніжинський державний університет імені Миколи Гоголя'), (29175, 'https://ror.org/04zn7jb34', 'en', 1, 'https://ror.org/04zn7jb34 Moscow State Institute of International Relations Московский государственный институт международных отношений'), (29176, 'https://ror.org/04zqz4f11', 'id', 1, 'https://ror.org/04zqz4f11 Universitas Wiraraja'), (29177, 'https://ror.org/04zrzwm74', 'id', 1, 'https://ror.org/04zrzwm74 Universitas Langlangbuana'), (29178, 'https://ror.org/04zs74560', 'no_lang_code', 1, 'https://ror.org/04zs74560 Společnost pro Obnovu Vesnice a Malého Města'), (29179, 'https://ror.org/04zskzc62', 'en', 1, 'https://ror.org/04zskzc62 Eastern Samar State University'), (29180, 'https://ror.org/04ztbty92', 'id', 1, 'https://ror.org/04ztbty92 Institut Ilmu Sosial dan Ilmu Politik Jakarta'), (29181, 'https://ror.org/04zttnq06', 'en', 1, 'https://ror.org/04zttnq06 Nakhimov Naval Academy ЧВВМУ им П.С. Нахимова'), (29182, 'https://ror.org/04zvnyb42', 'en', 1, 'https://ror.org/04zvnyb42 Bursa Orhangazi University Bursa Orhangazi Üniversitesi'), (29183, 'https://ror.org/04zvt5792', 'no_lang_code', 1, 'https://ror.org/04zvt5792 Four Elements Capital (United Kingdom)'), (29184, 'https://ror.org/04zvxqj76', 'en', 1, 'https://ror.org/04zvxqj76 Benicia Public Library'), (29185, 'https://ror.org/04zwjnc85', 'en', 1, 'https://ror.org/04zwjnc85 Carmel Unified School District'), (29186, 'https://ror.org/04zwvmd78', 'en', 1, 'https://ror.org/04zwvmd78 New Castle Historical Society'), (29187, 'https://ror.org/04zxaa490', 'en', 1, 'https://ror.org/04zxaa490 Invertis University'), (29188, 'https://ror.org/04zxxm138', 'en', 1, 'https://ror.org/04zxxm138 Reading Area Community College'), (29189, 'https://ror.org/04zykg256', 'en', 1, 'https://ror.org/04zykg256 Miami-Dade Public Library System'), (29190, 'https://ror.org/04zzths72', 'en', 1, 'https://ror.org/04zzths72 Ansan University 안산대학교'), (29191, 'https://ror.org/050041j09', 'en', 1, 'https://ror.org/050041j09 Philadelphia Museum of Art'), (29192, 'https://ror.org/050058296', 'en', 1, 'https://ror.org/050058296 Wake County Government'), (29193, 'https://ror.org/05007jy86', 'id', 1, 'https://ror.org/05007jy86 Institut Teknologi Adhi Tama Surabaya'), (29194, 'https://ror.org/05008jp45', 'en', 1, 'https://ror.org/05008jp45 Northwest University of Politics and Law 西北政法大学'), (29195, 'https://ror.org/0500bxx34', 'no_lang_code', 1, 'https://ror.org/0500bxx34 Elmarco (Czechia)'), (29196, 'https://ror.org/0500dec37', 'en', 1, 'https://ror.org/0500dec37 Packwood House Museum'), (29197, 'https://ror.org/05028dx30', 'en', 1, 'https://ror.org/05028dx30 University of Medicine 2 Yangon ဆေးတက္ကသိုလ်၂ ရန်ကုန်'), (29198, 'https://ror.org/0502vx353', 'en', 1, 'https://ror.org/0502vx353 Lviv National Academy of Arts Lwowska Narodowa Akademia Sztuki Львовская национальная академия искусств Львівська національна академія мистецтв'), (29199, 'https://ror.org/05055ck28', 'en', 1, 'https://ror.org/05055ck28 Calvin University 칼빈대학교'), (29200, 'https://ror.org/0505t6e30', 'no_lang_code', 1, 'https://ror.org/0505t6e30 MikroChem LKT (Czechia)'), (29201, 'https://ror.org/0505vt318', 'en', 1, 'https://ror.org/0505vt318 Siberian Academy of Law, Economics and Management Сибирская академия права, экономики и управления'), (29202, 'https://ror.org/0506j4s84', 'pl', 1, 'https://ror.org/0506j4s84 Wyższa Szkoła Promocji w Warszawie'), (29203, 'https://ror.org/05077g455', 'en', 1, 'https://ror.org/05077g455 Save Ellis Island'), (29204, 'https://ror.org/05081wb05', 'no_lang_code', 1, 'https://ror.org/05081wb05 Yang-En University 仰恩大学'), (29205, 'https://ror.org/050901n67', 'en', 1, 'https://ror.org/050901n67 Belarusian State Academy of Music Беларуская дзяржаўная акадэмія музыкі Белорусская государственная академия музыки'), (29206, 'https://ror.org/0509ndt57', 'en', 1, 'https://ror.org/0509ndt57 Namseoul University 남서울대학교'), (29207, 'https://ror.org/050a69869', 'en', 1, 'https://ror.org/050a69869 Little Compton Historical Society'), (29208, 'https://ror.org/050b5gf77', 'en', 1, 'https://ror.org/050b5gf77 Museum of Photographic Arts'), (29209, 'https://ror.org/050bktx08', 'en', 1, 'https://ror.org/050bktx08 Kovrov State Technological Academy named after V A Degtyarev Ковровская государственная технологическая академия'), (29210, 'https://ror.org/050cz4220', 'en', 1, 'https://ror.org/050cz4220 Vizcaya Museum & Gardens'), (29211, 'https://ror.org/050dyg448', 'en', 1, 'https://ror.org/050dyg448 Azerbaijan University of Languages Azərbaycan Dillər Universiteti Азербайджанский университет языков'), (29212, 'https://ror.org/050evx807', 'no_lang_code', 1, 'https://ror.org/050evx807 SVOS (Czechia)'); INSERT INTO `rors` VALUES (29213, 'https://ror.org/050fbe140', 'en', 1, 'https://ror.org/050fbe140 Hong Kong Academy for Performing Arts 香港演藝學院'), (29214, 'https://ror.org/050hatp65', 'en', 1, 'https://ror.org/050hatp65 Capitol University'), (29215, 'https://ror.org/050k36w08', 'en', 1, 'https://ror.org/050k36w08 Tchaikovsky State Institute of Physical Culture Чайковский государственный институт физической культуры'), (29216, 'https://ror.org/050ky8958', 'en', 1, 'https://ror.org/050ky8958 Stearns History Museum'), (29217, 'https://ror.org/050m5b118', 'en', 1, 'https://ror.org/050m5b118 Mahamakut Buddhist University มหาวิทยาลัยมหามกุฏราชวิทยาลัย'), (29218, 'https://ror.org/050mny455', 'no_lang_code', 1, 'https://ror.org/050mny455 Polymath Research (United States)'), (29219, 'https://ror.org/050n8gz83', 'en', 1, 'https://ror.org/050n8gz83 University of Central Thailand มหาวิทยาลัยภาคกลาง'), (29220, 'https://ror.org/050ngd429', 'no_lang_code', 1, 'https://ror.org/050ngd429 Akademie (Czechia)'), (29221, 'https://ror.org/050nj1e51', 'en', 1, 'https://ror.org/050nj1e51 Virginia Department of Historic Resources'), (29222, 'https://ror.org/050nxyk29', 'en', 1, 'https://ror.org/050nxyk29 Tokyo College of Music 東京音楽大学'), (29223, 'https://ror.org/050p4pc72', 'id', 1, 'https://ror.org/050p4pc72 Universitas 17 Agustus 1945 Samarinda'), (29224, 'https://ror.org/050pbhp67', 'en', 1, 'https://ror.org/050pbhp67 Consortium for Coordination of Research activities Concerning the Venice Lagoon System Consorzio per il coordinamento delle ricerche inerenti al sistema lagunare di Venezia'), (29225, 'https://ror.org/050r2qc20', 'en', 1, 'https://ror.org/050r2qc20 Kyushu University of Nursing and Social Welfare 九州看護福祉大学'), (29226, 'https://ror.org/050rnbb37', 'en', 1, 'https://ror.org/050rnbb37 Shomal University دانشگاه شمال'), (29227, 'https://ror.org/050t9a084', 'no_lang_code', 1, 'https://ror.org/050t9a084 BIOPHARM (Czechia)'), (29228, 'https://ror.org/050trak22', 'no_lang_code', 1, 'https://ror.org/050trak22 Cervenka Consulting (Czechia)'), (29229, 'https://ror.org/050xprb61', 'en', 1, 'https://ror.org/050xprb61 Pueblo of Zuni'), (29230, 'https://ror.org/050yj3e54', 'en', 1, 'https://ror.org/050yj3e54 Tohono O''odham Nation'), (29231, 'https://ror.org/050z7kr33', 'it', 1, 'https://ror.org/050z7kr33 Fondazione Lelio e Lisli Basso'), (29232, 'https://ror.org/0513d6k55', 'en', 1, 'https://ror.org/0513d6k55 Allentown Public Library'), (29233, 'https://ror.org/0514m3k39', 'en', 1, 'https://ror.org/0514m3k39 Stredoeurópska vysoká škola v Skalici University of Central Europe in Skalica'), (29234, 'https://ror.org/0515swv60', 'en', 1, 'https://ror.org/0515swv60 Kartemquin Films'), (29235, 'https://ror.org/0516eyx49', 'en', 1, 'https://ror.org/0516eyx49 Islamic Azad University of Damavand دانشگاه آزاد اسلامی واحد دماوند'), (29236, 'https://ror.org/0518w5j31', 'en', 1, 'https://ror.org/0518w5j31 Lankaran State University Lənkəran Dövlət Universiteti'), (29237, 'https://ror.org/05198a862', 'en', 1, 'https://ror.org/05198a862 International Sakharov Environmental Institute Міжнародны Дзяржаўны Інстытут імя А.Д. Сахарава БДУ'), (29238, 'https://ror.org/0519z5y48', 'en', 1, 'https://ror.org/0519z5y48 Staten Island Children''s Museum'), (29239, 'https://ror.org/051bbhe61', 'en', 1, 'https://ror.org/051bbhe61 Old Stone House'), (29240, 'https://ror.org/051bwkh16', 'pl', 1, 'https://ror.org/051bwkh16 Wyższa Szkoła Stosunków Międzynarodowych i Amerykanistyki'), (29241, 'https://ror.org/051czz811', 'en', 1, 'https://ror.org/051czz811 National Academy of Environmental and Resort Construction Національна академія природоохоронного і курортного будівництва'), (29242, 'https://ror.org/051et2y58', 'en', 1, 'https://ror.org/051et2y58 Joong-Ang Sangha University'), (29243, 'https://ror.org/051f6n260', 'en', 1, 'https://ror.org/051f6n260 Yaroslavl State Agricultural Academy Ярославская государственная сельскохозяйственная академия'), (29244, 'https://ror.org/051gphn80', 'no_lang_code', 1, 'https://ror.org/051gphn80 Pneuven (Czechia)'), (29245, 'https://ror.org/051j9rm73', 'en', 1, 'https://ror.org/051j9rm73 Father Saturnino Urios University Pamantasang Padre Saturnino Urios'), (29246, 'https://ror.org/051jm0x83', 'en', 1, 'https://ror.org/051jm0x83 Jalalabad State University Жалал-Абад мамлекеттик университети'), (29247, 'https://ror.org/051kvhx87', 'en', 1, 'https://ror.org/051kvhx87 Saba University جامعة سبأ'), (29248, 'https://ror.org/051m28f53', 'no_lang_code', 1, 'https://ror.org/051m28f53 Jensen Management Service (United States)'), (29249, 'https://ror.org/051mkpe32', 'en', 1, 'https://ror.org/051mkpe32 Bioterra University Bucharest Universitatea Bioterra din București'), (29250, 'https://ror.org/051sa4h84', 'en', 1, 'https://ror.org/051sa4h84 University of Maroua Université de Maroua'), (29251, 'https://ror.org/051smb947', 'en', 1, 'https://ror.org/051smb947 Nagasaki Institute of Applied Science 長崎総合科学大学'), (29252, 'https://ror.org/051t2jr69', 'id', 1, 'https://ror.org/051t2jr69 Universitas Pembangunan Panca Budi Medan'), (29253, 'https://ror.org/051v0c125', 'en', 1, 'https://ror.org/051v0c125 DeCordova Sculpture Park and Museum'), (29254, 'https://ror.org/051wzgj54', 'id', 1, 'https://ror.org/051wzgj54 Universitas Narotama'), (29255, 'https://ror.org/051xzna40', 'id', 1, 'https://ror.org/051xzna40 Universitas Muhammadiyah Palu'), (29256, 'https://ror.org/051zns832', 'en', 1, 'https://ror.org/051zns832 Konan Women''s University 甲南女子大学'), (29257, 'https://ror.org/05202v862', 'en', 1, 'https://ror.org/05202v862 Tarim University 塔里木大学'), (29258, 'https://ror.org/0520cy215', 'no_lang_code', 1, 'https://ror.org/0520cy215 GEOtest (Czechia)'), (29259, 'https://ror.org/0520yg777', 'no_lang_code', 1, 'https://ror.org/0520yg777 MindSet Rx (United States)'), (29260, 'https://ror.org/05238qm85', 'no_lang_code', 1, 'https://ror.org/05238qm85 Amaranth (Czechia)'), (29261, 'https://ror.org/0525x3k72', 'en', 1, 'https://ror.org/0525x3k72 Zaporizhzhya State Engineering Academy Інженерний інститут Запорізького національного університету'), (29262, 'https://ror.org/052a22698', 'en', 1, 'https://ror.org/052a22698 National Institute of Science and Technology'), (29263, 'https://ror.org/052bawr89', 'no_lang_code', 1, 'https://ror.org/052bawr89 TOS Kuřim (Czechia)'), (29264, 'https://ror.org/052crx470', 'id', 1, 'https://ror.org/052crx470 Universitas Islam Lamongan'), (29265, 'https://ror.org/052d5p297', 'en', 1, 'https://ror.org/052d5p297 Somerville Museum'), (29266, 'https://ror.org/052dy9793', 'en', 1, 'https://ror.org/052dy9793 Norges musikkhøgskole Norjan valtiollinen musiikkikorkeakoulu Norwegian Academy of Music'), (29267, 'https://ror.org/052j3fv27', 'en', 1, 'https://ror.org/052j3fv27 Rostov Institute of Law of the Ministry of Internal Affairs of the Russian Federation Ростовский юридический институт Министерства внутренних дел Российской Федерации'), (29268, 'https://ror.org/052nqyp83', 'no_lang_code', 1, 'https://ror.org/052nqyp83 Research Institute for Building Materials (Czechia) Výzkumný ústav stavebních hmot,a.s.'), (29269, 'https://ror.org/052q00364', 'en', 1, 'https://ror.org/052q00364 Berkshire Theatre Group'), (29270, 'https://ror.org/052q2t745', 'en', 1, 'https://ror.org/052q2t745 China Conservatory 中国音乐学院'), (29271, 'https://ror.org/052qf7p09', 'en', 1, 'https://ror.org/052qf7p09 Far Eastern Law Institute of Ministry of Internal Affairs of Russia ДАЛЬНЕВОСТОЧНЫЙ ЮРИДИЧЕСКИЙ ИНСТИТУТ МИНИСТЕРСТВА ВНУТРЕННИХ ДЕЛ РОССИЙСКОЙ ФЕДЕРАЦИИ'), (29272, 'https://ror.org/052w7db62', 'en', 1, 'https://ror.org/052w7db62 Hamhŭng University of Chemical Industry 함흥화학공업대학'), (29273, 'https://ror.org/052xmwh44', 'en', 1, 'https://ror.org/052xmwh44 Idaho Falls Public Library'), (29274, 'https://ror.org/052xves36', 'en', 1, 'https://ror.org/052xves36 Myanmar Aerospace Engineering University မြန်မာနိုင်ငံ လေကြောင်းနှင့်အာကာသပညာ တက္ကသိုလ်'), (29275, 'https://ror.org/052zrr036', 'en', 1, 'https://ror.org/052zrr036 Canik Başarı University Canik Başarı Üniversitesi'), (29276, 'https://ror.org/0530t2h81', 'en', 1, 'https://ror.org/0530t2h81 Spicer Adventist University'), (29277, 'https://ror.org/0531m2867', 'en', 1, 'https://ror.org/0531m2867 Kemerovo State Agricultural Institute Кемеровский государственный сельскохозяйственный институт'), (29278, 'https://ror.org/0533m8c72', 'en', 1, 'https://ror.org/0533m8c72 Webster University Geneva'), (29279, 'https://ror.org/0538g0d09', 'no_lang_code', 1, 'https://ror.org/0538g0d09 Kurashiki Sakuyo University くらしき作陽大学'), (29280, 'https://ror.org/0538gj066', 'en', 1, 'https://ror.org/0538gj066 National University of the Chaco Austral Universidad Nacional del Chaco Austral'), (29281, 'https://ror.org/0538j0209', 'en', 1, 'https://ror.org/0538j0209 Qafqaz Universiteti Qafqaz University'), (29282, 'https://ror.org/0538qav07', 'en', 1, 'https://ror.org/0538qav07 Pacific Symphony'), (29283, 'https://ror.org/0539t2e91', 'en', 1, 'https://ror.org/0539t2e91 Thorneloe University'), (29284, 'https://ror.org/0539zen48', 'en', 1, 'https://ror.org/0539zen48 Nalsar University of Law'), (29285, 'https://ror.org/053bxpc30', 'en', 1, 'https://ror.org/053bxpc30 National Japanese American Historical Society'), (29286, 'https://ror.org/053em4g68', 'en', 1, 'https://ror.org/053em4g68 Anderson Public Library'), (29287, 'https://ror.org/053fxhf38', 'en', 1, 'https://ror.org/053fxhf38 International Black Sea University შავი ზღვის საერთაშორისო უნივერსიტეტი'), (29288, 'https://ror.org/053g25f89', 'id', 1, 'https://ror.org/053g25f89 Universitas Sangga Buana YPKP'), (29289, 'https://ror.org/053g6f175', 'en', 1, 'https://ror.org/053g6f175 Centre de demande d’admission aux universités de l’Ontario Ontario Universities’ Application Centre'), (29290, 'https://ror.org/053gxvt69', 'id', 1, 'https://ror.org/053gxvt69 Universitas Saburai'), (29291, 'https://ror.org/053h75930', 'en', 1, 'https://ror.org/053h75930 Bunkyo University 文教大学'), (29292, 'https://ror.org/053hsst90', 'en', 1, 'https://ror.org/053hsst90 Dr. M.G.R. Educational and Research Institute'), (29293, 'https://ror.org/053k06e94', 'en', 1, 'https://ror.org/053k06e94 Lauren Rogers Museum of Art'), (29294, 'https://ror.org/053kevk63', 'en', 1, 'https://ror.org/053kevk63 Ateneo de Manila University'), (29295, 'https://ror.org/053nvxd25', 'en', 1, 'https://ror.org/053nvxd25 Guru Kashi University ਗੁਰੂ ਕਾਸ਼ੀ ਯੂਨੀਵਰਸਿਟੀ'), (29296, 'https://ror.org/053v5zb41', 'en', 1, 'https://ror.org/053v5zb41 Harry S Truman College'), (29297, 'https://ror.org/053wftt74', 'en', 1, 'https://ror.org/053wftt74 Arak University of Technology دانشگاه صنعتی اراک'), (29298, 'https://ror.org/053wp5j10', 'no_lang_code', 1, 'https://ror.org/053wp5j10 International Technology Products'), (29299, 'https://ror.org/053yxat32', 'en', 1, 'https://ror.org/053yxat32 Dr. Sarvepalli Radhakrishnan Rajasthan Ayurved University डॉ सर्वपल्ली राधाकृष्णन राजस्थान आयुर्वेद विश्वविद्यालय'), (29300, 'https://ror.org/053z1kb20', 'en', 1, 'https://ror.org/053z1kb20 Komsomolsk-on-Amur State Technical University Комсомольский-на-Амуре государственный университет'), (29301, 'https://ror.org/053zwkn78', 'en', 1, 'https://ror.org/053zwkn78 Montgomery County-Norristown Public Library'), (29302, 'https://ror.org/0540ez438', 'en', 1, 'https://ror.org/0540ez438 Laramie County Library'), (29303, 'https://ror.org/05417j740', 'en', 1, 'https://ror.org/05417j740 State University of Gorontalo Universitas Negeri Gorontalo'), (29304, 'https://ror.org/05486d596', 'en', 1, 'https://ror.org/05486d596 Norwegian Police University College Politihøgskolen'), (29305, 'https://ror.org/0549zdk35', 'en', 1, 'https://ror.org/0549zdk35 Pamantasan ng Pangasinan University of Pangasinan'), (29306, 'https://ror.org/054b7a787', 'en', 1, 'https://ror.org/054b7a787 Mississippi Public Broadcasting'), (29307, 'https://ror.org/054b9aj21', 'en', 1, 'https://ror.org/054b9aj21 El Paso Public Library'), (29308, 'https://ror.org/054bthw57', 'en', 1, 'https://ror.org/054bthw57 Cypress College'), (29309, 'https://ror.org/054dx8336', 'en', 1, 'https://ror.org/054dx8336 Iwate Prefectural University 岩手県立大学'), (29310, 'https://ror.org/054e0wg16', 'en', 1, 'https://ror.org/054e0wg16 University of Northeastern Philippines'), (29311, 'https://ror.org/054e4t190', 'en', 1, 'https://ror.org/054e4t190 Jeonju National University of Education 전주교육대학교'), (29312, 'https://ror.org/054fdbt51', 'en', 1, 'https://ror.org/054fdbt51 AZƏRBAYCAN RESPUBLİKASININ PREZİDENTİ YANINDA DÖVLƏT İDARƏÇİLİK AKADEMİYASI Academy of Public Administration'), (29313, 'https://ror.org/054ff8869', 'en', 1, 'https://ror.org/054ff8869 San Francisco Symphony'), (29314, 'https://ror.org/054j84f79', 'en', 1, 'https://ror.org/054j84f79 St. Louis University High School'), (29315, 'https://ror.org/054jv7347', 'en', 1, 'https://ror.org/054jv7347 Kannada University ಕನ್ನಡ ವಿಶ್ವವಿದ್ಯಾಲಯ'), (29316, 'https://ror.org/054jx1t36', 'en', 1, 'https://ror.org/054jx1t36 Free International University of Moldova Universitatea Liberă Internaţională din Moldova'), (29317, 'https://ror.org/054m2gy59', 'en', 1, 'https://ror.org/054m2gy59 Jacques Marchais Center of Tibetan Art'), (29318, 'https://ror.org/054m41m41', 'fr', 1, 'https://ror.org/054m41m41 Institut National du Bâtiment et des Travaux Publics'), (29319, 'https://ror.org/054n82381', 'en', 1, 'https://ror.org/054n82381 Russian University of Cooperation Российский университет кооперации'), (29320, 'https://ror.org/054q67042', 'en', 1, 'https://ror.org/054q67042 Nebraska State Historical Society'), (29321, 'https://ror.org/054qmd302', 'en', 1, 'https://ror.org/054qmd302 Williamsburg Regional Library'), (29322, 'https://ror.org/054sr2w55', 'en', 1, 'https://ror.org/054sr2w55 Binary University of Management & Entrepreneurship'), (29323, 'https://ror.org/054t85f27', 'en', 1, 'https://ror.org/054t85f27 Hingham Public Library'), (29324, 'https://ror.org/054xjq184', 'en', 1, 'https://ror.org/054xjq184 A. N. Kosygin Moscow State Textile University Московский государственный текстильный университет имени А. Н. Косыгина'), (29325, 'https://ror.org/054ygw858', 'en', 1, 'https://ror.org/054ygw858 University of Security Management in Košice Vysoká škola bezpečnostného manažérstva v Košiciach'), (29326, 'https://ror.org/054yvqw54', 'en', 1, 'https://ror.org/054yvqw54 Maryland Association for Environmental and Outdoor Education'), (29327, 'https://ror.org/0551qsw90', 'en', 1, 'https://ror.org/0551qsw90 Belarusian Russian University Белорусско-Российский университет'), (29328, 'https://ror.org/0552kp582', 'en', 1, 'https://ror.org/0552kp582 Catholic University of South Sudan'), (29329, 'https://ror.org/055326464', 'en', 1, 'https://ror.org/055326464 Mbeya University of Science and Technology'), (29330, 'https://ror.org/05540h853', 'no_lang_code', 1, 'https://ror.org/05540h853 Chiba Keizai University 千葉経済大学'), (29331, 'https://ror.org/055688f96', 'en', 1, 'https://ror.org/055688f96 State Conservatory of Uzbekistan'), (29332, 'https://ror.org/0556naa44', 'en', 1, 'https://ror.org/0556naa44 Yokkaichi University 四日市大学'), (29333, 'https://ror.org/0556q6716', 'no_lang_code', 1, 'https://ror.org/0556q6716 AGRO-EKO (Czechia)'), (29334, 'https://ror.org/05580ht21', 'en', 1, 'https://ror.org/05580ht21 Chengdu Sport University 成都体育学院'), (29335, 'https://ror.org/0558rq776', 'en', 1, 'https://ror.org/0558rq776 Ramsey County Historical Society'), (29336, 'https://ror.org/055mbnd94', 'no_lang_code', 1, 'https://ror.org/055mbnd94 Sanno University 産業能率大学'), (29337, 'https://ror.org/055nq3844', 'no_lang_code', 1, 'https://ror.org/055nq3844 Electronic Product Services (Czechia)'), (29338, 'https://ror.org/055pc7h14', 'en', 1, 'https://ror.org/055pc7h14 New York City Department of Records and Information Services'), (29339, 'https://ror.org/055q7hq94', 'en', 1, 'https://ror.org/055q7hq94 New Mexico Commission of Public Records'), (29340, 'https://ror.org/055rtmw65', 'id', 1, 'https://ror.org/055rtmw65 Universitas Baiturrahmah'), (29341, 'https://ror.org/055tbsg25', 'en', 1, 'https://ror.org/055tbsg25 Bay Area Radio Drama'), (29342, 'https://ror.org/055zdhj54', 'zh', 1, 'https://ror.org/055zdhj54 Taiwan Shoufu University, 台灣首府大學'), (29343, 'https://ror.org/0560jvm78', 'en', 1, 'https://ror.org/0560jvm78 Veer Bahadur Singh Purvanchal University वीर बहादुर सिंह पूर्वांचल विश्वविद्यालय வீர் பகதூர் சிங் பூர்வாஞ்சல் பல்கலைக்கழகம்'), (29344, 'https://ror.org/0561zqn56', 'en', 1, 'https://ror.org/0561zqn56 University System of Ohio'), (29345, 'https://ror.org/0562ytb14', 'en', 1, 'https://ror.org/0562ytb14 Bukovinian State Medical University Буковинский государственный медицинский университет Буковинський державний медичний університет'), (29346, 'https://ror.org/0562zzt06', 'en', 1, 'https://ror.org/0562zzt06 Ryazan State University Рязанский государственный университет имени С.А. Есенина'), (29347, 'https://ror.org/0563h0629', 'no_lang_code', 1, 'https://ror.org/0563h0629 Mangalayatan University मंगलायतन युनिवर्सिटी'), (29348, 'https://ror.org/0563jgr23', 'en', 1, 'https://ror.org/0563jgr23 Save the Whales'), (29349, 'https://ror.org/0563xp259', 'en', 1, 'https://ror.org/0563xp259 Sports University of Tirana Universiteti i Sporteve të Tiranës'), (29350, 'https://ror.org/0564x5q33', 'en', 1, 'https://ror.org/0564x5q33 Menaul Historical Library of the Southwest'), (29351, 'https://ror.org/05654m147', 'en', 1, 'https://ror.org/05654m147 Center for Civic Education'), (29352, 'https://ror.org/0567mpb57', 'id', 1, 'https://ror.org/0567mpb57 Universitas Abdurahman Saleh Situbondo'), (29353, 'https://ror.org/05682nv68', 'en', 1, 'https://ror.org/05682nv68 Pennsylvania Heritage Society'), (29354, 'https://ror.org/0568p5n31', 'en', 1, 'https://ror.org/0568p5n31 Akita University of Art 秋田公立美術大学'), (29355, 'https://ror.org/05696d323', 'en', 1, 'https://ror.org/05696d323 Tokyo Christian University 東京基督教大学'), (29356, 'https://ror.org/056ad8q42', 'en', 1, 'https://ror.org/056ad8q42 Kazimieras Simonavičius University Vilniaus Verslo Teisės Akademija'), (29357, 'https://ror.org/056bber35', 'en', 1, 'https://ror.org/056bber35 Rajasthan Technical University राजस्थान तकनीकी विश्वविधालय'), (29358, 'https://ror.org/056bksm23', 'en', 1, 'https://ror.org/056bksm23 Osaka Electro-Communication University 大阪電気通信大学'), (29359, 'https://ror.org/056c31v05', 'en', 1, 'https://ror.org/056c31v05 Gregory University Uturu'), (29360, 'https://ror.org/056c6h780', 'en', 1, 'https://ror.org/056c6h780 American University in the Emirates الجامعة الأمريكية في الإمارات'), (29361, 'https://ror.org/056d32z48', 'en', 1, 'https://ror.org/056d32z48 Pamantasan ng Baguio University of Baguio'), (29362, 'https://ror.org/056fhh809', 'en', 1, 'https://ror.org/056fhh809 Ashiya University 芦屋大学'), (29363, 'https://ror.org/056fjw561', 'no_lang_code', 1, 'https://ror.org/056fjw561 Induk University 인덕대학교'), (29364, 'https://ror.org/056gdnv76', 'en', 1, 'https://ror.org/056gdnv76 Kunitachi College of Music 国立音楽大学'), (29365, 'https://ror.org/056hsts40', 'no_lang_code', 1, 'https://ror.org/056hsts40 Evolving Systems Consulting Aerospace (Czechia)'), (29366, 'https://ror.org/056mtf007', 'en', 1, 'https://ror.org/056mtf007 Czech Space Office'), (29367, 'https://ror.org/056nwn519', 'en', 1, 'https://ror.org/056nwn519 Keiai University 敬愛大学'), (29368, 'https://ror.org/056p61s65', 'no_lang_code', 1, 'https://ror.org/056p61s65 Horiba (United Kingdom)'), (29369, 'https://ror.org/056q8mg35', 'en', 1, 'https://ror.org/056q8mg35 Missouri Historical Society'), (29370, 'https://ror.org/056rhyt66', 'en', 1, 'https://ror.org/056rhyt66 Saint Paul University Surigao'), (29371, 'https://ror.org/056rqtp72', 'no_lang_code', 1, 'https://ror.org/056rqtp72 VRL Praha (Czechia)'), (29372, 'https://ror.org/056sktz68', 'en', 1, 'https://ror.org/056sktz68 Da Nang University of Economics Trường Đại học Kinh tế Đà Nẵng'), (29373, 'https://ror.org/056vcnr65', 'en', 1, 'https://ror.org/056vcnr65 Minnesota Department of Natural Resources'), (29374, 'https://ror.org/056vtz595', 'en', 1, 'https://ror.org/056vtz595 Nueva Ecija University of Science and Technology Pamantasan ng Nueva Ecija sa Agham at Teknolohiya'), (29375, 'https://ror.org/056wdsj76', 'no_lang_code', 1, 'https://ror.org/056wdsj76 Research Institute for Pharmacy and Biochemistry (Czechia) Výzkumný Ustav pro Farmacii a Biochemii'), (29376, 'https://ror.org/056xmjm50', 'en', 1, 'https://ror.org/056xmjm50 New Hampshire Lakes Association'), (29377, 'https://ror.org/056xnk046', 'en', 1, 'https://ror.org/056xnk046 Vali Asr University of Rafsanjan'), (29378, 'https://ror.org/056z5bx32', 'en', 1, 'https://ror.org/056z5bx32 Hochschule für angewandte Wissenschaften Landshut University of Applied Sciences Landshut'), (29379, 'https://ror.org/056zvg634', 'en', 1, 'https://ror.org/056zvg634 Independent Production Fund'), (29380, 'https://ror.org/0571tcv43', 'en', 1, 'https://ror.org/0571tcv43 Alabama Department of Archives and History'), (29381, 'https://ror.org/0572trk36', 'ro', 1, 'https://ror.org/0572trk36 Institutul Teologic Baptist din București'), (29382, 'https://ror.org/05735s737', 'no_lang_code', 1, 'https://ror.org/05735s737 Embitron (Czechia)'), (29383, 'https://ror.org/0575dme84', 'en', 1, 'https://ror.org/0575dme84 Tottori University of Environmental Studies 鳥取環境大学'), (29384, 'https://ror.org/0576vga12', 'en', 1, 'https://ror.org/0576vga12 Podkarpacki Uniwersytet Narodowy im. Wasyla Stefanyka Vasyl Stefanyk Precarpathian National University Прикарпатский национальный университет имени Василия Стефаника Прикарпатський національний університет імені Василя Стефаника'), (29385, 'https://ror.org/0578kb180', 'en', 1, 'https://ror.org/0578kb180 Altai State Medical University Алтайский государственный медицинский университет'), (29386, 'https://ror.org/05799pa89', 'no_lang_code', 1, 'https://ror.org/05799pa89 Gondwana University गोंडवाना विश्वविद्यालय'), (29387, 'https://ror.org/057ap5t09', 'en', 1, 'https://ror.org/057ap5t09 RK University'), (29388, 'https://ror.org/057db3962', 'pl', 1, 'https://ror.org/057db3962 Wyższa Szkoła Gospodarowania Nieruchomościami'), (29389, 'https://ror.org/057gnqw22', 'en', 1, 'https://ror.org/057gnqw22 Islamic University of Technology ইসলামিক ইউনিভার্সিটি অফ টেকনোলজি'), (29390, 'https://ror.org/057j5m475', 'en', 1, 'https://ror.org/057j5m475 Ural Institute for the Humanities Уральский гуманитарный институт'), (29391, 'https://ror.org/057jpqa22', 'en', 1, 'https://ror.org/057jpqa22 Christian University of Thailand มหาวิทยาลัยคริสเตียน'), (29392, 'https://ror.org/057jstn88', 'en', 1, 'https://ror.org/057jstn88 Center for the Study of the Presidency and Congress'), (29393, 'https://ror.org/057m8sk45', 'en', 1, 'https://ror.org/057m8sk45 Society of Early Americanists'), (29394, 'https://ror.org/057makt82', 'en', 1, 'https://ror.org/057makt82 Institute of Applied Mechanics Instituts für angewandte Mechanik'), (29395, 'https://ror.org/057p3dx48', 'en', 1, 'https://ror.org/057p3dx48 Hanil University 한일장신대학교'), (29396, 'https://ror.org/057p7pc42', 'en', 1, 'https://ror.org/057p7pc42 Ural State Mining University Уральский государственный горный университет'), (29397, 'https://ror.org/057q3ez97', 'en', 1, 'https://ror.org/057q3ez97 Newport Art Museum'), (29398, 'https://ror.org/057qzst49', 'en', 1, 'https://ror.org/057qzst49 Moscow Humanitarian-Technical Academy Московская Гуманитарно-Техническая Академия'), (29399, 'https://ror.org/057rq6p34', 'en', 1, 'https://ror.org/057rq6p34 National Maritime Center'), (29400, 'https://ror.org/057vdbk84', 'en', 1, 'https://ror.org/057vdbk84 Saratov State Socio-Economic University Саратовский социально-экономический институт РЭУ им. Г. В. Плеханова'), (29401, 'https://ror.org/057y1pm64', 'en', 1, 'https://ror.org/057y1pm64 Institute of Art Restoration Институт искусств реставрации'), (29402, 'https://ror.org/0581e0971', 'en', 1, 'https://ror.org/0581e0971 Cornell Cooperative Extension of Suffolk County'), (29403, 'https://ror.org/0586y4s33', 'no_lang_code', 1, 'https://ror.org/0586y4s33 Inoorero University'), (29404, 'https://ror.org/0587qta27', 'no_lang_code', 1, 'https://ror.org/0587qta27 Prototypa (Czechia)'), (29405, 'https://ror.org/058afab11', 'en', 1, 'https://ror.org/058afab11 Exploring New Horizons'), (29406, 'https://ror.org/058ange06', 'en', 1, 'https://ror.org/058ange06 Hebei University of Architecture 河北建筑工程学院'), (29407, 'https://ror.org/058bps337', 'id', 1, 'https://ror.org/058bps337 Universitas Pasir Pangaraian'), (29408, 'https://ror.org/058c2zn82', 'en', 1, 'https://ror.org/058c2zn82 East Africa University جامعة شرق أفريقيا'), (29409, 'https://ror.org/058e7px26', 'en', 1, 'https://ror.org/058e7px26 Azerbaijan State Pedagogical University Azərbaycan Dövlət Pedaqoji Universiteti'), (29410, 'https://ror.org/058h4f948', 'no_lang_code', 1, 'https://ror.org/058h4f948 Keeneland Association'), (29411, 'https://ror.org/058jafb94', 'en', 1, 'https://ror.org/058jafb94 Kuban State Agrarian University Кубанский государственный аграрный университет'), (29412, 'https://ror.org/058p2fn24', 'no_lang_code', 1, 'https://ror.org/058p2fn24 Vitrina University'), (29413, 'https://ror.org/058qbcf90', 'no_lang_code', 1, 'https://ror.org/058qbcf90 PolyComp (Czechia)'), (29414, 'https://ror.org/058sshm54', 'en', 1, 'https://ror.org/058sshm54 Institute of Oceanology Институт по океанология'), (29415, 'https://ror.org/058svg759', 'en', 1, 'https://ror.org/058svg759 National Institute of Business НАЦИОНАЛЬНЫЙ ИНСТИТУТ БИЗНЕСА'), (29416, 'https://ror.org/058tx1a56', 'en', 1, 'https://ror.org/058tx1a56 Heriot-Watt University Dubai جامعة هيريوت-وات دبي'), (29417, 'https://ror.org/058tztn15', 'no_lang_code', 1, 'https://ror.org/058tztn15 Hydro International (Ireland)'), (29418, 'https://ror.org/058v42s42', 'en', 1, 'https://ror.org/058v42s42 Utah State University Eastern'), (29419, 'https://ror.org/058w2q710', 'id', 1, 'https://ror.org/058w2q710 Universitas Wiraswasta Indonesia'), (29420, 'https://ror.org/058zc6h57', 'en', 1, 'https://ror.org/058zc6h57 Northwest Museum of Arts and Culture'), (29421, 'https://ror.org/05910xk89', 'no_lang_code', 1, 'https://ror.org/05910xk89 Gukje Cyber University 국제사이버대학교'), (29422, 'https://ror.org/05933aq68', 'en', 1, 'https://ror.org/05933aq68 Shizuoka University of Welfare 静岡福祉大学'), (29423, 'https://ror.org/0593bd590', 'hu', 1, 'https://ror.org/0593bd590 Szent Atanáz Görögkatolikus Hittudományi Főiskola'), (29424, 'https://ror.org/0593kfr97', 'en', 1, 'https://ror.org/0593kfr97 Urganch davlat universiteti Urgench State University'), (29425, 'https://ror.org/05960ca78', 'en', 1, 'https://ror.org/05960ca78 Russian Academy of Arts Росси́йская акаде́мия худо́жеств'), (29426, 'https://ror.org/0596j8n35', 'en', 1, 'https://ror.org/0596j8n35 Brookline Public Schools'), (29427, 'https://ror.org/05986n320', 'en', 1, 'https://ror.org/05986n320 Akaki Tsereteli State University Ակակի Ծերեթելիի անվան պետական համալսարան ქუთაისის სახელმწიფო უნივერსიტეტი'), (29428, 'https://ror.org/05999pw96', 'id', 1, 'https://ror.org/05999pw96 Universitas Pancasakti Tegal'), (29429, 'https://ror.org/0599t2n59', 'en', 1, 'https://ror.org/0599t2n59 Cooch Behar Panchanan Barma University कूच बिहार पंचानन बर्मा विश्वविद्यालय কোচবিহার পঞ্চানন বর্মা বিশ্ববিদ্যালয়'), (29430, 'https://ror.org/059a0tw60', 'en', 1, 'https://ror.org/059a0tw60 DAPHNE Institute of Applied Ecology'), (29431, 'https://ror.org/059bgad73', 'en', 1, 'https://ror.org/059bgad73 Middle East University جامعة الشرق الأوسط'), (29432, 'https://ror.org/059cjcr63', 'no_lang_code', 1, 'https://ror.org/059cjcr63 Baiko Gakuin University 梅光学院大学'), (29433, 'https://ror.org/059cs8z68', 'id', 1, 'https://ror.org/059cs8z68 Universitas Pasundan'), (29434, 'https://ror.org/059dyfn28', 'en', 1, 'https://ror.org/059dyfn28 Center for Prevention Services'), (29435, 'https://ror.org/059edgr15', 'en', 1, 'https://ror.org/059edgr15 Donnelly College'), (29436, 'https://ror.org/059fmyk31', 'en', 1, 'https://ror.org/059fmyk31 Soai University 相愛大学'), (29437, 'https://ror.org/059fpzy63', 'en', 1, 'https://ror.org/059fpzy63 Muriel L. MacGregor Charitable Trust'), (29438, 'https://ror.org/059fxrr07', 'en', 1, 'https://ror.org/059fxrr07 Partners for Livable Places'), (29439, 'https://ror.org/059gxc315', 'en', 1, 'https://ror.org/059gxc315 Cambodian Mekong University សាកលវិទ្យាល័យមេគង្គកម្ពុជា'), (29440, 'https://ror.org/059hx7q04', 'en', 1, 'https://ror.org/059hx7q04 Gunma University of Health and Welfare 群馬医療福祉大学'), (29441, 'https://ror.org/059hy2f55', 'en', 1, 'https://ror.org/059hy2f55 Gwangju National University of Education 광주교육대학교'), (29442, 'https://ror.org/059jntb51', 'en', 1, 'https://ror.org/059jntb51 Unibersidad ng Saint Louis University of Saint Louis'), (29443, 'https://ror.org/059kfxy53', 'no_lang_code', 1, 'https://ror.org/059kfxy53 Elitex Machinery (Czechia)'), (29444, 'https://ror.org/059nxy021', 'en', 1, 'https://ror.org/059nxy021 Tokyo Zokei University 東京造形大学'), (29445, 'https://ror.org/059pgr720', 'en', 1, 'https://ror.org/059pgr720 Gifu Women''s University 岐阜女子大学'), (29446, 'https://ror.org/059pxp552', 'en', 1, 'https://ror.org/059pxp552 Rabindra Bharati University रवीन्द्र भारती विश्वविद्यालय রবীন্দ্রভারতী বিশ্ববিদ্যালয়'), (29447, 'https://ror.org/059t51t95', 'en', 1, 'https://ror.org/059t51t95 Misamis University'), (29448, 'https://ror.org/059xffm27', 'en', 1, 'https://ror.org/059xffm27 Pontifical University Antonianum Pontificia Università Antonianum Päpstliche Universität Antonianum Université pontificale de saint-antoine'), (29449, 'https://ror.org/059y7xr21', 'id', 1, 'https://ror.org/059y7xr21 Universitas Tompotika Luwuk'), (29450, 'https://ror.org/059zrbe49', 'en', 1, 'https://ror.org/059zrbe49 Applied Science University جامعة العلوم التطبيقية'), (29451, 'https://ror.org/05a23ek12', 'en', 1, 'https://ror.org/05a23ek12 Saint Petersburg State Academic Institute of Painting Sculpture and Architecture named after I.E. Repin Санкт-Петербургский государственный академический институт живописи скульптуры и архитектуры имени И.Е. Репин'), (29452, 'https://ror.org/05a30nk74', 'en', 1, 'https://ror.org/05a30nk74 Foundation for Lincoln City Libraries'), (29453, 'https://ror.org/05a33p325', 'no_lang_code', 1, 'https://ror.org/05a33p325 NovaTarg Therapeutics (United States)'), (29454, 'https://ror.org/05a3fka94', 'en', 1, 'https://ror.org/05a3fka94 University College of Enterprise and Administration in Lublin Wyższa Szkoła Przedsiębiorczości i Administracji'), (29455, 'https://ror.org/05a4gt120', 'no_lang_code', 1, 'https://ror.org/05a4gt120 SQS Fiber Optics (Czechia) SQS Vláknová optika'), (29456, 'https://ror.org/05a4v8r91', 'en', 1, 'https://ror.org/05a4v8r91 Yunnan Arts University 云南艺术学院'), (29457, 'https://ror.org/05a550a57', 'en', 1, 'https://ror.org/05a550a57 Dolnośląska Szkoła Wyższa University of Lower Silesia'), (29458, 'https://ror.org/05a61hj73', 'en', 1, 'https://ror.org/05a61hj73 Thepsatri Rajabhat University มหาวิทยาลัยราชภัฏเทพสตรีลพบุรี'), (29459, 'https://ror.org/05ackpy69', 'no_lang_code', 1, 'https://ror.org/05ackpy69 Northeastern Regional Association of Coastal and Ocean Observing Systems (United States)'), (29460, 'https://ror.org/05ad1hb84', 'no_lang_code', 1, 'https://ror.org/05ad1hb84 Meopta Optika (Czechia)'), (29461, 'https://ror.org/05agbef66', 'no_lang_code', 1, 'https://ror.org/05agbef66 MSR Engines (Czechia)'), (29462, 'https://ror.org/05aghjq44', 'en', 1, 'https://ror.org/05aghjq44 Cincinnati Zoo and Botanical Garden'), (29463, 'https://ror.org/05ahk0y26', 'no_lang_code', 1, 'https://ror.org/05ahk0y26 Krátký Film Praha (Czechia)'), (29464, 'https://ror.org/05ak6yg81', 'en', 1, 'https://ror.org/05ak6yg81 Reno County Museum'), (29465, 'https://ror.org/05apvj660', 'no_lang_code', 1, 'https://ror.org/05apvj660 Toshulin (Czechia)'), (29466, 'https://ror.org/05ar41694', 'en', 1, 'https://ror.org/05ar41694 Korea Christian University'), (29467, 'https://ror.org/05arzt710', 'en', 1, 'https://ror.org/05arzt710 Sri Sathya Sai Institute of Higher Learning'), (29468, 'https://ror.org/05at4t633', 'en', 1, 'https://ror.org/05at4t633 Historical Society of Pennsylvania'), (29469, 'https://ror.org/05atctj59', 'en', 1, 'https://ror.org/05atctj59 Turkmen State Medical University Государственный медицинский университет Туркмении'), (29470, 'https://ror.org/05avebb86', 'en', 1, 'https://ror.org/05avebb86 Alaska Native Harbor Seal Commission'), (29471, 'https://ror.org/05aymst21', 'en', 1, 'https://ror.org/05aymst21 Minami Kyushu University 南九州大学'), (29472, 'https://ror.org/05az7em54', 'en', 1, 'https://ror.org/05az7em54 Kent State University at Ashtabula'), (29473, 'https://ror.org/05b0v1a86', 'en', 1, 'https://ror.org/05b0v1a86 Makah Tribal Council'), (29474, 'https://ror.org/05b2fjs73', 'en', 1, 'https://ror.org/05b2fjs73 Ferguson Library'), (29475, 'https://ror.org/05b2prn24', 'en', 1, 'https://ror.org/05b2prn24 Leman University'), (29476, 'https://ror.org/05b4sem27', 'en', 1, 'https://ror.org/05b4sem27 International Slavic Institute Международный Славянский Институт'), (29477, 'https://ror.org/05b4xwc96', 'en', 1, 'https://ror.org/05b4xwc96 Kamianets-Podіlskyi Ivan Ohiienko National University Ukraiński Uniwersytet Państwowy w Kamieńcu Podolskim Кам''янець-Подільський національний університет імені Івана Огієнка Каменец-Подольский национальный университет'), (29478, 'https://ror.org/05b5sds65', 'en', 1, 'https://ror.org/05b5sds65 University of Misan جامعة ميسان'), (29479, 'https://ror.org/05b7g7730', 'en', 1, 'https://ror.org/05b7g7730 Tungnan University 東南科技大學'), (29480, 'https://ror.org/05bamwv87', 'en', 1, 'https://ror.org/05bamwv87 Ukrainian Engineering Pedagogics Academy Украинская инженерно-педагогическая академия Українська інженерно-педагогічна академія'), (29481, 'https://ror.org/05ban2t96', 'en', 1, 'https://ror.org/05ban2t96 Jackson County Historical Society'), (29482, 'https://ror.org/05bbh2585', 'en', 1, 'https://ror.org/05bbh2585 Ministry of Internal Affairs of the Russian Federation МИНИСТЕРСТВО ВНУТРЕННИХ ДЕЛ РОССИЙСКОЙ ФЕДЕРАЦИИ'), (29483, 'https://ror.org/05bd7aq21', 'en', 1, 'https://ror.org/05bd7aq21 Trường Đại học Y khoa Vinh Vinh Medical University'), (29484, 'https://ror.org/05bdemk73', 'en', 1, 'https://ror.org/05bdemk73 Old South Association'), (29485, 'https://ror.org/05bemmp19', 'en', 1, 'https://ror.org/05bemmp19 Institute of International Business Education Институт международного бизнес-образования'), (29486, 'https://ror.org/05bg0c903', 'en', 1, 'https://ror.org/05bg0c903 Southern University সার্দান বিশ্ববিদ্যালয়'), (29487, 'https://ror.org/05bg8js23', 'en', 1, 'https://ror.org/05bg8js23 Conservation Center for Art and Historic Artifacts'), (29488, 'https://ror.org/05bhsrq51', 'en', 1, 'https://ror.org/05bhsrq51 Carson Newman University'), (29489, 'https://ror.org/05bja5p94', 'en', 1, 'https://ror.org/05bja5p94 All Saints University Lango'), (29490, 'https://ror.org/05bmd4n09', 'en', 1, 'https://ror.org/05bmd4n09 Redwood Library and Athenaeum'), (29491, 'https://ror.org/05bp24h68', 'en', 1, 'https://ror.org/05bp24h68 Mediterranean Institute of Management Μεσογειακό Ινστιτούτο Διεύθυνσης'), (29492, 'https://ror.org/05bqmct97', 'no_lang_code', 1, 'https://ror.org/05bqmct97 BorsodChem (Czechia)'), (29493, 'https://ror.org/05bqtq669', 'no_lang_code', 1, 'https://ror.org/05bqtq669 Royal HaskoningDHV (Czechia)'), (29494, 'https://ror.org/05brr5h08', 'en', 1, 'https://ror.org/05brr5h08 Jaamacada Jamhuriya Jamhuriya University of Science and Technology جامعة جمهورية للعلوم والتكنولوجيا'), (29495, 'https://ror.org/05bsrqh80', 'en', 1, 'https://ror.org/05bsrqh80 University of Medicine Magway'), (29496, 'https://ror.org/05btp4k45', 'en', 1, 'https://ror.org/05btp4k45 FishAmerica Foundation'), (29497, 'https://ror.org/05bxxrz27', 'en', 1, 'https://ror.org/05bxxrz27 Asia Life University 복음신학대학원대학교'), (29498, 'https://ror.org/05byzd324', 'no_lang_code', 1, 'https://ror.org/05byzd324 Hiroshima Bunka Gakuen University 広島文化学園大学'), (29499, 'https://ror.org/05c0t8x83', 'en', 1, 'https://ror.org/05c0t8x83 Frederick Community College'), (29500, 'https://ror.org/05c132b31', 'id', 1, 'https://ror.org/05c132b31 Universitas Satya Negara Indonesia'), (29501, 'https://ror.org/05c1a5t19', 'en', 1, 'https://ror.org/05c1a5t19 Chesterfield County Public Library'), (29502, 'https://ror.org/05c1r5z64', 'en', 1, 'https://ror.org/05c1r5z64 Xingtai University 邢台学院'), (29503, 'https://ror.org/05c3m0811', 'en', 1, 'https://ror.org/05c3m0811 Central Laboratory of Solar Energy and New Energy Sources Централна лаборатория по слънчева енергия и нови енергийни източници'), (29504, 'https://ror.org/05c5yp582', 'id', 1, 'https://ror.org/05c5yp582 Universitas Subang'), (29505, 'https://ror.org/05c6ejt42', 'en', 1, 'https://ror.org/05c6ejt42 Nihon Bunka University 日本文化大学'), (29506, 'https://ror.org/05c951c38', 'no_lang_code', 1, 'https://ror.org/05c951c38 Termizo (Czechia)'), (29507, 'https://ror.org/05cahxq83', 'no_lang_code', 1, 'https://ror.org/05cahxq83 Patron Bohemia (Czechia)'), (29508, 'https://ror.org/05cbbv691', 'en', 1, 'https://ror.org/05cbbv691 Martinsburg - Berkeley County Public Libraries'), (29509, 'https://ror.org/05cbg5d14', 'id', 1, 'https://ror.org/05cbg5d14 Institut Teknologi Budi Utomo'), (29510, 'https://ror.org/05cc9dz89', 'en', 1, 'https://ror.org/05cc9dz89 Moscow Financial and Economic Institute Московский финансово-экономический институт'), (29511, 'https://ror.org/05cgtjz78', 'en', 1, 'https://ror.org/05cgtjz78 Qərbi Kaspi Universiteti Western Caspian University'), (29512, 'https://ror.org/05ch82e76', 'en', 1, 'https://ror.org/05ch82e76 Eternal University'), (29513, 'https://ror.org/05cn6ne53', 'id', 1, 'https://ror.org/05cn6ne53 Universitas Pancasakti Makassar'), (29514, 'https://ror.org/05cp38y47', 'en', 1, 'https://ror.org/05cp38y47 Osaka University of Human Sciences 大阪人間科学大学'), (29515, 'https://ror.org/05cphcd65', 'en', 1, 'https://ror.org/05cphcd65 Essentuki Institute of Management Business and Law Ессентукский институт управления, бизнеса и права'), (29516, 'https://ror.org/05cqafq62', 'en', 1, 'https://ror.org/05cqafq62 Chuka University'), (29517, 'https://ror.org/05cqdcg79', 'no_lang_code', 1, 'https://ror.org/05cqdcg79 Musashino Gakuin University 武蔵野学院大学'), (29518, 'https://ror.org/05cqf4668', 'en', 1, 'https://ror.org/05cqf4668 Haaga-Helia University of Applied Sciences Haaga-Helia ammattikorkeakoulu'), (29519, 'https://ror.org/05cr38245', 'en', 1, 'https://ror.org/05cr38245 Dixon University Center'), (29520, 'https://ror.org/05crr5s63', 'en', 1, 'https://ror.org/05crr5s63 SEGi University Universiti SEGi'), (29521, 'https://ror.org/05cv4zg26', 'en', 1, 'https://ror.org/05cv4zg26 Wirral University Teaching Hospital NHS Foundation Trust'), (29522, 'https://ror.org/05cv9ex33', 'en', 1, 'https://ror.org/05cv9ex33 University Sinergija Univerzitetska sinergija'), (29523, 'https://ror.org/05cwvy572', 'en', 1, 'https://ror.org/05cwvy572 Belgorod University of Cooperation, Economics and Law Белгородский университет кооперации, экономики и права'), (29524, 'https://ror.org/05cwygk15', 'en', 1, 'https://ror.org/05cwygk15 Ho Chi Minh City University of Fine Arts Trường Đại học Mỹ thuật Thành phố Hồ Chí Minh Université des beaux-arts d’hô-chi-minh-ville'), (29525, 'https://ror.org/05cy1av38', 'en', 1, 'https://ror.org/05cy1av38 Moscow City University Московский городской университет'), (29526, 'https://ror.org/05cyzhb83', 'no_lang_code', 1, 'https://ror.org/05cyzhb83 Envisan GEM (Czechia)'), (29527, 'https://ror.org/05czff141', 'en', 1, 'https://ror.org/05czff141 Birmingham Public Library'), (29528, 'https://ror.org/05d0pgx42', 'en', 1, 'https://ror.org/05d0pgx42 Meio University 名桜大学'), (29529, 'https://ror.org/05d293n36', 'en', 1, 'https://ror.org/05d293n36 WuFeng University 吳鳳科技大學'), (29530, 'https://ror.org/05d3sbc55', 'en', 1, 'https://ror.org/05d3sbc55 Morris College'), (29531, 'https://ror.org/05d4cjq55', 'en', 1, 'https://ror.org/05d4cjq55 Congress for the New Urbanism'), (29532, 'https://ror.org/05d5hbz44', 'en', 1, 'https://ror.org/05d5hbz44 Department of Energy and Environment'), (29533, 'https://ror.org/05d75ah03', 'en', 1, 'https://ror.org/05d75ah03 International Center of Medieval Art'), (29534, 'https://ror.org/05d8xgj52', 'no_lang_code', 1, 'https://ror.org/05d8xgj52 Payap University มหาวิทยาลัยพายัพ'), (29535, 'https://ror.org/05d9d4d82', 'en', 1, 'https://ror.org/05d9d4d82 Kyiv University of Law Київський університет права'), (29536, 'https://ror.org/05d9x2e07', 'en', 1, 'https://ror.org/05d9x2e07 Academy of Hotel Management and Catering Industry L’école supérieure d’hōtellerie et de gastronomie'), (29537, 'https://ror.org/05dap7r06', 'en', 1, 'https://ror.org/05dap7r06 Fort Collins Museum of Discovery'), (29538, 'https://ror.org/05db1pj03', 'en', 1, 'https://ror.org/05db1pj03 Dongbei University of Finance and Economics 东北财经大学'), (29539, 'https://ror.org/05dd5tz10', 'en', 1, 'https://ror.org/05dd5tz10 Gibbes Museum of Art'), (29540, 'https://ror.org/05ddbab52', 'en', 1, 'https://ror.org/05ddbab52 Poznan School of Logistics Wyższa Szkoła Logistyki'), (29541, 'https://ror.org/05ddme474', 'en', 1, 'https://ror.org/05ddme474 Tucson Museum of Art'), (29542, 'https://ror.org/05de33361', 'no_lang_code', 1, 'https://ror.org/05de33361 STEM (Czechia)'), (29543, 'https://ror.org/05dg6kp30', 'en', 1, 'https://ror.org/05dg6kp30 Universiteti Pavarësia Vlorë University Pavaresia Vlore'), (29544, 'https://ror.org/05dg8sq97', 'en', 1, 'https://ror.org/05dg8sq97 International University in Geneva'), (29545, 'https://ror.org/05dh0m347', 'cs', 1, 'https://ror.org/05dh0m347 Nadace pro Dějiny kultury ve Střední Evropě'), (29546, 'https://ror.org/05dhkbw86', 'en', 1, 'https://ror.org/05dhkbw86 Moscow State Institute of Electronics and Mathematics Московский институт электроники и математики'), (29547, 'https://ror.org/05dj31k33', 'id', 1, 'https://ror.org/05dj31k33 Universitas Balikpapan'), (29548, 'https://ror.org/05djcr692', 'pl', 1, 'https://ror.org/05djcr692 Górnośląska Wyższa Szkoła Pedagogiczna im. Kardynała Augusta Hlonda w Mysłowicach, Górnośląska Wyższa Szkoła Pedagogiczna imienia Kardynała Augusta Hlonda w Mysłowicach'), (29549, 'https://ror.org/05djmm265', 'id', 1, 'https://ror.org/05djmm265 Universitas Hindu Indonesia'), (29550, 'https://ror.org/05djtcm98', 'id', 1, 'https://ror.org/05djtcm98 Universitas Islam Jakarta'), (29551, 'https://ror.org/05dp8mg49', 'en', 1, 'https://ror.org/05dp8mg49 Hồng Đức University Trường Đại Học Hồng Đức 洪德大学'), (29552, 'https://ror.org/05dpjef75', 'en', 1, 'https://ror.org/05dpjef75 Seacoast Science Center'), (29553, 'https://ror.org/05dr87s20', 'no_lang_code', 1, 'https://ror.org/05dr87s20 Dupres Group (Slovakia)'), (29554, 'https://ror.org/05drg8934', 'en', 1, 'https://ror.org/05drg8934 Riverhead Foundation for Marine Research and Preservation'), (29555, 'https://ror.org/05dsae220', 'en', 1, 'https://ror.org/05dsae220 Khayyam University دانشگاه خیام'), (29556, 'https://ror.org/05dx9zk73', 'en', 1, 'https://ror.org/05dx9zk73 Tokyo Women''s College of Physical Education 東京女子体育大学'), (29557, 'https://ror.org/05dxvt507', 'en', 1, 'https://ror.org/05dxvt507 Pandit Sundarlal Sharma Open University पण्डित सुन्दरलाल शर्मा (मुक्त) विश्वविद्यालय'), (29558, 'https://ror.org/05dybcw48', 'id', 1, 'https://ror.org/05dybcw48 Universitas Tulungagung'), (29559, 'https://ror.org/05dzbpx12', 'fr', 1, 'https://ror.org/05dzbpx12 European University of Scents and Flavors Université Européenne des Senteurs & Saveur'), (29560, 'https://ror.org/05e0g3c64', 'en', 1, 'https://ror.org/05e0g3c64 Kuban Institute of International Business and Management'), (29561, 'https://ror.org/05e1j4h71', 'en', 1, 'https://ror.org/05e1j4h71 Dauphin County Library System'), (29562, 'https://ror.org/05e1s8h08', 'en', 1, 'https://ror.org/05e1s8h08 Chicago Architecture Foundation'), (29563, 'https://ror.org/05e2ncr14', 'en', 1, 'https://ror.org/05e2ncr14 Eastern University ইস্টার্ন ইউনিভার্সিটি'), (29564, 'https://ror.org/05e2tqm03', 'en', 1, 'https://ror.org/05e2tqm03 Center for Puppetry Arts'), (29565, 'https://ror.org/05e2vjj36', 'en', 1, 'https://ror.org/05e2vjj36 Pacific School of Religion'), (29566, 'https://ror.org/05e30xz71', 'en', 1, 'https://ror.org/05e30xz71 LeRoy Collins Leon County Public Library'), (29567, 'https://ror.org/05e3sxn28', 'en', 1, 'https://ror.org/05e3sxn28 Orenburg Institute of Economics and Culture Оренбургский институт экономики и культуры'), (29568, 'https://ror.org/05e3v4r58', 'en', 1, 'https://ror.org/05e3v4r58 Kirkwood Public Library'), (29569, 'https://ror.org/05e5m9w32', 'en', 1, 'https://ror.org/05e5m9w32 Nueva Vizcaya State University'), (29570, 'https://ror.org/05e8ahe21', 'en', 1, 'https://ror.org/05e8ahe21 Miyazaki International College 宮崎国際大学'), (29571, 'https://ror.org/05e8bfc57', 'en', 1, 'https://ror.org/05e8bfc57 Regional Open Social Institute Региональный открытый социальный институт'), (29572, 'https://ror.org/05e8t3y83', 'en', 1, 'https://ror.org/05e8t3y83 Rajin University of Marine Transport 나진해운대학 만들기'), (29573, 'https://ror.org/05ebt7533', 'en', 1, 'https://ror.org/05ebt7533 Turkmen State Pedagogical Institute named Seidnazar Seydi Туркменский государственный педагогический институт имени Сейитназара Сейди'), (29574, 'https://ror.org/05ehpzq05', 'en', 1, 'https://ror.org/05ehpzq05 Korea Baptist Theological University and Seminary 침례신학대학교'), (29575, 'https://ror.org/05ek5cn41', 'no_lang_code', 1, 'https://ror.org/05ek5cn41 Cogebi (Czechia)'), (29576, 'https://ror.org/05erxm859', 'no_lang_code', 1, 'https://ror.org/05erxm859 Skanska (Czechia)'), (29577, 'https://ror.org/05ew8ve77', 'en', 1, 'https://ror.org/05ew8ve77 Gulf & South Atlantic Fisheries Foundation'), (29578, 'https://ror.org/05ex3a966', 'en', 1, 'https://ror.org/05ex3a966 Ecotrust'), (29579, 'https://ror.org/05exvy590', 'id', 1, 'https://ror.org/05exvy590 Dwijendra University Universitas Dwijendra'), (29580, 'https://ror.org/05ey1ky02', 'en', 1, 'https://ror.org/05ey1ky02 Apollos University'); INSERT INTO `rors` VALUES (29581, 'https://ror.org/05eyk3846', 'en', 1, 'https://ror.org/05eyk3846 American Association for State and Local History'), (29582, 'https://ror.org/05f06q946', 'id', 1, 'https://ror.org/05f06q946 Universitas Kader Bangsa'), (29583, 'https://ror.org/05f0cs849', 'en', 1, 'https://ror.org/05f0cs849 Aichi Sangyo University 愛知産業大学'), (29584, 'https://ror.org/05f211872', 'en', 1, 'https://ror.org/05f211872 LEC Tokyo Legal Mind University LEC東京リーガルマインド大学院大学'), (29585, 'https://ror.org/05f2ywb48', 'no_lang_code', 1, 'https://ror.org/05f2ywb48 Regenstrief Institute'), (29586, 'https://ror.org/05f321t07', 'en', 1, 'https://ror.org/05f321t07 Kitchen Sisters Productions'), (29587, 'https://ror.org/05f3by596', 'en', 1, 'https://ror.org/05f3by596 Parrish Art Museum'), (29588, 'https://ror.org/05f7ph084', 'en', 1, 'https://ror.org/05f7ph084 Illinois Historic Preservation Agency'), (29589, 'https://ror.org/05f92a127', 'en', 1, 'https://ror.org/05f92a127 Myitkyina University မြစ်ကြီးနား တက္ကသိုလ်'), (29590, 'https://ror.org/05fbv2v73', 'en', 1, 'https://ror.org/05fbv2v73 Islamic Azad University of Arsanjan دانشگاه آزاد اسلامی واحد ارسنجان'), (29591, 'https://ror.org/05fbv4544', 'en', 1, 'https://ror.org/05fbv4544 Chien Hsin University of Science and Technology 健行科技大學'), (29592, 'https://ror.org/05fe2ew26', 'en', 1, 'https://ror.org/05fe2ew26 National Sports Academy Vassil Levski Национална Спортна Академия "Васил Левски"'), (29593, 'https://ror.org/05fj5jw51', 'en', 1, 'https://ror.org/05fj5jw51 Vyatka State Agricultural Academy Вятская государственная сельскохозяйственная академия'), (29594, 'https://ror.org/05fkpm735', 'en', 1, 'https://ror.org/05fkpm735 Hodeidah University جامعة الحديدة'), (29595, 'https://ror.org/05fmr5p93', 'no_lang_code', 1, 'https://ror.org/05fmr5p93 MemBrain (Czechia)'), (29596, 'https://ror.org/05fnn5020', 'en', 1, 'https://ror.org/05fnn5020 Shreemati Nathibai Damodar Thackersey Women''s University श्रीमती नाथीबाई दामोदर ठाकरसी महिला विद्यापीठ'), (29597, 'https://ror.org/05fp00270', 'en', 1, 'https://ror.org/05fp00270 American Architectural Foundation'), (29598, 'https://ror.org/05fpqxw78', 'en', 1, 'https://ror.org/05fpqxw78 Brooklyn Museum'), (29599, 'https://ror.org/05fqwcn05', 'en', 1, 'https://ror.org/05fqwcn05 SeaWeb'), (29600, 'https://ror.org/05frh4635', 'no_lang_code', 1, 'https://ror.org/05frh4635 Miyazaki Sangyo-keiei University 宮崎産業経営大学'), (29601, 'https://ror.org/05fscpd23', 'en', 1, 'https://ror.org/05fscpd23 Greenville County Library System'), (29602, 'https://ror.org/05ftpbf89', 'en', 1, 'https://ror.org/05ftpbf89 Carmel Clay Public Library'), (29603, 'https://ror.org/05fv5ah77', 'no_lang_code', 1, 'https://ror.org/05fv5ah77 LA Composite (Czechia)'), (29604, 'https://ror.org/05fvbwq75', 'en', 1, 'https://ror.org/05fvbwq75 Academy of Fine Arts In Łódź Władysław Strzemiński'), (29605, 'https://ror.org/05fwqpw07', 'no_lang_code', 1, 'https://ror.org/05fwqpw07 ProjectSoft (Czechia)'), (29606, 'https://ror.org/05fybaw10', 'en', 1, 'https://ror.org/05fybaw10 National Council for History Education'), (29607, 'https://ror.org/05fz3qx12', 'en', 1, 'https://ror.org/05fz3qx12 Institute of Nautical Archaeology'), (29608, 'https://ror.org/05fz45v32', 'en', 1, 'https://ror.org/05fz45v32 Boundless Readers'), (29609, 'https://ror.org/05fzc8c45', 'en', 1, 'https://ror.org/05fzc8c45 Tambov State University Тамбовский государственный университет'), (29610, 'https://ror.org/05fzsym71', 'en', 1, 'https://ror.org/05fzsym71 Billings Public Library'), (29611, 'https://ror.org/05fzw1z08', 'en', 1, 'https://ror.org/05fzw1z08 State University of Makassar Universitas Negeri Makassar'), (29612, 'https://ror.org/05g0wzd49', 'en', 1, 'https://ror.org/05g0wzd49 Ural State Law University Уральская государственная юридическая академия'), (29613, 'https://ror.org/05g1rz111', 'en', 1, 'https://ror.org/05g1rz111 Lees McRae College'), (29614, 'https://ror.org/05g48k331', 'en', 1, 'https://ror.org/05g48k331 Hamdan Bin Mohammed Smart University جامعة حمدان بن محمد الإلكترونية'), (29615, 'https://ror.org/05g4f0342', 'en', 1, 'https://ror.org/05g4f0342 Kyoto Seika University 京都精華大学'), (29616, 'https://ror.org/05g59rq62', 'no_lang_code', 1, 'https://ror.org/05g59rq62 VUES Brno (Czechia)'), (29617, 'https://ror.org/05g7nkm73', 'en', 1, 'https://ror.org/05g7nkm73 Constantin Brâncoveanu University Universitatea Constantin Brâncoveanu'), (29618, 'https://ror.org/05g7zxm15', 'id', 1, 'https://ror.org/05g7zxm15 Universitas Kebangsaan Republik Indonesia'), (29619, 'https://ror.org/05g910a37', 'en', 1, 'https://ror.org/05g910a37 Yangon University of Education ရန်ကုန်ပညာရေးတက္ကသိုလ်'), (29620, 'https://ror.org/05ga5zc50', 'no_lang_code', 1, 'https://ror.org/05ga5zc50 Aikoku Gakuen University 愛国学園大学'), (29621, 'https://ror.org/05gb7hz97', 'en', 1, 'https://ror.org/05gb7hz97 Oxnard Public Library'), (29622, 'https://ror.org/05gcme754', 'en', 1, 'https://ror.org/05gcme754 Xi''an International Studies University 西安外国语大学'), (29623, 'https://ror.org/05gcxx960', 'en', 1, 'https://ror.org/05gcxx960 St. Paul University Iloilo'), (29624, 'https://ror.org/05gechm64', 'en', 1, 'https://ror.org/05gechm64 Carnegie Library of Pittsburgh'), (29625, 'https://ror.org/05ghynn27', 'id', 1, 'https://ror.org/05ghynn27 Universitas Islam Malang'), (29626, 'https://ror.org/05gp0dh20', 'hu', 1, 'https://ror.org/05gp0dh20 Sola Scriptura Teológiai Főiskola'), (29627, 'https://ror.org/05gqsa340', 'en', 1, 'https://ror.org/05gqsa340 Hokkaido University of Science 北海道科学大学'), (29628, 'https://ror.org/05grcng38', 'en', 1, 'https://ror.org/05grcng38 Lake Region State College'), (29629, 'https://ror.org/05grw1m33', 'en', 1, 'https://ror.org/05grw1m33 Yaroslav Mudryi National Law University Національний юридичний університет імені Ярослава Мудрого'), (29630, 'https://ror.org/05gya9x53', 'en', 1, 'https://ror.org/05gya9x53 Belleville Public Library'), (29631, 'https://ror.org/05gz40769', 'en', 1, 'https://ror.org/05gz40769 Den-en Chofu University 田園調布学園大学'), (29632, 'https://ror.org/05gzb7v46', 'en', 1, 'https://ror.org/05gzb7v46 Museum of New Mexico Foundation'), (29633, 'https://ror.org/05h0pqw77', 'id', 1, 'https://ror.org/05h0pqw77 Universitas Hang Tuah'), (29634, 'https://ror.org/05h0z7c09', 'en', 1, 'https://ror.org/05h0z7c09 University of Dubai جامعة دبي'), (29635, 'https://ror.org/05h20p340', 'en', 1, 'https://ror.org/05h20p340 Piedmont International University'), (29636, 'https://ror.org/05h2tq494', 'id', 1, 'https://ror.org/05h2tq494 Universitas Pgri Banyuwangi'), (29637, 'https://ror.org/05h4th693', 'en', 1, 'https://ror.org/05h4th693 Yichun University 宜春学院'), (29638, 'https://ror.org/05h68bp56', 'en', 1, 'https://ror.org/05h68bp56 Nippon Institute of Technology 日本工業大学'), (29639, 'https://ror.org/05h6xaj60', 'en', 1, 'https://ror.org/05h6xaj60 Korean Bible University'), (29640, 'https://ror.org/05h6yt550', 'en', 1, 'https://ror.org/05h6yt550 Udon Thani Rajabhat University มหาวิทยาลัยราชภัฏอุดรธานี'), (29641, 'https://ror.org/05h7zf334', 'no_lang_code', 1, 'https://ror.org/05h7zf334 Bombardier (United Kingdom)'), (29642, 'https://ror.org/05h831e18', 'en', 1, 'https://ror.org/05h831e18 Kursk Institute of Management, Economics and Busines Курский институт менеджмента, экономики и бизнеса'), (29643, 'https://ror.org/05h99gf82', 'en', 1, 'https://ror.org/05h99gf82 Walters Art Museum'), (29644, 'https://ror.org/05h9b8280', 'cs', 1, 'https://ror.org/05h9b8280 Vlastivědné Muzeum Dr. Hostaše v Klatovech'), (29645, 'https://ror.org/05ha0y974', 'pl', 1, 'https://ror.org/05ha0y974 Europejska Akademia Sztuk w Warszawie'), (29646, 'https://ror.org/05ha26626', 'sk', 1, 'https://ror.org/05ha26626 St. Elizabeth College of Health and Social Work Vysoká Škola Zdravotníctva a Sociálnej Práce sv. Alžbety'), (29647, 'https://ror.org/05hawb687', 'no_lang_code', 1, 'https://ror.org/05hawb687 Shaqra University جامعة شقراء'), (29648, 'https://ror.org/05hc66959', 'no_lang_code', 1, 'https://ror.org/05hc66959 Centre of Civil Engineering (Czechia) Centrum Stavebního Inženýrství'), (29649, 'https://ror.org/05hcd4f69', 'en', 1, 'https://ror.org/05hcd4f69 Historic Lexington Foundation'), (29650, 'https://ror.org/05hd9py65', 'id', 1, 'https://ror.org/05hd9py65 Universitas Merdeka Madiun'), (29651, 'https://ror.org/05henrr38', 'en', 1, 'https://ror.org/05henrr38 Togliatti Academy of Management'), (29652, 'https://ror.org/05hf7ba61', 'en', 1, 'https://ror.org/05hf7ba61 Mid Western University मध्यपश्चिमाञ्चल विश्वविद्यालय'), (29653, 'https://ror.org/05hfpw879', 'en', 1, 'https://ror.org/05hfpw879 Chiba Institute of Science 千葉科学大学'), (29654, 'https://ror.org/05hgcp219', 'en', 1, 'https://ror.org/05hgcp219 B.S. Ricks Memorial Library'), (29655, 'https://ror.org/05hjapd30', 'en', 1, 'https://ror.org/05hjapd30 State Academy of Arts of Turkmenistan Türkmenistanyň Döwlet çeperçilik akademiýasy'), (29656, 'https://ror.org/05hm3gb11', 'en', 1, 'https://ror.org/05hm3gb11 Talbot Historical Society'), (29657, 'https://ror.org/05hna7313', 'en', 1, 'https://ror.org/05hna7313 Academy of Performing Arts in Bratislava Vysoká škola múzických umení v Bratislave'), (29658, 'https://ror.org/05hpa0166', 'en', 1, 'https://ror.org/05hpa0166 Pejepscot Historical Society'), (29659, 'https://ror.org/05hq64n33', 'en', 1, 'https://ror.org/05hq64n33 Odessa State University of Internal Affairs Одеський державний університет внутрішніх справ'), (29660, 'https://ror.org/05hra0856', 'id', 1, 'https://ror.org/05hra0856 Universitas Muhammadiyah Semarang'), (29661, 'https://ror.org/05hs3x327', 'en', 1, 'https://ror.org/05hs3x327 American Research Institute in Turkey'), (29662, 'https://ror.org/05hw4nf80', 'en', 1, 'https://ror.org/05hw4nf80 William K. Sanford Town Library'), (29663, 'https://ror.org/05j0yvv31', 'no_lang_code', 1, 'https://ror.org/05j0yvv31 Rigel (United States)'), (29664, 'https://ror.org/05j159d85', 'no_lang_code', 1, 'https://ror.org/05j159d85 Šmeral Brno (Czechia)'), (29665, 'https://ror.org/05j1kzp43', 'en', 1, 'https://ror.org/05j1kzp43 Gilder Lehrman Institute of American History'), (29666, 'https://ror.org/05j1vt166', 'no_lang_code', 1, 'https://ror.org/05j1vt166 Fuji Tokoha University 富士常葉大学'), (29667, 'https://ror.org/05j20qz36', 'en', 1, 'https://ror.org/05j20qz36 Janabadra University'), (29668, 'https://ror.org/05j23np60', 'en', 1, 'https://ror.org/05j23np60 Galesburg Public Library'), (29669, 'https://ror.org/05j2ycs33', 'id', 1, 'https://ror.org/05j2ycs33 Universitas Mathla''ul Anwar Banten'), (29670, 'https://ror.org/05j412v70', 'en', 1, 'https://ror.org/05j412v70 Beppu University 別府大学'), (29671, 'https://ror.org/05j7wmw44', 'en', 1, 'https://ror.org/05j7wmw44 Saint Petersburg Social and Economic Institute Санкт-Петербургский социально-экономический институт'), (29672, 'https://ror.org/05jbbr095', 'en', 1, 'https://ror.org/05jbbr095 Higher School of Social Technologies SOCIĀLO TEHNOLOĢIJU AUGSTSKOLA'), (29673, 'https://ror.org/05jbnbs36', 'en', 1, 'https://ror.org/05jbnbs36 Danforth at Framingham State University'), (29674, 'https://ror.org/05jcsqx24', 'en', 1, 'https://ror.org/05jcsqx24 Saratov State University Саратовский государственный университет имени Н. Г. Чернышевского'), (29675, 'https://ror.org/05jcsvh64', 'en', 1, 'https://ror.org/05jcsvh64 Institute Unic Отделение дистанционного обучения'), (29676, 'https://ror.org/05jesdm52', 'en', 1, 'https://ror.org/05jesdm52 Union Theological Seminary'), (29677, 'https://ror.org/05jfsf459', 'en', 1, 'https://ror.org/05jfsf459 Kalmyk State University Калмыцкий государственный университет'), (29678, 'https://ror.org/05jg3qp42', 'en', 1, 'https://ror.org/05jg3qp42 New York Studio School of Drawing Painting and Sculpture'), (29679, 'https://ror.org/05jhq2w18', 'en', 1, 'https://ror.org/05jhq2w18 Maharana Pratap University of Agriculture and Technology'), (29680, 'https://ror.org/05jhvw838', 'en', 1, 'https://ror.org/05jhvw838 Imperial College of Business Studies بزنس سٹڈیز کے امپیریل کالج'), (29681, 'https://ror.org/05jhzfe38', 'en', 1, 'https://ror.org/05jhzfe38 Southwest Wetlands Interpretive Association'), (29682, 'https://ror.org/05jk8qm79', 'en', 1, 'https://ror.org/05jk8qm79 Portland Public Library'), (29683, 'https://ror.org/05jneht64', 'en', 1, 'https://ror.org/05jneht64 Hot Springs County Museum and Cultural Center'), (29684, 'https://ror.org/05jnrzf43', 'en', 1, 'https://ror.org/05jnrzf43 Unity University College ዩኒቲ ዩኒቨርስቲ'), (29685, 'https://ror.org/05jnwy894', 'en', 1, 'https://ror.org/05jnwy894 Sambalpur University Institute of Information Technology'), (29686, 'https://ror.org/05jq6y977', 'en', 1, 'https://ror.org/05jq6y977 Webster Museum and Historical Society'), (29687, 'https://ror.org/05jqxc143', 'en', 1, 'https://ror.org/05jqxc143 School District of Lee County'), (29688, 'https://ror.org/05jtyp735', 'en', 1, 'https://ror.org/05jtyp735 Webster University Ghana'), (29689, 'https://ror.org/05jv2yg47', 'en', 1, 'https://ror.org/05jv2yg47 Moscow State Technological University Московский Государственный Технологический Университет'), (29690, 'https://ror.org/05jv80548', 'en', 1, 'https://ror.org/05jv80548 Kremenchuk Mykhailo Ostrohradskyi National University Кременчугский национальный университет Кременчуцький національний університет імені Михайла Остроградського'), (29691, 'https://ror.org/05jyzsv32', 'no_lang_code', 1, 'https://ror.org/05jyzsv32 Ekotoxa (Czechia)'), (29692, 'https://ror.org/05k3n5g92', 'en', 1, 'https://ror.org/05k3n5g92 Amistad Research Center'), (29693, 'https://ror.org/05k3sdc46', 'en', 1, 'https://ror.org/05k3sdc46 North Sichuan Medical University 川北医学院'), (29694, 'https://ror.org/05k4ves29', 'en', 1, 'https://ror.org/05k4ves29 University of Marketing and Distribution Sciences 流通科学大学'), (29695, 'https://ror.org/05k7kyd84', 'en', 1, 'https://ror.org/05k7kyd84 Library of America'), (29696, 'https://ror.org/05k887869', 'en', 1, 'https://ror.org/05k887869 Cleveland Police Museum'), (29697, 'https://ror.org/05k8s5247', 'en', 1, 'https://ror.org/05k8s5247 North Carolina Coastal Federation'), (29698, 'https://ror.org/05kc0qv85', 'en', 1, 'https://ror.org/05kc0qv85 Berea International Theological Seminary 베뢰아국제대학원대학교'), (29699, 'https://ror.org/05kce7016', 'en', 1, 'https://ror.org/05kce7016 Voronezh State Medical Academy named after N.N. Burdenko Воронежский государственный медицинский университет имени Н.Н. Бурденко'), (29700, 'https://ror.org/05ke4ws41', 'en', 1, 'https://ror.org/05ke4ws41 Yala Rajabhat University มหาวิทยาลัยราชภัฎยะลา'), (29701, 'https://ror.org/05kfm7k22', 'en', 1, 'https://ror.org/05kfm7k22 Omsk State Agrarian University Омский государственный аграрный университет имени П. А. Столыпина'), (29702, 'https://ror.org/05khqpb71', 'en', 1, 'https://ror.org/05khqpb71 University of International Business and Economics 对外经济贸易大学'), (29703, 'https://ror.org/05kjde412', 'no_lang_code', 1, 'https://ror.org/05kjde412 Asociace inovačního podnikání České republiky z.s. Association of Innovative Entrepreneurship (Czechia)'), (29704, 'https://ror.org/05kka2g19', 'en', 1, 'https://ror.org/05kka2g19 John W. Higgins Armory'), (29705, 'https://ror.org/05kknm922', 'en', 1, 'https://ror.org/05kknm922 Bryansk State Technical University Брянский государственный технический университет'), (29706, 'https://ror.org/05knchj06', 'en', 1, 'https://ror.org/05knchj06 National Afro-American Museum and Cultural Center'), (29707, 'https://ror.org/05kptcy79', 'en', 1, 'https://ror.org/05kptcy79 National Universities Commission'), (29708, 'https://ror.org/05kr6gy36', 'en', 1, 'https://ror.org/05kr6gy36 Karnataka State Women''s University ಕರ್ನಾಟಕ ರಾಜ್ಯ ಮಹಿಳಾ ವಿಶ್ವವಿದ್ಯಾಲಯ'), (29709, 'https://ror.org/05ksgvj69', 'en', 1, 'https://ror.org/05ksgvj69 Institute of Contemporary Art Институт Современного Искусства'), (29710, 'https://ror.org/05kt2wq49', 'en', 1, 'https://ror.org/05kt2wq49 Academy of the Federal Security Service of the Russian Federation Академия федеральной службы безопасности Российской Федерации'), (29711, 'https://ror.org/05kvcy688', 'en', 1, 'https://ror.org/05kvcy688 Hope University'), (29712, 'https://ror.org/05kvm7n82', 'en', 1, 'https://ror.org/05kvm7n82 Soochow University 東吳大學'), (29713, 'https://ror.org/05kvq4b11', 'en', 1, 'https://ror.org/05kvq4b11 Kumi University'), (29714, 'https://ror.org/05kw9ye22', 'id', 1, 'https://ror.org/05kw9ye22 Institut Ilmu Sosial dan Ilmu Politik Yapis Biak'), (29715, 'https://ror.org/05kypfq19', 'cs', 1, 'https://ror.org/05kypfq19 Centrum Pro Komunitní Práci'), (29716, 'https://ror.org/05kz0b404', 'en', 1, 'https://ror.org/05kz0b404 Shenyang Sport University 沈阳体育学院'), (29717, 'https://ror.org/05kz9ez20', 'id', 1, 'https://ror.org/05kz9ez20 Universitas Pawyatan Daha Kediri'), (29718, 'https://ror.org/05m0ggf57', 'en', 1, 'https://ror.org/05m0ggf57 Catholic University of Applied Sciences Katholische Hochschule Mainz'), (29719, 'https://ror.org/05m1gnk07', 'en', 1, 'https://ror.org/05m1gnk07 Korea University 朝鮮大学校'), (29720, 'https://ror.org/05m2gft34', 'en', 1, 'https://ror.org/05m2gft34 Vladimir Institute of Business Владимирский институт бизнеса'), (29721, 'https://ror.org/05m3ysc06', 'en', 1, 'https://ror.org/05m3ysc06 Vinnytsia National Agrarian University ВІННИЦЬКИЙ НАЦІОНАЛЬНИЙ АГРАРНИЙ УНІВЕРСИТЕТ'), (29722, 'https://ror.org/05m6adj80', 'en', 1, 'https://ror.org/05m6adj80 Takasaki City University of Economics 高崎経済大学'), (29723, 'https://ror.org/05m7h6793', 'en', 1, 'https://ror.org/05m7h6793 Academy of Music, Dance and Fine Arts Академия за музикални танци и изобразителни изкуства'), (29724, 'https://ror.org/05m9bzv71', 'en', 1, 'https://ror.org/05m9bzv71 Samara State Transport University Самарский государственный университет путей сообщения'), (29725, 'https://ror.org/05marek63', 'en', 1, 'https://ror.org/05marek63 Colorado Springs Pioneers Museum'), (29726, 'https://ror.org/05md7gj74', 'en', 1, 'https://ror.org/05md7gj74 Czech Zoological Society'), (29727, 'https://ror.org/05mfk1s45', 'en', 1, 'https://ror.org/05mfk1s45 Nizhny Novgorod State Agricultural Academy'), (29728, 'https://ror.org/05mg79n26', 'no_lang_code', 1, 'https://ror.org/05mg79n26 ABB (Czechia)'), (29729, 'https://ror.org/05mh02w22', 'no_lang_code', 1, 'https://ror.org/05mh02w22 Eckernforde Tanga University'), (29730, 'https://ror.org/05mhcm605', 'en', 1, 'https://ror.org/05mhcm605 Czech Union for Nature Conservation'), (29731, 'https://ror.org/05mjgmf63', 'en', 1, 'https://ror.org/05mjgmf63 Aleut Marine Mammal Commission'), (29732, 'https://ror.org/05mjn5p90', 'en', 1, 'https://ror.org/05mjn5p90 Tobolsk Pedagogical Institute named after D. I. Mendeleev Тобольский педагогический институт им. Д.И. Менделеева'), (29733, 'https://ror.org/05mk17154', 'en', 1, 'https://ror.org/05mk17154 Bettendorf Public Library and Information Center'), (29734, 'https://ror.org/05mk2v788', 'en', 1, 'https://ror.org/05mk2v788 American Scandinavian Foundation'), (29735, 'https://ror.org/05mnfh623', 'no_lang_code', 1, 'https://ror.org/05mnfh623 STARMANS electronics (Czechia)'), (29736, 'https://ror.org/05mp05a58', 'en', 1, 'https://ror.org/05mp05a58 Billings Farm & Museum'), (29737, 'https://ror.org/05mq5yf88', 'en', 1, 'https://ror.org/05mq5yf88 Hidayatullah National Law University हिदायतुल्लाह राष्ट्रीय विधि विश्वविद्यालय'), (29738, 'https://ror.org/05ms4pv23', 'en', 1, 'https://ror.org/05ms4pv23 Cagayan State University Pamantasang Estado sa Cagayan'), (29739, 'https://ror.org/05mvafw22', 'en', 1, 'https://ror.org/05mvafw22 Association for the Study of African American Life and History'), (29740, 'https://ror.org/05mx3tz05', 'no_lang_code', 1, 'https://ror.org/05mx3tz05 Polymer Institute Brno (Czechia)'), (29741, 'https://ror.org/05mzj8a56', 'en', 1, 'https://ror.org/05mzj8a56 Kyoto College of Graduate Studies for Informatics 京都情報大学院大学'), (29742, 'https://ror.org/05mzn8a55', 'en', 1, 'https://ror.org/05mzn8a55 King Sigismund Business School'), (29743, 'https://ror.org/05mzp7213', 'en', 1, 'https://ror.org/05mzp7213 WYSO Radio Station'), (29744, 'https://ror.org/05n04ff42', 'en', 1, 'https://ror.org/05n04ff42 Operation Opportunity Foundation'), (29745, 'https://ror.org/05n0nb142', 'en', 1, 'https://ror.org/05n0nb142 FamilySearch'), (29746, 'https://ror.org/05n41yg77', 'en', 1, 'https://ror.org/05n41yg77 Historical Society of Frankford'), (29747, 'https://ror.org/05n436p02', 'en', 1, 'https://ror.org/05n436p02 South Ural State Humanitarian Pedagogical University Челябинский государственный педагогический университет'), (29748, 'https://ror.org/05n4f1v75', 'id', 1, 'https://ror.org/05n4f1v75 Universitas Katolik Darma Cendika'), (29749, 'https://ror.org/05n4r2p88', 'es', 1, 'https://ror.org/05n4r2p88 Universidad de Sta. Isabel'), (29750, 'https://ror.org/05n4v6b27', 'en', 1, 'https://ror.org/05n4v6b27 Maritime Gloucester'), (29751, 'https://ror.org/05n757p35', 'en', 1, 'https://ror.org/05n757p35 Hiroshima Shudo University 広島修道大学'), (29752, 'https://ror.org/05n8fe870', 'en', 1, 'https://ror.org/05n8fe870 American University in Bulgaria Американски университет в България'), (29753, 'https://ror.org/05neg3k91', 'en', 1, 'https://ror.org/05neg3k91 State Musical Pedagogical Institute named M.M.Ippolitova-Ivanov Государственный музыкально-педагогический институт имени М. М. Ипполитова-Иванова'), (29754, 'https://ror.org/05ng0t640', 'en', 1, 'https://ror.org/05ng0t640 De La Salle Catholic University'), (29755, 'https://ror.org/05nh9h876', 'en', 1, 'https://ror.org/05nh9h876 House of the Seven Gables'), (29756, 'https://ror.org/05nj64045', 'en', 1, 'https://ror.org/05nj64045 Institute of Practical Psychology and Psychoanalysis Институт практической психологии и психоанализа'), (29757, 'https://ror.org/05nmhtv58', 'en', 1, 'https://ror.org/05nmhtv58 Atyrau State University named of Kh.Dosmukhamedova Атырау мемлекеттік университеті Атырауский государственный университет имени Х. Досмухамедова'), (29758, 'https://ror.org/05nnaxh18', 'en', 1, 'https://ror.org/05nnaxh18 University of East Yangon ရန်ကုန် အရှေ့ပိုင်း တက္ကသိုလ်'), (29759, 'https://ror.org/05nnnck56', 'en', 1, 'https://ror.org/05nnnck56 The American University of Vietnam Đại học Mỹ tại Việt Nam'), (29760, 'https://ror.org/05nrxes70', 'en', 1, 'https://ror.org/05nrxes70 Academy of Innovation Management Академия менеджмента инноваций'), (29761, 'https://ror.org/05nsdjj25', 'en', 1, 'https://ror.org/05nsdjj25 Miyagi University 宮城大学'), (29762, 'https://ror.org/05nsh7a69', 'en', 1, 'https://ror.org/05nsh7a69 Dhaka International University ঢাকা ইন্টারন্যাশনাল ইউনিভার্সিটি'), (29763, 'https://ror.org/05nt5pw88', 'no_lang_code', 1, 'https://ror.org/05nt5pw88 GeneTiCA (Czechia)'), (29764, 'https://ror.org/05nv0ff14', 'no_lang_code', 1, 'https://ror.org/05nv0ff14 Retia (Czechia)'), (29765, 'https://ror.org/05nwf9e60', 'en', 1, 'https://ror.org/05nwf9e60 Journey Through Hallowed Ground Partnership'), (29766, 'https://ror.org/05nxbvr71', 'en', 1, 'https://ror.org/05nxbvr71 George Enescu University of Arts of Iași Universitatea de Arte George Enescu din Iași'), (29767, 'https://ror.org/05p2jqf06', 'no_lang_code', 1, 'https://ror.org/05p2jqf06 Continental (Czechia)'), (29768, 'https://ror.org/05p2kf948', 'en', 1, 'https://ror.org/05p2kf948 Ausländeruniversität Siena University for Foreigners of Siena Università per stranieri di Siena Université pour étrangers de sienne'), (29769, 'https://ror.org/05p2q6194', 'en', 1, 'https://ror.org/05p2q6194 University of Sadat City جامعة مدينة السادات'), (29770, 'https://ror.org/05p38tr07', 'en', 1, 'https://ror.org/05p38tr07 Mie Prefectural College Of Nursing 三重県立看護大学'), (29771, 'https://ror.org/05p3gfq61', 'en', 1, 'https://ror.org/05p3gfq61 Krasnoyarsk State Agrarian University Красноярский государственный аграрный университет'), (29772, 'https://ror.org/05p5fjx25', 'en', 1, 'https://ror.org/05p5fjx25 Crimean Agrotechnological University Кримський агротехнологічний університет'), (29773, 'https://ror.org/05p6wtx18', 'no_lang_code', 1, 'https://ror.org/05p6wtx18 Research Institute for Brown Coal (Czechia) Výzkumný ústav pro hnědé uhlí a.s.'), (29774, 'https://ror.org/05p70qs58', 'en', 1, 'https://ror.org/05p70qs58 Maine Classical Association'), (29775, 'https://ror.org/05p7xfk26', 'en', 1, 'https://ror.org/05p7xfk26 Preston University پریسٹن یونیورسٹی'), (29776, 'https://ror.org/05p8tp630', 'en', 1, 'https://ror.org/05p8tp630 International Business School at Vilnius University Vilniaus universiteto Tarptautinio verslo mokykla'), (29777, 'https://ror.org/05pabrc30', 'en', 1, 'https://ror.org/05pabrc30 Stavropol Finance and Economics Institute'), (29778, 'https://ror.org/05pc6nk51', 'en', 1, 'https://ror.org/05pc6nk51 New Era University'), (29779, 'https://ror.org/05pc6w891', 'en', 1, 'https://ror.org/05pc6w891 Kazakh National Medical University Казахский национальный медицинский университет имени С. Д. Асфендиярова Қазақ ұлттық медицина университеті'), (29780, 'https://ror.org/05pfgty20', 'en', 1, 'https://ror.org/05pfgty20 Guilderland Public Library'), (29781, 'https://ror.org/05pg3mb97', 'en', 1, 'https://ror.org/05pg3mb97 Muria Kudus University Universitas Muria Kudus'), (29782, 'https://ror.org/05pgz6x52', 'en', 1, 'https://ror.org/05pgz6x52 Virginia International University'), (29783, 'https://ror.org/05ph49593', 'en', 1, 'https://ror.org/05ph49593 Ural Institute of the Stock Market Уральский Институт Фондового Рынка'), (29784, 'https://ror.org/05pkzsx39', 'no_lang_code', 1, 'https://ror.org/05pkzsx39 Janus University'), (29785, 'https://ror.org/05pnt1244', 'no_lang_code', 1, 'https://ror.org/05pnt1244 dataPartner (Czechia)'), (29786, 'https://ror.org/05pq0wd90', 'en', 1, 'https://ror.org/05pq0wd90 St. Peter''s Institute of Higher Education and Research'), (29787, 'https://ror.org/05pq46g90', 'en', 1, 'https://ror.org/05pq46g90 Hoa Sen University Trường Đại học Hoa Sen 莲花大学'), (29788, 'https://ror.org/05pr0sx93', 'no_lang_code', 1, 'https://ror.org/05pr0sx93 Orgrez (Czechia)'), (29789, 'https://ror.org/05prjmm12', 'en', 1, 'https://ror.org/05prjmm12 Moscow University for the Humanities Московский гуманитарный университет'), (29790, 'https://ror.org/05ptzyt43', 'en', 1, 'https://ror.org/05ptzyt43 Mexican American Catholic College'), (29791, 'https://ror.org/05pv2w409', 'en', 1, 'https://ror.org/05pv2w409 American Numismatic Society'), (29792, 'https://ror.org/05pvab842', 'en', 1, 'https://ror.org/05pvab842 Institute of Market Economy, Social Policy and Law Институт рыночной экономики, социальной политики и права'), (29793, 'https://ror.org/05pzp6855', 'en', 1, 'https://ror.org/05pzp6855 Samar State University'), (29794, 'https://ror.org/05q2ap552', 'en', 1, 'https://ror.org/05q2ap552 Historic Hawaii Foundation'), (29795, 'https://ror.org/05q4zgq93', 'en', 1, 'https://ror.org/05q4zgq93 Ryazan State Agrotechnological University Рязанский государственный агротехнологический университет имени П.А.Костычева'), (29796, 'https://ror.org/05q6eez19', 'en', 1, 'https://ror.org/05q6eez19 International Academy of Marketing and Management Международная академия маркетинга и менеджмента'), (29797, 'https://ror.org/05q6gjh32', 'en', 1, 'https://ror.org/05q6gjh32 North Caucasian Social Institute Северо-Кавказский социальный институт'), (29798, 'https://ror.org/05q8wsh46', 'en', 1, 'https://ror.org/05q8wsh46 PEF Private University of Management Vienna PEF Privatuniversität für Management'), (29799, 'https://ror.org/05q95ps16', 'en', 1, 'https://ror.org/05q95ps16 Kurgan State University Курганский государственный университет'), (29800, 'https://ror.org/05q9we431', 'en', 1, 'https://ror.org/05q9we431 Noakhali Science and Technology University নোয়াখালী বিজ্ঞান ও প্রযুক্তি বিশ্ববিদ্যালয়'), (29801, 'https://ror.org/05qbvwf88', 'en', 1, 'https://ror.org/05qbvwf88 Osaka University of Arts 大阪芸術大学'), (29802, 'https://ror.org/05qbwsp96', 'en', 1, 'https://ror.org/05qbwsp96 Tyumen State Medical University Тюменский государственный медицинский университет'), (29803, 'https://ror.org/05qby2688', 'id', 1, 'https://ror.org/05qby2688 Universitas Baturaja'), (29804, 'https://ror.org/05qcjpk30', 'en', 1, 'https://ror.org/05qcjpk30 M. Akmullah Bashkir State Pedagogical University Башкирский государственный педагогический университет имени М. Акмуллы'), (29805, 'https://ror.org/05qdadx80', 'no_lang_code', 1, 'https://ror.org/05qdadx80 Prague Research Institute of Railway Rolling Stock VUKV (Czechia)'), (29806, 'https://ror.org/05qdq6h40', 'en', 1, 'https://ror.org/05qdq6h40 Naresuan University Hospital โรงพยาบาลมหาวิทยาลัยนเรศวร'), (29807, 'https://ror.org/05qgc6h44', 'en', 1, 'https://ror.org/05qgc6h44 Utkal University of Culture'), (29808, 'https://ror.org/05qjp8n74', 'id', 1, 'https://ror.org/05qjp8n74 Universitas Islam Majapahit'), (29809, 'https://ror.org/05qk89p66', 'en', 1, 'https://ror.org/05qk89p66 Jefferson Patterson Park and Museum'), (29810, 'https://ror.org/05qmfqe91', 'id', 1, 'https://ror.org/05qmfqe91 Universitas Yos Soedarso'), (29811, 'https://ror.org/05qp5sg69', 'en', 1, 'https://ror.org/05qp5sg69 Luther Rice College and Seminary'), (29812, 'https://ror.org/05qp61e83', 'en', 1, 'https://ror.org/05qp61e83 Musashi University 武蔵大学'), (29813, 'https://ror.org/05qr5xz39', 'en', 1, 'https://ror.org/05qr5xz39 Institute of Law and Business Институт бизнеса и права'), (29814, 'https://ror.org/05qrjdq75', 'en', 1, 'https://ror.org/05qrjdq75 Volga State University of Water Transport Волжский государственный университет водного транспорта'), (29815, 'https://ror.org/05qwfk367', 'en', 1, 'https://ror.org/05qwfk367 Luarasi University Universiteti Luarasi'), (29816, 'https://ror.org/05qwrn075', 'en', 1, 'https://ror.org/05qwrn075 Irkutsk State Medical University Иркутский государственный медицинский университет'), (29817, 'https://ror.org/05qx3ve03', 'en', 1, 'https://ror.org/05qx3ve03 Geumgang University 금강대학교'), (29818, 'https://ror.org/05qxr6b81', 'en', 1, 'https://ror.org/05qxr6b81 Bethlehem Area School District'), (29819, 'https://ror.org/05qyt4p67', 'en', 1, 'https://ror.org/05qyt4p67 Sardar Bahadur Khan Women''s University سردار بہادر خان خواتین یونیورسٹی'), (29820, 'https://ror.org/05r250n95', 'no_lang_code', 1, 'https://ror.org/05r250n95 Precheza (Czechia)'), (29821, 'https://ror.org/05r2k0m61', 'no_lang_code', 1, 'https://ror.org/05r2k0m61 Osaka Jogakuin University 大阪女学院大学'), (29822, 'https://ror.org/05r42kg44', 'en', 1, 'https://ror.org/05r42kg44 Vilniaus dailės akademija Vilnius Academy of Arts Вильнюсская художественная академия'), (29823, 'https://ror.org/05r4ftt49', 'en', 1, 'https://ror.org/05r4ftt49 The Dane G. Hansen Museum'), (29824, 'https://ror.org/05r50mj29', 'en', 1, 'https://ror.org/05r50mj29 Siberian State Aerospace University Сибирский государственный аэрокосмический университет имени академика М. Ф. Решетнёва'), (29825, 'https://ror.org/05r7e6j86', 'en', 1, 'https://ror.org/05r7e6j86 Multnomah County Library'), (29826, 'https://ror.org/05r8r3608', 'en', 1, 'https://ror.org/05r8r3608 United States University'), (29827, 'https://ror.org/05r9rzb75', 'en', 1, 'https://ror.org/05r9rzb75 University of Energy and Natural Resources'), (29828, 'https://ror.org/05raa0j17', 'no_lang_code', 1, 'https://ror.org/05raa0j17 Mikropur (Czechia)'), (29829, 'https://ror.org/05rap1m08', 'no_lang_code', 1, 'https://ror.org/05rap1m08 Maharaja Sriram Chandra Bhanja Deo University ମହାରାଜା ଶ୍ରୀରାମ ଚନ୍ଦ୍ର ଭଞ୍ଜ ଦେଓ ଇଉନିଭର୍ସିଟି'), (29830, 'https://ror.org/05rbe6d26', 'en', 1, 'https://ror.org/05rbe6d26 Anacostia Watershed Society'), (29831, 'https://ror.org/05rbemn16', 'no_lang_code', 1, 'https://ror.org/05rbemn16 Tajmac-zps (Czechia)'), (29832, 'https://ror.org/05rce5g70', 'en', 1, 'https://ror.org/05rce5g70 Manarat International University মানারাত ইন্টারন্যাশনাল ইউনিভার্সিটি'), (29833, 'https://ror.org/05rdty581', 'en', 1, 'https://ror.org/05rdty581 Taganrog State Pedagogical Institute Таганрогский государственный педагогический институт имени А.П. Чехова'), (29834, 'https://ror.org/05re0wz96', 'en', 1, 'https://ror.org/05re0wz96 Surgut ''Planet'' Institute of World Economics and Business Сургутский институт мировой экономики и бизнеса'), (29835, 'https://ror.org/05rfp8442', 'en', 1, 'https://ror.org/05rfp8442 Norman Rockwell Museum'), (29836, 'https://ror.org/05rgcq967', 'en', 1, 'https://ror.org/05rgcq967 Torch Trinity Graduate University 횃불트리니티신학대학원대학교'), (29837, 'https://ror.org/05rgwjj62', 'no_lang_code', 1, 'https://ror.org/05rgwjj62 Medical Technologies (Czechia)'), (29838, 'https://ror.org/05rjmhp95', 'en', 1, 'https://ror.org/05rjmhp95 Academy of Film & Multimedia “MARUBI” Akademia e Filmit dhe Multimedias Marubi'), (29839, 'https://ror.org/05rn18y04', 'en', 1, 'https://ror.org/05rn18y04 Institute of Business, Psychology and Management Институт бизнеса, психологии и управления'), (29840, 'https://ror.org/05rn78z96', 'en', 1, 'https://ror.org/05rn78z96 Dagon University ဒဂုံ တက္ကသိုလ်'), (29841, 'https://ror.org/05rqmax46', 'en', 1, 'https://ror.org/05rqmax46 High Desert Museum'), (29842, 'https://ror.org/05rt7ve48', 'en', 1, 'https://ror.org/05rt7ve48 Mindanao University of Science and Technology'), (29843, 'https://ror.org/05rtb3z04', 'en', 1, 'https://ror.org/05rtb3z04 Western Reserve Historical Society'), (29844, 'https://ror.org/05rvftf63', 'en', 1, 'https://ror.org/05rvftf63 National History Center'), (29845, 'https://ror.org/05rxs7517', 'en', 1, 'https://ror.org/05rxs7517 Songkhla Rajabhat University มหาวิทยาลัยราชภัฏสงขลา'), (29846, 'https://ror.org/05s0z8a66', 'en', 1, 'https://ror.org/05s0z8a66 Yokohama University of Pharmacy 横浜薬科大学'), (29847, 'https://ror.org/05s1mjj45', 'en', 1, 'https://ror.org/05s1mjj45 Retrospective Index to Music Periodicals'), (29848, 'https://ror.org/05s2ecw65', 'en', 1, 'https://ror.org/05s2ecw65 BGC Trust University Bangladesh বিজিসি ট্রাস্ট বিশ্ববিদ্যালয় বাংলাদেশ'), (29849, 'https://ror.org/05s3ca234', 'en', 1, 'https://ror.org/05s3ca234 Bangladesh Open University বাংলাদেশ উন্মুক্ত বিশ্ববিদ্যালয়'), (29850, 'https://ror.org/05s86mf83', 'en', 1, 'https://ror.org/05s86mf83 Vermont Fish & Wildlife Department'), (29851, 'https://ror.org/05scx8x11', 'id', 1, 'https://ror.org/05scx8x11 Universitas Aki'), (29852, 'https://ror.org/05sd29c29', 'en', 1, 'https://ror.org/05sd29c29 Pontifical Lateran University Pontificia Università Lateranense Päpstliche Lateranuniversität Universitat Pontifícia Lateranense Université pontificale du latran'), (29853, 'https://ror.org/05sfaa624', 'en', 1, 'https://ror.org/05sfaa624 Tibiscus University of Timișoara Universitatea Tibiscus din Timișoara'), (29854, 'https://ror.org/05sh1ye34', 'en', 1, 'https://ror.org/05sh1ye34 History Center in Tompkins County'), (29855, 'https://ror.org/05shy2j49', 'en', 1, 'https://ror.org/05shy2j49 Saint-Petersburg Institute of Hospitality Санкт-Петербургский институт гостеприимства'), (29856, 'https://ror.org/05sk22f46', 'en', 1, 'https://ror.org/05sk22f46 Mahayana Sutra & Tantra Center'), (29857, 'https://ror.org/05smtc341', 'en', 1, 'https://ror.org/05smtc341 Irkutsk State Transport University Иркутский государственный университет путей сообщения'), (29858, 'https://ror.org/05snv9327', 'en', 1, 'https://ror.org/05snv9327 Gandhara University گاندھارا یونیورسٹی'), (29859, 'https://ror.org/05sqep420', 'en', 1, 'https://ror.org/05sqep420 Claremont Institute'), (29860, 'https://ror.org/05ssws785', 'en', 1, 'https://ror.org/05ssws785 Ulyanovsk State Agricultural Academy named after PA Stolypin Ульяновская государственная сельскохозяйственная академия'), (29861, 'https://ror.org/05swf4h71', 'en', 1, 'https://ror.org/05swf4h71 Siberian Institute of Business and Information Technologies Сибирский институт бизнеса и информационных технологий'), (29862, 'https://ror.org/05swzm262', 'en', 1, 'https://ror.org/05swzm262 Institute of Social and Humanities Институт социальных и гуманитарных наук'), (29863, 'https://ror.org/05sykgj25', 'en', 1, 'https://ror.org/05sykgj25 Pamantasan ng Hilagang Pilipinas University of Northern Philippines'), (29864, 'https://ror.org/05t0s7273', 'en', 1, 'https://ror.org/05t0s7273 Kansai Gaidai University 関西外国語大学'), (29865, 'https://ror.org/05t178043', 'no_lang_code', 1, 'https://ror.org/05t178043 Vyrtych (Czechia)'), (29866, 'https://ror.org/05t1bc854', 'en', 1, 'https://ror.org/05t1bc854 Korea National Defense University 국방대학교'), (29867, 'https://ror.org/05t4srr46', 'en', 1, 'https://ror.org/05t4srr46 Centre for International Cooperation in Education'), (29868, 'https://ror.org/05t56qd09', 'id', 1, 'https://ror.org/05t56qd09 Dayanu Ikhsanuddin University Universitas Dayanu Ikhsanuddin'), (29869, 'https://ror.org/05t58bx13', 'en', 1, 'https://ror.org/05t58bx13 Samara State Technical University Самарский государственный технический университет'), (29870, 'https://ror.org/05t7j2034', 'en', 1, 'https://ror.org/05t7j2034 Preble County Historical Society'), (29871, 'https://ror.org/05t7wa168', 'no_lang_code', 1, 'https://ror.org/05t7wa168 Trakce (Czechia)'), (29872, 'https://ror.org/05t9f1n79', 'en', 1, 'https://ror.org/05t9f1n79 National University of Ukraine on Physical Education and Sport Національний університет фізичного виховання і спорту України'), (29873, 'https://ror.org/05ta60489', 'en', 1, 'https://ror.org/05ta60489 International Institute of Management Arkhangelsk Институт управления'), (29874, 'https://ror.org/05tcz5141', 'no_lang_code', 1, 'https://ror.org/05tcz5141 BMT Medical Technology (Czechia)'), (29875, 'https://ror.org/05teadr95', 'cs', 1, 'https://ror.org/05teadr95 Památník Národního Písemnictví'), (29876, 'https://ror.org/05tep8d22', 'en', 1, 'https://ror.org/05tep8d22 Anna Maria College'), (29877, 'https://ror.org/05th78b98', 'cs', 1, 'https://ror.org/05th78b98 Hvězdárna v Úpici, Observatory Úpice'), (29878, 'https://ror.org/05tha3a95', 'en', 1, 'https://ror.org/05tha3a95 Allentown Art Museum'), (29879, 'https://ror.org/05tk3y812', 'en', 1, 'https://ror.org/05tk3y812 Denver Art Museum'), (29880, 'https://ror.org/05tkaf051', 'en', 1, 'https://ror.org/05tkaf051 Beatrice Public Library'), (29881, 'https://ror.org/05tkmsd51', 'en', 1, 'https://ror.org/05tkmsd51 East European Institute of Psychoanalysis Восточно-Европейский Институт Психоанализа'), (29882, 'https://ror.org/05tmh5a95', 'en', 1, 'https://ror.org/05tmh5a95 Hermitage Museum'), (29883, 'https://ror.org/05tnbbj36', 'en', 1, 'https://ror.org/05tnbbj36 Geneva Historical Society'), (29884, 'https://ror.org/05tndeq88', 'en', 1, 'https://ror.org/05tndeq88 Yakima Valley Libraries'), (29885, 'https://ror.org/05tt1bq68', 'en', 1, 'https://ror.org/05tt1bq68 Commercial Fisheries Research Foundation'), (29886, 'https://ror.org/05tt5nr09', 'en', 1, 'https://ror.org/05tt5nr09 Ukrainian Catholic University Ukraiński Uniwersytet Katolicki Украинский католический университет Український католицький університет'), (29887, 'https://ror.org/05ttt8934', 'en', 1, 'https://ror.org/05ttt8934 Wichita Public Library'), (29888, 'https://ror.org/05tvatp40', 'no_lang_code', 1, 'https://ror.org/05tvatp40 Gifu Shotoku Gakuen University 岐阜聖徳学園大学'), (29889, 'https://ror.org/05txf9q94', 'en', 1, 'https://ror.org/05txf9q94 Academy of Economic Security Академия экономической безопасности'), (29890, 'https://ror.org/05tyb9s14', 'en', 1, 'https://ror.org/05tyb9s14 EKA University of Applied Sciences Ekonomikas un kultûras augstskola'), (29891, 'https://ror.org/05v056h48', 'no_lang_code', 1, 'https://ror.org/05v056h48 Explosia (Czechia)'), (29892, 'https://ror.org/05v0vxa20', 'en', 1, 'https://ror.org/05v0vxa20 Los Angeles Education Partnership'), (29893, 'https://ror.org/05v3pg621', 'en', 1, 'https://ror.org/05v3pg621 Nan Kai University of Technology 南開科技大學'), (29894, 'https://ror.org/05v4ecv43', 'en', 1, 'https://ror.org/05v4ecv43 Tver Institute of Ecology and Law Тверской институт экологии и права'), (29895, 'https://ror.org/05v4xtv52', 'id', 1, 'https://ror.org/05v4xtv52 Universitas Nasional Pasim'), (29896, 'https://ror.org/05v56p320', 'id', 1, 'https://ror.org/05v56p320 Universitas Muhammadiyah Tapanuli Selatan'), (29897, 'https://ror.org/05v8e1c02', 'en', 1, 'https://ror.org/05v8e1c02 Massachusetts Department of Fish & Game'), (29898, 'https://ror.org/05v8v7d33', 'en', 1, 'https://ror.org/05v8v7d33 Yangtze Normal University 长江师范学院'), (29899, 'https://ror.org/05v9vy052', 'en', 1, 'https://ror.org/05v9vy052 Sulaimani Polytechnic University زانکۆی پۆلیتەکنیکی سلێمانی'), (29900, 'https://ror.org/05vayj190', 'en', 1, 'https://ror.org/05vayj190 Bee Research Institute Institut für Bienenforschung'), (29901, 'https://ror.org/05vehv290', 'en', 1, 'https://ror.org/05vehv290 University of Tyumen федеральное государственное бюджетное образовательное учреждение высшего образования Тюменский государственный университет'), (29902, 'https://ror.org/05veqwc59', 'en', 1, 'https://ror.org/05veqwc59 Academy of Labour Social Relations and Tourism Академія праці, соціальних відносин і туризму'), (29903, 'https://ror.org/05vewjh97', 'en', 1, 'https://ror.org/05vewjh97 Ministry of Internal Affairs of the Republic of Tajikistan Вазорати корҳои дохилии Ҷумҳурии Тоҷикистон'), (29904, 'https://ror.org/05vgwdg09', 'en', 1, 'https://ror.org/05vgwdg09 Richards Free Library'), (29905, 'https://ror.org/05vjhj012', 'pl', 1, 'https://ror.org/05vjhj012 Private Higher School of Social Sciences, Computer Science and Medical Prywatna Wyższa Szkoła Nauk Społecznych, Komputerowych i Medycznych'), (29906, 'https://ror.org/05vk02k31', 'en', 1, 'https://ror.org/05vk02k31 St. Lucie County Regional History Center'), (29907, 'https://ror.org/05vkc0567', 'en', 1, 'https://ror.org/05vkc0567 Language of Dance Centre'), (29908, 'https://ror.org/05vkeks90', 'en', 1, 'https://ror.org/05vkeks90 Moscow Conservatory Московская государственная консерватория им. П. И. Чайковского'), (29909, 'https://ror.org/05vkk5g69', 'en', 1, 'https://ror.org/05vkk5g69 Hakuoh University 白鴎大学'), (29910, 'https://ror.org/05vkm7r79', 'en', 1, 'https://ror.org/05vkm7r79 Lower Columbia Estuary Partnership'), (29911, 'https://ror.org/05vmyj633', 'en', 1, 'https://ror.org/05vmyj633 Saint Petersburg State Academy of Veterinary Medicine САНКТ-ПЕТЕРБУРГСКАЯ ГОСУДАРСТВЕННАЯ АКАДЕМИЯ ВЕТЕРИНАРНОЙ МЕДИЦИНЫ'), (29912, 'https://ror.org/05vng4613', 'no_lang_code', 1, 'https://ror.org/05vng4613 Wastech (Czechia)'), (29913, 'https://ror.org/05vp0jk15', 'en', 1, 'https://ror.org/05vp0jk15 Juneau Public Libraries'), (29914, 'https://ror.org/05vqb6078', 'no_lang_code', 1, 'https://ror.org/05vqb6078 Oprox (Czechia)'), (29915, 'https://ror.org/05vqg2q68', 'en', 1, 'https://ror.org/05vqg2q68 Balboa Art Conservation Center'), (29916, 'https://ror.org/05vqqhk28', 'en', 1, 'https://ror.org/05vqqhk28 Institute of International Law and Economics named after AS Griboedova Институт международного права и экономики имени А.С. Грибоедова'), (29917, 'https://ror.org/05vs2an33', 'en', 1, 'https://ror.org/05vs2an33 Bryansk State Engineering and Technological Academy Брянская государственная инженерно-технологическая академия'), (29918, 'https://ror.org/05vv4xn30', 'en', 1, 'https://ror.org/05vv4xn30 Kobe Tokiwa University 神戸常盤大学'), (29919, 'https://ror.org/05vx7wd63', 'en', 1, 'https://ror.org/05vx7wd63 University of Perpetual Help System DALTA'), (29920, 'https://ror.org/05vxw9r04', 'en', 1, 'https://ror.org/05vxw9r04 Klamath River Inter-Tribal Fish and Water Commission'), (29921, 'https://ror.org/05vzasa79', 'en', 1, 'https://ror.org/05vzasa79 Kurmangazy Kazakh National Conservatory Қазақ ұлттық консерваториясы'), (29922, 'https://ror.org/05w387x59', 'en', 1, 'https://ror.org/05w387x59 Voronezh Institute of Ministry of Internal Affairs Воронежский институт МВД'), (29923, 'https://ror.org/05w3ffa57', 'en', 1, 'https://ror.org/05w3ffa57 American College'), (29924, 'https://ror.org/05w462p65', 'id', 1, 'https://ror.org/05w462p65 Universitas Muhammadiyah Palembang'), (29925, 'https://ror.org/05w5r2e40', 'en', 1, 'https://ror.org/05w5r2e40 Atish Dipankar University of Science and Technology অতীশ দীপঙ্কর ইউনিভার্সিটি অফ সায়েন্স অ্যান্ড টেকনোলজি'), (29926, 'https://ror.org/05w61br16', 'en', 1, 'https://ror.org/05w61br16 Ekvtime Takaishvili Teaching University სასწავლო უნივერსიტეტი „რვალი“'), (29927, 'https://ror.org/05w61xa76', 'no_lang_code', 1, 'https://ror.org/05w61xa76 Delinfo (Czechia)'), (29928, 'https://ror.org/05w6dwp35', 'no_lang_code', 1, 'https://ror.org/05w6dwp35 Chikushi Jogakuen University 筑紫女学園大学'), (29929, 'https://ror.org/05w7ta844', 'en', 1, 'https://ror.org/05w7ta844 Dnepropetrovsk State Institute of Physical Culture and Sport Придніпровська державна академія фізичної культури і спорту'), (29930, 'https://ror.org/05w92f868', 'fr', 1, 'https://ror.org/05w92f868 Fondation Université Française en Arménie Հայաստանում ֆրանսիական համալսարան'), (29931, 'https://ror.org/05w9k9t67', 'en', 1, 'https://ror.org/05w9k9t67 Davangere University ದಾವಣಗೆರೆ ವಿಶ್ವವಿದ್ಯಾನಿಲಯ'), (29932, 'https://ror.org/05wawev23', 'en', 1, 'https://ror.org/05wawev23 Southwestern University'), (29933, 'https://ror.org/05wgsx832', 'en', 1, 'https://ror.org/05wgsx832 Kkottongnae University'), (29934, 'https://ror.org/05wh3vf38', 'en', 1, 'https://ror.org/05wh3vf38 HistoryMakers'); INSERT INTO `rors` VALUES (29935, 'https://ror.org/05whqt140', 'id', 1, 'https://ror.org/05whqt140 Universitas Fajar'), (29936, 'https://ror.org/05wj18248', 'en', 1, 'https://ror.org/05wj18248 Hachinohe Institute of Technology 八戸工業大学'), (29937, 'https://ror.org/05wknye49', 'en', 1, 'https://ror.org/05wknye49 Center for Fiction'), (29938, 'https://ror.org/05wkq5518', 'en', 1, 'https://ror.org/05wkq5518 Pyongyang Medical University 평양의학대학'), (29939, 'https://ror.org/05wnc7373', 'en', 1, 'https://ror.org/05wnc7373 Bethel University'), (29940, 'https://ror.org/05wr48765', 'en', 1, 'https://ror.org/05wr48765 Chifeng University 赤峰学院'), (29941, 'https://ror.org/05ws11813', 'no_lang_code', 1, 'https://ror.org/05ws11813 Abasyn University اباسین یونیورسٹی'), (29942, 'https://ror.org/05wsqqr12', 'en', 1, 'https://ror.org/05wsqqr12 Novosibirsk State University of Architecture and Civil Engineering Новосибирский государственный архитектурно-строительный университет'), (29943, 'https://ror.org/05wvagp91', 'en', 1, 'https://ror.org/05wvagp91 Pivdennoukrainskyi natsionalnyi pedagogichnyi universytet imeni K. D. Ushynskogo South Ukrainian National Pedagogical University named after K. D. Ushynsky Південноукраїнський національний педагогічний університет імені Костянтина Ушинського'), (29944, 'https://ror.org/05wvke928', 'en', 1, 'https://ror.org/05wvke928 Tokyo Health Care University 東京医療保健大学'), (29945, 'https://ror.org/05wwvg270', 'en', 1, 'https://ror.org/05wwvg270 Kazan Law Institute Казанский юридический институт МВД России'), (29946, 'https://ror.org/05wx6v148', 'en', 1, 'https://ror.org/05wx6v148 Carnegie Hall'), (29947, 'https://ror.org/05wx7ah15', 'en', 1, 'https://ror.org/05wx7ah15 Renaissance Society of America'), (29948, 'https://ror.org/05x1g5662', 'en', 1, 'https://ror.org/05x1g5662 Piedmont University'), (29949, 'https://ror.org/05x21mt76', 'en', 1, 'https://ror.org/05x21mt76 Amur State Medical Academy Амурская Государственная Медицинская Академия'), (29950, 'https://ror.org/05x31d492', 'en', 1, 'https://ror.org/05x31d492 Northwestern College - Iowa'), (29951, 'https://ror.org/05x5g1486', 'en', 1, 'https://ror.org/05x5g1486 Palawan State University'), (29952, 'https://ror.org/05x5rpn21', 'en', 1, 'https://ror.org/05x5rpn21 American University of Technology دانشگاه آمریکایی فناوری'), (29953, 'https://ror.org/05x6rt433', 'id', 1, 'https://ror.org/05x6rt433 Universitas Pamulang'), (29954, 'https://ror.org/05x852w19', 'en', 1, 'https://ror.org/05x852w19 Longue Vue House and Gardens'), (29955, 'https://ror.org/05x9hft88', 'id', 1, 'https://ror.org/05x9hft88 Universitas Sahid Jakarta'), (29956, 'https://ror.org/05xases12', 'en', 1, 'https://ror.org/05xases12 Lepanto Foundation'), (29957, 'https://ror.org/05xc0dy80', 'en', 1, 'https://ror.org/05xc0dy80 Osaka University of Commerce 大阪商業大学'), (29958, 'https://ror.org/05xdrya09', 'en', 1, 'https://ror.org/05xdrya09 Rock Point Community School'), (29959, 'https://ror.org/05xdt2n12', 'en', 1, 'https://ror.org/05xdt2n12 Walter Elwood Museum'), (29960, 'https://ror.org/05xeme822', 'no_lang_code', 1, 'https://ror.org/05xeme822 Paññāsāstra University of Cambodia សាកលវិទ្យាល័យបញ្ញាសាស្ត្រកម្ពុជា'), (29961, 'https://ror.org/05xezqk59', 'en', 1, 'https://ror.org/05xezqk59 Andrássy Gyula Budapesti Német Nyelvű Egyetem Andrássy University Budapest'), (29962, 'https://ror.org/05xjspa12', 'en', 1, 'https://ror.org/05xjspa12 Darul Huda Islamic University Université islamique darul huda جامعة دار الهدى الإسلامية ദാറുൽഹുദാ ഇസ്ലാമിക് യൂണിവേഴ്സിറ്റി'), (29963, 'https://ror.org/05xknxa42', 'en', 1, 'https://ror.org/05xknxa42 Bedër University Universiteti Hëna e Plotë'), (29964, 'https://ror.org/05xkw0e31', 'en', 1, 'https://ror.org/05xkw0e31 V. Sarajishvili Tbilisi State Conservation თბილისის ვ.სარაჯიშვილის სახელობის სახელმწიფო კონსერვატორია'), (29965, 'https://ror.org/05xp8d869', 'en', 1, 'https://ror.org/05xp8d869 Bibliographical Society of America'), (29966, 'https://ror.org/05xpx5s03', 'en', 1, 'https://ror.org/05xpx5s03 Martin University Hospital Univerzitná Nemocnica Martin'), (29967, 'https://ror.org/05xq38r07', 'en', 1, 'https://ror.org/05xq38r07 Calcasieu Parish Public Library'), (29968, 'https://ror.org/05xqgz809', 'en', 1, 'https://ror.org/05xqgz809 Moscow State Institute of Culture Московский государственный институт культуры [править | править вики-текст]'), (29969, 'https://ror.org/05xtnfk88', 'en', 1, 'https://ror.org/05xtnfk88 Venice International University'), (29970, 'https://ror.org/05xvhyj32', 'en', 1, 'https://ror.org/05xvhyj32 Armenian National Agrarian University Հայաստանի ազգային ագրարային համալսարան'), (29971, 'https://ror.org/05xvq6g12', 'en', 1, 'https://ror.org/05xvq6g12 Ackley Heritage Center'), (29972, 'https://ror.org/05xw54w34', 'cs', 1, 'https://ror.org/05xw54w34 Academia Rerum Civilium - Vysoká Skola Politických a Společenských Věd'), (29973, 'https://ror.org/05xwxh996', 'en', 1, 'https://ror.org/05xwxh996 Snug Harbor Cultural Center & Botanical Garden'), (29974, 'https://ror.org/05xyqje95', 'en', 1, 'https://ror.org/05xyqje95 Newport Historical Society'), (29975, 'https://ror.org/05xz4d742', 'mt', 1, 'https://ror.org/05xz4d742 Fondazzjoni Temi Zammit'), (29976, 'https://ror.org/05xzaq362', 'en', 1, 'https://ror.org/05xzaq362 M.Auezov South Kazakhstan State University М.ӘУЕЗОВ АТЫНДАҒЫ ОҢТҮСТІК ҚАЗАҚСТАН МЕМЛЕКЕТТІК УНИВЕРСИТЕТІ'), (29977, 'https://ror.org/05y3p3k12', 'en', 1, 'https://ror.org/05y3p3k12 Hebrew College'), (29978, 'https://ror.org/05y3w6z74', 'en', 1, 'https://ror.org/05y3w6z74 Omaha Public Library'), (29979, 'https://ror.org/05y4r9290', 'en', 1, 'https://ror.org/05y4r9290 Sylhet International University সিলেট ইন্টারন্যাশনাল ইউনিভার্সিটি'), (29980, 'https://ror.org/05y7b4225', 'en', 1, 'https://ror.org/05y7b4225 Hanzhong University 한중대학교'), (29981, 'https://ror.org/05y7mt438', 'en', 1, 'https://ror.org/05y7mt438 Richmond Public Library'), (29982, 'https://ror.org/05y8j9f75', 'en', 1, 'https://ror.org/05y8j9f75 Sarguja University सरगुजा विश्वविद्यालय'), (29983, 'https://ror.org/05y8x6h30', 'en', 1, 'https://ror.org/05y8x6h30 Al Ghurair University'), (29984, 'https://ror.org/05y9enm95', 'en', 1, 'https://ror.org/05y9enm95 Baguio Central University'), (29985, 'https://ror.org/05y9wk989', 'en', 1, 'https://ror.org/05y9wk989 Old Dartmouth Historical Society'), (29986, 'https://ror.org/05yay2120', 'en', 1, 'https://ror.org/05yay2120 Monk Seal Foundation'), (29987, 'https://ror.org/05yayh717', 'en', 1, 'https://ror.org/05yayh717 Maiden Voyage Productions'), (29988, 'https://ror.org/05ybw7k58', 'no_lang_code', 1, 'https://ror.org/05ybw7k58 VUC Praha (Czechia)'), (29989, 'https://ror.org/05yfc2w21', 'en', 1, 'https://ror.org/05yfc2w21 Shaheed Zulfiqar Ali Bhutto Institute of Science and Technology شہید ذوالفقار علی بھٹو انسٹیٹیوٹ آف سائنس اینڈ ٹیکنالوجی'), (29990, 'https://ror.org/05yge8w48', 'en', 1, 'https://ror.org/05yge8w48 Ueno Gakuen University 上野学園大学'), (29991, 'https://ror.org/05yh8pq36', 'en', 1, 'https://ror.org/05yh8pq36 Baltic Institute of Foreign Languages and International Intercultural Cooperation Балтийский институт иностранных языков и межкультурного сотрудничества'), (29992, 'https://ror.org/05yhrkh78', 'no_lang_code', 1, 'https://ror.org/05yhrkh78 Nishikyushu University 西九州大学'), (29993, 'https://ror.org/05yjmg052', 'no_lang_code', 1, 'https://ror.org/05yjmg052 Temex (Czechia)'), (29994, 'https://ror.org/05yjqdn82', 'en', 1, 'https://ror.org/05yjqdn82 Kursk State University Курский государственный университет'), (29995, 'https://ror.org/05yjy4360', 'en', 1, 'https://ror.org/05yjy4360 University of Applied Arts Vienna Universität für angewandte Kunst Wien'), (29996, 'https://ror.org/05yk27p37', 'en', 1, 'https://ror.org/05yk27p37 Elisabeth University of Music エリザベト音楽大学'), (29997, 'https://ror.org/05ykq3c56', 'no_lang_code', 1, 'https://ror.org/05ykq3c56 Alfred Nobel University Университет имени Альфреда Нобеля Університет імені Альфреда Нобеля'), (29998, 'https://ror.org/05ykvq143', 'en', 1, 'https://ror.org/05ykvq143 Dimitrie Cantemir University Universitatea Dimitrie Cantemir'), (29999, 'https://ror.org/05yq59a96', 'en', 1, 'https://ror.org/05yq59a96 International Institute of Economics and Law Международный институт экономики и права'), (30000, 'https://ror.org/05yqeww58', 'en', 1, 'https://ror.org/05yqeww58 Rajabhat Rajanagarindra University มหาวิทยาลัยราชภัฏราชนครินทร์'), (30001, 'https://ror.org/0000m8h16', 'no_lang_code', 1, 'https://ror.org/0000m8h16 QRtech (Sweden)'), (30002, 'https://ror.org/0000xgr97', 'no_lang_code', 1, 'https://ror.org/0000xgr97 Onyx Optics (United States)'), (30003, 'https://ror.org/0001ew531', 'en', 1, 'https://ror.org/0001ew531 Adelson Foundation'), (30004, 'https://ror.org/0002yq607', 'en', 1, 'https://ror.org/0002yq607 Henry Cogswell College'), (30005, 'https://ror.org/0003gmg65', 'no_lang_code', 1, 'https://ror.org/0003gmg65 Osaka Gas (United States)'), (30006, 'https://ror.org/0003xa228', 'en', 1, 'https://ror.org/0003xa228 Cancer Prevention and Research Institute of Texas'), (30007, 'https://ror.org/0005jpy03', 'en', 1, 'https://ror.org/0005jpy03 Israel National Institute for Health Policy Research'), (30008, 'https://ror.org/0005rqp26', 'no_lang_code', 1, 'https://ror.org/0005rqp26 Netzsch (United States)'), (30009, 'https://ror.org/0007mw271', 'no_lang_code', 1, 'https://ror.org/0007mw271 Pacific Safety Products (Canada)'), (30010, 'https://ror.org/000865k88', 'en', 1, 'https://ror.org/000865k88 Lake Macquarie City Council'), (30011, 'https://ror.org/000896j91', 'no_lang_code', 1, 'https://ror.org/000896j91 Tai Yang Research Company (United States)'), (30012, 'https://ror.org/000b2tt25', 'en', 1, 'https://ror.org/000b2tt25 Wilburforce Foundation'), (30013, 'https://ror.org/000cs1t14', 'en', 1, 'https://ror.org/000cs1t14 Harvard NeuroDiscovery Center'), (30014, 'https://ror.org/000f8rg73', 'hu', 1, 'https://ror.org/000f8rg73 Orosháza Városi Önkormányzat Kórháza'), (30015, 'https://ror.org/000kjm556', 'en', 1, 'https://ror.org/000kjm556 General Administration of Quality Supervision, Inspection and Quarantine'), (30016, 'https://ror.org/000nz1091', 'no_lang_code', 1, 'https://ror.org/000nz1091 Modine Manufacturing (United States)'), (30017, 'https://ror.org/000p6bx44', 'no_lang_code', 1, 'https://ror.org/000p6bx44 Anglo American (Canada)'), (30018, 'https://ror.org/000v4bn80', 'en', 1, 'https://ror.org/000v4bn80 Crossroads College'), (30019, 'https://ror.org/000w5kn77', 'en', 1, 'https://ror.org/000w5kn77 Ministry of Environment'), (30020, 'https://ror.org/000wq3b85', 'no_lang_code', 1, 'https://ror.org/000wq3b85 Iteris (United States)'), (30021, 'https://ror.org/000x43d10', 'no_lang_code', 1, 'https://ror.org/000x43d10 Cadcamation (Switzerland)'), (30022, 'https://ror.org/000xe4a49', 'no_lang_code', 1, 'https://ror.org/000xe4a49 Visotek (United States)'), (30023, 'https://ror.org/000xvke80', 'en', 1, 'https://ror.org/000xvke80 Nanjing Children''s Hospital 南京市儿童医院'), (30024, 'https://ror.org/000ycm570', 'no_lang_code', 1, 'https://ror.org/000ycm570 Credo Interactive (Canada)'), (30025, 'https://ror.org/000z6n336', 'no_lang_code', 1, 'https://ror.org/000z6n336 Polartec (United States)'), (30026, 'https://ror.org/0011c8r66', 'no_lang_code', 1, 'https://ror.org/0011c8r66 CornerTurn (United States)'), (30027, 'https://ror.org/0012hsk21', 'no_lang_code', 1, 'https://ror.org/0012hsk21 ViGYAN (United States)'), (30028, 'https://ror.org/0014w1417', 'en', 1, 'https://ror.org/0014w1417 Georgia Sea Grant'), (30029, 'https://ror.org/0015x1k58', 'en', 1, 'https://ror.org/0015x1k58 National Center for Injury Prevention and Control'), (30030, 'https://ror.org/00171m316', 'no_lang_code', 1, 'https://ror.org/00171m316 Stellar Science (United States)'), (30031, 'https://ror.org/0018p0n86', 'en', 1, 'https://ror.org/0018p0n86 Alabama Department of Rehabilitation Services'), (30032, 'https://ror.org/0018peh15', 'en', 1, 'https://ror.org/0018peh15 Tote Board'), (30033, 'https://ror.org/0018wtq07', 'no_lang_code', 1, 'https://ror.org/0018wtq07 Diversified Technical Systems (United States)'), (30034, 'https://ror.org/0019se992', 'no_lang_code', 1, 'https://ror.org/0019se992 Princeton Lightwave (United States)'), (30035, 'https://ror.org/001abtb92', 'no_lang_code', 1, 'https://ror.org/001abtb92 NeoDynamics (Sweden)'), (30036, 'https://ror.org/001ader08', 'en', 1, 'https://ror.org/001ader08 Silicon Valley Community Foundation'), (30037, 'https://ror.org/001b82544', 'no_lang_code', 1, 'https://ror.org/001b82544 Sovar (Canada)'), (30038, 'https://ror.org/001c1ff51', 'no_lang_code', 1, 'https://ror.org/001c1ff51 Weetabix (Canada)'), (30039, 'https://ror.org/001c1n781', 'no_lang_code', 1, 'https://ror.org/001c1n781 Tärnsjö Garveri (Sweden)'), (30040, 'https://ror.org/001c7xr36', 'no_lang_code', 1, 'https://ror.org/001c7xr36 Custom MMIC (United States)'), (30041, 'https://ror.org/001f9e125', 'en', 1, 'https://ror.org/001f9e125 Jiangsu Academy of Agricultural Sciences 江苏省农业科学院'), (30042, 'https://ror.org/001htc678', 'en', 1, 'https://ror.org/001htc678 Ravensbourne University London'), (30043, 'https://ror.org/001jdxs64', 'no_lang_code', 1, 'https://ror.org/001jdxs64 Stuart Olson (Canada)'), (30044, 'https://ror.org/001k0r742', 'no_lang_code', 1, 'https://ror.org/001k0r742 DigiLens (United States)'), (30045, 'https://ror.org/001mpn042', 'no_lang_code', 1, 'https://ror.org/001mpn042 Baldor Electric (United States)'), (30046, 'https://ror.org/001r6dj72', 'en', 1, 'https://ror.org/001r6dj72 Southeastern Bible College'), (30047, 'https://ror.org/001rfde81', 'no_lang_code', 1, 'https://ror.org/001rfde81 Henan Tianguan Group (China)'), (30048, 'https://ror.org/001rv3303', 'en', 1, 'https://ror.org/001rv3303 Vermont Center for Independent Living'), (30049, 'https://ror.org/001tp4w71', 'en', 1, 'https://ror.org/001tp4w71 Crafts Council'), (30050, 'https://ror.org/001vezc41', 'en', 1, 'https://ror.org/001vezc41 Administration régionale Kativik Kativik Regional Government'), (30051, 'https://ror.org/001yh3598', 'no_lang_code', 1, 'https://ror.org/001yh3598 Linde (Canada)'), (30052, 'https://ror.org/001yrmh12', 'en', 1, 'https://ror.org/001yrmh12 Defense Logistics Agency'), (30053, 'https://ror.org/0020g7t18', 'no_lang_code', 1, 'https://ror.org/0020g7t18 Davidson Technologies (United States)'), (30054, 'https://ror.org/0021ws843', 'en', 1, 'https://ror.org/0021ws843 Ministry of Community Safety and Correctional Services Ministère de la Sécurité communautaire et des Services correctionnels'), (30055, 'https://ror.org/0023ydp64', 'en', 1, 'https://ror.org/0023ydp64 Malden Public Schools'), (30056, 'https://ror.org/0025qh018', 'no_lang_code', 1, 'https://ror.org/0025qh018 Procera Networks (Sweden)'), (30057, 'https://ror.org/00269y122', 'no_lang_code', 1, 'https://ror.org/00269y122 Serstech (Sweden)'), (30058, 'https://ror.org/0026h4837', 'en', 1, 'https://ror.org/0026h4837 Nanjing Institute of Vegetable Science'), (30059, 'https://ror.org/0027t6e72', 'no_lang_code', 1, 'https://ror.org/0027t6e72 G&S Titanium (United States)'), (30060, 'https://ror.org/0028hgc48', 'en', 1, 'https://ror.org/0028hgc48 Utah Space Grant Consortium'), (30061, 'https://ror.org/002a8dp29', 'no_lang_code', 1, 'https://ror.org/002a8dp29 Sunol Sciences Corporation (United States)'), (30062, 'https://ror.org/002av1788', 'no_lang_code', 1, 'https://ror.org/002av1788 Scanscot Technology (Sweden)'), (30063, 'https://ror.org/002dzmc91', 'no_lang_code', 1, 'https://ror.org/002dzmc91 Almi (Sweden)'), (30064, 'https://ror.org/002e77370', 'no_lang_code', 1, 'https://ror.org/002e77370 Brainvest (Hungary)'), (30065, 'https://ror.org/002famp79', 'no_lang_code', 1, 'https://ror.org/002famp79 Türk Telekom (Turkey)'), (30066, 'https://ror.org/002fqp272', 'en', 1, 'https://ror.org/002fqp272 Hostos Community College'), (30067, 'https://ror.org/002fy4y97', 'no_lang_code', 1, 'https://ror.org/002fy4y97 Metso (Canada)'), (30068, 'https://ror.org/002fzqp75', 'en', 1, 'https://ror.org/002fzqp75 University for Peace'), (30069, 'https://ror.org/002g2cw45', 'no_lang_code', 1, 'https://ror.org/002g2cw45 D2L (Canada)'), (30070, 'https://ror.org/002g6sj22', 'en', 1, 'https://ror.org/002g6sj22 Bertrand Russell College'), (30071, 'https://ror.org/002hd9629', 'no_lang_code', 1, 'https://ror.org/002hd9629 Opto-Knowledge Systems (United States)'), (30072, 'https://ror.org/002jd6n35', 'en', 1, 'https://ror.org/002jd6n35 Gulf of Mexico University Research Collaborative'), (30073, 'https://ror.org/002kffq59', 'no_lang_code', 1, 'https://ror.org/002kffq59 Evolva (Denmark)'), (30074, 'https://ror.org/002m0p291', 'en', 1, 'https://ror.org/002m0p291 Beihai People''s Hospital'), (30075, 'https://ror.org/002n46c33', 'no_lang_code', 1, 'https://ror.org/002n46c33 Olin (Canada)'), (30076, 'https://ror.org/002qb2q37', 'en', 1, 'https://ror.org/002qb2q37 Hainan Tranquility Hospital'), (30077, 'https://ror.org/002sgqx17', 'en', 1, 'https://ror.org/002sgqx17 Western Economic Diversification Canada'), (30078, 'https://ror.org/002sk1760', 'no_lang_code', 1, 'https://ror.org/002sk1760 Hy-Tek Manufacturing Company (United States)'), (30079, 'https://ror.org/002tqyd59', 'no_lang_code', 1, 'https://ror.org/002tqyd59 Seemann Composites (United States)'), (30080, 'https://ror.org/002w9k038', 'en', 1, 'https://ror.org/002w9k038 Brooklyn Law School'), (30081, 'https://ror.org/002xt7430', 'no_lang_code', 1, 'https://ror.org/002xt7430 Cold Cut Systems (Sweden)'), (30082, 'https://ror.org/002z5ed28', 'en', 1, 'https://ror.org/002z5ed28 Cumulative Environmental Management Association'), (30083, 'https://ror.org/0031hzx04', 'en', 1, 'https://ror.org/0031hzx04 Florida Agency for Health Care Administration'), (30084, 'https://ror.org/0031n1577', 'en', 1, 'https://ror.org/0031n1577 Leeds Arts University'), (30085, 'https://ror.org/003392690', 'en', 1, 'https://ror.org/003392690 Dr. Hasan Sadikin General Hospital'), (30086, 'https://ror.org/00344m990', 'no_lang_code', 1, 'https://ror.org/00344m990 Chenomx (Canada)'), (30087, 'https://ror.org/00348tk97', 'no_lang_code', 1, 'https://ror.org/00348tk97 Relko (Slovakia)'), (30088, 'https://ror.org/0035qd675', 'no_lang_code', 1, 'https://ror.org/0035qd675 BTech Acoustics (United States)'), (30089, 'https://ror.org/00361m323', 'no_lang_code', 1, 'https://ror.org/00361m323 Micro Delta T (Sweden)'), (30090, 'https://ror.org/0036fzf58', 'no_lang_code', 1, 'https://ror.org/0036fzf58 Richardson Electronics (United States)'), (30091, 'https://ror.org/0037zd360', 'no_lang_code', 1, 'https://ror.org/0037zd360 CombiQ (Sweden)'), (30092, 'https://ror.org/0038bns95', 'no_lang_code', 1, 'https://ror.org/0038bns95 Amsen Technologies (United States)'), (30093, 'https://ror.org/0038pvp74', 'no_lang_code', 1, 'https://ror.org/0038pvp74 Acoustic Ideas (United States)'), (30094, 'https://ror.org/003aea848', 'en', 1, 'https://ror.org/003aea848 Columbia Region Healthcare Engineers Association'), (30095, 'https://ror.org/003b9xn19', 'no_lang_code', 1, 'https://ror.org/003b9xn19 Neptec Design Group (Canada)'), (30096, 'https://ror.org/003cpqh10', 'en', 1, 'https://ror.org/003cpqh10 State Administration of Traditional Chinese Medicine of the People''s Republic of China 国家中医药管理局'), (30097, 'https://ror.org/003g4n960', 'no_lang_code', 1, 'https://ror.org/003g4n960 Templeman Automation (United States)'), (30098, 'https://ror.org/003g6b432', 'en', 1, 'https://ror.org/003g6b432 Bernstein Center for Computational Neuroscience Göttingen'), (30099, 'https://ror.org/003h3w310', 'no_lang_code', 1, 'https://ror.org/003h3w310 TSG Solutions (United States)'), (30100, 'https://ror.org/003n8re58', 'en', 1, 'https://ror.org/003n8re58 Shanghai Astronomical Observatory 中国科学院上海天文台'), (30101, 'https://ror.org/003pxap67', 'en', 1, 'https://ror.org/003pxap67 Physiological Society'), (30102, 'https://ror.org/003qgxx91', 'no_lang_code', 1, 'https://ror.org/003qgxx91 Production Products (United States)'), (30103, 'https://ror.org/003rdc798', 'en', 1, 'https://ror.org/003rdc798 Baker College'), (30104, 'https://ror.org/003sbhj60', 'en', 1, 'https://ror.org/003sbhj60 Ceres'), (30105, 'https://ror.org/003sjbp72', 'no_lang_code', 1, 'https://ror.org/003sjbp72 Waiward Steel (Canada)'), (30106, 'https://ror.org/003tbr369', 'no_lang_code', 1, 'https://ror.org/003tbr369 Alten (Sweden)'), (30107, 'https://ror.org/003vejz32', 'en', 1, 'https://ror.org/003vejz32 Flowers Canada Growers'), (30108, 'https://ror.org/003veqw46', 'no_lang_code', 1, 'https://ror.org/003veqw46 Oil States International (United States)'), (30109, 'https://ror.org/003wq4h14', 'en', 1, 'https://ror.org/003wq4h14 Gansu Province Computing Center'), (30110, 'https://ror.org/003x4qs37', 'en', 1, 'https://ror.org/003x4qs37 St. Lawrence Seaway Management'), (30111, 'https://ror.org/003zm6h82', 'no_lang_code', 1, 'https://ror.org/003zm6h82 TransTech Systems (United States)'), (30112, 'https://ror.org/0040z7z59', 'no_lang_code', 1, 'https://ror.org/0040z7z59 M Corp (United States)'), (30113, 'https://ror.org/0041dx816', 'no_lang_code', 1, 'https://ror.org/0041dx816 Vutch-Chemitex (Slovakia)'), (30114, 'https://ror.org/0043qk943', 'en', 1, 'https://ror.org/0043qk943 A-R Editions'), (30115, 'https://ror.org/00450rp60', 'no_lang_code', 1, 'https://ror.org/00450rp60 Federal Fabrics Fibers (United States)'), (30116, 'https://ror.org/0045x2741', 'en', 1, 'https://ror.org/0045x2741 Agency for Toxic Substances and Disease Registry'), (30117, 'https://ror.org/0046kpv26', 'en', 1, 'https://ror.org/0046kpv26 World Institute on Disability'), (30118, 'https://ror.org/0046r4y62', 'no_lang_code', 1, 'https://ror.org/0046r4y62 Complete Genomics (United States)'), (30119, 'https://ror.org/0046st885', 'no_lang_code', 1, 'https://ror.org/0046st885 Ortelio (United Kingdom)'), (30120, 'https://ror.org/004735h66', 'en', 1, 'https://ror.org/004735h66 Hydrogen Link Denmark Association'), (30121, 'https://ror.org/004868y83', 'no_lang_code', 1, 'https://ror.org/004868y83 PolymerPlus (United States)'), (30122, 'https://ror.org/0048a4976', 'en', 1, 'https://ror.org/0048a4976 Shanghai Eye Disease Prevention & Treatment Center'), (30123, 'https://ror.org/004a9b380', 'no_lang_code', 1, 'https://ror.org/004a9b380 SdPhotonics (United States)'), (30124, 'https://ror.org/004b0n253', 'no_lang_code', 1, 'https://ror.org/004b0n253 Applied Optimization (United States)'), (30125, 'https://ror.org/004bdz679', 'en', 1, 'https://ror.org/004bdz679 Ministry of Health'), (30126, 'https://ror.org/004cdt922', 'no_lang_code', 1, 'https://ror.org/004cdt922 Illinois Tool Works (United States)'), (30127, 'https://ror.org/004eknx63', 'en', 1, 'https://ror.org/004eknx63 Third Hospital of Hebei Medical University'), (30128, 'https://ror.org/004g82f36', 'no_lang_code', 1, 'https://ror.org/004g82f36 Kleijnen Systematic Reviews (United Kingdom)'), (30129, 'https://ror.org/004ktdh03', 'no_lang_code', 1, 'https://ror.org/004ktdh03 Acree Technologies (United States)'), (30130, 'https://ror.org/004kz1j51', 'no_lang_code', 1, 'https://ror.org/004kz1j51 Ross-Hime Designs (United States)'), (30131, 'https://ror.org/004p56m59', 'en', 1, 'https://ror.org/004p56m59 Center for Health Care Strategies'), (30132, 'https://ror.org/004qfqh71', 'en', 1, 'https://ror.org/004qfqh71 National Museum'), (30133, 'https://ror.org/004qxz190', 'en', 1, 'https://ror.org/004qxz190 Fondation ontarienne de neurotraumatologie Ontario Neurotrauma Foundation'), (30134, 'https://ror.org/004r22g79', 'en', 1, 'https://ror.org/004r22g79 Orangutan Conservancy'), (30135, 'https://ror.org/004sfzf96', 'no_lang_code', 1, 'https://ror.org/004sfzf96 Solus (United States)'), (30136, 'https://ror.org/004tts638', 'no_lang_code', 1, 'https://ror.org/004tts638 Aegisound (United States)'), (30137, 'https://ror.org/004tze884', 'en', 1, 'https://ror.org/004tze884 Institute of Natural Science 리과대학'), (30138, 'https://ror.org/004vpqq08', 'no_lang_code', 1, 'https://ror.org/004vpqq08 Princeton Microwave Technology (United States)'), (30139, 'https://ror.org/004wfw106', 'no_lang_code', 1, 'https://ror.org/004wfw106 AllCell (United States)'), (30140, 'https://ror.org/004whvh21', 'no_lang_code', 1, 'https://ror.org/004whvh21 Applied Bio-nomics (Canada)'), (30141, 'https://ror.org/004znts92', 'no_lang_code', 1, 'https://ror.org/004znts92 Tomologic (Sweden)'), (30142, 'https://ror.org/0050hxg48', 'en', 1, 'https://ror.org/0050hxg48 Hungarian Sociological Association'), (30143, 'https://ror.org/0052cdv44', 'no_lang_code', 1, 'https://ror.org/0052cdv44 Ráció Kiadói (Hungary)'), (30144, 'https://ror.org/0052kfx70', 'no_lang_code', 1, 'https://ror.org/0052kfx70 KMT Hepatech (Canada)'), (30145, 'https://ror.org/0052sz171', 'no_lang_code', 1, 'https://ror.org/0052sz171 Enhanced Vision (United States)'), (30146, 'https://ror.org/0053xaw54', 'en', 1, 'https://ror.org/0053xaw54 Cluster für kardiovaskuläre Forschung Ludwig Boltzmann Cluster for Cardiovascular Research'), (30147, 'https://ror.org/005570a84', 'no_lang_code', 1, 'https://ror.org/005570a84 DakotaLink (United States)'), (30148, 'https://ror.org/0055k7a87', 'en', 1, 'https://ror.org/0055k7a87 New Energy and Industrial Technology Development Organization 新エネルギー・産業技術総合開発機構'), (30149, 'https://ror.org/0056bph73', 'no_lang_code', 1, 'https://ror.org/0056bph73 Professional Analysis (United States)'), (30150, 'https://ror.org/0056qvz32', 'no_lang_code', 1, 'https://ror.org/0056qvz32 Vision Engineering (Italy)'), (30151, 'https://ror.org/0056wjq13', 'en', 1, 'https://ror.org/0056wjq13 Stone Lantern Films'), (30152, 'https://ror.org/0056xt122', 'no_lang_code', 1, 'https://ror.org/0056xt122 Decision Sciences International Corporation (United States)'), (30153, 'https://ror.org/00579ee64', 'no_lang_code', 1, 'https://ror.org/00579ee64 SkySight Technologies (United States)'), (30154, 'https://ror.org/0058p7h33', 'no_lang_code', 1, 'https://ror.org/0058p7h33 MassMutual Financial Group (United States)'), (30155, 'https://ror.org/005brkn65', 'no_lang_code', 1, 'https://ror.org/005brkn65 Silicon Power Corporation (United States)'), (30156, 'https://ror.org/005cgd502', 'no_lang_code', 1, 'https://ror.org/005cgd502 Digital Authentication Technologies (United States)'), (30157, 'https://ror.org/005ehq652', 'no_lang_code', 1, 'https://ror.org/005ehq652 GBL Systems Corporation (United States)'), (30158, 'https://ror.org/005gfkp44', 'no_lang_code', 1, 'https://ror.org/005gfkp44 Denison Mines (Canada)'), (30159, 'https://ror.org/005gjjf63', 'en', 1, 'https://ror.org/005gjjf63 National Psoriasis Foundation'), (30160, 'https://ror.org/005h28707', 'no_lang_code', 1, 'https://ror.org/005h28707 Versar (United States)'), (30161, 'https://ror.org/005p6bw54', 'en', 1, 'https://ror.org/005p6bw54 Albertina'), (30162, 'https://ror.org/005qng483', 'no_lang_code', 1, 'https://ror.org/005qng483 Decision Dynamics (United States)'), (30163, 'https://ror.org/005r3tp02', 'en', 1, 'https://ror.org/005r3tp02 South African National Biodiversity Institute'), (30164, 'https://ror.org/005rhrm66', 'en', 1, 'https://ror.org/005rhrm66 Australian Renewable Energy Agency'), (30165, 'https://ror.org/005rnxx75', 'en', 1, 'https://ror.org/005rnxx75 Swedish Medtech'), (30166, 'https://ror.org/005rt3g54', 'fi', 1, 'https://ror.org/005rt3g54 Emil Aaltosen Säätiö'), (30167, 'https://ror.org/005t59805', 'no_lang_code', 1, 'https://ror.org/005t59805 First RF (United States)'), (30168, 'https://ror.org/005t93q82', 'no_lang_code', 1, 'https://ror.org/005t93q82 Findwise (Sweden)'), (30169, 'https://ror.org/005z7vs15', 'en', 1, 'https://ror.org/005z7vs15 First Affiliated Hospital of Sichuan Medical University'), (30170, 'https://ror.org/0060v6x94', 'no_lang_code', 1, 'https://ror.org/0060v6x94 Nanexa (Sweden)'), (30171, 'https://ror.org/0061brs54', 'no_lang_code', 1, 'https://ror.org/0061brs54 Escape Communications (United States)'), (30172, 'https://ror.org/0064b6s04', 'no_lang_code', 1, 'https://ror.org/0064b6s04 Qnergy (United States)'), (30173, 'https://ror.org/0066jxm83', 'en', 1, 'https://ror.org/0066jxm83 Albion Centre'), (30174, 'https://ror.org/0068xq694', 'en', 1, 'https://ror.org/0068xq694 Hospital of Southern Norway'), (30175, 'https://ror.org/00691gs61', 'en', 1, 'https://ror.org/00691gs61 Institute for Research and Development'), (30176, 'https://ror.org/0069sam62', 'en', 1, 'https://ror.org/0069sam62 Kalahari Meerkat Project'), (30177, 'https://ror.org/006arvw77', 'en', 1, 'https://ror.org/006arvw77 Landseed Hospital'), (30178, 'https://ror.org/006bvpc76', 'no_lang_code', 1, 'https://ror.org/006bvpc76 Terahertz Technology Solutions (Canada)'), (30179, 'https://ror.org/006cpk585', 'no_lang_code', 1, 'https://ror.org/006cpk585 Jarden (United States)'), (30180, 'https://ror.org/006cta510', 'no_lang_code', 1, 'https://ror.org/006cta510 CELIM'), (30181, 'https://ror.org/006dn3r34', 'en', 1, 'https://ror.org/006dn3r34 American Foundation for Pharmaceutical Education'), (30182, 'https://ror.org/006ejj273', 'no_lang_code', 1, 'https://ror.org/006ejj273 Parallax Research (United States)'), (30183, 'https://ror.org/006h41552', 'no_lang_code', 1, 'https://ror.org/006h41552 Appear Networks (Sweden)'), (30184, 'https://ror.org/006j36p28', 'es', 1, 'https://ror.org/006j36p28 Comisión Interministerial de Ciencia y Tecnología'), (30185, 'https://ror.org/006kyfp82', 'hu', 1, 'https://ror.org/006kyfp82 Deri Muzeum'), (30186, 'https://ror.org/006ndaj41', 'en', 1, 'https://ror.org/006ndaj41 Planetary Data System'), (30187, 'https://ror.org/006qwnw28', 'en', 1, 'https://ror.org/006qwnw28 Hawaii Invasive Species Council'), (30188, 'https://ror.org/006ss0h52', 'en', 1, 'https://ror.org/006ss0h52 Oak Foundation'), (30189, 'https://ror.org/006tfee03', 'no_lang_code', 1, 'https://ror.org/006tfee03 Evisive (United States)'), (30190, 'https://ror.org/006w9n065', 'en', 1, 'https://ror.org/006w9n065 Mercer County Mosquito Control'), (30191, 'https://ror.org/006xt8f23', 'no_lang_code', 1, 'https://ror.org/006xt8f23 Technical Directions Incorporation (United States)'), (30192, 'https://ror.org/006xy9v19', 'no_lang_code', 1, 'https://ror.org/006xy9v19 SM&A (United States)'), (30193, 'https://ror.org/006z2nm40', 'no_lang_code', 1, 'https://ror.org/006z2nm40 Newport (United States)'), (30194, 'https://ror.org/0071xq104', 'no_lang_code', 1, 'https://ror.org/0071xq104 Advanced Biomass R&D Center (South Korea)'), (30195, 'https://ror.org/0075y4q70', 'en', 1, 'https://ror.org/0075y4q70 361 Interactive'), (30196, 'https://ror.org/007735r88', 'en', 1, 'https://ror.org/007735r88 Arlington Baptist College'), (30197, 'https://ror.org/007736j10', 'en', 1, 'https://ror.org/007736j10 Mitchell College'), (30198, 'https://ror.org/007737841', 'no_lang_code', 1, 'https://ror.org/007737841 PDF Solutions (United States)'), (30199, 'https://ror.org/007anfg84', 'no_lang_code', 1, 'https://ror.org/007anfg84 GS Engineering (United States)'), (30200, 'https://ror.org/007b0pc67', 'no_lang_code', 1, 'https://ror.org/007b0pc67 Gooch & Housego (Greece)'), (30201, 'https://ror.org/007b74r43', 'en', 1, 'https://ror.org/007b74r43 Ludwig Boltzmann Institute for Retinology and Biomicroscopic Laser Surgery'), (30202, 'https://ror.org/007c5ag63', 'no_lang_code', 1, 'https://ror.org/007c5ag63 Star Technology and Research (United States)'), (30203, 'https://ror.org/007e0tk18', 'no_lang_code', 1, 'https://ror.org/007e0tk18 AOSense (United States)'), (30204, 'https://ror.org/007fycn42', 'en', 1, 'https://ror.org/007fycn42 Walkerton Clean Water Centre'), (30205, 'https://ror.org/007hq6h29', 'en', 1, 'https://ror.org/007hq6h29 Quebec Intensive Silviculture Network Réseau Ligniculture Québec'), (30206, 'https://ror.org/007hqhx04', 'en', 1, 'https://ror.org/007hqhx04 New Saint Andrews College'), (30207, 'https://ror.org/007j0dg36', 'no_lang_code', 1, 'https://ror.org/007j0dg36 Baker Engineering and Risk Consultants (United States)'), (30208, 'https://ror.org/007jev255', 'no_lang_code', 1, 'https://ror.org/007jev255 Future-Shape (Germany)'), (30209, 'https://ror.org/007jk3r28', 'no_lang_code', 1, 'https://ror.org/007jk3r28 Presteve Foods (Canada)'), (30210, 'https://ror.org/007kcsb16', 'no_lang_code', 1, 'https://ror.org/007kcsb16 Hultsteins (Sweden)'), (30211, 'https://ror.org/007kwc354', 'no_lang_code', 1, 'https://ror.org/007kwc354 VUIS - CESTY (Slovakia)'), (30212, 'https://ror.org/007nh3f56', 'no_lang_code', 1, 'https://ror.org/007nh3f56 East West Enterprises (United States)'), (30213, 'https://ror.org/007pgtp80', 'pt', 1, 'https://ror.org/007pgtp80 Fundação Cearense de Apoio ao Desenvolvimento Científico e Tecnológico'), (30214, 'https://ror.org/007qd1t98', 'en', 1, 'https://ror.org/007qd1t98 Instituto Federal de Educação, Ciência e Tecnologia do Rio de Janeiro Rio de Janeiro Federal Institute of Education, Science and Technology'), (30215, 'https://ror.org/007s7bj48', 'no_lang_code', 1, 'https://ror.org/007s7bj48 ADA-ES (United States)'), (30216, 'https://ror.org/007vkx321', 'en', 1, 'https://ror.org/007vkx321 Energy Industries of Ohio'), (30217, 'https://ror.org/007xevs95', 'no_lang_code', 1, 'https://ror.org/007xevs95 Metalite Industries (United States)'), (30218, 'https://ror.org/00804ej42', 'no_lang_code', 1, 'https://ror.org/00804ej42 Chockie Group International (United States)'), (30219, 'https://ror.org/0080e5892', 'en', 1, 'https://ror.org/0080e5892 Centro Oncologico Veterinario Veterinary Oncological Center'), (30220, 'https://ror.org/00821cz13', 'en', 1, 'https://ror.org/00821cz13 Batten Disease Support and Research Association'), (30221, 'https://ror.org/00825gt63', 'pt', 1, 'https://ror.org/00825gt63 Quadro de Referência Estratégico Nacional'), (30222, 'https://ror.org/00831g358', 'no_lang_code', 1, 'https://ror.org/00831g358 Stirling Dynamics (United States)'), (30223, 'https://ror.org/00835s883', 'no_lang_code', 1, 'https://ror.org/00835s883 Ionautics (Sweden)'), (30224, 'https://ror.org/0085gp855', 'no_lang_code', 1, 'https://ror.org/0085gp855 SEZ Krompachy (Slovakia)'), (30225, 'https://ror.org/008952r45', 'no_lang_code', 1, 'https://ror.org/008952r45 Excellatron (United States)'), (30226, 'https://ror.org/008a9hf75', 'en', 1, 'https://ror.org/008a9hf75 City University of Seattle'), (30227, 'https://ror.org/008aaf926', 'en', 1, 'https://ror.org/008aaf926 Diabetes Australia'), (30228, 'https://ror.org/008bs5r20', 'en', 1, 'https://ror.org/008bs5r20 Fisher Center for Alzheimer''s Research Foundation'), (30229, 'https://ror.org/008c12b21', 'no_lang_code', 1, 'https://ror.org/008c12b21 Communications & Power Industries (United States)'), (30230, 'https://ror.org/008dxar67', 'no_lang_code', 1, 'https://ror.org/008dxar67 Scint-X (Sweden)'), (30231, 'https://ror.org/008g2yb06', 'no_lang_code', 1, 'https://ror.org/008g2yb06 Opus Technologies (United States)'), (30232, 'https://ror.org/008nkqk13', 'en', 1, 'https://ror.org/008nkqk13 Ministry of Trade, Industry and Energy 대한민국 산업통상자원부'), (30233, 'https://ror.org/008q5qf73', 'en', 1, 'https://ror.org/008q5qf73 Edison Welding Institute'), (30234, 'https://ror.org/008qp6e21', 'en', 1, 'https://ror.org/008qp6e21 Rehabilitation Research and Development Service'), (30235, 'https://ror.org/008s0t457', 'no_lang_code', 1, 'https://ror.org/008s0t457 Nokia (Canada)'), (30236, 'https://ror.org/008vgd385', 'en', 1, 'https://ror.org/008vgd385 International Association for Dental Research'), (30237, 'https://ror.org/008yned87', 'en', 1, 'https://ror.org/008yned87 National Farmers Union'), (30238, 'https://ror.org/008za0b72', 'nl', 1, 'https://ror.org/008za0b72 Openbare Scholengemeenschap De Hogeberg'), (30239, 'https://ror.org/0091y3468', 'no_lang_code', 1, 'https://ror.org/0091y3468 Photon-X (United States)'), (30240, 'https://ror.org/0092sq867', 'no_lang_code', 1, 'https://ror.org/0092sq867 MAHLE Filter Systems (Canada)'), (30241, 'https://ror.org/0094tm228', 'en', 1, 'https://ror.org/0094tm228 Wellcome Centre for Cell-Matrix Research'), (30242, 'https://ror.org/0095xwr23', 'en', 1, 'https://ror.org/0095xwr23 Max Planck Institute of Microstructure Physics Max-Planck-Institut für Mikrostrukturphysik'), (30243, 'https://ror.org/0095xxn33', 'no_lang_code', 1, 'https://ror.org/0095xxn33 SEPS Technologies (Sweden)'), (30244, 'https://ror.org/0099f7q64', 'no_lang_code', 1, 'https://ror.org/0099f7q64 Phillips 66 (United States)'), (30245, 'https://ror.org/009axkg17', 'en', 1, 'https://ror.org/009axkg17 Indian Council of Social Science Research'), (30246, 'https://ror.org/009bwq091', 'no_lang_code', 1, 'https://ror.org/009bwq091 Sunrez (United States)'), (30247, 'https://ror.org/009fatj68', 'en', 1, 'https://ror.org/009fatj68 Riga High Tech University'), (30248, 'https://ror.org/009fhna20', 'en', 1, 'https://ror.org/009fhna20 British Columbia Dairy Association'), (30249, 'https://ror.org/009kb1442', 'no_lang_code', 1, 'https://ror.org/009kb1442 Radyne (United States)'), (30250, 'https://ror.org/009r6as98', 'no_lang_code', 1, 'https://ror.org/009r6as98 Technology Applications (United States)'), (30251, 'https://ror.org/009rps409', 'no_lang_code', 1, 'https://ror.org/009rps409 CBRITE (United States)'), (30252, 'https://ror.org/009rw8n36', 'en', 1, 'https://ror.org/009rw8n36 Institute of Microelectronics'), (30253, 'https://ror.org/009tdmt49', 'no_lang_code', 1, 'https://ror.org/009tdmt49 Hoa''s Tool Shop (Sweden)'), (30254, 'https://ror.org/009va1d27', 'no_lang_code', 1, 'https://ror.org/009va1d27 ADMA Products (United States)'), (30255, 'https://ror.org/009xj7f03', 'en', 1, 'https://ror.org/009xj7f03 Oneida Indian Nation'), (30256, 'https://ror.org/009yq5939', 'no_lang_code', 1, 'https://ror.org/009yq5939 Energent (United States)'), (30257, 'https://ror.org/009yzbm74', 'en', 1, 'https://ror.org/009yzbm74 Office of Gas and Electricity Markets'), (30258, 'https://ror.org/00a3n8178', 'no_lang_code', 1, 'https://ror.org/00a3n8178 System Planning Corporation (United States)'), (30259, 'https://ror.org/00a3trs85', 'no_lang_code', 1, 'https://ror.org/00a3trs85 Kunskapsbolaget (Sweden)'), (30260, 'https://ror.org/00a4h2c62', 'en', 1, 'https://ror.org/00a4h2c62 Rippl-Rónai Museum'), (30261, 'https://ror.org/00a4ryj05', 'no_lang_code', 1, 'https://ror.org/00a4ryj05 UIL Holdings (United States)'), (30262, 'https://ror.org/00a65gg79', 'no_lang_code', 1, 'https://ror.org/00a65gg79 Advanced Conductor Technologies (United States)'), (30263, 'https://ror.org/00a83t181', 'no_lang_code', 1, 'https://ror.org/00a83t181 BioForest Technologies (Canada)'), (30264, 'https://ror.org/00ab43a31', 'no_lang_code', 1, 'https://ror.org/00ab43a31 Optronic (Sweden)'), (30265, 'https://ror.org/00ad2fh66', 'no_lang_code', 1, 'https://ror.org/00ad2fh66 Dental Rat (United States)'), (30266, 'https://ror.org/00afrj253', 'en', 1, 'https://ror.org/00afrj253 International Telecommunication Union'), (30267, 'https://ror.org/00agf0486', 'no_lang_code', 1, 'https://ror.org/00agf0486 Concorde Battery (United States)'), (30268, 'https://ror.org/00agy5a68', 'it', 1, 'https://ror.org/00agy5a68 Fondazione Cassa Risparmio Perugia'), (30269, 'https://ror.org/00ampbq92', 'en', 1, 'https://ror.org/00ampbq92 Guysborough County Inshore Fishermen''s Association'), (30270, 'https://ror.org/00anzjr50', 'en', 1, 'https://ror.org/00anzjr50 Örebro Municipality'), (30271, 'https://ror.org/00apfvn95', 'no_lang_code', 1, 'https://ror.org/00apfvn95 Mathematical Systems & Solutions (United States)'), (30272, 'https://ror.org/00aqt9352', 'en', 1, 'https://ror.org/00aqt9352 Turkish Academy of Sciences'), (30273, 'https://ror.org/00aw7vf84', 'it', 1, 'https://ror.org/00aw7vf84 Fondazione Crui'), (30274, 'https://ror.org/00awy7q97', 'en', 1, 'https://ror.org/00awy7q97 Swedish Institute of International Affairs'), (30275, 'https://ror.org/00axxrg60', 'no_lang_code', 1, 'https://ror.org/00axxrg60 Star Microwave (United States)'), (30276, 'https://ror.org/00ay9je56', 'no_lang_code', 1, 'https://ror.org/00ay9je56 Aeroprobe (United States)'), (30277, 'https://ror.org/00az0wf23', 'no_lang_code', 1, 'https://ror.org/00az0wf23 Integrity Applications Incorporated (United States)'), (30278, 'https://ror.org/00az5dt38', 'en', 1, 'https://ror.org/00az5dt38 Carnegie Mellon University Qatar'), (30279, 'https://ror.org/00azj3a07', 'en', 1, 'https://ror.org/00azj3a07 Ministry of Security and Public Administration'), (30280, 'https://ror.org/00b2em573', 'no_lang_code', 1, 'https://ror.org/00b2em573 Assett (United States)'), (30281, 'https://ror.org/00b44sj21', 'en', 1, 'https://ror.org/00b44sj21 Dean College'), (30282, 'https://ror.org/00b4mz884', 'no_lang_code', 1, 'https://ror.org/00b4mz884 Sensors (United States)'), (30283, 'https://ror.org/00b510j51', 'no_lang_code', 1, 'https://ror.org/00b510j51 Sierra Lobo (United States)'), (30284, 'https://ror.org/00b60bj84', 'no_lang_code', 1, 'https://ror.org/00b60bj84 Borregaard (Norway)'), (30285, 'https://ror.org/00b6h1f45', 'no_lang_code', 1, 'https://ror.org/00b6h1f45 Commonwealth Computer Research (United States)'), (30286, 'https://ror.org/00bame609', 'en', 1, 'https://ror.org/00bame609 Integrative Neuroscience Initiative on Alcoholism'), (30287, 'https://ror.org/00bchtj94', 'en', 1, 'https://ror.org/00bchtj94 B. J. Medical College & Sassoon Hospital'), (30288, 'https://ror.org/00bd4cb30', 'en', 1, 'https://ror.org/00bd4cb30 Appalachian School of Law'), (30289, 'https://ror.org/00bdga736', 'no_lang_code', 1, 'https://ror.org/00bdga736 ImmunoGenes (Hungary)'), (30290, 'https://ror.org/00be47m52', 'no_lang_code', 1, 'https://ror.org/00be47m52 Perimed (Sweden)'), (30291, 'https://ror.org/00bgn4761', 'no_lang_code', 1, 'https://ror.org/00bgn4761 MW Canada (Canada)'), (30292, 'https://ror.org/00bhae667', 'no_lang_code', 1, 'https://ror.org/00bhae667 Aluminerie Alouette (Canada)'), (30293, 'https://ror.org/00bhnj053', 'en', 1, 'https://ror.org/00bhnj053 Felix Thornley Cobbold Agricultural Trust'), (30294, 'https://ror.org/00bn9mm21', 'no_lang_code', 1, 'https://ror.org/00bn9mm21 Publit (Sweden)'), (30295, 'https://ror.org/00bngcf58', 'no_lang_code', 1, 'https://ror.org/00bngcf58 Trident Research (United States)'), (30296, 'https://ror.org/00bscyw28', 'en', 1, 'https://ror.org/00bscyw28 International Bureau of Fiscal Documentation'), (30297, 'https://ror.org/00bw19968', 'en', 1, 'https://ror.org/00bw19968 Molly Brown House Museum'), (30298, 'https://ror.org/00bwwrk44', 'en', 1, 'https://ror.org/00bwwrk44 Royal Pharmaceutical Society'), (30299, 'https://ror.org/00bx7wr94', 'sk', 1, 'https://ror.org/00bx7wr94 Základná umelecká škola Jozefa Rosinského'), (30300, 'https://ror.org/00byz6s18', 'fr', 1, 'https://ror.org/00byz6s18 Geneva League Against Cancer Ligue Genevoise Contre le Cancer'), (30301, 'https://ror.org/00c0exh17', 'no_lang_code', 1, 'https://ror.org/00c0exh17 Enova (United States)'), (30302, 'https://ror.org/00c10fm85', 'no_lang_code', 1, 'https://ror.org/00c10fm85 Wedgestone Press (United States)'), (30303, 'https://ror.org/00c19d043', 'no_lang_code', 1, 'https://ror.org/00c19d043 Foro Energy (United States)'), (30304, 'https://ror.org/00c1q0x03', 'en', 1, 'https://ror.org/00c1q0x03 Teikyo University of Japan in Durham'), (30305, 'https://ror.org/00c4zhw53', 'en', 1, 'https://ror.org/00c4zhw53 Open Group'), (30306, 'https://ror.org/00c5zkt18', 'no_lang_code', 1, 'https://ror.org/00c5zkt18 D&P (United States)'), (30307, 'https://ror.org/00c6qf472', 'pt', 1, 'https://ror.org/00c6qf472 Instituto Infnet'), (30308, 'https://ror.org/00c7wdg54', 'en', 1, 'https://ror.org/00c7wdg54 International Centre for Applied Research and Sustainable Technology'), (30309, 'https://ror.org/00c9pzm73', 'en', 1, 'https://ror.org/00c9pzm73 Easterseals'), (30310, 'https://ror.org/00c9zyz36', 'no_lang_code', 1, 'https://ror.org/00c9zyz36 Hive Streaming (Sweden)'), (30311, 'https://ror.org/00cafxy65', 'en', 1, 'https://ror.org/00cafxy65 University of Missouri Women''s and Children''s Hospital'), (30312, 'https://ror.org/00chnhh80', 'en', 1, 'https://ror.org/00chnhh80 Carbon Management Canada'), (30313, 'https://ror.org/00cjeg736', 'en', 1, 'https://ror.org/00cjeg736 Birmingham and Solihull Mental Health NHS Foundation Trust'), (30314, 'https://ror.org/00cjrc276', 'fr', 1, 'https://ror.org/00cjrc276 Mitacs'), (30315, 'https://ror.org/00ckb9008', 'en', 1, 'https://ror.org/00ckb9008 Heze Medical College'), (30316, 'https://ror.org/00ckp1t80', 'no_lang_code', 1, 'https://ror.org/00ckp1t80 F. A. Hayek Foundation'), (30317, 'https://ror.org/00cmjga69', 'en', 1, 'https://ror.org/00cmjga69 Clearwater Christian College'), (30318, 'https://ror.org/00cnb1p42', 'no_lang_code', 1, 'https://ror.org/00cnb1p42 Ocean Acoustical Services and Instrumentation Systems (United States)'), (30319, 'https://ror.org/00cpm4162', 'no_lang_code', 1, 'https://ror.org/00cpm4162 Ascent Technology (United States)'), (30320, 'https://ror.org/00cpqht96', 'no_lang_code', 1, 'https://ror.org/00cpqht96 Bencar (Sweden)'), (30321, 'https://ror.org/00cqb7125', 'no_lang_code', 1, 'https://ror.org/00cqb7125 CM Labs Simulations (Canada)'), (30322, 'https://ror.org/00cxa0895', 'no_lang_code', 1, 'https://ror.org/00cxa0895 InterDigital (Canada)'), (30323, 'https://ror.org/00cxc2y95', 'en', 1, 'https://ror.org/00cxc2y95 Klingenstein Third Generation Foundation'), (30324, 'https://ror.org/00cz5rb58', 'no_lang_code', 1, 'https://ror.org/00cz5rb58 Salutron (United States)'), (30325, 'https://ror.org/00d1b1c41', 'it', 1, 'https://ror.org/00d1b1c41 Compagnia di San Paolo'), (30326, 'https://ror.org/00d27f502', 'en', 1, 'https://ror.org/00d27f502 McPherson College'), (30327, 'https://ror.org/00dbz8197', 'no_lang_code', 1, 'https://ror.org/00dbz8197 Teratech Components (United Kingdom)'), (30328, 'https://ror.org/00dds9q45', 'en', 1, 'https://ror.org/00dds9q45 Maine College of Art'), (30329, 'https://ror.org/00djgx116', 'no_lang_code', 1, 'https://ror.org/00djgx116 Eurostep (Sweden)'), (30330, 'https://ror.org/00dkdd931', 'no_lang_code', 1, 'https://ror.org/00dkdd931 Quantum Group (United States)'), (30331, 'https://ror.org/00dkye506', 'de', 1, 'https://ror.org/00dkye506 Boehringer Ingelheim Fonds, Stiftung für Medizinische Grundlagenforschung'), (30332, 'https://ror.org/00dmrtz93', 'no_lang_code', 1, 'https://ror.org/00dmrtz93 AdValue Photonics (United States)'), (30333, 'https://ror.org/00dpgqt54', 'en', 1, 'https://ror.org/00dpgqt54 Mianyang Third People''s Hospital'), (30334, 'https://ror.org/00dpq7q77', 'en', 1, 'https://ror.org/00dpq7q77 Alcohol Research UK'), (30335, 'https://ror.org/00dpszj83', 'hu', 1, 'https://ror.org/00dpszj83 Magyar Nyelvtudományi Társaságot Society of Hungarian Linguistics'), (30336, 'https://ror.org/00dqs9848', 'no_lang_code', 1, 'https://ror.org/00dqs9848 Sensor Development (United States)'), (30337, 'https://ror.org/00dqyqs74', 'en', 1, 'https://ror.org/00dqyqs74 California Foundation for Independent Living Centers'), (30338, 'https://ror.org/00dtxmk25', 'en', 1, 'https://ror.org/00dtxmk25 Colorado Springs Fine Arts Center'), (30339, 'https://ror.org/00dwh5a52', 'no_lang_code', 1, 'https://ror.org/00dwh5a52 CellaVision (Sweden)'), (30340, 'https://ror.org/00dxczh48', 'en', 1, 'https://ror.org/00dxczh48 John D. and Catherine T. MacArthur Foundation'), (30341, 'https://ror.org/00dyskt91', 'no_lang_code', 1, 'https://ror.org/00dyskt91 Sheetak (United States)'), (30342, 'https://ror.org/00dz87637', 'no_lang_code', 1, 'https://ror.org/00dz87637 Nexterra (Canada)'), (30343, 'https://ror.org/00dzbg839', 'en', 1, 'https://ror.org/00dzbg839 Royal Astronomical Society'), (30344, 'https://ror.org/00dztkz65', 'en', 1, 'https://ror.org/00dztkz65 Graduate School Experimental Plant Sciences'), (30345, 'https://ror.org/00e0w3260', 'en', 1, 'https://ror.org/00e0w3260 Arcus Foundation'), (30346, 'https://ror.org/00e2yw845', 'no_lang_code', 1, 'https://ror.org/00e2yw845 Archaeolingua Foundation'), (30347, 'https://ror.org/00e3mqz93', 'en', 1, 'https://ror.org/00e3mqz93 Võro Institute'), (30348, 'https://ror.org/00e4bwe12', 'en', 1, 'https://ror.org/00e4bwe12 Max Planck Institute for Extraterrestrial Physics Max-Planck-Institut für Extraterrestrische Physik'), (30349, 'https://ror.org/00e5h6e42', 'no_lang_code', 1, 'https://ror.org/00e5h6e42 1366 Technologies (United States)'), (30350, 'https://ror.org/00e6nys21', 'en', 1, 'https://ror.org/00e6nys21 Government of Romania'), (30351, 'https://ror.org/00eb4p978', 'no_lang_code', 1, 'https://ror.org/00eb4p978 Adiabatics (United States)'), (30352, 'https://ror.org/00ed7qw32', 'en', 1, 'https://ror.org/00ed7qw32 Western Michigan University Cooley Law School'), (30353, 'https://ror.org/00efjh764', 'no_lang_code', 1, 'https://ror.org/00efjh764 Kyma Technologies (United States)'), (30354, 'https://ror.org/00ejeex29', 'en', 1, 'https://ror.org/00ejeex29 Institute of Physical-Chemical and Biological Problems in Soil Science Федеральное государственное бюджетное учреждение науки Институт физико-химических и биологических проблем почвоведения Российской академии наук'), (30355, 'https://ror.org/00ejq3005', 'en', 1, 'https://ror.org/00ejq3005 Foyle Foundation'), (30356, 'https://ror.org/00ekapt69', 'no_lang_code', 1, 'https://ror.org/00ekapt69 Möbelriket (Sweden)'), (30357, 'https://ror.org/00emnts94', 'en', 1, 'https://ror.org/00emnts94 Bavarian Research Foundation Bayerische Forschungsstiftung'); INSERT INTO `rors` VALUES (30358, 'https://ror.org/00emrap86', 'no_lang_code', 1, 'https://ror.org/00emrap86 Entrust (Canada)'), (30359, 'https://ror.org/00env1778', 'en', 1, 'https://ror.org/00env1778 Canadian Dermatology Foundation'), (30360, 'https://ror.org/00epkt019', 'no_lang_code', 1, 'https://ror.org/00epkt019 Akadémiai Kiadó (Hungary)'), (30361, 'https://ror.org/00eqp4438', 'no_lang_code', 1, 'https://ror.org/00eqp4438 Systems Planning and Analysis (United States)'), (30362, 'https://ror.org/00etg9b89', 'sk', 1, 'https://ror.org/00etg9b89 Slovenská Legálna Metrológia'), (30363, 'https://ror.org/00ev6sa36', 'en', 1, 'https://ror.org/00ev6sa36 Daiwa Anglo-Japanese Foundation'), (30364, 'https://ror.org/00ev71s96', 'en', 1, 'https://ror.org/00ev71s96 Alzheimer Scotland'), (30365, 'https://ror.org/00ewcgt31', 'no_lang_code', 1, 'https://ror.org/00ewcgt31 Clear Science Corporation (United States)'), (30366, 'https://ror.org/00f012347', 'no_lang_code', 1, 'https://ror.org/00f012347 InternetSpeech (United States)'), (30367, 'https://ror.org/00f08y308', 'sv', 1, 'https://ror.org/00f08y308 Wilhelm & Martina Lundgrens Stiftelser'), (30368, 'https://ror.org/00f1fk963', 'no_lang_code', 1, 'https://ror.org/00f1fk963 Servier (Canada)'), (30369, 'https://ror.org/00f1hrs84', 'no_lang_code', 1, 'https://ror.org/00f1hrs84 Ergenics (United States)'), (30370, 'https://ror.org/00f2vm529', 'en', 1, 'https://ror.org/00f2vm529 Artificial Insemination Center of Quebec Centre d''Insémination artificielle du Québec'), (30371, 'https://ror.org/00f3bt271', 'no_lang_code', 1, 'https://ror.org/00f3bt271 Alameda Applied Sciences Corporation (United States)'), (30372, 'https://ror.org/00f3sc705', 'en', 1, 'https://ror.org/00f3sc705 Fritz Thyssen Foundation Fritz Thyssen Stiftung'), (30373, 'https://ror.org/00f44np30', 'en', 1, 'https://ror.org/00f44np30 Singapore Institute of Manufacturing Technology'), (30374, 'https://ror.org/00f47ek31', 'no_lang_code', 1, 'https://ror.org/00f47ek31 Torrey Pines Logic (United States)'), (30375, 'https://ror.org/00f58bn11', 'no_lang_code', 1, 'https://ror.org/00f58bn11 Mudawar Thermal Systems (United States)'), (30376, 'https://ror.org/00f5xa066', 'no_lang_code', 1, 'https://ror.org/00f5xa066 ExoAnalytic Solutions (United States)'), (30377, 'https://ror.org/00f6jds84', 'no_lang_code', 1, 'https://ror.org/00f6jds84 Applied Science Innovations (United States)'), (30378, 'https://ror.org/00f76ab84', 'no_lang_code', 1, 'https://ror.org/00f76ab84 Codexis (United States)'), (30379, 'https://ror.org/00fahmw72', 'en', 1, 'https://ror.org/00fahmw72 Canadian Occupational Therapy Foundation'), (30380, 'https://ror.org/00farq383', 'no_lang_code', 1, 'https://ror.org/00farq383 DeciBel Research (United States)'), (30381, 'https://ror.org/00fcfxd73', 'no_lang_code', 1, 'https://ror.org/00fcfxd73 Eurea'), (30382, 'https://ror.org/00fdawj48', 'en', 1, 'https://ror.org/00fdawj48 Leo Baeck Institute'), (30383, 'https://ror.org/00fdzyk40', 'en', 1, 'https://ror.org/00fdzyk40 Korea Health Industry Development Institute'), (30384, 'https://ror.org/00fe3kx30', 'no_lang_code', 1, 'https://ror.org/00fe3kx30 Rmc (Slovakia)'), (30385, 'https://ror.org/00fed8j81', 'no_lang_code', 1, 'https://ror.org/00fed8j81 Laser Operations (United States)'), (30386, 'https://ror.org/00ffka868', 'no_lang_code', 1, 'https://ror.org/00ffka868 Western Power Distribution (United Kingdom)'), (30387, 'https://ror.org/00fg8jj39', 'no_lang_code', 1, 'https://ror.org/00fg8jj39 Applied Signals Intelligence (United States)'), (30388, 'https://ror.org/00fgmrc59', 'no_lang_code', 1, 'https://ror.org/00fgmrc59 CDI (United States)'), (30389, 'https://ror.org/00fh0k280', 'en', 1, 'https://ror.org/00fh0k280 Morning Sun'), (30390, 'https://ror.org/00fh23037', 'no_lang_code', 1, 'https://ror.org/00fh23037 Michelman (United States)'), (30391, 'https://ror.org/00fk9d670', 'en', 1, 'https://ror.org/00fk9d670 Taoyuan Chang Gung Memorial Hospital'), (30392, 'https://ror.org/00fmqk596', 'no_lang_code', 1, 'https://ror.org/00fmqk596 Cobolt (Sweden)'), (30393, 'https://ror.org/00fmts116', 'es', 1, 'https://ror.org/00fmts116 Fundación José Ortega y Gasset-Gregorio Marañón'), (30394, 'https://ror.org/00fs71k85', 'no_lang_code', 1, 'https://ror.org/00fs71k85 Cape Eleuthera Institute'), (30395, 'https://ror.org/00fzkzp38', 'no_lang_code', 1, 'https://ror.org/00fzkzp38 CNS Systems (Sweden)'), (30396, 'https://ror.org/00g0v7f54', 'no_lang_code', 1, 'https://ror.org/00g0v7f54 Tekmar (Slovakia)'), (30397, 'https://ror.org/00g5vpp27', 'en', 1, 'https://ror.org/00g5vpp27 Iowa Finance Authority'), (30398, 'https://ror.org/00g5z0e60', 'en', 1, 'https://ror.org/00g5z0e60 Center for Research on Inter-group Relations and Conflict Resolution'), (30399, 'https://ror.org/00gfsxd52', 'sv', 1, 'https://ror.org/00gfsxd52 Svensk Kollektivtrafik'), (30400, 'https://ror.org/00gg9m594', 'en', 1, 'https://ror.org/00gg9m594 Landscape Institute'), (30401, 'https://ror.org/00ghhyx51', 'no_lang_code', 1, 'https://ror.org/00ghhyx51 CACI International (United States)'), (30402, 'https://ror.org/00ghy7y53', 'no_lang_code', 1, 'https://ror.org/00ghy7y53 Electronic Concepts and Engineering (United States)'), (30403, 'https://ror.org/00gn3nj37', 'en', 1, 'https://ror.org/00gn3nj37 Binzhou Medical College Hospital'), (30404, 'https://ror.org/00gnbgz55', 'no_lang_code', 1, 'https://ror.org/00gnbgz55 AMN (Netherlands)'), (30405, 'https://ror.org/00gnm3617', 'en', 1, 'https://ror.org/00gnm3617 Skeena Fisheries Commission'), (30406, 'https://ror.org/00gprmt59', 'en', 1, 'https://ror.org/00gprmt59 NetPort Science Park'), (30407, 'https://ror.org/00gq9jc61', 'no_lang_code', 1, 'https://ror.org/00gq9jc61 Custom Technology (United States)'), (30408, 'https://ror.org/00gqn7179', 'no_lang_code', 1, 'https://ror.org/00gqn7179 Gorman Bros Lumber (Canada)'), (30409, 'https://ror.org/00gskyj95', 'en', 1, 'https://ror.org/00gskyj95 Ningbo Science and Technology Bureau 宁波市科技局'), (30410, 'https://ror.org/00gspzk92', 'no_lang_code', 1, 'https://ror.org/00gspzk92 Sapien Systems (United States)'), (30411, 'https://ror.org/00gtgme55', 'no_lang_code', 1, 'https://ror.org/00gtgme55 Qlucore (Sweden)'), (30412, 'https://ror.org/00gtk7t05', 'no_lang_code', 1, 'https://ror.org/00gtk7t05 RLS Global (Sweden)'), (30413, 'https://ror.org/00gtpjy03', 'no_lang_code', 1, 'https://ror.org/00gtpjy03 ASML (United States)'), (30414, 'https://ror.org/00gvcmw36', 'en', 1, 'https://ror.org/00gvcmw36 Kent County Council'), (30415, 'https://ror.org/00gvkt544', 'no_lang_code', 1, 'https://ror.org/00gvkt544 Technology Management Company (United States)'), (30416, 'https://ror.org/00gwb6z35', 'no_lang_code', 1, 'https://ror.org/00gwb6z35 Railway Repair and Engineering Works (Slovakia)'), (30417, 'https://ror.org/00gws9676', 'en', 1, 'https://ror.org/00gws9676 Yaoundé General Hospital'), (30418, 'https://ror.org/00gwv7d20', 'en', 1, 'https://ror.org/00gwv7d20 China Animal Disease Control Center 中国动物疫病预防控制中心'), (30419, 'https://ror.org/00gxbxx21', 'no_lang_code', 1, 'https://ror.org/00gxbxx21 QRDc (United States)'), (30420, 'https://ror.org/00gxct719', 'es', 1, 'https://ror.org/00gxct719 Asociación Española Contra el Cáncer Spanish Association Against Cancer'), (30421, 'https://ror.org/00gzf3318', 'no_lang_code', 1, 'https://ror.org/00gzf3318 Proof Research (United States)'), (30422, 'https://ror.org/00h4nzs54', 'en', 1, 'https://ror.org/00h4nzs54 Zhumadian Central Hospital'), (30423, 'https://ror.org/00h4tvg43', 'no_lang_code', 1, 'https://ror.org/00h4tvg43 Systems Engineering and Assessment (United Kingdom)'), (30424, 'https://ror.org/00h5ca650', 'fr', 1, 'https://ror.org/00h5ca650 Fondation Lefoulon-Delalande'), (30425, 'https://ror.org/00h6yfh70', 'no_lang_code', 1, 'https://ror.org/00h6yfh70 Innovation Impact (Sweden)'), (30426, 'https://ror.org/00h7j7m14', 'fr', 1, 'https://ror.org/00h7j7m14 Comité National de Lutte contre le SIDA'), (30427, 'https://ror.org/00h7q8720', 'no_lang_code', 1, 'https://ror.org/00h7q8720 Guelph Utility Pole (Canada)'), (30428, 'https://ror.org/00h8ny829', 'no_lang_code', 1, 'https://ror.org/00h8ny829 Ingredion (Canada)'), (30429, 'https://ror.org/00hbekd38', 'no_lang_code', 1, 'https://ror.org/00hbekd38 Wavecon (United States)'), (30430, 'https://ror.org/00hcek131', 'no_lang_code', 1, 'https://ror.org/00hcek131 SimWay (Sweden)'), (30431, 'https://ror.org/00hd6em58', 'no_lang_code', 1, 'https://ror.org/00hd6em58 Oxazogen (United States)'), (30432, 'https://ror.org/00he98j14', 'en', 1, 'https://ror.org/00he98j14 Institute for Laser Technology 公益財団法人 レーザー技術総合研究所'), (30433, 'https://ror.org/00heb0a94', 'no_lang_code', 1, 'https://ror.org/00heb0a94 Stark Aerospace (United States)'), (30434, 'https://ror.org/00hg9t388', 'en', 1, 'https://ror.org/00hg9t388 Campus Science Support Facilities'), (30435, 'https://ror.org/00hhybr57', 'no_lang_code', 1, 'https://ror.org/00hhybr57 Sensor Concepts (United States)'), (30436, 'https://ror.org/00hjjbv09', 'no_lang_code', 1, 'https://ror.org/00hjjbv09 Applied Nanotools (Canada)'), (30437, 'https://ror.org/00hjkzk85', 'no_lang_code', 1, 'https://ror.org/00hjkzk85 Open Text (Canada)'), (30438, 'https://ror.org/00hkdgr14', 'en', 1, 'https://ror.org/00hkdgr14 Seiwa Hospital 青和病院'), (30439, 'https://ror.org/00hm4yk03', 'en', 1, 'https://ror.org/00hm4yk03 92nd Street Young Men''s and Young Women''s Hebrew Association'), (30440, 'https://ror.org/00hm8vh37', 'no_lang_code', 1, 'https://ror.org/00hm8vh37 Tolko (Canada)'), (30441, 'https://ror.org/00hn6mk14', 'no_lang_code', 1, 'https://ror.org/00hn6mk14 Ridgetop Group (United States)'), (30442, 'https://ror.org/00hneab90', 'no_lang_code', 1, 'https://ror.org/00hneab90 Aero-Tech Engineering (United States)'), (30443, 'https://ror.org/00hprwh76', 'no_lang_code', 1, 'https://ror.org/00hprwh76 Absiskey (France)'), (30444, 'https://ror.org/00hpwje09', 'de', 1, 'https://ror.org/00hpwje09 Tierärztliche Praxis für Neurologie'), (30445, 'https://ror.org/00hqnb941', 'no_lang_code', 1, 'https://ror.org/00hqnb941 Asahi Kasei (United States)'), (30446, 'https://ror.org/00ht4dp10', 'en', 1, 'https://ror.org/00ht4dp10 Havs- och Vattenmyndigheten Swedish Agency for Marine and Water Management'), (30447, 'https://ror.org/00hth4774', 'no_lang_code', 1, 'https://ror.org/00hth4774 HeyStaks Technologies (Ireland)'), (30448, 'https://ror.org/00hvk3c79', 'en', 1, 'https://ror.org/00hvk3c79 Maharaj Vijayaram Gajapathi Raj College of Engineering'), (30449, 'https://ror.org/00hw5ad77', 'no_lang_code', 1, 'https://ror.org/00hw5ad77 Cermaq (Canada)'), (30450, 'https://ror.org/00hwxbz16', 'en', 1, 'https://ror.org/00hwxbz16 Wisconsin Alumni Research Foundation'), (30451, 'https://ror.org/00j4a0m56', 'no_lang_code', 1, 'https://ror.org/00j4a0m56 Mistik Management (Canada)'), (30452, 'https://ror.org/00j5x7m46', 'no_lang_code', 1, 'https://ror.org/00j5x7m46 Maga (Slovakia)'), (30453, 'https://ror.org/00j5y7k81', 'no_lang_code', 1, 'https://ror.org/00j5y7k81 Longgang Central Hospital'), (30454, 'https://ror.org/00j64zh12', 'no_lang_code', 1, 'https://ror.org/00j64zh12 Advanced Engines Development (United States)'), (30455, 'https://ror.org/00j65sp23', 'no_lang_code', 1, 'https://ror.org/00j65sp23 CanKids KidsCan'), (30456, 'https://ror.org/00j81st88', 'no_lang_code', 1, 'https://ror.org/00j81st88 Cenovus Energy (Canada)'), (30457, 'https://ror.org/00j8gx359', 'en', 1, 'https://ror.org/00j8gx359 Group of Eight'), (30458, 'https://ror.org/00j8z2m73', 'en', 1, 'https://ror.org/00j8z2m73 United States-Israel Binational Science Foundation'), (30459, 'https://ror.org/00j935m10', 'no_lang_code', 1, 'https://ror.org/00j935m10 Cismet (Germany)'), (30460, 'https://ror.org/00j9qx055', 'en', 1, 'https://ror.org/00j9qx055 Maryland Department of Disabilities'), (30461, 'https://ror.org/00jch3e54', 'no_lang_code', 1, 'https://ror.org/00jch3e54 Omega Piezo Technologies (United States)'), (30462, 'https://ror.org/00jdqa737', 'en', 1, 'https://ror.org/00jdqa737 Research and Development for Silicates and Ceramics'), (30463, 'https://ror.org/00jf79q69', 'no_lang_code', 1, 'https://ror.org/00jf79q69 Financial Research (Hungary)'), (30464, 'https://ror.org/00jkz6g04', 'sk', 1, 'https://ror.org/00jkz6g04 Gymnázium Ľudovíta Štúra'), (30465, 'https://ror.org/00jmv3y79', 'no_lang_code', 1, 'https://ror.org/00jmv3y79 Institute for Studies and Power Engineering (Romania)'), (30466, 'https://ror.org/00jp8d455', 'en', 1, 'https://ror.org/00jp8d455 Research Corporation for Science Advancement'), (30467, 'https://ror.org/00jqraq76', 'fr', 1, 'https://ror.org/00jqraq76 Fondation de la Faune du Québec'), (30468, 'https://ror.org/00jqwr190', 'en', 1, 'https://ror.org/00jqwr190 Dignitas International'), (30469, 'https://ror.org/00jtran50', 'en', 1, 'https://ror.org/00jtran50 CUNY School of Law'), (30470, 'https://ror.org/00jwytm78', 'en', 1, 'https://ror.org/00jwytm78 Department of Primary Industries, Parks, Water and Environment'), (30471, 'https://ror.org/00jx5ax65', 'no_lang_code', 1, 'https://ror.org/00jx5ax65 Osemi (Canada)'), (30472, 'https://ror.org/00jycx837', 'no_lang_code', 1, 'https://ror.org/00jycx837 Eotron (United States)'), (30473, 'https://ror.org/00jykkj27', 'no_lang_code', 1, 'https://ror.org/00jykkj27 Intuitive Research and Technology Corporation (United States)'), (30474, 'https://ror.org/00jz0gc70', 'no_lang_code', 1, 'https://ror.org/00jz0gc70 JV Driver Projects (Canada)'), (30475, 'https://ror.org/00jz36n32', 'no_lang_code', 1, 'https://ror.org/00jz36n32 Miller Group (Canada)'), (30476, 'https://ror.org/00k1fnr45', 'no_lang_code', 1, 'https://ror.org/00k1fnr45 Integument Technologies (United States)'), (30477, 'https://ror.org/00k2gdw14', 'en', 1, 'https://ror.org/00k2gdw14 National Institute for Research in Tribal Health'), (30478, 'https://ror.org/00k54xy93', 'no_lang_code', 1, 'https://ror.org/00k54xy93 PowerData (United States)'), (30479, 'https://ror.org/00k5eg781', 'en', 1, 'https://ror.org/00k5eg781 Canadian Heritage Patrimoine Canadien'), (30480, 'https://ror.org/00k5pte35', 'en', 1, 'https://ror.org/00k5pte35 NIHR Birmingham Liver Biomedical Research Unit'), (30481, 'https://ror.org/00k5wwd38', 'no_lang_code', 1, 'https://ror.org/00k5wwd38 Aeroconseil (France)'), (30482, 'https://ror.org/00k68p940', 'no_lang_code', 1, 'https://ror.org/00k68p940 Pathfinder Systems (United States)'), (30483, 'https://ror.org/00k6x1e94', 'no_lang_code', 1, 'https://ror.org/00k6x1e94 VCUQatar'), (30484, 'https://ror.org/00k71kh37', 'en', 1, 'https://ror.org/00k71kh37 Clark College'), (30485, 'https://ror.org/00kbbk236', 'en', 1, 'https://ror.org/00kbbk236 V Foundation for Cancer Research'), (30486, 'https://ror.org/00kchf187', 'no_lang_code', 1, 'https://ror.org/00kchf187 Moberg Pharma (Sweden)'), (30487, 'https://ror.org/00kdyte44', 'no_lang_code', 1, 'https://ror.org/00kdyte44 Huys Industries (Canada)'), (30488, 'https://ror.org/00kh19327', 'no_lang_code', 1, 'https://ror.org/00kh19327 AEH (Slovakia)'), (30489, 'https://ror.org/00kj3ag10', 'no_lang_code', 1, 'https://ror.org/00kj3ag10 Hentzen (United States)'), (30490, 'https://ror.org/00kj8fh75', 'no_lang_code', 1, 'https://ror.org/00kj8fh75 Multi-Phase Technologies (United States)'), (30491, 'https://ror.org/00kj8tn74', 'no_lang_code', 1, 'https://ror.org/00kj8tn74 EcoCatalytic Technologies (United States)'), (30492, 'https://ror.org/00kkt6q96', 'no_lang_code', 1, 'https://ror.org/00kkt6q96 Dynacast (United States)'), (30493, 'https://ror.org/00kp81a07', 'no_lang_code', 1, 'https://ror.org/00kp81a07 JX Crystals (United States)'), (30494, 'https://ror.org/00ks8df69', 'no_lang_code', 1, 'https://ror.org/00ks8df69 Verendus System (Sweden)'), (30495, 'https://ror.org/00ktc0z93', 'no_lang_code', 1, 'https://ror.org/00ktc0z93 Timars (Sweden)'), (30496, 'https://ror.org/00kw7bx58', 'no_lang_code', 1, 'https://ror.org/00kw7bx58 ATC New Technologies (United States)'), (30497, 'https://ror.org/00kwhq089', 'en', 1, 'https://ror.org/00kwhq089 American Institute of Indian Studies'), (30498, 'https://ror.org/00kwjx418', 'en', 1, 'https://ror.org/00kwjx418 Cataract Foundation of the Philippines'), (30499, 'https://ror.org/00kxash64', 'en', 1, 'https://ror.org/00kxash64 Belarusian Republican Foundation for Fundamental Research'), (30500, 'https://ror.org/00kyrfw38', 'no_lang_code', 1, 'https://ror.org/00kyrfw38 McGaw Technology (United States)'), (30501, 'https://ror.org/00kz6zq32', 'no_lang_code', 1, 'https://ror.org/00kz6zq32 Higher Education Press (China)'), (30502, 'https://ror.org/00kzn0453', 'en', 1, 'https://ror.org/00kzn0453 Viscardi Center'), (30503, 'https://ror.org/00kztq733', 'en', 1, 'https://ror.org/00kztq733 Isaac Newton Institute'), (30504, 'https://ror.org/00m35h465', 'en', 1, 'https://ror.org/00m35h465 Center for New American Media'), (30505, 'https://ror.org/00m3nhd65', 'en', 1, 'https://ror.org/00m3nhd65 The Natural Step'), (30506, 'https://ror.org/00m3wrz48', 'en', 1, 'https://ror.org/00m3wrz48 Institut des États-unis pour la paix United States Institute of Peace'), (30507, 'https://ror.org/00m7w8s72', 'en', 1, 'https://ror.org/00m7w8s72 Wellcome Centre for Molecular Parasitology'), (30508, 'https://ror.org/00m8bhr79', 'no_lang_code', 1, 'https://ror.org/00m8bhr79 Kalos Technologies (United States)'), (30509, 'https://ror.org/00m9ba392', 'no_lang_code', 1, 'https://ror.org/00m9ba392 Bahawal Victoria Hospital بہاول وکٹوریہ سپتال,'), (30510, 'https://ror.org/00m9dbm09', 'en', 1, 'https://ror.org/00m9dbm09 Public Health Department'), (30511, 'https://ror.org/00ma2r948', 'en', 1, 'https://ror.org/00ma2r948 African Studies Centre Afrika Studiecentrum'), (30512, 'https://ror.org/00mag5698', 'no_lang_code', 1, 'https://ror.org/00mag5698 Vivoline Medical (Sweden)'), (30513, 'https://ror.org/00md1r011', 'no_lang_code', 1, 'https://ror.org/00md1r011 SARomics Biostructures (Sweden)'), (30514, 'https://ror.org/00mepd532', 'en', 1, 'https://ror.org/00mepd532 Catholic Theological Private University Linz Katholische Privat-Universität Linz'), (30515, 'https://ror.org/00mesrk97', 'en', 1, 'https://ror.org/00mesrk97 Barton College'), (30516, 'https://ror.org/00mh27630', 'no_lang_code', 1, 'https://ror.org/00mh27630 RNET Technologies (United States)'), (30517, 'https://ror.org/00mh3mf48', 'no_lang_code', 1, 'https://ror.org/00mh3mf48 Centriair (Sweden)'), (30518, 'https://ror.org/00mh7ne83', 'en', 1, 'https://ror.org/00mh7ne83 Fergusson College'), (30519, 'https://ror.org/00mj90n62', 'en', 1, 'https://ror.org/00mj90n62 Qingdao Mental Health Center'), (30520, 'https://ror.org/00mkdan60', 'no_lang_code', 1, 'https://ror.org/00mkdan60 Volvo (United States)'), (30521, 'https://ror.org/00mmb7886', 'no_lang_code', 1, 'https://ror.org/00mmb7886 Electrodynamics Associates (United States)'), (30522, 'https://ror.org/00mmq8h56', 'no_lang_code', 1, 'https://ror.org/00mmq8h56 GoHypersonic (United States)'), (30523, 'https://ror.org/00mn2bk17', 'en', 1, 'https://ror.org/00mn2bk17 Environmental and Water Resources Engineering'), (30524, 'https://ror.org/00mn56c32', 'en', 1, 'https://ror.org/00mn56c32 British Red Cross'), (30525, 'https://ror.org/00mn6be63', 'en', 1, 'https://ror.org/00mn6be63 John S. and James L. Knight Foundation'), (30526, 'https://ror.org/00mnqcr93', 'no_lang_code', 1, 'https://ror.org/00mnqcr93 Alcohol Countermeasure Systems (Canada)'), (30527, 'https://ror.org/00mpfdw74', 'en', 1, 'https://ror.org/00mpfdw74 Remington College'), (30528, 'https://ror.org/00mq1v554', 'en', 1, 'https://ror.org/00mq1v554 Environment Research and Technology Development Fund'), (30529, 'https://ror.org/00mq90977', 'no_lang_code', 1, 'https://ror.org/00mq90977 Hordeum (Slovakia)'), (30530, 'https://ror.org/00mrdc589', 'en', 1, 'https://ror.org/00mrdc589 Institute of Clinical Research'), (30531, 'https://ror.org/00msnw430', 'en', 1, 'https://ror.org/00msnw430 Watkins College of Art Design and Film'), (30532, 'https://ror.org/00mwgpv54', 'no_lang_code', 1, 'https://ror.org/00mwgpv54 Eclipse Energy Systems (United States)'), (30533, 'https://ror.org/00my25942', 'en', 1, 'https://ror.org/00my25942 Fudan University Shanghai Cancer Center'), (30534, 'https://ror.org/00my5vx03', 'id', 1, 'https://ror.org/00my5vx03 Yayasan Masyarakat Dan Perikanan Indonesia'), (30535, 'https://ror.org/00mzj5z57', 'en', 1, 'https://ror.org/00mzj5z57 Centre Tecnològic de Nutrició i Salut Technological Center of Nutrition and Health'), (30536, 'https://ror.org/00n1x4x37', 'no_lang_code', 1, 'https://ror.org/00n1x4x37 Linnaeus Plant Sciences (Canada)'), (30537, 'https://ror.org/00n20jq68', 'en', 1, 'https://ror.org/00n20jq68 British Ecological Society'), (30538, 'https://ror.org/00n3ezc34', 'no_lang_code', 1, 'https://ror.org/00n3ezc34 Nammo (United States)'), (30539, 'https://ror.org/00n4kpm21', 'en', 1, 'https://ror.org/00n4kpm21 Construction Owners Association of Alberta'), (30540, 'https://ror.org/00n7wkq71', 'no_lang_code', 1, 'https://ror.org/00n7wkq71 Orexplore (Sweden)'), (30541, 'https://ror.org/00n8pjn35', 'en', 1, 'https://ror.org/00n8pjn35 National Bernstein Network Computational Neuroscience Nationale Bernstein Netzwerk Computational Neuroscience'), (30542, 'https://ror.org/00nag1e52', 'no_lang_code', 1, 'https://ror.org/00nag1e52 Magnolia Optical Technologies (United States)'), (30543, 'https://ror.org/00nc55f03', 'pt', 1, 'https://ror.org/00nc55f03 Fundação de Amparo à Pesquisa do Estado de Minas Gerais'), (30544, 'https://ror.org/00nd3ps77', 'no_lang_code', 1, 'https://ror.org/00nd3ps77 Level Set Systems (United States)'), (30545, 'https://ror.org/00ndnda10', 'en', 1, 'https://ror.org/00ndnda10 University of Pharmacy Mandalay ဆေးဝါးတက္ကသိုလ်(မန္တလေး)'), (30546, 'https://ror.org/00ne5nn12', 'no_lang_code', 1, 'https://ror.org/00ne5nn12 EOSPACE (United States)'), (30547, 'https://ror.org/00neqwx86', 'no_lang_code', 1, 'https://ror.org/00neqwx86 Hydromantis Environmental Software Solutions (Canada)'), (30548, 'https://ror.org/00ng3qf76', 'no_lang_code', 1, 'https://ror.org/00ng3qf76 Uv Tech (Sweden)'), (30549, 'https://ror.org/00nggaz43', 'en', 1, 'https://ror.org/00nggaz43 Georg Simon Ohm University of Applied Sciences Nuremberg Technische Hochschule Nürnberg Georg Simon Ohm'), (30550, 'https://ror.org/00ngrw992', 'no_lang_code', 1, 'https://ror.org/00ngrw992 Linden Photonics (United States)'), (30551, 'https://ror.org/00nkcmy90', 'en', 1, 'https://ror.org/00nkcmy90 National Bank of Austria Österreichische Nationalbank'), (30552, 'https://ror.org/00nn4h902', 'en', 1, 'https://ror.org/00nn4h902 Ecancer'), (30553, 'https://ror.org/00nnd3206', 'no_lang_code', 1, 'https://ror.org/00nnd3206 Thales (Canada)'), (30554, 'https://ror.org/00np6vq88', 'en', 1, 'https://ror.org/00np6vq88 Welch Foundation'), (30555, 'https://ror.org/00np88202', 'en', 1, 'https://ror.org/00np88202 Swedish Industrial Design Foundation'), (30556, 'https://ror.org/00nq2vw96', 'no_lang_code', 1, 'https://ror.org/00nq2vw96 Fastvdo (United States)'), (30557, 'https://ror.org/00nrbsf87', 'en', 1, 'https://ror.org/00nrbsf87 Institute of Oncology Prof. Dr. Ion Chiricuta'), (30558, 'https://ror.org/00nrhr905', 'no_lang_code', 1, 'https://ror.org/00nrhr905 Torch Technologies (United States)'), (30559, 'https://ror.org/00ntx3406', 'no_lang_code', 1, 'https://ror.org/00ntx3406 Micro Cooling Concepts (United States)'), (30560, 'https://ror.org/00ny54t68', 'no_lang_code', 1, 'https://ror.org/00ny54t68 BI Pure Water (Canada)'), (30561, 'https://ror.org/00ny76115', 'en', 1, 'https://ror.org/00ny76115 Forage Genetics International'), (30562, 'https://ror.org/00nyhq937', 'en', 1, 'https://ror.org/00nyhq937 Association Canadienne des Producteurs d''Acier Canadian Steel Producers Association'), (30563, 'https://ror.org/00p0n9a62', 'en', 1, 'https://ror.org/00p0n9a62 Minhang District Central Hospital'), (30564, 'https://ror.org/00p2jsg72', 'no_lang_code', 1, 'https://ror.org/00p2jsg72 Unilever (Canada)'), (30565, 'https://ror.org/00p3jpt93', 'no_lang_code', 1, 'https://ror.org/00p3jpt93 Touchtech (Sweden)'), (30566, 'https://ror.org/00p3k1n22', 'no_lang_code', 1, 'https://ror.org/00p3k1n22 AkzoNobel (Canada)'), (30567, 'https://ror.org/00p6c4n60', 'no_lang_code', 1, 'https://ror.org/00p6c4n60 Autoline Insurance (United Kingdom)'), (30568, 'https://ror.org/00p77cm62', 'no_lang_code', 1, 'https://ror.org/00p77cm62 Fugro (United Kingdom)'), (30569, 'https://ror.org/00p7ds424', 'en', 1, 'https://ror.org/00p7ds424 Discovery Eye Foundation'), (30570, 'https://ror.org/00p82qb91', 'no_lang_code', 1, 'https://ror.org/00p82qb91 Polymer Research Technologies (Canada)'), (30571, 'https://ror.org/00p8x9d62', 'no_lang_code', 1, 'https://ror.org/00p8x9d62 Kemira (Canada)'), (30572, 'https://ror.org/00p9jf779', 'en', 1, 'https://ror.org/00p9jf779 Medicines for Malaria Venture'), (30573, 'https://ror.org/00pavee11', 'en', 1, 'https://ror.org/00pavee11 CSG Centre for Society and the Life Sciences'), (30574, 'https://ror.org/00pbgsg09', 'de', 1, 'https://ror.org/00pbgsg09 Asklepios Klinik Altona'), (30575, 'https://ror.org/00pftnv23', 'sv', 1, 'https://ror.org/00pftnv23 Association of Heavy Vehicles Tunga Fordon'), (30576, 'https://ror.org/00phyfh89', 'no_lang_code', 1, 'https://ror.org/00phyfh89 Sperient (United States)'), (30577, 'https://ror.org/00png4t13', 'no_lang_code', 1, 'https://ror.org/00png4t13 mZeal Communications (United States)'), (30578, 'https://ror.org/00pngyt39', 'en', 1, 'https://ror.org/00pngyt39 Hemostasis and Thrombosis Research Society'), (30579, 'https://ror.org/00pwncn89', 'en', 1, 'https://ror.org/00pwncn89 Biobanking and Biomolecular Resources Research Infrastructure Consortium'), (30580, 'https://ror.org/00px7ap78', 'en', 1, 'https://ror.org/00px7ap78 Building Testing and Research Institute'), (30581, 'https://ror.org/00py6j950', 'no_lang_code', 1, 'https://ror.org/00py6j950 QuesTek (United States)'), (30582, 'https://ror.org/00pyb4029', 'no_lang_code', 1, 'https://ror.org/00pyb4029 Sustainable Business Hub (Sweden)'), (30583, 'https://ror.org/00pyrxj28', 'no_lang_code', 1, 'https://ror.org/00pyrxj28 American Research Corporation of Virginia (United States)'), (30584, 'https://ror.org/00q0w7q33', 'no_lang_code', 1, 'https://ror.org/00q0w7q33 J.B. Anderson & Son (United States)'), (30585, 'https://ror.org/00q1jh816', 'no_lang_code', 1, 'https://ror.org/00q1jh816 Innoflight (United States)'), (30586, 'https://ror.org/00q1xza85', 'no_lang_code', 1, 'https://ror.org/00q1xza85 PEL Associates (United States)'), (30587, 'https://ror.org/00q29hr25', 'no_lang_code', 1, 'https://ror.org/00q29hr25 De Francisci Machine Company (United States)'), (30588, 'https://ror.org/00q2mch05', 'no_lang_code', 1, 'https://ror.org/00q2mch05 Charles River Laboratories (United Kingdom)'), (30589, 'https://ror.org/00q2zjc87', 'en', 1, 'https://ror.org/00q2zjc87 Blue Cross Blue Shield of Michigan Foundation'), (30590, 'https://ror.org/00q534t73', 'no_lang_code', 1, 'https://ror.org/00q534t73 SeCan (Canada)'), (30591, 'https://ror.org/00q5f5t70', 'no_lang_code', 1, 'https://ror.org/00q5f5t70 Luminit (United States)'), (30592, 'https://ror.org/00q8efx07', 'no_lang_code', 1, 'https://ror.org/00q8efx07 FloDesign (United States)'), (30593, 'https://ror.org/00q9zmg67', 'no_lang_code', 1, 'https://ror.org/00q9zmg67 Envirocare (Slovakia)'), (30594, 'https://ror.org/00qb1n040', 'fr', 1, 'https://ror.org/00qb1n040 Centre de Recherche Médicale et Sanitaire'), (30595, 'https://ror.org/00qc9cw63', 'no_lang_code', 1, 'https://ror.org/00qc9cw63 Vironova (Sweden)'), (30596, 'https://ror.org/00qd48t56', 'no_lang_code', 1, 'https://ror.org/00qd48t56 Cognizant (United Kingdom)'), (30597, 'https://ror.org/00qjb4236', 'en', 1, 'https://ror.org/00qjb4236 Association Canadienne de la Technologie de l''Information Information Technology Association of Canada'), (30598, 'https://ror.org/00qnfvz68', 'en', 1, 'https://ror.org/00qnfvz68 Open Society Foundations'), (30599, 'https://ror.org/00qtxnd58', 'en', 1, 'https://ror.org/00qtxnd58 Hungarian National Blood Transfusion Service'), (30600, 'https://ror.org/00qy2eq52', 'en', 1, 'https://ror.org/00qy2eq52 Universities Federation for Animal Welfare'), (30601, 'https://ror.org/00qyat195', 'en', 1, 'https://ror.org/00qyat195 National Centre for Nuclear Energy, Science and Technology'), (30602, 'https://ror.org/00qys8f30', 'no_lang_code', 1, 'https://ror.org/00qys8f30 Penn West Exploration (Canada)'), (30603, 'https://ror.org/00qzpz347', 'no_lang_code', 1, 'https://ror.org/00qzpz347 TelAztec (United States)'), (30604, 'https://ror.org/00r151p09', 'en', 1, 'https://ror.org/00r151p09 Hungarian National Museum'), (30605, 'https://ror.org/00r178r74', 'no_lang_code', 1, 'https://ror.org/00r178r74 Två Punkt Ett (Sweden)'), (30606, 'https://ror.org/00r1rs707', 'no_lang_code', 1, 'https://ror.org/00r1rs707 Mirion Technologies (United States)'), (30607, 'https://ror.org/00r4d5d70', 'no_lang_code', 1, 'https://ror.org/00r4d5d70 Hazelett (United States)'), (30608, 'https://ror.org/00r69j102', 'no_lang_code', 1, 'https://ror.org/00r69j102 Blue Canyon Technologies (United States)'), (30609, 'https://ror.org/00r6akf90', 'en', 1, 'https://ror.org/00r6akf90 Agencia Española de Cooperación Internacional para el Desarrollo Spanish Agency for International Development Cooperation'), (30610, 'https://ror.org/00r7zrn27', 'nl', 1, 'https://ror.org/00r7zrn27 Museum of the Tropics Tropenmuseum'), (30611, 'https://ror.org/00r95sc10', 'no_lang_code', 1, 'https://ror.org/00r95sc10 Fires (Slovakia)'), (30612, 'https://ror.org/00ra24d41', 'en', 1, 'https://ror.org/00ra24d41 National Science and Technology Entrepreneurship Development Board'), (30613, 'https://ror.org/00ra63c74', 'fr', 1, 'https://ror.org/00ra63c74 Centre Hospitalier Territorial de Nouvelle-Calédonie'), (30614, 'https://ror.org/00rbdec72', 'en', 1, 'https://ror.org/00rbdec72 Dyer Island Conservation Trust'), (30615, 'https://ror.org/00rbj3548', 'en', 1, 'https://ror.org/00rbj3548 Diabetes Research Institute Foundation'), (30616, 'https://ror.org/00rceb094', 'no_lang_code', 1, 'https://ror.org/00rceb094 International Submarine Engineering (Canada)'), (30617, 'https://ror.org/00rd9q776', 'en', 1, 'https://ror.org/00rd9q776 Museum of Literature'), (30618, 'https://ror.org/00rdpwj76', 'en', 1, 'https://ror.org/00rdpwj76 Spencer Foundation'), (30619, 'https://ror.org/00rf4tg97', 'no_lang_code', 1, 'https://ror.org/00rf4tg97 Suniva (United States)'), (30620, 'https://ror.org/00rg88503', 'fr', 1, 'https://ror.org/00rg88503 Centre de Recherche Médicales de Lambaréné'), (30621, 'https://ror.org/00rgzpv08', 'en', 1, 'https://ror.org/00rgzpv08 Fujian Provincial Department of Science and Technology'), (30622, 'https://ror.org/00rhqh755', 'no_lang_code', 1, 'https://ror.org/00rhqh755 RDL (United States)'), (30623, 'https://ror.org/00rkkzx80', 'no_lang_code', 1, 'https://ror.org/00rkkzx80 Houghton Mifflin Harcourt (United States)'), (30624, 'https://ror.org/00rmvjy83', 'en', 1, 'https://ror.org/00rmvjy83 Ministry of Civil Affairs 中华人民共和国民政部'), (30625, 'https://ror.org/00rmxs729', 'no_lang_code', 1, 'https://ror.org/00rmxs729 Acadian Peat Moss (Canada)'), (30626, 'https://ror.org/00rp11x24', 'no_lang_code', 1, 'https://ror.org/00rp11x24 Walsh Medical Devices (Canada)'), (30627, 'https://ror.org/00rqzt374', 'no_lang_code', 1, 'https://ror.org/00rqzt374 Dane Technologies (United States)'), (30628, 'https://ror.org/00rs1n196', 'no_lang_code', 1, 'https://ror.org/00rs1n196 Restek (United States)'), (30629, 'https://ror.org/00rt0xj75', 'fr', 1, 'https://ror.org/00rt0xj75 Agence Thématique de Recherche en Science de la Santé'), (30630, 'https://ror.org/00rv4tb81', 'no_lang_code', 1, 'https://ror.org/00rv4tb81 Optical Engines (United States)'), (30631, 'https://ror.org/00rvf1k93', 'no_lang_code', 1, 'https://ror.org/00rvf1k93 Upsher-Smith Laboratories (United States)'), (30632, 'https://ror.org/00rxhq344', 'de', 1, 'https://ror.org/00rxhq344 Innoventor'), (30633, 'https://ror.org/00ryamr02', 'en', 1, 'https://ror.org/00ryamr02 Sea to Shore Alliance'), (30634, 'https://ror.org/00ryd3444', 'no_lang_code', 1, 'https://ror.org/00ryd3444 Dynalloy (United States)'), (30635, 'https://ror.org/00ryqe969', 'no_lang_code', 1, 'https://ror.org/00ryqe969 Engineering Associates (United States)'), (30636, 'https://ror.org/00s8ey170', 'no_lang_code', 1, 'https://ror.org/00s8ey170 Paulsson (United States)'), (30637, 'https://ror.org/00s8p6c75', 'pt', 1, 'https://ror.org/00s8p6c75 Agência Paulista de Tecnologia dos Agronegócios São Paulo’s Agency for Agribusiness Technology'), (30638, 'https://ror.org/00s9t5z05', 'no_lang_code', 1, 'https://ror.org/00s9t5z05 Canetique (Canada)'), (30639, 'https://ror.org/00safct20', 'en', 1, 'https://ror.org/00safct20 National Pork Board'), (30640, 'https://ror.org/00saj4962', 'en', 1, 'https://ror.org/00saj4962 Medical Research Scotland'), (30641, 'https://ror.org/00scbd467', 'en', 1, 'https://ror.org/00scbd467 National Bureau of Plant Genetic Resources'), (30642, 'https://ror.org/00scjy223', 'no_lang_code', 1, 'https://ror.org/00scjy223 Core Laboratories (United States)'), (30643, 'https://ror.org/00scm8y78', 'en', 1, 'https://ror.org/00scm8y78 Life Science Governance Institute'), (30644, 'https://ror.org/00sdxex41', 'en', 1, 'https://ror.org/00sdxex41 Autograph ABP'), (30645, 'https://ror.org/00sdyry80', 'en', 1, 'https://ror.org/00sdyry80 Museum of Hungarian Agriculture'), (30646, 'https://ror.org/00sebb670', 'no_lang_code', 1, 'https://ror.org/00sebb670 Clinique d''Optométrie l’Émerillon (Canada)'), (30647, 'https://ror.org/00seqvw16', 'no_lang_code', 1, 'https://ror.org/00seqvw16 Replify (United Kingdom)'), (30648, 'https://ror.org/00sfcfc45', 'no_lang_code', 1, 'https://ror.org/00sfcfc45 Heliotrope Technologies (United States)'), (30649, 'https://ror.org/00sfss216', 'hu', 1, 'https://ror.org/00sfss216 Magyar Közgazdasági Társaság'), (30650, 'https://ror.org/00sgdxg36', 'en', 1, 'https://ror.org/00sgdxg36 Instituto de Milenio de Astrofísica Millennium Institute of Astrophysics'), (30651, 'https://ror.org/00shj4079', 'no_lang_code', 1, 'https://ror.org/00shj4079 Noveltis (France)'), (30652, 'https://ror.org/00sjtsn56', 'no_lang_code', 1, 'https://ror.org/00sjtsn56 Pulse Energy (New Zealand)'), (30653, 'https://ror.org/00sjx7d61', 'no_lang_code', 1, 'https://ror.org/00sjx7d61 Vencore (United States)'), (30654, 'https://ror.org/00skv9577', 'es', 1, 'https://ror.org/00skv9577 Fundación Mutua Madrileña'), (30655, 'https://ror.org/00sne9z79', 'en', 1, 'https://ror.org/00sne9z79 ResMed Foundation'), (30656, 'https://ror.org/00snhrb56', 'sv', 1, 'https://ror.org/00snhrb56 Skåne Food Innovation Network Skånes Livsmedelsakademi'), (30657, 'https://ror.org/00snkpt73', 'no_lang_code', 1, 'https://ror.org/00snkpt73 Advanced Anti-Terror Technologies (United States)'), (30658, 'https://ror.org/00snt7e27', 'no_lang_code', 1, 'https://ror.org/00snt7e27 FIKRA'), (30659, 'https://ror.org/00sp9ha44', 'no_lang_code', 1, 'https://ror.org/00sp9ha44 Optical Physics Company (United States)'), (30660, 'https://ror.org/00ssgrj25', 'en', 1, 'https://ror.org/00ssgrj25 Amazon Research Foundation Fundação Amazônia Paraense de Amparo à Pesquisa'), (30661, 'https://ror.org/00sz7mx24', 'no_lang_code', 1, 'https://ror.org/00sz7mx24 Friction Stir Link (United States)'), (30662, 'https://ror.org/00t354q81', 'en', 1, 'https://ror.org/00t354q81 Association of Zoos and Aquariums'), (30663, 'https://ror.org/00t3ptr62', 'no_lang_code', 1, 'https://ror.org/00t3ptr62 Boston Micromachines (United States)'), (30664, 'https://ror.org/00t46nv75', 'fr', 1, 'https://ror.org/00t46nv75 Actions pour l’Environnement et le Développement Durable'), (30665, 'https://ror.org/00t6b3b82', 'no_lang_code', 1, 'https://ror.org/00t6b3b82 EXcorLab (Germany)'), (30666, 'https://ror.org/00t6svq33', 'en', 1, 'https://ror.org/00t6svq33 Canadian Anesthesiologists'' Society'), (30667, 'https://ror.org/00t7fmg72', 'en', 1, 'https://ror.org/00t7fmg72 Centre for Research on Brain Language and Music'), (30668, 'https://ror.org/00t7jb983', 'es', 1, 'https://ror.org/00t7jb983 Consorcio Hospitalario Provincial de Castellón'), (30669, 'https://ror.org/00t9kp067', 'no_lang_code', 1, 'https://ror.org/00t9kp067 Acuity Technologies (United States)'), (30670, 'https://ror.org/00td0ce11', 'no_lang_code', 1, 'https://ror.org/00td0ce11 AFCO Systems (United States)'), (30671, 'https://ror.org/00td2g412', 'no_lang_code', 1, 'https://ror.org/00td2g412 Softronic (Sweden)'), (30672, 'https://ror.org/00teqnm16', 'no_lang_code', 1, 'https://ror.org/00teqnm16 SPX Transformer Solutions (United States)'), (30673, 'https://ror.org/00texw081', 'no_lang_code', 1, 'https://ror.org/00texw081 Magellium (United Kingdom)'), (30674, 'https://ror.org/00tf8zn82', 'no_lang_code', 1, 'https://ror.org/00tf8zn82 Altex Technologies Corporation (United States)'), (30675, 'https://ror.org/00tgd3g89', 'no_lang_code', 1, 'https://ror.org/00tgd3g89 Ontar (United States)'), (30676, 'https://ror.org/00thhxf09', 'no_lang_code', 1, 'https://ror.org/00thhxf09 Lambda Instruments (United States)'), (30677, 'https://ror.org/00thz8j39', 'no_lang_code', 1, 'https://ror.org/00thz8j39 Gleason (Italy)'), (30678, 'https://ror.org/00tjfzj89', 'no_lang_code', 1, 'https://ror.org/00tjfzj89 Sustainable Home Survey (United Kingdom)'), (30679, 'https://ror.org/00tktp346', 'no_lang_code', 1, 'https://ror.org/00tktp346 Effectus But Different (Sweden)'), (30680, 'https://ror.org/00tmnnm82', 'no_lang_code', 1, 'https://ror.org/00tmnnm82 Kingston Software Factory (Canada)'), (30681, 'https://ror.org/00tmwya54', 'en', 1, 'https://ror.org/00tmwya54 L’Institut International de l’Eau de Stockholm Stockholm International Water Institute'), (30682, 'https://ror.org/00tn07286', 'en', 1, 'https://ror.org/00tn07286 Canadian Wood Council Conseil canadien du bois'), (30683, 'https://ror.org/00tntzp09', 'en', 1, 'https://ror.org/00tntzp09 German-Israeli Foundation for Scientific Research and Development'), (30684, 'https://ror.org/00tqhym28', 'en', 1, 'https://ror.org/00tqhym28 Institute of Croatian Language and Linguistics'), (30685, 'https://ror.org/00trnds81', 'en', 1, 'https://ror.org/00trnds81 Saskatchewan Health Research Foundation'), (30686, 'https://ror.org/00ts92g58', 'nl', 1, 'https://ror.org/00ts92g58 Dunea'), (30687, 'https://ror.org/00ttqn045', 'en', 1, 'https://ror.org/00ttqn045 Danish Ramazzini Center'), (30688, 'https://ror.org/00ttz3768', 'no_lang_code', 1, 'https://ror.org/00ttz3768 Ultramed (United States)'), (30689, 'https://ror.org/00twbd828', 'en', 1, 'https://ror.org/00twbd828 The World Academy of Sciences'), (30690, 'https://ror.org/00twmc436', 'no_lang_code', 1, 'https://ror.org/00twmc436 Setrab (Sweden)'), (30691, 'https://ror.org/00twq6n75', 'no_lang_code', 1, 'https://ror.org/00twq6n75 OssDsign (Sweden)'), (30692, 'https://ror.org/00v2a6g95', 'en', 1, 'https://ror.org/00v2a6g95 Center for Plant Conservation'), (30693, 'https://ror.org/00v3jqn19', 'en', 1, 'https://ror.org/00v3jqn19 Agence mondiale antidopage World Anti-Doping Agency'), (30694, 'https://ror.org/00v61f080', 'no_lang_code', 1, 'https://ror.org/00v61f080 Industrial Planning Technology (United States)'), (30695, 'https://ror.org/00v6g9845', 'no_lang_code', 1, 'https://ror.org/00v6g9845 Siemens (China)'), (30696, 'https://ror.org/00v7akn72', 'en', 1, 'https://ror.org/00v7akn72 Women Helping Others Foundation'), (30697, 'https://ror.org/00v7tvz77', 'no_lang_code', 1, 'https://ror.org/00v7tvz77 VÚRUP (Slovakia)'), (30698, 'https://ror.org/00v7z6m55', 'en', 1, 'https://ror.org/00v7z6m55 Limassol General Hospital'), (30699, 'https://ror.org/00v84va72', 'no_lang_code', 1, 'https://ror.org/00v84va72 Ford Motor Company (Canada) Ford du Canada Limitée'), (30700, 'https://ror.org/00v8g0168', 'en', 1, 'https://ror.org/00v8g0168 Jiangxi Provincial Cancer Hospital 江西省肿瘤医院'), (30701, 'https://ror.org/00v996f56', 'no_lang_code', 1, 'https://ror.org/00v996f56 Vuki (Slovakia)'), (30702, 'https://ror.org/00vapxw25', 'en', 1, 'https://ror.org/00vapxw25 American Academy of Art'), (30703, 'https://ror.org/00vb2a765', 'de', 1, 'https://ror.org/00vb2a765 ISAAC Gesellschaft für Unterstützte Kommunikation'), (30704, 'https://ror.org/00vc5fc11', 'no_lang_code', 1, 'https://ror.org/00vc5fc11 Data Harbor (United States)'), (30705, 'https://ror.org/00vet8y51', 'no_lang_code', 1, 'https://ror.org/00vet8y51 Spectrum Magnetics (United States)'), (30706, 'https://ror.org/00vkb8q56', 'en', 1, 'https://ror.org/00vkb8q56 Ningbo City College of Vocational Technology'), (30707, 'https://ror.org/00vm23y87', 'no_lang_code', 1, 'https://ror.org/00vm23y87 Safe (United States)'), (30708, 'https://ror.org/00vnh7v52', 'en', 1, 'https://ror.org/00vnh7v52 Johanneberg Science Park'), (30709, 'https://ror.org/00vrd0936', 'en', 1, 'https://ror.org/00vrd0936 307th Hospital of Chinese People’s Liberation Army 307医院'), (30710, 'https://ror.org/00vt3ry76', 'en', 1, 'https://ror.org/00vt3ry76 Nutricia Research Foundation'), (30711, 'https://ror.org/00vxgjw72', 'en', 1, 'https://ror.org/00vxgjw72 Ministry of Health and Welfare 대한민국 보건복지부'), (30712, 'https://ror.org/00vyw7j44', 'en', 1, 'https://ror.org/00vyw7j44 Swedish Institute for Studies in Education and Research'), (30713, 'https://ror.org/00vzq1e41', 'no_lang_code', 1, 'https://ror.org/00vzq1e41 Decisive Analytics Corporation (United States)'), (30714, 'https://ror.org/00w00g774', 'no_lang_code', 1, 'https://ror.org/00w00g774 Applied Diamond (United States)'), (30715, 'https://ror.org/00w1v8g84', 'pt', 1, 'https://ror.org/00w1v8g84 Laboratório Nacional de Ciência e Tecnologia do Bioetanol'), (30716, 'https://ror.org/00w3ghh40', 'en', 1, 'https://ror.org/00w3ghh40 Central European House of Photography'), (30717, 'https://ror.org/00w4c2196', 'no_lang_code', 1, 'https://ror.org/00w4c2196 Capco (United States)'), (30718, 'https://ror.org/00w5b2218', 'no_lang_code', 1, 'https://ror.org/00w5b2218 Orbotech (United States)'), (30719, 'https://ror.org/00w5q8f78', 'en', 1, 'https://ror.org/00w5q8f78 Canadian Standards Association'), (30720, 'https://ror.org/00w5xhg82', 'no_lang_code', 1, 'https://ror.org/00w5xhg82 Assured Information Security (United States)'), (30721, 'https://ror.org/00w77y420', 'no_lang_code', 1, 'https://ror.org/00w77y420 BlackPak (United States)'), (30722, 'https://ror.org/00w8cq239', 'pt', 1, 'https://ror.org/00w8cq239 Foundation for Research Support of Goiás State Fundação de Apoio a Pesquisa do Estado de Goiás'), (30723, 'https://ror.org/00w8gjz75', 'en', 1, 'https://ror.org/00w8gjz75 Iowa Department for the Blind'), (30724, 'https://ror.org/00w901m21', 'no_lang_code', 1, 'https://ror.org/00w901m21 Candent Technologies (United States)'), (30725, 'https://ror.org/00w964w95', 'no_lang_code', 1, 'https://ror.org/00w964w95 SDS International (United States)'), (30726, 'https://ror.org/00wcmt229', 'no_lang_code', 1, 'https://ror.org/00wcmt229 C. van ''t Riet Dairy Technology (Netherlands)'), (30727, 'https://ror.org/00wgjgc44', 'no_lang_code', 1, 'https://ror.org/00wgjgc44 Cellworks Research (India)'), (30728, 'https://ror.org/00wgn9w85', 'no_lang_code', 1, 'https://ror.org/00wgn9w85 Redondo Optics (United States)'), (30729, 'https://ror.org/00wh57194', 'en', 1, 'https://ror.org/00wh57194 Alberta Energy'), (30730, 'https://ror.org/00wj1b221', 'no_lang_code', 1, 'https://ror.org/00wj1b221 Integrated Statistics (United States)'), (30731, 'https://ror.org/00wjbbg08', 'no_lang_code', 1, 'https://ror.org/00wjbbg08 Loki (United States)'), (30732, 'https://ror.org/00wjr1b41', 'no_lang_code', 1, 'https://ror.org/00wjr1b41 Nu-Tech Precision Metals (Canada)'), (30733, 'https://ror.org/00wk05f95', 'en', 1, 'https://ror.org/00wk05f95 CeNTech'), (30734, 'https://ror.org/00wkyd235', 'no_lang_code', 1, 'https://ror.org/00wkyd235 Louisiana-Pacific (Canada)'), (30735, 'https://ror.org/00wmm1d15', 'en', 1, 'https://ror.org/00wmm1d15 Institute of Art History'), (30736, 'https://ror.org/00wmrqg59', 'no_lang_code', 1, 'https://ror.org/00wmrqg59 West Fraser (Canada)'), (30737, 'https://ror.org/00wpg5z42', 'en', 1, 'https://ror.org/00wpg5z42 East Tallinn Central Hospital'), (30738, 'https://ror.org/00wpqwm31', 'no_lang_code', 1, 'https://ror.org/00wpqwm31 Astron Wireless Technologies (United States)'), (30739, 'https://ror.org/00wqezk94', 'no_lang_code', 1, 'https://ror.org/00wqezk94 Intelligent Light (United States)'), (30740, 'https://ror.org/00wqx6897', 'en', 1, 'https://ror.org/00wqx6897 Agence Européenne Chargée de la Sécurité des Réseaux et de l''Information European Union Agency for Network and Information Security Οργανισμός της Ευρωπαϊκής Ένωσης για την Ασφάλεια Δικτύων και Πληροφοριών'), (30741, 'https://ror.org/00wqzbn30', 'no_lang_code', 1, 'https://ror.org/00wqzbn30 KGHM Polska Miedź (Poland)'), (30742, 'https://ror.org/00wtk6m97', 'en', 1, 'https://ror.org/00wtk6m97 Growth Analysis'), (30743, 'https://ror.org/00wz44k82', 'no_lang_code', 1, 'https://ror.org/00wz44k82 VBN Components (Sweden)'), (30744, 'https://ror.org/00x187281', 'no_lang_code', 1, 'https://ror.org/00x187281 Knobley Technical Associates (United States)'), (30745, 'https://ror.org/00x3xyg66', 'en', 1, 'https://ror.org/00x3xyg66 North Staffordshire Clinical Commissioning Group'), (30746, 'https://ror.org/00x3ywr72', 'no_lang_code', 1, 'https://ror.org/00x3ywr72 Ostara Nutrient Recovery Technologies (Canada)'), (30747, 'https://ror.org/00x43jw16', 'no_lang_code', 1, 'https://ror.org/00x43jw16 Intrinsix (United States)'), (30748, 'https://ror.org/00x4j8f40', 'no_lang_code', 1, 'https://ror.org/00x4j8f40 Carolina Unmanned Vehicles (United States)'), (30749, 'https://ror.org/00x75mt56', 'en', 1, 'https://ror.org/00x75mt56 Tzu Hui Institute of Technology'), (30750, 'https://ror.org/00x8a1s60', 'no_lang_code', 1, 'https://ror.org/00x8a1s60 Andritz (Canada)'), (30751, 'https://ror.org/00x9kww32', 'en', 1, 'https://ror.org/00x9kww32 Jackson College'), (30752, 'https://ror.org/00xactn75', 'no_lang_code', 1, 'https://ror.org/00xactn75 Epitaxial Technologies (United States)'), (30753, 'https://ror.org/00xcd7y72', 'en', 1, 'https://ror.org/00xcd7y72 All India Council for Technical Education'), (30754, 'https://ror.org/00xectf18', 'no_lang_code', 1, 'https://ror.org/00xectf18 Weston Solutions (United States)'), (30755, 'https://ror.org/00xfvky15', 'en', 1, 'https://ror.org/00xfvky15 Ohio Sea Grant College Program'), (30756, 'https://ror.org/00xfzhw50', 'no_lang_code', 1, 'https://ror.org/00xfzhw50 Abeam Technologies (United States)'), (30757, 'https://ror.org/00xfzzb18', 'no_lang_code', 1, 'https://ror.org/00xfzzb18 Neva Ridge Technologies (United States)'), (30758, 'https://ror.org/00xn7zn29', 'en', 1, 'https://ror.org/00xn7zn29 Kazakh-American University'), (30759, 'https://ror.org/00xr6ce64', 'no_lang_code', 1, 'https://ror.org/00xr6ce64 Food Dudes (United Kingdom)'), (30760, 'https://ror.org/00xr9yb90', 'en', 1, 'https://ror.org/00xr9yb90 Great Lakes Fishery Trust'), (30761, 'https://ror.org/00xrqbp98', 'no_lang_code', 1, 'https://ror.org/00xrqbp98 Solink (Canada)'), (30762, 'https://ror.org/00xtdda21', 'no_lang_code', 1, 'https://ror.org/00xtdda21 Monocl (Sweden)'), (30763, 'https://ror.org/00xtnmz27', 'no_lang_code', 1, 'https://ror.org/00xtnmz27 Hain Celestial (Canada)'), (30764, 'https://ror.org/00xtpbs68', 'en', 1, 'https://ror.org/00xtpbs68 Claude Leon Foundation'), (30765, 'https://ror.org/00xw46r83', 'no_lang_code', 1, 'https://ror.org/00xw46r83 Top Notch Building Maintenance (Canada)'), (30766, 'https://ror.org/00xytbp33', 'en', 1, 'https://ror.org/00xytbp33 Ethiopian Public Health Institute'), (30767, 'https://ror.org/00xyx0e45', 'no_lang_code', 1, 'https://ror.org/00xyx0e45 ITS (Sweden)'), (30768, 'https://ror.org/00xz1k913', 'no_lang_code', 1, 'https://ror.org/00xz1k913 Cerpotech (Norway)'), (30769, 'https://ror.org/00y3nx324', 'no_lang_code', 1, 'https://ror.org/00y3nx324 Auriga Microwave (United States)'), (30770, 'https://ror.org/00y49kv97', 'no_lang_code', 1, 'https://ror.org/00y49kv97 Microwave Vision Group (United States)'), (30771, 'https://ror.org/00y65x556', 'en', 1, 'https://ror.org/00y65x556 American Gastroenterological Association'), (30772, 'https://ror.org/00y6d1y15', 'en', 1, 'https://ror.org/00y6d1y15 Åkroken Science Park'), (30773, 'https://ror.org/00y6khe77', 'en', 1, 'https://ror.org/00y6khe77 Ministerstvo zdravotnictví České republiky Ministry of Health'), (30774, 'https://ror.org/00y81cg83', 'en', 1, 'https://ror.org/00y81cg83 Home Office Y Swyddfa Gartref'), (30775, 'https://ror.org/00y8dmj81', 'no_lang_code', 1, 'https://ror.org/00y8dmj81 Ústav Radiačnej Ochrany (Slovakia)'), (30776, 'https://ror.org/00y9e9y23', 'no_lang_code', 1, 'https://ror.org/00y9e9y23 4C Strategies (Sweden)'), (30777, 'https://ror.org/00yaw3b91', 'en', 1, 'https://ror.org/00yaw3b91 Arts and Culture Trust'), (30778, 'https://ror.org/00ybhm522', 'en', 1, 'https://ror.org/00ybhm522 Flight Attendant Medical Research Institute'), (30779, 'https://ror.org/00yc8qw13', 'no_lang_code', 1, 'https://ror.org/00yc8qw13 Coca Cola (United States)'), (30780, 'https://ror.org/00yd8v543', 'no_lang_code', 1, 'https://ror.org/00yd8v543 McQ (United States)'), (30781, 'https://ror.org/00yepf257', 'en', 1, 'https://ror.org/00yepf257 Ovarian Cancer Action'), (30782, 'https://ror.org/00yhave05', 'en', 1, 'https://ror.org/00yhave05 Estonian History Museum'), (30783, 'https://ror.org/00yj47665', 'en', 1, 'https://ror.org/00yj47665 Lee County Board of Commissioners'), (30784, 'https://ror.org/00yjc4530', 'no_lang_code', 1, 'https://ror.org/00yjc4530 Polaris Sensor Technologies (United States)'), (30785, 'https://ror.org/00yk56168', 'no_lang_code', 1, 'https://ror.org/00yk56168 MARK Resources (United States)'), (30786, 'https://ror.org/00yp7b787', 'en', 1, 'https://ror.org/00yp7b787 Applied Scientific Research Fund'), (30787, 'https://ror.org/00ypx0z29', 'en', 1, 'https://ror.org/00ypx0z29 Institute of Physics and Technology'), (30788, 'https://ror.org/00ypx8t52', 'en', 1, 'https://ror.org/00ypx8t52 Sociaal Historisch Centrum voor Limburg Social Historic Centre for Limburg'), (30789, 'https://ror.org/00ysvtr77', 'no_lang_code', 1, 'https://ror.org/00ysvtr77 Thales (United States)'), (30790, 'https://ror.org/00yt1z637', 'en', 1, 'https://ror.org/00yt1z637 Scientific Services'), (30791, 'https://ror.org/00yt9y116', 'no_lang_code', 1, 'https://ror.org/00yt9y116 Findus (Sweden)'); INSERT INTO `rors` VALUES (30792, 'https://ror.org/00yv7ry10', 'en', 1, 'https://ror.org/00yv7ry10 Mississippi Department of Rehabilitation Services'), (30793, 'https://ror.org/00ywaqr80', 'sv', 1, 'https://ror.org/00ywaqr80 Chalmersinvest'), (30794, 'https://ror.org/00yx0s761', 'en', 1, 'https://ror.org/00yx0s761 First Affiliated Hospital of Liaoning Medical University'), (30795, 'https://ror.org/00yx8y731', 'no_lang_code', 1, 'https://ror.org/00yx8y731 Excet (United States)'), (30796, 'https://ror.org/00yxhwc11', 'en', 1, 'https://ror.org/00yxhwc11 Dundee City Council'), (30797, 'https://ror.org/00z4nbg03', 'en', 1, 'https://ror.org/00z4nbg03 National Environment Agency'), (30798, 'https://ror.org/00z58wj40', 'no_lang_code', 1, 'https://ror.org/00z58wj40 Allstate (United States)'), (30799, 'https://ror.org/00z6yks89', 'en', 1, 'https://ror.org/00z6yks89 Thomas College'), (30800, 'https://ror.org/00z74sn08', 'en', 1, 'https://ror.org/00z74sn08 Departamento de Transporte de Nueva Jersey New Jersey Department of Transportation'), (30801, 'https://ror.org/00z7yba83', 'en', 1, 'https://ror.org/00z7yba83 New York Academy of Art'), (30802, 'https://ror.org/00z84b305', 'no_lang_code', 1, 'https://ror.org/00z84b305 Microscan Systems (United States)'), (30803, 'https://ror.org/00z8w4e54', 'no_lang_code', 1, 'https://ror.org/00z8w4e54 CBC (Canada) Société Radio-Canada'), (30804, 'https://ror.org/00zam0e96', 'en', 1, 'https://ror.org/00zam0e96 Institut de Pathologie et de Génétique, Institute of Pathology and Genetics'), (30805, 'https://ror.org/00zbf3d93', 'en', 1, 'https://ror.org/00zbf3d93 Health Research Council of New Zealand'), (30806, 'https://ror.org/00zc1hf95', 'en', 1, 'https://ror.org/00zc1hf95 National Sleep Foundation'), (30807, 'https://ror.org/00zcxra43', 'en', 1, 'https://ror.org/00zcxra43 Namal College'), (30808, 'https://ror.org/00ze7b628', 'no_lang_code', 1, 'https://ror.org/00ze7b628 Geophex (United States)'), (30809, 'https://ror.org/00zegpe12', 'no_lang_code', 1, 'https://ror.org/00zegpe12 Morphix Technologies (United States)'), (30810, 'https://ror.org/00zf1g010', 'en', 1, 'https://ror.org/00zf1g010 Waitt Foundation'), (30811, 'https://ror.org/00zffwe40', 'no_lang_code', 1, 'https://ror.org/00zffwe40 Xcell (Slovakia)'), (30812, 'https://ror.org/00zgdb249', 'en', 1, 'https://ror.org/00zgdb249 Science and Engineering Research Council'), (30813, 'https://ror.org/00zh5wn98', 'en', 1, 'https://ror.org/00zh5wn98 Netherlands Metabolomics Centre'), (30814, 'https://ror.org/00zjtrn44', 'no_lang_code', 1, 'https://ror.org/00zjtrn44 Jackson Laboratories (India)'), (30815, 'https://ror.org/00zmn9v56', 'de', 1, 'https://ror.org/00zmn9v56 Ludwig Boltzmann Institut für Epilepsie und Neuromuskuläre Erkrankungen'), (30816, 'https://ror.org/00zmtvv40', 'no_lang_code', 1, 'https://ror.org/00zmtvv40 Research Support Instruments (United States)'), (30817, 'https://ror.org/00znyv691', 'en', 1, 'https://ror.org/00znyv691 Danish National Research Foundation'), (30818, 'https://ror.org/00zqa9n78', 'nl', 1, 'https://ror.org/00zqa9n78 Rode Kruis-Vlaanderen'), (30819, 'https://ror.org/00zsnqw46', 'en', 1, 'https://ror.org/00zsnqw46 Austrian Museum of Folk Life and Folk Art Österreichisches Museum für Volkskunde'), (30820, 'https://ror.org/00zsvs615', 'en', 1, 'https://ror.org/00zsvs615 AccessMatters'), (30821, 'https://ror.org/00zvm9z02', 'en', 1, 'https://ror.org/00zvm9z02 Tabor College'), (30822, 'https://ror.org/00zwndh37', 'no_lang_code', 1, 'https://ror.org/00zwndh37 Amtrak (United States)'), (30823, 'https://ror.org/00zwq0r67', 'en', 1, 'https://ror.org/00zwq0r67 Texas Commission on Environmental Quality'), (30824, 'https://ror.org/00zzaq393', 'no_lang_code', 1, 'https://ror.org/00zzaq393 Ocean Power Technologies (United Kingdom)'), (30825, 'https://ror.org/0101kca69', 'no_lang_code', 1, 'https://ror.org/0101kca69 Grace (Canada)'), (30826, 'https://ror.org/0101xrq71', 'en', 1, 'https://ror.org/0101xrq71 Department of Science and Technology विज्ञान एवं प्रौद्योगिकी विभाग ശാസ്ത്ര സാങ്കേതിക വകുപ്പ്'), (30827, 'https://ror.org/01044pa52', 'no_lang_code', 1, 'https://ror.org/01044pa52 Lonza (Canada)'), (30828, 'https://ror.org/0105p2j56', 'en', 1, 'https://ror.org/0105p2j56 National Museum of Natural Science 國立自然科學博物館'), (30829, 'https://ror.org/0106d7657', 'en', 1, 'https://ror.org/0106d7657 Korea International Cooperation Agency 한국국제협력단'), (30830, 'https://ror.org/01079a392', 'en', 1, 'https://ror.org/01079a392 National Museum of Antiquities Rijksmuseum van Oudheden'), (30831, 'https://ror.org/0108bjm70', 'no_lang_code', 1, 'https://ror.org/0108bjm70 GlaxoSmithKline (Australia)'), (30832, 'https://ror.org/0109nma88', 'en', 1, 'https://ror.org/0109nma88 Min-Hwei College of Health Care Management'), (30833, 'https://ror.org/010bgev76', 'en', 1, 'https://ror.org/010bgev76 Florida College'), (30834, 'https://ror.org/010bn5e72', 'no_lang_code', 1, 'https://ror.org/010bn5e72 V Corp Technologies (United States)'), (30835, 'https://ror.org/010bx4f33', 'no_lang_code', 1, 'https://ror.org/010bx4f33 KRD Molecular Technologies (Slovakia)'), (30836, 'https://ror.org/010csj794', 'no_lang_code', 1, 'https://ror.org/010csj794 RemoteReality (United States)'), (30837, 'https://ror.org/010e60082', 'no_lang_code', 1, 'https://ror.org/010e60082 Thorpe Seeop (United States)'), (30838, 'https://ror.org/010eef547', 'en', 1, 'https://ror.org/010eef547 Pathologist Bio-Medical Laboratories'), (30839, 'https://ror.org/010ees266', 'no_lang_code', 1, 'https://ror.org/010ees266 Sweco (Sweden)'), (30840, 'https://ror.org/010eh3243', 'no_lang_code', 1, 'https://ror.org/010eh3243 Acentech (United States)'), (30841, 'https://ror.org/010ggtr76', 'no_lang_code', 1, 'https://ror.org/010ggtr76 Cybosoft (United States)'), (30842, 'https://ror.org/010gk9n67', 'no_lang_code', 1, 'https://ror.org/010gk9n67 Avantek (Slovakia)'), (30843, 'https://ror.org/010gvqg61', 'pt', 1, 'https://ror.org/010gvqg61 Museu Paraense Emílio Goeldi'), (30844, 'https://ror.org/010h1b677', 'en', 1, 'https://ror.org/010h1b677 Technological University Pakokku'), (30845, 'https://ror.org/010hd8e46', 'no_lang_code', 1, 'https://ror.org/010hd8e46 Areta (Slovakia)'), (30846, 'https://ror.org/010hpfk35', 'no_lang_code', 1, 'https://ror.org/010hpfk35 Li Creative Technologies (United States)'), (30847, 'https://ror.org/010j7cb18', 'no_lang_code', 1, 'https://ror.org/010j7cb18 Sardegna Ricerche (Italy)'), (30848, 'https://ror.org/010mkx366', 'no_lang_code', 1, 'https://ror.org/010mkx366 APS Materials (United States)'), (30849, 'https://ror.org/010mtd283', 'en', 1, 'https://ror.org/010mtd283 Elizabeth R. Griffin Research Foundation'), (30850, 'https://ror.org/010p50m34', 'en', 1, 'https://ror.org/010p50m34 Bernstein Center for Computational Neuroscience Freiburg'), (30851, 'https://ror.org/010p72t82', 'no_lang_code', 1, 'https://ror.org/010p72t82 Processkontroll (Sweden)'), (30852, 'https://ror.org/010pdkv94', 'hu', 1, 'https://ror.org/010pdkv94 Nógrád Megyei Múzeumi Szervezet'), (30853, 'https://ror.org/010qvsb68', 'no_lang_code', 1, 'https://ror.org/010qvsb68 American GNC (United States)'), (30854, 'https://ror.org/010s3fx23', 'no_lang_code', 1, 'https://ror.org/010s3fx23 Crunchfish (Sweden)'), (30855, 'https://ror.org/010smqa50', 'no_lang_code', 1, 'https://ror.org/010smqa50 Spaceflight Industries (United States)'), (30856, 'https://ror.org/010t10c49', 'no_lang_code', 1, 'https://ror.org/010t10c49 Alta Precision (Canada)'), (30857, 'https://ror.org/010t23411', 'no_lang_code', 1, 'https://ror.org/010t23411 MTS3 (United States)'), (30858, 'https://ror.org/010wj6161', 'en', 1, 'https://ror.org/010wj6161 Saint Anthony College of Nursing'), (30859, 'https://ror.org/010xz5h94', 'no_lang_code', 1, 'https://ror.org/010xz5h94 Mivac Development (Sweden)'), (30860, 'https://ror.org/010z1he39', 'no_lang_code', 1, 'https://ror.org/010z1he39 Hulteberg (Sweden)'), (30861, 'https://ror.org/010zr5r54', 'en', 1, 'https://ror.org/010zr5r54 Calgary Construction Association'), (30862, 'https://ror.org/010zsv180', 'en', 1, 'https://ror.org/010zsv180 Network for Transport Measures'), (30863, 'https://ror.org/0111qwn65', 'sk', 1, 'https://ror.org/0111qwn65 European Legal Center Európske Právne Centrum Občianske Združenie'), (30864, 'https://ror.org/0113m2308', 'no_lang_code', 1, 'https://ror.org/0113m2308 General Dynamics (Canada)'), (30865, 'https://ror.org/0113ps589', 'es', 1, 'https://ror.org/0113ps589 Karumbé'), (30866, 'https://ror.org/0113rr846', 'no_lang_code', 1, 'https://ror.org/0113rr846 Analytical Engineering (United States)'), (30867, 'https://ror.org/011400c72', 'no_lang_code', 1, 'https://ror.org/011400c72 Purelink (Canada)'), (30868, 'https://ror.org/01140r423', 'en', 1, 'https://ror.org/01140r423 Israel Institute for Advanced Studies'), (30869, 'https://ror.org/01148ya73', 'no_lang_code', 1, 'https://ror.org/01148ya73 Material Innovations (United States)'), (30870, 'https://ror.org/0114dtv81', 'no_lang_code', 1, 'https://ror.org/0114dtv81 Advanced Projects Research Incorporated (United States)'), (30871, 'https://ror.org/0115hrs73', 'en', 1, 'https://ror.org/0115hrs73 Gulf of Mexico Research Initiative'), (30872, 'https://ror.org/0119mwr04', 'en', 1, 'https://ror.org/0119mwr04 Hungarian Open air Museum'), (30873, 'https://ror.org/011a33g95', 'en', 1, 'https://ror.org/011a33g95 Baptist College of Florida'), (30874, 'https://ror.org/011av7236', 'no_lang_code', 1, 'https://ror.org/011av7236 Advanced BioRefinery (Canada)'), (30875, 'https://ror.org/011b9vp56', 'en', 1, 'https://ror.org/011b9vp56 Ruian People''s Hospital 瑞安市人民医院'), (30876, 'https://ror.org/011cttk80', 'no_lang_code', 1, 'https://ror.org/011cttk80 Manning Applied Technology (United States)'), (30877, 'https://ror.org/011fjkk76', 'en', 1, 'https://ror.org/011fjkk76 Indian Association for Cancer Research'), (30878, 'https://ror.org/011gv1m09', 'no_lang_code', 1, 'https://ror.org/011gv1m09 PhaseSpace (United States)'), (30879, 'https://ror.org/011hf9620', 'no_lang_code', 1, 'https://ror.org/011hf9620 Nordic Paper (Sweden)'), (30880, 'https://ror.org/011j46d86', 'no_lang_code', 1, 'https://ror.org/011j46d86 FriGeo (Sweden)'), (30881, 'https://ror.org/011pv9p44', 'en', 1, 'https://ror.org/011pv9p44 Kootenay Association for Science & Technology'), (30882, 'https://ror.org/011qdcn44', 'no_lang_code', 1, 'https://ror.org/011qdcn44 Infinia Technology Corporation (United States)'), (30883, 'https://ror.org/011rzkg17', 'en', 1, 'https://ror.org/011rzkg17 Endocrine Society of Australia'), (30884, 'https://ror.org/011x6n313', 'en', 1, 'https://ror.org/011x6n313 Leona M. and Harry B. Helmsley Charitable Trust'), (30885, 'https://ror.org/011y67d23', 'no_lang_code', 1, 'https://ror.org/011y67d23 Novo Nordisk (United States)'), (30886, 'https://ror.org/011ye7p58', 'en', 1, 'https://ror.org/011ye7p58 NHS Education for Scotland'), (30887, 'https://ror.org/0120ky124', 'en', 1, 'https://ror.org/0120ky124 National Breast Cancer Foundation'), (30888, 'https://ror.org/0121dpf30', 'en', 1, 'https://ror.org/0121dpf30 Health Resources and Services Administration'), (30889, 'https://ror.org/012494h40', 'no_lang_code', 1, 'https://ror.org/012494h40 Mercene Labs (Sweden)'), (30890, 'https://ror.org/0125jx070', 'en', 1, 'https://ror.org/0125jx070 Henry Luce Foundation'), (30891, 'https://ror.org/01261x550', 'no_lang_code', 1, 'https://ror.org/01261x550 Planar Energy (United States)'), (30892, 'https://ror.org/01274hc70', 'no_lang_code', 1, 'https://ror.org/01274hc70 Colorado Engineering (United States)'), (30893, 'https://ror.org/0128dmh12', 'en', 1, 'https://ror.org/0128dmh12 Hertfordshire Partnership University NHS Foundation Trust'), (30894, 'https://ror.org/0128rca86', 'no_lang_code', 1, 'https://ror.org/0128rca86 Applied NanoFemto Technologies (United States)'), (30895, 'https://ror.org/0129yjg29', 'no_lang_code', 1, 'https://ror.org/0129yjg29 Altamira Technologies'), (30896, 'https://ror.org/012ap0z55', 'no_lang_code', 1, 'https://ror.org/012ap0z55 Equinox (United States)'), (30897, 'https://ror.org/012bjmg46', 'no_lang_code', 1, 'https://ror.org/012bjmg46 Kinova (Canada)'), (30898, 'https://ror.org/012c68819', 'no_lang_code', 1, 'https://ror.org/012c68819 Bedford Signals (United States)'), (30899, 'https://ror.org/012cgww08', 'fr', 1, 'https://ror.org/012cgww08 Univalor'), (30900, 'https://ror.org/012d8w472', 'en', 1, 'https://ror.org/012d8w472 Australia and New Zealand Banking Group'), (30901, 'https://ror.org/012daz151', 'en', 1, 'https://ror.org/012daz151 Government of The Gambia'), (30902, 'https://ror.org/012dbxn21', 'no_lang_code', 1, 'https://ror.org/012dbxn21 Marucco Stoddard Ferenbach and Walsh (United States)'), (30903, 'https://ror.org/012dygg49', 'no_lang_code', 1, 'https://ror.org/012dygg49 FishEye Software (United States)'), (30904, 'https://ror.org/012e65633', 'no_lang_code', 1, 'https://ror.org/012e65633 Welkin Sciences (United States)'), (30905, 'https://ror.org/012e7ew08', 'en', 1, 'https://ror.org/012e7ew08 Centre de la Sécurité des Télécommunications Communications Security Establishment'), (30906, 'https://ror.org/012f2cn18', 'en', 1, 'https://ror.org/012f2cn18 Second Affiliated Hospital of Dalian Medical University'), (30907, 'https://ror.org/012fc2585', 'no_lang_code', 1, 'https://ror.org/012fc2585 Development Services Security Innovations (Slovakia)'), (30908, 'https://ror.org/012gvd160', 'no_lang_code', 1, 'https://ror.org/012gvd160 Good Nutrition Ideas (United States)'), (30909, 'https://ror.org/012j0vk40', 'no_lang_code', 1, 'https://ror.org/012j0vk40 POET Technologies (United States)'), (30910, 'https://ror.org/012kf4317', 'en', 1, 'https://ror.org/012kf4317 Alexander von Humboldt Foundation Alexander von Humboldt-Stiftung'), (30911, 'https://ror.org/012m8gv78', 'en', 1, 'https://ror.org/012m8gv78 Luxembourg Institute of Health'), (30912, 'https://ror.org/012mzw131', 'en', 1, 'https://ror.org/012mzw131 Leverhulme Trust'), (30913, 'https://ror.org/012njsm94', 'no_lang_code', 1, 'https://ror.org/012njsm94 PositiveID (United States)'), (30914, 'https://ror.org/012pww143', 'no_lang_code', 1, 'https://ror.org/012pww143 Logos Technologies (United States)'), (30915, 'https://ror.org/012s3r374', 'en', 1, 'https://ror.org/012s3r374 Ministry of Science, Technology and Innovation'), (30916, 'https://ror.org/012saek46', 'en', 1, 'https://ror.org/012saek46 Metropolitan College of New York'), (30917, 'https://ror.org/012w91b90', 'en', 1, 'https://ror.org/012w91b90 Foundation for the Advancement of Mesoamerican Studies'), (30918, 'https://ror.org/012x04f41', 'no_lang_code', 1, 'https://ror.org/012x04f41 DELL (Ireland)'), (30919, 'https://ror.org/012y9zp98', 'en', 1, 'https://ror.org/012y9zp98 Commission for Technology and Innovation Kommission für Technologie und Innovation'), (30920, 'https://ror.org/012yx8878', 'no_lang_code', 1, 'https://ror.org/012yx8878 Pioneer Astronautics (United States)'), (30921, 'https://ror.org/012zqg360', 'no_lang_code', 1, 'https://ror.org/012zqg360 Wedeven Associates (United States)'), (30922, 'https://ror.org/0131mn086', 'en', 1, 'https://ror.org/0131mn086 Manitoba Arts Council'), (30923, 'https://ror.org/0131rtf77', 'no_lang_code', 1, 'https://ror.org/0131rtf77 II-VI (United States)'), (30924, 'https://ror.org/0132wmv23', 'en', 1, 'https://ror.org/0132wmv23 Changsha Central Hospital'), (30925, 'https://ror.org/0133h2564', 'en', 1, 'https://ror.org/0133h2564 Dead Sea and Arava Science Center מו"פ מדבר וים המלח'), (30926, 'https://ror.org/013456141', 'no_lang_code', 1, 'https://ror.org/013456141 Spang (United States)'), (30927, 'https://ror.org/01354x477', 'no_lang_code', 1, 'https://ror.org/01354x477 Fantastic Data (United States)'), (30928, 'https://ror.org/01356ja15', 'no_lang_code', 1, 'https://ror.org/01356ja15 Rock West Solutions (United States)'), (30929, 'https://ror.org/0135d5q90', 'no_lang_code', 1, 'https://ror.org/0135d5q90 Valueguard (Sweden)'), (30930, 'https://ror.org/0138q7t80', 'en', 1, 'https://ror.org/0138q7t80 Malaysia Genome Institute'), (30931, 'https://ror.org/013a8zf56', 'no_lang_code', 1, 'https://ror.org/013a8zf56 SynTech Bioenergy (United States)'), (30932, 'https://ror.org/013g16z83', 'no_lang_code', 1, 'https://ror.org/013g16z83 Accenture (United States)'), (30933, 'https://ror.org/013g40c36', 'no_lang_code', 1, 'https://ror.org/013g40c36 Sysav South Scania Waste (Sweden)'), (30934, 'https://ror.org/013gj1r61', 'en', 1, 'https://ror.org/013gj1r61 Gulf Organisation for Research & Development'), (30935, 'https://ror.org/013grne12', 'en', 1, 'https://ror.org/013grne12 Intensive Care Society'), (30936, 'https://ror.org/013h40e84', 'no_lang_code', 1, 'https://ror.org/013h40e84 Myers Power Products (United States)'), (30937, 'https://ror.org/013mr5k03', 'en', 1, 'https://ror.org/013mr5k03 Clinton Health Access Initiative'), (30938, 'https://ror.org/013qcs149', 'no_lang_code', 1, 'https://ror.org/013qcs149 Snook (United Kingdom)'), (30939, 'https://ror.org/013qwzt07', 'no_lang_code', 1, 'https://ror.org/013qwzt07 Silicon Technologies (United States)'), (30940, 'https://ror.org/013r6rv26', 'en', 1, 'https://ror.org/013r6rv26 Foundation for Market Economy'), (30941, 'https://ror.org/013td7j77', 'no_lang_code', 1, 'https://ror.org/013td7j77 Pragati Synergetic Research (United States)'), (30942, 'https://ror.org/013x6aj18', 'no_lang_code', 1, 'https://ror.org/013x6aj18 Alpine Helicopters (Canada)'), (30943, 'https://ror.org/013x6g466', 'en', 1, 'https://ror.org/013x6g466 Canadian Turfgrass Research Foundation'), (30944, 'https://ror.org/013ybys37', 'en', 1, 'https://ror.org/013ybys37 Museum für angewandte Kunst Museum of Applied Arts'), (30945, 'https://ror.org/0141dj035', 'en', 1, 'https://ror.org/0141dj035 Satou Hospital'), (30946, 'https://ror.org/0141yg674', 'en', 1, 'https://ror.org/0141yg674 Gavi'), (30947, 'https://ror.org/0142xw417', 'no_lang_code', 1, 'https://ror.org/0142xw417 CanBiocin (Canada)'), (30948, 'https://ror.org/0143g4710', 'en', 1, 'https://ror.org/0143g4710 Lexington School for the Deaf'), (30949, 'https://ror.org/0143z3t44', 'en', 1, 'https://ror.org/0143z3t44 Canterbury Shaker Village'), (30950, 'https://ror.org/01448m136', 'en', 1, 'https://ror.org/01448m136 Bombay Veterinary College'), (30951, 'https://ror.org/0144g8j35', 'no_lang_code', 1, 'https://ror.org/0144g8j35 Applied Thermal Sciences (United States)'), (30952, 'https://ror.org/0144hyz50', 'no_lang_code', 1, 'https://ror.org/0144hyz50 Island Timberlands (Canada)'), (30953, 'https://ror.org/01485rp97', 'no_lang_code', 1, 'https://ror.org/01485rp97 Shanghai Hi-Tech joint biotechnology R & D (China)'), (30954, 'https://ror.org/014hhab16', 'en', 1, 'https://ror.org/014hhab16 Chadacre Agricultural Trust'), (30955, 'https://ror.org/014k07p29', 'en', 1, 'https://ror.org/014k07p29 Wenzao Ursuline University of Languages 文藻外語大學'), (30956, 'https://ror.org/014kebm02', 'no_lang_code', 1, 'https://ror.org/014kebm02 Exfluor Research (United States)'), (30957, 'https://ror.org/014kx8q82', 'en', 1, 'https://ror.org/014kx8q82 Blue Cross and Blue Shield of North Carolina Foundation'), (30958, 'https://ror.org/014m7xt26', 'no_lang_code', 1, 'https://ror.org/014m7xt26 Sukra Helitek (United States)'), (30959, 'https://ror.org/014ngq634', 'en', 1, 'https://ror.org/014ngq634 Australian Federation of Graduate Women New South Wales'), (30960, 'https://ror.org/014nyvw32', 'pt', 1, 'https://ror.org/014nyvw32 Centro de Educação Profissional em Tecnologia da Informação de Petrópolis'), (30961, 'https://ror.org/014pyq554', 'en', 1, 'https://ror.org/014pyq554 Australian Historical Association'), (30962, 'https://ror.org/014rsed66', 'en', 1, 'https://ror.org/014rsed66 Belgian American Educational Foundation'), (30963, 'https://ror.org/014vgfm17', 'no_lang_code', 1, 'https://ror.org/014vgfm17 Unomaly (Sweden)'), (30964, 'https://ror.org/014xar778', 'no_lang_code', 1, 'https://ror.org/014xar778 PolyPlus Battery Company (United States)'), (30965, 'https://ror.org/014xzez86', 'no_lang_code', 1, 'https://ror.org/014xzez86 Immunocore (United Kingdom)'), (30966, 'https://ror.org/014yc4v19', 'no_lang_code', 1, 'https://ror.org/014yc4v19 Inera (Sweden)'), (30967, 'https://ror.org/014yfah54', 'no_lang_code', 1, 'https://ror.org/014yfah54 Aurel Systems (Canada)'), (30968, 'https://ror.org/014ys2k69', 'en', 1, 'https://ror.org/014ys2k69 American Society for Clinical Laboratory Science'), (30969, 'https://ror.org/014zq2g68', 'no_lang_code', 1, 'https://ror.org/014zq2g68 Cestné stavby Žilina (Slovakia)'), (30970, 'https://ror.org/014zxe029', 'es', 1, 'https://ror.org/014zxe029 Center for Research and Teaching in Economics Centro de Investigación y Docencia Económicas'), (30971, 'https://ror.org/014zxhb96', 'en', 1, 'https://ror.org/014zxhb96 Accordia Global Health Foundation'), (30972, 'https://ror.org/0151men77', 'no_lang_code', 1, 'https://ror.org/0151men77 American Energy Technologies Co (United States)'), (30973, 'https://ror.org/0152xm391', 'en', 1, 'https://ror.org/0152xm391 Minerva Foundation'), (30974, 'https://ror.org/0153e3n79', 'no_lang_code', 1, 'https://ror.org/0153e3n79 Varian Medical Systems (Canada)'), (30975, 'https://ror.org/0153e7534', 'no_lang_code', 1, 'https://ror.org/0153e7534 Interdisciplinary Consulting Corporation (United States)'), (30976, 'https://ror.org/0153ngy95', 'en', 1, 'https://ror.org/0153ngy95 Southern Research Institute'), (30977, 'https://ror.org/01545pm61', 'no_lang_code', 1, 'https://ror.org/01545pm61 Analog Devices (United States)'), (30978, 'https://ror.org/0154hk987', 'no_lang_code', 1, 'https://ror.org/0154hk987 Entegris (United States)'), (30979, 'https://ror.org/0156qw326', 'no_lang_code', 1, 'https://ror.org/0156qw326 Vétoquinol (Canada)'), (30980, 'https://ror.org/0156t7498', 'en', 1, 'https://ror.org/0156t7498 Wildlife Habitat Canada (Canada)'), (30981, 'https://ror.org/0158ck073', 'en', 1, 'https://ror.org/0158ck073 King''s Fund'), (30982, 'https://ror.org/0158pg778', 'no_lang_code', 1, 'https://ror.org/0158pg778 SPINEA (Slovakia)'), (30983, 'https://ror.org/015a8e339', 'no_lang_code', 1, 'https://ror.org/015a8e339 GoldenSUN (Slovakia)'), (30984, 'https://ror.org/015a91g19', 'no_lang_code', 1, 'https://ror.org/015a91g19 Syntonics (United States)'), (30985, 'https://ror.org/015d68237', 'no_lang_code', 1, 'https://ror.org/015d68237 Amtec (United States)'), (30986, 'https://ror.org/015dbac72', 'no_lang_code', 1, 'https://ror.org/015dbac72 Hot Disk (Sweden)'), (30987, 'https://ror.org/015dgkc47', 'en', 1, 'https://ror.org/015dgkc47 Mathleaks'), (30988, 'https://ror.org/015frpz66', 'no_lang_code', 1, 'https://ror.org/015frpz66 Diamond Visionics (United States)'), (30989, 'https://ror.org/015h23t48', 'no_lang_code', 1, 'https://ror.org/015h23t48 Trident Systems (United States)'), (30990, 'https://ror.org/015j3sb07', 'en', 1, 'https://ror.org/015j3sb07 Sustainable Energy Authority of Ireland'), (30991, 'https://ror.org/015jn0h55', 'en', 1, 'https://ror.org/015jn0h55 Public and Science'), (30992, 'https://ror.org/015m1y186', 'no_lang_code', 1, 'https://ror.org/015m1y186 Bonnier (Sweden)'), (30993, 'https://ror.org/015p9va32', 'en', 1, 'https://ror.org/015p9va32 Singapore Institute for Clinical Sciences'), (30994, 'https://ror.org/015qzwq73', 'en', 1, 'https://ror.org/015qzwq73 Henan Psychiatric Hospital'), (30995, 'https://ror.org/015r6y659', 'no_lang_code', 1, 'https://ror.org/015r6y659 CTS Corporation (United States)'), (30996, 'https://ror.org/015rq8k57', 'no_lang_code', 1, 'https://ror.org/015rq8k57 Doosan Heavy Industries & Construction (South Korea)'), (30997, 'https://ror.org/015t55b95', 'en', 1, 'https://ror.org/015t55b95 Small Business Administration'), (30998, 'https://ror.org/015vnk029', 'no_lang_code', 1, 'https://ror.org/015vnk029 Hillrom (United States)'), (30999, 'https://ror.org/015vz5m81', 'no_lang_code', 1, 'https://ror.org/015vz5m81 Konstrukta - Industry (Slovakia)'), (31000, 'https://ror.org/015wjhp16', 'en', 1, 'https://ror.org/015wjhp16 New York State Department of Labor'), (31001, 'https://ror.org/015wjxy04', 'no_lang_code', 1, 'https://ror.org/015wjxy04 Teknikföretagen (Sweden)'), (31002, 'https://ror.org/015wxat58', 'no_lang_code', 1, 'https://ror.org/015wxat58 Quantum Intelligence (United States)'), (31003, 'https://ror.org/015x8jm48', 'en', 1, 'https://ror.org/015x8jm48 Ministry of Housing and Urban-Rural Development 中华人民共和国住房和城乡建设部'), (31004, 'https://ror.org/015xhag49', 'no_lang_code', 1, 'https://ror.org/015xhag49 Archol (Netherlands)'), (31005, 'https://ror.org/015yp6v32', 'en', 1, 'https://ror.org/015yp6v32 Maritime Fishermen''s Union'), (31006, 'https://ror.org/015z1mm31', 'no_lang_code', 1, 'https://ror.org/015z1mm31 Kuraray (Canada)'), (31007, 'https://ror.org/015z2kc86', 'no_lang_code', 1, 'https://ror.org/015z2kc86 Acconeer (Sweden)'), (31008, 'https://ror.org/015zgtx05', 'no_lang_code', 1, 'https://ror.org/015zgtx05 Autonomous Solutions (United States)'), (31009, 'https://ror.org/0160n9y05', 'no_lang_code', 1, 'https://ror.org/0160n9y05 Blatek (United States)'), (31010, 'https://ror.org/01642ad53', 'no_lang_code', 1, 'https://ror.org/01642ad53 Electronic Warfare Associates (United States)'), (31011, 'https://ror.org/0165bgf07', 'no_lang_code', 1, 'https://ror.org/0165bgf07 Provexa (Sweden)'), (31012, 'https://ror.org/0165d9303', 'en', 1, 'https://ror.org/0165d9303 Harish-Chandra Research Institute हरीशचंद्र अनुसंधान संस्थान'), (31013, 'https://ror.org/01687ga56', 'en', 1, 'https://ror.org/01687ga56 Museum of Work'), (31014, 'https://ror.org/0168eqd84', 'no_lang_code', 1, 'https://ror.org/0168eqd84 North American Construction Group (Canada)'), (31015, 'https://ror.org/0169by476', 'en', 1, 'https://ror.org/0169by476 St. Louis Christian College'), (31016, 'https://ror.org/016a9kk10', 'en', 1, 'https://ror.org/016a9kk10 Institute of Economics Zagreb'), (31017, 'https://ror.org/016bks835', 'en', 1, 'https://ror.org/016bks835 Spartanburg Methodist College'), (31018, 'https://ror.org/016cc6840', 'no_lang_code', 1, 'https://ror.org/016cc6840 Mobile Heights (Sweden)'), (31019, 'https://ror.org/016e1rp63', 'no_lang_code', 1, 'https://ror.org/016e1rp63 Tango Systems (United States)'), (31020, 'https://ror.org/016e27a17', 'no_lang_code', 1, 'https://ror.org/016e27a17 Gloyer-Taylor Laboratories (United States)'), (31021, 'https://ror.org/016en1t86', 'en', 1, 'https://ror.org/016en1t86 Foundational Questions Institute'), (31022, 'https://ror.org/016fy5v41', 'fr', 1, 'https://ror.org/016fy5v41 Association Québécoise des Fournisseurs et Utilisateurs de Bitume, Bitume Québec'), (31023, 'https://ror.org/016hg3c35', 'no_lang_code', 1, 'https://ror.org/016hg3c35 Cyber Defense Agency (United States)'), (31024, 'https://ror.org/016k8tv59', 'no_lang_code', 1, 'https://ror.org/016k8tv59 Solvay (United States)'), (31025, 'https://ror.org/016m2r485', 'no_lang_code', 1, 'https://ror.org/016m2r485 Cangzhou Central Hospital'), (31026, 'https://ror.org/016mfjj65', 'es', 1, 'https://ror.org/016mfjj65 Red Temática de Investigación Cooperativa en Cáncer'), (31027, 'https://ror.org/016mr6c68', 'no_lang_code', 1, 'https://ror.org/016mr6c68 Akka Technologies (Italy)'), (31028, 'https://ror.org/016n3e076', 'no_lang_code', 1, 'https://ror.org/016n3e076 Wiotech (Sweden)'), (31029, 'https://ror.org/016p59286', 'en', 1, 'https://ror.org/016p59286 Jinan City Science and Technology Bureau'), (31030, 'https://ror.org/016qa9g64', 'en', 1, 'https://ror.org/016qa9g64 Straight Ahead Pictures'), (31031, 'https://ror.org/016qjmh37', 'no_lang_code', 1, 'https://ror.org/016qjmh37 LINC Design (United States)'), (31032, 'https://ror.org/016s74507', 'en', 1, 'https://ror.org/016s74507 Wuhan Science and Technology Bureau'), (31033, 'https://ror.org/016s82z56', 'no_lang_code', 1, 'https://ror.org/016s82z56 Photonic Systems (United States)'), (31034, 'https://ror.org/016s9js25', 'no_lang_code', 1, 'https://ror.org/016s9js25 Tecnologia e Ricerca Italiana (Italy)'), (31035, 'https://ror.org/016svkp29', 'no_lang_code', 1, 'https://ror.org/016svkp29 Norsk Hydro (Slovakia)'), (31036, 'https://ror.org/016xdy456', 'en', 1, 'https://ror.org/016xdy456 Croatian Institute of History'), (31037, 'https://ror.org/016xr3h51', 'no_lang_code', 1, 'https://ror.org/016xr3h51 Technosoft (United States)'), (31038, 'https://ror.org/016xz2m71', 'en', 1, 'https://ror.org/016xz2m71 Oriental Institute of Technology'), (31039, 'https://ror.org/016y8yf14', 'no_lang_code', 1, 'https://ror.org/016y8yf14 OLA Display (Canada)'), (31040, 'https://ror.org/016ykaq31', 'no_lang_code', 1, 'https://ror.org/016ykaq31 Nissan (United States)'), (31041, 'https://ror.org/016ywfq33', 'no_lang_code', 1, 'https://ror.org/016ywfq33 Directed Energy Solutions (United States)'), (31042, 'https://ror.org/016znkc94', 'no_lang_code', 1, 'https://ror.org/016znkc94 Rainford Precision (United Kingdom)'), (31043, 'https://ror.org/0171fce94', 'no_lang_code', 1, 'https://ror.org/0171fce94 Neya Systems (United States)'), (31044, 'https://ror.org/01722g748', 'en', 1, 'https://ror.org/01722g748 Aircast Foundation'), (31045, 'https://ror.org/0172fj584', 'es', 1, 'https://ror.org/0172fj584 Canary Islands Government Gobierno de Canarias'), (31046, 'https://ror.org/0173k6h24', 'en', 1, 'https://ror.org/0173k6h24 Bugher Foundation'), (31047, 'https://ror.org/0173t5b71', 'no_lang_code', 1, 'https://ror.org/0173t5b71 Hyteon (Canada)'), (31048, 'https://ror.org/0174sz637', 'nl', 1, 'https://ror.org/0174sz637 NuGO'), (31049, 'https://ror.org/0178rhq59', 'no_lang_code', 1, 'https://ror.org/0178rhq59 Varentec (United States)'), (31050, 'https://ror.org/017a18y80', 'es', 1, 'https://ror.org/017a18y80 Hospital de Poniente'), (31051, 'https://ror.org/017aem598', 'en', 1, 'https://ror.org/017aem598 Centre Franco-Indien pour la Promotion de la Recherche Avancée Indo-French Centre for the Promotion of Advanced Research'), (31052, 'https://ror.org/017b5z472', 'en', 1, 'https://ror.org/017b5z472 Halifax Regional Water Commission'), (31053, 'https://ror.org/017cs1c33', 'en', 1, 'https://ror.org/017cs1c33 Chiang Ching-kuo Foundation'), (31054, 'https://ror.org/017d7xm97', 'en', 1, 'https://ror.org/017d7xm97 Fanjingshan National Nature Reserve'), (31055, 'https://ror.org/017dk1028', 'no_lang_code', 1, 'https://ror.org/017dk1028 Zolo Technologies (United States)'), (31056, 'https://ror.org/017ef8252', 'en', 1, 'https://ror.org/017ef8252 Institute for System Programming Институт системного программирования'), (31057, 'https://ror.org/017faj253', 'en', 1, 'https://ror.org/017faj253 Instituts für Altersforschung Ludwig Boltzmann Institute for Age Research'), (31058, 'https://ror.org/017frem55', 'no_lang_code', 1, 'https://ror.org/017frem55 General Nano (United States)'), (31059, 'https://ror.org/017gd8s27', 'de', 1, 'https://ror.org/017gd8s27 Initiative Minderheiten Tirol'), (31060, 'https://ror.org/017k1wy04', 'no_lang_code', 1, 'https://ror.org/017k1wy04 Lasen (United States)'), (31061, 'https://ror.org/017ky5708', 'en', 1, 'https://ror.org/017ky5708 Centre for Healthy Start Initiative'), (31062, 'https://ror.org/017me6m94', 'no_lang_code', 1, 'https://ror.org/017me6m94 Microwave Monolithics (United States)'), (31063, 'https://ror.org/017n5tt56', 'no_lang_code', 1, 'https://ror.org/017n5tt56 Tilde (Estonia)'), (31064, 'https://ror.org/017pbda46', 'en', 1, 'https://ror.org/017pbda46 Slovak Youth Institute'), (31065, 'https://ror.org/017pe7554', 'no_lang_code', 1, 'https://ror.org/017pe7554 Cubic (United States)'), (31066, 'https://ror.org/017ry0003', 'no_lang_code', 1, 'https://ror.org/017ry0003 Hermes Medical Solutions (Sweden)'), (31067, 'https://ror.org/017t6fa07', 'en', 1, 'https://ror.org/017t6fa07 Xinyang College of Agriculture and Forestry 信阳农林学院'), (31068, 'https://ror.org/017w8ej57', 'no_lang_code', 1, 'https://ror.org/017w8ej57 Genetec (United States)'), (31069, 'https://ror.org/017wp8650', 'no_lang_code', 1, 'https://ror.org/017wp8650 BioTillion (United States)'), (31070, 'https://ror.org/017xy1565', 'no_lang_code', 1, 'https://ror.org/017xy1565 Optistring (Sweden)'), (31071, 'https://ror.org/017yczc37', 'en', 1, 'https://ror.org/017yczc37 Society for Family Health Nigeria'), (31072, 'https://ror.org/01822d048', 'en', 1, 'https://ror.org/01822d048 Norwegian Nurses Organisation'), (31073, 'https://ror.org/0182em051', 'en', 1, 'https://ror.org/0182em051 Menlo College'), (31074, 'https://ror.org/0182wtt39', 'no_lang_code', 1, 'https://ror.org/0182wtt39 Fracture Analysis Consultants (United States)'), (31075, 'https://ror.org/01845n260', 'no_lang_code', 1, 'https://ror.org/01845n260 BIOX (Canada)'), (31076, 'https://ror.org/0186h8060', 'en', 1, 'https://ror.org/0186h8060 DWI – Leibniz Institute for Interactive Materials DWI – Leibniz-Institut für Interaktive Materialien'), (31077, 'https://ror.org/018723a84', 'no_lang_code', 1, 'https://ror.org/018723a84 Qpoint Composite (Germany)'), (31078, 'https://ror.org/01884b046', 'it', 1, 'https://ror.org/01884b046 Azienda Ospedaliera di Cosenza'), (31079, 'https://ror.org/018c3mn79', 'no_lang_code', 1, 'https://ror.org/018c3mn79 L-3 Aeromet (United States)'), (31080, 'https://ror.org/018hw2e85', 'no_lang_code', 1, 'https://ror.org/018hw2e85 Fingerprint Cards (Sweden)'), (31081, 'https://ror.org/018k5nw16', 'no_lang_code', 1, 'https://ror.org/018k5nw16 IAP Research (United States)'), (31082, 'https://ror.org/018kdpd27', 'en', 1, 'https://ror.org/018kdpd27 Leakey Foundation'), (31083, 'https://ror.org/018pb7a22', 'no_lang_code', 1, 'https://ror.org/018pb7a22 Excillum (Sweden)'), (31084, 'https://ror.org/018qgs575', 'no_lang_code', 1, 'https://ror.org/018qgs575 Wireless Edge (Canada)'), (31085, 'https://ror.org/018tnrf75', 'no_lang_code', 1, 'https://ror.org/018tnrf75 Inorganic Specialists (United States)'), (31086, 'https://ror.org/018v9ga43', 'no_lang_code', 1, 'https://ror.org/018v9ga43 Computer Multimedia Productions Corporation (United States)'), (31087, 'https://ror.org/018vkvj59', 'fr', 1, 'https://ror.org/018vkvj59 Conseil Régional de Champagne-Ardenne'), (31088, 'https://ror.org/018w7fz66', 'en', 1, 'https://ror.org/018w7fz66 Royal Free Charity'), (31089, 'https://ror.org/018wfhg78', 'en', 1, 'https://ror.org/018wfhg78 National Research Council of Thailand'), (31090, 'https://ror.org/018xens77', 'en', 1, 'https://ror.org/018xens77 Ithaka Harbors'), (31091, 'https://ror.org/018xr7s92', 'no_lang_code', 1, 'https://ror.org/018xr7s92 EllisDon (Canada)'), (31092, 'https://ror.org/0192jzd36', 'no_lang_code', 1, 'https://ror.org/0192jzd36 Cartiere Modesto Cardella (Italy)'), (31093, 'https://ror.org/0193tbt93', 'no_lang_code', 1, 'https://ror.org/0193tbt93 Nordiq (Sweden)'), (31094, 'https://ror.org/01949vb52', 'no_lang_code', 1, 'https://ror.org/01949vb52 OptiGrate (United States)'), (31095, 'https://ror.org/01984jp66', 'en', 1, 'https://ror.org/01984jp66 British Interplanetary Society'), (31096, 'https://ror.org/0198c2b48', 'no_lang_code', 1, 'https://ror.org/0198c2b48 Japan Medi- Mental Institute'), (31097, 'https://ror.org/0199b8691', 'no_lang_code', 1, 'https://ror.org/0199b8691 Nestlé (Canada)'), (31098, 'https://ror.org/0199mb206', 'no_lang_code', 1, 'https://ror.org/0199mb206 Sensera (United States)'), (31099, 'https://ror.org/019a0gk53', 'en', 1, 'https://ror.org/019a0gk53 Kidney Foundation of Canada La Fondation Canadienne du Rein'), (31100, 'https://ror.org/019a9pq44', 'no_lang_code', 1, 'https://ror.org/019a9pq44 Schemagi (Sweden)'), (31101, 'https://ror.org/019ae2j05', 'en', 1, 'https://ror.org/019ae2j05 Save the Elephants'), (31102, 'https://ror.org/019axjh19', 'fr', 1, 'https://ror.org/019axjh19 ECAM Institut Supérieur Industriel'), (31103, 'https://ror.org/019c00g57', 'en', 1, 'https://ror.org/019c00g57 Academy of Television Arts and Sciences'), (31104, 'https://ror.org/019ejtj82', 'en', 1, 'https://ror.org/019ejtj82 Budapest History Museum'), (31105, 'https://ror.org/019gpcj13', 'en', 1, 'https://ror.org/019gpcj13 Patent- och registreringsverket Ruotsin patentti- ja rekisterivirasto Swedish Patent and Registration Office'), (31106, 'https://ror.org/019mrv168', 'en', 1, 'https://ror.org/019mrv168 New England Law'), (31107, 'https://ror.org/019naky64', 'no_lang_code', 1, 'https://ror.org/019naky64 PricewaterhouseCoopers (Sweden)'), (31108, 'https://ror.org/019nmk183', 'no_lang_code', 1, 'https://ror.org/019nmk183 Promimic (Sweden)'), (31109, 'https://ror.org/019p8h045', 'en', 1, 'https://ror.org/019p8h045 Camille and Henry Dreyfus Foundation'), (31110, 'https://ror.org/019r2ty74', 'no_lang_code', 1, 'https://ror.org/019r2ty74 OpenEye (Sweden)'), (31111, 'https://ror.org/019s18q02', 'en', 1, 'https://ror.org/019s18q02 Inspire Foundation'), (31112, 'https://ror.org/019s3af92', 'no_lang_code', 1, 'https://ror.org/019s3af92 Qunav (United States)'), (31113, 'https://ror.org/019s9g820', 'no_lang_code', 1, 'https://ror.org/019s9g820 Mechanical Solutions (United States)'), (31114, 'https://ror.org/019xtsv53', 'en', 1, 'https://ror.org/019xtsv53 Assar Gabrielsson Foundation Stiftelsen Assar Gabrielssons Fond'), (31115, 'https://ror.org/019ys4329', 'en', 1, 'https://ror.org/019ys4329 Observatory and Planetarium of Maximilian Hell'), (31116, 'https://ror.org/01a0wa442', 'en', 1, 'https://ror.org/01a0wa442 Student Competitions'), (31117, 'https://ror.org/01a1mp446', 'en', 1, 'https://ror.org/01a1mp446 Stockholm Innovation & Growth'), (31118, 'https://ror.org/01a2d7067', 'es', 1, 'https://ror.org/01a2d7067 Instituto Nacional de Salud del Niño'), (31119, 'https://ror.org/01a2jte10', 'en', 1, 'https://ror.org/01a2jte10 Skövde Municipality'), (31120, 'https://ror.org/01a2pr469', 'en', 1, 'https://ror.org/01a2pr469 Naval Research Board नौसेना अनुसंधान बोर्ड'), (31121, 'https://ror.org/01a3m3f05', 'no_lang_code', 1, 'https://ror.org/01a3m3f05 Reservoir Labs (United States)'), (31122, 'https://ror.org/01a3xvy78', 'no_lang_code', 1, 'https://ror.org/01a3xvy78 Hi-Test Laboratories (United States)'), (31123, 'https://ror.org/01a3yyc70', 'en', 1, 'https://ror.org/01a3yyc70 Western Australian Museum'), (31124, 'https://ror.org/01a6nz466', 'no_lang_code', 1, 'https://ror.org/01a6nz466 Milliken & Company (United States)'), (31125, 'https://ror.org/01a8wwc80', 'no_lang_code', 1, 'https://ror.org/01a8wwc80 Rutter (Canada)'), (31126, 'https://ror.org/01a961x31', 'no_lang_code', 1, 'https://ror.org/01a961x31 Nano Terra (United States)'), (31127, 'https://ror.org/01aa99w95', 'no_lang_code', 1, 'https://ror.org/01aa99w95 Austro Control (Austria) Österreichische Gesellschaft für Zivilluftfahrt'), (31128, 'https://ror.org/01abtbz07', 'no_lang_code', 1, 'https://ror.org/01abtbz07 Sensible Solutions (Sweden)'), (31129, 'https://ror.org/01abzsb47', 'no_lang_code', 1, 'https://ror.org/01abzsb47 Prediction Systems (United States)'), (31130, 'https://ror.org/01acb5n90', 'no_lang_code', 1, 'https://ror.org/01acb5n90 Deep Web Technologies (United States)'), (31131, 'https://ror.org/01adk7m17', 'en', 1, 'https://ror.org/01adk7m17 Associated Medical Services'), (31132, 'https://ror.org/01aefzx37', 'en', 1, 'https://ror.org/01aefzx37 Sweden-Japan Foundation'), (31133, 'https://ror.org/01age2z78', 'no_lang_code', 1, 'https://ror.org/01age2z78 Oxford Instruments (United States)'), (31134, 'https://ror.org/01ajjyg96', 'en', 1, 'https://ror.org/01ajjyg96 Swedish Standards Institute'), (31135, 'https://ror.org/01aktk249', 'en', 1, 'https://ror.org/01aktk249 Seven'), (31136, 'https://ror.org/01an3s209', 'no_lang_code', 1, 'https://ror.org/01an3s209 Technical Resource Group (United States)'), (31137, 'https://ror.org/01ankh713', 'no_lang_code', 1, 'https://ror.org/01ankh713 First Welding Company (Slovakia)'), (31138, 'https://ror.org/01aq0x225', 'no_lang_code', 1, 'https://ror.org/01aq0x225 Luxel (United States)'), (31139, 'https://ror.org/01are4896', 'no_lang_code', 1, 'https://ror.org/01are4896 Van Leer Jerusalem Institute'), (31140, 'https://ror.org/01arsa478', 'en', 1, 'https://ror.org/01arsa478 Stevens–Henager College'), (31141, 'https://ror.org/01ary0143', 'no_lang_code', 1, 'https://ror.org/01ary0143 Kairos Future (Sweden)'), (31142, 'https://ror.org/01avpmh18', 'no_lang_code', 1, 'https://ror.org/01avpmh18 Cdup (Sweden)'), (31143, 'https://ror.org/01axmbr32', 'de', 1, 'https://ror.org/01axmbr32 Thüringer Aufbaubank'), (31144, 'https://ror.org/01axmz803', 'no_lang_code', 1, 'https://ror.org/01axmz803 Control Vision (United States)'), (31145, 'https://ror.org/01b1yxa46', 'no_lang_code', 1, 'https://ror.org/01b1yxa46 MMICMAN (United States)'), (31146, 'https://ror.org/01b242r72', 'no_lang_code', 1, 'https://ror.org/01b242r72 Sirona Health Solutions (Sweden)'), (31147, 'https://ror.org/01b3dk794', 'no_lang_code', 1, 'https://ror.org/01b3dk794 Autodesk (Canada)'), (31148, 'https://ror.org/01b448t83', 'no_lang_code', 1, 'https://ror.org/01b448t83 Brimrose (United States)'), (31149, 'https://ror.org/01b4acr91', 'fr', 1, 'https://ror.org/01b4acr91 Centre de Recherche en Sciences Animales de Deschambault'), (31150, 'https://ror.org/01b4ex890', 'no_lang_code', 1, 'https://ror.org/01b4ex890 Digital Scientific (United Kingdom)'), (31151, 'https://ror.org/01b556x61', 'no_lang_code', 1, 'https://ror.org/01b556x61 Apollo Microwaves (Canada)'), (31152, 'https://ror.org/01b72rt03', 'en', 1, 'https://ror.org/01b72rt03 Patrick Henry College'), (31153, 'https://ror.org/01b7fm202', 'en', 1, 'https://ror.org/01b7fm202 Bowel Disease Research Foundation'), (31154, 'https://ror.org/01bat1a85', 'no_lang_code', 1, 'https://ror.org/01bat1a85 Cytodiagnostics (Canada)'), (31155, 'https://ror.org/01bch2f85', 'no_lang_code', 1, 'https://ror.org/01bch2f85 Erigo Technologies (United States)'), (31156, 'https://ror.org/01bcxbz42', 'en', 1, 'https://ror.org/01bcxbz42 Shantou University Mental Health Center'), (31157, 'https://ror.org/01bdv4312', 'en', 1, 'https://ror.org/01bdv4312 Koninklijk Instituut voor Taal-, Land- en Volkenkunde Royal Netherlands Institute of Southeast Asian and Caribbean Studies'), (31158, 'https://ror.org/01bes9d74', 'no_lang_code', 1, 'https://ror.org/01bes9d74 CeraNova (United States)'), (31159, 'https://ror.org/01bfcjz55', 'en', 1, 'https://ror.org/01bfcjz55 West Yangon Technological University ရန်ကုန်အနောက်ပိုင်းနည်းပညာတက္ကသိုလ်'), (31160, 'https://ror.org/01bfczx74', 'en', 1, 'https://ror.org/01bfczx74 Washington Space Grant Consortium'), (31161, 'https://ror.org/01bgg3897', 'no_lang_code', 1, 'https://ror.org/01bgg3897 Anasphere (United States)'), (31162, 'https://ror.org/01bj7zb33', 'no_lang_code', 1, 'https://ror.org/01bj7zb33 Monogram Technologies (Slovakia)'), (31163, 'https://ror.org/01bk8ee93', 'en', 1, 'https://ror.org/01bk8ee93 Cancer Society of New Zealand'), (31164, 'https://ror.org/01bn00n07', 'no_lang_code', 1, 'https://ror.org/01bn00n07 Telescent (United States)'), (31165, 'https://ror.org/01br46v91', 'no_lang_code', 1, 'https://ror.org/01br46v91 Global Strategic Solutions (United States)'), (31166, 'https://ror.org/01brvan73', 'no_lang_code', 1, 'https://ror.org/01brvan73 Environetix Technologies (United States)'), (31167, 'https://ror.org/01bshdg19', 'no_lang_code', 1, 'https://ror.org/01bshdg19 Vinci (Slovakia)'), (31168, 'https://ror.org/01bstzn19', 'en', 1, 'https://ror.org/01bstzn19 European Cooperation in Science and Technology'), (31169, 'https://ror.org/01bt34y59', 'en', 1, 'https://ror.org/01bt34y59 College Art Association'), (31170, 'https://ror.org/01bzmx018', 'no_lang_code', 1, 'https://ror.org/01bzmx018 Morgan Solar (Canada)'), (31171, 'https://ror.org/01c1aet04', 'no_lang_code', 1, 'https://ror.org/01c1aet04 OSI Systems (United Kingdom)'), (31172, 'https://ror.org/01c2xde22', 'no_lang_code', 1, 'https://ror.org/01c2xde22 Ducommun (United States)'), (31173, 'https://ror.org/01c2zcv46', 'no_lang_code', 1, 'https://ror.org/01c2zcv46 OPX Biotechnologies (United States)'), (31174, 'https://ror.org/01c3dm486', 'no_lang_code', 1, 'https://ror.org/01c3dm486 MetLife (United States)'), (31175, 'https://ror.org/01c4g5a09', 'no_lang_code', 1, 'https://ror.org/01c4g5a09 HERION Systemtechnik (Germany)'), (31176, 'https://ror.org/01c6mdq20', 'no_lang_code', 1, 'https://ror.org/01c6mdq20 21CSi (United States)'), (31177, 'https://ror.org/01c7dcx25', 'no_lang_code', 1, 'https://ror.org/01c7dcx25 Motion Metrics International (Canada)'), (31178, 'https://ror.org/01c9a4v35', 'no_lang_code', 1, 'https://ror.org/01c9a4v35 Novatio Engineering (United States)'), (31179, 'https://ror.org/01c9rqr26', 'en', 1, 'https://ror.org/01c9rqr26 VA Tennessee Valley Healthcare System'), (31180, 'https://ror.org/01cbwn720', 'en', 1, 'https://ror.org/01cbwn720 Institute of Chemical and Engineering Sciences'), (31181, 'https://ror.org/01ceg2d52', 'en', 1, 'https://ror.org/01ceg2d52 Rhode Island Department of Human Services'), (31182, 'https://ror.org/01cewrs34', 'en', 1, 'https://ror.org/01cewrs34 Menzies Foundation'), (31183, 'https://ror.org/01cf25767', 'no_lang_code', 1, 'https://ror.org/01cf25767 Orexo (Sweden)'), (31184, 'https://ror.org/01cf7yd40', 'no_lang_code', 1, 'https://ror.org/01cf7yd40 Arzon Solar (United States)'), (31185, 'https://ror.org/01cgkw709', 'no_lang_code', 1, 'https://ror.org/01cgkw709 Delastek (Canada)'), (31186, 'https://ror.org/01ch4jq10', 'en', 1, 'https://ror.org/01ch4jq10 Chemical Institute of Canada Institut de Chimie du Canada'), (31187, 'https://ror.org/01chx4j35', 'no_lang_code', 1, 'https://ror.org/01chx4j35 DEKRA Industrial (Sweden)'), (31188, 'https://ror.org/01ckgz972', 'no_lang_code', 1, 'https://ror.org/01ckgz972 Epsilon Lambda Electronics (United States)'), (31189, 'https://ror.org/01cmstr73', 'no_lang_code', 1, 'https://ror.org/01cmstr73 Combain Mobile (Sweden)'), (31190, 'https://ror.org/01cn04b23', 'en', 1, 'https://ror.org/01cn04b23 Minnesota Pollution Control Agency'), (31191, 'https://ror.org/01cq4cc70', 'no_lang_code', 1, 'https://ror.org/01cq4cc70 Blue Sky Electronics (United States)'), (31192, 'https://ror.org/01cqwmh55', 'en', 1, 'https://ror.org/01cqwmh55 First People''s Hospital of Foshan'), (31193, 'https://ror.org/01crvvh84', 'no_lang_code', 1, 'https://ror.org/01crvvh84 MicroStep (Slovakia)'), (31194, 'https://ror.org/01cswdc74', 'no_lang_code', 1, 'https://ror.org/01cswdc74 AEgis Technologies (United States)'), (31195, 'https://ror.org/01cv9mb69', 'en', 1, 'https://ror.org/01cv9mb69 Ruxmaniben Deepchand Gardi Medical College'), (31196, 'https://ror.org/01cvsyf94', 'no_lang_code', 1, 'https://ror.org/01cvsyf94 Labex (Sweden)'), (31197, 'https://ror.org/01cvt5v65', 'no_lang_code', 1, 'https://ror.org/01cvt5v65 MBM Group (Slovakia)'), (31198, 'https://ror.org/01cwt3h50', 'no_lang_code', 1, 'https://ror.org/01cwt3h50 Gothia Innovation (Sweden)'), (31199, 'https://ror.org/01cx8sm26', 'pt', 1, 'https://ror.org/01cx8sm26 Universidade Sociedade Educacional de Santa Catarina'), (31200, 'https://ror.org/01cxj0y97', 'no_lang_code', 1, 'https://ror.org/01cxj0y97 Nanophase Technologies (United States)'), (31201, 'https://ror.org/01cxmjx85', 'no_lang_code', 1, 'https://ror.org/01cxmjx85 LoadPath (United States)'), (31202, 'https://ror.org/01d176154', 'en', 1, 'https://ror.org/01d176154 Jiangsu Institute of Parasitic Diseases 江苏省寄生虫病防治研究所'), (31203, 'https://ror.org/01d183086', 'en', 1, 'https://ror.org/01d183086 National Public Health and Medical Officer Service Állami Népegészségügyi és Tisztiorvosi Szolgálat'), (31204, 'https://ror.org/01d2mj830', 'no_lang_code', 1, 'https://ror.org/01d2mj830 Quantum3D (United States)'), (31205, 'https://ror.org/01d4rpj46', 'no_lang_code', 1, 'https://ror.org/01d4rpj46 MicroVision (United States)'), (31206, 'https://ror.org/01d4xtf25', 'no_lang_code', 1, 'https://ror.org/01d4xtf25 Agribrands Purina (Canada)'), (31207, 'https://ror.org/01d59wc32', 'no_lang_code', 1, 'https://ror.org/01d59wc32 Metna (United States)'), (31208, 'https://ror.org/01d5zhz86', 'en', 1, 'https://ror.org/01d5zhz86 Cordoba University'), (31209, 'https://ror.org/01d6wrk87', 'en', 1, 'https://ror.org/01d6wrk87 Education Department of Fujian Province'), (31210, 'https://ror.org/01d7ehm71', 'no_lang_code', 1, 'https://ror.org/01d7ehm71 Mobile Intelligence (United States)'), (31211, 'https://ror.org/01d7y2240', 'en', 1, 'https://ror.org/01d7y2240 Ministry of Home Affairs'), (31212, 'https://ror.org/01dbg2h54', 'no_lang_code', 1, 'https://ror.org/01dbg2h54 Immunsystem (Sweden)'), (31213, 'https://ror.org/01dbyqv08', 'en', 1, 'https://ror.org/01dbyqv08 Alabama Farmers Federation'), (31214, 'https://ror.org/01ddf6k31', 'no_lang_code', 1, 'https://ror.org/01ddf6k31 Omnisys Instruments (Sweden)'), (31215, 'https://ror.org/01dhnm219', 'no_lang_code', 1, 'https://ror.org/01dhnm219 Solvatten (Sweden)'), (31216, 'https://ror.org/01djnt473', 'en', 1, 'https://ror.org/01djnt473 First Affiliated Hospital of Jiamusi University'), (31217, 'https://ror.org/01dmrgp19', 'en', 1, 'https://ror.org/01dmrgp19 Departamento de DST, Aids e Hepatites Virais Departamento de Infecciones de Transmisión Sexual, Sida y Hepatitis Virales Department of STD, AIDS and Viral Hepatitis'), (31218, 'https://ror.org/01ds51411', 'en', 1, 'https://ror.org/01ds51411 Texas Sea Grant College Program'), (31219, 'https://ror.org/01dtadb22', 'en', 1, 'https://ror.org/01dtadb22 Christensen Fund'), (31220, 'https://ror.org/01dzyb381', 'en', 1, 'https://ror.org/01dzyb381 Sabah Wildlife Department'), (31221, 'https://ror.org/01e507517', 'no_lang_code', 1, 'https://ror.org/01e507517 CBot (Sweden)'), (31222, 'https://ror.org/01e5ksw89', 'en', 1, 'https://ror.org/01e5ksw89 Ontario Clean Water Agency'), (31223, 'https://ror.org/01e5nrv58', 'no_lang_code', 1, 'https://ror.org/01e5nrv58 Parans (Sweden)'), (31224, 'https://ror.org/01e7j1q59', 'no_lang_code', 1, 'https://ror.org/01e7j1q59 Advanced Practical Diagnostics (Belgium)'), (31225, 'https://ror.org/01e89hk47', 'no_lang_code', 1, 'https://ror.org/01e89hk47 Energy Focus (United States)'), (31226, 'https://ror.org/01e98vj82', 'no_lang_code', 1, 'https://ror.org/01e98vj82 Flexiwaggon (Sweden)'), (31227, 'https://ror.org/01eb22z31', 'en', 1, 'https://ror.org/01eb22z31 German-Russian Interdisciplinary Science Center'), (31228, 'https://ror.org/01eb9tc45', 'it', 1, 'https://ror.org/01eb9tc45 Ospedale Sant Antonio'), (31229, 'https://ror.org/01ebst690', 'no_lang_code', 1, 'https://ror.org/01ebst690 Axela (Canada)'); INSERT INTO `rors` VALUES (31230, 'https://ror.org/01eggyv13', 'no_lang_code', 1, 'https://ror.org/01eggyv13 Translume (United States)'), (31231, 'https://ror.org/01ehxp168', 'en', 1, 'https://ror.org/01ehxp168 Kentucky Assistive Technology Services Network'), (31232, 'https://ror.org/01ekca690', 'no_lang_code', 1, 'https://ror.org/01ekca690 Solvay (Canada)'), (31233, 'https://ror.org/01emb2995', 'en', 1, 'https://ror.org/01emb2995 Ogden Engineering & Associates'), (31234, 'https://ror.org/01ent8r08', 'no_lang_code', 1, 'https://ror.org/01ent8r08 Castolin Eutectic (United Kingdom)'), (31235, 'https://ror.org/01eqzew76', 'no_lang_code', 1, 'https://ror.org/01eqzew76 Antik Telecom (Slovakia)'), (31236, 'https://ror.org/01er75989', 'en', 1, 'https://ror.org/01er75989 Fraternal Order of Eagles'), (31237, 'https://ror.org/01erc2q10', 'en', 1, 'https://ror.org/01erc2q10 Suzhou Guangji Hospital'), (31238, 'https://ror.org/01es9dw61', 'en', 1, 'https://ror.org/01es9dw61 Ministry of Micro, Small and Medium Enterprises सूक्ष्म , लघु और मध्यम उद्यम मंत्रालय'), (31239, 'https://ror.org/01etdvs72', 'en', 1, 'https://ror.org/01etdvs72 Wellbeing of Women'), (31240, 'https://ror.org/01evs2j21', 'no_lang_code', 1, 'https://ror.org/01evs2j21 BMA Engineering (United States)'), (31241, 'https://ror.org/01evwk382', 'en', 1, 'https://ror.org/01evwk382 American Bureau of Shipping'), (31242, 'https://ror.org/01ew1f053', 'no_lang_code', 1, 'https://ror.org/01ew1f053 Genias Software (Germany)'), (31243, 'https://ror.org/01ew97b74', 'no_lang_code', 1, 'https://ror.org/01ew97b74 Optifin Invest (Slovakia)'), (31244, 'https://ror.org/01ewwhz50', 'no_lang_code', 1, 'https://ror.org/01ewwhz50 Vibratess (United States)'), (31245, 'https://ror.org/01ey7we33', 'en', 1, 'https://ror.org/01ey7we33 Daqing Oilfield General Hospital'), (31246, 'https://ror.org/01eznm763', 'no_lang_code', 1, 'https://ror.org/01eznm763 TreadStone Technologies (United States)'), (31247, 'https://ror.org/01f00bj82', 'no_lang_code', 1, 'https://ror.org/01f00bj82 American Lithium Energy (United States)'), (31248, 'https://ror.org/01f0gap96', 'no_lang_code', 1, 'https://ror.org/01f0gap96 Technical Products Incorporation (United States)'), (31249, 'https://ror.org/01f2gxt17', 'no_lang_code', 1, 'https://ror.org/01f2gxt17 Alpha Omega Electromagnetics (United States)'), (31250, 'https://ror.org/01f3h2833', 'no_lang_code', 1, 'https://ror.org/01f3h2833 Memtronics (United States)'), (31251, 'https://ror.org/01f3z1j62', 'en', 1, 'https://ror.org/01f3z1j62 Primate Conservation'), (31252, 'https://ror.org/01f45ap57', 'no_lang_code', 1, 'https://ror.org/01f45ap57 SimWright (United States)'), (31253, 'https://ror.org/01f55nv10', 'no_lang_code', 1, 'https://ror.org/01f55nv10 Vitrolife (Sweden)'), (31254, 'https://ror.org/01f5v9z11', 'en', 1, 'https://ror.org/01f5v9z11 Swedish Network for Innovation & Technology Transfer Support'), (31255, 'https://ror.org/01f8jdn16', 'en', 1, 'https://ror.org/01f8jdn16 Historical Archives'), (31256, 'https://ror.org/01fbgjv04', 'en', 1, 'https://ror.org/01fbgjv04 Shandong Academy of Agricultural Sciences 山东省花生研究所'), (31257, 'https://ror.org/01fd86n56', 'en', 1, 'https://ror.org/01fd86n56 Second Hospital of Shandong University'), (31258, 'https://ror.org/01fda9e47', 'no_lang_code', 1, 'https://ror.org/01fda9e47 Prolysis (United Kingdom)'), (31259, 'https://ror.org/01fha7a79', 'no_lang_code', 1, 'https://ror.org/01fha7a79 OptiPro Systems (United States)'), (31260, 'https://ror.org/01fj3w057', 'no_lang_code', 1, 'https://ror.org/01fj3w057 ViTRAK Systems (Canada)'), (31261, 'https://ror.org/01fjfh042', 'no_lang_code', 1, 'https://ror.org/01fjfh042 ÅF (Sweden)'), (31262, 'https://ror.org/01fn7me06', 'en', 1, 'https://ror.org/01fn7me06 Ruotsin kansainvälisen kehitysyhteistyön keskusvirasto Swedish International Development Cooperation Agency'), (31263, 'https://ror.org/01fn80642', 'no_lang_code', 1, 'https://ror.org/01fn80642 PepsiCo (Canada)'), (31264, 'https://ror.org/01fncf688', 'es', 1, 'https://ror.org/01fncf688 Institute of Science and Technology of the Federal District Instituto de Ciencia y Tecnologia del Distrito Federal'), (31265, 'https://ror.org/01fpe8896', 'no_lang_code', 1, 'https://ror.org/01fpe8896 P-mat'), (31266, 'https://ror.org/01fphh031', 'en', 1, 'https://ror.org/01fphh031 NIHR Leicester-Loughborough Diet, Lifestyle and Physical Activity Biomedical Research Unit'), (31267, 'https://ror.org/01fpkk097', 'no_lang_code', 1, 'https://ror.org/01fpkk097 MegaWave (United States)'), (31268, 'https://ror.org/01fqmah26', 'en', 1, 'https://ror.org/01fqmah26 Photonics Electronics Technology Research Association フォトニクスエレクトロニクス技術研究組合'), (31269, 'https://ror.org/01frgsc79', 'en', 1, 'https://ror.org/01frgsc79 Association canadienne des carburants Canadian Fuels Association'), (31270, 'https://ror.org/01fs6c127', 'no_lang_code', 1, 'https://ror.org/01fs6c127 Signal Processing Devices (Sweden)'), (31271, 'https://ror.org/01fz2rj87', 'nl', 1, 'https://ror.org/01fz2rj87 Nederlandse Brandwonden Stichting'), (31272, 'https://ror.org/01fz30h98', 'no_lang_code', 1, 'https://ror.org/01fz30h98 IntelliEPI (United States)'), (31273, 'https://ror.org/01fzcdg14', 'no_lang_code', 1, 'https://ror.org/01fzcdg14 Quasonix (United States)'), (31274, 'https://ror.org/01g07dr78', 'no_lang_code', 1, 'https://ror.org/01g07dr78 Green Mountain Radio Research (United States)'), (31275, 'https://ror.org/01g0b8d40', 'no_lang_code', 1, 'https://ror.org/01g0b8d40 Trend Micro (Canada)'), (31276, 'https://ror.org/01g2jxv60', 'no_lang_code', 1, 'https://ror.org/01g2jxv60 KPM Industries (Canada)'), (31277, 'https://ror.org/01g3ss027', 'en', 1, 'https://ror.org/01g3ss027 Kerr Foundation'), (31278, 'https://ror.org/01g6g9h28', 'en', 1, 'https://ror.org/01g6g9h28 Li Ka Shing Foundation'), (31279, 'https://ror.org/01g790094', 'en', 1, 'https://ror.org/01g790094 American University for Humanities'), (31280, 'https://ror.org/01g7c0g45', 'en', 1, 'https://ror.org/01g7c0g45 Parapsychology Foundation'), (31281, 'https://ror.org/01g8r3j92', 'no_lang_code', 1, 'https://ror.org/01g8r3j92 Follicum (Sweden)'), (31282, 'https://ror.org/01g8xep57', 'no_lang_code', 1, 'https://ror.org/01g8xep57 STI Electronics (United States)'), (31283, 'https://ror.org/01g9kt839', 'en', 1, 'https://ror.org/01g9kt839 Estonian National Museum'), (31284, 'https://ror.org/01g9ye888', 'no_lang_code', 1, 'https://ror.org/01g9ye888 Toray International Europe (Germany)'), (31285, 'https://ror.org/01ga56p68', 'no_lang_code', 1, 'https://ror.org/01ga56p68 Remcom (United States)'), (31286, 'https://ror.org/01gb56c55', 'it', 1, 'https://ror.org/01gb56c55 Cariplo Foundation Fondazione Cariplo'), (31287, 'https://ror.org/01gbbz114', 'en', 1, 'https://ror.org/01gbbz114 Westcountry Rivers Trust'), (31288, 'https://ror.org/01gbk3827', 'es', 1, 'https://ror.org/01gbk3827 Instituto del Mar del Peru'), (31289, 'https://ror.org/01gbnn715', 'no_lang_code', 1, 'https://ror.org/01gbnn715 Indiana Microelectronics (United States)'), (31290, 'https://ror.org/01gd7b947', 'en', 1, 'https://ror.org/01gd7b947 Damon Runyon Cancer Research Foundation'), (31291, 'https://ror.org/01gdbf303', 'en', 1, 'https://ror.org/01gdbf303 Royal College of General Practitioners'), (31292, 'https://ror.org/01gdjt538', 'en', 1, 'https://ror.org/01gdjt538 CUNY Advanced Science Research Center'), (31293, 'https://ror.org/01gdspj25', 'en', 1, 'https://ror.org/01gdspj25 Manitoba Canola Growers Association'), (31294, 'https://ror.org/01gdw4351', 'no_lang_code', 1, 'https://ror.org/01gdw4351 TechFlow (United States)'), (31295, 'https://ror.org/01gehdq90', 'no_lang_code', 1, 'https://ror.org/01gehdq90 Yad Ben Zvi'), (31296, 'https://ror.org/01gehgc29', 'no_lang_code', 1, 'https://ror.org/01gehgc29 Ebert Composites (United States)'), (31297, 'https://ror.org/01gejm974', 'en', 1, 'https://ror.org/01gejm974 American Academy of Audiology Foundation'), (31298, 'https://ror.org/01gfeyd95', 'en', 1, 'https://ror.org/01gfeyd95 Northumbria Healthcare NHS Foundation Trust'), (31299, 'https://ror.org/01gffq935', 'no_lang_code', 1, 'https://ror.org/01gffq935 Nyfors (Sweden)'), (31300, 'https://ror.org/01gjmdw96', 'no_lang_code', 1, 'https://ror.org/01gjmdw96 Alfa Products and Technologies (Belgium)'), (31301, 'https://ror.org/01gjtys23', 'no', 1, 'https://ror.org/01gjtys23 Trondheim Kommune'), (31302, 'https://ror.org/01gk7a979', 'no_lang_code', 1, 'https://ror.org/01gk7a979 HyPerComp (United States)'), (31303, 'https://ror.org/01gp78072', 'no_lang_code', 1, 'https://ror.org/01gp78072 ATA Engineering (United States)'), (31304, 'https://ror.org/01gpy1v41', 'no_lang_code', 1, 'https://ror.org/01gpy1v41 ExxonMobil (Canada)'), (31305, 'https://ror.org/01gpyzq83', 'fi', 1, 'https://ror.org/01gpyzq83 Jenny and Antti Wihuri Foundation Jenny ja Antti Wihurin Rahasto'), (31306, 'https://ror.org/01gqc4379', 'no_lang_code', 1, 'https://ror.org/01gqc4379 Detectify (Sweden)'), (31307, 'https://ror.org/01gsckf69', 'en', 1, 'https://ror.org/01gsckf69 Central Christian College of the Bible'), (31308, 'https://ror.org/01gshyb58', 'en', 1, 'https://ror.org/01gshyb58 Qatar Science and Technology Park واحة العلوم والتكنولوجيا في قطر'), (31309, 'https://ror.org/01gtwn585', 'no_lang_code', 1, 'https://ror.org/01gtwn585 Athera (Sweden)'), (31310, 'https://ror.org/01gycsq30', 'en', 1, 'https://ror.org/01gycsq30 Epilepsy Research UK'), (31311, 'https://ror.org/01h06db67', 'en', 1, 'https://ror.org/01h06db67 Institute of Informatics and Statistics Inštitút informatiky a štatistiky'), (31312, 'https://ror.org/01h1amn32', 'no_lang_code', 1, 'https://ror.org/01h1amn32 Hazenberg Archeologie (Netherlands)'), (31313, 'https://ror.org/01h439d80', 'en', 1, 'https://ror.org/01h439d80 Third Hospital of Nanchang'), (31314, 'https://ror.org/01h6a1346', 'no_lang_code', 1, 'https://ror.org/01h6a1346 D&S Consultants (United States)'), (31315, 'https://ror.org/01h6vn910', 'no_lang_code', 1, 'https://ror.org/01h6vn910 GTVT (Slovakia)'), (31316, 'https://ror.org/01h7phx34', 'no_lang_code', 1, 'https://ror.org/01h7phx34 ITS Electronics (Canada)'), (31317, 'https://ror.org/01h7rcq14', 'no_lang_code', 1, 'https://ror.org/01h7rcq14 Wave Computation Technologies (United States)'), (31318, 'https://ror.org/01h8vbd96', 'en', 1, 'https://ror.org/01h8vbd96 Korea Drug Development Fund'), (31319, 'https://ror.org/01hb8gc46', 'no_lang_code', 1, 'https://ror.org/01hb8gc46 Danubia NanoTech (Slovakia)'), (31320, 'https://ror.org/01hgpf702', 'en', 1, 'https://ror.org/01hgpf702 Pan African Tsetse and Trypanosomiasis Eradication Campaign'), (31321, 'https://ror.org/01hht6e57', 'en', 1, 'https://ror.org/01hht6e57 Bethune Second Hospital'), (31322, 'https://ror.org/01hj26z68', 'en', 1, 'https://ror.org/01hj26z68 Richmond County Savings Foundation'), (31323, 'https://ror.org/01hj33v12', 'no_lang_code', 1, 'https://ror.org/01hj33v12 Echo Ridge (United States)'), (31324, 'https://ror.org/01hkbh902', 'en', 1, 'https://ror.org/01hkbh902 Scottish Rite Masonic Museum and Library'), (31325, 'https://ror.org/01hmp5p66', 'no_lang_code', 1, 'https://ror.org/01hmp5p66 Ubisoft (Canada)'), (31326, 'https://ror.org/01hqp1g48', 'en', 1, 'https://ror.org/01hqp1g48 Hochschule Kehl University of Applied Sciences Kehl'), (31327, 'https://ror.org/01hr92802', 'no_lang_code', 1, 'https://ror.org/01hr92802 Hontek (United States)'), (31328, 'https://ror.org/01hsj7470', 'no_lang_code', 1, 'https://ror.org/01hsj7470 Securboration (United States)'), (31329, 'https://ror.org/01hwjc346', 'en', 1, 'https://ror.org/01hwjc346 Concern Foundation'), (31330, 'https://ror.org/01hx6v225', 'en', 1, 'https://ror.org/01hx6v225 Champlain College'), (31331, 'https://ror.org/01hyee328', 'da', 1, 'https://ror.org/01hyee328 Dansk Røde Kors'), (31332, 'https://ror.org/01j0cm669', 'en', 1, 'https://ror.org/01j0cm669 China Space Foundation'), (31333, 'https://ror.org/01j1d9a35', 'no_lang_code', 1, 'https://ror.org/01j1d9a35 Filtration Solutions (United States)'), (31334, 'https://ror.org/01j4h9t83', 'fr', 1, 'https://ror.org/01j4h9t83 Institut de Recherche pour le Développement Institute of Research for the Development'), (31335, 'https://ror.org/01j5et233', 'no_lang_code', 1, 'https://ror.org/01j5et233 Numerica Corporation (United States)'), (31336, 'https://ror.org/01j6fq995', 'en', 1, 'https://ror.org/01j6fq995 Wosinsky Mór County Museum'), (31337, 'https://ror.org/01j78w442', 'en', 1, 'https://ror.org/01j78w442 Germantown Academy'), (31338, 'https://ror.org/01j7tpx52', 'no_lang_code', 1, 'https://ror.org/01j7tpx52 DSM (Austria)'), (31339, 'https://ror.org/01j8arr96', 'no_lang_code', 1, 'https://ror.org/01j8arr96 Union Gas (Canada)'), (31340, 'https://ror.org/01ja11s84', 'en', 1, 'https://ror.org/01ja11s84 School of the Museum of Fine Arts'), (31341, 'https://ror.org/01ja2b492', 'no_lang_code', 1, 'https://ror.org/01ja2b492 Besab (Sweden)'), (31342, 'https://ror.org/01jbchh45', 'no_lang_code', 1, 'https://ror.org/01jbchh45 Essilor (Canada)'), (31343, 'https://ror.org/01jcqzd89', 'en', 1, 'https://ror.org/01jcqzd89 Chongqing City Mental Health Center'), (31344, 'https://ror.org/01je3h843', 'en', 1, 'https://ror.org/01je3h843 Institute for New Economic Thinking'), (31345, 'https://ror.org/01jeg6k27', 'no_lang_code', 1, 'https://ror.org/01jeg6k27 Varta Micro Innovation (Austria)'), (31346, 'https://ror.org/01jg6rj30', 'en', 1, 'https://ror.org/01jg6rj30 College of the Albemarle'), (31347, 'https://ror.org/01jgp6d54', 'it', 1, 'https://ror.org/01jgp6d54 Istituto di Astrofisica Spaziale e Fisica Cosmica di Milano'), (31348, 'https://ror.org/01jjrt576', 'no_lang_code', 1, 'https://ror.org/01jjrt576 Sun Gro Horticulture (Canada)'), (31349, 'https://ror.org/01jn0jb26', 'no_lang_code', 1, 'https://ror.org/01jn0jb26 Colas (Canada)'), (31350, 'https://ror.org/01jp7k726', 'en', 1, 'https://ror.org/01jp7k726 Asian Development Research Institute'), (31351, 'https://ror.org/01js9sf40', 'en', 1, 'https://ror.org/01js9sf40 Maine Health Access Foundation'), (31352, 'https://ror.org/01jtfaj68', 'no_lang_code', 1, 'https://ror.org/01jtfaj68 Andec Manufacturing (Canada)'), (31353, 'https://ror.org/01jvd8304', 'en', 1, 'https://ror.org/01jvd8304 Provincial Health Services Authority'), (31354, 'https://ror.org/01jw22w13', 'no_lang_code', 1, 'https://ror.org/01jw22w13 ContextVision (Sweden)'), (31355, 'https://ror.org/01jwwmn11', 'no_lang_code', 1, 'https://ror.org/01jwwmn11 SwedNanoTech (Sweden)'), (31356, 'https://ror.org/01jzqw278', 'no_lang_code', 1, 'https://ror.org/01jzqw278 Helios Remote Sensing Systems (United States)'), (31357, 'https://ror.org/01k0xxh86', 'no_lang_code', 1, 'https://ror.org/01k0xxh86 Green Cross (South Korea)'), (31358, 'https://ror.org/01k1x3b35', 'en', 1, 'https://ror.org/01k1x3b35 Zhuhai People''s Hospital 珠海市人民医院'), (31359, 'https://ror.org/01k3hq685', 'en', 1, 'https://ror.org/01k3hq685 Zhongda Hospital Southeast University'), (31360, 'https://ror.org/01k6cv303', 'no_lang_code', 1, 'https://ror.org/01k6cv303 API Technologies (United States)'), (31361, 'https://ror.org/01k7j5430', 'no_lang_code', 1, 'https://ror.org/01k7j5430 Design Interactive (United States)'), (31362, 'https://ror.org/01k7rsf15', 'no_lang_code', 1, 'https://ror.org/01k7rsf15 Adsantec (United States)'), (31363, 'https://ror.org/01k89ak47', 'en', 1, 'https://ror.org/01k89ak47 Agriaquaculture Nutritional Genomic Center'), (31364, 'https://ror.org/01k8fjb77', 'no_lang_code', 1, 'https://ror.org/01k8fjb77 OverHorizon (Sweden)'), (31365, 'https://ror.org/01k999n94', 'en', 1, 'https://ror.org/01k999n94 University of Calgary in Qatar'), (31366, 'https://ror.org/01ka9rn66', 'en', 1, 'https://ror.org/01ka9rn66 Ministry of Gender Equality and Family 대한민국 여성가족부'), (31367, 'https://ror.org/01kae7563', 'en', 1, 'https://ror.org/01kae7563 Département des transports du michigan Michigan Department of Transportation'), (31368, 'https://ror.org/01kc9n234', 'no_lang_code', 1, 'https://ror.org/01kc9n234 BGC Engineering (Canada)'), (31369, 'https://ror.org/01kcex014', 'no_lang_code', 1, 'https://ror.org/01kcex014 Optimization Technology (United States)'), (31370, 'https://ror.org/01kcva023', 'en', 1, 'https://ror.org/01kcva023 Ministry of Education 新加坡教育部'), (31371, 'https://ror.org/01kd5m353', 'sv', 1, 'https://ror.org/01kd5m353 VINNOVA, Verket för innovationssystem'), (31372, 'https://ror.org/01kgxxx41', 'en', 1, 'https://ror.org/01kgxxx41 North Carolina Sea Grant'), (31373, 'https://ror.org/01khmxb55', 'en', 1, 'https://ror.org/01khmxb55 Jiangyin People''s Hospital'), (31374, 'https://ror.org/01kjq0112', 'en', 1, 'https://ror.org/01kjq0112 Foundation for Advancement of International Science 公益財団法人国際科学振興財団'), (31375, 'https://ror.org/01kjwc090', 'en', 1, 'https://ror.org/01kjwc090 Musicians Emergency Fund'), (31376, 'https://ror.org/01kjwqy11', 'en', 1, 'https://ror.org/01kjwqy11 Ministry of Human Resources and Social Security 中华人民共和国人力资源和社会保障部'), (31377, 'https://ror.org/01kkxsr20', 'no_lang_code', 1, 'https://ror.org/01kkxsr20 Staal Technisch Centrum (Netherlands)'), (31378, 'https://ror.org/01kmmtp84', 'en', 1, 'https://ror.org/01kmmtp84 Programs for Assessment of Technology in Health Research Institute'), (31379, 'https://ror.org/01knxge52', 'no_lang_code', 1, 'https://ror.org/01knxge52 Ericsson (United Kingdom)'), (31380, 'https://ror.org/01kpjmx04', 'en', 1, 'https://ror.org/01kpjmx04 Carlsberg Foundation'), (31381, 'https://ror.org/01kqc7c98', 'no_lang_code', 1, 'https://ror.org/01kqc7c98 Pellion Technologies (United States)'), (31382, 'https://ror.org/01ks4mk39', 'no_lang_code', 1, 'https://ror.org/01ks4mk39 Realtime Embedded (Sweden)'), (31383, 'https://ror.org/01ksx6c70', 'en', 1, 'https://ror.org/01ksx6c70 Connecticut Sea Grant'), (31384, 'https://ror.org/01kt8dn14', 'en', 1, 'https://ror.org/01kt8dn14 Weihai City Mental Health Center'), (31385, 'https://ror.org/01kv3wg35', 'en', 1, 'https://ror.org/01kv3wg35 Kavli Institute for Theoretical Sciences 中国科学院理论物理研究所'), (31386, 'https://ror.org/01kv42962', 'en', 1, 'https://ror.org/01kv42962 Asparagus Farmers of Ontario'), (31387, 'https://ror.org/01kvhrk82', 'no_lang_code', 1, 'https://ror.org/01kvhrk82 PTC (Canada)'), (31388, 'https://ror.org/01kvnds84', 'no_lang_code', 1, 'https://ror.org/01kvnds84 SCS Engineering (United States)'), (31389, 'https://ror.org/01kw00110', 'no_lang_code', 1, 'https://ror.org/01kw00110 Applied Precision (Slovakia)'), (31390, 'https://ror.org/01kxxsk90', 'no_lang_code', 1, 'https://ror.org/01kxxsk90 Klimator (Sweden)'), (31391, 'https://ror.org/01kzsq416', 'en', 1, 'https://ror.org/01kzsq416 First People''s Hospital of Kunshan 昆山市第一人民医院'), (31392, 'https://ror.org/01m05be67', 'no_lang_code', 1, 'https://ror.org/01m05be67 Scientific Forming Technologies Corporation (United States)'), (31393, 'https://ror.org/01m05qy31', 'sv', 1, 'https://ror.org/01m05qy31 Svensk Fågel Service'), (31394, 'https://ror.org/01m0js248', 'no_lang_code', 1, 'https://ror.org/01m0js248 24M (United States)'), (31395, 'https://ror.org/01m290237', 'no_lang_code', 1, 'https://ror.org/01m290237 Lindsay Associates Architects (United States)'), (31396, 'https://ror.org/01m293240', 'no_lang_code', 1, 'https://ror.org/01m293240 Survice Engineering (United States)'), (31397, 'https://ror.org/01m5ew684', 'en', 1, 'https://ror.org/01m5ew684 Education New Zealand'), (31398, 'https://ror.org/01m5zqn93', 'no_lang_code', 1, 'https://ror.org/01m5zqn93 Ipso Facto (France)'), (31399, 'https://ror.org/01m7awg34', 'en', 1, 'https://ror.org/01m7awg34 Clayton College of Natural Health'), (31400, 'https://ror.org/01m90ba17', 'de', 1, 'https://ror.org/01m90ba17 Filmarchiv Austria'), (31401, 'https://ror.org/01ma57r88', 'en', 1, 'https://ror.org/01ma57r88 Smith Richardson Foundation'), (31402, 'https://ror.org/01mart011', 'no_lang_code', 1, 'https://ror.org/01mart011 ReliaCoat Technologies (United States)'), (31403, 'https://ror.org/01mcgws81', 'no_lang_code', 1, 'https://ror.org/01mcgws81 ObjectVideo (United States)'), (31404, 'https://ror.org/01mcvy510', 'en', 1, 'https://ror.org/01mcvy510 Harvard College Observatory'), (31405, 'https://ror.org/01mcwn339', 'en', 1, 'https://ror.org/01mcwn339 Hope for Depression Research Foundation'), (31406, 'https://ror.org/01mdjbm03', 'en', 1, 'https://ror.org/01mdjbm03 Fourth Hospital of Hebei Medical University 河北医科大学第四医院'), (31407, 'https://ror.org/01mf7pb88', 'no_lang_code', 1, 'https://ror.org/01mf7pb88 Expert Microsystems (United States)'), (31408, 'https://ror.org/01mj08x55', 'en', 1, 'https://ror.org/01mj08x55 College of Policing'), (31409, 'https://ror.org/01mpknn43', 'no_lang_code', 1, 'https://ror.org/01mpknn43 iAnalysis (Japan)'), (31410, 'https://ror.org/01mqf7t37', 'no_lang_code', 1, 'https://ror.org/01mqf7t37 DragoonITCN (United States)'), (31411, 'https://ror.org/01mqp0v57', 'en', 1, 'https://ror.org/01mqp0v57 Montana Economic Revitalization and Development Institute'), (31412, 'https://ror.org/01mqvzc02', 'en', 1, 'https://ror.org/01mqvzc02 Newfoundland Aquaculture Industry Association'), (31413, 'https://ror.org/01mre6t58', 'en', 1, 'https://ror.org/01mre6t58 Pan African Urological Surgeons Association'), (31414, 'https://ror.org/01mrzcs29', 'no_lang_code', 1, 'https://ror.org/01mrzcs29 UniCredit (United States)'), (31415, 'https://ror.org/01mttx554', 'no_lang_code', 1, 'https://ror.org/01mttx554 Immunicum (Sweden)'), (31416, 'https://ror.org/01mv87107', 'no_lang_code', 1, 'https://ror.org/01mv87107 Top-Vu Technology (United States)'), (31417, 'https://ror.org/01mwnwc77', 'en', 1, 'https://ror.org/01mwnwc77 Manchester Art Gallery'), (31418, 'https://ror.org/01my2ss20', 'en', 1, 'https://ror.org/01my2ss20 Hult International Business School'), (31419, 'https://ror.org/01mynms41', 'en', 1, 'https://ror.org/01mynms41 Temeke Municipal Council'), (31420, 'https://ror.org/01n1w8781', 'no_lang_code', 1, 'https://ror.org/01n1w8781 Symetrix (United States)'), (31421, 'https://ror.org/01n28jn45', 'en', 1, 'https://ror.org/01n28jn45 Swedish National Bank'), (31422, 'https://ror.org/01n29bn70', 'no_lang_code', 1, 'https://ror.org/01n29bn70 Peregrine Falcon (United States)'), (31423, 'https://ror.org/01n3v7c44', 'en', 1, 'https://ror.org/01n3v7c44 Liaoning Provincial People''s Hospital 辽宁省人民医院'), (31424, 'https://ror.org/01n54ck79', 'en', 1, 'https://ror.org/01n54ck79 Dutch Dairy Association Nederlandse Zuivel Organisatie'), (31425, 'https://ror.org/01n5m5w72', 'no_lang_code', 1, 'https://ror.org/01n5m5w72 Corporate Executive Board (United States)'), (31426, 'https://ror.org/01n5yhf55', 'no_lang_code', 1, 'https://ror.org/01n5yhf55 Apogee Technology (United States)'), (31427, 'https://ror.org/01n673471', 'en', 1, 'https://ror.org/01n673471 Corcoran College of Art and Design'), (31428, 'https://ror.org/01n6agm35', 'en', 1, 'https://ror.org/01n6agm35 Minnesota Sea Grant'), (31429, 'https://ror.org/01n6v0a11', 'no_lang_code', 1, 'https://ror.org/01n6v0a11 Dalian Municipal Central Hospital 大连市中心医院'), (31430, 'https://ror.org/01na0pb61', 'fr', 1, 'https://ror.org/01na0pb61 Institut de Biologie Physico-Chimique'), (31431, 'https://ror.org/01nacxm37', 'en', 1, 'https://ror.org/01nacxm37 Somerset County Council'), (31432, 'https://ror.org/01nedp435', 'no_lang_code', 1, 'https://ror.org/01nedp435 Discovery Machine (United States)'), (31433, 'https://ror.org/01nf1vh59', 'en', 1, 'https://ror.org/01nf1vh59 EDUCON'), (31434, 'https://ror.org/01ngvra90', 'no_lang_code', 1, 'https://ror.org/01ngvra90 Sony Digital Audio Disc Corporation (Austria)'), (31435, 'https://ror.org/01nh4s312', 'en', 1, 'https://ror.org/01nh4s312 Government of Slovakia'), (31436, 'https://ror.org/01njdr168', 'en', 1, 'https://ror.org/01njdr168 Finnish Academy of Science and Letters'), (31437, 'https://ror.org/01nk5jw70', 'no_lang_code', 1, 'https://ror.org/01nk5jw70 Bjarga (Sweden)'), (31438, 'https://ror.org/01nk8bv65', 'no_lang_code', 1, 'https://ror.org/01nk8bv65 HPS Simulations (United States)'), (31439, 'https://ror.org/01np3hz61', 'no_lang_code', 1, 'https://ror.org/01np3hz61 Silatech'), (31440, 'https://ror.org/01npwtv09', 'en', 1, 'https://ror.org/01npwtv09 Prostate Cancer Foundation'), (31441, 'https://ror.org/01nr1y793', 'no_lang_code', 1, 'https://ror.org/01nr1y793 LinQuest (United States)'), (31442, 'https://ror.org/01nsg6818', 'no_lang_code', 1, 'https://ror.org/01nsg6818 Simpson Biotech Company (Taiwan)'), (31443, 'https://ror.org/01nt9tz90', 'no_lang_code', 1, 'https://ror.org/01nt9tz90 Accurate Automation (United States)'), (31444, 'https://ror.org/01nv5t982', 'no_lang_code', 1, 'https://ror.org/01nv5t982 IncSys (United States)'), (31445, 'https://ror.org/01nvd0q76', 'en', 1, 'https://ror.org/01nvd0q76 Chettinad Health City'), (31446, 'https://ror.org/01ny0n591', 'no_lang_code', 1, 'https://ror.org/01ny0n591 Thermavant (United States)'), (31447, 'https://ror.org/01nz1gv09', 'no_lang_code', 1, 'https://ror.org/01nz1gv09 Peerless Technologies (United States)'), (31448, 'https://ror.org/01nz9v648', 'no_lang_code', 1, 'https://ror.org/01nz9v648 HiFunda (United States)'), (31449, 'https://ror.org/01p232496', 'la', 1, 'https://ror.org/01p232496 Fons Vitae Lyceum'), (31450, 'https://ror.org/01p2rmv38', 'no_lang_code', 1, 'https://ror.org/01p2rmv38 DataSoft (United States)'), (31451, 'https://ror.org/01p30rj34', 'en', 1, 'https://ror.org/01p30rj34 Calcutta State Transport Corporation'), (31452, 'https://ror.org/01p369f26', 'nl', 1, 'https://ror.org/01p369f26 AA Brediusstichting'), (31453, 'https://ror.org/01p7q7732', 'no_lang_code', 1, 'https://ror.org/01p7q7732 Senzime (Sweden)'), (31454, 'https://ror.org/01p7x7924', 'en', 1, 'https://ror.org/01p7x7924 San Joaquin College of Law'), (31455, 'https://ror.org/01p8v8m79', 'no_lang_code', 1, 'https://ror.org/01p8v8m79 Plasmonics (United States)'), (31456, 'https://ror.org/01p92gv96', 'en', 1, 'https://ror.org/01p92gv96 Fourth People''s Hospital of Liaocheng'), (31457, 'https://ror.org/01pckwj65', 'en', 1, 'https://ror.org/01pckwj65 Escuela de Cine de Nueva York New York Film Academy'), (31458, 'https://ror.org/01pcpwp52', 'no_lang_code', 1, 'https://ror.org/01pcpwp52 RPM International (Canada)'), (31459, 'https://ror.org/01pcq0j68', 'no_lang_code', 1, 'https://ror.org/01pcq0j68 Cargill (United States)'), (31460, 'https://ror.org/01pd7my79', 'en', 1, 'https://ror.org/01pd7my79 Krebsliga Schweiz Ligue Suisse Contre le Cancer Swiss Cancer League'), (31461, 'https://ror.org/01peehd17', 'no_lang_code', 1, 'https://ror.org/01peehd17 Cimarron Software (United States)'), (31462, 'https://ror.org/01pey0n03', 'et', 1, 'https://ror.org/01pey0n03 Vähiuuringute Tehnoloogia Arenduskeskus'), (31463, 'https://ror.org/01pg4hf90', 'no_lang_code', 1, 'https://ror.org/01pg4hf90 Beck Engineering (United States)'), (31464, 'https://ror.org/01pj5nn22', 'en', 1, 'https://ror.org/01pj5nn22 Stanley Medical Research Institute'), (31465, 'https://ror.org/01pkpj777', 'en', 1, 'https://ror.org/01pkpj777 Sontag Foundation'), (31466, 'https://ror.org/01pkxvt59', 'no_lang_code', 1, 'https://ror.org/01pkxvt59 Anamet (United States)'), (31467, 'https://ror.org/01pn5vj05', 'no_lang_code', 1, 'https://ror.org/01pn5vj05 Search-Lab (Hungary)'), (31468, 'https://ror.org/01pn7y126', 'no_lang_code', 1, 'https://ror.org/01pn7y126 POC Tech Group (United States)'), (31469, 'https://ror.org/01pp7nc38', 'no_lang_code', 1, 'https://ror.org/01pp7nc38 Redox Power Systems (United States)'), (31470, 'https://ror.org/01ppg1t70', 'en', 1, 'https://ror.org/01ppg1t70 British Association for Psychopharmacology'), (31471, 'https://ror.org/01pqy3846', 'en', 1, 'https://ror.org/01pqy3846 Larry Ellison Foundation'), (31472, 'https://ror.org/01ptpr676', 'en', 1, 'https://ror.org/01ptpr676 State Committee of Science Գիտության պետական կոմիտե'), (31473, 'https://ror.org/01pw4qf65', 'no_lang_code', 1, 'https://ror.org/01pw4qf65 Accipiter Systems (United States)'), (31474, 'https://ror.org/01pw8kd98', 'no_lang_code', 1, 'https://ror.org/01pw8kd98 Vyvoj Martin (Slovakia)'), (31475, 'https://ror.org/01pwgd096', 'en', 1, 'https://ror.org/01pwgd096 SKA Observatory'), (31476, 'https://ror.org/01pwte708', 'no_lang_code', 1, 'https://ror.org/01pwte708 Verlag Holzhausen (Austria)'), (31477, 'https://ror.org/01px5z495', 'no_lang_code', 1, 'https://ror.org/01px5z495 Tempest Technologies (United States)'), (31478, 'https://ror.org/01q0vs094', 'en', 1, 'https://ror.org/01q0vs094 East London NHS Foundation Trust'), (31479, 'https://ror.org/01q1xmp44', 'no_lang_code', 1, 'https://ror.org/01q1xmp44 MKP Structural Design Associates (United States)'), (31480, 'https://ror.org/01q28w082', 'no_lang_code', 1, 'https://ror.org/01q28w082 Team Aquatic (Canada)'), (31481, 'https://ror.org/01q3by234', 'no_lang_code', 1, 'https://ror.org/01q3by234 Ekjut'), (31482, 'https://ror.org/01q437m46', 'de', 1, 'https://ror.org/01q437m46 Wasser Cluster Lunz'), (31483, 'https://ror.org/01q5qh616', 'hu', 1, 'https://ror.org/01q5qh616 Kecskeméti Katona József Múzeum'), (31484, 'https://ror.org/01q5v7e13', 'en', 1, 'https://ror.org/01q5v7e13 Lowe Syndrome Trust'), (31485, 'https://ror.org/01q6vb404', 'en', 1, 'https://ror.org/01q6vb404 Department of Chemicals and Petrochemicals'), (31486, 'https://ror.org/01q7y9w80', 'no_lang_code', 1, 'https://ror.org/01q7y9w80 Vúez (Slovakia)'), (31487, 'https://ror.org/01q880378', 'no_lang_code', 1, 'https://ror.org/01q880378 Innovative Technology Applications (United States)'), (31488, 'https://ror.org/01q8h4282', 'en', 1, 'https://ror.org/01q8h4282 Regional Council in Kalmar County'), (31489, 'https://ror.org/01q8wz079', 'no_lang_code', 1, 'https://ror.org/01q8wz079 Komet Group (Austria)'), (31490, 'https://ror.org/01qa3q834', 'no_lang_code', 1, 'https://ror.org/01qa3q834 Hardy Pictures (United Kingdom)'), (31491, 'https://ror.org/01qa8aw24', 'en', 1, 'https://ror.org/01qa8aw24 Smith Chapel Bible University'), (31492, 'https://ror.org/01qa8hz22', 'no_lang_code', 1, 'https://ror.org/01qa8hz22 Aventure (Sweden)'), (31493, 'https://ror.org/01qcn4432', 'no_lang_code', 1, 'https://ror.org/01qcn4432 Serendipity Innovations (Sweden)'), (31494, 'https://ror.org/01qdbbk19', 'en', 1, 'https://ror.org/01qdbbk19 Special Astrophysical Observatory Федеральное государственное бюджетное учреждение науки Специальная астрофизическая обсерватория Российской академии наук'), (31495, 'https://ror.org/01qdy0382', 'no_lang_code', 1, 'https://ror.org/01qdy0382 Tafisa (Canada)'), (31496, 'https://ror.org/01qmxzb47', 'en', 1, 'https://ror.org/01qmxzb47 Top Institute Pharma'), (31497, 'https://ror.org/01qpebh25', 'en', 1, 'https://ror.org/01qpebh25 Central Armed Police Forces'), (31498, 'https://ror.org/01qpf3c64', 'en', 1, 'https://ror.org/01qpf3c64 Waldorf College'), (31499, 'https://ror.org/01qpq3w78', 'no_lang_code', 1, 'https://ror.org/01qpq3w78 Golder Associates (United States)'), (31500, 'https://ror.org/01qq34m02', 'en', 1, 'https://ror.org/01qq34m02 Bernstein Center for Computational Neuroscience Heidelberg-Mannheim'), (31501, 'https://ror.org/01qqbx440', 'sk', 1, 'https://ror.org/01qqbx440 Roľnícke družstvo Moravany'), (31502, 'https://ror.org/01qqfah13', 'en', 1, 'https://ror.org/01qqfah13 Brewton-Parker College'), (31503, 'https://ror.org/01qr4dp91', 'no_lang_code', 1, 'https://ror.org/01qr4dp91 Defense Holdings (United States)'), (31504, 'https://ror.org/01qr4jt84', 'no_lang_code', 1, 'https://ror.org/01qr4jt84 EnWave Corporation (Canada)'), (31505, 'https://ror.org/01qr5zh59', 'en', 1, 'https://ror.org/01qr5zh59 Public Health Laboratory Ivo de Carneri'), (31506, 'https://ror.org/01qrenj43', 'en', 1, 'https://ror.org/01qrenj43 Örnsköldsvik Municipality'), (31507, 'https://ror.org/01qvk6016', 'en', 1, 'https://ror.org/01qvk6016 Zero to Three'), (31508, 'https://ror.org/01qwawt17', 'en', 1, 'https://ror.org/01qwawt17 William Penn Foundation'), (31509, 'https://ror.org/01qynr066', 'en', 1, 'https://ror.org/01qynr066 Red Cliff Band of Lake Superior Chippewa'), (31510, 'https://ror.org/01r00g076', 'no_lang_code', 1, 'https://ror.org/01r00g076 Bristol-Myers Squibb (Canada)'), (31511, 'https://ror.org/01r0k6965', 'en', 1, 'https://ror.org/01r0k6965 Netherlands Bioinformatics Centre'), (31512, 'https://ror.org/01r1e1h27', 'en', 1, 'https://ror.org/01r1e1h27 London Mathematical Society'), (31513, 'https://ror.org/01r376258', 'en', 1, 'https://ror.org/01r376258 Netherlands Architecture Institute'), (31514, 'https://ror.org/01r494568', 'en', 1, 'https://ror.org/01r494568 Life Pacific College'), (31515, 'https://ror.org/01r49ds17', 'en', 1, 'https://ror.org/01r49ds17 Nova Scotia Department of Agriculture'), (31516, 'https://ror.org/01r8d0v51', 'no_lang_code', 1, 'https://ror.org/01r8d0v51 Nobel Museum'), (31517, 'https://ror.org/01rbmhr75', 'en', 1, 'https://ror.org/01rbmhr75 Istanbul Metropolitan Municipality'), (31518, 'https://ror.org/01rckyv04', 'en', 1, 'https://ror.org/01rckyv04 Austrian Society for Cybernetic Studies Österreichische Studiengesellschaft für Kybernetik'), (31519, 'https://ror.org/01rcvq140', 'en', 1, 'https://ror.org/01rcvq140 Chongqing University of Arts and Sciences 重庆文理学院'), (31520, 'https://ror.org/01reevc91', 'no_lang_code', 1, 'https://ror.org/01reevc91 Intelligent Systems Research (United States)'), (31521, 'https://ror.org/01rg81308', 'no_lang_code', 1, 'https://ror.org/01rg81308 Flint Rehabilitation Devices (United States)'), (31522, 'https://ror.org/01rj6x283', 'en', 1, 'https://ror.org/01rj6x283 Regional Municipality of Durham'), (31523, 'https://ror.org/01rkdw075', 'no_lang_code', 1, 'https://ror.org/01rkdw075 AnyBody Technology (Denmark)'), (31524, 'https://ror.org/01rm6ad42', 'no_lang_code', 1, 'https://ror.org/01rm6ad42 Nalcor Energy (Canada)'), (31525, 'https://ror.org/01rp86637', 'no_lang_code', 1, 'https://ror.org/01rp86637 Robust Chip (United States)'), (31526, 'https://ror.org/01rq0mb28', 'no_lang_code', 1, 'https://ror.org/01rq0mb28 Energy Storage Systems (United States)'), (31527, 'https://ror.org/01rr16k76', 'en', 1, 'https://ror.org/01rr16k76 Friends School of Baltimore'), (31528, 'https://ror.org/01rrc6194', 'en', 1, 'https://ror.org/01rrc6194 Västerås Municipality'), (31529, 'https://ror.org/01rswrs24', 'no_lang_code', 1, 'https://ror.org/01rswrs24 Études-Recherches-Matériaux (France)'), (31530, 'https://ror.org/01rvfwh35', 'no_lang_code', 1, 'https://ror.org/01rvfwh35 Laricina Energy (Canada)'), (31531, 'https://ror.org/01rwvcf75', 'no_lang_code', 1, 'https://ror.org/01rwvcf75 Mentis Sciences (United States)'), (31532, 'https://ror.org/01rybb297', 'no_lang_code', 1, 'https://ror.org/01rybb297 Edge Technologies (United States)'), (31533, 'https://ror.org/01rz5qz78', 'no_lang_code', 1, 'https://ror.org/01rz5qz78 Murata (United States)'), (31534, 'https://ror.org/01s0mmt42', 'no_lang_code', 1, 'https://ror.org/01s0mmt42 Black Forest Engineering (United States)'), (31535, 'https://ror.org/01s5k1048', 'no_lang_code', 1, 'https://ror.org/01s5k1048 Norfolk Southern (United States)'), (31536, 'https://ror.org/01sbpwv26', 'no_lang_code', 1, 'https://ror.org/01sbpwv26 Plasmatrix (Sweden)'), (31537, 'https://ror.org/01scb6a48', 'no_lang_code', 1, 'https://ror.org/01scb6a48 EM Photonics (United States)'), (31538, 'https://ror.org/01scetz04', 'en', 1, 'https://ror.org/01scetz04 National Disability Institute'), (31539, 'https://ror.org/01sfsq511', 'no_lang_code', 1, 'https://ror.org/01sfsq511 Infinity Pharmaceuticals (United States)'), (31540, 'https://ror.org/01shbv660', 'en', 1, 'https://ror.org/01shbv660 Agricultural Research Development Agency สำนักงานพัฒนาการวิจัยการเกษตร'), (31541, 'https://ror.org/01skcjx25', 'no_lang_code', 1, 'https://ror.org/01skcjx25 Far Tech (United States)'), (31542, 'https://ror.org/01skhd946', 'en', 1, 'https://ror.org/01skhd946 Center for Disease Dynamics, Economics & Policy'), (31543, 'https://ror.org/01snw6n75', 'en', 1, 'https://ror.org/01snw6n75 International Genomics Consortium'), (31544, 'https://ror.org/01sr6x298', 'en', 1, 'https://ror.org/01sr6x298 Pastoral and Environmental Network in the Horn of Africa'), (31545, 'https://ror.org/01ss1ax86', 'no_lang_code', 1, 'https://ror.org/01ss1ax86 Geosigma (Sweden)'), (31546, 'https://ror.org/01ssww473', 'en', 1, 'https://ror.org/01ssww473 Clarity Films'), (31547, 'https://ror.org/01sv5w039', 'en', 1, 'https://ror.org/01sv5w039 Tinker Foundation'), (31548, 'https://ror.org/01sv72659', 'en', 1, 'https://ror.org/01sv72659 Computer Measurement Laboratory'), (31549, 'https://ror.org/01swjvn57', 'no_lang_code', 1, 'https://ror.org/01swjvn57 Qatari Diar (Qatar)'), (31550, 'https://ror.org/01syrqz32', 'en', 1, 'https://ror.org/01syrqz32 University of North Korean Studies 북한대학원대학교'), (31551, 'https://ror.org/01szhjj90', 'no_lang_code', 1, 'https://ror.org/01szhjj90 Xebec (Canada)'), (31552, 'https://ror.org/01szhx446', 'no_lang_code', 1, 'https://ror.org/01szhx446 Torch Hill Investment Partners (United States)'), (31553, 'https://ror.org/01szvzc53', 'no_lang_code', 1, 'https://ror.org/01szvzc53 Biomer Technology (United Kingdom)'), (31554, 'https://ror.org/01t04bt85', 'en', 1, 'https://ror.org/01t04bt85 Brooks Institute'), (31555, 'https://ror.org/01t0hys38', 'no_lang_code', 1, 'https://ror.org/01t0hys38 Ciment Québec (Canada)'), (31556, 'https://ror.org/01t1a2303', 'en', 1, 'https://ror.org/01t1a2303 Canadian Optometric Education Trust Fund Fonds de Fiducie des Optométristes Canadiens pour l''Education'), (31557, 'https://ror.org/01t2e5682', 'no_lang_code', 1, 'https://ror.org/01t2e5682 CNH Industrial (Canada)'), (31558, 'https://ror.org/01t4yq738', 'no_lang_code', 1, 'https://ror.org/01t4yq738 Cube Technology (United States)'), (31559, 'https://ror.org/01t6xjs55', 'no_lang_code', 1, 'https://ror.org/01t6xjs55 Exmar (Belgium)'), (31560, 'https://ror.org/01t75ff47', 'en', 1, 'https://ror.org/01t75ff47 Fernfachhochschule Schweiz Swiss Distance University of Applied Sciences'), (31561, 'https://ror.org/01t8r8650', 'no_lang_code', 1, 'https://ror.org/01t8r8650 Tinta (Hungary)'), (31562, 'https://ror.org/01t931b89', 'no_lang_code', 1, 'https://ror.org/01t931b89 Dais Analytic Corporation (United States)'), (31563, 'https://ror.org/01tasjp55', 'no_lang_code', 1, 'https://ror.org/01tasjp55 Cipherstone Technologies (Sweden)'), (31564, 'https://ror.org/01tasya06', 'no_lang_code', 1, 'https://ror.org/01tasya06 Charles River Laboratories (Netherlands)'), (31565, 'https://ror.org/01tb3h052', 'no_lang_code', 1, 'https://ror.org/01tb3h052 Next Century Corporation (United States)'), (31566, 'https://ror.org/01tbz5p94', 'no_lang_code', 1, 'https://ror.org/01tbz5p94 Integrated Solutions for Systems (United States)'), (31567, 'https://ror.org/01tdhf121', 'en', 1, 'https://ror.org/01tdhf121 Parent Information Center'), (31568, 'https://ror.org/01tgakh12', 'no_lang_code', 1, 'https://ror.org/01tgakh12 Alcoa (Canada)'), (31569, 'https://ror.org/01tgbzq38', 'no_lang_code', 1, 'https://ror.org/01tgbzq38 QuickFlex (United States)'), (31570, 'https://ror.org/01tgdj837', 'no_lang_code', 1, 'https://ror.org/01tgdj837 Taiga (Sweden)'), (31571, 'https://ror.org/01th7sf79', 'en', 1, 'https://ror.org/01th7sf79 Connecticut Space Grant Consortium'), (31572, 'https://ror.org/01th8rf13', 'no_lang_code', 1, 'https://ror.org/01th8rf13 Cambridge Life Sciences (United Kingdom)'), (31573, 'https://ror.org/01thcx676', 'de', 1, 'https://ror.org/01thcx676 Stiftung Rheinland-Pfalz für Innovation'), (31574, 'https://ror.org/01tj74z64', 'it', 1, 'https://ror.org/01tj74z64 Associazione Italiana per l''Agricoltura Biologica'), (31575, 'https://ror.org/01tjn9x38', 'no_lang_code', 1, 'https://ror.org/01tjn9x38 UBC (United States)'), (31576, 'https://ror.org/01tmp3s87', 'no_lang_code', 1, 'https://ror.org/01tmp3s87 ModuleWorks (Romania)'), (31577, 'https://ror.org/01tmp4163', 'no_lang_code', 1, 'https://ror.org/01tmp4163 Datec Coating (Canada)'), (31578, 'https://ror.org/01tqp0709', 'en', 1, 'https://ror.org/01tqp0709 Austrian Institute of Historical Research Institut für Österreichische Geschichtsforschung'), (31579, 'https://ror.org/01trb8031', 'en', 1, 'https://ror.org/01trb8031 European Global Ocean Observing System'), (31580, 'https://ror.org/01tyn7n29', 'en', 1, 'https://ror.org/01tyn7n29 Prime Minister''s Office'), (31581, 'https://ror.org/01v01a242', 'no_lang_code', 1, 'https://ror.org/01v01a242 Xbrane Biopharma (Sweden)'), (31582, 'https://ror.org/01v392555', 'no_lang_code', 1, 'https://ror.org/01v392555 Koo & Associates International (United States)'), (31583, 'https://ror.org/01v4jww63', 'en', 1, 'https://ror.org/01v4jww63 Value Addition Institute'), (31584, 'https://ror.org/01v4vcm68', 'fr', 1, 'https://ror.org/01v4vcm68 Labex Corail'), (31585, 'https://ror.org/01v67s579', 'no_lang_code', 1, 'https://ror.org/01v67s579 Natrix Separations (Canada)'), (31586, 'https://ror.org/01v6nvw72', 'de', 1, 'https://ror.org/01v6nvw72 StifterHaus'), (31587, 'https://ror.org/01v6wg951', 'no_lang_code', 1, 'https://ror.org/01v6wg951 Vista Clara (United States)'), (31588, 'https://ror.org/01v7qfc32', 'en', 1, 'https://ror.org/01v7qfc32 National Department of Health'), (31589, 'https://ror.org/01v82v626', 'no_lang_code', 1, 'https://ror.org/01v82v626 FoundCare'), (31590, 'https://ror.org/01v99n607', 'en', 1, 'https://ror.org/01v99n607 Shark Spotters'), (31591, 'https://ror.org/01vatmj83', 'no_lang_code', 1, 'https://ror.org/01vatmj83 MZA Associates (United States)'), (31592, 'https://ror.org/01vb6q136', 'en', 1, 'https://ror.org/01vb6q136 Netherlands Space Office'), (31593, 'https://ror.org/01vb92e72', 'no_lang_code', 1, 'https://ror.org/01vb92e72 Polaris Systems Optimization (United States)'), (31594, 'https://ror.org/01vfsab41', 'en', 1, 'https://ror.org/01vfsab41 Faculté d''arts de l''université d''État de caroline du nord University of North Carolina School of the Arts'), (31595, 'https://ror.org/01vmfza15', 'tr', 1, 'https://ror.org/01vmfza15 Erciyes Üniversitesi Tıp Fakültesi Hastaneleri'), (31596, 'https://ror.org/01vmgtx82', 'no_lang_code', 1, 'https://ror.org/01vmgtx82 Sentient Science (United States)'), (31597, 'https://ror.org/01vn8wp97', 'en', 1, 'https://ror.org/01vn8wp97 Brown County Historical Society'), (31598, 'https://ror.org/01vtndz62', 'en', 1, 'https://ror.org/01vtndz62 British University Vietnam'), (31599, 'https://ror.org/01vx3k426', 'no_lang_code', 1, 'https://ror.org/01vx3k426 Maverick (United States)'), (31600, 'https://ror.org/01vxra992', 'no_lang_code', 1, 'https://ror.org/01vxra992 R&D Dynamics (United States)'), (31601, 'https://ror.org/01vyraz80', 'no_lang_code', 1, 'https://ror.org/01vyraz80 DSM (Sweden)'), (31602, 'https://ror.org/01w0rme55', 'no_lang_code', 1, 'https://ror.org/01w0rme55 AmberWave (United States)'), (31603, 'https://ror.org/01w1ayy11', 'no_lang_code', 1, 'https://ror.org/01w1ayy11 Glucox Biotech (Sweden)'), (31604, 'https://ror.org/01w1vg437', 'fr', 1, 'https://ror.org/01w1vg437 Doctors Without Borders Médecins Sans Frontières'), (31605, 'https://ror.org/01w3dn975', 'no_lang_code', 1, 'https://ror.org/01w3dn975 Canadian General-Tower (Canada)'), (31606, 'https://ror.org/01w466f66', 'en', 1, 'https://ror.org/01w466f66 Trinity College of Florida'), (31607, 'https://ror.org/01w4p7624', 'no_lang_code', 1, 'https://ror.org/01w4p7624 Eticas Research & Consulting (Spain)'), (31608, 'https://ror.org/01w5pm594', 'no_lang_code', 1, 'https://ror.org/01w5pm594 Jiangsu Nhwa Pharmaceutical (China)'), (31609, 'https://ror.org/01w6p0240', 'no_lang_code', 1, 'https://ror.org/01w6p0240 Energy Research Consultants (United States)'), (31610, 'https://ror.org/01w98nb39', 'no_lang_code', 1, 'https://ror.org/01w98nb39 TM4 (Canada)'), (31611, 'https://ror.org/01w9cfb64', 'en', 1, 'https://ror.org/01w9cfb64 Kenya Wildlife Service Shirika la Huduma kwa Wanyama Pori ya Kenya'), (31612, 'https://ror.org/01wc7km43', 'no_lang_code', 1, 'https://ror.org/01wc7km43 Canada Malting (Canada)'), (31613, 'https://ror.org/01wcqa315', 'en', 1, 'https://ror.org/01wcqa315 Action Medical Research'), (31614, 'https://ror.org/01wcx2305', 'en', 1, 'https://ror.org/01wcx2305 Nanjing Brain Hospital'), (31615, 'https://ror.org/01wd8pa65', 'en', 1, 'https://ror.org/01wd8pa65 China Medical University Beigang Hospital'), (31616, 'https://ror.org/01wfv3m53', 'no_lang_code', 1, 'https://ror.org/01wfv3m53 Teva Pharmaceuticals (Israel) טבע תעשיות פרמצבטיות בע"מ صناعات تيفا الصيدلية'), (31617, 'https://ror.org/01wg5gq86', 'no_lang_code', 1, 'https://ror.org/01wg5gq86 Simplot (United States)'), (31618, 'https://ror.org/01wjew854', 'en', 1, 'https://ror.org/01wjew854 Joint Space Science Institute'), (31619, 'https://ror.org/01wm1ge07', 'no_lang_code', 1, 'https://ror.org/01wm1ge07 Littoral Research Group (United States)'), (31620, 'https://ror.org/01wm7qx64', 'en', 1, 'https://ror.org/01wm7qx64 Shenyang Environmental Protection Bureau'), (31621, 'https://ror.org/01wn7w598', 'en', 1, 'https://ror.org/01wn7w598 Affiliated Hospital of Taishan Medical University'), (31622, 'https://ror.org/01wnead86', 'no_lang_code', 1, 'https://ror.org/01wnead86 Arius3D (Canada)'), (31623, 'https://ror.org/01wng0g34', 'es', 1, 'https://ror.org/01wng0g34 Centro de Estudios de Física del Cosmos de Aragón'), (31624, 'https://ror.org/01wq1xf82', 'en', 1, 'https://ror.org/01wq1xf82 European Academy of Technology and Innovation Assessment'), (31625, 'https://ror.org/01wqdsj65', 'no_lang_code', 1, 'https://ror.org/01wqdsj65 Professional Services Group (United States)'), (31626, 'https://ror.org/01wt3vs82', 'en', 1, 'https://ror.org/01wt3vs82 Dana Foundation'), (31627, 'https://ror.org/01wtjj434', 'en', 1, 'https://ror.org/01wtjj434 SKA Telescope, South Africa'), (31628, 'https://ror.org/01wtjyf13', 'en', 1, 'https://ror.org/01wtjyf13 Office of Dietary Supplements'), (31629, 'https://ror.org/01wtzjm14', 'no_lang_code', 1, 'https://ror.org/01wtzjm14 Global Aerospace (United States)'), (31630, 'https://ror.org/01wxdd722', 'en', 1, 'https://ror.org/01wxdd722 Deutsche Krebshilfe German Cancer Aid'), (31631, 'https://ror.org/01wzzs254', 'en', 1, 'https://ror.org/01wzzs254 Foreign Investment Review Board'), (31632, 'https://ror.org/01x0ypd40', 'no_lang_code', 1, 'https://ror.org/01x0ypd40 Morton Photonics (United States)'), (31633, 'https://ror.org/01x22f448', 'no_lang_code', 1, 'https://ror.org/01x22f448 PC Krause & Associates (United States)'), (31634, 'https://ror.org/01x33g729', 'no_lang_code', 1, 'https://ror.org/01x33g729 Bioglobe (Germany)'), (31635, 'https://ror.org/01x3s6t84', 'no_lang_code', 1, 'https://ror.org/01x3s6t84 Innovatum (Sweden)'), (31636, 'https://ror.org/01x48g070', 'no_lang_code', 1, 'https://ror.org/01x48g070 Sage Technologies (United States)'), (31637, 'https://ror.org/01x4f0278', 'no_lang_code', 1, 'https://ror.org/01x4f0278 Thermacore (United States)'), (31638, 'https://ror.org/01x5t2m44', 'it', 1, 'https://ror.org/01x5t2m44 Fondazione Edo ed Elvo Tempia'), (31639, 'https://ror.org/01x6hat91', 'en', 1, 'https://ror.org/01x6hat91 Coating Consultancy'), (31640, 'https://ror.org/01x6ma944', 'no_lang_code', 1, 'https://ror.org/01x6ma944 BC Hydro (Canada)'), (31641, 'https://ror.org/01x87db24', 'en', 1, 'https://ror.org/01x87db24 Sunder Lal Jain Hospital'), (31642, 'https://ror.org/01x91c597', 'en', 1, 'https://ror.org/01x91c597 Association for Youth, Science and Technology'), (31643, 'https://ror.org/01xa12s81', 'no_lang_code', 1, 'https://ror.org/01xa12s81 Beltran (United States)'), (31644, 'https://ror.org/01xbk7a82', 'no_lang_code', 1, 'https://ror.org/01xbk7a82 ACTA (United States)'), (31645, 'https://ror.org/01xcf8q67', 'no_lang_code', 1, 'https://ror.org/01xcf8q67 BlockMaster (Sweden)'), (31646, 'https://ror.org/01xdzbt45', 'no_lang_code', 1, 'https://ror.org/01xdzbt45 Verisk Analytics (United States)'), (31647, 'https://ror.org/01xew3x83', 'no_lang_code', 1, 'https://ror.org/01xew3x83 EMAG Technologies (United States)'), (31648, 'https://ror.org/01xhkgx67', 'no_lang_code', 1, 'https://ror.org/01xhkgx67 Aoptix Technologies (United States)'), (31649, 'https://ror.org/01xjjmp17', 'nl', 1, 'https://ror.org/01xjjmp17 Museum Catharijneconvent'), (31650, 'https://ror.org/01xmtac13', 'en', 1, 'https://ror.org/01xmtac13 Stefan University'), (31651, 'https://ror.org/01xmtfq82', 'en', 1, 'https://ror.org/01xmtfq82 Northwest Health Foundation'), (31652, 'https://ror.org/01xnpjk23', 'no_lang_code', 1, 'https://ror.org/01xnpjk23 Vanderwell Contractors (Canada)'), (31653, 'https://ror.org/01xp8jx84', 'no_lang_code', 1, 'https://ror.org/01xp8jx84 Ormet Circuits (United States)'), (31654, 'https://ror.org/01xpmbc27', 'en', 1, 'https://ror.org/01xpmbc27 Thomson Reuters Foundation'), (31655, 'https://ror.org/01xrzxy63', 'es', 1, 'https://ror.org/01xrzxy63 Museo de San Isidro'), (31656, 'https://ror.org/01xsmpb09', 'en', 1, 'https://ror.org/01xsmpb09 Autism Research Institute'), (31657, 'https://ror.org/01xsqqn76', 'en', 1, 'https://ror.org/01xsqqn76 Ministry of Education and Science of Perm Region'), (31658, 'https://ror.org/01xt0a511', 'en', 1, 'https://ror.org/01xt0a511 National Museum of Ethnology Rijksmuseum Volkenkunde'), (31659, 'https://ror.org/01xtd5c13', 'en', 1, 'https://ror.org/01xtd5c13 CIS Scientific'), (31660, 'https://ror.org/01xv22m76', 'de', 1, 'https://ror.org/01xv22m76 Bundesmobilienverwaltung'), (31661, 'https://ror.org/01xvbqz61', 'en', 1, 'https://ror.org/01xvbqz61 National Council on Disability'), (31662, 'https://ror.org/01xx86r77', 'no_lang_code', 1, 'https://ror.org/01xx86r77 Biolin Scientific (United Kingdom)'), (31663, 'https://ror.org/01xyfgx59', 'no_lang_code', 1, 'https://ror.org/01xyfgx59 Dynetics (United States)'), (31664, 'https://ror.org/01y0rg445', 'no_lang_code', 1, 'https://ror.org/01y0rg445 AventuSoft (United States)'), (31665, 'https://ror.org/01y4ah893', 'en', 1, 'https://ror.org/01y4ah893 Michigan Economic Development Corporation'), (31666, 'https://ror.org/01y4kmz24', 'en', 1, 'https://ror.org/01y4kmz24 NIHR Royal Brompton Cardiovascular Biomedical Research Unit'), (31667, 'https://ror.org/01y5j7h75', 'no_lang_code', 1, 'https://ror.org/01y5j7h75 Ecrossculture (United States)'), (31668, 'https://ror.org/01y5xsj54', 'en', 1, 'https://ror.org/01y5xsj54 Black Hills Center for American Indian Health'); INSERT INTO `rors` VALUES (31669, 'https://ror.org/01y6tnr87', 'no_lang_code', 1, 'https://ror.org/01y6tnr87 Blue-O Technology (Canada)'), (31670, 'https://ror.org/01y8hgg23', 'no_lang_code', 1, 'https://ror.org/01y8hgg23 Cistel Technology (Canada)'), (31671, 'https://ror.org/01y922f71', 'en', 1, 'https://ror.org/01y922f71 Academia de la Guardia Costera de Estados Unidos United States Coast Guard Academy'), (31672, 'https://ror.org/01y96v851', 'no_lang_code', 1, 'https://ror.org/01y96v851 Viron Therapeutics (Canada)'), (31673, 'https://ror.org/01y9dfy03', 'no_lang_code', 1, 'https://ror.org/01y9dfy03 Bihrle Applied Research (United States)'), (31674, 'https://ror.org/01yasd238', 'en', 1, 'https://ror.org/01yasd238 Trinity Baptist College'), (31675, 'https://ror.org/01ybxby37', 'no_lang_code', 1, 'https://ror.org/01ybxby37 Noisecom (United States)'), (31676, 'https://ror.org/01ydcrt14', 'no_lang_code', 1, 'https://ror.org/01ydcrt14 Lumir Research Institute (United States)'), (31677, 'https://ror.org/01ydrx675', 'no_lang_code', 1, 'https://ror.org/01ydrx675 Air Products (United States)'), (31678, 'https://ror.org/01ye2hc74', 'en', 1, 'https://ror.org/01ye2hc74 Grape Growers of Ontario'), (31679, 'https://ror.org/01yeyxy55', 'no_lang_code', 1, 'https://ror.org/01yeyxy55 Intercontinental Exchange (United States)'), (31680, 'https://ror.org/01yf5bk03', 'no_lang_code', 1, 'https://ror.org/01yf5bk03 Engineering & Scientific Innovations (United States)'), (31681, 'https://ror.org/01yg3ff09', 'en', 1, 'https://ror.org/01yg3ff09 NIHR Southampton Respiratory Biomedical Research Unit'), (31682, 'https://ror.org/01ygm5w19', 'en', 1, 'https://ror.org/01ygm5w19 Centre for Biomedical Network Research on Rare Diseases Centro de Investigación Biomédica en Red de Enfermedades Raras'), (31683, 'https://ror.org/01ygzxb58', 'en', 1, 'https://ror.org/01ygzxb58 Rijksakademie van beeldende kunsten Royal Academy of Visual Arts'), (31684, 'https://ror.org/01yh3cc69', 'no_lang_code', 1, 'https://ror.org/01yh3cc69 Sensing Strategies Incorporation (United States)'), (31685, 'https://ror.org/01yhhvk26', 'no_lang_code', 1, 'https://ror.org/01yhhvk26 Honeybee Robotics (United States)'), (31686, 'https://ror.org/01yjd3664', 'no_lang_code', 1, 'https://ror.org/01yjd3664 Link Microtek (United Kingdom)'), (31687, 'https://ror.org/01yktd853', 'en', 1, 'https://ror.org/01yktd853 Consumer Commission on the Accreditation of Health Services'), (31688, 'https://ror.org/01yncvq70', 'no_lang_code', 1, 'https://ror.org/01yncvq70 Aventia (Spain)'), (31689, 'https://ror.org/01yp11k49', 'no_lang_code', 1, 'https://ror.org/01yp11k49 Diversitech (United States)'), (31690, 'https://ror.org/01ypjv288', 'no_lang_code', 1, 'https://ror.org/01ypjv288 Absolicon Solar Collector (Sweden)'), (31691, 'https://ror.org/01yqb3s19', 'en', 1, 'https://ror.org/01yqb3s19 Ontario Commercial Fisheries'' Association'), (31692, 'https://ror.org/01ysrp540', 'en', 1, 'https://ror.org/01ysrp540 Chester Zoo'), (31693, 'https://ror.org/01yykey67', 'no_lang_code', 1, 'https://ror.org/01yykey67 General Electric (Qatar)'), (31694, 'https://ror.org/01z2za656', 'no_lang_code', 1, 'https://ror.org/01z2za656 Dekonta (Slovakia)'), (31695, 'https://ror.org/01z63c948', 'no_lang_code', 1, 'https://ror.org/01z63c948 Actuant (Sweden)'), (31696, 'https://ror.org/01z7k2z53', 'no_lang_code', 1, 'https://ror.org/01z7k2z53 Systems Dynamics (United States)'), (31697, 'https://ror.org/01z81gq54', 'en', 1, 'https://ror.org/01z81gq54 American Association of Endodontists'), (31698, 'https://ror.org/01z8tr155', 'en', 1, 'https://ror.org/01z8tr155 China Aerospace Science and Technology Corporation 中国航天科技集团'), (31699, 'https://ror.org/01zbqc597', 'no_lang_code', 1, 'https://ror.org/01zbqc597 ThyssenKrupp (Italy) ThyssenKrupp Italia'), (31700, 'https://ror.org/01zc1hx59', 'en', 1, 'https://ror.org/01zc1hx59 Animal Nutrition Association of Canada'), (31701, 'https://ror.org/01zcf4n33', 'en', 1, 'https://ror.org/01zcf4n33 American Foundation for Suicide Prevention'), (31702, 'https://ror.org/01zcfag54', 'no_lang_code', 1, 'https://ror.org/01zcfag54 Smart Eye (Sweden)'), (31703, 'https://ror.org/01zf2fw60', 'en', 1, 'https://ror.org/01zf2fw60 Bluefield College'), (31704, 'https://ror.org/01zf6g661', 'no_lang_code', 1, 'https://ror.org/01zf6g661 Advanced Coherent Technologies (United States)'), (31705, 'https://ror.org/01zg1tt02', 'en', 1, 'https://ror.org/01zg1tt02 MRC Protein Phosphorylation and Ubiquitylation Unit'), (31706, 'https://ror.org/01zgavk21', 'no_lang_code', 1, 'https://ror.org/01zgavk21 Tacton Systems (Sweden)'), (31707, 'https://ror.org/01zh4s520', 'no_lang_code', 1, 'https://ror.org/01zh4s520 Scientific Data Systems (United States)'), (31708, 'https://ror.org/01zmzpt10', 'en', 1, 'https://ror.org/01zmzpt10 Bangladesh Rice Research Institute বাংলাদেশ ধান গবেষণা ইনস্টিটিউট'), (31709, 'https://ror.org/01znwdd95', 'no_lang_code', 1, 'https://ror.org/01znwdd95 AxioMx (United States)'), (31710, 'https://ror.org/01ztrqp26', 'no_lang_code', 1, 'https://ror.org/01ztrqp26 Blue Pencil Group (United States)'), (31711, 'https://ror.org/01ztv7k18', 'no_lang_code', 1, 'https://ror.org/01ztv7k18 Carnegie Robotics (United States)'), (31712, 'https://ror.org/01zwnkm40', 'no_lang_code', 1, 'https://ror.org/01zwnkm40 Minnesota Wire (United States)'), (31713, 'https://ror.org/01zwr3j29', 'en', 1, 'https://ror.org/01zwr3j29 Nordic Joint Committee for Agricultural and Food Research'), (31714, 'https://ror.org/01zxe4w25', 'no_lang_code', 1, 'https://ror.org/01zxe4w25 Innovative Research (United States)'), (31715, 'https://ror.org/01zxfhv73', 'no_lang_code', 1, 'https://ror.org/01zxfhv73 Energetics (United States)'), (31716, 'https://ror.org/01zyxxc50', 'no_lang_code', 1, 'https://ror.org/01zyxxc50 Wolfram MathCore (Sweden)'), (31717, 'https://ror.org/01zzzs782', 'no_lang_code', 1, 'https://ror.org/01zzzs782 Variation Reduction Solutions (United States)'), (31718, 'https://ror.org/020299x40', 'en', 1, 'https://ror.org/020299x40 Xian Mental Health Center'), (31719, 'https://ror.org/0202czp82', 'no_lang_code', 1, 'https://ror.org/0202czp82 Connecticut Innovations (United States)'), (31720, 'https://ror.org/02031zf96', 'en', 1, 'https://ror.org/02031zf96 Particle Data Group'), (31721, 'https://ror.org/0203am321', 'en', 1, 'https://ror.org/0203am321 Göteborg Region Association of Local Authorities'), (31722, 'https://ror.org/0203dma96', 'no_lang_code', 1, 'https://ror.org/0203dma96 MESH (United States)'), (31723, 'https://ror.org/0206mzz42', 'en', 1, 'https://ror.org/0206mzz42 International Center for Human Sciences'), (31724, 'https://ror.org/0206q6m49', 'no_lang_code', 1, 'https://ror.org/0206q6m49 Angstrom Engineering (Canada)'), (31725, 'https://ror.org/020am1515', 'no_lang_code', 1, 'https://ror.org/020am1515 Nico Technologies (United States)'), (31726, 'https://ror.org/020b8ew17', 'no_lang_code', 1, 'https://ror.org/020b8ew17 Gannon Motor and Controls (United States)'), (31727, 'https://ror.org/020bmkg54', 'no_lang_code', 1, 'https://ror.org/020bmkg54 Outotec (Canada)'), (31728, 'https://ror.org/020by8p54', 'no_lang_code', 1, 'https://ror.org/020by8p54 HexaTech (United States)'), (31729, 'https://ror.org/020ct4t61', 'en', 1, 'https://ror.org/020ct4t61 Pensacola Christian College'), (31730, 'https://ror.org/020ddnn22', 'en', 1, 'https://ror.org/020ddnn22 Bundesamt für Energie Swiss Federal Office of Energy'), (31731, 'https://ror.org/020dg9f27', 'en', 1, 'https://ror.org/020dg9f27 Keelung Chang Gung Memorial Hospital'), (31732, 'https://ror.org/020dp5a36', 'en', 1, 'https://ror.org/020dp5a36 C.T. de Wit Graduate School for Production Ecology and Resource Conservation'), (31733, 'https://ror.org/020dsfj21', 'no_lang_code', 1, 'https://ror.org/020dsfj21 FastCAP Systems (United States)'), (31734, 'https://ror.org/020epnp70', 'no_lang_code', 1, 'https://ror.org/020epnp70 Technical Data Analysis (United States)'), (31735, 'https://ror.org/020ezhp63', 'no_lang_code', 1, 'https://ror.org/020ezhp63 Conceptual Mindworks (United States)'), (31736, 'https://ror.org/020h4b682', 'no_lang_code', 1, 'https://ror.org/020h4b682 Digital Science (United States)'), (31737, 'https://ror.org/020hpsx21', 'hu', 1, 'https://ror.org/020hpsx21 Civil Rádió'), (31738, 'https://ror.org/020hsr785', 'nl', 1, 'https://ror.org/020hsr785 Nederlands Instituut voor Wetenschappelijke Informatiediensten'), (31739, 'https://ror.org/020k6v967', 'nl', 1, 'https://ror.org/020k6v967 Nierstichting'), (31740, 'https://ror.org/020kdtk66', 'en', 1, 'https://ror.org/020kdtk66 Recruitment and Assesment Centre'), (31741, 'https://ror.org/020qxnz74', 'en', 1, 'https://ror.org/020qxnz74 Dhaka Community Hospital Trust'), (31742, 'https://ror.org/020r9kq92', 'no_lang_code', 1, 'https://ror.org/020r9kq92 CelluForce (Canada)'), (31743, 'https://ror.org/020r9sg22', 'no_lang_code', 1, 'https://ror.org/020r9sg22 Chevron (Canada)'), (31744, 'https://ror.org/020rmhj69', 'no_lang_code', 1, 'https://ror.org/020rmhj69 Findout Technologies (Sweden)'), (31745, 'https://ror.org/020rxjn58', 'no_lang_code', 1, 'https://ror.org/020rxjn58 Cornerstone Research Group (United States)'), (31746, 'https://ror.org/020t0kf33', 'en', 1, 'https://ror.org/020t0kf33 Cornish College of the Arts'), (31747, 'https://ror.org/020tbqw59', 'no_lang_code', 1, 'https://ror.org/020tbqw59 OEwaves (United States)'), (31748, 'https://ror.org/020vg7c14', 'no_lang_code', 1, 'https://ror.org/020vg7c14 RedZone Robotics (United States)'), (31749, 'https://ror.org/020w2fr77', 'no_lang_code', 1, 'https://ror.org/020w2fr77 Robotics Research (United States)'), (31750, 'https://ror.org/020w7x032', 'en', 1, 'https://ror.org/020w7x032 Sir Halley Stewart Trust'), (31751, 'https://ror.org/020yran20', 'no_lang_code', 1, 'https://ror.org/020yran20 Primus Power (United States)'), (31752, 'https://ror.org/020z47w89', 'no_lang_code', 1, 'https://ror.org/020z47w89 Novici Biotech (United States)'), (31753, 'https://ror.org/0210rze73', 'en', 1, 'https://ror.org/0210rze73 Stavros Niarchos Foundation'), (31754, 'https://ror.org/0211vdk93', 'en', 1, 'https://ror.org/0211vdk93 Belgian Development Agency'), (31755, 'https://ror.org/0212emb53', 'no_lang_code', 1, 'https://ror.org/0212emb53 Symplectic Engineering Corporation (United States)'), (31756, 'https://ror.org/0215n2163', 'no_lang_code', 1, 'https://ror.org/0215n2163 RadiaBeam Technologies (United States)'), (31757, 'https://ror.org/02168q889', 'no_lang_code', 1, 'https://ror.org/02168q889 InteraXon (Canada)'), (31758, 'https://ror.org/0216whp02', 'en', 1, 'https://ror.org/0216whp02 Canadian Hemophilia Society Société Canadienne de l''Hémophilie'), (31759, 'https://ror.org/0218hya98', 'en', 1, 'https://ror.org/0218hya98 Department of Higher Education'), (31760, 'https://ror.org/0219rxc78', 'no_lang_code', 1, 'https://ror.org/0219rxc78 Polisilk (Spain)'), (31761, 'https://ror.org/021a9kk09', 'no_lang_code', 1, 'https://ror.org/021a9kk09 Aurrion (United States)'), (31762, 'https://ror.org/021aawt29', 'en', 1, 'https://ror.org/021aawt29 Great Britain Sasakawa Foundation'), (31763, 'https://ror.org/021asz590', 'en', 1, 'https://ror.org/021asz590 National Center on Birth Defects and Developmental Disabilities'), (31764, 'https://ror.org/021ccwy92', 'no_lang_code', 1, 'https://ror.org/021ccwy92 APR Technologies (Sweden)'), (31765, 'https://ror.org/021g6m489', 'en', 1, 'https://ror.org/021g6m489 American Printing House for the Blind'), (31766, 'https://ror.org/021g7ye04', 'no_lang_code', 1, 'https://ror.org/021g7ye04 Kaer Biotherapeutics (United States)'), (31767, 'https://ror.org/021gzyw51', 'no_lang_code', 1, 'https://ror.org/021gzyw51 Signal Processing (United States)'), (31768, 'https://ror.org/021j0xm63', 'en', 1, 'https://ror.org/021j0xm63 Medaille College'), (31769, 'https://ror.org/021jhha43', 'no_lang_code', 1, 'https://ror.org/021jhha43 Senionlab (Sweden)'), (31770, 'https://ror.org/021jv3185', 'en', 1, 'https://ror.org/021jv3185 Globe Institute of Technology'), (31771, 'https://ror.org/021kp0270', 'no_lang_code', 1, 'https://ror.org/021kp0270 SoarTech (United States)'), (31772, 'https://ror.org/021ky1s64', 'en', 1, 'https://ror.org/021ky1s64 Beijing Anding Hospital 北京安定医院'), (31773, 'https://ror.org/021nfay74', 'en', 1, 'https://ror.org/021nfay74 Ningbo Kangning Hospital'), (31774, 'https://ror.org/021p1en02', 'no_lang_code', 1, 'https://ror.org/021p1en02 Automated Dynamics (United States)'), (31775, 'https://ror.org/021pv6792', 'en', 1, 'https://ror.org/021pv6792 CATAAlliance'), (31776, 'https://ror.org/021t0p839', 'en', 1, 'https://ror.org/021t0p839 Santa Rosa Junior College'), (31777, 'https://ror.org/021t57y21', 'no_lang_code', 1, 'https://ror.org/021t57y21 HUI Research (Sweden)'), (31778, 'https://ror.org/021tyky57', 'no_lang_code', 1, 'https://ror.org/021tyky57 Evidence Based Research (United States)'), (31779, 'https://ror.org/021wdam30', 'no_lang_code', 1, 'https://ror.org/021wdam30 DK-SPEC (Canada)'), (31780, 'https://ror.org/021y1yq56', 'no_lang_code', 1, 'https://ror.org/021y1yq56 Emergent Space Technologies (United States)'), (31781, 'https://ror.org/021yrfz74', 'no_lang_code', 1, 'https://ror.org/021yrfz74 SemLab (Netherlands)'), (31782, 'https://ror.org/021zf9412', 'no_lang_code', 1, 'https://ror.org/021zf9412 Gavagai (Sweden)'), (31783, 'https://ror.org/0220qmg06', 'no_lang_code', 1, 'https://ror.org/0220qmg06 Charmtech Labs (United States)'), (31784, 'https://ror.org/0220z0193', 'no_lang_code', 1, 'https://ror.org/0220z0193 Scope Group (United States)'), (31785, 'https://ror.org/0221y4w38', 'no_lang_code', 1, 'https://ror.org/0221y4w38 Johnson Research & Development (United States)'), (31786, 'https://ror.org/02236vg19', 'no_lang_code', 1, 'https://ror.org/02236vg19 Structural Analytics (United States)'), (31787, 'https://ror.org/0223gf763', 'no_lang_code', 1, 'https://ror.org/0223gf763 Easel Biotechnologies (United States)'), (31788, 'https://ror.org/022485d27', 'en', 1, 'https://ror.org/022485d27 College of Agriculture at Križevci'), (31789, 'https://ror.org/0225asj53', 'en', 1, 'https://ror.org/0225asj53 Department of Health'), (31790, 'https://ror.org/0226byw17', 'en', 1, 'https://ror.org/0226byw17 Charter Oak State College'), (31791, 'https://ror.org/0226hy875', 'no_lang_code', 1, 'https://ror.org/0226hy875 Minesto (Sweden)'), (31792, 'https://ror.org/022c4zk48', 'en', 1, 'https://ror.org/022c4zk48 Small and Medium Business Administration'), (31793, 'https://ror.org/022cgsm35', 'no_lang_code', 1, 'https://ror.org/022cgsm35 Imuna Pharm (Slovakia)'), (31794, 'https://ror.org/022d1jx60', 'en', 1, 'https://ror.org/022d1jx60 Lung Foundation Australia'), (31795, 'https://ror.org/022d46z41', 'no_lang_code', 1, 'https://ror.org/022d46z41 Kraft Heinz (Canada)'), (31796, 'https://ror.org/022kdc073', 'no_lang_code', 1, 'https://ror.org/022kdc073 Iris Technology (United States)'), (31797, 'https://ror.org/022nyme12', 'en', 1, 'https://ror.org/022nyme12 Alaska Space Grant Program'), (31798, 'https://ror.org/022sa0k38', 'no_lang_code', 1, 'https://ror.org/022sa0k38 Kronos (Canada)'), (31799, 'https://ror.org/022t09m69', 'no_lang_code', 1, 'https://ror.org/022t09m69 Optea (Sweden)'), (31800, 'https://ror.org/022t22x02', 'no_lang_code', 1, 'https://ror.org/022t22x02 Kinetic BEI (United States)'), (31801, 'https://ror.org/022t45q87', 'no_lang_code', 1, 'https://ror.org/022t45q87 Marstrom Composite (Sweden)'), (31802, 'https://ror.org/022t7q367', 'en', 1, 'https://ror.org/022t7q367 Indiana Clinical and Translational Sciences Institute'), (31803, 'https://ror.org/022vy2r94', 'no_lang_code', 1, 'https://ror.org/022vy2r94 Decipher Biosciences (Canada)'), (31804, 'https://ror.org/022w59k49', 'en', 1, 'https://ror.org/022w59k49 Alaska State Museum'), (31805, 'https://ror.org/022xj6v07', 'en', 1, 'https://ror.org/022xj6v07 Monterey College of Law'), (31806, 'https://ror.org/0233s9736', 'en', 1, 'https://ror.org/0233s9736 United Community Center'), (31807, 'https://ror.org/0235jt055', 'no_lang_code', 1, 'https://ror.org/0235jt055 Swedish Electroforming Technology (Sweden)'), (31808, 'https://ror.org/0235ynz50', 'no_lang_code', 1, 'https://ror.org/0235ynz50 Informer (Greece)'), (31809, 'https://ror.org/0236x7636', 'no_lang_code', 1, 'https://ror.org/0236x7636 KBL Group International (United States)'), (31810, 'https://ror.org/0237x2s28', 'no_lang_code', 1, 'https://ror.org/0237x2s28 Axis Photonique (Canada)'), (31811, 'https://ror.org/023844j81', 'en', 1, 'https://ror.org/023844j81 Massachusetts Rehabilitation Commission'), (31812, 'https://ror.org/0238w0s48', 'no_lang_code', 1, 'https://ror.org/0238w0s48 Spytek Aerospace (United States)'), (31813, 'https://ror.org/023a30207', 'no_lang_code', 1, 'https://ror.org/023a30207 Telesta Therapeutics (Canada)'), (31814, 'https://ror.org/023ckfc30', 'en', 1, 'https://ror.org/023ckfc30 Grand River Conservation Authority'), (31815, 'https://ror.org/023e5m798', 'en', 1, 'https://ror.org/023e5m798 North East London NHS Foundation Trust'), (31816, 'https://ror.org/023egja51', 'no_lang_code', 1, 'https://ror.org/023egja51 Lyndon Fish Hatcheries'), (31817, 'https://ror.org/023f4f524', 'fr', 1, 'https://ror.org/023f4f524 Fondation Congolaise Pour La Recherche Médicale'), (31818, 'https://ror.org/023h32w18', 'no_lang_code', 1, 'https://ror.org/023h32w18 McLaren Honda (United Kingdom)'), (31819, 'https://ror.org/023kmdf41', 'es', 1, 'https://ror.org/023kmdf41 Centro Dermatológico Federico Lleras Acosta'), (31820, 'https://ror.org/023pdrd93', 'no_lang_code', 1, 'https://ror.org/023pdrd93 ZOA (Uganda)'), (31821, 'https://ror.org/023q7ek24', 'no_lang_code', 1, 'https://ror.org/023q7ek24 Stornoway Diamond (Canada)'), (31822, 'https://ror.org/023rnh198', 'en', 1, 'https://ror.org/023rnh198 Alberta Livestock and Meat Agency'), (31823, 'https://ror.org/023s10w93', 'en', 1, 'https://ror.org/023s10w93 Ministry of Sustainable Development, Environment and the Fight against Climate Change'), (31824, 'https://ror.org/023te5r95', 'en', 1, 'https://ror.org/023te5r95 Fifth Affiliated Hospital of Sun Yat-sen University'), (31825, 'https://ror.org/023wsvq95', 'en', 1, 'https://ror.org/023wsvq95 Department of Foreign Affairs and Trade'), (31826, 'https://ror.org/023wx0t90', 'en', 1, 'https://ror.org/023wx0t90 Ministry of Environment, Forests and Climate Change'), (31827, 'https://ror.org/023xh4g85', 'no_lang_code', 1, 'https://ror.org/023xh4g85 Eutecus (United States)'), (31828, 'https://ror.org/023xmtf12', 'en', 1, 'https://ror.org/023xmtf12 Assemblea delle Donne per lo Sviluppo e la Lotta all''Esclusione Sociale Assembly of Women for Development and the Struggle against Social Exclusion'), (31829, 'https://ror.org/023xrdj21', 'en', 1, 'https://ror.org/023xrdj21 International Mental Health Research Organization'), (31830, 'https://ror.org/023zamm70', 'en', 1, 'https://ror.org/023zamm70 CANDU Owners Group'), (31831, 'https://ror.org/023zmfm94', 'fr', 1, 'https://ror.org/023zmfm94 Société Géologique de France'), (31832, 'https://ror.org/0240caq72', 'no_lang_code', 1, 'https://ror.org/0240caq72 Contship Italia (Italy)'), (31833, 'https://ror.org/0240wfg28', 'no_lang_code', 1, 'https://ror.org/0240wfg28 MTS Technologies (United States)'), (31834, 'https://ror.org/02417p338', 'en', 1, 'https://ror.org/02417p338 Parkinson''s UK'), (31835, 'https://ror.org/0241w9k67', 'ro', 1, 'https://ror.org/0241w9k67 Institutul de Cercetare-Dezvoltare pentru Protecţia Plantelor'), (31836, 'https://ror.org/0242vta36', 'en', 1, 'https://ror.org/0242vta36 University of Pittsburgh at Titusville'), (31837, 'https://ror.org/0245w0f92', 'no_lang_code', 1, 'https://ror.org/0245w0f92 Phantom Design (United States)'), (31838, 'https://ror.org/0248qb926', 'es', 1, 'https://ror.org/0248qb926 Fundación Mapfre'), (31839, 'https://ror.org/024arnh55', 'no_lang_code', 1, 'https://ror.org/024arnh55 Solid State Scientific Corporation (United States)'), (31840, 'https://ror.org/024ctqw02', 'en', 1, 'https://ror.org/024ctqw02 Korea Military Academy 대한민국 육군사관학교'), (31841, 'https://ror.org/024dc0f12', 'no_lang_code', 1, 'https://ror.org/024dc0f12 HeidelbergCement (Canada)'), (31842, 'https://ror.org/024e9aw38', 'en', 1, 'https://ror.org/024e9aw38 European CanCer Organisation'), (31843, 'https://ror.org/024eb7n23', 'no_lang_code', 1, 'https://ror.org/024eb7n23 Prism Computational Sciences (United States)'), (31844, 'https://ror.org/024efz335', 'no_lang_code', 1, 'https://ror.org/024efz335 Innovative Energy Solution (United States)'), (31845, 'https://ror.org/024fgbf65', 'no_lang_code', 1, 'https://ror.org/024fgbf65 HEM Technologies (United States)'), (31846, 'https://ror.org/024gx1m25', 'no_lang_code', 1, 'https://ror.org/024gx1m25 IntelliWork (Sweden)'), (31847, 'https://ror.org/024h8p458', 'es', 1, 'https://ror.org/024h8p458 Ministerio de Salud'), (31848, 'https://ror.org/024hwtz39', 'no_lang_code', 1, 'https://ror.org/024hwtz39 SenseAir (Sweden)'), (31849, 'https://ror.org/024nxr378', 'no_lang_code', 1, 'https://ror.org/024nxr378 Avineon (United States)'), (31850, 'https://ror.org/024p99359', 'no_lang_code', 1, 'https://ror.org/024p99359 BainUltra (Canada)'), (31851, 'https://ror.org/024s1p860', 'no_lang_code', 1, 'https://ror.org/024s1p860 NanoDesign (Slovakia)'), (31852, 'https://ror.org/024tm3y55', 'no_lang_code', 1, 'https://ror.org/024tm3y55 Glonatech (Greece)'), (31853, 'https://ror.org/024vtv124', 'hu', 1, 'https://ror.org/024vtv124 Enciklopédia Kiadó'), (31854, 'https://ror.org/024w82g14', 'no_lang_code', 1, 'https://ror.org/024w82g14 GeneSiC Semiconductor (United States)'), (31855, 'https://ror.org/024wcbg54', 'no_lang_code', 1, 'https://ror.org/024wcbg54 Free2move (Sweden)'), (31856, 'https://ror.org/024x8v141', 'en', 1, 'https://ror.org/024x8v141 Shandong Mental Health Center'), (31857, 'https://ror.org/024zyky79', 'no_lang_code', 1, 'https://ror.org/024zyky79 Network Sensing Technologies (United States)'), (31858, 'https://ror.org/0251djz27', 'en', 1, 'https://ror.org/0251djz27 Cabarrus College of Health Sciences'), (31859, 'https://ror.org/02543xy77', 'no_lang_code', 1, 'https://ror.org/02543xy77 Abaris Training (United States)'), (31860, 'https://ror.org/0256rxv90', 'en', 1, 'https://ror.org/0256rxv90 Economic Review Foundation'), (31861, 'https://ror.org/02585xs81', 'no_lang_code', 1, 'https://ror.org/02585xs81 Black Laboratories (United States)'), (31862, 'https://ror.org/0259vv330', 'en', 1, 'https://ror.org/0259vv330 International Centre for Diffraction Data'), (31863, 'https://ror.org/025a5nc26', 'no_lang_code', 1, 'https://ror.org/025a5nc26 JEM Engineering (United States)'), (31864, 'https://ror.org/025ct3y55', 'no_lang_code', 1, 'https://ror.org/025ct3y55 TechSource (United States)'), (31865, 'https://ror.org/025cy1d38', 'en', 1, 'https://ror.org/025cy1d38 Department of Health Social Services and Public Safety'), (31866, 'https://ror.org/025e41s54', 'no_lang_code', 1, 'https://ror.org/025e41s54 Spectral Energies (United States)'), (31867, 'https://ror.org/025gg5e98', 'en', 1, 'https://ror.org/025gg5e98 Healis Sekhsaria Institute For Public Health'), (31868, 'https://ror.org/025jhd967', 'no_lang_code', 1, 'https://ror.org/025jhd967 Systems, Applications & Products in Data Processing (Canada)'), (31869, 'https://ror.org/025jq2275', 'no_lang_code', 1, 'https://ror.org/025jq2275 TransAlta (Canada)'), (31870, 'https://ror.org/025n1fp68', 'pt', 1, 'https://ror.org/025n1fp68 Institute of Aeronautics and Space Instituto de Aeronáutica e Espaço'), (31871, 'https://ror.org/025nk1308', 'no_lang_code', 1, 'https://ror.org/025nk1308 Sectra (Sweden)'), (31872, 'https://ror.org/025nrv979', 'no_lang_code', 1, 'https://ror.org/025nrv979 Phygen (United States)'), (31873, 'https://ror.org/025pqzv51', 'en', 1, 'https://ror.org/025pqzv51 QMedic'), (31874, 'https://ror.org/025q90g47', 'no_lang_code', 1, 'https://ror.org/025q90g47 Grieg Seafood (Canada)'), (31875, 'https://ror.org/025qfq989', 'no_lang_code', 1, 'https://ror.org/025qfq989 Villa Pro (Slovakia)'), (31876, 'https://ror.org/025qv0671', 'en', 1, 'https://ror.org/025qv0671 North West Cancer Research'), (31877, 'https://ror.org/025qyhe63', 'no_lang_code', 1, 'https://ror.org/025qyhe63 Advanced Powder Solutions (United States)'), (31878, 'https://ror.org/025qzmf95', 'no_lang_code', 1, 'https://ror.org/025qzmf95 Logikos (United States)'), (31879, 'https://ror.org/025ras206', 'en', 1, 'https://ror.org/025ras206 Ningbo Municipal People''s Government'), (31880, 'https://ror.org/025rxfw41', 'no_lang_code', 1, 'https://ror.org/025rxfw41 Semantic Designs (United States)'), (31881, 'https://ror.org/025t5fr72', 'no_lang_code', 1, 'https://ror.org/025t5fr72 Viscogel (Sweden)'), (31882, 'https://ror.org/025v1gy78', 'no_lang_code', 1, 'https://ror.org/025v1gy78 Crown Investments Corporation (Canada)'), (31883, 'https://ror.org/025whmn93', 'en', 1, 'https://ror.org/025whmn93 Transport for Greater Manchester'), (31884, 'https://ror.org/025yjyh61', 'no_lang_code', 1, 'https://ror.org/025yjyh61 Bioprocess Control (Sweden)'), (31885, 'https://ror.org/025z7wk46', 'no_lang_code', 1, 'https://ror.org/025z7wk46 Gu Holding (Sweden)'), (31886, 'https://ror.org/0265bng15', 'no_lang_code', 1, 'https://ror.org/0265bng15 Pioneering Decisive Solutions (United States)'), (31887, 'https://ror.org/02675s371', 'en', 1, 'https://ror.org/02675s371 Japan BCG Laboratory 日本ビーシージー製造株式会社'), (31888, 'https://ror.org/0267nkd62', 'en', 1, 'https://ror.org/0267nkd62 Higher Education Academy'), (31889, 'https://ror.org/0267rbx05', 'hu', 1, 'https://ror.org/0267rbx05 Baár-Madas Református Gimnázium'), (31890, 'https://ror.org/0268acg39', 'no_lang_code', 1, 'https://ror.org/0268acg39 SCS Energy (United States)'), (31891, 'https://ror.org/0268nwh16', 'en', 1, 'https://ror.org/0268nwh16 Carroll Center for the Blind'), (31892, 'https://ror.org/0268pvz05', 'no_lang_code', 1, 'https://ror.org/0268pvz05 PnP Innovations (United States)'), (31893, 'https://ror.org/026bqfq17', 'en', 1, 'https://ror.org/026bqfq17 Second Affiliated Hospital of Zhengzhou University'), (31894, 'https://ror.org/026d26k38', 'no_lang_code', 1, 'https://ror.org/026d26k38 D-Star Engineering (United States)'), (31895, 'https://ror.org/026d6ma13', 'pt', 1, 'https://ror.org/026d6ma13 Fundação de Amparo à Pesquisa do Estado do Amazonas'), (31896, 'https://ror.org/026djmp70', 'no_lang_code', 1, 'https://ror.org/026djmp70 RayBiotech (China)'), (31897, 'https://ror.org/026fd2357', 'en', 1, 'https://ror.org/026fd2357 Southwest Bible College and Seminary'), (31898, 'https://ror.org/026hjc247', 'en', 1, 'https://ror.org/026hjc247 Florida Southern College Universidad de Florida del Sur'), (31899, 'https://ror.org/026k6c650', 'no_lang_code', 1, 'https://ror.org/026k6c650 Orielle (United States)'), (31900, 'https://ror.org/026m4hd24', 'en', 1, 'https://ror.org/026m4hd24 Kidney Health Australia'), (31901, 'https://ror.org/026mgjd21', 'no_lang_code', 1, 'https://ror.org/026mgjd21 bioMérieux (India)'), (31902, 'https://ror.org/026p72y65', 'no_lang_code', 1, 'https://ror.org/026p72y65 Material (Belgium)'), (31903, 'https://ror.org/026rg9t92', 'no_lang_code', 1, 'https://ror.org/026rg9t92 PolyK Technologies (United States)'), (31904, 'https://ror.org/026tmj997', 'no_lang_code', 1, 'https://ror.org/026tmj997 Materials Sciences (United States)'), (31905, 'https://ror.org/026tvjz61', 'sv', 1, 'https://ror.org/026tvjz61 ATK Arbetstagarkonsultation'), (31906, 'https://ror.org/026txtp63', 'no_lang_code', 1, 'https://ror.org/026txtp63 Ineos (United States)'), (31907, 'https://ror.org/026v53e29', 'en', 1, 'https://ror.org/026v53e29 National IT industry Promotion Agency 정보통신산업진흥원'), (31908, 'https://ror.org/026venb53', 'no_lang_code', 1, 'https://ror.org/026venb53 Huawei Technologies (Canada)'), (31909, 'https://ror.org/026x8jh45', 'en', 1, 'https://ror.org/026x8jh45 Dutch Centre for Field Ornithology Niederländisches Zentrum für Feldornithologie'), (31910, 'https://ror.org/026xacc21', 'no_lang_code', 1, 'https://ror.org/026xacc21 Thoth Technology (Canada)'), (31911, 'https://ror.org/026yx1y36', 'no_lang_code', 1, 'https://ror.org/026yx1y36 Ozma (Sweden)'), (31912, 'https://ror.org/026z1v086', 'en', 1, 'https://ror.org/026z1v086 Lasell College'), (31913, 'https://ror.org/026zht694', 'pt', 1, 'https://ror.org/026zht694 Fundação de Amparo à Pesquisa do Estado do Piauí'), (31914, 'https://ror.org/026zxn394', 'en', 1, 'https://ror.org/026zxn394 Centre for Integrated Research in the Rural Environment'), (31915, 'https://ror.org/02704qw51', 'en', 1, 'https://ror.org/02704qw51 Wellcome Centre for Human Neuroimaging'), (31916, 'https://ror.org/0271r8814', 'no_lang_code', 1, 'https://ror.org/0271r8814 Kion Defense Technologies (United States)'), (31917, 'https://ror.org/0274e5q02', 'en', 1, 'https://ror.org/0274e5q02 Boston Conservatory Conservatoire de boston'), (31918, 'https://ror.org/0276qgf45', 'no_lang_code', 1, 'https://ror.org/0276qgf45 iBeam Materials (United States)'), (31919, 'https://ror.org/027754r66', 'en', 1, 'https://ror.org/027754r66 Novo Nordisk UK Research Foundation'), (31920, 'https://ror.org/027990s04', 'no_lang_code', 1, 'https://ror.org/027990s04 Black River Systems (United States)'), (31921, 'https://ror.org/0279n3m18', 'sr', 1, 'https://ror.org/0279n3m18 Pokrajinski Sekretarijat za Nauku i Tehnološki Razvoj Provincial Secretariat for Science and Technological Development'), (31922, 'https://ror.org/027c2h907', 'es', 1, 'https://ror.org/027c2h907 Red de Investigación Cardiovascular'), (31923, 'https://ror.org/027epca68', 'en', 1, 'https://ror.org/027epca68 China Institute in America'), (31924, 'https://ror.org/027g2v939', 'en', 1, 'https://ror.org/027g2v939 Vermont Department of Disabilities Aging and Independent Living'), (31925, 'https://ror.org/027gw7s27', 'no_lang_code', 1, 'https://ror.org/027gw7s27 Taizhou Municipal Hospital'), (31926, 'https://ror.org/027hreq63', 'nl', 1, 'https://ror.org/027hreq63 Koninklijke Scholengemeenschap'), (31927, 'https://ror.org/027jcmq30', 'no_lang_code', 1, 'https://ror.org/027jcmq30 Aeronix (United States)'), (31928, 'https://ror.org/027npbp21', 'hu', 1, 'https://ror.org/027npbp21 Vas Megyei Kormányhivatalt'), (31929, 'https://ror.org/027qmp433', 'no_lang_code', 1, 'https://ror.org/027qmp433 Conlogic (Sweden)'), (31930, 'https://ror.org/027qy6d19', 'es', 1, 'https://ror.org/027qy6d19 Centro Regional de Selección y Reproducción Animal'), (31931, 'https://ror.org/027r7x563', 'no_lang_code', 1, 'https://ror.org/027r7x563 Net Squared (United States)'), (31932, 'https://ror.org/027s74w23', 'no_lang_code', 1, 'https://ror.org/027s74w23 Damaskos (United States)'), (31933, 'https://ror.org/027smmx64', 'no_lang_code', 1, 'https://ror.org/027smmx64 Materials Systems (United States)'), (31934, 'https://ror.org/027wsdy85', 'no_lang_code', 1, 'https://ror.org/027wsdy85 Digital Optics Technologies (United States)'), (31935, 'https://ror.org/027xav248', 'en', 1, 'https://ror.org/027xav248 Finnish Cultural Foundation'), (31936, 'https://ror.org/027xe4b29', 'no_lang_code', 1, 'https://ror.org/027xe4b29 Renco Group (United States)'), (31937, 'https://ror.org/027yna928', 'no_lang_code', 1, 'https://ror.org/027yna928 Natures (Slovakia)'), (31938, 'https://ror.org/027z7k446', 'no_lang_code', 1, 'https://ror.org/027z7k446 B.E. Meyers & Co (United States)'), (31939, 'https://ror.org/0285fde08', 'en', 1, 'https://ror.org/0285fde08 Jain Foundation'), (31940, 'https://ror.org/0286gjk84', 'en', 1, 'https://ror.org/0286gjk84 Canadian Seed Growers Association'), (31941, 'https://ror.org/02878nd97', 'no_lang_code', 1, 'https://ror.org/02878nd97 Canadian Pacific Railway (Canada)'), (31942, 'https://ror.org/0287gd772', 'no_lang_code', 1, 'https://ror.org/0287gd772 New Potato Technologies (United States)'), (31943, 'https://ror.org/0287jnj14', 'en', 1, 'https://ror.org/0287jnj14 Centro de Investigação em Saúde de Manhiça Manhiça Health Research Centre'), (31944, 'https://ror.org/0287k2v97', 'no_lang_code', 1, 'https://ror.org/0287k2v97 Hal Technology (United States)'), (31945, 'https://ror.org/028876725', 'no_lang_code', 1, 'https://ror.org/028876725 EpiWorks (United States)'), (31946, 'https://ror.org/0288pey56', 'no_lang_code', 1, 'https://ror.org/0288pey56 KLSS (United States)'), (31947, 'https://ror.org/0288ss544', 'no_lang_code', 1, 'https://ror.org/0288ss544 Glomics (United States)'), (31948, 'https://ror.org/0288xhz86', 'no_lang_code', 1, 'https://ror.org/0288xhz86 Evolva Holding (United States)'), (31949, 'https://ror.org/0289akc76', 'no_lang_code', 1, 'https://ror.org/0289akc76 Canatec (Canada)'), (31950, 'https://ror.org/0289d9s26', 'no_lang_code', 1, 'https://ror.org/0289d9s26 Robert Heffley Engineering (United States)'), (31951, 'https://ror.org/028btas66', 'no_lang_code', 1, 'https://ror.org/028btas66 Applied Physical Electronics (United States)'), (31952, 'https://ror.org/028dx7d12', 'no_lang_code', 1, 'https://ror.org/028dx7d12 Rether Networks (United States)'), (31953, 'https://ror.org/028e6y556', 'en', 1, 'https://ror.org/028e6y556 Tumour Institute of Tuscany'), (31954, 'https://ror.org/028erp057', 'no_lang_code', 1, 'https://ror.org/028erp057 Coherent Technical Services (United States)'), (31955, 'https://ror.org/028g62054', 'no_lang_code', 1, 'https://ror.org/028g62054 Replisaurus Technologies (Sweden)'), (31956, 'https://ror.org/028gxg804', 'no_lang_code', 1, 'https://ror.org/028gxg804 Catalytic Materials (United States)'), (31957, 'https://ror.org/028hejq20', 'no_lang_code', 1, 'https://ror.org/028hejq20 LinkNet (United States)'), (31958, 'https://ror.org/028hvvb93', 'sv', 1, 'https://ror.org/028hvvb93 Svenska Uppfinnareföreningen'), (31959, 'https://ror.org/028jdjq42', 'no_lang_code', 1, 'https://ror.org/028jdjq42 Dominca (United States)'), (31960, 'https://ror.org/028jkr794', 'no_lang_code', 1, 'https://ror.org/028jkr794 PrimeKey Solutions (Sweden)'), (31961, 'https://ror.org/028kxkn33', 'no_lang_code', 1, 'https://ror.org/028kxkn33 Brayton Energy (United States)'), (31962, 'https://ror.org/028pagn69', 'en', 1, 'https://ror.org/028pagn69 London Metropolitan Archives'), (31963, 'https://ror.org/028pgd321', 'en', 1, 'https://ror.org/028pgd321 Affiliated Hospital of Jiangsu University'), (31964, 'https://ror.org/028s8e034', 'no_lang_code', 1, 'https://ror.org/028s8e034 Utilities Kingston (Canada)'), (31965, 'https://ror.org/028vf7c32', 'en', 1, 'https://ror.org/028vf7c32 Africa Innovations Institute'), (31966, 'https://ror.org/0290hax27', 'en', 1, 'https://ror.org/0290hax27 Gatsby Charitable Foundation'), (31967, 'https://ror.org/0290taq42', 'no_lang_code', 1, 'https://ror.org/0290taq42 Applied Nano Surfaces (Sweden)'), (31968, 'https://ror.org/02951hv89', 'no_lang_code', 1, 'https://ror.org/02951hv89 Campbell Scientific (Canada)'), (31969, 'https://ror.org/02968zb41', 'no_lang_code', 1, 'https://ror.org/02968zb41 Assa Abloy (United States)'), (31970, 'https://ror.org/0296ss903', 'en', 1, 'https://ror.org/0296ss903 Alberta Children’s Hospital Foundation'), (31971, 'https://ror.org/0297rgf95', 'no_lang_code', 1, 'https://ror.org/0297rgf95 OR Concepts Applied (United States)'), (31972, 'https://ror.org/0298hp073', 'en', 1, 'https://ror.org/0298hp073 NIHR Liverpool Pancreatic Biomedical Research Unit'), (31973, 'https://ror.org/0298xnj14', 'en', 1, 'https://ror.org/0298xnj14 Kentucky Educational Television'), (31974, 'https://ror.org/02990z368', 'no_lang_code', 1, 'https://ror.org/02990z368 MicroXact (United States)'), (31975, 'https://ror.org/029a84r94', 'no_lang_code', 1, 'https://ror.org/029a84r94 Psi Chi'), (31976, 'https://ror.org/029acmk59', 'en', 1, 'https://ror.org/029acmk59 Baptist Community Ministries'), (31977, 'https://ror.org/029dygd35', 'en', 1, 'https://ror.org/029dygd35 National Institutes of Biotechnology Malaysia'), (31978, 'https://ror.org/029e47x73', 'en', 1, 'https://ror.org/029e47x73 Georgetown University in Qatar جامعة جورجتاون'), (31979, 'https://ror.org/029jacn25', 'no_lang_code', 1, 'https://ror.org/029jacn25 SiEnergy Systems (United States)'), (31980, 'https://ror.org/029k5s383', 'en', 1, 'https://ror.org/029k5s383 Association canadienne des télécommunications sans fil Canadian Wireless Telecommunications Association'), (31981, 'https://ror.org/029ke3y74', 'en', 1, 'https://ror.org/029ke3y74 SEE Center'), (31982, 'https://ror.org/029m27614', 'no_lang_code', 1, 'https://ror.org/029m27614 Out of the Fog Research (United States)'), (31983, 'https://ror.org/029ncv135', 'no_lang_code', 1, 'https://ror.org/029ncv135 WeldQC (United States)'), (31984, 'https://ror.org/029qxj390', 'no_lang_code', 1, 'https://ror.org/029qxj390 AET (United States)'), (31985, 'https://ror.org/029xftc44', 'no_lang_code', 1, 'https://ror.org/029xftc44 Innovative Wireless Technologies (United States)'), (31986, 'https://ror.org/029xgej46', 'en', 1, 'https://ror.org/029xgej46 Orthopaedic Research and Education Foundation'), (31987, 'https://ror.org/029yh7e40', 'en', 1, 'https://ror.org/029yh7e40 District of Columbia Water and Sewer Authority'), (31988, 'https://ror.org/029yy5f63', 'en', 1, 'https://ror.org/029yy5f63 Northwest College of Art & Design'), (31989, 'https://ror.org/029zfr186', 'no_lang_code', 1, 'https://ror.org/029zfr186 Synkola (Slovakia)'), (31990, 'https://ror.org/02a3gym89', 'no_lang_code', 1, 'https://ror.org/02a3gym89 MTECH Laboratories (United States)'), (31991, 'https://ror.org/02a3w7r50', 'en', 1, 'https://ror.org/02a3w7r50 Hereditary Disease Foundation'), (31992, 'https://ror.org/02a3z0p48', 'en', 1, 'https://ror.org/02a3z0p48 Federal Council'), (31993, 'https://ror.org/02a4k9d45', 'en', 1, 'https://ror.org/02a4k9d45 Blooms Syndrome Foundation'), (31994, 'https://ror.org/02a5smf05', 'en', 1, 'https://ror.org/02a5smf05 Cockcroft Institute'), (31995, 'https://ror.org/02a87jr47', 'no_lang_code', 1, 'https://ror.org/02a87jr47 ASR (United States)'), (31996, 'https://ror.org/02a9kj848', 'en', 1, 'https://ror.org/02a9kj848 Södertälje Municipality'), (31997, 'https://ror.org/02aadsr63', 'en', 1, 'https://ror.org/02aadsr63 Independent Ecological Centre'), (31998, 'https://ror.org/02ad7ap24', 'en', 1, 'https://ror.org/02ad7ap24 Qujing Normal University 曲靖师范学院'), (31999, 'https://ror.org/02adffe18', 'no_lang_code', 1, 'https://ror.org/02adffe18 Sigma-K (United States)'), (32000, 'https://ror.org/02ae31880', 'no_lang_code', 1, 'https://ror.org/02ae31880 Qualcomm (Canada)'), (32001, 'https://ror.org/02ae4zw82', 'en', 1, 'https://ror.org/02ae4zw82 American Precision Museum'), (32002, 'https://ror.org/02aeyw607', 'no_lang_code', 1, 'https://ror.org/02aeyw607 Qrodo (Sweden)'), (32003, 'https://ror.org/02agp0d04', 'en', 1, 'https://ror.org/02agp0d04 Link Foundation'), (32004, 'https://ror.org/02aj8hb75', 'no_lang_code', 1, 'https://ror.org/02aj8hb75 Trade Extensions (Sweden)'), (32005, 'https://ror.org/02aj9jk84', 'en', 1, 'https://ror.org/02aj9jk84 Jiangsu Provincial Authorities Hospital 江苏省省级机关医院'), (32006, 'https://ror.org/02ajj7j73', 'no_lang_code', 1, 'https://ror.org/02ajj7j73 BIO (Canada)'), (32007, 'https://ror.org/02ajxzc79', 'no_lang_code', 1, 'https://ror.org/02ajxzc79 Thar Energy (United States)'), (32008, 'https://ror.org/02akadd86', 'no_lang_code', 1, 'https://ror.org/02akadd86 Stedfast (Canada)'), (32009, 'https://ror.org/02amd8949', 'no_lang_code', 1, 'https://ror.org/02amd8949 Demeton Technologies (United States)'), (32010, 'https://ror.org/02ap4eq27', 'no_lang_code', 1, 'https://ror.org/02ap4eq27 Origin Energy (Australia)'), (32011, 'https://ror.org/02asacd21', 'no_lang_code', 1, 'https://ror.org/02asacd21 QPS (Netherlands)'), (32012, 'https://ror.org/02av38n71', 'de', 1, 'https://ror.org/02av38n71 HELIOS St. Elisabeth Klinik Oberhausen'), (32013, 'https://ror.org/02axhzy41', 'en', 1, 'https://ror.org/02axhzy41 American Society for Laser Medicine and Surgery'), (32014, 'https://ror.org/02ayg6516', 'en', 1, 'https://ror.org/02ayg6516 Guangxi University of Finance and Economics 广西财经学院'), (32015, 'https://ror.org/02ayh6y70', 'no_lang_code', 1, 'https://ror.org/02ayh6y70 Husqvarna (Sweden)'), (32016, 'https://ror.org/02b1qyv69', 'en', 1, 'https://ror.org/02b1qyv69 Devlet Planlama Teşkilatı State Planning Organization'), (32017, 'https://ror.org/02b207r52', 'en', 1, 'https://ror.org/02b207r52 Ministry of Science and Technology'), (32018, 'https://ror.org/02b2hzg62', 'sv', 1, 'https://ror.org/02b2hzg62 Rinkebyakademien'), (32019, 'https://ror.org/02b4me685', 'no_lang_code', 1, 'https://ror.org/02b4me685 Tokatsu Hospital'), (32020, 'https://ror.org/02b6qtv44', 'no_lang_code', 1, 'https://ror.org/02b6qtv44 Thermal Electronics (United States)'), (32021, 'https://ror.org/02bax5p58', 'no_lang_code', 1, 'https://ror.org/02bax5p58 Ionic Systems (United States)'), (32022, 'https://ror.org/02bck4b72', 'no_lang_code', 1, 'https://ror.org/02bck4b72 AMT Die Casting (Canada) Moulage sous pression AMT'), (32023, 'https://ror.org/02be22443', 'de', 1, 'https://ror.org/02be22443 Ferdinand-Braun-Institut, Leibniz-Institut für Höchstfrequenztechnik'), (32024, 'https://ror.org/02bffdv67', 'en', 1, 'https://ror.org/02bffdv67 Ministry of Education of the Republic of Belarus'), (32025, 'https://ror.org/02bh3n268', 'no_lang_code', 1, 'https://ror.org/02bh3n268 Midé Technology (United States)'), (32026, 'https://ror.org/02bhsam28', 'no_lang_code', 1, 'https://ror.org/02bhsam28 Computer Control Technology (Slovakia)'), (32027, 'https://ror.org/02bjb1a43', 'no_lang_code', 1, 'https://ror.org/02bjb1a43 GearWheel (Sweden)'), (32028, 'https://ror.org/02bmd7x67', 'en', 1, 'https://ror.org/02bmd7x67 British Pharmacological Society'), (32029, 'https://ror.org/02bnr9368', 'en', 1, 'https://ror.org/02bnr9368 Southern Technical College'), (32030, 'https://ror.org/02bssr922', 'no_lang_code', 1, 'https://ror.org/02bssr922 Shoestring Press (United States)'), (32031, 'https://ror.org/02btef130', 'no_lang_code', 1, 'https://ror.org/02btef130 F6S Network (United Kingdom)'), (32032, 'https://ror.org/02bvjeb84', 'en', 1, 'https://ror.org/02bvjeb84 Techmania Science Center'), (32033, 'https://ror.org/02by97j27', 'no_lang_code', 1, 'https://ror.org/02by97j27 Arca Progetti (Italy)'), (32034, 'https://ror.org/02byc7177', 'no_lang_code', 1, 'https://ror.org/02byc7177 Motor Design (United Kingdom)'), (32035, 'https://ror.org/02bz1zk40', 'no_lang_code', 1, 'https://ror.org/02bz1zk40 Design Net Engineering (United States)'), (32036, 'https://ror.org/02bzj4420', 'en', 1, 'https://ror.org/02bzj4420 Health Foundation'), (32037, 'https://ror.org/02c53vf48', 'no_lang_code', 1, 'https://ror.org/02c53vf48 Plant Sensory Systems (United States)'), (32038, 'https://ror.org/02c5gz222', 'no_lang_code', 1, 'https://ror.org/02c5gz222 Scientific Solutions Innovative Research and Engineering (United States)'), (32039, 'https://ror.org/02c944e82', 'en', 1, 'https://ror.org/02c944e82 St. Elizabeth Youngstown Hospital'), (32040, 'https://ror.org/02c9tf451', 'en', 1, 'https://ror.org/02c9tf451 Charles H. Revson Foundation'), (32041, 'https://ror.org/02c9zcr51', 'no_lang_code', 1, 'https://ror.org/02c9zcr51 Advanced Cerametrics (United States)'), (32042, 'https://ror.org/02caat392', 'en', 1, 'https://ror.org/02caat392 Multiple Sclerosis Research Australia'), (32043, 'https://ror.org/02cdzet69', 'en', 1, 'https://ror.org/02cdzet69 Federation of Finnish Learned Societies'), (32044, 'https://ror.org/02cg78r45', 'no_lang_code', 1, 'https://ror.org/02cg78r45 Visual Editor Consultants (United States)'), (32045, 'https://ror.org/02ch6zk08', 'en', 1, 'https://ror.org/02ch6zk08 Plant Production Research Institute'), (32046, 'https://ror.org/02chwny87', 'no_lang_code', 1, 'https://ror.org/02chwny87 Rockland Capital (United States)'), (32047, 'https://ror.org/02cj87r87', 'no_lang_code', 1, 'https://ror.org/02cj87r87 Pacific Rim Engineering (United States)'), (32048, 'https://ror.org/02cj8qz82', 'en', 1, 'https://ror.org/02cj8qz82 Nebraska Methodist College'), (32049, 'https://ror.org/02ckxxf86', 'no_lang_code', 1, 'https://ror.org/02ckxxf86 Digital Specialty Chemicals (Canada)'), (32050, 'https://ror.org/02cmxdd33', 'en', 1, 'https://ror.org/02cmxdd33 Kate''s Foundation'), (32051, 'https://ror.org/02cnc7158', 'no_lang_code', 1, 'https://ror.org/02cnc7158 Aerovel Corporation (United States)'), (32052, 'https://ror.org/02cr5sn51', 'no_lang_code', 1, 'https://ror.org/02cr5sn51 Guided Systems Technologies (United States)'), (32053, 'https://ror.org/02cwr7s69', 'nl', 1, 'https://ror.org/02cwr7s69 Stichting Astma Bestrijding'), (32054, 'https://ror.org/02cxh9170', 'no_lang_code', 1, 'https://ror.org/02cxh9170 Boston Engineering (United States)'), (32055, 'https://ror.org/02cybaz37', 'en', 1, 'https://ror.org/02cybaz37 PHG Foundation'), (32056, 'https://ror.org/02d2g0205', 'en', 1, 'https://ror.org/02d2g0205 NIHR Cambridge Dementia Biomedical Research Unit'), (32057, 'https://ror.org/02d540t02', 'en', 1, 'https://ror.org/02d540t02 Poliomyelitis Research Foundation'), (32058, 'https://ror.org/02d54v010', 'en', 1, 'https://ror.org/02d54v010 Black Sea Commission'), (32059, 'https://ror.org/02d58c802', 'en', 1, 'https://ror.org/02d58c802 Kidney & Urology Foundation of America'), (32060, 'https://ror.org/02d794w74', 'no_lang_code', 1, 'https://ror.org/02d794w74 Duslo (Slovakia)'), (32061, 'https://ror.org/02d79dn07', 'no_lang_code', 1, 'https://ror.org/02d79dn07 Valore (United States)'), (32062, 'https://ror.org/02d8hxb72', 'no_lang_code', 1, 'https://ror.org/02d8hxb72 Invariant Corporation (United States)'), (32063, 'https://ror.org/02d9dkk61', 'en', 1, 'https://ror.org/02d9dkk61 Gout Research Foundation'), (32064, 'https://ror.org/02d9kar35', 'no_lang_code', 1, 'https://ror.org/02d9kar35 Ellen (Sweden)'), (32065, 'https://ror.org/02damtp46', 'no_lang_code', 1, 'https://ror.org/02damtp46 AFFiRiS (Austria)'), (32066, 'https://ror.org/02dbz7n48', 'en', 1, 'https://ror.org/02dbz7n48 Ministry of Public Health Ministère de la Santé Publique'), (32067, 'https://ror.org/02dcjej90', 'no_lang_code', 1, 'https://ror.org/02dcjej90 RTDS Technologies (Canada)'), (32068, 'https://ror.org/02dcndt64', 'no_lang_code', 1, 'https://ror.org/02dcndt64 Rite-Solutions (United States)'), (32069, 'https://ror.org/02dcwa654', 'en', 1, 'https://ror.org/02dcwa654 Nacka Municipality'), (32070, 'https://ror.org/02ddbvr12', 'no_lang_code', 1, 'https://ror.org/02ddbvr12 MicroContinuum (United States)'), (32071, 'https://ror.org/02ddfy797', 'en', 1, 'https://ror.org/02ddfy797 82th Hospital of Pla'), (32072, 'https://ror.org/02de0za51', 'en', 1, 'https://ror.org/02de0za51 Vanguard University'), (32073, 'https://ror.org/02dfarm97', 'it', 1, 'https://ror.org/02dfarm97 Procoat'), (32074, 'https://ror.org/02dfyb978', 'en', 1, 'https://ror.org/02dfyb978 American Liver Foundation'), (32075, 'https://ror.org/02dh89n26', 'no_lang_code', 1, 'https://ror.org/02dh89n26 BerrieHill Research (United States)'), (32076, 'https://ror.org/02dhhsj48', 'no_lang_code', 1, 'https://ror.org/02dhhsj48 Blue Institute (Sweden)'), (32077, 'https://ror.org/02dj61c35', 'en', 1, 'https://ror.org/02dj61c35 British Society for Rheumatology'), (32078, 'https://ror.org/02djzdr35', 'no_lang_code', 1, 'https://ror.org/02djzdr35 Synfonica (United States)'), (32079, 'https://ror.org/02dk5kk54', 'en', 1, 'https://ror.org/02dk5kk54 Museum of Fine Arts'), (32080, 'https://ror.org/02dphc844', 'en', 1, 'https://ror.org/02dphc844 United States Sports Academy'), (32081, 'https://ror.org/02dr9de73', 'no_lang_code', 1, 'https://ror.org/02dr9de73 Brantford Energy (Canada)'), (32082, 'https://ror.org/02dtjfs50', 'en', 1, 'https://ror.org/02dtjfs50 Merck Institute for Science Education'), (32083, 'https://ror.org/02dv36z82', 'no_lang_code', 1, 'https://ror.org/02dv36z82 NatriSoft (Netherlands)'), (32084, 'https://ror.org/02dx2xm20', 'en', 1, 'https://ror.org/02dx2xm20 Xiangyang Central Hospital'), (32085, 'https://ror.org/02dxgtw53', 'no_lang_code', 1, 'https://ror.org/02dxgtw53 Unitechnologies (Switzerland)'), (32086, 'https://ror.org/02dyrpb22', 'en', 1, 'https://ror.org/02dyrpb22 Office de protection de la nature de Toronto et de la région Toronto and Region Conservation Authority'), (32087, 'https://ror.org/02dzzer59', 'no_lang_code', 1, 'https://ror.org/02dzzer59 Cha Corporation (United States)'), (32088, 'https://ror.org/02e10dg71', 'no_lang_code', 1, 'https://ror.org/02e10dg71 Fatigue Technology (United States)'), (32089, 'https://ror.org/02e1fjy29', 'no_lang_code', 1, 'https://ror.org/02e1fjy29 AFA Insurance (Sweden)'), (32090, 'https://ror.org/02e2erp81', 'en', 1, 'https://ror.org/02e2erp81 Grayson-Jockey Club Research Foundation'), (32091, 'https://ror.org/02e998f13', 'en', 1, 'https://ror.org/02e998f13 Equal Arts'), (32092, 'https://ror.org/02e9qns56', 'no_lang_code', 1, 'https://ror.org/02e9qns56 Sustainable Innovation (Sweden)'), (32093, 'https://ror.org/02ea4nx72', 'en', 1, 'https://ror.org/02ea4nx72 East Asian Observatory'), (32094, 'https://ror.org/02eb31840', 'en', 1, 'https://ror.org/02eb31840 Greensboro College'), (32095, 'https://ror.org/02ebg5q27', 'en', 1, 'https://ror.org/02ebg5q27 Glenn Foundation for Medical Research'), (32096, 'https://ror.org/02edr8z79', 'en', 1, 'https://ror.org/02edr8z79 Thailand Graduate Institute of Science and Technology โครงการทุนสถาบันบัณฑิตวิทยาศาสตร์และเทคโนโลยีไทย'), (32097, 'https://ror.org/02efksf92', 'no_lang_code', 1, 'https://ror.org/02efksf92 Aetion (United States)'), (32098, 'https://ror.org/02egtfm54', 'pt', 1, 'https://ror.org/02egtfm54 Instituto de Biologia do Exército'), (32099, 'https://ror.org/02eha7521', 'no_lang_code', 1, 'https://ror.org/02eha7521 Blue Mobile Systems (Sweden)'), (32100, 'https://ror.org/02ekkcr74', 'de', 1, 'https://ror.org/02ekkcr74 Ludwig Boltzmann für Klinische Neurobiologie'), (32101, 'https://ror.org/02eq82485', 'no_lang_code', 1, 'https://ror.org/02eq82485 Combined Computer Services (Netherlands)'), (32102, 'https://ror.org/02eqsb844', 'en', 1, 'https://ror.org/02eqsb844 Canada West Ski Areas Association'), (32103, 'https://ror.org/02erd4b86', 'no_lang_code', 1, 'https://ror.org/02erd4b86 Engineering and Software System Solutions (United States)'), (32104, 'https://ror.org/02esv1036', 'no_lang_code', 1, 'https://ror.org/02esv1036 Ingenieursburo Balvers (Netherlands)'), (32105, 'https://ror.org/02et2g954', 'sk', 1, 'https://ror.org/02et2g954 Centrum Voľného Casu'), (32106, 'https://ror.org/02etpnx57', 'no_lang_code', 1, 'https://ror.org/02etpnx57 Battlespace Simulations (United States)'); INSERT INTO `rors` VALUES (32107, 'https://ror.org/02evahm41', 'en', 1, 'https://ror.org/02evahm41 Biomasa Association'), (32108, 'https://ror.org/02ewzby52', 'en', 1, 'https://ror.org/02ewzby52 Berlin Brandenburg Institute of Advanced Biodiversity Research Berlin-Brandenburgisches Institut für Biodiversitätsforschung'), (32109, 'https://ror.org/02ex4jy25', 'no_lang_code', 1, 'https://ror.org/02ex4jy25 iRobot (United States)'), (32110, 'https://ror.org/02f36qr48', 'en', 1, 'https://ror.org/02f36qr48 University of Pharmacy Yangon ဆေးဝါး တက္ကသိုလ် ရန်ကုန်'), (32111, 'https://ror.org/02f3xk561', 'en', 1, 'https://ror.org/02f3xk561 Cancer Research Institute'), (32112, 'https://ror.org/02f76s144', 'no_lang_code', 1, 'https://ror.org/02f76s144 PlainSight Group (United States)'), (32113, 'https://ror.org/02f7dt951', 'no_lang_code', 1, 'https://ror.org/02f7dt951 RTI (Sweden)'), (32114, 'https://ror.org/02f8z2f57', 'en', 1, 'https://ror.org/02f8z2f57 First People’s Hospital of Zunyi'), (32115, 'https://ror.org/02f9pmn17', 'no_lang_code', 1, 'https://ror.org/02f9pmn17 Gibson Energy (Canada)'), (32116, 'https://ror.org/02fa0f492', 'en', 1, 'https://ror.org/02fa0f492 United Nations University Institute on Comparative Regional Integration Studies'), (32117, 'https://ror.org/02facr303', 'en', 1, 'https://ror.org/02facr303 Canadian Federation of Humane Societies'), (32118, 'https://ror.org/02fcst635', 'no_lang_code', 1, 'https://ror.org/02fcst635 AFreeze (Austria)'), (32119, 'https://ror.org/02fd57127', 'no_lang_code', 1, 'https://ror.org/02fd57127 Criterion Health (United States)'), (32120, 'https://ror.org/02fd77q25', 'en', 1, 'https://ror.org/02fd77q25 Council of Forest Industries'), (32121, 'https://ror.org/02ff5rr83', 'en', 1, 'https://ror.org/02ff5rr83 National Society for Histotechnology'), (32122, 'https://ror.org/02fg2n207', 'no_lang_code', 1, 'https://ror.org/02fg2n207 Blue Wolf Capital Partners (United States)'), (32123, 'https://ror.org/02fh4wa11', 'no_lang_code', 1, 'https://ror.org/02fh4wa11 RPA Electronic Solutions (United States)'), (32124, 'https://ror.org/02fjj1z35', 'en', 1, 'https://ror.org/02fjj1z35 Caribbean Research and Management of Biodiversity Foundation'), (32125, 'https://ror.org/02fkk6k65', 'en', 1, 'https://ror.org/02fkk6k65 Ministry of Culture, Sports and Tourism 대한민국 문화체육관광부'), (32126, 'https://ror.org/02fkt1r75', 'no_lang_code', 1, 'https://ror.org/02fkt1r75 Pharmatest (Finland)'), (32127, 'https://ror.org/02fm3s653', 'sv', 1, 'https://ror.org/02fm3s653 Svensk Form'), (32128, 'https://ror.org/02fmdkd55', 'no_lang_code', 1, 'https://ror.org/02fmdkd55 Nibie Ab (Sweden)'), (32129, 'https://ror.org/02fnwes63', 'no_lang_code', 1, 'https://ror.org/02fnwes63 ASRC Federal Analytical Service (United States)'), (32130, 'https://ror.org/02fnywa89', 'en', 1, 'https://ror.org/02fnywa89 Ministerio de Salud y de Protección Social Ministry of Health and Social Protection'), (32131, 'https://ror.org/02fp2rz53', 'en', 1, 'https://ror.org/02fp2rz53 New Hampshire Farm Museum'), (32132, 'https://ror.org/02fsqa093', 'en', 1, 'https://ror.org/02fsqa093 Korea Institute of Drug Safety and Risk Management'), (32133, 'https://ror.org/02fsqj683', 'en', 1, 'https://ror.org/02fsqj683 Accelerate Brain Cancer Cure'), (32134, 'https://ror.org/02ftdsn70', 'no_lang_code', 1, 'https://ror.org/02ftdsn70 Taihe Hospital'), (32135, 'https://ror.org/02fvtx219', 'en', 1, 'https://ror.org/02fvtx219 Ford Foundation'), (32136, 'https://ror.org/02fym2550', 'no_lang_code', 1, 'https://ror.org/02fym2550 Codagenix (United States)'), (32137, 'https://ror.org/02g0mbf40', 'no_lang_code', 1, 'https://ror.org/02g0mbf40 Chai-Na-Ta (Canada)'), (32138, 'https://ror.org/02g0pbt71', 'no_lang_code', 1, 'https://ror.org/02g0pbt71 Intelligent Systems Technology (United States)'), (32139, 'https://ror.org/02g1cyr24', 'no_lang_code', 1, 'https://ror.org/02g1cyr24 Moody''s Corporation (United States)'), (32140, 'https://ror.org/02g36m681', 'es', 1, 'https://ror.org/02g36m681 Instituto Tecnológico de Soledad Atlántico'), (32141, 'https://ror.org/02g4e1v18', 'no_lang_code', 1, 'https://ror.org/02g4e1v18 Metabiota (Cameroon)'), (32142, 'https://ror.org/02g55p177', 'no_lang_code', 1, 'https://ror.org/02g55p177 Flow International Corporation (United States)'), (32143, 'https://ror.org/02g70zk77', 'no_lang_code', 1, 'https://ror.org/02g70zk77 BioEnergy International (Austria)'), (32144, 'https://ror.org/02g8tfh80', 'ms', 1, 'https://ror.org/02g8tfh80 Hospital Sarikei'), (32145, 'https://ror.org/02g8zn394', 'no_lang_code', 1, 'https://ror.org/02g8zn394 Nova Management (United States)'), (32146, 'https://ror.org/02g9c9v38', 'en', 1, 'https://ror.org/02g9c9v38 Aetna Foundation'), (32147, 'https://ror.org/02ga6ke46', 'en', 1, 'https://ror.org/02ga6ke46 Parteq Innovations (Canada)'), (32148, 'https://ror.org/02gbk8644', 'no_lang_code', 1, 'https://ror.org/02gbk8644 LRM Industries International (United States)'), (32149, 'https://ror.org/02gc7qc02', 'en', 1, 'https://ror.org/02gc7qc02 World Cancer Research Fund UK'), (32150, 'https://ror.org/02gd5t807', 'nl', 1, 'https://ror.org/02gd5t807 Christelijk Gymnasium Utrecht'), (32151, 'https://ror.org/02geyw402', 'no_lang_code', 1, 'https://ror.org/02geyw402 QorTek (United States)'), (32152, 'https://ror.org/02gfyfp86', 'no_lang_code', 1, 'https://ror.org/02gfyfp86 Calendula (Slovakia)'), (32153, 'https://ror.org/02gjczz49', 'no_lang_code', 1, 'https://ror.org/02gjczz49 Adlyfe (United States)'), (32154, 'https://ror.org/02gmy7y33', 'en', 1, 'https://ror.org/02gmy7y33 Temasek Defence Systems Institute'), (32155, 'https://ror.org/02gp2h315', 'no_lang_code', 1, 'https://ror.org/02gp2h315 FuelCell Energy (United States)'), (32156, 'https://ror.org/02gp85x20', 'en', 1, 'https://ror.org/02gp85x20 Carnegie Corporation of New York'), (32157, 'https://ror.org/02gq0fg61', 'en', 1, 'https://ror.org/02gq0fg61 Motor Neurone Disease Association'), (32158, 'https://ror.org/02gs17047', 'no_lang_code', 1, 'https://ror.org/02gs17047 HelioCaminus (Sweden)'), (32159, 'https://ror.org/02gsap059', 'no_lang_code', 1, 'https://ror.org/02gsap059 Carré Technologies (Canada)'), (32160, 'https://ror.org/02gsfxh78', 'no_lang_code', 1, 'https://ror.org/02gsfxh78 Envic Sense (Sweden)'), (32161, 'https://ror.org/02gsyjh62', 'fr', 1, 'https://ror.org/02gsyjh62 UP-Tex'), (32162, 'https://ror.org/02gt7fw23', 'no_lang_code', 1, 'https://ror.org/02gt7fw23 Burge Environmental (United States)'), (32163, 'https://ror.org/02gtbcv54', 'no_lang_code', 1, 'https://ror.org/02gtbcv54 Nexam Chemical (Sweden)'), (32164, 'https://ror.org/02gtcat87', 'no_lang_code', 1, 'https://ror.org/02gtcat87 Focus Microwaves (Canada)'), (32165, 'https://ror.org/02gtdm304', 'no_lang_code', 1, 'https://ror.org/02gtdm304 Avogy (United States)'), (32166, 'https://ror.org/02gv7j358', 'en', 1, 'https://ror.org/02gv7j358 Westminster Seminary California'), (32167, 'https://ror.org/02gw53818', 'no_lang_code', 1, 'https://ror.org/02gw53818 Veryday (Sweden)'), (32168, 'https://ror.org/02gx43549', 'en', 1, 'https://ror.org/02gx43549 Departamento de Educación Pública de Nuevo México New Mexico Public Education Department'), (32169, 'https://ror.org/02gxnzq82', 'en', 1, 'https://ror.org/02gxnzq82 Egyesített Szent István és Szent László Kórház-Rendelőintézet Unified Szent István and Szent László Hospital'), (32170, 'https://ror.org/02gysew38', 'en', 1, 'https://ror.org/02gysew38 Global Fund to Fight AIDS, Tuberculosis and Malaria'), (32171, 'https://ror.org/02h0mx958', 'no_lang_code', 1, 'https://ror.org/02h0mx958 Education Training & Consulting Company (Slovakia)'), (32172, 'https://ror.org/02h15pd98', 'no_lang_code', 1, 'https://ror.org/02h15pd98 Osstell (Sweden)'), (32173, 'https://ror.org/02h1stz09', 'en', 1, 'https://ror.org/02h1stz09 Boston Symphony Orchestra'), (32174, 'https://ror.org/02h291k47', 'en', 1, 'https://ror.org/02h291k47 Horticulture Innovation Australia'), (32175, 'https://ror.org/02h43gk75', 'en', 1, 'https://ror.org/02h43gk75 Israel Cancer Research Fund'), (32176, 'https://ror.org/02h67vt10', 'en', 1, 'https://ror.org/02h67vt10 Aintree University Hospitals NHS Foundation Trust'), (32177, 'https://ror.org/02h7g2017', 'en', 1, 'https://ror.org/02h7g2017 British Skin Foundation'), (32178, 'https://ror.org/02h7h5x62', 'no_lang_code', 1, 'https://ror.org/02h7h5x62 Electro Standards Laboratories (United States)'), (32179, 'https://ror.org/02h7kh904', 'en', 1, 'https://ror.org/02h7kh904 Associação Portuguesa das Indústrias de Cerâmica e de Cristalaria Portuguese Association of the Ceramics Industry'), (32180, 'https://ror.org/02h83nc26', 'nl', 1, 'https://ror.org/02h83nc26 Koninklijke Landmacht'), (32181, 'https://ror.org/02h8kp866', 'no_lang_code', 1, 'https://ror.org/02h8kp866 Polpharma Biologics (Netherlands)'), (32182, 'https://ror.org/02hb9s226', 'no_lang_code', 1, 'https://ror.org/02hb9s226 ORB Analytics (United States)'), (32183, 'https://ror.org/02hbm8b43', 'no_lang_code', 1, 'https://ror.org/02hbm8b43 Evaporated Coatings (United States)'), (32184, 'https://ror.org/02hbnw031', 'no_lang_code', 1, 'https://ror.org/02hbnw031 Cermet (United States)'), (32185, 'https://ror.org/02hc2ra25', 'en', 1, 'https://ror.org/02hc2ra25 Canadian International Grains Institute'), (32186, 'https://ror.org/02hchde94', 'en', 1, 'https://ror.org/02hchde94 Government of Russia Правительство Российской Федерации'), (32187, 'https://ror.org/02hcxaq60', 'en', 1, 'https://ror.org/02hcxaq60 Ministry of Education and Science'), (32188, 'https://ror.org/02hdk9s78', 'en', 1, 'https://ror.org/02hdk9s78 University of Nursing Yangon သူနာပြုတက္ကသိုလ်(ရန်ကုန်)'), (32189, 'https://ror.org/02hg6xf68', 'no_lang_code', 1, 'https://ror.org/02hg6xf68 Applied Quantum Technologies (United States)'), (32190, 'https://ror.org/02hj7hh93', 'no_lang_code', 1, 'https://ror.org/02hj7hh93 Schneider Electric (Canada)'), (32191, 'https://ror.org/02hkywq03', 'no_lang_code', 1, 'https://ror.org/02hkywq03 Kinectrics (Canada)'), (32192, 'https://ror.org/02hpaa158', 'no_lang_code', 1, 'https://ror.org/02hpaa158 Polatin Corporation (United States)'), (32193, 'https://ror.org/02hpzfx69', 'no_lang_code', 1, 'https://ror.org/02hpzfx69 Propagation Research Associates (United States)'), (32194, 'https://ror.org/02hq6wv21', 'de', 1, 'https://ror.org/02hq6wv21 Deutsche Herzstiftung'), (32195, 'https://ror.org/02hqwnx33', 'no_lang_code', 1, 'https://ror.org/02hqwnx33 Western Digital (United States)'), (32196, 'https://ror.org/02hrn9a05', 'no_lang_code', 1, 'https://ror.org/02hrn9a05 IHS Markit (United States)'), (32197, 'https://ror.org/02hs57b27', 'no_lang_code', 1, 'https://ror.org/02hs57b27 RDA (United States)'), (32198, 'https://ror.org/02hsr5c48', 'no_lang_code', 1, 'https://ror.org/02hsr5c48 ImmerVision (Canada)'), (32199, 'https://ror.org/02htdjb57', 'no_lang_code', 1, 'https://ror.org/02htdjb57 Bial (Portugal)'), (32200, 'https://ror.org/02j0q7e02', 'en', 1, 'https://ror.org/02j0q7e02 Departamento de Transporte de Pensilvania Pennsylvania Department of Transportation'), (32201, 'https://ror.org/02j25ht90', 'fr', 1, 'https://ror.org/02j25ht90 Society of outdoor recreation establishments of Quebec Société des établissements de plein air du Québec, Sépaq'), (32202, 'https://ror.org/02j3q7j55', 'en', 1, 'https://ror.org/02j3q7j55 NIHR Royal Brompton Respiratory Biomedical Research Unit'), (32203, 'https://ror.org/02j43hc79', 'no_lang_code', 1, 'https://ror.org/02j43hc79 Biophotonic Solutions (United States)'), (32204, 'https://ror.org/02j5aza86', 'en', 1, 'https://ror.org/02j5aza86 Swedish History Museum'), (32205, 'https://ror.org/02j7y6936', 'en', 1, 'https://ror.org/02j7y6936 Centre for BioSystems Genomics'), (32206, 'https://ror.org/02j8w6q81', 'no_lang_code', 1, 'https://ror.org/02j8w6q81 Gruppo Formula (Italy)'), (32207, 'https://ror.org/02jc9yx83', 'no_lang_code', 1, 'https://ror.org/02jc9yx83 Hendrix Genetics (Canada)'), (32208, 'https://ror.org/02jd1mn89', 'no_lang_code', 1, 'https://ror.org/02jd1mn89 Emstone (Sweden)'), (32209, 'https://ror.org/02jecj653', 'it', 1, 'https://ror.org/02jecj653 Fondazione Cassa di Risparmio di Padova e Rovigo'), (32210, 'https://ror.org/02jeg3v06', 'no_lang_code', 1, 'https://ror.org/02jeg3v06 Mechmath (United States)'), (32211, 'https://ror.org/02jesmk44', 'en', 1, 'https://ror.org/02jesmk44 American Foundation for AIDS Research'), (32212, 'https://ror.org/02jfa8730', 'no_lang_code', 1, 'https://ror.org/02jfa8730 Chevron (United States)'), (32213, 'https://ror.org/02jgx6t51', 'no_lang_code', 1, 'https://ror.org/02jgx6t51 Kratos Defense & Security Solutions (United States)'), (32214, 'https://ror.org/02jj42f67', 'en', 1, 'https://ror.org/02jj42f67 Alberta Oil Sands Technology and Research Authority'), (32215, 'https://ror.org/02jktn113', 'en', 1, 'https://ror.org/02jktn113 International Center for Relativistic Astrophysics'), (32216, 'https://ror.org/02jmed939', 'no_lang_code', 1, 'https://ror.org/02jmed939 Sivananthan Laboratories (United States)'), (32217, 'https://ror.org/02jp14137', 'no_lang_code', 1, 'https://ror.org/02jp14137 Halotechnics (United States)'), (32218, 'https://ror.org/02jpa9x52', 'en', 1, 'https://ror.org/02jpa9x52 China Medical Board'), (32219, 'https://ror.org/02js2n445', 'no_lang_code', 1, 'https://ror.org/02js2n445 Aptima (United States)'), (32220, 'https://ror.org/02jsxtf08', 'no_lang_code', 1, 'https://ror.org/02jsxtf08 Pacific Street Films (United States)'), (32221, 'https://ror.org/02jtc9v47', 'no_lang_code', 1, 'https://ror.org/02jtc9v47 Norleaf Networks (Canada)'), (32222, 'https://ror.org/02jwtre75', 'sv', 1, 'https://ror.org/02jwtre75 Stiftelsen SKAPA'), (32223, 'https://ror.org/02jx81v73', 'no_lang_code', 1, 'https://ror.org/02jx81v73 Academic Software (United States)'), (32224, 'https://ror.org/02jy5yr69', 'en', 1, 'https://ror.org/02jy5yr69 Golden State Baptist College'), (32225, 'https://ror.org/02jy9d058', 'en', 1, 'https://ror.org/02jy9d058 Florida Space Grant Consortium'), (32226, 'https://ror.org/02k4b9v70', 'en', 1, 'https://ror.org/02k4b9v70 Det Europæiske Miljøagentur European Environment Agency Europäische Umweltagentur'), (32227, 'https://ror.org/02k4ca766', 'no_lang_code', 1, 'https://ror.org/02k4ca766 NuWaves Engineering (United States)'), (32228, 'https://ror.org/02k50y650', 'no_lang_code', 1, 'https://ror.org/02k50y650 Mikros Systems (United States)'), (32229, 'https://ror.org/02k55qr52', 'no_lang_code', 1, 'https://ror.org/02k55qr52 Cambridge Cognition (United Kingdom)'), (32230, 'https://ror.org/02k5trd79', 'no_lang_code', 1, 'https://ror.org/02k5trd79 Shape Change Technologies (United States)'), (32231, 'https://ror.org/02kazyy76', 'no_lang_code', 1, 'https://ror.org/02kazyy76 Ascendant Engineering Solutions (United States)'), (32232, 'https://ror.org/02kbyb945', 'no_lang_code', 1, 'https://ror.org/02kbyb945 Electrik Box (Canada)'), (32233, 'https://ror.org/02kcne908', 'no_lang_code', 1, 'https://ror.org/02kcne908 Pro-Tech Design & Manufacturing (United States)'), (32234, 'https://ror.org/02kesxz96', 'en', 1, 'https://ror.org/02kesxz96 Longer Life Foundation'), (32235, 'https://ror.org/02kj36x76', 'no_lang_code', 1, 'https://ror.org/02kj36x76 Geotech Instruments (United States)'), (32236, 'https://ror.org/02kna3n95', 'en', 1, 'https://ror.org/02kna3n95 Prostate Cancer Foundation of Australia'), (32237, 'https://ror.org/02knm8c59', 'en', 1, 'https://ror.org/02knm8c59 Departamento de Educación de la Florida Florida Department of Education'), (32238, 'https://ror.org/02knntf03', 'no_lang_code', 1, 'https://ror.org/02knntf03 IJ Research (United States)'), (32239, 'https://ror.org/02kq93n74', 'no_lang_code', 1, 'https://ror.org/02kq93n74 Gradientech (Sweden)'), (32240, 'https://ror.org/02krbn758', 'en', 1, 'https://ror.org/02krbn758 Botanical Society of Britain and Ireland'), (32241, 'https://ror.org/02ksqdr49', 'no_lang_code', 1, 'https://ror.org/02ksqdr49 General Sciences (United States)'), (32242, 'https://ror.org/02kstas42', 'en', 1, 'https://ror.org/02kstas42 Affiliated Hospital of Guizhou Medical University'), (32243, 'https://ror.org/02kstzn75', 'en', 1, 'https://ror.org/02kstzn75 Institute for Medical Biology Instytut Biologii Medycznej Polskiej Akademii Nauk'), (32244, 'https://ror.org/02kt0tf86', 'en', 1, 'https://ror.org/02kt0tf86 Davis College - New York'), (32245, 'https://ror.org/02ktfc112', 'no_lang_code', 1, 'https://ror.org/02ktfc112 Digital Science (United Kingdom)'), (32246, 'https://ror.org/02kx1hs47', 'en', 1, 'https://ror.org/02kx1hs47 Brera Astronomical Observatory Observatoire astronomique de brera osservatorio astronomico di Brera'), (32247, 'https://ror.org/02kx7se86', 'en', 1, 'https://ror.org/02kx7se86 Kidney Research UK'), (32248, 'https://ror.org/02ky21x08', 'en', 1, 'https://ror.org/02ky21x08 Departamento de Transporte de Texas Département des transports du texas Texas Department of Transportation'), (32249, 'https://ror.org/02kzdnj79', 'en', 1, 'https://ror.org/02kzdnj79 South African Thoracic Society'), (32250, 'https://ror.org/02m0sxt16', 'en', 1, 'https://ror.org/02m0sxt16 Illinois Assistive Technology Program'), (32251, 'https://ror.org/02m14pj94', 'no_lang_code', 1, 'https://ror.org/02m14pj94 Palcan Energy Corporation (Canada)'), (32252, 'https://ror.org/02m24xz19', 'en', 1, 'https://ror.org/02m24xz19 Multiple Sclerosis Trust'), (32253, 'https://ror.org/02m359g33', 'no_lang_code', 1, 'https://ror.org/02m359g33 ANDRO (United States)'), (32254, 'https://ror.org/02m94vn37', 'no_lang_code', 1, 'https://ror.org/02m94vn37 Vorago Technologies (United States)'), (32255, 'https://ror.org/02m9t8y16', 'no_lang_code', 1, 'https://ror.org/02m9t8y16 QuinStar Technology (United States)'), (32256, 'https://ror.org/02ma2ny91', 'no_lang_code', 1, 'https://ror.org/02ma2ny91 Princeton Satellite Systems (United States)'), (32257, 'https://ror.org/02ma9nk57', 'no_lang_code', 1, 'https://ror.org/02ma9nk57 Capraro Technologies (United States)'), (32258, 'https://ror.org/02mab7v83', 'no_lang_code', 1, 'https://ror.org/02mab7v83 Potawatomi Business Development (United States)'), (32259, 'https://ror.org/02mba1x93', 'no_lang_code', 1, 'https://ror.org/02mba1x93 BrockTek (United States)'), (32260, 'https://ror.org/02mbhaf77', 'no_lang_code', 1, 'https://ror.org/02mbhaf77 Research Applications Corporation (United States)'), (32261, 'https://ror.org/02mgm5r23', 'en', 1, 'https://ror.org/02mgm5r23 Makerere University Walter Reed Project'), (32262, 'https://ror.org/02mgwph26', 'no_lang_code', 1, 'https://ror.org/02mgwph26 Mitera Hospital'), (32263, 'https://ror.org/02mkhvn23', 'no_lang_code', 1, 'https://ror.org/02mkhvn23 Voxway (Sweden)'), (32264, 'https://ror.org/02mp0vf47', 'en', 1, 'https://ror.org/02mp0vf47 National Cancer Research Institute'), (32265, 'https://ror.org/02ms27492', 'en', 1, 'https://ror.org/02ms27492 California Rice Research Board'), (32266, 'https://ror.org/02mv2m613', 'no_lang_code', 1, 'https://ror.org/02mv2m613 Elektrokarbon (Slovakia)'), (32267, 'https://ror.org/02mv9sr91', 'en', 1, 'https://ror.org/02mv9sr91 Academy of Motion Picture Arts and Sciences'), (32268, 'https://ror.org/02my4g447', 'no_lang_code', 1, 'https://ror.org/02my4g447 Ocean Power Technologies (United States)'), (32269, 'https://ror.org/02my7ff12', 'it', 1, 'https://ror.org/02my7ff12 Catania Astrophysical Observatory Osservatorio Astrofisico di Catania'), (32270, 'https://ror.org/02n2kz479', 'no_lang_code', 1, 'https://ror.org/02n2kz479 Kvarnstrands (Sweden)'), (32271, 'https://ror.org/02n74s845', 'sv', 1, 'https://ror.org/02n74s845 Kalmar Art Museum Kalmar Konstmuseum'), (32272, 'https://ror.org/02n77yt92', 'no_lang_code', 1, 'https://ror.org/02n77yt92 Enmax (Canada)'), (32273, 'https://ror.org/02n9m6n25', 'no_lang_code', 1, 'https://ror.org/02n9m6n25 Meeting the Challenge (United States)'), (32274, 'https://ror.org/02na09p21', 'en', 1, 'https://ror.org/02na09p21 Bristol Clinical Commissioning Group'), (32275, 'https://ror.org/02na1q715', 'en', 1, 'https://ror.org/02na1q715 Friendly Sons of St. Patrick'), (32276, 'https://ror.org/02nc46417', 'en', 1, 'https://ror.org/02nc46417 Sony Computer Science Laboratories ソニーコンピュータサイエンス研究所'), (32277, 'https://ror.org/02nd7ks20', 'no_lang_code', 1, 'https://ror.org/02nd7ks20 Schrader International (United Kingdom)'), (32278, 'https://ror.org/02ngn2w22', 'en', 1, 'https://ror.org/02ngn2w22 Mt. Sierra College'), (32279, 'https://ror.org/02njhwg64', 'no_lang_code', 1, 'https://ror.org/02njhwg64 Osborne & Associates (United States)'), (32280, 'https://ror.org/02nkwwe88', 'en', 1, 'https://ror.org/02nkwwe88 Minerva Brooks Memorial Library'), (32281, 'https://ror.org/02nkxrq89', 'en', 1, 'https://ror.org/02nkxrq89 Hochschule Ruhr West Ruhr West University of Applied Sciences'), (32282, 'https://ror.org/02nmsd267', 'en', 1, 'https://ror.org/02nmsd267 Coastal Oceans Research and Development in the Indian Ocean'), (32283, 'https://ror.org/02np0kc30', 'en', 1, 'https://ror.org/02np0kc30 CESSI'), (32284, 'https://ror.org/02np5p423', 'no_lang_code', 1, 'https://ror.org/02np5p423 Uganda Clays (Uganda)'), (32285, 'https://ror.org/02nqj0b62', 'en', 1, 'https://ror.org/02nqj0b62 Economic Development Board'), (32286, 'https://ror.org/02nwht553', 'es', 1, 'https://ror.org/02nwht553 Red Espanola de Investigacion en Patologia Infecciosa'), (32287, 'https://ror.org/02nxjps75', 'en', 1, 'https://ror.org/02nxjps75 Summit University'), (32288, 'https://ror.org/02ny7hp72', 'no_lang_code', 1, 'https://ror.org/02ny7hp72 Adsys Controls (United States)'), (32289, 'https://ror.org/02nz03g03', 'en', 1, 'https://ror.org/02nz03g03 American Foundation for the Blind'), (32290, 'https://ror.org/02p0fq023', 'no_lang_code', 1, 'https://ror.org/02p0fq023 Prompt (Canada)'), (32291, 'https://ror.org/02p1scb62', 'no_lang_code', 1, 'https://ror.org/02p1scb62 Greatbatch (United States)'), (32292, 'https://ror.org/02p3nxd53', 'no_lang_code', 1, 'https://ror.org/02p3nxd53 Penny (Sweden)'), (32293, 'https://ror.org/02p47zr16', 'en', 1, 'https://ror.org/02p47zr16 BC Greenhouse Growers Association'), (32294, 'https://ror.org/02p4b3a61', 'en', 1, 'https://ror.org/02p4b3a61 Christian Bible College and Seminary'), (32295, 'https://ror.org/02p5wcj62', 'no_lang_code', 1, 'https://ror.org/02p5wcj62 Diamorph (Sweden)'), (32296, 'https://ror.org/02p65v128', 'no_lang_code', 1, 'https://ror.org/02p65v128 Semtech (United States)'), (32297, 'https://ror.org/02p6p6z73', 'no_lang_code', 1, 'https://ror.org/02p6p6z73 Mikon (Slovakia)'), (32298, 'https://ror.org/02p745c92', 'en', 1, 'https://ror.org/02p745c92 Swedish Farmers’ Foundation for Agricultural Research'), (32299, 'https://ror.org/02p7svq74', 'en', 1, 'https://ror.org/02p7svq74 Guy''s and St Thomas'' Charity'), (32300, 'https://ror.org/02p89gk05', 'en', 1, 'https://ror.org/02p89gk05 Swedish Municipal Workers'' Union'), (32301, 'https://ror.org/02phhfw40', 'en', 1, 'https://ror.org/02phhfw40 Innovative Vector Control Consortium'), (32302, 'https://ror.org/02pj6m510', 'en', 1, 'https://ror.org/02pj6m510 Pacific Oaks College'), (32303, 'https://ror.org/02pkfd360', 'no_lang_code', 1, 'https://ror.org/02pkfd360 Reaction Systems (United States)'), (32304, 'https://ror.org/02pn9ep17', 'it', 1, 'https://ror.org/02pn9ep17 Pontifical Atheneum of St. Anselm Pontificio Ateneo Sant''Anselmo'), (32305, 'https://ror.org/02ppy9c89', 'en', 1, 'https://ror.org/02ppy9c89 NIHR Nottingham Digestive Diseases Biomedical Research Unit'), (32306, 'https://ror.org/02pq7w335', 'no_lang_code', 1, 'https://ror.org/02pq7w335 Berkshire Hathaway (United States)'), (32307, 'https://ror.org/02pqmy074', 'en', 1, 'https://ror.org/02pqmy074 Winthrop Rockefeller Foundation'), (32308, 'https://ror.org/02pr6am85', 'en', 1, 'https://ror.org/02pr6am85 Arkansas Department of Career Education'), (32309, 'https://ror.org/02prx6004', 'no_lang_code', 1, 'https://ror.org/02prx6004 Generic Assays (Germany)'), (32310, 'https://ror.org/02pscrx27', 'no_lang_code', 1, 'https://ror.org/02pscrx27 Karolinska Development (Sweden)'), (32311, 'https://ror.org/02pse1737', 'no_lang_code', 1, 'https://ror.org/02pse1737 Redwood Pharma (Sweden)'), (32312, 'https://ror.org/02ptcjs87', 'no_lang_code', 1, 'https://ror.org/02ptcjs87 Air Liquide (United States)'), (32313, 'https://ror.org/02pvba079', 'no_lang_code', 1, 'https://ror.org/02pvba079 Mayachitra (United States)'), (32314, 'https://ror.org/02pvd7916', 'en', 1, 'https://ror.org/02pvd7916 CODAC Behavioral Health Services'), (32315, 'https://ror.org/02pvr8q36', 'de', 1, 'https://ror.org/02pvr8q36 Berufbildungsschule Winterthur'), (32316, 'https://ror.org/02py10784', 'no_lang_code', 1, 'https://ror.org/02py10784 Albireo (Sweden)'), (32317, 'https://ror.org/02pyp0e56', 'en', 1, 'https://ror.org/02pyp0e56 Saxet Surface Science'), (32318, 'https://ror.org/02q0s1x22', 'no_lang_code', 1, 'https://ror.org/02q0s1x22 Hitachi Global Storage Technologies (United States)'), (32319, 'https://ror.org/02q2gmw58', 'no_lang_code', 1, 'https://ror.org/02q2gmw58 Teshmont (Canada)'), (32320, 'https://ror.org/02q2m1930', 'no_lang_code', 1, 'https://ror.org/02q2m1930 Monsanto (Canada)'), (32321, 'https://ror.org/02q36eh13', 'en', 1, 'https://ror.org/02q36eh13 National Center for HIV/AIDS, Dermatology and STD'), (32322, 'https://ror.org/02q3ges18', 'no_lang_code', 1, 'https://ror.org/02q3ges18 Öhlins (Sweden)'), (32323, 'https://ror.org/02q578v20', 'en', 1, 'https://ror.org/02q578v20 Oklahoma Center for the Advancement of Science and Technology'), (32324, 'https://ror.org/02q5qpb12', 'en', 1, 'https://ror.org/02q5qpb12 Conservation and Ecosystem Health Alliance'), (32325, 'https://ror.org/02q5vez72', 'no_lang_code', 1, 'https://ror.org/02q5vez72 Schwarzwaldmilch Freiburg (Germany)'), (32326, 'https://ror.org/02q6ekp33', 'no_lang_code', 1, 'https://ror.org/02q6ekp33 Blue Bear (United Kingdom)'), (32327, 'https://ror.org/02q6wz850', 'no_lang_code', 1, 'https://ror.org/02q6wz850 Proteus (United Kingdom)'), (32328, 'https://ror.org/02q79aa51', 'no_lang_code', 1, 'https://ror.org/02q79aa51 Chemosvit Fibrochem (Slovakia)'), (32329, 'https://ror.org/02q7ym472', 'de', 1, 'https://ror.org/02q7ym472 Helios Park-Klinikum Leipzig'), (32330, 'https://ror.org/02q83sc19', 'de', 1, 'https://ror.org/02q83sc19 Wilhelm Sander Stiftung'), (32331, 'https://ror.org/02q84p957', 'no_lang_code', 1, 'https://ror.org/02q84p957 Parmalat (Canada)'), (32332, 'https://ror.org/02q87d656', 'no_lang_code', 1, 'https://ror.org/02q87d656 Trademco (Greece)'), (32333, 'https://ror.org/02q8a6a36', 'no_lang_code', 1, 'https://ror.org/02q8a6a36 CMSoft (United States)'), (32334, 'https://ror.org/02q8pz475', 'en', 1, 'https://ror.org/02q8pz475 Photons Canada'), (32335, 'https://ror.org/02qdg4b08', 'en', 1, 'https://ror.org/02qdg4b08 Agricultural Institute Osijek'), (32336, 'https://ror.org/02qg55h92', 'no_lang_code', 1, 'https://ror.org/02qg55h92 Star Cryoelectronics (United States)'), (32337, 'https://ror.org/02qh9e431', 'no_lang_code', 1, 'https://ror.org/02qh9e431 JF Kapnek Trust'), (32338, 'https://ror.org/02qjep944', 'en', 1, 'https://ror.org/02qjep944 Waverly Consort'), (32339, 'https://ror.org/02qjpax34', 'no_lang_code', 1, 'https://ror.org/02qjpax34 Material Concepts (United States)'), (32340, 'https://ror.org/02qkhx131', 'en', 1, 'https://ror.org/02qkhx131 Jiangxi Pingxiang People''s Hospital'), (32341, 'https://ror.org/02qkmsm66', 'no_lang_code', 1, 'https://ror.org/02qkmsm66 Control Systems Research (United States)'), (32342, 'https://ror.org/02qm4q539', 'no_lang_code', 1, 'https://ror.org/02qm4q539 Rockwell Automation (Canada)'), (32343, 'https://ror.org/02qmhct90', 'en', 1, 'https://ror.org/02qmhct90 The Second Nanning People''s Hospital 南宁市第二人民医院'), (32344, 'https://ror.org/02qmw3e81', 'en', 1, 'https://ror.org/02qmw3e81 Centre of Plasma Physics - Institute for Plasma Research प्लाज्मा अनुसंधान संस्थान பிளாசுமா ஆராய்ச்சி நிறுவனம்'), (32345, 'https://ror.org/02qn7c872', 'no_lang_code', 1, 'https://ror.org/02qn7c872 Phononic Devices (United States)'), (32346, 'https://ror.org/02qs0dv08', 'en', 1, 'https://ror.org/02qs0dv08 Hungarian Astronomical Association'), (32347, 'https://ror.org/02qv02186', 'en', 1, 'https://ror.org/02qv02186 Water Research Commission'), (32348, 'https://ror.org/02qv4je94', 'no_lang_code', 1, 'https://ror.org/02qv4je94 Impact Coatings (Sweden)'), (32349, 'https://ror.org/02qva2y28', 'en', 1, 'https://ror.org/02qva2y28 Samuel Waxman Cancer Research Foundation'), (32350, 'https://ror.org/02qx2bv92', 'no_lang_code', 1, 'https://ror.org/02qx2bv92 Geoexperts (Slovakia)'), (32351, 'https://ror.org/02qx2s478', 'en', 1, 'https://ror.org/02qx2s478 Southern and Eastern Norway Regional Health Authority'), (32352, 'https://ror.org/02qx7jz53', 'no_lang_code', 1, 'https://ror.org/02qx7jz53 Wolf Technical Services (United States)'), (32353, 'https://ror.org/02qxp9a05', 'en', 1, 'https://ror.org/02qxp9a05 Granite State College'), (32354, 'https://ror.org/02qxv7b63', 'en', 1, 'https://ror.org/02qxv7b63 Cryptobranchid Interest Group'), (32355, 'https://ror.org/02qy4hb70', 'no_lang_code', 1, 'https://ror.org/02qy4hb70 Clayburn Refractories (Canada)'), (32356, 'https://ror.org/02qy4xp49', 'no_lang_code', 1, 'https://ror.org/02qy4xp49 Stena Recycling (Sweden)'), (32357, 'https://ror.org/02qzya303', 'no_lang_code', 1, 'https://ror.org/02qzya303 NovaSpectra (United States)'), (32358, 'https://ror.org/02r089428', 'no_lang_code', 1, 'https://ror.org/02r089428 AgilOptics (United States)'), (32359, 'https://ror.org/02r0g0093', 'no_lang_code', 1, 'https://ror.org/02r0g0093 Southern Company (United States)'), (32360, 'https://ror.org/02r0y3932', 'sk', 1, 'https://ror.org/02r0y3932 Vyskumny Ústav Dopravny'), (32361, 'https://ror.org/02r14vp15', 'no_lang_code', 1, 'https://ror.org/02r14vp15 National Influenza Center'), (32362, 'https://ror.org/02r1k0x59', 'en', 1, 'https://ror.org/02r1k0x59 Packaging Arena'), (32363, 'https://ror.org/02r1sb446', 'no_lang_code', 1, 'https://ror.org/02r1sb446 Scientica (Slovakia)'), (32364, 'https://ror.org/02r3f8m74', 'no_lang_code', 1, 'https://ror.org/02r3f8m74 Farr Fields (United States)'), (32365, 'https://ror.org/02r5jp158', 'en', 1, 'https://ror.org/02r5jp158 Center for International Rehabilitation'), (32366, 'https://ror.org/02r5m5t30', 'fr', 1, 'https://ror.org/02r5m5t30 Doctors Without Borders Médecins Sans Frontières'), (32367, 'https://ror.org/02r6tx669', 'no_lang_code', 1, 'https://ror.org/02r6tx669 Biteam (Sweden)'), (32368, 'https://ror.org/02r7nkw81', 'pt', 1, 'https://ror.org/02r7nkw81 Araucaria Foundation Fundação Araucária'), (32369, 'https://ror.org/02r7s3859', 'no_lang_code', 1, 'https://ror.org/02r7s3859 Vernon Seed Orchard Company (Canada)'), (32370, 'https://ror.org/02r8axs93', 'no_lang_code', 1, 'https://ror.org/02r8axs93 NeuroRx Research (Canada)'), (32371, 'https://ror.org/02r8tn769', 'en', 1, 'https://ror.org/02r8tn769 Asia-Pacific Network for Global Change Research'), (32372, 'https://ror.org/02r9x2x37', 'no_lang_code', 1, 'https://ror.org/02r9x2x37 InnovaTek (United States)'), (32373, 'https://ror.org/02raka351', 'no_lang_code', 1, 'https://ror.org/02raka351 Imperial Metals (Canada)'), (32374, 'https://ror.org/02rd7bb97', 'no_lang_code', 1, 'https://ror.org/02rd7bb97 Mercury Systems (United States)'), (32375, 'https://ror.org/02rdwwh89', 'nl', 1, 'https://ror.org/02rdwwh89 Christelijke Scholengemeenschap Walcheren'), (32376, 'https://ror.org/02rf1sg12', 'no_lang_code', 1, 'https://ror.org/02rf1sg12 Ecoloop (Sweden)'), (32377, 'https://ror.org/02rf9jr43', 'en', 1, 'https://ror.org/02rf9jr43 Austrian Association of Women Artists Vereinigung bildender Künstlerinnen Österreichs'), (32378, 'https://ror.org/02rfzns68', 'en', 1, 'https://ror.org/02rfzns68 A*STAR-NUS Clinical Imaging Research Centre'), (32379, 'https://ror.org/02rj0as03', 'en', 1, 'https://ror.org/02rj0as03 Josiah Macy Jr Foundation'), (32380, 'https://ror.org/02rkyk519', 'no_lang_code', 1, 'https://ror.org/02rkyk519 ME-Inspection SK (Slovakia)'), (32381, 'https://ror.org/02rpygq27', 'en', 1, 'https://ror.org/02rpygq27 Credit Comfort'), (32382, 'https://ror.org/02rrbkd45', 'no_lang_code', 1, 'https://ror.org/02rrbkd45 OrganoClick (Sweden)'), (32383, 'https://ror.org/02rv73z09', 'no_lang_code', 1, 'https://ror.org/02rv73z09 Enoshima Aquarium'), (32384, 'https://ror.org/02rvm6b03', 'en', 1, 'https://ror.org/02rvm6b03 Defence Science and Technology Agency'), (32385, 'https://ror.org/02rwvh228', 'no_lang_code', 1, 'https://ror.org/02rwvh228 Advanced Optical Systems (United States)'), (32386, 'https://ror.org/02rxjkx06', 'es', 1, 'https://ror.org/02rxjkx06 Centro Nacional de Enfermedades Tropicales'), (32387, 'https://ror.org/02ry1ef38', 'no_lang_code', 1, 'https://ror.org/02ry1ef38 Vigor Wave Energy (Sweden)'), (32388, 'https://ror.org/02ryfff02', 'en', 1, 'https://ror.org/02ryfff02 Songjiang District Central Hospital'), (32389, 'https://ror.org/02rzw6h69', 'en', 1, 'https://ror.org/02rzw6h69 Helmholtz Institute Jena Helmholtz-Institut Jena'), (32390, 'https://ror.org/02s06cq86', 'no_lang_code', 1, 'https://ror.org/02s06cq86 Arbec Forest Products (Canada)'), (32391, 'https://ror.org/02s21g398', 'en', 1, 'https://ror.org/02s21g398 Coral Reef Research Foundation'), (32392, 'https://ror.org/02s3mqv16', 'no_lang_code', 1, 'https://ror.org/02s3mqv16 Polymeright (United States)'), (32393, 'https://ror.org/02s4dhq46', 'en', 1, 'https://ror.org/02s4dhq46 Instituto Nacional de Biodiversidad National Biodiversity Institute'), (32394, 'https://ror.org/02s5wxe37', 'no_lang_code', 1, 'https://ror.org/02s5wxe37 Applied Poleramic (United States)'), (32395, 'https://ror.org/02s7bp606', 'en', 1, 'https://ror.org/02s7bp606 Chartered Institute of Plumbing and Heating Engineering'), (32396, 'https://ror.org/02s7h1n35', 'no_lang_code', 1, 'https://ror.org/02s7h1n35 Emel (Slovakia)'), (32397, 'https://ror.org/02s9h8g68', 'ro', 1, 'https://ror.org/02s9h8g68 Poliția de Frontieră Română'), (32398, 'https://ror.org/02s9hwc03', 'es', 1, 'https://ror.org/02s9hwc03 Hospital Infantil Manuel de Jesús Rivera'), (32399, 'https://ror.org/02s9z8855', 'no_lang_code', 1, 'https://ror.org/02s9z8855 Firalis (France)'), (32400, 'https://ror.org/02sba6v14', 'no_lang_code', 1, 'https://ror.org/02sba6v14 West Pharmaceutical Services (United States)'), (32401, 'https://ror.org/02scsee13', 'no_lang_code', 1, 'https://ror.org/02scsee13 Etalon (Germany)'), (32402, 'https://ror.org/02se70931', 'en', 1, 'https://ror.org/02se70931 California HealthCare Foundation'), (32403, 'https://ror.org/02seeba69', 'en', 1, 'https://ror.org/02seeba69 Walther Cancer Foundation'), (32404, 'https://ror.org/02sg0rn97', 'no_lang_code', 1, 'https://ror.org/02sg0rn97 Integrated Adaptive Applications (United States)'), (32405, 'https://ror.org/02ske4z75', 'no_lang_code', 1, 'https://ror.org/02ske4z75 Aquatic Systems (United States)'), (32406, 'https://ror.org/02skpkw64', 'en', 1, 'https://ror.org/02skpkw64 Shenzhen KangNing Hospital'), (32407, 'https://ror.org/02snbhr24', 'en', 1, 'https://ror.org/02snbhr24 Grand Challenges Canada'), (32408, 'https://ror.org/02sr74r45', 'en', 1, 'https://ror.org/02sr74r45 Biopterre'), (32409, 'https://ror.org/02ssn9g91', 'en', 1, 'https://ror.org/02ssn9g91 U.S. Poultry and Egg Association'), (32410, 'https://ror.org/02svyk642', 'no_lang_code', 1, 'https://ror.org/02svyk642 Arkema (Canada)'), (32411, 'https://ror.org/02swwnp83', 'en', 1, 'https://ror.org/02swwnp83 Nepal Health Research Council'), (32412, 'https://ror.org/02swwpp84', 'en', 1, 'https://ror.org/02swwpp84 Juvenile Diabetes Research Foundation'), (32413, 'https://ror.org/02sy8ft18', 'en', 1, 'https://ror.org/02sy8ft18 National Records of Scotland'), (32414, 'https://ror.org/02syf5698', 'no_lang_code', 1, 'https://ror.org/02syf5698 Business Region Göteborg (Sweden)'), (32415, 'https://ror.org/02syt4h28', 'no_lang_code', 1, 'https://ror.org/02syt4h28 Sendero Group (United States)'), (32416, 'https://ror.org/02syy6g64', 'no_lang_code', 1, 'https://ror.org/02syy6g64 Armacell (Canada)'), (32417, 'https://ror.org/02sz42a76', 'en', 1, 'https://ror.org/02sz42a76 Monroe College'), (32418, 'https://ror.org/02t0nms65', 'no_lang_code', 1, 'https://ror.org/02t0nms65 Novozymes (Canada)'), (32419, 'https://ror.org/02t171j61', 'en', 1, 'https://ror.org/02t171j61 California Institute for Human Science'), (32420, 'https://ror.org/02t1yaf39', 'en', 1, 'https://ror.org/02t1yaf39 Fetzer Institute'), (32421, 'https://ror.org/02t5vgv32', 'no_lang_code', 1, 'https://ror.org/02t5vgv32 GasPorOx (Sweden)'), (32422, 'https://ror.org/02t6ken40', 'no_lang_code', 1, 'https://ror.org/02t6ken40 Full Circle Research (United States)'), (32423, 'https://ror.org/02t942m04', 'no_lang_code', 1, 'https://ror.org/02t942m04 Edaptive Computing (United States)'), (32424, 'https://ror.org/02t9jkq72', 'no_lang_code', 1, 'https://ror.org/02t9jkq72 Beam Engineering for Advanced Measurements (United States)'), (32425, 'https://ror.org/02t9nbh81', 'no_lang_code', 1, 'https://ror.org/02t9nbh81 Lowell Digisonde International (United States)'), (32426, 'https://ror.org/02tajka68', 'no_lang_code', 1, 'https://ror.org/02tajka68 Kalsi Engineering (United States)'), (32427, 'https://ror.org/02taxhk03', 'no_lang_code', 1, 'https://ror.org/02taxhk03 Aqwest (United States)'), (32428, 'https://ror.org/02tbvhh96', 'en', 1, 'https://ror.org/02tbvhh96 First Affiliated Hospital of Xi''an Jiaotong University'), (32429, 'https://ror.org/02tc9fx21', 'it', 1, 'https://ror.org/02tc9fx21 Dipartimento per le pari opportunità'), (32430, 'https://ror.org/02te5rf52', 'pt', 1, 'https://ror.org/02te5rf52 Fundação de Amparo à Ciência e Tecnologia de Pernambuco'), (32431, 'https://ror.org/02techz27', 'no_lang_code', 1, 'https://ror.org/02techz27 T-Industry (Slovakia)'), (32432, 'https://ror.org/02tenpc86', 'en', 1, 'https://ror.org/02tenpc86 Scottish Universities Life Sciences Alliance'), (32433, 'https://ror.org/02tggj648', 'no_lang_code', 1, 'https://ror.org/02tggj648 KraussMaffei (Slovakia)'), (32434, 'https://ror.org/02tgjtw54', 'no_lang_code', 1, 'https://ror.org/02tgjtw54 Applied Radar (United States)'), (32435, 'https://ror.org/02thhxe24', 'en', 1, 'https://ror.org/02thhxe24 Alaska Bible College'), (32436, 'https://ror.org/02tm5n709', 'no_lang_code', 1, 'https://ror.org/02tm5n709 Heraeus (Canada)'), (32437, 'https://ror.org/02tm9s162', 'en', 1, 'https://ror.org/02tm9s162 Imperial War Museum'), (32438, 'https://ror.org/02tmzwm33', 'en', 1, 'https://ror.org/02tmzwm33 Guerci Consulting Services'), (32439, 'https://ror.org/02tn54y74', 'no_lang_code', 1, 'https://ror.org/02tn54y74 Read Jones Christoffersen (Canada)'), (32440, 'https://ror.org/02tqbra66', 'no_lang_code', 1, 'https://ror.org/02tqbra66 MaxPower (United States)'), (32441, 'https://ror.org/02tqmtb62', 'no_lang_code', 1, 'https://ror.org/02tqmtb62 Yankee Scientific (United States)'), (32442, 'https://ror.org/02tr21n67', 'en', 1, 'https://ror.org/02tr21n67 Internet Foundation In Sweden'), (32443, 'https://ror.org/02trd4c61', 'no_lang_code', 1, 'https://ror.org/02trd4c61 Ultimara (United States)'), (32444, 'https://ror.org/02tvhnn50', 'hu', 1, 'https://ror.org/02tvhnn50 Károlyi Sándor Kórház'), (32445, 'https://ror.org/02ty5cy83', 'no_lang_code', 1, 'https://ror.org/02ty5cy83 Infinera (United States)'), (32446, 'https://ror.org/02tyyce58', 'no_lang_code', 1, 'https://ror.org/02tyyce58 Bcn Cambra Logica De Projectes'), (32447, 'https://ror.org/02v09hm63', 'no_lang_code', 1, 'https://ror.org/02v09hm63 Surmet (United States)'), (32448, 'https://ror.org/02v5pea97', 'en', 1, 'https://ror.org/02v5pea97 American Porphyria Foundation'), (32449, 'https://ror.org/02v63pq94', 'no_lang_code', 1, 'https://ror.org/02v63pq94 Power Standards Lab (United States)'), (32450, 'https://ror.org/02v6jgb22', 'no_lang_code', 1, 'https://ror.org/02v6jgb22 Creativ-Ceutical (France)'), (32451, 'https://ror.org/02v8p6669', 'no_lang_code', 1, 'https://ror.org/02v8p6669 Omnitek Partners (United States)'), (32452, 'https://ror.org/02v93c994', 'no_lang_code', 1, 'https://ror.org/02v93c994 Blade Diagnostics (United States)'), (32453, 'https://ror.org/02vbdk750', 'no_lang_code', 1, 'https://ror.org/02vbdk750 Patrys (Germany)'), (32454, 'https://ror.org/02vbgbc26', 'en', 1, 'https://ror.org/02vbgbc26 Hungarian National Gallery'), (32455, 'https://ror.org/02vbx3q13', 'no_lang_code', 1, 'https://ror.org/02vbx3q13 CH Four Biogas (Canada)'), (32456, 'https://ror.org/02vf3h353', 'en', 1, 'https://ror.org/02vf3h353 Le Conseil médical du Canada Medical Council of Canada'), (32457, 'https://ror.org/02vfebb84', 'en', 1, 'https://ror.org/02vfebb84 Westbrook University'), (32458, 'https://ror.org/02vfyyh15', 'no_lang_code', 1, 'https://ror.org/02vfyyh15 CU Aerospace (United States)'), (32459, 'https://ror.org/02vhq0d75', 'en', 1, 'https://ror.org/02vhq0d75 Mid Sweden Science Park'), (32460, 'https://ror.org/02vk7w417', 'en', 1, 'https://ror.org/02vk7w417 Welsh National College'), (32461, 'https://ror.org/02vkwpj59', 'no_lang_code', 1, 'https://ror.org/02vkwpj59 West of England Local Enterprise Partnership (United Kingdom)'), (32462, 'https://ror.org/02vmvtc06', 'no_lang_code', 1, 'https://ror.org/02vmvtc06 Redoxis (Sweden)'), (32463, 'https://ror.org/02vp4yp31', 'no_lang_code', 1, 'https://ror.org/02vp4yp31 Exothermics (United States)'), (32464, 'https://ror.org/02vrn1720', 'sk', 1, 'https://ror.org/02vrn1720 Výskumný Ústav Mliekarenský'), (32465, 'https://ror.org/02vs70k74', 'en', 1, 'https://ror.org/02vs70k74 Malmö Municipality'), (32466, 'https://ror.org/02vt3b359', 'en', 1, 'https://ror.org/02vt3b359 Government of Jilin Province'), (32467, 'https://ror.org/02vt8b034', 'no_lang_code', 1, 'https://ror.org/02vt8b034 Algoryx Simulation (Sweden)'), (32468, 'https://ror.org/02vtcvw94', 'no_lang_code', 1, 'https://ror.org/02vtcvw94 Gilasio Coding (Israel)'), (32469, 'https://ror.org/02vtff553', 'en', 1, 'https://ror.org/02vtff553 Texas Chiropractic College'), (32470, 'https://ror.org/02vvx3p07', 'no_lang_code', 1, 'https://ror.org/02vvx3p07 TeachTown (United States)'), (32471, 'https://ror.org/02vx8p498', 'no_lang_code', 1, 'https://ror.org/02vx8p498 Hudbay Minerals (Canada)'), (32472, 'https://ror.org/02vxk8v76', 'en', 1, 'https://ror.org/02vxk8v76 Ladies Leukemia League'), (32473, 'https://ror.org/02vz36p73', 'no_lang_code', 1, 'https://ror.org/02vz36p73 Prevention Group'), (32474, 'https://ror.org/02vz62k77', 'en', 1, 'https://ror.org/02vz62k77 Republic of Burundi République du Burundi'), (32475, 'https://ror.org/02vzczv80', 'en', 1, 'https://ror.org/02vzczv80 College of Veterinarians of British Columbia'), (32476, 'https://ror.org/02vzf2422', 'en', 1, 'https://ror.org/02vzf2422 Academia de la Marina Mercante de los Estados Unidos Académie de la marine marchande des États-unis United States Merchant Marine Academy'), (32477, 'https://ror.org/02vzkf466', 'en', 1, 'https://ror.org/02vzkf466 Judicial Academy of the Slovak Republic'), (32478, 'https://ror.org/02vzqaq35', 'en', 1, 'https://ror.org/02vzqaq35 First Hospital of Shanxi Medical University'), (32479, 'https://ror.org/02vzzw378', 'en', 1, 'https://ror.org/02vzzw378 Hancock Shaker Village'), (32480, 'https://ror.org/02w5xx833', 'no_lang_code', 1, 'https://ror.org/02w5xx833 Biomotif (Sweden)'), (32481, 'https://ror.org/02w6gr951', 'en', 1, 'https://ror.org/02w6gr951 Shanghai Institute of Applied Physics 中国科学院上海应用物理研究所'), (32482, 'https://ror.org/02w7ppq59', 'no_lang_code', 1, 'https://ror.org/02w7ppq59 Narrative (Sweden)'), (32483, 'https://ror.org/02wbbzx11', 'en', 1, 'https://ror.org/02wbbzx11 New School for Jewish Studies'), (32484, 'https://ror.org/02wdjff78', 'en', 1, 'https://ror.org/02wdjff78 State Studies Foundation'), (32485, 'https://ror.org/02wdwnk04', 'en', 1, 'https://ror.org/02wdwnk04 British Heart Foundation'), (32486, 'https://ror.org/02we8bf02', 'no_lang_code', 1, 'https://ror.org/02we8bf02 NewMarket Corporation (United States)'), (32487, 'https://ror.org/02wedcm51', 'no_lang_code', 1, 'https://ror.org/02wedcm51 Tezzaron Semiconductor (United States)'), (32488, 'https://ror.org/02werpm25', 'no_lang_code', 1, 'https://ror.org/02werpm25 MMA Design (United States)'), (32489, 'https://ror.org/02wev3m05', 'no_lang_code', 1, 'https://ror.org/02wev3m05 Matsys (United States)'), (32490, 'https://ror.org/02wh8xm70', 'en', 1, 'https://ror.org/02wh8xm70 Shanxi Eye Hospital'), (32491, 'https://ror.org/02wk8wx53', 'en', 1, 'https://ror.org/02wk8wx53 Gouvernement du Nouveau-Brunswick Government of New Brunswick'), (32492, 'https://ror.org/02wkxng78', 'no_lang_code', 1, 'https://ror.org/02wkxng78 RecondOil (Sweden)'), (32493, 'https://ror.org/02wpr4m51', 'no_lang_code', 1, 'https://ror.org/02wpr4m51 Kumetrix (United States)'), (32494, 'https://ror.org/02wr53m35', 'no_lang_code', 1, 'https://ror.org/02wr53m35 Arboritec (Sweden)'), (32495, 'https://ror.org/02wv5fj21', 'en', 1, 'https://ror.org/02wv5fj21 Children''s Cancer Research Fund'), (32496, 'https://ror.org/02wvrmv25', 'no_lang_code', 1, 'https://ror.org/02wvrmv25 Industrial Development Center (Sweden)'), (32497, 'https://ror.org/02wwt0d68', 'no_lang_code', 1, 'https://ror.org/02wwt0d68 Shinsera Technologies (Japan)'), (32498, 'https://ror.org/02wx5p869', 'no_lang_code', 1, 'https://ror.org/02wx5p869 Howden (United Kingdom)'), (32499, 'https://ror.org/02wx79d08', 'no_lang_code', 1, 'https://ror.org/02wx79d08 Taiwan Semiconductor Manufacturing Company (Taiwan) 台灣積體電路製造公司'), (32500, 'https://ror.org/02wyf5v78', 'no_lang_code', 1, 'https://ror.org/02wyf5v78 JonDeTech (Sweden)'), (32501, 'https://ror.org/02wzw7340', 'no_lang_code', 1, 'https://ror.org/02wzw7340 Advanced Infoneering (United States)'), (32502, 'https://ror.org/02x2xf445', 'en', 1, 'https://ror.org/02x2xf445 Institute of Nature Conservation Instytut Ochrony Przyrody'), (32503, 'https://ror.org/02x3pxw11', 'no_lang_code', 1, 'https://ror.org/02x3pxw11 Precision Varionic International (United Kingdom)'), (32504, 'https://ror.org/02x81h069', 'en', 1, 'https://ror.org/02x81h069 Organization for Tropical Studies'), (32505, 'https://ror.org/02x9spt42', 'no_lang_code', 1, 'https://ror.org/02x9spt42 WestGen (Canada)'), (32506, 'https://ror.org/02xa5f497', 'en', 1, 'https://ror.org/02xa5f497 Healthcare Georgia Foundation'), (32507, 'https://ror.org/02xbjfn31', 'en', 1, 'https://ror.org/02xbjfn31 Middle East Fertility Society'), (32508, 'https://ror.org/02xdb6745', 'et', 1, 'https://ror.org/02xdb6745 Emakeele Selts'), (32509, 'https://ror.org/02xewxa75', 'en', 1, 'https://ror.org/02xewxa75 Berkeley College'), (32510, 'https://ror.org/02xey9a22', 'en', 1, 'https://ror.org/02xey9a22 Fogarty International Center'), (32511, 'https://ror.org/02xgmf234', 'no_lang_code', 1, 'https://ror.org/02xgmf234 Amelex (United States)'), (32512, 'https://ror.org/02xqtsp69', 'hu', 1, 'https://ror.org/02xqtsp69 Móra Ferenc Múzeum'), (32513, 'https://ror.org/02xrt8f30', 'no_lang_code', 1, 'https://ror.org/02xrt8f30 FarCo Technologies (United States)'), (32514, 'https://ror.org/02xrzsw71', 'no_lang_code', 1, 'https://ror.org/02xrzsw71 QmagiQ (United States)'), (32515, 'https://ror.org/02xvp8z16', 'en', 1, 'https://ror.org/02xvp8z16 Ministry of Higher Education Ministère de l''Enseignement Supérieur'), (32516, 'https://ror.org/02xwkbq98', 'en', 1, 'https://ror.org/02xwkbq98 National Heart Foundation of New Zealand'), (32517, 'https://ror.org/02xx4aw44', 'en', 1, 'https://ror.org/02xx4aw44 Peak Parent Center'), (32518, 'https://ror.org/02xxx6w64', 'en', 1, 'https://ror.org/02xxx6w64 81th Hospital of PLA 中国人民解放军第八一医院'), (32519, 'https://ror.org/02xy94a15', 'no_lang_code', 1, 'https://ror.org/02xy94a15 ChromoGenics (Sweden)'), (32520, 'https://ror.org/02xzsdt57', 'no_lang_code', 1, 'https://ror.org/02xzsdt57 Surface Optics (United States)'), (32521, 'https://ror.org/02y114t67', 'no_lang_code', 1, 'https://ror.org/02y114t67 Autogrid Systems (United States)'), (32522, 'https://ror.org/02y2gng66', 'en', 1, 'https://ror.org/02y2gng66 Save the Children'), (32523, 'https://ror.org/02y2j7w80', 'no_lang_code', 1, 'https://ror.org/02y2j7w80 RBS Technologies (United States)'), (32524, 'https://ror.org/02y3cnq68', 'en', 1, 'https://ror.org/02y3cnq68 Biomedical Informatics Research Center Antwerp'), (32525, 'https://ror.org/02y47bf73', 'no_lang_code', 1, 'https://ror.org/02y47bf73 Evonik (Canada)'), (32526, 'https://ror.org/02y5ra618', 'no_lang_code', 1, 'https://ror.org/02y5ra618 Bacher Energie (Switzerland)'), (32527, 'https://ror.org/02y720j55', 'no_lang_code', 1, 'https://ror.org/02y720j55 Guild Hall'), (32528, 'https://ror.org/02y751y19', 'no_lang_code', 1, 'https://ror.org/02y751y19 Kellogg''s (Canada)'), (32529, 'https://ror.org/02y8zvn85', 'no_lang_code', 1, 'https://ror.org/02y8zvn85 GP Technologies (United States)'), (32530, 'https://ror.org/02yg6th19', 'no_lang_code', 1, 'https://ror.org/02yg6th19 Elteco (Slovakia)'), (32531, 'https://ror.org/02ygftm07', 'no_lang_code', 1, 'https://ror.org/02ygftm07 Pharmachem Laboratories (United States)'), (32532, 'https://ror.org/02yk12g97', 'no_lang_code', 1, 'https://ror.org/02yk12g97 Hexagon Lincoln (United States)'), (32533, 'https://ror.org/02ykcmr55', 'en', 1, 'https://ror.org/02ykcmr55 Shandong Province Animal Husbandry and Veterinary Bureau'), (32534, 'https://ror.org/02ymk8b69', 'en', 1, 'https://ror.org/02ymk8b69 Xi''an University of Science and Education Foundation'), (32535, 'https://ror.org/02ympmq44', 'no_lang_code', 1, 'https://ror.org/02ympmq44 Crossfield Technology (United States)'), (32536, 'https://ror.org/02yn1nr06', 'en', 1, 'https://ror.org/02yn1nr06 California Sea Grant'), (32537, 'https://ror.org/02ypd5h61', 'no_lang_code', 1, 'https://ror.org/02ypd5h61 Simulation Technologies (United States)'), (32538, 'https://ror.org/02ytn5d60', 'no_lang_code', 1, 'https://ror.org/02ytn5d60 Ferring Pharmaceuticals (United States)'), (32539, 'https://ror.org/02yv7gj50', 'no_lang_code', 1, 'https://ror.org/02yv7gj50 SNP Genetics (South Korea)'), (32540, 'https://ror.org/02yyd0927', 'no_lang_code', 1, 'https://ror.org/02yyd0927 Holochip (United States)'), (32541, 'https://ror.org/02yyzvz79', 'en', 1, 'https://ror.org/02yyzvz79 Texas Emerging Technology Fund'), (32542, 'https://ror.org/02yz1n812', 'en', 1, 'https://ror.org/02yz1n812 AIDS Clinical Trials Group'); INSERT INTO `rors` VALUES (32543, 'https://ror.org/02z02cv32', 'en', 1, 'https://ror.org/02z02cv32 Institut de l’Énergie Éolienne du Canada Wind Energy Institute of Canada'), (32544, 'https://ror.org/02z0nsb22', 'en', 1, 'https://ror.org/02z0nsb22 Institute of Mountain Hazards and Environment 中国科学院水利部成都山地灾害与环境研究所'), (32545, 'https://ror.org/02z0ywx65', 'nl', 1, 'https://ror.org/02z0ywx65 Regionale scholengemeenschap Goeree-Overflakkee'), (32546, 'https://ror.org/02z2a9w02', 'en', 1, 'https://ror.org/02z2a9w02 Horserace Betting Levy Board'), (32547, 'https://ror.org/02z4mtf98', 'no_lang_code', 1, 'https://ror.org/02z4mtf98 Sturman Industries (United States)'), (32548, 'https://ror.org/02z4q1r45', 'en', 1, 'https://ror.org/02z4q1r45 Pärnu Museum'), (32549, 'https://ror.org/02z4rpq04', 'en', 1, 'https://ror.org/02z4rpq04 Ottó Herman Museum'), (32550, 'https://ror.org/02z681y43', 'en', 1, 'https://ror.org/02z681y43 National Rifle Association of America'), (32551, 'https://ror.org/02z95aw27', 'no_lang_code', 1, 'https://ror.org/02z95aw27 Peterborough Utilities Service (Canada)'), (32552, 'https://ror.org/02zbnnb30', 'no_lang_code', 1, 'https://ror.org/02zbnnb30 Knowledge Broadband Services (Greece)'), (32553, 'https://ror.org/02zcf8e64', 'no_lang_code', 1, 'https://ror.org/02zcf8e64 Gener8 (United States)'), (32554, 'https://ror.org/02zdz9d52', 'en', 1, 'https://ror.org/02zdz9d52 Association for Behavior Analysis International'), (32555, 'https://ror.org/02zez7725', 'en', 1, 'https://ror.org/02zez7725 Bimini Biological Field Station Foundation'), (32556, 'https://ror.org/02zg7gg26', 'no_lang_code', 1, 'https://ror.org/02zg7gg26 MC10 (United States)'), (32557, 'https://ror.org/02zh48v40', 'no_lang_code', 1, 'https://ror.org/02zh48v40 Magle (Sweden)'), (32558, 'https://ror.org/02zh9ta75', 'no_lang_code', 1, 'https://ror.org/02zh9ta75 BeeMobile (Sweden)'), (32559, 'https://ror.org/02zhy2e32', 'no_lang_code', 1, 'https://ror.org/02zhy2e32 Sigolis (Sweden)'), (32560, 'https://ror.org/02zkxjz73', 'fr', 1, 'https://ror.org/02zkxjz73 Fondation de France'), (32561, 'https://ror.org/02zmcw850', 'no_lang_code', 1, 'https://ror.org/02zmcw850 Treviso Tecnologia (Italy)'), (32562, 'https://ror.org/02zngav60', 'no_lang_code', 1, 'https://ror.org/02zngav60 SimVentions (United States)'), (32563, 'https://ror.org/02zq38y32', 'en', 1, 'https://ror.org/02zq38y32 Korea Institute of Energy Technology Evaluation and Planning'), (32564, 'https://ror.org/02zqq5p14', 'no_lang_code', 1, 'https://ror.org/02zqq5p14 Michelin (Canada)'), (32565, 'https://ror.org/02zqqn969', 'no_lang_code', 1, 'https://ror.org/02zqqn969 Dillon Consulting'), (32566, 'https://ror.org/02zryj468', 'no_lang_code', 1, 'https://ror.org/02zryj468 Irflex (United States)'), (32567, 'https://ror.org/02ztj8667', 'en', 1, 'https://ror.org/02ztj8667 Royal Irgalmasrendi Hospital'), (32568, 'https://ror.org/02zwjvm55', 'en', 1, 'https://ror.org/02zwjvm55 Blue Mountain College'), (32569, 'https://ror.org/02zxar492', 'no_lang_code', 1, 'https://ror.org/02zxar492 Kulite (United States)'), (32570, 'https://ror.org/02zxbg516', 'en', 1, 'https://ror.org/02zxbg516 National Forest Centre'), (32571, 'https://ror.org/02zxqxw53', 'en', 1, 'https://ror.org/02zxqxw53 AXA Research Fund'), (32572, 'https://ror.org/02zxyre23', 'en', 1, 'https://ror.org/02zxyre23 Beijing Aerospace General Hospital'), (32573, 'https://ror.org/02zydys88', 'no_lang_code', 1, 'https://ror.org/02zydys88 Delta-Q Technologies (Canada)'), (32574, 'https://ror.org/02zz5ef94', 'en', 1, 'https://ror.org/02zz5ef94 Clarke Schools for Hearing and Speech'), (32575, 'https://ror.org/0300cef81', 'no_lang_code', 1, 'https://ror.org/0300cef81 Lola ya Bonobo'), (32576, 'https://ror.org/0302b4677', 'en', 1, 'https://ror.org/0302b4677 British Academy'), (32577, 'https://ror.org/0302v9k70', 'en', 1, 'https://ror.org/0302v9k70 Connecticut State Emergency Response Commission'), (32578, 'https://ror.org/0302x4x02', 'no_lang_code', 1, 'https://ror.org/0302x4x02 Biogas Barth (Germany)'), (32579, 'https://ror.org/0303r7956', 'no_lang_code', 1, 'https://ror.org/0303r7956 Strategic Insight (United States)'), (32580, 'https://ror.org/030417565', 'no_lang_code', 1, 'https://ror.org/030417565 VSL Systems (Sweden)'), (32581, 'https://ror.org/03055qx94', 'en', 1, 'https://ror.org/03055qx94 Canada Economic Development for Quebec Regions'), (32582, 'https://ror.org/030689123', 'en', 1, 'https://ror.org/030689123 Georgia Research Alliance'), (32583, 'https://ror.org/0306syb73', 'no_lang_code', 1, 'https://ror.org/0306syb73 Eigent Technologies (United States)'), (32584, 'https://ror.org/0309hgk38', 'no_lang_code', 1, 'https://ror.org/0309hgk38 Plasan (United States)'), (32585, 'https://ror.org/030a75q40', 'no_lang_code', 1, 'https://ror.org/030a75q40 Vision Systems Incorporation (United States)'), (32586, 'https://ror.org/030cszc07', 'en', 1, 'https://ror.org/030cszc07 Australian Astronomical Observatory'), (32587, 'https://ror.org/030d08e08', 'en', 1, 'https://ror.org/030d08e08 China Tobacco 国家烟草专卖局'), (32588, 'https://ror.org/030f5x630', 'no_lang_code', 1, 'https://ror.org/030f5x630 Labormedizinische Zentrum Dr Risch (Switzerland)'), (32589, 'https://ror.org/030hmhj85', 'de', 1, 'https://ror.org/030hmhj85 Institut für Wissenschaft und Kunst'), (32590, 'https://ror.org/030ms0k96', 'en', 1, 'https://ror.org/030ms0k96 Alfa College'), (32591, 'https://ror.org/030nbqh22', 'no_lang_code', 1, 'https://ror.org/030nbqh22 MRV Communications (United States)'), (32592, 'https://ror.org/030p6wg21', 'no_lang_code', 1, 'https://ror.org/030p6wg21 EnZinc (United States)'), (32593, 'https://ror.org/030qdbw52', 'en', 1, 'https://ror.org/030qdbw52 Association Vahatra'), (32594, 'https://ror.org/030rdap26', 'ms', 1, 'https://ror.org/030rdap26 Hospital Sungai Buloh'), (32595, 'https://ror.org/030sbze61', 'en', 1, 'https://ror.org/030sbze61 Institute for Molecular Medicine Finland'), (32596, 'https://ror.org/030sqdt03', 'no_lang_code', 1, 'https://ror.org/030sqdt03 BPM Consulting (Slovakia)'), (32597, 'https://ror.org/030trv569', 'no_lang_code', 1, 'https://ror.org/030trv569 Aecom (Canada)'), (32598, 'https://ror.org/030tskq39', 'no_lang_code', 1, 'https://ror.org/030tskq39 Kigre (United States)'), (32599, 'https://ror.org/030v6q043', 'no_lang_code', 1, 'https://ror.org/030v6q043 SeaLandAire Technologies (United States)'), (32600, 'https://ror.org/030vh3375', 'no_lang_code', 1, 'https://ror.org/030vh3375 IDELIX Software (Canada)'), (32601, 'https://ror.org/030vkcn94', 'en', 1, 'https://ror.org/030vkcn94 Korean Red Cross'), (32602, 'https://ror.org/030vkvb42', 'no_lang_code', 1, 'https://ror.org/030vkvb42 Process Instruments (United States)'), (32603, 'https://ror.org/030w99567', 'pt', 1, 'https://ror.org/030w99567 Financiadora de Estudos e Projetos Funding Authority for Studies and Projects'), (32604, 'https://ror.org/030wt4r64', 'no_lang_code', 1, 'https://ror.org/030wt4r64 Sci-Tec (United States)'), (32605, 'https://ror.org/03122yk49', 'no_lang_code', 1, 'https://ror.org/03122yk49 Optical Sciences (United States)'), (32606, 'https://ror.org/03133qe46', 'en', 1, 'https://ror.org/03133qe46 Fight for Sight'), (32607, 'https://ror.org/0313w9h47', 'en', 1, 'https://ror.org/0313w9h47 Swedish House of Finance'), (32608, 'https://ror.org/031422186', 'sv', 1, 'https://ror.org/031422186 Norrköping Science Park'), (32609, 'https://ror.org/0314naf78', 'no_lang_code', 1, 'https://ror.org/0314naf78 San Diego Composites (United States)'), (32610, 'https://ror.org/0315yxm36', 'no_lang_code', 1, 'https://ror.org/0315yxm36 BroadReach Healthcare (South Africa)'), (32611, 'https://ror.org/0316wrd42', 'en', 1, 'https://ror.org/0316wrd42 Victorian Cancer Agency'), (32612, 'https://ror.org/031756c24', 'es', 1, 'https://ror.org/031756c24 Consejo Estatal de Ciencia, Tecnología e Innovación de Chihuahua'), (32613, 'https://ror.org/0317zr716', 'no_lang_code', 1, 'https://ror.org/0317zr716 Ethnographic Museum'), (32614, 'https://ror.org/031a6e068', 'it', 1, 'https://ror.org/031a6e068 Associazione Nazionale per l’Isolamento Termico e Acustico'), (32615, 'https://ror.org/031drvr68', 'en', 1, 'https://ror.org/031drvr68 Bali Psychiatric Center'), (32616, 'https://ror.org/031fs4257', 'en', 1, 'https://ror.org/031fs4257 British Columbia Blueberry Council'), (32617, 'https://ror.org/031g86d21', 'no_lang_code', 1, 'https://ror.org/031g86d21 Hstar Technologies (United States)'), (32618, 'https://ror.org/031ghkc34', 'no_lang_code', 1, 'https://ror.org/031ghkc34 Agile Systems (United States)'), (32619, 'https://ror.org/031kbs337', 'en', 1, 'https://ror.org/031kbs337 Institut für jüdische Geschichte Österreichs Institute for Jewish History in Austria'), (32620, 'https://ror.org/031m8pd59', 'en', 1, 'https://ror.org/031m8pd59 South Carolina Vocational Rehabilitation Department'), (32621, 'https://ror.org/031md1b10', 'en', 1, 'https://ror.org/031md1b10 Cord Blood Center'), (32622, 'https://ror.org/031n58j85', 'no_lang_code', 1, 'https://ror.org/031n58j85 Eos Photonics (United States)'), (32623, 'https://ror.org/031nm5713', 'en', 1, 'https://ror.org/031nm5713 Chongqing Municipality Education Commission'), (32624, 'https://ror.org/031p7wh32', 'en', 1, 'https://ror.org/031p7wh32 European Association for Cancer Research'), (32625, 'https://ror.org/031r5nr48', 'no_lang_code', 1, 'https://ror.org/031r5nr48 Vecna Technologies (United States)'), (32626, 'https://ror.org/031v6xt50', 'en', 1, 'https://ror.org/031v6xt50 Pine Manor College'), (32627, 'https://ror.org/031wq1t38', 'en', 1, 'https://ror.org/031wq1t38 Ministry of Transport'), (32628, 'https://ror.org/031yy4354', 'no_lang_code', 1, 'https://ror.org/031yy4354 MediWiSe (United Kingdom)'), (32629, 'https://ror.org/031z84p26', 'no_lang_code', 1, 'https://ror.org/031z84p26 Agbar (Spain) Sociedad General de Aguas de Barcelona'), (32630, 'https://ror.org/031zdk170', 'no_lang_code', 1, 'https://ror.org/031zdk170 Florida Turbine Technologies (United States)'), (32631, 'https://ror.org/031zfq432', 'no_lang_code', 1, 'https://ror.org/031zfq432 Ferring Pharmaceuticals (Switzerland)'), (32632, 'https://ror.org/031zhyz22', 'en', 1, 'https://ror.org/031zhyz22 Institute for Human Centered Design'), (32633, 'https://ror.org/031zv7121', 'no_lang_code', 1, 'https://ror.org/031zv7121 IQE (United States)'), (32634, 'https://ror.org/0320gnw44', 'it', 1, 'https://ror.org/0320gnw44 Consorzio Futuro in Ricerca'), (32635, 'https://ror.org/0321f3g84', 'no_lang_code', 1, 'https://ror.org/0321f3g84 Doberman (Sweden)'), (32636, 'https://ror.org/0321tjn48', 'es', 1, 'https://ror.org/0321tjn48 Instituto de Formación y Estudios Sociales'), (32637, 'https://ror.org/0322ccw15', 'no_lang_code', 1, 'https://ror.org/0322ccw15 Prototek (United States)'), (32638, 'https://ror.org/0325s8d52', 'en', 1, 'https://ror.org/0325s8d52 Mulier Institute'), (32639, 'https://ror.org/0325zgw13', 'no_lang_code', 1, 'https://ror.org/0325zgw13 Transmisie Engineering (Slovakia)'), (32640, 'https://ror.org/0326cx138', 'no_lang_code', 1, 'https://ror.org/0326cx138 Philips (Canada)'), (32641, 'https://ror.org/0327ade70', 'no_lang_code', 1, 'https://ror.org/0327ade70 Spectra Energy (Canada)'), (32642, 'https://ror.org/0327kb204', 'no_lang_code', 1, 'https://ror.org/0327kb204 Limes Audio (Sweden)'), (32643, 'https://ror.org/0329mpy71', 'no_lang_code', 1, 'https://ror.org/0329mpy71 Techsburg (United States)'), (32644, 'https://ror.org/0329q1430', 'en', 1, 'https://ror.org/0329q1430 Estonian Association for Applied Linguistics'), (32645, 'https://ror.org/032bte841', 'no_lang_code', 1, 'https://ror.org/032bte841 Rogers Communications (Canada)'), (32646, 'https://ror.org/032he5k36', 'no_lang_code', 1, 'https://ror.org/032he5k36 Kortárs Könyvkiadói (Hungary)'), (32647, 'https://ror.org/032hk6448', 'en', 1, 'https://ror.org/032hk6448 Changshu No.1 People''s Hospital'), (32648, 'https://ror.org/032j0xp45', 'en', 1, 'https://ror.org/032j0xp45 Toccoa Falls College'), (32649, 'https://ror.org/032nbqb04', 'en', 1, 'https://ror.org/032nbqb04 Illinois Department of Commerce and Economic Opportunity'), (32650, 'https://ror.org/032p34689', 'no_lang_code', 1, 'https://ror.org/032p34689 KnowCharge (Canada)'), (32651, 'https://ror.org/032p73z44', 'en', 1, 'https://ror.org/032p73z44 Sea Turtle Conservancy'), (32652, 'https://ror.org/032pjd111', 'no_lang_code', 1, 'https://ror.org/032pjd111 Plasma Technology (United States)'), (32653, 'https://ror.org/032rem971', 'en', 1, 'https://ror.org/032rem971 Metropolitan University College'), (32654, 'https://ror.org/032sd8787', 'no_lang_code', 1, 'https://ror.org/032sd8787 Axiomatics (Sweden)'), (32655, 'https://ror.org/032srmw97', 'bs', 1, 'https://ror.org/032srmw97 Svjetski Univerzitetski Bosne i Hercegovine'), (32656, 'https://ror.org/032tyv240', 'en', 1, 'https://ror.org/032tyv240 Institute of Molecular Science and Technologies Istituto di Scienze e Tecnologie Molecolari'), (32657, 'https://ror.org/0331gec24', 'no_lang_code', 1, 'https://ror.org/0331gec24 Enigmatics (United States)'), (32658, 'https://ror.org/03334wr17', 'en', 1, 'https://ror.org/03334wr17 Museum at Eldridge Street'), (32659, 'https://ror.org/03336v443', 'no_lang_code', 1, 'https://ror.org/03336v443 Solana Networks (Canada)'), (32660, 'https://ror.org/03338g593', 'no_lang_code', 1, 'https://ror.org/03338g593 Lamda Technology (Greece)'), (32661, 'https://ror.org/0333c2q56', 'no_lang_code', 1, 'https://ror.org/0333c2q56 Rugate Technologies (United States)'), (32662, 'https://ror.org/0333dtq15', 'no_lang_code', 1, 'https://ror.org/0333dtq15 Hewlett-Packard (Canada)'), (32663, 'https://ror.org/0333shy78', 'no_lang_code', 1, 'https://ror.org/0333shy78 Renegade Materials Corporation (United States)'), (32664, 'https://ror.org/0333xzh65', 'en', 1, 'https://ror.org/0333xzh65 Wolfson Foundation'), (32665, 'https://ror.org/03356n642', 'en', 1, 'https://ror.org/03356n642 Lister Institute of Preventive Medicine'), (32666, 'https://ror.org/0335n2618', 'en', 1, 'https://ror.org/0335n2618 Jiangsu Agricultural Science and Technology Innovation Fund'), (32667, 'https://ror.org/0337qzr68', 'no_lang_code', 1, 'https://ror.org/0337qzr68 Linearizer Technology (United States)'), (32668, 'https://ror.org/0337t4k55', 'hu', 1, 'https://ror.org/0337t4k55 Országos Lelkipásztori Intézet'), (32669, 'https://ror.org/0338vpb86', 'no_lang_code', 1, 'https://ror.org/0338vpb86 Microelectronics Research Development (United States)'), (32670, 'https://ror.org/033904843', 'en', 1, 'https://ror.org/033904843 New Economic School Российская экономическая школа'), (32671, 'https://ror.org/033958n71', 'en', 1, 'https://ror.org/033958n71 Nederlandse School voor Openbaar Bestuur Netherlands School of Public Administration'), (32672, 'https://ror.org/0339vy375', 'en', 1, 'https://ror.org/0339vy375 TransCen'), (32673, 'https://ror.org/033cz6738', 'en', 1, 'https://ror.org/033cz6738 Oklahoma Department of Rehabilitation Services'), (32674, 'https://ror.org/033f0gp46', 'no_lang_code', 1, 'https://ror.org/033f0gp46 Datalan (Slovakia)'), (32675, 'https://ror.org/033g7w111', 'no_lang_code', 1, 'https://ror.org/033g7w111 Accel Brands (United States)'), (32676, 'https://ror.org/033jxn043', 'en', 1, 'https://ror.org/033jxn043 Washington State Department of Commerce'), (32677, 'https://ror.org/033khx691', 'no_lang_code', 1, 'https://ror.org/033khx691 Uson Marine (Sweden)'), (32678, 'https://ror.org/033km7y93', 'no_lang_code', 1, 'https://ror.org/033km7y93 SoHaR (United States)'), (32679, 'https://ror.org/033n46m09', 'no_lang_code', 1, 'https://ror.org/033n46m09 DB&A (United States)'), (32680, 'https://ror.org/033r93f52', 'no_lang_code', 1, 'https://ror.org/033r93f52 Clothworkers Company (United Kingdom)'), (32681, 'https://ror.org/033rwdt55', 'no_lang_code', 1, 'https://ror.org/033rwdt55 McAsphalt Industries (Canada)'), (32682, 'https://ror.org/033we5h36', 'no_lang_code', 1, 'https://ror.org/033we5h36 Vaxine (Australia)'), (32683, 'https://ror.org/033wnbm63', 'no_lang_code', 1, 'https://ror.org/033wnbm63 Jensen Hughes (United States)'), (32684, 'https://ror.org/033xh9c11', 'no_lang_code', 1, 'https://ror.org/033xh9c11 Scientific Systems (United States)'), (32685, 'https://ror.org/033xtdz52', 'pt', 1, 'https://ror.org/033xtdz52 Instituto de Pesquisas Jardim Botânico do Rio de Janeiro'), (32686, 'https://ror.org/033y13v84', 'no_lang_code', 1, 'https://ror.org/033y13v84 Hotswaps (Sweden)'), (32687, 'https://ror.org/033z7g133', 'en', 1, 'https://ror.org/033z7g133 Ministry of Energy, Northern Development and Mines Ministère de l''Énergie, du Développement du Nord et des Mines'), (32688, 'https://ror.org/033zd2x30', 'no_lang_code', 1, 'https://ror.org/033zd2x30 O/E Land (Canada)'), (32689, 'https://ror.org/033zf9867', 'en', 1, 'https://ror.org/033zf9867 Missouri Department of Labor and Industrial Relations'), (32690, 'https://ror.org/03400ft78', 'en', 1, 'https://ror.org/03400ft78 Norfolk and Suffolk NHS Foundation Trust'), (32691, 'https://ror.org/0343ms580', 'no_lang_code', 1, 'https://ror.org/0343ms580 Applied Spectra (United States)'), (32692, 'https://ror.org/0349d5t97', 'no_lang_code', 1, 'https://ror.org/0349d5t97 Alkit Communications (Sweden)'), (32693, 'https://ror.org/034csv258', 'sv', 1, 'https://ror.org/034csv258 Övertorneå Municipality'), (32694, 'https://ror.org/034exbn27', 'no_lang_code', 1, 'https://ror.org/034exbn27 Veloxiti (United States)'), (32695, 'https://ror.org/034ezwg26', 'en', 1, 'https://ror.org/034ezwg26 National Chung Shan Institute of Science and Technology'), (32696, 'https://ror.org/034gcgw60', 'en', 1, 'https://ror.org/034gcgw60 Institute of Space and Astronautical Science 宇宙科学研究所'), (32697, 'https://ror.org/034gqf495', 'no_lang_code', 1, 'https://ror.org/034gqf495 Wattguard (Sweden)'), (32698, 'https://ror.org/034hhvm18', 'no_lang_code', 1, 'https://ror.org/034hhvm18 Trout Green Technologies (United States)'), (32699, 'https://ror.org/034npc439', 'en', 1, 'https://ror.org/034npc439 Sixth Hospital of Changchun City'), (32700, 'https://ror.org/034pgmb82', 'no_lang_code', 1, 'https://ror.org/034pgmb82 Dolphin Computer Access (United Kingdom)'), (32701, 'https://ror.org/034rss031', 'en', 1, 'https://ror.org/034rss031 Holstein Association of Canada'), (32702, 'https://ror.org/034wc9785', 'no_lang_code', 1, 'https://ror.org/034wc9785 Coskata (United States)'), (32703, 'https://ror.org/034wh4067', 'en', 1, 'https://ror.org/034wh4067 Wine Council of Ontario'), (32704, 'https://ror.org/03516qg53', 'no_lang_code', 1, 'https://ror.org/03516qg53 Ngenic (Sweden)'), (32705, 'https://ror.org/0351r3c39', 'no_lang_code', 1, 'https://ror.org/0351r3c39 VIP Sensors (United States)'), (32706, 'https://ror.org/0353v0664', 'no_lang_code', 1, 'https://ror.org/0353v0664 Clinical Laserthermia Systems (Sweden)'), (32707, 'https://ror.org/0353xr267', 'no_lang_code', 1, 'https://ror.org/0353xr267 Visita Service (Sweden)'), (32708, 'https://ror.org/0354agh42', 'no_lang_code', 1, 'https://ror.org/0354agh42 Fair Isaac Corporation (United States)'), (32709, 'https://ror.org/03557jp84', 'en', 1, 'https://ror.org/03557jp84 Orangutan Information Centre'), (32710, 'https://ror.org/03562m240', 'en', 1, 'https://ror.org/03562m240 Housing and Building National Research Center'), (32711, 'https://ror.org/035684d86', 'en', 1, 'https://ror.org/035684d86 Voeikov Main Geophysical Observatory федеральное государственное бюджетное учреждение Главная геофизическая обсерватория им. А.И.Воейкова'), (32712, 'https://ror.org/03573qv54', 'en', 1, 'https://ror.org/03573qv54 Orthopaedic Research'), (32713, 'https://ror.org/0357dmp95', 'no_lang_code', 1, 'https://ror.org/0357dmp95 Utility Development (United States)'), (32714, 'https://ror.org/03586p284', 'no_lang_code', 1, 'https://ror.org/03586p284 J. D. Irving (Canada)'), (32715, 'https://ror.org/0359sgh16', 'no_lang_code', 1, 'https://ror.org/0359sgh16 Advanced Technologies Group (United States)'), (32716, 'https://ror.org/035af0m16', 'no_lang_code', 1, 'https://ror.org/035af0m16 Icellate (Sweden)'), (32717, 'https://ror.org/035c3nf67', 'pt', 1, 'https://ror.org/035c3nf67 National Service for Industrial Training Serviço Nacional de Aprendizagem Industrial'), (32718, 'https://ror.org/035gbh774', 'no_lang_code', 1, 'https://ror.org/035gbh774 Lumerical Solutions (Canada)'), (32719, 'https://ror.org/035gbps25', 'en', 1, 'https://ror.org/035gbps25 National Metrology Centre'), (32720, 'https://ror.org/035hx7715', 'en', 1, 'https://ror.org/035hx7715 Wisconsin Sea Grant'), (32721, 'https://ror.org/035jt5x02', 'nl', 1, 'https://ror.org/035jt5x02 CINOP'), (32722, 'https://ror.org/035kh8h98', 'no_lang_code', 1, 'https://ror.org/035kh8h98 Measurement Technology Northwest (United States)'), (32723, 'https://ror.org/035m9f342', 'en', 1, 'https://ror.org/035m9f342 Beth Johnson Foundation'), (32724, 'https://ror.org/035njr402', 'no_lang_code', 1, 'https://ror.org/035njr402 Dynamic Systems & Research (United States)'), (32725, 'https://ror.org/035ra0284', 'no_lang_code', 1, 'https://ror.org/035ra0284 TTC Technologies (United States)'), (32726, 'https://ror.org/035rrps97', 'en', 1, 'https://ror.org/035rrps97 National Research Council'), (32727, 'https://ror.org/035rs9v13', 'en', 1, 'https://ror.org/035rs9v13 Second Affiliated Hospital of Shantou University Medical College'), (32728, 'https://ror.org/035ryz567', 'no_lang_code', 1, 'https://ror.org/035ryz567 Atac (United States)'), (32729, 'https://ror.org/035skgh09', 'en', 1, 'https://ror.org/035skgh09 Comisión para la Igualdad de Oportunidades en el Empleo de los Estados Unidos United States Equal Employment Opportunity Commission'), (32730, 'https://ror.org/035tnyy05', 'en', 1, 'https://ror.org/035tnyy05 John Templeton Foundation'), (32731, 'https://ror.org/035tsx707', 'en', 1, 'https://ror.org/035tsx707 Swedish Incubators & Science Parks'), (32732, 'https://ror.org/035vmht26', 'en', 1, 'https://ror.org/035vmht26 China Association for Science and Technology'), (32733, 'https://ror.org/035w40502', 'en', 1, 'https://ror.org/035w40502 Institute for Learning and Development'), (32734, 'https://ror.org/035w78024', 'no_lang_code', 1, 'https://ror.org/035w78024 Robotic Research (United States)'), (32735, 'https://ror.org/035wmq455', 'en', 1, 'https://ror.org/035wmq455 Deutsche Leberstiftung German Liver Foundation'), (32736, 'https://ror.org/035x8xc95', 'no_lang_code', 1, 'https://ror.org/035x8xc95 Bohemia Interactive Simulations (United States)'), (32737, 'https://ror.org/035yp8515', 'no_lang_code', 1, 'https://ror.org/035yp8515 Modern Technology Solutions (United States)'), (32738, 'https://ror.org/035z4sk50', 'no_lang_code', 1, 'https://ror.org/035z4sk50 Perfekt (Slovakia)'), (32739, 'https://ror.org/035zntx80', 'en', 1, 'https://ror.org/035zntx80 Queensland Museum'), (32740, 'https://ror.org/0363anr51', 'en', 1, 'https://ror.org/0363anr51 Hague Institute for Global Justice'), (32741, 'https://ror.org/0363pts49', 'en', 1, 'https://ror.org/0363pts49 Institute for Nuclear Science and Technology VIỆN KHOA HỌC VÀ KỸ THUẬT HẠT NHÂN'), (32742, 'https://ror.org/0364wnh23', 'en', 1, 'https://ror.org/0364wnh23 Swedish Maritime Technology Forum'), (32743, 'https://ror.org/03659b965', 'no_lang_code', 1, 'https://ror.org/03659b965 Solinst (Canada)'), (32744, 'https://ror.org/0365vfb57', 'en', 1, 'https://ror.org/0365vfb57 Canadian Sheet Steel Building Institute'), (32745, 'https://ror.org/0368jnd28', 'en', 1, 'https://ror.org/0368jnd28 Dutch Cancer Society KWF Kankerbestrijding'), (32746, 'https://ror.org/036adea75', 'en', 1, 'https://ror.org/036adea75 Sherman College of Chiropractic'), (32747, 'https://ror.org/036c4jb90', 'en', 1, 'https://ror.org/036c4jb90 Royal Air Force Museum'), (32748, 'https://ror.org/036cxc626', 'no_lang_code', 1, 'https://ror.org/036cxc626 Inwido (Sweden)'), (32749, 'https://ror.org/036e45z28', 'sv', 1, 'https://ror.org/036e45z28 Affärsutveckling för Besöksnäringen'), (32750, 'https://ror.org/036g4a137', 'en', 1, 'https://ror.org/036g4a137 Manitoba Aerospace Association'), (32751, 'https://ror.org/036mae937', 'no_lang_code', 1, 'https://ror.org/036mae937 Cereal Research (Hungary)'), (32752, 'https://ror.org/036nq5137', 'en', 1, 'https://ror.org/036nq5137 Ministry of Education'), (32753, 'https://ror.org/036p7gy85', 'en', 1, 'https://ror.org/036p7gy85 Secretariat of Environment and Natural Resources Secretaría del Medio Ambiente y Recursos Naturales'), (32754, 'https://ror.org/036qcm975', 'en', 1, 'https://ror.org/036qcm975 San Francisco Art Institute'), (32755, 'https://ror.org/036qj5r13', 'en', 1, 'https://ror.org/036qj5r13 Cambridge College'), (32756, 'https://ror.org/036v5qv16', 'no_lang_code', 1, 'https://ror.org/036v5qv16 General Hospital Asklepieio Voulas'), (32757, 'https://ror.org/036ve4657', 'en', 1, 'https://ror.org/036ve4657 Building and Construction Authority'), (32758, 'https://ror.org/036vnbc76', 'ro', 1, 'https://ror.org/036vnbc76 Spitalul Clinic Judetean de Urgentã Craiova'), (32759, 'https://ror.org/036wp9g51', 'en', 1, 'https://ror.org/036wp9g51 Vienna Wiesenthal Institute for Holocaust Studies'), (32760, 'https://ror.org/036xb2667', 'en', 1, 'https://ror.org/036xb2667 Ministry of Strategy and Finance 대한민국 기획재정부'), (32761, 'https://ror.org/036yap806', 'no_lang_code', 1, 'https://ror.org/036yap806 Abera Bioscience (Sweden)'), (32762, 'https://ror.org/036ymgf08', 'en', 1, 'https://ror.org/036ymgf08 Fuel Cells and Hydrogen'), (32763, 'https://ror.org/036yv4y78', 'en', 1, 'https://ror.org/036yv4y78 Cogswell Polytechnical College'), (32764, 'https://ror.org/0370d4798', 'en', 1, 'https://ror.org/0370d4798 Legacy Heritage Fund'), (32765, 'https://ror.org/0371kdw96', 'en', 1, 'https://ror.org/0371kdw96 The Liverpool Institute for Performing Arts'), (32766, 'https://ror.org/03731ze76', 'fr', 1, 'https://ror.org/03731ze76 Nouvelles Cliniques Nantaises'), (32767, 'https://ror.org/03734kr33', 'en', 1, 'https://ror.org/03734kr33 Taiwan Livestock Research Institute 畜產試驗所'), (32768, 'https://ror.org/0374a5s68', 'en', 1, 'https://ror.org/0374a5s68 Beijing Municipal Health Bureau'), (32769, 'https://ror.org/0374ebf38', 'en', 1, 'https://ror.org/0374ebf38 FilmOntario'), (32770, 'https://ror.org/0375gyz30', 'no_lang_code', 1, 'https://ror.org/0375gyz30 Full Spectrum Technologies (United States)'), (32771, 'https://ror.org/0375vv569', 'da', 1, 'https://ror.org/0375vv569 Hjerteforeningen'), (32772, 'https://ror.org/0375ygm12', 'no_lang_code', 1, 'https://ror.org/0375ygm12 Constellation Brands (Canada)'), (32773, 'https://ror.org/0376mq589', 'en', 1, 'https://ror.org/0376mq589 Royal Tyrrell Museum'), (32774, 'https://ror.org/0379w2016', 'en', 1, 'https://ror.org/0379w2016 Healthwise'), (32775, 'https://ror.org/037ba3b98', 'no_lang_code', 1, 'https://ror.org/037ba3b98 Corline Systems (Sweden)'), (32776, 'https://ror.org/037ck9w07', 'no_lang_code', 1, 'https://ror.org/037ck9w07 Flow Control Industries (United States)'), (32777, 'https://ror.org/037dz3r63', 'en', 1, 'https://ror.org/037dz3r63 UK-India Education and Research Initiative'), (32778, 'https://ror.org/037ej5648', 'en', 1, 'https://ror.org/037ej5648 Departamento de Transporte de Virginia Occidental Département des transports de la virginie-occidentale West Virginia Department of Transportation'), (32779, 'https://ror.org/037na0x96', 'no_lang_code', 1, 'https://ror.org/037na0x96 Kerr Wood Leidal Associates (Canada)'), (32780, 'https://ror.org/037nbwt68', 'en', 1, 'https://ror.org/037nbwt68 Fulbright Commission'), (32781, 'https://ror.org/037ncgg21', 'no_lang_code', 1, 'https://ror.org/037ncgg21 Test Devices (United States)'), (32782, 'https://ror.org/037nx0e70', 'en', 1, 'https://ror.org/037nx0e70 Slovak Research and Development Agency'), (32783, 'https://ror.org/037qe5327', 'en', 1, 'https://ror.org/037qe5327 Carroll Shelby Foundation'), (32784, 'https://ror.org/037rzqn07', 'no_lang_code', 1, 'https://ror.org/037rzqn07 FlexEl (United States)'), (32785, 'https://ror.org/037t16559', 'no_lang_code', 1, 'https://ror.org/037t16559 Nuvotronics (United States)'), (32786, 'https://ror.org/037tx1q23', 'en', 1, 'https://ror.org/037tx1q23 Pathological Society'), (32787, 'https://ror.org/037v60n25', 'no_lang_code', 1, 'https://ror.org/037v60n25 Recorded Future (Sweden)'), (32788, 'https://ror.org/037wdp291', 'no_lang_code', 1, 'https://ror.org/037wdp291 Stone Mountain Technologies (United States)'), (32789, 'https://ror.org/037xt7q95', 'no_lang_code', 1, 'https://ror.org/037xt7q95 CEIT Consulting (Slovakia)'), (32790, 'https://ror.org/037y28f85', 'no_lang_code', 1, 'https://ror.org/037y28f85 PreTalen (United States)'), (32791, 'https://ror.org/0380ffk22', 'no_lang_code', 1, 'https://ror.org/0380ffk22 Karagozian & Case (United States)'), (32792, 'https://ror.org/0380pyj70', 'no_lang_code', 1, 'https://ror.org/0380pyj70 PAT Industries (United States)'), (32793, 'https://ror.org/03811dk14', 'no_lang_code', 1, 'https://ror.org/03811dk14 Sherritt (Canada)'), (32794, 'https://ror.org/0381kee24', 'no_lang_code', 1, 'https://ror.org/0381kee24 MYMIC (United States)'), (32795, 'https://ror.org/03829z108', 'no', 1, 'https://ror.org/03829z108 Norlandia'), (32796, 'https://ror.org/0383eqy30', 'no_lang_code', 1, 'https://ror.org/0383eqy30 Exibea (Sweden)'), (32797, 'https://ror.org/03844ds60', 'en', 1, 'https://ror.org/03844ds60 Irish Cancer Society'), (32798, 'https://ror.org/03860nf78', 'no_lang_code', 1, 'https://ror.org/03860nf78 SenseGraphics (Sweden)'), (32799, 'https://ror.org/0388c8g69', 'no_lang_code', 1, 'https://ror.org/0388c8g69 Thalion (Slovakia)'), (32800, 'https://ror.org/03890hq18', 'no_lang_code', 1, 'https://ror.org/03890hq18 Triton Systems (United States)'), (32801, 'https://ror.org/03897n412', 'no_lang_code', 1, 'https://ror.org/03897n412 5-D Systems (United States)'), (32802, 'https://ror.org/0389wyq54', 'no_lang_code', 1, 'https://ror.org/0389wyq54 Aerocrine (Sweden)'), (32803, 'https://ror.org/038cgyc59', 'en', 1, 'https://ror.org/038cgyc59 Hartwell Foundation'), (32804, 'https://ror.org/038d4gk82', 'no_lang_code', 1, 'https://ror.org/038d4gk82 MaXentric Technologies (United States)'), (32805, 'https://ror.org/038djf877', 'en', 1, 'https://ror.org/038djf877 Department of Health Services'), (32806, 'https://ror.org/038e15474', 'no_lang_code', 1, 'https://ror.org/038e15474 Fabris (Canada)'), (32807, 'https://ror.org/038fabn80', 'sv', 1, 'https://ror.org/038fabn80 Stiftelsen Marknadstekniskt Centrum'), (32808, 'https://ror.org/038g1k790', 'en', 1, 'https://ror.org/038g1k790 Thomas Cole Historic House'), (32809, 'https://ror.org/038ggnx21', 'no_lang_code', 1, 'https://ror.org/038ggnx21 Sytronics (United States)'), (32810, 'https://ror.org/038h81468', 'no_lang_code', 1, 'https://ror.org/038h81468 ReformTech (Sweden)'), (32811, 'https://ror.org/038h9a412', 'en', 1, 'https://ror.org/038h9a412 National League of Cities'), (32812, 'https://ror.org/038j31m11', 'no_lang_code', 1, 'https://ror.org/038j31m11 Essential Research (United States)'), (32813, 'https://ror.org/038j4hz26', 'en', 1, 'https://ror.org/038j4hz26 Partnership for Advanced Computing in Europe'), (32814, 'https://ror.org/038k3d331', 'no_lang_code', 1, 'https://ror.org/038k3d331 CAE Solutions (United States)'), (32815, 'https://ror.org/038kpzv03', 'en', 1, 'https://ror.org/038kpzv03 Retina Vitreous Associates Medical Group'), (32816, 'https://ror.org/038m4nz41', 'no_lang_code', 1, 'https://ror.org/038m4nz41 Spiritech Advanced Products (United States)'), (32817, 'https://ror.org/038mg2014', 'en', 1, 'https://ror.org/038mg2014 Maine CITE Coordinating Center'), (32818, 'https://ror.org/038qb7y28', 'no_lang_code', 1, 'https://ror.org/038qb7y28 Millar Western (Canada)'), (32819, 'https://ror.org/038rwdb10', 'no_lang_code', 1, 'https://ror.org/038rwdb10 Niowave (United States)'), (32820, 'https://ror.org/038tfqe91', 'no_lang_code', 1, 'https://ror.org/038tfqe91 FumoPrep (Hungary)'), (32821, 'https://ror.org/038twcm90', 'no_lang_code', 1, 'https://ror.org/038twcm90 Center For Innovative Food Technology (United States)'), (32822, 'https://ror.org/038vyt185', 'en', 1, 'https://ror.org/038vyt185 Qatar Cardiovascular Research Center'), (32823, 'https://ror.org/038xmzj21', 'en', 1, 'https://ror.org/038xmzj21 Shanghai East Hospital'), (32824, 'https://ror.org/038y74z78', 'no_lang_code', 1, 'https://ror.org/038y74z78 Inkubatorn i Borås (Sweden)'), (32825, 'https://ror.org/038z36w15', 'no_lang_code', 1, 'https://ror.org/038z36w15 Applied EM (United States)'), (32826, 'https://ror.org/0391xj275', 'no_lang_code', 1, 'https://ror.org/0391xj275 CoreCode International (Sweden)'), (32827, 'https://ror.org/0392s7a63', 'no_lang_code', 1, 'https://ror.org/0392s7a63 Accelogic (United States)'), (32828, 'https://ror.org/0392tq432', 'en', 1, 'https://ror.org/0392tq432 National Consortium for Zoonosis Research'), (32829, 'https://ror.org/039463c38', 'no_lang_code', 1, 'https://ror.org/039463c38 Nalas Engineering Services (United States)'), (32830, 'https://ror.org/039543c28', 'en', 1, 'https://ror.org/039543c28 St Xavier’s College'), (32831, 'https://ror.org/0395cym93', 'no_lang_code', 1, 'https://ror.org/0395cym93 Inovati (United States)'), (32832, 'https://ror.org/039872b94', 'no_lang_code', 1, 'https://ror.org/039872b94 Summit Power Group (United States)'), (32833, 'https://ror.org/0399xk126', 'en', 1, 'https://ror.org/0399xk126 International Trachoma Initiative'), (32834, 'https://ror.org/039bq6320', 'no_lang_code', 1, 'https://ror.org/039bq6320 Cellular Materials International (United States)'), (32835, 'https://ror.org/039c4fg18', 'en', 1, 'https://ror.org/039c4fg18 Gibraltar Museum'), (32836, 'https://ror.org/039cbfe54', 'no_lang_code', 1, 'https://ror.org/039cbfe54 Invicro (United States)'), (32837, 'https://ror.org/039d46111', 'no_lang_code', 1, 'https://ror.org/039d46111 Safran (United States)'), (32838, 'https://ror.org/039d88t66', 'no_lang_code', 1, 'https://ror.org/039d88t66 Sigma Labs (United States)'), (32839, 'https://ror.org/039d9wr27', 'en', 1, 'https://ror.org/039d9wr27 National Heart Foundation of Australia'), (32840, 'https://ror.org/039f14703', 'no_lang_code', 1, 'https://ror.org/039f14703 QuantaSpec (United States)'), (32841, 'https://ror.org/039f5ga37', 'no_lang_code', 1, 'https://ror.org/039f5ga37 Pingtung Hospital'), (32842, 'https://ror.org/039fe9y64', 'no_lang_code', 1, 'https://ror.org/039fe9y64 Qintec (Slovakia)'), (32843, 'https://ror.org/039fwba89', 'en', 1, 'https://ror.org/039fwba89 Korea Research Council for Industrial Science and Technology'), (32844, 'https://ror.org/039fwv620', 'en', 1, 'https://ror.org/039fwv620 Sierra Nevada College'), (32845, 'https://ror.org/039je3989', 'no_lang_code', 1, 'https://ror.org/039je3989 Dynapower (United States)'), (32846, 'https://ror.org/039kp3w51', 'no_lang_code', 1, 'https://ror.org/039kp3w51 Rotite Technologies (United Kingdom)'), (32847, 'https://ror.org/039nsp746', 'no_lang_code', 1, 'https://ror.org/039nsp746 RGS Associates (United States)'), (32848, 'https://ror.org/039qv4027', 'no_lang_code', 1, 'https://ror.org/039qv4027 Biovica (Sweden)'), (32849, 'https://ror.org/039rgny44', 'en', 1, 'https://ror.org/039rgny44 Clinton Foundation'), (32850, 'https://ror.org/039ryse59', 'en', 1, 'https://ror.org/039ryse59 Ichthus College'), (32851, 'https://ror.org/039shy520', 'en', 1, 'https://ror.org/039shy520 Institut für Hochenergiephysik Institute of High Energy Physics'), (32852, 'https://ror.org/039tznx53', 'no_lang_code', 1, 'https://ror.org/039tznx53 Ventana Research Corporation (United States)'), (32853, 'https://ror.org/039xdb007', 'no_lang_code', 1, 'https://ror.org/039xdb007 Optellios (United States)'), (32854, 'https://ror.org/039zy9n12', 'no_lang_code', 1, 'https://ror.org/039zy9n12 OmegaWare (United States)'), (32855, 'https://ror.org/03a02sz29', 'en', 1, 'https://ror.org/03a02sz29 Lublin Oncology Center'), (32856, 'https://ror.org/03a0t9098', 'no_lang_code', 1, 'https://ror.org/03a0t9098 Virtual EM (United States)'), (32857, 'https://ror.org/03a3x6z66', 'no_lang_code', 1, 'https://ror.org/03a3x6z66 Optimal Synthesis (United States)'), (32858, 'https://ror.org/03a4a4y95', 'nl', 1, 'https://ror.org/03a4a4y95 Stichting Cultureel Erfgoed Zeeland'), (32859, 'https://ror.org/03a4k1f37', 'en', 1, 'https://ror.org/03a4k1f37 Kingsborough Community College'), (32860, 'https://ror.org/03a6gjz18', 'en', 1, 'https://ror.org/03a6gjz18 Society of Hospital Pharmacists of Australia'), (32861, 'https://ror.org/03a6msw65', 'no_lang_code', 1, 'https://ror.org/03a6msw65 Technology for Energy Corporation (United States)'), (32862, 'https://ror.org/03a96q734', 'no_lang_code', 1, 'https://ror.org/03a96q734 Syntronic (Sweden)'), (32863, 'https://ror.org/03aavtt27', 'no_lang_code', 1, 'https://ror.org/03aavtt27 Minerva Systems & Technologies (United States)'), (32864, 'https://ror.org/03abrt645', 'no_lang_code', 1, 'https://ror.org/03abrt645 DNA Solutions (United States)'), (32865, 'https://ror.org/03acd6h82', 'no_lang_code', 1, 'https://ror.org/03acd6h82 GeoModel Solar (Slovakia)'), (32866, 'https://ror.org/03aceaw85', 'en', 1, 'https://ror.org/03aceaw85 Sihanouk Hospital Center of HOPE'), (32867, 'https://ror.org/03advjx75', 'en', 1, 'https://ror.org/03advjx75 Future Position X'), (32868, 'https://ror.org/03ae5ch37', 'no_lang_code', 1, 'https://ror.org/03ae5ch37 Toyon (United States)'), (32869, 'https://ror.org/03aeyg892', 'en', 1, 'https://ror.org/03aeyg892 Japan Science Society'), (32870, 'https://ror.org/03af2bn79', 'en', 1, 'https://ror.org/03af2bn79 New Brunswick Theological Seminary'), (32871, 'https://ror.org/03ajebt28', 'no_lang_code', 1, 'https://ror.org/03ajebt28 Smart Skin (Canada)'), (32872, 'https://ror.org/03ak9vt35', 'en', 1, 'https://ror.org/03ak9vt35 Gemeinnützige Hertie-Stiftung Hertie Foundation'), (32873, 'https://ror.org/03antpb48', 'en', 1, 'https://ror.org/03antpb48 Stem Cells Australia'), (32874, 'https://ror.org/03aq7kf18', 'en', 1, 'https://ror.org/03aq7kf18 Second Affiliated Hospital of Xi''an Jiaotong University'), (32875, 'https://ror.org/03aqvdh64', 'no_lang_code', 1, 'https://ror.org/03aqvdh64 Mecdon (Sweden)'), (32876, 'https://ror.org/03at87b18', 'en', 1, 'https://ror.org/03at87b18 Saskatchewan Pork Development Board'), (32877, 'https://ror.org/03atssj74', 'en', 1, 'https://ror.org/03atssj74 Eli and Edythe Broad Foundation'), (32878, 'https://ror.org/03axpa761', 'hu', 1, 'https://ror.org/03axpa761 Budapest City Archives'), (32879, 'https://ror.org/03azy6w67', 'en', 1, 'https://ror.org/03azy6w67 Energy Institute Hrvoje Požar'), (32880, 'https://ror.org/03b0bkp29', 'no_lang_code', 1, 'https://ror.org/03b0bkp29 Vicon (United States)'), (32881, 'https://ror.org/03b1dn215', 'en', 1, 'https://ror.org/03b1dn215 New York Institute of Art and Design'), (32882, 'https://ror.org/03b20q825', 'no_lang_code', 1, 'https://ror.org/03b20q825 Baker Engineering (United States)'), (32883, 'https://ror.org/03b4y8811', 'en', 1, 'https://ror.org/03b4y8811 Cancer Council Tasmania'), (32884, 'https://ror.org/03b7vrw33', 'fr', 1, 'https://ror.org/03b7vrw33 Conseil Régional d''Auvergne'), (32885, 'https://ror.org/03bc0qh53', 'no_lang_code', 1, 'https://ror.org/03bc0qh53 Space Micro (United States)'), (32886, 'https://ror.org/03bcppp62', 'no_lang_code', 1, 'https://ror.org/03bcppp62 Quantum Dimension (United States)'), (32887, 'https://ror.org/03bd0by56', 'no_lang_code', 1, 'https://ror.org/03bd0by56 Kennametal (United States)'), (32888, 'https://ror.org/03benss35', 'en', 1, 'https://ror.org/03benss35 Alzheimer Society of Canada Société Alzheimer du Canada'), (32889, 'https://ror.org/03bgwd624', 'en', 1, 'https://ror.org/03bgwd624 Ministry of Foreign Affairs 대한민국 외교부'), (32890, 'https://ror.org/03bh94f16', 'en', 1, 'https://ror.org/03bh94f16 Centre of the Region Haná for Biotechnical and Agricultural Research'), (32891, 'https://ror.org/03bkq6a07', 'en', 1, 'https://ror.org/03bkq6a07 Research School for Medieval Studies'), (32892, 'https://ror.org/03bmxpp39', 'no_lang_code', 1, 'https://ror.org/03bmxpp39 Boeing (Canada)'), (32893, 'https://ror.org/03bnsxq66', 'en', 1, 'https://ror.org/03bnsxq66 Public Works and Government Services Canada Travaux publics et Services gouvernementaux Canada'), (32894, 'https://ror.org/03bqa6225', 'no_lang_code', 1, 'https://ror.org/03bqa6225 UAV Turbines (United States)'), (32895, 'https://ror.org/03br03g05', 'no_lang_code', 1, 'https://ror.org/03br03g05 Bakomi'), (32896, 'https://ror.org/03bsmfz84', 'en', 1, 'https://ror.org/03bsmfz84 Volkswagen Foundation VolkswagenStiftung'), (32897, 'https://ror.org/03bt48876', 'no_lang_code', 1, 'https://ror.org/03bt48876 Yantaishan Hospital 烟台山医院'), (32898, 'https://ror.org/03btg3r19', 'no_lang_code', 1, 'https://ror.org/03btg3r19 MWT Materials (United States)'), (32899, 'https://ror.org/03bthmz47', 'no_lang_code', 1, 'https://ror.org/03bthmz47 Sedna Digital Solutions (United States)'), (32900, 'https://ror.org/03bvys615', 'hu', 1, 'https://ror.org/03bvys615 Ráday Gyűjtemény'), (32901, 'https://ror.org/03bxfwk92', 'no_lang_code', 1, 'https://ror.org/03bxfwk92 Enmesh (Sweden)'), (32902, 'https://ror.org/03bxtpd68', 'no_lang_code', 1, 'https://ror.org/03bxtpd68 Sigma Tau (Italy)'), (32903, 'https://ror.org/03bz02915', 'no_lang_code', 1, 'https://ror.org/03bz02915 Infobric (Sweden)'), (32904, 'https://ror.org/03bznzd25', 'en', 1, 'https://ror.org/03bznzd25 Cambodia National Malaria Center'), (32905, 'https://ror.org/03c0wvm84', 'no_lang_code', 1, 'https://ror.org/03c0wvm84 OFS (United States)'), (32906, 'https://ror.org/03c1ky010', 'no_lang_code', 1, 'https://ror.org/03c1ky010 MRT System (Sweden)'), (32907, 'https://ror.org/03c2x7w83', 'no_lang_code', 1, 'https://ror.org/03c2x7w83 BioLamina (Sweden)'), (32908, 'https://ror.org/03c5nrv09', 'no_lang_code', 1, 'https://ror.org/03c5nrv09 STAR-H (United States)'), (32909, 'https://ror.org/03c6c9520', 'en', 1, 'https://ror.org/03c6c9520 Israel Academy of Sciences and Humanities האקדמיה הלאומית הישראלית למדעים'), (32910, 'https://ror.org/03c864431', 'en', 1, 'https://ror.org/03c864431 Federation of European Aquaculture Producers'), (32911, 'https://ror.org/03cahhx41', 'no_lang_code', 1, 'https://ror.org/03cahhx41 CadScan (United Kingdom)'), (32912, 'https://ror.org/03cb41332', 'no_lang_code', 1, 'https://ror.org/03cb41332 KCF Technologies (United States)'), (32913, 'https://ror.org/03ce7te88', 'no_lang_code', 1, 'https://ror.org/03ce7te88 Mach I (United States)'), (32914, 'https://ror.org/03cen5169', 'it', 1, 'https://ror.org/03cen5169 Fondazione Cassa di Risparmio di Modena'), (32915, 'https://ror.org/03ceqdn81', 'no_lang_code', 1, 'https://ror.org/03ceqdn81 Semerane (United States)'), (32916, 'https://ror.org/03cfat183', 'en', 1, 'https://ror.org/03cfat183 Fiber Optic Valley'), (32917, 'https://ror.org/03cgjk195', 'en', 1, 'https://ror.org/03cgjk195 Roche Organ Transplantation Research Foundation'), (32918, 'https://ror.org/03ck8xc11', 'no_lang_code', 1, 'https://ror.org/03ck8xc11 CDM Smith (United States)'), (32919, 'https://ror.org/03ckpzr37', 'en', 1, 'https://ror.org/03ckpzr37 State Key Joint Laboratory of Environment Simulation and Pollution Control'), (32920, 'https://ror.org/03cmqpr17', 'en', 1, 'https://ror.org/03cmqpr17 Affiliated Hospital of Guilin Medical College'), (32921, 'https://ror.org/03cns3576', 'no_lang_code', 1, 'https://ror.org/03cns3576 BehavioSec (Sweden)'), (32922, 'https://ror.org/03cnssq44', 'en', 1, 'https://ror.org/03cnssq44 Danish Science Factory'), (32923, 'https://ror.org/03cpyc314', 'en', 1, 'https://ror.org/03cpyc314 National Research Foundation'), (32924, 'https://ror.org/03ct0rb34', 'en', 1, 'https://ror.org/03ct0rb34 Michigan Jewish Institute'), (32925, 'https://ror.org/03cvfxv40', 'en', 1, 'https://ror.org/03cvfxv40 BrightFocus Foundation'), (32926, 'https://ror.org/03cyq8t52', 'no_lang_code', 1, 'https://ror.org/03cyq8t52 Fluidic Energy (United States)'), (32927, 'https://ror.org/03czazr10', 'en', 1, 'https://ror.org/03czazr10 Grid Protection Alliance'), (32928, 'https://ror.org/03d17t865', 'en', 1, 'https://ror.org/03d17t865 Zoos Victoria'), (32929, 'https://ror.org/03d1tvr44', 'fr', 1, 'https://ror.org/03d1tvr44 ITESCIA'), (32930, 'https://ror.org/03d3pnq21', 'en', 1, 'https://ror.org/03d3pnq21 Christendom College'), (32931, 'https://ror.org/03d3r6333', 'no_lang_code', 1, 'https://ror.org/03d3r6333 NeoChemir (Japan) ネオケミア'), (32932, 'https://ror.org/03d7pcc67', 'no_lang_code', 1, 'https://ror.org/03d7pcc67 Oatly (Sweden)'), (32933, 'https://ror.org/03d8pfr88', 'no_lang_code', 1, 'https://ror.org/03d8pfr88 Optical Sciences Company (United States)'), (32934, 'https://ror.org/03d9g2g58', 'en', 1, 'https://ror.org/03d9g2g58 American Association of Orthodontists'), (32935, 'https://ror.org/03dacnf06', 'no_lang_code', 1, 'https://ror.org/03dacnf06 Skinfrared (United States)'), (32936, 'https://ror.org/03daevf76', 'no_lang_code', 1, 'https://ror.org/03daevf76 Contango Strategies (Canada)'), (32937, 'https://ror.org/03dfstc27', 'no_lang_code', 1, 'https://ror.org/03dfstc27 Commonwealth Plywood (Canada)'), (32938, 'https://ror.org/03dgngj22', 'en', 1, 'https://ror.org/03dgngj22 Andover College'), (32939, 'https://ror.org/03dhrm424', 'en', 1, 'https://ror.org/03dhrm424 Mercy College of Health Sciences'), (32940, 'https://ror.org/03djma825', 'no_lang_code', 1, 'https://ror.org/03djma825 Analatom (United States)'), (32941, 'https://ror.org/03djmvy73', 'en', 1, 'https://ror.org/03djmvy73 Mwanza Intervention Trials Unit'), (32942, 'https://ror.org/03dr0ny42', 'no_lang_code', 1, 'https://ror.org/03dr0ny42 NovaCell Technology (South Korea) 노바셀테크놀로지'), (32943, 'https://ror.org/03dwefb78', 'en', 1, 'https://ror.org/03dwefb78 Minnesota Department of Employment and Economic Development'), (32944, 'https://ror.org/03dx9c487', 'en', 1, 'https://ror.org/03dx9c487 Supreme Commission for Tourism and Antiquities'), (32945, 'https://ror.org/03dy4aq19', 'en', 1, 'https://ror.org/03dy4aq19 James S. McDonnell Foundation'), (32946, 'https://ror.org/03e0d1j33', 'en', 1, 'https://ror.org/03e0d1j33 Raptor Protection of Slovakia'), (32947, 'https://ror.org/03e21eb82', 'no_lang_code', 1, 'https://ror.org/03e21eb82 Eriez (United States)'), (32948, 'https://ror.org/03e26cs04', 'no_lang_code', 1, 'https://ror.org/03e26cs04 NumerEx (United States)'), (32949, 'https://ror.org/03e2b0r58', 'no_lang_code', 1, 'https://ror.org/03e2b0r58 Critical Technologies (United States)'), (32950, 'https://ror.org/03e2zdg56', 'no_lang_code', 1, 'https://ror.org/03e2zdg56 Elcom (Slovakia)'), (32951, 'https://ror.org/03e48bt75', 'no_lang_code', 1, 'https://ror.org/03e48bt75 Heat Trace (United Kingdom)'), (32952, 'https://ror.org/03e5r3h78', 'no_lang_code', 1, 'https://ror.org/03e5r3h78 Cogenra Solar (United States)'), (32953, 'https://ror.org/03e673w40', 'no_lang_code', 1, 'https://ror.org/03e673w40 CybAero (Sweden)'), (32954, 'https://ror.org/03e7ywm06', 'no_lang_code', 1, 'https://ror.org/03e7ywm06 Magnus Chemicals (Canada) Produits Chimiques Magnus'), (32955, 'https://ror.org/03e835n43', 'no_lang_code', 1, 'https://ror.org/03e835n43 Avigilon (United States)'), (32956, 'https://ror.org/03e8kpv69', 'no_lang_code', 1, 'https://ror.org/03e8kpv69 XCounter (Sweden)'), (32957, 'https://ror.org/03e970380', 'no_lang_code', 1, 'https://ror.org/03e970380 Akela (United States)'), (32958, 'https://ror.org/03earrv48', 'no_lang_code', 1, 'https://ror.org/03earrv48 C3I (United States)'), (32959, 'https://ror.org/03ebk0c60', 'en', 1, 'https://ror.org/03ebk0c60 Suzhou Research Institute'), (32960, 'https://ror.org/03edyst18', 'en', 1, 'https://ror.org/03edyst18 Museum of Applied Arts'), (32961, 'https://ror.org/03eecgp81', 'en', 1, 'https://ror.org/03eecgp81 Office of Under Secretary of Energy for Science'), (32962, 'https://ror.org/03ef4eh86', 'no_lang_code', 1, 'https://ror.org/03ef4eh86 KPC Group (Netherlands)'), (32963, 'https://ror.org/03eg9e545', 'no_lang_code', 1, 'https://ror.org/03eg9e545 Airwatergreen (Sweden)'), (32964, 'https://ror.org/03egaj678', 'es', 1, 'https://ror.org/03egaj678 Agencia Nacional de Investigación e Innovación'), (32965, 'https://ror.org/03ejgvq45', 'no_lang_code', 1, 'https://ror.org/03ejgvq45 ReTreck (Sweden)'), (32966, 'https://ror.org/03ejqwd09', 'en', 1, 'https://ror.org/03ejqwd09 Diabetes Foundation'), (32967, 'https://ror.org/03ek62e72', 'en', 1, 'https://ror.org/03ek62e72 Public Health Agency'), (32968, 'https://ror.org/03ekq2173', 'en', 1, 'https://ror.org/03ekq2173 Camden and Islington NHS Foundation Trust'), (32969, 'https://ror.org/03ekv5207', 'no_lang_code', 1, 'https://ror.org/03ekv5207 Acumentrics (United States)'), (32970, 'https://ror.org/03ekxyc66', 'no_lang_code', 1, 'https://ror.org/03ekxyc66 Apollo Enterprise Solutions (United States)'), (32971, 'https://ror.org/03encks65', 'no_lang_code', 1, 'https://ror.org/03encks65 Microwave Bonding Instruments (United States)'), (32972, 'https://ror.org/03epg4e71', 'en', 1, 'https://ror.org/03epg4e71 Esperantic Studies Foundation'), (32973, 'https://ror.org/03es0vc41', 'no_lang_code', 1, 'https://ror.org/03es0vc41 FiberTech Optica (Canada)'), (32974, 'https://ror.org/03ev2fp74', 'no_lang_code', 1, 'https://ror.org/03ev2fp74 Dairy Innovation Australia (Australia)'), (32975, 'https://ror.org/03ez0dn33', 'no_lang_code', 1, 'https://ror.org/03ez0dn33 Maryland Aerospace (United States)'), (32976, 'https://ror.org/03f0wr475', 'no_lang_code', 1, 'https://ror.org/03f0wr475 Veritune (United States)'), (32977, 'https://ror.org/03f1en951', 'en', 1, 'https://ror.org/03f1en951 Delfos Hospital'), (32978, 'https://ror.org/03f1mqp12', 'no_lang_code', 1, 'https://ror.org/03f1mqp12 VCORE Solutions (United States)'), (32979, 'https://ror.org/03f1xkz75', 'en', 1, 'https://ror.org/03f1xkz75 Bluefield State College'), (32980, 'https://ror.org/03f2xnj73', 'es', 1, 'https://ror.org/03f2xnj73 Consejo de Ciencia y Tecnología del Estado de Tabasco'), (32981, 'https://ror.org/03f2xpf83', 'no_lang_code', 1, 'https://ror.org/03f2xpf83 Vesta Sciences (United States)'), (32982, 'https://ror.org/03f455d91', 'en', 1, 'https://ror.org/03f455d91 School Nutrition Association'), (32983, 'https://ror.org/03f4rhz75', 'no_lang_code', 1, 'https://ror.org/03f4rhz75 Metamaterial Technologies (Canada)'), (32984, 'https://ror.org/03f4vz666', 'no_lang_code', 1, 'https://ror.org/03f4vz666 Vusapl (Slovakia)'), (32985, 'https://ror.org/03f516154', 'en', 1, 'https://ror.org/03f516154 Rasmussen College'); INSERT INTO `rors` VALUES (32986, 'https://ror.org/03f5eqm42', 'en', 1, 'https://ror.org/03f5eqm42 NIHR Nottingham Hearing Biomedical Research Unit'), (32987, 'https://ror.org/03f6tf726', 'en', 1, 'https://ror.org/03f6tf726 Initiative for Automotive Manufacturing Innovation'), (32988, 'https://ror.org/03f89nr30', 'en', 1, 'https://ror.org/03f89nr30 Sensory Access Foundation'), (32989, 'https://ror.org/03f9gsg45', 'en', 1, 'https://ror.org/03f9gsg45 Beef Cattle Research Council'), (32990, 'https://ror.org/03f9nc143', 'en', 1, 'https://ror.org/03f9nc143 Skolkovo Institute of Science and Technology Сколковский институт науки и технологий'), (32991, 'https://ror.org/03f9wqe45', 'en', 1, 'https://ror.org/03f9wqe45 Vasculitis Foundation'), (32992, 'https://ror.org/03fa61n31', 'no_lang_code', 1, 'https://ror.org/03fa61n31 PR & Company (United States)'), (32993, 'https://ror.org/03fafnr39', 'en', 1, 'https://ror.org/03fafnr39 Transport Accident Commission'), (32994, 'https://ror.org/03fb0b548', 'en', 1, 'https://ror.org/03fb0b548 Austrian State Archives Österreichisches Staatsarchiv'), (32995, 'https://ror.org/03fcp6428', 'no_lang_code', 1, 'https://ror.org/03fcp6428 Low Vision International (Sweden)'), (32996, 'https://ror.org/03fcvqn57', 'en', 1, 'https://ror.org/03fcvqn57 Graham Foundation'), (32997, 'https://ror.org/03fffdr10', 'no_lang_code', 1, 'https://ror.org/03fffdr10 3D Technology Laboratories (United States)'), (32998, 'https://ror.org/03fhmzh26', 'no_lang_code', 1, 'https://ror.org/03fhmzh26 Mate (Slovakia)'), (32999, 'https://ror.org/03fjcpp91', 'no_lang_code', 1, 'https://ror.org/03fjcpp91 Ariterm (Sweden)'), (33000, 'https://ror.org/03fkfs504', 'en', 1, 'https://ror.org/03fkfs504 Luleå Municipality'), (33001, 'https://ror.org/03fn5kb59', 'no_lang_code', 1, 'https://ror.org/03fn5kb59 PresenceLearning (United States)'), (33002, 'https://ror.org/03fq30e75', 'no_lang_code', 1, 'https://ror.org/03fq30e75 Aldevron (United States)'), (33003, 'https://ror.org/03fqmv203', 'no_lang_code', 1, 'https://ror.org/03fqmv203 Starmonde Publishing Group'), (33004, 'https://ror.org/03ftf4376', 'no_lang_code', 1, 'https://ror.org/03ftf4376 Ammono (Poland)'), (33005, 'https://ror.org/03ftv5p16', 'no_lang_code', 1, 'https://ror.org/03ftv5p16 Newton Energy Group (United States)'), (33006, 'https://ror.org/03fvqqb90', 'no_lang_code', 1, 'https://ror.org/03fvqqb90 AltheaDx (United States)'), (33007, 'https://ror.org/03fwraz06', 'no_lang_code', 1, 'https://ror.org/03fwraz06 Applied Technologies (United States)'), (33008, 'https://ror.org/03fx0xk26', 'en', 1, 'https://ror.org/03fx0xk26 The Jane Goodall Institute'), (33009, 'https://ror.org/03fytgw96', 'no_lang_code', 1, 'https://ror.org/03fytgw96 Cegteszt (Hungary)'), (33010, 'https://ror.org/03fz1e596', 'no_lang_code', 1, 'https://ror.org/03fz1e596 Radiant Research (United States)'), (33011, 'https://ror.org/03g03dn68', 'en', 1, 'https://ror.org/03g03dn68 Green Technology Center'), (33012, 'https://ror.org/03g0ec482', 'no_lang_code', 1, 'https://ror.org/03g0ec482 NAL Research (United States)'), (33013, 'https://ror.org/03g1ghk63', 'no_lang_code', 1, 'https://ror.org/03g1ghk63 RCT Systems (United States)'), (33014, 'https://ror.org/03g37tj89', 'no_lang_code', 1, 'https://ror.org/03g37tj89 Premune (Sweden)'), (33015, 'https://ror.org/03g38ta48', 'en', 1, 'https://ror.org/03g38ta48 Council for Learning Disabilities'), (33016, 'https://ror.org/03g39em38', 'hu', 1, 'https://ror.org/03g39em38 Vermes Miklós Országos Fizikus Tehetségápoló és Kutató Alapítvány'), (33017, 'https://ror.org/03g8hqd12', 'no_lang_code', 1, 'https://ror.org/03g8hqd12 Amica Science Eeig (United Kingdom)'), (33018, 'https://ror.org/03g8y8161', 'no_lang_code', 1, 'https://ror.org/03g8y8161 Galois (United States)'), (33019, 'https://ror.org/03gappd85', 'en', 1, 'https://ror.org/03gappd85 Mount Aloysius College'), (33020, 'https://ror.org/03gby7r56', 'no_lang_code', 1, 'https://ror.org/03gby7r56 Artium Technologies (United States)'), (33021, 'https://ror.org/03gc99a64', 'no_lang_code', 1, 'https://ror.org/03gc99a64 CF Technologies (United States)'), (33022, 'https://ror.org/03gcvf773', 'no_lang_code', 1, 'https://ror.org/03gcvf773 Decision Sciences (United States)'), (33023, 'https://ror.org/03gddmx06', 'en', 1, 'https://ror.org/03gddmx06 Calmette Hospital Hôpital calmette'), (33024, 'https://ror.org/03gk11k54', 'en', 1, 'https://ror.org/03gk11k54 American Water Works Association'), (33025, 'https://ror.org/03gkadw36', 'no_lang_code', 1, 'https://ror.org/03gkadw36 Sappasithiprasong Hospital'), (33026, 'https://ror.org/03gne5057', 'en', 1, 'https://ror.org/03gne5057 Genome British Columbia'), (33027, 'https://ror.org/03gpwsk37', 'no_lang_code', 1, 'https://ror.org/03gpwsk37 DSPlogic (United States)'), (33028, 'https://ror.org/03gsrqx39', 'no_lang_code', 1, 'https://ror.org/03gsrqx39 Premium Brands Holdings (Canada)'), (33029, 'https://ror.org/03gwgww50', 'no_lang_code', 1, 'https://ror.org/03gwgww50 Rolls-Royce (United States)'), (33030, 'https://ror.org/03gx28593', 'en', 1, 'https://ror.org/03gx28593 Dutch Language Union Nederlandse Taalunie'), (33031, 'https://ror.org/03gyay052', 'sv', 1, 'https://ror.org/03gyay052 Förbundet Unga Forskare'), (33032, 'https://ror.org/03gzf0d03', 'en', 1, 'https://ror.org/03gzf0d03 Alabama Commission on Higher Education'), (33033, 'https://ror.org/03h1r4p85', 'no_lang_code', 1, 'https://ror.org/03h1r4p85 Film Odyssey (United States)'), (33034, 'https://ror.org/03h4e4c54', 'en', 1, 'https://ror.org/03h4e4c54 Model Animal Research Center'), (33035, 'https://ror.org/03h5fme53', 'no_lang_code', 1, 'https://ror.org/03h5fme53 Nuvera Biosciences (United States)'), (33036, 'https://ror.org/03h6x6x11', 'no_lang_code', 1, 'https://ror.org/03h6x6x11 Curtiss-Wright (United States)'), (33037, 'https://ror.org/03h71cc02', 'fr', 1, 'https://ror.org/03h71cc02 Bouthillette Parizeau'), (33038, 'https://ror.org/03h8ck063', 'no_lang_code', 1, 'https://ror.org/03h8ck063 Virginia Diodes (United States)'), (33039, 'https://ror.org/03ham7h73', 'no_lang_code', 1, 'https://ror.org/03ham7h73 Silicon Designs (United States)'), (33040, 'https://ror.org/03hgpat49', 'no_lang_code', 1, 'https://ror.org/03hgpat49 Kalesnikoff Lumber (Canada)'), (33041, 'https://ror.org/03hjnwv43', 'en', 1, 'https://ror.org/03hjnwv43 Arkansas Space Grant Consortium'), (33042, 'https://ror.org/03hkh9419', 'no_lang_code', 1, 'https://ror.org/03hkh9419 China Southern Power Grid (China)'), (33043, 'https://ror.org/03hkwwc75', 'no_lang_code', 1, 'https://ror.org/03hkwwc75 IPM Engineering (Slovakia)'), (33044, 'https://ror.org/03hkx5x33', 'no_lang_code', 1, 'https://ror.org/03hkx5x33 Ormond (United States)'), (33045, 'https://ror.org/03hp51383', 'en', 1, 'https://ror.org/03hp51383 Center for Ecoliteracy'), (33046, 'https://ror.org/03hq8dt79', 'no_lang_code', 1, 'https://ror.org/03hq8dt79 Materium Innovations (Canada)'), (33047, 'https://ror.org/03hrc3v54', 'no_lang_code', 1, 'https://ror.org/03hrc3v54 Agnik (United States)'), (33048, 'https://ror.org/03ht43x94', 'no_lang_code', 1, 'https://ror.org/03ht43x94 VIStology (United States)'), (33049, 'https://ror.org/03htcwb41', 'no_lang_code', 1, 'https://ror.org/03htcwb41 Metal Oxide Technologies (United States)'), (33050, 'https://ror.org/03htdje54', 'no_lang_code', 1, 'https://ror.org/03htdje54 Oerlikon (United Kingdom)'), (33051, 'https://ror.org/03htnqd27', 'sv', 1, 'https://ror.org/03htnqd27 Åke Wibergs Stiftelse'), (33052, 'https://ror.org/03htsh285', 'no_lang_code', 1, 'https://ror.org/03htsh285 Sigma³ (United States)'), (33053, 'https://ror.org/03hv2xm40', 'no_lang_code', 1, 'https://ror.org/03hv2xm40 Argtec (United States)'), (33054, 'https://ror.org/03hxbcz95', 'no_lang_code', 1, 'https://ror.org/03hxbcz95 Airec (Sweden)'), (33055, 'https://ror.org/03hxk2a16', 'no_lang_code', 1, 'https://ror.org/03hxk2a16 BHP (Canada)'), (33056, 'https://ror.org/03hxrmn64', 'en', 1, 'https://ror.org/03hxrmn64 Institute for the Study of Education and Human Development'), (33057, 'https://ror.org/03hz8wd80', 'en', 1, 'https://ror.org/03hz8wd80 Lundbeck Foundation'), (33058, 'https://ror.org/03hzbee62', 'no_lang_code', 1, 'https://ror.org/03hzbee62 Symvionics (United States)'), (33059, 'https://ror.org/03j2mew82', 'en', 1, 'https://ror.org/03j2mew82 Jinan Stomatological Hospital 济南市口腔医院'), (33060, 'https://ror.org/03j35d806', 'no_lang_code', 1, 'https://ror.org/03j35d806 Advanced Oxygen Technologies (United States)'), (33061, 'https://ror.org/03j4sms74', 'en', 1, 'https://ror.org/03j4sms74 Alberta Farm Animal Care Association'), (33062, 'https://ror.org/03j5jkz79', 'en', 1, 'https://ror.org/03j5jkz79 Jiangxi Mental Health Center'), (33063, 'https://ror.org/03j68qs29', 'no_lang_code', 1, 'https://ror.org/03j68qs29 Qualtech Systems Incorporation (United States)'), (33064, 'https://ror.org/03j7gdq44', 'no_lang_code', 1, 'https://ror.org/03j7gdq44 Aqua-Q (Sweden)'), (33065, 'https://ror.org/03j7vt284', 'no_lang_code', 1, 'https://ror.org/03j7vt284 Physics, Materials and Applied Mathematics Research (United States)'), (33066, 'https://ror.org/03jb0m794', 'no_lang_code', 1, 'https://ror.org/03jb0m794 SciTec (United States)'), (33067, 'https://ror.org/03jbr4b58', 'no_lang_code', 1, 'https://ror.org/03jbr4b58 Munktell Science Park (Sweden)'), (33068, 'https://ror.org/03jbxjn08', 'en', 1, 'https://ror.org/03jbxjn08 Biodôme de Montréal Montreal Biodome'), (33069, 'https://ror.org/03jbyh296', 'no_lang_code', 1, 'https://ror.org/03jbyh296 Left Hand Design (United States)'), (33070, 'https://ror.org/03jc1ps31', 'no_lang_code', 1, 'https://ror.org/03jc1ps31 Exide Technologies (United States)'), (33071, 'https://ror.org/03jcj5d12', 'no_lang_code', 1, 'https://ror.org/03jcj5d12 Fortis Flt. Lt. Rajan Dhall Hospital'), (33072, 'https://ror.org/03jcmr522', 'no_lang_code', 1, 'https://ror.org/03jcmr522 re8 Bioplastics (Sweden)'), (33073, 'https://ror.org/03jes3672', 'hu', 1, 'https://ror.org/03jes3672 Informatikai, Távközlési és Elektronikai Vállalkozások Szövetsége'), (33074, 'https://ror.org/03jfjvh87', 'en', 1, 'https://ror.org/03jfjvh87 Health Promotion Agency'), (33075, 'https://ror.org/03jgkwp62', 'no_lang_code', 1, 'https://ror.org/03jgkwp62 Electrical Distribution Design (United States)'), (33076, 'https://ror.org/03jhz9k05', 'en', 1, 'https://ror.org/03jhz9k05 Mission to Save the Helpless'), (33077, 'https://ror.org/03jkv2r60', 'no_lang_code', 1, 'https://ror.org/03jkv2r60 Pressure BioSciences (United States)'), (33078, 'https://ror.org/03jn2ja08', 'no_lang_code', 1, 'https://ror.org/03jn2ja08 Xperi (United States)'), (33079, 'https://ror.org/03jp5g380', 'en', 1, 'https://ror.org/03jp5g380 Agence de promotion économique du Canada atlantique Atlantic Canada Opportunities Agency'), (33080, 'https://ror.org/03jqyh750', 'no_lang_code', 1, 'https://ror.org/03jqyh750 IDEX Corporation (United States)'), (33081, 'https://ror.org/03jsnw290', 'en', 1, 'https://ror.org/03jsnw290 Australian College of Nursing'), (33082, 'https://ror.org/03jst3522', 'no_lang_code', 1, 'https://ror.org/03jst3522 Fulcrum Corporation (United States)'), (33083, 'https://ror.org/03jvnsg56', 'no_lang_code', 1, 'https://ror.org/03jvnsg56 Saplo (Sweden)'), (33084, 'https://ror.org/03jwrz939', 'en', 1, 'https://ror.org/03jwrz939 Biomathematics and Statistics Scotland'), (33085, 'https://ror.org/03k09ka51', 'en', 1, 'https://ror.org/03k09ka51 Institute for Financial Research'), (33086, 'https://ror.org/03k1e3764', 'en', 1, 'https://ror.org/03k1e3764 American Physical Therapy Association'), (33087, 'https://ror.org/03k1vma03', 'no_lang_code', 1, 'https://ror.org/03k1vma03 Energetic Materials and Products Incorporation (United States)'), (33088, 'https://ror.org/03k4ert93', 'no_lang_code', 1, 'https://ror.org/03k4ert93 Googol (Sweden)'), (33089, 'https://ror.org/03k5d2j20', 'no_lang_code', 1, 'https://ror.org/03k5d2j20 Balassi Kiadó (Hungary)'), (33090, 'https://ror.org/03k5mtb95', 'de', 1, 'https://ror.org/03k5mtb95 Archiv der Erzdiözese Salzburg'), (33091, 'https://ror.org/03k5xes38', 'en', 1, 'https://ror.org/03k5xes38 Data Storage Institute'), (33092, 'https://ror.org/03k64vf14', 'no_lang_code', 1, 'https://ror.org/03k64vf14 WW Technology Group (United States)'), (33093, 'https://ror.org/03k8x7365', 'en', 1, 'https://ror.org/03k8x7365 American Skin Association'), (33094, 'https://ror.org/03kcmdr33', 'en', 1, 'https://ror.org/03kcmdr33 Susan G. Komen Wyoming'), (33095, 'https://ror.org/03kcnwv71', 'no_lang_code', 1, 'https://ror.org/03kcnwv71 Björkemar Construction & Consulting (Sweden)'), (33096, 'https://ror.org/03ke6rf22', 'en', 1, 'https://ror.org/03ke6rf22 NIHR Leicester Cardiovascular Biomedical Research Unit'), (33097, 'https://ror.org/03kes6q06', 'no_lang_code', 1, 'https://ror.org/03kes6q06 Ludlum Measurements (United States)'), (33098, 'https://ror.org/03kfnwp54', 'en', 1, 'https://ror.org/03kfnwp54 Bernstein Center for Computational Neuroscience Tübingen'), (33099, 'https://ror.org/03kgcsq08', 'no_lang_code', 1, 'https://ror.org/03kgcsq08 China State Construction Engineering (China) 中国建筑西南设计研究院有限公司'), (33100, 'https://ror.org/03kh18j96', 'no_lang_code', 1, 'https://ror.org/03kh18j96 Advanced Dynamics (United States)'), (33101, 'https://ror.org/03kk0s825', 'pt', 1, 'https://ror.org/03kk0s825 Fundação Carlos Chagas Filho de Amparo à Pesquisa do Estado do Rio de Janeiro'), (33102, 'https://ror.org/03kmh7v63', 'en', 1, 'https://ror.org/03kmh7v63 Virginia Department for Aging and Rehabilitative Services'), (33103, 'https://ror.org/03kq24308', 'en', 1, 'https://ror.org/03kq24308 NHS Ayrshire and Arran'), (33104, 'https://ror.org/03kqbjd86', 'en', 1, 'https://ror.org/03kqbjd86 Plastics Recyclers Europe'), (33105, 'https://ror.org/03kqv8w58', 'no_lang_code', 1, 'https://ror.org/03kqv8w58 Peregrine Diamonds (Canada)'), (33106, 'https://ror.org/03krk4x43', 'no_lang_code', 1, 'https://ror.org/03krk4x43 Propulsion Science and Technology (United States)'), (33107, 'https://ror.org/03krqra54', 'en', 1, 'https://ror.org/03krqra54 Wisconsin Department of Workforce Development'), (33108, 'https://ror.org/03krz3n62', 'en', 1, 'https://ror.org/03krz3n62 Canadian Cattlemen''s Association'), (33109, 'https://ror.org/03ks2qn81', 'no_lang_code', 1, 'https://ror.org/03ks2qn81 Sioen Industries (Belgium)'), (33110, 'https://ror.org/03ksgnr33', 'en', 1, 'https://ror.org/03ksgnr33 SwedenBIO'), (33111, 'https://ror.org/03ktab054', 'fr', 1, 'https://ror.org/03ktab054 Conférence Régionale des EluEs du Bas-Saint-Laurent'), (33112, 'https://ror.org/03kv72t22', 'no_lang_code', 1, 'https://ror.org/03kv72t22 Simpson Weather Associates (United States)'), (33113, 'https://ror.org/03kvh2f84', 'en', 1, 'https://ror.org/03kvh2f84 National Office of Mines'), (33114, 'https://ror.org/03kx2pj14', 'en', 1, 'https://ror.org/03kx2pj14 Royal Society of Edinburgh'), (33115, 'https://ror.org/03ky42c33', 'en', 1, 'https://ror.org/03ky42c33 Taichung Hospital'), (33116, 'https://ror.org/03kyjez48', 'no_lang_code', 1, 'https://ror.org/03kyjez48 Adelan (United Kingdom)'), (33117, 'https://ror.org/03kz6k786', 'no_lang_code', 1, 'https://ror.org/03kz6k786 The Technology Partnership (United States)'), (33118, 'https://ror.org/03m099247', 'no_lang_code', 1, 'https://ror.org/03m099247 Proximion (Sweden)'), (33119, 'https://ror.org/03m27ps35', 'no_lang_code', 1, 'https://ror.org/03m27ps35 Applied Pulsed Power (United States)'), (33120, 'https://ror.org/03m3hse57', 'en', 1, 'https://ror.org/03m3hse57 Department of Environment, Land, Water and Planning'), (33121, 'https://ror.org/03m41f504', 'no_lang_code', 1, 'https://ror.org/03m41f504 Basic Commerce and Industries (United States)'), (33122, 'https://ror.org/03m4h9428', 'no_lang_code', 1, 'https://ror.org/03m4h9428 Defense Research Associates (United States)'), (33123, 'https://ror.org/03m51nf34', 'en', 1, 'https://ror.org/03m51nf34 NIHR Barts Cardiovascular Biomedical Research Unit'), (33124, 'https://ror.org/03m6exj18', 'no_lang_code', 1, 'https://ror.org/03m6exj18 Msm Group (Slovakia)'), (33125, 'https://ror.org/03mb73f47', 'no_lang_code', 1, 'https://ror.org/03mb73f47 TVN Systems (United States)'), (33126, 'https://ror.org/03mc42j92', 'no_lang_code', 1, 'https://ror.org/03mc42j92 Deployable Space Systems (United States)'), (33127, 'https://ror.org/03mdeq638', 'en', 1, 'https://ror.org/03mdeq638 University of Natural Medicine'), (33128, 'https://ror.org/03mj2b997', 'no_lang_code', 1, 'https://ror.org/03mj2b997 Hutchinson (Canada)'), (33129, 'https://ror.org/03mp67a46', 'en', 1, 'https://ror.org/03mp67a46 Centre des Technologies du Gaz Naturel Natural Gas Technologies Centre'), (33130, 'https://ror.org/03mw3xk75', 'no_lang_code', 1, 'https://ror.org/03mw3xk75 Adaptive Methods (United States)'), (33131, 'https://ror.org/03mynna02', 'es', 1, 'https://ror.org/03mynna02 Centre Nacional d''Anàlisi Genòmica Centro Nacional de Análisis Genómico'), (33132, 'https://ror.org/03myqtf56', 'es', 1, 'https://ror.org/03myqtf56 Programa Iberoamericano de Ciencia y Tecnología para el Desarrollo'), (33133, 'https://ror.org/03n0yn137', 'no_lang_code', 1, 'https://ror.org/03n0yn137 X-Fab (United States)'), (33134, 'https://ror.org/03n17tr67', 'no_lang_code', 1, 'https://ror.org/03n17tr67 F. Ménard (Canada)'), (33135, 'https://ror.org/03n3q7643', 'no_lang_code', 1, 'https://ror.org/03n3q7643 SensorMetrix (United States)'), (33136, 'https://ror.org/03n3qwf37', 'en', 1, 'https://ror.org/03n3qwf37 Third People''s Hospital of Huzhou'), (33137, 'https://ror.org/03n51vw80', 'en', 1, 'https://ror.org/03n51vw80 Croatian Science Foundation'), (33138, 'https://ror.org/03n5g6138', 'en', 1, 'https://ror.org/03n5g6138 Digital Catapult'), (33139, 'https://ror.org/03n6w3476', 'no_lang_code', 1, 'https://ror.org/03n6w3476 CLC (Italy)'), (33140, 'https://ror.org/03n7hz788', 'no_lang_code', 1, 'https://ror.org/03n7hz788 GoalArt (Sweden)'), (33141, 'https://ror.org/03n8at419', 'no_lang_code', 1, 'https://ror.org/03n8at419 Monitor Coatings (United Kingdom)'), (33142, 'https://ror.org/03n8zwa93', 'no_lang_code', 1, 'https://ror.org/03n8zwa93 Galorath (United States)'), (33143, 'https://ror.org/03n9v8v45', 'en', 1, 'https://ror.org/03n9v8v45 Community Services for Autistic Adults and Children'), (33144, 'https://ror.org/03napcw37', 'en', 1, 'https://ror.org/03napcw37 Institute of Semiconductor Physics Федеральное государственное бюджетное учреждение науки Институт физики полупроводников им. А.В. Ржанова Сибирского отделения Российской академии наук'), (33145, 'https://ror.org/03nawc604', 'en', 1, 'https://ror.org/03nawc604 TNO Management Consultants'), (33146, 'https://ror.org/03nb8cd76', 'en', 1, 'https://ror.org/03nb8cd76 Shanghai Chenshan Plant Science Research Center 上海辰山植物科学研究中心'), (33147, 'https://ror.org/03ne2zw20', 'en', 1, 'https://ror.org/03ne2zw20 International Union of Pure and Applied Chemistry'), (33148, 'https://ror.org/03nfexg07', 'fr', 1, 'https://ror.org/03nfexg07 Institut National de Santé Publique'), (33149, 'https://ror.org/03ngd3730', 'no_lang_code', 1, 'https://ror.org/03ngd3730 Mobergs (Sweden)'), (33150, 'https://ror.org/03nh07n18', 'en', 1, 'https://ror.org/03nh07n18 Center for the Study of Issues in Public Mental Health'), (33151, 'https://ror.org/03nhjjj32', 'en', 1, 'https://ror.org/03nhjjj32 Webster Vienna Private University'), (33152, 'https://ror.org/03nhk5x18', 'no_lang_code', 1, 'https://ror.org/03nhk5x18 StratEdge (United States)'), (33153, 'https://ror.org/03nk3sc73', 'nl', 1, 'https://ror.org/03nk3sc73 Bonaventuracollege'), (33154, 'https://ror.org/03npats33', 'en', 1, 'https://ror.org/03npats33 Blue Ventures'), (33155, 'https://ror.org/03nqxn280', 'en', 1, 'https://ror.org/03nqxn280 Christian Aid'), (33156, 'https://ror.org/03nscdm67', 'no_lang_code', 1, 'https://ror.org/03nscdm67 OptiCall Software (Sweden)'), (33157, 'https://ror.org/03nt1ca89', 'en', 1, 'https://ror.org/03nt1ca89 Maritime and Port Authority of Singapore'), (33158, 'https://ror.org/03ntprd85', 'en', 1, 'https://ror.org/03ntprd85 Sir Jules Thorn Charitable Trust'), (33159, 'https://ror.org/03nxmmd82', 'no_lang_code', 1, 'https://ror.org/03nxmmd82 Paragon Space Development Corporation (United States)'), (33160, 'https://ror.org/03nz4ge59', 'no_lang_code', 1, 'https://ror.org/03nz4ge59 Global Seawater Extraction Technologies (United States)'), (33161, 'https://ror.org/03p0jv517', 'en', 1, 'https://ror.org/03p0jv517 Eugene Research Institute'), (33162, 'https://ror.org/03p2em878', 'no_lang_code', 1, 'https://ror.org/03p2em878 UQM Technologies (United States)'), (33163, 'https://ror.org/03p31hk68', 'en', 1, 'https://ror.org/03p31hk68 Shanghai Traditional Chinese Medicine Hospital'), (33164, 'https://ror.org/03p3fax91', 'no_lang_code', 1, 'https://ror.org/03p3fax91 Caerus Molecular Diagnostics (United States)'), (33165, 'https://ror.org/03p641z80', 'en', 1, 'https://ror.org/03p641z80 Prostate Cancer Canada'), (33166, 'https://ror.org/03p65m515', 'en', 1, 'https://ror.org/03p65m515 New York Consortium in Evolutionary Primatology'), (33167, 'https://ror.org/03p9d3z47', 'en', 1, 'https://ror.org/03p9d3z47 American Breast Cancer Foundation'), (33168, 'https://ror.org/03pbzwf28', 'no_lang_code', 1, 'https://ror.org/03pbzwf28 Tellabs (United States)'), (33169, 'https://ror.org/03pdfag88', 'nl', 1, 'https://ror.org/03pdfag88 Marecollege'), (33170, 'https://ror.org/03pdrba07', 'no_lang_code', 1, 'https://ror.org/03pdrba07 Sandbox Learning (United States)'), (33171, 'https://ror.org/03pdzzh36', 'no_lang_code', 1, 'https://ror.org/03pdzzh36 TYK America (United States)'), (33172, 'https://ror.org/03pfyd630', 'en', 1, 'https://ror.org/03pfyd630 Lourie Center for Children''s Social & Emotional Wellness'), (33173, 'https://ror.org/03pmb4h38', 'pt', 1, 'https://ror.org/03pmb4h38 Instituto Nacional de Tecnologias de Informação e Comunicação'), (33174, 'https://ror.org/03pngmk68', 'no_lang_code', 1, 'https://ror.org/03pngmk68 Total (Canada)'), (33175, 'https://ror.org/03pt05741', 'en', 1, 'https://ror.org/03pt05741 Business Sweden'), (33176, 'https://ror.org/03pt6pg29', 'en', 1, 'https://ror.org/03pt6pg29 Canadian Chlorine Chemistry Council'), (33177, 'https://ror.org/03pty3341', 'no_lang_code', 1, 'https://ror.org/03pty3341 QPS Photronics (Canada)'), (33178, 'https://ror.org/03pv43p79', 'en', 1, 'https://ror.org/03pv43p79 Ministry of Forests and Soil Conservation'), (33179, 'https://ror.org/03pvq9f35', 'en', 1, 'https://ror.org/03pvq9f35 Regional Municipality of Ottawa'), (33180, 'https://ror.org/03pwapz26', 'en', 1, 'https://ror.org/03pwapz26 American Foundation for Children with AIDS'), (33181, 'https://ror.org/03q0f4n26', 'no_lang_code', 1, 'https://ror.org/03q0f4n26 Edison International (United States)'), (33182, 'https://ror.org/03q0mq753', 'no_lang_code', 1, 'https://ror.org/03q0mq753 PartTec (United States)'), (33183, 'https://ror.org/03q13kq93', 'no_lang_code', 1, 'https://ror.org/03q13kq93 Public Service Electric and Gas (United States)'), (33184, 'https://ror.org/03q1hhd84', 'no_lang_code', 1, 'https://ror.org/03q1hhd84 Phase Sensitive Innovations (United States)'), (33185, 'https://ror.org/03q4zw938', 'en', 1, 'https://ror.org/03q4zw938 Institute of Current World Affairs'), (33186, 'https://ror.org/03q5bhc14', 'sk', 1, 'https://ror.org/03q5bhc14 Gymnázium Andreja Sládkoviča'), (33187, 'https://ror.org/03q854t26', 'en', 1, 'https://ror.org/03q854t26 Höhere Bundeslehr- und Forschungsanstalt für Landwirtschaft, Landtechnik und Lebensmitteltechnologie Josephinum Research'), (33188, 'https://ror.org/03q9jvk55', 'no_lang_code', 1, 'https://ror.org/03q9jvk55 Premier Coatings (United States)'), (33189, 'https://ror.org/03qadc961', 'da', 1, 'https://ror.org/03qadc961 Nordea-fonden'), (33190, 'https://ror.org/03qafph14', 'it', 1, 'https://ror.org/03qafph14 Istituto di Astrofisica Spaziale e Fisica cosmica di Palermo'), (33191, 'https://ror.org/03qe79b76', 'no_lang_code', 1, 'https://ror.org/03qe79b76 Optiplan (Sweden)'), (33192, 'https://ror.org/03qehyx72', 'en', 1, 'https://ror.org/03qehyx72 Ministry of Patriots and Veterans Affairs'), (33193, 'https://ror.org/03qekm213', 'no_lang_code', 1, 'https://ror.org/03qekm213 Cosine (Netherlands)'), (33194, 'https://ror.org/03qepc107', 'en', 1, 'https://ror.org/03qepc107 Federal Almazov North-West Medical Research Centre федеральное государственное бюджетное учреждение Северо-Западный федеральный медицинский исследовательский центр имени В.А. Алмазова Министерства здравоохранения Российской Федерации'), (33195, 'https://ror.org/03qevzg44', 'en', 1, 'https://ror.org/03qevzg44 Richard King Mellon Foundation'), (33196, 'https://ror.org/03qh32912', 'en', 1, 'https://ror.org/03qh32912 Food and Health Bureau 食物及衞生局'), (33197, 'https://ror.org/03qk82695', 'no_lang_code', 1, 'https://ror.org/03qk82695 Newport Coachworks (United States)'), (33198, 'https://ror.org/03qm91g53', 'no_lang_code', 1, 'https://ror.org/03qm91g53 Telesecurity Sciences (United States)'), (33199, 'https://ror.org/03qn8x345', 'en', 1, 'https://ror.org/03qn8x345 SIT Graduate Institute'), (33200, 'https://ror.org/03qp5ww24', 'en', 1, 'https://ror.org/03qp5ww24 Centre for Immunity, Infection and Evolution'), (33201, 'https://ror.org/03qqbvj08', 'no_lang_code', 1, 'https://ror.org/03qqbvj08 PTC (United States)'), (33202, 'https://ror.org/03qqngv96', 'en', 1, 'https://ror.org/03qqngv96 Living Streets'), (33203, 'https://ror.org/03qr5a489', 'no_lang_code', 1, 'https://ror.org/03qr5a489 Information System Technologies (United States)'), (33204, 'https://ror.org/03qsax043', 'no_lang_code', 1, 'https://ror.org/03qsax043 FISO Technologies (Canada)'), (33205, 'https://ror.org/03qt0ma29', 'no_lang_code', 1, 'https://ror.org/03qt0ma29 Software and Engineering Associates (United States)'), (33206, 'https://ror.org/03qxwkk89', 'no_lang_code', 1, 'https://ror.org/03qxwkk89 Lipidomix (Germany)'), (33207, 'https://ror.org/03qyfje32', 'en', 1, 'https://ror.org/03qyfje32 Institut national de recherche biomédicale National Institute of Biomedical Research'), (33208, 'https://ror.org/03r06fs10', 'en', 1, 'https://ror.org/03r06fs10 Nordic Institute for Theoretical Physics'), (33209, 'https://ror.org/03r0pj309', 'en', 1, 'https://ror.org/03r0pj309 Wolf Science Center'), (33210, 'https://ror.org/03r0qv641', 'en', 1, 'https://ror.org/03r0qv641 Slovak Public Health Association'), (33211, 'https://ror.org/03r24h131', 'en', 1, 'https://ror.org/03r24h131 Kaifeng City Children''s Hospital'), (33212, 'https://ror.org/03r5ah485', 'en', 1, 'https://ror.org/03r5ah485 Texas Research Institute'), (33213, 'https://ror.org/03r907b47', 'no_lang_code', 1, 'https://ror.org/03r907b47 Crye Precision (United States)'), (33214, 'https://ror.org/03r95z943', 'no_lang_code', 1, 'https://ror.org/03r95z943 Prometheus (United States)'), (33215, 'https://ror.org/03rb2qm14', 'en', 1, 'https://ror.org/03rb2qm14 Canadian Avalanche Association'), (33216, 'https://ror.org/03rcg4460', 'en', 1, 'https://ror.org/03rcg4460 American Guild of Organists'), (33217, 'https://ror.org/03renyq06', 'en', 1, 'https://ror.org/03renyq06 Institute of History Magyar Tudományos Akadémia Történettudományi Intézete'), (33218, 'https://ror.org/03rfn9b75', 'fr', 1, 'https://ror.org/03rfn9b75 Artsen Zonder Grenzen Doctors Without Borders Médecins Sans Frontières'), (33219, 'https://ror.org/03rj6e862', 'no_lang_code', 1, 'https://ror.org/03rj6e862 Graphenea (Spain)'), (33220, 'https://ror.org/03rj7b697', 'no_lang_code', 1, 'https://ror.org/03rj7b697 Enerworks (Canada)'), (33221, 'https://ror.org/03rkwjs94', 'no_lang_code', 1, 'https://ror.org/03rkwjs94 SensAbues (Sweden)'), (33222, 'https://ror.org/03rn5p709', 'de', 1, 'https://ror.org/03rn5p709 Architekturzentrum Wien'), (33223, 'https://ror.org/03rnj7j86', 'no_lang_code', 1, 'https://ror.org/03rnj7j86 Ordela (United States)'), (33224, 'https://ror.org/03rq52312', 'no_lang_code', 1, 'https://ror.org/03rq52312 Conductive Composites (United States)'), (33225, 'https://ror.org/03rqmey35', 'no_lang_code', 1, 'https://ror.org/03rqmey35 EverNu Technology (United States)'), (33226, 'https://ror.org/03rwxcx12', 'en', 1, 'https://ror.org/03rwxcx12 Bath and North East Somerset Council'), (33227, 'https://ror.org/03rx0gp36', 'en', 1, 'https://ror.org/03rx0gp36 Royal College of Paediatrics and Child Health'), (33228, 'https://ror.org/03rybxa06', 'en', 1, 'https://ror.org/03rybxa06 Ministry of the Environment 環境省'), (33229, 'https://ror.org/03s3npz41', 'no_lang_code', 1, 'https://ror.org/03s3npz41 Rolta (United States)'), (33230, 'https://ror.org/03s4kpx37', 'en', 1, 'https://ror.org/03s4kpx37 Chest Hospital, Ministry of Health and Welfare'), (33231, 'https://ror.org/03s6fxf66', 'no_lang_code', 1, 'https://ror.org/03s6fxf66 Timber Specialties (Canada)'), (33232, 'https://ror.org/03s8maf24', 'no_lang_code', 1, 'https://ror.org/03s8maf24 Frontier Performance Polymers (United States)'), (33233, 'https://ror.org/03s8rh204', 'en', 1, 'https://ror.org/03s8rh204 University Legal Services'), (33234, 'https://ror.org/03s918289', 'no_lang_code', 1, 'https://ror.org/03s918289 Halliburton (United States)'), (33235, 'https://ror.org/03s96de24', 'en', 1, 'https://ror.org/03s96de24 Hearst Foundations'), (33236, 'https://ror.org/03s99w274', 'no_lang_code', 1, 'https://ror.org/03s99w274 Innovation Pioneers (Sweden)'), (33237, 'https://ror.org/03s9h8898', 'en', 1, 'https://ror.org/03s9h8898 Garden Club of America'), (33238, 'https://ror.org/03s9xxw55', 'en', 1, 'https://ror.org/03s9xxw55 National Ataxia Foundation'), (33239, 'https://ror.org/03sc5te70', 'en', 1, 'https://ror.org/03sc5te70 Sunvapor'), (33240, 'https://ror.org/03sdr0263', 'en', 1, 'https://ror.org/03sdr0263 Rheumatology Research Foundation'), (33241, 'https://ror.org/03seew607', 'no_lang_code', 1, 'https://ror.org/03seew607 Applied Mathematics (United States)'), (33242, 'https://ror.org/03sf2jx83', 'no_lang_code', 1, 'https://ror.org/03sf2jx83 Traclabs (United States)'), (33243, 'https://ror.org/03sfqvm15', 'en', 1, 'https://ror.org/03sfqvm15 Sabah Forestry Department'), (33244, 'https://ror.org/03shhge35', 'no_lang_code', 1, 'https://ror.org/03shhge35 BioArctic Neuroscience (Sweden)'), (33245, 'https://ror.org/03sjenh86', 'en', 1, 'https://ror.org/03sjenh86 Warner Pacific College'), (33246, 'https://ror.org/03sjs8573', 'en', 1, 'https://ror.org/03sjs8573 Canon Foundation in Europe'), (33247, 'https://ror.org/03sm03s92', 'no_lang_code', 1, 'https://ror.org/03sm03s92 OpGen (United States)'), (33248, 'https://ror.org/03smbm342', 'no_lang_code', 1, 'https://ror.org/03smbm342 Surgical Specialties (United States)'), (33249, 'https://ror.org/03snc9f81', 'no_lang_code', 1, 'https://ror.org/03snc9f81 HyperSizer (United States)'), (33250, 'https://ror.org/03snehy11', 'fr', 1, 'https://ror.org/03snehy11 Institut de Recherche et de Développement en Agroenvironnement Institute for Research and Development in Agri-Environment'), (33251, 'https://ror.org/03snnmr62', 'no_lang_code', 1, 'https://ror.org/03snnmr62 Glint Photonics (United States)'), (33252, 'https://ror.org/03snrcf80', 'no_lang_code', 1, 'https://ror.org/03snrcf80 Staccato Technologies (Sweden)'), (33253, 'https://ror.org/03snw9541', 'no_lang_code', 1, 'https://ror.org/03snw9541 Pageau Morel and Associates (Canada)'), (33254, 'https://ror.org/03spj8080', 'no_lang_code', 1, 'https://ror.org/03spj8080 Solute (United States)'), (33255, 'https://ror.org/03sry2h30', 'en', 1, 'https://ror.org/03sry2h30 Max Planck Institute for Gravitational Physics Max-Planck-Institut für Gravitationsphysik'), (33256, 'https://ror.org/03st6mq49', 'no_lang_code', 1, 'https://ror.org/03st6mq49 LightWorks (United States)'), (33257, 'https://ror.org/03sxag889', 'no_lang_code', 1, 'https://ror.org/03sxag889 MetaSolutions (Sweden)'), (33258, 'https://ror.org/03sxnxp24', 'en', 1, 'https://ror.org/03sxnxp24 Hangzhou Wanxiang Polytechnic'), (33259, 'https://ror.org/03symbb61', 'no_lang_code', 1, 'https://ror.org/03symbb61 Quanta Technology (United States)'), (33260, 'https://ror.org/03szmqd24', 'no_lang_code', 1, 'https://ror.org/03szmqd24 Applied Minds (United States)'), (33261, 'https://ror.org/03t00e535', 'en', 1, 'https://ror.org/03t00e535 Sport Support Center'), (33262, 'https://ror.org/03t0h6z08', 'no_lang_code', 1, 'https://ror.org/03t0h6z08 DANTE Solutions (United States)'), (33263, 'https://ror.org/03t61s708', 'en', 1, 'https://ror.org/03t61s708 Parliament of United Kingdom Tŷ''r Arglwyddi'), (33264, 'https://ror.org/03t810x25', 'no_lang_code', 1, 'https://ror.org/03t810x25 Disruptive Materials (Sweden)'), (33265, 'https://ror.org/03t857d14', 'en', 1, 'https://ror.org/03t857d14 AIDS Foundation East-West'), (33266, 'https://ror.org/03tbhyj83', 'en', 1, 'https://ror.org/03tbhyj83 Area ''A'' Crab Association'), (33267, 'https://ror.org/03tcfa010', 'en', 1, 'https://ror.org/03tcfa010 Nevada Department of Employment Training and Rehabilitation'), (33268, 'https://ror.org/03tcp5e90', 'no_lang_code', 1, 'https://ror.org/03tcp5e90 Brookhaven Technology Group (United States)'), (33269, 'https://ror.org/03tcppy59', 'en', 1, 'https://ror.org/03tcppy59 The Research Council'), (33270, 'https://ror.org/03td1t893', 'no_lang_code', 1, 'https://ror.org/03td1t893 Hitachi (Canada)'), (33271, 'https://ror.org/03tdxa512', 'no_lang_code', 1, 'https://ror.org/03tdxa512 Exencotech (Sweden)'), (33272, 'https://ror.org/03teef091', 'en', 1, 'https://ror.org/03teef091 Samueli Institute'), (33273, 'https://ror.org/03th3y983', 'en', 1, 'https://ror.org/03th3y983 Chicago House and Social Service Agency'), (33274, 'https://ror.org/03tk7a811', 'no_lang_code', 1, 'https://ror.org/03tk7a811 Industrial Filter & Pump Manufacturing (United States)'), (33275, 'https://ror.org/03tn5kh37', 'en', 1, 'https://ror.org/03tn5kh37 Second Hospital of Shanxi Medical University 山西医科大学第二医院'), (33276, 'https://ror.org/03tnwmt68', 'no_lang_code', 1, 'https://ror.org/03tnwmt68 Massa Products (United States)'), (33277, 'https://ror.org/03tqh5n18', 'en', 1, 'https://ror.org/03tqh5n18 Fraunhofer Chalmers Centrum för Industrimatematik Fraunhofer Chalmers Research Centre for Industrial Mathematics'), (33278, 'https://ror.org/03tw0yk66', 'no_lang_code', 1, 'https://ror.org/03tw0yk66 Spectral Imaging Laboratory (United States)'), (33279, 'https://ror.org/03tx62s72', 'en', 1, 'https://ror.org/03tx62s72 Nichols College'), (33280, 'https://ror.org/03tz2a620', 'en', 1, 'https://ror.org/03tz2a620 Lund Municipality'), (33281, 'https://ror.org/03tzb7t51', 'en', 1, 'https://ror.org/03tzb7t51 Meningitis Research Foundation'), (33282, 'https://ror.org/03v559f24', 'no_lang_code', 1, 'https://ror.org/03v559f24 PPS Group (Slovakia)'), (33283, 'https://ror.org/03v5g8n66', 'no_lang_code', 1, 'https://ror.org/03v5g8n66 ElectroDynamic Applications (United States)'), (33284, 'https://ror.org/03v5h9q93', 'no_lang_code', 1, 'https://ror.org/03v5h9q93 Redsense Medical (Sweden)'), (33285, 'https://ror.org/03v6fak96', 'no_lang_code', 1, 'https://ror.org/03v6fak96 AIR Worldwide (United Kingdom)'), (33286, 'https://ror.org/03v6x9115', 'en', 1, 'https://ror.org/03v6x9115 Ministry of Health and Public Hygiene'), (33287, 'https://ror.org/03v7a9n80', 'en', 1, 'https://ror.org/03v7a9n80 CS Fund'), (33288, 'https://ror.org/03v7cee73', 'no_lang_code', 1, 'https://ror.org/03v7cee73 Bioservo Technologies (Sweden)'), (33289, 'https://ror.org/03v7zn827', 'en', 1, 'https://ror.org/03v7zn827 Clifton Labs'), (33290, 'https://ror.org/03v918835', 'no_lang_code', 1, 'https://ror.org/03v918835 Grainseed (United Kingdom)'), (33291, 'https://ror.org/03va2bz55', 'en', 1, 'https://ror.org/03va2bz55 International Society for Heart and Lung Transplantation'), (33292, 'https://ror.org/03vasz419', 'no_lang_code', 1, 'https://ror.org/03vasz419 KM System (Slovakia)'), (33293, 'https://ror.org/03vcepm09', 'no_lang_code', 1, 'https://ror.org/03vcepm09 Rosstech Signals (Canada)'), (33294, 'https://ror.org/03vcrdp23', 'no_lang_code', 1, 'https://ror.org/03vcrdp23 Oneday Wall (Sweden)'), (33295, 'https://ror.org/03vdsrw05', 'no_lang_code', 1, 'https://ror.org/03vdsrw05 Arxan (United States)'), (33296, 'https://ror.org/03vdweg30', 'no_lang_code', 1, 'https://ror.org/03vdweg30 Essar Steel Algoma (Canada)'), (33297, 'https://ror.org/03ve2m955', 'en', 1, 'https://ror.org/03ve2m955 Association for the Integrated Development-Comilla'), (33298, 'https://ror.org/03vek6g79', 'en', 1, 'https://ror.org/03vek6g79 Tartu Emajoe School'), (33299, 'https://ror.org/03vftr423', 'en', 1, 'https://ror.org/03vftr423 Entrepreneurship and Small Business Research Institute'), (33300, 'https://ror.org/03vgy2486', 'no_lang_code', 1, 'https://ror.org/03vgy2486 MacAulay-Brown (United States)'), (33301, 'https://ror.org/03vn7pd98', 'en', 1, 'https://ror.org/03vn7pd98 Nanotechnology Industries Association'), (33302, 'https://ror.org/03vqm2n93', 'pt', 1, 'https://ror.org/03vqm2n93 Fundação de Amparo à Pesquisa e ao Desenvolvimento Científico e Tecnológico do Maranhão'), (33303, 'https://ror.org/03vrnre28', 'en', 1, 'https://ror.org/03vrnre28 Innov & Export PME'), (33304, 'https://ror.org/03vt5je06', 'no_lang_code', 1, 'https://ror.org/03vt5je06 Scienta Scientific (Sweden)'), (33305, 'https://ror.org/03vtm2512', 'no_lang_code', 1, 'https://ror.org/03vtm2512 TECO-Westinghouse (Canada)'), (33306, 'https://ror.org/03vtpmc73', 'en', 1, 'https://ror.org/03vtpmc73 Institute of Archaeology'), (33307, 'https://ror.org/03vyh9251', 'no_lang_code', 1, 'https://ror.org/03vyh9251 LightSpin Technologies (United States)'), (33308, 'https://ror.org/03w007e62', 'no_lang_code', 1, 'https://ror.org/03w007e62 Aware (United States)'), (33309, 'https://ror.org/03w2v9593', 'en', 1, 'https://ror.org/03w2v9593 Israeli Centers for Research Excellence'), (33310, 'https://ror.org/03w6bzp59', 'no_lang_code', 1, 'https://ror.org/03w6bzp59 Fujitsu (Sweden)'), (33311, 'https://ror.org/03w6rv149', 'pt', 1, 'https://ror.org/03w6rv149 Instituto Federal de Educação Ciência e Tecnologia do Norte de Minas Gerais'), (33312, 'https://ror.org/03w6wcs90', 'no_lang_code', 1, 'https://ror.org/03w6wcs90 Quattriuum (Canada)'), (33313, 'https://ror.org/03w767q23', 'no_lang_code', 1, 'https://ror.org/03w767q23 Chang Industry (United States)'), (33314, 'https://ror.org/03w7dtv60', 'no_lang_code', 1, 'https://ror.org/03w7dtv60 Quantum Leap Innovations (United States)'), (33315, 'https://ror.org/03w7j1z86', 'fr', 1, 'https://ror.org/03w7j1z86 Centre de Recherche et de Veille sur les Maladies Emergentes dans l’Océan Indien'), (33316, 'https://ror.org/03w805n83', 'fr', 1, 'https://ror.org/03w805n83 Conseil régional de Haute-Normandie'), (33317, 'https://ror.org/03w8zjq15', 'en', 1, 'https://ror.org/03w8zjq15 The Audio Recording Academy'), (33318, 'https://ror.org/03we2aj97', 'en', 1, 'https://ror.org/03we2aj97 Medgar Evers College'), (33319, 'https://ror.org/03wenc761', 'no_lang_code', 1, 'https://ror.org/03wenc761 Sanova (United States)'), (33320, 'https://ror.org/03wj61f53', 'en', 1, 'https://ror.org/03wj61f53 Colegio Nacional National College'), (33321, 'https://ror.org/03wjh4t84', 'en', 1, 'https://ror.org/03wjh4t84 National Agricultural and Food Centre'), (33322, 'https://ror.org/03wn6yq26', 'no_lang_code', 1, 'https://ror.org/03wn6yq26 Relay Software (United Kingdom)'), (33323, 'https://ror.org/03wnkex20', 'no_lang_code', 1, 'https://ror.org/03wnkex20 Safetronics (Slovakia)'), (33324, 'https://ror.org/03wnqyy64', 'en', 1, 'https://ror.org/03wnqyy64 Netherlands Consortium for Healthy Ageing'), (33325, 'https://ror.org/03wnrsb51', 'en', 1, 'https://ror.org/03wnrsb51 Shandong Provincial QianFoShan Hospital 山东省千佛山医院'), (33326, 'https://ror.org/03wpn6023', 'no_lang_code', 1, 'https://ror.org/03wpn6023 SAE - Automation (Slovakia)'), (33327, 'https://ror.org/03wpppw84', 'no_lang_code', 1, 'https://ror.org/03wpppw84 Bridgestone (United States)'), (33328, 'https://ror.org/03wrep505', 'it', 1, 'https://ror.org/03wrep505 Ente Cassa di Risparmio di Firenze'), (33329, 'https://ror.org/03wrrj239', 'no_lang_code', 1, 'https://ror.org/03wrrj239 Wallbridge Mining (Canada)'), (33330, 'https://ror.org/03ww55028', 'en', 1, 'https://ror.org/03ww55028 Joint BioEnergy Institute'), (33331, 'https://ror.org/03wwg5r17', 'no_lang_code', 1, 'https://ror.org/03wwg5r17 Discovery Semiconductors (United States)'), (33332, 'https://ror.org/03wxvt516', 'no_lang_code', 1, 'https://ror.org/03wxvt516 Technology Solutions Experts (United States)'), (33333, 'https://ror.org/03wy95943', 'no_lang_code', 1, 'https://ror.org/03wy95943 B-Con Engineering (Canada)'), (33334, 'https://ror.org/03wyamy27', 'nl', 1, 'https://ror.org/03wyamy27 Huizinga Instituut'), (33335, 'https://ror.org/03x0p3p41', 'no_lang_code', 1, 'https://ror.org/03x0p3p41 GA Drilling (Slovakia)'), (33336, 'https://ror.org/03x0rzg54', 'no_lang_code', 1, 'https://ror.org/03x0rzg54 Shenhua Group (China)'), (33337, 'https://ror.org/03x1jt541', 'en', 1, 'https://ror.org/03x1jt541 Le Centre Hospitalier Princesse Grace Princess Grace Hospital Centre'), (33338, 'https://ror.org/03x3v9r72', 'no_lang_code', 1, 'https://ror.org/03x3v9r72 Denator (Sweden)'), (33339, 'https://ror.org/03x41sw74', 'no_lang_code', 1, 'https://ror.org/03x41sw74 Surgical Science (Sweden)'), (33340, 'https://ror.org/03x50jr04', 'no_lang_code', 1, 'https://ror.org/03x50jr04 Terrigio (Sweden)'), (33341, 'https://ror.org/03x725c05', 'no_lang_code', 1, 'https://ror.org/03x725c05 Federated Co-operatives (Canada)'), (33342, 'https://ror.org/03x8rhq63', 'en', 1, 'https://ror.org/03x8rhq63 Institute of Modern Physics 中国科学院近代物理研究所'), (33343, 'https://ror.org/03xbccz06', 'en', 1, 'https://ror.org/03xbccz06 Wellcome Centre for Cell Biology'), (33344, 'https://ror.org/03xc04149', 'no_lang_code', 1, 'https://ror.org/03xc04149 Numotion (United States)'), (33345, 'https://ror.org/03xcvwx77', 'no_lang_code', 1, 'https://ror.org/03xcvwx77 Pojen General Hospital'), (33346, 'https://ror.org/03xeae684', 'en', 1, 'https://ror.org/03xeae684 Cystic Fibrosis Trust'), (33347, 'https://ror.org/03xg85719', 'en', 1, 'https://ror.org/03xg85719 Institute for Advanced Study Wissenschaftskolleg zu Berlin'), (33348, 'https://ror.org/03xg8pv73', 'en', 1, 'https://ror.org/03xg8pv73 Covenant College'), (33349, 'https://ror.org/03xhps368', 'no_lang_code', 1, 'https://ror.org/03xhps368 DB Biotech (Slovakia)'), (33350, 'https://ror.org/03xj38z92', 'en', 1, 'https://ror.org/03xj38z92 Welch College'), (33351, 'https://ror.org/03xjasx48', 'no_lang_code', 1, 'https://ror.org/03xjasx48 Semikron (Slovakia)'), (33352, 'https://ror.org/03xnrcj96', 'no_lang_code', 1, 'https://ror.org/03xnrcj96 Continental Computers (United States)'), (33353, 'https://ror.org/03xpb8754', 'no_lang_code', 1, 'https://ror.org/03xpb8754 CCT Intermodal (Sweden)'), (33354, 'https://ror.org/03xpj4h50', 'no_lang_code', 1, 'https://ror.org/03xpj4h50 Bioland (South Korea)'), (33355, 'https://ror.org/03xqmhf90', 'no_lang_code', 1, 'https://ror.org/03xqmhf90 Breault Research Organization (United States)'), (33356, 'https://ror.org/03xqpdg50', 'da', 1, 'https://ror.org/03xqpdg50 Danish Rheumatism Association Gigtforeningen'), (33357, 'https://ror.org/03xr9q522', 'en', 1, 'https://ror.org/03xr9q522 Kuwait Foundation for the Advancement of Sciences'), (33358, 'https://ror.org/03xrrsn68', 'no_lang_code', 1, 'https://ror.org/03xrrsn68 Riksteatern (Sweden)'), (33359, 'https://ror.org/03xsjat94', 'en', 1, 'https://ror.org/03xsjat94 Natural Resources Data Management System'), (33360, 'https://ror.org/03xvqgb25', 'fr', 1, 'https://ror.org/03xvqgb25 Montreal Transit Corporation Société de Transport de Montréal'), (33361, 'https://ror.org/03xw80974', 'es', 1, 'https://ror.org/03xw80974 EcoCiencia'), (33362, 'https://ror.org/03xw8f892', 'no_lang_code', 1, 'https://ror.org/03xw8f892 Q Free (Netherlands)'), (33363, 'https://ror.org/03y2gwe85', 'en', 1, 'https://ror.org/03y2gwe85 Russian Science Foundation'), (33364, 'https://ror.org/03y315f21', 'en', 1, 'https://ror.org/03y315f21 Government of Malaysia Kerajaan Persekutuan Malaysia'), (33365, 'https://ror.org/03y3tpz14', 'no_lang_code', 1, 'https://ror.org/03y3tpz14 Inteno (Sweden)'), (33366, 'https://ror.org/03y46gc61', 'no_lang_code', 1, 'https://ror.org/03y46gc61 Megmilk Snow Brand (Japan) 雪印乳業株式会社'), (33367, 'https://ror.org/03y73tk19', 'no_lang_code', 1, 'https://ror.org/03y73tk19 InView Technology Corporation (United States)'), (33368, 'https://ror.org/03y9hjd03', 'no_lang_code', 1, 'https://ror.org/03y9hjd03 Structural Integrity Associates (United States)'), (33369, 'https://ror.org/03yc06y43', 'no_lang_code', 1, 'https://ror.org/03yc06y43 Petrel Robertson Consulting (Canada)'), (33370, 'https://ror.org/03ycgwr13', 'no_lang_code', 1, 'https://ror.org/03ycgwr13 TimeSys (United States)'), (33371, 'https://ror.org/03ycz8v76', 'en', 1, 'https://ror.org/03ycz8v76 Bosque School'), (33372, 'https://ror.org/03ydemh16', 'no_lang_code', 1, 'https://ror.org/03ydemh16 Tau - Chem (Slovakia)'), (33373, 'https://ror.org/03ye0w166', 'en', 1, 'https://ror.org/03ye0w166 Canadian Wildlife Federation Fédération Canadienne de la Faune'), (33374, 'https://ror.org/03ye3kp90', 'no_lang_code', 1, 'https://ror.org/03ye3kp90 Sciss (Sweden)'), (33375, 'https://ror.org/03yfnx990', 'no_lang_code', 1, 'https://ror.org/03yfnx990 Advanced Emissions Solutions (United States)'), (33376, 'https://ror.org/03yhn1973', 'en', 1, 'https://ror.org/03yhn1973 Praxis Institute for Participatory Practices'), (33377, 'https://ror.org/03yhprz62', 'en', 1, 'https://ror.org/03yhprz62 John S. Dunn Foundation'), (33378, 'https://ror.org/03yktc864', 'no_lang_code', 1, 'https://ror.org/03yktc864 Aneeve Nanotechnologies (United States)'), (33379, 'https://ror.org/03ym3x587', 'no_lang_code', 1, 'https://ror.org/03ym3x587 Tydock Pharma (Italy)'), (33380, 'https://ror.org/03ypap427', 'no_lang_code', 1, 'https://ror.org/03ypap427 Saudi Aramco (Saudi Arabia)'), (33381, 'https://ror.org/03yqfnv74', 'en', 1, 'https://ror.org/03yqfnv74 Cure Cancer Australia'), (33382, 'https://ror.org/03yvcwz92', 'no_lang_code', 1, 'https://ror.org/03yvcwz92 Suzuken (Japan)'), (33383, 'https://ror.org/03yw8ff53', 'no_lang_code', 1, 'https://ror.org/03yw8ff53 TechMarket (Sweden)'), (33384, 'https://ror.org/03yxd7304', 'en', 1, 'https://ror.org/03yxd7304 Israel Cancer Association'), (33385, 'https://ror.org/03yywea39', 'no_lang_code', 1, 'https://ror.org/03yywea39 Plasma Processes (United States)'), (33386, 'https://ror.org/03z0m1393', 'no_lang_code', 1, 'https://ror.org/03z0m1393 Advanced Device Technology (United States)'), (33387, 'https://ror.org/03z0yfj91', 'no_lang_code', 1, 'https://ror.org/03z0yfj91 AcousticAgree (Sweden)'), (33388, 'https://ror.org/03z192g48', 'no_lang_code', 1, 'https://ror.org/03z192g48 CrossWing (Canada)'), (33389, 'https://ror.org/03z1vf588', 'en', 1, 'https://ror.org/03z1vf588 South-South Exchange Programme for Research on the History of Development'), (33390, 'https://ror.org/03z2kds18', 'en', 1, 'https://ror.org/03z2kds18 Bethany Lutheran College'), (33391, 'https://ror.org/03z2py885', 'en', 1, 'https://ror.org/03z2py885 National Eye Research Centre'), (33392, 'https://ror.org/03z47zw42', 'no_lang_code', 1, 'https://ror.org/03z47zw42 Charles River Analytics (United States)'), (33393, 'https://ror.org/03z777f25', 'no_lang_code', 1, 'https://ror.org/03z777f25 Surface Treatment Technologies (United States)'), (33394, 'https://ror.org/03z7xev21', 'en', 1, 'https://ror.org/03z7xev21 Asthma UK'), (33395, 'https://ror.org/03z8rmr27', 'en', 1, 'https://ror.org/03z8rmr27 Tudor Place'), (33396, 'https://ror.org/03z9cwa38', 'en', 1, 'https://ror.org/03z9cwa38 Korea Evaluation Institute of Industrial Technology'), (33397, 'https://ror.org/03zcxha54', 'de', 1, 'https://ror.org/03zcxha54 Else Kröner-Fresenius-Stiftung'), (33398, 'https://ror.org/03zefh326', 'no_lang_code', 1, 'https://ror.org/03zefh326 Siva (Italy)'), (33399, 'https://ror.org/03zejnj81', 'no_lang_code', 1, 'https://ror.org/03zejnj81 Cyclicor (Sweden)'), (33400, 'https://ror.org/03zeqmc64', 'en', 1, 'https://ror.org/03zeqmc64 High Energy Materials Research Laboratory उच्च उर्जा पदार्थ अनुसंधान प्रयोगशाला'), (33401, 'https://ror.org/03zf72497', 'no_lang_code', 1, 'https://ror.org/03zf72497 Consol Energy (United States)'), (33402, 'https://ror.org/03zkdcr67', 'en', 1, 'https://ror.org/03zkdcr67 Academy of American Poets'), (33403, 'https://ror.org/03zkhjb46', 'en', 1, 'https://ror.org/03zkhjb46 Midwestern Baptist College'), (33404, 'https://ror.org/03zqd9158', 'no_lang_code', 1, 'https://ror.org/03zqd9158 BioResonator (Sweden)'), (33405, 'https://ror.org/03zts9g74', 'no_lang_code', 1, 'https://ror.org/03zts9g74 Idera Pharmaceuticals (United States)'), (33406, 'https://ror.org/03zvsh960', 'no_lang_code', 1, 'https://ror.org/03zvsh960 Oracle (Canada)'), (33407, 'https://ror.org/03zwkr441', 'en', 1, 'https://ror.org/03zwkr441 Association canadienne des optométristes Canadian Association Of Optometrists'), (33408, 'https://ror.org/03zwpmf03', 'no_lang_code', 1, 'https://ror.org/03zwpmf03 Biont (Slovakia)'), (33409, 'https://ror.org/03zxdhd63', 'no_lang_code', 1, 'https://ror.org/03zxdhd63 Shared Spectrum Company (United States)'), (33410, 'https://ror.org/040046r87', 'no_lang_code', 1, 'https://ror.org/040046r87 Källbergs Industri (Sweden)'), (33411, 'https://ror.org/0401b3q74', 'no_lang_code', 1, 'https://ror.org/0401b3q74 Cascade Microtech (United States)'), (33412, 'https://ror.org/04049nt84', 'no_lang_code', 1, 'https://ror.org/04049nt84 Ultra Communications (United States)'), (33413, 'https://ror.org/0405nh111', 'de', 1, 'https://ror.org/0405nh111 Bundesamt für Wasserwirtschaft'), (33414, 'https://ror.org/040657n65', 'nl', 1, 'https://ror.org/040657n65 Ons Middelbaar Onderwijs'), (33415, 'https://ror.org/04089t965', 'en', 1, 'https://ror.org/04089t965 Abraham Baldwin Agricultural College'), (33416, 'https://ror.org/0409k5a27', 'en', 1, 'https://ror.org/0409k5a27 Shenzhen Children''s Hospital 深圳市儿童医院'), (33417, 'https://ror.org/040aks519', 'en', 1, 'https://ror.org/040aks519 Bethune International Peace Hospital 中国人民解放军白求恩国际和平医院'); INSERT INTO `rors` VALUES (33418, 'https://ror.org/040bs6h16', 'en', 1, 'https://ror.org/040bs6h16 National Chin-Yi University of Technology'), (33419, 'https://ror.org/040ch0e11', 'en', 1, 'https://ror.org/040ch0e11 Cambridgeshire and Peterborough NHS Foundation Trust'), (33420, 'https://ror.org/040cjbv15', 'en', 1, 'https://ror.org/040cjbv15 Interior Lumber Manufacturers Association'), (33421, 'https://ror.org/040d40q10', 'de', 1, 'https://ror.org/040d40q10 Kunstakademie Düsseldorf'), (33422, 'https://ror.org/040d52e71', 'en', 1, 'https://ror.org/040d52e71 IEEE Foundation'), (33423, 'https://ror.org/040e70m72', 'no_lang_code', 1, 'https://ror.org/040e70m72 ISSAC (United States)'), (33424, 'https://ror.org/040ep7n71', 'no_lang_code', 1, 'https://ror.org/040ep7n71 Near Earth Autonomy (United States)'), (33425, 'https://ror.org/040fdbg50', 'no_lang_code', 1, 'https://ror.org/040fdbg50 Wave Control Systems (Canada)'), (33426, 'https://ror.org/040gfwf91', 'no_lang_code', 1, 'https://ror.org/040gfwf91 EWE (Germany)'), (33427, 'https://ror.org/040gnq226', 'en', 1, 'https://ror.org/040gnq226 First Affiliated Hospital of Gannan Medical University'), (33428, 'https://ror.org/040kxva36', 'hu', 1, 'https://ror.org/040kxva36 Atlantisz Alapítvány'), (33429, 'https://ror.org/040mndz48', 'no_lang_code', 1, 'https://ror.org/040mndz48 ArmorWorks (United States)'), (33430, 'https://ror.org/040mzvg39', 'en', 1, 'https://ror.org/040mzvg39 PHI University Psychiatric Clinic - Skopje'), (33431, 'https://ror.org/040nbcv84', 'en', 1, 'https://ror.org/040nbcv84 Trace Crossings Elementary School'), (33432, 'https://ror.org/040nxjw81', 'fr', 1, 'https://ror.org/040nxjw81 Haute École de Bruxelles'), (33433, 'https://ror.org/040pmcr47', 'en', 1, 'https://ror.org/040pmcr47 Maryland Higher Education Commission'), (33434, 'https://ror.org/040qg6n73', 'no_lang_code', 1, 'https://ror.org/040qg6n73 Acadia Cyber Solutions (United States)'), (33435, 'https://ror.org/040rwep31', 'en', 1, 'https://ror.org/040rwep31 Peking University Shougang Hospital 北京大学首鋼医院'), (33436, 'https://ror.org/040s9tj83', 'no_lang_code', 1, 'https://ror.org/040s9tj83 Zebra Technologies (United States)'), (33437, 'https://ror.org/040v79746', 'en', 1, 'https://ror.org/040v79746 Research Capacity Building Collaboration Wales'), (33438, 'https://ror.org/040vbkv27', 'no_lang_code', 1, 'https://ror.org/040vbkv27 Telus (Canada)'), (33439, 'https://ror.org/040wesb37', 'en', 1, 'https://ror.org/040wesb37 Barclay College'), (33440, 'https://ror.org/04193qa97', 'no_lang_code', 1, 'https://ror.org/04193qa97 LGL Group (United States)'), (33441, 'https://ror.org/041b73r77', 'no_lang_code', 1, 'https://ror.org/041b73r77 Underground Systems (United States)'), (33442, 'https://ror.org/041db3c58', 'en', 1, 'https://ror.org/041db3c58 Greenleaf University'), (33443, 'https://ror.org/041dzw371', 'en', 1, 'https://ror.org/041dzw371 Eesti Keele Instituut Institute of the Estonian Language'), (33444, 'https://ror.org/041emnb33', 'en', 1, 'https://ror.org/041emnb33 Biomedical Research Foundation of Northwest Louisiana'), (33445, 'https://ror.org/041g2v089', 'no_lang_code', 1, 'https://ror.org/041g2v089 Ekospol (Slovakia)'), (33446, 'https://ror.org/041h2kk78', 'hu', 1, 'https://ror.org/041h2kk78 Pest Megyei Múzeumok Igazgatósága'), (33447, 'https://ror.org/041jx2z70', 'en', 1, 'https://ror.org/041jx2z70 Triangle Research and Development Center'), (33448, 'https://ror.org/041mwxn09', 'no_lang_code', 1, 'https://ror.org/041mwxn09 Onboard Dynamics (United States)'), (33449, 'https://ror.org/041my0n44', 'no_lang_code', 1, 'https://ror.org/041my0n44 Vadum (United States)'), (33450, 'https://ror.org/041n00p08', 'no_lang_code', 1, 'https://ror.org/041n00p08 Ready Set Sign (United States)'), (33451, 'https://ror.org/041n69t03', 'no_lang_code', 1, 'https://ror.org/041n69t03 Dacom (Netherlands)'), (33452, 'https://ror.org/041nhp446', 'en', 1, 'https://ror.org/041nhp446 Women''s Fund for Health Education and Research'), (33453, 'https://ror.org/041q4rp74', 'no_lang_code', 1, 'https://ror.org/041q4rp74 Eurofins (Slovakia)'), (33454, 'https://ror.org/041qyrj45', 'fr', 1, 'https://ror.org/041qyrj45 Doctors Without Borders Médecins Sans Frontières'), (33455, 'https://ror.org/041t5x242', 'en', 1, 'https://ror.org/041t5x242 Tenovus Cancer Care'), (33456, 'https://ror.org/041y97z83', 'no_lang_code', 1, 'https://ror.org/041y97z83 Mike Wiegele Helicopter Skiing (Canada)'), (33457, 'https://ror.org/041yj5753', 'en', 1, 'https://ror.org/041yj5753 Stomatology Hospital'), (33458, 'https://ror.org/0420sjb95', 'no_lang_code', 1, 'https://ror.org/0420sjb95 TextWise (United States)'), (33459, 'https://ror.org/0421ba211', 'en', 1, 'https://ror.org/0421ba211 Turku Centre for Biotechnology'), (33460, 'https://ror.org/0421p8j22', 'en', 1, 'https://ror.org/0421p8j22 Wuxi Third People''s Hospital'), (33461, 'https://ror.org/0422rme67', 'no_lang_code', 1, 'https://ror.org/0422rme67 Integrated Systems Solutions (United States)'), (33462, 'https://ror.org/04237en35', 'fr', 1, 'https://ror.org/04237en35 Artsen zonder Grenzen Doctors Without Borders Médecins Sans Frontières'), (33463, 'https://ror.org/0423wr780', 'no_lang_code', 1, 'https://ror.org/0423wr780 Job Performance Systems (United States)'), (33464, 'https://ror.org/0424rzx44', 'no_lang_code', 1, 'https://ror.org/0424rzx44 Innospire Systems (United States)'), (33465, 'https://ror.org/0429ctb76', 'no_lang_code', 1, 'https://ror.org/0429ctb76 Warwick Mills (United States)'), (33466, 'https://ror.org/0429te836', 'en', 1, 'https://ror.org/0429te836 Ministry of Education'), (33467, 'https://ror.org/042a7gm30', 'hu', 1, 'https://ror.org/042a7gm30 Korall Társadalomtörténeti Folyóirat'), (33468, 'https://ror.org/042abnq57', 'no_lang_code', 1, 'https://ror.org/042abnq57 Elintrix (United States)'), (33469, 'https://ror.org/042dp4138', 'no_lang_code', 1, 'https://ror.org/042dp4138 Technology Service Corporation (United States)'), (33470, 'https://ror.org/042fse352', 'no_lang_code', 1, 'https://ror.org/042fse352 TiER1 (United States)'), (33471, 'https://ror.org/042gbet74', 'no_lang_code', 1, 'https://ror.org/042gbet74 AB Realisator (Sweden)'), (33472, 'https://ror.org/042kgb568', 'en', 1, 'https://ror.org/042kgb568 AgriBio'), (33473, 'https://ror.org/042kkhb55', 'no_lang_code', 1, 'https://ror.org/042kkhb55 Malibu IQ (United States)'), (33474, 'https://ror.org/042qrnq11', 'hu', 1, 'https://ror.org/042qrnq11 Society for the Dissemination of Scientific Knowledge Tudományos Ismeretterjesztő Társulat'), (33475, 'https://ror.org/042ssda85', 'no_lang_code', 1, 'https://ror.org/042ssda85 Chantiers Chibougamau (Canada)'), (33476, 'https://ror.org/042te9f59', 'en', 1, 'https://ror.org/042te9f59 Sabin Vaccine Institute'), (33477, 'https://ror.org/042wp4851', 'no_lang_code', 1, 'https://ror.org/042wp4851 CompuTherm (United States)'), (33478, 'https://ror.org/042zqj962', 'no_lang_code', 1, 'https://ror.org/042zqj962 Nordic Medcom (Sweden)'), (33479, 'https://ror.org/04315yv37', 'en', 1, 'https://ror.org/04315yv37 Edinburgh International Science Festival'), (33480, 'https://ror.org/0434af134', 'en', 1, 'https://ror.org/0434af134 Michigan Public Service Commission'), (33481, 'https://ror.org/0434keq61', 'en', 1, 'https://ror.org/0434keq61 Ministry of Social and Family Development 新加坡社会及家庭发展部'), (33482, 'https://ror.org/0434pxk87', 'en', 1, 'https://ror.org/0434pxk87 Eskilstuna Municipality'), (33483, 'https://ror.org/0435dvj48', 'en', 1, 'https://ror.org/0435dvj48 Cultural Heritage Administration 문화재청'), (33484, 'https://ror.org/0436y2h42', 'de', 1, 'https://ror.org/0436y2h42 Hermann Staudinger Gymnasium'), (33485, 'https://ror.org/0437v2m88', 'en', 1, 'https://ror.org/0437v2m88 School of Visual Arts'), (33486, 'https://ror.org/04380ve97', 'en', 1, 'https://ror.org/04380ve97 Korea Communications Commission'), (33487, 'https://ror.org/04390vz03', 'en', 1, 'https://ror.org/04390vz03 National Arts Council of South Africa'), (33488, 'https://ror.org/043bbp842', 'no_lang_code', 1, 'https://ror.org/043bbp842 EyeTalk Systems (United States)'), (33489, 'https://ror.org/043bpky34', 'en', 1, 'https://ror.org/043bpky34 Nanjing University of Posts and Telecommunications 南京邮电大学'), (33490, 'https://ror.org/043bzv808', 'no_lang_code', 1, 'https://ror.org/043bzv808 Referentia Systems (United States)'), (33491, 'https://ror.org/043c9gs72', 'no_lang_code', 1, 'https://ror.org/043c9gs72 Diversified Technologies (United States)'), (33492, 'https://ror.org/043egek32', 'en', 1, 'https://ror.org/043egek32 Neighborhood Legal Services'), (33493, 'https://ror.org/043ejs261', 'no_lang_code', 1, 'https://ror.org/043ejs261 Hysitron (United States)'), (33494, 'https://ror.org/043fwdk81', 'en', 1, 'https://ror.org/043fwdk81 Multiple Sclerosis Society'), (33495, 'https://ror.org/043hpt843', 'no_lang_code', 1, 'https://ror.org/043hpt843 BorgWarner (Sweden)'), (33496, 'https://ror.org/043m01p16', 'no_lang_code', 1, 'https://ror.org/043m01p16 Innovative Dynamics (United States)'), (33497, 'https://ror.org/043mcwe63', 'en', 1, 'https://ror.org/043mcwe63 Lake Forest Graduate School of Management'), (33498, 'https://ror.org/043n69j88', 'en', 1, 'https://ror.org/043n69j88 UBC Properties Trust'), (33499, 'https://ror.org/043pya965', 'en', 1, 'https://ror.org/043pya965 Research Institute of Agricultural and Food Economics'), (33500, 'https://ror.org/043qkx395', 'en', 1, 'https://ror.org/043qkx395 Centre for Ultrahigh Bandwidth Devices for Optical Systems'), (33501, 'https://ror.org/043r2f182', 'no_lang_code', 1, 'https://ror.org/043r2f182 IDEAconsult'), (33502, 'https://ror.org/043s2sj95', 'no_lang_code', 1, 'https://ror.org/043s2sj95 Nanotrons (United States)'), (33503, 'https://ror.org/043v5mq85', 'en', 1, 'https://ror.org/043v5mq85 Sustainable Sweden Southeast'), (33504, 'https://ror.org/043yd9j22', 'no_lang_code', 1, 'https://ror.org/043yd9j22 TeraDiode (United States)'), (33505, 'https://ror.org/043ydgy90', 'no_lang_code', 1, 'https://ror.org/043ydgy90 Gondolat Publishing (Hungary)'), (33506, 'https://ror.org/0440s3562', 'no_lang_code', 1, 'https://ror.org/0440s3562 Viventia Bio (Canada)'), (33507, 'https://ror.org/0442rep98', 'no_lang_code', 1, 'https://ror.org/0442rep98 Abakan (United States)'), (33508, 'https://ror.org/0442ywx89', 'no_lang_code', 1, 'https://ror.org/0442ywx89 Göteborg & Co Träffpunkt (Sweden)'), (33509, 'https://ror.org/044446k52', 'en', 1, 'https://ror.org/044446k52 Beijing Academy of Food Sciences 北京食品科学研究院'), (33510, 'https://ror.org/0444fnd49', 'en', 1, 'https://ror.org/0444fnd49 University of Southern California Sea Grant'), (33511, 'https://ror.org/044ac0f56', 'no_lang_code', 1, 'https://ror.org/044ac0f56 Magnolia Solar (United States)'), (33512, 'https://ror.org/044awgt66', 'en', 1, 'https://ror.org/044awgt66 Joint Implementation Network'), (33513, 'https://ror.org/044bcwg38', 'no_lang_code', 1, 'https://ror.org/044bcwg38 Intevac (United States)'), (33514, 'https://ror.org/044d35368', 'hu', 1, 'https://ror.org/044d35368 Damjanich János Múzeum'), (33515, 'https://ror.org/044f8a932', 'no_lang_code', 1, 'https://ror.org/044f8a932 Data Power Decisions (United States)'), (33516, 'https://ror.org/044g35w58', 'es', 1, 'https://ror.org/044g35w58 Ibercaja Banco'), (33517, 'https://ror.org/044gr8720', 'en', 1, 'https://ror.org/044gr8720 Heythrop College, University of London'), (33518, 'https://ror.org/044hmkx85', 'en', 1, 'https://ror.org/044hmkx85 Singapore Stem Cell Consortium'), (33519, 'https://ror.org/044panr52', 'en', 1, 'https://ror.org/044panr52 Egyptian Petroleum Research Institute'), (33520, 'https://ror.org/044s7x198', 'en', 1, 'https://ror.org/044s7x198 Association of Professional Engineers and Geoscientists of Manitoba'), (33521, 'https://ror.org/044txnm15', 'no_lang_code', 1, 'https://ror.org/044txnm15 1Spatial (United States)'), (33522, 'https://ror.org/044vr6g03', 'en', 1, 'https://ror.org/044vr6g03 Science and Technology Development Fund'), (33523, 'https://ror.org/044x68458', 'en', 1, 'https://ror.org/044x68458 Instituto Nacional de Ciência e Tecnologia em Biologia Estrutural e Bioimagens National Institute of Science and Technology for Structural Biology and Bioimaging'), (33524, 'https://ror.org/044ym4p17', 'en', 1, 'https://ror.org/044ym4p17 Climate and Energy Fund Klima und Energiefonds'), (33525, 'https://ror.org/045205d09', 'en', 1, 'https://ror.org/045205d09 Clinton Foundation'), (33526, 'https://ror.org/0454gfp30', 'nl', 1, 'https://ror.org/0454gfp30 Sint Maartenskliniek'), (33527, 'https://ror.org/0455ha759', 'da', 1, 'https://ror.org/0455ha759 Filadelfia'), (33528, 'https://ror.org/04566sr16', 'no_lang_code', 1, 'https://ror.org/04566sr16 Jentek Sensors (United States)'), (33529, 'https://ror.org/04587tq63', 'sv', 1, 'https://ror.org/04587tq63 Eksjö Municipality'), (33530, 'https://ror.org/04595zj73', 'en', 1, 'https://ror.org/04595zj73 Xi’an Children’s Hospital'), (33531, 'https://ror.org/0459phn12', 'en', 1, 'https://ror.org/0459phn12 Australian Cancer Research Foundation'), (33532, 'https://ror.org/045a2mc38', 'en', 1, 'https://ror.org/045a2mc38 Cape Breton Development Corporation'), (33533, 'https://ror.org/045aka220', 'no_lang_code', 1, 'https://ror.org/045aka220 Ecoland (Slovakia)'), (33534, 'https://ror.org/045cazh10', 'no_lang_code', 1, 'https://ror.org/045cazh10 Smiths Interconnect (United States)'), (33535, 'https://ror.org/045dnqy78', 'fr', 1, 'https://ror.org/045dnqy78 Conseil Régional du Languedoc-Roussillon'), (33536, 'https://ror.org/045h1za13', 'nl', 1, 'https://ror.org/045h1za13 Stichting voor Christelijke Filosofie'), (33537, 'https://ror.org/045hsta97', 'no_lang_code', 1, 'https://ror.org/045hsta97 Progressive Waste Solutions (Canada)'), (33538, 'https://ror.org/045jt2189', 'en', 1, 'https://ror.org/045jt2189 International Trachoma Initiative'), (33539, 'https://ror.org/045jyg234', 'de', 1, 'https://ror.org/045jyg234 Verein für Krebsforschung'), (33540, 'https://ror.org/045k5vt03', 'en', 1, 'https://ror.org/045k5vt03 International Society for Optics and Photonics'), (33541, 'https://ror.org/045mtcs38', 'no_lang_code', 1, 'https://ror.org/045mtcs38 CorActive (Canada)'), (33542, 'https://ror.org/045na2h79', 'no_lang_code', 1, 'https://ror.org/045na2h79 MFC Industrial (United States)'), (33543, 'https://ror.org/045pt6r46', 'no_lang_code', 1, 'https://ror.org/045pt6r46 Makel Engineering (United States)'), (33544, 'https://ror.org/045pznz06', 'no_lang_code', 1, 'https://ror.org/045pznz06 Valley Tech Systems (United States)'), (33545, 'https://ror.org/045thge14', 'en', 1, 'https://ror.org/045thge14 Finnish Red Cross'), (33546, 'https://ror.org/045vgz384', 'en', 1, 'https://ror.org/045vgz384 Government of Netherlands Nederlandse Regering'), (33547, 'https://ror.org/045vwy185', 'en', 1, 'https://ror.org/045vwy185 Seventh People''s Hospital of Shanghai'), (33548, 'https://ror.org/045w2qd40', 'no_lang_code', 1, 'https://ror.org/045w2qd40 ElectroHeat (Sweden)'), (33549, 'https://ror.org/045whza52', 'no_lang_code', 1, 'https://ror.org/045whza52 Instrumental Sciences (United States)'), (33550, 'https://ror.org/045wyyr37', 'no_lang_code', 1, 'https://ror.org/045wyyr37 Evans Capacitor (United States)'), (33551, 'https://ror.org/045x7cm28', 'nl', 1, 'https://ror.org/045x7cm28 Archeologisch Diensten Centrum (Netherlands)'), (33552, 'https://ror.org/045xnm641', 'no_lang_code', 1, 'https://ror.org/045xnm641 GlycoScientific (United States)'), (33553, 'https://ror.org/045yjpn53', 'en', 1, 'https://ror.org/045yjpn53 Hebei Mental Health Center'), (33554, 'https://ror.org/045yq4549', 'no_lang_code', 1, 'https://ror.org/045yq4549 LC-Tec Displays (Sweden)'), (33555, 'https://ror.org/04600bt44', 'en', 1, 'https://ror.org/04600bt44 Ministry for Culture and Heritage'), (33556, 'https://ror.org/046107075', 'en', 1, 'https://ror.org/046107075 Oregon Sea Grant'), (33557, 'https://ror.org/0461jpd45', 'no_lang_code', 1, 'https://ror.org/0461jpd45 Science and Technology Applications (United States)'), (33558, 'https://ror.org/0462e7n29', 'en', 1, 'https://ror.org/0462e7n29 Heilongjiang Postdoctoral Fund'), (33559, 'https://ror.org/0462xwv27', 'fr', 1, 'https://ror.org/0462xwv27 Université Nangui Abrogoua'), (33560, 'https://ror.org/0463x0716', 'no_lang_code', 1, 'https://ror.org/0463x0716 Red Glead Discovery (Sweden)'), (33561, 'https://ror.org/04650gr34', 'en', 1, 'https://ror.org/04650gr34 Centre for Research in Astrophysics of Québec'), (33562, 'https://ror.org/0465y5v04', 'no_lang_code', 1, 'https://ror.org/0465y5v04 Epsilon Systems (United States)'), (33563, 'https://ror.org/0467qa071', 'en', 1, 'https://ror.org/0467qa071 Nordic Museum'), (33564, 'https://ror.org/04697zk19', 'no_lang_code', 1, 'https://ror.org/04697zk19 Innovative Configuration (United States)'), (33565, 'https://ror.org/046eh8t80', 'en', 1, 'https://ror.org/046eh8t80 CHDI Foundation'), (33566, 'https://ror.org/046ejs207', 'no_lang_code', 1, 'https://ror.org/046ejs207 Red Ninja (United Kingdom)'), (33567, 'https://ror.org/046ep5e79', 'no_lang_code', 1, 'https://ror.org/046ep5e79 KGS Group (Canada)'), (33568, 'https://ror.org/046fp0073', 'no_lang_code', 1, 'https://ror.org/046fp0073 ParaTools (United States)'), (33569, 'https://ror.org/046ftar42', 'no_lang_code', 1, 'https://ror.org/046ftar42 Cortana (United States)'), (33570, 'https://ror.org/046k8b628', 'en', 1, 'https://ror.org/046k8b628 United Indian Health Services'), (33571, 'https://ror.org/046n57345', 'en', 1, 'https://ror.org/046n57345 Hefei Institutes of Physical Science 合肥物质科学研究院'), (33572, 'https://ror.org/046nkt812', 'no_lang_code', 1, 'https://ror.org/046nkt812 8 Rivers Capital (United States)'), (33573, 'https://ror.org/046qmva50', 'no_lang_code', 1, 'https://ror.org/046qmva50 SA Technologies (United States)'), (33574, 'https://ror.org/046secg30', 'en', 1, 'https://ror.org/046secg30 Lee Foundation'), (33575, 'https://ror.org/046t0ph31', 'no_lang_code', 1, 'https://ror.org/046t0ph31 Elevance Renewable Sciences (United States)'), (33576, 'https://ror.org/046v2xt32', 'no_lang_code', 1, 'https://ror.org/046v2xt32 Lexicon Technologies (United States)'), (33577, 'https://ror.org/046y2e354', 'no_lang_code', 1, 'https://ror.org/046y2e354 Cinside (Sweden)'), (33578, 'https://ror.org/046zezr58', 'en', 1, 'https://ror.org/046zezr58 Office of Disease Prevention'), (33579, 'https://ror.org/046zwst09', 'no_lang_code', 1, 'https://ror.org/046zwst09 Reliable System Services (United States)'), (33580, 'https://ror.org/04725j767', 'en', 1, 'https://ror.org/04725j767 Shasta Bible College and Graduate School'), (33581, 'https://ror.org/04731xt44', 'en', 1, 'https://ror.org/04731xt44 National Space Biomedical Research Institute'), (33582, 'https://ror.org/0473khm44', 'pt', 1, 'https://ror.org/0473khm44 Fundação de Amparo à Pesquisa do Estado da Bahia'), (33583, 'https://ror.org/047406z28', 'no_lang_code', 1, 'https://ror.org/047406z28 RHI Magnesita (Canada)'), (33584, 'https://ror.org/04749me90', 'no_lang_code', 1, 'https://ror.org/04749me90 AmeriPrint (United States)'), (33585, 'https://ror.org/0479dbk76', 'no_lang_code', 1, 'https://ror.org/0479dbk76 Allcomp (United States)'), (33586, 'https://ror.org/047an3241', 'en', 1, 'https://ror.org/047an3241 Supreme Council Of Health'), (33587, 'https://ror.org/047aw1y82', 'en', 1, 'https://ror.org/047aw1y82 Second Hospital of Anhui Medical University'), (33588, 'https://ror.org/047btv285', 'no_lang_code', 1, 'https://ror.org/047btv285 Sydney Steel (Canada)'), (33589, 'https://ror.org/047dhbt11', 'no_lang_code', 1, 'https://ror.org/047dhbt11 Marotta Controls (United States)'), (33590, 'https://ror.org/047egay20', 'en', 1, 'https://ror.org/047egay20 Maj and Tor Nessling Foundation'), (33591, 'https://ror.org/047fr0y29', 'en', 1, 'https://ror.org/047fr0y29 Washington Sea Grant'), (33592, 'https://ror.org/047gav625', 'no_lang_code', 1, 'https://ror.org/047gav625 Skyonic (United States)'), (33593, 'https://ror.org/047hk9367', 'en', 1, 'https://ror.org/047hk9367 Royal Australasian College of Physicians'), (33594, 'https://ror.org/047hn5n73', 'no_lang_code', 1, 'https://ror.org/047hn5n73 Elforsk (Sweden)'), (33595, 'https://ror.org/047j0y804', 'no_lang_code', 1, 'https://ror.org/047j0y804 Radiant Genomics (United States)'), (33596, 'https://ror.org/047jywd74', 'en', 1, 'https://ror.org/047jywd74 Kids Kidney Research'), (33597, 'https://ror.org/047kbmp67', 'no_lang_code', 1, 'https://ror.org/047kbmp67 Global Services (Slovakia)'), (33598, 'https://ror.org/047kyy460', 'no_lang_code', 1, 'https://ror.org/047kyy460 Advanced Resources International (United States)'), (33599, 'https://ror.org/047p1nv89', 'no_lang_code', 1, 'https://ror.org/047p1nv89 Neonode (Sweden)'), (33600, 'https://ror.org/047pm4955', 'en', 1, 'https://ror.org/047pm4955 Croce Rossa Svizzera Croix-Rouge suisse Schweizerisches Rote Kreuz Swiss Red Cross'), (33601, 'https://ror.org/047t8cy26', 'no_lang_code', 1, 'https://ror.org/047t8cy26 Research Solutions International (United States)'), (33602, 'https://ror.org/047wvvg23', 'en', 1, 'https://ror.org/047wvvg23 Center for Translational Molecular Medicine'), (33603, 'https://ror.org/047yqrk88', 'no_lang_code', 1, 'https://ror.org/047yqrk88 Metabiota (United States)'), (33604, 'https://ror.org/047zhzq42', 'no_lang_code', 1, 'https://ror.org/047zhzq42 Motorola (Canada)'), (33605, 'https://ror.org/048116458', 'en', 1, 'https://ror.org/048116458 Department of Transportation, Infrastructure and Energy'), (33606, 'https://ror.org/0481e1q24', 'en', 1, 'https://ror.org/0481e1q24 Hogeschool Rotterdam Rotterdam University of Applied Sciences'), (33607, 'https://ror.org/0481xe004', 'no_lang_code', 1, 'https://ror.org/0481xe004 Arotech (United States)'), (33608, 'https://ror.org/0481zh362', 'no_lang_code', 1, 'https://ror.org/0481zh362 Preeye Solutions (Sweden)'), (33609, 'https://ror.org/04830x266', 'en', 1, 'https://ror.org/04830x266 Paracel Laboratories'), (33610, 'https://ror.org/04882a678', 'no_lang_code', 1, 'https://ror.org/04882a678 MidDec Scandinavia (Sweden)'), (33611, 'https://ror.org/0489qz649', 'fr', 1, 'https://ror.org/0489qz649 Fondation ARC pour la Recherche sur le Cancer'), (33612, 'https://ror.org/048b0ns33', 'en', 1, 'https://ror.org/048b0ns33 Aga Khan Foundation'), (33613, 'https://ror.org/048cnym07', 'no_lang_code', 1, 'https://ror.org/048cnym07 Vextec (United States)'), (33614, 'https://ror.org/048d8vj36', 'no_lang_code', 1, 'https://ror.org/048d8vj36 Global Technology Connection (United States)'), (33615, 'https://ror.org/048f9kd86', 'no_lang_code', 1, 'https://ror.org/048f9kd86 Applied Defense Solutions (United States)'), (33616, 'https://ror.org/048gf2b30', 'de', 1, 'https://ror.org/048gf2b30 AllerGen'), (33617, 'https://ror.org/048jjce41', 'hu', 1, 'https://ror.org/048jjce41 Hadtörténeti Intézet és Múzeum'), (33618, 'https://ror.org/048kv9325', 'no_lang_code', 1, 'https://ror.org/048kv9325 Applications Research (United States)'), (33619, 'https://ror.org/048m3cq30', 'no_lang_code', 1, 'https://ror.org/048m3cq30 Paladin Labs (Canada)'), (33620, 'https://ror.org/048mg0d76', 'sk', 1, 'https://ror.org/048mg0d76 Ústredná Vojenská Nemocnica Ružomberok'), (33621, 'https://ror.org/048nn3q69', 'fr', 1, 'https://ror.org/048nn3q69 France AgriMer, Établissement National des Produits de l''Agriculture et de la Mer'), (33622, 'https://ror.org/048p52p98', 'en', 1, 'https://ror.org/048p52p98 Canada Auto Workers'), (33623, 'https://ror.org/048q23a93', 'en', 1, 'https://ror.org/048q23a93 Xuzhou Central Hospital'), (33624, 'https://ror.org/048qkq105', 'en', 1, 'https://ror.org/048qkq105 Wolfgang Pauli Institute'), (33625, 'https://ror.org/048r2d478', 'en', 1, 'https://ror.org/048r2d478 Computer Based Training for Cognitive Behavioral Therapy'), (33626, 'https://ror.org/048r9g705', 'en', 1, 'https://ror.org/048r9g705 Royal Albert Memorial Museum'), (33627, 'https://ror.org/048tdcg16', 'en', 1, 'https://ror.org/048tdcg16 Ohio Lake Erie Commission'), (33628, 'https://ror.org/048xjjh50', 'en', 1, 'https://ror.org/048xjjh50 Ministre du développement des ressources humaines Ministry of Human Resource Development मानव संसाधन विकास मंत्रालय மனிதவள மேம்பாட்டு அமைச்சகம்'), (33629, 'https://ror.org/048yqnw40', 'en', 1, 'https://ror.org/048yqnw40 Historic Deerfield'), (33630, 'https://ror.org/048z8ts16', 'no_lang_code', 1, 'https://ror.org/048z8ts16 Kiverdi (United States)'), (33631, 'https://ror.org/048zd9m77', 'en', 1, 'https://ror.org/048zd9m77 Foundation for Polish Science'), (33632, 'https://ror.org/048zxak11', 'no_lang_code', 1, 'https://ror.org/048zxak11 TEAM'), (33633, 'https://ror.org/04904kp41', 'no_lang_code', 1, 'https://ror.org/04904kp41 Spiber Technologies (Sweden)'), (33634, 'https://ror.org/0492gsr48', 'en', 1, 'https://ror.org/0492gsr48 Brain Research Foundation'), (33635, 'https://ror.org/04935k107', 'de', 1, 'https://ror.org/04935k107 Verein für Geschichte der Arbeiterbewegung'), (33636, 'https://ror.org/0497dq098', 'en', 1, 'https://ror.org/0497dq098 British Columbia Broiler Hatching Egg Commission'), (33637, 'https://ror.org/049835d66', 'no_lang_code', 1, 'https://ror.org/049835d66 Institute of Political History (Hungary)'), (33638, 'https://ror.org/0498yg883', 'en', 1, 'https://ror.org/0498yg883 Gutenberg College'), (33639, 'https://ror.org/0499es143', 'en', 1, 'https://ror.org/0499es143 Olivet College'), (33640, 'https://ror.org/0499r1e09', 'no_lang_code', 1, 'https://ror.org/0499r1e09 Archer Daniels Midland (United States)'), (33641, 'https://ror.org/049b7hm56', 'en', 1, 'https://ror.org/049b7hm56 Horse Council BC'), (33642, 'https://ror.org/049bwjd71', 'no_lang_code', 1, 'https://ror.org/049bwjd71 Alpha Star (United States)'), (33643, 'https://ror.org/049c6rx58', 'en', 1, 'https://ror.org/049c6rx58 MTO Safety'), (33644, 'https://ror.org/049e28v28', 'da', 1, 'https://ror.org/049e28v28 National Science Ethics Committee Nationale Videnskabsetiske Komité'), (33645, 'https://ror.org/049f48g82', 'no_lang_code', 1, 'https://ror.org/049f48g82 F&S Building Innovations (United States)'), (33646, 'https://ror.org/049fnxe71', 'en', 1, 'https://ror.org/049fnxe71 Bioprocessing Technology Institute'), (33647, 'https://ror.org/049fv0n19', 'no_lang_code', 1, 'https://ror.org/049fv0n19 Time Domain (United States)'), (33648, 'https://ror.org/049g9p164', 'en', 1, 'https://ror.org/049g9p164 Austrian Research Agency for Post-War Justice'), (33649, 'https://ror.org/049j2m240', 'en', 1, 'https://ror.org/049j2m240 Department of Health of Guangdong Province'), (33650, 'https://ror.org/049k0qb06', 'no_lang_code', 1, 'https://ror.org/049k0qb06 Information Systems Laboratories (United States)'), (33651, 'https://ror.org/049k26g38', 'en', 1, 'https://ror.org/049k26g38 Croatian Forest Research Institute'), (33652, 'https://ror.org/049p7zw58', 'no_lang_code', 1, 'https://ror.org/049p7zw58 MesoScribe Technologies (United States)'), (33653, 'https://ror.org/049p9kt19', 'en', 1, 'https://ror.org/049p9kt19 Netherlands Institute for Art History'), (33654, 'https://ror.org/049prb569', 'en', 1, 'https://ror.org/049prb569 NHS Lanarkshire'), (33655, 'https://ror.org/049tk1906', 'no_lang_code', 1, 'https://ror.org/049tk1906 Flex (Sweden)'), (33656, 'https://ror.org/049vf5c24', 'en', 1, 'https://ror.org/049vf5c24 Endangered Wildlife Trust'), (33657, 'https://ror.org/049xqkn84', 'en', 1, 'https://ror.org/049xqkn84 Administration canadienne de la sûreté du transport aérien Canadian Air Transport Security Authority'), (33658, 'https://ror.org/049zmb830', 'no_lang_code', 1, 'https://ror.org/049zmb830 Afognak Native Corporation (United States)'), (33659, 'https://ror.org/04a0z4y72', 'no_lang_code', 1, 'https://ror.org/04a0z4y72 Nordic Aircraft (Sweden)'), (33660, 'https://ror.org/04a0z8p03', 'no_lang_code', 1, 'https://ror.org/04a0z8p03 J.A. Woollam Company (United States)'), (33661, 'https://ror.org/04a3gjw65', 'en', 1, 'https://ror.org/04a3gjw65 Ministry of Education শিক্ষা মন্ত্রণালয়'), (33662, 'https://ror.org/04a579b24', 'no_lang_code', 1, 'https://ror.org/04a579b24 Alpha Medical (Slovakia)'), (33663, 'https://ror.org/04a7ab069', 'no_lang_code', 1, 'https://ror.org/04a7ab069 AEF Global (Canada)'), (33664, 'https://ror.org/04a8v6p14', 'no_lang_code', 1, 'https://ror.org/04a8v6p14 Hisense (United States)'), (33665, 'https://ror.org/04a95cm55', 'no_lang_code', 1, 'https://ror.org/04a95cm55 FMB Feinwerk- und Messtechnik (Germany)'), (33666, 'https://ror.org/04abk6t05', 'en', 1, 'https://ror.org/04abk6t05 Department of Biodiversity, Conservation and Attractions'), (33667, 'https://ror.org/04abv6630', 'en', 1, 'https://ror.org/04abv6630 Instituts für Krebsforschung Ludwig Boltzmann Institute for Cancer Research'), (33668, 'https://ror.org/04acx6166', 'no_lang_code', 1, 'https://ror.org/04acx6166 Lassonde Industries (Canada)'), (33669, 'https://ror.org/04ad94n97', 'no_lang_code', 1, 'https://ror.org/04ad94n97 Comptoir Agricole Sabrevois (Canada)'), (33670, 'https://ror.org/04aedks88', 'no_lang_code', 1, 'https://ror.org/04aedks88 Rainbow Communications (United States)'), (33671, 'https://ror.org/04aejqj79', 'no_lang_code', 1, 'https://ror.org/04aejqj79 RDRtec (United States)'), (33672, 'https://ror.org/04ahd1307', 'no_lang_code', 1, 'https://ror.org/04ahd1307 Foam Matrix (United States)'), (33673, 'https://ror.org/04anrg987', 'en', 1, 'https://ror.org/04anrg987 Plimoth Plantation'), (33674, 'https://ror.org/04ap8h142', 'en', 1, 'https://ror.org/04ap8h142 Arid Forest Research Institute'), (33675, 'https://ror.org/04ap8m727', 'no_lang_code', 1, 'https://ror.org/04ap8m727 FiberSensing (Portugal)'), (33676, 'https://ror.org/04apt4x36', 'en', 1, 'https://ror.org/04apt4x36 Regional Municipality of Waterloo'), (33677, 'https://ror.org/04aqat463', 'en', 1, 'https://ror.org/04aqat463 Zhejiang Provincial Natural Science Foundation 浙江省自然科学基金委员会'), (33678, 'https://ror.org/04asd3g14', 'en', 1, 'https://ror.org/04asd3g14 Greater Portland Landmarks'), (33679, 'https://ror.org/04atp4p48', 'en', 1, 'https://ror.org/04atp4p48 China Scholarship Council 国家留学基金管理委员会'), (33680, 'https://ror.org/04ayzes68', 'en', 1, 'https://ror.org/04ayzes68 Research Associates of Syracuse'), (33681, 'https://ror.org/04az2a138', 'en', 1, 'https://ror.org/04az2a138 Stockholm Science City Foundation'), (33682, 'https://ror.org/04b019n96', 'no_lang_code', 1, 'https://ror.org/04b019n96 LiveData (United States)'), (33683, 'https://ror.org/04b0s8g05', 'no_lang_code', 1, 'https://ror.org/04b0s8g05 Husky Energy (Canada)'), (33684, 'https://ror.org/04b102659', 'de', 1, 'https://ror.org/04b102659 Klinik Barmelweid'), (33685, 'https://ror.org/04b12nt82', 'no_lang_code', 1, 'https://ror.org/04b12nt82 PNSensor (Germany)'), (33686, 'https://ror.org/04b1cqt16', 'no_lang_code', 1, 'https://ror.org/04b1cqt16 DNA Chip Research (Japan) 株式会社DNAチップ研究所'), (33687, 'https://ror.org/04b1eqn95', 'no_lang_code', 1, 'https://ror.org/04b1eqn95 Bodkin Design & Engineering (United States)'), (33688, 'https://ror.org/04b3ehq94', 'en', 1, 'https://ror.org/04b3ehq94 Australian Wildlife Conservancy'), (33689, 'https://ror.org/04b46da24', 'no_lang_code', 1, 'https://ror.org/04b46da24 Mayflower Communications (United States)'), (33690, 'https://ror.org/04b4jcw62', 'no_lang_code', 1, 'https://ror.org/04b4jcw62 Geostock (United States)'), (33691, 'https://ror.org/04b4pz972', 'no_lang_code', 1, 'https://ror.org/04b4pz972 Modus Operandi (United States)'), (33692, 'https://ror.org/04b4rxp95', 'en', 1, 'https://ror.org/04b4rxp95 Nuts, Bolts and Thingamajigs'), (33693, 'https://ror.org/04b621m59', 'en', 1, 'https://ror.org/04b621m59 Stockholm School of Entrepreneurship'), (33694, 'https://ror.org/04b6d3182', 'no_lang_code', 1, 'https://ror.org/04b6d3182 Western Slovakian Energy Corporation Západoslovenská Energetika (Slovakia)'), (33695, 'https://ror.org/04b6jkz71', 'en', 1, 'https://ror.org/04b6jkz71 China Ocean Mineral Resource R&D Association'), (33696, 'https://ror.org/04b7xxn32', 'en', 1, 'https://ror.org/04b7xxn32 United States Social Security Administration'), (33697, 'https://ror.org/04b9sdb26', 'no_lang_code', 1, 'https://ror.org/04b9sdb26 Tri Alpha Energy (United States)'), (33698, 'https://ror.org/04b9y0b76', 'en', 1, 'https://ror.org/04b9y0b76 Government Hospital of Thoracic Medicine'), (33699, 'https://ror.org/04bac2365', 'en', 1, 'https://ror.org/04bac2365 Interface Symposia'), (33700, 'https://ror.org/04bbq7097', 'no_lang_code', 1, 'https://ror.org/04bbq7097 Spirit Lake Consulting (United States)'), (33701, 'https://ror.org/04bbzfz74', 'sk', 1, 'https://ror.org/04bbzfz74 Stredoslovenské múzeum'), (33702, 'https://ror.org/04bdm2a74', 'en', 1, 'https://ror.org/04bdm2a74 CUNY Energy Institute'), (33703, 'https://ror.org/04be58j18', 'no_lang_code', 1, 'https://ror.org/04be58j18 Folke Rydén Production (Sweden)'), (33704, 'https://ror.org/04bjdr366', 'en', 1, 'https://ror.org/04bjdr366 Institut Fur Friedensforschung Und Sicherheitspolitik Institute for Peace Research and Security Policy'), (33705, 'https://ror.org/04bjg9m96', 'en', 1, 'https://ror.org/04bjg9m96 Defense Acquisition Program Administration'), (33706, 'https://ror.org/04bjytq67', 'sv', 1, 'https://ror.org/04bjytq67 Jan Wallanders och Tom Hedelius stiftelse'), (33707, 'https://ror.org/04bk4t231', 'en', 1, 'https://ror.org/04bk4t231 National Tax Service'), (33708, 'https://ror.org/04bpasa69', 'en', 1, 'https://ror.org/04bpasa69 Appalachian Regional Commission'), (33709, 'https://ror.org/04bpn6s66', 'en', 1, 'https://ror.org/04bpn6s66 Beijing Municipal Education Commission'), (33710, 'https://ror.org/04btpac66', 'no_lang_code', 1, 'https://ror.org/04btpac66 KWD (Slovakia)'), (33711, 'https://ror.org/04bxn2127', 'en', 1, 'https://ror.org/04bxn2127 Japan Food Research Laboratories 日本食品研究所'), (33712, 'https://ror.org/04bxtw313', 'no_lang_code', 1, 'https://ror.org/04bxtw313 Sféra (Slovakia)'), (33713, 'https://ror.org/04bxzgg25', 'fr', 1, 'https://ror.org/04bxzgg25 Cemsuisse'), (33714, 'https://ror.org/04bz45c46', 'en', 1, 'https://ror.org/04bz45c46 Bernstein Center for Computational Neuroscience Munich'), (33715, 'https://ror.org/04bzg5466', 'en', 1, 'https://ror.org/04bzg5466 University of Chicago Research Bangladesh'), (33716, 'https://ror.org/04c2kcw65', 'no_lang_code', 1, 'https://ror.org/04c2kcw65 Seibersdorf Laboratories (Austria)'), (33717, 'https://ror.org/04c31tk69', 'no_lang_code', 1, 'https://ror.org/04c31tk69 Texel (Canada)'), (33718, 'https://ror.org/04c326720', 'no_lang_code', 1, 'https://ror.org/04c326720 Axcentua (Sweden)'), (33719, 'https://ror.org/04c4bwh63', 'en', 1, 'https://ror.org/04c4bwh63 Cologne Excellence Cluster on Cellular Stress Responses in Aging Associated Diseases Exzellenzcluster Cellular Stress Responses in Aging-Associated Diseases'), (33720, 'https://ror.org/04c66ah90', 'no_lang_code', 1, 'https://ror.org/04c66ah90 Antex Western (Canada)'), (33721, 'https://ror.org/04c691616', 'en', 1, 'https://ror.org/04c691616 Technological Educational Institute of Peloponnese ΤΕΙ Πελοποννήσου'), (33722, 'https://ror.org/04c767n32', 'en', 1, 'https://ror.org/04c767n32 Southern Regional Council'), (33723, 'https://ror.org/04c9me270', 'no_lang_code', 1, 'https://ror.org/04c9me270 Milcord (United States)'), (33724, 'https://ror.org/04cey8951', 'en', 1, 'https://ror.org/04cey8951 Lancaster Bible College'), (33725, 'https://ror.org/04ch2gv47', 'en', 1, 'https://ror.org/04ch2gv47 Government of Saskatchewan'), (33726, 'https://ror.org/04chpf767', 'fr', 1, 'https://ror.org/04chpf767 Société de Développement de I''industrie Maricole'), (33727, 'https://ror.org/04chtc989', 'no_lang_code', 1, 'https://ror.org/04chtc989 Crearum (Sweden)'), (33728, 'https://ror.org/04cj0jk63', 'de', 1, 'https://ror.org/04cj0jk63 Landesmuseum Kärnten'), (33729, 'https://ror.org/04cma1r71', 'en', 1, 'https://ror.org/04cma1r71 Group for the Analysis of Development Grupo de Análisis para el Desarrollo'), (33730, 'https://ror.org/04cmszv87', 'en', 1, 'https://ror.org/04cmszv87 Wallace H. Coulter Foundation'), (33731, 'https://ror.org/04cn82p68', 'no_lang_code', 1, 'https://ror.org/04cn82p68 Manning Diversified Forest Products (Canada)'), (33732, 'https://ror.org/04cr2kz28', 'no_lang_code', 1, 'https://ror.org/04cr2kz28 Genesis Industries (United States)'), (33733, 'https://ror.org/04cs8dp04', 'en', 1, 'https://ror.org/04cs8dp04 West Coast Trollers Association'), (33734, 'https://ror.org/04cvg8m78', 'no_lang_code', 1, 'https://ror.org/04cvg8m78 Future Vehicle Technologies (Canada)'), (33735, 'https://ror.org/04cw9df25', 'no_lang_code', 1, 'https://ror.org/04cw9df25 Pacific Engineering (United States)'), (33736, 'https://ror.org/04cwxh229', 'en', 1, 'https://ror.org/04cwxh229 Nova Scotia Department of Energy'), (33737, 'https://ror.org/04cxwzs93', 'en', 1, 'https://ror.org/04cxwzs93 IT Foundation for the Visually Impaired'), (33738, 'https://ror.org/04d832p61', 'no_lang_code', 1, 'https://ror.org/04d832p61 Nutronics (United States)'), (33739, 'https://ror.org/04d8cf622', 'en', 1, 'https://ror.org/04d8cf622 International Partnership for the Hydrogen and Fuel Cell in the Economy'), (33740, 'https://ror.org/04d8ywj90', 'en', 1, 'https://ror.org/04d8ywj90 Multiple Sclerosis Society of Canada Société canadienne de la sclérose en plaques'), (33741, 'https://ror.org/04d96be50', 'no_lang_code', 1, 'https://ror.org/04d96be50 Parker Hannifin (United States)'), (33742, 'https://ror.org/04d9sry41', 'no_lang_code', 1, 'https://ror.org/04d9sry41 Novosense (Sweden)'), (33743, 'https://ror.org/04ddd7237', 'en', 1, 'https://ror.org/04ddd7237 Congress of Neurological Surgeons'), (33744, 'https://ror.org/04dft6z85', 'en', 1, 'https://ror.org/04dft6z85 Conner Prairie'), (33745, 'https://ror.org/04dhm2b57', 'no_lang_code', 1, 'https://ror.org/04dhm2b57 Ericsson (Denmark)'), (33746, 'https://ror.org/04djvx395', 'en', 1, 'https://ror.org/04djvx395 Foundation for Research Support of the Federal District'), (33747, 'https://ror.org/04djzj803', 'no_lang_code', 1, 'https://ror.org/04djzj803 Signature Research (United States)'), (33748, 'https://ror.org/04dmcck46', 'no_lang_code', 1, 'https://ror.org/04dmcck46 RAM Photonics (United States)'), (33749, 'https://ror.org/04dnqhj72', 'en', 1, 'https://ror.org/04dnqhj72 Central Christian College of Kansas'), (33750, 'https://ror.org/04drjs621', 'en', 1, 'https://ror.org/04drjs621 Research to Prevent Blindness'), (33751, 'https://ror.org/04dv8zc45', 'no_lang_code', 1, 'https://ror.org/04dv8zc45 Capital Power (Canada)'), (33752, 'https://ror.org/04dvghk72', 'no_lang_code', 1, 'https://ror.org/04dvghk72 Wireless 2000 RF & UWB Technologies (Canada)'), (33753, 'https://ror.org/04dxp6p61', 'no_lang_code', 1, 'https://ror.org/04dxp6p61 Koenigsegg Automotive (Sweden)'), (33754, 'https://ror.org/04dyhjr58', 'no_lang_code', 1, 'https://ror.org/04dyhjr58 Medtronic (Ireland)'), (33755, 'https://ror.org/04dz3dj65', 'no_lang_code', 1, 'https://ror.org/04dz3dj65 Totech (Sweden)'), (33756, 'https://ror.org/04dzt3j15', 'no_lang_code', 1, 'https://ror.org/04dzt3j15 Osiris (Hungary)'), (33757, 'https://ror.org/04e10gs59', 'no_lang_code', 1, 'https://ror.org/04e10gs59 Boisaco (Canada)'), (33758, 'https://ror.org/04e1s4y56', 'no_lang_code', 1, 'https://ror.org/04e1s4y56 The Design Knowledge Company (United States)'), (33759, 'https://ror.org/04e209f39', 'en', 1, 'https://ror.org/04e209f39 Loewe Center for Synthetic Microbiology Loewe-Zentrum für Synthetische Mikrobiologie'), (33760, 'https://ror.org/04e2ah412', 'en', 1, 'https://ror.org/04e2ah412 University of Atlanta'), (33761, 'https://ror.org/04e3zg361', 'en', 1, 'https://ror.org/04e3zg361 Rosetrees Trust'), (33762, 'https://ror.org/04e5g4k17', 'en', 1, 'https://ror.org/04e5g4k17 Technological University Myitkyina နည်းပညာတက္ကသိုလ် (မြစ်ကြီးနား)'), (33763, 'https://ror.org/04e5kcp15', 'no_lang_code', 1, 'https://ror.org/04e5kcp15 RONA (Slovakia)'), (33764, 'https://ror.org/04e6jcd64', 'en', 1, 'https://ror.org/04e6jcd64 Thrombosis Research Institute'), (33765, 'https://ror.org/04e77ta80', 'no_lang_code', 1, 'https://ror.org/04e77ta80 Genovis (Sweden)'), (33766, 'https://ror.org/04e98j339', 'en', 1, 'https://ror.org/04e98j339 United States-Israel Binational Agricultural Research and Development Fund'), (33767, 'https://ror.org/04e9fmf35', 'no_lang_code', 1, 'https://ror.org/04e9fmf35 EQUA Simulation (Sweden)'), (33768, 'https://ror.org/04ea6k136', 'no_lang_code', 1, 'https://ror.org/04ea6k136 Assocalzaturifici (Italy)'), (33769, 'https://ror.org/04eanvj85', 'no_lang_code', 1, 'https://ror.org/04eanvj85 Audio Analytic (United Kingdom)'), (33770, 'https://ror.org/04ebjet06', 'en', 1, 'https://ror.org/04ebjet06 Michigan Disability Rights Coalition'), (33771, 'https://ror.org/04ecck436', 'en', 1, 'https://ror.org/04ecck436 Public Utilities Board'), (33772, 'https://ror.org/04eddkf89', 'no_lang_code', 1, 'https://ror.org/04eddkf89 Illinois Rocstar (United States)'), (33773, 'https://ror.org/04edzrx46', 'hu', 1, 'https://ror.org/04edzrx46 Forster Központ'), (33774, 'https://ror.org/04ehcx813', 'no_lang_code', 1, 'https://ror.org/04ehcx813 FTL Systems (United States)'), (33775, 'https://ror.org/04ehqrw09', 'en', 1, 'https://ror.org/04ehqrw09 Institute for Foreign Affairs and Trade'), (33776, 'https://ror.org/04ene8p36', 'en', 1, 'https://ror.org/04ene8p36 Commission for Scientific Investigations in Greenland Kommissionen for Videnskabelige Undersøgelser i Grønland'), (33777, 'https://ror.org/04enz2k98', 'en', 1, 'https://ror.org/04enz2k98 Chengdu Normal University'), (33778, 'https://ror.org/04epbgw81', 'no_lang_code', 1, 'https://ror.org/04epbgw81 Lakota Technical Solutions (United States)'), (33779, 'https://ror.org/04erqh270', 'no_lang_code', 1, 'https://ror.org/04erqh270 Liberating Technologies (United States)'), (33780, 'https://ror.org/04etphg07', 'en', 1, 'https://ror.org/04etphg07 Conservation Leadership Programme'), (33781, 'https://ror.org/04evq8811', 'en', 1, 'https://ror.org/04evq8811 State Library of New South Wales'), (33782, 'https://ror.org/04ez3hr33', 'en', 1, 'https://ror.org/04ez3hr33 Athens City'), (33783, 'https://ror.org/04ezkb708', 'no_lang_code', 1, 'https://ror.org/04ezkb708 Biorealis (Slovakia)'), (33784, 'https://ror.org/04f097438', 'en', 1, 'https://ror.org/04f097438 National Evidenc- based healthcare Collaborating Agency'), (33785, 'https://ror.org/04f1s4r56', 'en', 1, 'https://ror.org/04f1s4r56 Psychiatric Rehabilitation Association'), (33786, 'https://ror.org/04f3bkd55', 'no_lang_code', 1, 'https://ror.org/04f3bkd55 Cascade (United States)'), (33787, 'https://ror.org/04f4r6066', 'no_lang_code', 1, 'https://ror.org/04f4r6066 Talentum (Sweden)'), (33788, 'https://ror.org/04f5gee24', 'no_lang_code', 1, 'https://ror.org/04f5gee24 Nelson Engineering (United States)'), (33789, 'https://ror.org/04f5ngh80', 'en', 1, 'https://ror.org/04f5ngh80 Independent Broadcasting Associates'), (33790, 'https://ror.org/04f5qb772', 'no_lang_code', 1, 'https://ror.org/04f5qb772 Inventech Europe (Sweden)'), (33791, 'https://ror.org/04f6m0p71', 'no_lang_code', 1, 'https://ror.org/04f6m0p71 AOSOL (Portugal)'), (33792, 'https://ror.org/04f786589', 'no_lang_code', 1, 'https://ror.org/04f786589 Chunghwa Telecom (Taiwan)'), (33793, 'https://ror.org/04f919z92', 'no_lang_code', 1, 'https://ror.org/04f919z92 Perrigo (Belgium)'), (33794, 'https://ror.org/04f9t1x17', 'en', 1, 'https://ror.org/04f9t1x17 Novartis Foundation'), (33795, 'https://ror.org/04fa4r544', 'en', 1, 'https://ror.org/04fa4r544 ORCID'), (33796, 'https://ror.org/04fb6qy86', 'no_lang_code', 1, 'https://ror.org/04fb6qy86 Dongfeng General Hospital'), (33797, 'https://ror.org/04fc1p069', 'no_lang_code', 1, 'https://ror.org/04fc1p069 Smiths Detection (United States)'), (33798, 'https://ror.org/04fc5qm41', 'no_lang_code', 1, 'https://ror.org/04fc5qm41 Toyota Kosei Hospital 豊田厚生病院'), (33799, 'https://ror.org/04fdrwm29', 'no_lang_code', 1, 'https://ror.org/04fdrwm29 Odyssey Investment Partners (United States)'), (33800, 'https://ror.org/04fe2dt25', 'no_lang_code', 1, 'https://ror.org/04fe2dt25 Renaissance Sciences Corporation (United States)'), (33801, 'https://ror.org/04fe9w827', 'no_lang_code', 1, 'https://ror.org/04fe9w827 Vehicle Control Technologies (United States)'), (33802, 'https://ror.org/04fexsb73', 'en', 1, 'https://ror.org/04fexsb73 Emmaus Bible College'), (33803, 'https://ror.org/04fn4g645', 'en', 1, 'https://ror.org/04fn4g645 Master''s College'), (33804, 'https://ror.org/04fphdf97', 'no_lang_code', 1, 'https://ror.org/04fphdf97 Avtech (Sweden)'), (33805, 'https://ror.org/04fr9je54', 'en', 1, 'https://ror.org/04fr9je54 Chartered Institute of Logistics and Transport'), (33806, 'https://ror.org/04frprb97', 'no_lang_code', 1, 'https://ror.org/04frprb97 Odyssian Technology (United States)'), (33807, 'https://ror.org/04fskt963', 'en', 1, 'https://ror.org/04fskt963 Bupa UK Foundation'), (33808, 'https://ror.org/04fszpp16', 'en', 1, 'https://ror.org/04fszpp16 Dongyang People''s Hospital'), (33809, 'https://ror.org/04ftnqm48', 'no_lang_code', 1, 'https://ror.org/04ftnqm48 Versatilis (United States)'), (33810, 'https://ror.org/04fvc0724', 'no_lang_code', 1, 'https://ror.org/04fvc0724 Sage Technologies (United States)'), (33811, 'https://ror.org/04fves619', 'en', 1, 'https://ror.org/04fves619 Forest Institute'), (33812, 'https://ror.org/04fzzvb87', 'sk', 1, 'https://ror.org/04fzzvb87 Aqua Vita - Živá voda'), (33813, 'https://ror.org/04g0byc83', 'no_lang_code', 1, 'https://ror.org/04g0byc83 Stilman Advanced Strategies (United States)'), (33814, 'https://ror.org/04g0qyf70', 'no_lang_code', 1, 'https://ror.org/04g0qyf70 TopVisible (Sweden)'), (33815, 'https://ror.org/04g20q935', 'en', 1, 'https://ror.org/04g20q935 Scleroderma Foundation'), (33816, 'https://ror.org/04g3dhy48', 'no_lang_code', 1, 'https://ror.org/04g3dhy48 American Semiconductor (United States)'), (33817, 'https://ror.org/04g507h60', 'no_lang_code', 1, 'https://ror.org/04g507h60 AirScience Technologies (Canada)'), (33818, 'https://ror.org/04g6qfd94', 'en', 1, 'https://ror.org/04g6qfd94 European Foundation for Alcohol Research'), (33819, 'https://ror.org/04g99jx54', 'en', 1, 'https://ror.org/04g99jx54 Fachhochschule Stralsund University of Applied Sciences Stralsund'), (33820, 'https://ror.org/04gacff49', 'no_lang_code', 1, 'https://ror.org/04gacff49 GreenValue (Switzerland)'), (33821, 'https://ror.org/04gbjf340', 'en', 1, 'https://ror.org/04gbjf340 Nyack College'), (33822, 'https://ror.org/04gf4dd67', 'no_lang_code', 1, 'https://ror.org/04gf4dd67 Systems & Processes Engineering Corporation (United States)'), (33823, 'https://ror.org/04gffem11', 'en', 1, 'https://ror.org/04gffem11 American Orthopaedic Association'), (33824, 'https://ror.org/04gg6xa16', 'no_lang_code', 1, 'https://ror.org/04gg6xa16 Monnaie royale canadienne Royal Canadian Mint (Canada)'), (33825, 'https://ror.org/04gggzb44', 'no_lang_code', 1, 'https://ror.org/04gggzb44 Spectranetix (United States)'), (33826, 'https://ror.org/04ggv2982', 'en', 1, 'https://ror.org/04ggv2982 Piedmont College'), (33827, 'https://ror.org/04gk5xv95', 'en', 1, 'https://ror.org/04gk5xv95 National Organization for Rare Disorders'), (33828, 'https://ror.org/04gkgzp76', 'sk', 1, 'https://ror.org/04gkgzp76 Centire'), (33829, 'https://ror.org/04gm72267', 'no_lang_code', 1, 'https://ror.org/04gm72267 VoiceAge (Canada)'), (33830, 'https://ror.org/04gmhya03', 'en', 1, 'https://ror.org/04gmhya03 Pelican Cancer Foundation'), (33831, 'https://ror.org/04gmrm344', 'it', 1, 'https://ror.org/04gmrm344 Fondazione Monte di Bologna and Ravenna'), (33832, 'https://ror.org/04gp12571', 'no_lang_code', 1, 'https://ror.org/04gp12571 ChemoCentryx (United States)'), (33833, 'https://ror.org/04gq2fa58', 'en', 1, 'https://ror.org/04gq2fa58 Zhejiang Institute of Science and Technology Information'), (33834, 'https://ror.org/04gq4y167', 'no_lang_code', 1, 'https://ror.org/04gq4y167 UFA (United States)'), (33835, 'https://ror.org/04gqzc140', 'no_lang_code', 1, 'https://ror.org/04gqzc140 Paton (Canada)'), (33836, 'https://ror.org/04gsnvb07', 'no_lang_code', 1, 'https://ror.org/04gsnvb07 Thorlabs (United States)'), (33837, 'https://ror.org/04gswc637', 'no_lang_code', 1, 'https://ror.org/04gswc637 STR Europe (France)'), (33838, 'https://ror.org/04gtbbw62', 'no_lang_code', 1, 'https://ror.org/04gtbbw62 Equinor (Canada)'), (33839, 'https://ror.org/04gvcex51', 'en', 1, 'https://ror.org/04gvcex51 Ministry of National Development'), (33840, 'https://ror.org/04gvkax77', 'en', 1, 'https://ror.org/04gvkax77 Hangzhou Science and Technology Commission'), (33841, 'https://ror.org/04gwzr713', 'fr', 1, 'https://ror.org/04gwzr713 Ingésup'), (33842, 'https://ror.org/04gyrp304', 'fr', 1, 'https://ror.org/04gyrp304 Fondation d''Aide pour la Recherche sur la Sclerose en Plaques'), (33843, 'https://ror.org/04gz17b59', 'en', 1, 'https://ror.org/04gz17b59 Northern Jiangsu People''s Hospital 江苏省苏北人民医院'), (33844, 'https://ror.org/04gzn8442', 'no_lang_code', 1, 'https://ror.org/04gzn8442 Frontier Technology Incorporation (United States)'), (33845, 'https://ror.org/04h08bc47', 'no_lang_code', 1, 'https://ror.org/04h08bc47 M4 Engineering (United States)'), (33846, 'https://ror.org/04h174r26', 'no_lang_code', 1, 'https://ror.org/04h174r26 Dafo Fomtec (Sweden)'), (33847, 'https://ror.org/04h1em726', 'en', 1, 'https://ror.org/04h1em726 Mount Washington College'), (33848, 'https://ror.org/04h1q4c89', 'no_lang_code', 1, 'https://ror.org/04h1q4c89 Applied Materials (United States)'), (33849, 'https://ror.org/04h2r8894', 'no_lang_code', 1, 'https://ror.org/04h2r8894 LuminUltra Technologies (Canada)'), (33850, 'https://ror.org/04h2sqw81', 'no_lang_code', 1, 'https://ror.org/04h2sqw81 Aguettant (France)'), (33851, 'https://ror.org/04h38r646', 'en', 1, 'https://ror.org/04h38r646 FoodDrinkEurope'), (33852, 'https://ror.org/04h893p85', 'no_lang_code', 1, 'https://ror.org/04h893p85 Protobios (Estonia)'), (33853, 'https://ror.org/04hadnb81', 'no_lang_code', 1, 'https://ror.org/04hadnb81 ConocoPhillips (United States)'), (33854, 'https://ror.org/04hcen254', 'no_lang_code', 1, 'https://ror.org/04hcen254 Energy Research Company (United States)'), (33855, 'https://ror.org/04hd1y677', 'en', 1, 'https://ror.org/04hd1y677 Hewlett Foundation'), (33856, 'https://ror.org/04he8ec30', 'no_lang_code', 1, 'https://ror.org/04he8ec30 Finja (Sweden)'); INSERT INTO `rors` VALUES (33857, 'https://ror.org/04hezhj72', 'no_lang_code', 1, 'https://ror.org/04hezhj72 Fibercryst (France)'), (33858, 'https://ror.org/04hg0kz24', 'en', 1, 'https://ror.org/04hg0kz24 Van Ameringen Foundation'), (33859, 'https://ror.org/04hgt1t77', 'en', 1, 'https://ror.org/04hgt1t77 Centenary College of New Jersey'), (33860, 'https://ror.org/04hgyes27', 'no_lang_code', 1, 'https://ror.org/04hgyes27 Ideus (Sweden)'), (33861, 'https://ror.org/04hh7yg67', 'no_lang_code', 1, 'https://ror.org/04hh7yg67 SunDanzer (United States)'), (33862, 'https://ror.org/04hhyvs94', 'no_lang_code', 1, 'https://ror.org/04hhyvs94 Tyréns (Sweden)'), (33863, 'https://ror.org/04hhyx074', 'en', 1, 'https://ror.org/04hhyx074 Goldey–Beacom College'), (33864, 'https://ror.org/04hjgjc21', 'en', 1, 'https://ror.org/04hjgjc21 Canadian Hydrogen and Fuel Cell Association'), (33865, 'https://ror.org/04hk68s94', 'no_lang_code', 1, 'https://ror.org/04hk68s94 Gipeco (Sweden)'), (33866, 'https://ror.org/04hkp7874', 'no_lang_code', 1, 'https://ror.org/04hkp7874 Eurorad (France)'), (33867, 'https://ror.org/04hqrkw15', 'no_lang_code', 1, 'https://ror.org/04hqrkw15 Architectural Applications (United States)'), (33868, 'https://ror.org/04hvmsy06', 'no_lang_code', 1, 'https://ror.org/04hvmsy06 Cochlear (Australia)'), (33869, 'https://ror.org/04hx50087', 'no_lang_code', 1, 'https://ror.org/04hx50087 ScoreCloud (Sweden)'), (33870, 'https://ror.org/04hx9nd03', 'no_lang_code', 1, 'https://ror.org/04hx9nd03 Atlantic Hydrogen (Canada)'), (33871, 'https://ror.org/04hxkjw81', 'no_lang_code', 1, 'https://ror.org/04hxkjw81 Global Engineering Research and Technologies (United States)'), (33872, 'https://ror.org/04hzq0286', 'no_lang_code', 1, 'https://ror.org/04hzq0286 Keystone Synergistic Enterprises (United States)'), (33873, 'https://ror.org/04j0ce487', 'en', 1, 'https://ror.org/04j0ce487 Nasarawa State Ministry of Health'), (33874, 'https://ror.org/04j0y0e37', 'en', 1, 'https://ror.org/04j0y0e37 Brown Foundation'), (33875, 'https://ror.org/04j12y625', 'en', 1, 'https://ror.org/04j12y625 European Centre of Tort and Insurance Law Europäische Zentrum für Schadenersatz- und Versicherungsrecht'), (33876, 'https://ror.org/04j23ff69', 'en', 1, 'https://ror.org/04j23ff69 Alaska Sea Grant'), (33877, 'https://ror.org/04j48qz06', 'en', 1, 'https://ror.org/04j48qz06 VISTA Science & Technology'), (33878, 'https://ror.org/04j4a6x59', 'en', 1, 'https://ror.org/04j4a6x59 MRC Lifecourse Epidemiology Unit'), (33879, 'https://ror.org/04j62df57', 'no_lang_code', 1, 'https://ror.org/04j62df57 Atmospheric Observing Systems (United States)'), (33880, 'https://ror.org/04j68sw28', 'en', 1, 'https://ror.org/04j68sw28 Heart Research UK'), (33881, 'https://ror.org/04j808v60', 'en', 1, 'https://ror.org/04j808v60 Research Institute of Posts and Telecommunications'), (33882, 'https://ror.org/04j8bfv31', 'no_lang_code', 1, 'https://ror.org/04j8bfv31 Sienna Technologies (United States)'), (33883, 'https://ror.org/04j8pdt93', 'en', 1, 'https://ror.org/04j8pdt93 Chadwick University'), (33884, 'https://ror.org/04j9acc95', 'no_lang_code', 1, 'https://ror.org/04j9acc95 Infrared Laboratories (United States)'), (33885, 'https://ror.org/04j9nyn50', 'no_lang_code', 1, 'https://ror.org/04j9nyn50 Nielsen Engineering & Research (United States)'), (33886, 'https://ror.org/04jc8gz43', 'no_lang_code', 1, 'https://ror.org/04jc8gz43 Archangel Systems (United States)'), (33887, 'https://ror.org/04jeg4294', 'en', 1, 'https://ror.org/04jeg4294 Ideon Agro Food'), (33888, 'https://ror.org/04jfj6996', 'no_lang_code', 1, 'https://ror.org/04jfj6996 Triangle Polymer Technologies (United States)'), (33889, 'https://ror.org/04jfp6348', 'no_lang_code', 1, 'https://ror.org/04jfp6348 Soraa (United States)'), (33890, 'https://ror.org/04jg69j33', 'en', 1, 'https://ror.org/04jg69j33 Hainan Medical College Hospital'), (33891, 'https://ror.org/04jgfn484', 'no_lang_code', 1, 'https://ror.org/04jgfn484 Applied Technology Associates (United States)'), (33892, 'https://ror.org/04jhpx964', 'en', 1, 'https://ror.org/04jhpx964 Washington Employment Security Department'), (33893, 'https://ror.org/04jhtcf60', 'no_lang_code', 1, 'https://ror.org/04jhtcf60 Orora Design Technologies (United States)'), (33894, 'https://ror.org/04jn6q565', 'no_lang_code', 1, 'https://ror.org/04jn6q565 Goleta Star (United States)'), (33895, 'https://ror.org/04jnb5p59', 'no_lang_code', 1, 'https://ror.org/04jnb5p59 OpiFlex (Sweden)'), (33896, 'https://ror.org/04jnjav79', 'no_lang_code', 1, 'https://ror.org/04jnjav79 Vónin (Canada)'), (33897, 'https://ror.org/04jnypc35', 'no_lang_code', 1, 'https://ror.org/04jnypc35 Integrum (Sweden)'), (33898, 'https://ror.org/04jp1vs97', 'no_lang_code', 1, 'https://ror.org/04jp1vs97 Hill Engineering (United States)'), (33899, 'https://ror.org/04jp6nz39', 'en', 1, 'https://ror.org/04jp6nz39 Bat Conservation International'), (33900, 'https://ror.org/04jp8cn27', 'no_lang_code', 1, 'https://ror.org/04jp8cn27 Advanced Rotorcraft Technology (United States)'), (33901, 'https://ror.org/04jpeqm39', 'no_lang_code', 1, 'https://ror.org/04jpeqm39 EsFem'), (33902, 'https://ror.org/04jpp2r68', 'sk', 1, 'https://ror.org/04jpp2r68 Szenczi Molnár Albert Alapiskola'), (33903, 'https://ror.org/04jpp6j90', 'en', 1, 'https://ror.org/04jpp6j90 Rothamsted International'), (33904, 'https://ror.org/04jrdcy74', 'en', 1, 'https://ror.org/04jrdcy74 Dutch Network of Systems and Control'), (33905, 'https://ror.org/04jrey505', 'no_lang_code', 1, 'https://ror.org/04jrey505 Kurt J. Lesker (United Kingdom)'), (33906, 'https://ror.org/04jrge359', 'no_lang_code', 1, 'https://ror.org/04jrge359 FlexProp (Sweden)'), (33907, 'https://ror.org/04jsh2530', 'en', 1, 'https://ror.org/04jsh2530 Andrew W. Mellon Foundation'), (33908, 'https://ror.org/04jt8tp60', 'no_lang_code', 1, 'https://ror.org/04jt8tp60 Southeast Nonwovens (United States)'), (33909, 'https://ror.org/04jvq2733', 'no_lang_code', 1, 'https://ror.org/04jvq2733 Soquem (Canada)'), (33910, 'https://ror.org/04jwmyw53', 'en', 1, 'https://ror.org/04jwmyw53 International Association of Machinists and Aerospace Workers'), (33911, 'https://ror.org/04k00np26', 'no_lang_code', 1, 'https://ror.org/04k00np26 BrainAid (United States)'), (33912, 'https://ror.org/04k09rt14', 'en', 1, 'https://ror.org/04k09rt14 National Council on Aging'), (33913, 'https://ror.org/04kc9j928', 'no_lang_code', 1, 'https://ror.org/04kc9j928 Zöldségtermesztési Kutató Intézet (Hungary)'), (33914, 'https://ror.org/04kczqa55', 'en', 1, 'https://ror.org/04kczqa55 Central Penn College'), (33915, 'https://ror.org/04kevy945', 'no_lang_code', 1, 'https://ror.org/04kevy945 Tecnologie Avanzate (Italy)'), (33916, 'https://ror.org/04kfqps12', 'no_lang_code', 1, 'https://ror.org/04kfqps12 Information Extraction & Transport (United States)'), (33917, 'https://ror.org/04kg99k11', 'en', 1, 'https://ror.org/04kg99k11 John Innes Foundation'), (33918, 'https://ror.org/04khywr62', 'no_lang_code', 1, 'https://ror.org/04khywr62 Veritay Technology (United States)'), (33919, 'https://ror.org/04kjswq56', 'no_lang_code', 1, 'https://ror.org/04kjswq56 Electro Magnetic Applications (United States)'), (33920, 'https://ror.org/04kk7gt95', 'no_lang_code', 1, 'https://ror.org/04kk7gt95 Libri Kiadó (Hungary)'), (33921, 'https://ror.org/04kmn0d38', 'no_lang_code', 1, 'https://ror.org/04kmn0d38 Catalyst Paper (Canada)'), (33922, 'https://ror.org/04kn6vt85', 'en', 1, 'https://ror.org/04kn6vt85 Korea Maritime Institute 한국해양수산개발원'), (33923, 'https://ror.org/04knyj922', 'no_lang_code', 1, 'https://ror.org/04knyj922 Optimax (United States)'), (33924, 'https://ror.org/04kpceh54', 'no_lang_code', 1, 'https://ror.org/04kpceh54 Directed Vapor Technologies (United States)'), (33925, 'https://ror.org/04kptf457', 'en', 1, 'https://ror.org/04kptf457 Centre Scientifique de Monaco Scientific Centre of Monaco'), (33926, 'https://ror.org/04kqrq649', 'no_lang_code', 1, 'https://ror.org/04kqrq649 PP Polymer (Sweden)'), (33927, 'https://ror.org/04ks5c429', 'no_lang_code', 1, 'https://ror.org/04ks5c429 Analytical Services & Materials (United States)'), (33928, 'https://ror.org/04ksb3515', 'en', 1, 'https://ror.org/04ksb3515 NIHR Queen Square Dementia Biomedical Research Unit'), (33929, 'https://ror.org/04kshqx58', 'no_lang_code', 1, 'https://ror.org/04kshqx58 Mtekvision (Canada)'), (33930, 'https://ror.org/04kx2vh28', 'en', 1, 'https://ror.org/04kx2vh28 Programa Mundial de Alimentos Programma Alimentare Mondiale Programme Alimentaire Mondial World Food Programme'), (33931, 'https://ror.org/04kx6mx16', 'no_lang_code', 1, 'https://ror.org/04kx6mx16 JRM Technologies (United States)'), (33932, 'https://ror.org/04kzdy639', 'en', 1, 'https://ror.org/04kzdy639 Institute for Development and International Relations'), (33933, 'https://ror.org/04m1j1t24', 'en', 1, 'https://ror.org/04m1j1t24 Australian Institute of Criminology'), (33934, 'https://ror.org/04m7z7z76', 'no_lang_code', 1, 'https://ror.org/04m7z7z76 Third Wave Systems (United States)'), (33935, 'https://ror.org/04md3b668', 'no_lang_code', 1, 'https://ror.org/04md3b668 Astronautics Corporation of America'), (33936, 'https://ror.org/04md8p839', 'no_lang_code', 1, 'https://ror.org/04md8p839 Materials Research Institute (United States)'), (33937, 'https://ror.org/04mf3j007', 'no_lang_code', 1, 'https://ror.org/04mf3j007 TES International (United States)'), (33938, 'https://ror.org/04mgr5526', 'no_lang_code', 1, 'https://ror.org/04mgr5526 Svenska Aerogel (Sweden)'), (33939, 'https://ror.org/04mh2zc60', 'en', 1, 'https://ror.org/04mh2zc60 John E. Fetzer Memorial Trust'), (33940, 'https://ror.org/04mhnz122', 'en', 1, 'https://ror.org/04mhnz122 Assistive Technology Resource Centers of Hawaii'), (33941, 'https://ror.org/04mjjg550', 'no_lang_code', 1, 'https://ror.org/04mjjg550 Scientic (United States)'), (33942, 'https://ror.org/04mjpn004', 'no_lang_code', 1, 'https://ror.org/04mjpn004 Athena Environmental Sciences (United States)'), (33943, 'https://ror.org/04mm8xb27', 'no_lang_code', 1, 'https://ror.org/04mm8xb27 SciGenom Labs (India)'), (33944, 'https://ror.org/04mnkdm02', 'en', 1, 'https://ror.org/04mnkdm02 Aeronautics Research and Development Board'), (33945, 'https://ror.org/04mpce960', 'no_lang_code', 1, 'https://ror.org/04mpce960 Napvilág (Hungary)'), (33946, 'https://ror.org/04mpn1847', 'en', 1, 'https://ror.org/04mpn1847 Institute of Ethnology and Folklore Research'), (33947, 'https://ror.org/04mqxq306', 'no_lang_code', 1, 'https://ror.org/04mqxq306 TransMIT (Germany)'), (33948, 'https://ror.org/04mr67481', 'en', 1, 'https://ror.org/04mr67481 Technological University Kyaukse ကျောက်ဆည် နည်းပညာတက္ကသိုလ်'), (33949, 'https://ror.org/04mr81w67', 'no_lang_code', 1, 'https://ror.org/04mr81w67 Ceska Astronomicka Spolecnost'), (33950, 'https://ror.org/04ms6qb33', 'no_lang_code', 1, 'https://ror.org/04ms6qb33 STUNS'), (33951, 'https://ror.org/04mseyk78', 'no_lang_code', 1, 'https://ror.org/04mseyk78 NDI Engineering Company (United States)'), (33952, 'https://ror.org/04mtxrz85', 'no_lang_code', 1, 'https://ror.org/04mtxrz85 Ortoma (Sweden)'), (33953, 'https://ror.org/04mvxcw39', 'no_lang_code', 1, 'https://ror.org/04mvxcw39 O’Gara Group (United States)'), (33954, 'https://ror.org/04mw0p229', 'no_lang_code', 1, 'https://ror.org/04mw0p229 Matrix Research (United States)'), (33955, 'https://ror.org/04mwe1m14', 'en', 1, 'https://ror.org/04mwe1m14 Victim Support'), (33956, 'https://ror.org/04mwmd860', 'en', 1, 'https://ror.org/04mwmd860 SaskWater'), (33957, 'https://ror.org/04mypf355', 'en', 1, 'https://ror.org/04mypf355 HeliCat Canada'), (33958, 'https://ror.org/04n2jeh03', 'en', 1, 'https://ror.org/04n2jeh03 Oticon Foundation in New Zealand'), (33959, 'https://ror.org/04n404y68', 'fr', 1, 'https://ror.org/04n404y68 Institut de Recherche en Réadaptation-Réinsertion'), (33960, 'https://ror.org/04n4d5575', 'no_lang_code', 1, 'https://ror.org/04n4d5575 Nu-Trek (United States)'), (33961, 'https://ror.org/04n4x0209', 'en', 1, 'https://ror.org/04n4x0209 College for Creative Studies'), (33962, 'https://ror.org/04n65rp89', 'en', 1, 'https://ror.org/04n65rp89 Doris Duke Charitable Foundation'), (33963, 'https://ror.org/04n80xp42', 'en', 1, 'https://ror.org/04n80xp42 Gastroenterological Society of Australia'), (33964, 'https://ror.org/04n91v483', 'no_lang_code', 1, 'https://ror.org/04n91v483 Metron (United States)'), (33965, 'https://ror.org/04n95h407', 'it', 1, 'https://ror.org/04n95h407 Istituto Italiano per l''Africa e l''Oriente'), (33966, 'https://ror.org/04nbqb988', 'en', 1, 'https://ror.org/04nbqb988 CHA Bundang Medical Center'), (33967, 'https://ror.org/04nderh91', 'no_lang_code', 1, 'https://ror.org/04nderh91 Time Critical Networks (Sweden)'), (33968, 'https://ror.org/04ndsf485', 'no_lang_code', 1, 'https://ror.org/04ndsf485 Polymer Aging Concepts (United States)'), (33969, 'https://ror.org/04ne7ew72', 'no_lang_code', 1, 'https://ror.org/04ne7ew72 Canadian Bio-Systems (Canada)'), (33970, 'https://ror.org/04nf1vj74', 'no_lang_code', 1, 'https://ror.org/04nf1vj74 Zenterio (Sweden)'), (33971, 'https://ror.org/04ngjd421', 'no_lang_code', 1, 'https://ror.org/04ngjd421 Uminova Innovation (Sweden)'), (33972, 'https://ror.org/04ngy8121', 'no_lang_code', 1, 'https://ror.org/04ngy8121 Remtech (United States)'), (33973, 'https://ror.org/04nk31t13', 'no_lang_code', 1, 'https://ror.org/04nk31t13 Community Options (United States)'), (33974, 'https://ror.org/04nk9a874', 'no_lang_code', 1, 'https://ror.org/04nk9a874 Scandinavian Leadership (Sweden)'), (33975, 'https://ror.org/04nkjmp39', 'no_lang_code', 1, 'https://ror.org/04nkjmp39 AeroDNA (United Kingdom)'), (33976, 'https://ror.org/04nmx3106', 'no_lang_code', 1, 'https://ror.org/04nmx3106 AngloGold Ashanti (South Africa)'), (33977, 'https://ror.org/04nne1357', 'en', 1, 'https://ror.org/04nne1357 Henan Provincial Health Bureau'), (33978, 'https://ror.org/04nnrzq56', 'en', 1, 'https://ror.org/04nnrzq56 Sextures Institute'), (33979, 'https://ror.org/04nqft813', 'no_lang_code', 1, 'https://ror.org/04nqft813 Ahrens (Sweden)'), (33980, 'https://ror.org/04nr5bm84', 'en', 1, 'https://ror.org/04nr5bm84 Social Security Information Service'), (33981, 'https://ror.org/04nrmrg07', 'en', 1, 'https://ror.org/04nrmrg07 Korea Meteorological Administration'), (33982, 'https://ror.org/04nsrjg86', 'et', 1, 'https://ror.org/04nsrjg86 Under and Tuglas Literature Centre Underi ja Tuglase Kirjanduskeskus'), (33983, 'https://ror.org/04ntqmb28', 'no_lang_code', 1, 'https://ror.org/04ntqmb28 Applied Visions (United States)'), (33984, 'https://ror.org/04p0je704', 'en', 1, 'https://ror.org/04p0je704 Korean Cancer Association'), (33985, 'https://ror.org/04p0nk708', 'en', 1, 'https://ror.org/04p0nk708 Regional Hospital West Jutland'), (33986, 'https://ror.org/04p1set31', 'no_lang_code', 1, 'https://ror.org/04p1set31 Platinum Equity (United States)'), (33987, 'https://ror.org/04p61m296', 'no_lang_code', 1, 'https://ror.org/04p61m296 Minacs (Canada)'), (33988, 'https://ror.org/04p7acy55', 'no_lang_code', 1, 'https://ror.org/04p7acy55 LNK (United States)'), (33989, 'https://ror.org/04pdgtw09', 'no_lang_code', 1, 'https://ror.org/04pdgtw09 Celadon Laboratories (United States)'), (33990, 'https://ror.org/04pge2a40', 'en', 1, 'https://ror.org/04pge2a40 Second Affiliated Hospital of Nanjing Medical University'), (33991, 'https://ror.org/04pgzvj03', 'en', 1, 'https://ror.org/04pgzvj03 Association des constructeurs de routes et grands travaux du Québec Québec Road Builders and Heavy Construction Association'), (33992, 'https://ror.org/04pk3vt21', 'no_lang_code', 1, 'https://ror.org/04pk3vt21 Nexant (United States)'), (33993, 'https://ror.org/04pkb2v55', 'en', 1, 'https://ror.org/04pkb2v55 Esmée Fairbairn Foundation'), (33994, 'https://ror.org/04pke7819', 'en', 1, 'https://ror.org/04pke7819 National Centre for Vocational Education Research'), (33995, 'https://ror.org/04pm25196', 'no_lang_code', 1, 'https://ror.org/04pm25196 Datachassi (Sweden)'), (33996, 'https://ror.org/04pmctd13', 'en', 1, 'https://ror.org/04pmctd13 Haliburton Forest & Wild Life Reserve'), (33997, 'https://ror.org/04pmnt922', 'no_lang_code', 1, 'https://ror.org/04pmnt922 Apollo Instruments (United States)'), (33998, 'https://ror.org/04pnhdn93', 'fr', 1, 'https://ror.org/04pnhdn93 ONG Karkara'), (33999, 'https://ror.org/04pp5y813', 'no_lang_code', 1, 'https://ror.org/04pp5y813 Selee Corporation (United States)'), (34000, 'https://ror.org/04ppfc921', 'no_lang_code', 1, 'https://ror.org/04ppfc921 Earthmaster Environmental Strategies (Canada)'), (34001, 'https://ror.org/04ps3wn70', 'no_lang_code', 1, 'https://ror.org/04ps3wn70 Op -Tim (Slovakia)'), (34002, 'https://ror.org/04ptmx344', 'en', 1, 'https://ror.org/04ptmx344 Arkansas Biosciences Institute'), (34003, 'https://ror.org/04ptp8872', 'en', 1, 'https://ror.org/04ptp8872 London Centre for Nanotechnology'), (34004, 'https://ror.org/04pw0tr28', 'nl', 1, 'https://ror.org/04pw0tr28 Refaja Ziekenhuis'), (34005, 'https://ror.org/04pyyzw22', 'en', 1, 'https://ror.org/04pyyzw22 Western Pennsylvania School for Blind Children'), (34006, 'https://ror.org/04q2v3586', 'en', 1, 'https://ror.org/04q2v3586 Devereux'), (34007, 'https://ror.org/04q5n7269', 'en', 1, 'https://ror.org/04q5n7269 Carolina Institute for NanoMedicine'), (34008, 'https://ror.org/04q61p086', 'no_lang_code', 1, 'https://ror.org/04q61p086 Emcore (United States)'), (34009, 'https://ror.org/04q644746', 'en', 1, 'https://ror.org/04q644746 Giovanni Armenise-Harvard Foundation'), (34010, 'https://ror.org/04q6d4d25', 'en', 1, 'https://ror.org/04q6d4d25 Istituto Svedese di studi classici a Roma Swedish Institute in Rome'), (34011, 'https://ror.org/04q6fz931', 'en', 1, 'https://ror.org/04q6fz931 Zoological Park Organization'), (34012, 'https://ror.org/04q745m62', 'no_lang_code', 1, 'https://ror.org/04q745m62 Radiance Technologies (United States)'), (34013, 'https://ror.org/04q7mb252', 'no_lang_code', 1, 'https://ror.org/04q7mb252 Samarkand2015 (Sweden)'), (34014, 'https://ror.org/04q7s3d74', 'no_lang_code', 1, 'https://ror.org/04q7s3d74 Softronics (United States)'), (34015, 'https://ror.org/04q7y8a54', 'en', 1, 'https://ror.org/04q7y8a54 Conway School of Landscape Design'), (34016, 'https://ror.org/04q8pt676', 'no_lang_code', 1, 'https://ror.org/04q8pt676 Tecrea (United Kingdom)'), (34017, 'https://ror.org/04q9kfc05', 'en', 1, 'https://ror.org/04q9kfc05 Nanjing Chest Hospital'), (34018, 'https://ror.org/04qamdm65', 'en', 1, 'https://ror.org/04qamdm65 International Cinematographers Guild'), (34019, 'https://ror.org/04qdvmd91', 'en', 1, 'https://ror.org/04qdvmd91 IASO General Hospital'), (34020, 'https://ror.org/04qfph657', 'en', 1, 'https://ror.org/04qfph657 Korea Institute of Industrial Technology 한국생산기술연구원'), (34021, 'https://ror.org/04qjz4x37', 'en', 1, 'https://ror.org/04qjz4x37 Redcar and Cleveland Borough Council'), (34022, 'https://ror.org/04qk3p464', 'no_lang_code', 1, 'https://ror.org/04qk3p464 PVOH Polymers (United Kingdom)'), (34023, 'https://ror.org/04qrrwn88', 'hu', 1, 'https://ror.org/04qrrwn88 Piarista Rend Magyar Tartománya'), (34024, 'https://ror.org/04qsy0p12', 'no_lang_code', 1, 'https://ror.org/04qsy0p12 Centeye (United States)'), (34025, 'https://ror.org/04qvsw345', 'no_lang_code', 1, 'https://ror.org/04qvsw345 Spectrum Photonics (United States)'), (34026, 'https://ror.org/04qysqs39', 'en', 1, 'https://ror.org/04qysqs39 Georgia Department of Labor'), (34027, 'https://ror.org/04r2pjg84', 'sk', 1, 'https://ror.org/04r2pjg84 Forests of the Slovak Republic Lesy Slovenskej Republiky'), (34028, 'https://ror.org/04r345w95', 'no_lang_code', 1, 'https://ror.org/04r345w95 GelTech Solutions (United States)'), (34029, 'https://ror.org/04r34kg48', 'no_lang_code', 1, 'https://ror.org/04r34kg48 Energie NB Power (Canada) Énergie NB'), (34030, 'https://ror.org/04r3dvv20', 'no_lang_code', 1, 'https://ror.org/04r3dvv20 Selden Mast (Sweden)'), (34031, 'https://ror.org/04r4qwn25', 'no_lang_code', 1, 'https://ror.org/04r4qwn25 Proxim (United States)'), (34032, 'https://ror.org/04r5mx435', 'no_lang_code', 1, 'https://ror.org/04r5mx435 Airex (United States)'), (34033, 'https://ror.org/04r5s4b52', 'en', 1, 'https://ror.org/04r5s4b52 Center for Scientific Review'), (34034, 'https://ror.org/04r5y2a19', 'no_lang_code', 1, 'https://ror.org/04r5y2a19 Reynard Corporation (United States)'), (34035, 'https://ror.org/04r7gz902', 'no_lang_code', 1, 'https://ror.org/04r7gz902 Metrodat (Slovakia)'), (34036, 'https://ror.org/04r7x1v43', 'no_lang_code', 1, 'https://ror.org/04r7x1v43 MAT-Obaly (Slovakia)'), (34037, 'https://ror.org/04r8f0505', 'no_lang_code', 1, 'https://ror.org/04r8f0505 Oculus Innovative Sciences (United States)'), (34038, 'https://ror.org/04r8fwm85', 'en', 1, 'https://ror.org/04r8fwm85 Evangelical Lutheran Church'), (34039, 'https://ror.org/04r8wdj07', 'en', 1, 'https://ror.org/04r8wdj07 Kansas Public Schools'), (34040, 'https://ror.org/04r9x9n80', 'no_lang_code', 1, 'https://ror.org/04r9x9n80 Shanxi Zhendong Pharmaceutical (China) 山西振东制药股份有限公司'), (34041, 'https://ror.org/04ra7gd43', 'no_lang_code', 1, 'https://ror.org/04ra7gd43 3TEX (United States)'), (34042, 'https://ror.org/04rad3358', 'no_lang_code', 1, 'https://ror.org/04rad3358 Prefa Alfa (Slovakia)'), (34043, 'https://ror.org/04rc4nw15', 'no_lang_code', 1, 'https://ror.org/04rc4nw15 Enseco Energy Services (Canada)'), (34044, 'https://ror.org/04rc5xe97', 'no_lang_code', 1, 'https://ror.org/04rc5xe97 Agpyme (Spain)'), (34045, 'https://ror.org/04rcsw002', 'no_lang_code', 1, 'https://ror.org/04rcsw002 Lumina (Sweden)'), (34046, 'https://ror.org/04re59v49', 'no_lang_code', 1, 'https://ror.org/04re59v49 St. Martin de Porres Hospital'), (34047, 'https://ror.org/04rekk491', 'en', 1, 'https://ror.org/04rekk491 Bavarian State Collection of Zoology Zoologische Staatssammlung München'), (34048, 'https://ror.org/04rekpn43', 'no_lang_code', 1, 'https://ror.org/04rekpn43 Q-Peak (United States)'), (34049, 'https://ror.org/04rfd1d05', 'no_lang_code', 1, 'https://ror.org/04rfd1d05 Space Photonics (United States)'), (34050, 'https://ror.org/04rhtf097', 'en', 1, 'https://ror.org/04rhtf097 Nanjing Second Hospital'), (34051, 'https://ror.org/04rjn7856', 'no_lang_code', 1, 'https://ror.org/04rjn7856 Clipper Windpower (United States)'), (34052, 'https://ror.org/04rk0sp93', 'en', 1, 'https://ror.org/04rk0sp93 Institute of Management Accountants'), (34053, 'https://ror.org/04rn1rm44', 'en', 1, 'https://ror.org/04rn1rm44 Education Department of Heilongjiang Province'), (34054, 'https://ror.org/04rnkb958', 'en', 1, 'https://ror.org/04rnkb958 Hillside Rehabilitation Hospital'), (34055, 'https://ror.org/04rpteb42', 'no_lang_code', 1, 'https://ror.org/04rpteb42 Pranalytica (United States)'), (34056, 'https://ror.org/04rr8j290', 'no_lang_code', 1, 'https://ror.org/04rr8j290 Construction DJL (Canada)'), (34057, 'https://ror.org/04rtm4g41', 'no_lang_code', 1, 'https://ror.org/04rtm4g41 PV3 Technologies (United Kingdom)'), (34058, 'https://ror.org/04rvgdt43', 'no_lang_code', 1, 'https://ror.org/04rvgdt43 NquiringMinds (United Kingdom)'), (34059, 'https://ror.org/04rwrjk88', 'no_lang_code', 1, 'https://ror.org/04rwrjk88 Bioptech (Sweden)'), (34060, 'https://ror.org/04rx5dj17', 'es', 1, 'https://ror.org/04rx5dj17 Contactica'), (34061, 'https://ror.org/04rx5jd37', 'no_lang_code', 1, 'https://ror.org/04rx5jd37 Dignitas Technologies (United States)'), (34062, 'https://ror.org/04rxtvg30', 'no_lang_code', 1, 'https://ror.org/04rxtvg30 Carbon Solutions (United States)'), (34063, 'https://ror.org/04rxwag77', 'no_lang_code', 1, 'https://ror.org/04rxwag77 Setek Elektronik (Sweden)'), (34064, 'https://ror.org/04ryr8437', 'en', 1, 'https://ror.org/04ryr8437 Udens College'), (34065, 'https://ror.org/04rz3gb85', 'no_lang_code', 1, 'https://ror.org/04rz3gb85 Dragonfly Pictures (United States)'), (34066, 'https://ror.org/04s1kwh20', 'no_lang_code', 1, 'https://ror.org/04s1kwh20 Xidex (United States)'), (34067, 'https://ror.org/04s1sff11', 'no_lang_code', 1, 'https://ror.org/04s1sff11 Scientific Simulations (United States)'), (34068, 'https://ror.org/04s1tmp27', 'no_lang_code', 1, 'https://ror.org/04s1tmp27 CogniTech (United States)'), (34069, 'https://ror.org/04s346m05', 'en', 1, 'https://ror.org/04s346m05 Commission on Higher Education'), (34070, 'https://ror.org/04s4s0979', 'en', 1, 'https://ror.org/04s4s0979 NIHR Leicester Respiratory Biomedical Research Unit'), (34071, 'https://ror.org/04s705w68', 'no_lang_code', 1, 'https://ror.org/04s705w68 Nscrypt (United States)'), (34072, 'https://ror.org/04sa7fj09', 'hu', 1, 'https://ror.org/04sa7fj09 Teleki László Alapítvány'), (34073, 'https://ror.org/04sbdgk59', 'no_lang_code', 1, 'https://ror.org/04sbdgk59 Medicyte (Germany)'), (34074, 'https://ror.org/04sdd2113', 'en', 1, 'https://ror.org/04sdd2113 Old Church Slavonic Institute'), (34075, 'https://ror.org/04sdnwd65', 'en', 1, 'https://ror.org/04sdnwd65 Hesston College'), (34076, 'https://ror.org/04sdthy66', 'no_lang_code', 1, 'https://ror.org/04sdthy66 Cascade Engineering (United States)'), (34077, 'https://ror.org/04shrgb80', 'en', 1, 'https://ror.org/04shrgb80 Allen College'), (34078, 'https://ror.org/04sk2fc62', 'no_lang_code', 1, 'https://ror.org/04sk2fc62 Materials Research & Design (United States)'), (34079, 'https://ror.org/04skcvp73', 'en', 1, 'https://ror.org/04skcvp73 European Research Institute of Catalysis'), (34080, 'https://ror.org/04spw8212', 'en', 1, 'https://ror.org/04spw8212 New Delhi Tuberculosis Center'), (34081, 'https://ror.org/04sr9vb86', 'en', 1, 'https://ror.org/04sr9vb86 Pacific Northwest College of Art'), (34082, 'https://ror.org/04ssevy49', 'en', 1, 'https://ror.org/04ssevy49 Addenbrooke''s Charitable Trust'), (34083, 'https://ror.org/04ssfcp90', 'no_lang_code', 1, 'https://ror.org/04ssfcp90 Spectra Research (United States)'), (34084, 'https://ror.org/04ssj3y56', 'no_lang_code', 1, 'https://ror.org/04ssj3y56 LSP Technologies (United States)'), (34085, 'https://ror.org/04ssneh08', 'no_lang_code', 1, 'https://ror.org/04ssneh08 Parrheim Foods (Canada)'), (34086, 'https://ror.org/04sv7km52', 'en', 1, 'https://ror.org/04sv7km52 Tanzania Wildlife Research Institute'), (34087, 'https://ror.org/04sy3cj85', 'en', 1, 'https://ror.org/04sy3cj85 Slovak National Museum'), (34088, 'https://ror.org/04szzqs55', 'sk', 1, 'https://ror.org/04szzqs55 Fakultná nemocnica s poliklinikou Žilina'), (34089, 'https://ror.org/04t269f15', 'en', 1, 'https://ror.org/04t269f15 National Endowment for the Arts'), (34090, 'https://ror.org/04t2cp653', 'no_lang_code', 1, 'https://ror.org/04t2cp653 Spacescape (Sweden)'), (34091, 'https://ror.org/04t2ktq36', 'no_lang_code', 1, 'https://ror.org/04t2ktq36 Genvac Aerospace (United States)'), (34092, 'https://ror.org/04t48sm91', 'en', 1, 'https://ror.org/04t48sm91 Bundesamt für Umwelt Federal Office for the Environment'), (34093, 'https://ror.org/04t838f48', 'en', 1, 'https://ror.org/04t838f48 Central Norway Regional Health Authority'), (34094, 'https://ror.org/04t871j63', 'no_lang_code', 1, 'https://ror.org/04t871j63 Eacom Timber Corporation (Canada)'), (34095, 'https://ror.org/04tbxet45', 'no_lang_code', 1, 'https://ror.org/04tbxet45 Jacobs (Canada)'), (34096, 'https://ror.org/04tcsyg17', 'no_lang_code', 1, 'https://ror.org/04tcsyg17 Spencer Industries (United States)'), (34097, 'https://ror.org/04tdm7z37', 'no_lang_code', 1, 'https://ror.org/04tdm7z37 Fluorochem (United States)'), (34098, 'https://ror.org/04tebqy16', 'no_lang_code', 1, 'https://ror.org/04tebqy16 Air Fuel Synthesis (United Kingdom)'), (34099, 'https://ror.org/04tf4mr55', 'nl', 1, 'https://ror.org/04tf4mr55 SNS Reaal'), (34100, 'https://ror.org/04tgjxk96', 'no_lang_code', 1, 'https://ror.org/04tgjxk96 Research Network (United States)'), (34101, 'https://ror.org/04tnbqb63', 'en', 1, 'https://ror.org/04tnbqb63 The Francis Crick Institute'), (34102, 'https://ror.org/04tqkwm17', 'no_lang_code', 1, 'https://ror.org/04tqkwm17 APIS (Slovakia)'), (34103, 'https://ror.org/04ttpa220', 'no_lang_code', 1, 'https://ror.org/04ttpa220 Abreos Biosciences (United States)'), (34104, 'https://ror.org/04tvsxd59', 'sv', 1, 'https://ror.org/04tvsxd59 Almega'), (34105, 'https://ror.org/04tw2wg46', 'en', 1, 'https://ror.org/04tw2wg46 Wood Industry Cluster'), (34106, 'https://ror.org/04txrym18', 'no_lang_code', 1, 'https://ror.org/04txrym18 Vector Test Systems (United States)'), (34107, 'https://ror.org/04tz9fd40', 'en', 1, 'https://ror.org/04tz9fd40 International Institute for Asian Studies'), (34108, 'https://ror.org/04v0pva46', 'no_lang_code', 1, 'https://ror.org/04v0pva46 Dalton Pharma Services (Canada)'), (34109, 'https://ror.org/04v3xs363', 'en', 1, 'https://ror.org/04v3xs363 Alberta Chicken Producers (Canada)'), (34110, 'https://ror.org/04v4hfj66', 'no_lang_code', 1, 'https://ror.org/04v4hfj66 Image Intelligence (Sweden)'), (34111, 'https://ror.org/04v77td31', 'no_lang_code', 1, 'https://ror.org/04v77td31 AdTech Systems Research (United States)'), (34112, 'https://ror.org/04v83ky93', 'en', 1, 'https://ror.org/04v83ky93 National Foundation for Cancer Research'), (34113, 'https://ror.org/04v9rq331', 'no_lang_code', 1, 'https://ror.org/04v9rq331 Procesná Automatizácia (Slovakia)'), (34114, 'https://ror.org/04v9v0986', 'en', 1, 'https://ror.org/04v9v0986 CFA Institute'), (34115, 'https://ror.org/04vba8s95', 'no_lang_code', 1, 'https://ror.org/04vba8s95 International BEZ Group (Slovakia)'), (34116, 'https://ror.org/04vbqh983', 'no_lang_code', 1, 'https://ror.org/04vbqh983 Physitron (United States)'), (34117, 'https://ror.org/04vc8w180', 'no_lang_code', 1, 'https://ror.org/04vc8w180 New Editions Consulting (United States)'), (34118, 'https://ror.org/04vfnc742', 'no_lang_code', 1, 'https://ror.org/04vfnc742 Founders Alliance (Sweden)'), (34119, 'https://ror.org/04vgqqp29', 'en', 1, 'https://ror.org/04vgqqp29 Gendarmerie royale du Canada Royal Canadian Mounted Police'), (34120, 'https://ror.org/04vj0np78', 'no_lang_code', 1, 'https://ror.org/04vj0np78 GlobVision (Canada)'), (34121, 'https://ror.org/04vn3x119', 'no_lang_code', 1, 'https://ror.org/04vn3x119 RAM Laboratories (United States)'), (34122, 'https://ror.org/04vnmgz72', 'no_lang_code', 1, 'https://ror.org/04vnmgz72 Anholt Technologies (United States)'), (34123, 'https://ror.org/04vnw0c78', 'no_lang_code', 1, 'https://ror.org/04vnw0c78 Lewis Innovative Technologies (United States)'), (34124, 'https://ror.org/04vnww336', 'en', 1, 'https://ror.org/04vnww336 College of Metaphysical Studies'), (34125, 'https://ror.org/04vpw9y87', 'no_lang_code', 1, 'https://ror.org/04vpw9y87 PCL Construction (Canada)'), (34126, 'https://ror.org/04vrv9h08', 'en', 1, 'https://ror.org/04vrv9h08 Diabetes Action Research and Education Foundation'), (34127, 'https://ror.org/04vxrmy57', 'no_lang_code', 1, 'https://ror.org/04vxrmy57 Kushing (Slovakia)'), (34128, 'https://ror.org/04vyqcg16', 'no_lang_code', 1, 'https://ror.org/04vyqcg16 Somfy (Canada)'), (34129, 'https://ror.org/04w0bwe53', 'no_lang_code', 1, 'https://ror.org/04w0bwe53 AIL Research (United States)'), (34130, 'https://ror.org/04w1bc909', 'no_lang_code', 1, 'https://ror.org/04w1bc909 MOHR Test and Measurement (United States)'), (34131, 'https://ror.org/04w25gn33', 'no_lang_code', 1, 'https://ror.org/04w25gn33 Lambert Peat Moss (Canada)'), (34132, 'https://ror.org/04w6kn183', 'fr', 1, 'https://ror.org/04w6kn183 Fondation pour la Recherche Médicale'), (34133, 'https://ror.org/04w6mxh75', 'en', 1, 'https://ror.org/04w6mxh75 Bronx Community College'), (34134, 'https://ror.org/04w6n1v49', 'en', 1, 'https://ror.org/04w6n1v49 National Urban League'), (34135, 'https://ror.org/04w7knf95', 'no_lang_code', 1, 'https://ror.org/04w7knf95 Mechanical Design (Slovakia)'), (34136, 'https://ror.org/04wae4s50', 'no_lang_code', 1, 'https://ror.org/04wae4s50 Lambda Science (United States)'), (34137, 'https://ror.org/04wazj198', 'en', 1, 'https://ror.org/04wazj198 Steel Structures Education Foundation'), (34138, 'https://ror.org/04wcab306', 'no_lang_code', 1, 'https://ror.org/04wcab306 Photidify (Sweden)'), (34139, 'https://ror.org/04wd0my56', 'no_lang_code', 1, 'https://ror.org/04wd0my56 Ardoran (Estonia)'), (34140, 'https://ror.org/04wehfb27', 'no_lang_code', 1, 'https://ror.org/04wehfb27 Vectraxx (United States)'), (34141, 'https://ror.org/04wehyc39', 'en', 1, 'https://ror.org/04wehyc39 International Council of Shopping Centers'), (34142, 'https://ror.org/04wf6rg14', 'no_lang_code', 1, 'https://ror.org/04wf6rg14 MACOM (United States)'), (34143, 'https://ror.org/04wgdyk95', 'no_lang_code', 1, 'https://ror.org/04wgdyk95 Biopeak Corporation (Canada)'), (34144, 'https://ror.org/04wgeqw93', 'no_lang_code', 1, 'https://ror.org/04wgeqw93 Winterkvist.com (Sweden)'), (34145, 'https://ror.org/04wgp8f82', 'en', 1, 'https://ror.org/04wgp8f82 South Texas College of Law'), (34146, 'https://ror.org/04whx4k53', 'en', 1, 'https://ror.org/04whx4k53 Global Initiative on Psychiatry'), (34147, 'https://ror.org/04wk8me05', 'no_lang_code', 1, 'https://ror.org/04wk8me05 Global InfoTek (United States)'), (34148, 'https://ror.org/04wpn1218', 'de', 1, 'https://ror.org/04wpn1218 Kantonsspital Graubünden'), (34149, 'https://ror.org/04wqpp325', 'no_lang_code', 1, 'https://ror.org/04wqpp325 Betamont (Slovakia)'), (34150, 'https://ror.org/04wrhjz25', 'en', 1, 'https://ror.org/04wrhjz25 Society for Reproduction and Fertility'), (34151, 'https://ror.org/04wrx4c64', 'no_lang_code', 1, 'https://ror.org/04wrx4c64 Wildcat Discovery Technologies (United States)'), (34152, 'https://ror.org/04wtq2305', 'en', 1, 'https://ror.org/04wtq2305 China Geological Survey 中国地质调查局水文地质环境地质调查中心'), (34153, 'https://ror.org/04ww0w091', 'no_lang_code', 1, 'https://ror.org/04ww0w091 Microsoft (India)'), (34154, 'https://ror.org/04wwvn851', 'no_lang_code', 1, 'https://ror.org/04wwvn851 Princeton Scientific (United States)'), (34155, 'https://ror.org/04wx1rb43', 'en', 1, 'https://ror.org/04wx1rb43 Winona County Historical Society'), (34156, 'https://ror.org/04wxx2b44', 'no_lang_code', 1, 'https://ror.org/04wxx2b44 Maibec (Canada)'), (34157, 'https://ror.org/04wyg6495', 'en', 1, 'https://ror.org/04wyg6495 Australian Centre for International Agricultural Research'), (34158, 'https://ror.org/04x0cn975', 'no_lang_code', 1, 'https://ror.org/04x0cn975 Axxence (Slovakia)'), (34159, 'https://ror.org/04x0tcn90', 'en', 1, 'https://ror.org/04x0tcn90 Hudson River Foundation'), (34160, 'https://ror.org/04x12sm71', 'en', 1, 'https://ror.org/04x12sm71 Century University'), (34161, 'https://ror.org/04x1arp29', 'en', 1, 'https://ror.org/04x1arp29 Brain Hospital of Jilin'), (34162, 'https://ror.org/04x3cxs03', 'en', 1, 'https://ror.org/04x3cxs03 National Medical Research Council'), (34163, 'https://ror.org/04x4c2m45', 'no_lang_code', 1, 'https://ror.org/04x4c2m45 Springmatter (United States)'), (34164, 'https://ror.org/04x5rgv88', 'en', 1, 'https://ror.org/04x5rgv88 Canadian Honey Council'), (34165, 'https://ror.org/04x6taa57', 'no_lang_code', 1, 'https://ror.org/04x6taa57 CBL (Germany)'), (34166, 'https://ror.org/04xbqmj23', 'en', 1, 'https://ror.org/04xbqmj23 Indian National Centre for Ocean Information Services'), (34167, 'https://ror.org/04xe6vy97', 'no_lang_code', 1, 'https://ror.org/04xe6vy97 Evidente (Sweden)'), (34168, 'https://ror.org/04xem0k66', 'no_lang_code', 1, 'https://ror.org/04xem0k66 Vignet (United States)'), (34169, 'https://ror.org/04xf33703', 'no_lang_code', 1, 'https://ror.org/04xf33703 Nalco (Canada)'), (34170, 'https://ror.org/04xh4sy96', 'no_lang_code', 1, 'https://ror.org/04xh4sy96 Södra Skogsägarna (Sweden)'), (34171, 'https://ror.org/04xjzws62', 'no_lang_code', 1, 'https://ror.org/04xjzws62 Electronics Development Corporation (United States)'), (34172, 'https://ror.org/04xk7h867', 'no_lang_code', 1, 'https://ror.org/04xk7h867 AeroSoft (United States)'), (34173, 'https://ror.org/04xmt0833', 'en', 1, 'https://ror.org/04xmt0833 Ministry of Environment 대한민국 환경부'), (34174, 'https://ror.org/04xp41626', 'no_lang_code', 1, 'https://ror.org/04xp41626 PrivaTran (United States)'), (34175, 'https://ror.org/04xrr3c79', 'en', 1, 'https://ror.org/04xrr3c79 Environmental Protection Department of Jiangsu Province'), (34176, 'https://ror.org/04xrsmr92', 'en', 1, 'https://ror.org/04xrsmr92 Applied Natural Sciences'), (34177, 'https://ror.org/04xt42358', 'en', 1, 'https://ror.org/04xt42358 Tennessee Department of Human Services'), (34178, 'https://ror.org/04xt5aa77', 'en', 1, 'https://ror.org/04xt5aa77 Ministry of Land, Infrastructure and Transport 대한민국 국토교통부'), (34179, 'https://ror.org/04xwjyh18', 'en', 1, 'https://ror.org/04xwjyh18 SKIP of New York'), (34180, 'https://ror.org/04xx2fj27', 'no_lang_code', 1, 'https://ror.org/04xx2fj27 Chip Design Systems (United States)'), (34181, 'https://ror.org/04xy18872', 'en', 1, 'https://ror.org/04xy18872 Royal College of Psychiatrists'), (34182, 'https://ror.org/04xy3z086', 'en', 1, 'https://ror.org/04xy3z086 Dermatology Foundation'), (34183, 'https://ror.org/04xya2p21', 'no_lang_code', 1, 'https://ror.org/04xya2p21 ATS Automation Tooling Systems (United States)'), (34184, 'https://ror.org/04y0mk629', 'no_lang_code', 1, 'https://ror.org/04y0mk629 Blackwing (Sweden)'), (34185, 'https://ror.org/04y300229', 'no_lang_code', 1, 'https://ror.org/04y300229 MicroStep-MIS (Slovakia)'), (34186, 'https://ror.org/04y3y3z32', 'no_lang_code', 1, 'https://ror.org/04y3y3z32 ScandiDos (Sweden)'), (34187, 'https://ror.org/04y4tfw76', 'no_lang_code', 1, 'https://ror.org/04y4tfw76 Advanced Communication Systems (United States)'), (34188, 'https://ror.org/04y7nvm17', 'no_lang_code', 1, 'https://ror.org/04y7nvm17 Innovative Defense Technologies (United States)'), (34189, 'https://ror.org/04y9h8038', 'no_lang_code', 1, 'https://ror.org/04y9h8038 Seamless Solutions (United States)'), (34190, 'https://ror.org/04y9pdp40', 'no_lang_code', 1, 'https://ror.org/04y9pdp40 General Compression (United States)'), (34191, 'https://ror.org/04ya3w052', 'no_lang_code', 1, 'https://ror.org/04ya3w052 TriTech Software Systems (United States)'), (34192, 'https://ror.org/04ybhpd24', 'no_lang_code', 1, 'https://ror.org/04ybhpd24 Enbio (United States)'), (34193, 'https://ror.org/04yehrw46', 'no_lang_code', 1, 'https://ror.org/04yehrw46 Adaptive Dynamics (United States)'), (34194, 'https://ror.org/04yhapk09', 'en', 1, 'https://ror.org/04yhapk09 University of Palestine جامعة فلسطين'), (34195, 'https://ror.org/04ykewa84', 'no_lang_code', 1, 'https://ror.org/04ykewa84 Acosense (Sweden)'), (34196, 'https://ror.org/04ymvv874', 'no_lang_code', 1, 'https://ror.org/04ymvv874 Maritime Applied Physics Corporation (United States)'), (34197, 'https://ror.org/04yncke10', 'no_lang_code', 1, 'https://ror.org/04yncke10 Gooch & Housego (United States)'), (34198, 'https://ror.org/04yqw4y82', 'no_lang_code', 1, 'https://ror.org/04yqw4y82 MS Technology (United States)'), (34199, 'https://ror.org/04yr2wm37', 'no_lang_code', 1, 'https://ror.org/04yr2wm37 Logrotex (Spain)'), (34200, 'https://ror.org/04yrdyp94', 'no_lang_code', 1, 'https://ror.org/04yrdyp94 Quantic EMC (Canada)'), (34201, 'https://ror.org/04yrgb625', 'no_lang_code', 1, 'https://ror.org/04yrgb625 Vanguard Space Technologies (United States)'), (34202, 'https://ror.org/04ys2fq69', 'no_lang_code', 1, 'https://ror.org/04ys2fq69 Aegis Technology (United States)'), (34203, 'https://ror.org/04ysbng93', 'en', 1, 'https://ror.org/04ysbng93 RAF Models & Displays'), (34204, 'https://ror.org/04ysmca02', 'en', 1, 'https://ror.org/04ysmca02 Irvine University'), (34205, 'https://ror.org/04yswnp37', 'no_lang_code', 1, 'https://ror.org/04yswnp37 Systima Technologies (United States)'), (34206, 'https://ror.org/04ytsjz62', 'no_lang_code', 1, 'https://ror.org/04ytsjz62 C & P Technologies (United States)'), (34207, 'https://ror.org/04yvpz902', 'no_lang_code', 1, 'https://ror.org/04yvpz902 Vertec Biosolvents (United States)'), (34208, 'https://ror.org/04yvxfz47', 'no_lang_code', 1, 'https://ror.org/04yvxfz47 American Axle & Manufacturing (Sweden)'), (34209, 'https://ror.org/04yw8y022', 'no_lang_code', 1, 'https://ror.org/04yw8y022 Hunan New Wellful (China)'), (34210, 'https://ror.org/04yxh1b11', 'en', 1, 'https://ror.org/04yxh1b11 Fundy Tidal'), (34211, 'https://ror.org/04yxhmf18', 'en', 1, 'https://ror.org/04yxhmf18 Poets House'), (34212, 'https://ror.org/04yxrg865', 'no_lang_code', 1, 'https://ror.org/04yxrg865 Nap Kiadó (Hungary) Sun Publishing'), (34213, 'https://ror.org/04yxssd91', 'no_lang_code', 1, 'https://ror.org/04yxssd91 Advanced Photonix (United States)'), (34214, 'https://ror.org/04yz0ht31', 'no_lang_code', 1, 'https://ror.org/04yz0ht31 SpaceTime Communication (Sweden)'), (34215, 'https://ror.org/04yznky14', 'no_lang_code', 1, 'https://ror.org/04yznky14 Intech (Slovakia)'), (34216, 'https://ror.org/04yzv9k35', 'no_lang_code', 1, 'https://ror.org/04yzv9k35 Archinoetics (United States)'), (34217, 'https://ror.org/04yzz6k63', 'no_lang_code', 1, 'https://ror.org/04yzz6k63 Damilic (United States)'), (34218, 'https://ror.org/04z13ha89', 'no_lang_code', 1, 'https://ror.org/04z13ha89 Jinhua Central Hospital 金华市中心医院'), (34219, 'https://ror.org/04z3aby64', 'en', 1, 'https://ror.org/04z3aby64 First Affiliated Hospital of Hebei Medical University'), (34220, 'https://ror.org/04z3wz653', 'en', 1, 'https://ror.org/04z3wz653 Netherlands Institute for Advanced Study in the Humanities and Social Sciences'), (34221, 'https://ror.org/04z5km850', 'no_lang_code', 1, 'https://ror.org/04z5km850 Bascom Hunter (United States)'), (34222, 'https://ror.org/04z6hjp93', 'en', 1, 'https://ror.org/04z6hjp93 Chinese Culture Center of San Francisco'), (34223, 'https://ror.org/04za2jd50', 'no_lang_code', 1, 'https://ror.org/04za2jd50 Mabarex (Canada)'), (34224, 'https://ror.org/04ze64w44', 'en', 1, 'https://ror.org/04ze64w44 Changzhou Third People''s Hospital'), (34225, 'https://ror.org/04zfzxr62', 'no_lang_code', 1, 'https://ror.org/04zfzxr62 RHAMM Technologies (United States)'), (34226, 'https://ror.org/04zgyz643', 'no_lang_code', 1, 'https://ror.org/04zgyz643 Uppdragshuset (Sweden)'), (34227, 'https://ror.org/04zhd1705', 'it', 1, 'https://ror.org/04zhd1705 Policlinico Casilino'), (34228, 'https://ror.org/04zkm8r02', 'en', 1, 'https://ror.org/04zkm8r02 Brewing and Malting Barley Research Institute'), (34229, 'https://ror.org/04zmvq270', 'no_lang_code', 1, 'https://ror.org/04zmvq270 Wizdom Systems (United States)'), (34230, 'https://ror.org/04zq3xb25', 'en', 1, 'https://ror.org/04zq3xb25 Illinois Environmental Protection Agency'), (34231, 'https://ror.org/04zsgrk35', 'en', 1, 'https://ror.org/04zsgrk35 Luther Seminary'), (34232, 'https://ror.org/04zt3wx35', 'en', 1, 'https://ror.org/04zt3wx35 Canada Mortgage and Housing Corporation Societe canadienne d''hypotheque et du logement'), (34233, 'https://ror.org/04zt7fp74', 'no_lang_code', 1, 'https://ror.org/04zt7fp74 Streamline Automation (United States)'), (34234, 'https://ror.org/04ztfpt34', 'no_lang_code', 1, 'https://ror.org/04ztfpt34 Boreal Laser (Canada)'), (34235, 'https://ror.org/04zvkqw17', 'no_lang_code', 1, 'https://ror.org/04zvkqw17 Signal Systems Corporation (United States)'), (34236, 'https://ror.org/04zz3cg37', 'no_lang_code', 1, 'https://ror.org/04zz3cg37 Monterey Technologies (United States)'), (34237, 'https://ror.org/05005pp50', 'no_lang_code', 1, 'https://ror.org/05005pp50 Division By Zero (Sweden)'), (34238, 'https://ror.org/05014nn74', 'no_lang_code', 1, 'https://ror.org/05014nn74 CreateAbility Concepts (United States)'), (34239, 'https://ror.org/05021m385', 'no_lang_code', 1, 'https://ror.org/05021m385 Arclay (Canada) Arclay Technologies Naturelles'), (34240, 'https://ror.org/0502j4525', 'no_lang_code', 1, 'https://ror.org/0502j4525 SkuTek Instrumentation (United States)'), (34241, 'https://ror.org/0503xdx77', 'pt', 1, 'https://ror.org/0503xdx77 Fundação de Amparo à Pesquisa e Inovação do Estado de Santa Catarina'), (34242, 'https://ror.org/0506t0t42', 'fr', 1, 'https://ror.org/0506t0t42 Doctors Without Borders Médecins Sans Frontières'), (34243, 'https://ror.org/05072yv34', 'sv', 1, 'https://ror.org/05072yv34 Barncancerfonden Swedish Childhood Cancer Foundation'), (34244, 'https://ror.org/050azj708', 'no_lang_code', 1, 'https://ror.org/050azj708 GenUs BioSystems (United States)'), (34245, 'https://ror.org/050cc9q33', 'no_lang_code', 1, 'https://ror.org/050cc9q33 Virtual Simulation and Training (United States)'), (34246, 'https://ror.org/050cwt049', 'no_lang_code', 1, 'https://ror.org/050cwt049 TeraXion (Canada)'), (34247, 'https://ror.org/050d4yq46', 'fr', 1, 'https://ror.org/050d4yq46 Desjardins, Mouvement des caisses Desjardins'), (34248, 'https://ror.org/050dp5763', 'en', 1, 'https://ror.org/050dp5763 Professional Staff Congress'), (34249, 'https://ror.org/050dxn033', 'no_lang_code', 1, 'https://ror.org/050dxn033 Street Smart Equipment (Sweden)'), (34250, 'https://ror.org/050enm509', 'no_lang_code', 1, 'https://ror.org/050enm509 Watersprint (Sweden)'), (34251, 'https://ror.org/050fxb616', 'no_lang_code', 1, 'https://ror.org/050fxb616 Solidia Technologies (United States)'), (34252, 'https://ror.org/050hn9p12', 'no_lang_code', 1, 'https://ror.org/050hn9p12 Menon International (United States)'), (34253, 'https://ror.org/050hvq478', 'en', 1, 'https://ror.org/050hvq478 Budapest Institute'), (34254, 'https://ror.org/050jqn596', 'en', 1, 'https://ror.org/050jqn596 South Bohemia research center of aquaculture and biodiversity of hydrocenoses'), (34255, 'https://ror.org/050kwa993', 'en', 1, 'https://ror.org/050kwa993 British Society of Animal Science'), (34256, 'https://ror.org/050pyja33', 'no_lang_code', 1, 'https://ror.org/050pyja33 Phoenix Canada Oil Company (Canada)'), (34257, 'https://ror.org/050qmck25', 'no_lang_code', 1, 'https://ror.org/050qmck25 TE SubCom (United States)'), (34258, 'https://ror.org/050rgn017', 'en', 1, 'https://ror.org/050rgn017 Diabetes UK'), (34259, 'https://ror.org/050tm0329', 'en', 1, 'https://ror.org/050tm0329 Colorado Department of Education'), (34260, 'https://ror.org/050tq6t62', 'en', 1, 'https://ror.org/050tq6t62 International Solar Energy Research Center Konstanz'), (34261, 'https://ror.org/050vtbc65', 'no_lang_code', 1, 'https://ror.org/050vtbc65 Vestigia'), (34262, 'https://ror.org/050w3c487', 'no_lang_code', 1, 'https://ror.org/050w3c487 RedBite (United Kingdom)'), (34263, 'https://ror.org/050whk651', 'no_lang_code', 1, 'https://ror.org/050whk651 Nlogic (United States)'), (34264, 'https://ror.org/050yj7e58', 'en', 1, 'https://ror.org/050yj7e58 Cement Association of Canada'), (34265, 'https://ror.org/050yq5k07', 'no_lang_code', 1, 'https://ror.org/050yq5k07 Aerobotix (United States)'), (34266, 'https://ror.org/050yqvv05', 'es', 1, 'https://ror.org/050yqvv05 Fondo Nacional de Ciencia Tecnología e Innovación'), (34267, 'https://ror.org/05100e415', 'en', 1, 'https://ror.org/05100e415 Venture Cup'), (34268, 'https://ror.org/051177492', 'no_lang_code', 1, 'https://ror.org/051177492 BP (Canada)'), (34269, 'https://ror.org/0511ejf03', 'no_lang_code', 1, 'https://ror.org/0511ejf03 OMS Lighting (Slovakia)'), (34270, 'https://ror.org/05130dm31', 'en', 1, 'https://ror.org/05130dm31 Bonnie Walker and Associates'), (34271, 'https://ror.org/0514w0t77', 'en', 1, 'https://ror.org/0514w0t77 Yixing Tumor Hospital'), (34272, 'https://ror.org/0515k5w36', 'en', 1, 'https://ror.org/0515k5w36 Rita Allen Foundation'), (34273, 'https://ror.org/05191c058', 'en', 1, 'https://ror.org/05191c058 Japan Society'), (34274, 'https://ror.org/05198nw13', 'no_lang_code', 1, 'https://ror.org/05198nw13 Immunovia (Sweden)'), (34275, 'https://ror.org/0519hrc61', 'sv', 1, 'https://ror.org/0519hrc61 Tekniska Högskolans Studentkår'), (34276, 'https://ror.org/051affp12', 'no_lang_code', 1, 'https://ror.org/051affp12 K2 Energy Solutions (United States)'), (34277, 'https://ror.org/051b2q112', 'no_lang_code', 1, 'https://ror.org/051b2q112 ITT (United States)'), (34278, 'https://ror.org/051c4bd82', 'en', 1, 'https://ror.org/051c4bd82 First Bethune Hospital of Jilin University 吉林大学第一医院科研教学楼'), (34279, 'https://ror.org/051d4q284', 'no_lang_code', 1, 'https://ror.org/051d4q284 UtopiaCompression (United States)'), (34280, 'https://ror.org/051d8c692', 'no_lang_code', 1, 'https://ror.org/051d8c692 Single Technologies (Sweden)'), (34281, 'https://ror.org/051e8wd44', 'no_lang_code', 1, 'https://ror.org/051e8wd44 Digital Solid State Propulsion (United States)'), (34282, 'https://ror.org/051eek848', 'no_lang_code', 1, 'https://ror.org/051eek848 Paradigm Productions (United States)'), (34283, 'https://ror.org/051fk5x88', 'no_lang_code', 1, 'https://ror.org/051fk5x88 Heptares Therapeutics (United Kingdom)'), (34284, 'https://ror.org/051g4aa15', 'no_lang_code', 1, 'https://ror.org/051g4aa15 Arcticus Systems (Sweden)'), (34285, 'https://ror.org/051m8tg66', 'en', 1, 'https://ror.org/051m8tg66 Centre de Traduction des Organes de l''Union Européenne Translation Centre for the Bodies of the European Union Übersetzungszentrum für die Einrichtungen der Europäischen Union'), (34286, 'https://ror.org/051mn7g75', 'en', 1, 'https://ror.org/051mn7g75 Peepoople'), (34287, 'https://ror.org/051n06p20', 'no_lang_code', 1, 'https://ror.org/051n06p20 Esprit (Slovakia)'), (34288, 'https://ror.org/051n9kx09', 'en', 1, 'https://ror.org/051n9kx09 National Emergency Management Agency'), (34289, 'https://ror.org/051nezy81', 'no_lang_code', 1, 'https://ror.org/051nezy81 Geneton (Slovakia)'), (34290, 'https://ror.org/051pand48', 'no_lang_code', 1, 'https://ror.org/051pand48 RINI Technologies (United States)'), (34291, 'https://ror.org/051pks088', 'no_lang_code', 1, 'https://ror.org/051pks088 Alelo (United States)'), (34292, 'https://ror.org/051qp9k68', 'no_lang_code', 1, 'https://ror.org/051qp9k68 Texila American University'), (34293, 'https://ror.org/051rke185', 'no_lang_code', 1, 'https://ror.org/051rke185 Eagle Harbor Technologies (United States)'), (34294, 'https://ror.org/051s8tq24', 'en', 1, 'https://ror.org/051s8tq24 Canadian Mining Industry Research Organization'), (34295, 'https://ror.org/051sz9w49', 'no_lang_code', 1, 'https://ror.org/051sz9w49 G-trend (Slovakia)'), (34296, 'https://ror.org/051w9pj35', 'en', 1, 'https://ror.org/051w9pj35 Integrated Behavioral Technologies'), (34297, 'https://ror.org/051wxy155', 'no_lang_code', 1, 'https://ror.org/051wxy155 SAFCell (United States)'), (34298, 'https://ror.org/051xfvw62', 'no_lang_code', 1, 'https://ror.org/051xfvw62 Futures in Rehabilitation Management (United States)'); INSERT INTO `rors` VALUES (34299, 'https://ror.org/051z3gy60', 'no_lang_code', 1, 'https://ror.org/051z3gy60 SySense (United States)'), (34300, 'https://ror.org/0521thx35', 'no_lang_code', 1, 'https://ror.org/0521thx35 HLS Research (United States)'), (34301, 'https://ror.org/05225qa62', 'no_lang_code', 1, 'https://ror.org/05225qa62 Ascatron (Sweden)'), (34302, 'https://ror.org/052261q33', 'en', 1, 'https://ror.org/052261q33 Swedish Heart-Lung Foundation'), (34303, 'https://ror.org/0523w5y95', 'no_lang_code', 1, 'https://ror.org/0523w5y95 Industrial Measurement Systems (United States)'), (34304, 'https://ror.org/05249qj80', 'en', 1, 'https://ror.org/05249qj80 Positive Behavioral Solutions'), (34305, 'https://ror.org/0524pqp96', 'en', 1, 'https://ror.org/0524pqp96 Sexual Health Clinic'), (34306, 'https://ror.org/05257z229', 'en', 1, 'https://ror.org/05257z229 Human Growth Foundation'), (34307, 'https://ror.org/0526rb807', 'no_lang_code', 1, 'https://ror.org/0526rb807 Government Cost Accounting System (United States)'), (34308, 'https://ror.org/0526snb40', 'en', 1, 'https://ror.org/0526snb40 Royal Academy of Engineering'), (34309, 'https://ror.org/052cd4384', 'no_lang_code', 1, 'https://ror.org/052cd4384 JDLL (United States)'), (34310, 'https://ror.org/052cqpt62', 'en', 1, 'https://ror.org/052cqpt62 Australian Society for Parasitology'), (34311, 'https://ror.org/052csg198', 'en', 1, 'https://ror.org/052csg198 Alfred P. Sloan Foundation'), (34312, 'https://ror.org/052f1qm24', 'no_lang_code', 1, 'https://ror.org/052f1qm24 Mw-innovation (Sweden)'), (34313, 'https://ror.org/052fns920', 'no_lang_code', 1, 'https://ror.org/052fns920 Victor Technologies (United States)'), (34314, 'https://ror.org/052h4sm36', 'no_lang_code', 1, 'https://ror.org/052h4sm36 Abel Manufacturing Company (United States)'), (34315, 'https://ror.org/052hy8d96', 'no_lang_code', 1, 'https://ror.org/052hy8d96 Microphase Coatings (United States)'), (34316, 'https://ror.org/052kdcb58', 'en', 1, 'https://ror.org/052kdcb58 Institute for Nuclear Research Інститут ядерних досліджень'), (34317, 'https://ror.org/052q16111', 'no_lang_code', 1, 'https://ror.org/052q16111 Mathtech (United States)'), (34318, 'https://ror.org/052q3cn21', 'en', 1, 'https://ror.org/052q3cn21 National Institute of Malariology, Parasitology and Entomology'), (34319, 'https://ror.org/052syjz96', 'no_lang_code', 1, 'https://ror.org/052syjz96 Environmental Remediation Consultants (United States)'), (34320, 'https://ror.org/052tkjg37', 'no_lang_code', 1, 'https://ror.org/052tkjg37 Systems & Materials Research Corporation (United States)'), (34321, 'https://ror.org/052vnbj45', 'no_lang_code', 1, 'https://ror.org/052vnbj45 Apache (Canada)'), (34322, 'https://ror.org/052xa3526', 'sv', 1, 'https://ror.org/052xa3526 FoU Södertörn'), (34323, 'https://ror.org/0530w0388', 'no_lang_code', 1, 'https://ror.org/0530w0388 Object Research Systems (Canada)'), (34324, 'https://ror.org/0532ef257', 'no_lang_code', 1, 'https://ror.org/0532ef257 Cargill (Canada)'), (34325, 'https://ror.org/0533a4v91', 'no_lang_code', 1, 'https://ror.org/0533a4v91 Ambalux (United States)'), (34326, 'https://ror.org/0533jxz69', 'no_lang_code', 1, 'https://ror.org/0533jxz69 Saab (United States)'), (34327, 'https://ror.org/05357zt36', 'en', 1, 'https://ror.org/05357zt36 Ministry of Justice'), (34328, 'https://ror.org/05370mv03', 'en', 1, 'https://ror.org/05370mv03 Woods Hole Sea Grant'), (34329, 'https://ror.org/0537cvg39', 'no_lang_code', 1, 'https://ror.org/0537cvg39 Magna International (Canada)'), (34330, 'https://ror.org/0537h0h72', 'en', 1, 'https://ror.org/0537h0h72 Housing and Development Board 组屋'), (34331, 'https://ror.org/0538jkx44', 'no_lang_code', 1, 'https://ror.org/0538jkx44 Diversified Energy (United States)'), (34332, 'https://ror.org/05391qc94', 'en', 1, 'https://ror.org/05391qc94 National Coal Mining Museum for England'), (34333, 'https://ror.org/05396f476', 'no_lang_code', 1, 'https://ror.org/05396f476 BioDetection Systems (Netherlands)'), (34334, 'https://ror.org/053cbsa02', 'en', 1, 'https://ror.org/053cbsa02 Cleveland Institute of Music'), (34335, 'https://ror.org/053gdty29', 'en', 1, 'https://ror.org/053gdty29 Creative Thermal Solutions'), (34336, 'https://ror.org/053hp2m86', 'no_lang_code', 1, 'https://ror.org/053hp2m86 SICOM Systems (United States)'), (34337, 'https://ror.org/053j10c72', 'es', 1, 'https://ror.org/053j10c72 Instituto Murciano de Investigación Biosanitaria'), (34338, 'https://ror.org/053j2sg20', 'no_lang_code', 1, 'https://ror.org/053j2sg20 Sentar (United States)'), (34339, 'https://ror.org/053jbrv80', 'en', 1, 'https://ror.org/053jbrv80 Manitoba Forage Seed Association'), (34340, 'https://ror.org/053met561', 'no_lang_code', 1, 'https://ror.org/053met561 RetCorr (Sweden)'), (34341, 'https://ror.org/053pbaz76', 'no_lang_code', 1, 'https://ror.org/053pbaz76 RPC Bebo (United Kingdom)'), (34342, 'https://ror.org/053qcv951', 'en', 1, 'https://ror.org/053qcv951 European Association of Distance Teaching Universities'), (34343, 'https://ror.org/053staa05', 'en', 1, 'https://ror.org/053staa05 Anti Filariasis Campaign'), (34344, 'https://ror.org/053v2gh09', 'en', 1, 'https://ror.org/053v2gh09 Second Xiangya Hospital of Central South University'), (34345, 'https://ror.org/053y5js51', 'no_lang_code', 1, 'https://ror.org/053y5js51 Real-Time Innovations (United States)'), (34346, 'https://ror.org/0540t6b85', 'no_lang_code', 1, 'https://ror.org/0540t6b85 Metaara Medical Technologies (Canada)'), (34347, 'https://ror.org/054271w14', 'no_lang_code', 1, 'https://ror.org/054271w14 Computational Sensors (United States)'), (34348, 'https://ror.org/05438sd72', 'no_lang_code', 1, 'https://ror.org/05438sd72 Table Mountain Optics (United States)'), (34349, 'https://ror.org/0543jq429', 'no_lang_code', 1, 'https://ror.org/0543jq429 Kalscott Engineering (United States)'), (34350, 'https://ror.org/054586n40', 'en', 1, 'https://ror.org/054586n40 Göcseji Museum'), (34351, 'https://ror.org/0546qf840', 'no_lang_code', 1, 'https://ror.org/0546qf840 MAYA Design (United States)'), (34352, 'https://ror.org/0548bd853', 'no_lang_code', 1, 'https://ror.org/0548bd853 Roli (United Kingdom)'), (34353, 'https://ror.org/0549cht89', 'en', 1, 'https://ror.org/0549cht89 Algaeventure Systems'), (34354, 'https://ror.org/054a0at43', 'en', 1, 'https://ror.org/054a0at43 Michigan Department of Licensing and Regulatory Affairs'), (34355, 'https://ror.org/054bzew20', 'no_lang_code', 1, 'https://ror.org/054bzew20 Cellular Dynamics International (United States)'), (34356, 'https://ror.org/054dq0621', 'no_lang_code', 1, 'https://ror.org/054dq0621 China National Offshore Oil Corporation (China) 中海石油研究中心'), (34357, 'https://ror.org/054fk6316', 'no_lang_code', 1, 'https://ror.org/054fk6316 Tau Technologies (United States)'), (34358, 'https://ror.org/054h84g22', 'en', 1, 'https://ror.org/054h84g22 Canadian Council of Professional Fish Harvesters'), (34359, 'https://ror.org/054kjk513', 'no_lang_code', 1, 'https://ror.org/054kjk513 IRnova (Sweden)'), (34360, 'https://ror.org/054kvr030', 'en', 1, 'https://ror.org/054kvr030 University System of Taiwan'), (34361, 'https://ror.org/054njw727', 'no_lang_code', 1, 'https://ror.org/054njw727 Ergolab (Sweden)'), (34362, 'https://ror.org/054srn740', 'no_lang_code', 1, 'https://ror.org/054srn740 EPIR Technologies (United States)'), (34363, 'https://ror.org/054t0wk73', 'en', 1, 'https://ror.org/054t0wk73 Hilbert College'), (34364, 'https://ror.org/054tbbe35', 'en', 1, 'https://ror.org/054tbbe35 International Council on Mining and Metals'), (34365, 'https://ror.org/054y9c036', 'it', 1, 'https://ror.org/054y9c036 Telescopio Nazionale Galileo'), (34366, 'https://ror.org/054ym8s18', 'no_lang_code', 1, 'https://ror.org/054ym8s18 SågCenter (Sweden)'), (34367, 'https://ror.org/05503d050', 'en', 1, 'https://ror.org/05503d050 Ministry of the Interior of the Republic of Latvia'), (34368, 'https://ror.org/05506vc27', 'no_lang_code', 1, 'https://ror.org/05506vc27 Ultrazvuk (Slovakia)'), (34369, 'https://ror.org/0553q3w79', 'en', 1, 'https://ror.org/0553q3w79 National Society for the Prevention of Cruelty to Children'), (34370, 'https://ror.org/0558bzs02', 'no_lang_code', 1, 'https://ror.org/0558bzs02 Iron Ore Company (Canada)'), (34371, 'https://ror.org/055909c12', 'no_lang_code', 1, 'https://ror.org/055909c12 Avirtek (United States)'), (34372, 'https://ror.org/0559w8070', 'no_lang_code', 1, 'https://ror.org/0559w8070 Immune Therapy Holdings (Sweden)'), (34373, 'https://ror.org/055aaqn82', 'fr', 1, 'https://ror.org/055aaqn82 Centre d''expertise et de recherche en infrastructures urbaines'), (34374, 'https://ror.org/055arfx13', 'no_lang_code', 1, 'https://ror.org/055arfx13 Electronic Arts (Canada)'), (34375, 'https://ror.org/055d8gs64', 'en', 1, 'https://ror.org/055d8gs64 Dutch Techcentre for Life Sciences'), (34376, 'https://ror.org/055e0bc90', 'en', 1, 'https://ror.org/055e0bc90 JEVS Human Services'), (34377, 'https://ror.org/055gka453', 'en', 1, 'https://ror.org/055gka453 State Administration of Foreign Experts Affairs'), (34378, 'https://ror.org/055j5f215', 'en', 1, 'https://ror.org/055j5f215 Earthgen'), (34379, 'https://ror.org/055kcmv29', 'no_lang_code', 1, 'https://ror.org/055kcmv29 Anautics (United States)'), (34380, 'https://ror.org/055kw3s45', 'no_lang_code', 1, 'https://ror.org/055kw3s45 APIC (United States)'), (34381, 'https://ror.org/055mrxn09', 'no_lang_code', 1, 'https://ror.org/055mrxn09 Early Warning (United States)'), (34382, 'https://ror.org/055n66f64', 'no_lang_code', 1, 'https://ror.org/055n66f64 Dancing Dots (United States)'), (34383, 'https://ror.org/055pabd63', 'no_lang_code', 1, 'https://ror.org/055pabd63 IERUS Technologies (United States)'), (34384, 'https://ror.org/055pf8065', 'en', 1, 'https://ror.org/055pf8065 ERA-NET Plant Genomics'), (34385, 'https://ror.org/055pgv213', 'de', 1, 'https://ror.org/055pgv213 Halbleiterlabor der Max-Planck-Gesellschaft, Halbleiterlabor of the Max-Planck-Society'), (34386, 'https://ror.org/055r3qb62', 'no_lang_code', 1, 'https://ror.org/055r3qb62 IN Space (United States)'), (34387, 'https://ror.org/055w1jz52', 'no_lang_code', 1, 'https://ror.org/055w1jz52 Sosei Group Corporation (United Kingdom)'), (34388, 'https://ror.org/055w74b96', 'en', 1, 'https://ror.org/055w74b96 First Affiliated Hospital of Dalian Medical University 大连医科大学附属第一医院'), (34389, 'https://ror.org/056154p75', 'no_lang_code', 1, 'https://ror.org/056154p75 Gestamp (Sweden)'), (34390, 'https://ror.org/0561xc723', 'en', 1, 'https://ror.org/0561xc723 Swedish Foundation for International Cooperation in Research and Higher Education'), (34391, 'https://ror.org/0562vg232', 'en', 1, 'https://ror.org/0562vg232 Ernest C. Manning Awards Foundation La Fondation des Prix Ernest C. Manning'), (34392, 'https://ror.org/056544713', 'en', 1, 'https://ror.org/056544713 National Graduate School of Quality Management'), (34393, 'https://ror.org/05658r667', 'no_lang_code', 1, 'https://ror.org/05658r667 Total Quality Systems (United States)'), (34394, 'https://ror.org/0565gth98', 'fr', 1, 'https://ror.org/0565gth98 Ouranos'), (34395, 'https://ror.org/0566crb40', 'en', 1, 'https://ror.org/0566crb40 French-Swedish Research Association'), (34396, 'https://ror.org/0566y6534', 'no_lang_code', 1, 'https://ror.org/0566y6534 Sotera Defense Solutions (United States)'), (34397, 'https://ror.org/0567f1w19', 'en', 1, 'https://ror.org/0567f1w19 Nederlands Instituut voor Onderzoek in de Katalyse Netherlands Institute for Catalysis Research'), (34398, 'https://ror.org/0567fxj77', 'no_lang_code', 1, 'https://ror.org/0567fxj77 Hog Administrative Marketing Services (Canada)'), (34399, 'https://ror.org/0567jp802', 'no_lang_code', 1, 'https://ror.org/0567jp802 Mutewatch (Sweden)'), (34400, 'https://ror.org/0569jas47', 'en', 1, 'https://ror.org/0569jas47 Laguna Department of Education'), (34401, 'https://ror.org/0569vjj73', 'en', 1, 'https://ror.org/0569vjj73 Australian Wine Research Institute'), (34402, 'https://ror.org/056a3nr23', 'en', 1, 'https://ror.org/056a3nr23 Advertising Educational Foundation'), (34403, 'https://ror.org/056c5ze41', 'no_lang_code', 1, 'https://ror.org/056c5ze41 M. Alexander Nugent Consulting (United States)'), (34404, 'https://ror.org/056hf9h18', 'en', 1, 'https://ror.org/056hf9h18 New York State Department of Agriculture and Markets'), (34405, 'https://ror.org/056nspe91', 'en', 1, 'https://ror.org/056nspe91 Federation of the Food and Drink Industries of the Czech Republic'), (34406, 'https://ror.org/056pabz88', 'en', 1, 'https://ror.org/056pabz88 Nathan Cummings Foundation'), (34407, 'https://ror.org/056q60969', 'en', 1, 'https://ror.org/056q60969 Cattle Industry Development Council'), (34408, 'https://ror.org/056r4cj44', 'en', 1, 'https://ror.org/056r4cj44 Charity Storm'), (34409, 'https://ror.org/056r88m65', 'pt', 1, 'https://ror.org/056r88m65 Fundação Hospitalar do Estado de Minas Gerais'), (34410, 'https://ror.org/056rhtj86', 'sv', 1, 'https://ror.org/056rhtj86 Hälsans Nya Verktyg'), (34411, 'https://ror.org/056s1k160', 'no_lang_code', 1, 'https://ror.org/056s1k160 Analysis and Measurement Services (United States)'), (34412, 'https://ror.org/056xwsc46', 'no_lang_code', 1, 'https://ror.org/056xwsc46 American Water (Canada)'), (34413, 'https://ror.org/056y81r79', 'en', 1, 'https://ror.org/056y81r79 Higher Education Funding Council for Wales'), (34414, 'https://ror.org/056z8k029', 'no_lang_code', 1, 'https://ror.org/056z8k029 SST Wireless (Canada)'), (34415, 'https://ror.org/0570n2773', 'en', 1, 'https://ror.org/0570n2773 Institute for Tourism'), (34416, 'https://ror.org/0572j2882', 'no_lang_code', 1, 'https://ror.org/0572j2882 Schlumberger (Canada)'), (34417, 'https://ror.org/0573tzb24', 'no_lang_code', 1, 'https://ror.org/0573tzb24 Hunter Defense Technologies (United States)'), (34418, 'https://ror.org/0574nqa10', 'no_lang_code', 1, 'https://ror.org/0574nqa10 WINTEC (United States)'), (34419, 'https://ror.org/0575ww420', 'no_lang_code', 1, 'https://ror.org/0575ww420 Cyan Systems (United States)'), (34420, 'https://ror.org/0576bcx21', 'no_lang_code', 1, 'https://ror.org/0576bcx21 ANP Technologies (United States)'), (34421, 'https://ror.org/0576dtf44', 'no_lang_code', 1, 'https://ror.org/0576dtf44 Molecular Discovery (United Kingdom)'), (34422, 'https://ror.org/0577j0g35', 'en', 1, 'https://ror.org/0577j0g35 Human Resource Development Group'), (34423, 'https://ror.org/057b2ek35', 'en', 1, 'https://ror.org/057b2ek35 Intensive Care National Audit & Research Centre'), (34424, 'https://ror.org/057cz4c58', 'fr', 1, 'https://ror.org/057cz4c58 Centre de Développement du Porc du Québec'), (34425, 'https://ror.org/057e7ah68', 'no_lang_code', 1, 'https://ror.org/057e7ah68 Badrilla (United Kingdom)'), (34426, 'https://ror.org/057eesj13', 'no_lang_code', 1, 'https://ror.org/057eesj13 Shermag (Canada)'), (34427, 'https://ror.org/057kca452', 'no_lang_code', 1, 'https://ror.org/057kca452 SenSic (Sweden)'), (34428, 'https://ror.org/057m37z25', 'en', 1, 'https://ror.org/057m37z25 Maine School of Science and Mathematics'), (34429, 'https://ror.org/057mh7566', 'en', 1, 'https://ror.org/057mh7566 MiraCosta College'), (34430, 'https://ror.org/057qbe640', 'en', 1, 'https://ror.org/057qbe640 Southern Regional Assembly'), (34431, 'https://ror.org/057rnbw54', 'en', 1, 'https://ror.org/057rnbw54 Ivy Foundation'), (34432, 'https://ror.org/057s3rs39', 'no_lang_code', 1, 'https://ror.org/057s3rs39 Mabtech (Sweden)'), (34433, 'https://ror.org/057s7cs58', 'no_lang_code', 1, 'https://ror.org/057s7cs58 Primateria (Sweden)'), (34434, 'https://ror.org/057t8sx48', 'en', 1, 'https://ror.org/057t8sx48 Pacific Northwest Foundation'), (34435, 'https://ror.org/057tmpb95', 'no_lang_code', 1, 'https://ror.org/057tmpb95 International Association of Virtual Organizations (United States)'), (34436, 'https://ror.org/057w9fs93', 'it', 1, 'https://ror.org/057w9fs93 Istituto di Genomica Applicata'), (34437, 'https://ror.org/057w9g751', 'no_lang_code', 1, 'https://ror.org/057w9g751 Tialinx (United States)'), (34438, 'https://ror.org/057wkj006', 'en', 1, 'https://ror.org/057wkj006 Center for Excellence in Basic Sciences मौलिक विज्ञान प्रकर्ष केंद्र'), (34439, 'https://ror.org/057xcq908', 'no_lang_code', 1, 'https://ror.org/057xcq908 Inerventions (Sweden)'), (34440, 'https://ror.org/05808qp03', 'en', 1, 'https://ror.org/05808qp03 Jiangxi Academy of Forestry 江西省林业科学院'), (34441, 'https://ror.org/0583kge49', 'no_lang_code', 1, 'https://ror.org/0583kge49 Mosaic ATM (United States)'), (34442, 'https://ror.org/05848kk30', 'no_lang_code', 1, 'https://ror.org/05848kk30 Cascades (Canada)'), (34443, 'https://ror.org/0584kkb18', 'en', 1, 'https://ror.org/0584kkb18 Gerda Henkel Foundation Gerda Henkel Stiftung'), (34444, 'https://ror.org/0585vsm16', 'en', 1, 'https://ror.org/0585vsm16 Earthwatch Institute'), (34445, 'https://ror.org/0586v7c76', 'no_lang_code', 1, 'https://ror.org/0586v7c76 Thermal Systems Technology (Sweden)'), (34446, 'https://ror.org/0587gk311', 'no_lang_code', 1, 'https://ror.org/0587gk311 Flexenclosure (Sweden)'), (34447, 'https://ror.org/0587xtk95', 'no_lang_code', 1, 'https://ror.org/0587xtk95 Kalite Sistem Group (Turkey)'), (34448, 'https://ror.org/058a12170', 'en', 1, 'https://ror.org/058a12170 Royal Swedish Academy of Engineering Sciences'), (34449, 'https://ror.org/058a2pj71', 'it', 1, 'https://ror.org/058a2pj71 Fondazione Toscana Gabriele Monasterio'), (34450, 'https://ror.org/058agte50', 'no_lang_code', 1, 'https://ror.org/058agte50 Blücher (Germany)'), (34451, 'https://ror.org/058b4nw61', 'sv', 1, 'https://ror.org/058b4nw61 Teknopol'), (34452, 'https://ror.org/058bgdt55', 'no_lang_code', 1, 'https://ror.org/058bgdt55 Cotton (United States)'), (34453, 'https://ror.org/058bh7p93', 'de', 1, 'https://ror.org/058bh7p93 Pflanzensoziologische Institut'), (34454, 'https://ror.org/058c0xb46', 'en', 1, 'https://ror.org/058c0xb46 Crohn''s and Colitis UK'), (34455, 'https://ror.org/058c5yh92', 'no_lang_code', 1, 'https://ror.org/058c5yh92 Shanghai Fenghe Information Technology (China)'), (34456, 'https://ror.org/058ewaq25', 'no_lang_code', 1, 'https://ror.org/058ewaq25 IntraMicron (United States)'), (34457, 'https://ror.org/058hg4545', 'no_lang_code', 1, 'https://ror.org/058hg4545 Simris Alg (Sweden)'), (34458, 'https://ror.org/058jhz755', 'no_lang_code', 1, 'https://ror.org/058jhz755 Rotordynamics-Seal Research (United States)'), (34459, 'https://ror.org/058k59m52', 'en', 1, 'https://ror.org/058k59m52 Queen Medical'), (34460, 'https://ror.org/058nd7377', 'nl', 1, 'https://ror.org/058nd7377 Museum Boerhaave'), (34461, 'https://ror.org/058nry849', 'en', 1, 'https://ror.org/058nry849 Geological Survey of Israel'), (34462, 'https://ror.org/058pbt095', 'no_lang_code', 1, 'https://ror.org/058pbt095 Avalon Rare Metals (Canada)'), (34463, 'https://ror.org/058pyyv44', 'en', 1, 'https://ror.org/058pyyv44 National Astronomical Observatories 中国科学院国家天文台'), (34464, 'https://ror.org/058qtek75', 'en', 1, 'https://ror.org/058qtek75 Flinn Foundation'), (34465, 'https://ror.org/058qtt435', 'en', 1, 'https://ror.org/058qtt435 United Nations Population Fund'), (34466, 'https://ror.org/058smmw67', 'en', 1, 'https://ror.org/058smmw67 Ian Potter Foundation'), (34467, 'https://ror.org/058tbj885', 'no_lang_code', 1, 'https://ror.org/058tbj885 Vipo (Slovakia)'), (34468, 'https://ror.org/058vwmj73', 'no_lang_code', 1, 'https://ror.org/058vwmj73 MicroAssembly Technologies (United States)'), (34469, 'https://ror.org/058zz0t50', 'en', 1, 'https://ror.org/058zz0t50 Southern California University for Professional Studies'), (34470, 'https://ror.org/0592h9m82', 'en', 1, 'https://ror.org/0592h9m82 Department of Emergency Services and Public Protection'), (34471, 'https://ror.org/0592vaq06', 'en', 1, 'https://ror.org/0592vaq06 Channel 7 Children''s Research Foundation'), (34472, 'https://ror.org/0593qvg67', 'no_lang_code', 1, 'https://ror.org/0593qvg67 Anger Machining (Austria)'), (34473, 'https://ror.org/0593wzx95', 'no_lang_code', 1, 'https://ror.org/0593wzx95 Ballard Power Systems (United States)'), (34474, 'https://ror.org/05943ep32', 'no_lang_code', 1, 'https://ror.org/05943ep32 Anasoft (Slovakia)'), (34475, 'https://ror.org/059617j81', 'en', 1, 'https://ror.org/059617j81 Crown College'), (34476, 'https://ror.org/059b4v909', 'en', 1, 'https://ror.org/059b4v909 Michigan Manufacturing Technology Center'), (34477, 'https://ror.org/059bes354', 'en', 1, 'https://ror.org/059bes354 Minnesota Department of Administration'), (34478, 'https://ror.org/059cy3h71', 'no_lang_code', 1, 'https://ror.org/059cy3h71 Meggitt (United States)'), (34479, 'https://ror.org/059fa3x42', 'en', 1, 'https://ror.org/059fa3x42 Korean Institute of Criminology'), (34480, 'https://ror.org/059gy7s73', 'en', 1, 'https://ror.org/059gy7s73 American Society of Echocardiography'), (34481, 'https://ror.org/059hh8s03', 'en', 1, 'https://ror.org/059hh8s03 Arc of the United States'), (34482, 'https://ror.org/059hk6n77', 'en', 1, 'https://ror.org/059hk6n77 Bombay Natural History Society'), (34483, 'https://ror.org/059hsda18', 'no_lang_code', 1, 'https://ror.org/059hsda18 Apple (United States)'), (34484, 'https://ror.org/059n53q30', 'no_lang_code', 1, 'https://ror.org/059n53q30 Doric Lenses (Canada)'), (34485, 'https://ror.org/059nraq63', 'no_lang_code', 1, 'https://ror.org/059nraq63 Automatic Sync Technologies (United States)'), (34486, 'https://ror.org/059s50x31', 'no_lang_code', 1, 'https://ror.org/059s50x31 Brainglass (Sweden)'), (34487, 'https://ror.org/059tmdq14', 'de', 1, 'https://ror.org/059tmdq14 Institut für den Donauraum und Mitteleuropa'), (34488, 'https://ror.org/059vhx348', 'fr', 1, 'https://ror.org/059vhx348 Centre de Recherche en Santé de Nouna'), (34489, 'https://ror.org/059vrj561', 'no_lang_code', 1, 'https://ror.org/059vrj561 Orbit Logic (United States)'), (34490, 'https://ror.org/059xf0t91', 'no_lang_code', 1, 'https://ror.org/059xf0t91 Dominion Diagnostics (United States)'), (34491, 'https://ror.org/059xj7p12', 'en', 1, 'https://ror.org/059xj7p12 Matheny Hospital'), (34492, 'https://ror.org/059xraf34', 'no_lang_code', 1, 'https://ror.org/059xraf34 Alstom (Canada)'), (34493, 'https://ror.org/059y2we84', 'no_lang_code', 1, 'https://ror.org/059y2we84 BlazeTech (United States)'), (34494, 'https://ror.org/059yjzn93', 'en', 1, 'https://ror.org/059yjzn93 A*STAR Graduate Academy'), (34495, 'https://ror.org/059z1vb17', 'no_lang_code', 1, 'https://ror.org/059z1vb17 Hackett Publishing (United States)'), (34496, 'https://ror.org/05a0zp865', 'no_lang_code', 1, 'https://ror.org/05a0zp865 NanoTechRanch (United States)'), (34497, 'https://ror.org/05a2v3w63', 'no_lang_code', 1, 'https://ror.org/05a2v3w63 Under Armour (United States)'), (34498, 'https://ror.org/05a3mwa69', 'en', 1, 'https://ror.org/05a3mwa69 LaGuardia Community College'), (34499, 'https://ror.org/05a45xc26', 'no_lang_code', 1, 'https://ror.org/05a45xc26 Alberta Pork (Canada)'), (34500, 'https://ror.org/05a45xy69', 'no_lang_code', 1, 'https://ror.org/05a45xy69 Compass Technology Group (United States)'), (34501, 'https://ror.org/05a4edg92', 'no_lang_code', 1, 'https://ror.org/05a4edg92 CathPrint (Sweden)'), (34502, 'https://ror.org/05a4hd624', 'no_lang_code', 1, 'https://ror.org/05a4hd624 Varadero Capital (United States)'), (34503, 'https://ror.org/05a7g7f24', 'en', 1, 'https://ror.org/05a7g7f24 Hebei Provincial Department of Science and Technology'), (34504, 'https://ror.org/05a9qm317', 'no_lang_code', 1, 'https://ror.org/05a9qm317 Cascade Designs (United States)'), (34505, 'https://ror.org/05a9skj35', 'en', 1, 'https://ror.org/05a9skj35 Children''s Hospital of Suzhou University'), (34506, 'https://ror.org/05addyx39', 'no_lang_code', 1, 'https://ror.org/05addyx39 GeneFirst (United Kingdom)'), (34507, 'https://ror.org/05ae2mx22', 'no_lang_code', 1, 'https://ror.org/05ae2mx22 Opsun Technologies (Canada)'), (34508, 'https://ror.org/05agqdk49', 'no_lang_code', 1, 'https://ror.org/05agqdk49 Ciena (Canada)'), (34509, 'https://ror.org/05am3rr09', 'no_lang_code', 1, 'https://ror.org/05am3rr09 H&R Technology (United States)'), (34510, 'https://ror.org/05amww303', 'no_lang_code', 1, 'https://ror.org/05amww303 InterSyn Technologies (United States)'), (34511, 'https://ror.org/05anqp385', 'en', 1, 'https://ror.org/05anqp385 Seeper'), (34512, 'https://ror.org/05apbp152', 'sv', 1, 'https://ror.org/05apbp152 Signhild Engkvists Stiftelse'), (34513, 'https://ror.org/05ar16409', 'no_lang_code', 1, 'https://ror.org/05ar16409 Med Graph (United States)'), (34514, 'https://ror.org/05at2ry89', 'en', 1, 'https://ror.org/05at2ry89 Nichols House Museum'), (34515, 'https://ror.org/05atbz571', 'no_lang_code', 1, 'https://ror.org/05atbz571 Mentor Communication (Sweden)'), (34516, 'https://ror.org/05avmtm72', 'en', 1, 'https://ror.org/05avmtm72 Arnold and Mabel Beckman Foundation'), (34517, 'https://ror.org/05awrjz19', 'no_lang_code', 1, 'https://ror.org/05awrjz19 Monolith Semiconductor (United States)'), (34518, 'https://ror.org/05awxd849', 'no_lang_code', 1, 'https://ror.org/05awxd849 Viaspace (United States)'), (34519, 'https://ror.org/05ax5pz51', 'no_lang_code', 1, 'https://ror.org/05ax5pz51 Wavefront Research (United States)'), (34520, 'https://ror.org/05ay2ee52', 'no_lang_code', 1, 'https://ror.org/05ay2ee52 Sporian Microsystems (United States)'), (34521, 'https://ror.org/05aycsg86', 'en', 1, 'https://ror.org/05aycsg86 Ministry of Aliyah and Immigrant Absorption Ministère de l''Alya et de l''Intégration'), (34522, 'https://ror.org/05az3m671', 'de', 1, 'https://ror.org/05az3m671 Evangelisches Studienwerk Villigst Protestant Academic Foundation'), (34523, 'https://ror.org/05b09zv71', 'no_lang_code', 1, 'https://ror.org/05b09zv71 Lembke Elektromekaniska Verkstad (Sweden)'), (34524, 'https://ror.org/05b0j5x36', 'en', 1, 'https://ror.org/05b0j5x36 Mother and Infant Research Activities'), (34525, 'https://ror.org/05b2t8s27', 'en', 1, 'https://ror.org/05b2t8s27 Bavarian Forest National Park Nationalpark Bayerischer Wald'), (34526, 'https://ror.org/05b497x63', 'no_lang_code', 1, 'https://ror.org/05b497x63 PROTO Manufacturing (United States)'), (34527, 'https://ror.org/05b5j3m40', 'en', 1, 'https://ror.org/05b5j3m40 Academic Ranking and Rating Agency'), (34528, 'https://ror.org/05b6dcx13', 'en', 1, 'https://ror.org/05b6dcx13 Cystic Fibrosis Canada Fibrose kystique Canada'), (34529, 'https://ror.org/05b85tk06', 'no_lang_code', 1, 'https://ror.org/05b85tk06 Microcide (United States)'), (34530, 'https://ror.org/05b8hvw73', 'no_lang_code', 1, 'https://ror.org/05b8hvw73 Borregaard (United Kingdom)'), (34531, 'https://ror.org/05b9w0m88', 'pt', 1, 'https://ror.org/05b9w0m88 Laboratório Interinstitucional de e-Astronomia'), (34532, 'https://ror.org/05bakh610', 'en', 1, 'https://ror.org/05bakh610 Healthway'), (34533, 'https://ror.org/05bem9j20', 'no_lang_code', 1, 'https://ror.org/05bem9j20 Crabion (Italy)'), (34534, 'https://ror.org/05bhj5e29', 'no_lang_code', 1, 'https://ror.org/05bhj5e29 Azmark Aero System (United States)'), (34535, 'https://ror.org/05bhnjv02', 'no_lang_code', 1, 'https://ror.org/05bhnjv02 Twinleaf (United States)'), (34536, 'https://ror.org/05bmnx256', 'no_lang_code', 1, 'https://ror.org/05bmnx256 VUP (Slovakia)'), (34537, 'https://ror.org/05bmt7297', 'no_lang_code', 1, 'https://ror.org/05bmt7297 Consolidated Edison (United States)'), (34538, 'https://ror.org/05bp6d935', 'no_lang_code', 1, 'https://ror.org/05bp6d935 Sealite (United States)'), (34539, 'https://ror.org/05bq4ms81', 'en', 1, 'https://ror.org/05bq4ms81 Britton Fund'), (34540, 'https://ror.org/05bqzfg94', 'no', 1, 'https://ror.org/05bqzfg94 NordForsk'), (34541, 'https://ror.org/05bs32x30', 'no_lang_code', 1, 'https://ror.org/05bs32x30 Silvaco (United Kingdom)'), (34542, 'https://ror.org/05bs6ak67', 'it', 1, 'https://ror.org/05bs6ak67 Ente Ospedaliero Ospedali Galliera'), (34543, 'https://ror.org/05bt80j81', 'no_lang_code', 1, 'https://ror.org/05bt80j81 Tecolote Research (United States)'), (34544, 'https://ror.org/05bthpx67', 'no_lang_code', 1, 'https://ror.org/05bthpx67 Indusec (Sweden)'), (34545, 'https://ror.org/05bwra959', 'no_lang_code', 1, 'https://ror.org/05bwra959 Nian-Crae (United States)'), (34546, 'https://ror.org/05bz3w661', 'en', 1, 'https://ror.org/05bz3w661 Canadian Liver Foundation Fondation Canadienne du Foie'), (34547, 'https://ror.org/05bzq4y23', 'no_lang_code', 1, 'https://ror.org/05bzq4y23 Efficax Energy (Sweden)'), (34548, 'https://ror.org/05c0v3585', 'no_lang_code', 1, 'https://ror.org/05c0v3585 Takeda (United Kingdom)'), (34549, 'https://ror.org/05c11kf69', 'no_lang_code', 1, 'https://ror.org/05c11kf69 Veolia (United States)'), (34550, 'https://ror.org/05c20s821', 'en', 1, 'https://ror.org/05c20s821 Canadian Concrete Masonry Producers Association'), (34551, 'https://ror.org/05c27bs83', 'en', 1, 'https://ror.org/05c27bs83 Singapore Clinical Research Institute'), (34552, 'https://ror.org/05c4phg25', 'no_lang_code', 1, 'https://ror.org/05c4phg25 AS Composite (Canada)'), (34553, 'https://ror.org/05c4twb82', 'no_lang_code', 1, 'https://ror.org/05c4twb82 AMS (Finland)'), (34554, 'https://ror.org/05c6fpb26', 'no_lang_code', 1, 'https://ror.org/05c6fpb26 EnerDel (United States)'), (34555, 'https://ror.org/05c7nfs29', 'en', 1, 'https://ror.org/05c7nfs29 Commission on Rehabilitation Counselor Certification'), (34556, 'https://ror.org/05cbz1141', 'no_lang_code', 1, 'https://ror.org/05cbz1141 Irras (Sweden)'), (34557, 'https://ror.org/05chjan92', 'en', 1, 'https://ror.org/05chjan92 Jinan Military General Hospital 中国人民解放军济南军区总医院'), (34558, 'https://ror.org/05cj5gd51', 'nl', 1, 'https://ror.org/05cj5gd51 Amsterdam Museum'), (34559, 'https://ror.org/05cjg8w59', 'no_lang_code', 1, 'https://ror.org/05cjg8w59 NanoLab (United States)'), (34560, 'https://ror.org/05cjxt577', 'en', 1, 'https://ror.org/05cjxt577 Herzog College'), (34561, 'https://ror.org/05cjzsz62', 'de', 1, 'https://ror.org/05cjzsz62 Institut für Volkskultur und Kulturentwicklung'), (34562, 'https://ror.org/05cn4v910', 'en', 1, 'https://ror.org/05cn4v910 Sheffield Health and Social Care NHS Foundation Trust'), (34563, 'https://ror.org/05cndr128', 'no_lang_code', 1, 'https://ror.org/05cndr128 Research Center for Non Destructive Testing (Austria)'), (34564, 'https://ror.org/05cnf4c39', 'en', 1, 'https://ror.org/05cnf4c39 Changzhi Medical College Peace Hospital'), (34565, 'https://ror.org/05cp34c97', 'en', 1, 'https://ror.org/05cp34c97 ENDependence Center of Northern Virginia'), (34566, 'https://ror.org/05cp7zh43', 'no_lang_code', 1, 'https://ror.org/05cp7zh43 Gamma Dynamics (United States)'), (34567, 'https://ror.org/05cs9vc86', 'no_lang_code', 1, 'https://ror.org/05cs9vc86 Tesoro (United States)'), (34568, 'https://ror.org/05csz3511', 'no_lang_code', 1, 'https://ror.org/05csz3511 SI2 Technologies (United States)'), (34569, 'https://ror.org/05ctyj936', 'en', 1, 'https://ror.org/05ctyj936 Yan''an Hospital Affiliated To Kunming Medical University 昆明市延安医院'), (34570, 'https://ror.org/05cwfaq02', 'no_lang_code', 1, 'https://ror.org/05cwfaq02 Anyar (United States)'), (34571, 'https://ror.org/05cxavv95', 'no_lang_code', 1, 'https://ror.org/05cxavv95 Metacomp Technologies (United States)'), (34572, 'https://ror.org/05cxkpp05', 'en', 1, 'https://ror.org/05cxkpp05 DigiPen Institute of Technology'), (34573, 'https://ror.org/05d1q3s30', 'en', 1, 'https://ror.org/05d1q3s30 IK Foundation'), (34574, 'https://ror.org/05d1yjv69', 'no_lang_code', 1, 'https://ror.org/05d1yjv69 InnoVactiv (Canada)'), (34575, 'https://ror.org/05d23rn59', 'en', 1, 'https://ror.org/05d23rn59 Clear Creek Baptist Bible College'), (34576, 'https://ror.org/05d3gq009', 'no_lang_code', 1, 'https://ror.org/05d3gq009 Alberco Construction (Canada)'), (34577, 'https://ror.org/05d3xzj88', 'hu', 1, 'https://ror.org/05d3xzj88 Jósa András Múzeum'), (34578, 'https://ror.org/05d54dv30', 'no_lang_code', 1, 'https://ror.org/05d54dv30 Viscando Traffic Systems (Sweden)'), (34579, 'https://ror.org/05d5rz672', 'no_lang_code', 1, 'https://ror.org/05d5rz672 Quantum Technologies (Sweden)'), (34580, 'https://ror.org/05d7pyf88', 'no_lang_code', 1, 'https://ror.org/05d7pyf88 Kord Technologies (United States)'), (34581, 'https://ror.org/05d8hvk64', 'en', 1, 'https://ror.org/05d8hvk64 Global Medical Excellence Cluster'), (34582, 'https://ror.org/05d8zhh23', 'no_lang_code', 1, 'https://ror.org/05d8zhh23 Elfarm (Sweden)'), (34583, 'https://ror.org/05dbptw67', 'en', 1, 'https://ror.org/05dbptw67 Landelijke Onderzoekschool Taalwetenschap Netherlands Graduate School of Linguistics'), (34584, 'https://ror.org/05dbx6743', 'en', 1, 'https://ror.org/05dbx6743 Department of Veterans Affairs'), (34585, 'https://ror.org/05deh3d91', 'no_lang_code', 1, 'https://ror.org/05deh3d91 HeidelbergCement (Sweden)'), (34586, 'https://ror.org/05depyc87', 'no_lang_code', 1, 'https://ror.org/05depyc87 L.Garde (United States)'), (34587, 'https://ror.org/05dg7rt55', 'no_lang_code', 1, 'https://ror.org/05dg7rt55 Mazda (United States)'), (34588, 'https://ror.org/05dmw9n70', 'no_lang_code', 1, 'https://ror.org/05dmw9n70 Gold Peak Industries (China)'), (34589, 'https://ror.org/05dp7m259', 'no_lang_code', 1, 'https://ror.org/05dp7m259 Integrated Software (United States)'), (34590, 'https://ror.org/05dpb2x88', 'no_lang_code', 1, 'https://ror.org/05dpb2x88 Tolmar (United States)'), (34591, 'https://ror.org/05dqm7k77', 'en', 1, 'https://ror.org/05dqm7k77 Onderstepoort Veterinary Institute'), (34592, 'https://ror.org/05drfg619', 'en', 1, 'https://ror.org/05drfg619 Central and North West London NHS Foundation Trust'), (34593, 'https://ror.org/05drtms27', 'no_lang_code', 1, 'https://ror.org/05drtms27 Aqwary (Sweden)'), (34594, 'https://ror.org/05ds25z56', 'no_lang_code', 1, 'https://ror.org/05ds25z56 Presagis (United States)'), (34595, 'https://ror.org/05dsmqn98', 'no_lang_code', 1, 'https://ror.org/05dsmqn98 Medtronic (Canada)'), (34596, 'https://ror.org/05dsr2a44', 'en', 1, 'https://ror.org/05dsr2a44 High Blood Pressure Research Council of Australia'), (34597, 'https://ror.org/05dtjn343', 'no_lang_code', 1, 'https://ror.org/05dtjn343 Feldan (Canada)'), (34598, 'https://ror.org/05dtvab05', 'no_lang_code', 1, 'https://ror.org/05dtvab05 Konica Minolta (Japan) コニカミノルタホールディングス'), (34599, 'https://ror.org/05dxas544', 'no_lang_code', 1, 'https://ror.org/05dxas544 Moon Express (United States)'), (34600, 'https://ror.org/05dxk7523', 'no_lang_code', 1, 'https://ror.org/05dxk7523 Fibics (Canada)'), (34601, 'https://ror.org/05e05d728', 'no_lang_code', 1, 'https://ror.org/05e05d728 Support Systems Associates (United States)'), (34602, 'https://ror.org/05e1qed59', 'en', 1, 'https://ror.org/05e1qed59 Leading Health Care'), (34603, 'https://ror.org/05e1zqb39', 'en', 1, 'https://ror.org/05e1zqb39 George Institute for Global Health'), (34604, 'https://ror.org/05e2hap84', 'no_lang_code', 1, 'https://ror.org/05e2hap84 Imperium (United States)'), (34605, 'https://ror.org/05e4d7a97', 'en', 1, 'https://ror.org/05e4d7a97 Queensland Emergency Medicine Research Foundation'), (34606, 'https://ror.org/05e4gqg94', 'en', 1, 'https://ror.org/05e4gqg94 County Administrative Board of Stockholm'), (34607, 'https://ror.org/05e7gcx12', 'no_lang_code', 1, 'https://ror.org/05e7gcx12 Dellcron (Sweden)'), (34608, 'https://ror.org/05e8kbn88', 'en', 1, 'https://ror.org/05e8kbn88 Affiliated Hospital of Jining Medical University'), (34609, 'https://ror.org/05e9f4749', 'no_lang_code', 1, 'https://ror.org/05e9f4749 Heron Systems (United States)'), (34610, 'https://ror.org/05ea73r86', 'no_lang_code', 1, 'https://ror.org/05ea73r86 Spotscale (Sweden)'), (34611, 'https://ror.org/05eagc649', 'en', 1, 'https://ror.org/05eagc649 Central Institute for Experimental Animals 実験動物中央研究所'), (34612, 'https://ror.org/05eapnn11', 'no_lang_code', 1, 'https://ror.org/05eapnn11 Zetec (United States)'), (34613, 'https://ror.org/05eb69c53', 'no_lang_code', 1, 'https://ror.org/05eb69c53 Dynamotive Energy Systems (Canada)'), (34614, 'https://ror.org/05ed9kb76', 'no_lang_code', 1, 'https://ror.org/05ed9kb76 Curadel (United States)'), (34615, 'https://ror.org/05edmwq13', 'en', 1, 'https://ror.org/05edmwq13 Sundsvall Municipality'), (34616, 'https://ror.org/05efm5n07', 'en', 1, 'https://ror.org/05efm5n07 National Health Insurance Service'), (34617, 'https://ror.org/05eg49r29', 'en', 1, 'https://ror.org/05eg49r29 Bulgarian Science Fund'), (34618, 'https://ror.org/05ejn6z75', 'no_lang_code', 1, 'https://ror.org/05ejn6z75 Metronome (United States)'), (34619, 'https://ror.org/05ekh0s13', 'no_lang_code', 1, 'https://ror.org/05ekh0s13 MOgene (United States)'), (34620, 'https://ror.org/05em4qg89', 'no_lang_code', 1, 'https://ror.org/05em4qg89 Piab (Sweden)'), (34621, 'https://ror.org/05emypz02', 'no_lang_code', 1, 'https://ror.org/05emypz02 Transformator Design (Sweden)'), (34622, 'https://ror.org/05esem239', 'en', 1, 'https://ror.org/05esem239 Max Planck Institute for Meteorology Max-Planck-Institut für Meteorologie'), (34623, 'https://ror.org/05ev3vr27', 'en', 1, 'https://ror.org/05ev3vr27 Quanzhou Institute of Equipment Manufacturing Haixi Institute 中国科学院海西研究院泉州装备制造研究所'), (34624, 'https://ror.org/05ev63k17', 'no_lang_code', 1, 'https://ror.org/05ev63k17 Mikro-Tek (Canada)'), (34625, 'https://ror.org/05evyfq09', 'en', 1, 'https://ror.org/05evyfq09 Balassi Institute'), (34626, 'https://ror.org/05evznf71', 'fr', 1, 'https://ror.org/05evznf71 Institut de Recherche et d''Histoire des Textes'), (34627, 'https://ror.org/05ewr7t48', 'en', 1, 'https://ror.org/05ewr7t48 Cure Alzheimer’s Fund'), (34628, 'https://ror.org/05exfab56', 'en', 1, 'https://ror.org/05exfab56 Neurosciences Research Foundation'), (34629, 'https://ror.org/05f1qm765', 'en', 1, 'https://ror.org/05f1qm765 Kopint-Tárki Institute for Economic Research'), (34630, 'https://ror.org/05f4xbp74', 'no_lang_code', 1, 'https://ror.org/05f4xbp74 ThinKom Solutions (United States)'), (34631, 'https://ror.org/05f5h9j45', 'no_lang_code', 1, 'https://ror.org/05f5h9j45 Sentech Corporation (United States)'), (34632, 'https://ror.org/05f6k3t36', 'en', 1, 'https://ror.org/05f6k3t36 Henry Viscardi School'), (34633, 'https://ror.org/05f6mfg13', 'no_lang_code', 1, 'https://ror.org/05f6mfg13 Avisys (United States)'), (34634, 'https://ror.org/05f7khr13', 'en', 1, 'https://ror.org/05f7khr13 Women''s Health Initiative'), (34635, 'https://ror.org/05f7x7e62', 'no_lang_code', 1, 'https://ror.org/05f7x7e62 Gotmic (Sweden)'), (34636, 'https://ror.org/05f8s1h70', 'no_lang_code', 1, 'https://ror.org/05f8s1h70 Kforce (United States)'), (34637, 'https://ror.org/05fb9ak14', 'en', 1, 'https://ror.org/05fb9ak14 Robert Schalkenbach Foundation'), (34638, 'https://ror.org/05fckk939', 'en', 1, 'https://ror.org/05fckk939 Institute of Turkish Studies'), (34639, 'https://ror.org/05fcmfe52', 'nl', 1, 'https://ror.org/05fcmfe52 Frisian Academy Fryske Akademy'), (34640, 'https://ror.org/05fe24682', 'en', 1, 'https://ror.org/05fe24682 Northern Territory Environment Protection Authority'), (34641, 'https://ror.org/05fhe0r85', 'en', 1, 'https://ror.org/05fhe0r85 Agency for Defense Development 국방과학연구소'), (34642, 'https://ror.org/05fjnvm14', 'no_lang_code', 1, 'https://ror.org/05fjnvm14 Flow Analysis (United States)'), (34643, 'https://ror.org/05fm0gf36', 'en', 1, 'https://ror.org/05fm0gf36 Danish Working Environment Authority'), (34644, 'https://ror.org/05fp2zb41', 'en', 1, 'https://ror.org/05fp2zb41 Midwest Biomedical Research Foundation'), (34645, 'https://ror.org/05fs2rz39', 'en', 1, 'https://ror.org/05fs2rz39 Zilina International Airport'), (34646, 'https://ror.org/05ftq9h16', 'no_lang_code', 1, 'https://ror.org/05ftq9h16 Micromolding Solutions (Canada)'), (34647, 'https://ror.org/05fytb963', 'no_lang_code', 1, 'https://ror.org/05fytb963 Windsor Utilities Commission (Canada)'), (34648, 'https://ror.org/05g0xkn45', 'en', 1, 'https://ror.org/05g0xkn45 Polycystic Kidney Disease Foundation'), (34649, 'https://ror.org/05g28da90', 'no_lang_code', 1, 'https://ror.org/05g28da90 Strategic Analysis (United States)'), (34650, 'https://ror.org/05g5zwf18', 'no_lang_code', 1, 'https://ror.org/05g5zwf18 Sioxmachines (Sweden)'), (34651, 'https://ror.org/05g702x36', 'no_lang_code', 1, 'https://ror.org/05g702x36 Phillips Service Industries (United States)'), (34652, 'https://ror.org/05g8eqe22', 'en', 1, 'https://ror.org/05g8eqe22 Federation of Technical and Scientific Societies'), (34653, 'https://ror.org/05gc32295', 'no_lang_code', 1, 'https://ror.org/05gc32295 Telcred (Sweden)'), (34654, 'https://ror.org/05gdz9864', 'en', 1, 'https://ror.org/05gdz9864 University of Nursing Mandalay သူနာပြုတက္ကသိုလ်(မန္တလေး)'), (34655, 'https://ror.org/05gf3n961', 'en', 1, 'https://ror.org/05gf3n961 Tomsk Cancer Research Institute Томский научно-исследовательский институт онкологии'), (34656, 'https://ror.org/05gfwht30', 'en', 1, 'https://ror.org/05gfwht30 Civil Aviation Administration of China 中国民用航空局'), (34657, 'https://ror.org/05gggm169', 'en', 1, 'https://ror.org/05gggm169 HelpAge India'), (34658, 'https://ror.org/05gqsac13', 'no_lang_code', 1, 'https://ror.org/05gqsac13 SpaceTech (United States)'), (34659, 'https://ror.org/05grkcd68', 'en', 1, 'https://ror.org/05grkcd68 Cleveland Institute of Art'), (34660, 'https://ror.org/05gs2as25', 'no_lang_code', 1, 'https://ror.org/05gs2as25 Quantum Signal (United States)'), (34661, 'https://ror.org/05gte4h93', 'en', 1, 'https://ror.org/05gte4h93 Walsh Associates'), (34662, 'https://ror.org/05gw5ee29', 'en', 1, 'https://ror.org/05gw5ee29 Edogawa Hospital 江戸川病院'), (34663, 'https://ror.org/05gz34e20', 'no_lang_code', 1, 'https://ror.org/05gz34e20 SA Photonics (United States)'), (34664, 'https://ror.org/05gzybf15', 'en', 1, 'https://ror.org/05gzybf15 Lake Huron & Elgin Area Primary Water Supply Systems'), (34665, 'https://ror.org/05h6bgs51', 'no_lang_code', 1, 'https://ror.org/05h6bgs51 Samtrafiken (Sweden)'), (34666, 'https://ror.org/05h7a4r64', 'no_lang_code', 1, 'https://ror.org/05h7a4r64 Phostec (Slovakia)'), (34667, 'https://ror.org/05h887517', 'en', 1, 'https://ror.org/05h887517 Canadian Horticultural Council'), (34668, 'https://ror.org/05h95z887', 'no_lang_code', 1, 'https://ror.org/05h95z887 Orono Spectral Solutions (United States)'), (34669, 'https://ror.org/05hakgg65', 'no_lang_code', 1, 'https://ror.org/05hakgg65 Advanced Power Electronics (United States)'), (34670, 'https://ror.org/05hdz2063', 'pt', 1, 'https://ror.org/05hdz2063 Foundation for Research Support of Mato Grosso State Fundação de Amparo à Pesquisa do Estado de Mato Grosso'), (34671, 'https://ror.org/05he87q93', 'en', 1, 'https://ror.org/05he87q93 NIOD Institute for War, Holocaust and Genocide Studies NIOD Instituut voor Oorlogs-, Holocaust- en Genocidestudies'), (34672, 'https://ror.org/05hfet039', 'en', 1, 'https://ror.org/05hfet039 Ministry of National Defense 대한민국 국방부'), (34673, 'https://ror.org/05hgx5v83', 'no_lang_code', 1, 'https://ror.org/05hgx5v83 Think A Move (United States)'), (34674, 'https://ror.org/05hp6hk95', 'no_lang_code', 1, 'https://ror.org/05hp6hk95 APi Group (United States)'), (34675, 'https://ror.org/05hpdky94', 'en', 1, 'https://ror.org/05hpdky94 British Columbia Salmon Farmers Association'), (34676, 'https://ror.org/05hv0ec94', 'no_lang_code', 1, 'https://ror.org/05hv0ec94 Integral Consulting (United States)'), (34677, 'https://ror.org/05hvam844', 'en', 1, 'https://ror.org/05hvam844 Anti-Doping Laboratory'), (34678, 'https://ror.org/05hzgnr17', 'no_lang_code', 1, 'https://ror.org/05hzgnr17 Vatell (United States)'), (34679, 'https://ror.org/05hzpah25', 'no_lang_code', 1, 'https://ror.org/05hzpah25 TimberWest Forest (Canada)'), (34680, 'https://ror.org/05j00pb84', 'no_lang_code', 1, 'https://ror.org/05j00pb84 Materials Processing (United States)'), (34681, 'https://ror.org/05j0gfp71', 'no_lang_code', 1, 'https://ror.org/05j0gfp71 Daewoong Pharmaceutical (South Korea) 대웅제약'), (34682, 'https://ror.org/05j2v5m42', 'no_lang_code', 1, 'https://ror.org/05j2v5m42 Five Stones Research Corporation (United States)'), (34683, 'https://ror.org/05j3a2m34', 'en', 1, 'https://ror.org/05j3a2m34 Analytical Center MNiOP'), (34684, 'https://ror.org/05j4ab836', 'no_lang_code', 1, 'https://ror.org/05j4ab836 IMSAR (United States)'), (34685, 'https://ror.org/05j577q42', 'no_lang_code', 1, 'https://ror.org/05j577q42 Vectos (United Kingdom)'), (34686, 'https://ror.org/05j70cm37', 'en', 1, 'https://ror.org/05j70cm37 Jewish Community Foundation of Greater MetroWest NJ'), (34687, 'https://ror.org/05j7hv850', 'no_lang_code', 1, 'https://ror.org/05j7hv850 GeoMechanics Technologies (United States)'), (34688, 'https://ror.org/05j8j0w49', 'no_lang_code', 1, 'https://ror.org/05j8j0w49 Advanced Glazings (Canada)'), (34689, 'https://ror.org/05jbwz743', 'en', 1, 'https://ror.org/05jbwz743 Sarasota University'), (34690, 'https://ror.org/05jc9p859', 'en', 1, 'https://ror.org/05jc9p859 NeuroSurgical Research Foundation'), (34691, 'https://ror.org/05jdbvf64', 'no_lang_code', 1, 'https://ror.org/05jdbvf64 Arcon (United States)'), (34692, 'https://ror.org/05jds5x60', 'en', 1, 'https://ror.org/05jds5x60 University of Bahri جامعة بحري'), (34693, 'https://ror.org/05jekg408', 'no_lang_code', 1, 'https://ror.org/05jekg408 InferLink (United States)'), (34694, 'https://ror.org/05jetay51', 'no_lang_code', 1, 'https://ror.org/05jetay51 Riverbed (United States)'), (34695, 'https://ror.org/05jf1ma54', 'de', 1, 'https://ror.org/05jf1ma54 Bern University of Teacher Education Pädagogische Hochschule Bern'), (34696, 'https://ror.org/05jf45g20', 'no_lang_code', 1, 'https://ror.org/05jf45g20 KVH Industries (United States)'), (34697, 'https://ror.org/05jfe3192', 'en', 1, 'https://ror.org/05jfe3192 Connecticut Department of Social Services'), (34698, 'https://ror.org/05jgd9317', 'no_lang_code', 1, 'https://ror.org/05jgd9317 Gratex International (Slovakia)'), (34699, 'https://ror.org/05jjpbn70', 'en', 1, 'https://ror.org/05jjpbn70 Alliance for Technology Access'), (34700, 'https://ror.org/05jjs7f83', 'no_lang_code', 1, 'https://ror.org/05jjs7f83 General Lasertronics Corporation (United States)'), (34701, 'https://ror.org/05jmh8x88', 'en', 1, 'https://ror.org/05jmh8x88 Shanghai Zhabei District Shibei Hospital'), (34702, 'https://ror.org/05jnjmr07', 'en', 1, 'https://ror.org/05jnjmr07 Virginia Department of Education'), (34703, 'https://ror.org/05jnt4x38', 'no_lang_code', 1, 'https://ror.org/05jnt4x38 METSS (United States)'), (34704, 'https://ror.org/05jthwf86', 'no_lang_code', 1, 'https://ror.org/05jthwf86 KWI Group (United States)'), (34705, 'https://ror.org/05jtrt935', 'pt', 1, 'https://ror.org/05jtrt935 Fundação de Apoio ao Desenvolvimento do Ensino, Ciência e Tecnologia do Estado de Mato Grosso do Sul'), (34706, 'https://ror.org/05jxbth48', 'no_lang_code', 1, 'https://ror.org/05jxbth48 General Kinetics (United States)'), (34707, 'https://ror.org/05k037b50', 'en', 1, 'https://ror.org/05k037b50 Women Make Movies'), (34708, 'https://ror.org/05k0v5t92', 'de', 1, 'https://ror.org/05k0v5t92 Forschungskuratorium Textil'), (34709, 'https://ror.org/05k1j9p68', 'en', 1, 'https://ror.org/05k1j9p68 Scandinavian Automotive Supplier Association'), (34710, 'https://ror.org/05k1jx057', 'en', 1, 'https://ror.org/05k1jx057 Texas Space Grant Consortium'), (34711, 'https://ror.org/05k2cam34', 'no_lang_code', 1, 'https://ror.org/05k2cam34 Impact Hub (Sweden)'), (34712, 'https://ror.org/05k37cq18', 'no_lang_code', 1, 'https://ror.org/05k37cq18 Custom Security Industries (Canada)'), (34713, 'https://ror.org/05k78d918', 'no_lang_code', 1, 'https://ror.org/05k78d918 Typotex (Hungary)'), (34714, 'https://ror.org/05k969473', 'en', 1, 'https://ror.org/05k969473 Sheldon Museum and Cultural Center'), (34715, 'https://ror.org/05k9vtj41', 'no_lang_code', 1, 'https://ror.org/05k9vtj41 Fuseforward (Canada)'), (34716, 'https://ror.org/05kaxyq51', 'en', 1, 'https://ror.org/05kaxyq51 Meertens Institute Meertens Instituut'), (34717, 'https://ror.org/05kdrns38', 'no_lang_code', 1, 'https://ror.org/05kdrns38 Sierra Engineering (United States)'), (34718, 'https://ror.org/05kgcpg38', 'no_lang_code', 1, 'https://ror.org/05kgcpg38 Imagination Engines (United States)'), (34719, 'https://ror.org/05kmh8z64', 'en', 1, 'https://ror.org/05kmh8z64 Apicha Community Health Center'), (34720, 'https://ror.org/05kmmnb39', 'no_lang_code', 1, 'https://ror.org/05kmmnb39 TNS (United States)'), (34721, 'https://ror.org/05knz5v90', 'no_lang_code', 1, 'https://ror.org/05knz5v90 DESE Research (United States)'), (34722, 'https://ror.org/05krx3x83', 'en', 1, 'https://ror.org/05krx3x83 Ontario Dairy Council'), (34723, 'https://ror.org/05kt92j68', 'en', 1, 'https://ror.org/05kt92j68 Access Technologies'), (34724, 'https://ror.org/05kxcj202', 'en', 1, 'https://ror.org/05kxcj202 French Institute of Pondicherry Institut Français de Pondichéry பாண்டிச்சேரி பிரெஞ்சு நிறுவனம்'), (34725, 'https://ror.org/05kyb6m55', 'no_lang_code', 1, 'https://ror.org/05kyb6m55 Diamond Antenna and Microwave (United States)'), (34726, 'https://ror.org/05kz03q36', 'no_lang_code', 1, 'https://ror.org/05kz03q36 WindVector'), (34727, 'https://ror.org/05kz9t998', 'no_lang_code', 1, 'https://ror.org/05kz9t998 Tondi Elektroonika (Estonia)'), (34728, 'https://ror.org/05m0n6v74', 'en', 1, 'https://ror.org/05m0n6v74 Kentucky Office of Vocational Rehabilitation'), (34729, 'https://ror.org/05m1p5x56', 'en', 1, 'https://ror.org/05m1p5x56 First Affiliated Hospital Zhejiang University'), (34730, 'https://ror.org/05m2de985', 'no_lang_code', 1, 'https://ror.org/05m2de985 Exchange Income (Canada)'), (34731, 'https://ror.org/05m38qe70', 'en', 1, 'https://ror.org/05m38qe70 Ministry of Defence'), (34732, 'https://ror.org/05m43a381', 'no_lang_code', 1, 'https://ror.org/05m43a381 Euclid Techlabs (United States)'), (34733, 'https://ror.org/05m4pkm65', 'no_lang_code', 1, 'https://ror.org/05m4pkm65 IBC Coatings Technologies (United States)'), (34734, 'https://ror.org/05m4rmw09', 'en', 1, 'https://ror.org/05m4rmw09 Fondo Monetario Internacional Fonds monétaire international International Monetary Fund'), (34735, 'https://ror.org/05m93m079', 'en', 1, 'https://ror.org/05m93m079 Oakwood Academy'), (34736, 'https://ror.org/05mc52190', 'no_lang_code', 1, 'https://ror.org/05mc52190 Polymer Factory (Sweden)'); INSERT INTO `rors` VALUES (34737, 'https://ror.org/05mcs2t73', 'en', 1, 'https://ror.org/05mcs2t73 Ministry of Higher Education'), (34738, 'https://ror.org/05mcyt529', 'en', 1, 'https://ror.org/05mcyt529 Korea Federation of Science and Technology Societies 한국과학기술단체총연합회'), (34739, 'https://ror.org/05mffvf70', 'no_lang_code', 1, 'https://ror.org/05mffvf70 SiliconPro (Canada)'), (34740, 'https://ror.org/05mfxbk05', 'no_lang_code', 1, 'https://ror.org/05mfxbk05 MIB Engineers (United States)'), (34741, 'https://ror.org/05mh8bc44', 'en', 1, 'https://ror.org/05mh8bc44 Manchester Grammar School'), (34742, 'https://ror.org/05mjgqe69', 'no_lang_code', 1, 'https://ror.org/05mjgqe69 Toyota Central Research and Development Laboratories (Japan) 中央研究所'), (34743, 'https://ror.org/05mm98a47', 'no_lang_code', 1, 'https://ror.org/05mm98a47 Square One (United States)'), (34744, 'https://ror.org/05mmkyr56', 'no_lang_code', 1, 'https://ror.org/05mmkyr56 Synectics (United States)'), (34745, 'https://ror.org/05mn41x71', 'no_lang_code', 1, 'https://ror.org/05mn41x71 Highview Power Storage (United Kingdom)'), (34746, 'https://ror.org/05mqewt50', 'en', 1, 'https://ror.org/05mqewt50 Jiangjin Central Hospital'), (34747, 'https://ror.org/05mrev375', 'en', 1, 'https://ror.org/05mrev375 Etosha Ecological Institute'), (34748, 'https://ror.org/05mt9p027', 'en', 1, 'https://ror.org/05mt9p027 Research Foundation ITSUU Laboratory 乙卯研究所'), (34749, 'https://ror.org/05mwvz623', 'en', 1, 'https://ror.org/05mwvz623 Beyondblue'), (34750, 'https://ror.org/05mx11h55', 'en', 1, 'https://ror.org/05mx11h55 Ministry of Agriculture and Agro Based Industry'), (34751, 'https://ror.org/05mzf7c50', 'no_lang_code', 1, 'https://ror.org/05mzf7c50 Tri-Con Concrete Finishing (Canada)'), (34752, 'https://ror.org/05n22dr57', 'en', 1, 'https://ror.org/05n22dr57 BC Innovation Council'), (34753, 'https://ror.org/05n3asa33', 'es', 1, 'https://ror.org/05n3asa33 Instituto de Investigación Biomédica de Málaga'), (34754, 'https://ror.org/05n3gpp89', 'no_lang_code', 1, 'https://ror.org/05n3gpp89 Streamline Numerics (United States)'), (34755, 'https://ror.org/05n4wp011', 'en', 1, 'https://ror.org/05n4wp011 Society of Abdominal Radiology'), (34756, 'https://ror.org/05n50qc07', 'en', 1, 'https://ror.org/05n50qc07 Nanchong Central Hospital 南充市中心医院'), (34757, 'https://ror.org/05n7hc005', 'no_lang_code', 1, 'https://ror.org/05n7hc005 EVRAZ (United States)'), (34758, 'https://ror.org/05na5dm15', 'no_lang_code', 1, 'https://ror.org/05na5dm15 Precise Biometrics (Sweden) 精準生物識別公'), (34759, 'https://ror.org/05nb4dd58', 'no_lang_code', 1, 'https://ror.org/05nb4dd58 Envia Systems (United States)'), (34760, 'https://ror.org/05nf7ha92', 'no_lang_code', 1, 'https://ror.org/05nf7ha92 Global Embedded Technologies (United States)'), (34761, 'https://ror.org/05ngf5n66', 'en', 1, 'https://ror.org/05ngf5n66 UNStudio'), (34762, 'https://ror.org/05njdn771', 'no_lang_code', 1, 'https://ror.org/05njdn771 Stiefvater Consultants (United States)'), (34763, 'https://ror.org/05nnc2r34', 'no_lang_code', 1, 'https://ror.org/05nnc2r34 DWA Technologies (United States)'), (34764, 'https://ror.org/05npcf755', 'no_lang_code', 1, 'https://ror.org/05npcf755 Microcom (United States)'), (34765, 'https://ror.org/05npdkv31', 'no_lang_code', 1, 'https://ror.org/05npdkv31 Sonaca (Canada)'), (34766, 'https://ror.org/05npsjk50', 'en', 1, 'https://ror.org/05npsjk50 Limestone College'), (34767, 'https://ror.org/05nq2wt36', 'no_lang_code', 1, 'https://ror.org/05nq2wt36 EasyMining (Sweden)'), (34768, 'https://ror.org/05nzk9q32', 'no_lang_code', 1, 'https://ror.org/05nzk9q32 Intelligent Machines (Sweden)'), (34769, 'https://ror.org/05nzkcm44', 'en', 1, 'https://ror.org/05nzkcm44 Australian Seafood Cooperative Research Center'), (34770, 'https://ror.org/05nzwyq50', 'en', 1, 'https://ror.org/05nzwyq50 JPB Foundation'), (34771, 'https://ror.org/05p0ja512', 'en', 1, 'https://ror.org/05p0ja512 Chemistry Industry Association of Canada'), (34772, 'https://ror.org/05p20a626', 'en', 1, 'https://ror.org/05p20a626 Food Standards Agency'), (34773, 'https://ror.org/05p275942', 'en', 1, 'https://ror.org/05p275942 Pacific College of Oriental Medicine'), (34774, 'https://ror.org/05p4j2138', 'no_lang_code', 1, 'https://ror.org/05p4j2138 Bunge (Canada)'), (34775, 'https://ror.org/05p4yqc22', 'en', 1, 'https://ror.org/05p4yqc22 PanAmerican Bioinformatics Institute'), (34776, 'https://ror.org/05p5fe205', 'nl', 1, 'https://ror.org/05p5fe205 Internationale Vereniging voor Neerlandistiek'), (34777, 'https://ror.org/05p76h610', 'no_lang_code', 1, 'https://ror.org/05p76h610 MagiQ Technologies (United States)'), (34778, 'https://ror.org/05p8yat86', 'en', 1, 'https://ror.org/05p8yat86 Acent Laboratories'), (34779, 'https://ror.org/05pc4pd06', 'en', 1, 'https://ror.org/05pc4pd06 Alaska Department of Labor and Workforce Development'), (34780, 'https://ror.org/05pcb3x66', 'no_lang_code', 1, 'https://ror.org/05pcb3x66 C-Therm Technologies (Canada)'), (34781, 'https://ror.org/05pcwq620', 'no_lang_code', 1, 'https://ror.org/05pcwq620 Scientific Applications & Research Associates (United States)'), (34782, 'https://ror.org/05pf1p208', 'fr', 1, 'https://ror.org/05pf1p208 Institut Français du Cheval et de l''Équitation'), (34783, 'https://ror.org/05pfbbk72', 'no_lang_code', 1, 'https://ror.org/05pfbbk72 SoniPulse (United States)'), (34784, 'https://ror.org/05pft2x28', 'en', 1, 'https://ror.org/05pft2x28 Umeå Municipality'), (34785, 'https://ror.org/05pg13f04', 'en', 1, 'https://ror.org/05pg13f04 Morris Animal Foundation'), (34786, 'https://ror.org/05pgnn319', 'en', 1, 'https://ror.org/05pgnn319 Cambridge Healthtech Institute'), (34787, 'https://ror.org/05pj1wk28', 'no_lang_code', 1, 'https://ror.org/05pj1wk28 Orbital Systems (Sweden)'), (34788, 'https://ror.org/05pj73f13', 'no_lang_code', 1, 'https://ror.org/05pj73f13 TIAX (United States)'), (34789, 'https://ror.org/05pmf3t53', 'en', 1, 'https://ror.org/05pmf3t53 New England Institute of Technology'), (34790, 'https://ror.org/05pmkqv04', 'en', 1, 'https://ror.org/05pmkqv04 First Hospital of Qinhuangdao'), (34791, 'https://ror.org/05pmq5w14', 'de', 1, 'https://ror.org/05pmq5w14 Deutsche Bundesstiftung Umwelt'), (34792, 'https://ror.org/05ppfhw72', 'no_lang_code', 1, 'https://ror.org/05ppfhw72 Analytical Spectral Devices (United States)'), (34793, 'https://ror.org/05ppvc341', 'en', 1, 'https://ror.org/05ppvc341 Third World Newsreel'), (34794, 'https://ror.org/05ppvf150', 'no_lang_code', 1, 'https://ror.org/05ppvf150 Impact Technology Development (United States)'), (34795, 'https://ror.org/05pqqge35', 'en', 1, 'https://ror.org/05pqqge35 Anhui Mental Health Center 安徽省精神卫生防治中心'), (34796, 'https://ror.org/05przbs16', 'no_lang_code', 1, 'https://ror.org/05przbs16 Beckett Energy Systems'), (34797, 'https://ror.org/05ptj5165', 'no_lang_code', 1, 'https://ror.org/05ptj5165 Needs Drive (Sweden)'), (34798, 'https://ror.org/05pvrkb04', 'no_lang_code', 1, 'https://ror.org/05pvrkb04 Innosys (United States)'), (34799, 'https://ror.org/05pwx6044', 'no_lang_code', 1, 'https://ror.org/05pwx6044 NuCrypt (United States)'), (34800, 'https://ror.org/05px8wc91', 'hu', 1, 'https://ror.org/05px8wc91 Tokaji Borvidék Szőlészeti és Borászati Kutatóintézet'), (34801, 'https://ror.org/05pzwgc51', 'no_lang_code', 1, 'https://ror.org/05pzwgc51 Devices for Dignity'), (34802, 'https://ror.org/05q0w0a95', 'no_lang_code', 1, 'https://ror.org/05q0w0a95 Dynamic Structures and Materials (United States)'), (34803, 'https://ror.org/05q1b6223', 'en', 1, 'https://ror.org/05q1b6223 Wallace Foundation'), (34804, 'https://ror.org/05q3g7p38', 'de', 1, 'https://ror.org/05q3g7p38 Pädagogische Hochschule Salzburg University of Education Salzburg'), (34805, 'https://ror.org/05q5vb956', 'no_lang_code', 1, 'https://ror.org/05q5vb956 Learnimation (United States)'), (34806, 'https://ror.org/05q5yzt24', 'en', 1, 'https://ror.org/05q5yzt24 Wellington Medical Research Foundation'), (34807, 'https://ror.org/05q86z175', 'no_lang_code', 1, 'https://ror.org/05q86z175 International Mezzo Technologies (United States)'), (34808, 'https://ror.org/05q8ckj10', 'en', 1, 'https://ror.org/05q8ckj10 Nazarene Bible College'), (34809, 'https://ror.org/05q9hkp18', 'en', 1, 'https://ror.org/05q9hkp18 Austrian Institute for International Affairs Österreichische Institut für Internationale Politik'), (34810, 'https://ror.org/05qb22n20', 'no_lang_code', 1, 'https://ror.org/05qb22n20 ChemImage (United States)'), (34811, 'https://ror.org/05qbc4793', 'no_lang_code', 1, 'https://ror.org/05qbc4793 Diacarbon Energy (Canada)'), (34812, 'https://ror.org/05qcea723', 'no_lang_code', 1, 'https://ror.org/05qcea723 Nike (United States)'), (34813, 'https://ror.org/05qcvcp08', 'no_lang_code', 1, 'https://ror.org/05qcvcp08 Sika (Canada)'), (34814, 'https://ror.org/05qdsyx92', 'no_lang_code', 1, 'https://ror.org/05qdsyx92 International Electronic Machines (United States)'), (34815, 'https://ror.org/05qedhe85', 'no_lang_code', 1, 'https://ror.org/05qedhe85 ITER China'), (34816, 'https://ror.org/05qg6df59', 'no_lang_code', 1, 'https://ror.org/05qg6df59 Art Anderson Associates (United States)'), (34817, 'https://ror.org/05qj34p41', 'no_lang_code', 1, 'https://ror.org/05qj34p41 Hood Technology (United States)'), (34818, 'https://ror.org/05qk3ge34', 'en', 1, 'https://ror.org/05qk3ge34 Nuclear Safety And Security Commission'), (34819, 'https://ror.org/05qkx3604', 'no_lang_code', 1, 'https://ror.org/05qkx3604 Migma (United States)'), (34820, 'https://ror.org/05qkx9513', 'no_lang_code', 1, 'https://ror.org/05qkx9513 SCA Technica (United States)'), (34821, 'https://ror.org/05qm89p23', 'no_lang_code', 1, 'https://ror.org/05qm89p23 Makai Ocean Engineering (United States)'), (34822, 'https://ror.org/05qmdfk04', 'no_lang_code', 1, 'https://ror.org/05qmdfk04 Millennium Engineering and Integration (United States)'), (34823, 'https://ror.org/05qmfyw56', 'en', 1, 'https://ror.org/05qmfyw56 International Myeloma Foundation'), (34824, 'https://ror.org/05qnvg564', 'no_lang_code', 1, 'https://ror.org/05qnvg564 Rehab Ideas (United States)'), (34825, 'https://ror.org/05qnwyb92', 'en', 1, 'https://ror.org/05qnwyb92 British Lung Foundation'), (34826, 'https://ror.org/05qp6pd10', 'no_lang_code', 1, 'https://ror.org/05qp6pd10 Wuxi Taihu Hospital'), (34827, 'https://ror.org/05qphs016', 'no_lang_code', 1, 'https://ror.org/05qphs016 Fotonic (Sweden)'), (34828, 'https://ror.org/05qty9v66', 'no_lang_code', 1, 'https://ror.org/05qty9v66 Dessau-Soprin (Canada)'), (34829, 'https://ror.org/05qvpbw57', 'en', 1, 'https://ror.org/05qvpbw57 Danida Fellowship Centre'), (34830, 'https://ror.org/05qwshn40', 'no_lang_code', 1, 'https://ror.org/05qwshn40 CYBER Learning Corporation (United States)'), (34831, 'https://ror.org/05qxk3m85', 'no_lang_code', 1, 'https://ror.org/05qxk3m85 Xylophane (Sweden)'), (34832, 'https://ror.org/05qyxnj95', 'fr', 1, 'https://ror.org/05qyxnj95 Centre d’Infectiologie Christophe Mérieux of Laos'), (34833, 'https://ror.org/05qzy6511', 'no_lang_code', 1, 'https://ror.org/05qzy6511 Research Institute for Man Made Fibres (Slovakia)'), (34834, 'https://ror.org/05r04zn83', 'en', 1, 'https://ror.org/05r04zn83 Regional Municipality of Niagara'), (34835, 'https://ror.org/05r2bq179', 'no_lang_code', 1, 'https://ror.org/05r2bq179 Invocon (United States)'), (34836, 'https://ror.org/05r2ts661', 'en', 1, 'https://ror.org/05r2ts661 Fulbright Foundation'), (34837, 'https://ror.org/05rb1bm79', 'no_lang_code', 1, 'https://ror.org/05rb1bm79 RBC Technologies (United States)'), (34838, 'https://ror.org/05rbbc072', 'en', 1, 'https://ror.org/05rbbc072 Kosciuszko Foundation'), (34839, 'https://ror.org/05rbdsb19', 'en', 1, 'https://ror.org/05rbdsb19 Water Research Foundation'), (34840, 'https://ror.org/05rbrm011', 'no_lang_code', 1, 'https://ror.org/05rbrm011 Multimatic (Canada)'), (34841, 'https://ror.org/05rcmw333', 'no_lang_code', 1, 'https://ror.org/05rcmw333 Materials Technologies (United States)'), (34842, 'https://ror.org/05rd5v488', 'no_lang_code', 1, 'https://ror.org/05rd5v488 CMTech (Australia)'), (34843, 'https://ror.org/05re5hn81', 'no_lang_code', 1, 'https://ror.org/05re5hn81 Ideal Power (United States)'), (34844, 'https://ror.org/05rezmm46', 'en', 1, 'https://ror.org/05rezmm46 Software Technology and Applications Competence Center'), (34845, 'https://ror.org/05rfchc95', 'no_lang_code', 1, 'https://ror.org/05rfchc95 Beacon Interactive Systems (United States)'), (34846, 'https://ror.org/05rrq0b46', 'no_lang_code', 1, 'https://ror.org/05rrq0b46 Fafard et Frères (Canada)'), (34847, 'https://ror.org/05rt6q248', 'no_lang_code', 1, 'https://ror.org/05rt6q248 Toyota Motor Corporation (Canada)'), (34848, 'https://ror.org/05rwjrt81', 'no_lang_code', 1, 'https://ror.org/05rwjrt81 Berger (Canada)'), (34849, 'https://ror.org/05rwjyj14', 'en', 1, 'https://ror.org/05rwjyj14 Fusion Academy'), (34850, 'https://ror.org/05rwxjp51', 'no_lang_code', 1, 'https://ror.org/05rwxjp51 Emitech (United States)'), (34851, 'https://ror.org/05rxftm59', 'no_lang_code', 1, 'https://ror.org/05rxftm59 Colloidal Resource (Sweden)'), (34852, 'https://ror.org/05rxmpb48', 'nl', 1, 'https://ror.org/05rxmpb48 BC Broekhin Roermond'), (34853, 'https://ror.org/05ry90052', 'fr', 1, 'https://ror.org/05ry90052 Alphabio'), (34854, 'https://ror.org/05ry92539', 'no_lang_code', 1, 'https://ror.org/05ry92539 Powertec (Slovakia)'), (34855, 'https://ror.org/05ryv2g97', 'no_lang_code', 1, 'https://ror.org/05ryv2g97 Compagnie Industrielle de la Matière Végétale (France)'), (34856, 'https://ror.org/05rz01y20', 'no_lang_code', 1, 'https://ror.org/05rz01y20 Fieldmetrics (United States)'), (34857, 'https://ror.org/05s1c4z27', 'en', 1, 'https://ror.org/05s1c4z27 Sichuan Provincial Department of Education'), (34858, 'https://ror.org/05s37rv07', 'no_lang_code', 1, 'https://ror.org/05s37rv07 Acellent Technologies (United States)'), (34859, 'https://ror.org/05s7mav43', 'no_lang_code', 1, 'https://ror.org/05s7mav43 Clear Align (United States)'), (34860, 'https://ror.org/05s7mx240', 'no_lang_code', 1, 'https://ror.org/05s7mx240 Cyrium Technologies (Canada)'), (34861, 'https://ror.org/05s7yfr86', 'no_lang_code', 1, 'https://ror.org/05s7yfr86 VI Manufacturing (United States)'), (34862, 'https://ror.org/05sb4tp69', 'no_lang_code', 1, 'https://ror.org/05sb4tp69 Global Engineering and Materials (United States)'), (34863, 'https://ror.org/05sdn2w97', 'no_lang_code', 1, 'https://ror.org/05sdn2w97 Integrated Photonics Technology (United States)'), (34864, 'https://ror.org/05sdssj84', 'no_lang_code', 1, 'https://ror.org/05sdssj84 New England Research (United States)'), (34865, 'https://ror.org/05sfep667', 'en', 1, 'https://ror.org/05sfep667 Ministerio de Agricultura y Desarrollo Rural Ministry of Agriculture and Rural Development'), (34866, 'https://ror.org/05sfwv538', 'en', 1, 'https://ror.org/05sfwv538 Great Lakes Fishery Commission'), (34867, 'https://ror.org/05shz5j84', 'no_lang_code', 1, 'https://ror.org/05shz5j84 Management Sciences (United States)'), (34868, 'https://ror.org/05skev209', 'no_lang_code', 1, 'https://ror.org/05skev209 SixPoint Materials (United States)'), (34869, 'https://ror.org/05skxzn48', 'en', 1, 'https://ror.org/05skxzn48 Georgian National Museum აქართველოს ეროვნული მუზე'), (34870, 'https://ror.org/05sm6p196', 'en', 1, 'https://ror.org/05sm6p196 Jiangsu Provincial Hospital of Traditional Chinese Medicine 江苏省中医药研究院'), (34871, 'https://ror.org/05sn2fr43', 'en', 1, 'https://ror.org/05sn2fr43 Marine Mammal Commission'), (34872, 'https://ror.org/05snapr15', 'en', 1, 'https://ror.org/05snapr15 Mary Kay Foundation'), (34873, 'https://ror.org/05sndhx91', 'no_lang_code', 1, 'https://ror.org/05sndhx91 Air Turbine Technology (United States)'), (34874, 'https://ror.org/05snhb688', 'no_lang_code', 1, 'https://ror.org/05snhb688 NextGen Aeronautics (United States)'), (34875, 'https://ror.org/05snkc171', 'no_lang_code', 1, 'https://ror.org/05snkc171 IMPETUS Afea (Sweden)'), (34876, 'https://ror.org/05snmdb74', 'no_lang_code', 1, 'https://ror.org/05snmdb74 Enser (United States)'), (34877, 'https://ror.org/05sprqy15', 'en', 1, 'https://ror.org/05sprqy15 Cambridge Commonwealth European and International Trust'), (34878, 'https://ror.org/05sqz7r04', 'no_lang_code', 1, 'https://ror.org/05sqz7r04 Vucht (Slovakia)'), (34879, 'https://ror.org/05sr58560', 'no_lang_code', 1, 'https://ror.org/05sr58560 Shear Form (United States)'), (34880, 'https://ror.org/05srg5036', 'en', 1, 'https://ror.org/05srg5036 Hungarian Institute for Educational Research and Development'), (34881, 'https://ror.org/05sydm958', 'no_lang_code', 1, 'https://ror.org/05sydm958 ATS Automation Tooling Systems (Canada)'), (34882, 'https://ror.org/05t0mvy43', 'no_lang_code', 1, 'https://ror.org/05t0mvy43 Princeton Optronics (United States)'), (34883, 'https://ror.org/05t2esn81', 'no_lang_code', 1, 'https://ror.org/05t2esn81 ParetoLogic (Canada)'), (34884, 'https://ror.org/05t3ccn58', 'en', 1, 'https://ror.org/05t3ccn58 Qatar Faculty of Islamic Studies'), (34885, 'https://ror.org/05t4zqc79', 'no_lang_code', 1, 'https://ror.org/05t4zqc79 GeoInformation (United Kingdom)'), (34886, 'https://ror.org/05t5z9252', 'no_lang_code', 1, 'https://ror.org/05t5z9252 Synergia (United States)'), (34887, 'https://ror.org/05t7fez51', 'no_lang_code', 1, 'https://ror.org/05t7fez51 Danaher (Sweden)'), (34888, 'https://ror.org/05tbkx115', 'en', 1, 'https://ror.org/05tbkx115 Kansas City Art Institute'), (34889, 'https://ror.org/05tcsqz68', 'en', 1, 'https://ror.org/05tcsqz68 Foundation for Innovative New Diagnostics'), (34890, 'https://ror.org/05te4e461', 'en', 1, 'https://ror.org/05te4e461 American College of Veterinary Internal Medicine Foundation'), (34891, 'https://ror.org/05te6r535', 'en', 1, 'https://ror.org/05te6r535 New World School of the Arts'), (34892, 'https://ror.org/05te6yt75', 'no_lang_code', 1, 'https://ror.org/05te6yt75 Intelligent Models (United States)'), (34893, 'https://ror.org/05tg9ea20', 'no_lang_code', 1, 'https://ror.org/05tg9ea20 XMCO (United States)'), (34894, 'https://ror.org/05tk49h93', 'no_lang_code', 1, 'https://ror.org/05tk49h93 Girochem (Slovakia)'), (34895, 'https://ror.org/05tmhhz44', 'en', 1, 'https://ror.org/05tmhhz44 Access Technologies Group'), (34896, 'https://ror.org/05tmmj622', 'no_lang_code', 1, 'https://ror.org/05tmmj622 Safety Dynamics (United States)'), (34897, 'https://ror.org/05tppc012', 'en', 1, 'https://ror.org/05tppc012 Dasman Diabetes Institute'), (34898, 'https://ror.org/05tpsgh61', 'en', 1, 'https://ror.org/05tpsgh61 Fraunhofer Institute for Biomedical Engineering Fraunhofer-Institut für Biomedizinische Technik'), (34899, 'https://ror.org/05tqbd879', 'en', 1, 'https://ror.org/05tqbd879 Energy Market Authority'), (34900, 'https://ror.org/05tqbw409', 'no_lang_code', 1, 'https://ror.org/05tqbw409 Information International Associates (United States)'), (34901, 'https://ror.org/05ttfpv30', 'en', 1, 'https://ror.org/05ttfpv30 Ontario Bean Growers'), (34902, 'https://ror.org/05ttq4j04', 'no_lang_code', 1, 'https://ror.org/05ttq4j04 SPI Surgical (United States)'), (34903, 'https://ror.org/05tvcyg29', 'en', 1, 'https://ror.org/05tvcyg29 Government of Manitoba'), (34904, 'https://ror.org/05tw77m82', 'hu', 1, 'https://ror.org/05tw77m82 Hortobágy National Park Directorate'), (34905, 'https://ror.org/05twhx581', 'no_lang_code', 1, 'https://ror.org/05twhx581 Metric Systems Corporation (United States)'), (34906, 'https://ror.org/05txqkd02', 'en', 1, 'https://ror.org/05txqkd02 Association for Asian Studies'), (34907, 'https://ror.org/05txzf778', 'en', 1, 'https://ror.org/05txzf778 Jones College'), (34908, 'https://ror.org/05v32ez80', 'no_lang_code', 1, 'https://ror.org/05v32ez80 Broadata Communications (United States)'), (34909, 'https://ror.org/05v43a449', 'no_lang_code', 1, 'https://ror.org/05v43a449 Expand (United States)'), (34910, 'https://ror.org/05v5qfp15', 'en', 1, 'https://ror.org/05v5qfp15 Rehasport Clinic'), (34911, 'https://ror.org/05v6b0t46', 'es', 1, 'https://ror.org/05v6b0t46 Magdalena Villegas de Martínez el Hospital'), (34912, 'https://ror.org/05v6gdb70', 'en', 1, 'https://ror.org/05v6gdb70 National Assembly'), (34913, 'https://ror.org/05v6k5v13', 'no_lang_code', 1, 'https://ror.org/05v6k5v13 Hanil E-Hwa (Slovakia)'), (34914, 'https://ror.org/05v8xqq83', 'no_lang_code', 1, 'https://ror.org/05v8xqq83 Advanced Processing Technology (United States)'), (34915, 'https://ror.org/05v981p28', 'no_lang_code', 1, 'https://ror.org/05v981p28 Water and Earth Science Associates (Canada)'), (34916, 'https://ror.org/05v9n8905', 'en', 1, 'https://ror.org/05v9n8905 Indian Centre for Space Physics'), (34917, 'https://ror.org/05vab6055', 'no_lang_code', 1, 'https://ror.org/05vab6055 Air Liquide (Canada)'), (34918, 'https://ror.org/05vagkn68', 'cs', 1, 'https://ror.org/05vagkn68 Planetárium Praha'), (34919, 'https://ror.org/05vb2nq58', 'no_lang_code', 1, 'https://ror.org/05vb2nq58 Select Engineering Services (United States)'), (34920, 'https://ror.org/05vbajd50', 'no_lang_code', 1, 'https://ror.org/05vbajd50 EkoBalans Fenix (Sweden)'), (34921, 'https://ror.org/05vcq0t75', 'no_lang_code', 1, 'https://ror.org/05vcq0t75 Metis Design Corporation (United States)'), (34922, 'https://ror.org/05vd00053', 'en', 1, 'https://ror.org/05vd00053 Terry Fox Foundation'), (34923, 'https://ror.org/05vd41376', 'no_lang_code', 1, 'https://ror.org/05vd41376 CreoNex Systems (United States)'), (34924, 'https://ror.org/05vdzgj37', 'sv', 1, 'https://ror.org/05vdzgj37 Drivhuset'), (34925, 'https://ror.org/05vewsj04', 'en', 1, 'https://ror.org/05vewsj04 Mentor Technologies'), (34926, 'https://ror.org/05vf01n02', 'en', 1, 'https://ror.org/05vf01n02 Fourth People''s Hospital of Changzhou'), (34927, 'https://ror.org/05vf4zc90', 'en', 1, 'https://ror.org/05vf4zc90 Austrian Political Science Association Österreichische Gesellschaft für Politikwissenschaft'), (34928, 'https://ror.org/05vfxqe03', 'no_lang_code', 1, 'https://ror.org/05vfxqe03 Devon Energy (Canada)'), (34929, 'https://ror.org/05vg9e808', 'no_lang_code', 1, 'https://ror.org/05vg9e808 Ferro Solutions (United States)'), (34930, 'https://ror.org/05vgnmj77', 'no_lang_code', 1, 'https://ror.org/05vgnmj77 Innovation Management Consulting Group (Sweden)'), (34931, 'https://ror.org/05vj6nt70', 'en', 1, 'https://ror.org/05vj6nt70 Appalshop'), (34932, 'https://ror.org/05vje5x10', 'en', 1, 'https://ror.org/05vje5x10 Vision Australia'), (34933, 'https://ror.org/05vjvk624', 'en', 1, 'https://ror.org/05vjvk624 Architects Council of Europe, Conseil des Architectes d''Europe'), (34934, 'https://ror.org/05vmgsb62', 'no_lang_code', 1, 'https://ror.org/05vmgsb62 Procont (Slovakia)'), (34935, 'https://ror.org/05vpcsf30', 'no_lang_code', 1, 'https://ror.org/05vpcsf30 VT Systems (United States)'), (34936, 'https://ror.org/05vpf1q78', 'no_lang_code', 1, 'https://ror.org/05vpf1q78 Baker Hughes (Canada)'), (34937, 'https://ror.org/05vq9wd94', 'en', 1, 'https://ror.org/05vq9wd94 Gongju National Hospital 국립공주병원'), (34938, 'https://ror.org/05vxv5b07', 'no_lang_code', 1, 'https://ror.org/05vxv5b07 Applied Optoelectronics (United States)'), (34939, 'https://ror.org/05w2bg973', 'no_lang_code', 1, 'https://ror.org/05w2bg973 Wasatch Molecular (United States)'), (34940, 'https://ror.org/05w2sen95', 'no_lang_code', 1, 'https://ror.org/05w2sen95 Della Enterprises (United States)'), (34941, 'https://ror.org/05w34fa93', 'no_lang_code', 1, 'https://ror.org/05w34fa93 ARC Technology (United States)'), (34942, 'https://ror.org/05w4c2r57', 'en', 1, 'https://ror.org/05w4c2r57 Digital Media Arts College'), (34943, 'https://ror.org/05w4yc230', 'no_lang_code', 1, 'https://ror.org/05w4yc230 Silvus Technologies (United States)'), (34944, 'https://ror.org/05w5dvb13', 'no_lang_code', 1, 'https://ror.org/05w5dvb13 General Society of Surveillance SGS (Canada)'), (34945, 'https://ror.org/05w5nnw18', 'en', 1, 'https://ror.org/05w5nnw18 International Institute for Advanced Scientific Studies "Eduardo R. Caianiello" Istituto Internazionale per gli Alti Studi Scientifici'), (34946, 'https://ror.org/05w7kkt66', 'en', 1, 'https://ror.org/05w7kkt66 American Roentgen Ray Society'), (34947, 'https://ror.org/05w9s5139', 'no_lang_code', 1, 'https://ror.org/05w9s5139 Affibody (Sweden)'), (34948, 'https://ror.org/05w9z6s63', 'sv', 1, 'https://ror.org/05w9z6s63 Swecare'), (34949, 'https://ror.org/05wbpaf14', 'en', 1, 'https://ror.org/05wbpaf14 First Affiliated Hospital of Wannan Medical College'), (34950, 'https://ror.org/05wd8g307', 'no_lang_code', 1, 'https://ror.org/05wd8g307 Omega Micro Technologies (United States)'), (34951, 'https://ror.org/05wdmgk52', 'no_lang_code', 1, 'https://ror.org/05wdmgk52 Avatar Medical (United States)'), (34952, 'https://ror.org/05wf4cy96', 'no_lang_code', 1, 'https://ror.org/05wf4cy96 YTL (United Kingdom)'), (34953, 'https://ror.org/05wga2g83', 'ms', 1, 'https://ror.org/05wga2g83 Hospital Sultanah Bahiyah'), (34954, 'https://ror.org/05wjg2334', 'no_lang_code', 1, 'https://ror.org/05wjg2334 STARR Life Sciences (United States)'), (34955, 'https://ror.org/05wmge648', 'no_lang_code', 1, 'https://ror.org/05wmge648 Lite Machines (United States)'), (34956, 'https://ror.org/05wn9at08', 'no_lang_code', 1, 'https://ror.org/05wn9at08 Yellow Island Aquaculture (Canada)'), (34957, 'https://ror.org/05wntbe07', 'no_lang_code', 1, 'https://ror.org/05wntbe07 LPA Software Solutions (United States)'), (34958, 'https://ror.org/05wr1pv20', 'no_lang_code', 1, 'https://ror.org/05wr1pv20 Advanced Energy Systems (United States)'), (34959, 'https://ror.org/05wvxzm41', 'en', 1, 'https://ror.org/05wvxzm41 Society for Imaging Informatics in Medicine'), (34960, 'https://ror.org/05wx5rz20', 'nl', 1, 'https://ror.org/05wx5rz20 Onderzoekschool Ethiek'), (34961, 'https://ror.org/05x0qkj16', 'en', 1, 'https://ror.org/05x0qkj16 Technological University Hpa-An'), (34962, 'https://ror.org/05x181c75', 'no_lang_code', 1, 'https://ror.org/05x181c75 Optonicus (United States)'), (34963, 'https://ror.org/05x6xky11', 'no_lang_code', 1, 'https://ror.org/05x6xky11 Predect (Sweden)'), (34964, 'https://ror.org/05x74wc07', 'en', 1, 'https://ror.org/05x74wc07 Dutch Inspectorate of Education Inspectie van het Onderwijs'), (34965, 'https://ror.org/05x8n1r57', 'no_lang_code', 1, 'https://ror.org/05x8n1r57 Analytical Processes Engineered Solutions (United States)'), (34966, 'https://ror.org/05x91m338', 'en', 1, 'https://ror.org/05x91m338 Norwegian Labour Movement Archives and Library'), (34967, 'https://ror.org/05x9ajk82', 'no_lang_code', 1, 'https://ror.org/05x9ajk82 Nokomis (United States)'), (34968, 'https://ror.org/05x9zm716', 'en', 1, 'https://ror.org/05x9zm716 Fourth Affiliated Hospital of Anhui Medical University 安徽医科大学第四附属医院'), (34969, 'https://ror.org/05xc28811', 'no_lang_code', 1, 'https://ror.org/05xc28811 Image Acoustics (United States)'), (34970, 'https://ror.org/05xcbaa04', 'no_lang_code', 1, 'https://ror.org/05xcbaa04 Lubricating Specialties Company (United States)'), (34971, 'https://ror.org/05xd8w204', 'en', 1, 'https://ror.org/05xd8w204 Fuzhou Neuro Psychiatric Hospital'), (34972, 'https://ror.org/05xd9aq52', 'en', 1, 'https://ror.org/05xd9aq52 Ohio Environmental Protection Agency'), (34973, 'https://ror.org/05xf0vz59', 'no_lang_code', 1, 'https://ror.org/05xf0vz59 Easy Global Market (France)'), (34974, 'https://ror.org/05xj3t215', 'en', 1, 'https://ror.org/05xj3t215 American Neurotology Society'), (34975, 'https://ror.org/05xkm9j63', 'en', 1, 'https://ror.org/05xkm9j63 Institute for Christian Works'), (34976, 'https://ror.org/05xkzd182', 'en', 1, 'https://ror.org/05xkzd182 Directorate General of Health Services'), (34977, 'https://ror.org/05xnsh975', 'en', 1, 'https://ror.org/05xnsh975 Maddie''s Fund'), (34978, 'https://ror.org/05xpbrb70', 'en', 1, 'https://ror.org/05xpbrb70 Karl-Adam Bonnier Foundation'), (34979, 'https://ror.org/05xsj9862', 'no_lang_code', 1, 'https://ror.org/05xsj9862 Emerging Concepts (United States)'), (34980, 'https://ror.org/05xsw6b79', 'no_lang_code', 1, 'https://ror.org/05xsw6b79 Aralia Systems (United Kingdom)'), (34981, 'https://ror.org/05xv7s149', 'no_lang_code', 1, 'https://ror.org/05xv7s149 Bioscience (Slovakia)'), (34982, 'https://ror.org/05xwwfy96', 'en', 1, 'https://ror.org/05xwwfy96 German National Academic Foundation Studienstiftung des deutschen Volkes'), (34983, 'https://ror.org/05xwxtv51', 'no_lang_code', 1, 'https://ror.org/05xwxtv51 PHDS (United States)'), (34984, 'https://ror.org/05xxpak83', 'no_lang_code', 1, 'https://ror.org/05xxpak83 Cognimatics (Sweden)'), (34985, 'https://ror.org/05xyq8x40', 'no_lang_code', 1, 'https://ror.org/05xyq8x40 SCS Engineers (United States)'), (34986, 'https://ror.org/05xzvxw52', 'es', 1, 'https://ror.org/05xzvxw52 Universidad Aeronáutica en Querétaro'), (34987, 'https://ror.org/05y0vh566', 'en', 1, 'https://ror.org/05y0vh566 Global Solutions for Infectious Diseases'), (34988, 'https://ror.org/05y1kkq06', 'en', 1, 'https://ror.org/05y1kkq06 Centre for Health Equity Studies'), (34989, 'https://ror.org/05y5f7345', 'en', 1, 'https://ror.org/05y5f7345 Oxfordshire Clinical Commissioning Group'), (34990, 'https://ror.org/05y6gdf04', 'no_lang_code', 1, 'https://ror.org/05y6gdf04 AZ Technology (United States)'), (34991, 'https://ror.org/05y76jh28', 'no_lang_code', 1, 'https://ror.org/05y76jh28 Morcom International (United States)'), (34992, 'https://ror.org/05y86p525', 'no_lang_code', 1, 'https://ror.org/05y86p525 Analysis Design & Diagnostics (United States)'), (34993, 'https://ror.org/05y957z51', 'en', 1, 'https://ror.org/05y957z51 Marwell Zoo'), (34994, 'https://ror.org/05y99bn19', 'no_lang_code', 1, 'https://ror.org/05y99bn19 Cycorp (United States)'), (34995, 'https://ror.org/05ybejm06', 'no_lang_code', 1, 'https://ror.org/05ybejm06 RE2 (United States)'), (34996, 'https://ror.org/05ybkj905', 'en', 1, 'https://ror.org/05ybkj905 Cetacean Society International'), (34997, 'https://ror.org/05ydj2y02', 'no_lang_code', 1, 'https://ror.org/05ydj2y02 Advanced Systems & Technologies (United States)'), (34998, 'https://ror.org/05yekth54', 'no_lang_code', 1, 'https://ror.org/05yekth54 Finning (Canada)'), (34999, 'https://ror.org/05ygyjd33', 'en', 1, 'https://ror.org/05ygyjd33 Virginia Environmental Endowment'), (35000, 'https://ror.org/05yj6x102', 'no_lang_code', 1, 'https://ror.org/05yj6x102 Biotika (Slovakia)'), (35001, 'https://ror.org/0000pmw59', 'en', 1, 'https://ror.org/0000pmw59 Institute of Vertebrate Paleontology and Paleoanthropology 中国科学院古脊椎动物与古人类研究所'), (35002, 'https://ror.org/0000xh558', 'no_lang_code', 1, 'https://ror.org/0000xh558 BioBag (Norway)'), (35003, 'https://ror.org/0001mcx38', 'no_lang_code', 1, 'https://ror.org/0001mcx38 Opusphere (Brazil)'), (35004, 'https://ror.org/00053vy13', 'no_lang_code', 1, 'https://ror.org/00053vy13 Koyama Fukusei Hospital 神山復生病院'), (35005, 'https://ror.org/000558439', 'no_lang_code', 1, 'https://ror.org/000558439 Hydrolift (Norway)'), (35006, 'https://ror.org/000aph098', 'en', 1, 'https://ror.org/000aph098 Hainan Maternal and Child Health Hospital'), (35007, 'https://ror.org/000d6be88', 'no_lang_code', 1, 'https://ror.org/000d6be88 Linax (Brazil)'), (35008, 'https://ror.org/000d92m60', 'en', 1, 'https://ror.org/000d92m60 Midlands Provincial Hospital'), (35009, 'https://ror.org/000dj4022', 'pt', 1, 'https://ror.org/000dj4022 Fundação para o Desenvolvimento Médico e Hospitalar'), (35010, 'https://ror.org/000e19x32', 'no_lang_code', 1, 'https://ror.org/000e19x32 Kjeller Innovasjon (Norway) Kjeller Innovation'), (35011, 'https://ror.org/000e9w685', 'en', 1, 'https://ror.org/000e9w685 Tokyo College of Environment'), (35012, 'https://ror.org/000evwg49', 'en', 1, 'https://ror.org/000evwg49 Hochschule für Musik Franz Liszt Weimar University of Music FRANZ LISZT Weimar'), (35013, 'https://ror.org/000ex0h82', 'no_lang_code', 1, 'https://ror.org/000ex0h82 Maruwa Foods and Biosciences (Japan)'), (35014, 'https://ror.org/000fr0609', 'no_lang_code', 1, 'https://ror.org/000fr0609 Stangeskovene (Norway)'), (35015, 'https://ror.org/000ft5096', 'no_lang_code', 1, 'https://ror.org/000ft5096 Agricef (Brazil)'), (35016, 'https://ror.org/000j1tr86', 'en', 1, 'https://ror.org/000j1tr86 Qinghai University Affiliated Hospital 青海大学附属医院'), (35017, 'https://ror.org/000n97s94', 'no_lang_code', 1, 'https://ror.org/000n97s94 BioMaxima (Poland)'), (35018, 'https://ror.org/000nw5c60', 'en', 1, 'https://ror.org/000nw5c60 St. John''s Pleasant Valley Hospital'), (35019, 'https://ror.org/000nwzp56', 'de', 1, 'https://ror.org/000nwzp56 Stadtarchiv Erfurt'), (35020, 'https://ror.org/000pke647', 'no_lang_code', 1, 'https://ror.org/000pke647 Arctic Nutrition (Norway)'), (35021, 'https://ror.org/000pvc513', 'fr', 1, 'https://ror.org/000pvc513 Institut de Chimie de Nice'), (35022, 'https://ror.org/000q6bw04', 'no_lang_code', 1, 'https://ror.org/000q6bw04 SmartBio Tecnologia (Brazil)'), (35023, 'https://ror.org/000q9yz13', 'en', 1, 'https://ror.org/000q9yz13 University College of Agriculture and Environmental Studies'), (35024, 'https://ror.org/000qg2787', 'no_lang_code', 1, 'https://ror.org/000qg2787 Imerso (Norway)'), (35025, 'https://ror.org/000qjd183', 'no_lang_code', 1, 'https://ror.org/000qjd183 Falck Nutec (Norway)'), (35026, 'https://ror.org/000rdbk18', 'en', 1, 'https://ror.org/000rdbk18 Max Planck Institute for Empirical Aesthetics Max-Planck-Institut für Empirische Ästhetik'), (35027, 'https://ror.org/000sq7c21', 'no', 1, 'https://ror.org/000sq7c21 Norges Røde Kors Norwegian Red Cross'), (35028, 'https://ror.org/000y1tz34', 'no_lang_code', 1, 'https://ror.org/000y1tz34 Atotech (Slovenia)'), (35029, 'https://ror.org/000yesh06', 'en', 1, 'https://ror.org/000yesh06 Navodaya Dental College and Hospital'), (35030, 'https://ror.org/001122g55', 'no_lang_code', 1, 'https://ror.org/001122g55 Innolink (Finland)'), (35031, 'https://ror.org/001212e83', 'en', 1, 'https://ror.org/001212e83 Western Norway Regional Health Authority'), (35032, 'https://ror.org/0012vvx22', 'no_lang_code', 1, 'https://ror.org/0012vvx22 Kintama (Canada)'), (35033, 'https://ror.org/0013ka569', 'no_lang_code', 1, 'https://ror.org/0013ka569 Wenaas Workwear (Norway)'), (35034, 'https://ror.org/0014nwk66', 'no_lang_code', 1, 'https://ror.org/0014nwk66 Alchemy (Brazil)'), (35035, 'https://ror.org/00169ff80', 'en', 1, 'https://ror.org/00169ff80 Sturgeon Community Hospital'), (35036, 'https://ror.org/0016atv87', 'en', 1, 'https://ror.org/0016atv87 Nantong Maternity and Child Health Hospital'), (35037, 'https://ror.org/0018abm07', 'en', 1, 'https://ror.org/0018abm07 PSB College Vietnam'), (35038, 'https://ror.org/0019g5792', 'en', 1, 'https://ror.org/0019g5792 Taksim Alman Hastanesi Taksim German Hospital'), (35039, 'https://ror.org/001bbwj30', 'it', 1, 'https://ror.org/001bbwj30 Azienda Sanitaria Unità Locale di Reggio Emilia'), (35040, 'https://ror.org/001bdqp77', 'no_lang_code', 1, 'https://ror.org/001bdqp77 Belver Brasil Instrumentos (Brazil)'), (35041, 'https://ror.org/001dr7z09', 'no_lang_code', 1, 'https://ror.org/001dr7z09 Senshio Rifu hospital'), (35042, 'https://ror.org/001dvq796', 'no', 1, 'https://ror.org/001dvq796 Hemne Kommune'), (35043, 'https://ror.org/001dwsq82', 'no_lang_code', 1, 'https://ror.org/001dwsq82 Pleat (Norway)'), (35044, 'https://ror.org/001e5z833', 'en', 1, 'https://ror.org/001e5z833 Wuqing District People''s Hospital'), (35045, 'https://ror.org/001g8x550', 'no_lang_code', 1, 'https://ror.org/001g8x550 Solum Forlag (Norway)'), (35046, 'https://ror.org/001g9gn21', 'pt', 1, 'https://ror.org/001g9gn21 Faculdade Brasil'), (35047, 'https://ror.org/001gbdr73', 'no_lang_code', 1, 'https://ror.org/001gbdr73 Beijing VDJBio (China)'), (35048, 'https://ror.org/001jrcp20', 'no_lang_code', 1, 'https://ror.org/001jrcp20 Flapres (Norway)'), (35049, 'https://ror.org/001khdx24', 'no_lang_code', 1, 'https://ror.org/001khdx24 AquaFence (Norway)'), (35050, 'https://ror.org/001nyte24', 'no_lang_code', 1, 'https://ror.org/001nyte24 Gerenciamento Tecnologia e Sistemas (Brazil)'), (35051, 'https://ror.org/001prbr35', 'no_lang_code', 1, 'https://ror.org/001prbr35 Vónin Refa (Norway)'), (35052, 'https://ror.org/001s2e926', 'no_lang_code', 1, 'https://ror.org/001s2e926 Eurofins (Norway)'), (35053, 'https://ror.org/001shqf12', 'en', 1, 'https://ror.org/001shqf12 American University of Antigua'), (35054, 'https://ror.org/001tbyf75', 'en', 1, 'https://ror.org/001tbyf75 Duchess Anna Amalia Library Herzogin Anna Amalia Bibliothek'), (35055, 'https://ror.org/001wtjx27', 'no_lang_code', 1, 'https://ror.org/001wtjx27 Tata Steel (India)'), (35056, 'https://ror.org/001yqrb02', 'de', 1, 'https://ror.org/001yqrb02 Hochschule Bremerhaven University of Applied Sciences Bremerhaven'), (35057, 'https://ror.org/00201ef63', 'de', 1, 'https://ror.org/00201ef63 Stadtarchiv Grevesmühlen'), (35058, 'https://ror.org/0021b8g40', 'no_lang_code', 1, 'https://ror.org/0021b8g40 Naviaq (Norway)'), (35059, 'https://ror.org/0021wxc35', 'no_lang_code', 1, 'https://ror.org/0021wxc35 Fjord Marin (Norway)'), (35060, 'https://ror.org/002205j24', 'no_lang_code', 1, 'https://ror.org/002205j24 GlobalMag (Brazil)'), (35061, 'https://ror.org/002273w22', 'en', 1, 'https://ror.org/002273w22 Baptist College of Health Sciences'), (35062, 'https://ror.org/00238y219', 'no_lang_code', 1, 'https://ror.org/00238y219 Blåst Film (Norway)'), (35063, 'https://ror.org/0023n0d81', 'no', 1, 'https://ror.org/0023n0d81 Øksnes Kommune'), (35064, 'https://ror.org/00254th47', 'en', 1, 'https://ror.org/00254th47 Western Isles Hospital'), (35065, 'https://ror.org/0025ymj94', 'pt', 1, 'https://ror.org/0025ymj94 Sociedade Brasileira de Ciência e Tecnologia de Alimentos'), (35066, 'https://ror.org/00262f659', 'pt', 1, 'https://ror.org/00262f659 Associação dos Geógrafos Brasileiros'), (35067, 'https://ror.org/0026mdx79', 'en', 1, 'https://ror.org/0026mdx79 Meizhou City People''s Hospital 梅州市人民医院'), (35068, 'https://ror.org/0027zt973', 'en', 1, 'https://ror.org/0027zt973 Swiss Association for Private Schools and Universities'), (35069, 'https://ror.org/0028m9f31', 'no_lang_code', 1, 'https://ror.org/0028m9f31 Comtrade (Slovenia)'), (35070, 'https://ror.org/002bjj765', 'en', 1, 'https://ror.org/002bjj765 Bantry General Hospital Ospidéal Ginearálta Bheanntraí'), (35071, 'https://ror.org/002c7zk35', 'en', 1, 'https://ror.org/002c7zk35 Eglin Air Force Base'), (35072, 'https://ror.org/002dg3j61', 'no', 1, 'https://ror.org/002dg3j61 NHO Logistikk og Transport'), (35073, 'https://ror.org/002jdaq33', 'en', 1, 'https://ror.org/002jdaq33 Division of Molecular & Cellular Biosciences'), (35074, 'https://ror.org/002jt8031', 'no_lang_code', 1, 'https://ror.org/002jt8031 PubGene (Norway)'), (35075, 'https://ror.org/002kk4g03', 'en', 1, 'https://ror.org/002kk4g03 Nkozi Hospital'), (35076, 'https://ror.org/002kp7y60', 'no_lang_code', 1, 'https://ror.org/002kp7y60 Bergen Energi (Norway)'), (35077, 'https://ror.org/002kxw589', 'no_lang_code', 1, 'https://ror.org/002kxw589 Gentros (Brazil)'), (35078, 'https://ror.org/002mm7c07', 'en', 1, 'https://ror.org/002mm7c07 Henan University Huaihe Hospital and Huaihe Clinical Institute'), (35079, 'https://ror.org/002n0by50', 'de', 1, 'https://ror.org/002n0by50 Katharinenhospital'), (35080, 'https://ror.org/002ngbk13', 'en', 1, 'https://ror.org/002ngbk13 Yeungjin College 영진전문대학'), (35081, 'https://ror.org/002npz476', 'en', 1, 'https://ror.org/002npz476 Mohak Hitech Speciality Hospital'), (35082, 'https://ror.org/002qg6270', 'no_lang_code', 1, 'https://ror.org/002qg6270 Bring (Norway)'), (35083, 'https://ror.org/002rwrx57', 'no_lang_code', 1, 'https://ror.org/002rwrx57 MOTECH Plasma (Norway)'), (35084, 'https://ror.org/002ryrd72', 'sl', 1, 'https://ror.org/002ryrd72 Pomurski muzej Murska Sobota'), (35085, 'https://ror.org/002t0k030', 'no_lang_code', 1, 'https://ror.org/002t0k030 Detec (Norway)'), (35086, 'https://ror.org/002t5m579', 'no_lang_code', 1, 'https://ror.org/002t5m579 Dinamo (Norway)'), (35087, 'https://ror.org/002td2d02', 'en', 1, 'https://ror.org/002td2d02 Hong Kong Adventist Hospital 香港港安醫院'), (35088, 'https://ror.org/002tr2c66', 'no_lang_code', 1, 'https://ror.org/002tr2c66 Nofi Tromsø (Norway)'), (35089, 'https://ror.org/002v59719', 'no_lang_code', 1, 'https://ror.org/002v59719 Idemitsu Kosan (Japan) 出光興産'), (35090, 'https://ror.org/002w0zt72', 'no_lang_code', 1, 'https://ror.org/002w0zt72 Oralls (Brazil)'), (35091, 'https://ror.org/002wqxx21', 'no_lang_code', 1, 'https://ror.org/002wqxx21 Lipidx (Norway)'), (35092, 'https://ror.org/002zf0s07', 'no_lang_code', 1, 'https://ror.org/002zf0s07 Systemløsning (Norway)'), (35093, 'https://ror.org/002zkqx49', 'en', 1, 'https://ror.org/002zkqx49 Quebec Society for the Protection of Plants Société de Protection des Plantes du Québec'), (35094, 'https://ror.org/0030apy05', 'no_lang_code', 1, 'https://ror.org/0030apy05 CoorsTek (Norway)'), (35095, 'https://ror.org/00313pn56', 'en', 1, 'https://ror.org/00313pn56 Other Side Studio'), (35096, 'https://ror.org/0032cnc36', 'en', 1, 'https://ror.org/0032cnc36 Paphos General Hospital'), (35097, 'https://ror.org/0033xm087', 'pt', 1, 'https://ror.org/0033xm087 Instituto de Estudos do Mar Almirante Paulo Moreira'), (35098, 'https://ror.org/0036ate90', 'en', 1, 'https://ror.org/0036ate90 Nuffield Orthopaedic Centre'), (35099, 'https://ror.org/0036pxz38', 'en', 1, 'https://ror.org/0036pxz38 Korean Association of Maxillofacial Plastic and Reconstructive Surgery'), (35100, 'https://ror.org/0038s7b86', 'no_lang_code', 1, 'https://ror.org/0038s7b86 Helland Møbler (Norway)'), (35101, 'https://ror.org/0038zp908', 'en', 1, 'https://ror.org/0038zp908 Institute of Genetics and Animal Biotechnology of the Polish Academy of Sciences Instytut Genetyki i Biotechnologii Zwierząt Polskiej Akademii Nauk'), (35102, 'https://ror.org/003agrv69', 'no_lang_code', 1, 'https://ror.org/003agrv69 Allstar PZL Glider (Poland)'), (35103, 'https://ror.org/003c2h870', 'pt', 1, 'https://ror.org/003c2h870 Fundação Zerbini'), (35104, 'https://ror.org/003cthx96', 'en', 1, 'https://ror.org/003cthx96 Fredrikstad Dyrehospital'), (35105, 'https://ror.org/003dc0936', 'no_lang_code', 1, 'https://ror.org/003dc0936 Sero (Norway)'), (35106, 'https://ror.org/003dgzf80', 'no_lang_code', 1, 'https://ror.org/003dgzf80 Firmenich (Norway)'), (35107, 'https://ror.org/003ednf28', 'no_lang_code', 1, 'https://ror.org/003ednf28 Norsk Hummer (Norway)'), (35108, 'https://ror.org/003f8ap84', 'en', 1, 'https://ror.org/003f8ap84 Cerro Coso Community College'), (35109, 'https://ror.org/003fgxd95', 'no_lang_code', 1, 'https://ror.org/003fgxd95 Future Solutions (Norway)'), (35110, 'https://ror.org/003fyqt13', 'pt', 1, 'https://ror.org/003fyqt13 AVM Faculdade Integrada'), (35111, 'https://ror.org/003m47s20', 'no_lang_code', 1, 'https://ror.org/003m47s20 Produs Aqua (Norway)'), (35112, 'https://ror.org/003mb7998', 'en', 1, 'https://ror.org/003mb7998 Eleanor Slater Hospital'), (35113, 'https://ror.org/003ms1470', 'no_lang_code', 1, 'https://ror.org/003ms1470 InflowControl (Norway)'), (35114, 'https://ror.org/003n39798', 'no_lang_code', 1, 'https://ror.org/003n39798 Talkped (Norway)'), (35115, 'https://ror.org/003r70w25', 'no_lang_code', 1, 'https://ror.org/003r70w25 Otechos (Norway)'), (35116, 'https://ror.org/003sdh081', 'en', 1, 'https://ror.org/003sdh081 Instytut Historii im. Tadeusza Manteuffla Tadeusz Manteuffel Institute of History'), (35117, 'https://ror.org/003t41316', 'en', 1, 'https://ror.org/003t41316 Rogaland Training & Education Centre'), (35118, 'https://ror.org/003w57e32', 'no', 1, 'https://ror.org/003w57e32 Norsk Matraps'), (35119, 'https://ror.org/003wp4g82', 'no_lang_code', 1, 'https://ror.org/003wp4g82 Norgesfôr (Norway)'), (35120, 'https://ror.org/003x1ca72', 'en', 1, 'https://ror.org/003x1ca72 Clark Art Institute Instituto de Arte Clark'), (35121, 'https://ror.org/003xfve38', 'tr', 1, 'https://ror.org/003xfve38 Ankara Mevki Asker Hastanesi'), (35122, 'https://ror.org/003xjza53', 'no_lang_code', 1, 'https://ror.org/003xjza53 Centro de Tecnologia Canavieira Sugarcane Research Center (Brazil)'), (35123, 'https://ror.org/003xvn846', 'no_lang_code', 1, 'https://ror.org/003xvn846 ZUM urban planning, design (Slovenia)'), (35124, 'https://ror.org/003xxrm77', 'en', 1, 'https://ror.org/003xxrm77 Wirral Women and Children''s Hospital'), (35125, 'https://ror.org/003y01g65', 'no_lang_code', 1, 'https://ror.org/003y01g65 4Subsea (Norway)'), (35126, 'https://ror.org/003yx8k21', 'no_lang_code', 1, 'https://ror.org/003yx8k21 Elretur (Norway)'), (35127, 'https://ror.org/0043mfh16', 'no_lang_code', 1, 'https://ror.org/0043mfh16 Integrated Detector Electronics AS (Norway)'), (35128, 'https://ror.org/0044jmf17', 'no_lang_code', 1, 'https://ror.org/0044jmf17 CFD Marine (Norway)'), (35129, 'https://ror.org/00467a196', 'no_lang_code', 1, 'https://ror.org/00467a196 Sindh Madressatul Islam University سندھ مدرسۃ الاسلام سنڌ مدرسته الاسلام'), (35130, 'https://ror.org/0047hkh43', 'en', 1, 'https://ror.org/0047hkh43 Alsalam University College كلية الشيخ محمد الكسنزان الجامعة'), (35131, 'https://ror.org/0047pk836', 'no_lang_code', 1, 'https://ror.org/0047pk836 Crevi (Norway)'), (35132, 'https://ror.org/0048mhp79', 'no_lang_code', 1, 'https://ror.org/0048mhp79 WorleyParsons (Brazil)'), (35133, 'https://ror.org/0048zyh71', 'no_lang_code', 1, 'https://ror.org/0048zyh71 AREX (Poland)'), (35134, 'https://ror.org/0049mdg50', 'no_lang_code', 1, 'https://ror.org/0049mdg50 INFOKLINIKA (Poland)'), (35135, 'https://ror.org/004cakc07', 'en', 1, 'https://ror.org/004cakc07 Norwegian Academy of Technological Sciences'), (35136, 'https://ror.org/004g4mj14', 'en', 1, 'https://ror.org/004g4mj14 Association for Electrotechnics and Automation in Industry'), (35137, 'https://ror.org/004gk0w56', 'en', 1, 'https://ror.org/004gk0w56 Gordon College, Gordon State College'), (35138, 'https://ror.org/004h6mc53', 'de', 1, 'https://ror.org/004h6mc53 Universitätsklinik Marien Hospital Herne'), (35139, 'https://ror.org/004hd5y14', 'en', 1, 'https://ror.org/004hd5y14 Leibniz Institute for Plasma Science and Technology Leibniz-Institut für Plasmaforschung und Technologie'), (35140, 'https://ror.org/004j26v17', 'en', 1, 'https://ror.org/004j26v17 Jiading District Central Hospital'), (35141, 'https://ror.org/004kgh805', 'no_lang_code', 1, 'https://ror.org/004kgh805 Amebis (Slovenia)'), (35142, 'https://ror.org/004kvma63', 'en', 1, 'https://ror.org/004kvma63 Lismore Base Hospital'), (35143, 'https://ror.org/004n2nr09', 'en', 1, 'https://ror.org/004n2nr09 Fraunhofer Institute for Physical Measurement Techniques Fraunhofer-Institut für Physikalische Messtechnik'), (35144, 'https://ror.org/004p7xa79', 'en', 1, 'https://ror.org/004p7xa79 Cowal Community Hospital'), (35145, 'https://ror.org/004q90683', 'en', 1, 'https://ror.org/004q90683 Calvin Theological Seminary'), (35146, 'https://ror.org/004qehs09', 'en', 1, 'https://ror.org/004qehs09 Quzhou City People''s Hospital'), (35147, 'https://ror.org/004r88k74', 'no_lang_code', 1, 'https://ror.org/004r88k74 Prox Dynamics (Norway)'), (35148, 'https://ror.org/004rmpj87', 'no_lang_code', 1, 'https://ror.org/004rmpj87 Light Tech (Brazil)'), (35149, 'https://ror.org/004wdwb09', 'en', 1, 'https://ror.org/004wdwb09 WellStar Douglas Hospital'), (35150, 'https://ror.org/004xrke09', 'no_lang_code', 1, 'https://ror.org/004xrke09 Halogen (Norway)'), (35151, 'https://ror.org/004yws045', 'no_lang_code', 1, 'https://ror.org/004yws045 Fjordland (Norway)'), (35152, 'https://ror.org/004z3dy70', 'no_lang_code', 1, 'https://ror.org/004z3dy70 Polski Holding Obronny (Poland)'), (35153, 'https://ror.org/0055ya375', 'no_lang_code', 1, 'https://ror.org/0055ya375 MGGP Aero (Poland)'), (35154, 'https://ror.org/0056jcm84', 'en', 1, 'https://ror.org/0056jcm84 National Hospital'), (35155, 'https://ror.org/0057m5255', 'no_lang_code', 1, 'https://ror.org/0057m5255 JEOL (United States)'), (35156, 'https://ror.org/0057mbc31', 'en', 1, 'https://ror.org/0057mbc31 Windsor Regional Hospital'), (35157, 'https://ror.org/005c74108', 'de', 1, 'https://ror.org/005c74108 Polymet Jena'), (35158, 'https://ror.org/005ckkn56', 'no_lang_code', 1, 'https://ror.org/005ckkn56 Demetrix (Poland)'), (35159, 'https://ror.org/005cxvy66', 'no_lang_code', 1, 'https://ror.org/005cxvy66 PB Online (Poland)'), (35160, 'https://ror.org/005czd885', 'no_lang_code', 1, 'https://ror.org/005czd885 Simlink (Norway)'), (35161, 'https://ror.org/005dgnw92', 'en', 1, 'https://ror.org/005dgnw92 Austin Presbyterian Theological Seminary'), (35162, 'https://ror.org/005fhb985', 'no_lang_code', 1, 'https://ror.org/005fhb985 Båtservice (Norway)'), (35163, 'https://ror.org/005jwm150', 'no_lang_code', 1, 'https://ror.org/005jwm150 Grupo Guaçu (Brazil)'), (35164, 'https://ror.org/005pn5z34', 'en', 1, 'https://ror.org/005pn5z34 Federal Institute of São Paulo Instituto Federal de Educação, Ciência e Tecnologia de São Paulo'), (35165, 'https://ror.org/005td0w95', 'es', 1, 'https://ror.org/005td0w95 Hospital Psiquiatrico Infantil Juan N Navarro'), (35166, 'https://ror.org/005tsjq27', 'en', 1, 'https://ror.org/005tsjq27 Las Positas College'), (35167, 'https://ror.org/005x6cs54', 'no_lang_code', 1, 'https://ror.org/005x6cs54 Nanocore (Brazil)'), (35168, 'https://ror.org/005x7q366', 'en', 1, 'https://ror.org/005x7q366 PIH Health Hospital'), (35169, 'https://ror.org/00632ee91', 'no_lang_code', 1, 'https://ror.org/00632ee91 Polonia Aero (Poland)'), (35170, 'https://ror.org/0063fxv95', 'no_lang_code', 1, 'https://ror.org/0063fxv95 Semenarna (Slovenia)'), (35171, 'https://ror.org/00640dd83', 'no_lang_code', 1, 'https://ror.org/00640dd83 Lexikon Editora Digital (Brazil)'), (35172, 'https://ror.org/0065vqr08', 'no_lang_code', 1, 'https://ror.org/0065vqr08 Mobiletech (Norway)'), (35173, 'https://ror.org/0066ttc69', 'no_lang_code', 1, 'https://ror.org/0066ttc69 NorgesGruppen (Norway)'), (35174, 'https://ror.org/00673mt18', 'en', 1, 'https://ror.org/00673mt18 North Okkalapa General Hospital မြောက် ဥက္ကလာပဆေးရုံ'), (35175, 'https://ror.org/0067rre51', 'no_lang_code', 1, 'https://ror.org/0067rre51 EcoZON (Brazil)'), (35176, 'https://ror.org/006a04p80', 'en', 1, 'https://ror.org/006a04p80 Dodge City Community College'), (35177, 'https://ror.org/006ajxc32', 'en', 1, 'https://ror.org/006ajxc32 Xiaochang People''s Hospital 孝昌县第一人民医院'); INSERT INTO `rors` VALUES (35178, 'https://ror.org/006f4gp05', 'no_lang_code', 1, 'https://ror.org/006f4gp05 Deltagruppen (Norway)'), (35179, 'https://ror.org/006fh5g40', 'en', 1, 'https://ror.org/006fh5g40 Lipetsk State Technical University'), (35180, 'https://ror.org/006gt3q68', 'no_lang_code', 1, 'https://ror.org/006gt3q68 DeAmp (Norway)'), (35181, 'https://ror.org/006hmqw32', 'no', 1, 'https://ror.org/006hmqw32 AksjeNorge'), (35182, 'https://ror.org/006hvpn82', 'en', 1, 'https://ror.org/006hvpn82 Islamic Azad University of Shahreza'), (35183, 'https://ror.org/006je8v76', 'fr', 1, 'https://ror.org/006je8v76 Institut de Biochimie et Biophysique Moléculaire et Cellulaire'), (35184, 'https://ror.org/006mjdb74', 'no_lang_code', 1, 'https://ror.org/006mjdb74 Miriam (Norway)'), (35185, 'https://ror.org/006p8df44', 'en', 1, 'https://ror.org/006p8df44 AMRI Hospitals'), (35186, 'https://ror.org/006pshn89', 'en', 1, 'https://ror.org/006pshn89 Seojeong University 서정대학교'), (35187, 'https://ror.org/006xrke70', 'no_lang_code', 1, 'https://ror.org/006xrke70 Ecological Engineering Institute'), (35188, 'https://ror.org/006xrph64', 'en', 1, 'https://ror.org/006xrph64 Central Hospital Affiliated to Shenyang Medical College'), (35189, 'https://ror.org/006z5we64', 'no', 1, 'https://ror.org/006z5we64 Salten Regionråd'), (35190, 'https://ror.org/0070zck46', 'no_lang_code', 1, 'https://ror.org/0070zck46 Aquatic Farms (United States)'), (35191, 'https://ror.org/00726et14', 'en', 1, 'https://ror.org/00726et14 West China Second University Hospital of Sichuan University'), (35192, 'https://ror.org/0072bcq84', 'no_lang_code', 1, 'https://ror.org/0072bcq84 Profvet (Norway)'), (35193, 'https://ror.org/00737wk38', 'en', 1, 'https://ror.org/00737wk38 Sai Krishna Medical College & Hospital'), (35194, 'https://ror.org/00744et58', 'no_lang_code', 1, 'https://ror.org/00744et58 Štore Steel (Slovenia)'), (35195, 'https://ror.org/00747z152', 'no_lang_code', 1, 'https://ror.org/00747z152 Hardanger Fjordfrukt (Norway)'), (35196, 'https://ror.org/00749c973', 'en', 1, 'https://ror.org/00749c973 Eastern Shore Hospital Center'), (35197, 'https://ror.org/0074zqk79', 'en', 1, 'https://ror.org/0074zqk79 Madzikane Ka Zulu Memorial Hospital'), (35198, 'https://ror.org/00753wa45', 'no_lang_code', 1, 'https://ror.org/00753wa45 Østerdalsmia (Norway)'), (35199, 'https://ror.org/0076czt51', 'no_lang_code', 1, 'https://ror.org/0076czt51 Metas (Norway)'), (35200, 'https://ror.org/0077bn238', 'en', 1, 'https://ror.org/0077bn238 Niloufer Hospital'), (35201, 'https://ror.org/007cf5b05', 'no_lang_code', 1, 'https://ror.org/007cf5b05 Star Information Systems (Norway)'), (35202, 'https://ror.org/007g4ze80', 'pt', 1, 'https://ror.org/007g4ze80 Departamento Intersindical de Estatística e Estudos Socioeconômicos'), (35203, 'https://ror.org/007gdk107', 'no_lang_code', 1, 'https://ror.org/007gdk107 Saga Welco (Norway)'), (35204, 'https://ror.org/007gm3994', 'no_lang_code', 1, 'https://ror.org/007gm3994 Selvaag Gruppen (Norway)'), (35205, 'https://ror.org/007hw6r71', 'de', 1, 'https://ror.org/007hw6r71 Archäologisches Landesmuseum Baden-Württemberg'), (35206, 'https://ror.org/007pk1x33', 'no_lang_code', 1, 'https://ror.org/007pk1x33 Lifemed (Brazil)'), (35207, 'https://ror.org/007q6cq88', 'no_lang_code', 1, 'https://ror.org/007q6cq88 Doble (Norway)'), (35208, 'https://ror.org/007s9wc50', 'no_lang_code', 1, 'https://ror.org/007s9wc50 York Osteoarchaeology (United Kingdom)'), (35209, 'https://ror.org/007sqfz40', 'no_lang_code', 1, 'https://ror.org/007sqfz40 PricewaterhouseCoopers (Norway)'), (35210, 'https://ror.org/007ssvs37', 'no_lang_code', 1, 'https://ror.org/007ssvs37 Seashell (Norway)'), (35211, 'https://ror.org/007svmx82', 'en', 1, 'https://ror.org/007svmx82 Caldwell Memorial Hospital'), (35212, 'https://ror.org/007vzwm62', 'en', 1, 'https://ror.org/007vzwm62 Northern College'), (35213, 'https://ror.org/007x12q48', 'en', 1, 'https://ror.org/007x12q48 Central Carolina Community College'), (35214, 'https://ror.org/007xs6t35', 'en', 1, 'https://ror.org/007xs6t35 Community College of Aurora'), (35215, 'https://ror.org/007z4mw61', 'en', 1, 'https://ror.org/007z4mw61 Bakırköy Psychiatric Hospital'), (35216, 'https://ror.org/00803nh20', 'en', 1, 'https://ror.org/00803nh20 Runde Environmental Centre'), (35217, 'https://ror.org/0082dha77', 'en', 1, 'https://ror.org/0082dha77 Logan Hospital'), (35218, 'https://ror.org/0082w0p19', 'en', 1, 'https://ror.org/0082w0p19 Northridge Hospital Medical Center'), (35219, 'https://ror.org/008533323', 'no_lang_code', 1, 'https://ror.org/008533323 Thermolab (Poland)'), (35220, 'https://ror.org/0086rk289', 'en', 1, 'https://ror.org/0086rk289 Łukasiewicz Instytut Napędów i Maszyn Elektrycznych KOMEL Łukasiewicz Research Network - Institute of Electrical Drives & Machines KOMEL'), (35221, 'https://ror.org/0086skx40', 'en', 1, 'https://ror.org/0086skx40 Adana Hospital'), (35222, 'https://ror.org/00884mc13', 'no_lang_code', 1, 'https://ror.org/00884mc13 Cupp Computing (Norway)'), (35223, 'https://ror.org/008etp691', 'no_lang_code', 1, 'https://ror.org/008etp691 GlucoSet (Norway)'), (35224, 'https://ror.org/008j9bq89', 'fi', 1, 'https://ror.org/008j9bq89 Länsi-Pohjan Sairaanhoitopiirin Kuntayhtymä'), (35225, 'https://ror.org/008n8dd57', 'en', 1, 'https://ror.org/008n8dd57 Leibniz Institute for Science and Mathematics Education Leibniz-Institut für die Pädagogik der Naturwissenschaften und Mathematik'), (35226, 'https://ror.org/008neaz95', 'no_lang_code', 1, 'https://ror.org/008neaz95 Episcenter (Slovenia)'), (35227, 'https://ror.org/008nfm327', 'en', 1, 'https://ror.org/008nfm327 Aditya Jyot Eye Hospital'), (35228, 'https://ror.org/008nqpv19', 'pt', 1, 'https://ror.org/008nqpv19 Santa Casa da Misericórdia de Bragança Paulista'), (35229, 'https://ror.org/008ny3111', 'en', 1, 'https://ror.org/008ny3111 K.S. Hegde Hospital ಜಸ್ಟೀಸ್ ಕೆ.ಎಸ್ ಹೆಗ್ಡೆ ಆಸ್ಪತ್ರೆ'), (35230, 'https://ror.org/008p6rr25', 'en', 1, 'https://ror.org/008p6rr25 Huanghe Science and Technology College 黄河科技学院'), (35231, 'https://ror.org/008qm8389', 'no', 1, 'https://ror.org/008qm8389 Norsk Skogmuseum'), (35232, 'https://ror.org/008qzvt03', 'no_lang_code', 1, 'https://ror.org/008qzvt03 Inaq (Norway)'), (35233, 'https://ror.org/008rxa151', 'no_lang_code', 1, 'https://ror.org/008rxa151 Infrared Clinical Cancer Diagnostics (Norway)'), (35234, 'https://ror.org/008stff69', 'no_lang_code', 1, 'https://ror.org/008stff69 Blue Planet (Norway)'), (35235, 'https://ror.org/008t32k41', 'en', 1, 'https://ror.org/008t32k41 Hun School of Princeton'), (35236, 'https://ror.org/008trbz07', 'en', 1, 'https://ror.org/008trbz07 Hospital Tuaran Tuaran Hospital'), (35237, 'https://ror.org/008vpwk50', 'no_lang_code', 1, 'https://ror.org/008vpwk50 Victoria Hospital'), (35238, 'https://ror.org/008wzyk06', 'en', 1, 'https://ror.org/008wzyk06 Hélio Alonso University'), (35239, 'https://ror.org/008x0kw97', 'no_lang_code', 1, 'https://ror.org/008x0kw97 Inventi (Norway)'), (35240, 'https://ror.org/008y17h10', 'no_lang_code', 1, 'https://ror.org/008y17h10 Retriev Technologies (United States)'), (35241, 'https://ror.org/008zn4267', 'en', 1, 'https://ror.org/008zn4267 Mid Coast Hospital'), (35242, 'https://ror.org/0091yh482', 'en', 1, 'https://ror.org/0091yh482 Institute of Health Services and Policy Research'), (35243, 'https://ror.org/0092pe568', 'en', 1, 'https://ror.org/0092pe568 Community Hospital of San Bernardino'), (35244, 'https://ror.org/00930df66', 'no_lang_code', 1, 'https://ror.org/00930df66 Ulefos Esco (Norway)'), (35245, 'https://ror.org/00936hn50', 'no_lang_code', 1, 'https://ror.org/00936hn50 Gepco (Brazil)'), (35246, 'https://ror.org/0093x0153', 'en', 1, 'https://ror.org/0093x0153 American Association of Pharmaceutical Scientists'), (35247, 'https://ror.org/0094sxw24', 'no_lang_code', 1, 'https://ror.org/0094sxw24 InnoCentive (United States)'), (35248, 'https://ror.org/0095jfr46', 'no_lang_code', 1, 'https://ror.org/0095jfr46 IKT Indre Namdal (Norway)'), (35249, 'https://ror.org/0097rw043', 'no_lang_code', 1, 'https://ror.org/0097rw043 Taoka Hospital'), (35250, 'https://ror.org/00980wf60', 'no_lang_code', 1, 'https://ror.org/00980wf60 Tecnovip (Brazil)'), (35251, 'https://ror.org/00989y104', 'en', 1, 'https://ror.org/00989y104 New Century International Hospital for Children'), (35252, 'https://ror.org/0098fsf52', 'pt', 1, 'https://ror.org/0098fsf52 Serviço Autônomo de Água e Esgoto de Jaboticabal'), (35253, 'https://ror.org/009ag0z22', 'no_lang_code', 1, 'https://ror.org/009ag0z22 Toshima Manufacturing (Japan)'), (35254, 'https://ror.org/009aksf94', 'no_lang_code', 1, 'https://ror.org/009aksf94 Vejthani Hospital'), (35255, 'https://ror.org/009bjed14', 'en', 1, 'https://ror.org/009bjed14 Goodwin College'), (35256, 'https://ror.org/009egh542', 'no_lang_code', 1, 'https://ror.org/009egh542 Calera (United States)'), (35257, 'https://ror.org/009kef261', 'pt', 1, 'https://ror.org/009kef261 Instituto Universitário de Pesquisas do Rio de Janeiro'), (35258, 'https://ror.org/009mn4a13', 'no_lang_code', 1, 'https://ror.org/009mn4a13 Energy Restructuring Agency (Slovenia)'), (35259, 'https://ror.org/009mq9d73', 'en', 1, 'https://ror.org/009mq9d73 Agence universitaire de la Francophonie Francophone University Association'), (35260, 'https://ror.org/009nmab38', 'en', 1, 'https://ror.org/009nmab38 World Allergy Organization'), (35261, 'https://ror.org/009p5nb11', 'fr', 1, 'https://ror.org/009p5nb11 Centre de Référence Déficits Immunitaires Héréditaires'), (35262, 'https://ror.org/009r3dd41', 'no_lang_code', 1, 'https://ror.org/009r3dd41 CVS Mobile (Slovenia)'), (35263, 'https://ror.org/009rsfm47', 'no_lang_code', 1, 'https://ror.org/009rsfm47 Medieoperatørene (Norway)'), (35264, 'https://ror.org/009ssz662', 'en', 1, 'https://ror.org/009ssz662 Shenzhen Occupational Disease Prevention Hospital'), (35265, 'https://ror.org/009tejc24', 'no_lang_code', 1, 'https://ror.org/009tejc24 Zaptec (Norway)'), (35266, 'https://ror.org/009vyay43', 'no_lang_code', 1, 'https://ror.org/009vyay43 Stavanger Health Research (Norway)'), (35267, 'https://ror.org/009wzft49', 'en', 1, 'https://ror.org/009wzft49 Norwegian Hydrogen Forum'), (35268, 'https://ror.org/009xa9473', 'en', 1, 'https://ror.org/009xa9473 Arrow Lakes Hospital'), (35269, 'https://ror.org/00a0d6g98', 'no_lang_code', 1, 'https://ror.org/00a0d6g98 Mhnano (Brazil)'), (35270, 'https://ror.org/00a1sfb75', 'en', 1, 'https://ror.org/00a1sfb75 Fhrai Institute of Hospitality Management'), (35271, 'https://ror.org/00a2gj556', 'en', 1, 'https://ror.org/00a2gj556 Martina Hansens Hospital'), (35272, 'https://ror.org/00a39qp34', 'no_lang_code', 1, 'https://ror.org/00a39qp34 Movation (Norway)'), (35273, 'https://ror.org/00a3jhq22', 'no', 1, 'https://ror.org/00a3jhq22 Re Kommune'), (35274, 'https://ror.org/00a5p2894', 'no_lang_code', 1, 'https://ror.org/00a5p2894 Komga Hospital'), (35275, 'https://ror.org/00a6rw165', 'en', 1, 'https://ror.org/00a6rw165 Fraunhofer Institute for High Frequency Physics and Radar Techniques Fraunhofer-Institut für Hochfrequenzphysik und Radartechnik'), (35276, 'https://ror.org/00a7y2r22', 'en', 1, 'https://ror.org/00a7y2r22 Reiss Engelhorn Museum Reiss-Engelhorn-Museen'), (35277, 'https://ror.org/00a84en41', 'no_lang_code', 1, 'https://ror.org/00a84en41 Mari Petroleum Company (Pakistan)'), (35278, 'https://ror.org/00a9g0t62', 'no_lang_code', 1, 'https://ror.org/00a9g0t62 Flatsetsund Engineering (Norway)'), (35279, 'https://ror.org/00aaeae98', 'no_lang_code', 1, 'https://ror.org/00aaeae98 XTronica (Norway)'), (35280, 'https://ror.org/00aagcd70', 'no_lang_code', 1, 'https://ror.org/00aagcd70 Calpro (Norway)'), (35281, 'https://ror.org/00abh5k34', 'no_lang_code', 1, 'https://ror.org/00abh5k34 Mizushima Central Hospital'), (35282, 'https://ror.org/00acxsg16', 'no_lang_code', 1, 'https://ror.org/00acxsg16 Herbicat (Brazil)'), (35283, 'https://ror.org/00aeqjw83', 'en', 1, 'https://ror.org/00aeqjw83 Jessie McPherson Private Hospital'), (35284, 'https://ror.org/00af5g613', 'no_lang_code', 1, 'https://ror.org/00af5g613 SMM production systems (Slovenia)'), (35285, 'https://ror.org/00afava75', 'no_lang_code', 1, 'https://ror.org/00afava75 IQX-Inove Qualyx (Brazil)'), (35286, 'https://ror.org/00ag1gh03', 'en', 1, 'https://ror.org/00ag1gh03 WhaleSafari'), (35287, 'https://ror.org/00agykx25', 'no_lang_code', 1, 'https://ror.org/00agykx25 Hydal Aluminium Profiler (Norway)'), (35288, 'https://ror.org/00ajd9b21', 'en', 1, 'https://ror.org/00ajd9b21 Western Galilee College המכללה האקדמית גליל מערבי'), (35289, 'https://ror.org/00ajvp903', 'no_lang_code', 1, 'https://ror.org/00ajvp903 Cofimvaba Hospital'), (35290, 'https://ror.org/00akpdm49', 'de', 1, 'https://ror.org/00akpdm49 Ludwig Forum für Internationale Kunst'), (35291, 'https://ror.org/00an0xj57', 'no_lang_code', 1, 'https://ror.org/00an0xj57 Taro Pharmaceuticals (Canada)'), (35292, 'https://ror.org/00an7dj71', 'no_lang_code', 1, 'https://ror.org/00an7dj71 Wickman Spacecraft & Propulsion Company (United States)'), (35293, 'https://ror.org/00aphdz18', 'no_lang_code', 1, 'https://ror.org/00aphdz18 Morgan Stanley (United States)'), (35294, 'https://ror.org/00asd2k77', 'no_lang_code', 1, 'https://ror.org/00asd2k77 Comsol (United States)'), (35295, 'https://ror.org/00at1a685', 'no_lang_code', 1, 'https://ror.org/00at1a685 Poseidon (Norway)'), (35296, 'https://ror.org/00atz9x05', 'no', 1, 'https://ror.org/00atz9x05 Cultura Bank'), (35297, 'https://ror.org/00aw48305', 'en', 1, 'https://ror.org/00aw48305 Sri Venkateswara Veterinary University శ్రీ వేంకటేశ్వర పశువైద్య విశ్వవిద్యాలయం, తిరుపతి'), (35298, 'https://ror.org/00awmjf06', 'no_lang_code', 1, 'https://ror.org/00awmjf06 Vibhavadi Hospital'), (35299, 'https://ror.org/00awpxt48', 'no_lang_code', 1, 'https://ror.org/00awpxt48 Applica Test & Certification (Norway)'), (35300, 'https://ror.org/00aycwa77', 'no_lang_code', 1, 'https://ror.org/00aycwa77 Fibraforte (Brazil)'), (35301, 'https://ror.org/00azt0581', 'no_lang_code', 1, 'https://ror.org/00azt0581 BT Signaal (Norway)'), (35302, 'https://ror.org/00b0jsn50', 'en', 1, 'https://ror.org/00b0jsn50 Cape Breton Regional Hospital'), (35303, 'https://ror.org/00b0t5r83', 'de', 1, 'https://ror.org/00b0t5r83 Kunst- und Museumsbibliothek der Stadt Köln'), (35304, 'https://ror.org/00b0x7350', 'no_lang_code', 1, 'https://ror.org/00b0x7350 Igmat (Slovenia)'), (35305, 'https://ror.org/00b1cv365', 'no_lang_code', 1, 'https://ror.org/00b1cv365 Grønt Punkt Norge (Norway)'), (35306, 'https://ror.org/00b26s419', 'en', 1, 'https://ror.org/00b26s419 Providence Milwaukie Hospital'), (35307, 'https://ror.org/00b2b8c41', 'en', 1, 'https://ror.org/00b2b8c41 Hospital Kajang Kajang Hospital'), (35308, 'https://ror.org/00b2xnk27', 'en', 1, 'https://ror.org/00b2xnk27 Lviv City Children''s Hospital'), (35309, 'https://ror.org/00b4pqy74', 'no_lang_code', 1, 'https://ror.org/00b4pqy74 Military Communication Works No 2 (Poland)'), (35310, 'https://ror.org/00b6j6x40', 'en', 1, 'https://ror.org/00b6j6x40 International Psychoanalytic University Berlin'), (35311, 'https://ror.org/00b9tfp03', 'pt', 1, 'https://ror.org/00b9tfp03 Assembleia Legislativa de São Paulo'), (35312, 'https://ror.org/00bckke66', 'pt', 1, 'https://ror.org/00bckke66 Associação dos Floricultores da Região da Via Dutra'), (35313, 'https://ror.org/00bcxky47', 'no_lang_code', 1, 'https://ror.org/00bcxky47 Scale Protection (Norway)'), (35314, 'https://ror.org/00bdnn422', 'no_lang_code', 1, 'https://ror.org/00bdnn422 Seatrans (Norway)'), (35315, 'https://ror.org/00bdqv395', 'en', 1, 'https://ror.org/00bdqv395 District Headquarters Hospital Battagram مرکزی ضلع ہسپتال بٹگرام'), (35316, 'https://ror.org/00be2mx71', 'no_lang_code', 1, 'https://ror.org/00be2mx71 Gorenjska Predilnica (Slovenia)'), (35317, 'https://ror.org/00bfqf394', 'no', 1, 'https://ror.org/00bfqf394 Karasjok Kommune'), (35318, 'https://ror.org/00bg5ds86', 'no_lang_code', 1, 'https://ror.org/00bg5ds86 JointBiomed (Norway)'), (35319, 'https://ror.org/00bj5yr20', 'no_lang_code', 1, 'https://ror.org/00bj5yr20 Mesko (Poland)'), (35320, 'https://ror.org/00bkc1729', 'en', 1, 'https://ror.org/00bkc1729 Ministry of Planning, Budget and Management Ministério do Planejamento, Orçamento, e Gestão'), (35321, 'https://ror.org/00bkgf580', 'pt', 1, 'https://ror.org/00bkgf580 Fundação de Apoio à Universidade Federal de São Paulo'), (35322, 'https://ror.org/00bm58p15', 'en', 1, 'https://ror.org/00bm58p15 Santa Ynez Valley Cottage Hospital'), (35323, 'https://ror.org/00bmjpn60', 'no_lang_code', 1, 'https://ror.org/00bmjpn60 Bandwidth10 (United States)'), (35324, 'https://ror.org/00bneyt76', 'en', 1, 'https://ror.org/00bneyt76 Raiganj University'), (35325, 'https://ror.org/00bpk6053', 'en', 1, 'https://ror.org/00bpk6053 Orentreich Foundation for the Advancement of Science'), (35326, 'https://ror.org/00bpta863', 'de', 1, 'https://ror.org/00bpta863 Leibniz-Zentrum für Literatur- und Kulturforschung'), (35327, 'https://ror.org/00brmyn57', 'en', 1, 'https://ror.org/00brmyn57 Xinhui People''s Hospital'), (35328, 'https://ror.org/00bsg1308', 'no_lang_code', 1, 'https://ror.org/00bsg1308 Seram Coatings (Norway)'), (35329, 'https://ror.org/00bxnjh68', 'no_lang_code', 1, 'https://ror.org/00bxnjh68 Hunton Fiber (Norway)'), (35330, 'https://ror.org/00by0d563', 'no_lang_code', 1, 'https://ror.org/00by0d563 RPR Technologies (Norway)'), (35331, 'https://ror.org/00by76g53', 'no_lang_code', 1, 'https://ror.org/00by76g53 Fish Pool (Norway)'), (35332, 'https://ror.org/00bzyh805', 'no_lang_code', 1, 'https://ror.org/00bzyh805 Dinamo Networks (Brazil)'), (35333, 'https://ror.org/00c0xnf10', 'en', 1, 'https://ror.org/00c0xnf10 Ahmed Bin Mohammed Military College'), (35334, 'https://ror.org/00c1cxt77', 'no_lang_code', 1, 'https://ror.org/00c1cxt77 Industry Media Group (Norway)'), (35335, 'https://ror.org/00c2cek40', 'no_lang_code', 1, 'https://ror.org/00c2cek40 Betonmast (Norway)'), (35336, 'https://ror.org/00c2s7991', 'no_lang_code', 1, 'https://ror.org/00c2s7991 Glommen Skog (Norway)'), (35337, 'https://ror.org/00c3hyn70', 'no_lang_code', 1, 'https://ror.org/00c3hyn70 Robot Aviation (Norway)'), (35338, 'https://ror.org/00c3nj152', 'no_lang_code', 1, 'https://ror.org/00c3nj152 Sea Urchin Farm (Norway)'), (35339, 'https://ror.org/00c652853', 'no_lang_code', 1, 'https://ror.org/00c652853 Data Respons (Norway)'), (35340, 'https://ror.org/00c6b0p07', 'pt', 1, 'https://ror.org/00c6b0p07 Instituto Internacional de Ciencias Sociais'), (35341, 'https://ror.org/00c6b0t92', 'no_lang_code', 1, 'https://ror.org/00c6b0t92 Autocomp Management (Poland)'), (35342, 'https://ror.org/00c8gax70', 'en', 1, 'https://ror.org/00c8gax70 Queen Elizabeth II Jubilee Hospital'), (35343, 'https://ror.org/00c92tc34', 'no_lang_code', 1, 'https://ror.org/00c92tc34 Viking Development Group (Norway)'), (35344, 'https://ror.org/00c99c668', 'en', 1, 'https://ror.org/00c99c668 Akershus County Council'), (35345, 'https://ror.org/00c9dk124', 'no_lang_code', 1, 'https://ror.org/00c9dk124 Forskning.no (Norway)'), (35346, 'https://ror.org/00ca9p538', 'es', 1, 'https://ror.org/00ca9p538 Instituto Tecnológico de Querétaro Technological Institute of Querétaro'), (35347, 'https://ror.org/00caaxe50', 'no_lang_code', 1, 'https://ror.org/00caaxe50 Idex (Norway)'), (35348, 'https://ror.org/00cadpz88', 'no_lang_code', 1, 'https://ror.org/00cadpz88 Enigma Systemy Ochrony Informacji (Poland)'), (35349, 'https://ror.org/00cafag88', 'no_lang_code', 1, 'https://ror.org/00cafag88 Vitex (Brazil)'), (35350, 'https://ror.org/00cb94380', 'no', 1, 'https://ror.org/00cb94380 Valnesfjord Helsesportssenter'), (35351, 'https://ror.org/00ccgr484', 'pt', 1, 'https://ror.org/00ccgr484 Real Hospital Português'), (35352, 'https://ror.org/00cd60776', 'no_lang_code', 1, 'https://ror.org/00cd60776 Animaze Technology (Norway)'), (35353, 'https://ror.org/00cdxfz76', 'en', 1, 'https://ror.org/00cdxfz76 Brattleboro Memorial Hospital'), (35354, 'https://ror.org/00cgmd914', 'no_lang_code', 1, 'https://ror.org/00cgmd914 Siemens (Norway)'), (35355, 'https://ror.org/00chm8v09', 'pt', 1, 'https://ror.org/00chm8v09 Departamento Nacional de Produção Mineral'), (35356, 'https://ror.org/00cj6df44', 'en', 1, 'https://ror.org/00cj6df44 Cloete Joubert Hospital'), (35357, 'https://ror.org/00cm1b035', 'no_lang_code', 1, 'https://ror.org/00cm1b035 Prombiom Tecnologia (Brazil)'), (35358, 'https://ror.org/00cm8fy76', 'en', 1, 'https://ror.org/00cm8fy76 Institute of Mediterranean and Oriental Cultures Instytut Kultur Śródziemnomorskich i Orientalnych Polskiej Akademii Nauk'), (35359, 'https://ror.org/00cn03n83', 'en', 1, 'https://ror.org/00cn03n83 Technology and Engineering Center for Space Utilization 中国科学院空间应用工程与技术中心'), (35360, 'https://ror.org/00cndk772', 'no_lang_code', 1, 'https://ror.org/00cndk772 Icon (United Kingdom)'), (35361, 'https://ror.org/00cpsd622', 'en', 1, 'https://ror.org/00cpsd622 Lilly Endowment'), (35362, 'https://ror.org/00csq2k70', 'en', 1, 'https://ror.org/00csq2k70 Fraunhofer Institute for High-Speed Dynamics, Ernst-Mach-Institut Fraunhofer-Institut für Kurzzeitdynamik, Ernst-Mach-Institut'), (35363, 'https://ror.org/00cv5j742', 'no_lang_code', 1, 'https://ror.org/00cv5j742 Fabryka Armatur Swarzędz (Poland)'), (35364, 'https://ror.org/00cw5w418', 'no_lang_code', 1, 'https://ror.org/00cw5w418 Eletro Máquinas Comércio e Representações (Brazil)'), (35365, 'https://ror.org/00cwj5e90', 'en', 1, 'https://ror.org/00cwj5e90 Government Royapettah Hospital'), (35366, 'https://ror.org/00cwj5j78', 'no_lang_code', 1, 'https://ror.org/00cwj5j78 Tele-Com (Norway)'), (35367, 'https://ror.org/00cx39g50', 'no_lang_code', 1, 'https://ror.org/00cx39g50 Isola (Norway)'), (35368, 'https://ror.org/00cy3ar81', 'en', 1, 'https://ror.org/00cy3ar81 People’s Hospital of Wenshan Prefecture'), (35369, 'https://ror.org/00d066w75', 'en', 1, 'https://ror.org/00d066w75 Brazilian Internet Steering Committee Comitê Gestor da Internet no Brasil'), (35370, 'https://ror.org/00d2wxy31', 'en', 1, 'https://ror.org/00d2wxy31 Jinan Maternity And Care Hospital'), (35371, 'https://ror.org/00d3ws365', 'en', 1, 'https://ror.org/00d3ws365 Aga Khan Hospital for Women'), (35372, 'https://ror.org/00d415h66', 'en', 1, 'https://ror.org/00d415h66 Palm Springs General Hospital'), (35373, 'https://ror.org/00d5dra59', 'no_lang_code', 1, 'https://ror.org/00d5dra59 KenBIT (Poland)'), (35374, 'https://ror.org/00d5e0a67', 'en', 1, 'https://ror.org/00d5e0a67 Devon General Hospital'), (35375, 'https://ror.org/00d5qfz16', 'en', 1, 'https://ror.org/00d5qfz16 Norwegian Institute of Wood Technology'), (35376, 'https://ror.org/00d64xh03', 'no_lang_code', 1, 'https://ror.org/00d64xh03 Maxeta (Norway)'), (35377, 'https://ror.org/00d65rw94', 'no_lang_code', 1, 'https://ror.org/00d65rw94 Cimos (Slovenia)'), (35378, 'https://ror.org/00dasvg19', 'no_lang_code', 1, 'https://ror.org/00dasvg19 Offshore Sensing (Norway)'), (35379, 'https://ror.org/00dbebs66', 'pt', 1, 'https://ror.org/00dbebs66 Sociedade Brasileira de Diabetes'), (35380, 'https://ror.org/00dbw6487', 'no_lang_code', 1, 'https://ror.org/00dbw6487 Damel (Poland)'), (35381, 'https://ror.org/00dc48k09', 'en', 1, 'https://ror.org/00dc48k09 Sri Narayani Hospital & Research Centre'), (35382, 'https://ror.org/00dcw5152', 'no_lang_code', 1, 'https://ror.org/00dcw5152 Teddy TV (Norway)'), (35383, 'https://ror.org/00deak765', 'no_lang_code', 1, 'https://ror.org/00deak765 Veidekke (Norway)'), (35384, 'https://ror.org/00dew5745', 'no_lang_code', 1, 'https://ror.org/00dew5745 Fjordforsk (Norway)'), (35385, 'https://ror.org/00df11c89', 'no_lang_code', 1, 'https://ror.org/00df11c89 Bach Technology (Norway)'), (35386, 'https://ror.org/00dftxz84', 'no_lang_code', 1, 'https://ror.org/00dftxz84 KFB Polska (Poland)'), (35387, 'https://ror.org/00dga6q15', 'en', 1, 'https://ror.org/00dga6q15 Dalian Jinzhou First People''s Hospital'), (35388, 'https://ror.org/00dhzdc05', 'no_lang_code', 1, 'https://ror.org/00dhzdc05 Omega Media (Norway)'), (35389, 'https://ror.org/00djq1r46', 'no_lang_code', 1, 'https://ror.org/00djq1r46 Optibrium (United Kingdom)'), (35390, 'https://ror.org/00djr0052', 'no_lang_code', 1, 'https://ror.org/00djr0052 Arkitektskap (Norway)'), (35391, 'https://ror.org/00dn6p145', 'no_lang_code', 1, 'https://ror.org/00dn6p145 kopex (Poland)'), (35392, 'https://ror.org/00dn9yd16', 'no_lang_code', 1, 'https://ror.org/00dn9yd16 Fmaiis (Brazil)'), (35393, 'https://ror.org/00dpc3e39', 'en', 1, 'https://ror.org/00dpc3e39 American Nonsmokers'' Rights Foundation'), (35394, 'https://ror.org/00dpztj76', 'en', 1, 'https://ror.org/00dpztj76 Institute of Cancer Research'), (35395, 'https://ror.org/00dpzx715', 'en', 1, 'https://ror.org/00dpzx715 Suleyman Demirel University Research and Education Hospital'), (35396, 'https://ror.org/00dqbnh70', 'no_lang_code', 1, 'https://ror.org/00dqbnh70 Goap (Slovenia)'), (35397, 'https://ror.org/00drj4p25', 'no_lang_code', 1, 'https://ror.org/00drj4p25 Optopol Technology (Slovenia)'), (35398, 'https://ror.org/00dxw3680', 'no_lang_code', 1, 'https://ror.org/00dxw3680 Move About (Norway)'), (35399, 'https://ror.org/00e0f3814', 'no_lang_code', 1, 'https://ror.org/00e0f3814 Awat (Poland)'), (35400, 'https://ror.org/00e252407', 'en', 1, 'https://ror.org/00e252407 Oasis Hospital'), (35401, 'https://ror.org/00e2n6h96', 'en', 1, 'https://ror.org/00e2n6h96 Walla Walla General Hospital'), (35402, 'https://ror.org/00e42ba10', 'en', 1, 'https://ror.org/00e42ba10 Qiongtai Teachers College'), (35403, 'https://ror.org/00e507q54', 'no_lang_code', 1, 'https://ror.org/00e507q54 Electric Dreams (Brazil)'), (35404, 'https://ror.org/00e6cpy98', 'no_lang_code', 1, 'https://ror.org/00e6cpy98 Algaetech (Norway)'), (35405, 'https://ror.org/00e6njw97', 'no_lang_code', 1, 'https://ror.org/00e6njw97 SunSense (Norway)'), (35406, 'https://ror.org/00e6xyd22', 'no_lang_code', 1, 'https://ror.org/00e6xyd22 TideTec (Norway)'), (35407, 'https://ror.org/00e7r7m66', 'en', 1, 'https://ror.org/00e7r7m66 Max Super Speciality Hospital'), (35408, 'https://ror.org/00e99cv66', 'no_lang_code', 1, 'https://ror.org/00e99cv66 Centro Hospitalar Conde de São Januário Hospital Conde S. Januário 仁伯爵综合医院'), (35409, 'https://ror.org/00e9cav63', 'en', 1, 'https://ror.org/00e9cav63 Al-Qasemi Academic College of Education'), (35410, 'https://ror.org/00e9gka57', 'no_lang_code', 1, 'https://ror.org/00e9gka57 Budimex (Poland)'), (35411, 'https://ror.org/00e9nf534', 'en', 1, 'https://ror.org/00e9nf534 Lake Taylor Transitional Care Hospital'), (35412, 'https://ror.org/00ebdgr24', 'en', 1, 'https://ror.org/00ebdgr24 Chengdu Third People''s Hospital 成都市第三人民医院'), (35413, 'https://ror.org/00ebt7309', 'pt', 1, 'https://ror.org/00ebt7309 Pro Criança Cardíaca'), (35414, 'https://ror.org/00ec1q452', 'no_lang_code', 1, 'https://ror.org/00ec1q452 Conexus (Norway)'), (35415, 'https://ror.org/00ecchs44', 'de', 1, 'https://ror.org/00ecchs44 Institut für Nanophotonik'), (35416, 'https://ror.org/00eeh3p16', 'en', 1, 'https://ror.org/00eeh3p16 Eagle Ridge Hospital'), (35417, 'https://ror.org/00egat183', 'de', 1, 'https://ror.org/00egat183 Gesellschaft zur Förderung der Naturwissenschaftlich-Technischen Forschung'), (35418, 'https://ror.org/00ehthc25', 'no_lang_code', 1, 'https://ror.org/00ehthc25 Didai Tecnologia'), (35419, 'https://ror.org/00ej99c12', 'no_lang_code', 1, 'https://ror.org/00ej99c12 Centre for Research and Development in Telecommunications (Brazil)'), (35420, 'https://ror.org/00emgcm32', 'no_lang_code', 1, 'https://ror.org/00emgcm32 Vallvi (Norway)'), (35421, 'https://ror.org/00eswsq11', 'en', 1, 'https://ror.org/00eswsq11 Rawson-Neal Hospital'), (35422, 'https://ror.org/00etk3t37', 'no_lang_code', 1, 'https://ror.org/00etk3t37 Norske Skog (Norway) Norwegian Forest Industries'), (35423, 'https://ror.org/00evszt20', 'en', 1, 'https://ror.org/00evszt20 Ford Hospital and Research Centre'), (35424, 'https://ror.org/00ex4he60', 'en', 1, 'https://ror.org/00ex4he60 Virtual High School'), (35425, 'https://ror.org/00f041n88', 'en', 1, 'https://ror.org/00f041n88 Mbarara National Referral Hospital'), (35426, 'https://ror.org/00f0wme23', 'en', 1, 'https://ror.org/00f0wme23 Livingstone Hospital'), (35427, 'https://ror.org/00f1jfy92', 'no_lang_code', 1, 'https://ror.org/00f1jfy92 DOF Subsea (Norway)'), (35428, 'https://ror.org/00f37g133', 'no', 1, 'https://ror.org/00f37g133 Norsk Matematisk Forening'), (35429, 'https://ror.org/00f4pfk27', 'pt', 1, 'https://ror.org/00f4pfk27 Instituto Penido Burnier'), (35430, 'https://ror.org/00f4x2j47', 'no_lang_code', 1, 'https://ror.org/00f4x2j47 Korporacja Wschód (Poland)'), (35431, 'https://ror.org/00f58mx93', 'en', 1, 'https://ror.org/00f58mx93 Suzhou Institute of Biomedical Engineering and Technology 中国科学院苏州生物医学工程技术研究所'), (35432, 'https://ror.org/00f656h73', 'no_lang_code', 1, 'https://ror.org/00f656h73 Asian Star Anchor Chain (China)'), (35433, 'https://ror.org/00f659030', 'en', 1, 'https://ror.org/00f659030 Bucks County Community College'), (35434, 'https://ror.org/00f72x493', 'en', 1, 'https://ror.org/00f72x493 University College of Applied Science الكلية الجامعية للعلوم التطبيقية'), (35435, 'https://ror.org/00f89q571', 'no_lang_code', 1, 'https://ror.org/00f89q571 Elsewedy Electric (Slovenia)'), (35436, 'https://ror.org/00f8nat88', 'no_lang_code', 1, 'https://ror.org/00f8nat88 Tekstina (Slovenia)'), (35437, 'https://ror.org/00f9jfw45', 'en', 1, 'https://ror.org/00f9jfw45 Tamale Teaching Hospital'), (35438, 'https://ror.org/00fbxbf55', 'en', 1, 'https://ror.org/00fbxbf55 Manjara Ayurvedic Medical College and Hospital'), (35439, 'https://ror.org/00fedxs81', 'no_lang_code', 1, 'https://ror.org/00fedxs81 LxRay (Japan)'), (35440, 'https://ror.org/00fg16924', 'no_lang_code', 1, 'https://ror.org/00fg16924 Zomega Terahertz (United States)'), (35441, 'https://ror.org/00fj2g686', 'no_lang_code', 1, 'https://ror.org/00fj2g686 Kontali (Norway)'), (35442, 'https://ror.org/00fmvp630', 'en', 1, 'https://ror.org/00fmvp630 Ospidéal Naomh Conaill St. Conal''s Psychiatric Hospital'), (35443, 'https://ror.org/00fq5tf47', 'en', 1, 'https://ror.org/00fq5tf47 Geodetic Institute of Slovenia'), (35444, 'https://ror.org/00frd8c57', 'no_lang_code', 1, 'https://ror.org/00frd8c57 Techglass (Poland)'), (35445, 'https://ror.org/00fs3p617', 'en', 1, 'https://ror.org/00fs3p617 Norwegian Institute of Journalism'), (35446, 'https://ror.org/00fs6w428', 'no_lang_code', 1, 'https://ror.org/00fs6w428 MazeMap (Norway)'), (35447, 'https://ror.org/00fst5z79', 'no', 1, 'https://ror.org/00fst5z79 Lofotrådet'), (35448, 'https://ror.org/00fsyr319', 'pt', 1, 'https://ror.org/00fsyr319 Pia Sociedade de São Paulo'), (35449, 'https://ror.org/00fts7a69', 'en', 1, 'https://ror.org/00fts7a69 Zhangqiu City People''s Hospital 章丘区人民医院'), (35450, 'https://ror.org/00fvw4t71', 'sl', 1, 'https://ror.org/00fvw4t71 Kmetijsko Gozdarski Zavod Nova Gorica'), (35451, 'https://ror.org/00fw3pm40', 'no_lang_code', 1, 'https://ror.org/00fw3pm40 Betta Tecnologia (Brazil)'), (35452, 'https://ror.org/00fweme20', 'en', 1, 'https://ror.org/00fweme20 Chinese General Hospital College of Nursing and Liberal Arts'), (35453, 'https://ror.org/00fwhek95', 'en', 1, 'https://ror.org/00fwhek95 Laboratory of Molecular Genetics'), (35454, 'https://ror.org/00fx97040', 'no_lang_code', 1, 'https://ror.org/00fx97040 Ablevision (Brazil)'), (35455, 'https://ror.org/00fxawc57', 'no_lang_code', 1, 'https://ror.org/00fxawc57 Visual Solutions (Norway)'), (35456, 'https://ror.org/00fxmev27', 'no_lang_code', 1, 'https://ror.org/00fxmev27 Axdev Group (Canada)'), (35457, 'https://ror.org/00g01gj95', 'de', 1, 'https://ror.org/00g01gj95 Marienhospital Stuttgart'), (35458, 'https://ror.org/00g1f7p91', 'en', 1, 'https://ror.org/00g1f7p91 Weisman Art Museum'), (35459, 'https://ror.org/00g212534', 'tr', 1, 'https://ror.org/00g212534 Hitit Üniversitesi Çorum Eğitim ve Araştırma Hastanesi'), (35460, 'https://ror.org/00g3h5036', 'no_lang_code', 1, 'https://ror.org/00g3h5036 Reelwell (Norway)'), (35461, 'https://ror.org/00g3szh73', 'no_lang_code', 1, 'https://ror.org/00g3szh73 Ecco Fibers (Brazil) Ecco Fibras Ópticas e Dispositivos'), (35462, 'https://ror.org/00g5afz31', 'no_lang_code', 1, 'https://ror.org/00g5afz31 Dynatec (Norway)'), (35463, 'https://ror.org/00g5hfp88', 'en', 1, 'https://ror.org/00g5hfp88 Columbia Theological Seminary'), (35464, 'https://ror.org/00g7qk458', 'no_lang_code', 1, 'https://ror.org/00g7qk458 Daihen Varstroj (Slovenia)'), (35465, 'https://ror.org/00g89bg08', 'en', 1, 'https://ror.org/00g89bg08 Serdang Hospital'), (35466, 'https://ror.org/00g8k7g33', 'en', 1, 'https://ror.org/00g8k7g33 Norwegian Academy of Science and Letters'), (35467, 'https://ror.org/00g9q3p96', 'no_lang_code', 1, 'https://ror.org/00g9q3p96 JHJ (Poland)'), (35468, 'https://ror.org/00gar9b27', 'en', 1, 'https://ror.org/00gar9b27 NorStella Foundation'), (35469, 'https://ror.org/00gbgk256', 'en', 1, 'https://ror.org/00gbgk256 MaineGeneral Medical Center'), (35470, 'https://ror.org/00gbks067', 'en', 1, 'https://ror.org/00gbks067 Norwegian Forestry Society'), (35471, 'https://ror.org/00gbs4x54', 'en', 1, 'https://ror.org/00gbs4x54 Institute for the Languages of Finland'), (35472, 'https://ror.org/00gbsxt88', 'no_lang_code', 1, 'https://ror.org/00gbsxt88 Norsk Gjenvinning (Norway)'), (35473, 'https://ror.org/00gc3ww13', 'no_lang_code', 1, 'https://ror.org/00gc3ww13 Human Factors Solutions (Norway)'), (35474, 'https://ror.org/00gdm3q19', 'en', 1, 'https://ror.org/00gdm3q19 Brazilian Dental Materials Group Grupo Brasileiro de Materiais Dentários'), (35475, 'https://ror.org/00ggs5315', 'en', 1, 'https://ror.org/00ggs5315 Woolmanhill Hospital'), (35476, 'https://ror.org/00ggx8446', 'no_lang_code', 1, 'https://ror.org/00ggx8446 Bergene Holm (Norway)'), (35477, 'https://ror.org/00gh97247', 'en', 1, 'https://ror.org/00gh97247 Mighty Penguins Sled Hockey'), (35478, 'https://ror.org/00gmcpk75', 'no_lang_code', 1, 'https://ror.org/00gmcpk75 Impetro International (Norway)'), (35479, 'https://ror.org/00gnjv286', 'no_lang_code', 1, 'https://ror.org/00gnjv286 VivID (Norway)'), (35480, 'https://ror.org/00gpwad22', 'en', 1, 'https://ror.org/00gpwad22 Samaritan North Lincoln Hospital'), (35481, 'https://ror.org/00gq58w69', 'en', 1, 'https://ror.org/00gq58w69 Brazilian Naval School Escola Naval'), (35482, 'https://ror.org/00gqs6w28', 'no_lang_code', 1, 'https://ror.org/00gqs6w28 Taxus (Poland)'), (35483, 'https://ror.org/00grb5v24', 'no_lang_code', 1, 'https://ror.org/00grb5v24 Elliptic Labs (Norway)'), (35484, 'https://ror.org/00grekx31', 'en', 1, 'https://ror.org/00grekx31 Synod Hospital'), (35485, 'https://ror.org/00gwbbj79', 'no_lang_code', 1, 'https://ror.org/00gwbbj79 Xepto (Norway)'), (35486, 'https://ror.org/00gwqq432', 'en', 1, 'https://ror.org/00gwqq432 Sherman Oaks Hospital'), (35487, 'https://ror.org/00gxg1c10', 'en', 1, 'https://ror.org/00gxg1c10 St. Helena Hospital'), (35488, 'https://ror.org/00gzhxp51', 'no_lang_code', 1, 'https://ror.org/00gzhxp51 Optimeering (Norway)'), (35489, 'https://ror.org/00h2mxm24', 'en', 1, 'https://ror.org/00h2mxm24 Paras Hospitals'), (35490, 'https://ror.org/00h600x29', 'no_lang_code', 1, 'https://ror.org/00h600x29 Seadrill (Norway)'), (35491, 'https://ror.org/00h6n4889', 'en', 1, 'https://ror.org/00h6n4889 Aviation Valley'), (35492, 'https://ror.org/00h85rj63', 'no_lang_code', 1, 'https://ror.org/00h85rj63 Ryoka Systems (Japan)'), (35493, 'https://ror.org/00h9cwn45', 'en', 1, 'https://ror.org/00h9cwn45 Computer Applications and Quantitative Methods in Archaeology'), (35494, 'https://ror.org/00ha5jx35', 'en', 1, 'https://ror.org/00ha5jx35 Haikou City People''s Hospital'), (35495, 'https://ror.org/00hb1zy68', 'en', 1, 'https://ror.org/00hb1zy68 Swedish Chemical Society'), (35496, 'https://ror.org/00hdm6c37', 'no_lang_code', 1, 'https://ror.org/00hdm6c37 Shenzhen Weiguang Biological Products (China)'), (35497, 'https://ror.org/00heqzt73', 'pt', 1, 'https://ror.org/00heqzt73 Arquivo Histórico Judaico Brasileiro'), (35498, 'https://ror.org/00het1s45', 'en', 1, 'https://ror.org/00het1s45 Forsyth Technical Community College'), (35499, 'https://ror.org/00hgq1a05', 'en', 1, 'https://ror.org/00hgq1a05 Arctic Monitoring And Assessment Programme'), (35500, 'https://ror.org/00hkhkg72', 'no_lang_code', 1, 'https://ror.org/00hkhkg72 ZEM (Norway)'), (35501, 'https://ror.org/00hn0mq04', 'en', 1, 'https://ror.org/00hn0mq04 Daelim University College 대림대학교'), (35502, 'https://ror.org/00hpvb303', 'no_lang_code', 1, 'https://ror.org/00hpvb303 Leiv Eiriksson Nyskaping (Norway)'), (35503, 'https://ror.org/00hs0rb66', 'no_lang_code', 1, 'https://ror.org/00hs0rb66 Torghatten (Norway)'), (35504, 'https://ror.org/00hscp190', 'no_lang_code', 1, 'https://ror.org/00hscp190 Capia (Norway)'), (35505, 'https://ror.org/00hvh1x59', 'en', 1, 'https://ror.org/00hvh1x59 St John of God Subiaco Hospital'), (35506, 'https://ror.org/00hwjxp97', 'no_lang_code', 1, 'https://ror.org/00hwjxp97 Pesa (Poland)'), (35507, 'https://ror.org/00hwt9s33', 'no_lang_code', 1, 'https://ror.org/00hwt9s33 St Francis’ Hospital'), (35508, 'https://ror.org/00hzhrq25', 'no_lang_code', 1, 'https://ror.org/00hzhrq25 Enoco (Norway)'), (35509, 'https://ror.org/00j0keq36', 'no_lang_code', 1, 'https://ror.org/00j0keq36 Oryza (Japan)'), (35510, 'https://ror.org/00j3kev89', 'no_lang_code', 1, 'https://ror.org/00j3kev89 Sotera Wireless (United States)'), (35511, 'https://ror.org/00j3ph269', 'no_lang_code', 1, 'https://ror.org/00j3ph269 International technology Alliance (Norway)'), (35512, 'https://ror.org/00j3qc684', 'en', 1, 'https://ror.org/00j3qc684 Ansal University'), (35513, 'https://ror.org/00j4fqt27', 'en', 1, 'https://ror.org/00j4fqt27 National Neurosciences Centre'), (35514, 'https://ror.org/00j582x21', 'no_lang_code', 1, 'https://ror.org/00j582x21 Noryards (Norway)'), (35515, 'https://ror.org/00j8epd55', 'fr', 1, 'https://ror.org/00j8epd55 CEA Gramat'), (35516, 'https://ror.org/00jc39915', 'no_lang_code', 1, 'https://ror.org/00jc39915 Revolugenix (Brazil)'), (35517, 'https://ror.org/00jhc4f65', 'no_lang_code', 1, 'https://ror.org/00jhc4f65 Pivotal (Canada)'), (35518, 'https://ror.org/00jhh5t96', 'en', 1, 'https://ror.org/00jhh5t96 Institute of Environmental Biology and Biotechnology L’Institut de Biologie Environnementale et Biotechnologie'), (35519, 'https://ror.org/00jjwaj46', 'en', 1, 'https://ror.org/00jjwaj46 Dr George Mukhari Hospital'), (35520, 'https://ror.org/00jkcwn82', 'no_lang_code', 1, 'https://ror.org/00jkcwn82 IKM Group (Norway)'), (35521, 'https://ror.org/00jkecz03', 'en', 1, 'https://ror.org/00jkecz03 Willingway Hospital'), (35522, 'https://ror.org/00jkz7z57', 'no_lang_code', 1, 'https://ror.org/00jkz7z57 Fishbones (Norway)'), (35523, 'https://ror.org/00jm2yd36', 'en', 1, 'https://ror.org/00jm2yd36 Bishop Veterinary Hospital'), (35524, 'https://ror.org/00jn73068', 'no_lang_code', 1, 'https://ror.org/00jn73068 Fatland (Norway)'), (35525, 'https://ror.org/00jp1zb22', 'en', 1, 'https://ror.org/00jp1zb22 Defence Metallurgical Research Laboratory'), (35526, 'https://ror.org/00jqpet07', 'no_lang_code', 1, 'https://ror.org/00jqpet07 Fernandez Hospital'), (35527, 'https://ror.org/00jrxyr16', 'no_lang_code', 1, 'https://ror.org/00jrxyr16 Santokba Durlabhji Memorial hospital'), (35528, 'https://ror.org/00jscjq02', 'no_lang_code', 1, 'https://ror.org/00jscjq02 T&G Elektro (Norway)'), (35529, 'https://ror.org/00jvapg71', 'no_lang_code', 1, 'https://ror.org/00jvapg71 Incon Eletrônica (Brazil)'), (35530, 'https://ror.org/00k172x46', 'no_lang_code', 1, 'https://ror.org/00k172x46 Innotech Solar (Norway)'), (35531, 'https://ror.org/00k3bnk40', 'en', 1, 'https://ror.org/00k3bnk40 Zithulele Hospital'), (35532, 'https://ror.org/00k3k7m85', 'no_lang_code', 1, 'https://ror.org/00k3k7m85 CrayoNano (Norway)'), (35533, 'https://ror.org/00k3mkd53', 'no_lang_code', 1, 'https://ror.org/00k3mkd53 Future Subsea (Norway)'), (35534, 'https://ror.org/00k5ek978', 'no_lang_code', 1, 'https://ror.org/00k5ek978 SmartFactory (Germany) Technologie-Initiative SmartFactory KL'), (35535, 'https://ror.org/00k5mw791', 'no_lang_code', 1, 'https://ror.org/00k5mw791 Didac (Norway)'), (35536, 'https://ror.org/00k9r5g94', 'en', 1, 'https://ror.org/00k9r5g94 Technical College System of Georgia'), (35537, 'https://ror.org/00kazcx49', 'en', 1, 'https://ror.org/00kazcx49 Madenat Alelem University College كلية مدينة العلم الجامعة'), (35538, 'https://ror.org/00keqx598', 'en', 1, 'https://ror.org/00keqx598 Mallow General Hospital Ospidéal Ginearálta Mhala'), (35539, 'https://ror.org/00kga6267', 'en', 1, 'https://ror.org/00kga6267 Rift Valley University'), (35540, 'https://ror.org/00khmgv85', 'no_lang_code', 1, 'https://ror.org/00khmgv85 Fisioatual (Brazil)'), (35541, 'https://ror.org/00kkxne40', 'en', 1, 'https://ror.org/00kkxne40 Suzhou Kowloon Hospital'), (35542, 'https://ror.org/00km5bz41', 'no_lang_code', 1, 'https://ror.org/00km5bz41 Casablanca (Brazil)'), (35543, 'https://ror.org/00kmb9t52', 'no', 1, 'https://ror.org/00kmb9t52 Molde kommune'), (35544, 'https://ror.org/00kmqf908', 'en', 1, 'https://ror.org/00kmqf908 Christ the King Seminary'), (35545, 'https://ror.org/00kpjpr15', 'pt', 1, 'https://ror.org/00kpjpr15 Fundação de Ciência, Aplicações e Tecnologia Espaciais'), (35546, 'https://ror.org/00kpyx284', 'no_lang_code', 1, 'https://ror.org/00kpyx284 Naturbilder (Norway)'), (35547, 'https://ror.org/00krkjc90', 'no_lang_code', 1, 'https://ror.org/00krkjc90 Hadeland Glassverk (Norway)'), (35548, 'https://ror.org/00ks2fw34', 'en', 1, 'https://ror.org/00ks2fw34 Norwegian Biotechnology Advisory Board'), (35549, 'https://ror.org/00kt5tf40', 'en', 1, 'https://ror.org/00kt5tf40 Norwegian Association of Disabled'), (35550, 'https://ror.org/00kx97841', 'en', 1, 'https://ror.org/00kx97841 Michener Institute'), (35551, 'https://ror.org/00kxdwc81', 'no_lang_code', 1, 'https://ror.org/00kxdwc81 Tanggangzi hospital'), (35552, 'https://ror.org/00kxk0k30', 'en', 1, 'https://ror.org/00kxk0k30 Rudolf Steiner University College'), (35553, 'https://ror.org/00kytsw15', 'en', 1, 'https://ror.org/00kytsw15 West End Hospital'), (35554, 'https://ror.org/00m1fvd66', 'en', 1, 'https://ror.org/00m1fvd66 Catherine Booth Hospital காதரின் பூத் மருத்துவ மனை'), (35555, 'https://ror.org/00m84gg72', 'en', 1, 'https://ror.org/00m84gg72 Central Clinical Hospital No 2 named Semashko Центральная Клиническая Больница имени Семашко'), (35556, 'https://ror.org/00m8pwv45', 'no_lang_code', 1, 'https://ror.org/00m8pwv45 Donka Hospital'), (35557, 'https://ror.org/00m94xd51', 'no_lang_code', 1, 'https://ror.org/00m94xd51 Thermtech (Norway)'), (35558, 'https://ror.org/00mb5m706', 'no_lang_code', 1, 'https://ror.org/00mb5m706 Inovamat (Brazil)'), (35559, 'https://ror.org/00mfpj979', 'no_lang_code', 1, 'https://ror.org/00mfpj979 Dong-A ST (South Korea)'), (35560, 'https://ror.org/00mfqc035', 'no_lang_code', 1, 'https://ror.org/00mfqc035 AKVA Group (Norway)'), (35561, 'https://ror.org/00mgq3q11', 'de', 1, 'https://ror.org/00mgq3q11 Unfallkrankenhaus Meidling'), (35562, 'https://ror.org/00mp05931', 'no_lang_code', 1, 'https://ror.org/00mp05931 Vulcan Wireless (United States)'), (35563, 'https://ror.org/00mpvas76', 'en', 1, 'https://ror.org/00mpvas76 Ålesund Hospital'), (35564, 'https://ror.org/00msr5x28', 'en', 1, 'https://ror.org/00msr5x28 Aut Even Hospital'), (35565, 'https://ror.org/00mtbts87', 'no_lang_code', 1, 'https://ror.org/00mtbts87 ClanSoft (Brazil)'), (35566, 'https://ror.org/00mwp9n57', 'en', 1, 'https://ror.org/00mwp9n57 Tower Psychiatric Hospital'), (35567, 'https://ror.org/00myd9a07', 'en', 1, 'https://ror.org/00myd9a07 Counselling Centre for Children, Adolescents and Parents'), (35568, 'https://ror.org/00mytnc41', 'no_lang_code', 1, 'https://ror.org/00mytnc41 HEICO (France)'), (35569, 'https://ror.org/00n002f65', 'no_lang_code', 1, 'https://ror.org/00n002f65 Metal Ravne (Slovenia)'), (35570, 'https://ror.org/00n08qc60', 'en', 1, 'https://ror.org/00n08qc60 Unciano Colleges and General Hospital'), (35571, 'https://ror.org/00n0gcp81', 'en', 1, 'https://ror.org/00n0gcp81 Naguru General Hospital'), (35572, 'https://ror.org/00n12r929', 'no_lang_code', 1, 'https://ror.org/00n12r929 MESH (Norway)'), (35573, 'https://ror.org/00n17e497', 'no_lang_code', 1, 'https://ror.org/00n17e497 Tecnologia Aplicada Watanabe Watanabe Applied Technology (Brazil)'), (35574, 'https://ror.org/00n3mcd10', 'de', 1, 'https://ror.org/00n3mcd10 Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen'), (35575, 'https://ror.org/00n4e0w09', 'no_lang_code', 1, 'https://ror.org/00n4e0w09 ZEG Power (Norway)'), (35576, 'https://ror.org/00n4vrp79', 'pt', 1, 'https://ror.org/00n4vrp79 Centro de Tecnologia Mineral'), (35577, 'https://ror.org/00na8v834', 'no_lang_code', 1, 'https://ror.org/00na8v834 Snøgg (Norway)'), (35578, 'https://ror.org/00na98362', 'en', 1, 'https://ror.org/00na98362 Bakersfield Heart Hospital'), (35579, 'https://ror.org/00nbjph85', 'no_lang_code', 1, 'https://ror.org/00nbjph85 Polish Armaments Group (Poland)'), (35580, 'https://ror.org/00nexa929', 'no_lang_code', 1, 'https://ror.org/00nexa929 Eidsiva Bredbånd (Norway)'), (35581, 'https://ror.org/00nf2y042', 'no_lang_code', 1, 'https://ror.org/00nf2y042 Rindalshytter (Norway)'), (35582, 'https://ror.org/00nfrej94', 'en', 1, 'https://ror.org/00nfrej94 Norwegian Directorate of Public Construction and Property'), (35583, 'https://ror.org/00ngrh496', 'en', 1, 'https://ror.org/00ngrh496 Fundação Instituto de Pesquisas Econômicas Institute of Economic Research Foundation'), (35584, 'https://ror.org/00ngt1q87', 'en', 1, 'https://ror.org/00ngt1q87 Biblical Theological Seminary'), (35585, 'https://ror.org/00njcfy31', 'no_lang_code', 1, 'https://ror.org/00njcfy31 Standard Bio (Norway)'), (35586, 'https://ror.org/00nm2s695', 'pt', 1, 'https://ror.org/00nm2s695 Associação Nacional de Pós-Graduação e Pesquisa em Educação'), (35587, 'https://ror.org/00nmk1536', 'no_lang_code', 1, 'https://ror.org/00nmk1536 Avinor (Norway)'), (35588, 'https://ror.org/00nnsna93', 'no_lang_code', 1, 'https://ror.org/00nnsna93 Camgian Microsystems (United States)'), (35589, 'https://ror.org/00nnw5g58', 'no_lang_code', 1, 'https://ror.org/00nnw5g58 Graminor (Norway)'), (35590, 'https://ror.org/00np0kv70', 'en', 1, 'https://ror.org/00np0kv70 Mease Dunedin Hospital'), (35591, 'https://ror.org/00nqqgg17', 'en', 1, 'https://ror.org/00nqqgg17 National Security Authority'), (35592, 'https://ror.org/00nr0z368', 'no_lang_code', 1, 'https://ror.org/00nr0z368 Shaklee (United States)'), (35593, 'https://ror.org/00nrggp23', 'de', 1, 'https://ror.org/00nrggp23 Klinikum Vest'), (35594, 'https://ror.org/00nsej663', 'pt', 1, 'https://ror.org/00nsej663 Laboratório Bacchi'), (35595, 'https://ror.org/00nsveh54', 'no_lang_code', 1, 'https://ror.org/00nsveh54 Corentium (Norway)'), (35596, 'https://ror.org/00nwwb878', 'en', 1, 'https://ror.org/00nwwb878 Littleton Adventist Hospital'), (35597, 'https://ror.org/00nx39s55', 'en', 1, 'https://ror.org/00nx39s55 Georg Kolbe Museum'), (35598, 'https://ror.org/00nynxj47', 'no_lang_code', 1, 'https://ror.org/00nynxj47 Faveo (Norway)'), (35599, 'https://ror.org/00p15ac84', 'no_lang_code', 1, 'https://ror.org/00p15ac84 Davvi Girji (Norway)'), (35600, 'https://ror.org/00p1s4075', 'en', 1, 'https://ror.org/00p1s4075 Institut für Arbeitsrecht und Arbeitsbeziehungen in der Europäischen Union Institute for Labour Law and Industrial Relations in the European Union'), (35601, 'https://ror.org/00p1y4e96', 'no_lang_code', 1, 'https://ror.org/00p1y4e96 Itera - Inovação e Desenvolvimento Tecnológico (Brazil)'), (35602, 'https://ror.org/00p43ne90', 'en', 1, 'https://ror.org/00p43ne90 Mahsa University'), (35603, 'https://ror.org/00p4fjt47', 'en', 1, 'https://ror.org/00p4fjt47 Innovation Maritime'), (35604, 'https://ror.org/00p5w8488', 'en', 1, 'https://ror.org/00p5w8488 Elliot Provincial Hospital'), (35605, 'https://ror.org/00p9dzj96', 'pl', 1, 'https://ror.org/00p9dzj96 Ogród Zoologiczny w Krakowie'), (35606, 'https://ror.org/00pbr1q26', 'no_lang_code', 1, 'https://ror.org/00pbr1q26 Mahle Letrika (Slovenia)'), (35607, 'https://ror.org/00pd69702', 'no_lang_code', 1, 'https://ror.org/00pd69702 TGS (Norway)'), (35608, 'https://ror.org/00pdjsv51', 'en', 1, 'https://ror.org/00pdjsv51 National Mississippi River Museum & Aquarium'), (35609, 'https://ror.org/00pe9yd58', 'no_lang_code', 1, 'https://ror.org/00pe9yd58 Denofa (Norway)'), (35610, 'https://ror.org/00pejg468', 'no_lang_code', 1, 'https://ror.org/00pejg468 Wodociągi Kłodzkie (Poland)'), (35611, 'https://ror.org/00pfazs12', 'no_lang_code', 1, 'https://ror.org/00pfazs12 Kennedy Martin Health Outcomes (United Kingdom)'), (35612, 'https://ror.org/00pffbm70', 'en', 1, 'https://ror.org/00pffbm70 Daegu Health College 대구보건대학교'), (35613, 'https://ror.org/00ph73362', 'no_lang_code', 1, 'https://ror.org/00ph73362 P.E. LaMoreaux & Associates (United States)'), (35614, 'https://ror.org/00pjedz72', 'pt', 1, 'https://ror.org/00pjedz72 Secretaria Municipal de Educação de São Paulo'), (35615, 'https://ror.org/00pkwdr13', 'en', 1, 'https://ror.org/00pkwdr13 Cecil College'), (35616, 'https://ror.org/00pndr306', 'no_lang_code', 1, 'https://ror.org/00pndr306 Hybrid Energy (Norway)'), (35617, 'https://ror.org/00ppmht14', 'es', 1, 'https://ror.org/00ppmht14 Hospital Borda, Hospital Interdisciplinario Psicoasistencial José Tiburcio Borda'), (35618, 'https://ror.org/00ppwz362', 'no_lang_code', 1, 'https://ror.org/00ppwz362 ScanVacc (Norway)'), (35619, 'https://ror.org/00pqahb84', 'no_lang_code', 1, 'https://ror.org/00pqahb84 NanoVelos (Poland)'), (35620, 'https://ror.org/00pr7tv03', 'no_lang_code', 1, 'https://ror.org/00pr7tv03 Shippingcluster (Norway)'), (35621, 'https://ror.org/00ps78702', 'no_lang_code', 1, 'https://ror.org/00ps78702 Simicon (Norway)'), (35622, 'https://ror.org/00pvkt339', 'no_lang_code', 1, 'https://ror.org/00pvkt339 Finnish Consulting Group (Finland)'), (35623, 'https://ror.org/00py85p62', 'en', 1, 'https://ror.org/00py85p62 Kyanous Stavros Hospital'), (35624, 'https://ror.org/00pz7qc35', 'de', 1, 'https://ror.org/00pz7qc35 Ortenau Klinikum'); INSERT INTO `rors` VALUES (35625, 'https://ror.org/00pzh0w90', 'tr', 1, 'https://ror.org/00pzh0w90 Kocaeli Üniversitesi Araştırma ve Uygulama Hastanesi'), (35626, 'https://ror.org/00q0t9719', 'no_lang_code', 1, 'https://ror.org/00q0t9719 StormGeo (Norway)'), (35627, 'https://ror.org/00q13z447', 'no_lang_code', 1, 'https://ror.org/00q13z447 PRORES (Norway)'), (35628, 'https://ror.org/00q6e3362', 'en', 1, 'https://ror.org/00q6e3362 Friends of Independence National Historical Park'), (35629, 'https://ror.org/00q6t4456', 'en', 1, 'https://ror.org/00q6t4456 National Federation of Polish NGOs'), (35630, 'https://ror.org/00q7vjv87', 'no_lang_code', 1, 'https://ror.org/00q7vjv87 Optime Subsea Services (Norway)'), (35631, 'https://ror.org/00q7xcw45', 'en', 1, 'https://ror.org/00q7xcw45 Australian Lutheran College'), (35632, 'https://ror.org/00q9ekq83', 'no_lang_code', 1, 'https://ror.org/00q9ekq83 Dar Al Shifaa Hospital'), (35633, 'https://ror.org/00qae8971', 'en', 1, 'https://ror.org/00qae8971 Institute for History of Natural Sciences 中国科学院自然科学史研究所'), (35634, 'https://ror.org/00qbb2v66', 'en', 1, 'https://ror.org/00qbb2v66 Kharkiv University of Air Force'), (35635, 'https://ror.org/00qbe9m93', 'en', 1, 'https://ror.org/00qbe9m93 Howard College'), (35636, 'https://ror.org/00qbv9d45', 'en', 1, 'https://ror.org/00qbv9d45 Andover Newton Theological School'), (35637, 'https://ror.org/00qbw4596', 'pt', 1, 'https://ror.org/00qbw4596 Instituto de Neurociências e Comportamento'), (35638, 'https://ror.org/00qcchj97', 'no_lang_code', 1, 'https://ror.org/00qcchj97 Yaskawa (Slovenia)'), (35639, 'https://ror.org/00qch4977', 'no_lang_code', 1, 'https://ror.org/00qch4977 Pro Analysis (Norway)'), (35640, 'https://ror.org/00qej3243', 'en', 1, 'https://ror.org/00qej3243 Medina General Hospital'), (35641, 'https://ror.org/00qh0h134', 'sl', 1, 'https://ror.org/00qh0h134 Splošna Bolnišnica Slovenj Gradec'), (35642, 'https://ror.org/00qh12n88', 'en', 1, 'https://ror.org/00qh12n88 Laguna State Polytechnic University'), (35643, 'https://ror.org/00qh28f47', 'no_lang_code', 1, 'https://ror.org/00qh28f47 Svilanit (Slovenia)'), (35644, 'https://ror.org/00qh6jg85', 'en', 1, 'https://ror.org/00qh6jg85 Al-Ahli Hospital'), (35645, 'https://ror.org/00qhjc802', 'no_lang_code', 1, 'https://ror.org/00qhjc802 Alianta (Slovenia)'), (35646, 'https://ror.org/00qhxf575', 'en', 1, 'https://ror.org/00qhxf575 Nokami Kousei Sougo Hospital'), (35647, 'https://ror.org/00qjry581', 'en', 1, 'https://ror.org/00qjry581 Warwickshire Hospital'), (35648, 'https://ror.org/00qjyjx92', 'no_lang_code', 1, 'https://ror.org/00qjyjx92 Langlee Wave Power (Norway)'), (35649, 'https://ror.org/00qnzks08', 'no_lang_code', 1, 'https://ror.org/00qnzks08 Krakodlew (Poland)'), (35650, 'https://ror.org/00qq5j134', 'no_lang_code', 1, 'https://ror.org/00qq5j134 Pax Forlag (Norway)'), (35651, 'https://ror.org/00qqspx12', 'no_lang_code', 1, 'https://ror.org/00qqspx12 Kappa Bioscience (Norway)'), (35652, 'https://ror.org/00qrrj311', 'no', 1, 'https://ror.org/00qrrj311 Abelia'), (35653, 'https://ror.org/00qryer39', 'en', 1, 'https://ror.org/00qryer39 International Institute of Information Technology अंतर्राष्ट्रीय सूचना प्रौद्योगिकी संस्थान, भुवनेश्वर'), (35654, 'https://ror.org/00qs33y73', 'en', 1, 'https://ror.org/00qs33y73 Bowen University Teaching Hospital'), (35655, 'https://ror.org/00qw5wg75', 'en', 1, 'https://ror.org/00qw5wg75 Guizhou Cancer Hospital'), (35656, 'https://ror.org/00qwdz285', 'no_lang_code', 1, 'https://ror.org/00qwdz285 Teekay (Norway)'), (35657, 'https://ror.org/00r2mkt64', 'no_lang_code', 1, 'https://ror.org/00r2mkt64 Weatherford (Norway)'), (35658, 'https://ror.org/00r2t8g81', 'en', 1, 'https://ror.org/00r2t8g81 Parkway East Hospital'), (35659, 'https://ror.org/00r398124', 'en', 1, 'https://ror.org/00r398124 Ganzhou People''s Hospital'), (35660, 'https://ror.org/00r4x3y44', 'no_lang_code', 1, 'https://ror.org/00r4x3y44 Vectron Biosolutions (Norway)'), (35661, 'https://ror.org/00r5q3093', 'no', 1, 'https://ror.org/00r5q3093 Norsk Sjømatsenter'), (35662, 'https://ror.org/00r69t692', 'no', 1, 'https://ror.org/00r69t692 Nordnorske Entreprenørers Service Organisasjon'), (35663, 'https://ror.org/00r80q412', 'en', 1, 'https://ror.org/00r80q412 Research Centre for Eastern and South Eastern Europe Wissenschaftszentrum Ost- und Südosteuropa Regensburg'), (35664, 'https://ror.org/00rac3p42', 'no_lang_code', 1, 'https://ror.org/00rac3p42 Polikem (Brazil)'), (35665, 'https://ror.org/00raj4980', 'en', 1, 'https://ror.org/00raj4980 USRowing'), (35666, 'https://ror.org/00rb2cm82', 'en', 1, 'https://ror.org/00rb2cm82 Universal College'), (35667, 'https://ror.org/00rc8te69', 'en', 1, 'https://ror.org/00rc8te69 ICT Telemark'), (35668, 'https://ror.org/00rds0p35', 'en', 1, 'https://ror.org/00rds0p35 Hospitali ya Nairobi Nairobi Hospital'), (35669, 'https://ror.org/00repdk15', 'no_lang_code', 1, 'https://ror.org/00repdk15 Talum (Slovenia)'), (35670, 'https://ror.org/00rezgj18', 'en', 1, 'https://ror.org/00rezgj18 Winfocus'), (35671, 'https://ror.org/00rj40e45', 'en', 1, 'https://ror.org/00rj40e45 North Cape Municipality'), (35672, 'https://ror.org/00rmr1x70', 'no_lang_code', 1, 'https://ror.org/00rmr1x70 Hart Tech (Poland)'), (35673, 'https://ror.org/00rmzby10', 'en', 1, 'https://ror.org/00rmzby10 Norwegian Centre for Design and Architecture'), (35674, 'https://ror.org/00rqqzf78', 'en', 1, 'https://ror.org/00rqqzf78 Daud Memorial Hospital'), (35675, 'https://ror.org/00rs0x560', 'pt', 1, 'https://ror.org/00rs0x560 Fundação de Estudos Agrários Luiz de Queiroz'), (35676, 'https://ror.org/00rs1fw09', 'no_lang_code', 1, 'https://ror.org/00rs1fw09 Asel-Tech (Brazil) Asel-Tech Tecnologia e Automaçăo'), (35677, 'https://ror.org/00rs50b76', 'en', 1, 'https://ror.org/00rs50b76 Chabahar Maritime University'), (35678, 'https://ror.org/00rvh4702', 'no_lang_code', 1, 'https://ror.org/00rvh4702 Comet Biotech (Norway)'), (35679, 'https://ror.org/00rwtwt20', 'en', 1, 'https://ror.org/00rwtwt20 Northeast Catholic College'), (35680, 'https://ror.org/00rx1ga86', 'en', 1, 'https://ror.org/00rx1ga86 Central Hospital of Yaoundé Hôpital Central de Yaoundé'), (35681, 'https://ror.org/00s0b8a75', 'en', 1, 'https://ror.org/00s0b8a75 Institute of Human Development, Child and Youth Health'), (35682, 'https://ror.org/00s0xs310', 'no_lang_code', 1, 'https://ror.org/00s0xs310 Polaris (Brazil)'), (35683, 'https://ror.org/00s13br28', 'en', 1, 'https://ror.org/00s13br28 Henan Normal University 河南师范大学'), (35684, 'https://ror.org/00s21wr35', 'no_lang_code', 1, 'https://ror.org/00s21wr35 Polymer Standards Service (Germany)'), (35685, 'https://ror.org/00s3sq827', 'en', 1, 'https://ror.org/00s3sq827 Hôpital gynéco-obstétrique et pédiatrique de Yaoundé Yaoundé Gynaecology, Obstetrics and Pediatrics Hospital'), (35686, 'https://ror.org/00s3yxg72', 'no_lang_code', 1, 'https://ror.org/00s3yxg72 Green Cube Management (Norway)'), (35687, 'https://ror.org/00s6pe011', 'no_lang_code', 1, 'https://ror.org/00s6pe011 Made for Movement (Norway)'), (35688, 'https://ror.org/00sbttv49', 'fr', 1, 'https://ror.org/00sbttv49 Délégation Paris 12'), (35689, 'https://ror.org/00sc9ba80', 'no_lang_code', 1, 'https://ror.org/00sc9ba80 Compsis (Brazil)'), (35690, 'https://ror.org/00sd35b30', 'en', 1, 'https://ror.org/00sd35b30 Luzerne County Community College'), (35691, 'https://ror.org/00sf52z42', 'no_lang_code', 1, 'https://ror.org/00sf52z42 Truven Health Analytics (United States)'), (35692, 'https://ror.org/00sgkxj28', 'no_lang_code', 1, 'https://ror.org/00sgkxj28 Katowice Coal Holding (Poland)'), (35693, 'https://ror.org/00sgprf31', 'en', 1, 'https://ror.org/00sgprf31 Ospidéal Naomh Dympna St. Dympna''s Hospital'), (35694, 'https://ror.org/00sgtyj59', 'no_lang_code', 1, 'https://ror.org/00sgtyj59 Ansteel (China)'), (35695, 'https://ror.org/00shkn419', 'no', 1, 'https://ror.org/00shkn419 Gründerskolen Alumni'), (35696, 'https://ror.org/00sj27p43', 'de', 1, 'https://ror.org/00sj27p43 Landesarchiv Nordrhein-Westfalen'), (35697, 'https://ror.org/00sjjkp82', 'no_lang_code', 1, 'https://ror.org/00sjjkp82 Instar (Poland)'), (35698, 'https://ror.org/00sk8vk27', 'no_lang_code', 1, 'https://ror.org/00sk8vk27 Dolphin Geophysical (Norway)'), (35699, 'https://ror.org/00sm4bp25', 'en', 1, 'https://ror.org/00sm4bp25 Crafton Hills College'), (35700, 'https://ror.org/00snpfp77', 'en', 1, 'https://ror.org/00snpfp77 Norwegian Association of Economists'), (35701, 'https://ror.org/00spt4n57', 'en', 1, 'https://ror.org/00spt4n57 Lianyungang Maternal and Children’s Hospital'), (35702, 'https://ror.org/00srhwt80', 'en', 1, 'https://ror.org/00srhwt80 Norwegian National Research Ethics Committees'), (35703, 'https://ror.org/00ssdam06', 'en', 1, 'https://ror.org/00ssdam06 The Mount'), (35704, 'https://ror.org/00sx97n88', 'en', 1, 'https://ror.org/00sx97n88 Centre for International Relations'), (35705, 'https://ror.org/00sxf2f02', 'no_lang_code', 1, 'https://ror.org/00sxf2f02 Inovyn Norge (Norway)'), (35706, 'https://ror.org/00sy03c71', 'en', 1, 'https://ror.org/00sy03c71 Teaching Hospital Batticaloa போதனா வைத்தியசாலை மட்டக்களப்பு'), (35707, 'https://ror.org/00syyqa87', 'en', 1, 'https://ror.org/00syyqa87 Orthopaedic University Hospital Friedrichsheim Orthopädische Universitätsklinik Friedrichsheim'), (35708, 'https://ror.org/00t2vjb05', 'no_lang_code', 1, 'https://ror.org/00t2vjb05 White River Technologies (United States)'), (35709, 'https://ror.org/00t30f389', 'en', 1, 'https://ror.org/00t30f389 Children''s Hospital of San Antonio'), (35710, 'https://ror.org/00t3ejb31', 'en', 1, 'https://ror.org/00t3ejb31 Kamuli General Hospital'), (35711, 'https://ror.org/00t3epc32', 'no_lang_code', 1, 'https://ror.org/00t3epc32 Kruse Smith (Norway)'), (35712, 'https://ror.org/00t3hse28', 'no_lang_code', 1, 'https://ror.org/00t3hse28 AhR Pharmaceuticals (United States)'), (35713, 'https://ror.org/00t4w1v80', 'es', 1, 'https://ror.org/00t4w1v80 Hospital de Viladecans'), (35714, 'https://ror.org/00t5zf034', 'pt', 1, 'https://ror.org/00t5zf034 Associação Brasileira de Estatística'), (35715, 'https://ror.org/00t7chs43', 'no_lang_code', 1, 'https://ror.org/00t7chs43 R.J.Rygg International (Norway)'), (35716, 'https://ror.org/00t7r5h51', 'en', 1, 'https://ror.org/00t7r5h51 Center for Autism and Related Disorders'), (35717, 'https://ror.org/00t8aqf69', 'no_lang_code', 1, 'https://ror.org/00t8aqf69 OptaCore (Slovenia)'), (35718, 'https://ror.org/00t8j2x68', 'en', 1, 'https://ror.org/00t8j2x68 Eston College'), (35719, 'https://ror.org/00t954r14', 'en', 1, 'https://ror.org/00t954r14 University Hospital St. Marina'), (35720, 'https://ror.org/00t9sn355', 'no_lang_code', 1, 'https://ror.org/00t9sn355 Avexxin (Norway)'), (35721, 'https://ror.org/00tajj279', 'no', 1, 'https://ror.org/00tajj279 Unge aksjonærer'), (35722, 'https://ror.org/00tavxp27', 'no_lang_code', 1, 'https://ror.org/00tavxp27 Syngenta (Belgium)'), (35723, 'https://ror.org/00tbh0a59', 'en', 1, 'https://ror.org/00tbh0a59 Gulu Hospital'), (35724, 'https://ror.org/00tcrkx08', 'no_lang_code', 1, 'https://ror.org/00tcrkx08 Vardar (Norway)'), (35725, 'https://ror.org/00td2nm66', 'no_lang_code', 1, 'https://ror.org/00td2nm66 Nova Sea (Norway)'), (35726, 'https://ror.org/00td4wt22', 'en', 1, 'https://ror.org/00td4wt22 Lower Saxony Institute for Historical Coastal Research Niedersächsisches Institut für historische Küstenforschung'), (35727, 'https://ror.org/00td7a857', 'en', 1, 'https://ror.org/00td7a857 Federation of Norwegian Agricultural Co-operatives'), (35728, 'https://ror.org/00tdd5j20', 'no_lang_code', 1, 'https://ror.org/00tdd5j20 Elektrobudowa (Poland)'), (35729, 'https://ror.org/00te78715', 'no_lang_code', 1, 'https://ror.org/00te78715 Metallco (Norway)'), (35730, 'https://ror.org/00tejnf65', 'en', 1, 'https://ror.org/00tejnf65 Milton Ulladulla Hospital'), (35731, 'https://ror.org/00tem3932', 'no_lang_code', 1, 'https://ror.org/00tem3932 Hynor Lillestrøm (Norway)'), (35732, 'https://ror.org/00tmaba41', 'en', 1, 'https://ror.org/00tmaba41 Montana Department of Corrections'), (35733, 'https://ror.org/00tsmp672', 'en', 1, 'https://ror.org/00tsmp672 Narvik Science Park'), (35734, 'https://ror.org/00txnqh94', 'en', 1, 'https://ror.org/00txnqh94 37 Military Hospital'), (35735, 'https://ror.org/00tya8c87', 'no_lang_code', 1, 'https://ror.org/00tya8c87 Terratec (Norway)'), (35736, 'https://ror.org/00tzehs45', 'no_lang_code', 1, 'https://ror.org/00tzehs45 Cobrasper (Brazil)'), (35737, 'https://ror.org/00v19am98', 'en', 1, 'https://ror.org/00v19am98 Hospital del estado de Utah Utah State Hospital'), (35738, 'https://ror.org/00v1kpv21', 'en', 1, 'https://ror.org/00v1kpv21 Maindiff Court Hospital Ysbyty Maindiff Court'), (35739, 'https://ror.org/00v7c5185', 'no_lang_code', 1, 'https://ror.org/00v7c5185 Mycoteam (Norway)'), (35740, 'https://ror.org/00v8gh961', 'no_lang_code', 1, 'https://ror.org/00v8gh961 Petrolink (Norway)'), (35741, 'https://ror.org/00va2ea06', 'no_lang_code', 1, 'https://ror.org/00va2ea06 Ampara Hospital අම්පාර රෝහල'), (35742, 'https://ror.org/00var7h03', 'pt', 1, 'https://ror.org/00var7h03 Hospital Samaritano de São Paulo'), (35743, 'https://ror.org/00vb2ts27', 'no_lang_code', 1, 'https://ror.org/00vb2ts27 Drawski (Poland)'), (35744, 'https://ror.org/00vbqcv97', 'no', 1, 'https://ror.org/00vbqcv97 Narvik Sykehus'), (35745, 'https://ror.org/00vby1197', 'no_lang_code', 1, 'https://ror.org/00vby1197 MMC Green Technology (Norway)'), (35746, 'https://ror.org/00vd2t792', 'no_lang_code', 1, 'https://ror.org/00vd2t792 R4F Tecnologia (Brazil)'), (35747, 'https://ror.org/00vd4yx94', 'no_lang_code', 1, 'https://ror.org/00vd4yx94 Chazhikattu Hospital'), (35748, 'https://ror.org/00ve36y89', 'no_lang_code', 1, 'https://ror.org/00ve36y89 Fanbooster (Norway)'), (35749, 'https://ror.org/00ve8y072', 'no_lang_code', 1, 'https://ror.org/00ve8y072 Saemien Sijte'), (35750, 'https://ror.org/00vfc7k77', 'no_lang_code', 1, 'https://ror.org/00vfc7k77 North Energy (Norway)'), (35751, 'https://ror.org/00vfe5x12', 'pt', 1, 'https://ror.org/00vfe5x12 Espaço Ciência Viva'), (35752, 'https://ror.org/00vfzzr15', 'no_lang_code', 1, 'https://ror.org/00vfzzr15 Ticon (Brazil)'), (35753, 'https://ror.org/00vggt529', 'no_lang_code', 1, 'https://ror.org/00vggt529 Tauron (Poland)'), (35754, 'https://ror.org/00vgj1d44', 'no_lang_code', 1, 'https://ror.org/00vgj1d44 Sunano (China)'), (35755, 'https://ror.org/00vjvqk56', 'en', 1, 'https://ror.org/00vjvqk56 DESA'), (35756, 'https://ror.org/00vjwj043', 'no_lang_code', 1, 'https://ror.org/00vjwj043 Kroma Equipamentos Especiais (Brazil)'), (35757, 'https://ror.org/00vk4de58', 'no_lang_code', 1, 'https://ror.org/00vk4de58 Red, Orange and Green Environmental Technologies (Brazil)'), (35758, 'https://ror.org/00vk5m430', 'en', 1, 'https://ror.org/00vk5m430 Milton District Hospital'), (35759, 'https://ror.org/00vkfw855', 'no_lang_code', 1, 'https://ror.org/00vkfw855 Sirc (Poland)'), (35760, 'https://ror.org/00vnpmg64', 'en', 1, 'https://ror.org/00vnpmg64 Oregon International Council'), (35761, 'https://ror.org/00vnz7193', 'no_lang_code', 1, 'https://ror.org/00vnz7193 Arctic Pharma (Norway)'), (35762, 'https://ror.org/00vq26t70', 'no_lang_code', 1, 'https://ror.org/00vq26t70 Canzibe Hospital'), (35763, 'https://ror.org/00vqmcb18', 'no_lang_code', 1, 'https://ror.org/00vqmcb18 Verdal Inspection and Technology Center (Norway)'), (35764, 'https://ror.org/00vva8g89', 'en', 1, 'https://ror.org/00vva8g89 Fourth People''s Hospital of Sichuan Province'), (35765, 'https://ror.org/00vvj5e57', 'no_lang_code', 1, 'https://ror.org/00vvj5e57 TotAl-gruppen (Norway)'), (35766, 'https://ror.org/00w069474', 'en', 1, 'https://ror.org/00w069474 Ancora Psychiatric Hospital'), (35767, 'https://ror.org/00w1jf336', 'en', 1, 'https://ror.org/00w1jf336 Europa Ziekenhuizen Europe Hospitals'), (35768, 'https://ror.org/00w1szk34', 'no_lang_code', 1, 'https://ror.org/00w1szk34 Ravimed (Poland)'), (35769, 'https://ror.org/00w2nrp41', 'en', 1, 'https://ror.org/00w2nrp41 Kalafong Hospitaal Kalafong Hospital'), (35770, 'https://ror.org/00w3t2881', 'no_lang_code', 1, 'https://ror.org/00w3t2881 Med Data Quest (United States)'), (35771, 'https://ror.org/00w4knw64', 'pt', 1, 'https://ror.org/00w4knw64 Fundação Faculdade de Odontologia'), (35772, 'https://ror.org/00w52ce92', 'no_lang_code', 1, 'https://ror.org/00w52ce92 Hansa Borg Bryggerier (Norway)'), (35773, 'https://ror.org/00wctst51', 'pt', 1, 'https://ror.org/00wctst51 Associação Nacional de Pós-Graduação e Pesquisa em Ciências Sociais'), (35774, 'https://ror.org/00we5be91', 'en', 1, 'https://ror.org/00we5be91 Deutsches Zentrum für Altersfragen German Centre of Gerontology'), (35775, 'https://ror.org/00wg75m45', 'no_lang_code', 1, 'https://ror.org/00wg75m45 Thermo Fisher Scientific (Japan)'), (35776, 'https://ror.org/00wp87h24', 'no_lang_code', 1, 'https://ror.org/00wp87h24 NovaBiotics (Norway)'), (35777, 'https://ror.org/00wp8rt14', 'en', 1, 'https://ror.org/00wp8rt14 Association of the Technological Integrated Systems Laboratory Laboratório de Sistemas Integráveis Tecnológico'), (35778, 'https://ror.org/00wpbh181', 'no_lang_code', 1, 'https://ror.org/00wpbh181 TecSUS Tecnologias para a Sustentabilidade (Brazil)'), (35779, 'https://ror.org/00wq53e84', 'no_lang_code', 1, 'https://ror.org/00wq53e84 GeneSeque (Norway)'), (35780, 'https://ror.org/00wqdg589', 'en', 1, 'https://ror.org/00wqdg589 Criswell College'), (35781, 'https://ror.org/00wrds652', 'no_lang_code', 1, 'https://ror.org/00wrds652 Frost Produkt (Norway)'), (35782, 'https://ror.org/00wrp4434', 'en', 1, 'https://ror.org/00wrp4434 Institute of Agricultural and Food Economics'), (35783, 'https://ror.org/00wsgg405', 'no_lang_code', 1, 'https://ror.org/00wsgg405 Integrated Optoelectronics (Norway)'), (35784, 'https://ror.org/00wtrhc98', 'en', 1, 'https://ror.org/00wtrhc98 Institute of Geography and Spatial Organization, Polish Academy of Sciences'), (35785, 'https://ror.org/00wwb2b69', 'en', 1, 'https://ror.org/00wwb2b69 The First People''s Hospital of Shunde'), (35786, 'https://ror.org/00wz29n17', 'no_lang_code', 1, 'https://ror.org/00wz29n17 Gascontrol Polska'), (35787, 'https://ror.org/00x035a35', 'en', 1, 'https://ror.org/00x035a35 Energy Agency for Southeast'), (35788, 'https://ror.org/00x11zg33', 'en', 1, 'https://ror.org/00x11zg33 Gateway Community and Technical College'), (35789, 'https://ror.org/00x1wkj06', 'fr', 1, 'https://ror.org/00x1wkj06 Robotique FIRST Québec'), (35790, 'https://ror.org/00x2q5f89', 'en', 1, 'https://ror.org/00x2q5f89 Randall Children''s Hospital at Legacy Emanuel'), (35791, 'https://ror.org/00x67m532', 'en', 1, 'https://ror.org/00x67m532 Hanover University of Music Drama and Media Hochschule für Musik, Theater und Medien Hannover'), (35792, 'https://ror.org/00xb1ja93', 'en', 1, 'https://ror.org/00xb1ja93 Polish Seed Trade Association'), (35793, 'https://ror.org/00xcyc711', 'no_lang_code', 1, 'https://ror.org/00xcyc711 Environmental Resources Management (United Kingdom)'), (35794, 'https://ror.org/00xdpd607', 'en', 1, 'https://ror.org/00xdpd607 Brazilian Society of Nuclear Biosciences Sociedade Brasileira de Biociências Nucleares'), (35795, 'https://ror.org/00xj09k15', 'pt', 1, 'https://ror.org/00xj09k15 Secretaria Municipal do Desenvolvimento Econômico e Turismo'), (35796, 'https://ror.org/00xm9b761', 'no_lang_code', 1, 'https://ror.org/00xm9b761 Commitment (Norway)'), (35797, 'https://ror.org/00xnq7h44', 'de', 1, 'https://ror.org/00xnq7h44 Hochschule für Künste im Sozialen'), (35798, 'https://ror.org/00xrcsz24', 'no', 1, 'https://ror.org/00xrcsz24 Hvorfor det'), (35799, 'https://ror.org/00xrr2d51', 'fr', 1, 'https://ror.org/00xrr2d51 Sante Montreal'), (35800, 'https://ror.org/00xsgfc59', 'it', 1, 'https://ror.org/00xsgfc59 Azienda Ospedaliera Bolognini Seriate'), (35801, 'https://ror.org/00xv9sn23', 'de', 1, 'https://ror.org/00xv9sn23 Martin-Luther-Krankenhaus'), (35802, 'https://ror.org/00xw2x114', 'en', 1, 'https://ror.org/00xw2x114 Tangshan People''s Hospital'), (35803, 'https://ror.org/00xwpb736', 'no_lang_code', 1, 'https://ror.org/00xwpb736 Apis Flora (Brazil) Apis Flora Industrial e Comercial Ltda'), (35804, 'https://ror.org/00xxfcb49', 'no_lang_code', 1, 'https://ror.org/00xxfcb49 Navtor (Norway)'), (35805, 'https://ror.org/00xxveb47', 'no_lang_code', 1, 'https://ror.org/00xxveb47 Kalkulo (Norway)'), (35806, 'https://ror.org/00xzsc219', 'no_lang_code', 1, 'https://ror.org/00xzsc219 Aurland Naturverkstad (Norway)'), (35807, 'https://ror.org/00y0hrk69', 'no_lang_code', 1, 'https://ror.org/00y0hrk69 Catch Solar Energy (Norway)'), (35808, 'https://ror.org/00y0tkz25', 'en', 1, 'https://ror.org/00y0tkz25 Australian Law Reform Commission'), (35809, 'https://ror.org/00y18kr09', 'de', 1, 'https://ror.org/00y18kr09 Stadtarchiv Gifhorn'), (35810, 'https://ror.org/00y2ehr59', 'no_lang_code', 1, 'https://ror.org/00y2ehr59 Ambra Solutions (Brazil)'), (35811, 'https://ror.org/00y3by878', 'en', 1, 'https://ror.org/00y3by878 De Lin Institute of Technology 德霖技術學院'), (35812, 'https://ror.org/00y495746', 'no_lang_code', 1, 'https://ror.org/00y495746 PCI Biotech (Norway)'), (35813, 'https://ror.org/00y78ex22', 'no_lang_code', 1, 'https://ror.org/00y78ex22 Genoa (Brazil)'), (35814, 'https://ror.org/00y8zcm61', 'en', 1, 'https://ror.org/00y8zcm61 Chattagram Maa-O-Shishu Hospital Medical College'), (35815, 'https://ror.org/00ya08494', 'en', 1, 'https://ror.org/00ya08494 Bumrungrad International Hospital โรงพยาบาลบำรุงราษฎร์'), (35816, 'https://ror.org/00ycas454', 'no_lang_code', 1, 'https://ror.org/00ycas454 Telio (Norway)'), (35817, 'https://ror.org/00yejqr65', 'en', 1, 'https://ror.org/00yejqr65 Zhejiang DongFang Vocational and Technical College'), (35818, 'https://ror.org/00yfewz72', 'en', 1, 'https://ror.org/00yfewz72 Piedmont Henry Hospital'), (35819, 'https://ror.org/00yg0kc17', 'pt', 1, 'https://ror.org/00yg0kc17 Ação Educativa'), (35820, 'https://ror.org/00yjpxn36', 'en', 1, 'https://ror.org/00yjpxn36 Maharashtra National Law University Mumbai'), (35821, 'https://ror.org/00yk34w18', 'en', 1, 'https://ror.org/00yk34w18 Bainbridge State College'), (35822, 'https://ror.org/00ykry024', 'no_lang_code', 1, 'https://ror.org/00ykry024 Sevitel (Poland)'), (35823, 'https://ror.org/00yntsj40', 'en', 1, 'https://ror.org/00yntsj40 South County Hospital'), (35824, 'https://ror.org/00yv11a49', 'de', 1, 'https://ror.org/00yv11a49 Niedersächsisches Landesamt für Denkmalpflege'), (35825, 'https://ror.org/00yxvfq91', 'no_lang_code', 1, 'https://ror.org/00yxvfq91 Slips Technologies (United States)'), (35826, 'https://ror.org/00yycrh80', 'no_lang_code', 1, 'https://ror.org/00yycrh80 Hidria (Slovenia)'), (35827, 'https://ror.org/00z12fn95', 'no', 1, 'https://ror.org/00z12fn95 Lundes Gartneri'), (35828, 'https://ror.org/00z451h60', 'no_lang_code', 1, 'https://ror.org/00z451h60 Trefokus (Norway)'), (35829, 'https://ror.org/00z6pvt32', 'en', 1, 'https://ror.org/00z6pvt32 Burnaby Hospital'), (35830, 'https://ror.org/00z78kg48', 'no_lang_code', 1, 'https://ror.org/00z78kg48 Partecurae Analysis (Brazil)'), (35831, 'https://ror.org/00z8qyj05', 'pt', 1, 'https://ror.org/00z8qyj05 Fundação Educacional de Ituverava'), (35832, 'https://ror.org/00za2ev77', 'no_lang_code', 1, 'https://ror.org/00za2ev77 Reciclapac (Brazil)'), (35833, 'https://ror.org/00zave958', 'no', 1, 'https://ror.org/00zave958 Norsk Teknisk Museum'), (35834, 'https://ror.org/00zayq578', 'de', 1, 'https://ror.org/00zayq578 Staatliche Akademie der Bildenden Künste Stuttgart State Academy of Fine Arts in Stuttgart'), (35835, 'https://ror.org/00zec6783', 'en', 1, 'https://ror.org/00zec6783 Tongwon University 동원대학교'), (35836, 'https://ror.org/00zfwf776', 'pt', 1, 'https://ror.org/00zfwf776 Associação Brasileira de Estudos de Defesa'), (35837, 'https://ror.org/00zgpxe28', 'no_lang_code', 1, 'https://ror.org/00zgpxe28 CondAlign (Norway)'), (35838, 'https://ror.org/00zh2nr83', 'no_lang_code', 1, 'https://ror.org/00zh2nr83 Sigla (Norway)'), (35839, 'https://ror.org/00zh9em21', 'pt', 1, 'https://ror.org/00zh9em21 Centro de Estudos da Voz'), (35840, 'https://ror.org/00zhnhw93', 'no_lang_code', 1, 'https://ror.org/00zhnhw93 Matpartner (Norway)'), (35841, 'https://ror.org/00zjkp172', 'no_lang_code', 1, 'https://ror.org/00zjkp172 Tsat (Norway)'), (35842, 'https://ror.org/00zmypf05', 'no_lang_code', 1, 'https://ror.org/00zmypf05 Le Loch Healthcare (Poland)'), (35843, 'https://ror.org/00zsezt30', 'no_lang_code', 1, 'https://ror.org/00zsezt30 Pudong Maternal and Child Health Hospital'), (35844, 'https://ror.org/00zsg1530', 'no_lang_code', 1, 'https://ror.org/00zsg1530 Vision iO (Norway)'), (35845, 'https://ror.org/00zt5yw80', 'en', 1, 'https://ror.org/00zt5yw80 American Oriental Society'), (35846, 'https://ror.org/00zx28k54', 'no_lang_code', 1, 'https://ror.org/00zx28k54 Artecriação (Brazil)'), (35847, 'https://ror.org/00zzy9k89', 'no_lang_code', 1, 'https://ror.org/00zzy9k89 Norsk Hoppemelk (Norway)'), (35848, 'https://ror.org/0100xag24', 'pt', 1, 'https://ror.org/0100xag24 Associação Brasileira de Médicos Veterinários de Equídeos'), (35849, 'https://ror.org/0101h5125', 'pt', 1, 'https://ror.org/0101h5125 Instituto Brasileiro de Mercado de Capitais'), (35850, 'https://ror.org/0101zye71', 'en', 1, 'https://ror.org/0101zye71 Brazilian Institute of Geography and Statistics Instituto Brasileiro de Geografia e Estatística'), (35851, 'https://ror.org/0104fhy48', 'no_lang_code', 1, 'https://ror.org/0104fhy48 Inter-Metro (Brazil)'), (35852, 'https://ror.org/010552r76', 'no_lang_code', 1, 'https://ror.org/010552r76 IBE (Slovenia)'), (35853, 'https://ror.org/01059d966', 'no_lang_code', 1, 'https://ror.org/01059d966 Norinnova (Norway)'), (35854, 'https://ror.org/0107jsx26', 'en', 1, 'https://ror.org/0107jsx26 Norwegian Society of Automatic Control'), (35855, 'https://ror.org/0108yh543', 'no_lang_code', 1, 'https://ror.org/0108yh543 Making View (Norway)'), (35856, 'https://ror.org/01094wq95', 'no_lang_code', 1, 'https://ror.org/01094wq95 Cybernetica (Norway)'), (35857, 'https://ror.org/0109vey20', 'no_lang_code', 1, 'https://ror.org/0109vey20 Marlo (Norway)'), (35858, 'https://ror.org/010a00062', 'no_lang_code', 1, 'https://ror.org/010a00062 TMG-BMC (Slovenia)'), (35859, 'https://ror.org/010a3bp06', 'no_lang_code', 1, 'https://ror.org/010a3bp06 Hermes Academic Publishing and Bookshop (Norway)'), (35860, 'https://ror.org/010ajwv03', 'no_lang_code', 1, 'https://ror.org/010ajwv03 Eli Lilly (Singapore)'), (35861, 'https://ror.org/010bpy365', 'no_lang_code', 1, 'https://ror.org/010bpy365 Kwekwe General Hospital'), (35862, 'https://ror.org/010e5k554', 'no_lang_code', 1, 'https://ror.org/010e5k554 Aquafarm Equipment (Norway)'), (35863, 'https://ror.org/010e7qh86', 'no_lang_code', 1, 'https://ror.org/010e7qh86 Idrettssenteret (Norway)'), (35864, 'https://ror.org/010ehb542', 'no_lang_code', 1, 'https://ror.org/010ehb542 Urbem Tecnologia Ambiental (Brazil)'), (35865, 'https://ror.org/010h1w694', 'no_lang_code', 1, 'https://ror.org/010h1w694 Innovatech (Brazil)'), (35866, 'https://ror.org/010h5fs55', 'en', 1, 'https://ror.org/010h5fs55 PIH Health'), (35867, 'https://ror.org/010mck520', 'de', 1, 'https://ror.org/010mck520 Universitäres Kinderwunschzentrum Lübeck'), (35868, 'https://ror.org/010mrqa05', 'en', 1, 'https://ror.org/010mrqa05 Arts Council Norway'), (35869, 'https://ror.org/010nnnk31', 'pl', 1, 'https://ror.org/010nnnk31 Wojskowy Instytut Techniki Pancernej i Samochodowej'), (35870, 'https://ror.org/010qfrm44', 'no_lang_code', 1, 'https://ror.org/010qfrm44 Compuminer Mineração de Dados & BI (Brazil)'), (35871, 'https://ror.org/010szz537', 'no_lang_code', 1, 'https://ror.org/010szz537 Sorbwater Technology (Norway)'), (35872, 'https://ror.org/010t80406', 'en', 1, 'https://ror.org/010t80406 Duplin General Hospital'), (35873, 'https://ror.org/010tqsy45', 'en', 1, 'https://ror.org/010tqsy45 Beijing United Family Hospital'), (35874, 'https://ror.org/010tvwd33', 'no_lang_code', 1, 'https://ror.org/010tvwd33 Rcasoft Informática (Brazil)'), (35875, 'https://ror.org/010twav05', 'no_lang_code', 1, 'https://ror.org/010twav05 Cientistas (Brazil)'), (35876, 'https://ror.org/010vett18', 'no_lang_code', 1, 'https://ror.org/010vett18 Tieto (Norway)'), (35877, 'https://ror.org/010vfte86', 'en', 1, 'https://ror.org/010vfte86 Rogaland County Council'), (35878, 'https://ror.org/010w37e28', 'en', 1, 'https://ror.org/010w37e28 Ghana Atomic Energy Commission'), (35879, 'https://ror.org/010y28g02', 'no_lang_code', 1, 'https://ror.org/010y28g02 Fupe Systems (Norway)'), (35880, 'https://ror.org/0110em457', 'pl', 1, 'https://ror.org/0110em457 Górnośląskie Centrum Medyczne'), (35881, 'https://ror.org/0110xbk95', 'en', 1, 'https://ror.org/0110xbk95 St Elizabeth Mission Hospital'), (35882, 'https://ror.org/0111q0t22', 'en', 1, 'https://ror.org/0111q0t22 Wujiang District People''s Hospital 吴江市第一人民医院'), (35883, 'https://ror.org/0112jt408', 'no_lang_code', 1, 'https://ror.org/0112jt408 Ipel - Itibanyl Produtos Especiais (Brazil)'), (35884, 'https://ror.org/01132my48', 'en', 1, 'https://ror.org/01132my48 Mengo Hospital'), (35885, 'https://ror.org/0113n2b16', 'en', 1, 'https://ror.org/0113n2b16 Aleris Hamlet Hospital'), (35886, 'https://ror.org/0117bm254', 'no_lang_code', 1, 'https://ror.org/0117bm254 Rfideas (Brazil)'), (35887, 'https://ror.org/0119f6n25', 'pt', 1, 'https://ror.org/0119f6n25 Fundação Energia e Saneamento'), (35888, 'https://ror.org/011at3t25', 'en', 1, 'https://ror.org/011at3t25 European University of Rome'), (35889, 'https://ror.org/011b7yt80', 'en', 1, 'https://ror.org/011b7yt80 Rashid Latif Medical College'), (35890, 'https://ror.org/011fsqw83', 'no_lang_code', 1, 'https://ror.org/011fsqw83 HomeControl (Norway)'), (35891, 'https://ror.org/011g06z87', 'en', 1, 'https://ror.org/011g06z87 Trincomalee Hospital ත්රිකුණාමලය රෝහල'), (35892, 'https://ror.org/011m6ze86', 'no_lang_code', 1, 'https://ror.org/011m6ze86 Mexeo (Poland)'), (35893, 'https://ror.org/011mfhx24', 'en', 1, 'https://ror.org/011mfhx24 Oslo Chamber of Commerce'), (35894, 'https://ror.org/011nk9770', 'en', 1, 'https://ror.org/011nk9770 Shri Ramswaroop Memorial University'), (35895, 'https://ror.org/011p1c445', 'no_lang_code', 1, 'https://ror.org/011p1c445 Kihoku hospital'), (35896, 'https://ror.org/011qemc14', 'no_lang_code', 1, 'https://ror.org/011qemc14 SolidTech (Norway)'), (35897, 'https://ror.org/011s3c574', 'no_lang_code', 1, 'https://ror.org/011s3c574 Stranda Prolog (Norway)'), (35898, 'https://ror.org/011sx0d94', 'en', 1, 'https://ror.org/011sx0d94 Oslo Public Library'), (35899, 'https://ror.org/011xmw283', 'en', 1, 'https://ror.org/011xmw283 Kuluva Hospital'), (35900, 'https://ror.org/011zjcv36', 'de', 1, 'https://ror.org/011zjcv36 Unfallkrankenhaus Berlin'), (35901, 'https://ror.org/011ztk477', 'no_lang_code', 1, 'https://ror.org/011ztk477 Litostroj Power (Slovenia)'), (35902, 'https://ror.org/0120amd78', 'de', 1, 'https://ror.org/0120amd78 Institut für Sozialwissenschaftliche Forschung'), (35903, 'https://ror.org/0120sbw19', 'no_lang_code', 1, 'https://ror.org/0120sbw19 Norwegian Directorate for Education and Training Utdanningsdirektoratet'), (35904, 'https://ror.org/0122ngb55', 'no_lang_code', 1, 'https://ror.org/0122ngb55 Saint-Gobain (Norway)'), (35905, 'https://ror.org/01249dt22', 'en', 1, 'https://ror.org/01249dt22 Aqua (France)'), (35906, 'https://ror.org/012674h84', 'no_lang_code', 1, 'https://ror.org/012674h84 Ericsson (Norway)'), (35907, 'https://ror.org/0126dzb30', 'cs', 1, 'https://ror.org/0126dzb30 Slezská Nemocnice v Opavě'), (35908, 'https://ror.org/01277af53', 'no_lang_code', 1, 'https://ror.org/01277af53 Zenitel (Norway)'), (35909, 'https://ror.org/012ang229', 'pt', 1, 'https://ror.org/012ang229 Instituto Nacional de Tecnologia National Institute of Technology'), (35910, 'https://ror.org/012b0w593', 'en', 1, 'https://ror.org/012b0w593 Kilcreene Orthopaedic Hospital Ospidéal Ortaipéideach Kilcreene'), (35911, 'https://ror.org/012bzsw43', 'en', 1, 'https://ror.org/012bzsw43 Danish National Institute of Public Health Statens Institut for Folkesundhed'), (35912, 'https://ror.org/012dd9d89', 'no_lang_code', 1, 'https://ror.org/012dd9d89 poLight (Norway)'), (35913, 'https://ror.org/012dwyq75', 'no_lang_code', 1, 'https://ror.org/012dwyq75 Gassco (Norway)'), (35914, 'https://ror.org/012ey9m84', 'en', 1, 'https://ror.org/012ey9m84 Brazilian Society of Research and Assistance to Craniofacial Rehabilitation Hospital of Sobrapar'), (35915, 'https://ror.org/012ezqr21', 'no_lang_code', 1, 'https://ror.org/012ezqr21 Norsk Geografisk Selskap'), (35916, 'https://ror.org/012ga1w05', 'en', 1, 'https://ror.org/012ga1w05 Memorial Ankara Hospital'), (35917, 'https://ror.org/012hfzv58', 'no_lang_code', 1, 'https://ror.org/012hfzv58 Armada (Poland)'), (35918, 'https://ror.org/012j4s611', 'de', 1, 'https://ror.org/012j4s611 Universitätsklinikum Tulln'), (35919, 'https://ror.org/012k58098', 'en', 1, 'https://ror.org/012k58098 Mercy Defiance Hospital'), (35920, 'https://ror.org/012m63179', 'en', 1, 'https://ror.org/012m63179 Leanchoil Hospital'), (35921, 'https://ror.org/012p2hd37', 'no_lang_code', 1, 'https://ror.org/012p2hd37 Albany Molecular Research (Singapore)'), (35922, 'https://ror.org/012q7s492', 'no_lang_code', 1, 'https://ror.org/012q7s492 Visual Sciences (United States)'), (35923, 'https://ror.org/012sdxq48', 'en', 1, 'https://ror.org/012sdxq48 Arendal Municipality'), (35924, 'https://ror.org/012ttce43', 'en', 1, 'https://ror.org/012ttce43 State Scientific Research Institute of Aviation Systems Государственный научно-исследовательский институт авиационных систем'), (35925, 'https://ror.org/012w90b89', 'en', 1, 'https://ror.org/012w90b89 Emirates Academy of Hospitality Management'), (35926, 'https://ror.org/012xbj452', 'en', 1, 'https://ror.org/012xbj452 Fourth People’s Hospital of Jinan'), (35927, 'https://ror.org/012zdsa19', 'no_lang_code', 1, 'https://ror.org/012zdsa19 Dips (Norway)'), (35928, 'https://ror.org/0130rew69', 'en', 1, 'https://ror.org/0130rew69 Bon Secours Hospital'), (35929, 'https://ror.org/013171h84', 'en', 1, 'https://ror.org/013171h84 Aware Global Hospital'), (35930, 'https://ror.org/0133spp95', 'no_lang_code', 1, 'https://ror.org/0133spp95 Metal Expert (Poland)'), (35931, 'https://ror.org/013572v77', 'no_lang_code', 1, 'https://ror.org/013572v77 ActionPhoto International (Norway)'), (35932, 'https://ror.org/013796n77', 'pt', 1, 'https://ror.org/013796n77 Fundação de Apoio à Escola Técnica'), (35933, 'https://ror.org/013afsb92', 'no_lang_code', 1, 'https://ror.org/013afsb92 Spiro Medical (Norway)'), (35934, 'https://ror.org/013b2a427', 'en', 1, 'https://ror.org/013b2a427 Campbell Hospital'), (35935, 'https://ror.org/013c4m264', 'no_lang_code', 1, 'https://ror.org/013c4m264 Waters (China)'), (35936, 'https://ror.org/013c8e386', 'no_lang_code', 1, 'https://ror.org/013c8e386 S2G Biochem (Canada)'), (35937, 'https://ror.org/013exrh58', 'no', 1, 'https://ror.org/013exrh58 Kanvas'), (35938, 'https://ror.org/013pbge12', 'en', 1, 'https://ror.org/013pbge12 Poltegor Institute'), (35939, 'https://ror.org/013v3p656', 'no_lang_code', 1, 'https://ror.org/013v3p656 Telzas (Poland)'), (35940, 'https://ror.org/013z3dx97', 'en', 1, 'https://ror.org/013z3dx97 Eastern Idaho Technical College'), (35941, 'https://ror.org/013zxek87', 'en', 1, 'https://ror.org/013zxek87 Hallym Polytechnic University 翰林聖心大學校 한림성심대학교'), (35942, 'https://ror.org/0140x9678', 'en', 1, 'https://ror.org/0140x9678 Jiujiang First People''s Hospital'), (35943, 'https://ror.org/0141vbw04', 'en', 1, 'https://ror.org/0141vbw04 Piedmont Newnan Hospital'), (35944, 'https://ror.org/01435bw87', 'no_lang_code', 1, 'https://ror.org/01435bw87 Itatex (Brazil)'), (35945, 'https://ror.org/01436qt40', 'no_lang_code', 1, 'https://ror.org/01436qt40 Mednax (United States)'), (35946, 'https://ror.org/0145cbg67', 'no_lang_code', 1, 'https://ror.org/0145cbg67 Adal (Poland)'), (35947, 'https://ror.org/0146e2321', 'no_lang_code', 1, 'https://ror.org/0146e2321 Terra Viva Consultoria Ambiental (Brazil)'), (35948, 'https://ror.org/01480s295', 'no_lang_code', 1, 'https://ror.org/01480s295 Pearson (United Kingdom)'), (35949, 'https://ror.org/0148n2a41', 'no_lang_code', 1, 'https://ror.org/0148n2a41 Safelink (Norway)'), (35950, 'https://ror.org/014cmtr13', 'en', 1, 'https://ror.org/014cmtr13 Unit for Social Innovation and Research Shipyard'), (35951, 'https://ror.org/014crwt40', 'no_lang_code', 1, 'https://ror.org/014crwt40 Due Miljø (Norway)'), (35952, 'https://ror.org/014dynf21', 'no_lang_code', 1, 'https://ror.org/014dynf21 InnSep (Norway)'), (35953, 'https://ror.org/014eq5c38', 'en', 1, 'https://ror.org/014eq5c38 Adventist Health Simi Valley'), (35954, 'https://ror.org/014eweh95', 'en', 1, 'https://ror.org/014eweh95 Division of Grants & Agreements'), (35955, 'https://ror.org/014frm951', 'no_lang_code', 1, 'https://ror.org/014frm951 Møre Maritime (Norway)'), (35956, 'https://ror.org/014has228', 'en', 1, 'https://ror.org/014has228 Fort Saskatchewan Community Hospital'), (35957, 'https://ror.org/014kzqt55', 'no_lang_code', 1, 'https://ror.org/014kzqt55 Rheumatech (Norway)'), (35958, 'https://ror.org/014m06j94', 'en', 1, 'https://ror.org/014m06j94 Sterkstroom Provincial Hospital'), (35959, 'https://ror.org/014mmh993', 'no_lang_code', 1, 'https://ror.org/014mmh993 BIA (Slovenia)'), (35960, 'https://ror.org/014nmkx89', 'en', 1, 'https://ror.org/014nmkx89 Mediterranean Institute for Advanced Studies'), (35961, 'https://ror.org/014q50n13', 'no_lang_code', 1, 'https://ror.org/014q50n13 Advance Soluções em Informática (Brazil)'), (35962, 'https://ror.org/014rks409', 'en', 1, 'https://ror.org/014rks409 Finland University'), (35963, 'https://ror.org/014snft51', 'no_lang_code', 1, 'https://ror.org/014snft51 Harpha Sea (Slovenia)'), (35964, 'https://ror.org/014tr1k14', 'en', 1, 'https://ror.org/014tr1k14 Redland Hospital'), (35965, 'https://ror.org/014wzed86', 'no_lang_code', 1, 'https://ror.org/014wzed86 Smiths Group (United Kingdom)'), (35966, 'https://ror.org/014x3kb31', 'en', 1, 'https://ror.org/014x3kb31 Huntsville Hospital'), (35967, 'https://ror.org/014x4zd69', 'en', 1, 'https://ror.org/014x4zd69 LewisGale Hospital Montgomery'), (35968, 'https://ror.org/014ycqe77', 'fr', 1, 'https://ror.org/014ycqe77 Institut d''Économie Publique'), (35969, 'https://ror.org/014yncy15', 'no_lang_code', 1, 'https://ror.org/014yncy15 XCOM Wireless (United States)'), (35970, 'https://ror.org/014zbcz37', 'en', 1, 'https://ror.org/014zbcz37 Korea Centre for Atmospheric Environment Research'), (35971, 'https://ror.org/0152tc190', 'en', 1, 'https://ror.org/0152tc190 Yantai Infectious Diseases Hospital'), (35972, 'https://ror.org/0153jrn34', 'en', 1, 'https://ror.org/0153jrn34 Champlain Regional College Collège régional champlain de saint-lambert'), (35973, 'https://ror.org/01549pn89', 'no_lang_code', 1, 'https://ror.org/01549pn89 West Group (Norway)'), (35974, 'https://ror.org/01555zp21', 'en', 1, 'https://ror.org/01555zp21 Swiss School of Tourism and Hospitality'), (35975, 'https://ror.org/01562cp57', 'en', 1, 'https://ror.org/01562cp57 Bethel Baptist Hospital'), (35976, 'https://ror.org/0156b0f63', 'en', 1, 'https://ror.org/0156b0f63 Board of European Students of Technology'), (35977, 'https://ror.org/0156shp22', 'en', 1, 'https://ror.org/0156shp22 Bon Secours Hospital Dublin'), (35978, 'https://ror.org/0157zmb13', 'en', 1, 'https://ror.org/0157zmb13 Citrus College'), (35979, 'https://ror.org/0158j3249', 'no_lang_code', 1, 'https://ror.org/0158j3249 Felleskjøpet Agri (Norway)'), (35980, 'https://ror.org/01599c412', 'en', 1, 'https://ror.org/01599c412 Lower Saxony State Museum Niedersächsisches Landesmuseum Hannover'), (35981, 'https://ror.org/0159fax30', 'no', 1, 'https://ror.org/0159fax30 Porsanger Kommune'), (35982, 'https://ror.org/0159gyh21', 'no_lang_code', 1, 'https://ror.org/0159gyh21 Telekom Slovenije (Slovenia)'), (35983, 'https://ror.org/015aem925', 'en', 1, 'https://ror.org/015aem925 New Generation University College'), (35984, 'https://ror.org/015ar5551', 'pt', 1, 'https://ror.org/015ar5551 Secretaria de Ciência, Tecnologia e Inovação da Marinha'), (35985, 'https://ror.org/015ck6z19', 'no_lang_code', 1, 'https://ror.org/015ck6z19 G3 Ungplanter (Norway)'), (35986, 'https://ror.org/015ckc894', 'no_lang_code', 1, 'https://ror.org/015ckc894 Aibel (Norway)'), (35987, 'https://ror.org/015g7kj97', 'no_lang_code', 1, 'https://ror.org/015g7kj97 Xrgia (Norway)'), (35988, 'https://ror.org/015g8zg50', 'en', 1, 'https://ror.org/015g8zg50 Royal Buckinghamshire Hospital'), (35989, 'https://ror.org/015gtm372', 'en', 1, 'https://ror.org/015gtm372 Steve Biko Akademiese Hospitaal Steve Biko Hospital'), (35990, 'https://ror.org/015jsx554', 'no_lang_code', 1, 'https://ror.org/015jsx554 Zel Technologies (United States)'), (35991, 'https://ror.org/015ndme87', 'en', 1, 'https://ror.org/015ndme87 Dream Adaptive Recreation'), (35992, 'https://ror.org/015tqbb95', 'en', 1, 'https://ror.org/015tqbb95 Tumor Hospital of Xinjiang Medical University'), (35993, 'https://ror.org/015w8tk05', 'en', 1, 'https://ror.org/015w8tk05 Hospital de Olhos Sadalla Amin Ghanem Sadalla Amin Ghanem Eye Hospital'), (35994, 'https://ror.org/015z4kn26', 'en', 1, 'https://ror.org/015z4kn26 117th Hospital of People''s Liberation Army'), (35995, 'https://ror.org/0162adx59', 'en', 1, 'https://ror.org/0162adx59 Hull College'), (35996, 'https://ror.org/016455p20', 'no_lang_code', 1, 'https://ror.org/016455p20 OMBE Plast (Norway)'), (35997, 'https://ror.org/01653mw07', 'en', 1, 'https://ror.org/01653mw07 Bệnh viện Đà Nẵng Da Nang Hospital'), (35998, 'https://ror.org/016646t85', 'en', 1, 'https://ror.org/016646t85 Business Region Bergen'), (35999, 'https://ror.org/016bw3t53', 'en', 1, 'https://ror.org/016bw3t53 Second Hospital of Yichang'), (36000, 'https://ror.org/016ftvg65', 'no_lang_code', 1, 'https://ror.org/016ftvg65 Lytix Biopharma (Norway)'), (36001, 'https://ror.org/016gp0w25', 'no_lang_code', 1, 'https://ror.org/016gp0w25 Emerson (Norway)'), (36002, 'https://ror.org/016j6rk60', 'en', 1, 'https://ror.org/016j6rk60 Accra Technical University'), (36003, 'https://ror.org/016jvas21', 'en', 1, 'https://ror.org/016jvas21 T1D Exchange'), (36004, 'https://ror.org/016k98t76', 'en', 1, 'https://ror.org/016k98t76 Nanjing Traditional Chinese Medicine Hospital'), (36005, 'https://ror.org/016mx5748', 'en', 1, 'https://ror.org/016mx5748 Monash Children’s Hospital'), (36006, 'https://ror.org/016mx6p04', 'no_lang_code', 1, 'https://ror.org/016mx6p04 Liegruppen (Norway)'), (36007, 'https://ror.org/016peqn40', 'no_lang_code', 1, 'https://ror.org/016peqn40 Teknisk Lys (Norway)'), (36008, 'https://ror.org/016pvmh77', 'no_lang_code', 1, 'https://ror.org/016pvmh77 Botngaard (Norway)'), (36009, 'https://ror.org/016qgdx27', 'no_lang_code', 1, 'https://ror.org/016qgdx27 ATM Brovig (Norway)'), (36010, 'https://ror.org/016sv8t06', 'no_lang_code', 1, 'https://ror.org/016sv8t06 Biovotec (Norway)'), (36011, 'https://ror.org/016thfw32', 'no_lang_code', 1, 'https://ror.org/016thfw32 Kjemi (Norway)'), (36012, 'https://ror.org/016wzar13', 'no_lang_code', 1, 'https://ror.org/016wzar13 Arex Defense (Slovenia)'), (36013, 'https://ror.org/016yah886', 'en', 1, 'https://ror.org/016yah886 Norwegian Institute of Local History'), (36014, 'https://ror.org/016yh0k66', 'pl', 1, 'https://ror.org/016yh0k66 Wojskowy Instytut Chemii i Radiometrii'), (36015, 'https://ror.org/016zetd68', 'no_lang_code', 1, 'https://ror.org/016zetd68 iExcel (Norway)'), (36016, 'https://ror.org/0170a8r40', 'no_lang_code', 1, 'https://ror.org/0170a8r40 Humanpass (South Korea)'), (36017, 'https://ror.org/0170m4k80', 'en', 1, 'https://ror.org/0170m4k80 Los Angeles Pierce College'), (36018, 'https://ror.org/0170ys284', 'en', 1, 'https://ror.org/0170ys284 Connect'), (36019, 'https://ror.org/0171xsf67', 'no_lang_code', 1, 'https://ror.org/0171xsf67 Response Nordic (Norway)'), (36020, 'https://ror.org/017365f98', 'no_lang_code', 1, 'https://ror.org/017365f98 Devworks Game Technology (Brazil)'), (36021, 'https://ror.org/017422k09', 'no_lang_code', 1, 'https://ror.org/017422k09 Centro Técnico de Automação (Brazil)'), (36022, 'https://ror.org/0174nta86', 'es', 1, 'https://ror.org/0174nta86 Hospital Alto Guadalquivir'), (36023, 'https://ror.org/0175hgp63', 'en', 1, 'https://ror.org/0175hgp63 Malda Medical College and Hospital'), (36024, 'https://ror.org/0176ge440', 'no_lang_code', 1, 'https://ror.org/0176ge440 IV Group (Norway)'), (36025, 'https://ror.org/0177s1090', 'es', 1, 'https://ror.org/0177s1090 Instituto Tecnológico de Nogales'), (36026, 'https://ror.org/017aag272', 'no_lang_code', 1, 'https://ror.org/017aag272 Scanship (Norway)'), (36027, 'https://ror.org/017apa262', 'no_lang_code', 1, 'https://ror.org/017apa262 Gurskøy (Norway)'), (36028, 'https://ror.org/017aqqw29', 'en', 1, 'https://ror.org/017aqqw29 Brazilian Society for the Advancement of Science Sociedade Brasileira para o Progresso da Ciência'), (36029, 'https://ror.org/017bpsz44', 'no_lang_code', 1, 'https://ror.org/017bpsz44 Rejonowe Przedsiębiorstwo Wodociągów i Kanalizacji W Sosnowcu (Poland)'), (36030, 'https://ror.org/017c6yw85', 'no_lang_code', 1, 'https://ror.org/017c6yw85 OSO Hotwater (Norway)'), (36031, 'https://ror.org/017cmyy42', 'en', 1, 'https://ror.org/017cmyy42 Falmouth Hospital'), (36032, 'https://ror.org/017em7993', 'no_lang_code', 1, 'https://ror.org/017em7993 Aerocosmos федеральное государственное бюджетное научное учреждение Научно-исследовательский институт аэрокосмического мониторинга АЭРОКОСМОС'), (36033, 'https://ror.org/017enfr88', 'en', 1, 'https://ror.org/017enfr88 Franciszek Górski Institute of Plant Physiology Instytut Fizjologii Roślin im. Franciszek Górskiego'), (36034, 'https://ror.org/017fps450', 'no_lang_code', 1, 'https://ror.org/017fps450 Fornebu Consulting (Norway)'), (36035, 'https://ror.org/017fyx225', 'en', 1, 'https://ror.org/017fyx225 Institute of Art Instytut Sztuki Polskiej Akademii Nauk'), (36036, 'https://ror.org/017ga1x09', 'no_lang_code', 1, 'https://ror.org/017ga1x09 Level-5 (Japan)'), (36037, 'https://ror.org/017gwgp39', 'no_lang_code', 1, 'https://ror.org/017gwgp39 Blue Dot Solutions (Poland)'), (36038, 'https://ror.org/017hmpr31', 'no_lang_code', 1, 'https://ror.org/017hmpr31 Narcissus Pesquisa Clínica e Biotecnologia (Brazil)'), (36039, 'https://ror.org/017hmzz19', 'es', 1, 'https://ror.org/017hmzz19 Hospital Carlos Van Buren'), (36040, 'https://ror.org/017j15308', 'en', 1, 'https://ror.org/017j15308 University Press of Florida'), (36041, 'https://ror.org/017jdxf89', 'no_lang_code', 1, 'https://ror.org/017jdxf89 Sibanye Gold (South Africa)'), (36042, 'https://ror.org/017jtm929', 'no', 1, 'https://ror.org/017jtm929 Polaria'), (36043, 'https://ror.org/017q09r90', 'no_lang_code', 1, 'https://ror.org/017q09r90 Otech Marine Services (Norway)'), (36044, 'https://ror.org/017qbxe07', 'pt', 1, 'https://ror.org/017qbxe07 Centro Infantil Boldrini'), (36045, 'https://ror.org/017qjg066', 'en', 1, 'https://ror.org/017qjg066 Dahua Hospital'), (36046, 'https://ror.org/017s6v868', 'en', 1, 'https://ror.org/017s6v868 Jilin Vocational College of Industry and Technology'), (36047, 'https://ror.org/017t8rw26', 'no_lang_code', 1, 'https://ror.org/017t8rw26 Tramppo (Brazil)'), (36048, 'https://ror.org/017vkhg73', 'it', 1, 'https://ror.org/017vkhg73 Azienda Ospedaliera di Valtellina e Valchiavenna'), (36049, 'https://ror.org/017vpsa98', 'no_lang_code', 1, 'https://ror.org/017vpsa98 Redcord (Norway)'), (36050, 'https://ror.org/017vpw228', 'en', 1, 'https://ror.org/017vpw228 Great Plains College'), (36051, 'https://ror.org/017wtg883', 'no_lang_code', 1, 'https://ror.org/017wtg883 Sogn Aqua (Norway)'), (36052, 'https://ror.org/017x9j395', 'en', 1, 'https://ror.org/017x9j395 Indiana Orthopaedic Hospital'), (36053, 'https://ror.org/017za6717', 'no_lang_code', 1, 'https://ror.org/017za6717 Dignio (Norway)'), (36054, 'https://ror.org/018049485', 'no_lang_code', 1, 'https://ror.org/018049485 Enghouse Systems (Norway)'), (36055, 'https://ror.org/0180r1p81', 'en', 1, 'https://ror.org/0180r1p81 Pellervo Economic Research'), (36056, 'https://ror.org/0182n4f20', 'en', 1, 'https://ror.org/0182n4f20 National Center for University Entrance Examinations 独立行政法人大学入試センター'), (36057, 'https://ror.org/01846wa75', 'no_lang_code', 1, 'https://ror.org/01846wa75 Profixio (Norway)'), (36058, 'https://ror.org/0184f7469', 'de', 1, 'https://ror.org/0184f7469 Alb Fils Kliniken'), (36059, 'https://ror.org/0184ryh50', 'no', 1, 'https://ror.org/0184ryh50 Hospital Organiser'), (36060, 'https://ror.org/0185jey51', 'fr', 1, 'https://ror.org/0185jey51 French for School of High Studies in Engineering Hautes Études d''Ingénieur'), (36061, 'https://ror.org/018674f79', 'no_lang_code', 1, 'https://ror.org/018674f79 Laboratorium Kosmetyczne Dr Irena Eris (Poland)'), (36062, 'https://ror.org/0186a6222', 'no_lang_code', 1, 'https://ror.org/0186a6222 Grieg Seafood (Norway)'), (36063, 'https://ror.org/0187b5307', 'no_lang_code', 1, 'https://ror.org/0187b5307 Fermentec (Brazil)'), (36064, 'https://ror.org/0187ced18', 'no_lang_code', 1, 'https://ror.org/0187ced18 Furore film (Norway)'), (36065, 'https://ror.org/0187k6t98', 'no_lang_code', 1, 'https://ror.org/0187k6t98 SES Europe (Norway)'), (36066, 'https://ror.org/01882y777', 'en', 1, 'https://ror.org/01882y777 Stony Brook Medicine'), (36067, 'https://ror.org/0188h2v81', 'en', 1, 'https://ror.org/0188h2v81 Patton State Hospital'), (36068, 'https://ror.org/0188hvh39', 'tr', 1, 'https://ror.org/0188hvh39 Gelişim Üniversitesi'), (36069, 'https://ror.org/0189bb227', 'no_lang_code', 1, 'https://ror.org/0189bb227 Alcontrol Laboratories (Norway)'), (36070, 'https://ror.org/018a0bk66', 'no_lang_code', 1, 'https://ror.org/018a0bk66 Rolls-Royce (Norway)'), (36071, 'https://ror.org/018ay6c72', 'no_lang_code', 1, 'https://ror.org/018ay6c72 Beisfjord Sementvarefabrikk (Norway)'), (36072, 'https://ror.org/018baft35', 'en', 1, 'https://ror.org/018baft35 Cochise College'), (36073, 'https://ror.org/018c7c068', 'en', 1, 'https://ror.org/018c7c068 JiangSu Armed Police General Hospital'); INSERT INTO `rors` VALUES (36074, 'https://ror.org/018ced875', 'en', 1, 'https://ror.org/018ced875 Federal University Lokoja'), (36075, 'https://ror.org/018dznw39', 'en', 1, 'https://ror.org/018dznw39 Rubaga Hospital'), (36076, 'https://ror.org/018fymd62', 'en', 1, 'https://ror.org/018fymd62 Kamla Nehru Memorial Hospital'), (36077, 'https://ror.org/018gwvf53', 'no_lang_code', 1, 'https://ror.org/018gwvf53 Eureka Pumps (Norway)'), (36078, 'https://ror.org/018jfg264', 'no_lang_code', 1, 'https://ror.org/018jfg264 Seacalx (Norway)'), (36079, 'https://ror.org/018jj2831', 'no_lang_code', 1, 'https://ror.org/018jj2831 Nanomed (Brazil)'), (36080, 'https://ror.org/018mn5n05', 'no_lang_code', 1, 'https://ror.org/018mn5n05 Feed Control (Norway)'), (36081, 'https://ror.org/018mr1k06', 'no_lang_code', 1, 'https://ror.org/018mr1k06 Četrta Pot (Slovenia)'), (36082, 'https://ror.org/018nftw61', 'no_lang_code', 1, 'https://ror.org/018nftw61 Dataloy (Norway)'), (36083, 'https://ror.org/018nk4a27', 'en', 1, 'https://ror.org/018nk4a27 Global Open University'), (36084, 'https://ror.org/018pest88', 'en', 1, 'https://ror.org/018pest88 Cradock Provincial Hospital'), (36085, 'https://ror.org/018rc2s15', 'no_lang_code', 1, 'https://ror.org/018rc2s15 NorSun (Norway)'), (36086, 'https://ror.org/018s9hj09', 'sl', 1, 'https://ror.org/018s9hj09 Inštitut za Javno Upravo'), (36087, 'https://ror.org/018samx11', 'en', 1, 'https://ror.org/018samx11 Zone01 Robotics'), (36088, 'https://ror.org/018tgms75', 'no_lang_code', 1, 'https://ror.org/018tgms75 Microdesign Informatica Tecnologia Industria e Comerico (Brazil)'), (36089, 'https://ror.org/018w84g35', 'pt', 1, 'https://ror.org/018w84g35 Instituto Barretos de Tecnologia'), (36090, 'https://ror.org/018wm7s07', 'en', 1, 'https://ror.org/018wm7s07 Coal Mining Museum in Zabrze'), (36091, 'https://ror.org/018wmr002', 'no_lang_code', 1, 'https://ror.org/018wmr002 Åkrehamn Trålbøteri (Norway)'), (36092, 'https://ror.org/018xkp798', 'no_lang_code', 1, 'https://ror.org/018xkp798 C-Feed (Norway)'), (36093, 'https://ror.org/018zf4j27', 'no', 1, 'https://ror.org/018zf4j27 Gjerdrum kommune'), (36094, 'https://ror.org/0197t7j38', 'en', 1, 'https://ror.org/0197t7j38 Bon Secours Hospital Cork'), (36095, 'https://ror.org/0198mwj18', 'en', 1, 'https://ror.org/0198mwj18 North Norwegian Art Center'), (36096, 'https://ror.org/0198yxk45', 'no_lang_code', 1, 'https://ror.org/0198yxk45 LinkGen (Brazil)'), (36097, 'https://ror.org/019aeg752', 'en', 1, 'https://ror.org/019aeg752 Bryansk State Agrarian University Брянский государственный аграрный университет'), (36098, 'https://ror.org/019bexy50', 'hu', 1, 'https://ror.org/019bexy50 Szent Borbála Kórház'), (36099, 'https://ror.org/019c3k705', 'no_lang_code', 1, 'https://ror.org/019c3k705 Vitality Innovation (Norway)'), (36100, 'https://ror.org/019cg0811', 'pt', 1, 'https://ror.org/019cg0811 Instituto Histórico e Geográfico Brasileiro'), (36101, 'https://ror.org/019cs7136', 'no_lang_code', 1, 'https://ror.org/019cs7136 Atmel (Norway)'), (36102, 'https://ror.org/019cw2518', 'en', 1, 'https://ror.org/019cw2518 Alameda County Public Health Department'), (36103, 'https://ror.org/019cxby81', 'en', 1, 'https://ror.org/019cxby81 Biblioteca Nacional do Brasil National Library of Brazil'), (36104, 'https://ror.org/019dzwc76', 'no', 1, 'https://ror.org/019dzwc76 Lebesby kommune'), (36105, 'https://ror.org/019f0qd57', 'no_lang_code', 1, 'https://ror.org/019f0qd57 Sognefrukt (Norway)'), (36106, 'https://ror.org/019gdfm13', 'es', 1, 'https://ror.org/019gdfm13 Hospital Universitario Rey Juan Carlos'), (36107, 'https://ror.org/019h74q49', 'no_lang_code', 1, 'https://ror.org/019h74q49 PPUH Bryk Witold Bryk (Poland)'), (36108, 'https://ror.org/019hjw009', 'en', 1, 'https://ror.org/019hjw009 Fraunhofer Institute for Industrial Mathematics Fraunhofer-Institut für Techno- und Wirtschaftsmathematik'), (36109, 'https://ror.org/019nn6105', 'no_lang_code', 1, 'https://ror.org/019nn6105 BW Group (Norway)'), (36110, 'https://ror.org/019q0kc03', 'no_lang_code', 1, 'https://ror.org/019q0kc03 Biowater Technology (Norway)'), (36111, 'https://ror.org/019rdg506', 'no_lang_code', 1, 'https://ror.org/019rdg506 Saiseikaisenri Hospital'), (36112, 'https://ror.org/019sgcz74', 'en', 1, 'https://ror.org/019sgcz74 Slovenian Centre of Excellence for Space Sciences and Technologies'), (36113, 'https://ror.org/019thgp94', 'en', 1, 'https://ror.org/019thgp94 Adventist Health Community Care-Hanford'), (36114, 'https://ror.org/019wdt926', 'no_lang_code', 1, 'https://ror.org/019wdt926 Himgiri Zee University'), (36115, 'https://ror.org/019wmzy95', 'no_lang_code', 1, 'https://ror.org/019wmzy95 VS Safety (Norway)'), (36116, 'https://ror.org/019wpez42', 'no_lang_code', 1, 'https://ror.org/019wpez42 Proteket (Norway)'), (36117, 'https://ror.org/019yny421', 'en', 1, 'https://ror.org/019yny421 Santa Paula Hospital'), (36118, 'https://ror.org/01a1mq059', 'en', 1, 'https://ror.org/01a1mq059 ARC Centre of Excellence in Plant Energy Biology'), (36119, 'https://ror.org/01a2gef28', 'en', 1, 'https://ror.org/01a2gef28 Nanjing Maternity and Child Health Care Hospital'), (36120, 'https://ror.org/01a48y329', 'es', 1, 'https://ror.org/01a48y329 Hospital Punta Pacifica'), (36121, 'https://ror.org/01a62v145', 'en', 1, 'https://ror.org/01a62v145 Leibniz Institute of Vegetable and Ornamental Crops Leibniz-Institut für Gemüse- und Zierpflanzenbau'), (36122, 'https://ror.org/01a66pc38', 'no_lang_code', 1, 'https://ror.org/01a66pc38 MRA Indústria de Equipamentos Eletrônicos (Brazil)'), (36123, 'https://ror.org/01a6v1434', 'no_lang_code', 1, 'https://ror.org/01a6v1434 Moltres (Norway)'), (36124, 'https://ror.org/01a7fxy42', 'en', 1, 'https://ror.org/01a7fxy42 St. Brendan''s Hospital'), (36125, 'https://ror.org/01a80cj23', 'no_lang_code', 1, 'https://ror.org/01a80cj23 Novartis (Netherlands)'), (36126, 'https://ror.org/01aaadk61', 'no_lang_code', 1, 'https://ror.org/01aaadk61 JB Well Solutions (Norway)'), (36127, 'https://ror.org/01abdqw97', 'no_lang_code', 1, 'https://ror.org/01abdqw97 Dhulikhel Hospital'), (36128, 'https://ror.org/01absdg22', 'en', 1, 'https://ror.org/01absdg22 Saidu Teaching Hospital'), (36129, 'https://ror.org/01abzeb36', 'en', 1, 'https://ror.org/01abzeb36 Bladen Community College'), (36130, 'https://ror.org/01adnc146', 'no_lang_code', 1, 'https://ror.org/01adnc146 CFlex (Brazil)'), (36131, 'https://ror.org/01adsn089', 'no_lang_code', 1, 'https://ror.org/01adsn089 Metaltech Sorocaba Equipamentos e Serviços (Brazil)'), (36132, 'https://ror.org/01adx2n38', 'no_lang_code', 1, 'https://ror.org/01adx2n38 Viken Skog (Norway)'), (36133, 'https://ror.org/01af24v42', 'es', 1, 'https://ror.org/01af24v42 Instituto Tecnológico de Mérida'), (36134, 'https://ror.org/01afg1s08', 'no_lang_code', 1, 'https://ror.org/01afg1s08 Reime (Norway)'), (36135, 'https://ror.org/01ahbf530', 'en', 1, 'https://ror.org/01ahbf530 Silverton Hospital'), (36136, 'https://ror.org/01aj5dy09', 'en', 1, 'https://ror.org/01aj5dy09 Marquette General Hospital'), (36137, 'https://ror.org/01ajzj063', 'no_lang_code', 1, 'https://ror.org/01ajzj063 GMV Innovating Solutions (Poland)'), (36138, 'https://ror.org/01am5a204', 'en', 1, 'https://ror.org/01am5a204 Sobramfa – Medical Education and Humanism'), (36139, 'https://ror.org/01ams7d26', 'pt', 1, 'https://ror.org/01ams7d26 Sociedade Brasileira de Alimentação e Nutrição'), (36140, 'https://ror.org/01apaq485', 'en', 1, 'https://ror.org/01apaq485 Fort England Psigiatriese hospitaal Fort England Psychiatric Hospital'), (36141, 'https://ror.org/01ar8dr59', 'en', 1, 'https://ror.org/01ar8dr59 Division of Chemistry'), (36142, 'https://ror.org/01ark0470', 'en', 1, 'https://ror.org/01ark0470 Abudwak Maternity and Children''s Hospital Isbitaalka Caabudwaaq ee Daryeelka Umulaha iyo Caruurta'), (36143, 'https://ror.org/01arxq231', 'no_lang_code', 1, 'https://ror.org/01arxq231 Cobuilder (Norway)'), (36144, 'https://ror.org/01b1fn946', 'en', 1, 'https://ror.org/01b1fn946 American College, Madurai'), (36145, 'https://ror.org/01b2feq51', 'no_lang_code', 1, 'https://ror.org/01b2feq51 Envit (Slovenia)'), (36146, 'https://ror.org/01b923653', 'no_lang_code', 1, 'https://ror.org/01b923653 Zebra Biologics (United States)'), (36147, 'https://ror.org/01bd9d715', 'en', 1, 'https://ror.org/01bd9d715 Kamuli Mission Hospital'), (36148, 'https://ror.org/01bdmd194', 'de', 1, 'https://ror.org/01bdmd194 Rems-Murr-Klinikum'), (36149, 'https://ror.org/01befse58', 'en', 1, 'https://ror.org/01befse58 Bryn Athyn College'), (36150, 'https://ror.org/01bfb0f53', 'no_lang_code', 1, 'https://ror.org/01bfb0f53 Maritime Robotics (Norway)'), (36151, 'https://ror.org/01bgked92', 'fr', 1, 'https://ror.org/01bgked92 Centre de Santé et de Services Sociaux de la Montagne'), (36152, 'https://ror.org/01bhgpn34', 'no_lang_code', 1, 'https://ror.org/01bhgpn34 TRAK (Poland)'), (36153, 'https://ror.org/01bjya005', 'en', 1, 'https://ror.org/01bjya005 Darbhanga Medical College and Hospital'), (36154, 'https://ror.org/01bkvqx83', 'en', 1, 'https://ror.org/01bkvqx83 Affiliated Hospital of Hangzhou Normal University'), (36155, 'https://ror.org/01bnqts78', 'en', 1, 'https://ror.org/01bnqts78 Lake Washington Institute of Technology'), (36156, 'https://ror.org/01bpdjm13', 'en', 1, 'https://ror.org/01bpdjm13 Keiser University Latin American Campus'), (36157, 'https://ror.org/01bqcs587', 'en', 1, 'https://ror.org/01bqcs587 Holy Apostles College and Seminary'), (36158, 'https://ror.org/01bqp1107', 'no_lang_code', 1, 'https://ror.org/01bqp1107 Selfa (Norway)'), (36159, 'https://ror.org/01bqtxm09', 'no_lang_code', 1, 'https://ror.org/01bqtxm09 VIsport (Slovenia)'), (36160, 'https://ror.org/01br8pc86', 'no_lang_code', 1, 'https://ror.org/01br8pc86 Allskog (Norway)'), (36161, 'https://ror.org/01bre2z07', 'en', 1, 'https://ror.org/01bre2z07 Fremont Memorial Hospital'), (36162, 'https://ror.org/01brm2x11', 'de', 1, 'https://ror.org/01brm2x11 Diakovere'), (36163, 'https://ror.org/01brr5229', 'en', 1, 'https://ror.org/01brr5229 Brazilian Radiation Protection Society Sociedade Brasileira de Proteção Radiológica'), (36164, 'https://ror.org/01brz0r85', 'pt', 1, 'https://ror.org/01brz0r85 Instituto Irmãs Santa Marcelina'), (36165, 'https://ror.org/01btsgc53', 'no_lang_code', 1, 'https://ror.org/01btsgc53 Miejskie Przedsiebiorstwo Wodociągów i Kanalizacji (Poland)'), (36166, 'https://ror.org/01by4sz34', 'no_lang_code', 1, 'https://ror.org/01by4sz34 Ultizyme International (Japan)'), (36167, 'https://ror.org/01c0exk17', 'en', 1, 'https://ror.org/01c0exk17 First Affiliated Hospital of Heilongjiang University of Chinese Medicine'), (36168, 'https://ror.org/01c1w2064', 'no_lang_code', 1, 'https://ror.org/01c1w2064 Zakład Wodociągów i Kanalizacji (Poland)'), (36169, 'https://ror.org/01c5r3056', 'en', 1, 'https://ror.org/01c5r3056 Holy Spirit Hospital'), (36170, 'https://ror.org/01c6xft10', 'no_lang_code', 1, 'https://ror.org/01c6xft10 ClampOn (Norway)'), (36171, 'https://ror.org/01c7p3v19', 'no_lang_code', 1, 'https://ror.org/01c7p3v19 Japan Aviation Electronics Industry (Japan) 日本航空電子工業'), (36172, 'https://ror.org/01ca46h26', 'en', 1, 'https://ror.org/01ca46h26 Association of Minority Health Professions Schools'), (36173, 'https://ror.org/01cay9k79', 'en', 1, 'https://ror.org/01cay9k79 Sri Ramachandra Medical Centre'), (36174, 'https://ror.org/01cb7ff94', 'no_lang_code', 1, 'https://ror.org/01cb7ff94 Nordic Aquafarms (Norway)'), (36175, 'https://ror.org/01cbjg783', 'en', 1, 'https://ror.org/01cbjg783 Mercy St. Charles Hospital'), (36176, 'https://ror.org/01cce5t38', 'en', 1, 'https://ror.org/01cce5t38 Silchar Medical College and Hospital'), (36177, 'https://ror.org/01ccpfp25', 'en', 1, 'https://ror.org/01ccpfp25 Danat Al Emarat Women & Children’s Hospital'), (36178, 'https://ror.org/01cdn3r29', 'fr', 1, 'https://ror.org/01cdn3r29 École Nationale Supérieure des Beaux-Arts, École des beaux-arts École des Beaux-Arts'), (36179, 'https://ror.org/01cj6rb73', 'no_lang_code', 1, 'https://ror.org/01cj6rb73 Ibsentelecom (Norway)'), (36180, 'https://ror.org/01cjxj157', 'no_lang_code', 1, 'https://ror.org/01cjxj157 Mestre Dos Mares (Brazil)'), (36181, 'https://ror.org/01cmrry21', 'en', 1, 'https://ror.org/01cmrry21 Royal Hospital for Neuro-disability'), (36182, 'https://ror.org/01cnbre95', 'no_lang_code', 1, 'https://ror.org/01cnbre95 Suzhou Creative Nano-carbon (China)'), (36183, 'https://ror.org/01cnqh417', 'en', 1, 'https://ror.org/01cnqh417 Mount Elizabeth Novena Hospital'), (36184, 'https://ror.org/01cs6sy07', 'pt', 1, 'https://ror.org/01cs6sy07 Faculdade Unida de Suzano'), (36185, 'https://ror.org/01cskd113', 'en', 1, 'https://ror.org/01cskd113 Al-Ameen Pre University College'), (36186, 'https://ror.org/01ct33c94', 'no_lang_code', 1, 'https://ror.org/01ct33c94 Eccos Indústria Metalúrgica (Brazil)'), (36187, 'https://ror.org/01ctwqf32', 'no_lang_code', 1, 'https://ror.org/01ctwqf32 Brynsløkken (Norway)'), (36188, 'https://ror.org/01cydpj49', 'no_lang_code', 1, 'https://ror.org/01cydpj49 InNano (Norway)'), (36189, 'https://ror.org/01cyhds50', 'no_lang_code', 1, 'https://ror.org/01cyhds50 Eyetec Equipamentos Oftalmicos (Brazil)'), (36190, 'https://ror.org/01d2w7m45', 'no_lang_code', 1, 'https://ror.org/01d2w7m45 Inovax (Brazil)'), (36191, 'https://ror.org/01d3knk22', 'no_lang_code', 1, 'https://ror.org/01d3knk22 Clarity Water Treatment Systems (Norway)'), (36192, 'https://ror.org/01d43dx11', 'no_lang_code', 1, 'https://ror.org/01d43dx11 Lectinect (Norway)'), (36193, 'https://ror.org/01d5ccc15', 'de', 1, 'https://ror.org/01d5ccc15 Literaturarchiv'), (36194, 'https://ror.org/01d7hm230', 'en', 1, 'https://ror.org/01d7hm230 Christian Hospital Serkawn'), (36195, 'https://ror.org/01d92zj09', 'no_lang_code', 1, 'https://ror.org/01d92zj09 Oilfield Technology Group (Norway)'), (36196, 'https://ror.org/01d9byf14', 'en', 1, 'https://ror.org/01d9byf14 County Governor of Sogn og Fjordane'), (36197, 'https://ror.org/01da73p86', 'no_lang_code', 1, 'https://ror.org/01da73p86 Keep-it Technologies (Norway)'), (36198, 'https://ror.org/01dafpx49', 'en', 1, 'https://ror.org/01dafpx49 Buluba Hospital'), (36199, 'https://ror.org/01dcvkj86', 'en', 1, 'https://ror.org/01dcvkj86 Medenta'), (36200, 'https://ror.org/01dd2km13', 'no_lang_code', 1, 'https://ror.org/01dd2km13 Bruning (Brazil)'), (36201, 'https://ror.org/01ddmgr89', 'no_lang_code', 1, 'https://ror.org/01ddmgr89 Norhard (Norway)'), (36202, 'https://ror.org/01ddx3048', 'no_lang_code', 1, 'https://ror.org/01ddx3048 Transformex (Poland)'), (36203, 'https://ror.org/01dfmkn15', 'no_lang_code', 1, 'https://ror.org/01dfmkn15 Sky Island Alliance (United States)'), (36204, 'https://ror.org/01dh5eq20', 'no_lang_code', 1, 'https://ror.org/01dh5eq20 Zakład Budowy Urządzeń Spawalniczych (Poland)'), (36205, 'https://ror.org/01djj8165', 'no_lang_code', 1, 'https://ror.org/01djj8165 Genderguide (Norway)'), (36206, 'https://ror.org/01dm6f769', 'no_lang_code', 1, 'https://ror.org/01dm6f769 Forus Næringspark (Norway)'), (36207, 'https://ror.org/01dqpe181', 'no_lang_code', 1, 'https://ror.org/01dqpe181 EyeLife (Norway)'), (36208, 'https://ror.org/01dscr755', 'no_lang_code', 1, 'https://ror.org/01dscr755 Termorens (Norway)'), (36209, 'https://ror.org/01dv0vw10', 'en', 1, 'https://ror.org/01dv0vw10 Bahrain Polytechnic بوليتكنك البحرين'), (36210, 'https://ror.org/01dvjey82', 'en', 1, 'https://ror.org/01dvjey82 Shellharbour Hospital'), (36211, 'https://ror.org/01dvk8489', 'en', 1, 'https://ror.org/01dvk8489 Finley Hospital'), (36212, 'https://ror.org/01dvw2p26', 'en', 1, 'https://ror.org/01dvw2p26 Akces Lab'), (36213, 'https://ror.org/01dx1gy36', 'no_lang_code', 1, 'https://ror.org/01dx1gy36 MMOptics (Brazil)'), (36214, 'https://ror.org/01dxv3z76', 'no_lang_code', 1, 'https://ror.org/01dxv3z76 Tech Damper (Norway)'), (36215, 'https://ror.org/01dy1y679', 'en', 1, 'https://ror.org/01dy1y679 Nakornthon Hospital'), (36216, 'https://ror.org/01e00rm10', 'no_lang_code', 1, 'https://ror.org/01e00rm10 Tecnologia e Ciência Educacional (Brazil)'), (36217, 'https://ror.org/01e1z6807', 'no_lang_code', 1, 'https://ror.org/01e1z6807 Photocure (Norway)'), (36218, 'https://ror.org/01e2adt21', 'en', 1, 'https://ror.org/01e2adt21 School of Business and Management'), (36219, 'https://ror.org/01e3zyd27', 'no_lang_code', 1, 'https://ror.org/01e3zyd27 Pelias Norsk Skadedyrkontroll (Norway)'), (36220, 'https://ror.org/01e4tbd96', 'en', 1, 'https://ror.org/01e4tbd96 National University of Management សាកលវិទ្យាល័យជាតិគ្រប់គ្រង'), (36221, 'https://ror.org/01e6n7467', 'no_lang_code', 1, 'https://ror.org/01e6n7467 Synthon Especialidades Químicas (Brazil)'), (36222, 'https://ror.org/01e7p2b30', 'pt', 1, 'https://ror.org/01e7p2b30 Instituto Histórico e Geográfico de São Paulo'), (36223, 'https://ror.org/01e7t7h48', 'no_lang_code', 1, 'https://ror.org/01e7t7h48 Sadar + Vuga (Slovenia)'), (36224, 'https://ror.org/01e91b575', 'no_lang_code', 1, 'https://ror.org/01e91b575 Elecde (Norway)'), (36225, 'https://ror.org/01eb3qa50', 'en', 1, 'https://ror.org/01eb3qa50 Institute of Mathematics, Physics, and Mechanics'), (36226, 'https://ror.org/01eewg647', 'no_lang_code', 1, 'https://ror.org/01eewg647 Studio Promocji MIT (Poland)'), (36227, 'https://ror.org/01egm4002', 'no_lang_code', 1, 'https://ror.org/01egm4002 CoreAll (Norway)'), (36228, 'https://ror.org/01ep3aj25', 'no_lang_code', 1, 'https://ror.org/01ep3aj25 Centralny Ośrodek Informatyki Górnictwa'), (36229, 'https://ror.org/01eqw4y61', 'pt', 1, 'https://ror.org/01eqw4y61 Sociedade Brasileira de Geologia'), (36230, 'https://ror.org/01evj3822', 'no_lang_code', 1, 'https://ror.org/01evj3822 Jotaeme Fitafer (Brazil)'), (36231, 'https://ror.org/01ewp8233', 'tr', 1, 'https://ror.org/01ewp8233 Yedikule Surp Pırgiç Armenian Hospital Yedikule Surp Pırgiç Ermeni Hastanesi'), (36232, 'https://ror.org/01ewyge67', 'pt', 1, 'https://ror.org/01ewyge67 Instituto Paulo Freire'), (36233, 'https://ror.org/01exddw17', 'no_lang_code', 1, 'https://ror.org/01exddw17 Tellu (Norway)'), (36234, 'https://ror.org/01ey80h28', 'pt', 1, 'https://ror.org/01ey80h28 Sociedade Brasileira de Toxicologia'), (36235, 'https://ror.org/01f11rr66', 'no_lang_code', 1, 'https://ror.org/01f11rr66 Hegnar Media (Norway)'), (36236, 'https://ror.org/01f176r46', 'no_lang_code', 1, 'https://ror.org/01f176r46 Iskra Mehanizmi (Slovenia)'), (36237, 'https://ror.org/01f1ext93', 'no_lang_code', 1, 'https://ror.org/01f1ext93 IMC Engineering Poland (Poland)'), (36238, 'https://ror.org/01f2vgw59', 'en', 1, 'https://ror.org/01f2vgw59 Norwegian National Rail Administration'), (36239, 'https://ror.org/01f3dz928', 'en', 1, 'https://ror.org/01f3dz928 Logan Regional Hospital'), (36240, 'https://ror.org/01f3n2767', 'no_lang_code', 1, 'https://ror.org/01f3n2767 Sensocure (Norway)'), (36241, 'https://ror.org/01f3xmn08', 'no_lang_code', 1, 'https://ror.org/01f3xmn08 Spica International (Slovenia)'), (36242, 'https://ror.org/01f4ph383', 'no_lang_code', 1, 'https://ror.org/01f4ph383 Miljø-Teknologi (Norway)'), (36243, 'https://ror.org/01f59ee73', 'no', 1, 'https://ror.org/01f59ee73 Sogn Regionråd'), (36244, 'https://ror.org/01f60xs15', 'en', 1, 'https://ror.org/01f60xs15 Agriculture and Forestry University नेपाल कृषि तथा वन विश्वविद्यालय'), (36245, 'https://ror.org/01f6t6q54', 'no_lang_code', 1, 'https://ror.org/01f6t6q54 Emam Reza Hospital'), (36246, 'https://ror.org/01f8zms39', 'en', 1, 'https://ror.org/01f8zms39 Billroth Hospitals'), (36247, 'https://ror.org/01fa85441', 'en', 1, 'https://ror.org/01fa85441 NU Hospital Group'), (36248, 'https://ror.org/01fafm680', 'en', 1, 'https://ror.org/01fafm680 Specialty Hospital, Jordan'), (36249, 'https://ror.org/01fba6t94', 'no_lang_code', 1, 'https://ror.org/01fba6t94 Group Image (Poland)'), (36250, 'https://ror.org/01fbjr446', 'pl', 1, 'https://ror.org/01fbjr446 Instytut Metalurgii Żelaza im. Stanisława Staszica Stanislaw Staszic Institute for Ferrous Metallurgy'), (36251, 'https://ror.org/01fen8d67', 'en', 1, 'https://ror.org/01fen8d67 Association of Schools of Public Health in the European Region'), (36252, 'https://ror.org/01fj3m631', 'en', 1, 'https://ror.org/01fj3m631 Association of Consulting Engineers'), (36253, 'https://ror.org/01fktj061', 'en', 1, 'https://ror.org/01fktj061 Florida Department of Elder Affairs'), (36254, 'https://ror.org/01fmmx322', 'no_lang_code', 1, 'https://ror.org/01fmmx322 Tekna (Norway)'), (36255, 'https://ror.org/01fnbm952', 'no_lang_code', 1, 'https://ror.org/01fnbm952 Madshus (Norway)'), (36256, 'https://ror.org/01fntqb44', 'no_lang_code', 1, 'https://ror.org/01fntqb44 Sefako (Poland)'), (36257, 'https://ror.org/01fp6hr92', 'en', 1, 'https://ror.org/01fp6hr92 Japanese Society of Tropical Medicine'), (36258, 'https://ror.org/01fpkt395', 'de', 1, 'https://ror.org/01fpkt395 Christian Doppler Klinik'), (36259, 'https://ror.org/01fr0xp26', 'en', 1, 'https://ror.org/01fr0xp26 John B. Lacson Foundation Maritime University'), (36260, 'https://ror.org/01fr2g046', 'en', 1, 'https://ror.org/01fr2g046 Peace Arch Hospital'), (36261, 'https://ror.org/01fsf9j67', 'en', 1, 'https://ror.org/01fsf9j67 Lowestoft Hospital'), (36262, 'https://ror.org/01fw7k425', 'no_lang_code', 1, 'https://ror.org/01fw7k425 Wired (Japan)'), (36263, 'https://ror.org/01fwpma03', 'no_lang_code', 1, 'https://ror.org/01fwpma03 KRONOS (Norway)'), (36264, 'https://ror.org/01g1j0r83', 'no_lang_code', 1, 'https://ror.org/01g1j0r83 LojaFácil (Brazil)'), (36265, 'https://ror.org/01g22pf62', 'no_lang_code', 1, 'https://ror.org/01g22pf62 Ruter (Norway)'), (36266, 'https://ror.org/01g2j3891', 'no_lang_code', 1, 'https://ror.org/01g2j3891 Thermo Fisher Scientific (Finland)'), (36267, 'https://ror.org/01g4sny84', 'no_lang_code', 1, 'https://ror.org/01g4sny84 IC Targets (Norway)'), (36268, 'https://ror.org/01g5hc933', 'en', 1, 'https://ror.org/01g5hc933 St John of God Geelong Hospital'), (36269, 'https://ror.org/01g6hae70', 'no_lang_code', 1, 'https://ror.org/01g6hae70 Advanced Research Systems'), (36270, 'https://ror.org/01gaazr53', 'no_lang_code', 1, 'https://ror.org/01gaazr53 Østensjø Rederi (Norway)'), (36271, 'https://ror.org/01gbtqs26', 'no_lang_code', 1, 'https://ror.org/01gbtqs26 MicroA (Norway)'), (36272, 'https://ror.org/01gbz1v61', 'no_lang_code', 1, 'https://ror.org/01gbz1v61 CardioDx (United States)'), (36273, 'https://ror.org/01gdbj015', 'no_lang_code', 1, 'https://ror.org/01gdbj015 Perutnina Ptuj (Slovenia)'), (36274, 'https://ror.org/01gdwxc49', 'no_lang_code', 1, 'https://ror.org/01gdwxc49 Ośrodek Badawczo-Rozwojowy Urządzeń Mechanicznych (Poland)'), (36275, 'https://ror.org/01gezpw47', 'no_lang_code', 1, 'https://ror.org/01gezpw47 Durdans Hospital'), (36276, 'https://ror.org/01ghxpd93', 'no_lang_code', 1, 'https://ror.org/01ghxpd93 Sir Ganga Ram Hospital سر گنگا رام ہسپتال'), (36277, 'https://ror.org/01gjcwg85', 'en', 1, 'https://ror.org/01gjcwg85 Tayler Bequest District Hospital'), (36278, 'https://ror.org/01gjrpr51', 'no_lang_code', 1, 'https://ror.org/01gjrpr51 Salus Group (Brazil)'), (36279, 'https://ror.org/01gkfjz83', 'no_lang_code', 1, 'https://ror.org/01gkfjz83 Altave (Brazil)'), (36280, 'https://ror.org/01gkp6p31', 'en', 1, 'https://ror.org/01gkp6p31 Maria Fareri Children''s Hospital'), (36281, 'https://ror.org/01gmpxf32', 'no_lang_code', 1, 'https://ror.org/01gmpxf32 Clave (Brazil)'), (36282, 'https://ror.org/01gn4gb91', 'en', 1, 'https://ror.org/01gn4gb91 Kenvale College'), (36283, 'https://ror.org/01gpaz870', 'en', 1, 'https://ror.org/01gpaz870 Det kongelige Justis- og beredskapsdepartementet Ministry of Justice and Public Security'), (36284, 'https://ror.org/01grd6v95', 'en', 1, 'https://ror.org/01grd6v95 Copper Mountain College'), (36285, 'https://ror.org/01gsyn886', 'en', 1, 'https://ror.org/01gsyn886 Casper College'), (36286, 'https://ror.org/01gt3r273', 'no_lang_code', 1, 'https://ror.org/01gt3r273 EL-Automatyka (Poland)'), (36287, 'https://ror.org/01gw0xq27', 'en', 1, 'https://ror.org/01gw0xq27 Guelph General Hospital'), (36288, 'https://ror.org/01gy2wn10', 'no_lang_code', 1, 'https://ror.org/01gy2wn10 GlycaNova (Norway)'), (36289, 'https://ror.org/01gz2ss49', 'no_lang_code', 1, 'https://ror.org/01gz2ss49 Kelda Drilling Controls (Norway)'), (36290, 'https://ror.org/01gz5rq53', 'no_lang_code', 1, 'https://ror.org/01gz5rq53 Ceragon (Norway)'), (36291, 'https://ror.org/01gz84683', 'no_lang_code', 1, 'https://ror.org/01gz84683 BluGlass (Australia)'), (36292, 'https://ror.org/01gzder05', 'no_lang_code', 1, 'https://ror.org/01gzder05 Hans-Petter Brathaug (Norway)'), (36293, 'https://ror.org/01h16sk12', 'no_lang_code', 1, 'https://ror.org/01h16sk12 Ekornes (Norway)'), (36294, 'https://ror.org/01h2p4517', 'en', 1, 'https://ror.org/01h2p4517 Mt. Washington Pediatric Hospital'), (36295, 'https://ror.org/01h4bh480', 'en', 1, 'https://ror.org/01h4bh480 Royal College of Surgeons in Ireland - Bahrain جامعة البحرين الطبية'), (36296, 'https://ror.org/01h6cpb10', 'fr', 1, 'https://ror.org/01h6cpb10 Centre de Santé et de Services Sociaux de la Vieille-Capitale'), (36297, 'https://ror.org/01h9bce24', 'no_lang_code', 1, 'https://ror.org/01h9bce24 ZootFly (Slovenia)'), (36298, 'https://ror.org/01h9sha04', 'en', 1, 'https://ror.org/01h9sha04 Instytut Języka Polskiego Polskiej Akademii Nauk The Institute of the Polish Language of the Polish Academy of Sciences'), (36299, 'https://ror.org/01h9spb06', 'en', 1, 'https://ror.org/01h9spb06 Korea National University of Welfare 한국복지대학교'), (36300, 'https://ror.org/01hbgfy53', 'no_lang_code', 1, 'https://ror.org/01hbgfy53 Applied StemCell (United States)'), (36301, 'https://ror.org/01hcbs823', 'en', 1, 'https://ror.org/01hcbs823 Norwegain Radium Hospital Research Foundation'), (36302, 'https://ror.org/01hcfbh13', 'en', 1, 'https://ror.org/01hcfbh13 Ashwini Hospital'), (36303, 'https://ror.org/01hcrwv94', 'no_lang_code', 1, 'https://ror.org/01hcrwv94 Engineering Research & Analysis (United States)'), (36304, 'https://ror.org/01hctzw61', 'en', 1, 'https://ror.org/01hctzw61 Khawaja Farid Social Security Hospital خواجہ فرید سوشل سیکورٹی ہسپتال'), (36305, 'https://ror.org/01hewj013', 'no_lang_code', 1, 'https://ror.org/01hewj013 Icra Produtos Para Cerâmica (Brazil)'), (36306, 'https://ror.org/01hfvpj82', 'en', 1, 'https://ror.org/01hfvpj82 Indian Institute of Advanced Study इंडियन इंस्टीट्यूट आफ एडवांस्ड स्टडी'), (36307, 'https://ror.org/01hgb6e08', 'en', 1, 'https://ror.org/01hgb6e08 Hamedan University of Technology'), (36308, 'https://ror.org/01hgvdq15', 'no_lang_code', 1, 'https://ror.org/01hgvdq15 Zimmerman Associates (United States)'), (36309, 'https://ror.org/01hh45364', 'en', 1, 'https://ror.org/01hh45364 Central Electronics Engineering Research Institute केन् द्रीय इलेक् ट्रोनिकी अभियांत्रिकी अनुसंधान संस् थान (सीरी)'), (36310, 'https://ror.org/01hh9ag93', 'en', 1, 'https://ror.org/01hh9ag93 Institute of Subtropical Agriculture 中国科学院亚热带农业生态研究所'), (36311, 'https://ror.org/01hhq6g52', 'en', 1, 'https://ror.org/01hhq6g52 Alta View Hospital'), (36312, 'https://ror.org/01hj51r83', 'en', 1, 'https://ror.org/01hj51r83 Universal Engineering College'), (36313, 'https://ror.org/01hjbaa35', 'no', 1, 'https://ror.org/01hjbaa35 Gjemnes Kommune'), (36314, 'https://ror.org/01hjhm267', 'fr', 1, 'https://ror.org/01hjhm267 CEA Le Ripault'), (36315, 'https://ror.org/01hmp0h76', 'no_lang_code', 1, 'https://ror.org/01hmp0h76 Petroleum Geo-Services (Norway)'), (36316, 'https://ror.org/01hpg6340', 'en', 1, 'https://ror.org/01hpg6340 Grönemeyer Institut für MikroTherapie Grönemeyer Institute for MicroTherapy'), (36317, 'https://ror.org/01hpww940', 'no_lang_code', 1, 'https://ror.org/01hpww940 Ultra Hi Plásticos Industriais (Brazil)'), (36318, 'https://ror.org/01hqrqj31', 'en', 1, 'https://ror.org/01hqrqj31 Oslo Centre for Interdisciplinary Environmental and Social Research'), (36319, 'https://ror.org/01hqxm727', 'no_lang_code', 1, 'https://ror.org/01hqxm727 Norsk Mineral (Norway)'), (36320, 'https://ror.org/01hr9q823', 'en', 1, 'https://ror.org/01hr9q823 Gaston College'), (36321, 'https://ror.org/01hv74g78', 'en', 1, 'https://ror.org/01hv74g78 Scripps Green Hospital'), (36322, 'https://ror.org/01hw8wm79', 'no_lang_code', 1, 'https://ror.org/01hw8wm79 Trøndelag Forskning og Utvikling (Norway)'), (36323, 'https://ror.org/01hwe9w34', 'en', 1, 'https://ror.org/01hwe9w34 Sonoma Valley Hospital'), (36324, 'https://ror.org/01hxvmm54', 'no_lang_code', 1, 'https://ror.org/01hxvmm54 Logos Biosystems (South Korea)'), (36325, 'https://ror.org/01hyf2b24', 'no_lang_code', 1, 'https://ror.org/01hyf2b24 Clean Marine (Norway)'), (36326, 'https://ror.org/01hz8vp40', 'no_lang_code', 1, 'https://ror.org/01hz8vp40 Peszke (Poland)'), (36327, 'https://ror.org/01j157486', 'en', 1, 'https://ror.org/01j157486 College of Industrial Engineering'), (36328, 'https://ror.org/01j511762', 'en', 1, 'https://ror.org/01j511762 Armament Research and Development Establishment आयुध अनुसंधान एवं विकास स्थापना'), (36329, 'https://ror.org/01j5rbx63', 'no_lang_code', 1, 'https://ror.org/01j5rbx63 Metalex (Brazil)'), (36330, 'https://ror.org/01j5v0d02', 'es', 1, 'https://ror.org/01j5v0d02 Hospital Universitario de Burgos'), (36331, 'https://ror.org/01j77q308', 'no_lang_code', 1, 'https://ror.org/01j77q308 Mata Chanan Devi Hospital'), (36332, 'https://ror.org/01j7r2734', 'en', 1, 'https://ror.org/01j7r2734 Union Hospital 仁安醫院'), (36333, 'https://ror.org/01j9jq089', 'en', 1, 'https://ror.org/01j9jq089 Overseas Chinese University 僑光科技大學'), (36334, 'https://ror.org/01j9yjt02', 'sl', 1, 'https://ror.org/01j9yjt02 Zdravstveni dom dr. Adolfa Drolca Maribor'), (36335, 'https://ror.org/01j9zyw40', 'en', 1, 'https://ror.org/01j9zyw40 Institute of Environmental Engineering Instytut Podstaw Inżynierii Środowiska Polskiej Akademii Nauk'), (36336, 'https://ror.org/01ja4zf46', 'no_lang_code', 1, 'https://ror.org/01ja4zf46 Le-tehnika (Slovenia)'), (36337, 'https://ror.org/01jcpms10', 'no_lang_code', 1, 'https://ror.org/01jcpms10 Leonhard Nilsen & Sønner (Norway)'), (36338, 'https://ror.org/01jdhnc41', 'no_lang_code', 1, 'https://ror.org/01jdhnc41 Wärtsilä (Norway)'), (36339, 'https://ror.org/01jdjjh55', 'de', 1, 'https://ror.org/01jdjjh55 Sächsisches Staatsarchiv'), (36340, 'https://ror.org/01jf1v940', 'en', 1, 'https://ror.org/01jf1v940 Qingzhou City People''s Hospital'), (36341, 'https://ror.org/01jk9f236', 'no_lang_code', 1, 'https://ror.org/01jk9f236 Tissue Gene (United States)'), (36342, 'https://ror.org/01jmv0y82', 'no_lang_code', 1, 'https://ror.org/01jmv0y82 EDG Equipamentos e Controles (Brazil)'), (36343, 'https://ror.org/01jnj9432', 'no_lang_code', 1, 'https://ror.org/01jnj9432 Lozenetz Hospital Университетска болница Лозенец'), (36344, 'https://ror.org/01jnnpe14', 'no_lang_code', 1, 'https://ror.org/01jnnpe14 Boehringer Ingelheim (United Kingdom)'), (36345, 'https://ror.org/01jnsyr23', 'en', 1, 'https://ror.org/01jnsyr23 Norwegian Golf Federation'), (36346, 'https://ror.org/01jq15d50', 'en', 1, 'https://ror.org/01jq15d50 Clover Park Technical College'), (36347, 'https://ror.org/01jvdrm66', 'pl', 1, 'https://ror.org/01jvdrm66 Technika Podwodna (Poland)'), (36348, 'https://ror.org/01jww0j97', 'no_lang_code', 1, 'https://ror.org/01jww0j97 Kleven Maritime (Norway)'), (36349, 'https://ror.org/01jy8d602', 'no_lang_code', 1, 'https://ror.org/01jy8d602 Baker Hughes (Norway)'), (36350, 'https://ror.org/01jydv679', 'en', 1, 'https://ror.org/01jydv679 Fawcett Memorial Hospital'), (36351, 'https://ror.org/01jyw2164', 'en', 1, 'https://ror.org/01jyw2164 Hospital Taiping Taiping Hospital'), (36352, 'https://ror.org/01jz2hz84', 'en', 1, 'https://ror.org/01jz2hz84 National Kidney Foundation Singapore'), (36353, 'https://ror.org/01jzfkq41', 'no_lang_code', 1, 'https://ror.org/01jzfkq41 Nortroll (Norway)'), (36354, 'https://ror.org/01jzgfe96', 'en', 1, 'https://ror.org/01jzgfe96 Bombo Hospital'), (36355, 'https://ror.org/01k08w337', 'en', 1, 'https://ror.org/01k08w337 El Camino Hospital'), (36356, 'https://ror.org/01k0zsm40', 'no_lang_code', 1, 'https://ror.org/01k0zsm40 Vodovod-Kanalizacija (Slovenia)'), (36357, 'https://ror.org/01k30an65', 'no_lang_code', 1, 'https://ror.org/01k30an65 Ekopop (Poland)'), (36358, 'https://ror.org/01k4cfw02', 'en', 1, 'https://ror.org/01k4cfw02 Mater Misericordiae Hospital'), (36359, 'https://ror.org/01k638r21', 'en', 1, 'https://ror.org/01k638r21 Office of International Science and Engineering'), (36360, 'https://ror.org/01k67xz52', 'no_lang_code', 1, 'https://ror.org/01k67xz52 Plany (Norway)'), (36361, 'https://ror.org/01k6cft19', 'en', 1, 'https://ror.org/01k6cft19 Laney College'), (36362, 'https://ror.org/01k8p3j71', 'no_lang_code', 1, 'https://ror.org/01k8p3j71 Lattix (Norway)'), (36363, 'https://ror.org/01k8sh332', 'no_lang_code', 1, 'https://ror.org/01k8sh332 Isotop (Israel)'), (36364, 'https://ror.org/01kaftk72', 'no_lang_code', 1, 'https://ror.org/01kaftk72 Mallavi Hospital'), (36365, 'https://ror.org/01kakjy62', 'en', 1, 'https://ror.org/01kakjy62 Newport Hospital'), (36366, 'https://ror.org/01kdvbn15', 'en', 1, 'https://ror.org/01kdvbn15 Anugrah Narayan Magadh Medical College & Hospital अनुग्रह नारायण मगध मेडिकल कॉलेज अस्पताल'), (36367, 'https://ror.org/01kdxra28', 'en', 1, 'https://ror.org/01kdxra28 Academy of Sciences and Literature Akademie der Wissenschaften und der Literatur Mainz'), (36368, 'https://ror.org/01kjwt492', 'no_lang_code', 1, 'https://ror.org/01kjwt492 Imari Arita Kyoritsu Hospital'), (36369, 'https://ror.org/01kk1nf20', 'en', 1, 'https://ror.org/01kk1nf20 Institute of Industrial Organic Chemistry'), (36370, 'https://ror.org/01kmxkx53', 'no_lang_code', 1, 'https://ror.org/01kmxkx53 Jain Irrigation Systems (India)'), (36371, 'https://ror.org/01kp9rn35', 'en', 1, 'https://ror.org/01kp9rn35 Jewish Museum Berlin Jüdisches Museum Berlin'), (36372, 'https://ror.org/01kpm8k86', 'en', 1, 'https://ror.org/01kpm8k86 Bethesda Hospital பெதெஸ்தா மருத்துவமனை'), (36373, 'https://ror.org/01kpwv903', 'no_lang_code', 1, 'https://ror.org/01kpwv903 Capital Fund Management (France)'), (36374, 'https://ror.org/01kpx5a10', 'no_lang_code', 1, 'https://ror.org/01kpx5a10 Mestergruppen (Norway)'), (36375, 'https://ror.org/01kr7ch79', 'no_lang_code', 1, 'https://ror.org/01kr7ch79 Knowledge Networks & Business Solutions (Brazil)'), (36376, 'https://ror.org/01krpsy48', 'en', 1, 'https://ror.org/01krpsy48 Division of Electrical, Communications & Cyber Systems'), (36377, 'https://ror.org/01ktbtm29', 'no_lang_code', 1, 'https://ror.org/01ktbtm29 Matrix Engineering (United States)'), (36378, 'https://ror.org/01ktv8680', 'no_lang_code', 1, 'https://ror.org/01ktv8680 Mosaic Solutions (Norway)'), (36379, 'https://ror.org/01kvzjx09', 'no_lang_code', 1, 'https://ror.org/01kvzjx09 Eco Inhibitors (Norway)'), (36380, 'https://ror.org/01kwdp645', 'en', 1, 'https://ror.org/01kwdp645 Kailuan General Hospital'), (36381, 'https://ror.org/01kwzvc26', 'no_lang_code', 1, 'https://ror.org/01kwzvc26 Uranet (Brazil)'), (36382, 'https://ror.org/01kyk7057', 'no_lang_code', 1, 'https://ror.org/01kyk7057 Kaleidoskopet (Norway)'), (36383, 'https://ror.org/01kzp9g64', 'no_lang_code', 1, 'https://ror.org/01kzp9g64 Etsy (United States)'), (36384, 'https://ror.org/01m05cc74', 'no_lang_code', 1, 'https://ror.org/01m05cc74 Piaram (Brazil) Piaram Productos Nanotechnologicos'), (36385, 'https://ror.org/01m343c98', 'en', 1, 'https://ror.org/01m343c98 Waseda Bioscience Research Institute in Singapore'), (36386, 'https://ror.org/01m44ga74', 'pt', 1, 'https://ror.org/01m44ga74 Secretaria de Planejamento e Gestão'), (36387, 'https://ror.org/01m4fm654', 'no_lang_code', 1, 'https://ror.org/01m4fm654 Tecnident (Brazil)'), (36388, 'https://ror.org/01m4hhk76', 'pl', 1, 'https://ror.org/01m4hhk76 Stowarzyszenie Nowa Wspólna Droga'), (36389, 'https://ror.org/01mbqex31', 'no', 1, 'https://ror.org/01mbqex31 Hermetikken Næringshage'), (36390, 'https://ror.org/01mbz8562', 'fr', 1, 'https://ror.org/01mbz8562 CEA LITEN'), (36391, 'https://ror.org/01mccm505', 'no_lang_code', 1, 'https://ror.org/01mccm505 Meawallet (Norway)'), (36392, 'https://ror.org/01mdh2992', 'no_lang_code', 1, 'https://ror.org/01mdh2992 Magister Solutions (Finland)'), (36393, 'https://ror.org/01mfdy709', 'no_lang_code', 1, 'https://ror.org/01mfdy709 Signalcard (Brazil)'), (36394, 'https://ror.org/01mfkkh63', 'no_lang_code', 1, 'https://ror.org/01mfkkh63 Guangzhou Chemistry (China) 中科院广州化学有限公司'), (36395, 'https://ror.org/01mfwsz24', 'no_lang_code', 1, 'https://ror.org/01mfwsz24 Clavis Technology (Norway)'), (36396, 'https://ror.org/01mgdzc49', 'en', 1, 'https://ror.org/01mgdzc49 Centre for Quantum Technologies'), (36397, 'https://ror.org/01mgp9933', 'no_lang_code', 1, 'https://ror.org/01mgp9933 Fotonica (Brazil)'), (36398, 'https://ror.org/01mj88p41', 'no_lang_code', 1, 'https://ror.org/01mj88p41 Solstício Energia (Brazil)'), (36399, 'https://ror.org/01mjqb881', 'sl', 1, 'https://ror.org/01mjqb881 Inštituta za Neionizirna Sevanja'), (36400, 'https://ror.org/01mkt8h07', 'en', 1, 'https://ror.org/01mkt8h07 National Museum of Slovenia'), (36401, 'https://ror.org/01mmhvx47', 'no_lang_code', 1, 'https://ror.org/01mmhvx47 Epizyme (United States)'), (36402, 'https://ror.org/01mng8331', 'en', 1, 'https://ror.org/01mng8331 Division of Computing and Communication Foundations'), (36403, 'https://ror.org/01mny2094', 'no_lang_code', 1, 'https://ror.org/01mny2094 Suita Tokushukai Hospital'), (36404, 'https://ror.org/01mqcfb91', 'no_lang_code', 1, 'https://ror.org/01mqcfb91 Green Pool (Australia)'), (36405, 'https://ror.org/01mr84c03', 'no_lang_code', 1, 'https://ror.org/01mr84c03 Ipark (Norway)'), (36406, 'https://ror.org/01ms51d52', 'en', 1, 'https://ror.org/01ms51d52 National Institute of Technology, Tsuruoka College 鶴岡工業高等専門学校'), (36407, 'https://ror.org/01mstep31', 'no_lang_code', 1, 'https://ror.org/01mstep31 Regenics (Norway)'), (36408, 'https://ror.org/01mvkzj41', 'no_lang_code', 1, 'https://ror.org/01mvkzj41 Microsemi (United States)'), (36409, 'https://ror.org/01n09m616', 'en', 1, 'https://ror.org/01n09m616 Bangladesh Agricultural Research Institute বাংলাদেশ কৃষি গবেষণা ইনস্টিটিউট'), (36410, 'https://ror.org/01n3ps908', 'no', 1, 'https://ror.org/01n3ps908 BesteBakken'), (36411, 'https://ror.org/01n4nv253', 'no_lang_code', 1, 'https://ror.org/01n4nv253 Preline Fishfarming Systems (Norway)'), (36412, 'https://ror.org/01n5bzx98', 'no_lang_code', 1, 'https://ror.org/01n5bzx98 Petoro (Norway)'), (36413, 'https://ror.org/01n6mms53', 'en', 1, 'https://ror.org/01n6mms53 State Library of Württemberg Württembergische Landesbibliothek'), (36414, 'https://ror.org/01n70wn69', 'no_lang_code', 1, 'https://ror.org/01n70wn69 Knutsen OAS Shipping (Norway)'), (36415, 'https://ror.org/01na16w26', 'no_lang_code', 1, 'https://ror.org/01na16w26 Nanosystem (Russia)'), (36416, 'https://ror.org/01ne8cy78', 'fr', 1, 'https://ror.org/01ne8cy78 Salon Carrière Formation de Québec'), (36417, 'https://ror.org/01nevmj51', 'en', 1, 'https://ror.org/01nevmj51 Co-opertive Housing Federation of Norway'), (36418, 'https://ror.org/01nfh3016', 'pt', 1, 'https://ror.org/01nfh3016 Hospital Erasto Gaertner'), (36419, 'https://ror.org/01nj2eb64', 'no_lang_code', 1, 'https://ror.org/01nj2eb64 Welspun (India)'), (36420, 'https://ror.org/01nj3h423', 'no_lang_code', 1, 'https://ror.org/01nj3h423 APIM Therapeutics (Norway)'), (36421, 'https://ror.org/01nkg7v26', 'en', 1, 'https://ror.org/01nkg7v26 Upper River Valley Hospital'), (36422, 'https://ror.org/01nkx9v56', 'en', 1, 'https://ror.org/01nkx9v56 Mease Countryside Hospital'), (36423, 'https://ror.org/01nmv4r50', 'no_lang_code', 1, 'https://ror.org/01nmv4r50 Selsan Tecnologia Industrial e Comercial (Brazil)'), (36424, 'https://ror.org/01nmxvn49', 'no_lang_code', 1, 'https://ror.org/01nmxvn49 Chengdu Organic Chemicals (China) 中国科学院成都有机化学有限公司'), (36425, 'https://ror.org/01npwa559', 'en', 1, 'https://ror.org/01npwa559 Hospital de San Bernardo St Bernard''s Hospital'), (36426, 'https://ror.org/01ns8dn21', 'no_lang_code', 1, 'https://ror.org/01ns8dn21 Aquatic Concept group (Norway)'), (36427, 'https://ror.org/01nvcgz36', 'no', 1, 'https://ror.org/01nvcgz36 Norsk Namnelag'), (36428, 'https://ror.org/01nvkaf11', 'en', 1, 'https://ror.org/01nvkaf11 San Francisco Firefighters Cancer Prevention Foundation'), (36429, 'https://ror.org/01nvq1078', 'no_lang_code', 1, 'https://ror.org/01nvq1078 TECES'), (36430, 'https://ror.org/01p03pa87', 'de', 1, 'https://ror.org/01p03pa87 Brandenburgisches Landesamt für Denkmalpflege und Archäologisches Landesmuseum'), (36431, 'https://ror.org/01p25q678', 'en', 1, 'https://ror.org/01p25q678 Yili Friendship Hospital'), (36432, 'https://ror.org/01p2dyg20', 'no', 1, 'https://ror.org/01p2dyg20 Hattfjelldal Kommune'), (36433, 'https://ror.org/01p3c2g14', 'en', 1, 'https://ror.org/01p3c2g14 Turriff Cottage Hospital'), (36434, 'https://ror.org/01p4fde84', 'no_lang_code', 1, 'https://ror.org/01p4fde84 Findus (Norway)'), (36435, 'https://ror.org/01paha414', 'en', 1, 'https://ror.org/01paha414 Osaki Citizen Hospital 大崎市民病院'), (36436, 'https://ror.org/01pbftg81', 'no_lang_code', 1, 'https://ror.org/01pbftg81 Toxikón (Brazil)'), (36437, 'https://ror.org/01pc7k308', 'en', 1, 'https://ror.org/01pc7k308 Division of Materials Research'), (36438, 'https://ror.org/01pcm0w39', 'en', 1, 'https://ror.org/01pcm0w39 Canadian Forces College'), (36439, 'https://ror.org/01pdwrw82', 'pt', 1, 'https://ror.org/01pdwrw82 Secretaria de Gestão Pública'), (36440, 'https://ror.org/01pe10g60', 'en', 1, 'https://ror.org/01pe10g60 Institute of Philosophy and Sociology Instytut Filozofii i Socjologii'), (36441, 'https://ror.org/01pf53a69', 'no', 1, 'https://ror.org/01pf53a69 Storfjord Kommune'), (36442, 'https://ror.org/01pfm3094', 'no_lang_code', 1, 'https://ror.org/01pfm3094 Sweco (Poland)'), (36443, 'https://ror.org/01pfs6p94', 'en', 1, 'https://ror.org/01pfs6p94 KM Shah Dental College and Hospital'), (36444, 'https://ror.org/01pgeyv96', 'no_lang_code', 1, 'https://ror.org/01pgeyv96 Adamed (Poland)'), (36445, 'https://ror.org/01pgfea66', 'en', 1, 'https://ror.org/01pgfea66 Jammu Hospital'), (36446, 'https://ror.org/01pj54844', 'no_lang_code', 1, 'https://ror.org/01pj54844 Zetkama (Poland)'), (36447, 'https://ror.org/01pjxkf30', 'en', 1, 'https://ror.org/01pjxkf30 Xinjiang Astronomical Observatory 中国科学院新疆天文台'), (36448, 'https://ror.org/01pmf1z12', 'pt', 1, 'https://ror.org/01pmf1z12 Hospital São Vicente de Paulo'), (36449, 'https://ror.org/01pn94h16', 'no_lang_code', 1, 'https://ror.org/01pn94h16 Changetech (Norway)'), (36450, 'https://ror.org/01pndf691', 'fi', 1, 'https://ror.org/01pndf691 Väestöliitto'), (36451, 'https://ror.org/01pp0ar58', 'en', 1, 'https://ror.org/01pp0ar58 Bowral & District Hospital'), (36452, 'https://ror.org/01pqs5k49', 'tr', 1, 'https://ror.org/01pqs5k49 Baltalimanı Kemik Hastalıkları Hastanesi'), (36453, 'https://ror.org/01prk3x73', 'en', 1, 'https://ror.org/01prk3x73 Academic Center of Medicine'), (36454, 'https://ror.org/01psj0w95', 'no_lang_code', 1, 'https://ror.org/01psj0w95 Alcoa (Norway)'), (36455, 'https://ror.org/01psywt28', 'pt', 1, 'https://ror.org/01psywt28 Secretaria do Governo Municipal'), (36456, 'https://ror.org/01pt0s458', 'en', 1, 'https://ror.org/01pt0s458 Bayi Children''s Hospital'), (36457, 'https://ror.org/01ptvbz51', 'de', 1, 'https://ror.org/01ptvbz51 Asklepios Kliniken Bad Abbach'), (36458, 'https://ror.org/01ptw3s93', 'no_lang_code', 1, 'https://ror.org/01ptw3s93 JAS Technologies (Poland)'), (36459, 'https://ror.org/01ptz4362', 'no_lang_code', 1, 'https://ror.org/01ptz4362 Misasa Onsen Hospital'), (36460, 'https://ror.org/01pvv7388', 'no_lang_code', 1, 'https://ror.org/01pvv7388 G&T Septech (Norway)'), (36461, 'https://ror.org/01pwx8e77', 'sl', 1, 'https://ror.org/01pwx8e77 MEIS Storitve za Okolje'), (36462, 'https://ror.org/01pwxk906', 'no_lang_code', 1, 'https://ror.org/01pwxk906 Opplysningskontoret for Meieriprodukter (Norway)'), (36463, 'https://ror.org/01py34264', 'no', 1, 'https://ror.org/01py34264 Sparebankforeningen i Norge'), (36464, 'https://ror.org/01pykff63', 'en', 1, 'https://ror.org/01pykff63 Holy Innocents Children''s Hospital'), (36465, 'https://ror.org/01pznaa94', 'en', 1, 'https://ror.org/01pznaa94 Norwegian Institute of International Affairs'), (36466, 'https://ror.org/01q0yhx95', 'en', 1, 'https://ror.org/01q0yhx95 Masaka Hospital'), (36467, 'https://ror.org/01q1nqh97', 'en', 1, 'https://ror.org/01q1nqh97 Cabell Huntington Hospital'), (36468, 'https://ror.org/01q2fk491', 'en', 1, 'https://ror.org/01q2fk491 Institute of Technology and Life Sciences'), (36469, 'https://ror.org/01q2gyr74', 'no_lang_code', 1, 'https://ror.org/01q2gyr74 Mbuma Mission Hospital'), (36470, 'https://ror.org/01q30s265', 'no_lang_code', 1, 'https://ror.org/01q30s265 Searis (Norway)'), (36471, 'https://ror.org/01q4c7394', 'no_lang_code', 1, 'https://ror.org/01q4c7394 Thync (United States)'), (36472, 'https://ror.org/01q6r0v22', 'pl', 1, 'https://ror.org/01q6r0v22 Centrum Leczenia Oparzeń'), (36473, 'https://ror.org/01q726526', 'no_lang_code', 1, 'https://ror.org/01q726526 Litostroj Group (Slovenia)'), (36474, 'https://ror.org/01q855b60', 'no_lang_code', 1, 'https://ror.org/01q855b60 Bhabha Hospital'), (36475, 'https://ror.org/01q86p724', 'no_lang_code', 1, 'https://ror.org/01q86p724 Flexmedia (Brazil)'), (36476, 'https://ror.org/01q9kjc87', 'en', 1, 'https://ror.org/01q9kjc87 Brampton Civic Hospital'), (36477, 'https://ror.org/01qb65r21', 'no_lang_code', 1, 'https://ror.org/01qb65r21 Adalia Film (Norway)'), (36478, 'https://ror.org/01qbm4443', 'en', 1, 'https://ror.org/01qbm4443 Basildon and Thurrock University Hospitals NHS Foundation Trust'), (36479, 'https://ror.org/01qbvbs17', 'no_lang_code', 1, 'https://ror.org/01qbvbs17 Vita Care (Brazil)'), (36480, 'https://ror.org/01qdaxa32', 'no_lang_code', 1, 'https://ror.org/01qdaxa32 Supê Soluções (Brazil)'), (36481, 'https://ror.org/01qgsj208', 'de', 1, 'https://ror.org/01qgsj208 Münchner Stadtbibliothek'), (36482, 'https://ror.org/01qhzmf23', 'no_lang_code', 1, 'https://ror.org/01qhzmf23 Ekion Tecnologia de Veículos Elétricos (Brazil)'), (36483, 'https://ror.org/01qj9e285', 'en', 1, 'https://ror.org/01qj9e285 Yuhan University 유한대학교'), (36484, 'https://ror.org/01qjnmr21', 'en', 1, 'https://ror.org/01qjnmr21 Redwood Memorial Hospital'), (36485, 'https://ror.org/01qjq7726', 'no_lang_code', 1, 'https://ror.org/01qjq7726 Nucleus (Norway)'), (36486, 'https://ror.org/01qk21t24', 'no_lang_code', 1, 'https://ror.org/01qk21t24 Toma Mat (Norway)'), (36487, 'https://ror.org/01qmde036', 'no_lang_code', 1, 'https://ror.org/01qmde036 Tercja Systemy Pomiarowe i Komputerowe (Poland)'), (36488, 'https://ror.org/01qnbng82', 'pt', 1, 'https://ror.org/01qnbng82 Instituto Sedes Sapientiae'), (36489, 'https://ror.org/01qq0f268', 'no_lang_code', 1, 'https://ror.org/01qq0f268 Maharaja Yeshwantrao Hospital'), (36490, 'https://ror.org/01qt0ws77', 'no_lang_code', 1, 'https://ror.org/01qt0ws77 Bambisana Hospital'), (36491, 'https://ror.org/01qtabf22', 'en', 1, 'https://ror.org/01qtabf22 Processors and Growers Research Organisation'), (36492, 'https://ror.org/01qvdnz37', 'no_lang_code', 1, 'https://ror.org/01qvdnz37 Hafslund (Norway)'), (36493, 'https://ror.org/01qxktz51', 'no_lang_code', 1, 'https://ror.org/01qxktz51 Con-Form (Norway)'), (36494, 'https://ror.org/01qyqee78', 'no_lang_code', 1, 'https://ror.org/01qyqee78 Faktotum Informasjon (Norway)'), (36495, 'https://ror.org/01r1kqm06', 'en', 1, 'https://ror.org/01r1kqm06 Ramin Agriculture and Natural Resources University of Khouzestan'), (36496, 'https://ror.org/01r2b6235', 'no_lang_code', 1, 'https://ror.org/01r2b6235 Lester (Poland)'), (36497, 'https://ror.org/01r3x0471', 'no_lang_code', 1, 'https://ror.org/01r3x0471 Nebb (Norway)'), (36498, 'https://ror.org/01r41r914', 'no_lang_code', 1, 'https://ror.org/01r41r914 NorthSea Container Line (Norway)'), (36499, 'https://ror.org/01r53zj15', 'no_lang_code', 1, 'https://ror.org/01r53zj15 Smartfish (Norway)'), (36500, 'https://ror.org/01r5p9y80', 'en', 1, 'https://ror.org/01r5p9y80 Methodist Hospital'), (36501, 'https://ror.org/01r6rnc70', 'no_lang_code', 1, 'https://ror.org/01r6rnc70 Midot (Israel)'), (36502, 'https://ror.org/01r70sq06', 'en', 1, 'https://ror.org/01r70sq06 Deutsches Forschungsinstitut für öffentliche Verwaltung German Research Institute for Public Administration'), (36503, 'https://ror.org/01r729996', 'no_lang_code', 1, 'https://ror.org/01r729996 Tubądzin (Poland)'), (36504, 'https://ror.org/01r72g906', 'no_lang_code', 1, 'https://ror.org/01r72g906 Verdartis (Brazil)'), (36505, 'https://ror.org/01r742665', 'en', 1, 'https://ror.org/01r742665 Coxa Hospital'), (36506, 'https://ror.org/01r8m0a35', 'en', 1, 'https://ror.org/01r8m0a35 The Ohio State University Newark'), (36507, 'https://ror.org/01r8rcr36', 'no_lang_code', 1, 'https://ror.org/01r8rcr36 Tongren Hospital'), (36508, 'https://ror.org/01r8seb12', 'pt', 1, 'https://ror.org/01r8seb12 Associação Brasileira de Antropologia'), (36509, 'https://ror.org/01r9w2e44', 'pt', 1, 'https://ror.org/01r9w2e44 Associação Brasileira de Estudos Populacionais'), (36510, 'https://ror.org/01ra53y91', 'en', 1, 'https://ror.org/01ra53y91 Aditya Birla Memorial Hospital'), (36511, 'https://ror.org/01rcr6221', 'no_lang_code', 1, 'https://ror.org/01rcr6221 Silesia Oil (Poland)'), (36512, 'https://ror.org/01rdbqt89', 'en', 1, 'https://ror.org/01rdbqt89 Slovene Ethnographic Museum'), (36513, 'https://ror.org/01re9k832', 'no', 1, 'https://ror.org/01re9k832 Hornindal Kommune'), (36514, 'https://ror.org/01reqxx39', 'no_lang_code', 1, 'https://ror.org/01reqxx39 Hardsoft Microprocessor Systems (Poland)'), (36515, 'https://ror.org/01rgpbf42', 'no_lang_code', 1, 'https://ror.org/01rgpbf42 Tianjin Hi-Tech Superconducting Electronic Technology (China)'); INSERT INTO `rors` VALUES (36516, 'https://ror.org/01rkxa860', 'no_lang_code', 1, 'https://ror.org/01rkxa860 Dr. Reddy''s Laboratories (India) डॉ. रेड्डीज लेबोरेटरीज டா. ரெட்டீசு డా. రెడ్డీస్ ల్యాబ్స్ ಡಾ. ರೆಡ್ಡೀ''ಸ್ ಲ್ಯಾಬೋರೇಟರೀಸ್'), (36517, 'https://ror.org/01rmmxf18', 'no_lang_code', 1, 'https://ror.org/01rmmxf18 TEGma (Norway)'), (36518, 'https://ror.org/01rpb1437', 'en', 1, 'https://ror.org/01rpb1437 Paul Hastings'), (36519, 'https://ror.org/01rppxt60', 'en', 1, 'https://ror.org/01rppxt60 American Indian College'), (36520, 'https://ror.org/01rvays47', 'en', 1, 'https://ror.org/01rvays47 Division of Integrative Organismal Systems'), (36521, 'https://ror.org/01rvbmq75', 'en', 1, 'https://ror.org/01rvbmq75 New Era College 新纪元学院'), (36522, 'https://ror.org/01rvrxf39', 'no_lang_code', 1, 'https://ror.org/01rvrxf39 Abbon (Norway)'), (36523, 'https://ror.org/01rw40d12', 'en', 1, 'https://ror.org/01rw40d12 Jubail Industrial College كلية الجبيل الصناعية'), (36524, 'https://ror.org/01rwa6k95', 'no_lang_code', 1, 'https://ror.org/01rwa6k95 Kongsberg Innovasjon (Norway)'), (36525, 'https://ror.org/01rwnqg85', 'no_lang_code', 1, 'https://ror.org/01rwnqg85 Mecsense (Norway)'), (36526, 'https://ror.org/01rwv5z20', 'en', 1, 'https://ror.org/01rwv5z20 Garda Síochána College'), (36527, 'https://ror.org/01rxnnx98', 'no_lang_code', 1, 'https://ror.org/01rxnnx98 Radiotechnika Marketing (Poland)'), (36528, 'https://ror.org/01ry3tb23', 'en', 1, 'https://ror.org/01ry3tb23 ACPM Dental College and Hospital'), (36529, 'https://ror.org/01rz48a94', 'no_lang_code', 1, 'https://ror.org/01rz48a94 Wilson Sonsini Goodrich & Rosati'), (36530, 'https://ror.org/01rzns588', 'no_lang_code', 1, 'https://ror.org/01rzns588 Racetronix (Brazil)'), (36531, 'https://ror.org/01rzrn583', 'en', 1, 'https://ror.org/01rzrn583 University of Military Science and Technology'), (36532, 'https://ror.org/01rztx461', 'en', 1, 'https://ror.org/01rztx461 University of Medical Sciences and Technology جامعة مأمون حميدة'), (36533, 'https://ror.org/01s154648', 'en', 1, 'https://ror.org/01s154648 The Eighth People’s Hospital of Nanning'), (36534, 'https://ror.org/01s1hzr17', 'en', 1, 'https://ror.org/01s1hzr17 Prince County Hospital'), (36535, 'https://ror.org/01s2r6v67', 'no_lang_code', 1, 'https://ror.org/01s2r6v67 Genotyping BPI (Brazil)'), (36536, 'https://ror.org/01s3wfa18', 'de', 1, 'https://ror.org/01s3wfa18 Schüchtermann-Klinik'), (36537, 'https://ror.org/01s41hv32', 'no_lang_code', 1, 'https://ror.org/01s41hv32 Bonavision Auxilios Opticos (Brazil)'), (36538, 'https://ror.org/01s776p02', 'no_lang_code', 1, 'https://ror.org/01s776p02 Shalamar Hospital'), (36539, 'https://ror.org/01sd0e661', 'no_lang_code', 1, 'https://ror.org/01sd0e661 AMO (Germany)'), (36540, 'https://ror.org/01sdfmp14', 'en', 1, 'https://ror.org/01sdfmp14 Berlin Partner for Business and Technology'), (36541, 'https://ror.org/01seqfb61', 'no_lang_code', 1, 'https://ror.org/01seqfb61 Vitacress (United Kingdom)'), (36542, 'https://ror.org/01sf89923', 'no_lang_code', 1, 'https://ror.org/01sf89923 Tomra (Norway)'), (36543, 'https://ror.org/01sh1rd07', 'no_lang_code', 1, 'https://ror.org/01sh1rd07 Polyform (Norway)'), (36544, 'https://ror.org/01sh25n93', 'en', 1, 'https://ror.org/01sh25n93 Institute for Environmental Protection and Sensors'), (36545, 'https://ror.org/01shdt141', 'en', 1, 'https://ror.org/01shdt141 Lake–Sumter State College'), (36546, 'https://ror.org/01shra089', 'es', 1, 'https://ror.org/01shra089 Banco de la República Colombia'), (36547, 'https://ror.org/01sj7p872', 'en', 1, 'https://ror.org/01sj7p872 St John of God Hospital Sierra Leone'), (36548, 'https://ror.org/01sjjfh02', 'en', 1, 'https://ror.org/01sjjfh02 Horizon College and Seminary'), (36549, 'https://ror.org/01spyyb53', 'no_lang_code', 1, 'https://ror.org/01spyyb53 Beijing Biocytogen (China)'), (36550, 'https://ror.org/01sq60k61', 'no_lang_code', 1, 'https://ror.org/01sq60k61 Gramatex (Slovenia)'), (36551, 'https://ror.org/01sqbks28', 'no_lang_code', 1, 'https://ror.org/01sqbks28 Nordox (Norway)'), (36552, 'https://ror.org/01stsya15', 'en', 1, 'https://ror.org/01stsya15 St. John''s Hospital'), (36553, 'https://ror.org/01sv08344', 'no_lang_code', 1, 'https://ror.org/01sv08344 Vallitech (Brazil)'), (36554, 'https://ror.org/01swgw930', 'no_lang_code', 1, 'https://ror.org/01swgw930 Flowtec (Norway)'), (36555, 'https://ror.org/01sx9kd33', 'de', 1, 'https://ror.org/01sx9kd33 Stadtarchiv Mainz'), (36556, 'https://ror.org/01sxsjd59', 'en', 1, 'https://ror.org/01sxsjd59 Rajiv Gandhi University of Knowledge Technologies'), (36557, 'https://ror.org/01sy5zn44', 'en', 1, 'https://ror.org/01sy5zn44 Bureau of Land Management'), (36558, 'https://ror.org/01sz1dt34', 'en', 1, 'https://ror.org/01sz1dt34 Štefan Kukura Hospital in Michalovce'), (36559, 'https://ror.org/01sz7a883', 'no', 1, 'https://ror.org/01sz7a883 Fjellregionen'), (36560, 'https://ror.org/01t0mhp33', 'no_lang_code', 1, 'https://ror.org/01t0mhp33 Manila Consulting Group (United States)'), (36561, 'https://ror.org/01t19y493', 'no_lang_code', 1, 'https://ror.org/01t19y493 NeoSentio (Poland)'), (36562, 'https://ror.org/01t1wff71', 'no', 1, 'https://ror.org/01t1wff71 Tenketanken Tau'), (36563, 'https://ror.org/01t4pxk43', 'de', 1, 'https://ror.org/01t4pxk43 St. Bernward Krankenhaus'), (36564, 'https://ror.org/01t4pzq33', 'de', 1, 'https://ror.org/01t4pzq33 Max Bergmann Zentrum für Biomaterialien'), (36565, 'https://ror.org/01t63bj13', 'en', 1, 'https://ror.org/01t63bj13 Mercy Willard Hospital'), (36566, 'https://ror.org/01t6w5q16', 'no_lang_code', 1, 'https://ror.org/01t6w5q16 Felleskjøpet (Norway)'), (36567, 'https://ror.org/01t8rk370', 'en', 1, 'https://ror.org/01t8rk370 Auswärtiges Amt Federal Foreign Office'), (36568, 'https://ror.org/01tajhr18', 'en', 1, 'https://ror.org/01tajhr18 Princess Margaret Hospital'), (36569, 'https://ror.org/01tc1se08', 'no_lang_code', 1, 'https://ror.org/01tc1se08 Kolektor (Slovenia)'), (36570, 'https://ror.org/01tcanc07', 'no_lang_code', 1, 'https://ror.org/01tcanc07 Yotta Navigation (United States)'), (36571, 'https://ror.org/01teejf37', 'en', 1, 'https://ror.org/01teejf37 Defence Research and Development Laboratory रक्षा अनुसंधान एवं विकास प्रयोगशाला'), (36572, 'https://ror.org/01thm5617', 'no_lang_code', 1, 'https://ror.org/01thm5617 OceanSaver (Norway)'), (36573, 'https://ror.org/01tm0s838', 'en', 1, 'https://ror.org/01tm0s838 Ospidéal Naomh Colm Cille St. Columcille''s Hospital'), (36574, 'https://ror.org/01tm3ht72', 'no_lang_code', 1, 'https://ror.org/01tm3ht72 Deep Sea Anchors (Norway)'), (36575, 'https://ror.org/01tm5gc80', 'no_lang_code', 1, 'https://ror.org/01tm5gc80 Securo (Norway)'), (36576, 'https://ror.org/01tmhf693', 'no_lang_code', 1, 'https://ror.org/01tmhf693 Recombinant Antibody Technology (United Kingdom)'), (36577, 'https://ror.org/01tnkds55', 'en', 1, 'https://ror.org/01tnkds55 Connecticut Valley Hospital'), (36578, 'https://ror.org/01tnvpc68', 'en', 1, 'https://ror.org/01tnvpc68 Emerging Frontiers Office'), (36579, 'https://ror.org/01tphmj73', 'en', 1, 'https://ror.org/01tphmj73 Atlantic Cape Community College'), (36580, 'https://ror.org/01tsqk383', 'no_lang_code', 1, 'https://ror.org/01tsqk383 Almas Hospital'), (36581, 'https://ror.org/01tt6ct02', 'no_lang_code', 1, 'https://ror.org/01tt6ct02 Myworkout (Norway)'), (36582, 'https://ror.org/01ttpsp54', 'en', 1, 'https://ror.org/01ttpsp54 East Yangon General Hospital ရန်ကုန် အရှေ့ပိုင်း ဆေးရုံ'), (36583, 'https://ror.org/01tv6je98', 'no_lang_code', 1, 'https://ror.org/01tv6je98 AXTech (Norway)'), (36584, 'https://ror.org/01tvtq106', 'no_lang_code', 1, 'https://ror.org/01tvtq106 Posicom (Norway)'), (36585, 'https://ror.org/01tz02k91', 'no_lang_code', 1, 'https://ror.org/01tz02k91 Tec3GEO (Brazil)'), (36586, 'https://ror.org/01tzaf675', 'de', 1, 'https://ror.org/01tzaf675 Joseph Haydn-Institut'), (36587, 'https://ror.org/01v1qva17', 'no_lang_code', 1, 'https://ror.org/01v1qva17 Virttu Biologics (United Kingdom)'), (36588, 'https://ror.org/01v2fcr49', 'de', 1, 'https://ror.org/01v2fcr49 Jura-Museum Eichstätt'), (36589, 'https://ror.org/01v46ba07', 'no_lang_code', 1, 'https://ror.org/01v46ba07 Madeplas (Brazil)'), (36590, 'https://ror.org/01v4x4669', 'en', 1, 'https://ror.org/01v4x4669 AdventHealth East Orlando'), (36591, 'https://ror.org/01v583s72', 'no_lang_code', 1, 'https://ror.org/01v583s72 Arendals Fossekompani (Norway)'), (36592, 'https://ror.org/01v5fm873', 'no_lang_code', 1, 'https://ror.org/01v5fm873 Reliable Software Resources (United States)'), (36593, 'https://ror.org/01v5rq776', 'en', 1, 'https://ror.org/01v5rq776 Swami Pranavananda Homoeopathic Medical College and Hospital'), (36594, 'https://ror.org/01v67r190', 'en', 1, 'https://ror.org/01v67r190 Clark Fork Valley Hospital'), (36595, 'https://ror.org/01v6q6r30', 'en', 1, 'https://ror.org/01v6q6r30 Lackawanna College'), (36596, 'https://ror.org/01v7axg06', 'pt', 1, 'https://ror.org/01v7axg06 Federação Brasileira de Psicodrama'), (36597, 'https://ror.org/01v83yg31', 'en', 1, 'https://ror.org/01v83yg31 Linzi District People''s Hospital'), (36598, 'https://ror.org/01v9cv612', 'en', 1, 'https://ror.org/01v9cv612 O’Connor Hospital'), (36599, 'https://ror.org/01vd9vr78', 'no_lang_code', 1, 'https://ror.org/01vd9vr78 Halvors Tradisjonsfisk (Norway)'), (36600, 'https://ror.org/01vdq2v07', 'no', 1, 'https://ror.org/01vdq2v07 Trondheim Havn IKS'), (36601, 'https://ror.org/01vjmbb44', 'no_lang_code', 1, 'https://ror.org/01vjmbb44 Insolita Studios (Brazil)'), (36602, 'https://ror.org/01vjpav59', 'no_lang_code', 1, 'https://ror.org/01vjpav59 Norwegian Crystals (Norway)'), (36603, 'https://ror.org/01vkqwg02', 'no_lang_code', 1, 'https://ror.org/01vkqwg02 InPhase Solutions (Norway)'), (36604, 'https://ror.org/01vn1cc81', 'en', 1, 'https://ror.org/01vn1cc81 Galloway Community Hospital'), (36605, 'https://ror.org/01vnjbg30', 'en', 1, 'https://ror.org/01vnjbg30 Division of Information Systems'), (36606, 'https://ror.org/01vq6my12', 'no_lang_code', 1, 'https://ror.org/01vq6my12 Golder Associates (China)'), (36607, 'https://ror.org/01vstb938', 'pt', 1, 'https://ror.org/01vstb938 Universidade Katyavala Bwila'), (36608, 'https://ror.org/01vt9fn98', 'en', 1, 'https://ror.org/01vt9fn98 Maritime CleanTech West'), (36609, 'https://ror.org/01vxfv915', 'no_lang_code', 1, 'https://ror.org/01vxfv915 OptimarStette (Norway)'), (36610, 'https://ror.org/01vzhs891', 'no_lang_code', 1, 'https://ror.org/01vzhs891 Sensorteknikk (Norway)'), (36611, 'https://ror.org/01vzjr049', 'en', 1, 'https://ror.org/01vzjr049 Instytut Mechaniki Górotworu Strata Mechanics Research Institute'), (36612, 'https://ror.org/01w05wy86', 'en', 1, 'https://ror.org/01w05wy86 University of Professional Studies'), (36613, 'https://ror.org/01w17p094', 'no_lang_code', 1, 'https://ror.org/01w17p094 Enøk-Senteret (Norway)'), (36614, 'https://ror.org/01w2a1611', 'no_lang_code', 1, 'https://ror.org/01w2a1611 Egovita (Poland)'), (36615, 'https://ror.org/01w3zv781', 'en', 1, 'https://ror.org/01w3zv781 Niilo Mäki institute'), (36616, 'https://ror.org/01w5jqs06', 'no_lang_code', 1, 'https://ror.org/01w5jqs06 Pol-Spec-Tech-Service (Poland)'), (36617, 'https://ror.org/01w86pt71', 'en', 1, 'https://ror.org/01w86pt71 Sibu Hospital'), (36618, 'https://ror.org/01w8a9z74', 'no_lang_code', 1, 'https://ror.org/01w8a9z74 Nanox (Brazil)'), (36619, 'https://ror.org/01wajv258', 'no_lang_code', 1, 'https://ror.org/01wajv258 Brunvoll (Norway)'), (36620, 'https://ror.org/01wbmq566', 'no', 1, 'https://ror.org/01wbmq566 Torsken kommune'), (36621, 'https://ror.org/01wc63152', 'es', 1, 'https://ror.org/01wc63152 Hospital General de Almansa'), (36622, 'https://ror.org/01wfa7737', 'no_lang_code', 1, 'https://ror.org/01wfa7737 ATES (Slovenia)'), (36623, 'https://ror.org/01wfedj41', 'it', 1, 'https://ror.org/01wfedj41 Ospedale Cervesi di Cattolica'), (36624, 'https://ror.org/01wfgh551', 'en', 1, 'https://ror.org/01wfgh551 Fifth Affiliated Hospital of Zhengzhou University'), (36625, 'https://ror.org/01wgg9r40', 'en', 1, 'https://ror.org/01wgg9r40 Carroll Community College'), (36626, 'https://ror.org/01wgkjr48', 'no_lang_code', 1, 'https://ror.org/01wgkjr48 Dynamic Research (United States)'), (36627, 'https://ror.org/01wm3xb93', 'en', 1, 'https://ror.org/01wm3xb93 Richmond Hospital'), (36628, 'https://ror.org/01wpx1p02', 'en', 1, 'https://ror.org/01wpx1p02 Centre de santé et de services sociaux Institut universitaire de gériatrie de Sherbrooke Health and Social Services Centre University Institute of Geriatrics of Sherbrooke'), (36629, 'https://ror.org/01wq03263', 'no_lang_code', 1, 'https://ror.org/01wq03263 Biomega (Norway)'), (36630, 'https://ror.org/01wqqbh83', 'no_lang_code', 1, 'https://ror.org/01wqqbh83 Złotecki (Poland)'), (36631, 'https://ror.org/01wrmdz98', 'no_lang_code', 1, 'https://ror.org/01wrmdz98 Cyrbe (Brazil)'), (36632, 'https://ror.org/01wvsk422', 'no', 1, 'https://ror.org/01wvsk422 Mellomrom Arkitekturpsykologi'), (36633, 'https://ror.org/01wvtht83', 'en', 1, 'https://ror.org/01wvtht83 Russian Children''s Clinical Hospital'), (36634, 'https://ror.org/01wy8wf04', 'no_lang_code', 1, 'https://ror.org/01wy8wf04 Norwell (Norway)'), (36635, 'https://ror.org/01wzmsm36', 'en', 1, 'https://ror.org/01wzmsm36 Faulkner State Community College'), (36636, 'https://ror.org/01x1d6d19', 'no', 1, 'https://ror.org/01x1d6d19 Psykologica'), (36637, 'https://ror.org/01x1p1c14', 'no_lang_code', 1, 'https://ror.org/01x1p1c14 Ophthalmos (Brazil)'), (36638, 'https://ror.org/01x3q7681', 'no_lang_code', 1, 'https://ror.org/01x3q7681 Liquiline (Norway)'), (36639, 'https://ror.org/01x578c48', 'no', 1, 'https://ror.org/01x578c48 Emballasjeforeningen'), (36640, 'https://ror.org/01x5kq968', 'no', 1, 'https://ror.org/01x5kq968 Studix'), (36641, 'https://ror.org/01x5rsx73', 'no_lang_code', 1, 'https://ror.org/01x5rsx73 Educomp Solutions (India)'), (36642, 'https://ror.org/01x5tzy43', 'no_lang_code', 1, 'https://ror.org/01x5tzy43 ADK Hospital'), (36643, 'https://ror.org/01x675h84', 'en', 1, 'https://ror.org/01x675h84 Institute of Mathematical Machines'), (36644, 'https://ror.org/01x6yf687', 'no_lang_code', 1, 'https://ror.org/01x6yf687 Artec Aqua (Norway)'), (36645, 'https://ror.org/01x84xc38', 'en', 1, 'https://ror.org/01x84xc38 Philosophisch-Theologische Hochschule Sankt Georgen Sankt Georgen Graduate School of Philosophy and Theology'), (36646, 'https://ror.org/01x99wc57', 'no_lang_code', 1, 'https://ror.org/01x99wc57 MicroTech Innovation (Norway)'), (36647, 'https://ror.org/01x9cep12', 'no_lang_code', 1, 'https://ror.org/01x9cep12 Wienerberger (Norway)'), (36648, 'https://ror.org/01xa4wv03', 'no_lang_code', 1, 'https://ror.org/01xa4wv03 Hydromega (Poland)'), (36649, 'https://ror.org/01xc51294', 'no_lang_code', 1, 'https://ror.org/01xc51294 Scana (Norway)'), (36650, 'https://ror.org/01xcx0382', 'en', 1, 'https://ror.org/01xcx0382 Sutherland Hospital'), (36651, 'https://ror.org/01xd8qn15', 'en', 1, 'https://ror.org/01xd8qn15 St Woolos Hospital'), (36652, 'https://ror.org/01xdmtt96', 'no_lang_code', 1, 'https://ror.org/01xdmtt96 Biolink Group (Norway)'), (36653, 'https://ror.org/01xdsqb07', 'no_lang_code', 1, 'https://ror.org/01xdsqb07 Kvalvik (Norway)'), (36654, 'https://ror.org/01xdw4k60', 'pt', 1, 'https://ror.org/01xdw4k60 Centro Brasileiro de Análise e Planejamento'), (36655, 'https://ror.org/01xet8208', 'de', 1, 'https://ror.org/01xet8208 Olgahospital'), (36656, 'https://ror.org/01xgb9x41', 'no_lang_code', 1, 'https://ror.org/01xgb9x41 Sway (Norway)'), (36657, 'https://ror.org/01xkb1z92', 'no_lang_code', 1, 'https://ror.org/01xkb1z92 Peterson (Norway)'), (36658, 'https://ror.org/01xn49b44', 'no_lang_code', 1, 'https://ror.org/01xn49b44 CPZ International'), (36659, 'https://ror.org/01xn7k765', 'en', 1, 'https://ror.org/01xn7k765 Corfu General Clinic'), (36660, 'https://ror.org/01xn9tc24', 'no_lang_code', 1, 'https://ror.org/01xn9tc24 Promost Consulting (Poland)'), (36661, 'https://ror.org/01xncyx73', 'en', 1, 'https://ror.org/01xncyx73 Second People''s Hospital of NanTong 南通市第二人民医院'), (36662, 'https://ror.org/01xp9ya88', 'en', 1, 'https://ror.org/01xp9ya88 Flinders Private Hospital'), (36663, 'https://ror.org/01xpk0z24', 'sl', 1, 'https://ror.org/01xpk0z24 Psihiatrična Bolnišnica Ormož'), (36664, 'https://ror.org/01xqcr941', 'no_lang_code', 1, 'https://ror.org/01xqcr941 TECE Norge (Norway)'), (36665, 'https://ror.org/01xqpsp32', 'en', 1, 'https://ror.org/01xqpsp32 Fountain Way'), (36666, 'https://ror.org/01xryb297', 'no_lang_code', 1, 'https://ror.org/01xryb297 Indra Navia (Norway)'), (36667, 'https://ror.org/01xsmx049', 'no_lang_code', 1, 'https://ror.org/01xsmx049 ImagineRT (Poland)'), (36668, 'https://ror.org/01xssd484', 'no_lang_code', 1, 'https://ror.org/01xssd484 SAS Cargo (Norway)'), (36669, 'https://ror.org/01xt6pa06', 'en', 1, 'https://ror.org/01xt6pa06 Mubende Hospital'), (36670, 'https://ror.org/01xvh4n70', 'no_lang_code', 1, 'https://ror.org/01xvh4n70 Bull Ski & Kajakk (Norway)'), (36671, 'https://ror.org/01xy3fg04', 'no_lang_code', 1, 'https://ror.org/01xy3fg04 Eltcrac System (Poland)'), (36672, 'https://ror.org/01y07zp44', 'en', 1, 'https://ror.org/01y07zp44 Second Affiliated Hospital of Inner Mongolia Medical University'), (36673, 'https://ror.org/01y0nwc34', 'no_lang_code', 1, 'https://ror.org/01y0nwc34 Odysci (Brazil)'), (36674, 'https://ror.org/01y130z09', 'en', 1, 'https://ror.org/01y130z09 United Nations University-International Institute for Global Health'), (36675, 'https://ror.org/01y361889', 'en', 1, 'https://ror.org/01y361889 Islamic Azad University Mahshahr دانشگاه آزاد اسلامی واحد ماهشهر'), (36676, 'https://ror.org/01y3dkh13', 'no_lang_code', 1, 'https://ror.org/01y3dkh13 Enalta Inovações Tecnológicas (Brazil)'), (36677, 'https://ror.org/01y3fwb07', 'en', 1, 'https://ror.org/01y3fwb07 Aga Khan Hospital, Mombasa'), (36678, 'https://ror.org/01y4k8j51', 'no_lang_code', 1, 'https://ror.org/01y4k8j51 Isothermal Technology (United Kingdom)'), (36679, 'https://ror.org/01y5z8p89', 'en', 1, 'https://ror.org/01y5z8p89 James Cook University Singapore'), (36680, 'https://ror.org/01y60ry16', 'en', 1, 'https://ror.org/01y60ry16 Gateway Seminary'), (36681, 'https://ror.org/01y7nr056', 'no_lang_code', 1, 'https://ror.org/01y7nr056 Dpcom (Norway)'), (36682, 'https://ror.org/01y87aw49', 'en', 1, 'https://ror.org/01y87aw49 Jilin City Central Hospital'), (36683, 'https://ror.org/01y8byw03', 'no_lang_code', 1, 'https://ror.org/01y8byw03 Meaning Processing (Finland)'), (36684, 'https://ror.org/01yb2dp72', 'no_lang_code', 1, 'https://ror.org/01yb2dp72 Br4Science (Brazil)'), (36685, 'https://ror.org/01ybqnp73', 'de', 1, 'https://ror.org/01ybqnp73 Katholisches Klinikum Essen'), (36686, 'https://ror.org/01ybxp914', 'de', 1, 'https://ror.org/01ybxp914 Landesamt für Denkmalpflege und Archäologie Sachsen-Anhalt'), (36687, 'https://ror.org/01yejqg95', 'no_lang_code', 1, 'https://ror.org/01yejqg95 Applied Technical Services (United States)'), (36688, 'https://ror.org/01yemzx31', 'en', 1, 'https://ror.org/01yemzx31 St. Anthony Hospital'), (36689, 'https://ror.org/01ygcjp85', 'no_lang_code', 1, 'https://ror.org/01ygcjp85 Biosense Laboratories (Norway)'), (36690, 'https://ror.org/01yj0ps95', 'en', 1, 'https://ror.org/01yj0ps95 Novant Health Charlotte Orthopedic Hospital'), (36691, 'https://ror.org/01yjqh416', 'en', 1, 'https://ror.org/01yjqh416 Angkor Hospital for Children'), (36692, 'https://ror.org/01yk80k13', 'no_lang_code', 1, 'https://ror.org/01yk80k13 Hytron (Brazil)'), (36693, 'https://ror.org/01yn06q53', 'no', 1, 'https://ror.org/01yn06q53 Avdeling for Utdanning Nord-Trøndelag Fylkeskommune'), (36694, 'https://ror.org/01yq0dc07', 'no_lang_code', 1, 'https://ror.org/01yq0dc07 Innovation Performance (Norway)'), (36695, 'https://ror.org/01yq3x543', 'en', 1, 'https://ror.org/01yq3x543 Indira Gandhi Memorial Hospital'), (36696, 'https://ror.org/01yr8vh25', 'no_lang_code', 1, 'https://ror.org/01yr8vh25 K.A. Rasmussen (Norway)'), (36697, 'https://ror.org/01yvp8p19', 'en', 1, 'https://ror.org/01yvp8p19 General Numerics Research Lab'), (36698, 'https://ror.org/01yweg667', 'no_lang_code', 1, 'https://ror.org/01yweg667 Simtronics (Norway)'), (36699, 'https://ror.org/01yxywh30', 'no_lang_code', 1, 'https://ror.org/01yxywh30 Icopal (Poland)'), (36700, 'https://ror.org/01yyc4w33', 'no_lang_code', 1, 'https://ror.org/01yyc4w33 Vidarforlaget (Norway)'), (36701, 'https://ror.org/01yz57p78', 'en', 1, 'https://ror.org/01yz57p78 Iran University of Industries and Mines'), (36702, 'https://ror.org/01z00ad02', 'no_lang_code', 1, 'https://ror.org/01z00ad02 EFD Induction (Norway)'), (36703, 'https://ror.org/01z143507', 'en', 1, 'https://ror.org/01z143507 Institute of Electronics 中国科学院电子学研究所'), (36704, 'https://ror.org/01z1jq781', 'no_lang_code', 1, 'https://ror.org/01z1jq781 Opinion (Norway)'), (36705, 'https://ror.org/01z3h6v80', 'en', 1, 'https://ror.org/01z3h6v80 Norwegian Securities Dealers Association'), (36706, 'https://ror.org/01z5a7f98', 'en', 1, 'https://ror.org/01z5a7f98 Webstudent'), (36707, 'https://ror.org/01z5xma55', 'de', 1, 'https://ror.org/01z5xma55 Krankenhaus der Elisabethinen'), (36708, 'https://ror.org/01z6h9229', 'no_lang_code', 1, 'https://ror.org/01z6h9229 Nowoczesne Techniki Instalacyjne (Poland)'), (36709, 'https://ror.org/01z6y6z64', 'no', 1, 'https://ror.org/01z6y6z64 657 Oslo'), (36710, 'https://ror.org/01z735w38', 'no_lang_code', 1, 'https://ror.org/01z735w38 Rek Swed (Poland)'), (36711, 'https://ror.org/01z9pc360', 'no_lang_code', 1, 'https://ror.org/01z9pc360 GK (Norway)'), (36712, 'https://ror.org/01za4wm85', 'pt', 1, 'https://ror.org/01za4wm85 Solução Ambiental Assessoria e Consultoria'), (36713, 'https://ror.org/01zb5kv44', 'no_lang_code', 1, 'https://ror.org/01zb5kv44 Rajagiri Hospital'), (36714, 'https://ror.org/01zevds37', 'no_lang_code', 1, 'https://ror.org/01zevds37 Germinal (Brazil)'), (36715, 'https://ror.org/01zhqzf22', 'no_lang_code', 1, 'https://ror.org/01zhqzf22 Vardø Barents Base (Norway)'), (36716, 'https://ror.org/01zjqqd74', 'no_lang_code', 1, 'https://ror.org/01zjqqd74 Tottori Prefectural Kousei Hospital 鳥取県立厚生病院'), (36717, 'https://ror.org/01zjrck77', 'en', 1, 'https://ror.org/01zjrck77 National University'), (36718, 'https://ror.org/01zkhn749', 'en', 1, 'https://ror.org/01zkhn749 St Christopher''s Hospice'), (36719, 'https://ror.org/01zmf6239', 'no_lang_code', 1, 'https://ror.org/01zmf6239 Strongpoint (Norway)'), (36720, 'https://ror.org/01zmty518', 'no_lang_code', 1, 'https://ror.org/01zmty518 Opera Software (Norway)'), (36721, 'https://ror.org/01zn6j405', 'pt', 1, 'https://ror.org/01zn6j405 Academia de Ciências do Estado de São Paulo'), (36722, 'https://ror.org/01zndg142', 'en', 1, 'https://ror.org/01zndg142 Northeastern Vermont Regional Hospital'), (36723, 'https://ror.org/01znj1w09', 'en', 1, 'https://ror.org/01znj1w09 Saint Thomas - Rutherford Hospital'), (36724, 'https://ror.org/01zpfhn04', 'no_lang_code', 1, 'https://ror.org/01zpfhn04 Nattopharma (Norway)'), (36725, 'https://ror.org/01zq8yd65', 'en', 1, 'https://ror.org/01zq8yd65 ProMedica Fostoria Community Hospital'), (36726, 'https://ror.org/01zqypb88', 'en', 1, 'https://ror.org/01zqypb88 Institut für Informationsmanagement Bremen Institute for Information Management Bremen'), (36727, 'https://ror.org/01zs0qn80', 'no_lang_code', 1, 'https://ror.org/01zs0qn80 Efix (Brazil)'), (36728, 'https://ror.org/01zsd9g12', 'pt', 1, 'https://ror.org/01zsd9g12 Centro Cerâmico do Brasil'), (36729, 'https://ror.org/01zwcb774', 'no_lang_code', 1, 'https://ror.org/01zwcb774 Deoxi Biotecnologia (Brazil)'), (36730, 'https://ror.org/01zx9b829', 'en', 1, 'https://ror.org/01zx9b829 Aliwal North Hospital'), (36731, 'https://ror.org/01zzvpv85', 'fr', 1, 'https://ror.org/01zzvpv85 Cégep de Saint-Laurent'), (36732, 'https://ror.org/0205pd806', 'no_lang_code', 1, 'https://ror.org/0205pd806 ECHO (Slovenia)'), (36733, 'https://ror.org/0206aqk41', 'en', 1, 'https://ror.org/0206aqk41 Institut für die Geschichte der deutschen Juden Institute for the History of the German Jews'), (36734, 'https://ror.org/0207qan07', 'no_lang_code', 1, 'https://ror.org/0207qan07 Geoambiente (Brazil)'), (36735, 'https://ror.org/02091ng19', 'en', 1, 'https://ror.org/02091ng19 Lowell General Hospital'), (36736, 'https://ror.org/0209g3a14', 'no_lang_code', 1, 'https://ror.org/0209g3a14 Innovations for Heart and Vessels (Poland)'), (36737, 'https://ror.org/020deqr47', 'en', 1, 'https://ror.org/020deqr47 Eastern Norway Research Institute'), (36738, 'https://ror.org/020e65m33', 'no_lang_code', 1, 'https://ror.org/020e65m33 AMES (Slovenia)'), (36739, 'https://ror.org/020eynm41', 'en', 1, 'https://ror.org/020eynm41 Stracathro Hospital'), (36740, 'https://ror.org/020f80982', 'no_lang_code', 1, 'https://ror.org/020f80982 Lividi (Norway)'), (36741, 'https://ror.org/020hwg097', 'en', 1, 'https://ror.org/020hwg097 Institute for the Protection of Cultural Heritage of Slovenia'), (36742, 'https://ror.org/020r4kx11', 'en', 1, 'https://ror.org/020r4kx11 Coquitlam College'), (36743, 'https://ror.org/020rm1980', 'no_lang_code', 1, 'https://ror.org/020rm1980 Res Publica (Norway)'), (36744, 'https://ror.org/020t0j562', 'en', 1, 'https://ror.org/020t0j562 Mahatma Gandhi Mission Medical College and Hospital'), (36745, 'https://ror.org/020twtp42', 'en', 1, 'https://ror.org/020twtp42 Swiss Institute for Management and Hospitality'), (36746, 'https://ror.org/020v4ez65', 'no_lang_code', 1, 'https://ror.org/020v4ez65 PREZIOSO Linjebygg (Norway)'), (36747, 'https://ror.org/020vj5597', 'no', 1, 'https://ror.org/020vj5597 Sørlandet Kunnskapspark'), (36748, 'https://ror.org/0210sec94', 'no_lang_code', 1, 'https://ror.org/0210sec94 Hammertech (Norway)'), (36749, 'https://ror.org/02149rc02', 'en', 1, 'https://ror.org/02149rc02 Vilniaus Šv. Juozapo kunigų seminarija Vilnius St. Joseph Seminary Семинария Святого Иосифа'), (36750, 'https://ror.org/0214vep53', 'no_lang_code', 1, 'https://ror.org/0214vep53 Madwaleni Hospital'), (36751, 'https://ror.org/02156y972', 'no_lang_code', 1, 'https://ror.org/02156y972 Eli Lilly (India)'), (36752, 'https://ror.org/0216ejh55', 'en', 1, 'https://ror.org/0216ejh55 Stutterheim Provincial Hospital'), (36753, 'https://ror.org/0217s3a79', 'fr', 1, 'https://ror.org/0217s3a79 Centre Hospitalier Universitaire Yalgado Ouédraogo'), (36754, 'https://ror.org/0218d7462', 'ms', 1, 'https://ror.org/0218d7462 Manipal Hospital Klang'), (36755, 'https://ror.org/021b6hf74', 'en', 1, 'https://ror.org/021b6hf74 Shanxi Taiyuan Jinkang Rheumatism Hospital'), (36756, 'https://ror.org/021bx9h20', 'en', 1, 'https://ror.org/021bx9h20 Inver Hills Community College'), (36757, 'https://ror.org/021c3kv95', 'no_lang_code', 1, 'https://ror.org/021c3kv95 Økologisk Spesialkorn (Norway)'), (36758, 'https://ror.org/021d0nd97', 'en', 1, 'https://ror.org/021d0nd97 First Scandinavia'), (36759, 'https://ror.org/021dpgf14', 'no', 1, 'https://ror.org/021dpgf14 Regionrådet for Hallingdal'), (36760, 'https://ror.org/021f59e59', 'en', 1, 'https://ror.org/021f59e59 Manchester Memorial Hospital'), (36761, 'https://ror.org/021f7p178', 'en', 1, 'https://ror.org/021f7p178'), (36762, 'https://ror.org/021fpfb36', 'no_lang_code', 1, 'https://ror.org/021fpfb36 Docmap (Norway)'), (36763, 'https://ror.org/021frtx57', 'no_lang_code', 1, 'https://ror.org/021frtx57 Lychnoflora (Brazil)'), (36764, 'https://ror.org/021gz1h55', 'no_lang_code', 1, 'https://ror.org/021gz1h55 Logon (Slovenia)'), (36765, 'https://ror.org/021h8nm63', 'no_lang_code', 1, 'https://ror.org/021h8nm63 Knowit (Norway)'), (36766, 'https://ror.org/021j2r958', 'no_lang_code', 1, 'https://ror.org/021j2r958 ACROS Security (Slovenia)'), (36767, 'https://ror.org/021jq8741', 'en', 1, 'https://ror.org/021jq8741 Alliance for Health Policy and Systems Research'), (36768, 'https://ror.org/021k9av74', 'no_lang_code', 1, 'https://ror.org/021k9av74 DEV Tecnologia (Brazil)'), (36769, 'https://ror.org/021pm4a51', 'no_lang_code', 1, 'https://ror.org/021pm4a51 Utep (Brazil)'), (36770, 'https://ror.org/021s7xp77', 'no_lang_code', 1, 'https://ror.org/021s7xp77 Helios (Slovenia)'), (36771, 'https://ror.org/021sest91', 'no_lang_code', 1, 'https://ror.org/021sest91 BCS Tecnologia (Brazil)'), (36772, 'https://ror.org/021yjvj30', 'en', 1, 'https://ror.org/021yjvj30 Norwegian Seafood Council'), (36773, 'https://ror.org/021ypf588', 'no_lang_code', 1, 'https://ror.org/021ypf588 Scan4news (Norway)'), (36774, 'https://ror.org/0220s7h54', 'en', 1, 'https://ror.org/0220s7h54 Institute for Civilization and Culture'), (36775, 'https://ror.org/022641m79', 'no_lang_code', 1, 'https://ror.org/022641m79 Klar Tale'), (36776, 'https://ror.org/0226dyd29', 'no', 1, 'https://ror.org/0226dyd29 Sørlandet Boligbyggelag'), (36777, 'https://ror.org/022861y27', 'no_lang_code', 1, 'https://ror.org/022861y27 Ektimo (Slovenia)'), (36778, 'https://ror.org/0229zva94', 'no_lang_code', 1, 'https://ror.org/0229zva94 Tecplas Indústria e Comércio (Brazil)'), (36779, 'https://ror.org/022ave037', 'en', 1, 'https://ror.org/022ave037 Campbellford Memorial Hospital'), (36780, 'https://ror.org/022aw4932', 'no_lang_code', 1, 'https://ror.org/022aw4932 Mine Master (Poland)'), (36781, 'https://ror.org/022bcfn34', 'no_lang_code', 1, 'https://ror.org/022bcfn34 Hansen Protection (Norway)'), (36782, 'https://ror.org/022c1nw12', 'fi', 1, 'https://ror.org/022c1nw12 Salla'), (36783, 'https://ror.org/022cbyf89', 'en', 1, 'https://ror.org/022cbyf89 Gaochun People''s Hospital'), (36784, 'https://ror.org/022cem317', 'no_lang_code', 1, 'https://ror.org/022cem317 Multicorpos Engenharia (Brazil)'), (36785, 'https://ror.org/022dft797', 'en', 1, 'https://ror.org/022dft797 Los Angeles Valley College'), (36786, 'https://ror.org/022e3pg27', 'en', 1, 'https://ror.org/022e3pg27 Praesterno Foundation'), (36787, 'https://ror.org/022egts32', 'no_lang_code', 1, 'https://ror.org/022egts32 Altech (Brazil)'), (36788, 'https://ror.org/022gnfx83', 'no_lang_code', 1, 'https://ror.org/022gnfx83 Shell (Norway) Shell i Norge'), (36789, 'https://ror.org/022j85822', 'no_lang_code', 1, 'https://ror.org/022j85822 Eurofins (Brazil)'), (36790, 'https://ror.org/022ke2j41', 'no_lang_code', 1, 'https://ror.org/022ke2j41 Electromagnetic Geoservices (Norway)'), (36791, 'https://ror.org/022m3jb71', 'en', 1, 'https://ror.org/022m3jb71 Hoima Hospital'), (36792, 'https://ror.org/022qggq29', 'en', 1, 'https://ror.org/022qggq29 Hordaland County Council'), (36793, 'https://ror.org/022qzp196', 'no_lang_code', 1, 'https://ror.org/022qzp196 Alimetrics (Finland)'), (36794, 'https://ror.org/022sv5w75', 'en', 1, 'https://ror.org/022sv5w75 Islamic Azad University of Ahar دانشگاه آزاد اسلامی واحد اهر'), (36795, 'https://ror.org/022v7y137', 'en', 1, 'https://ror.org/022v7y137 Thomas Embling Hospital'), (36796, 'https://ror.org/022w5pf74', 'en', 1, 'https://ror.org/022w5pf74 Institute for Symbolic analysis and Development of Information Technologies'), (36797, 'https://ror.org/022w6y159', 'en', 1, 'https://ror.org/022w6y159 Norwegian Medical Association'), (36798, 'https://ror.org/022x9cm37', 'no_lang_code', 1, 'https://ror.org/022x9cm37 Vocalize (Brazil)'), (36799, 'https://ror.org/02324e112', 'en', 1, 'https://ror.org/02324e112 Mission Hospital'), (36800, 'https://ror.org/0232rsc48', 'pt', 1, 'https://ror.org/0232rsc48 Secretaria da Justiça e da Defesa da Cidadania'), (36801, 'https://ror.org/023312y65', 'no_lang_code', 1, 'https://ror.org/023312y65 Hystorsys (Norway)'), (36802, 'https://ror.org/02333k624', 'en', 1, 'https://ror.org/02333k624 St. Joseph Dental College'), (36803, 'https://ror.org/02346dc53', 'no_lang_code', 1, 'https://ror.org/02346dc53 Visitech (Norway)'), (36804, 'https://ror.org/0234wv516', 'en', 1, 'https://ror.org/0234wv516 Chaohu Hospital of Anhui Medical University'), (36805, 'https://ror.org/0234z1974', 'no_lang_code', 1, 'https://ror.org/0234z1974 Amedia (Norway)'), (36806, 'https://ror.org/0235t2b60', 'fr', 1, 'https://ror.org/0235t2b60 Centre des Sciences de Montréal'), (36807, 'https://ror.org/0236gc710', 'no_lang_code', 1, 'https://ror.org/0236gc710 SPPT Pesquisas Tecnológicas (Brazil)'), (36808, 'https://ror.org/02394tn51', 'en', 1, 'https://ror.org/02394tn51 Columbia Basin College'), (36809, 'https://ror.org/0239h0795', 'no_lang_code', 1, 'https://ror.org/0239h0795 Interon (Norway)'), (36810, 'https://ror.org/0239rms91', 'no_lang_code', 1, 'https://ror.org/0239rms91 Biosergen (Norway)'), (36811, 'https://ror.org/0239t8d82', 'no_lang_code', 1, 'https://ror.org/0239t8d82 Sensoft Automação (Brazil)'), (36812, 'https://ror.org/0239yvq05', 'no_lang_code', 1, 'https://ror.org/0239yvq05 Expro (Norway)'), (36813, 'https://ror.org/023ac3y20', 'en', 1, 'https://ror.org/023ac3y20 Chedoke Hospital'), (36814, 'https://ror.org/023afa504', 'en', 1, 'https://ror.org/023afa504 Oregon State Hospital'), (36815, 'https://ror.org/023ahcz89', 'en', 1, 'https://ror.org/023ahcz89 Max Planck Institute for Comparative and International Private Law Max-Planck-Institut für Ausländisches und Internationales Privatrecht'), (36816, 'https://ror.org/023ar3785', 'en', 1, 'https://ror.org/023ar3785 County Governor of Nordland'), (36817, 'https://ror.org/023e2rv43', 'no_lang_code', 1, 'https://ror.org/023e2rv43 Clearwater Group (Norway)'), (36818, 'https://ror.org/023e9bm81', 'en', 1, 'https://ror.org/023e9bm81 Muhammad Nawaz Sharif University of Engineering & Technology'), (36819, 'https://ror.org/023f84a29', 'no_lang_code', 1, 'https://ror.org/023f84a29 Statkraft (Norway)'), (36820, 'https://ror.org/023fkcg80', 'en', 1, 'https://ror.org/023fkcg80 Africa International University'), (36821, 'https://ror.org/023kmsj44', 'no_lang_code', 1, 'https://ror.org/023kmsj44 WINGS ICT Solutions (Greece)'), (36822, 'https://ror.org/023m9d467', 'no_lang_code', 1, 'https://ror.org/023m9d467 Energy Dynamics (Norway)'), (36823, 'https://ror.org/023mn6e26', 'en', 1, 'https://ror.org/023mn6e26 Semicolon'), (36824, 'https://ror.org/023mvn081', 'en', 1, 'https://ror.org/023mvn081 Mevlana University Hospital'), (36825, 'https://ror.org/023p8r457', 'en', 1, 'https://ror.org/023p8r457 Norwegian Forest Owners Association'), (36826, 'https://ror.org/023pf5e38', 'en', 1, 'https://ror.org/023pf5e38 Somerville Hospital'), (36827, 'https://ror.org/023pfp970', 'de', 1, 'https://ror.org/023pfp970 Staatsarchiv Bremen'), (36828, 'https://ror.org/023q7sf47', 'no_lang_code', 1, 'https://ror.org/023q7sf47 Bodø Science Park (Norway)'), (36829, 'https://ror.org/023q9y161', 'no_lang_code', 1, 'https://ror.org/023q9y161 Albatros Aluminium (Poland)'), (36830, 'https://ror.org/023rbaw78', 'fr', 1, 'https://ror.org/023rbaw78 Université des Sciences, des Techniques et des Technologies de Bamako'), (36831, 'https://ror.org/023s53v33', 'no_lang_code', 1, 'https://ror.org/023s53v33 Invel (Brazil)'), (36832, 'https://ror.org/023sbte93', 'en', 1, 'https://ror.org/023sbte93 Cosumnes River College'), (36833, 'https://ror.org/023vb4t46', 'de', 1, 'https://ror.org/023vb4t46 Institut für Sächsische Geschichte und Volkskunde'), (36834, 'https://ror.org/023vx9026', 'no_lang_code', 1, 'https://ror.org/023vx9026 Prediktor (Norway)'), (36835, 'https://ror.org/023wja311', 'sl', 1, 'https://ror.org/023wja311 Frančiškanski Družinski Inštitut'), (36836, 'https://ror.org/023x8re17', 'no_lang_code', 1, 'https://ror.org/023x8re17 Bangkok Christian Hospital โรงพยาบาลกรุงเทพคริสเตียน'), (36837, 'https://ror.org/023zwk705', 'no_lang_code', 1, 'https://ror.org/023zwk705 IPS (Brazil)'), (36838, 'https://ror.org/0243vac68', 'en', 1, 'https://ror.org/0243vac68 GMC Hospital'), (36839, 'https://ror.org/0244q6h72', 'no_lang_code', 1, 'https://ror.org/0244q6h72 LPKF Group (Slovenia)'), (36840, 'https://ror.org/0244tm524', 'no_lang_code', 1, 'https://ror.org/0244tm524 Securenok (Norway)'), (36841, 'https://ror.org/0244wrw23', 'no_lang_code', 1, 'https://ror.org/0244wrw23 AGX Tecnologia (Brazil)'), (36842, 'https://ror.org/0245knx74', 'no_lang_code', 1, 'https://ror.org/0245knx74 Tidal Sails (Norway)'), (36843, 'https://ror.org/0247xas18', 'en', 1, 'https://ror.org/0247xas18 Guigang City People''s Hospital'), (36844, 'https://ror.org/02492wy41', 'no_lang_code', 1, 'https://ror.org/02492wy41 Biogrid (Norway)'), (36845, 'https://ror.org/024a7ry57', 'en', 1, 'https://ror.org/024a7ry57 Kjeøy Research & Education Center, Trading Post and Fishing Village'), (36846, 'https://ror.org/024bc8636', 'no_lang_code', 1, 'https://ror.org/024bc8636 Novitech (Slovakia)'), (36847, 'https://ror.org/024dhg912', 'no_lang_code', 1, 'https://ror.org/024dhg912 Seamless (Norway)'), (36848, 'https://ror.org/024f41j50', 'no_lang_code', 1, 'https://ror.org/024f41j50 Versor Inovação Tecnológica (Brazil)'), (36849, 'https://ror.org/024fetb28', 'no_lang_code', 1, 'https://ror.org/024fetb28 Salt Sea & Limno Technology'), (36850, 'https://ror.org/024jky872', 'no', 1, 'https://ror.org/024jky872 Norsk Trevare'), (36851, 'https://ror.org/024kjg104', 'pt', 1, 'https://ror.org/024kjg104 Associação Brasileira de Informática'), (36852, 'https://ror.org/024m1yq44', 'no_lang_code', 1, 'https://ror.org/024m1yq44 Camelback (Brazil)'), (36853, 'https://ror.org/024mwqq28', 'en', 1, 'https://ror.org/024mwqq28 Buskerud County Municipality'), (36854, 'https://ror.org/024mz1171', 'no_lang_code', 1, 'https://ror.org/024mz1171 Budopex (Poland)'), (36855, 'https://ror.org/024nns705', 'en', 1, 'https://ror.org/024nns705 Tana Municipality'), (36856, 'https://ror.org/024nzz449', 'de', 1, 'https://ror.org/024nzz449 Institut für Sozialforschung und Sozialwirtschaft'), (36857, 'https://ror.org/024pdem44', 'en', 1, 'https://ror.org/024pdem44 Hyogo University 兵庫大学'), (36858, 'https://ror.org/024s10v78', 'no_lang_code', 1, 'https://ror.org/024s10v78 ESU-Services (Switzerland)'), (36859, 'https://ror.org/024sym234', 'en', 1, 'https://ror.org/024sym234 St. Cloud Hospital'), (36860, 'https://ror.org/024thra40', 'en', 1, 'https://ror.org/024thra40 Helmholtz Institute Mainz Helmholtz-Institut Mainz'), (36861, 'https://ror.org/024tya472', 'pt', 1, 'https://ror.org/024tya472 Sociedade Brasileira de Genética'), (36862, 'https://ror.org/024vfsp92', 'en', 1, 'https://ror.org/024vfsp92 UPMC Presbyterian'), (36863, 'https://ror.org/024x6hc31', 'no_lang_code', 1, 'https://ror.org/024x6hc31 Agder Energi (Norway)'), (36864, 'https://ror.org/024xst005', 'no_lang_code', 1, 'https://ror.org/024xst005 Alten (Italy)'), (36865, 'https://ror.org/024yt9656', 'en', 1, 'https://ror.org/024yt9656 Villa Maria Hospital'), (36866, 'https://ror.org/02506kf89', 'de', 1, 'https://ror.org/02506kf89 Klinikum Weiden'), (36867, 'https://ror.org/0253es752', 'en', 1, 'https://ror.org/0253es752 Martin Luther King, Jr. Community Hospital'), (36868, 'https://ror.org/0254m6v25', 'no_lang_code', 1, 'https://ror.org/0254m6v25 Harald Krogsæter (Norway)'), (36869, 'https://ror.org/0257s2812', 'en', 1, 'https://ror.org/0257s2812 Robina Hospital'), (36870, 'https://ror.org/0257syp95', 'de', 1, 'https://ror.org/0257syp95 Friedrich-Ebert-Krankenhaus'), (36871, 'https://ror.org/0259bcz98', 'en', 1, 'https://ror.org/0259bcz98 Brisbane School of Theology, Crossway College'), (36872, 'https://ror.org/0259gsa43', 'en', 1, 'https://ror.org/0259gsa43 Brigham Young University Hawaii, Brigham Young University–Hawaii'), (36873, 'https://ror.org/025cgya16', 'no_lang_code', 1, 'https://ror.org/025cgya16 GTM Mobil (Poland)'), (36874, 'https://ror.org/025fme611', 'en', 1, 'https://ror.org/025fme611 Lewisham College, Lewisham Southwark College'), (36875, 'https://ror.org/025g6sc95', 'en', 1, 'https://ror.org/025g6sc95 President''s Emergency Plan for AIDS Relief'), (36876, 'https://ror.org/025j99319', 'no_lang_code', 1, 'https://ror.org/025j99319 Elop (Norway)'), (36877, 'https://ror.org/025jcmr63', 'no_lang_code', 1, 'https://ror.org/025jcmr63 Clorovale Diamantes (Brazil)'), (36878, 'https://ror.org/025jpz175', 'no_lang_code', 1, 'https://ror.org/025jpz175 Csub (Norway)'), (36879, 'https://ror.org/025m8nj62', 'no_lang_code', 1, 'https://ror.org/025m8nj62 Frontier Hospital'), (36880, 'https://ror.org/025p6sg19', 'en', 1, 'https://ror.org/025p6sg19 Limbe Provincial Hospital'), (36881, 'https://ror.org/025q8bf29', 'no_lang_code', 1, 'https://ror.org/025q8bf29 BEWi (Norway)'), (36882, 'https://ror.org/025rbqk82', 'en', 1, 'https://ror.org/025rbqk82 Small and Medium Enterprises Development Organization'), (36883, 'https://ror.org/025ve8p25', 'no_lang_code', 1, 'https://ror.org/025ve8p25 Gazprombank'), (36884, 'https://ror.org/025wsd308', 'en', 1, 'https://ror.org/025wsd308 Sieć Badawcza Łukasiewicz – Przemysłowy Instytut Motoryzacji Łukasiewicz Research Network - Automotive Industry Institute'), (36885, 'https://ror.org/025xvg623', 'no_lang_code', 1, 'https://ror.org/025xvg623 EY Technologies (United States)'), (36886, 'https://ror.org/025z8hh73', 'tr', 1, 'https://ror.org/025z8hh73 Suluova Devlet Hastanesi'), (36887, 'https://ror.org/0261d1g37', 'en', 1, 'https://ror.org/0261d1g37 Second Hospital of Nanchang'), (36888, 'https://ror.org/0261v0920', 'no_lang_code', 1, 'https://ror.org/0261v0920 Pedmo (Poland)'), (36889, 'https://ror.org/02621tf26', 'no_lang_code', 1, 'https://ror.org/02621tf26 Norboat (Norway)'), (36890, 'https://ror.org/0266m8d62', 'de', 1, 'https://ror.org/0266m8d62 Frankfurter Goethe Haus – Freies Deutsches Hochstift'), (36891, 'https://ror.org/02671ys76', 'tr', 1, 'https://ror.org/02671ys76 Yunus Emre Hastanesi'), (36892, 'https://ror.org/026dp8058', 'en', 1, 'https://ror.org/026dp8058 Baghdad College of Economic Sciences University كلية بغداد للعلوم الاقتصادية الجامعة'), (36893, 'https://ror.org/026g68t18', 'no_lang_code', 1, 'https://ror.org/026g68t18 Zhoushan Hospital'), (36894, 'https://ror.org/026j3ke77', 'en', 1, 'https://ror.org/026j3ke77 Asbury Theological Seminary'), (36895, 'https://ror.org/026k8vn84', 'no_lang_code', 1, 'https://ror.org/026k8vn84 PPM Robotics (Norway)'), (36896, 'https://ror.org/026kbck74', 'no_lang_code', 1, 'https://ror.org/026kbck74 Proeletronic (Brazil)'), (36897, 'https://ror.org/026nfkh32', 'no', 1, 'https://ror.org/026nfkh32 Modum Bad – Gordon Johnsens stiftelse'), (36898, 'https://ror.org/026t4yj55', 'no_lang_code', 1, 'https://ror.org/026t4yj55 Retura (Norway)'), (36899, 'https://ror.org/026taa863', 'en', 1, 'https://ror.org/026taa863 Fraunhofer Institute for Machine Tools and Forming Technology Fraunhofer-Institut für Werkzeugmaschinen und Umformtechnik'), (36900, 'https://ror.org/026xrdv37', 'no_lang_code', 1, 'https://ror.org/026xrdv37 Playax Internet (Brazil)'), (36901, 'https://ror.org/026y8kf09', 'no_lang_code', 1, 'https://ror.org/026y8kf09 Halify (Norway)'), (36902, 'https://ror.org/0271rqt72', 'pt', 1, 'https://ror.org/0271rqt72 Fundação de Rotarianos de São Paulo'), (36903, 'https://ror.org/0271xgz16', 'en', 1, 'https://ror.org/0271xgz16 Women of Color Breast Cancer Survivors'' Support Project'), (36904, 'https://ror.org/02729dt24', 'no_lang_code', 1, 'https://ror.org/02729dt24 NavSys (Norway)'), (36905, 'https://ror.org/0272hbz69', 'no_lang_code', 1, 'https://ror.org/0272hbz69 SeaSide (Norway)'), (36906, 'https://ror.org/0272wvz49', 'en', 1, 'https://ror.org/0272wvz49 Los Angeles Trade Technical College Universidad Comunitaria Vocacional–Técnica de Los Ángeles'), (36907, 'https://ror.org/02730rb40', 'no_lang_code', 1, 'https://ror.org/02730rb40 Novelda (Norway)'), (36908, 'https://ror.org/027419338', 'en', 1, 'https://ror.org/027419338 Rygge Municipality'), (36909, 'https://ror.org/027697215', 'en', 1, 'https://ror.org/027697215 College of West Anglia'), (36910, 'https://ror.org/027dbtv13', 'no_lang_code', 1, 'https://ror.org/027dbtv13 Mextra (Brazil)'), (36911, 'https://ror.org/027ec3b27', 'no_lang_code', 1, 'https://ror.org/027ec3b27 Anod-Arc Comércio e Serviços Anod-arc (Brazil)'), (36912, 'https://ror.org/027hr5e81', 'no_lang_code', 1, 'https://ror.org/027hr5e81 Melbu Systems (Norway)'), (36913, 'https://ror.org/027kfm928', 'no_lang_code', 1, 'https://ror.org/027kfm928 Troms Kraft (Norway)'), (36914, 'https://ror.org/027n0t368', 'no_lang_code', 1, 'https://ror.org/027n0t368 Nordic wildfish (Norway)'), (36915, 'https://ror.org/027p4v066', 'no_lang_code', 1, 'https://ror.org/027p4v066 EAB Engineering (Norway)'), (36916, 'https://ror.org/027pg7t61', 'no_lang_code', 1, 'https://ror.org/027pg7t61 Chemyunion (Brazil)'), (36917, 'https://ror.org/027pytp55', 'no', 1, 'https://ror.org/027pytp55 Eidskog Kommune'), (36918, 'https://ror.org/027q1ta90', 'en', 1, 'https://ror.org/027q1ta90 Georgia Military College'), (36919, 'https://ror.org/027qtg134', 'no_lang_code', 1, 'https://ror.org/027qtg134 Flexit (Norway)'), (36920, 'https://ror.org/027r49s81', 'no_lang_code', 1, 'https://ror.org/027r49s81 Fortis Malar Hospital'), (36921, 'https://ror.org/027s4f313', 'no_lang_code', 1, 'https://ror.org/027s4f313 Menon Business Economics (Norway)'), (36922, 'https://ror.org/027sjp768', 'en', 1, 'https://ror.org/027sjp768 Queanbeyan District Hospital'), (36923, 'https://ror.org/027snk764', 'no_lang_code', 1, 'https://ror.org/027snk764 SpinChip Diagnostics (Norway)'), (36924, 'https://ror.org/027sqes69', 'no_lang_code', 1, 'https://ror.org/027sqes69 Iskra (Slovenia)'), (36925, 'https://ror.org/027t6ka17', 'en', 1, 'https://ror.org/027t6ka17 Indian School of Business इंडियन स्कूल ऑफ बिजनेस ఇండియన్ స్కూల్ ఆఫ్ బిజినెస్ ಇಂಡಿಯನ್ ಸ್ಕೂಲ್ ಆಫ್ ಬಿಸಿನೆಸ್'), (36926, 'https://ror.org/027wzg564', 'en', 1, 'https://ror.org/027wzg564 Australian College of Applied Psychology'), (36927, 'https://ror.org/027xmwe42', 'en', 1, 'https://ror.org/027xmwe42 General Hospital of Drama'), (36928, 'https://ror.org/027xvbw13', 'en', 1, 'https://ror.org/027xvbw13 Orthopaedic Hospital Valdoltra'), (36929, 'https://ror.org/027y59j70', 'en', 1, 'https://ror.org/027y59j70 Mariakani Cottage Hospital'), (36930, 'https://ror.org/027z9zj80', 'no_lang_code', 1, 'https://ror.org/027z9zj80 Numerola (Finland)'), (36931, 'https://ror.org/027zxhv97', 'no_lang_code', 1, 'https://ror.org/027zxhv97 Research Management (Norway)'), (36932, 'https://ror.org/028203t96', 'en', 1, 'https://ror.org/028203t96 Peace Harbor Hospital'), (36933, 'https://ror.org/028521m47', 'no_lang_code', 1, 'https://ror.org/028521m47 Balter Medical (Norway)'), (36934, 'https://ror.org/02869ee65', 'no_lang_code', 1, 'https://ror.org/02869ee65 FiReCo (Norway)'), (36935, 'https://ror.org/0289r4642', 'en', 1, 'https://ror.org/0289r4642 St. John''s Rehab Hospital'), (36936, 'https://ror.org/028a3zj94', 'no', 1, 'https://ror.org/028a3zj94 Solskjerming'), (36937, 'https://ror.org/028bcwc63', 'no_lang_code', 1, 'https://ror.org/028bcwc63 Fabriscale Technologies (Norway)'), (36938, 'https://ror.org/028dt6y58', 'no_lang_code', 1, 'https://ror.org/028dt6y58 Bergen Teknologioverføring (Norway)'), (36939, 'https://ror.org/028fs8s54', 'no_lang_code', 1, 'https://ror.org/028fs8s54 Radionor Communications (Norway)'), (36940, 'https://ror.org/028fzwe08', 'fr', 1, 'https://ror.org/028fzwe08 Laboratoire des Procédés en Milieux Granulaires Granulaires'), (36941, 'https://ror.org/028hxy872', 'pl', 1, 'https://ror.org/028hxy872 Centrum Medyczne Aurismed'), (36942, 'https://ror.org/028j9tc52', 'de', 1, 'https://ror.org/028j9tc52 Niedersächsisches Institut für frühkindliche Bildung und Entwicklung'), (36943, 'https://ror.org/028r81743', 'en', 1, 'https://ror.org/028r81743 Habitat for Humanity'), (36944, 'https://ror.org/028rs2d85', 'no_lang_code', 1, 'https://ror.org/028rs2d85 ReNorway (Norway)'), (36945, 'https://ror.org/028t3qn68', 'no_lang_code', 1, 'https://ror.org/028t3qn68 Meventus (Norway)'), (36946, 'https://ror.org/028wsx658', 'no_lang_code', 1, 'https://ror.org/028wsx658 Danaher (Norway)'), (36947, 'https://ror.org/028xyhs09', 'pt', 1, 'https://ror.org/028xyhs09 Processos - Soluções de Engenharia (Brazil)'), (36948, 'https://ror.org/028yd4c30', 'en', 1, 'https://ror.org/028yd4c30 Division of Civil, Mechanical & Manufacturing Innovation'), (36949, 'https://ror.org/028zzym80', 'no_lang_code', 1, 'https://ror.org/028zzym80 Morenot (Norway)'), (36950, 'https://ror.org/02903cd17', 'no_lang_code', 1, 'https://ror.org/02903cd17 Keysight Technologies (United States)'), (36951, 'https://ror.org/02921wt38', 'en', 1, 'https://ror.org/02921wt38 Grace Cottage Hospital'), (36952, 'https://ror.org/0293jje80', 'no_lang_code', 1, 'https://ror.org/0293jje80 Cetis (Slovenia)'), (36953, 'https://ror.org/02957ep02', 'no_lang_code', 1, 'https://ror.org/02957ep02 Pol-Nil (Poland)'), (36954, 'https://ror.org/0295npy46', 'no_lang_code', 1, 'https://ror.org/0295npy46 Zeracryl (Norway)'), (36955, 'https://ror.org/029amtg39', 'no_lang_code', 1, 'https://ror.org/029amtg39 Fermavi (Brazil)'), (36956, 'https://ror.org/029d98p07', 'en', 1, 'https://ror.org/029d98p07 Southampton Children''s Hospital'), (36957, 'https://ror.org/029m5wr77', 'en', 1, 'https://ror.org/029m5wr77 Grande International Hospital'), (36958, 'https://ror.org/029ndw944', 'no', 1, 'https://ror.org/029ndw944 Norsk Virkesmåling'), (36959, 'https://ror.org/029s65f92', 'en', 1, 'https://ror.org/029s65f92 Ministry of Communications Ministério das Comunicações'), (36960, 'https://ror.org/029w49918', 'no_lang_code', 1, 'https://ror.org/029w49918 Mengchao Hepatobiliary Hospital'), (36961, 'https://ror.org/02a0q1e43', 'en', 1, 'https://ror.org/02a0q1e43 Norwegian Universities and Colleges Admission Service'), (36962, 'https://ror.org/02a1wev37', 'no_lang_code', 1, 'https://ror.org/02a1wev37 E Plug (Norway)'), (36963, 'https://ror.org/02a242w84', 'no_lang_code', 1, 'https://ror.org/02a242w84 Savo (Norway)'), (36964, 'https://ror.org/02a2hb496', 'en', 1, 'https://ror.org/02a2hb496 Nazareth Hospital EMMS مستشفى الناصرة ا.م.م.س'), (36965, 'https://ror.org/02a3nmn42', 'pt', 1, 'https://ror.org/02a3nmn42 Fundação Educacional D. André Arcoverde'), (36966, 'https://ror.org/02a3v6h38', 'no_lang_code', 1, 'https://ror.org/02a3v6h38 Electrical Subsea and Drilling (Norway)'), (36967, 'https://ror.org/02a65dj82', 'en', 1, 'https://ror.org/02a65dj82 SBE Office of Multidisciplinary Activities'); INSERT INTO `rors` VALUES (36968, 'https://ror.org/02a9cbd93', 'no_lang_code', 1, 'https://ror.org/02a9cbd93 Novo Mel (Brazil)'), (36969, 'https://ror.org/02acpt629', 'en', 1, 'https://ror.org/02acpt629 Aeris Futuro Foundation'), (36970, 'https://ror.org/02ad2pb06', 'en', 1, 'https://ror.org/02ad2pb06 International American University'), (36971, 'https://ror.org/02ad32n85', 'de', 1, 'https://ror.org/02ad32n85 Klassik Stiftung Weimar'), (36972, 'https://ror.org/02afrq658', 'no_lang_code', 1, 'https://ror.org/02afrq658 Polarkonsult (Norway)'), (36973, 'https://ror.org/02agh6277', 'no_lang_code', 1, 'https://ror.org/02agh6277 CO2-Norway (Norway)'), (36974, 'https://ror.org/02agpjg13', 'en', 1, 'https://ror.org/02agpjg13 Matany Hospital'), (36975, 'https://ror.org/02agrc313', 'en', 1, 'https://ror.org/02agrc313 Rebecca Sealy Hospital'), (36976, 'https://ror.org/02ahy9q02', 'no_lang_code', 1, 'https://ror.org/02ahy9q02 Iskra Zaščite (Slovenia)'), (36977, 'https://ror.org/02akjg578', 'en', 1, 'https://ror.org/02akjg578 Mackinnon Memorial Hospital'), (36978, 'https://ror.org/02an0gw26', 'en', 1, 'https://ror.org/02an0gw26 Cumberland County College'), (36979, 'https://ror.org/02ans6w40', 'en', 1, 'https://ror.org/02ans6w40 Network Learning Lab'), (36980, 'https://ror.org/02apz9z86', 'no_lang_code', 1, 'https://ror.org/02apz9z86 Wojas (Poland)'), (36981, 'https://ror.org/02aqc1f57', 'no', 1, 'https://ror.org/02aqc1f57 3T Helse (Norway)'), (36982, 'https://ror.org/02ar02c28', 'en', 1, 'https://ror.org/02ar02c28 Wuxi Fourth People''s Hospital'), (36983, 'https://ror.org/02ar2nf05', 'en', 1, 'https://ror.org/02ar2nf05 Shandong Provincial Hospital 山东省立医院'), (36984, 'https://ror.org/02attg727', 'no_lang_code', 1, 'https://ror.org/02attg727 Bayer (Norway)'), (36985, 'https://ror.org/02ax94a12', 'en', 1, 'https://ror.org/02ax94a12 Addis Continental Institute of Public Health'), (36986, 'https://ror.org/02axhzn68', 'en', 1, 'https://ror.org/02axhzn68 Naggalama Hospital'), (36987, 'https://ror.org/02axqg987', 'en', 1, 'https://ror.org/02axqg987 Angelina College'), (36988, 'https://ror.org/02ay6xb89', 'en', 1, 'https://ror.org/02ay6xb89 Norwegian Kennel Club'), (36989, 'https://ror.org/02ayrn205', 'no_lang_code', 1, 'https://ror.org/02ayrn205 Waddan Systems (United States)'), (36990, 'https://ror.org/02az15671', 'en', 1, 'https://ror.org/02az15671 Kilgore College'), (36991, 'https://ror.org/02az81309', 'no_lang_code', 1, 'https://ror.org/02az81309 Konjekt (Norway)'), (36992, 'https://ror.org/02b3z7h52', 'en', 1, 'https://ror.org/02b3z7h52 International Association for Comparative Research on Leukemia and Related Diseases'), (36993, 'https://ror.org/02b3zmq47', 'en', 1, 'https://ror.org/02b3zmq47 Norwegian Center of Expertise'), (36994, 'https://ror.org/02b7hq178', 'no_lang_code', 1, 'https://ror.org/02b7hq178 Breeze (Norway)'), (36995, 'https://ror.org/02b8bdw43', 'de', 1, 'https://ror.org/02b8bdw43 Praxisklinik für Orthopädie, Unfall- und Neurochirurgie'), (36996, 'https://ror.org/02bc2r066', 'no_lang_code', 1, 'https://ror.org/02bc2r066 Alfsen og Gunderson (Norway)'), (36997, 'https://ror.org/02bc4vm73', 'no_lang_code', 1, 'https://ror.org/02bc4vm73 Sonitor Technologies (Norway)'), (36998, 'https://ror.org/02bd3qj97', 'en', 1, 'https://ror.org/02bd3qj97 Kensington College of Business'), (36999, 'https://ror.org/02bdht408', 'no_lang_code', 1, 'https://ror.org/02bdht408 Thema (Brazil)'), (37000, 'https://ror.org/02bfb2d67', 'en', 1, 'https://ror.org/02bfb2d67 Martha''s Vineyard Hospital'), (37001, 'https://ror.org/02bg43d92', 'en', 1, 'https://ror.org/02bg43d92 P.Z. Meyer Hospital'), (37002, 'https://ror.org/02bga3905', 'no_lang_code', 1, 'https://ror.org/02bga3905 Rofi (Norway)'), (37003, 'https://ror.org/02bjjst49', 'en', 1, 'https://ror.org/02bjjst49 Bergen Science Center'), (37004, 'https://ror.org/02bme6n25', 'en', 1, 'https://ror.org/02bme6n25 Association of Independent Colleges and Universities in Massachusetts'), (37005, 'https://ror.org/02bnct292', 'en', 1, 'https://ror.org/02bnct292 South Bruce Grey Health Centre'), (37006, 'https://ror.org/02bnr5073', 'en', 1, 'https://ror.org/02bnr5073 Stomatological Hospital of Chongqing Medical University'), (37007, 'https://ror.org/02bp8ne74', 'no_lang_code', 1, 'https://ror.org/02bp8ne74 Orochem Technologies (United States)'), (37008, 'https://ror.org/02br7py06', 'en', 1, 'https://ror.org/02br7py06 Shanghai Advanced Research Institute 上海高等研究院'), (37009, 'https://ror.org/02bs89v88', 'no_lang_code', 1, 'https://ror.org/02bs89v88 Geograf (Norway)'), (37010, 'https://ror.org/02bsc8781', 'no_lang_code', 1, 'https://ror.org/02bsc8781 Gezhouba Explosive (China)'), (37011, 'https://ror.org/02bsh9z73', 'en', 1, 'https://ror.org/02bsh9z73 Curt Engelhorn Centre Archaeometry Curt-Engelhorn-Zentrum Archäometrie'), (37012, 'https://ror.org/02bt3yy91', 'en', 1, 'https://ror.org/02bt3yy91 Miami Valley Hospital South'), (37013, 'https://ror.org/02bte5314', 'no_lang_code', 1, 'https://ror.org/02bte5314 Maritim Food (Norway)'), (37014, 'https://ror.org/02bvyfx27', 'no_lang_code', 1, 'https://ror.org/02bvyfx27 Techfilter (Brazil)'), (37015, 'https://ror.org/02bxe3959', 'en', 1, 'https://ror.org/02bxe3959 Changchun Obstetrics and Gynecology Hospital'), (37016, 'https://ror.org/02c00pn47', 'en', 1, 'https://ror.org/02c00pn47 Durango Institute of Technology Instituto Tecnológico de Durango'), (37017, 'https://ror.org/02c1qc696', 'ms', 1, 'https://ror.org/02c1qc696 Hospital Seberang Jaya'), (37018, 'https://ror.org/02c1wa369', 'no_lang_code', 1, 'https://ror.org/02c1wa369 Interwell (Norway)'), (37019, 'https://ror.org/02c28a074', 'de', 1, 'https://ror.org/02c28a074 Kantonsspital Münsterlingen'), (37020, 'https://ror.org/02c2cgf66', 'no_lang_code', 1, 'https://ror.org/02c2cgf66 Engemap (Brazil)'), (37021, 'https://ror.org/02c3nsj20', 'tr', 1, 'https://ror.org/02c3nsj20 Beytepe Asker Hastanesi'), (37022, 'https://ror.org/02c3phe56', 'en', 1, 'https://ror.org/02c3phe56 Witold Stefański Institute of Parasitology Witolda Stefańskiego Instytut Parazytologii PAN'), (37023, 'https://ror.org/02c46jq57', 'en', 1, 'https://ror.org/02c46jq57 Städel Museum Städelsches Kunstinstitut und Städtische Galerie'), (37024, 'https://ror.org/02c4ez492', 'no_lang_code', 1, 'https://ror.org/02c4ez492 Hershey (United States)'), (37025, 'https://ror.org/02c52d726', 'no_lang_code', 1, 'https://ror.org/02c52d726 Netvmi (Brazil)'), (37026, 'https://ror.org/02c5dz126', 'en', 1, 'https://ror.org/02c5dz126 University B.T. & Evening College'), (37027, 'https://ror.org/02ca6sz73', 'no_lang_code', 1, 'https://ror.org/02ca6sz73 BNW-Energy (Norway)'), (37028, 'https://ror.org/02cbfxf79', 'en', 1, 'https://ror.org/02cbfxf79 St Patrick''s Hospital'), (37029, 'https://ror.org/02cdemf49', 'en', 1, 'https://ror.org/02cdemf49 European Liaison Office of the German Research Organisations Kooperationsstelle EU der Wissenschaftsorganisationen'), (37030, 'https://ror.org/02ceer540', 'no_lang_code', 1, 'https://ror.org/02ceer540 SalMar (Norway)'), (37031, 'https://ror.org/02cfg8q88', 'en', 1, 'https://ror.org/02cfg8q88 Council of Christian Hospitals'), (37032, 'https://ror.org/02cghc635', 'no_lang_code', 1, 'https://ror.org/02cghc635 Buchang Pharma (China)'), (37033, 'https://ror.org/02cjc1z91', 'no_lang_code', 1, 'https://ror.org/02cjc1z91 Humanwell Healthcare Group (China)'), (37034, 'https://ror.org/02ck8dx35', 'no_lang_code', 1, 'https://ror.org/02ck8dx35 Al-Salam Hospital Hopital de la Paix'), (37035, 'https://ror.org/02ckz2f26', 'en', 1, 'https://ror.org/02ckz2f26 Kansas City Kansas Community College'), (37036, 'https://ror.org/02cnnsp10', 'en', 1, 'https://ror.org/02cnnsp10 Forest Science and Research Institute Instituto de Pesquisas e Estudos Florestais'), (37037, 'https://ror.org/02cpyxc95', 'no_lang_code', 1, 'https://ror.org/02cpyxc95 NutraQ (Norway)'), (37038, 'https://ror.org/02cqb6d97', 'no_lang_code', 1, 'https://ror.org/02cqb6d97 Zakład Automatyki Przemysłowej (Poland)'), (37039, 'https://ror.org/02crxt883', 'no_lang_code', 1, 'https://ror.org/02crxt883 Intravision Group (Norway)'), (37040, 'https://ror.org/02czw4g92', 'en', 1, 'https://ror.org/02czw4g92 New Leaf Venture Partners'), (37041, 'https://ror.org/02d0cnn24', 'en', 1, 'https://ror.org/02d0cnn24 Agriculture Fisheries and Conservation Department, Agriculture, Fisheries and Conservation Department 漁農自然護理署'), (37042, 'https://ror.org/02d0m4q63', 'no_lang_code', 1, 'https://ror.org/02d0m4q63 Nokia (Norway)'), (37043, 'https://ror.org/02d0sw995', 'no_lang_code', 1, 'https://ror.org/02d0sw995 Mlinotest (Slovenia)'), (37044, 'https://ror.org/02d3hy418', 'en', 1, 'https://ror.org/02d3hy418 Institute of Applied Economic Research Instituto de Pesquisa Econômica Aplicada'), (37045, 'https://ror.org/02d3w1b29', 'no_lang_code', 1, 'https://ror.org/02d3w1b29 Capgemini (Norway)'), (37046, 'https://ror.org/02d4aa907', 'no', 1, 'https://ror.org/02d4aa907 Norsk Arkeologisk Selskap'), (37047, 'https://ror.org/02d50z080', 'no_lang_code', 1, 'https://ror.org/02d50z080 Compello (Norway)'), (37048, 'https://ror.org/02d5qsh80', 'no_lang_code', 1, 'https://ror.org/02d5qsh80 Scheme Lab (Brazil)'), (37049, 'https://ror.org/02d66ss51', 'no_lang_code', 1, 'https://ror.org/02d66ss51 Accert (Brazil)'), (37050, 'https://ror.org/02d6w7230', 'en', 1, 'https://ror.org/02d6w7230 Kolej Universiti TATI TATI University College'), (37051, 'https://ror.org/02d7jm947', 'no_lang_code', 1, 'https://ror.org/02d7jm947 Mundal Gruppen (Norway)'), (37052, 'https://ror.org/02d9k8j51', 'en', 1, 'https://ror.org/02d9k8j51 Employees'' State Insurance Model Hospital'), (37053, 'https://ror.org/02db4tt61', 'no_lang_code', 1, 'https://ror.org/02db4tt61 Bergenshalvøens Kommunale Kraftselskap (Norway)'), (37054, 'https://ror.org/02dc6j928', 'en', 1, 'https://ror.org/02dc6j928 Torrance State Hospital'), (37055, 'https://ror.org/02ddbzq19', 'no_lang_code', 1, 'https://ror.org/02ddbzq19 Subsea Smart Solutions (Norway)'), (37056, 'https://ror.org/02ddq0w66', 'pt', 1, 'https://ror.org/02ddq0w66 Fundação Cesgranrio'), (37057, 'https://ror.org/02deds976', 'no_lang_code', 1, 'https://ror.org/02deds976 Medsonic (Cyprus)'), (37058, 'https://ror.org/02dhjed84', 'en', 1, 'https://ror.org/02dhjed84 Ospidéal Ginearálta Thiobraid Árann Theas South Tipperary General Hospital'), (37059, 'https://ror.org/02djg1003', 'no_lang_code', 1, 'https://ror.org/02djg1003 Trolltind (Norway)'), (37060, 'https://ror.org/02dm0bq25', 'fr', 1, 'https://ror.org/02dm0bq25 Institut de Transplantation Urologie en Nephrologie'), (37061, 'https://ror.org/02dm2w078', 'no_lang_code', 1, 'https://ror.org/02dm2w078 Brvant (Brazil)'), (37062, 'https://ror.org/02dmket45', 'no', 1, 'https://ror.org/02dmket45 Transparency International Norge'), (37063, 'https://ror.org/02dngnr16', 'pt', 1, 'https://ror.org/02dngnr16 Hospital Amaral Carvalho'), (37064, 'https://ror.org/02dnm2t22', 'en', 1, 'https://ror.org/02dnm2t22 Berkeley City College'), (37065, 'https://ror.org/02drpw934', 'no_lang_code', 1, 'https://ror.org/02drpw934 Ciech (Poland)'), (37066, 'https://ror.org/02dtaqx81', 'en', 1, 'https://ror.org/02dtaqx81 Nova Scotia Hospital'), (37067, 'https://ror.org/02dv3wb67', 'de', 1, 'https://ror.org/02dv3wb67 Kommission für Geschichte des Parlamentarismus und der politischen Parteien'), (37068, 'https://ror.org/02dv83r66', 'no_lang_code', 1, 'https://ror.org/02dv83r66 AgriOS (Brazil)'), (37069, 'https://ror.org/02dv98466', 'en', 1, 'https://ror.org/02dv98466 Georgetown Hospital'), (37070, 'https://ror.org/02dvf9b44', 'en', 1, 'https://ror.org/02dvf9b44 Heidelberg Academy of Sciences and Humanities Heidelberger Akademie der Wissenschaften'), (37071, 'https://ror.org/02dvkbx23', 'no_lang_code', 1, 'https://ror.org/02dvkbx23 Syskon (Poland)'), (37072, 'https://ror.org/02dw30c90', 'en', 1, 'https://ror.org/02dw30c90 Barstow Community Hospital'), (37073, 'https://ror.org/02dwtw793', 'en', 1, 'https://ror.org/02dwtw793 Bryce Hospital'), (37074, 'https://ror.org/02dwwjd32', 'no_lang_code', 1, 'https://ror.org/02dwwjd32 Norwegian Biochemical (Norway)'), (37075, 'https://ror.org/02dxe8s77', 'en', 1, 'https://ror.org/02dxe8s77 National Hospital'), (37076, 'https://ror.org/02dyzf078', 'en', 1, 'https://ror.org/02dyzf078 Central Baptist College'), (37077, 'https://ror.org/02dz2hb46', 'en', 1, 'https://ror.org/02dz2hb46 Division of Social and Economic Sciences'), (37078, 'https://ror.org/02e07gw14', 'no_lang_code', 1, 'https://ror.org/02e07gw14 Wilh. Wilhelmsen (Norway)'), (37079, 'https://ror.org/02e29gr04', 'no_lang_code', 1, 'https://ror.org/02e29gr04 Planktonic (Norway)'), (37080, 'https://ror.org/02e2px796', 'no_lang_code', 1, 'https://ror.org/02e2px796 Höegh LNG (Norway)'), (37081, 'https://ror.org/02e3ta377', 'no_lang_code', 1, 'https://ror.org/02e3ta377 Kjeldstad (Norway)'), (37082, 'https://ror.org/02e5r8n65', 'de', 1, 'https://ror.org/02e5r8n65 Sankt-Antonius-Hospital Eschweiler'), (37083, 'https://ror.org/02e5y0e76', 'no', 1, 'https://ror.org/02e5y0e76 Valdres Folkemuseum'), (37084, 'https://ror.org/02e66s593', 'no_lang_code', 1, 'https://ror.org/02e66s593 2K Tools (Norway)'), (37085, 'https://ror.org/02e6g6a88', 'no_lang_code', 1, 'https://ror.org/02e6g6a88 Laerdal (Norway)'), (37086, 'https://ror.org/02e81hv64', 'no_lang_code', 1, 'https://ror.org/02e81hv64 Umrao Hospital'), (37087, 'https://ror.org/02e8wzn87', 'en', 1, 'https://ror.org/02e8wzn87 Naomi House and Jacksplace'), (37088, 'https://ror.org/02e8y7481', 'en', 1, 'https://ror.org/02e8y7481 Nansen Neuroscience Network'), (37089, 'https://ror.org/02eb4t121', 'en', 1, 'https://ror.org/02eb4t121 Purple Mountain Observatory 中国科学院紫金山天文台'), (37090, 'https://ror.org/02ebhah82', 'no_lang_code', 1, 'https://ror.org/02ebhah82 Eyasys (Norway)'), (37091, 'https://ror.org/02eees117', 'no_lang_code', 1, 'https://ror.org/02eees117 ProduksjonsTeknologi (Norway)'), (37092, 'https://ror.org/02eefwm92', 'no_lang_code', 1, 'https://ror.org/02eefwm92 Norwegian State Railways (Norway)'), (37093, 'https://ror.org/02ejbzv65', 'no_lang_code', 1, 'https://ror.org/02ejbzv65 St. Raphael''s Hospital'), (37094, 'https://ror.org/02ekw8p73', 'no', 1, 'https://ror.org/02ekw8p73 Teknova'), (37095, 'https://ror.org/02epdjj68', 'es', 1, 'https://ror.org/02epdjj68 Hospital Civil de Guadalajara'), (37096, 'https://ror.org/02eqa6h17', 'no_lang_code', 1, 'https://ror.org/02eqa6h17 Industrial Control Design (Norway)'), (37097, 'https://ror.org/02eqnr535', 'no_lang_code', 1, 'https://ror.org/02eqnr535 BioLab Innovative Research Technologies (Poland)'), (37098, 'https://ror.org/02er3bg49', 'pt', 1, 'https://ror.org/02er3bg49 Centro Universitário Eurípedes de Marilia, Centro Universitário Eurípedes de Marília'), (37099, 'https://ror.org/02espa273', 'no_lang_code', 1, 'https://ror.org/02espa273 Euromedik'), (37100, 'https://ror.org/02etfr602', 'en', 1, 'https://ror.org/02etfr602 Our Lady of Fatima Hospital'), (37101, 'https://ror.org/02ev4fa71', 'no_lang_code', 1, 'https://ror.org/02ev4fa71 AGR Group (Norway)'), (37102, 'https://ror.org/02evq8q51', 'en', 1, 'https://ror.org/02evq8q51 Ganta United Methodist Hospital'), (37103, 'https://ror.org/02ez0zm48', 'en', 1, 'https://ror.org/02ez0zm48 Taixing People''s Hospital'), (37104, 'https://ror.org/02ez7hy34', 'no_lang_code', 1, 'https://ror.org/02ez7hy34 Cubility (Norway)'), (37105, 'https://ror.org/02ezmc341', 'pt', 1, 'https://ror.org/02ezmc341 Forum Brasileiro de Segurança Pública'), (37106, 'https://ror.org/02f2p8175', 'en', 1, 'https://ror.org/02f2p8175 Front Range Community College'), (37107, 'https://ror.org/02f3rn888', 'es', 1, 'https://ror.org/02f3rn888 Hospital Regional Rancagua'), (37108, 'https://ror.org/02f42pw58', 'no_lang_code', 1, 'https://ror.org/02f42pw58 Yunnan Observatories 云南天文台'), (37109, 'https://ror.org/02f5aec20', 'de', 1, 'https://ror.org/02f5aec20 Hegau-Bodensee-Klinikum Singen'), (37110, 'https://ror.org/02f6hdc06', 'en', 1, 'https://ror.org/02f6hdc06 King Abdullah University Hospital مستشفى الملك المؤسس عبد الله الجامعي'), (37111, 'https://ror.org/02f8b2d05', 'no_lang_code', 1, 'https://ror.org/02f8b2d05 Bama Gruppen (Norway)'), (37112, 'https://ror.org/02fa7s823', 'no_lang_code', 1, 'https://ror.org/02fa7s823 Fujian Tobacco Industry Limited Liability Company (China)'), (37113, 'https://ror.org/02fad4q52', 'en', 1, 'https://ror.org/02fad4q52 Appalachian Bible College'), (37114, 'https://ror.org/02fb28f73', 'no_lang_code', 1, 'https://ror.org/02fb28f73 Micropply (United Kingdom)'), (37115, 'https://ror.org/02fbyyv82', 'es', 1, 'https://ror.org/02fbyyv82 Hospital Vilardebó'), (37116, 'https://ror.org/02fd97s83', 'no', 1, 'https://ror.org/02fd97s83 Trøndelags Europakontor'), (37117, 'https://ror.org/02fe8jz98', 'no_lang_code', 1, 'https://ror.org/02fe8jz98 Ultrahaptics (United Kingdom)'), (37118, 'https://ror.org/02fhv9758', 'en', 1, 'https://ror.org/02fhv9758 Antara'), (37119, 'https://ror.org/02fkrbc57', 'no_lang_code', 1, 'https://ror.org/02fkrbc57 Kawamura Hospital'), (37120, 'https://ror.org/02fm22986', 'pt', 1, 'https://ror.org/02fm22986 Instituto Sócioambiental'), (37121, 'https://ror.org/02fmy3k80', 'no_lang_code', 1, 'https://ror.org/02fmy3k80 Kubara Lamina (Poland)'), (37122, 'https://ror.org/02fn3t029', 'sl', 1, 'https://ror.org/02fn3t029 Sicenter (Slovenia)'), (37123, 'https://ror.org/02fqn3k51', 'en', 1, 'https://ror.org/02fqn3k51 Academy of Arts Die Akademie der Künste'), (37124, 'https://ror.org/02fqwth13', 'no_lang_code', 1, 'https://ror.org/02fqwth13 Ocean Visuals (Norway)'), (37125, 'https://ror.org/02fv99722', 'de', 1, 'https://ror.org/02fv99722 Germanisches Nationalmuseum'), (37126, 'https://ror.org/02fvak958', 'no_lang_code', 1, 'https://ror.org/02fvak958 Olympia Diagnostics (United States)'), (37127, 'https://ror.org/02fxjt553', 'en', 1, 'https://ror.org/02fxjt553 John Sealy Hospital'), (37128, 'https://ror.org/02fyaen82', 'pt', 1, 'https://ror.org/02fyaen82 Sociedade Brasileira de Vácuo'), (37129, 'https://ror.org/02g0pj253', 'en', 1, 'https://ror.org/02g0pj253 Centegra Hospital McHenry'), (37130, 'https://ror.org/02g38qb36', 'no_lang_code', 1, 'https://ror.org/02g38qb36 VARD (Norway)'), (37131, 'https://ror.org/02g4abr06', 'en', 1, 'https://ror.org/02g4abr06 Broughton Hospital'), (37132, 'https://ror.org/02g83kd39', 'en', 1, 'https://ror.org/02g83kd39 Penticton Regional Hospital'), (37133, 'https://ror.org/02g9xm383', 'no_lang_code', 1, 'https://ror.org/02g9xm383 Abilia (Norway)'), (37134, 'https://ror.org/02gaz5v17', 'pt', 1, 'https://ror.org/02gaz5v17 Toledo Prudente Centro Universitário'), (37135, 'https://ror.org/02gb6yk96', 'en', 1, 'https://ror.org/02gb6yk96 Gracie Square Hospital'), (37136, 'https://ror.org/02gcgk516', 'pt', 1, 'https://ror.org/02gcgk516 Associação Brasileira de Análise Térmica e Calorimetria'), (37137, 'https://ror.org/02gdmcq40', 'no_lang_code', 1, 'https://ror.org/02gdmcq40 Norwegian Group (Norway)'), (37138, 'https://ror.org/02gg7et70', 'no_lang_code', 1, 'https://ror.org/02gg7et70 Unior (Slovenia)'), (37139, 'https://ror.org/02ggbdh30', 'fr', 1, 'https://ror.org/02ggbdh30 Cégep Marie-Victorin'), (37140, 'https://ror.org/02ggf1973', 'en', 1, 'https://ror.org/02ggf1973 Yemeni Jordanian University'), (37141, 'https://ror.org/02ggsxt79', 'en', 1, 'https://ror.org/02ggsxt79 Beijing Health Vocational College'), (37142, 'https://ror.org/02ghdr016', 'no', 1, 'https://ror.org/02ghdr016 Nasjonalmuseet National Museum of Art, Architecture and Design'), (37143, 'https://ror.org/02gma2x70', 'no_lang_code', 1, 'https://ror.org/02gma2x70 Connect LNG (Norway)'), (37144, 'https://ror.org/02gmdvw97', 'en', 1, 'https://ror.org/02gmdvw97 Slovenian Institute of Quality and Metrology'), (37145, 'https://ror.org/02grxeb87', 'no', 1, 'https://ror.org/02grxeb87 Grid-Arendal'), (37146, 'https://ror.org/02gt91x70', 'en', 1, 'https://ror.org/02gt91x70 Calvary Wakefield Hospital'), (37147, 'https://ror.org/02gvqxg57', 'no_lang_code', 1, 'https://ror.org/02gvqxg57 Cinkarna (Slovenia)'), (37148, 'https://ror.org/02gxbm014', 'no_lang_code', 1, 'https://ror.org/02gxbm014 FEM Engineering (Norway)'), (37149, 'https://ror.org/02gxndb03', 'en', 1, 'https://ror.org/02gxndb03 National Archives Services of Norway'), (37150, 'https://ror.org/02h1qnm70', 'en', 1, 'https://ror.org/02h1qnm70 Alexander von Humboldt Institut für Internet und Gesellschaft Alexander von Humboldt Institute for Internet and Society'), (37151, 'https://ror.org/02h25ds10', 'no_lang_code', 1, 'https://ror.org/02h25ds10 IGEA (Slovenia)'), (37152, 'https://ror.org/02h2ywm64', 'en', 1, 'https://ror.org/02h2ywm64 The First People''s Hospital of Changde'), (37153, 'https://ror.org/02h3c2z65', 'no_lang_code', 1, 'https://ror.org/02h3c2z65 Xeme Biopharma (United States)'), (37154, 'https://ror.org/02h4pw461', 'nl', 1, 'https://ror.org/02h4pw461 Accare'), (37155, 'https://ror.org/02h59q288', 'en', 1, 'https://ror.org/02h59q288 Lillehammer Municipality'), (37156, 'https://ror.org/02h5h0a06', 'en', 1, 'https://ror.org/02h5h0a06 College of Applied Sciences- Ibri'), (37157, 'https://ror.org/02h67ht97', 'tr', 1, 'https://ror.org/02h67ht97 Sakarya Eğitim ve Araştırma Hastanesi Sakarya Training and Research Hospital'), (37158, 'https://ror.org/02h866337', 'no_lang_code', 1, 'https://ror.org/02h866337 BioBee (Israel)'), (37159, 'https://ror.org/02h8v7m77', 'en', 1, 'https://ror.org/02h8v7m77 Center for Selective C–H Functionalization'), (37160, 'https://ror.org/02h988s91', 'de', 1, 'https://ror.org/02h988s91 Ingenieure für das Bauwesen'), (37161, 'https://ror.org/02h9b8h17', 'en', 1, 'https://ror.org/02h9b8h17 Chesterfield Royal Hospital NHS Foundation Trust'), (37162, 'https://ror.org/02h9qaw79', 'en', 1, 'https://ror.org/02h9qaw79 AnMed Health Women''s & Children''s Hospital'), (37163, 'https://ror.org/02hb0te91', 'no_lang_code', 1, 'https://ror.org/02hb0te91 Cambi (Norway)'), (37164, 'https://ror.org/02hbbce41', 'no_lang_code', 1, 'https://ror.org/02hbbce41 Metrel (Slovenia)'), (37165, 'https://ror.org/02hbww352', 'no_lang_code', 1, 'https://ror.org/02hbww352 Porolon (Norway)'), (37166, 'https://ror.org/02he3sm39', 'no_lang_code', 1, 'https://ror.org/02he3sm39 Robotic Drilling Systems (Norway)'), (37167, 'https://ror.org/02hfm7873', 'de', 1, 'https://ror.org/02hfm7873 Focke Museum'), (37168, 'https://ror.org/02hfya711', 'no_lang_code', 1, 'https://ror.org/02hfya711 Tosama (Slovenia)'), (37169, 'https://ror.org/02hhjhn88', 'en', 1, 'https://ror.org/02hhjhn88 B.J. Vorster Hospital'), (37170, 'https://ror.org/02hkfs074', 'en', 1, 'https://ror.org/02hkfs074 Helderberg College'), (37171, 'https://ror.org/02hm5wz09', 'en', 1, 'https://ror.org/02hm5wz09 Centracare'), (37172, 'https://ror.org/02ht58c79', 'no', 1, 'https://ror.org/02ht58c79 Glåmdal Regionråd'), (37173, 'https://ror.org/02hw4sy21', 'no_lang_code', 1, 'https://ror.org/02hw4sy21 AudioPlus (Norway)'), (37174, 'https://ror.org/02hzjcs51', 'no_lang_code', 1, 'https://ror.org/02hzjcs51 Veritas Life Sciences (Brazil)'), (37175, 'https://ror.org/02hzxf772', 'no_lang_code', 1, 'https://ror.org/02hzxf772 Sitma (Norway)'), (37176, 'https://ror.org/02j08vc33', 'no_lang_code', 1, 'https://ror.org/02j08vc33 Labena (Slovenia)'), (37177, 'https://ror.org/02j0abw33', 'de', 1, 'https://ror.org/02j0abw33 Felix Platter Spital, Felix Platter-Hospital'), (37178, 'https://ror.org/02j0gyf89', 'en', 1, 'https://ror.org/02j0gyf89 Wuhan Botanical Garden 中国科学院武汉植物园'), (37179, 'https://ror.org/02j3f7p78', 'en', 1, 'https://ror.org/02j3f7p78 Ugie Hospital'), (37180, 'https://ror.org/02j40nc84', 'en', 1, 'https://ror.org/02j40nc84 Olean General Hospital'), (37181, 'https://ror.org/02j43z323', 'en', 1, 'https://ror.org/02j43z323 Institute of Security Technologies MORATEX'), (37182, 'https://ror.org/02j52w730', 'pt', 1, 'https://ror.org/02j52w730 Sociedade Brasileira de Microbiologia'), (37183, 'https://ror.org/02j6c6694', 'no_lang_code', 1, 'https://ror.org/02j6c6694 Cotec (Brazil)'), (37184, 'https://ror.org/02j8tr589', 'en', 1, 'https://ror.org/02j8tr589 Inha Technical College'), (37185, 'https://ror.org/02jadyf48', 'no_lang_code', 1, 'https://ror.org/02jadyf48 Mg Soft (Slovenia)'), (37186, 'https://ror.org/02jey0g96', 'en', 1, 'https://ror.org/02jey0g96 Bradford College, England'), (37187, 'https://ror.org/02jh1am07', 'en', 1, 'https://ror.org/02jh1am07 Utah Geological Survey'), (37188, 'https://ror.org/02jje0527', 'no_lang_code', 1, 'https://ror.org/02jje0527 Rotar (Brazil)'), (37189, 'https://ror.org/02jjgkb92', 'en', 1, 'https://ror.org/02jjgkb92 Telemark Research Institute'), (37190, 'https://ror.org/02jm9xx29', 'no_lang_code', 1, 'https://ror.org/02jm9xx29 Medecell (Brazil)'), (37191, 'https://ror.org/02jmyy013', 'fr', 1, 'https://ror.org/02jmyy013 Cégep du Vieux Montréal'), (37192, 'https://ror.org/02jnx6884', 'en', 1, 'https://ror.org/02jnx6884 Blackhawk Technical College'), (37193, 'https://ror.org/02jq6we42', 'no_lang_code', 1, 'https://ror.org/02jq6we42 Military Aviation Works No. 1 (Poland)'), (37194, 'https://ror.org/02jr64v33', 'no_lang_code', 1, 'https://ror.org/02jr64v33 Surface (Brazil)'), (37195, 'https://ror.org/02js51327', 'no_lang_code', 1, 'https://ror.org/02js51327 Akaer (Brazil)'), (37196, 'https://ror.org/02jt05p62', 'no', 1, 'https://ror.org/02jt05p62 Norges Sildesalgslag Norwegian Herring Sales Association'), (37197, 'https://ror.org/02jv8h741', 'ro', 1, 'https://ror.org/02jv8h741 Spitalul Clinic Dr. C. I. Parhon'), (37198, 'https://ror.org/02jv9pf54', 'no', 1, 'https://ror.org/02jv9pf54 Praktisk-Teologiske Seminar'), (37199, 'https://ror.org/02jxdjn74', 'en', 1, 'https://ror.org/02jxdjn74 Mayo Hospital'), (37200, 'https://ror.org/02jxznk77', 'en', 1, 'https://ror.org/02jxznk77 Joint Base San Antonio'), (37201, 'https://ror.org/02jy2nq64', 'en', 1, 'https://ror.org/02jy2nq64 Deutsches Institut für Kautschuktechnologie German Institute of Rubber Technology'), (37202, 'https://ror.org/02jywn868', 'en', 1, 'https://ror.org/02jywn868 Islamic Azad University of Farahan'), (37203, 'https://ror.org/02jzh4f23', 'no_lang_code', 1, 'https://ror.org/02jzh4f23 Innovatech Telecom (Brazil)'), (37204, 'https://ror.org/02k1hw394', 'en', 1, 'https://ror.org/02k1hw394 Directorate for Cultural Heritage Riksantikvaren'), (37205, 'https://ror.org/02k2nf272', 'no_lang_code', 1, 'https://ror.org/02k2nf272 Innova (Norway)'), (37206, 'https://ror.org/02k4een92', 'no_lang_code', 1, 'https://ror.org/02k4een92 Vaxxinova (Norway)'), (37207, 'https://ror.org/02k5vwz61', 'pt', 1, 'https://ror.org/02k5vwz61 Abutua Tecnologia'), (37208, 'https://ror.org/02k69yb86', 'no_lang_code', 1, 'https://ror.org/02k69yb86 Veplas (Slovenia)'), (37209, 'https://ror.org/02k9k5a61', 'de', 1, 'https://ror.org/02k9k5a61 Landesamt für Denkmalpflege Hessen'), (37210, 'https://ror.org/02kbptg74', 'no_lang_code', 1, 'https://ror.org/02kbptg74 DNA Consult Genética e Biotecnologia (Brazil)'), (37211, 'https://ror.org/02kcgy861', 'en', 1, 'https://ror.org/02kcgy861 Peninsula HealthCare Connection'), (37212, 'https://ror.org/02kdq5f02', 'no', 1, 'https://ror.org/02kdq5f02 Fredrikstad Kommune'), (37213, 'https://ror.org/02kdtt649', 'en', 1, 'https://ror.org/02kdtt649 Islamic University of Science and Technology'), (37214, 'https://ror.org/02kdw7y22', 'no_lang_code', 1, 'https://ror.org/02kdw7y22 Norwegian Electro Ceramics (Norway)'), (37215, 'https://ror.org/02ke3k930', 'en', 1, 'https://ror.org/02ke3k930 Presbyterian University and Theological Seminary'), (37216, 'https://ror.org/02kepmn21', 'no_lang_code', 1, 'https://ror.org/02kepmn21 Quimlab (Brazil)'), (37217, 'https://ror.org/02knacy77', 'no_lang_code', 1, 'https://ror.org/02knacy77 TV 2 (Norway)'), (37218, 'https://ror.org/02knph556', 'no_lang_code', 1, 'https://ror.org/02knph556 Plastal (Norway)'), (37219, 'https://ror.org/02kpq2a15', 'no_lang_code', 1, 'https://ror.org/02kpq2a15 Head Energy (Norway)'), (37220, 'https://ror.org/02kqmtt46', 'no_lang_code', 1, 'https://ror.org/02kqmtt46 siRNAsense (Norway)'), (37221, 'https://ror.org/02ks0br87', 'en', 1, 'https://ror.org/02ks0br87 Institute of Medical Technology and Equipment'), (37222, 'https://ror.org/02kv9xm28', 'de', 1, 'https://ror.org/02kv9xm28 Archaeological Heritage Office in Saxony Landesamt für Archäologie Sachsen'), (37223, 'https://ror.org/02kxhwm03', 'no_lang_code', 1, 'https://ror.org/02kxhwm03 Mjøsen Skog (Norway)'), (37224, 'https://ror.org/02kxqpx65', 'no_lang_code', 1, 'https://ror.org/02kxqpx65 Anteo (Norway)'), (37225, 'https://ror.org/02kz5ap91', 'no_lang_code', 1, 'https://ror.org/02kz5ap91 Ferrx (Norway)'), (37226, 'https://ror.org/02kzasj84', 'no_lang_code', 1, 'https://ror.org/02kzasj84 Fleximedical (Brazil)'), (37227, 'https://ror.org/02kzvnr24', 'en', 1, 'https://ror.org/02kzvnr24 Senate of Serampore College सीनेट अफ सेरामपोर कलेज (विश्वविद्यालय) সেনেট অফ শ্রীরামপুর কলেজ'), (37228, 'https://ror.org/02m4ddy14', 'en', 1, 'https://ror.org/02m4ddy14 Entomological Society of Brazil Sociedade Brasileira de Entomologia'), (37229, 'https://ror.org/02m7cm823', 'pt', 1, 'https://ror.org/02m7cm823 Sociedade Brasileira de Econometria'), (37230, 'https://ror.org/02m7msy24', 'en', 1, 'https://ror.org/02m7msy24 North China Institute of Aerospace Engineering'), (37231, 'https://ror.org/02m7v1314', 'no_lang_code', 1, 'https://ror.org/02m7v1314 DARS (Slovenia)'), (37232, 'https://ror.org/02m8hhb31', 'no_lang_code', 1, 'https://ror.org/02m8hhb31 Matsutani America (United States)'), (37233, 'https://ror.org/02mavc002', 'en', 1, 'https://ror.org/02mavc002 Max Planck Institute for Social Anthropology Max-Planck-Institut für Ethnologische Forschung'), (37234, 'https://ror.org/02me8mn40', 'no_lang_code', 1, 'https://ror.org/02me8mn40 Otivio (Norway)'), (37235, 'https://ror.org/02meh8z92', 'no', 1, 'https://ror.org/02meh8z92 Stavanger Kommune'), (37236, 'https://ror.org/02mfvb853', 'no_lang_code', 1, 'https://ror.org/02mfvb853 Miros (Norway)'), (37237, 'https://ror.org/02mgtjj52', 'en', 1, 'https://ror.org/02mgtjj52 Islamic Azad University of Parand دانشگاه آزاد اسلامی واحد پرند'), (37238, 'https://ror.org/02mm6ps96', 'no_lang_code', 1, 'https://ror.org/02mm6ps96 DeltaCO2 (Brazil)'), (37239, 'https://ror.org/02mp59d98', 'fr', 1, 'https://ror.org/02mp59d98 Centre Hospitalier de Gonesse'), (37240, 'https://ror.org/02mrs6s31', 'en', 1, 'https://ror.org/02mrs6s31 Maclear Hospital'), (37241, 'https://ror.org/02mskse42', 'no', 1, 'https://ror.org/02mskse42 Oslo Kommune'), (37242, 'https://ror.org/02mt99d54', 'no_lang_code', 1, 'https://ror.org/02mt99d54 Vigmostad & Bjørke (Norway)'), (37243, 'https://ror.org/02mtj1m22', 'en', 1, 'https://ror.org/02mtj1m22 Strathcona Community Hospital'), (37244, 'https://ror.org/02mvjj250', 'pt', 1, 'https://ror.org/02mvjj250 Fundação Apinco de Ciência e Tecnologia Avícolas'), (37245, 'https://ror.org/02mxhgm70', 'de', 1, 'https://ror.org/02mxhgm70 Stadtarchiv Worms'), (37246, 'https://ror.org/02mxywv89', 'en', 1, 'https://ror.org/02mxywv89 Highland Community College - Illinois'), (37247, 'https://ror.org/02myr0q32', 'en', 1, 'https://ror.org/02myr0q32 EUR-Oceans Consortium'), (37248, 'https://ror.org/02mz22k75', 'no', 1, 'https://ror.org/02mz22k75 Norsk Friluftsliv'), (37249, 'https://ror.org/02mzaws48', 'no_lang_code', 1, 'https://ror.org/02mzaws48 Resman (Norway)'), (37250, 'https://ror.org/02n1s9498', 'no_lang_code', 1, 'https://ror.org/02n1s9498 Co-action Publishing (Norway)'), (37251, 'https://ror.org/02n2tgb73', 'no', 1, 'https://ror.org/02n2tgb73 Bergen Kommune Byrådsavd for Helse og Omsorg'), (37252, 'https://ror.org/02nbj1d88', 'pt', 1, 'https://ror.org/02nbj1d88 Fórum de Entidades Nacionais da Psicologia Brasileira'), (37253, 'https://ror.org/02negn633', 'no_lang_code', 1, 'https://ror.org/02negn633 ICT Group (Norway)'), (37254, 'https://ror.org/02nejrd79', 'no_lang_code', 1, 'https://ror.org/02nejrd79 FlexEnable (United Kingdom)'), (37255, 'https://ror.org/02nh4wx40', 'en', 1, 'https://ror.org/02nh4wx40 Institute of Agricultural and Food Biotechnology'), (37256, 'https://ror.org/02nhdg694', 'no_lang_code', 1, 'https://ror.org/02nhdg694 Aeroalcool Tecnologia (Brazil)'), (37257, 'https://ror.org/02nhhj727', 'no_lang_code', 1, 'https://ror.org/02nhhj727 Wavefront (United States)'), (37258, 'https://ror.org/02nhz2g44', 'en', 1, 'https://ror.org/02nhz2g44 Social and Environmental Entrepreneurs'), (37259, 'https://ror.org/02nkd6y23', 'pl', 1, 'https://ror.org/02nkd6y23 Instytut Archeologii i Etnologii'), (37260, 'https://ror.org/02nmtb782', 'no', 1, 'https://ror.org/02nmtb782 Norsk Kjemisk Selskap Norwegian Chemical Society'), (37261, 'https://ror.org/02nnqja38', 'no_lang_code', 1, 'https://ror.org/02nnqja38 Yerwada Mental Hospital'), (37262, 'https://ror.org/02nqgwy66', 'en', 1, 'https://ror.org/02nqgwy66 Institut de la Statistique du Québec Quebec Statistical Institute'), (37263, 'https://ror.org/02nrcd067', 'it', 1, 'https://ror.org/02nrcd067 Ospedale di Latisana'), (37264, 'https://ror.org/02nssyt88', 'no_lang_code', 1, 'https://ror.org/02nssyt88 Norwegian Hull Club (Norway)'), (37265, 'https://ror.org/02ntagd75', 'en', 1, 'https://ror.org/02ntagd75 Great Lakes Christian College'), (37266, 'https://ror.org/02nvrva15', 'no_lang_code', 1, 'https://ror.org/02nvrva15 Reemsys (Norway)'), (37267, 'https://ror.org/02nw88150', 'pt', 1, 'https://ror.org/02nw88150 Academia Nacional de Cuidados Paliativos'), (37268, 'https://ror.org/02nwjvq32', 'no_lang_code', 1, 'https://ror.org/02nwjvq32 Lein Applied Diagnostics (United Kingdom)'), (37269, 'https://ror.org/02nwx5237', 'no_lang_code', 1, 'https://ror.org/02nwx5237 Health Biomed (China)'), (37270, 'https://ror.org/02ny12416', 'en', 1, 'https://ror.org/02ny12416 University College for Women'), (37271, 'https://ror.org/02nywzg97', 'no', 1, 'https://ror.org/02nywzg97 Tresenteret'), (37272, 'https://ror.org/02p1tbs51', 'no_lang_code', 1, 'https://ror.org/02p1tbs51 Trollhetta (Norway)'), (37273, 'https://ror.org/02p2c1595', 'en', 1, 'https://ror.org/02p2c1595 Islamia College University اسلامیہ کالج یونیورسٹی'), (37274, 'https://ror.org/02p2n1t29', 'no_lang_code', 1, 'https://ror.org/02p2n1t29 Fronter (Norway)'), (37275, 'https://ror.org/02p3z0a62', 'en', 1, 'https://ror.org/02p3z0a62 Mount Ayliff Hospital'), (37276, 'https://ror.org/02p4hh588', 'no_lang_code', 1, 'https://ror.org/02p4hh588 PatoGen (Norway)'), (37277, 'https://ror.org/02p57rg87', 'en', 1, 'https://ror.org/02p57rg87 Brazilian Society of Speech Sociedade Brasileira de Fonoaudiologia'), (37278, 'https://ror.org/02p68mp54', 'no_lang_code', 1, 'https://ror.org/02p68mp54 Voca (Norway)'), (37279, 'https://ror.org/02p8wff42', 'en', 1, 'https://ror.org/02p8wff42 Testing and Certification Laboratories'), (37280, 'https://ror.org/02p932s29', 'no_lang_code', 1, 'https://ror.org/02p932s29 IMPETUS Afea (Norway)'), (37281, 'https://ror.org/02pc96p08', 'no_lang_code', 1, 'https://ror.org/02pc96p08 E-CO Energi (Norway)'), (37282, 'https://ror.org/02pepyh86', 'en', 1, 'https://ror.org/02pepyh86 Preston University'), (37283, 'https://ror.org/02pewm513', 'pt', 1, 'https://ror.org/02pewm513 Instituto Paulista de Ensino e Pesquisa'), (37284, 'https://ror.org/02pfhds36', 'en', 1, 'https://ror.org/02pfhds36 Iloilo Mission Hospital'), (37285, 'https://ror.org/02pgs0t39', 'en', 1, 'https://ror.org/02pgs0t39 Hospital Santo Tomás Saint Thomas Hospital'), (37286, 'https://ror.org/02pj56a46', 'no_lang_code', 1, 'https://ror.org/02pj56a46 Pinus TKI (Slovenia)'), (37287, 'https://ror.org/02pkggd65', 'no_lang_code', 1, 'https://ror.org/02pkggd65 Innoventus Sør (Norway)'), (37288, 'https://ror.org/02pknm559', 'no', 1, 'https://ror.org/02pknm559 Skedsmo kommune'), (37289, 'https://ror.org/02pktej77', 'en', 1, 'https://ror.org/02pktej77 Kincardine Community Hospital'), (37290, 'https://ror.org/02pman068', 'no_lang_code', 1, 'https://ror.org/02pman068 Viris (Slovenia)'), (37291, 'https://ror.org/02pmesx16', 'no_lang_code', 1, 'https://ror.org/02pmesx16 Promar (Poland)'), (37292, 'https://ror.org/02prj1520', 'no_lang_code', 1, 'https://ror.org/02prj1520 TRUMPF (Poland)'), (37293, 'https://ror.org/02ps5zx04', 'en', 1, 'https://ror.org/02ps5zx04 Moroto Hospital'), (37294, 'https://ror.org/02pvadn84', 'de', 1, 'https://ror.org/02pvadn84 Geisteswissenschaftliche Zentren Berlin'), (37295, 'https://ror.org/02px7xz82', 'en', 1, 'https://ror.org/02px7xz82 Oslo Vest Rotary Klubb'), (37296, 'https://ror.org/02pxhh871', 'no_lang_code', 1, 'https://ror.org/02pxhh871 Petroleumsoft (Norway)'), (37297, 'https://ror.org/02pyb2233', 'es', 1, 'https://ror.org/02pyb2233 Hospital La Inmaculada'), (37298, 'https://ror.org/02pz5h498', 'no_lang_code', 1, 'https://ror.org/02pz5h498 Robotnorge (Norway)'), (37299, 'https://ror.org/02pzvty54', 'en', 1, 'https://ror.org/02pzvty54 Apollo KH Hospital'), (37300, 'https://ror.org/02q2b0g11', 'no_lang_code', 1, 'https://ror.org/02q2b0g11 Tafalofefe Hospital'), (37301, 'https://ror.org/02q2v1q18', 'no_lang_code', 1, 'https://ror.org/02q2v1q18 Alta (Poland)'), (37302, 'https://ror.org/02q350s40', 'no_lang_code', 1, 'https://ror.org/02q350s40 Brook Lyndhurst (United Kingdom)'), (37303, 'https://ror.org/02q3pem31', 'no_lang_code', 1, 'https://ror.org/02q3pem31 Yanhee Hospital โรงพยาบาลยันฮี'), (37304, 'https://ror.org/02q3q6m55', 'no', 1, 'https://ror.org/02q3q6m55 Norges Blindeforbund'), (37305, 'https://ror.org/02q5gf687', 'no', 1, 'https://ror.org/02q5gf687 Andøya Space Center'), (37306, 'https://ror.org/02q6tz689', 'no_lang_code', 1, 'https://ror.org/02q6tz689 Rimfrost (Norway)'), (37307, 'https://ror.org/02q764m16', 'no_lang_code', 1, 'https://ror.org/02q764m16 Baidya and Banskota Hospital'), (37308, 'https://ror.org/02q9r3565', 'fi', 1, 'https://ror.org/02q9r3565 Kainun Institutti'), (37309, 'https://ror.org/02qa92s63', 'en', 1, 'https://ror.org/02qa92s63 Breast Cancer Now'), (37310, 'https://ror.org/02qaq7m46', 'no_lang_code', 1, 'https://ror.org/02qaq7m46 Delitek (Norway)'), (37311, 'https://ror.org/02qg60849', 'no_lang_code', 1, 'https://ror.org/02qg60849 Engineering Systems (United States)'), (37312, 'https://ror.org/02qgf1459', 'no_lang_code', 1, 'https://ror.org/02qgf1459 Dora Nginza Hospital'), (37313, 'https://ror.org/02qhdd073', 'en', 1, 'https://ror.org/02qhdd073 Aizawl Adventist Hospital'), (37314, 'https://ror.org/02qhxnk51', 'no_lang_code', 1, 'https://ror.org/02qhxnk51 OneCo (Norway)'), (37315, 'https://ror.org/02qhzp658', 'en', 1, 'https://ror.org/02qhzp658 Hawaii Tokai International College'), (37316, 'https://ror.org/02qhzxt05', 'en', 1, 'https://ror.org/02qhzxt05 Norwegian Business and Industry Security Council'), (37317, 'https://ror.org/02qk18s08', 'en', 1, 'https://ror.org/02qk18s08 International Center for Tropical Agriculture'), (37318, 'https://ror.org/02qkr4e94', 'no_lang_code', 1, 'https://ror.org/02qkr4e94 Inspirator (Norway)'), (37319, 'https://ror.org/02qkrgf06', 'no_lang_code', 1, 'https://ror.org/02qkrgf06 Oxford Instruments (Germany)'), (37320, 'https://ror.org/02qna0m23', 'no_lang_code', 1, 'https://ror.org/02qna0m23 Buddy Electric (Norway)'), (37321, 'https://ror.org/02qnspa70', 'no_lang_code', 1, 'https://ror.org/02qnspa70 Abyssus Marine Services (Norway)'), (37322, 'https://ror.org/02qpb0e30', 'en', 1, 'https://ror.org/02qpb0e30 Kaunas County Public Library'), (37323, 'https://ror.org/02qpcpw42', 'en', 1, 'https://ror.org/02qpcpw42 Finnish Institute of International Affairs Ulkopoliittinen instituutti Utrikespolitiska institutet'), (37324, 'https://ror.org/02qqapf71', 'no_lang_code', 1, 'https://ror.org/02qqapf71 National Oilwell Varco (Norway)'), (37325, 'https://ror.org/02qqqms67', 'fr', 1, 'https://ror.org/02qqqms67 Bibliothèque Nationale du Royaume du Maroc'), (37326, 'https://ror.org/02qs38f38', 'en', 1, 'https://ror.org/02qs38f38 Finnish Youth Research Society'), (37327, 'https://ror.org/02qsgha90', 'en', 1, 'https://ror.org/02qsgha90 General Theological Seminary'), (37328, 'https://ror.org/02qvzqk75', 'pt', 1, 'https://ror.org/02qvzqk75 Associação Paulista para o Desenvolvimento da Medicina'), (37329, 'https://ror.org/02qw5pa02', 'en', 1, 'https://ror.org/02qw5pa02 St. Francis Hospital Nkokonjeru'), (37330, 'https://ror.org/02qz80268', 'no_lang_code', 1, 'https://ror.org/02qz80268 Norwegian Subsea (Norway)'), (37331, 'https://ror.org/02qzb7q11', 'no_lang_code', 1, 'https://ror.org/02qzb7q11 Sparx Group (Japan)'), (37332, 'https://ror.org/02qzqg182', 'en', 1, 'https://ror.org/02qzqg182 Centegra Hospital Woodstock'), (37333, 'https://ror.org/02r0eqd13', 'en', 1, 'https://ror.org/02r0eqd13 College of Medicine & Sagore Dutta Hospital'), (37334, 'https://ror.org/02r3v8c94', 'en', 1, 'https://ror.org/02r3v8c94 Housatonic Community College'), (37335, 'https://ror.org/02r44dv51', 'sl', 1, 'https://ror.org/02r44dv51 Ekoremediacijski Tehnološki Center'), (37336, 'https://ror.org/02r4rcw08', 'en', 1, 'https://ror.org/02r4rcw08 European Research Group on Environment and Health in the Transport Sector Europäische Forschungsvereinigung für Umwelt und Gesundheit im Transportsektor e.V.'), (37337, 'https://ror.org/02r5d5757', 'en', 1, 'https://ror.org/02r5d5757 Crisis Training'), (37338, 'https://ror.org/02r61ng07', 'en', 1, 'https://ror.org/02r61ng07 Energy Farm'), (37339, 'https://ror.org/02r7hq914', 'no_lang_code', 1, 'https://ror.org/02r7hq914 Fortum (Norway)'), (37340, 'https://ror.org/02r7w5t06', 'no_lang_code', 1, 'https://ror.org/02r7w5t06 Dräger (Norway)'), (37341, 'https://ror.org/02r8dvt87', 'no_lang_code', 1, 'https://ror.org/02r8dvt87 Thinfilm (Norway)'), (37342, 'https://ror.org/02r92m054', 'no_lang_code', 1, 'https://ror.org/02r92m054 Hagen (Norway)'), (37343, 'https://ror.org/02raeh877', 'no_lang_code', 1, 'https://ror.org/02raeh877 Microbeads (Norway)'), (37344, 'https://ror.org/02raqmj47', 'no', 1, 'https://ror.org/02raqmj47 Boligbygg Oslo KF'), (37345, 'https://ror.org/02rbj4561', 'no_lang_code', 1, 'https://ror.org/02rbj4561 Tronrud Engineering (Norway)'), (37346, 'https://ror.org/02rbp5787', 'en', 1, 'https://ror.org/02rbp5787 Kiwoko Hospital'), (37347, 'https://ror.org/02rbpk607', 'no_lang_code', 1, 'https://ror.org/02rbpk607 NGC Aerospace (Canada)'), (37348, 'https://ror.org/02rcybf88', 'no_lang_code', 1, 'https://ror.org/02rcybf88 Medgal (Poland)'), (37349, 'https://ror.org/02rdzmk74', 'en', 1, 'https://ror.org/02rdzmk74 Division of Computer and Network Systems'), (37350, 'https://ror.org/02rf6w514', 'da', 1, 'https://ror.org/02rf6w514 Hou Maritime Idrætsefterskole'), (37351, 'https://ror.org/02rgjy857', 'en', 1, 'https://ror.org/02rgjy857 Dartmouth General Hospital'), (37352, 'https://ror.org/02rjd3g51', 'no_lang_code', 1, 'https://ror.org/02rjd3g51 Jotun (Norway)'), (37353, 'https://ror.org/02rmcnx09', 'no_lang_code', 1, 'https://ror.org/02rmcnx09 Induktio (Slovenia)'), (37354, 'https://ror.org/02rpzg225', 'en', 1, 'https://ror.org/02rpzg225 Fort Portal Hospital'), (37355, 'https://ror.org/02rr4wh12', 'no_lang_code', 1, 'https://ror.org/02rr4wh12 Skogselskapet i Oppland (Norway)'), (37356, 'https://ror.org/02rrvb782', 'fr', 1, 'https://ror.org/02rrvb782 Quebec Television Broadcasting Corporation Télé-Québec'), (37357, 'https://ror.org/02rsn0x61', 'en', 1, 'https://ror.org/02rsn0x61 Allied Hospital'), (37358, 'https://ror.org/02rtkz848', 'no_lang_code', 1, 'https://ror.org/02rtkz848 Athena Seafoods (Norway)'), (37359, 'https://ror.org/02rtsfd15', 'en', 1, 'https://ror.org/02rtsfd15 Pädagogische Hochschule Freiburg University of Education Freiburg'), (37360, 'https://ror.org/02rtvpy35', 'no_lang_code', 1, 'https://ror.org/02rtvpy35 Recaltech (Brazil)'), (37361, 'https://ror.org/02rw6sa19', 'en', 1, 'https://ror.org/02rw6sa19 Blue Ridge Community College'), (37362, 'https://ror.org/02rwqk393', 'no_lang_code', 1, 'https://ror.org/02rwqk393 Siporex (Brazil)'), (37363, 'https://ror.org/02rxjts25', 'de', 1, 'https://ror.org/02rxjts25 Minerva Stiftung'), (37364, 'https://ror.org/02rxkjh73', 'no_lang_code', 1, 'https://ror.org/02rxkjh73 Natural Products & Technologies (Brazil)'), (37365, 'https://ror.org/02rxr6563', 'no_lang_code', 1, 'https://ror.org/02rxr6563 Molteno Hospital'), (37366, 'https://ror.org/02rxw4j53', 'no_lang_code', 1, 'https://ror.org/02rxw4j53 Light Emergency Stretcher Systems (Norway)'), (37367, 'https://ror.org/02ry07h90', 'en', 1, 'https://ror.org/02ry07h90 Cooper Hospital'), (37368, 'https://ror.org/02rz58g17', 'en', 1, 'https://ror.org/02rz58g17 Xishuangbanna Tropical Botanical Garden 西双版纳热带植物园'), (37369, 'https://ror.org/02rzdts70', 'en', 1, 'https://ror.org/02rzdts70 Alabama College of Osteopathic Medicine'), (37370, 'https://ror.org/02s2gmj52', 'no_lang_code', 1, 'https://ror.org/02s2gmj52 Effect Ships International (Norway)'), (37371, 'https://ror.org/02s49nq19', 'en', 1, 'https://ror.org/02s49nq19 Banner Lassen Medical Center'), (37372, 'https://ror.org/02s54wa56', 'no_lang_code', 1, 'https://ror.org/02s54wa56 Nanocenter'), (37373, 'https://ror.org/02sbrrx86', 'no_lang_code', 1, 'https://ror.org/02sbrrx86 Dod Robôs Investidores (Brazil)'), (37374, 'https://ror.org/02sda1489', 'no_lang_code', 1, 'https://ror.org/02sda1489 Brusell Communications (Norway)'), (37375, 'https://ror.org/02sdj1163', 'no_lang_code', 1, 'https://ror.org/02sdj1163 HyBond (Norway)'), (37376, 'https://ror.org/02sgbmf75', 'en', 1, 'https://ror.org/02sgbmf75 United Spinal Association'), (37377, 'https://ror.org/02sgvxq87', 'en', 1, 'https://ror.org/02sgvxq87 Admas University'), (37378, 'https://ror.org/02sgy5e89', 'en', 1, 'https://ror.org/02sgy5e89 USA Boccia'), (37379, 'https://ror.org/02sh7hr68', 'en', 1, 'https://ror.org/02sh7hr68 Butler Community College'), (37380, 'https://ror.org/02sht8d21', 'no_lang_code', 1, 'https://ror.org/02sht8d21 Nordly Holding (Norway)'), (37381, 'https://ror.org/02sjnxv88', 'no_lang_code', 1, 'https://ror.org/02sjnxv88 Geodetski Zavod Celje (Slovenia)'), (37382, 'https://ror.org/02sjwdt08', 'no_lang_code', 1, 'https://ror.org/02sjwdt08 Designit (Norway)'), (37383, 'https://ror.org/02sk5qk36', 'en', 1, 'https://ror.org/02sk5qk36 Alamance Community College'), (37384, 'https://ror.org/02smgwb83', 'no_lang_code', 1, 'https://ror.org/02smgwb83 Suma Indústria e Comércio (Brasil)'), (37385, 'https://ror.org/02srty072', 'en', 1, 'https://ror.org/02srty072 Woosong University 우송대학교'), (37386, 'https://ror.org/02sv85a88', 'no_lang_code', 1, 'https://ror.org/02sv85a88 Rocksource (Norway)'), (37387, 'https://ror.org/02sz00v89', 'pt', 1, 'https://ror.org/02sz00v89 Sociedade Brasileira de Cirurgia Cardiovascular'), (37388, 'https://ror.org/02szqsk98', 'en', 1, 'https://ror.org/02szqsk98 East Bardera Mothers and Children''s Hospital'), (37389, 'https://ror.org/02t2f7916', 'en', 1, 'https://ror.org/02t2f7916 St Petersburg Psychiatric Hospital of Specialized Type with Intense Observation Санкт-Петербургская психиатрическая больница специализированного типа с интенсивным наблюдением'), (37390, 'https://ror.org/02t36nw30', 'en', 1, 'https://ror.org/02t36nw30 Independence Community College'), (37391, 'https://ror.org/02t3pnf96', 'no_lang_code', 1, 'https://ror.org/02t3pnf96 WuXiPRA (China)'), (37392, 'https://ror.org/02t5j7398', 'en', 1, 'https://ror.org/02t5j7398 Cedar Valley College'), (37393, 'https://ror.org/02t5nc402', 'no_lang_code', 1, 'https://ror.org/02t5nc402 Omega Consult (Slovenia)'), (37394, 'https://ror.org/02t62cz46', 'pt', 1, 'https://ror.org/02t62cz46 Associação Nacional de Pesquisa e Pós-Graduação em Turismo'), (37395, 'https://ror.org/02t6kpd72', 'no', 1, 'https://ror.org/02t6kpd72 Norsk Folkemuseum'), (37396, 'https://ror.org/02t8k3a73', 'pt', 1, 'https://ror.org/02t8k3a73 Centro de Estudos Educação e Sociedade'), (37397, 'https://ror.org/02t8t0f85', 'no_lang_code', 1, 'https://ror.org/02t8t0f85 DWG Arquitetura e Sistemas (Brazil)'), (37398, 'https://ror.org/02t8zdk52', 'no_lang_code', 1, 'https://ror.org/02t8zdk52 Biota Guard (Norway)'), (37399, 'https://ror.org/02taagt52', 'no_lang_code', 1, 'https://ror.org/02taagt52 Provista (Norway)'), (37400, 'https://ror.org/02te9ba85', 'no_lang_code', 1, 'https://ror.org/02te9ba85 Nettverk Norge (Norway)'), (37401, 'https://ror.org/02tezqe13', 'no_lang_code', 1, 'https://ror.org/02tezqe13 Esotech (Slovenia)'), (37402, 'https://ror.org/02tgjqk78', 'no_lang_code', 1, 'https://ror.org/02tgjqk78 Adigo (Norway)'), (37403, 'https://ror.org/02thtn249', 'fr', 1, 'https://ror.org/02thtn249 Kéroul'), (37404, 'https://ror.org/02tj71548', 'no_lang_code', 1, 'https://ror.org/02tj71548 Eudora Energia (Brazil)'), (37405, 'https://ror.org/02tk6p688', 'no_lang_code', 1, 'https://ror.org/02tk6p688 SimSea (Norway)'), (37406, 'https://ror.org/02tvj3q58', 'fr', 1, 'https://ror.org/02tvj3q58 Centre National des Sciences et Technologies Nucléaires'), (37407, 'https://ror.org/02tvrwm90', 'en', 1, 'https://ror.org/02tvrwm90 Canada Excellence Research Chairs Chaires d’Excellence en Recherche du Canada'), (37408, 'https://ror.org/02twzqt54', 'en', 1, 'https://ror.org/02twzqt54 Fayetteville Technical Community College'), (37409, 'https://ror.org/02tzc1925', 'en', 1, 'https://ror.org/02tzc1925 Haydom Lutheran Hospital'), (37410, 'https://ror.org/02tzs1080', 'en', 1, 'https://ror.org/02tzs1080 St. Anne Mercy Hospital'), (37411, 'https://ror.org/02v3n9z83', 'en', 1, 'https://ror.org/02v3n9z83 ISG Institute for Social Research Institut für Sozialforschung und Gesellschaftspolitik'), (37412, 'https://ror.org/02v4sna49', 'no_lang_code', 1, 'https://ror.org/02v4sna49 Seatower (Norway)'), (37413, 'https://ror.org/02vdfy254', 'en', 1, 'https://ror.org/02vdfy254 Berjaya University College of Hospitality'), (37414, 'https://ror.org/02vdp4743', 'no_lang_code', 1, 'https://ror.org/02vdp4743 TraceTracker (Norway)'), (37415, 'https://ror.org/02vds7q94', 'en', 1, 'https://ror.org/02vds7q94 St. Clair College'), (37416, 'https://ror.org/02vfaew05', 'no_lang_code', 1, 'https://ror.org/02vfaew05 Medcore (Poland)'), (37417, 'https://ror.org/02vfqaw29', 'no_lang_code', 1, 'https://ror.org/02vfqaw29 Go Mobile (Norway)'), (37418, 'https://ror.org/02vfz1845', 'no_lang_code', 1, 'https://ror.org/02vfz1845 Weifa (Norway)'), (37419, 'https://ror.org/02vhvhj11', 'en', 1, 'https://ror.org/02vhvhj11 Shaikh Zayed Medical College and Hospital'), (37420, 'https://ror.org/02vhyd254', 'en', 1, 'https://ror.org/02vhyd254 Rama University'), (37421, 'https://ror.org/02vkr9a39', 'no_lang_code', 1, 'https://ror.org/02vkr9a39 Deep Ocean Technology (Poland)'); INSERT INTO `rors` VALUES (37422, 'https://ror.org/02vn96q13', 'no_lang_code', 1, 'https://ror.org/02vn96q13 Vestdavit (Norway)'), (37423, 'https://ror.org/02vspvr81', 'pl', 1, 'https://ror.org/02vspvr81 Centrum Medyczne iMed24'), (37424, 'https://ror.org/02vvyxq62', 'no_lang_code', 1, 'https://ror.org/02vvyxq62 Brady (Norway)'), (37425, 'https://ror.org/02vwh7h84', 'en', 1, 'https://ror.org/02vwh7h84 Military Communication Institute'), (37426, 'https://ror.org/02vwv0r85', 'no_lang_code', 1, 'https://ror.org/02vwv0r85 Jenox (Poland)'), (37427, 'https://ror.org/02vwzhc72', 'en', 1, 'https://ror.org/02vwzhc72 Kirklandside Hospital'), (37428, 'https://ror.org/02vzn9b06', 'no_lang_code', 1, 'https://ror.org/02vzn9b06 Idteq (Norway)'), (37429, 'https://ror.org/02vzzsr12', 'no_lang_code', 1, 'https://ror.org/02vzzsr12 Sima (Norway)'), (37430, 'https://ror.org/02w1m8s39', 'no_lang_code', 1, 'https://ror.org/02w1m8s39 FAS (Poland)'), (37431, 'https://ror.org/02w46bq53', 'no_lang_code', 1, 'https://ror.org/02w46bq53 Dr.Techn.Olav Olsen (Norway)'), (37432, 'https://ror.org/02w4kss89', 'no_lang_code', 1, 'https://ror.org/02w4kss89 Møreforsking (Norway)'), (37433, 'https://ror.org/02w5cw191', 'no_lang_code', 1, 'https://ror.org/02w5cw191 KOM Lux Fibras Ópticas (Brazil)'), (37434, 'https://ror.org/02w7pyj82', 'en', 1, 'https://ror.org/02w7pyj82 Priory Hospital Altrincham'), (37435, 'https://ror.org/02w8d2553', 'no', 1, 'https://ror.org/02w8d2553 Åmot Kommune'), (37436, 'https://ror.org/02w96wv37', 'no_lang_code', 1, 'https://ror.org/02w96wv37 Ramboll (Norway)'), (37437, 'https://ror.org/02w9zyq75', 'no_lang_code', 1, 'https://ror.org/02w9zyq75 Pharmasum Therapeutics (Norway)'), (37438, 'https://ror.org/02wbjm117', 'en', 1, 'https://ror.org/02wbjm117 Bundesarchiv German Federal Archives'), (37439, 'https://ror.org/02wccra50', 'en', 1, 'https://ror.org/02wccra50 Christchurch Clinical Studies Trust'), (37440, 'https://ror.org/02we0g281', 'en', 1, 'https://ror.org/02we0g281 Bon Secours Hospital Galway'), (37441, 'https://ror.org/02wf8xc83', 'de', 1, 'https://ror.org/02wf8xc83 Rudolfinerhaus Hospital'), (37442, 'https://ror.org/02whjr542', 'en', 1, 'https://ror.org/02whjr542 Braemar Hospital'), (37443, 'https://ror.org/02wjs8c89', 'en', 1, 'https://ror.org/02wjs8c89 Asia Oceania Geosciences Society'), (37444, 'https://ror.org/02wsxm934', 'no_lang_code', 1, 'https://ror.org/02wsxm934 Lerum (Norway)'), (37445, 'https://ror.org/02wt6e634', 'en', 1, 'https://ror.org/02wt6e634 Leibniz Institute for Regional Geography Leibniz-Institut für Länderkunde'), (37446, 'https://ror.org/02wwftm12', 'en', 1, 'https://ror.org/02wwftm12 Panyu District Central Hospital'), (37447, 'https://ror.org/02x0ymb50', 'en', 1, 'https://ror.org/02x0ymb50 Council for Mental Health'), (37448, 'https://ror.org/02x1q2477', 'en', 1, 'https://ror.org/02x1q2477 Max Planck Institute for Research on Collective Goods Max-Planck-Institut zur Erforschung von Gemeinschaftsgütern'), (37449, 'https://ror.org/02x57pk47', 'no_lang_code', 1, 'https://ror.org/02x57pk47 Incontrol (Brazil)'), (37450, 'https://ror.org/02x98g831', 'en', 1, 'https://ror.org/02x98g831 Xuzhou Children Hospital'), (37451, 'https://ror.org/02xay1410', 'en', 1, 'https://ror.org/02xay1410 Mathrusri Ramabai Ambedkar Dental College & Hospital'), (37452, 'https://ror.org/02xbqbw69', 'en', 1, 'https://ror.org/02xbqbw69 Via Christi Hospital'), (37453, 'https://ror.org/02xd7fn78', 'en', 1, 'https://ror.org/02xd7fn78 Etobicoke General Hospital'), (37454, 'https://ror.org/02xjdt420', 'no_lang_code', 1, 'https://ror.org/02xjdt420 Systherm (Poland)'), (37455, 'https://ror.org/02xnfye26', 'no_lang_code', 1, 'https://ror.org/02xnfye26 Egersund Group (Norway)'), (37456, 'https://ror.org/02xq4sz17', 'no_lang_code', 1, 'https://ror.org/02xq4sz17 Myhrene (Norway)'), (37457, 'https://ror.org/02xqp7x96', 'no_lang_code', 1, 'https://ror.org/02xqp7x96 Shenyang Institute of Computing Technology (China) 中国科学院沈阳计算技术研究所'), (37458, 'https://ror.org/02xrpdt68', 'en', 1, 'https://ror.org/02xrpdt68 Luohe Medical College'), (37459, 'https://ror.org/02xsnmk21', 'en', 1, 'https://ror.org/02xsnmk21 Nyakibale Hospital'), (37460, 'https://ror.org/02xv7km65', 'en', 1, 'https://ror.org/02xv7km65 Japanese Society of Physiological Anthropology'), (37461, 'https://ror.org/02xvrbk22', 'en', 1, 'https://ror.org/02xvrbk22 Hospital Sultan Abdul Halim Sultan Abdul Halim Hospital'), (37462, 'https://ror.org/02xw13d29', 'en', 1, 'https://ror.org/02xw13d29 Katherine Hospital'), (37463, 'https://ror.org/02xztm077', 'en', 1, 'https://ror.org/02xztm077 Educational Research Institute'), (37464, 'https://ror.org/02y051p53', 'no_lang_code', 1, 'https://ror.org/02y051p53 Armatura (Poland)'), (37465, 'https://ror.org/02y0fdf18', 'no_lang_code', 1, 'https://ror.org/02y0fdf18 Tetra Tech (Brazil)'), (37466, 'https://ror.org/02y0nmb35', 'no_lang_code', 1, 'https://ror.org/02y0nmb35 Grenland Energy (Norway)'), (37467, 'https://ror.org/02y2arb86', 'no_lang_code', 1, 'https://ror.org/02y2arb86 Chiba Aoba Municipal Hospital 千葉市立青葉病院'), (37468, 'https://ror.org/02y3prs94', 'en', 1, 'https://ror.org/02y3prs94 Booth University College'), (37469, 'https://ror.org/02y5cd625', 'no_lang_code', 1, 'https://ror.org/02y5cd625 Dordrecht Hospital'), (37470, 'https://ror.org/02y5heq38', 'en', 1, 'https://ror.org/02y5heq38 Charnock Hospital'), (37471, 'https://ror.org/02y8fm890', 'pl', 1, 'https://ror.org/02y8fm890 Wojewódzki Ośrodek Medycyny Pracy'), (37472, 'https://ror.org/02yag5627', 'no', 1, 'https://ror.org/02yag5627 Egede Instituttet'), (37473, 'https://ror.org/02yf7vb16', 'no_lang_code', 1, 'https://ror.org/02yf7vb16 PepsiCo (United Kingdom)'), (37474, 'https://ror.org/02ygq7y20', 'no_lang_code', 1, 'https://ror.org/02ygq7y20 Sigma (Poland)'), (37475, 'https://ror.org/02yhs7m71', 'en', 1, 'https://ror.org/02yhs7m71 Fraunhofer Institute for Applied Polymer Research Fraunhofer-Institut für Angewandte Polymerforschung'), (37476, 'https://ror.org/02yj38452', 'no_lang_code', 1, 'https://ror.org/02yj38452 Intecmat (Brazil)'), (37477, 'https://ror.org/02yj6ya55', 'en', 1, 'https://ror.org/02yj6ya55 Asian Hospital and Medical Center'), (37478, 'https://ror.org/02yj8ay39', 'en', 1, 'https://ror.org/02yj8ay39 Royal Hospital Chelsea'), (37479, 'https://ror.org/02yjsqr32', 'de', 1, 'https://ror.org/02yjsqr32 Krankenhaus Oberndorf'), (37480, 'https://ror.org/02ykc9w32', 'no_lang_code', 1, 'https://ror.org/02ykc9w32 Holmens (Norway)'), (37481, 'https://ror.org/02yq0sn95', 'no_lang_code', 1, 'https://ror.org/02yq0sn95 Posten (Norway)'), (37482, 'https://ror.org/02yq66p71', 'no_lang_code', 1, 'https://ror.org/02yq66p71 BioNumerik (United States)'), (37483, 'https://ror.org/02yr30s14', 'no', 1, 'https://ror.org/02yr30s14 Drammen Kommune'), (37484, 'https://ror.org/02ywapq94', 'pt', 1, 'https://ror.org/02ywapq94 Associação Brasileira de Pesquisadores em História Econômica'), (37485, 'https://ror.org/02yxa8882', 'no_lang_code', 1, 'https://ror.org/02yxa8882 Optron Micromecânica Óptica (Brazil)'), (37486, 'https://ror.org/02yxcv577', 'no_lang_code', 1, 'https://ror.org/02yxcv577 Kom Forlag (Norway)'), (37487, 'https://ror.org/02yyma482', 'en', 1, 'https://ror.org/02yyma482 International Tourism Institute'), (37488, 'https://ror.org/02yyqh779', 'no_lang_code', 1, 'https://ror.org/02yyqh779 Numedalsutvikling (Norway)'), (37489, 'https://ror.org/02z1zrr65', 'no_lang_code', 1, 'https://ror.org/02z1zrr65 Fobox (Norway)'), (37490, 'https://ror.org/02z2mhx36', 'en', 1, 'https://ror.org/02z2mhx36 Association of Local Colleges and Universities'), (37491, 'https://ror.org/02z3m0q91', 'no_lang_code', 1, 'https://ror.org/02z3m0q91 Synthos (Poland)'), (37492, 'https://ror.org/02z5j8t37', 'no_lang_code', 1, 'https://ror.org/02z5j8t37 Dínamo Automação Industrial (Brazil)'), (37493, 'https://ror.org/02z5rm416', 'en', 1, 'https://ror.org/02z5rm416 Butabika Hospital'), (37494, 'https://ror.org/02z6mh533', 'no_lang_code', 1, 'https://ror.org/02z6mh533 Kahoot (Norway)'), (37495, 'https://ror.org/02z6zf495', 'no_lang_code', 1, 'https://ror.org/02z6zf495 Seas Fabrikker (Norway)'), (37496, 'https://ror.org/02z875e74', 'en', 1, 'https://ror.org/02z875e74 Ashraff Memorial Hospital'), (37497, 'https://ror.org/02z89pc64', 'en', 1, 'https://ror.org/02z89pc64 Mindanao Sanitarium and Hospital College'), (37498, 'https://ror.org/02z9c4y45', 'en', 1, 'https://ror.org/02z9c4y45 Osawatomie State Hospital'), (37499, 'https://ror.org/02zbc1a16', 'en', 1, 'https://ror.org/02zbc1a16 Department of the Treasury'), (37500, 'https://ror.org/02zc5r772', 'en', 1, 'https://ror.org/02zc5r772 Box Hill Institute'), (37501, 'https://ror.org/02zfghc79', 'en', 1, 'https://ror.org/02zfghc79 Mother Hospital'), (37502, 'https://ror.org/02zg72e18', 'no_lang_code', 1, 'https://ror.org/02zg72e18 Dovre (Norway)'), (37503, 'https://ror.org/02zg8vj63', 'no_lang_code', 1, 'https://ror.org/02zg8vj63 Equacional (Brazil)'), (37504, 'https://ror.org/02zgfyq81', 'en', 1, 'https://ror.org/02zgfyq81 Sarah Network of Rehabilitation Hospitals'), (37505, 'https://ror.org/02zhfb961', 'no_lang_code', 1, 'https://ror.org/02zhfb961 ForzaSys (Norway)'), (37506, 'https://ror.org/02zhmsp02', 'no_lang_code', 1, 'https://ror.org/02zhmsp02 HOBAS (Poland)'), (37507, 'https://ror.org/02zkwve04', 'en', 1, 'https://ror.org/02zkwve04 Norristown State Hospital'), (37508, 'https://ror.org/02zm5n619', 'no_lang_code', 1, 'https://ror.org/02zm5n619 Ernst-B. Johansen (Norway)'), (37509, 'https://ror.org/02zs4aq98', 'no_lang_code', 1, 'https://ror.org/02zs4aq98 Sencer (Brazil)'), (37510, 'https://ror.org/02zs6px59', 'no_lang_code', 1, 'https://ror.org/02zs6px59 Tecam Laboratórios (Brazil)'), (37511, 'https://ror.org/02zv5qf81', 'tr', 1, 'https://ror.org/02zv5qf81 Şanlıurfa Mehmet Akif İnan Education and Research Hospital Şanlıurfa Mehmet Akif İnan Eğitim ve Araştırma Hastanesi'), (37512, 'https://ror.org/02zvm4r30', 'en', 1, 'https://ror.org/02zvm4r30 Black Hawk College'), (37513, 'https://ror.org/02zvwwf46', 'pt', 1, 'https://ror.org/02zvwwf46 Secretaria de Saneamento e Recursos Hìdricos'), (37514, 'https://ror.org/02zww6317', 'en', 1, 'https://ror.org/02zww6317 Central Institute of Indian Languages केन्द्रीय भारतीय भाषा संस्थान କେନ୍ଦ୍ରୀୟ ଭାରତୀୟ ଭାଷା ପ୍ରତିଷ୍ଠାନ இந்திய மொழிகளின் நடுவண் நிறுவனம்'), (37515, 'https://ror.org/02zx99z61', 'no_lang_code', 1, 'https://ror.org/02zx99z61 Excelchip (Brazil)'), (37516, 'https://ror.org/02zyv6x15', 'no_lang_code', 1, 'https://ror.org/02zyv6x15 Gibson Innovations (Belgium)'), (37517, 'https://ror.org/03006q137', 'en', 1, 'https://ror.org/03006q137 Denmar Specialist Psychiatric Hospital'), (37518, 'https://ror.org/0301jsj38', 'no_lang_code', 1, 'https://ror.org/0301jsj38 Aqua Energy Solutions (Norway)'), (37519, 'https://ror.org/0302jrc12', 'no_lang_code', 1, 'https://ror.org/0302jrc12 Meier & Giacaglia Medidores (Brazil)'), (37520, 'https://ror.org/03037mp68', 'no_lang_code', 1, 'https://ror.org/03037mp68 Sensovann (Norway)'), (37521, 'https://ror.org/0303drj82', 'no_lang_code', 1, 'https://ror.org/0303drj82 Personalis (United States)'), (37522, 'https://ror.org/0304chs76', 'en', 1, 'https://ror.org/0304chs76 Coalinga State Hospital'), (37523, 'https://ror.org/03051w252', 'de', 1, 'https://ror.org/03051w252 Bauernmuseum Bamberger Land'), (37524, 'https://ror.org/030617867', 'no_lang_code', 1, 'https://ror.org/030617867 Shandong Jiaotong Hospital'), (37525, 'https://ror.org/0306a8d50', 'en', 1, 'https://ror.org/0306a8d50 Annenberg Center for Health Sciences at Eisenhower'), (37526, 'https://ror.org/0308pxz24', 'en', 1, 'https://ror.org/0308pxz24 Services Hospital سروسز ہسپتال'), (37527, 'https://ror.org/0309m1r07', 'en', 1, 'https://ror.org/0309m1r07 Institut für Vogelforschung "Vogelwarte Helgoland“ Institute of Avian Research'), (37528, 'https://ror.org/0309pcg09', 'en', 1, 'https://ror.org/0309pcg09 Shanghai Eighth People Hospital'), (37529, 'https://ror.org/030a0m094', 'no_lang_code', 1, 'https://ror.org/030a0m094 Commfides Norge (Norway)'), (37530, 'https://ror.org/030cwsf88', 'en', 1, 'https://ror.org/030cwsf88 Yancheng Third People''s Hospital'), (37531, 'https://ror.org/030erj688', 'en', 1, 'https://ror.org/030erj688 Oberlin Group'), (37532, 'https://ror.org/030f60051', 'en', 1, 'https://ror.org/030f60051 Ten Chen Hospital'), (37533, 'https://ror.org/030ffke25', 'en', 1, 'https://ror.org/030ffke25 Guangdong University of Petrochemical Technology 广东石油化工学院'), (37534, 'https://ror.org/030hd3e53', 'en', 1, 'https://ror.org/030hd3e53 Catawba Valley Community College'), (37535, 'https://ror.org/030jh8c52', 'en', 1, 'https://ror.org/030jh8c52 Tuality Forest Grove Hospital'), (37536, 'https://ror.org/030jpqj15', 'en', 1, 'https://ror.org/030jpqj15 Goulburn Base Hospital'), (37537, 'https://ror.org/030jqbn26', 'en', 1, 'https://ror.org/030jqbn26 Department of Health 衞生署'), (37538, 'https://ror.org/030k21z47', 'en', 1, 'https://ror.org/030k21z47 Beijing Institute of Nanoenergy and Nanosystems 中国科学院北京纳米能源与系统研究所'), (37539, 'https://ror.org/030maey82', 'no_lang_code', 1, 'https://ror.org/030maey82 Heads (Norway)'), (37540, 'https://ror.org/030mp9g18', 'no_lang_code', 1, 'https://ror.org/030mp9g18 Sdc Engenharia (Brazil)'), (37541, 'https://ror.org/030ncf194', 'en', 1, 'https://ror.org/030ncf194 Cooper Green Mercy Hospital'), (37542, 'https://ror.org/030nxya44', 'en', 1, 'https://ror.org/030nxya44 Indian Institute of Sugarcane Research'), (37543, 'https://ror.org/030qwf038', 'de', 1, 'https://ror.org/030qwf038 Marien Hospital Düsseldorf'), (37544, 'https://ror.org/030sr2v21', 'en', 1, 'https://ror.org/030sr2v21 Hainan General Hospital 海南省人民医院'), (37545, 'https://ror.org/030sy9j53', 'en', 1, 'https://ror.org/030sy9j53 St. Luke''s Hospital'), (37546, 'https://ror.org/030t3j082', 'no_lang_code', 1, 'https://ror.org/030t3j082 I-Sea (Norway)'), (37547, 'https://ror.org/030t4re78', 'fr', 1, 'https://ror.org/030t4re78 Musée du Fjord'), (37548, 'https://ror.org/030tvx861', 'de', 1, 'https://ror.org/030tvx861 Klinikum Wels-Grieskirchen'), (37549, 'https://ror.org/030vz9r78', 'en', 1, 'https://ror.org/030vz9r78 Ashfield Healthcare'), (37550, 'https://ror.org/030xgr181', 'en', 1, 'https://ror.org/030xgr181 Vinzenz Pallotti Hospital Bensberg'), (37551, 'https://ror.org/030ztmv39', 'no_lang_code', 1, 'https://ror.org/030ztmv39 Landis International (United States)'), (37552, 'https://ror.org/030zz7j19', 'pl', 1, 'https://ror.org/030zz7j19 Centrum Badań i Innowacji Pro-Akademia'), (37553, 'https://ror.org/0312wfb17', 'no_lang_code', 1, 'https://ror.org/0312wfb17 GridSky Software (Norway)'), (37554, 'https://ror.org/0315kxv51', 'no_lang_code', 1, 'https://ror.org/0315kxv51 HV Plast (Norway)'), (37555, 'https://ror.org/03163ea17', 'no_lang_code', 1, 'https://ror.org/03163ea17 Fiskeriforum Vest (Norway)'), (37556, 'https://ror.org/0316g5c30', 'no_lang_code', 1, 'https://ror.org/0316g5c30 Kings Bay (Norway)'), (37557, 'https://ror.org/0316g6k10', 'no_lang_code', 1, 'https://ror.org/0316g6k10 Store Norske (Norway)'), (37558, 'https://ror.org/0316khr05', 'no_lang_code', 1, 'https://ror.org/0316khr05 OmniTek (Brazil)'), (37559, 'https://ror.org/0317k7j67', 'en', 1, 'https://ror.org/0317k7j67 Lanka Hospitals'), (37560, 'https://ror.org/031870q06', 'no_lang_code', 1, 'https://ror.org/031870q06 Orchid Pharma (India)'), (37561, 'https://ror.org/0319n6680', 'no', 1, 'https://ror.org/0319n6680 Kunnskapssenter for Laks og Vannmiljø'), (37562, 'https://ror.org/031ak8575', 'en', 1, 'https://ror.org/031ak8575 Tsuen Wan Adventist Hospital'), (37563, 'https://ror.org/031bnv033', 'en', 1, 'https://ror.org/031bnv033 Brighter Beginnings'), (37564, 'https://ror.org/031ekp611', 'no_lang_code', 1, 'https://ror.org/031ekp611 BCL Technologies (United States)'), (37565, 'https://ror.org/031fazd56', 'en', 1, 'https://ror.org/031fazd56 Cavan General Hospital Ospidéal Ginearálta an Chabháin'), (37566, 'https://ror.org/031g15v45', 'en', 1, 'https://ror.org/031g15v45 Institute for High Technologies and Systems'), (37567, 'https://ror.org/031g83w70', 'no_lang_code', 1, 'https://ror.org/031g83w70 Polwax (Poland)'), (37568, 'https://ror.org/031m7k936', 'no_lang_code', 1, 'https://ror.org/031m7k936 Gjøco (Norway)'), (37569, 'https://ror.org/031mmkk34', 'en', 1, 'https://ror.org/031mmkk34 Palms of Pasadena Hospital'), (37570, 'https://ror.org/031my5009', 'en', 1, 'https://ror.org/031my5009 Asia e University'), (37571, 'https://ror.org/031nbsp88', 'no_lang_code', 1, 'https://ror.org/031nbsp88 MHWirth (Norway)'), (37572, 'https://ror.org/031szhw45', 'no_lang_code', 1, 'https://ror.org/031szhw45 Infinita (Slovenia)'), (37573, 'https://ror.org/031ts3559', 'en', 1, 'https://ror.org/031ts3559 Doowon Technical University College 두원공과대학교'), (37574, 'https://ror.org/031va0421', 'es', 1, 'https://ror.org/031va0421 Hospital San Pedro'), (37575, 'https://ror.org/031x8mb64', 'no_lang_code', 1, 'https://ror.org/031x8mb64 Måltidets (Norway)'), (37576, 'https://ror.org/031xv5t30', 'no', 1, 'https://ror.org/031xv5t30 Urban Sjøfront'), (37577, 'https://ror.org/031xy6s33', 'pl', 1, 'https://ror.org/031xy6s33 Institute of Rural Health Instytut Medycyny Wsi im. Witolda Chodźki'), (37578, 'https://ror.org/031zj0q48', 'en', 1, 'https://ror.org/031zj0q48 Institute of Engineering Thermophysics 中国科学院工程热物理研究所'), (37579, 'https://ror.org/031zx7n25', 'en', 1, 'https://ror.org/031zx7n25 Norwegian Bible Society'), (37580, 'https://ror.org/03248dr08', 'no_lang_code', 1, 'https://ror.org/03248dr08 Robert Bosch (Slovenia)'), (37581, 'https://ror.org/0324c8f61', 'en', 1, 'https://ror.org/0324c8f61 Mahak Hospital and Rehabilitation Complex بیمارستان محک'), (37582, 'https://ror.org/0326h5856', 'no', 1, 'https://ror.org/0326h5856 Aga Halibut'), (37583, 'https://ror.org/0327c5w84', 'no_lang_code', 1, 'https://ror.org/0327c5w84 Resonator (Norway)'), (37584, 'https://ror.org/0327sj791', 'no_lang_code', 1, 'https://ror.org/0327sj791 S.S. Gida Hospital'), (37585, 'https://ror.org/0328dqn15', 'en', 1, 'https://ror.org/0328dqn15 Norwegian Coastal Administration'), (37586, 'https://ror.org/032az3k06', 'en', 1, 'https://ror.org/032az3k06 Ashland Community Hospital'), (37587, 'https://ror.org/032bhb453', 'no_lang_code', 1, 'https://ror.org/032bhb453 Łódzki Regionalny Park Naukowo-Technologiczny (Poland)'), (37588, 'https://ror.org/032bps724', 'no_lang_code', 1, 'https://ror.org/032bps724 AsGa (Brazil)'), (37589, 'https://ror.org/032bzhf86', 'en', 1, 'https://ror.org/032bzhf86 Vision International University'), (37590, 'https://ror.org/032g22j83', 'en', 1, 'https://ror.org/032g22j83 Oswego Community Hospital'), (37591, 'https://ror.org/032hca325', 'en', 1, 'https://ror.org/032hca325 Hsing Wu University 醒吾科技大學'), (37592, 'https://ror.org/032jq1431', 'no_lang_code', 1, 'https://ror.org/032jq1431 KLRU-TV'), (37593, 'https://ror.org/032kjn442', 'en', 1, 'https://ror.org/032kjn442 Indian Institute of Vegetable Research'), (37594, 'https://ror.org/032p5d762', 'no_lang_code', 1, 'https://ror.org/032p5d762 Polprek (Poland)'), (37595, 'https://ror.org/032qsa580', 'en', 1, 'https://ror.org/032qsa580 Nishikawa Hospital'), (37596, 'https://ror.org/032rn0w24', 'en', 1, 'https://ror.org/032rn0w24 Gower College Swansea'), (37597, 'https://ror.org/032tqk105', 'no_lang_code', 1, 'https://ror.org/032tqk105 Nordlaks (Norway)'), (37598, 'https://ror.org/032vny106', 'no_lang_code', 1, 'https://ror.org/032vny106 Mountcrest University College'), (37599, 'https://ror.org/032vq8n85', 'no_lang_code', 1, 'https://ror.org/032vq8n85 Augmentium Pharma Consulting (Canada)'), (37600, 'https://ror.org/032yhrq65', 'no_lang_code', 1, 'https://ror.org/032yhrq65 Mission Hospital Durgapur'), (37601, 'https://ror.org/032ymtx48', 'no_lang_code', 1, 'https://ror.org/032ymtx48 ICR (Norway)'), (37602, 'https://ror.org/032ymzc07', 'en', 1, 'https://ror.org/032ymzc07 Fachhochschule Graubünden University of Applied Sciences of the Grisons'), (37603, 'https://ror.org/0331bk778', 'en', 1, 'https://ror.org/0331bk778 Nsambya Hospital'), (37604, 'https://ror.org/03327ex30', 'de', 1, 'https://ror.org/03327ex30 Bayerische Staatssammlung für Paläontologie und Geologie'), (37605, 'https://ror.org/0332phy25', 'no_lang_code', 1, 'https://ror.org/0332phy25 Mouse Specifics (United States)'), (37606, 'https://ror.org/0332xca13', 'en', 1, 'https://ror.org/0332xca13 Ibn Sina National College for Medical Studies كلية ابن سينا'), (37607, 'https://ror.org/03345rt93', 'no_lang_code', 1, 'https://ror.org/03345rt93 Imaging Technology Consulting (United States)'), (37608, 'https://ror.org/033573j20', 'no_lang_code', 1, 'https://ror.org/033573j20 Kyowa Hakko Kirin (Singapore)'), (37609, 'https://ror.org/0335pr187', 'en', 1, 'https://ror.org/0335pr187 Fourth Affiliated Hospital of Guangxi Medical University'), (37610, 'https://ror.org/033722021', 'en', 1, 'https://ror.org/033722021 Institute of Plant Protection'), (37611, 'https://ror.org/0337j9c19', 'no_lang_code', 1, 'https://ror.org/0337j9c19 Wojskowe Zakłady Inżynieryjne (Poland)'), (37612, 'https://ror.org/0337pwh54', 'no_lang_code', 1, 'https://ror.org/0337pwh54 WiSub (Norway)'), (37613, 'https://ror.org/033dx8j94', 'en', 1, 'https://ror.org/033dx8j94 University B.D.T College of Engineering'), (37614, 'https://ror.org/033eygk88', 'no_lang_code', 1, 'https://ror.org/033eygk88 AMS (Slovenia)'), (37615, 'https://ror.org/033fq2155', 'en', 1, 'https://ror.org/033fq2155 Institute for Hydraulic Research'), (37616, 'https://ror.org/033fsme98', 'no_lang_code', 1, 'https://ror.org/033fsme98 TeraRecon (United States)'), (37617, 'https://ror.org/033js6g46', 'en', 1, 'https://ror.org/033js6g46 Institute of Electrical Engineering 中国科学院电工研究所'), (37618, 'https://ror.org/033jzmc70', 'en', 1, 'https://ror.org/033jzmc70 Leon Wiltse Memorial Hospital 윌스기념병원'), (37619, 'https://ror.org/033kyng81', 'de', 1, 'https://ror.org/033kyng81 Diakonissenkrankenhaus'), (37620, 'https://ror.org/033mwhp49', 'no_lang_code', 1, 'https://ror.org/033mwhp49 Bass (Norway)'), (37621, 'https://ror.org/033n39v56', 'pt', 1, 'https://ror.org/033n39v56 Associação Brasileira para a Proteção dos Alimentos'), (37622, 'https://ror.org/033pwxw54', 'en', 1, 'https://ror.org/033pwxw54 Kisiizi Hospital'), (37623, 'https://ror.org/033pzck63', 'no_lang_code', 1, 'https://ror.org/033pzck63 Koppert (Brazil)'), (37624, 'https://ror.org/033r6dh57', 'pt', 1, 'https://ror.org/033r6dh57 Secretaria de Desenvolvimento Econômico, Ciência, Tecnologia e Inovação'), (37625, 'https://ror.org/033tsye23', 'no', 1, 'https://ror.org/033tsye23 Akademika (Norway)'), (37626, 'https://ror.org/033v3bb42', 'en', 1, 'https://ror.org/033v3bb42 Blythedale Children''s Hospital'), (37627, 'https://ror.org/033wnan59', 'no_lang_code', 1, 'https://ror.org/033wnan59 D.A. Glass (Poland)'), (37628, 'https://ror.org/0343myz07', 'en', 1, 'https://ror.org/0343myz07 Montana State University System'), (37629, 'https://ror.org/0344nnn17', 'no_lang_code', 1, 'https://ror.org/0344nnn17 Total (Germany)'), (37630, 'https://ror.org/0346psp61', 'no_lang_code', 1, 'https://ror.org/0346psp61 Ulstein Group (Norway)'), (37631, 'https://ror.org/034dn0836', 'en', 1, 'https://ror.org/034dn0836 Institute of Psychology Instytut Psychologii Polska Akademia Nauk'), (37632, 'https://ror.org/034e8et22', 'no_lang_code', 1, 'https://ror.org/034e8et22 Science and Technology Corporation (Norway)'), (37633, 'https://ror.org/034epfv80', 'no_lang_code', 1, 'https://ror.org/034epfv80 Fluenta (Norway)'), (37634, 'https://ror.org/034fa5k55', 'no_lang_code', 1, 'https://ror.org/034fa5k55 Ecology Glass (Brazil)'), (37635, 'https://ror.org/034ga4e26', 'no_lang_code', 1, 'https://ror.org/034ga4e26 Moods of Norway (Norway)'), (37636, 'https://ror.org/034hztf92', 'de', 1, 'https://ror.org/034hztf92 Hanseatic Wirtschaftsarchiv, Stiftung Hanseatisches Wirtschaftsarchiv'), (37637, 'https://ror.org/034j4ta73', 'no_lang_code', 1, 'https://ror.org/034j4ta73 Shanda Games'), (37638, 'https://ror.org/034jg6t98', 'pt', 1, 'https://ror.org/034jg6t98 Centro Universitário Fundação Assis Gurgacz'), (37639, 'https://ror.org/034m1ez10', 'en', 1, 'https://ror.org/034m1ez10 Science of Learning Centers Program Coordinating Committee'), (37640, 'https://ror.org/034nkgy63', 'no_lang_code', 1, 'https://ror.org/034nkgy63 Nexus (Brazil)'), (37641, 'https://ror.org/034pj3s87', 'en', 1, 'https://ror.org/034pj3s87 Kazakh-Russian International University'), (37642, 'https://ror.org/034qc6c88', 'no_lang_code', 1, 'https://ror.org/034qc6c88 RMF Consultoria (Brazil)'), (37643, 'https://ror.org/034qf1506', 'no_lang_code', 1, 'https://ror.org/034qf1506 Lindum (Norway)'), (37644, 'https://ror.org/034qn2e75', 'en', 1, 'https://ror.org/034qn2e75 Community Hospital of Long Beach'), (37645, 'https://ror.org/034qxt397', 'it', 1, 'https://ror.org/034qxt397 Azienda Ospedaliero-Universitaria Cagliari'), (37646, 'https://ror.org/034r02c45', 'no_lang_code', 1, 'https://ror.org/034r02c45 Themag (Brazil)'), (37647, 'https://ror.org/034r26m89', 'en', 1, 'https://ror.org/034r26m89 Contra Costa College'), (37648, 'https://ror.org/034wdms74', 'no', 1, 'https://ror.org/034wdms74 Løvenskiold Fossum'), (37649, 'https://ror.org/034wzt925', 'no_lang_code', 1, 'https://ror.org/034wzt925 Omex (Norway)'), (37650, 'https://ror.org/034yf4q42', 'no_lang_code', 1, 'https://ror.org/034yf4q42 Ryjor (Brazil)'), (37651, 'https://ror.org/034yp4s66', 'no_lang_code', 1, 'https://ror.org/034yp4s66 Austevoll Seafood (Norway)'), (37652, 'https://ror.org/034zes736', 'en', 1, 'https://ror.org/034zes736 Bluegrass Community and Technical College'), (37653, 'https://ror.org/0351dr811', 'no_lang_code', 1, 'https://ror.org/0351dr811 DPR Engenharia (Brazil)'), (37654, 'https://ror.org/03526fm87', 'no_lang_code', 1, 'https://ror.org/03526fm87 MRE Soluções (Brazil)'), (37655, 'https://ror.org/03526x064', 'no_lang_code', 1, 'https://ror.org/03526x064 Huddlestock Capital (Norway)'), (37656, 'https://ror.org/0352m1z03', 'no_lang_code', 1, 'https://ror.org/0352m1z03 IMS Group (Norway)'), (37657, 'https://ror.org/0353d6x38', 'no_lang_code', 1, 'https://ror.org/0353d6x38 Amarin (United States)'), (37658, 'https://ror.org/03541w302', 'en', 1, 'https://ror.org/03541w302 Arua Regional Referral Hospital'), (37659, 'https://ror.org/03545fq57', 'en', 1, 'https://ror.org/03545fq57 Comisión Federal de Comunicaciones Federal Communications Commission'), (37660, 'https://ror.org/0357w4d04', 'no_lang_code', 1, 'https://ror.org/0357w4d04 Sana Pharma Medical (Norway)'), (37661, 'https://ror.org/0358k0g48', 'en', 1, 'https://ror.org/0358k0g48 Academy of Music in Kraków Akademia Muzyczna w Krakowie'), (37662, 'https://ror.org/0358q4810', 'en', 1, 'https://ror.org/0358q4810 Ruihua Affiliated Hospital of Soochow University'), (37663, 'https://ror.org/0358v9d31', 'en', 1, 'https://ror.org/0358v9d31 Affiliated Hospital of Youjiang Medical University for Nationalities'), (37664, 'https://ror.org/03591vd47', 'no_lang_code', 1, 'https://ror.org/03591vd47 MKS Electronic Systems (Slovenia)'), (37665, 'https://ror.org/035by7v51', 'no', 1, 'https://ror.org/035by7v51 Kappabel'), (37666, 'https://ror.org/035c32k36', 'no_lang_code', 1, 'https://ror.org/035c32k36 Gardo General Hospital'), (37667, 'https://ror.org/035f23321', 'de', 1, 'https://ror.org/035f23321 Frobenius Institute for Research in Cultural Anthropology Frobenius-Institut'), (37668, 'https://ror.org/035hn3t86', 'en', 1, 'https://ror.org/035hn3t86 Staatliches Museum für Naturkunde Karlsruhe State Museum of Natural History Karlsruhe'), (37669, 'https://ror.org/035mhpy30', 'no_lang_code', 1, 'https://ror.org/035mhpy30 Orlen (Poland) Polski Koncern Naftowy Orlen'), (37670, 'https://ror.org/035qg4911', 'no_lang_code', 1, 'https://ror.org/035qg4911 Electric System & Laser Technology (Poland)'), (37671, 'https://ror.org/035rf9c29', 'en', 1, 'https://ror.org/035rf9c29 Noguchi Hospital'), (37672, 'https://ror.org/035rm0c83', 'en', 1, 'https://ror.org/035rm0c83 Norman Regional Hospital'), (37673, 'https://ror.org/035sj1s35', 'fr', 1, 'https://ror.org/035sj1s35 Service de Recherche et d''EXpertise en Transformation des Produits Forestiers'), (37674, 'https://ror.org/035veqr40', 'en', 1, 'https://ror.org/035veqr40 Elizabeth Donkin Hospital'), (37675, 'https://ror.org/035vexy28', 'no_lang_code', 1, 'https://ror.org/035vexy28 Hørselslaben (Norway)'), (37676, 'https://ror.org/035w01f39', 'no_lang_code', 1, 'https://ror.org/035w01f39 Hexagon (Norway)'), (37677, 'https://ror.org/035wt7p80', 'en', 1, 'https://ror.org/035wt7p80 Shengli Oilfield Central Hospital'), (37678, 'https://ror.org/035xenz28', 'en', 1, 'https://ror.org/035xenz28 American School of Warsaw'), (37679, 'https://ror.org/035y1f917', 'pt', 1, 'https://ror.org/035y1f917 Centro de Estudos do Laboratório de Aptidão Física de São Caetano do Sul'), (37680, 'https://ror.org/035yrx309', 'en', 1, 'https://ror.org/035yrx309 Norwood Hospital'), (37681, 'https://ror.org/0360rgf68', 'de', 1, 'https://ror.org/0360rgf68 Sophien-und Hufeland Klinikum'), (37682, 'https://ror.org/0360yvh71', 'de', 1, 'https://ror.org/0360yvh71 Krankenhaus Lindenbrunn'), (37683, 'https://ror.org/03617rq47', 'en', 1, 'https://ror.org/03617rq47 The First People’s Hospital of Lianyungang'), (37684, 'https://ror.org/0361rdk10', 'no_lang_code', 1, 'https://ror.org/0361rdk10 Forget-Me-Not (Norway)'), (37685, 'https://ror.org/0361v2a25', 'no_lang_code', 1, 'https://ror.org/0361v2a25 IRSPIN (Slovenia)'), (37686, 'https://ror.org/0363hbd07', 'no', 1, 'https://ror.org/0363hbd07 Tinn kommune'), (37687, 'https://ror.org/0364zga38', 'no_lang_code', 1, 'https://ror.org/0364zga38 Det Norske Samlaget (Norway)'), (37688, 'https://ror.org/0368f8s77', 'en', 1, 'https://ror.org/0368f8s77 Atlanta Metropolitan College, Atlanta Metropolitan State College'), (37689, 'https://ror.org/036bcm133', 'en', 1, 'https://ror.org/036bcm133 Asian Development Bank Bangko sa Pagpapaunlad ng Asya'), (37690, 'https://ror.org/036cvz290', 'en', 1, 'https://ror.org/036cvz290 Leshan Normal University 乐山师范学院'), (37691, 'https://ror.org/036d0t930', 'en', 1, 'https://ror.org/036d0t930 Minto Ophthalmic Hospital'), (37692, 'https://ror.org/036d7m178', 'de', 1, 'https://ror.org/036d7m178 Klinikum Bielefeld'), (37693, 'https://ror.org/036dmxc82', 'no_lang_code', 1, 'https://ror.org/036dmxc82 Dat (Norway)'), (37694, 'https://ror.org/036e7jk76', 'no_lang_code', 1, 'https://ror.org/036e7jk76 Matczak Autonadwozia (Poland)'), (37695, 'https://ror.org/036evcw04', 'no_lang_code', 1, 'https://ror.org/036evcw04 M3 Helse'), (37696, 'https://ror.org/036fhj216', 'no', 1, 'https://ror.org/036fhj216 Mære Landbruksskole'), (37697, 'https://ror.org/036g8b848', 'en', 1, 'https://ror.org/036g8b848 Inverurie Hospital'), (37698, 'https://ror.org/036jhyh48', 'no_lang_code', 1, 'https://ror.org/036jhyh48 Ko-Aks (Norway)'), (37699, 'https://ror.org/036k6sw03', 'en', 1, 'https://ror.org/036k6sw03 Tone Lise Academy'), (37700, 'https://ror.org/036m1ng26', 'no_lang_code', 1, 'https://ror.org/036m1ng26 TIC-LENS Laser Technologies (Slovenia)'), (37701, 'https://ror.org/036mc2b83', 'no_lang_code', 1, 'https://ror.org/036mc2b83 Mvisia (Brazil)'), (37702, 'https://ror.org/036nbhr81', 'no', 1, 'https://ror.org/036nbhr81 Fjell Kommune'), (37703, 'https://ror.org/036prk722', 'pt', 1, 'https://ror.org/036prk722 Faculdade de Agudos'), (37704, 'https://ror.org/036qhje24', 'no_lang_code', 1, 'https://ror.org/036qhje24 Norwegian Hydropower (Norway)'), (37705, 'https://ror.org/036r3bf08', 'no_lang_code', 1, 'https://ror.org/036r3bf08 Atkins (Norway)'), (37706, 'https://ror.org/036s60e53', 'en', 1, 'https://ror.org/036s60e53 Aberdeen Provincial Hospital'), (37707, 'https://ror.org/036vdb341', 'en', 1, 'https://ror.org/036vdb341 Hopkinsville Community College'), (37708, 'https://ror.org/036wf7b34', 'no_lang_code', 1, 'https://ror.org/036wf7b34 Benteler (Norway)'), (37709, 'https://ror.org/036xk1d10', 'no_lang_code', 1, 'https://ror.org/036xk1d10 Agromiljø (Norway)'), (37710, 'https://ror.org/036yer645', 'no_lang_code', 1, 'https://ror.org/036yer645 Tellippalai Hospital'), (37711, 'https://ror.org/036z4hp15', 'en', 1, 'https://ror.org/036z4hp15 Nelson Mandela Academic Hospital'), (37712, 'https://ror.org/0371j5q71', 'no_lang_code', 1, 'https://ror.org/0371j5q71 Ørsted (Norway)'), (37713, 'https://ror.org/0374eby90', 'no_lang_code', 1, 'https://ror.org/0374eby90 Valkenberg Hospital'), (37714, 'https://ror.org/03753r186', 'en', 1, 'https://ror.org/03753r186 Dupont Hospital'), (37715, 'https://ror.org/0375jhj23', 'en', 1, 'https://ror.org/0375jhj23 Little Flower Hospital & Research Centre'), (37716, 'https://ror.org/0376qrw20', 'no_lang_code', 1, 'https://ror.org/0376qrw20 AnaCon (Norway)'), (37717, 'https://ror.org/0377jb567', 'no_lang_code', 1, 'https://ror.org/0377jb567 Expology (Norway)'), (37718, 'https://ror.org/0377q3w53', 'en', 1, 'https://ror.org/0377q3w53 Saskatchewan Hospital'), (37719, 'https://ror.org/037958547', 'en', 1, 'https://ror.org/037958547 Munch Museum'), (37720, 'https://ror.org/0379mtc39', 'no_lang_code', 1, 'https://ror.org/0379mtc39 Metronik (Slovenia)'), (37721, 'https://ror.org/0379wsf91', 'no_lang_code', 1, 'https://ror.org/0379wsf91 Nextsys (Norway)'), (37722, 'https://ror.org/037afsz69', 'no_lang_code', 1, 'https://ror.org/037afsz69 BioMar (Norway)'), (37723, 'https://ror.org/037asfq15', 'en', 1, 'https://ror.org/037asfq15 Thai Nguyen National General Hospital'), (37724, 'https://ror.org/037c3sd41', 'pt', 1, 'https://ror.org/037c3sd41 Fondazione Università Vita Cristiana Fundação Universitária Vida Cristã'), (37725, 'https://ror.org/037e53n70', 'no_lang_code', 1, 'https://ror.org/037e53n70 Marine design (Norway)'), (37726, 'https://ror.org/037emwa26', 'en', 1, 'https://ror.org/037emwa26 Polish Wood Cluster'), (37727, 'https://ror.org/037hcxy67', 'no_lang_code', 1, 'https://ror.org/037hcxy67 eDrilling (Norway)'), (37728, 'https://ror.org/037hj0t48', 'no_lang_code', 1, 'https://ror.org/037hj0t48 HIPOT-RR (Slovenia)'), (37729, 'https://ror.org/037hw8d27', 'en', 1, 'https://ror.org/037hw8d27 Bestian Medical Center'), (37730, 'https://ror.org/037kzdg33', 'it', 1, 'https://ror.org/037kzdg33 Santissima Trinità'), (37731, 'https://ror.org/037nj1h98', 'en', 1, 'https://ror.org/037nj1h98 Labmass Laboratory'), (37732, 'https://ror.org/037p52j25', 'en', 1, 'https://ror.org/037p52j25 Institute of Theoretical and Applied Informatics Instytut Informatyki Teoretycznej i Stosowanej Polskiej Akademii Nauk'), (37733, 'https://ror.org/037p86664', 'en', 1, 'https://ror.org/037p86664 Leibniz Institute for Crystal Growth Leibniz-Institut für Kristallzüchtung'), (37734, 'https://ror.org/037pdaj95', 'no_lang_code', 1, 'https://ror.org/037pdaj95 Sheriff Film Company (Norway)'), (37735, 'https://ror.org/037r20s14', 'en', 1, 'https://ror.org/037r20s14 Bellona Foundation'), (37736, 'https://ror.org/037sc9d45', 'en', 1, 'https://ror.org/037sc9d45 Lillestrøm Centre of Expertise'), (37737, 'https://ror.org/037ssjt43', 'no_lang_code', 1, 'https://ror.org/037ssjt43 Martje Venter Hospital'), (37738, 'https://ror.org/037ve0v69', 'en', 1, 'https://ror.org/037ve0v69 Yanbian University Hospital'), (37739, 'https://ror.org/037w1y594', 'en', 1, 'https://ror.org/037w1y594 International Hospital of Bahrain مستشفى البحرين الدولي'), (37740, 'https://ror.org/037wp0751', 'en', 1, 'https://ror.org/037wp0751 Gratz College'), (37741, 'https://ror.org/037x86n09', 'pl', 1, 'https://ror.org/037x86n09 Centrum Cyfrowe Projekt'), (37742, 'https://ror.org/037z21177', 'no_lang_code', 1, 'https://ror.org/037z21177 Pro Barents (Norway)'), (37743, 'https://ror.org/037zgz558', 'en', 1, 'https://ror.org/037zgz558 Vavuniya General Hospital'), (37744, 'https://ror.org/037zm3n13', 'no_lang_code', 1, 'https://ror.org/037zm3n13 Fosbrasil (Brazil)'), (37745, 'https://ror.org/03803zg51', 'no_lang_code', 1, 'https://ror.org/03803zg51 Biopcycle (Brazil)'), (37746, 'https://ror.org/03850me26', 'en', 1, 'https://ror.org/03850me26 Mutolere Hospital'), (37747, 'https://ror.org/0385e5n50', 'no_lang_code', 1, 'https://ror.org/0385e5n50 Ineos (Norway)'), (37748, 'https://ror.org/0387h3509', 'no_lang_code', 1, 'https://ror.org/0387h3509 Spartacus Forlag (Norway)'), (37749, 'https://ror.org/0387raj07', 'de', 1, 'https://ror.org/0387raj07 Asklepios Klinik St. Georg'), (37750, 'https://ror.org/0388pet74', 'en', 1, 'https://ror.org/0388pet74 Office of Emerging Frontiers and Multidisciplinary Activities'), (37751, 'https://ror.org/038a7tx93', 'no', 1, 'https://ror.org/038a7tx93 Materialisten'), (37752, 'https://ror.org/038arc322', 'en', 1, 'https://ror.org/038arc322 Asia-Pacific Society for Computers in Education'), (37753, 'https://ror.org/038astr05', 'en', 1, 'https://ror.org/038astr05 Dominican House of Studies'), (37754, 'https://ror.org/038awey71', 'en', 1, 'https://ror.org/038awey71 Management Research Institute'), (37755, 'https://ror.org/038b7sx49', 'no_lang_code', 1, 'https://ror.org/038b7sx49 Adaptimmune (United Kingdom)'), (37756, 'https://ror.org/038c55s31', 'en', 1, 'https://ror.org/038c55s31 Dar es Salaam Institute of Technology'), (37757, 'https://ror.org/038dzsp73', 'no_lang_code', 1, 'https://ror.org/038dzsp73 C-NAV (Norway)'), (37758, 'https://ror.org/038g0j466', 'en', 1, 'https://ror.org/038g0j466 Fort Grey TB Hospital'), (37759, 'https://ror.org/038m8dc24', 'en', 1, 'https://ror.org/038m8dc24 Great Basin College'), (37760, 'https://ror.org/038ny6229', 'no_lang_code', 1, 'https://ror.org/038ny6229 RED Consulting (Norway)'), (37761, 'https://ror.org/038p3sh66', 'no_lang_code', 1, 'https://ror.org/038p3sh66 Eikonal do Brasil (Brazil)'), (37762, 'https://ror.org/038pj4t13', 'en', 1, 'https://ror.org/038pj4t13 Collège universitaire du nord University College of the North'), (37763, 'https://ror.org/038q6p167', 'no_lang_code', 1, 'https://ror.org/038q6p167 Hyperthermics (Norway)'), (37764, 'https://ror.org/038rse530', 'no_lang_code', 1, 'https://ror.org/038rse530 Sumitomo Rubber Industries (Japan) 住友ゴム工業株式会社'), (37765, 'https://ror.org/038wth296', 'no_lang_code', 1, 'https://ror.org/038wth296 Scanwatt (Norway)'), (37766, 'https://ror.org/038wvk427', 'pt', 1, 'https://ror.org/038wvk427 Secretaria Municipal de Desenvolvimento Econômico e Negócios de Turismo'), (37767, 'https://ror.org/038xfsp37', 'no_lang_code', 1, 'https://ror.org/038xfsp37 EMO Orodjarna (Slovenia)'), (37768, 'https://ror.org/038y3xt87', 'en', 1, 'https://ror.org/038y3xt87 Aga Khan Hospital, Kisumu'), (37769, 'https://ror.org/038ydmp22', 'no_lang_code', 1, 'https://ror.org/038ydmp22 Alpha Br Produtos Químicos (Brazil)'), (37770, 'https://ror.org/038ynt641', 'no_lang_code', 1, 'https://ror.org/038ynt641 Symphonical (Norway)'), (37771, 'https://ror.org/038z2kp14', 'en', 1, 'https://ror.org/038z2kp14 Blue Mountain Hospital'), (37772, 'https://ror.org/038zrcp32', 'en', 1, 'https://ror.org/038zrcp32 Energy Norway'), (37773, 'https://ror.org/0390t1205', 'en', 1, 'https://ror.org/0390t1205 Saskatoon City Hospital'), (37774, 'https://ror.org/0392qcg83', 'no_lang_code', 1, 'https://ror.org/0392qcg83 Corollarium (Brazil)'), (37775, 'https://ror.org/0396mnx76', 'es', 1, 'https://ror.org/0396mnx76 Hospital de Manises'), (37776, 'https://ror.org/039726g63', 'no_lang_code', 1, 'https://ror.org/039726g63 Cardiaccs (Norway)'), (37777, 'https://ror.org/0398fjy18', 'en', 1, 'https://ror.org/0398fjy18 St Francis Chronic Hospital'), (37778, 'https://ror.org/0399rn938', 'no_lang_code', 1, 'https://ror.org/0399rn938 Inventas (Norway)'), (37779, 'https://ror.org/039a9p804', 'no_lang_code', 1, 'https://ror.org/039a9p804 Reinertsen (Norway)'), (37780, 'https://ror.org/039j5vj89', 'en', 1, 'https://ror.org/039j5vj89 Prevention of Organ Failure'), (37781, 'https://ror.org/039javj55', 'fr', 1, 'https://ror.org/039javj55 Institut de Recherches en Technologies et Sciences pour le Vivant'), (37782, 'https://ror.org/039jpp391', 'no_lang_code', 1, 'https://ror.org/039jpp391 Defa (Norway)'), (37783, 'https://ror.org/039kas258', 'en', 1, 'https://ror.org/039kas258 Imperial Valley College'), (37784, 'https://ror.org/039mdjd71', 'en', 1, 'https://ror.org/039mdjd71 Central Texas College'), (37785, 'https://ror.org/039n2wf68', 'no_lang_code', 1, 'https://ror.org/039n2wf68 Kokilaben Dhirubhai Ambani Hospital'), (37786, 'https://ror.org/039r09095', 'no_lang_code', 1, 'https://ror.org/039r09095 SillaJen (United States)'), (37787, 'https://ror.org/039rg3x29', 'en', 1, 'https://ror.org/039rg3x29 City of Bristol College'), (37788, 'https://ror.org/039s5aa86', 'no_lang_code', 1, 'https://ror.org/039s5aa86 Optsensys (Brazil)'), (37789, 'https://ror.org/039t3gk55', 'no_lang_code', 1, 'https://ror.org/039t3gk55 Biopdi (Brazil)'), (37790, 'https://ror.org/039v11z91', 'en', 1, 'https://ror.org/039v11z91 Biratnagar Eye Hospital'), (37791, 'https://ror.org/039v2y730', 'en', 1, 'https://ror.org/039v2y730 Summa St. Thomas Hospital'), (37792, 'https://ror.org/039xdzv43', 'en', 1, 'https://ror.org/039xdzv43 Norwegian Maritime Authority'), (37793, 'https://ror.org/03a07kg34', 'pl', 1, 'https://ror.org/03a07kg34 Uniwersytecki Szpital Kliniczny w Olsztynie'), (37794, 'https://ror.org/03a0eje69', 'no_lang_code', 1, 'https://ror.org/03a0eje69 Helioenergia (Poland)'), (37795, 'https://ror.org/03a22gk67', 'en', 1, 'https://ror.org/03a22gk67 Anton Trstenjak Institute'), (37796, 'https://ror.org/03a3xs663', 'pt', 1, 'https://ror.org/03a3xs663 Secretaria do Meio Ambiente'), (37797, 'https://ror.org/03a470v04', 'en', 1, 'https://ror.org/03a470v04 Kabale Hospital'), (37798, 'https://ror.org/03acm9457', 'no_lang_code', 1, 'https://ror.org/03acm9457 Parker Maritime (Norway)'), (37799, 'https://ror.org/03ad5a420', 'no_lang_code', 1, 'https://ror.org/03ad5a420 Grupa Azoty (Poland)'), (37800, 'https://ror.org/03ag00v40', 'no_lang_code', 1, 'https://ror.org/03ag00v40 Devoteam (Norway)'), (37801, 'https://ror.org/03ahnb373', 'en', 1, 'https://ror.org/03ahnb373 Institute for developmental and strategic analysis'), (37802, 'https://ror.org/03ajdty96', 'no', 1, 'https://ror.org/03ajdty96 Norsif'), (37803, 'https://ror.org/03am6ps88', 'en', 1, 'https://ror.org/03am6ps88 Institute for Spatial Policies Inštitut za politike prostora'), (37804, 'https://ror.org/03andxb27', 'no_lang_code', 1, 'https://ror.org/03andxb27 Medistem (Panama)'), (37805, 'https://ror.org/03angs540', 'no_lang_code', 1, 'https://ror.org/03angs540 Gether (Norway)'), (37806, 'https://ror.org/03aqe2s98', 'no_lang_code', 1, 'https://ror.org/03aqe2s98 Structum (Slovenia)'), (37807, 'https://ror.org/03armkb15', 'en', 1, 'https://ror.org/03armkb15 Pomerado Hospital'), (37808, 'https://ror.org/03as2hc70', 'en', 1, 'https://ror.org/03as2hc70 Instytut Technik Innowacyjnych EMAG Łukasiewicz Research Network - Institute of Innovative Technologies EMAG'), (37809, 'https://ror.org/03asev112', 'en', 1, 'https://ror.org/03asev112 London Bridge Hospital'), (37810, 'https://ror.org/03asvq815', 'en', 1, 'https://ror.org/03asvq815 Central University of Kashmir कश्मीर केन्द्रीय विश्वविद्यालय'), (37811, 'https://ror.org/03at7j224', 'en', 1, 'https://ror.org/03at7j224 Manhattan Christian College'), (37812, 'https://ror.org/03atmxx79', 'en', 1, 'https://ror.org/03atmxx79 Westerly Hospital'), (37813, 'https://ror.org/03axr8b14', 'pt', 1, 'https://ror.org/03axr8b14 Conselho de reitores das Universidades Estaduais de São Paulo'), (37814, 'https://ror.org/03ayyme69', 'no', 1, 'https://ror.org/03ayyme69 Troms Fylkeskommune'), (37815, 'https://ror.org/03azf9x72', 'no_lang_code', 1, 'https://ror.org/03azf9x72 Edtech Foundry (Norway)'), (37816, 'https://ror.org/03b081a48', 'no_lang_code', 1, 'https://ror.org/03b081a48 CLB Engenharia Consultiva (Brazil)'), (37817, 'https://ror.org/03b0jpz35', 'no_lang_code', 1, 'https://ror.org/03b0jpz35 Normex (Norway)'), (37818, 'https://ror.org/03b2r8705', 'no', 1, 'https://ror.org/03b2r8705 Sørlandslisten'), (37819, 'https://ror.org/03b5r3y93', 'no', 1, 'https://ror.org/03b5r3y93 Wikimedia Norge'), (37820, 'https://ror.org/03b5xce19', 'en', 1, 'https://ror.org/03b5xce19 South Seminole Hospital'), (37821, 'https://ror.org/03b6zwf53', 'en', 1, 'https://ror.org/03b6zwf53 Finnish Society for Nutrition Research'), (37822, 'https://ror.org/03b9q7371', 'en', 1, 'https://ror.org/03b9q7371 Hochschule Neubrandenburg Neubrandenburg University of Applied Sciences'), (37823, 'https://ror.org/03b9s4g93', 'en', 1, 'https://ror.org/03b9s4g93 Hutchinson Community College'), (37824, 'https://ror.org/03b9y3q37', 'pt', 1, 'https://ror.org/03b9y3q37 Sociedade Brasileira de Estudos de Cinema e Audiovisual'), (37825, 'https://ror.org/03batkt67', 'no_lang_code', 1, 'https://ror.org/03batkt67 Arcont (Slovenia)'), (37826, 'https://ror.org/03bavv282', 'pt', 1, 'https://ror.org/03bavv282 Associação Brasileira de Tratamentos de Superfície'), (37827, 'https://ror.org/03bbqn881', 'de', 1, 'https://ror.org/03bbqn881 Gottfried Wilhelm Leibniz Bibliothek'), (37828, 'https://ror.org/03bc1mz40', 'en', 1, 'https://ror.org/03bc1mz40 Ibero-American Institute Ibero-Amerikanisches Institut Instituto Ibero-Americano Patrimonio Cultural Prusiano'), (37829, 'https://ror.org/03bchcy62', 'en', 1, 'https://ror.org/03bchcy62 Tax Justice Network'), (37830, 'https://ror.org/03bdanr16', 'no_lang_code', 1, 'https://ror.org/03bdanr16 SuperZinco (Brazil)'), (37831, 'https://ror.org/03bdq2a67', 'no_lang_code', 1, 'https://ror.org/03bdq2a67 Acies Bio (Slovenia)'), (37832, 'https://ror.org/03bgteg28', 'no_lang_code', 1, 'https://ror.org/03bgteg28 Evangelical Presbyterian University College'), (37833, 'https://ror.org/03bh3se42', 'en', 1, 'https://ror.org/03bh3se42 Spring Valley Hospital'), (37834, 'https://ror.org/03bh7xn56', 'en', 1, 'https://ror.org/03bh7xn56 Laerdal Global Health'), (37835, 'https://ror.org/03bjv2y17', 'en', 1, 'https://ror.org/03bjv2y17 Orlov State University'), (37836, 'https://ror.org/03bk36k19', 'en', 1, 'https://ror.org/03bk36k19 Infectious Disease Models and Innovative Therapies'), (37837, 'https://ror.org/03bke4038', 'es', 1, 'https://ror.org/03bke4038 Hospital general de San Fernando, San Fernando General Hospital'), (37838, 'https://ror.org/03bpan768', 'de', 1, 'https://ror.org/03bpan768 Thüringisches Hauptstaatsarchiv Weimar'), (37839, 'https://ror.org/03bpgs673', 'no_lang_code', 1, 'https://ror.org/03bpgs673 Linus (Norway)'), (37840, 'https://ror.org/03bsbwd57', 'pt', 1, 'https://ror.org/03bsbwd57 Sociedade Brasileira de Biologia Celular'), (37841, 'https://ror.org/03bxx2v05', 'no_lang_code', 1, 'https://ror.org/03bxx2v05 CHR Cerâmica Técnica (Brazil)'), (37842, 'https://ror.org/03c1zct07', 'no', 1, 'https://ror.org/03c1zct07 Norsk Landbruksrådgiving'), (37843, 'https://ror.org/03c3mm140', 'en', 1, 'https://ror.org/03c3mm140 Nánfāng Dàxué Xuéyuàn Southern University College 南方大学学院'), (37844, 'https://ror.org/03c4e0176', 'no_lang_code', 1, 'https://ror.org/03c4e0176 Smia Gjerdeprodukter (Norway)'), (37845, 'https://ror.org/03c4nng82', 'no_lang_code', 1, 'https://ror.org/03c4nng82 Hutton Energy (Poland)'), (37846, 'https://ror.org/03c8hg310', 'no_lang_code', 1, 'https://ror.org/03c8hg310 Velana Living (Slovenia)'), (37847, 'https://ror.org/03c935487', 'no', 1, 'https://ror.org/03c935487 Eyde-Nettverket'), (37848, 'https://ror.org/03c9ncn37', 'en', 1, 'https://ror.org/03c9ncn37 Wuhan National Laboratory for Optoelectronics'), (37849, 'https://ror.org/03ccc5z68', 'de', 1, 'https://ror.org/03ccc5z68 Evangelische Hochschule Ludwigsburg'), (37850, 'https://ror.org/03ccj3w73', 'en', 1, 'https://ror.org/03ccj3w73 Heart Life Hospital 社会医療法人かりゆし会'), (37851, 'https://ror.org/03ccpe393', 'no_lang_code', 1, 'https://ror.org/03ccpe393 BASF (Norway)'), (37852, 'https://ror.org/03cdqv492', 'no_lang_code', 1, 'https://ror.org/03cdqv492 Timm (Norway)'), (37853, 'https://ror.org/03cdz5d08', 'en', 1, 'https://ror.org/03cdz5d08 Quality Enhancement Research Initiative'), (37854, 'https://ror.org/03cebfr78', 'no_lang_code', 1, 'https://ror.org/03cebfr78 Torvald Klaveness (Norway)'), (37855, 'https://ror.org/03cek7y17', 'no_lang_code', 1, 'https://ror.org/03cek7y17 Domel (Slovenia)'), (37856, 'https://ror.org/03cgmq069', 'no_lang_code', 1, 'https://ror.org/03cgmq069 DBV Technologies (France)'), (37857, 'https://ror.org/03cjy1t09', 'en', 1, 'https://ror.org/03cjy1t09 Hospital general de Puerto España Port of Spain General Hospital'), (37858, 'https://ror.org/03cm42t62', 'en', 1, 'https://ror.org/03cm42t62 Rajarshee Chhatrapati Shahu Maharaj Government Medical College and CPR Hospital Kolhapur'), (37859, 'https://ror.org/03cnzfb68', 'no_lang_code', 1, 'https://ror.org/03cnzfb68 Lerøy (Norway)'), (37860, 'https://ror.org/03cpk2k89', 'no_lang_code', 1, 'https://ror.org/03cpk2k89 Aquarius (Slovenia)'), (37861, 'https://ror.org/03cqb5x54', 'no_lang_code', 1, 'https://ror.org/03cqb5x54 Rotogine (Brazil)'), (37862, 'https://ror.org/03cqkrn62', 'no_lang_code', 1, 'https://ror.org/03cqkrn62 Massefabrikken'), (37863, 'https://ror.org/03cr88393', 'no_lang_code', 1, 'https://ror.org/03cr88393 Antares Eletrônica (Brazil)'), (37864, 'https://ror.org/03crstk25', 'no_lang_code', 1, 'https://ror.org/03crstk25 Jomar (Norway)'), (37865, 'https://ror.org/03crxcn36', 'en', 1, 'https://ror.org/03crxcn36 Albstadt-Sigmaringen University Hochschule Albstadt-Sigmaringen'), (37866, 'https://ror.org/03cw78f47', 'en', 1, 'https://ror.org/03cw78f47 Instituto Latino Americano da Sepse Latin American Sepsis Institute'), (37867, 'https://ror.org/03cwq3j60', 'en', 1, 'https://ror.org/03cwq3j60 Wilhelm Stahl Provincial Hospital'), (37868, 'https://ror.org/03cxg0n72', 'no_lang_code', 1, 'https://ror.org/03cxg0n72 Mitsubishi Corporation (Norway)'), (37869, 'https://ror.org/03czqdx05', 'en', 1, 'https://ror.org/03czqdx05 Bedford Provincial Hospital'), (37870, 'https://ror.org/03d11xx07', 'no_lang_code', 1, 'https://ror.org/03d11xx07 Alfa Laval (Norway)'), (37871, 'https://ror.org/03d1se459', 'en', 1, 'https://ror.org/03d1se459 St Cadoc''s Hospital'), (37872, 'https://ror.org/03d3kf570', 'en', 1, 'https://ror.org/03d3kf570 Orphanet'), (37873, 'https://ror.org/03d41qd17', 'no_lang_code', 1, 'https://ror.org/03d41qd17 OiW Process (Norway)'), (37874, 'https://ror.org/03d436n40', 'en', 1, 'https://ror.org/03d436n40 Florida Coastal School of Law'); INSERT INTO `rors` VALUES (37875, 'https://ror.org/03d5h2g68', 'no_lang_code', 1, 'https://ror.org/03d5h2g68 Nawaloka Hospital නවලෝක රෝහල'), (37876, 'https://ror.org/03d6j2008', 'en', 1, 'https://ror.org/03d6j2008 Lake Superior College'), (37877, 'https://ror.org/03d772195', 'no_lang_code', 1, 'https://ror.org/03d772195 Supra Elco (Poland)'), (37878, 'https://ror.org/03d8xe868', 'no', 1, 'https://ror.org/03d8xe868 Oppland Fylkeskommune'), (37879, 'https://ror.org/03d8y7214', 'en', 1, 'https://ror.org/03d8y7214 Yunnan Forestry Vocational and Technical College'), (37880, 'https://ror.org/03d9q1m75', 'no_lang_code', 1, 'https://ror.org/03d9q1m75 Petroleum Technology Company (Norway)'), (37881, 'https://ror.org/03dbjrt28', 'no_lang_code', 1, 'https://ror.org/03dbjrt28 Kverneland Aqua (Norway)'), (37882, 'https://ror.org/03dbk8y32', 'no_lang_code', 1, 'https://ror.org/03dbk8y32 H. Henriksen (Norway)'), (37883, 'https://ror.org/03dc24792', 'no_lang_code', 1, 'https://ror.org/03dc24792 Iskra Medical (Slovenia)'), (37884, 'https://ror.org/03dcjha26', 'no_lang_code', 1, 'https://ror.org/03dcjha26 Macrolog (Brazil)'), (37885, 'https://ror.org/03dd4nz58', 'en', 1, 'https://ror.org/03dd4nz58 Baptist Bible College'), (37886, 'https://ror.org/03ddg4c94', 'no_lang_code', 1, 'https://ror.org/03ddg4c94 SW2 Soluções em TI (Brazil)'), (37887, 'https://ror.org/03de1e587', 'en', 1, 'https://ror.org/03de1e587 Holland Hospital'), (37888, 'https://ror.org/03df3zw56', 'en', 1, 'https://ror.org/03df3zw56 Midland Regional Hospital at Tullamore Ospidéal Ginearálta Thulach Mhór'), (37889, 'https://ror.org/03dj06y91', 'no_lang_code', 1, 'https://ror.org/03dj06y91 Snøhetta (Norway)'), (37890, 'https://ror.org/03dncqh14', 'no_lang_code', 1, 'https://ror.org/03dncqh14 Ichimaru Pharcos (Japan)'), (37891, 'https://ror.org/03dpjfc73', 'en', 1, 'https://ror.org/03dpjfc73 Amsterdam University College'), (37892, 'https://ror.org/03dsp8w17', 'en', 1, 'https://ror.org/03dsp8w17 Union General Hospital'), (37893, 'https://ror.org/03dwaqx98', 'no_lang_code', 1, 'https://ror.org/03dwaqx98 Femto (Brazil)'), (37894, 'https://ror.org/03dxa6r53', 'no_lang_code', 1, 'https://ror.org/03dxa6r53 Hemnes Mekaniske Verksted (Norway)'), (37895, 'https://ror.org/03e3wca31', 'en', 1, 'https://ror.org/03e3wca31 Canning College'), (37896, 'https://ror.org/03e49jp29', 'no_lang_code', 1, 'https://ror.org/03e49jp29 Zakłady Urządzeń Kotłowych Stąporków (Poland)'), (37897, 'https://ror.org/03e70fp94', 'en', 1, 'https://ror.org/03e70fp94 Oslo Medtech'), (37898, 'https://ror.org/03e7k3562', 'en', 1, 'https://ror.org/03e7k3562 St Barnabas Hospital'), (37899, 'https://ror.org/03e9kb581', 'no_lang_code', 1, 'https://ror.org/03e9kb581 Ferring Pharmaceuticals (United Kingdom)'), (37900, 'https://ror.org/03ebbfh95', 'en', 1, 'https://ror.org/03ebbfh95 Fraunhofer Institute for Laser Technology Fraunhofer-Institut für Lasertechnik'), (37901, 'https://ror.org/03ebv4744', 'en', 1, 'https://ror.org/03ebv4744 University College of the Cayman Islands'), (37902, 'https://ror.org/03ec28972', 'en', 1, 'https://ror.org/03ec28972 Hamburg Institute for Social Research Hamburger Institut für Sozialforschung'), (37903, 'https://ror.org/03edcef46', 'no_lang_code', 1, 'https://ror.org/03edcef46 Acquest (Brazil)'), (37904, 'https://ror.org/03edgm225', 'en', 1, 'https://ror.org/03edgm225 Nebraska Orthopaedic Hospital'), (37905, 'https://ror.org/03edsg024', 'en', 1, 'https://ror.org/03edsg024 Hospital Sultan Haji Ahmad Shah Sultan Haji Ahmad Shah Hospital'), (37906, 'https://ror.org/03eem3b66', 'no_lang_code', 1, 'https://ror.org/03eem3b66 Faafu Atoll Hospital'), (37907, 'https://ror.org/03efsge90', 'en', 1, 'https://ror.org/03efsge90 Steinbeis University Berlin Steinbeis-Hochschule Berlin'), (37908, 'https://ror.org/03ejke973', 'no_lang_code', 1, 'https://ror.org/03ejke973 NCC (Norway)'), (37909, 'https://ror.org/03em5rb28', 'en', 1, 'https://ror.org/03em5rb28 Nalanda Medical College and Hospital नालन्दा मेडिकल कॉलेज और अस्पताल'), (37910, 'https://ror.org/03eqe9f63', 'es', 1, 'https://ror.org/03eqe9f63 Hospital Universitario de la Samaritana University Hospital of the Samaritan'), (37911, 'https://ror.org/03es91d09', 'no_lang_code', 1, 'https://ror.org/03es91d09 Acer Novo Mesto (Slovenia)'), (37912, 'https://ror.org/03ewzbm88', 'en', 1, 'https://ror.org/03ewzbm88 Sapporo Toho Hospital'), (37913, 'https://ror.org/03ezm5049', 'no', 1, 'https://ror.org/03ezm5049 Tannlege Ole Christian Amundsen'), (37914, 'https://ror.org/03f2jcq85', 'tr', 1, 'https://ror.org/03f2jcq85 Diyarbakır Gazi Yaşargil Eğitim ve Araştırma Hastanesi'), (37915, 'https://ror.org/03f6y6166', 'en', 1, 'https://ror.org/03f6y6166 Lira Hospital'), (37916, 'https://ror.org/03f8dte96', 'no_lang_code', 1, 'https://ror.org/03f8dte96 Onion Tecnologia (Brazil)'), (37917, 'https://ror.org/03fatc842', 'en', 1, 'https://ror.org/03fatc842 Jose Pearson TB Hospital'), (37918, 'https://ror.org/03fb1av13', 'no_lang_code', 1, 'https://ror.org/03fb1av13 Tomax (Norway)'), (37919, 'https://ror.org/03fb58t45', 'en', 1, 'https://ror.org/03fb58t45 Maharishi University of Management and Technology'), (37920, 'https://ror.org/03fbtkm67', 'no_lang_code', 1, 'https://ror.org/03fbtkm67 Prekubator (Norway)'), (37921, 'https://ror.org/03fd44j44', 'no_lang_code', 1, 'https://ror.org/03fd44j44 Beike Biotechnology (China) 北科生物科技'), (37922, 'https://ror.org/03fe6f421', 'no_lang_code', 1, 'https://ror.org/03fe6f421 Brascoelma (Brazil)'), (37923, 'https://ror.org/03fevrz39', 'no_lang_code', 1, 'https://ror.org/03fevrz39 SuperOffice (Norway)'), (37924, 'https://ror.org/03ffv2k10', 'en', 1, 'https://ror.org/03ffv2k10 Offshore Renewable Energy Catapult'), (37925, 'https://ror.org/03fgkm950', 'en', 1, 'https://ror.org/03fgkm950 Harcum College'), (37926, 'https://ror.org/03fh45z28', 'en', 1, 'https://ror.org/03fh45z28 Charles Stewart Mott Foundation'), (37927, 'https://ror.org/03fhbcz65', 'no_lang_code', 1, 'https://ror.org/03fhbcz65 Confocal Science (Japan)'), (37928, 'https://ror.org/03fjs1746', 'no_lang_code', 1, 'https://ror.org/03fjs1746 Herbjørn Kolstad (Norway)'), (37929, 'https://ror.org/03fknzz27', 'no_lang_code', 1, 'https://ror.org/03fknzz27 E-Test (Poland)'), (37930, 'https://ror.org/03fm4pf61', 'en', 1, 'https://ror.org/03fm4pf61 Milan Vidmar Electric Power Research Institute'), (37931, 'https://ror.org/03fmefz35', 'en', 1, 'https://ror.org/03fmefz35 Lagan Valley Hospital'), (37932, 'https://ror.org/03fnhx680', 'no_lang_code', 1, 'https://ror.org/03fnhx680 Oshaug Metall (Norway)'), (37933, 'https://ror.org/03fp2bh88', 'en', 1, 'https://ror.org/03fp2bh88 Mount Carmel Hospital'), (37934, 'https://ror.org/03fpa6x12', 'no_lang_code', 1, 'https://ror.org/03fpa6x12 Oil Tools Of Norway (Norway)'), (37935, 'https://ror.org/03fpmzv72', 'no_lang_code', 1, 'https://ror.org/03fpmzv72 Krajowa Spółka Cukrowa (Poland)'), (37936, 'https://ror.org/03frnyk41', 'pt', 1, 'https://ror.org/03frnyk41 Associação Saúde da Família'), (37937, 'https://ror.org/03frs5880', 'no_lang_code', 1, 'https://ror.org/03frs5880 Delprodukt (Norway)'), (37938, 'https://ror.org/03frvp088', 'en', 1, 'https://ror.org/03frvp088 International University for Science and Technology'), (37939, 'https://ror.org/03fs8gt32', 'no_lang_code', 1, 'https://ror.org/03fs8gt32 Plasto (Norway)'), (37940, 'https://ror.org/03ft27t79', 'no_lang_code', 1, 'https://ror.org/03ft27t79 Advanced Materials and Technologies (Slovenia)'), (37941, 'https://ror.org/03fvtr511', 'en', 1, 'https://ror.org/03fvtr511 Hanscom Air Force Base'), (37942, 'https://ror.org/03fvzd757', 'en', 1, 'https://ror.org/03fvzd757 Blackpool and The Fylde College'), (37943, 'https://ror.org/03fw3x319', 'en', 1, 'https://ror.org/03fw3x319 Frölunda Specialist Hospital Frölunda Specialistsjukhus'), (37944, 'https://ror.org/03fwdp923', 'no_lang_code', 1, 'https://ror.org/03fwdp923 ReaQuim (Brazil)'), (37945, 'https://ror.org/03fwf5291', 'no_lang_code', 1, 'https://ror.org/03fwf5291 Patentus (Poland)'), (37946, 'https://ror.org/03fytj861', 'en', 1, 'https://ror.org/03fytj861 La Palma Intercommunity Hospital'), (37947, 'https://ror.org/03g4xy420', 'no_lang_code', 1, 'https://ror.org/03g4xy420 IBSS BIOMED (Poland)'), (37948, 'https://ror.org/03g6dfe56', 'en', 1, 'https://ror.org/03g6dfe56 Garden Organic'), (37949, 'https://ror.org/03g7zhh97', 'en', 1, 'https://ror.org/03g7zhh97 Uist and Barra Hospital'), (37950, 'https://ror.org/03g87he71', 'en', 1, 'https://ror.org/03g87he71 Division of Environmental Biology'), (37951, 'https://ror.org/03gd0pk10', 'no_lang_code', 1, 'https://ror.org/03gd0pk10 Yashoda Hospital'), (37952, 'https://ror.org/03gde5b77', 'no_lang_code', 1, 'https://ror.org/03gde5b77 IOR Chemco (Norway)'), (37953, 'https://ror.org/03gezv924', 'no_lang_code', 1, 'https://ror.org/03gezv924 Intel (Taiwan)'), (37954, 'https://ror.org/03ggx6m14', 'pt', 1, 'https://ror.org/03ggx6m14 Muncipal de Bom Jesus do Itabapoana'), (37955, 'https://ror.org/03gj2cq31', 'en', 1, 'https://ror.org/03gj2cq31 Max Planck Institute for Tax Law and Public Finance Max-Planck-Institut für Steuerrecht und Öffentliche Finanzen'), (37956, 'https://ror.org/03gm8q023', 'no_lang_code', 1, 'https://ror.org/03gm8q023 Vizrt (Norway)'), (37957, 'https://ror.org/03gt4py31', 'no_lang_code', 1, 'https://ror.org/03gt4py31 Smartbrain (Norway)'), (37958, 'https://ror.org/03gth6e91', 'en', 1, 'https://ror.org/03gth6e91 Ospidéal Ollscoile Chiarraí University Hospital Kerry'), (37959, 'https://ror.org/03gw23n83', 'no_lang_code', 1, 'https://ror.org/03gw23n83 Górnośląski Park Przemysłowy (Poland)'), (37960, 'https://ror.org/03gwhmn95', 'en', 1, 'https://ror.org/03gwhmn95 Institute of Genetics'), (37961, 'https://ror.org/03gxy9f87', 'en', 1, 'https://ror.org/03gxy9f87 Chengdu Fifth People''s Hospital'), (37962, 'https://ror.org/03gyd9q58', 'no_lang_code', 1, 'https://ror.org/03gyd9q58 Annoroad Gene Technology (China)'), (37963, 'https://ror.org/03h1e6k67', 'en', 1, 'https://ror.org/03h1e6k67 Trichur Heart Hospital'), (37964, 'https://ror.org/03h2ryz41', 'no_lang_code', 1, 'https://ror.org/03h2ryz41 Adresseavisen (Norway)'), (37965, 'https://ror.org/03h4k9g13', 'no_lang_code', 1, 'https://ror.org/03h4k9g13 Aqua Bio Technology (Norway)'), (37966, 'https://ror.org/03h4tn103', 'en', 1, 'https://ror.org/03h4tn103 Arkansas Public Service Commission'), (37967, 'https://ror.org/03h58v266', 'no_lang_code', 1, 'https://ror.org/03h58v266 CellCura (Norway)'), (37968, 'https://ror.org/03h61ra63', 'en', 1, 'https://ror.org/03h61ra63 Fraunhofer Center for International Management and Knowledge Economy Fraunhofer-Zentrum für Internationales Management und Wissensökonomie'), (37969, 'https://ror.org/03h66a821', 'no_lang_code', 1, 'https://ror.org/03h66a821 ADTS (Brazil)'), (37970, 'https://ror.org/03h68ys54', 'no_lang_code', 1, 'https://ror.org/03h68ys54 Kongsberg Automotive (Poland)'), (37971, 'https://ror.org/03h6f8g89', 'no_lang_code', 1, 'https://ror.org/03h6f8g89 Seagarden (Norway)'), (37972, 'https://ror.org/03h6wcn09', 'no_lang_code', 1, 'https://ror.org/03h6wcn09 Smerud Medical Research (Norway)'), (37973, 'https://ror.org/03h7kv823', 'en', 1, 'https://ror.org/03h7kv823 Institute for Sustainable Innovative Technologies'), (37974, 'https://ror.org/03hb33c79', 'en', 1, 'https://ror.org/03hb33c79 Gansu Provincial Cancer Hospital Gansu Provincial Academic Instiute for Medical Research 甘肃省医学科学研究院'), (37975, 'https://ror.org/03hc5gb19', 'no_lang_code', 1, 'https://ror.org/03hc5gb19 American Industrial Partners (United States)'), (37976, 'https://ror.org/03hf7ar06', 'no_lang_code', 1, 'https://ror.org/03hf7ar06 VIS Systems (Poland)'), (37977, 'https://ror.org/03hf9pe15', 'en', 1, 'https://ror.org/03hf9pe15 Røyken Municipality'), (37978, 'https://ror.org/03hjnd594', 'no_lang_code', 1, 'https://ror.org/03hjnd594 San’an Optoelectronics (China)'), (37979, 'https://ror.org/03hjp7620', 'en', 1, 'https://ror.org/03hjp7620 Central Party School of the Communist Party of China 中共中央党校'), (37980, 'https://ror.org/03hjz0g77', 'no_lang_code', 1, 'https://ror.org/03hjz0g77 Applied Petroleum Technology (Norway)'), (37981, 'https://ror.org/03hpex020', 'en', 1, 'https://ror.org/03hpex020 Unity Fellowship Church Movement'), (37982, 'https://ror.org/03hqca282', 'en', 1, 'https://ror.org/03hqca282 Norwegian Association for Development Research'), (37983, 'https://ror.org/03hrj0y40', 'no_lang_code', 1, 'https://ror.org/03hrj0y40 Syslab International (Norway)'), (37984, 'https://ror.org/03hsyk684', 'no_lang_code', 1, 'https://ror.org/03hsyk684 Nextera (Norway)'), (37985, 'https://ror.org/03ht2bz32', 'en', 1, 'https://ror.org/03ht2bz32 Institute of Medical Sciences and Sum Hospital'), (37986, 'https://ror.org/03hw14970', 'no_lang_code', 1, 'https://ror.org/03hw14970 Synlab (Germany)'), (37987, 'https://ror.org/03hw2sw66', 'en', 1, 'https://ror.org/03hw2sw66 Sociedade de Botânica de São Paulo São Paulo Botanical Society'), (37988, 'https://ror.org/03hwy2z57', 'en', 1, 'https://ror.org/03hwy2z57 Paul University Awka'), (37989, 'https://ror.org/03hxbk195', 'de', 1, 'https://ror.org/03hxbk195 Kliniken der Stadt Köln'), (37990, 'https://ror.org/03hy7r126', 'no_lang_code', 1, 'https://ror.org/03hy7r126 Warm Systems (Norway)'), (37991, 'https://ror.org/03hzkp562', 'de', 1, 'https://ror.org/03hzkp562 Academy of Visual Arts Leipzig Hochschule für Grafik und Buchkunst Leipzig'), (37992, 'https://ror.org/03j2t9x72', 'no_lang_code', 1, 'https://ror.org/03j2t9x72 Salto (Norway)'), (37993, 'https://ror.org/03j3ybc16', 'no_lang_code', 1, 'https://ror.org/03j3ybc16 Vedde (Norway)'), (37994, 'https://ror.org/03j4kg535', 'en', 1, 'https://ror.org/03j4kg535 Gateway Technical College'), (37995, 'https://ror.org/03j4kxk06', 'no_lang_code', 1, 'https://ror.org/03j4kxk06 Enovate (Norway)'), (37996, 'https://ror.org/03j5ebv52', 'en', 1, 'https://ror.org/03j5ebv52 Zero Emissions Resource Organisation'), (37997, 'https://ror.org/03j5m6417', 'no_lang_code', 1, 'https://ror.org/03j5m6417 Vista Analyse (Norway)'), (37998, 'https://ror.org/03j6dmn04', 'no_lang_code', 1, 'https://ror.org/03j6dmn04 MSP (Poland)'), (37999, 'https://ror.org/03j7efk91', 'en', 1, 'https://ror.org/03j7efk91 New Chemical Syntheses Institute'), (38000, 'https://ror.org/03j8tnm47', 'en', 1, 'https://ror.org/03j8tnm47 Centre fédéral d''éducation technologique celso suckow da fonseca Centro Federal de Educação Tecnológica Celso Suckow da Fonseca Federal Center for Technological Education Celso Suckow da Fonseca'), (38001, 'https://ror.org/03j93xk55', 'no_lang_code', 1, 'https://ror.org/03j93xk55 Zhejiang Hisun Pharmaceutical (China)'), (38002, 'https://ror.org/03jbfte74', 'no_lang_code', 1, 'https://ror.org/03jbfte74 Restrack (Norway)'), (38003, 'https://ror.org/03jc49e50', 'en', 1, 'https://ror.org/03jc49e50 Darshan Dental College and Hospital'), (38004, 'https://ror.org/03jchgp61', 'no_lang_code', 1, 'https://ror.org/03jchgp61 Impol (Slovenia)'), (38005, 'https://ror.org/03jexcz37', 'en', 1, 'https://ror.org/03jexcz37 Central Institute of Technology'), (38006, 'https://ror.org/03jkgmn26', 'no_lang_code', 1, 'https://ror.org/03jkgmn26 PUH Team (Slovenia)'), (38007, 'https://ror.org/03jm3ya95', 'en', 1, 'https://ror.org/03jm3ya95 Oroville Hospital'), (38008, 'https://ror.org/03jnqax33', 'no_lang_code', 1, 'https://ror.org/03jnqax33 TSO Logic (Canada)'), (38009, 'https://ror.org/03jp77920', 'no_lang_code', 1, 'https://ror.org/03jp77920 PBS (Poland)'), (38010, 'https://ror.org/03jpq8k18', 'no_lang_code', 1, 'https://ror.org/03jpq8k18 Wireless Instrumentation Systems (Norway)'), (38011, 'https://ror.org/03jpsgw63', 'no_lang_code', 1, 'https://ror.org/03jpsgw63 Cytovation (Norway)'), (38012, 'https://ror.org/03jpvv707', 'no_lang_code', 1, 'https://ror.org/03jpvv707 AM Technologies (Poland)'), (38013, 'https://ror.org/03jv3zx29', 'en', 1, 'https://ror.org/03jv3zx29 Foundation of Cardiac Surgery Development'), (38014, 'https://ror.org/03jvj6959', 'en', 1, 'https://ror.org/03jvj6959 Vanivilas Women and Children Hospital'), (38015, 'https://ror.org/03jx3ep44', 'no', 1, 'https://ror.org/03jx3ep44 Church Educational Centre Kirkelig Pedagogisk Senter'), (38016, 'https://ror.org/03jxb9w83', 'no', 1, 'https://ror.org/03jxb9w83 Norwegian Seafood Federation Sjømat Norge'), (38017, 'https://ror.org/03jygq783', 'en', 1, 'https://ror.org/03jygq783 Carroll Hospital'), (38018, 'https://ror.org/03k18wv31', 'no_lang_code', 1, 'https://ror.org/03k18wv31 Instituto Internacional de Ecologia (Brazil)'), (38019, 'https://ror.org/03k1p5343', 'no_lang_code', 1, 'https://ror.org/03k1p5343 Pit Radwar (Poland)'), (38020, 'https://ror.org/03k31r283', 'no_lang_code', 1, 'https://ror.org/03k31r283 Specodlew (Poland)'), (38021, 'https://ror.org/03k3gy769', 'en', 1, 'https://ror.org/03k3gy769 Itojo Hospital'), (38022, 'https://ror.org/03k83h416', 'no_lang_code', 1, 'https://ror.org/03k83h416 Compass (Brazil)'), (38023, 'https://ror.org/03kcw4w74', 'en', 1, 'https://ror.org/03kcw4w74 Brazilian Society of Computational and Applied Mathematics Sociedade Brasileira de Matemática Aplicada e Computacional'), (38024, 'https://ror.org/03kd6q497', 'no_lang_code', 1, 'https://ror.org/03kd6q497 Completion Technology Resources (Norway)'), (38025, 'https://ror.org/03kfqmz83', 'en', 1, 'https://ror.org/03kfqmz83 University of Technology and Management Université de technologie et management प्रौद्योगिकी एवं प्रबंधन विश्वविद्यालय'), (38026, 'https://ror.org/03kgran92', 'no_lang_code', 1, 'https://ror.org/03kgran92 Nexans (Norway)'), (38027, 'https://ror.org/03khqdg35', 'es', 1, 'https://ror.org/03khqdg35 Universidad de Zamboanga'), (38028, 'https://ror.org/03kjtb134', 'no_lang_code', 1, 'https://ror.org/03kjtb134 Tsan Yuk Hospital 贊育醫院'), (38029, 'https://ror.org/03kk5qq41', 'no_lang_code', 1, 'https://ror.org/03kk5qq41 WellSeek (United States)'), (38030, 'https://ror.org/03ks3nw90', 'pt', 1, 'https://ror.org/03ks3nw90 Escola da Cidade'), (38031, 'https://ror.org/03ktys708', 'no', 1, 'https://ror.org/03ktys708 Realistforeningen'), (38032, 'https://ror.org/03kvr9360', 'en', 1, 'https://ror.org/03kvr9360 181st Hospital of Chinese People''s Liberation Army'), (38033, 'https://ror.org/03kwc4219', 'en', 1, 'https://ror.org/03kwc4219 Jersey Community Hospital'), (38034, 'https://ror.org/03kwtfg48', 'no', 1, 'https://ror.org/03kwtfg48 Foreningen GranittRock'), (38035, 'https://ror.org/03kxws612', 'no_lang_code', 1, 'https://ror.org/03kxws612 Medema (Norway)'), (38036, 'https://ror.org/03ky2vw43', 'no_lang_code', 1, 'https://ror.org/03ky2vw43 Topro (Norway)'), (38037, 'https://ror.org/03m0r4h89', 'no_lang_code', 1, 'https://ror.org/03m0r4h89 Desun Hospital & Heart Institute'), (38038, 'https://ror.org/03m1j9m44', 'pt', 1, 'https://ror.org/03m1j9m44 Faculdade São Leopoldo Mandic'), (38039, 'https://ror.org/03m2axv35', 'en', 1, 'https://ror.org/03m2axv35 Finnish Jazz & Pop Archive'), (38040, 'https://ror.org/03m340337', 'en', 1, 'https://ror.org/03m340337 Tamil Nadu Government Multi Super Speciality Hospital தமிழ்நாடு புதிய சட்டமன்றம் மற்றும் தலைமை செயலக வளாகம்'), (38041, 'https://ror.org/03m3pb051', 'no_lang_code', 1, 'https://ror.org/03m3pb051 Scenario (Brazil)'), (38042, 'https://ror.org/03m6hxg23', 'pt', 1, 'https://ror.org/03m6hxg23 Sociedade Brasileira de Catálise'), (38043, 'https://ror.org/03m6mr356', 'no_lang_code', 1, 'https://ror.org/03m6mr356 Metafocus (Norway)'), (38044, 'https://ror.org/03ma9wk70', 'no_lang_code', 1, 'https://ror.org/03ma9wk70 AstraZeneca (India)'), (38045, 'https://ror.org/03mahcv92', 'en', 1, 'https://ror.org/03mahcv92 LIKES – Foundation for Sport and Health Sciences'), (38046, 'https://ror.org/03mg4e956', 'no_lang_code', 1, 'https://ror.org/03mg4e956 Mahle (Poland)'), (38047, 'https://ror.org/03mh5ac32', 'no_lang_code', 1, 'https://ror.org/03mh5ac32 Precifica Preço Inteligente (Brazil)'), (38048, 'https://ror.org/03mhtag13', 'pt', 1, 'https://ror.org/03mhtag13 Fundação Faculdade de Medicina'), (38049, 'https://ror.org/03mned672', 'en', 1, 'https://ror.org/03mned672 Marienfelde Refugee Center Museum'), (38050, 'https://ror.org/03mp7t709', 'no_lang_code', 1, 'https://ror.org/03mp7t709 Vitrogen (Brazil)'), (38051, 'https://ror.org/03mpgr607', 'no_lang_code', 1, 'https://ror.org/03mpgr607 Value Frontier (Japan)'), (38052, 'https://ror.org/03mpynm22', 'it', 1, 'https://ror.org/03mpynm22 Ospedale Pesenti Fenaroli'), (38053, 'https://ror.org/03mq2bd64', 'en', 1, 'https://ror.org/03mq2bd64 Carilion New River Valley Medical Center'), (38054, 'https://ror.org/03mxktp47', 'fr', 1, 'https://ror.org/03mxktp47 Institut de Biologie de l''École Normale Supérieure'), (38055, 'https://ror.org/03mznce35', 'de', 1, 'https://ror.org/03mznce35 Regierungspräsidium Stuttgart'), (38056, 'https://ror.org/03n1tvb36', 'en', 1, 'https://ror.org/03n1tvb36 Humanitas Mater Domini'), (38057, 'https://ror.org/03n2mgz21', 'pt', 1, 'https://ror.org/03n2mgz21 Centro de Estudos em Psicologia da Saúde'), (38058, 'https://ror.org/03n3hc844', 'no_lang_code', 1, 'https://ror.org/03n3hc844 Safran (Brazil)'), (38059, 'https://ror.org/03n3nz506', 'no_lang_code', 1, 'https://ror.org/03n3nz506 General Motors (Poland)'), (38060, 'https://ror.org/03n3tgc33', 'no_lang_code', 1, 'https://ror.org/03n3tgc33 Tecnozinco Tratamento Superficial (Brazil)'), (38061, 'https://ror.org/03n439y66', 'en', 1, 'https://ror.org/03n439y66 Funabashi Orthopaedic Hospital'), (38062, 'https://ror.org/03n4tsy42', 'no_lang_code', 1, 'https://ror.org/03n4tsy42 GOE-IP (Norway)'), (38063, 'https://ror.org/03n53gr48', 'no_lang_code', 1, 'https://ror.org/03n53gr48 Human Longevity (United States)'), (38064, 'https://ror.org/03n6dw312', 'no_lang_code', 1, 'https://ror.org/03n6dw312 German Plastics Center Süddeutsches Kunststoff-Zentrum (Germany)'), (38065, 'https://ror.org/03n73vq73', 'en', 1, 'https://ror.org/03n73vq73 Fourth Paradigm Institute'), (38066, 'https://ror.org/03nask903', 'en', 1, 'https://ror.org/03nask903 Bay Park Community Hospital'), (38067, 'https://ror.org/03naspe88', 'en', 1, 'https://ror.org/03naspe88 Ali Osman Sonmez Oncology Hospital'), (38068, 'https://ror.org/03neqmv05', 'no_lang_code', 1, 'https://ror.org/03neqmv05 LGC Standards (Poland)'), (38069, 'https://ror.org/03ngy3w26', 'no_lang_code', 1, 'https://ror.org/03ngy3w26 Grove Knutsen (Norway)'), (38070, 'https://ror.org/03nhtqr81', 'en', 1, 'https://ror.org/03nhtqr81 Kibuli Hospital'), (38071, 'https://ror.org/03njstw94', 'no_lang_code', 1, 'https://ror.org/03njstw94 VISIONBR Tecnologia e Informatica (Brazil)'), (38072, 'https://ror.org/03nk70a85', 'en', 1, 'https://ror.org/03nk70a85 Kangan Institute'), (38073, 'https://ror.org/03nn1bn76', 'en', 1, 'https://ror.org/03nn1bn76 Associação Nacional dos Programas de Pós-graduação em Comunicação Brazilian National Association of Graduate Programs in Communication'), (38074, 'https://ror.org/03nt90n09', 'sl', 1, 'https://ror.org/03nt90n09 Rogaška Medical Centre'), (38075, 'https://ror.org/03nw30958', 'en', 1, 'https://ror.org/03nw30958 Dr. Mehta''s Children''s Hospital'), (38076, 'https://ror.org/03nwfz403', 'no_lang_code', 1, 'https://ror.org/03nwfz403 Krka (Slovenia)'), (38077, 'https://ror.org/03nyhx379', 'no_lang_code', 1, 'https://ror.org/03nyhx379 General Hospital Ernakulam'), (38078, 'https://ror.org/03nyxmy82', 'no_lang_code', 1, 'https://ror.org/03nyxmy82 Sumitomo Chemical (Japan) 住友化学'), (38079, 'https://ror.org/03nznv947', 'no_lang_code', 1, 'https://ror.org/03nznv947 Adaptive Intelligent Systems (United States)'), (38080, 'https://ror.org/03p184w47', 'en', 1, 'https://ror.org/03p184w47 People''s Hospital of Bishan District'), (38081, 'https://ror.org/03p2ng128', 'no_lang_code', 1, 'https://ror.org/03p2ng128 Cheddikulam Hospital'), (38082, 'https://ror.org/03p37kd86', 'en', 1, 'https://ror.org/03p37kd86 Midnapore Medical College and Hospital'), (38083, 'https://ror.org/03p5jz112', 'en', 1, 'https://ror.org/03p5jz112 Federal University Lafia'), (38084, 'https://ror.org/03p5ygk36', 'en', 1, 'https://ror.org/03p5ygk36 Lishui Maternity and Child Health Care Hospital'), (38085, 'https://ror.org/03p7abc05', 'fr', 1, 'https://ror.org/03p7abc05 Association pour la Recherche au Collégial'), (38086, 'https://ror.org/03pda7361', 'no', 1, 'https://ror.org/03pda7361 Voss Kommune'), (38087, 'https://ror.org/03pehnk14', 'no_lang_code', 1, 'https://ror.org/03pehnk14 A&A Biotechnology (Poland)'), (38088, 'https://ror.org/03pephy40', 'pt', 1, 'https://ror.org/03pephy40 Mosteiro de São Bento, São Bento Monastery'), (38089, 'https://ror.org/03pf0r360', 'no_lang_code', 1, 'https://ror.org/03pf0r360 Br. Birkeland (Norway)'), (38090, 'https://ror.org/03pf0yc39', 'en', 1, 'https://ror.org/03pf0yc39 Confederation College'), (38091, 'https://ror.org/03pgmt571', 'no_lang_code', 1, 'https://ror.org/03pgmt571 Cflow Fish Handling (Norway)'), (38092, 'https://ror.org/03pgv3k36', 'en', 1, 'https://ror.org/03pgv3k36 Trondheim-Fjord Rivers'), (38093, 'https://ror.org/03pkxjx53', 'no_lang_code', 1, 'https://ror.org/03pkxjx53 Steinsvik (Norway)'), (38094, 'https://ror.org/03pmg8447', 'en', 1, 'https://ror.org/03pmg8447 Los Angeles City College'), (38095, 'https://ror.org/03pp54d63', 'no_lang_code', 1, 'https://ror.org/03pp54d63 GKN (Norway)'), (38096, 'https://ror.org/03ppkyp25', 'en', 1, 'https://ror.org/03ppkyp25 Center for Studies of Holocaust and Religious Minorities'), (38097, 'https://ror.org/03pwyy961', 'en', 1, 'https://ror.org/03pwyy961 Fraunhofer Institute for Manufacturing Technology and Advanced Materials Fraunhofer-Institut für Fertigungstechnik und Angewandte Materialforschung'), (38098, 'https://ror.org/03pxk9k03', 'no_lang_code', 1, 'https://ror.org/03pxk9k03 Savatech (Slovenia)'), (38099, 'https://ror.org/03py58635', 'en', 1, 'https://ror.org/03py58635 Global Public Policy Institute'), (38100, 'https://ror.org/03q150v29', 'no_lang_code', 1, 'https://ror.org/03q150v29 DirectLight (Brazil)'), (38101, 'https://ror.org/03q1w1s93', 'en', 1, 'https://ror.org/03q1w1s93 Colorectal Surgical Associates'), (38102, 'https://ror.org/03q27nw68', 'no_lang_code', 1, 'https://ror.org/03q27nw68 Kirchhoff (Poland)'), (38103, 'https://ror.org/03q2tdj19', 'no_lang_code', 1, 'https://ror.org/03q2tdj19 OncoArendi Therapeutics (Poland)'), (38104, 'https://ror.org/03q52r448', 'no_lang_code', 1, 'https://ror.org/03q52r448 Offshore Simulator Centre (Norway)'), (38105, 'https://ror.org/03q53r674', 'no_lang_code', 1, 'https://ror.org/03q53r674 Victoria Hospital'), (38106, 'https://ror.org/03q6hax08', 'en', 1, 'https://ror.org/03q6hax08 St. Helena Hospital'), (38107, 'https://ror.org/03q9tge24', 'en', 1, 'https://ror.org/03q9tge24 Sai Nath University'), (38108, 'https://ror.org/03qa8qv52', 'en', 1, 'https://ror.org/03qa8qv52 Dr. H. Gordon Roberts Hospital'), (38109, 'https://ror.org/03qatc504', 'no_lang_code', 1, 'https://ror.org/03qatc504 Krzysztof Kucharczyk Techniki Elektroforetyczne (Poland)'), (38110, 'https://ror.org/03qe0g959', 'sl', 1, 'https://ror.org/03qe0g959 Cosylab'), (38111, 'https://ror.org/03qf55f50', 'no_lang_code', 1, 'https://ror.org/03qf55f50 Digital Insight (Norway)'), (38112, 'https://ror.org/03qg29w70', 'no_lang_code', 1, 'https://ror.org/03qg29w70 Jastrzębska Spółka Węglowa (Poland)'), (38113, 'https://ror.org/03qg3qz10', 'no', 1, 'https://ror.org/03qg3qz10 Vestskog'), (38114, 'https://ror.org/03qkdhn31', 'no_lang_code', 1, 'https://ror.org/03qkdhn31 Lars (Poland)'), (38115, 'https://ror.org/03qm2cd43', 'no_lang_code', 1, 'https://ror.org/03qm2cd43 EnergiUnion (Norway)'), (38116, 'https://ror.org/03qmwet62', 'sl', 1, 'https://ror.org/03qmwet62 Ekonomski Inštitut'), (38117, 'https://ror.org/03qng6g45', 'en', 1, 'https://ror.org/03qng6g45 Norwegian Farmers'' Union'), (38118, 'https://ror.org/03qp5np35', 'en', 1, 'https://ror.org/03qp5np35 Bridgwater College'), (38119, 'https://ror.org/03qpxp676', 'no_lang_code', 1, 'https://ror.org/03qpxp676 Norway Well Solutions'), (38120, 'https://ror.org/03qv32r22', 'no_lang_code', 1, 'https://ror.org/03qv32r22 RC Construções (Brazil)'), (38121, 'https://ror.org/03qve6z66', 'en', 1, 'https://ror.org/03qve6z66 St Lucy''s Hospital'), (38122, 'https://ror.org/03qw5kx45', 'pt', 1, 'https://ror.org/03qw5kx45 Santa Casa de Misericórdia de São Carlos'), (38123, 'https://ror.org/03r296s11', 'no', 1, 'https://ror.org/03r296s11 Ullevål Sykehusapotek'), (38124, 'https://ror.org/03r400k37', 'en', 1, 'https://ror.org/03r400k37 Frank Phillips College'), (38125, 'https://ror.org/03r4az639', 'en', 1, 'https://ror.org/03r4az639 Sixth Affiliated Hospital of Xinjiang Medical University'), (38126, 'https://ror.org/03r6wjz53', 'pt', 1, 'https://ror.org/03r6wjz53 Secretaria da Educação'), (38127, 'https://ror.org/03r8cvf94', 'no_lang_code', 1, 'https://ror.org/03r8cvf94 STATinMED (United States)'), (38128, 'https://ror.org/03r8nx235', 'en', 1, 'https://ror.org/03r8nx235 Albert B. Chandler Hospital'), (38129, 'https://ror.org/03r9gvk70', 'en', 1, 'https://ror.org/03r9gvk70 Kalongo Hospital'), (38130, 'https://ror.org/03r9wk794', 'en', 1, 'https://ror.org/03r9wk794 Kayts Hospital'), (38131, 'https://ror.org/03rad7938', 'no_lang_code', 1, 'https://ror.org/03rad7938 Vest i Havet (Norway)'), (38132, 'https://ror.org/03rcgd081', 'no_lang_code', 1, 'https://ror.org/03rcgd081 Pharmaq (Norway)'), (38133, 'https://ror.org/03rcrwp92', 'en', 1, 'https://ror.org/03rcrwp92 South Okanagan General Hospital'), (38134, 'https://ror.org/03rdeqz85', 'no_lang_code', 1, 'https://ror.org/03rdeqz85 Norsk Automatisering (Norway)'), (38135, 'https://ror.org/03rdmxv04', 'no_lang_code', 1, 'https://ror.org/03rdmxv04 Guolian Futures (China)'), (38136, 'https://ror.org/03re5nh85', 'pt', 1, 'https://ror.org/03re5nh85 Sociedade Brasileira de Física'), (38137, 'https://ror.org/03rfk3a08', 'de', 1, 'https://ror.org/03rfk3a08 St. Vincenz-Krankenhaus Limburg'), (38138, 'https://ror.org/03rgdaq32', 'no_lang_code', 1, 'https://ror.org/03rgdaq32 Norsafe (Norway)'), (38139, 'https://ror.org/03rhsnv81', 'en', 1, 'https://ror.org/03rhsnv81 Hippocrateon Private Hospital'), (38140, 'https://ror.org/03rk9kh93', 'en', 1, 'https://ror.org/03rk9kh93 Summerlin Hospital Medical Center'), (38141, 'https://ror.org/03rkmps36', 'en', 1, 'https://ror.org/03rkmps36 Berlin School of Economics and Law Hochschule für Wirtschaft und Recht'), (38142, 'https://ror.org/03rm5rm15', 'en', 1, 'https://ror.org/03rm5rm15 Settlers Hospital'), (38143, 'https://ror.org/03rq35s79', 'no_lang_code', 1, 'https://ror.org/03rq35s79 Guangzhou Electronic Technology (China) 中科院广州电子技术有限公司'), (38144, 'https://ror.org/03rrfz230', 'pt', 1, 'https://ror.org/03rrfz230 Empresa de Pesquisa Agropecuária do Estado do Rio de Janeiro'), (38145, 'https://ror.org/03rsw7n31', 'en', 1, 'https://ror.org/03rsw7n31 Davao Doctors Hospital'), (38146, 'https://ror.org/03rwraz38', 'no_lang_code', 1, 'https://ror.org/03rwraz38 Baader Food Processing Machinery (Norway)'), (38147, 'https://ror.org/03s204r94', 'no_lang_code', 1, 'https://ror.org/03s204r94 Pluristem Therapeutics (Israel)'), (38148, 'https://ror.org/03s4f5949', 'no_lang_code', 1, 'https://ror.org/03s4f5949 Techni (Norway)'), (38149, 'https://ror.org/03s6gep62', 'no_lang_code', 1, 'https://ror.org/03s6gep62 Ogrody Dankiewicz (Poland)'), (38150, 'https://ror.org/03s6yf189', 'no_lang_code', 1, 'https://ror.org/03s6yf189 Nammo (Norway)'), (38151, 'https://ror.org/03s7c3y50', 'no_lang_code', 1, 'https://ror.org/03s7c3y50 Przedsiębiorstwo Badań Geofizycznych'), (38152, 'https://ror.org/03s8epn20', 'en', 1, 'https://ror.org/03s8epn20 Aerospace Research Institute of Materials and Processing Technology 航天材料及工艺研究所'), (38153, 'https://ror.org/03sb1fv32', 'no_lang_code', 1, 'https://ror.org/03sb1fv32 Cupron (Israel)'), (38154, 'https://ror.org/03sb6qc51', 'no_lang_code', 1, 'https://ror.org/03sb6qc51 Brødrene Dahl (Norway)'), (38155, 'https://ror.org/03sb9qx96', 'no_lang_code', 1, 'https://ror.org/03sb9qx96 Ecotone (Norway)'), (38156, 'https://ror.org/03sd8nm03', 'en', 1, 'https://ror.org/03sd8nm03 Cefn Coed Hospital'), (38157, 'https://ror.org/03sdprd87', 'en', 1, 'https://ror.org/03sdprd87 Quirino State University'), (38158, 'https://ror.org/03sdvby86', 'no_lang_code', 1, 'https://ror.org/03sdvby86 Bio&Green (Brazil)'), (38159, 'https://ror.org/03se59c70', 'no_lang_code', 1, 'https://ror.org/03se59c70 NRK (Norway)'), (38160, 'https://ror.org/03se7gq11', 'no_lang_code', 1, 'https://ror.org/03se7gq11 Subhydro (Norway)'), (38161, 'https://ror.org/03sffv110', 'en', 1, 'https://ror.org/03sffv110 Kagando Hospital'), (38162, 'https://ror.org/03smr8g19', 'no_lang_code', 1, 'https://ror.org/03smr8g19 Thomson Reuters (Brazil)'), (38163, 'https://ror.org/03snt1857', 'en', 1, 'https://ror.org/03snt1857 A.M. Obukhov Institute of Atmospheric Physics Федеральное государственное бюджетное учреждение науки Институт физики атмосферы им. А.М. Обухова Российской академии наук'), (38164, 'https://ror.org/03ss19281', 'no', 1, 'https://ror.org/03ss19281 Klepp Kommune'), (38165, 'https://ror.org/03sss6f31', 'no_lang_code', 1, 'https://ror.org/03sss6f31 Thales (Brazil)'), (38166, 'https://ror.org/03st26d34', 'no_lang_code', 1, 'https://ror.org/03st26d34 Opto Eletrônica (Brazil)'), (38167, 'https://ror.org/03svm3p52', 'no', 1, 'https://ror.org/03svm3p52 VitenWahl Andreas Wahl'), (38168, 'https://ror.org/03sy52r18', 'en', 1, 'https://ror.org/03sy52r18 Hôpital Chinois de Montréal, Montreal Chinese Hospital'), (38169, 'https://ror.org/03sya6q88', 'no_lang_code', 1, 'https://ror.org/03sya6q88 Uskom (Poland)'), (38170, 'https://ror.org/03sygwm20', 'en', 1, 'https://ror.org/03sygwm20 Emilio Aguinaldo College Kolehiyong Emilio Aguinaldo'), (38171, 'https://ror.org/03syp5w68', 'en', 1, 'https://ror.org/03syp5w68 Zefat Academic College'), (38172, 'https://ror.org/03sz7ps56', 'no_lang_code', 1, 'https://ror.org/03sz7ps56 Zivko Aeronautics (United States)'), (38173, 'https://ror.org/03t1qsw88', 'en', 1, 'https://ror.org/03t1qsw88 Arad County Clinical Hospital'), (38174, 'https://ror.org/03t3p6f87', 'no', 1, 'https://ror.org/03t3p6f87 Haraldsplass Diakonale Sykehus'), (38175, 'https://ror.org/03t3x0x69', 'no', 1, 'https://ror.org/03t3x0x69 Norsk Sosiologforening'), (38176, 'https://ror.org/03t4eaf83', 'no_lang_code', 1, 'https://ror.org/03t4eaf83 Forristall Ocean Engineering (United States)'), (38177, 'https://ror.org/03t6b8n75', 'no_lang_code', 1, 'https://ror.org/03t6b8n75 Institute of Integrated Clinical Research (Brazil) Instituto de Pesquisa Clínica Integrada Ltda'), (38178, 'https://ror.org/03t6bjv67', 'en', 1, 'https://ror.org/03t6bjv67 Hillsborough Hospital Hôpital hillsborough'), (38179, 'https://ror.org/03t6hvd19', 'no', 1, 'https://ror.org/03t6hvd19 Suldal Kommune'), (38180, 'https://ror.org/03t6npk27', 'en', 1, 'https://ror.org/03t6npk27 Old Port of Montreal Corporation Société du Vieux-Port de Montréal'), (38181, 'https://ror.org/03t9p8264', 'no_lang_code', 1, 'https://ror.org/03t9p8264 Scandinavian Business Seating (Norway)'), (38182, 'https://ror.org/03ta1q534', 'en', 1, 'https://ror.org/03ta1q534 Panti Rapih Hospital Rumah Sakit Umum Panti Rapih'), (38183, 'https://ror.org/03ta7wx62', 'en', 1, 'https://ror.org/03ta7wx62 Hi-Tech Medical College & Hospital'), (38184, 'https://ror.org/03td46k39', 'no_lang_code', 1, 'https://ror.org/03td46k39 Refazenda (Brazil)'), (38185, 'https://ror.org/03tdc2j03', 'no_lang_code', 1, 'https://ror.org/03tdc2j03 Waldrex (Poland)'), (38186, 'https://ror.org/03tebpn36', 'en', 1, 'https://ror.org/03tebpn36 International Labour Organization Internationale Arbeitsorganisation Organisation internationale du travail Organizzazione internazionale del lavoro'), (38187, 'https://ror.org/03ted7148', 'en', 1, 'https://ror.org/03ted7148 Korean Society for Quality Management'), (38188, 'https://ror.org/03th00v97', 'en', 1, 'https://ror.org/03th00v97 Atlantic General Hospital'), (38189, 'https://ror.org/03thytm37', 'no_lang_code', 1, 'https://ror.org/03thytm37 Manarom Hospital'), (38190, 'https://ror.org/03tjs3938', 'en', 1, 'https://ror.org/03tjs3938 BLK Super Speciality Hospital'), (38191, 'https://ror.org/03tkbnt96', 'en', 1, 'https://ror.org/03tkbnt96 Barlow Respiratory Hospital'), (38192, 'https://ror.org/03tkxvj23', 'pt', 1, 'https://ror.org/03tkxvj23 Arquivo Público do Estado do Rio de Janeiro'), (38193, 'https://ror.org/03tma2759', 'pt', 1, 'https://ror.org/03tma2759 Associação Paulista de Medicina'), (38194, 'https://ror.org/03tmst390', 'en', 1, 'https://ror.org/03tmst390 Frank R. Howard Memorial Hospital'), (38195, 'https://ror.org/03tn1hf10', 'pt', 1, 'https://ror.org/03tn1hf10 Associação Brasileira de Polímeros'), (38196, 'https://ror.org/03tnggn83', 'no_lang_code', 1, 'https://ror.org/03tnggn83 FourC (Norway)'), (38197, 'https://ror.org/03try1s84', 'no_lang_code', 1, 'https://ror.org/03try1s84 Inlaks & Budhrani Hospital'), (38198, 'https://ror.org/03tsk0927', 'en', 1, 'https://ror.org/03tsk0927 Murshidabad Medical College and Hospital'), (38199, 'https://ror.org/03tt6x206', 'no_lang_code', 1, 'https://ror.org/03tt6x206 Shimadzu (China)'), (38200, 'https://ror.org/03ttb4s72', 'no_lang_code', 1, 'https://ror.org/03ttb4s72 Agat (Poland)'), (38201, 'https://ror.org/03tv82d64', 'no_lang_code', 1, 'https://ror.org/03tv82d64 Japan Bio Products (Japan)'), (38202, 'https://ror.org/03tw2c072', 'no_lang_code', 1, 'https://ror.org/03tw2c072 Sandvik (Norway)'), (38203, 'https://ror.org/03tws3217', 'en', 1, 'https://ror.org/03tws3217 Jiangxi Provincial Children''s Hospital'), (38204, 'https://ror.org/03ty9wj75', 'de', 1, 'https://ror.org/03ty9wj75 Leibniz-Zentrum Moderner Orient'), (38205, 'https://ror.org/03v1svm63', 'pl', 1, 'https://ror.org/03v1svm63 University of Information Technology Wyższa Szkoła Technologii Informatycznych w Warszawie'), (38206, 'https://ror.org/03v1yvt11', 'no_lang_code', 1, 'https://ror.org/03v1yvt11 AquaScan (Norway)'), (38207, 'https://ror.org/03v2esq45', 'no_lang_code', 1, 'https://ror.org/03v2esq45 Predilnica Litija (Slovenia)'), (38208, 'https://ror.org/03v372z22', 'en', 1, 'https://ror.org/03v372z22 College of Medicine & JNM Hospital'), (38209, 'https://ror.org/03v3vkp27', 'no_lang_code', 1, 'https://ror.org/03v3vkp27 Plasma liits (Brazil)'), (38210, 'https://ror.org/03v4s6070', 'pt', 1, 'https://ror.org/03v4s6070 Coordenadoria Geral da Universidade'), (38211, 'https://ror.org/03v958f45', 'de', 1, 'https://ror.org/03v958f45 Kliniken Essen-Mitte'), (38212, 'https://ror.org/03v95wd71', 'no_lang_code', 1, 'https://ror.org/03v95wd71 Azet Products (Poland)'), (38213, 'https://ror.org/03va80p69', 'no_lang_code', 1, 'https://ror.org/03va80p69 Gemalto (Poland)'), (38214, 'https://ror.org/03vaa9790', 'no_lang_code', 1, 'https://ror.org/03vaa9790 ITS (Norway)'), (38215, 'https://ror.org/03vbt0765', 'en', 1, 'https://ror.org/03vbt0765 Institute of Gender and Health'), (38216, 'https://ror.org/03vcw8k58', 'en', 1, 'https://ror.org/03vcw8k58 Ling Tung University 嶺東科技大學'), (38217, 'https://ror.org/03veakt65', 'en', 1, 'https://ror.org/03veakt65 Instituto Militar de Engenharia Military Institute of Engineering'), (38218, 'https://ror.org/03vgy8f59', 'en', 1, 'https://ror.org/03vgy8f59 Glen Grey Provincial Hospital'), (38219, 'https://ror.org/03vj43k94', 'no_lang_code', 1, 'https://ror.org/03vj43k94 Nortransport (Norway)'), (38220, 'https://ror.org/03vjmg579', 'no_lang_code', 1, 'https://ror.org/03vjmg579 Pan-Nutri (Slovenia)'), (38221, 'https://ror.org/03vm72742', 'no', 1, 'https://ror.org/03vm72742 Vest-Telemarkrådet'), (38222, 'https://ror.org/03vn4w338', 'no_lang_code', 1, 'https://ror.org/03vn4w338 Norli Libris (Norway)'), (38223, 'https://ror.org/03vndx142', 'en', 1, 'https://ror.org/03vndx142 Dijlah University College كلية دجلة الجامعة'), (38224, 'https://ror.org/03vpyey53', 'no_lang_code', 1, 'https://ror.org/03vpyey53 Fotona (Slovenia)'), (38225, 'https://ror.org/03vsgkg08', 'no_lang_code', 1, 'https://ror.org/03vsgkg08 Laska Technika Przemysłowa (Poland)'), (38226, 'https://ror.org/03vsy6588', 'no_lang_code', 1, 'https://ror.org/03vsy6588 Segel (Norway)'), (38227, 'https://ror.org/03vt5c527', 'en', 1, 'https://ror.org/03vt5c527 Royal Gwent Hospital Ysbyty Brenhinol Gwent'), (38228, 'https://ror.org/03vvyat40', 'en', 1, 'https://ror.org/03vvyat40 Institute for Research in Materials and Applications'), (38229, 'https://ror.org/03vwx5r63', 'no_lang_code', 1, 'https://ror.org/03vwx5r63 Cromática (Brazil)'), (38230, 'https://ror.org/03vxaxy97', 'en', 1, 'https://ror.org/03vxaxy97 Peterhead Community Hospital'), (38231, 'https://ror.org/03vxb8t23', 'en', 1, 'https://ror.org/03vxb8t23 Hellenic College Holy Cross Greek Orthodox School of Theology, Hellenic College and Holy Cross Greek Orthodox School of Theology'), (38232, 'https://ror.org/03vyq6t71', 'en', 1, 'https://ror.org/03vyq6t71 Fraunhofer Institut für System- und Innovationsforschung Fraunhofer Institute for Systems and Innovation Research'), (38233, 'https://ror.org/03w0yv793', 'no', 1, 'https://ror.org/03w0yv793 Norske Takstolprodusenters Forening'), (38234, 'https://ror.org/03w1sg385', 'nl', 1, 'https://ror.org/03w1sg385 Damiaan Dicht bij het leven'), (38235, 'https://ror.org/03w4fhz38', 'no_lang_code', 1, 'https://ror.org/03w4fhz38 DMG Mori (Poland)'), (38236, 'https://ror.org/03w55j836', 'no_lang_code', 1, 'https://ror.org/03w55j836 Kulej (Poland)'), (38237, 'https://ror.org/03w5c7758', 'no_lang_code', 1, 'https://ror.org/03w5c7758 Heggset Engineering (Norway)'), (38238, 'https://ror.org/03w5nvk39', 'en', 1, 'https://ror.org/03w5nvk39 Oslo Stock Exchange'), (38239, 'https://ror.org/03wcqja14', 'no_lang_code', 1, 'https://ror.org/03wcqja14 Wuhan YZY Biopharma (China)'), (38240, 'https://ror.org/03wen3n10', 'en', 1, 'https://ror.org/03wen3n10 Clinica de Salud del Valle de Salinas'), (38241, 'https://ror.org/03wgsrq67', 'en', 1, 'https://ror.org/03wgsrq67 Vestre Viken Hospital Trust'), (38242, 'https://ror.org/03wgydg43', 'no_lang_code', 1, 'https://ror.org/03wgydg43 RollerSafe (Norway)'), (38243, 'https://ror.org/03whyax55', 'no_lang_code', 1, 'https://ror.org/03whyax55 Bevital (Norway)'), (38244, 'https://ror.org/03wparr05', 'no_lang_code', 1, 'https://ror.org/03wparr05 eCoast (New Zealand)'), (38245, 'https://ror.org/03wrd3648', 'en', 1, 'https://ror.org/03wrd3648 Montclair Hospital Medical Center'), (38246, 'https://ror.org/03wrq5388', 'de', 1, 'https://ror.org/03wrq5388 Institut für Grenzgebiete der Psychologie und Psychohygiene'), (38247, 'https://ror.org/03wsafn70', 'no_lang_code', 1, 'https://ror.org/03wsafn70 VeriSat (Norway)'), (38248, 'https://ror.org/03wtb7y24', 'no_lang_code', 1, 'https://ror.org/03wtb7y24 Advion (United Kingdom)'), (38249, 'https://ror.org/03x053h94', 'en', 1, 'https://ror.org/03x053h94 Brazilian Institute of Neuropsychology and Behaviour Instituto Brasileiro de Neuropsicologia e Comportamento'), (38250, 'https://ror.org/03x0g5n48', 'en', 1, 'https://ror.org/03x0g5n48 Business School Lausanne'), (38251, 'https://ror.org/03x0ke992', 'no_lang_code', 1, 'https://ror.org/03x0ke992 Thermo Fisher Scientific (Norway)'), (38252, 'https://ror.org/03x18qq52', 'en', 1, 'https://ror.org/03x18qq52 Consortium de recherche et d''innovation en technologies médicales du Québec Quebec Consortium for Industrial Research and Innovation in Medical Technology'), (38253, 'https://ror.org/03x46pr49', 'no_lang_code', 1, 'https://ror.org/03x46pr49 EnSol (Norway)'), (38254, 'https://ror.org/03x72q350', 'en', 1, 'https://ror.org/03x72q350 Gwangju Health University 광주보건대학교'), (38255, 'https://ror.org/03x74qd84', 'de', 1, 'https://ror.org/03x74qd84 Landesarchiv Sachsen-Anhalt'), (38256, 'https://ror.org/03x75jm90', 'no', 1, 'https://ror.org/03x75jm90 Nord-Trøndelag FylkesKommune'), (38257, 'https://ror.org/03x9m5a16', 'no_lang_code', 1, 'https://ror.org/03x9m5a16 Celerway Communication (Norway)'), (38258, 'https://ror.org/03x9v0071', 'no_lang_code', 1, 'https://ror.org/03x9v0071 Wilson Composites (United States)'), (38259, 'https://ror.org/03xaygd04', 'fr', 1, 'https://ror.org/03xaygd04 Centre Québécois du P.E.N. International'), (38260, 'https://ror.org/03xckv489', 'no', 1, 'https://ror.org/03xckv489 Institutt for Grafiske Medier'), (38261, 'https://ror.org/03xdw5e88', 'no_lang_code', 1, 'https://ror.org/03xdw5e88 Typhonix (Norway)'), (38262, 'https://ror.org/03xe8sk89', 'no_lang_code', 1, 'https://ror.org/03xe8sk89 Institute of Metagenomics and Microbial Technologies (Slovenia)'), (38263, 'https://ror.org/03xebwg03', 'no_lang_code', 1, 'https://ror.org/03xebwg03 Salt (Norway)'), (38264, 'https://ror.org/03xgcy581', 'no_lang_code', 1, 'https://ror.org/03xgcy581 Holta Invest (Norway)'), (38265, 'https://ror.org/03xgpq506', 'en', 1, 'https://ror.org/03xgpq506 Norwegian Society for Medical Informatics'), (38266, 'https://ror.org/03xjymw07', 'no', 1, 'https://ror.org/03xjymw07 Norwea'), (38267, 'https://ror.org/03xks2j10', 'no_lang_code', 1, 'https://ror.org/03xks2j10 Argus Remote Systems (Norway)'), (38268, 'https://ror.org/03xn8jx42', 'no_lang_code', 1, 'https://ror.org/03xn8jx42 AFRY (Norway)'), (38269, 'https://ror.org/03xssrp53', 'fr', 1, 'https://ror.org/03xssrp53 Délégation Régionale Occitanie Pyrénées'), (38270, 'https://ror.org/03xsw0p28', 'no_lang_code', 1, 'https://ror.org/03xsw0p28 Arkitektur og Byggteknikk (Norway)'), (38271, 'https://ror.org/03xvmxn09', 'en', 1, 'https://ror.org/03xvmxn09 Mills Memorial Hospital'), (38272, 'https://ror.org/03xx2xa59', 'en', 1, 'https://ror.org/03xx2xa59 Desert Springs Hospital'), (38273, 'https://ror.org/03xy1px17', 'en', 1, 'https://ror.org/03xy1px17 Greater Cincinnati Consortium of Colleges and Universities'), (38274, 'https://ror.org/03xyg3m20', 'en', 1, 'https://ror.org/03xyg3m20 Division of Industrial Innovation & Partnerships'), (38275, 'https://ror.org/03y150857', 'en', 1, 'https://ror.org/03y150857 Irvine Valley College'), (38276, 'https://ror.org/03y2b4f92', 'pt', 1, 'https://ror.org/03y2b4f92 Bioline - Consultoria e Engenharia Ambiental'), (38277, 'https://ror.org/03y2gf405', 'no_lang_code', 1, 'https://ror.org/03y2gf405 Bulldozer Film (Norway)'), (38278, 'https://ror.org/03y2s5683', 'no_lang_code', 1, 'https://ror.org/03y2s5683 Oxford Research (Norway)'), (38279, 'https://ror.org/03y3mre69', 'no_lang_code', 1, 'https://ror.org/03y3mre69 AHR (United Kingdom)'), (38280, 'https://ror.org/03y615034', 'no_lang_code', 1, 'https://ror.org/03y615034 Insurance Process Management (Norway)'), (38281, 'https://ror.org/03y62np16', 'no_lang_code', 1, 'https://ror.org/03y62np16 Cautus Geo (Norway)'), (38282, 'https://ror.org/03yajhg79', 'en', 1, 'https://ror.org/03yajhg79 Educell'), (38283, 'https://ror.org/03yew7g23', 'no_lang_code', 1, 'https://ror.org/03yew7g23 Graphene Batteries (Norway)'), (38284, 'https://ror.org/03yg95m91', 'no_lang_code', 1, 'https://ror.org/03yg95m91 Royal Fish (Brazil)'), (38285, 'https://ror.org/03ykazq11', 'no_lang_code', 1, 'https://ror.org/03ykazq11 Nel (Norway)'), (38286, 'https://ror.org/03ymdwd91', 'no_lang_code', 1, 'https://ror.org/03ymdwd91 Sollis (Brazil)'), (38287, 'https://ror.org/03yn2qz25', 'en', 1, 'https://ror.org/03yn2qz25 Leduc Community Hospital'), (38288, 'https://ror.org/03ynjfm77', 'en', 1, 'https://ror.org/03ynjfm77 King & Spalding'), (38289, 'https://ror.org/03ypdxy52', 'no_lang_code', 1, 'https://ror.org/03ypdxy52 OptoLink (Brazil)'), (38290, 'https://ror.org/03yqxd013', 'no_lang_code', 1, 'https://ror.org/03yqxd013 Omegatri (Norway)'), (38291, 'https://ror.org/03yr3hm52', 'no', 1, 'https://ror.org/03yr3hm52 Norsk Sveiseteknisk Forbund'), (38292, 'https://ror.org/03ytzbe98', 'en', 1, 'https://ror.org/03ytzbe98 HBCU Library Alliance'), (38293, 'https://ror.org/03yvfnr08', 'no_lang_code', 1, 'https://ror.org/03yvfnr08 Ayanda (Norway)'), (38294, 'https://ror.org/03yvwxc80', 'en', 1, 'https://ror.org/03yvwxc80 Sierra View Medical Center'), (38295, 'https://ror.org/03ywcxa16', 'no_lang_code', 1, 'https://ror.org/03ywcxa16 NorDan (Norway)'), (38296, 'https://ror.org/03yy00h78', 'no_lang_code', 1, 'https://ror.org/03yy00h78 Avfall Norge (Norway)'), (38297, 'https://ror.org/03yy70b29', 'no_lang_code', 1, 'https://ror.org/03yy70b29 Celsa (Poland)'), (38298, 'https://ror.org/03yyk9v83', 'en', 1, 'https://ror.org/03yyk9v83 Norwegian Computer Society'), (38299, 'https://ror.org/03yzrhw11', 'no_lang_code', 1, 'https://ror.org/03yzrhw11 Cala Provincial Hospital'), (38300, 'https://ror.org/03z0dd375', 'en', 1, 'https://ror.org/03z0dd375 Seed Forum'), (38301, 'https://ror.org/03z1ps729', 'en', 1, 'https://ror.org/03z1ps729 Aga Khan Hospital Dar es Salaam'), (38302, 'https://ror.org/03z1ygw19', 'en', 1, 'https://ror.org/03z1ygw19 Walter Eucken Institut'), (38303, 'https://ror.org/03z2ts232', 'en', 1, 'https://ror.org/03z2ts232 Swedish Film Institute'), (38304, 'https://ror.org/03z526x05', 'en', 1, 'https://ror.org/03z526x05 Midland Regional Hospital Mullingar Ospidéal Réigiúnach an Mhuilinn Chearr'), (38305, 'https://ror.org/03z55gw17', 'no_lang_code', 1, 'https://ror.org/03z55gw17 Norwegian Oilfield Supply'), (38306, 'https://ror.org/03z6nc566', 'no_lang_code', 1, 'https://ror.org/03z6nc566 Atheno (Norway)'), (38307, 'https://ror.org/03z70cs67', 'no_lang_code', 1, 'https://ror.org/03z70cs67 Imag Indústria e Comércio de Componentes Eletrônicos (Brasil)'), (38308, 'https://ror.org/03zc07z23', 'no_lang_code', 1, 'https://ror.org/03zc07z23 Durgabai Deshmukh Hospital'), (38309, 'https://ror.org/03zdb8v54', 'no_lang_code', 1, 'https://ror.org/03zdb8v54 Oltis Polska (Poland)'), (38310, 'https://ror.org/03ze07515', 'fr', 1, 'https://ror.org/03ze07515 CEA Valduc'), (38311, 'https://ror.org/03zezqe26', 'no_lang_code', 1, 'https://ror.org/03zezqe26 Tool Tech (Norway)'), (38312, 'https://ror.org/03zfe3916', 'no_lang_code', 1, 'https://ror.org/03zfe3916 Autosan (Poland)'), (38313, 'https://ror.org/03zgm9x14', 'no_lang_code', 1, 'https://ror.org/03zgm9x14 Portal (Norway)'), (38314, 'https://ror.org/03zh4gk78', 'no_lang_code', 1, 'https://ror.org/03zh4gk78 Evry (Norway)'), (38315, 'https://ror.org/03zmadd59', 'en', 1, 'https://ror.org/03zmadd59 American Federation for Medical Research'), (38316, 'https://ror.org/03zn2vc68', 'no_lang_code', 1, 'https://ror.org/03zn2vc68 Niko (Slovenia)'); INSERT INTO `rors` VALUES (38317, 'https://ror.org/03zn6c508', 'en', 1, 'https://ror.org/03zn6c508 Institute of Tibetan Plateau Research 中国科学院青藏高原研究所'), (38318, 'https://ror.org/03zn6e898', 'no_lang_code', 1, 'https://ror.org/03zn6e898 Profectum (Norway)'), (38319, 'https://ror.org/03znsa629', 'no_lang_code', 1, 'https://ror.org/03znsa629 Neuron Eletrônica (Brazil)'), (38320, 'https://ror.org/03zrmej96', 'en', 1, 'https://ror.org/03zrmej96 Jefferson Community and Technical College'), (38321, 'https://ror.org/03zskka50', 'en', 1, 'https://ror.org/03zskka50 Metro Area Community Empowerment'), (38322, 'https://ror.org/0402vjj88', 'no_lang_code', 1, 'https://ror.org/0402vjj88 Trilobite (Norway)'), (38323, 'https://ror.org/04034ej81', 'pt', 1, 'https://ror.org/04034ej81 Sociedade Brasileira Para o Desenvolvimento da Pesquisa em Cirurgia'), (38324, 'https://ror.org/0403fs498', 'no_lang_code', 1, 'https://ror.org/0403fs498 Vista Utredning (Norway)'), (38325, 'https://ror.org/0403nm782', 'en', 1, 'https://ror.org/0403nm782 American School of Milan'), (38326, 'https://ror.org/0403qtv92', 'en', 1, 'https://ror.org/0403qtv92 Duncan Village Day Hospital'), (38327, 'https://ror.org/040481r38', 'en', 1, 'https://ror.org/040481r38 Norwegian Trotting Association'), (38328, 'https://ror.org/0408sy511', 'no_lang_code', 1, 'https://ror.org/0408sy511 Finsbråten (Norway)'), (38329, 'https://ror.org/040bdaa45', 'en', 1, 'https://ror.org/040bdaa45 Instituto de Engenharia Nuclear Nuclear Engineering Institute'), (38330, 'https://ror.org/040bhbn44', 'no_lang_code', 1, 'https://ror.org/040bhbn44 Klais Soluções Consultoria e Desenvolvimento (Brazil)'), (38331, 'https://ror.org/040bxjg62', 'pt', 1, 'https://ror.org/040bxjg62 Fundação Casa de Rui Barbosa'), (38332, 'https://ror.org/040cbt857', 'no_lang_code', 1, 'https://ror.org/040cbt857 Bioware (Brazil)'), (38333, 'https://ror.org/040d6j646', 'it', 1, 'https://ror.org/040d6j646 Ospedale dell'' Angelo'), (38334, 'https://ror.org/040dak484', 'no_lang_code', 1, 'https://ror.org/040dak484 Mecmar (Norway)'), (38335, 'https://ror.org/040dcjh11', 'no_lang_code', 1, 'https://ror.org/040dcjh11 Adiel Comercial (Brazil)'), (38336, 'https://ror.org/040djv263', 'en', 1, 'https://ror.org/040djv263 Max Planck Institute for Molecular Biomedicine Max-Planck-Institut für Molekulare Biomedizin'), (38337, 'https://ror.org/040dnmx71', 'en', 1, 'https://ror.org/040dnmx71 Museu de Arte de São Paulo São Paulo Museum of Art'), (38338, 'https://ror.org/040f86t49', 'en', 1, 'https://ror.org/040f86t49 Dr. Kariadi Hospital Rumah Sakit Dr. Kariadi'), (38339, 'https://ror.org/040g62b80', 'pt', 1, 'https://ror.org/040g62b80 Escola Superior de Propaganda e Marketing School of Higher Education in Advertising and Marketing'), (38340, 'https://ror.org/040g67t40', 'en', 1, 'https://ror.org/040g67t40 Association of Polish Cities'), (38341, 'https://ror.org/040h8qn92', 'en', 1, 'https://ror.org/040h8qn92 Fuda Cancer Hospital'), (38342, 'https://ror.org/040njjb71', 'en', 1, 'https://ror.org/040njjb71 TechSoup'), (38343, 'https://ror.org/040pmw620', 'en', 1, 'https://ror.org/040pmw620 Medicine Hat Regional Hospital'), (38344, 'https://ror.org/040pw5174', 'no_lang_code', 1, 'https://ror.org/040pw5174 Marmor Hotavlje Group (Slovenia)'), (38345, 'https://ror.org/040tgwz33', 'en', 1, 'https://ror.org/040tgwz33 Lourdes Hospital'), (38346, 'https://ror.org/040tq8233', 'no_lang_code', 1, 'https://ror.org/040tq8233 Aschehoug (Norway)'), (38347, 'https://ror.org/040w2fg16', 'no', 1, 'https://ror.org/040w2fg16 Bergens Rederiforening'), (38348, 'https://ror.org/040wxw844', 'no', 1, 'https://ror.org/040wxw844 Norsk Fysisk Selskap'), (38349, 'https://ror.org/040x31d97', 'en', 1, 'https://ror.org/040x31d97 Worcester Recovery Center and Hospital'), (38350, 'https://ror.org/040y5k757', 'en', 1, 'https://ror.org/040y5k757 Seventh day Adventist Hospital'), (38351, 'https://ror.org/040y85z67', 'no_lang_code', 1, 'https://ror.org/040y85z67 Tidewater (Norway)'), (38352, 'https://ror.org/040yf2s15', 'de', 1, 'https://ror.org/040yf2s15 Landesmuseum Württemberg'), (38353, 'https://ror.org/040zfw946', 'no_lang_code', 1, 'https://ror.org/040zfw946 Doosan Yonkang Foundation'), (38354, 'https://ror.org/041137e25', 'en', 1, 'https://ror.org/041137e25 Central Institute of Freshwater Aquaculture'), (38355, 'https://ror.org/0413f6k16', 'en', 1, 'https://ror.org/0413f6k16 Ministry of Labor and Employment Ministério do Trabalho e Emprego'), (38356, 'https://ror.org/0415f1661', 'no_lang_code', 1, 'https://ror.org/0415f1661 Mathura Das Mathur Hospital मथुरादास माथुर हॉस्पिटल'), (38357, 'https://ror.org/04160ha27', 'en', 1, 'https://ror.org/04160ha27 Pentecost University College'), (38358, 'https://ror.org/0417dsh96', 'no_lang_code', 1, 'https://ror.org/0417dsh96 Harpo (Poland)'), (38359, 'https://ror.org/0417pw826', 'no_lang_code', 1, 'https://ror.org/0417pw826 Lyse (Norway)'), (38360, 'https://ror.org/0418vfj03', 'no', 1, 'https://ror.org/0418vfj03 Norges Ingeniør- og Teknologorganisasjon'), (38361, 'https://ror.org/04196w034', 'en', 1, 'https://ror.org/04196w034 Ministry of Culture Ministério da Cultura'), (38362, 'https://ror.org/0419dzy74', 'pt', 1, 'https://ror.org/0419dzy74 Instituto Lina Bo e P.M. Bardi'), (38363, 'https://ror.org/041a34162', 'no_lang_code', 1, 'https://ror.org/041a34162 Cennabras (Brazil)'), (38364, 'https://ror.org/041c7s516', 'en', 1, 'https://ror.org/041c7s516 Calvary Hospital'), (38365, 'https://ror.org/041c8tt83', 'fr', 1, 'https://ror.org/041c8tt83 Centres Intégré Universitaires de Santé et de Services Sociaux'), (38366, 'https://ror.org/041dcxd16', 'en', 1, 'https://ror.org/041dcxd16 Lanchester Road Hospital'), (38367, 'https://ror.org/041dnc326', 'en', 1, 'https://ror.org/041dnc326 Turner Memorial Hospital'), (38368, 'https://ror.org/041fsgg33', 'no_lang_code', 1, 'https://ror.org/041fsgg33 AMS Kepler (Brazil)'), (38369, 'https://ror.org/041nm8c07', 'de', 1, 'https://ror.org/041nm8c07 ForWind Zentrum für Windenergieforschung'), (38370, 'https://ror.org/041qnde49', 'en', 1, 'https://ror.org/041qnde49 Azerbaijan National Aerospace Agency Azərbaycan Milli Aerokosmik Agentliyi'), (38371, 'https://ror.org/041ts2d40', 'en', 1, 'https://ror.org/041ts2d40 Affiliated Zhongshan Hospital of Dalian University'), (38372, 'https://ror.org/041vdra32', 'no', 1, 'https://ror.org/041vdra32 Friends of the Earth Norway Naturvernforbundet'), (38373, 'https://ror.org/041ww9d57', 'no_lang_code', 1, 'https://ror.org/041ww9d57 Ocean Energy (Norway)'), (38374, 'https://ror.org/041xr2b79', 'it', 1, 'https://ror.org/041xr2b79 Ospedale di Civita Castellana'), (38375, 'https://ror.org/041z54681', 'en', 1, 'https://ror.org/041z54681 Mediclinic City Hospital'), (38376, 'https://ror.org/042170a43', 'no_lang_code', 1, 'https://ror.org/042170a43 Xizang Minzu University 西藏民族学院'), (38377, 'https://ror.org/0422n9778', 'no_lang_code', 1, 'https://ror.org/0422n9778 Magtech (Norway)'), (38378, 'https://ror.org/0424mj572', 'no_lang_code', 1, 'https://ror.org/0424mj572 Stimline (Norway)'), (38379, 'https://ror.org/0425b0029', 'no_lang_code', 1, 'https://ror.org/0425b0029 Vartdal Plast (Norway)'), (38380, 'https://ror.org/042664e79', 'pt', 1, 'https://ror.org/042664e79 Secretaria de Agricultura e Abastecimento'), (38381, 'https://ror.org/0426ffx42', 'en', 1, 'https://ror.org/0426ffx42 Pacific Research Institute'), (38382, 'https://ror.org/04293qd70', 'pt', 1, 'https://ror.org/04293qd70 Associação Brasileira da Batata'), (38383, 'https://ror.org/042bm3f17', 'no', 1, 'https://ror.org/042bm3f17 Aksjonærforeningen'), (38384, 'https://ror.org/042dsac10', 'en', 1, 'https://ror.org/042dsac10 Helmholtz Institute for Pharmaceutical Research Saarland Helmholtz-Institut für Pharmazeutische Forschung Saarland'), (38385, 'https://ror.org/042epp307', 'no_lang_code', 1, 'https://ror.org/042epp307 Jøtul (Norway)'), (38386, 'https://ror.org/042eq7k73', 'no_lang_code', 1, 'https://ror.org/042eq7k73 Semcon (Norway)'), (38387, 'https://ror.org/042ghyj15', 'no_lang_code', 1, 'https://ror.org/042ghyj15 Bf Clay Especialidades (Brazil)'), (38388, 'https://ror.org/042grvw12', 'no_lang_code', 1, 'https://ror.org/042grvw12 Neuro Device (Poland)'), (38389, 'https://ror.org/042k07j95', 'no_lang_code', 1, 'https://ror.org/042k07j95 Quartz Corp (Norway)'), (38390, 'https://ror.org/042pyga86', 'en', 1, 'https://ror.org/042pyga86 Tianjin Institute of Industrial Biotechnology 中国科学院天津工业生物技术研究所'), (38391, 'https://ror.org/042qcb753', 'no_lang_code', 1, 'https://ror.org/042qcb753 Nompumelelo Hospital'), (38392, 'https://ror.org/042s03372', 'en', 1, 'https://ror.org/042s03372 Center for Child and Adolescent Mental Health, Eastern and Southern Norway'), (38393, 'https://ror.org/042s2r166', 'no_lang_code', 1, 'https://ror.org/042s2r166 Marine Constructions (Norway)'), (38394, 'https://ror.org/042tpyj36', 'no_lang_code', 1, 'https://ror.org/042tpyj36 Formatto (Brazil)'), (38395, 'https://ror.org/042vs4796', 'no_lang_code', 1, 'https://ror.org/042vs4796 Nergård (Norway)'), (38396, 'https://ror.org/042y68y70', 'no', 1, 'https://ror.org/042y68y70 Trondheim Science Museum Vitensenteret i Trondheim'), (38397, 'https://ror.org/042yzj970', 'no_lang_code', 1, 'https://ror.org/042yzj970 Yonsei Sarang Hospital'), (38398, 'https://ror.org/042z7hw74', 'en', 1, 'https://ror.org/042z7hw74 Changsha Environmental Protection College'), (38399, 'https://ror.org/042ze4p12', 'en', 1, 'https://ror.org/042ze4p12 Ben Taub Hospital'), (38400, 'https://ror.org/042zefm29', 'no_lang_code', 1, 'https://ror.org/042zefm29 Pedra Agroindustrial (Brazil)'), (38401, 'https://ror.org/0433s0254', 'en', 1, 'https://ror.org/0433s0254 Instituto Tecnológico de Morelia Morelia Institute of Technology'), (38402, 'https://ror.org/04348hm12', 'no_lang_code', 1, 'https://ror.org/04348hm12 Gavita (Norway)'), (38403, 'https://ror.org/0435fd055', 'en', 1, 'https://ror.org/0435fd055 Britannia Royal Naval College'), (38404, 'https://ror.org/0436hk567', 'no_lang_code', 1, 'https://ror.org/0436hk567 Karanda Mission Hospital'), (38405, 'https://ror.org/0438q2q05', 'no_lang_code', 1, 'https://ror.org/0438q2q05 Norgesmøllene (Norway)'), (38406, 'https://ror.org/04395y550', 'no_lang_code', 1, 'https://ror.org/04395y550 Alwernia (Poland)'), (38407, 'https://ror.org/043ad9j09', 'no_lang_code', 1, 'https://ror.org/043ad9j09 Goodtech (Norway)'), (38408, 'https://ror.org/043bgwc02', 'de', 1, 'https://ror.org/043bgwc02 Stiftung Schleswig-Holsteinische Landesmuseen'), (38409, 'https://ror.org/043cf4715', 'no_lang_code', 1, 'https://ror.org/043cf4715 Beck Engineering (Norway)'), (38410, 'https://ror.org/043dmbr88', 'en', 1, 'https://ror.org/043dmbr88 Westminster Memorial Hospital'), (38411, 'https://ror.org/043e82c76', 'en', 1, 'https://ror.org/043e82c76 Sultan Ismail Specialist Hospital'), (38412, 'https://ror.org/043f3ea85', 'fr', 1, 'https://ror.org/043f3ea85 Centre de Transfert Pour la Réussite Educative du Québec'), (38413, 'https://ror.org/043jqct61', 'no', 1, 'https://ror.org/043jqct61 Start Norge'), (38414, 'https://ror.org/043m37669', 'en', 1, 'https://ror.org/043m37669 Capricorn Coast Hospital'), (38415, 'https://ror.org/043mmxr96', 'en', 1, 'https://ror.org/043mmxr96 Atlanta Film Festival'), (38416, 'https://ror.org/043mnf671', 'en', 1, 'https://ror.org/043mnf671 Midland Regional Hospital Portlaoise Ospidéal Réigiúnach Lár Tíre, Port Laoise'), (38417, 'https://ror.org/043p9x506', 'no_lang_code', 1, 'https://ror.org/043p9x506 Shutech (Japan)'), (38418, 'https://ror.org/043qb7f72', 'en', 1, 'https://ror.org/043qb7f72 Fleming Cottage Hospital'), (38419, 'https://ror.org/043qs7x90', 'no_lang_code', 1, 'https://ror.org/043qs7x90 Conpart (Norway)'), (38420, 'https://ror.org/043tanr92', 'no', 1, 'https://ror.org/043tanr92 Árran Julevsáme Guovdásj Lulesamisk Senter'), (38421, 'https://ror.org/043tfr230', 'en', 1, 'https://ror.org/043tfr230 Institute of Neurosciences, Mental Health and Addiction'), (38422, 'https://ror.org/043w2w702', 'en', 1, 'https://ror.org/043w2w702 Inland Norway Energy Agency'), (38423, 'https://ror.org/043x6wz15', 'no_lang_code', 1, 'https://ror.org/043x6wz15 Hardkop (Poland)'), (38424, 'https://ror.org/043xx4m81', 'no_lang_code', 1, 'https://ror.org/043xx4m81 Cybid (Poland)'), (38425, 'https://ror.org/043yqwn61', 'no_lang_code', 1, 'https://ror.org/043yqwn61 Tolero Pharmaceuticals (United States)'), (38426, 'https://ror.org/043ysjp15', 'no_lang_code', 1, 'https://ror.org/043ysjp15 Hacienda (Norway)'), (38427, 'https://ror.org/043zemc40', 'en', 1, 'https://ror.org/043zemc40 Queen Maud University College'), (38428, 'https://ror.org/0440ajd58', 'pl', 1, 'https://ror.org/0440ajd58 Ośrodek Badawczo-Rozwojowy Centrum Techniki Morskiej'), (38429, 'https://ror.org/0440dpw16', 'no_lang_code', 1, 'https://ror.org/0440dpw16 Advanced Fiber Resources (China)'), (38430, 'https://ror.org/0440kgc56', 'en', 1, 'https://ror.org/0440kgc56 Boai Hospital of Zhongshan 中山市博爱医院'), (38431, 'https://ror.org/0443z5530', 'en', 1, 'https://ror.org/0443z5530 San Jose Hospital & Trauma Center'), (38432, 'https://ror.org/0444s8s29', 'no_lang_code', 1, 'https://ror.org/0444s8s29 Biomolex (Norway)'), (38433, 'https://ror.org/04488qt04', 'en', 1, 'https://ror.org/04488qt04 Congress-Conference'), (38434, 'https://ror.org/0448sak71', 'en', 1, 'https://ror.org/0448sak71 Fraunhofer Institute for Ceramic Technologies and Systems Fraunhofer-Institut für Keramische Technologien und Systeme'), (38435, 'https://ror.org/044a6j606', 'no_lang_code', 1, 'https://ror.org/044a6j606 Calcus (Norway)'), (38436, 'https://ror.org/044dxh921', 'en', 1, 'https://ror.org/044dxh921 Matha Ayurveda Eye Hospital'), (38437, 'https://ror.org/044dz3b65', 'pt', 1, 'https://ror.org/044dz3b65 Instituto de Psicologia Comportamental de São Carlos'), (38438, 'https://ror.org/044e25681', 'no_lang_code', 1, 'https://ror.org/044e25681 Kolon Life Science (South Korea)'), (38439, 'https://ror.org/044jw3g30', 'no_lang_code', 1, 'https://ror.org/044jw3g30 Karakter'), (38440, 'https://ror.org/044kqk861', 'no_lang_code', 1, 'https://ror.org/044kqk861 Instituto Vital Brazil (Brazil)'), (38441, 'https://ror.org/044mbfr67', 'en', 1, 'https://ror.org/044mbfr67 Institute of Aging'), (38442, 'https://ror.org/044nfga98', 'pt', 1, 'https://ror.org/044nfga98 Centro de Tecnologia da Informação Renato Archer'), (38443, 'https://ror.org/044pnqk33', 'no_lang_code', 1, 'https://ror.org/044pnqk33 Kolpa (Slovenia)'), (38444, 'https://ror.org/044qsan02', 'no_lang_code', 1, 'https://ror.org/044qsan02 Lumex (Norway)'), (38445, 'https://ror.org/044tsct54', 'en', 1, 'https://ror.org/044tsct54 Norwegian Steel Association'), (38446, 'https://ror.org/044wyhr42', 'no_lang_code', 1, 'https://ror.org/044wyhr42 Kehl (Brazil)'), (38447, 'https://ror.org/044xa2871', 'no_lang_code', 1, 'https://ror.org/044xa2871 Human Dialog (Norway)'), (38448, 'https://ror.org/044xemj90', 'no_lang_code', 1, 'https://ror.org/044xemj90 Dar Al-Shifa Hospital مستشفى دار الشفاء'), (38449, 'https://ror.org/044xepv65', 'no_lang_code', 1, 'https://ror.org/044xepv65 Rosetta Genomics (Israel)'), (38450, 'https://ror.org/044ybef51', 'en', 1, 'https://ror.org/044ybef51 National Cancer Institute'), (38451, 'https://ror.org/0450swy91', 'en', 1, 'https://ror.org/0450swy91 All Hallows College'), (38452, 'https://ror.org/04571v857', 'no_lang_code', 1, 'https://ror.org/04571v857 Metsähallitus (Finland)'), (38453, 'https://ror.org/0458ana96', 'fr', 1, 'https://ror.org/0458ana96 Institut Français de la Brasserie et de la Malterie, Institut Français des Boissons, de la Brasserie et de la Malterie'), (38454, 'https://ror.org/045905m75', 'en', 1, 'https://ror.org/045905m75 Associação Brasileira de Buiatria Brazilian Buiatrics Association'), (38455, 'https://ror.org/045akps60', 'en', 1, 'https://ror.org/045akps60 Hudson County Community College'), (38456, 'https://ror.org/045e9rc94', 'pt', 1, 'https://ror.org/045e9rc94 Hospital do Rim e Hipertensão'), (38457, 'https://ror.org/045f8n343', 'no_lang_code', 1, 'https://ror.org/045f8n343 BP Norge (Norway)'), (38458, 'https://ror.org/045fr5063', 'no_lang_code', 1, 'https://ror.org/045fr5063 Aspiro (Norway)'), (38459, 'https://ror.org/045fwjn44', 'no_lang_code', 1, 'https://ror.org/045fwjn44 Wellcem (Norway)'), (38460, 'https://ror.org/045gdxt02', 'de', 1, 'https://ror.org/045gdxt02 Hochschule für bildende Künste University of Fine Arts in Hamburg'), (38461, 'https://ror.org/045gv5c80', 'de', 1, 'https://ror.org/045gv5c80 Stadtarchiv Ibbenbüren'), (38462, 'https://ror.org/045h1r327', 'no_lang_code', 1, 'https://ror.org/045h1r327 Scott Group Studio (United States)'), (38463, 'https://ror.org/045hhpe19', 'no_lang_code', 1, 'https://ror.org/045hhpe19 Statskog (Norway)'), (38464, 'https://ror.org/045js9z71', 'no_lang_code', 1, 'https://ror.org/045js9z71 Bevi Plastic (Brazil)'), (38465, 'https://ror.org/045k8ds88', 'no_lang_code', 1, 'https://ror.org/045k8ds88 Multi Vegetal Fitocosméticos (Brazil)'), (38466, 'https://ror.org/045kr5p19', 'en', 1, 'https://ror.org/045kr5p19 Life Groenkloof Hospital'), (38467, 'https://ror.org/045mkw584', 'no_lang_code', 1, 'https://ror.org/045mkw584 Nanosyn (United States)'), (38468, 'https://ror.org/045ms0x79', 'en', 1, 'https://ror.org/045ms0x79 Egyptian e-Learning University الجامعة المصرية للتعلم الإلكترونى'), (38469, 'https://ror.org/045pn0g98', 'no_lang_code', 1, 'https://ror.org/045pn0g98 Atonus Engineering Systems (Brazil)'), (38470, 'https://ror.org/045pt3n52', 'no_lang_code', 1, 'https://ror.org/045pt3n52 Guatifer Usinagem e Ferramentaria (Brazil)'), (38471, 'https://ror.org/045qetg51', 'no_lang_code', 1, 'https://ror.org/045qetg51 Biotec Pharmacon (Norway)'), (38472, 'https://ror.org/045qycg64', 'no_lang_code', 1, 'https://ror.org/045qycg64 PostNord (Norway)'), (38473, 'https://ror.org/045rymn14', 'en', 1, 'https://ror.org/045rymn14 Ningbo University Affiliated Hospital 宁波大学医学院附属医院'), (38474, 'https://ror.org/045s3s145', 'en', 1, 'https://ror.org/045s3s145 Lake District Hospital'), (38475, 'https://ror.org/045tkmf79', 'en', 1, 'https://ror.org/045tkmf79 Belmont Hospital'), (38476, 'https://ror.org/045twjx32', 'en', 1, 'https://ror.org/045twjx32 West Yangon General Hospital ရန်ကုန် အနောက်ပိုင်း ဆေးရုံ'), (38477, 'https://ror.org/045wnmj48', 'en', 1, 'https://ror.org/045wnmj48 Hospital Naval de Puerto Williams Naval Hospital of Puerto Williams'), (38478, 'https://ror.org/045yjdg59', 'en', 1, 'https://ror.org/045yjdg59 Hill College'), (38479, 'https://ror.org/0461fey84', 'no_lang_code', 1, 'https://ror.org/0461fey84 Pammakaristos Hospital'), (38480, 'https://ror.org/0461qh336', 'sl', 1, 'https://ror.org/0461qh336 Biotehniški Center Naklo'), (38481, 'https://ror.org/0463xj055', 'no_lang_code', 1, 'https://ror.org/0463xj055 SimWorx (Brazil)'), (38482, 'https://ror.org/0464f7620', 'en', 1, 'https://ror.org/0464f7620 Whidden Memorial Hospital'), (38483, 'https://ror.org/0465m1925', 'pt', 1, 'https://ror.org/0465m1925 Sociedade Brasileira de Química'), (38484, 'https://ror.org/0467wcr64', 'no_lang_code', 1, 'https://ror.org/0467wcr64 Wavetek (Brazil)'), (38485, 'https://ror.org/0468t7w37', 'en', 1, 'https://ror.org/0468t7w37 Palestine Technical College'), (38486, 'https://ror.org/046c79798', 'no_lang_code', 1, 'https://ror.org/046c79798 Snöball Film (Norway)'), (38487, 'https://ror.org/046f4h193', 'no_lang_code', 1, 'https://ror.org/046f4h193 Abcodia (United Kingdom)'), (38488, 'https://ror.org/046gga527', 'en', 1, 'https://ror.org/046gga527 King Khalid University Hospital'), (38489, 'https://ror.org/046h6tv02', 'no_lang_code', 1, 'https://ror.org/046h6tv02 Ak. Grieg Norge (Norway)'), (38490, 'https://ror.org/046j4d739', 'en', 1, 'https://ror.org/046j4d739 Hôpital général du Lakeshore Lakeshore General Hospital'), (38491, 'https://ror.org/046n0zq43', 'en', 1, 'https://ror.org/046n0zq43 Wuhan Branch of the National Science Library 中国科学院武汉文献情报中心'), (38492, 'https://ror.org/046ntxd30', 'no_lang_code', 1, 'https://ror.org/046ntxd30 Korth Rfid (Brazil)'), (38493, 'https://ror.org/046q1bp69', 'en', 1, 'https://ror.org/046q1bp69 Guizhou Provincial People''s Hospital 贵州省人民医院'), (38494, 'https://ror.org/046s0tg81', 'en', 1, 'https://ror.org/046s0tg81 Massac Memorial Hospital'), (38495, 'https://ror.org/046sh6j17', 'en', 1, 'https://ror.org/046sh6j17 Birla Institute of Technology and Science, Pilani - Goa Campus'), (38496, 'https://ror.org/046vamx76', 'en', 1, 'https://ror.org/046vamx76 Tripura Medical College & Dr. B.R. Ambedkar Memorial Teaching Hospital'), (38497, 'https://ror.org/046yj6w95', 'no_lang_code', 1, 'https://ror.org/046yj6w95 GasPlas (Norway)'), (38498, 'https://ror.org/046yjsn38', 'no_lang_code', 1, 'https://ror.org/046yjsn38 Glen Dimplex Nordic (Norway)'), (38499, 'https://ror.org/046yyy878', 'no_lang_code', 1, 'https://ror.org/046yyy878 Seaweed Energy Solutions (Norway)'), (38500, 'https://ror.org/0470nf974', 'en', 1, 'https://ror.org/0470nf974 Federal University Kashere'), (38501, 'https://ror.org/0471zv972', 'en', 1, 'https://ror.org/0471zv972 Division of Chemical, Bioengineering, Environmental, and Transport Systems'), (38502, 'https://ror.org/04743aj70', 'en', 1, 'https://ror.org/04743aj70 Wuhan Third Hospital'), (38503, 'https://ror.org/0476s4736', 'no_lang_code', 1, 'https://ror.org/0476s4736 Fortelab (Brazil)'), (38504, 'https://ror.org/04776x595', 'no_lang_code', 1, 'https://ror.org/04776x595 Assunta Hospital Hospital Assunta 阿松大医院'), (38505, 'https://ror.org/047b0ff75', 'no_lang_code', 1, 'https://ror.org/047b0ff75 Gritek (China)'), (38506, 'https://ror.org/047cs9w11', 'no_lang_code', 1, 'https://ror.org/047cs9w11 SmartCare (Norway)'), (38507, 'https://ror.org/047dn2208', 'no_lang_code', 1, 'https://ror.org/047dn2208 ENOVA (Norway)'), (38508, 'https://ror.org/047eb3p71', 'no_lang_code', 1, 'https://ror.org/047eb3p71 Gudbrandsdalsmat (Norway)'), (38509, 'https://ror.org/047ev4v84', 'es', 1, 'https://ror.org/047ev4v84 Hospital Universitario del Henares'), (38510, 'https://ror.org/047ew8298', 'en', 1, 'https://ror.org/047ew8298 Rowan College at Burlington County'), (38511, 'https://ror.org/047fbt408', 'no_lang_code', 1, 'https://ror.org/047fbt408 Autronica Fire and Security (Norway)'), (38512, 'https://ror.org/047gb2729', 'no_lang_code', 1, 'https://ror.org/047gb2729 Agro Lab Plants (Brazil)'), (38513, 'https://ror.org/047ge9e14', 'en', 1, 'https://ror.org/047ge9e14 Longmont United Hospital'), (38514, 'https://ror.org/047jbnz84', 'no', 1, 'https://ror.org/047jbnz84 Sør-Trøndelag County Authority'), (38515, 'https://ror.org/047jhq856', 'no', 1, 'https://ror.org/047jhq856 AT Skog'), (38516, 'https://ror.org/047nye843', 'no_lang_code', 1, 'https://ror.org/047nye843 Colly (Brazil)'), (38517, 'https://ror.org/047pt5178', 'en', 1, 'https://ror.org/047pt5178 Institute of Problems of Mechanical Engineering Федеральное государственное бюджетное учреждение науки Институт проблем машиностроения Российской академии наук'), (38518, 'https://ror.org/047rnn627', 'pt', 1, 'https://ror.org/047rnn627 Fundação Otorrinolaringologia'), (38519, 'https://ror.org/047vmpf34', 'en', 1, 'https://ror.org/047vmpf34 Oxford Educational Institutions'), (38520, 'https://ror.org/047yd9004', 'en', 1, 'https://ror.org/047yd9004 Institute for Color Science and Technology'), (38521, 'https://ror.org/047ytwp82', 'en', 1, 'https://ror.org/047ytwp82 Karamay Central Hospital 克拉玛依市中心医院·云医院'), (38522, 'https://ror.org/0481e3r23', 'en', 1, 'https://ror.org/0481e3r23 Society for Immunotherapy of Cancer'), (38523, 'https://ror.org/0482b5b22', 'en', 1, 'https://ror.org/0482b5b22 Brazilian Agricultural Research Corporation Empresa Brasileira de Pesquisa Agropecuária'), (38524, 'https://ror.org/0482b6s78', 'no_lang_code', 1, 'https://ror.org/0482b6s78 Abili (Brazil)'), (38525, 'https://ror.org/0483p1w82', 'en', 1, 'https://ror.org/0483p1w82 Great North Children''s Hospital'), (38526, 'https://ror.org/0483q4e62', 'en', 1, 'https://ror.org/0483q4e62 Office of the Auditor General of Norway'), (38527, 'https://ror.org/0483wn475', 'no', 1, 'https://ror.org/0483wn475 Coperiosenteret'), (38528, 'https://ror.org/0486aq354', 'en', 1, 'https://ror.org/0486aq354 Whakatane Hospital'), (38529, 'https://ror.org/04880yb19', 'en', 1, 'https://ror.org/04880yb19 LUdeS University Libera Universita degli Studi di Scienze Umane e Tecnologiche di Lugano'), (38530, 'https://ror.org/048b5ng26', 'no_lang_code', 1, 'https://ror.org/048b5ng26 Covance (Australia)'), (38531, 'https://ror.org/048c3ks84', 'no_lang_code', 1, 'https://ror.org/048c3ks84 3GSolar (Norway)'), (38532, 'https://ror.org/048cn7s66', 'en', 1, 'https://ror.org/048cn7s66 MedCoast Scandinavia'), (38533, 'https://ror.org/048fm8466', 'en', 1, 'https://ror.org/048fm8466 Edna Adan Maternity Hospital'), (38534, 'https://ror.org/048gskb76', 'no_lang_code', 1, 'https://ror.org/048gskb76 Novamedia (Italy)'), (38535, 'https://ror.org/048k0ye22', 'no_lang_code', 1, 'https://ror.org/048k0ye22 Technes Agrícola (Brazil)'), (38536, 'https://ror.org/048ke3y07', 'en', 1, 'https://ror.org/048ke3y07 Hindu Mission Hospital'), (38537, 'https://ror.org/048p06y15', 'en', 1, 'https://ror.org/048p06y15 Prince Aly Khan Hospital'), (38538, 'https://ror.org/048pv7j43', 'no_lang_code', 1, 'https://ror.org/048pv7j43 BMT Group (Brazil)'), (38539, 'https://ror.org/048snr569', 'en', 1, 'https://ror.org/048snr569 Boulder City Hospital'), (38540, 'https://ror.org/048vdhs48', 'de', 1, 'https://ror.org/048vdhs48 Common Library Network Verbundzentrale des GBV'), (38541, 'https://ror.org/048vzmn57', 'en', 1, 'https://ror.org/048vzmn57 Fraunhofer Institute for Surface Engineering and Thin Films Fraunhofer-Institut für Schicht- und Oberflächentechnik'), (38542, 'https://ror.org/048wdxr20', 'no_lang_code', 1, 'https://ror.org/048wdxr20 Sarojini Devi Eye Hospital'), (38543, 'https://ror.org/048xmz857', 'en', 1, 'https://ror.org/048xmz857 Kankakee State Hospital'), (38544, 'https://ror.org/048xxxv92', 'en', 1, 'https://ror.org/048xxxv92 Toowoomba Hospital'), (38545, 'https://ror.org/048ym4d69', 'it', 1, 'https://ror.org/048ym4d69 Azienda USL di Pescara'), (38546, 'https://ror.org/0491f2496', 'en', 1, 'https://ror.org/0491f2496 Dr Neville Fernando Teaching Hospital'), (38547, 'https://ror.org/0493ajd33', 'no_lang_code', 1, 'https://ror.org/0493ajd33 Plexision (United States)'), (38548, 'https://ror.org/0493m8x04', 'en', 1, 'https://ror.org/0493m8x04 Guangdong Province Women and Children Hospital'), (38549, 'https://ror.org/0496qn750', 'no', 1, 'https://ror.org/0496qn750 Lyskultur'), (38550, 'https://ror.org/0498mas94', 'pt', 1, 'https://ror.org/0498mas94 Associação Brasileira de Ciência Política'), (38551, 'https://ror.org/0498n0s19', 'no_lang_code', 1, 'https://ror.org/0498n0s19 SMA Tecnologia (Brazil)'), (38552, 'https://ror.org/0499krd69', 'fr', 1, 'https://ror.org/0499krd69 Museum of Civilization Musée de la Civilisation'), (38553, 'https://ror.org/049ayn705', 'no_lang_code', 1, 'https://ror.org/049ayn705 Huta Stalowa Wola (Poland)'), (38554, 'https://ror.org/049dr2b41', 'no_lang_code', 1, 'https://ror.org/049dr2b41 ZF Friedrichshafen (Belgium)'), (38555, 'https://ror.org/049epw866', 'en', 1, 'https://ror.org/049epw866 Shenzhen Shajing Affiliated Hospital of Guangzhou Medical University'), (38556, 'https://ror.org/049fsr430', 'no_lang_code', 1, 'https://ror.org/049fsr430 PMEC Sistemas (Brazil)'), (38557, 'https://ror.org/049gbkg80', 'no_lang_code', 1, 'https://ror.org/049gbkg80 Acona (Norway)'), (38558, 'https://ror.org/049k17734', 'no_lang_code', 1, 'https://ror.org/049k17734 Medfiles (Finland)'), (38559, 'https://ror.org/049k3fp61', 'en', 1, 'https://ror.org/049k3fp61 American Society for Eighteenth-Century Studies'), (38560, 'https://ror.org/049k8ev11', 'en', 1, 'https://ror.org/049k8ev11 Society of Open Innovation Technology Market & Complexity'), (38561, 'https://ror.org/049nrz535', 'en', 1, 'https://ror.org/049nrz535 Department of Scientific and Industrial Research'), (38562, 'https://ror.org/049pr6f34', 'en', 1, 'https://ror.org/049pr6f34 Canadian Society of Allergy and Clinical Immunology'), (38563, 'https://ror.org/049pxhr81', 'en', 1, 'https://ror.org/049pxhr81 The Nairobi Women’s Hospital'), (38564, 'https://ror.org/049qcgg02', 'no_lang_code', 1, 'https://ror.org/049qcgg02 Redox (Norway)'), (38565, 'https://ror.org/049vhtm85', 'no_lang_code', 1, 'https://ror.org/049vhtm85 Timpel (Brazil)'), (38566, 'https://ror.org/049vsq398', 'en', 1, 'https://ror.org/049vsq398 Affiliated Hospital of Hebei University'), (38567, 'https://ror.org/049whr973', 'no_lang_code', 1, 'https://ror.org/049whr973 Teleplan Consulting (Norway)'), (38568, 'https://ror.org/049xxah85', 'en', 1, 'https://ror.org/049xxah85 Deutsche Gesellschaft für Auswärtige Politik German Council on Foreign Relations'), (38569, 'https://ror.org/049ymah45', 'en', 1, 'https://ror.org/049ymah45 Bệnh viện Việt Đức Viet Duc Hospital'), (38570, 'https://ror.org/04a021880', 'no_lang_code', 1, 'https://ror.org/04a021880 Optolink (Russia)'), (38571, 'https://ror.org/04a10z221', 'no_lang_code', 1, 'https://ror.org/04a10z221 Consafe Logistics (Norway)'), (38572, 'https://ror.org/04a1amm82', 'no_lang_code', 1, 'https://ror.org/04a1amm82 ZRE Gdańsk (Poland)'), (38573, 'https://ror.org/04a1h1h05', 'no_lang_code', 1, 'https://ror.org/04a1h1h05 Smart Solution (Norway)'), (38574, 'https://ror.org/04a24qj50', 'no', 1, 'https://ror.org/04a24qj50 Stiftelsen Bergensklinikkene'), (38575, 'https://ror.org/04a4nak07', 'pt', 1, 'https://ror.org/04a4nak07 Instituto Polis'), (38576, 'https://ror.org/04a57ke25', 'no_lang_code', 1, 'https://ror.org/04a57ke25 PKP Group (Poland)'), (38577, 'https://ror.org/04a6scr36', 'pt', 1, 'https://ror.org/04a6scr36 Sociedade de Nefrologia do Estado de São Paulo'), (38578, 'https://ror.org/04a94ee43', 'en', 1, 'https://ror.org/04a94ee43 Sanko University'), (38579, 'https://ror.org/04abbvn76', 'no_lang_code', 1, 'https://ror.org/04abbvn76 ECOsubsea (Norway)'), (38580, 'https://ror.org/04abccf14', 'no_lang_code', 1, 'https://ror.org/04abccf14 Lee''s Pharmaceutical (China)'), (38581, 'https://ror.org/04acsr153', 'en', 1, 'https://ror.org/04acsr153 Academy of Opto-Electronics 中国科学院光电研究院'), (38582, 'https://ror.org/04adbw927', 'no_lang_code', 1, 'https://ror.org/04adbw927 Inner Mongolia Yili Industrial Group (China) 伊利集团'), (38583, 'https://ror.org/04adqmv58', 'cs', 1, 'https://ror.org/04adqmv58 Centrum kardiovaskulární a transplantační chirurgie'), (38584, 'https://ror.org/04aenby30', 'en', 1, 'https://ror.org/04aenby30 African University College of Communications'), (38585, 'https://ror.org/04afck573', 'no_lang_code', 1, 'https://ror.org/04afck573 Thermaflex (Poland)'), (38586, 'https://ror.org/04agghx84', 'en', 1, 'https://ror.org/04agghx84 MarLife (Norway)'), (38587, 'https://ror.org/04ajr8041', 'no_lang_code', 1, 'https://ror.org/04ajr8041 Gastronomisk Institutt'), (38588, 'https://ror.org/04ajwkn20', 'en', 1, 'https://ror.org/04ajwkn20 Gangnam Severance Hospital'), (38589, 'https://ror.org/04am2ad87', 'no_lang_code', 1, 'https://ror.org/04am2ad87 Seaworks (Norway)'), (38590, 'https://ror.org/04am65f10', 'sl', 1, 'https://ror.org/04am65f10 Skupina IRI Ljubljana'), (38591, 'https://ror.org/04ap5x931', 'en', 1, 'https://ror.org/04ap5x931 Division of Physics'), (38592, 'https://ror.org/04apegc06', 'no_lang_code', 1, 'https://ror.org/04apegc06 Reactive Metal Particles (Norway)'), (38593, 'https://ror.org/04aq1ms94', 'en', 1, 'https://ror.org/04aq1ms94 Eastern Shore Memorial Hospital'), (38594, 'https://ror.org/04arg4k48', 'no_lang_code', 1, 'https://ror.org/04arg4k48 Idea Electronic Systems (Brazil) Idea Sistemas Eletrônicos'), (38595, 'https://ror.org/04arjdq12', 'no_lang_code', 1, 'https://ror.org/04arjdq12 Sekal (Norway)'), (38596, 'https://ror.org/04atwyt60', 'pt', 1, 'https://ror.org/04atwyt60 Fundação Armando Alvares Penteado, Fundação Armando Álvares Penteado'), (38597, 'https://ror.org/04avbbr42', 'no_lang_code', 1, 'https://ror.org/04avbbr42 Nanobionics (Brazil)'), (38598, 'https://ror.org/04avk7z79', 'en', 1, 'https://ror.org/04avk7z79 Sacred Heart Hospital'), (38599, 'https://ror.org/04aynjg70', 'no_lang_code', 1, 'https://ror.org/04aynjg70 Rising Star Products (Norway)'), (38600, 'https://ror.org/04aza8v20', 'no_lang_code', 1, 'https://ror.org/04aza8v20 Wireless Power & Communication (Norway)'), (38601, 'https://ror.org/04b0jeh75', 'pt', 1, 'https://ror.org/04b0jeh75 Associação Nacional de Transportes Públicos'), (38602, 'https://ror.org/04b14sj77', 'en', 1, 'https://ror.org/04b14sj77 Peterborough Regional College'), (38603, 'https://ror.org/04b3dbk68', 'en', 1, 'https://ror.org/04b3dbk68 Institute for Comparative Research in Human Culture'), (38604, 'https://ror.org/04b40n161', 'no_lang_code', 1, 'https://ror.org/04b40n161 Seria (Norway)'), (38605, 'https://ror.org/04b4kkz92', 'no_lang_code', 1, 'https://ror.org/04b4kkz92 MedNose (Norway)'), (38606, 'https://ror.org/04b64cp31', 'en', 1, 'https://ror.org/04b64cp31 Hôpital Sainte-Anne Ste. Anne''s Hospital'), (38607, 'https://ror.org/04b709v36', 'no_lang_code', 1, 'https://ror.org/04b709v36 Calora Subsea (Norway)'), (38608, 'https://ror.org/04b90kd02', 'no_lang_code', 1, 'https://ror.org/04b90kd02 Fultec Inox (Brazil)'), (38609, 'https://ror.org/04baw4297', 'en', 1, 'https://ror.org/04baw4297 Jiangmen Central Hospital'), (38610, 'https://ror.org/04bbesv37', 'en', 1, 'https://ror.org/04bbesv37 Adventist International Institute of Advanced Studies'), (38611, 'https://ror.org/04bcp1r41', 'no_lang_code', 1, 'https://ror.org/04bcp1r41 Bærgården Østre Enger (Norway)'), (38612, 'https://ror.org/04bdbag67', 'no_lang_code', 1, 'https://ror.org/04bdbag67 Geomatikk (Norway)'), (38613, 'https://ror.org/04bfpy692', 'sl', 1, 'https://ror.org/04bfpy692 S&T Slovenija'), (38614, 'https://ror.org/04bjfzn83', 'fr', 1, 'https://ror.org/04bjfzn83 Centre Hospitalier d''Albi'), (38615, 'https://ror.org/04bkje958', 'de', 1, 'https://ror.org/04bkje958 Kliniken Schmieder'), (38616, 'https://ror.org/04bmqy315', 'fr', 1, 'https://ror.org/04bmqy315 Centre Hospitalier Universitaire d’Oujda'), (38617, 'https://ror.org/04bndcy38', 'no_lang_code', 1, 'https://ror.org/04bndcy38 Remstat (Poland)'), (38618, 'https://ror.org/04bpra047', 'no_lang_code', 1, 'https://ror.org/04bpra047 Mustad (Norway)'), (38619, 'https://ror.org/04bpvsh10', 'no_lang_code', 1, 'https://ror.org/04bpvsh10 Epsis (Norway)'), (38620, 'https://ror.org/04bsr5107', 'no_lang_code', 1, 'https://ror.org/04bsr5107 Helly Hansen (Norway)'), (38621, 'https://ror.org/04bsrdh64', 'en', 1, 'https://ror.org/04bsrdh64 Strømme Foundation'), (38622, 'https://ror.org/04bst6v91', 'en', 1, 'https://ror.org/04bst6v91 Winnie Palmer Hospital for Women & Babies'), (38623, 'https://ror.org/04bw0hg47', 'en', 1, 'https://ror.org/04bw0hg47 Faculty of Design'), (38624, 'https://ror.org/04bwvvd57', 'no_lang_code', 1, 'https://ror.org/04bwvvd57 SAS Institute (Norway)'), (38625, 'https://ror.org/04bxk0j07', 'no_lang_code', 1, 'https://ror.org/04bxk0j07 Núcleo de Pesquisas Aplicadas (Brazil)'), (38626, 'https://ror.org/04bxrwt74', 'no_lang_code', 1, 'https://ror.org/04bxrwt74 Environgas (Norway)'), (38627, 'https://ror.org/04bykga04', 'en', 1, 'https://ror.org/04bykga04 ASCE Foundation'), (38628, 'https://ror.org/04bz3d640', 'en', 1, 'https://ror.org/04bz3d640 Kitovu Hospital'), (38629, 'https://ror.org/04c0mxs15', 'no_lang_code', 1, 'https://ror.org/04c0mxs15 Leif Høegh (Norway)'), (38630, 'https://ror.org/04c1v2b17', 'en', 1, 'https://ror.org/04c1v2b17 Center for Innovation'), (38631, 'https://ror.org/04c2cdz27', 'no', 1, 'https://ror.org/04c2cdz27 Norsk Fjørfelag'), (38632, 'https://ror.org/04c318s33', 'en', 1, 'https://ror.org/04c318s33 Camden and Campbelltown Hospitals'), (38633, 'https://ror.org/04c6t2v13', 'no_lang_code', 1, 'https://ror.org/04c6t2v13 TDJ (Poland)'), (38634, 'https://ror.org/04c7hbg15', 'no_lang_code', 1, 'https://ror.org/04c7hbg15 Norwegian Graphite (Norway)'), (38635, 'https://ror.org/04c9n9394', 'no_lang_code', 1, 'https://ror.org/04c9n9394 Rotoboost (Norway)'), (38636, 'https://ror.org/04cbhvr29', 'no_lang_code', 1, 'https://ror.org/04cbhvr29 PartnerPlast (Norway)'), (38637, 'https://ror.org/04ce4rf90', 'en', 1, 'https://ror.org/04ce4rf90 Dr. Rajendra Prasad Government Medical College'), (38638, 'https://ror.org/04cgmg165', 'en', 1, 'https://ror.org/04cgmg165 Wuhan Sixth Hospital'), (38639, 'https://ror.org/04chwrz02', 'no_lang_code', 1, 'https://ror.org/04chwrz02 Nord-Trøndelag Elektrisitetsverk (Norway)'), (38640, 'https://ror.org/04cjp6w49', 'no_lang_code', 1, 'https://ror.org/04cjp6w49 Tezca (Brazil)'), (38641, 'https://ror.org/04ckq7q54', 'no', 1, 'https://ror.org/04ckq7q54 Direktoratet for økonomistyring'), (38642, 'https://ror.org/04cp2as26', 'en', 1, 'https://ror.org/04cp2as26 Learn By Motion'), (38643, 'https://ror.org/04crred05', 'en', 1, 'https://ror.org/04crred05 Paradox Sports'), (38644, 'https://ror.org/04csdp142', 'no_lang_code', 1, 'https://ror.org/04csdp142 Algae Biotecnologia (Brazil)'), (38645, 'https://ror.org/04csfg491', 'en', 1, 'https://ror.org/04csfg491 Bedford Orthopedic Hospital'), (38646, 'https://ror.org/04ctbxy49', 'en', 1, 'https://ror.org/04ctbxy49 VIA University College'), (38647, 'https://ror.org/04ctcce15', 'en', 1, 'https://ror.org/04ctcce15 Norwegian Ports Association'), (38648, 'https://ror.org/04cvmcb43', 'en', 1, 'https://ror.org/04cvmcb43 Bialystok School of Economics'), (38649, 'https://ror.org/04cwrrv92', 'de', 1, 'https://ror.org/04cwrrv92 Praxis für Humangenetik'), (38650, 'https://ror.org/04cwzs398', 'en', 1, 'https://ror.org/04cwzs398 Alvin Community College'), (38651, 'https://ror.org/04cxs2q71', 'no_lang_code', 1, 'https://ror.org/04cxs2q71 Createc (United Kingdom)'), (38652, 'https://ror.org/04cymm537', 'es', 1, 'https://ror.org/04cymm537 Instituto Tecnológico de Ciudad Madero'), (38653, 'https://ror.org/04d1j9a12', 'no_lang_code', 1, 'https://ror.org/04d1j9a12 Lanopro (Norway)'), (38654, 'https://ror.org/04d1z5w79', 'en', 1, 'https://ror.org/04d1z5w79 Gena'), (38655, 'https://ror.org/04d25v571', 'no_lang_code', 1, 'https://ror.org/04d25v571 Cosmo Bio (Japan)'), (38656, 'https://ror.org/04d2fgr32', 'no_lang_code', 1, 'https://ror.org/04d2fgr32 Zenit (Poland)'), (38657, 'https://ror.org/04d3fgy68', 'no_lang_code', 1, 'https://ror.org/04d3fgy68 Svovel (Norway)'), (38658, 'https://ror.org/04d3sf574', 'en', 1, 'https://ror.org/04d3sf574 Henan Provincial Chest Hospital 河南省胸科医院'), (38659, 'https://ror.org/04d4bt482', 'en', 1, 'https://ror.org/04d4bt482 Isra University جامعة الإسراء'), (38660, 'https://ror.org/04d5fry87', 'no_lang_code', 1, 'https://ror.org/04d5fry87 Hyejeon College 혜전대학교'), (38661, 'https://ror.org/04d5rm267', 'en', 1, 'https://ror.org/04d5rm267 Chesapeake College'), (38662, 'https://ror.org/04d68yh59', 'en', 1, 'https://ror.org/04d68yh59 IILM Institute for Higher Education'), (38663, 'https://ror.org/04d6hs296', 'no_lang_code', 1, 'https://ror.org/04d6hs296 Centagro (Brazil)'), (38664, 'https://ror.org/04d8dwz89', 'no_lang_code', 1, 'https://ror.org/04d8dwz89 Bio Soja Group (Brazil) Grupo Bio Soja'), (38665, 'https://ror.org/04da9qq88', 'no_lang_code', 1, 'https://ror.org/04da9qq88 PaleBlue (Norway)'), (38666, 'https://ror.org/04dacm347', 'no_lang_code', 1, 'https://ror.org/04dacm347 Mentum (Norway)'), (38667, 'https://ror.org/04dbasv67', 'en', 1, 'https://ror.org/04dbasv67 Canmore General Hospital'), (38668, 'https://ror.org/04dcrct74', 'no_lang_code', 1, 'https://ror.org/04dcrct74 Exova Metech (Norway)'), (38669, 'https://ror.org/04dcv0236', 'en', 1, 'https://ror.org/04dcv0236 Norwegian State Housing Bank'), (38670, 'https://ror.org/04ddxpg37', 'en', 1, 'https://ror.org/04ddxpg37 Albyn Hospital'), (38671, 'https://ror.org/04dh6fw56', 'en', 1, 'https://ror.org/04dh6fw56 Instituto Tecnológico de Jiquilpan Technological Institute of Jiquilpan'), (38672, 'https://ror.org/04dhkam06', 'en', 1, 'https://ror.org/04dhkam06 Los Robles Hospital & Medical Center'), (38673, 'https://ror.org/04dhpvj28', 'no_lang_code', 1, 'https://ror.org/04dhpvj28 Líbera Tecnologia e Inovação (Brazil)'), (38674, 'https://ror.org/04dj1na10', 'en', 1, 'https://ror.org/04dj1na10 University College Lillebaelt University College Lillebælt'), (38675, 'https://ror.org/04dj9qm44', 'pt', 1, 'https://ror.org/04dj9qm44 Laboratório Biosintesis P&D'), (38676, 'https://ror.org/04djf6d46', 'no_lang_code', 1, 'https://ror.org/04djf6d46 Sava (Slovenia)'), (38677, 'https://ror.org/04dm8yx03', 'en', 1, 'https://ror.org/04dm8yx03 North-West State Technical University'), (38678, 'https://ror.org/04dmsj331', 'no_lang_code', 1, 'https://ror.org/04dmsj331 Mylifeproducts (Norway)'), (38679, 'https://ror.org/04dp8fd47', 'en', 1, 'https://ror.org/04dp8fd47 Jubilee Hospital'), (38680, 'https://ror.org/04dpavv81', 'no_lang_code', 1, 'https://ror.org/04dpavv81 I 2 Družba za Založništvo Izobraževanje in Raziskovanje'), (38681, 'https://ror.org/04dq2e820', 'pt', 1, 'https://ror.org/04dq2e820 Associação Brasileira de Psicoterapia e Medicina Comportamental'), (38682, 'https://ror.org/04dq5k727', 'en', 1, 'https://ror.org/04dq5k727 BMI The Meriden Hospital'), (38683, 'https://ror.org/04dqh1705', 'no_lang_code', 1, 'https://ror.org/04dqh1705 Kayros Ambiental e Agrícola (Brazil)'), (38684, 'https://ror.org/04dr0x243', 'en', 1, 'https://ror.org/04dr0x243 Arroyo Grande Community Hospital'), (38685, 'https://ror.org/04drf3w31', 'no_lang_code', 1, 'https://ror.org/04drf3w31 Dencril (Brazil)'), (38686, 'https://ror.org/04dwnx646', 'no_lang_code', 1, 'https://ror.org/04dwnx646 Smi Human (Norway)'), (38687, 'https://ror.org/04dz9hf76', 'no_lang_code', 1, 'https://ror.org/04dz9hf76 Onsite Treatment Technologies (Norway)'), (38688, 'https://ror.org/04e0ysh28', 'no_lang_code', 1, 'https://ror.org/04e0ysh28 Trouw Nutrition (Brazil)'), (38689, 'https://ror.org/04e1yzk82', 'en', 1, 'https://ror.org/04e1yzk82 Robert Schumann Hochschule Robert Schumann University of Music and Media'), (38690, 'https://ror.org/04e25k642', 'no_lang_code', 1, 'https://ror.org/04e25k642 Metal Plasma (Brazil)'), (38691, 'https://ror.org/04e3aws14', 'en', 1, 'https://ror.org/04e3aws14 Farooq Hospital'), (38692, 'https://ror.org/04e4aky44', 'en', 1, 'https://ror.org/04e4aky44 American Fork Hospital'), (38693, 'https://ror.org/04e7dhd60', 'en', 1, 'https://ror.org/04e7dhd60 Vermont State Hospital'), (38694, 'https://ror.org/04e7zd380', 'en', 1, 'https://ror.org/04e7zd380 Berlin Central and Regional Library Zentral- und Landesbibliothek Berlin'), (38695, 'https://ror.org/04e99wk33', 'no_lang_code', 1, 'https://ror.org/04e99wk33 Nygon (Norway)'), (38696, 'https://ror.org/04e9sck44', 'no_lang_code', 1, 'https://ror.org/04e9sck44 Visma (Norway)'), (38697, 'https://ror.org/04ea07q57', 'no_lang_code', 1, 'https://ror.org/04ea07q57 Mytech (Japan)'), (38698, 'https://ror.org/04eac2y27', 'en', 1, 'https://ror.org/04eac2y27 Institute for Project Management and Information Technology'), (38699, 'https://ror.org/04ebj7x87', 'no_lang_code', 1, 'https://ror.org/04ebj7x87 Genbody (South Korea)'), (38700, 'https://ror.org/04eefyt88', 'en', 1, 'https://ror.org/04eefyt88 Bhisho Provincial Hospital'), (38701, 'https://ror.org/04efgec06', 'no', 1, 'https://ror.org/04efgec06 Sikkerhetssenteret Rørvik'), (38702, 'https://ror.org/04eh3ca90', 'no_lang_code', 1, 'https://ror.org/04eh3ca90 WuXi AppTec (China)'), (38703, 'https://ror.org/04ehae637', 'no_lang_code', 1, 'https://ror.org/04ehae637 Therma Industri (Norway)'), (38704, 'https://ror.org/04ehecb51', 'no_lang_code', 1, 'https://ror.org/04ehecb51 Intrapoint (Norway)'), (38705, 'https://ror.org/04ehzpr81', 'no_lang_code', 1, 'https://ror.org/04ehzpr81 Odfjell Drilling (Norway)'), (38706, 'https://ror.org/04ejtfc04', 'no_lang_code', 1, 'https://ror.org/04ejtfc04 Biobe (Norway)'), (38707, 'https://ror.org/04ejvay74', 'de', 1, 'https://ror.org/04ejvay74 Prosper Hospital'), (38708, 'https://ror.org/04enaaj19', 'en', 1, 'https://ror.org/04enaaj19 Volgograd State Agricultural University'), (38709, 'https://ror.org/04epdwv63', 'no_lang_code', 1, 'https://ror.org/04epdwv63 Termall (Poland)'), (38710, 'https://ror.org/04er4p734', 'no_lang_code', 1, 'https://ror.org/04er4p734 Itabras Mineração (Brazil)'), (38711, 'https://ror.org/04err9585', 'no_lang_code', 1, 'https://ror.org/04err9585 Norges Vel (Norway)'), (38712, 'https://ror.org/04esh0d76', 'en', 1, 'https://ror.org/04esh0d76 Melrose-Wakefield Hospital'), (38713, 'https://ror.org/04etf9p48', 'it', 1, 'https://ror.org/04etf9p48 Ospedali Riuniti San Giovanni di Dio e Ruggi d''Aragona'), (38714, 'https://ror.org/04evhzp91', 'fr', 1, 'https://ror.org/04evhzp91 Agence Science Presse'), (38715, 'https://ror.org/04evkdk49', 'no_lang_code', 1, 'https://ror.org/04evkdk49 MEMS (Brazil)'), (38716, 'https://ror.org/04evrma49', 'no_lang_code', 1, 'https://ror.org/04evrma49 Nicarnica Aviation (Norway)'), (38717, 'https://ror.org/04ew4eb36', 'en', 1, 'https://ror.org/04ew4eb36 St John of God Hospital'), (38718, 'https://ror.org/04ey7f468', 'en', 1, 'https://ror.org/04ey7f468 Saint Mary''s Hospital Luodong'), (38719, 'https://ror.org/04f0f7630', 'en', 1, 'https://ror.org/04f0f7630 Centro Conjunto de Advertencia de Tifones Joint Typhoon Warning Center'), (38720, 'https://ror.org/04f2zcj37', 'no_lang_code', 1, 'https://ror.org/04f2zcj37 PoliMaT Centre of Excellence (Slovenia)'), (38721, 'https://ror.org/04f330m50', 'en', 1, 'https://ror.org/04f330m50 Clovis Community College'), (38722, 'https://ror.org/04f501w39', 'no_lang_code', 1, 'https://ror.org/04f501w39 Aseon (Norway)'), (38723, 'https://ror.org/04f7crx66', 'en', 1, 'https://ror.org/04f7crx66 Red Deer Regional Hospital'), (38724, 'https://ror.org/04f970v93', 'en', 1, 'https://ror.org/04f970v93 Fifth Affiliated Hospital of Xinjiang Medical University'), (38725, 'https://ror.org/04faqmv97', 'pl', 1, 'https://ror.org/04faqmv97 Stowarzyszenie Łódzki Klub Amazonka'), (38726, 'https://ror.org/04fbf2x65', 'no_lang_code', 1, 'https://ror.org/04fbf2x65 Wojskowe Zakłady Motoryzacyjne (Poland)'), (38727, 'https://ror.org/04fc0n424', 'no_lang_code', 1, 'https://ror.org/04fc0n424 Colifast (Norway)'), (38728, 'https://ror.org/04fc2q781', 'en', 1, 'https://ror.org/04fc2q781 Divisional Headquarters Teaching Hospital Mirpur'), (38729, 'https://ror.org/04fcfgh72', 'en', 1, 'https://ror.org/04fcfgh72 Bayshore Community Hospital'), (38730, 'https://ror.org/04fd1r707', 'no_lang_code', 1, 'https://ror.org/04fd1r707 Kverneland Group (Norway)'), (38731, 'https://ror.org/04fe46645', 'en', 1, 'https://ror.org/04fe46645 University Hospital in Halle Universitätsklinikum Halle'), (38732, 'https://ror.org/04fe8dr29', 'no_lang_code', 1, 'https://ror.org/04fe8dr29 Biological Consulting Services (United States)'), (38733, 'https://ror.org/04febtn50', 'no_lang_code', 1, 'https://ror.org/04febtn50 FinnMedi (Finland)'), (38734, 'https://ror.org/04fehbe54', 'no_lang_code', 1, 'https://ror.org/04fehbe54 Salonit Anhovo (Slovenia)'), (38735, 'https://ror.org/04fehsp44', 'en', 1, 'https://ror.org/04fehsp44 Liv Hospital'), (38736, 'https://ror.org/04ffwnd85', 'en', 1, 'https://ror.org/04ffwnd85 Epsom Hospital'), (38737, 'https://ror.org/04fgxrt38', 'en', 1, 'https://ror.org/04fgxrt38 Kirsch Foundation'), (38738, 'https://ror.org/04fh8sh30', 'pt', 1, 'https://ror.org/04fh8sh30 Sociedade Brasileira de Estudos Interdisciplinares da Comunicação'), (38739, 'https://ror.org/04fhs8414', 'no', 1, 'https://ror.org/04fhs8414 Oppegård Kommune'), (38740, 'https://ror.org/04fhvfc61', 'no_lang_code', 1, 'https://ror.org/04fhvfc61 Olivita (Norway)'), (38741, 'https://ror.org/04fjgxw20', 'pt', 1, 'https://ror.org/04fjgxw20 Núcleo Paradigma'), (38742, 'https://ror.org/04fm9y474', 'en', 1, 'https://ror.org/04fm9y474 North East University'), (38743, 'https://ror.org/04fmx6120', 'no_lang_code', 1, 'https://ror.org/04fmx6120 Chaotic.com (United States)'), (38744, 'https://ror.org/04fnhr972', 'en', 1, 'https://ror.org/04fnhr972 He Eye Hospital'), (38745, 'https://ror.org/04fnkjm97', 'en', 1, 'https://ror.org/04fnkjm97 South Norway European Office'), (38746, 'https://ror.org/04fr8n552', 'no_lang_code', 1, 'https://ror.org/04fr8n552 Elea iC (Slovenia)'), (38747, 'https://ror.org/04frfb960', 'en', 1, 'https://ror.org/04frfb960 Mackay Base Hospital'), (38748, 'https://ror.org/04ftf3m30', 'en', 1, 'https://ror.org/04ftf3m30 Fort Ticonderoga Association'), (38749, 'https://ror.org/04fx4vz25', 'en', 1, 'https://ror.org/04fx4vz25 Community Health Centre Ljubljana'), (38750, 'https://ror.org/04fzjj956', 'no_lang_code', 1, 'https://ror.org/04fzjj956 NTNU Technology Transfer (Norway)'), (38751, 'https://ror.org/04g138p23', 'de', 1, 'https://ror.org/04g138p23 Niedersächsisches Landesarchiv'), (38752, 'https://ror.org/04g471954', 'no_lang_code', 1, 'https://ror.org/04g471954 Ecotec Equipment and Systems (Brazil)'), (38753, 'https://ror.org/04g6zen34', 'en', 1, 'https://ror.org/04g6zen34 Bibliotheca Hertziana - Max-Planck-Institut für Kunstgeschichte Bibliotheca Hertziana – Max Planck Institute for Art History'), (38754, 'https://ror.org/04g7c7q49', 'no_lang_code', 1, 'https://ror.org/04g7c7q49 ALIS Engineering and Systems Solutions (Brazil) ALIS Soluções em Engenharia e Sistemas'), (38755, 'https://ror.org/04g9pp561', 'no_lang_code', 1, 'https://ror.org/04g9pp561 Fortis Hospital'), (38756, 'https://ror.org/04gaydk29', 'no_lang_code', 1, 'https://ror.org/04gaydk29 Piql (Norway)'), (38757, 'https://ror.org/04gc45324', 'no_lang_code', 1, 'https://ror.org/04gc45324 Jool Capital Partner (Norway)'), (38758, 'https://ror.org/04gcrjz11', 'en', 1, 'https://ror.org/04gcrjz11 Sir Sunderlal Hospital'), (38759, 'https://ror.org/04gd7mk44', 'no_lang_code', 1, 'https://ror.org/04gd7mk44 Aanderaa (Norway)'), (38760, 'https://ror.org/04gens608', 'no_lang_code', 1, 'https://ror.org/04gens608 NorTronic (Norway)'), (38761, 'https://ror.org/04gfj4836', 'no_lang_code', 1, 'https://ror.org/04gfj4836 Vipharm (Poland)'), (38762, 'https://ror.org/04ghzbn43', 'no_lang_code', 1, 'https://ror.org/04ghzbn43 ASPA (Poland)'), (38763, 'https://ror.org/04gjng233', 'no_lang_code', 1, 'https://ror.org/04gjng233 Nanofitotec (Brazil)'); INSERT INTO `rors` VALUES (38764, 'https://ror.org/04gnscf86', 'no_lang_code', 1, 'https://ror.org/04gnscf86 Fredrikstad Energi (Norway)'), (38765, 'https://ror.org/04gnvkj51', 'pt', 1, 'https://ror.org/04gnvkj51 Instituto Cultural Cravo Albin'), (38766, 'https://ror.org/04gp4me61', 'no', 1, 'https://ror.org/04gp4me61 Norsk Medieforskerlag'), (38767, 'https://ror.org/04gqcjz27', 'no_lang_code', 1, 'https://ror.org/04gqcjz27 Scatec (Norway)'), (38768, 'https://ror.org/04grq3m63', 'en', 1, 'https://ror.org/04grq3m63 American Heart of Poland'), (38769, 'https://ror.org/04gs6v336', 'en', 1, 'https://ror.org/04gs6v336 Jining First People''s Hospital 济宁市第一人民医院'), (38770, 'https://ror.org/04gsfat44', 'no_lang_code', 1, 'https://ror.org/04gsfat44 GeoPlayGround (Norway)'), (38771, 'https://ror.org/04gsxzk49', 'no_lang_code', 1, 'https://ror.org/04gsxzk49 Gran Tre (Norway)'), (38772, 'https://ror.org/04gtryb63', 'no_lang_code', 1, 'https://ror.org/04gtryb63 Life Science Center Düsseldorf (Germany)'), (38773, 'https://ror.org/04gwybq17', 'en', 1, 'https://ror.org/04gwybq17 Welding Institute (Slovenia)'), (38774, 'https://ror.org/04gyfva88', 'no_lang_code', 1, 'https://ror.org/04gyfva88 Bio Controle (Brazil)'), (38775, 'https://ror.org/04gzs4s06', 'es', 1, 'https://ror.org/04gzs4s06 Hospital Británico'), (38776, 'https://ror.org/04gztv912', 'no_lang_code', 1, 'https://ror.org/04gztv912 Etac (Norway)'), (38777, 'https://ror.org/04gzw7t05', 'en', 1, 'https://ror.org/04gzw7t05 Coahoma Community College'), (38778, 'https://ror.org/04h0zn247', 'no_lang_code', 1, 'https://ror.org/04h0zn247 Chiron (Norway)'), (38779, 'https://ror.org/04h1dx218', 'no_lang_code', 1, 'https://ror.org/04h1dx218 Wasko (Poland)'), (38780, 'https://ror.org/04h1n6t82', 'no_lang_code', 1, 'https://ror.org/04h1n6t82 Bartec Pixavi (Norway)'), (38781, 'https://ror.org/04h29cm67', 'no_lang_code', 1, 'https://ror.org/04h29cm67'), (38782, 'https://ror.org/04h3xje09', 'en', 1, 'https://ror.org/04h3xje09 College of Podiatry'), (38783, 'https://ror.org/04h84kq35', 'en', 1, 'https://ror.org/04h84kq35 Sobell House'), (38784, 'https://ror.org/04h8qa024', 'no_lang_code', 1, 'https://ror.org/04h8qa024 Empilisweni District Hospital'), (38785, 'https://ror.org/04h9z0906', 'en', 1, 'https://ror.org/04h9z0906 Central Piedmont Community College'), (38786, 'https://ror.org/04hbame29', 'en', 1, 'https://ror.org/04hbame29 Gheskio Centers'), (38787, 'https://ror.org/04hbbc968', 'en', 1, 'https://ror.org/04hbbc968 Kalmunai North Hospital கல்முனை வடக்கு ஆதார வைத்தியசாலை'), (38788, 'https://ror.org/04hbzm840', 'en', 1, 'https://ror.org/04hbzm840 Chinese General Hospital and Medical Center'), (38789, 'https://ror.org/04hcs1a71', 'en', 1, 'https://ror.org/04hcs1a71 Bay State College'), (38790, 'https://ror.org/04hdhsf72', 'no_lang_code', 1, 'https://ror.org/04hdhsf72 Visuray (Norway)'), (38791, 'https://ror.org/04hfdry06', 'en', 1, 'https://ror.org/04hfdry06 Virika Hospital'), (38792, 'https://ror.org/04hh2kn75', 'en', 1, 'https://ror.org/04hh2kn75 Ospidéal Chontae Ros Comáin Roscommon University Hospital'), (38793, 'https://ror.org/04hqqqx81', 'en', 1, 'https://ror.org/04hqqqx81 Chamber of Agriculture and Forestry of Slovenia'), (38794, 'https://ror.org/04hwc4q95', 'no_lang_code', 1, 'https://ror.org/04hwc4q95 Histoindex (Singapore)'), (38795, 'https://ror.org/04hxqef50', 'no', 1, 'https://ror.org/04hxqef50 Dans i Skolen'), (38796, 'https://ror.org/04hy2yk18', 'no', 1, 'https://ror.org/04hy2yk18 Egal Teater'), (38797, 'https://ror.org/04hybbx63', 'no_lang_code', 1, 'https://ror.org/04hybbx63 Prophylix Pharma (Norway)'), (38798, 'https://ror.org/04hyzh408', 'no', 1, 'https://ror.org/04hyzh408 Vestvågøy Kommune'), (38799, 'https://ror.org/04hzcb818', 'no_lang_code', 1, 'https://ror.org/04hzcb818 Wang Electro-Opto (United States)'), (38800, 'https://ror.org/04j1qx617', 'en', 1, 'https://ror.org/04j1qx617 Aviation General Hospital'), (38801, 'https://ror.org/04j246913', 'no_lang_code', 1, 'https://ror.org/04j246913 Badger Explorer (Norway)'), (38802, 'https://ror.org/04j2kd042', 'en', 1, 'https://ror.org/04j2kd042 Paddington Cat Hospital'), (38803, 'https://ror.org/04j3z9j34', 'no_lang_code', 1, 'https://ror.org/04j3z9j34 Arkitektbedriftene (Norway)'), (38804, 'https://ror.org/04j69ht58', 'en', 1, 'https://ror.org/04j69ht58 Hewu Hospital'), (38805, 'https://ror.org/04j6cwd10', 'no_lang_code', 1, 'https://ror.org/04j6cwd10 RLP AgroScience (Germany)'), (38806, 'https://ror.org/04j6r2795', 'en', 1, 'https://ror.org/04j6r2795 National Education Institute of the Republic of Slovenia'), (38807, 'https://ror.org/04j6xxj55', 'en', 1, 'https://ror.org/04j6xxj55 Ufa State University of Economics and Service'), (38808, 'https://ror.org/04j9afg86', 'en', 1, 'https://ror.org/04j9afg86 Centre of Excellence NAMASTE'), (38809, 'https://ror.org/04j9me356', 'no_lang_code', 1, 'https://ror.org/04j9me356 Engene (Brazil)'), (38810, 'https://ror.org/04ja6xk17', 'no_lang_code', 1, 'https://ror.org/04ja6xk17 Genomed (Poland)'), (38811, 'https://ror.org/04jbyz122', 'en', 1, 'https://ror.org/04jbyz122 Edmond and Lily Safra Children''s Hospital'), (38812, 'https://ror.org/04je37366', 'en', 1, 'https://ror.org/04je37366 Indian Agricultural Universities Association'), (38813, 'https://ror.org/04jgpa018', 'en', 1, 'https://ror.org/04jgpa018 Babasaheb Bhimrao Ambedkar Bihar University'), (38814, 'https://ror.org/04jh1kc52', 'no_lang_code', 1, 'https://ror.org/04jh1kc52 Wirescan (Norway)'), (38815, 'https://ror.org/04jhrwr82', 'de', 1, 'https://ror.org/04jhrwr82 St. Joseph-Krankenhaus'), (38816, 'https://ror.org/04jmra880', 'en', 1, 'https://ror.org/04jmra880 Scientific Research Centre Bistra Ptu'), (38817, 'https://ror.org/04jn7v116', 'en', 1, 'https://ror.org/04jn7v116 Yangon Children''s Hospital ရန်ကုန်ကလေးဆေးရုံကြီ'), (38818, 'https://ror.org/04jnhhw51', 'en', 1, 'https://ror.org/04jnhhw51 Carolinas HealthCare Foundation'), (38819, 'https://ror.org/04jnt3s43', 'no_lang_code', 1, 'https://ror.org/04jnt3s43 Seløy Undervannsservice (Norway)'), (38820, 'https://ror.org/04jqvmp15', 'no_lang_code', 1, 'https://ror.org/04jqvmp15 Swix Sport (Norway)'), (38821, 'https://ror.org/04jvka613', 'en', 1, 'https://ror.org/04jvka613 National Institute of Technology, Toyama College 富山高等専門学校'), (38822, 'https://ror.org/04jvq3152', 'pt', 1, 'https://ror.org/04jvq3152 Sociedade Brasileira de Medicina Nuclear e Imagem Molecular'), (38823, 'https://ror.org/04jw7he54', 'no', 1, 'https://ror.org/04jw7he54 Jærmuseet'), (38824, 'https://ror.org/04jwvvb34', 'no_lang_code', 1, 'https://ror.org/04jwvvb34 Welding Science (Brazil)'), (38825, 'https://ror.org/04jxxwk32', 'en', 1, 'https://ror.org/04jxxwk32 KKR ENT Hospital and Research Institute'), (38826, 'https://ror.org/04k0a2p36', 'no_lang_code', 1, 'https://ror.org/04k0a2p36 Van Drunen Farms (United States)'), (38827, 'https://ror.org/04k25m262', 'en', 1, 'https://ror.org/04k25m262 108 Military Central Hospital Bệnh viện Trung ương Quân đội 108'), (38828, 'https://ror.org/04k62rh44', 'en', 1, 'https://ror.org/04k62rh44 Beijing Royal Integrative Medicine Hospital'), (38829, 'https://ror.org/04k6p0323', 'es', 1, 'https://ror.org/04k6p0323 Centro de Ciencias Penales y Política Criminal'), (38830, 'https://ror.org/04k7z5476', 'no_lang_code', 1, 'https://ror.org/04k7z5476 Norsk Medisinsk Syklotronsenter (Norway)'), (38831, 'https://ror.org/04k9mqs78', 'en', 1, 'https://ror.org/04k9mqs78 Office of Integrative Activities'), (38832, 'https://ror.org/04kae4d54', 'no_lang_code', 1, 'https://ror.org/04kae4d54 Farmacore (Brazil)'), (38833, 'https://ror.org/04kam9969', 'no_lang_code', 1, 'https://ror.org/04kam9969 Przemysłowe Centrum Optyki (Poland)'), (38834, 'https://ror.org/04kbca671', 'no_lang_code', 1, 'https://ror.org/04kbca671 Enhanced Drilling (Norway)'), (38835, 'https://ror.org/04kbwjr52', 'no_lang_code', 1, 'https://ror.org/04kbwjr52 Kleive Mekaniske and Industriservice (Norway)'), (38836, 'https://ror.org/04kd0pe74', 'no_lang_code', 1, 'https://ror.org/04kd0pe74 CD-adapco (Germany)'), (38837, 'https://ror.org/04kecee19', 'en', 1, 'https://ror.org/04kecee19 Institute of Homeopathy James Tyler Kent Instituto de Homeopatia James Tyler Kent'), (38838, 'https://ror.org/04kff0p34', 'no_lang_code', 1, 'https://ror.org/04kff0p34 Polsat (Poland)'), (38839, 'https://ror.org/04kfz7522', 'no_lang_code', 1, 'https://ror.org/04kfz7522 Flex (Canada)'), (38840, 'https://ror.org/04kggmg61', 'no_lang_code', 1, 'https://ror.org/04kggmg61 Zephyr Software (United States)'), (38841, 'https://ror.org/04kgpzh67', 'en', 1, 'https://ror.org/04kgpzh67 Confederation of Norwegian Enterprise'), (38842, 'https://ror.org/04kmnjy05', 'en', 1, 'https://ror.org/04kmnjy05 Deccan School of Hospital Management'), (38843, 'https://ror.org/04knhp704', 'no', 1, 'https://ror.org/04knhp704 Finnmark Fylkeskommune'), (38844, 'https://ror.org/04kqbmr61', 'no_lang_code', 1, 'https://ror.org/04kqbmr61 Nunatak (Norway)'), (38845, 'https://ror.org/04krcaz19', 'no_lang_code', 1, 'https://ror.org/04krcaz19 Feedback Aquaculture (Norway)'), (38846, 'https://ror.org/04krpa529', 'no_lang_code', 1, 'https://ror.org/04krpa529 WindMaster Technologies'), (38847, 'https://ror.org/04kt5nj50', 'no_lang_code', 1, 'https://ror.org/04kt5nj50 Maritime Møbler (Norway)'), (38848, 'https://ror.org/04ktat366', 'en', 1, 'https://ror.org/04ktat366 Helmholtz-Institut Münster Helmholtz-Institute Münster'), (38849, 'https://ror.org/04kvfjw03', 'en', 1, 'https://ror.org/04kvfjw03 Madras Institute of Development Studies சென்னை வளர்ச்சி ஆராய்ச்சி நிறுவனம்'), (38850, 'https://ror.org/04kzyq982', 'no_lang_code', 1, 'https://ror.org/04kzyq982 LABO Mixed Realities (Norway)'), (38851, 'https://ror.org/04m1akh07', 'no_lang_code', 1, 'https://ror.org/04m1akh07 Radenska (Slovenia)'), (38852, 'https://ror.org/04m21mw32', 'pt', 1, 'https://ror.org/04m21mw32 State University of Amapá Universidade Estadual do Amapá'), (38853, 'https://ror.org/04m3mdp26', 'pt', 1, 'https://ror.org/04m3mdp26 Associação Brasileira de Alergia e Imunologia'), (38854, 'https://ror.org/04m55cb74', 'no_lang_code', 1, 'https://ror.org/04m55cb74 Anandalok Hospital आनंदलोक अस्पताल'), (38855, 'https://ror.org/04m5b7294', 'en', 1, 'https://ror.org/04m5b7294 Jaseng Hospital of Korean Medicine'), (38856, 'https://ror.org/04m5dzp25', 'no_lang_code', 1, 'https://ror.org/04m5dzp25 Oida Hospital'), (38857, 'https://ror.org/04m6b4442', 'en', 1, 'https://ror.org/04m6b4442 Maksymilian Pluta Institute of Applied Optics'), (38858, 'https://ror.org/04m7ezr62', 'no_lang_code', 1, 'https://ror.org/04m7ezr62 Tele-Fonika Kable (Poland)'), (38859, 'https://ror.org/04m8ndw19', 'no_lang_code', 1, 'https://ror.org/04m8ndw19 Silkem (Slovenia)'), (38860, 'https://ror.org/04m91d487', 'no_lang_code', 1, 'https://ror.org/04m91d487 Dynea (Norway)'), (38861, 'https://ror.org/04maxh374', 'en', 1, 'https://ror.org/04maxh374 Documenta Archive'), (38862, 'https://ror.org/04mc60a87', 'it', 1, 'https://ror.org/04mc60a87 Ospedale Buon Consiglio Fatebenefratelli'), (38863, 'https://ror.org/04mcehe57', 'no_lang_code', 1, 'https://ror.org/04mcehe57 Tind Technologies (Norway)'), (38864, 'https://ror.org/04mcj7g72', 'no_lang_code', 1, 'https://ror.org/04mcj7g72 Bialanx (United States)'), (38865, 'https://ror.org/04me72w78', 'en', 1, 'https://ror.org/04me72w78 Chinook Regional Hospital'), (38866, 'https://ror.org/04mf0wv34', 'fr', 1, 'https://ror.org/04mf0wv34 CEA LETI'), (38867, 'https://ror.org/04mffe096', 'no_lang_code', 1, 'https://ror.org/04mffe096 Aqualex Multimedia Consortium (Ireland)'), (38868, 'https://ror.org/04mg8wm74', 'en', 1, 'https://ror.org/04mg8wm74 Division of Astronomical Sciences'), (38869, 'https://ror.org/04mmf1y69', 'en', 1, 'https://ror.org/04mmf1y69 Chandragupt Institute of Management'), (38870, 'https://ror.org/04my4mt94', 'no_lang_code', 1, 'https://ror.org/04my4mt94 Ayasdi (United States)'), (38871, 'https://ror.org/04myjbb93', 'no_lang_code', 1, 'https://ror.org/04myjbb93 Organia (Brazil)'), (38872, 'https://ror.org/04mzgyy45', 'en', 1, 'https://ror.org/04mzgyy45 Wayne County Historical Society'), (38873, 'https://ror.org/04n0d8e29', 'pt', 1, 'https://ror.org/04n0d8e29 Instituto Nacional de Educação de Surdos'), (38874, 'https://ror.org/04n0rp146', 'no_lang_code', 1, 'https://ror.org/04n0rp146 Enjet (South Korea)'), (38875, 'https://ror.org/04n13s404', 'no_lang_code', 1, 'https://ror.org/04n13s404 Thoni Alutec (Poland)'), (38876, 'https://ror.org/04n305y15', 'en', 1, 'https://ror.org/04n305y15 British Veterinary Association'), (38877, 'https://ror.org/04n4kxk55', 'en', 1, 'https://ror.org/04n4kxk55 Hickman Community Hospital'), (38878, 'https://ror.org/04n4xbr51', 'no_lang_code', 1, 'https://ror.org/04n4xbr51 Sensor Tech (Poland)'), (38879, 'https://ror.org/04n5ych62', 'en', 1, 'https://ror.org/04n5ych62 AdventHealth Lake Placid'), (38880, 'https://ror.org/04n6gdq39', 'en', 1, 'https://ror.org/04n6gdq39 First People''s Hospital of Nanning'), (38881, 'https://ror.org/04n7kzx92', 'no_lang_code', 1, 'https://ror.org/04n7kzx92 Megafine Pharma (India)'), (38882, 'https://ror.org/04nb3k259', 'no_lang_code', 1, 'https://ror.org/04nb3k259 SST it solutions (Brazil)'), (38883, 'https://ror.org/04nc4qk98', 'no_lang_code', 1, 'https://ror.org/04nc4qk98 High Density Devices (Norway)'), (38884, 'https://ror.org/04ncd3k75', 'no', 1, 'https://ror.org/04ncd3k75 Sogndal Fotball'), (38885, 'https://ror.org/04ndjyr10', 'en', 1, 'https://ror.org/04ndjyr10 National Science Library 中国科学院文献情报中心'), (38886, 'https://ror.org/04ngq0c47', 'en', 1, 'https://ror.org/04ngq0c47 Coal Mining Museum of Slovenia'), (38887, 'https://ror.org/04nhq6337', 'no_lang_code', 1, 'https://ror.org/04nhq6337 Abelium (Slovenia)'), (38888, 'https://ror.org/04njjet64', 'en', 1, 'https://ror.org/04njjet64 Nova revija Institute for Humanities'), (38889, 'https://ror.org/04nkken68', 'de', 1, 'https://ror.org/04nkken68 Augustana-Hochschule Neuendettelsau'), (38890, 'https://ror.org/04nkxbz64', 'no_lang_code', 1, 'https://ror.org/04nkxbz64 Tommen Gram Folie (Norway)'), (38891, 'https://ror.org/04nppa482', 'no_lang_code', 1, 'https://ror.org/04nppa482 Nextomics Biosciences (China) 未来组生物科技有限公司'), (38892, 'https://ror.org/04nq64115', 'no_lang_code', 1, 'https://ror.org/04nq64115 Ekliptik (Slovenia)'), (38893, 'https://ror.org/04nqnb117', 'en', 1, 'https://ror.org/04nqnb117 Institute of Criminology'), (38894, 'https://ror.org/04nsfpy51', 'en', 1, 'https://ror.org/04nsfpy51 Historical Archive of the City of Cologne Historisches Archiv der Stadt Köln'), (38895, 'https://ror.org/04nsks563', 'en', 1, 'https://ror.org/04nsks563 Tang Hospital'), (38896, 'https://ror.org/04nsp1e11', 'no_lang_code', 1, 'https://ror.org/04nsp1e11 Douchebags (Norway)'), (38897, 'https://ror.org/04nx0sn11', 'no_lang_code', 1, 'https://ror.org/04nx0sn11 Fesil (Norway)'), (38898, 'https://ror.org/04nxj7050', 'no_lang_code', 1, 'https://ror.org/04nxj7050 B. Braun (Germany)'), (38899, 'https://ror.org/04nybae35', 'no_lang_code', 1, 'https://ror.org/04nybae35 Drug Discovery Laboratory (Norway)'), (38900, 'https://ror.org/04nybwt17', 'en', 1, 'https://ror.org/04nybwt17 Therapeutic Guidelines'), (38901, 'https://ror.org/04p3ja862', 'en', 1, 'https://ror.org/04p3ja862 Skagit Valley Hospital'), (38902, 'https://ror.org/04p5pgm74', 'no_lang_code', 1, 'https://ror.org/04p5pgm74 Funcom (Norway)'), (38903, 'https://ror.org/04p6jw654', 'en', 1, 'https://ror.org/04p6jw654 Shoalhaven District Memorial Hospital'), (38904, 'https://ror.org/04p73je79', 'en', 1, 'https://ror.org/04p73je79 Angal Hospital'), (38905, 'https://ror.org/04p795979', 'no_lang_code', 1, 'https://ror.org/04p795979 Gce Node Service (Norway)'), (38906, 'https://ror.org/04p8aem44', 'no_lang_code', 1, 'https://ror.org/04p8aem44 Logiq (Norway)'), (38907, 'https://ror.org/04p94x951', 'no_lang_code', 1, 'https://ror.org/04p94x951 Maritime Suppliers (Norway)'), (38908, 'https://ror.org/04p98pm42', 'no_lang_code', 1, 'https://ror.org/04p98pm42 Alfa (Norway)'), (38909, 'https://ror.org/04pbpmy81', 'no_lang_code', 1, 'https://ror.org/04pbpmy81 Joma International (Norway)'), (38910, 'https://ror.org/04pc6dy04', 'en', 1, 'https://ror.org/04pc6dy04 St. Theresa’s Multi-Speciality Hospital సెయింట్ తెరెసా హాస్పిటల్'), (38911, 'https://ror.org/04pdhvs51', 'no_lang_code', 1, 'https://ror.org/04pdhvs51 Expansão Científica (Brazil)'), (38912, 'https://ror.org/04pg95t29', 'no_lang_code', 1, 'https://ror.org/04pg95t29 Aarbakke Innovation (Norway)'), (38913, 'https://ror.org/04pgq1648', 'fr', 1, 'https://ror.org/04pgq1648 Centre de Liaison Sur l''Intervention et la Prévention Psychosociales'), (38914, 'https://ror.org/04ph6jr06', 'no_lang_code', 1, 'https://ror.org/04ph6jr06 Nortek (Norway)'), (38915, 'https://ror.org/04pkdxp64', 'en', 1, 'https://ror.org/04pkdxp64 Laidlaw College'), (38916, 'https://ror.org/04pp10d34', 'en', 1, 'https://ror.org/04pp10d34 Wakari Hospital'), (38917, 'https://ror.org/04ppv9r66', 'no_lang_code', 1, 'https://ror.org/04ppv9r66 AquaGen (Norway)'), (38918, 'https://ror.org/04pq2gg30', 'en', 1, 'https://ror.org/04pq2gg30 Beijing Open University'), (38919, 'https://ror.org/04pqbzj36', 'pt', 1, 'https://ror.org/04pqbzj36 Associação Brasileira de Oncologia Veterinária'), (38920, 'https://ror.org/04pr9yn16', 'no_lang_code', 1, 'https://ror.org/04pr9yn16 Metrolab Calibrações (Brazil)'), (38921, 'https://ror.org/04pspdc11', 'no_lang_code', 1, 'https://ror.org/04pspdc11 Novocure (United States)'), (38922, 'https://ror.org/04pxf4m67', 'no_lang_code', 1, 'https://ror.org/04pxf4m67 Ener-G (Norway)'), (38923, 'https://ror.org/04py84927', 'en', 1, 'https://ror.org/04py84927 Our Lady of Bellefonte Hospital'), (38924, 'https://ror.org/04pyf6e44', 'no_lang_code', 1, 'https://ror.org/04pyf6e44 Gartnerhallen (Norway)'), (38925, 'https://ror.org/04pzgb662', 'en', 1, 'https://ror.org/04pzgb662 The Scarborough Hospital'), (38926, 'https://ror.org/04pzwdz82', 'no_lang_code', 1, 'https://ror.org/04pzwdz82 NutriVita Suplementos (Brazil)'), (38927, 'https://ror.org/04q0nd296', 'en', 1, 'https://ror.org/04q0nd296 EM Strasbourg Business School'), (38928, 'https://ror.org/04q0w2t43', 'no_lang_code', 1, 'https://ror.org/04q0w2t43 Evac (Norway)'), (38929, 'https://ror.org/04q162150', 'en', 1, 'https://ror.org/04q162150 Trinity Hospital of Augusta'), (38930, 'https://ror.org/04q18mv54', 'en', 1, 'https://ror.org/04q18mv54 Sugarcane Breeding Institute'), (38931, 'https://ror.org/04q36bj19', 'en', 1, 'https://ror.org/04q36bj19 Islamic Azad University of Kashan دانشگاه آزاد اسلامی واحد کاشان'), (38932, 'https://ror.org/04q385q62', 'no_lang_code', 1, 'https://ror.org/04q385q62 Biotech (Brazil)'), (38933, 'https://ror.org/04q3mp532', 'en', 1, 'https://ror.org/04q3mp532 Institute of Mathematics Інститут математики НАН України Институт математики НАН Украины'), (38934, 'https://ror.org/04q4re318', 'no_lang_code', 1, 'https://ror.org/04q4re318 GGG (Norway)'), (38935, 'https://ror.org/04q5jra63', 'no_lang_code', 1, 'https://ror.org/04q5jra63 Inven2 (Norway)'), (38936, 'https://ror.org/04q60r444', 'no_lang_code', 1, 'https://ror.org/04q60r444 Pipetech International (Norway)'), (38937, 'https://ror.org/04q61xe51', 'no_lang_code', 1, 'https://ror.org/04q61xe51 Sensorlink (Norway)'), (38938, 'https://ror.org/04q9bek18', 'en', 1, 'https://ror.org/04q9bek18 Isothermal Community College'), (38939, 'https://ror.org/04q9g9s58', 'no_lang_code', 1, 'https://ror.org/04q9g9s58 Voss Scientific (United States)'), (38940, 'https://ror.org/04q9n1p25', 'no_lang_code', 1, 'https://ror.org/04q9n1p25 Osrodek Konstrukcyjno Badawczy (Poland)'), (38941, 'https://ror.org/04qa0nf30', 'en', 1, 'https://ror.org/04qa0nf30 Desert Valley Hospital'), (38942, 'https://ror.org/04qbta562', 'en', 1, 'https://ror.org/04qbta562 Department of Public'), (38943, 'https://ror.org/04qe4s326', 'en', 1, 'https://ror.org/04qe4s326 MediHope Super Specialty Hospital'), (38944, 'https://ror.org/04qfjb814', 'en', 1, 'https://ror.org/04qfjb814 International Hereditary Cancer Center'), (38945, 'https://ror.org/04qh35y55', 'pl', 1, 'https://ror.org/04qh35y55 Fundacja Ewy Błaszczyk Akogo'), (38946, 'https://ror.org/04qjtha44', 'no_lang_code', 1, 'https://ror.org/04qjtha44 Environmental Tectonics (Poland)'), (38947, 'https://ror.org/04qktrs60', 'no_lang_code', 1, 'https://ror.org/04qktrs60 Esri Polska (Poland)'), (38948, 'https://ror.org/04qn9mx93', 'en', 1, 'https://ror.org/04qn9mx93 Division of Biological Infrastructure'), (38949, 'https://ror.org/04qnpyg73', 'pt', 1, 'https://ror.org/04qnpyg73 Ministry of Development, Industry and Foreign Trade Ministério do Desenvolvimento, Indústria e Comércio Exterior'), (38950, 'https://ror.org/04qqnyh49', 'de', 1, 'https://ror.org/04qqnyh49 Hessisches Landesmuseum Darmstadt'), (38951, 'https://ror.org/04qrzjd35', 'en', 1, 'https://ror.org/04qrzjd35 Nordland County Council'), (38952, 'https://ror.org/04qs54252', 'en', 1, 'https://ror.org/04qs54252 Alyn Hospital'), (38953, 'https://ror.org/04qvybk43', 'en', 1, 'https://ror.org/04qvybk43 Bumin Hospital Group'), (38954, 'https://ror.org/04qw53y32', 'no_lang_code', 1, 'https://ror.org/04qw53y32 CenterKontura (Slovenia)'), (38955, 'https://ror.org/04qwxfa96', 'en', 1, 'https://ror.org/04qwxfa96 Central Alabama Community College'), (38956, 'https://ror.org/04qyb2227', 'no_lang_code', 1, 'https://ror.org/04qyb2227 Foley Hoag (United States)'), (38957, 'https://ror.org/04qze1e43', 'fr', 1, 'https://ror.org/04qze1e43 Montréal InVivo'), (38958, 'https://ror.org/04r0t2b06', 'no_lang_code', 1, 'https://ror.org/04r0t2b06 Auto Galeria (Poland)'), (38959, 'https://ror.org/04r2bq949', 'no_lang_code', 1, 'https://ror.org/04r2bq949 Kaplan (United States) Kaplan international colleges'), (38960, 'https://ror.org/04r3qwa04', 'no_lang_code', 1, 'https://ror.org/04r3qwa04 Bjørnson (Norway)'), (38961, 'https://ror.org/04r3yqx69', 'no_lang_code', 1, 'https://ror.org/04r3yqx69 OptiNose (Norway)'), (38962, 'https://ror.org/04r45q768', 'en', 1, 'https://ror.org/04r45q768 Universities Austria Österreichische Universitätenkonferenz'), (38963, 'https://ror.org/04r5dzw32', 'no_lang_code', 1, 'https://ror.org/04r5dzw32 CodeIT (Norway)'), (38964, 'https://ror.org/04r5sb480', 'no_lang_code', 1, 'https://ror.org/04r5sb480 AMZ (Poland)'), (38965, 'https://ror.org/04r5v7152', 'pt', 1, 'https://ror.org/04r5v7152 Sociedade Brasileira de Fruticultura'), (38966, 'https://ror.org/04r6eem28', 'en', 1, 'https://ror.org/04r6eem28 National Library of Serbia Народна библиотека Србије'), (38967, 'https://ror.org/04r6ymp55', 'en', 1, 'https://ror.org/04r6ymp55 Central State Hospital'), (38968, 'https://ror.org/04r6zx259', 'en', 1, 'https://ror.org/04r6zx259 AdventHealth Sebring'), (38969, 'https://ror.org/04r98y365', 'no_lang_code', 1, 'https://ror.org/04r98y365 Figgjo (Norway)'), (38970, 'https://ror.org/04rb1tf06', 'en', 1, 'https://ror.org/04rb1tf06 City College Coventry'), (38971, 'https://ror.org/04rccsv84', 'no_lang_code', 1, 'https://ror.org/04rccsv84 FORCE Technology (Norway)'), (38972, 'https://ror.org/04rcnsw78', 'en', 1, 'https://ror.org/04rcnsw78 Royal Hospital School'), (38973, 'https://ror.org/04rf11p79', 'no_lang_code', 1, 'https://ror.org/04rf11p79 Global Pet (Brazil)'), (38974, 'https://ror.org/04rfn0m45', 'no_lang_code', 1, 'https://ror.org/04rfn0m45 Chriship (Norway)'), (38975, 'https://ror.org/04rftbm22', 'en', 1, 'https://ror.org/04rftbm22 Federation of Experimental Biology Societies Federação de Sociedades de Biologia Experimental'), (38976, 'https://ror.org/04rk73070', 'no_lang_code', 1, 'https://ror.org/04rk73070 Scanmar (Norway)'), (38977, 'https://ror.org/04rn19w05', 'no', 1, 'https://ror.org/04rn19w05 Berg kommune'), (38978, 'https://ror.org/04rq4r017', 'en', 1, 'https://ror.org/04rq4r017 John F Finn Institute for Public Safety'), (38979, 'https://ror.org/04rqs6380', 'en', 1, 'https://ror.org/04rqs6380 College of Southern Idaho'), (38980, 'https://ror.org/04rrkhs81', 'en', 1, 'https://ror.org/04rrkhs81 Manchester Academic Health Science Centre'), (38981, 'https://ror.org/04rrs4x54', 'en', 1, 'https://ror.org/04rrs4x54 University of Central Asia'), (38982, 'https://ror.org/04rrsxv85', 'no_lang_code', 1, 'https://ror.org/04rrsxv85 Regentis Biomaterials (Israel)'), (38983, 'https://ror.org/04rs6p381', 'en', 1, 'https://ror.org/04rs6p381 Butterworth Hospital'), (38984, 'https://ror.org/04rss9b70', 'fr', 1, 'https://ror.org/04rss9b70 Centre Jeunesse de Quebec'), (38985, 'https://ror.org/04rx3a489', 'en', 1, 'https://ror.org/04rx3a489 Central Lakes College'), (38986, 'https://ror.org/04s0b8n66', 'fr', 1, 'https://ror.org/04s0b8n66 Institut d''Histoire du Temps Présent'), (38987, 'https://ror.org/04s1b0x88', 'no_lang_code', 1, 'https://ror.org/04s1b0x88 EN-FIST Centre of Excellence (Slovenia)'), (38988, 'https://ror.org/04s1njj71', 'en', 1, 'https://ror.org/04s1njj71 Adelaide Provincial Hospital'), (38989, 'https://ror.org/04s2w8b69', 'en', 1, 'https://ror.org/04s2w8b69 Al Khawarizmi International College'), (38990, 'https://ror.org/04s3waj07', 'en', 1, 'https://ror.org/04s3waj07 Chung Cheong University 忠淸大學 충청대학교'), (38991, 'https://ror.org/04s468185', 'no_lang_code', 1, 'https://ror.org/04s468185 CLS Technology (Norway)'), (38992, 'https://ror.org/04s4d8021', 'no_lang_code', 1, 'https://ror.org/04s4d8021 TrønderEnergi (Norway)'), (38993, 'https://ror.org/04s6c8c61', 'no_lang_code', 1, 'https://ror.org/04s6c8c61 Promip (Brazil)'), (38994, 'https://ror.org/04s6nsa81', 'en', 1, 'https://ror.org/04s6nsa81 Covenant Theological Seminary'), (38995, 'https://ror.org/04s85wv17', 'pt', 1, 'https://ror.org/04s85wv17 Sociedade de Usuários de Computadores e Equipamentos Subsidiários, Sucesu Nacional'), (38996, 'https://ror.org/04s8a3621', 'no_lang_code', 1, 'https://ror.org/04s8a3621 Magnamed (Brazil)'), (38997, 'https://ror.org/04s8e0q95', 'de', 1, 'https://ror.org/04s8e0q95 Stadtbibliothek Nürnberg'), (38998, 'https://ror.org/04sa8xk52', 'no_lang_code', 1, 'https://ror.org/04sa8xk52 OilCraft (Norway)'), (38999, 'https://ror.org/04sapp259', 'no_lang_code', 1, 'https://ror.org/04sapp259 Labcom Sistemas (Brazil)'), (39000, 'https://ror.org/04sbrn764', 'no_lang_code', 1, 'https://ror.org/04sbrn764 Dantherm Power (Denmark)'), (39001, 'https://ror.org/04sdpvy45', 'no_lang_code', 1, 'https://ror.org/04sdpvy45 Adapti (Slovenia)'), (39002, 'https://ror.org/04sjxr917', 'en', 1, 'https://ror.org/04sjxr917 Rideout Memorial Hospital'), (39003, 'https://ror.org/04skrd412', 'pt', 1, 'https://ror.org/04skrd412 Fundação Paulista de Tecnologia e Educação'), (39004, 'https://ror.org/04snbqe72', 'no_lang_code', 1, 'https://ror.org/04snbqe72 Condor Instruments (Brazil)'), (39005, 'https://ror.org/04spvzc70', 'tr', 1, 'https://ror.org/04spvzc70 Balikli Rum Vakfi Hastanesi, Balıklı Rum Hastanesi Balıklı Greek Hospital'), (39006, 'https://ror.org/04sqfs158', 'en', 1, 'https://ror.org/04sqfs158 St. Rose Dominican Hospital'), (39007, 'https://ror.org/04srvp011', 'no_lang_code', 1, 'https://ror.org/04srvp011 Versis Tecnologia (Brazil)'), (39008, 'https://ror.org/04st2h187', 'en', 1, 'https://ror.org/04st2h187 Andries Vosloo Hospital'), (39009, 'https://ror.org/04st31e64', 'pt', 1, 'https://ror.org/04st31e64 Associação Brasileira de Pesquisadores de Comunicação Organizacional e de Relações Públicas'), (39010, 'https://ror.org/04sxr1261', 'en', 1, 'https://ror.org/04sxr1261 Nanjing Institute of Astronomical Optics & Technology 中国科学院南京天文光学技术研究所'), (39011, 'https://ror.org/04sz74c83', 'en', 1, 'https://ror.org/04sz74c83 Shandong Shierming Eye Hospital'), (39012, 'https://ror.org/04szag615', 'en', 1, 'https://ror.org/04szag615 Dawson Community College'), (39013, 'https://ror.org/04t1ycn35', 'en', 1, 'https://ror.org/04t1ycn35 G. Kuppuswamy Naidu Memorial Hospital'), (39014, 'https://ror.org/04t213y95', 'pt', 1, 'https://ror.org/04t213y95 Sociedade Brasileira de Imunologia'), (39015, 'https://ror.org/04t6q1p67', 'en', 1, 'https://ror.org/04t6q1p67 Neath Port Talbot Hospital'), (39016, 'https://ror.org/04t7avg40', 'no_lang_code', 1, 'https://ror.org/04t7avg40 Anlegg Bolig Rør & Varme AS (Norway)'), (39017, 'https://ror.org/04t999r74', 'en', 1, 'https://ror.org/04t999r74 Department of Corrections'), (39018, 'https://ror.org/04t9jdp81', 'no_lang_code', 1, 'https://ror.org/04t9jdp81 BioGenex (India)'), (39019, 'https://ror.org/04tav6r22', 'sv', 1, 'https://ror.org/04tav6r22 Sjukhuset i Lidköping'), (39020, 'https://ror.org/04td70f50', 'no_lang_code', 1, 'https://ror.org/04td70f50 Ulltveit-Moe Group (Norway)'), (39021, 'https://ror.org/04tdcgr05', 'no_lang_code', 1, 'https://ror.org/04tdcgr05 Eramet (Norway)'), (39022, 'https://ror.org/04tf09b52', 'de', 1, 'https://ror.org/04tf09b52 St.-Johannes-Hospital Dortmund'), (39023, 'https://ror.org/04tfeav65', 'no_lang_code', 1, 'https://ror.org/04tfeav65 Nature Oil & Gas (Norway)'), (39024, 'https://ror.org/04thm3d12', 'de', 1, 'https://ror.org/04thm3d12 Malteser Krankenhaus St. Anna'), (39025, 'https://ror.org/04tk9dh57', 'no_lang_code', 1, 'https://ror.org/04tk9dh57 Global Colors Polska (Poland)'), (39026, 'https://ror.org/04tkqn952', 'en', 1, 'https://ror.org/04tkqn952 Sackville Memorial Hospital'), (39027, 'https://ror.org/04tkyvc79', 'no_lang_code', 1, 'https://ror.org/04tkyvc79 Abraxas Olgierd Jeremiasz (Poland)'), (39028, 'https://ror.org/04tm92h03', 'no_lang_code', 1, 'https://ror.org/04tm92h03 Wakaba Hospital'), (39029, 'https://ror.org/04tmzke54', 'no_lang_code', 1, 'https://ror.org/04tmzke54 Innovative Scientific Solutions (United States)'), (39030, 'https://ror.org/04tn4w071', 'pt', 1, 'https://ror.org/04tn4w071 Fundação CECIERJ'), (39031, 'https://ror.org/04tvhd893', 'pt', 1, 'https://ror.org/04tvhd893 Museu de Astronomia e Ciências Afins'), (39032, 'https://ror.org/04tvje441', 'no_lang_code', 1, 'https://ror.org/04tvje441 Stinger Technology (Norway)'), (39033, 'https://ror.org/04v0t8a58', 'no_lang_code', 1, 'https://ror.org/04v0t8a58 WB Electronics (Poland)'), (39034, 'https://ror.org/04v1f7r08', 'en', 1, 'https://ror.org/04v1f7r08 Museum of Migration'), (39035, 'https://ror.org/04v1qxj13', 'en', 1, 'https://ror.org/04v1qxj13 Antelope Valley Hospital'), (39036, 'https://ror.org/04v2q5679', 'no_lang_code', 1, 'https://ror.org/04v2q5679 PluriCell (Brazil)'), (39037, 'https://ror.org/04v3sbr52', 'no_lang_code', 1, 'https://ror.org/04v3sbr52 Kjeller Vindteknikk (Norway)'), (39038, 'https://ror.org/04v5bkc47', 'no_lang_code', 1, 'https://ror.org/04v5bkc47 Aventa (Norway)'), (39039, 'https://ror.org/04v6t0889', 'en', 1, 'https://ror.org/04v6t0889 Norwegian Water'), (39040, 'https://ror.org/04v7ec183', 'no_lang_code', 1, 'https://ror.org/04v7ec183 Terenzi (Brazil)'), (39041, 'https://ror.org/04v7ke830', 'sk', 1, 'https://ror.org/04v7ke830 Stredna Priemyselna Skola Samuela Mikoviniho'), (39042, 'https://ror.org/04v86g664', 'no_lang_code', 1, 'https://ror.org/04v86g664 MiniHydro (Norway)'), (39043, 'https://ror.org/04v8gpn54', 'no', 1, 'https://ror.org/04v8gpn54 Kvinner i Skogbruket'), (39044, 'https://ror.org/04v8qfb10', 'en', 1, 'https://ror.org/04v8qfb10 Jakarta State Polytechnic Politeknik Negeri Jakarta Politèknik Negri Jakarta'), (39045, 'https://ror.org/04v8qm048', 'en', 1, 'https://ror.org/04v8qm048 St. Elizabeth''s Hospital'), (39046, 'https://ror.org/04v95p207', 'en', 1, 'https://ror.org/04v95p207 Panzhihua Central Hospital'), (39047, 'https://ror.org/04vbcaz46', 'no_lang_code', 1, 'https://ror.org/04vbcaz46 Indústria Brasileira de Máquinas e Equipamentos (Brazil)'), (39048, 'https://ror.org/04vbdge38', 'no_lang_code', 1, 'https://ror.org/04vbdge38 Victor Vision (Brazil)'), (39049, 'https://ror.org/04vbyvm90', 'es', 1, 'https://ror.org/04vbyvm90 Instituto Tecnológico de Saltillo Technological Institute of Saltillo'), (39050, 'https://ror.org/04vd6m647', 'no_lang_code', 1, 'https://ror.org/04vd6m647 Geotecno (Brazil)'), (39051, 'https://ror.org/04vdftk11', 'no_lang_code', 1, 'https://ror.org/04vdftk11 Gtac Solutions (Brazil)'), (39052, 'https://ror.org/04ve0xz37', 'no_lang_code', 1, 'https://ror.org/04ve0xz37 Cemad (Poland)'), (39053, 'https://ror.org/04vfeym88', 'en', 1, 'https://ror.org/04vfeym88 Norwegian Fund and Asset Management Association'), (39054, 'https://ror.org/04vgd5j91', 'no_lang_code', 1, 'https://ror.org/04vgd5j91 Pachemtech (Poland)'), (39055, 'https://ror.org/04vh5xb31', 'en', 1, 'https://ror.org/04vh5xb31 Centennial Hills Hospital'), (39056, 'https://ror.org/04vmef791', 'no_lang_code', 1, 'https://ror.org/04vmef791 Mentor Interactive (Brazil)'), (39057, 'https://ror.org/04vp97q80', 'no_lang_code', 1, 'https://ror.org/04vp97q80 OP Bio Factory (Japan)'), (39058, 'https://ror.org/04vr78v16', 'no_lang_code', 1, 'https://ror.org/04vr78v16 General Electric (Norway)'), (39059, 'https://ror.org/04vvd8839', 'ro', 1, 'https://ror.org/04vvd8839 Universitatea Ioan Slavici'), (39060, 'https://ror.org/04vx4mk32', 'en', 1, 'https://ror.org/04vx4mk32 Leibniz Institute of Surface Engineering Leibniz-Institut für Oberflächenmodifizierung'), (39061, 'https://ror.org/04vxfxp93', 'no_lang_code', 1, 'https://ror.org/04vxfxp93 Flavor Tec (Brazil)'), (39062, 'https://ror.org/04vxgz290', 'no_lang_code', 1, 'https://ror.org/04vxgz290 Remora (Norway)'), (39063, 'https://ror.org/04vyb7b30', 'no_lang_code', 1, 'https://ror.org/04vyb7b30 Vilpo (Slovenia)'), (39064, 'https://ror.org/04vz51s38', 'no_lang_code', 1, 'https://ror.org/04vz51s38 Erichsen & Horgen (Norway)'), (39065, 'https://ror.org/04w1y7251', 'pt', 1, 'https://ror.org/04w1y7251 Instituto Nacional da Propriedade Industrial'), (39066, 'https://ror.org/04w4hwt37', 'no_lang_code', 1, 'https://ror.org/04w4hwt37 Simula Innovation (Norway)'), (39067, 'https://ror.org/04w5mzj20', 'en', 1, 'https://ror.org/04w5mzj20 Changsha Hospital for Maternal and Child Health Care'), (39068, 'https://ror.org/04w6cnp87', 'no_lang_code', 1, 'https://ror.org/04w6cnp87 LaserTools Tecnologia (Brazil)'), (39069, 'https://ror.org/04w708p35', 'no_lang_code', 1, 'https://ror.org/04w708p35 Rolvsoy Metalindustri (Norway)'), (39070, 'https://ror.org/04w8mv523', 'pt', 1, 'https://ror.org/04w8mv523 Secretaria Municipal de Cultura'), (39071, 'https://ror.org/04wadnc74', 'en', 1, 'https://ror.org/04wadnc74 Mittal hospital'), (39072, 'https://ror.org/04watzy58', 'no_lang_code', 1, 'https://ror.org/04watzy58 IT&D Informação Tecnologia e Desenvolvimento (Brazil)'), (39073, 'https://ror.org/04wbyjk66', 'no_lang_code', 1, 'https://ror.org/04wbyjk66 7Sense Group (Norway)'), (39074, 'https://ror.org/04wcc2q98', 'no_lang_code', 1, 'https://ror.org/04wcc2q98 Accenture (Norway)'), (39075, 'https://ror.org/04wcfwt17', 'no_lang_code', 1, 'https://ror.org/04wcfwt17 Tagarno Norge (Norway)'), (39076, 'https://ror.org/04we0sp42', 'en', 1, 'https://ror.org/04we0sp42 University College of Commerce & Business Management'), (39077, 'https://ror.org/04wfzsh36', 'no_lang_code', 1, 'https://ror.org/04wfzsh36 CapCOGITO (Canada)'), (39078, 'https://ror.org/04wnz4487', 'en', 1, 'https://ror.org/04wnz4487 Texas Health Arlington Memorial'), (39079, 'https://ror.org/04wp4st08', 'en', 1, 'https://ror.org/04wp4st08 Llanfrechfa Grange Hospital'), (39080, 'https://ror.org/04wpmh396', 'no_lang_code', 1, 'https://ror.org/04wpmh396 Norsonic (Norway)'), (39081, 'https://ror.org/04wqsqf86', 'en', 1, 'https://ror.org/04wqsqf86 Dresden Academy of Fine Arts Hochschule für Bildende Künste Dresden'), (39082, 'https://ror.org/04wr6tn02', 'en', 1, 'https://ror.org/04wr6tn02 Institute of Contemporary History'), (39083, 'https://ror.org/04wsp0t42', 'no_lang_code', 1, 'https://ror.org/04wsp0t42 Grieg Group (Norway)'), (39084, 'https://ror.org/04wtxqn67', 'en', 1, 'https://ror.org/04wtxqn67 Dresden State Art Collections Staatliche Kunstsammlungen Dresden'), (39085, 'https://ror.org/04wy35175', 'pt', 1, 'https://ror.org/04wy35175 Instituto Superior de Educação do Rio de Janeiro'), (39086, 'https://ror.org/04wyvw190', 'no', 1, 'https://ror.org/04wyvw190 Nesna Kommune'), (39087, 'https://ror.org/04x0mgy69', 'en', 1, 'https://ror.org/04x0mgy69 Hospital Melaka Malacca General Hospital'), (39088, 'https://ror.org/04x0t4f03', 'no_lang_code', 1, 'https://ror.org/04x0t4f03 Benchmark Holdings (Norway)'), (39089, 'https://ror.org/04x14e475', 'en', 1, 'https://ror.org/04x14e475 Institute for Ethnic Studies'), (39090, 'https://ror.org/04x1mps47', 'no_lang_code', 1, 'https://ror.org/04x1mps47 Ele-DriveCo (Poland)'), (39091, 'https://ror.org/04x1zna55', 'en', 1, 'https://ror.org/04x1zna55 Valley Regional Hospital'), (39092, 'https://ror.org/04x20w027', 'no_lang_code', 1, 'https://ror.org/04x20w027 Synthetica (Norway)'), (39093, 'https://ror.org/04x2gpd09', 'en', 1, 'https://ror.org/04x2gpd09 Yangon Central Women''s Hospital ရန်ကုန် ဗဟို အမျိုးသမီး ဆေးရုံ'), (39094, 'https://ror.org/04x3j0s69', 'en', 1, 'https://ror.org/04x3j0s69 Gilbert Bain Hospital'), (39095, 'https://ror.org/04x3rvs94', 'no_lang_code', 1, 'https://ror.org/04x3rvs94 Metallteknikk (Norway)'), (39096, 'https://ror.org/04x4hjg39', 'no_lang_code', 1, 'https://ror.org/04x4hjg39 Globus Medical (United States)'), (39097, 'https://ror.org/04x57eq39', 'en', 1, 'https://ror.org/04x57eq39 St John Berchmans University College'), (39098, 'https://ror.org/04x5ap794', 'en', 1, 'https://ror.org/04x5ap794 M. S. Ramaiah Dental College and Hospital'), (39099, 'https://ror.org/04x626p25', 'no_lang_code', 1, 'https://ror.org/04x626p25 Navita (Brazil)'), (39100, 'https://ror.org/04x762r03', 'en', 1, 'https://ror.org/04x762r03 Sri Sai Super Speciality Hospital श्री साई सुपर स्पेशलिटी हॉस्पिटल'), (39101, 'https://ror.org/04x931c50', 'en', 1, 'https://ror.org/04x931c50 POSC Caesar Association'), (39102, 'https://ror.org/04xaked44', 'es', 1, 'https://ror.org/04xaked44 Hospital San Hipólito'), (39103, 'https://ror.org/04xdy7f60', 'no_lang_code', 1, 'https://ror.org/04xdy7f60 Izolacja-Jarocin (Poland)'), (39104, 'https://ror.org/04xef4937', 'no_lang_code', 1, 'https://ror.org/04xef4937 Aqualine (Norway)'), (39105, 'https://ror.org/04xex7r55', 'no_lang_code', 1, 'https://ror.org/04xex7r55 Ronkowski (Poland)'), (39106, 'https://ror.org/04xk7k966', 'en', 1, 'https://ror.org/04xk7k966 Institute of Paleobiology Instytut Paleobiologii'), (39107, 'https://ror.org/04xmgtd15', 'no_lang_code', 1, 'https://ror.org/04xmgtd15 Invenia (Norway)'), (39108, 'https://ror.org/04xngad53', 'pt', 1, 'https://ror.org/04xngad53 Fundação Escola de Comércio Álvares Penteado'), (39109, 'https://ror.org/04xpcd506', 'pl', 1, 'https://ror.org/04xpcd506 Polskie Sieci Elektroenergetyczne'), (39110, 'https://ror.org/04xphfg38', 'no_lang_code', 1, 'https://ror.org/04xphfg38 Hermes Microvision (United States)'), (39111, 'https://ror.org/04xvv6376', 'en', 1, 'https://ror.org/04xvv6376 BA School of Business and Finance Banku Augstskola'), (39112, 'https://ror.org/04xxxy475', 'no_lang_code', 1, 'https://ror.org/04xxxy475 SquareHead Technology (Norway)'), (39113, 'https://ror.org/04xys6a56', 'no_lang_code', 1, 'https://ror.org/04xys6a56 Verdaz (Brazil)'), (39114, 'https://ror.org/04xzpvb32', 'en', 1, 'https://ror.org/04xzpvb32 Nobody’s Children Foundation'), (39115, 'https://ror.org/04y0g6r28', 'no_lang_code', 1, 'https://ror.org/04y0g6r28 TechnipFMC (Norway)'), (39116, 'https://ror.org/04y1t5a55', 'en', 1, 'https://ror.org/04y1t5a55 Colorado Wyoming Academy of Science'), (39117, 'https://ror.org/04y22rp03', 'no_lang_code', 1, 'https://ror.org/04y22rp03 Delfin Technologies (Finland)'), (39118, 'https://ror.org/04y244695', 'no_lang_code', 1, 'https://ror.org/04y244695 W5 Technlogies (United States)'), (39119, 'https://ror.org/04y2bwa40', 'en', 1, 'https://ror.org/04y2bwa40 Chenzhou First People''s Hospital'), (39120, 'https://ror.org/04y523h62', 'en', 1, 'https://ror.org/04y523h62 Oakville-Trafalgar Memorial Hospital'), (39121, 'https://ror.org/04y52r328', 'en', 1, 'https://ror.org/04y52r328 Novika Solutions'), (39122, 'https://ror.org/04y5m6789', 'no', 1, 'https://ror.org/04y5m6789 Stiftinga For Folkemusikk og Folkedans'), (39123, 'https://ror.org/04y5wt580', 'no', 1, 'https://ror.org/04y5wt580 Overhalla Kommune'), (39124, 'https://ror.org/04y7frr04', 'no_lang_code', 1, 'https://ror.org/04y7frr04 PriMove Infrastructure Development Consultants (India)'), (39125, 'https://ror.org/04y9czb62', 'no_lang_code', 1, 'https://ror.org/04y9czb62 Borginnovasj (Norway)'), (39126, 'https://ror.org/04yc38g92', 'en', 1, 'https://ror.org/04yc38g92 Samaritan Lebanon Community Hospital'), (39127, 'https://ror.org/04ygnx468', 'en', 1, 'https://ror.org/04ygnx468 Johnston Community College'), (39128, 'https://ror.org/04yh74t68', 'no_lang_code', 1, 'https://ror.org/04yh74t68 Infineon Technologies (Norway)'), (39129, 'https://ror.org/04yh9yy49', 'en', 1, 'https://ror.org/04yh9yy49 Brazilian Network Information Center Núcleo de Informação e Coordenação do Ponto BR'), (39130, 'https://ror.org/04yj32x80', 'no_lang_code', 1, 'https://ror.org/04yj32x80 Coss (Brazil)'), (39131, 'https://ror.org/04ymxv744', 'pt', 1, 'https://ror.org/04ymxv744 Fundação Bienal de São Paulo'), (39132, 'https://ror.org/04yntp988', 'no_lang_code', 1, 'https://ror.org/04yntp988 Ente (Poland)'), (39133, 'https://ror.org/04ynvhf97', 'en', 1, 'https://ror.org/04ynvhf97 Het Zuid-Afrikaans Hospitaal en Diakonessenhuis Zuid-Afrikaans Hospital'), (39134, 'https://ror.org/04ypbx278', 'no_lang_code', 1, 'https://ror.org/04ypbx278 Sigurd Løkeland (Norway)'), (39135, 'https://ror.org/04yqgnw12', 'no_lang_code', 1, 'https://ror.org/04yqgnw12 Miko Marine (Norway)'), (39136, 'https://ror.org/04yr0ey26', 'fr', 1, 'https://ror.org/04yr0ey26 Réseau Technoscience Saguenay–Lac-Saint-Jean'), (39137, 'https://ror.org/04ysdg006', 'en', 1, 'https://ror.org/04ysdg006 Anderson Hospital'), (39138, 'https://ror.org/04yvdan45', 'en', 1, 'https://ror.org/04yvdan45 Tang Du Hospital'), (39139, 'https://ror.org/04yxrt293', 'fr', 1, 'https://ror.org/04yxrt293 Ordre des Psychologues du Québec'), (39140, 'https://ror.org/04yxyzj48', 'it', 1, 'https://ror.org/04yxyzj48 Azienda Ospedaliera Nazionale SS. Antonio e Biagio e Cesare Arrigo'), (39141, 'https://ror.org/04yzj0y93', 'en', 1, 'https://ror.org/04yzj0y93 Arignar Anna Memorial Cancer Hospital & Research Institute அரசு அறிஞர் அண்ணா நினைவு புற்றுநோய் மருத்துவமனையும் ஆராய்ச்சி நிலையமும்'), (39142, 'https://ror.org/04yzwsd04', 'no_lang_code', 1, 'https://ror.org/04yzwsd04 Lucotec (Brazil)'), (39143, 'https://ror.org/04z2wa675', 'no_lang_code', 1, 'https://ror.org/04z2wa675 Nanonics Imaging (Israel)'), (39144, 'https://ror.org/04z3wpq90', 'no_lang_code', 1, 'https://ror.org/04z3wpq90 Setred (Norway)'), (39145, 'https://ror.org/04z5mkt27', 'no_lang_code', 1, 'https://ror.org/04z5mkt27 C10 Pharma (Norway)'), (39146, 'https://ror.org/04z6y5271', 'no_lang_code', 1, 'https://ror.org/04z6y5271 Mepex Consult (Norway)'), (39147, 'https://ror.org/04z80h498', 'no', 1, 'https://ror.org/04z80h498 Mektron'), (39148, 'https://ror.org/04zab0068', 'no_lang_code', 1, 'https://ror.org/04zab0068 Industriell Design og Teknologi (Norway)'), (39149, 'https://ror.org/04zbn7k04', 'en', 1, 'https://ror.org/04zbn7k04 Norwegian Agency for Development Cooperation'), (39150, 'https://ror.org/04zbxvv62', 'no_lang_code', 1, 'https://ror.org/04zbxvv62 Zoaring (Norway)'), (39151, 'https://ror.org/04zcpm936', 'pt', 1, 'https://ror.org/04zcpm936 Faculdade de Mococa'), (39152, 'https://ror.org/04zeekc72', 'no', 1, 'https://ror.org/04zeekc72 Lødingen kommune'), (39153, 'https://ror.org/04zfra764', 'no_lang_code', 1, 'https://ror.org/04zfra764 Unger Fabrikker (Norway)'), (39154, 'https://ror.org/04zg8gg70', 'en', 1, 'https://ror.org/04zg8gg70 Lloydminster Hospital'), (39155, 'https://ror.org/04zkkh342', 'no_lang_code', 1, 'https://ror.org/04zkkh342 Hangzhou Xixi hospital'), (39156, 'https://ror.org/04zn3ze07', 'sl', 1, 'https://ror.org/04zn3ze07 Animal Hospital Postojna'), (39157, 'https://ror.org/04znhwb73', 'en', 1, 'https://ror.org/04znhwb73 Center for Scientific Research and Higher Education at Ensenada Centro de Investigación Científica y de Educación Superior de Ensenada'), (39158, 'https://ror.org/04znkkz68', 'en', 1, 'https://ror.org/04znkkz68 Daewon University College 대원대학교'), (39159, 'https://ror.org/04zppa787', 'no_lang_code', 1, 'https://ror.org/04zppa787 Jets Vacuum (Norway)'), (39160, 'https://ror.org/04zqksp15', 'en', 1, 'https://ror.org/04zqksp15 International Society for Ecological Economics'), (39161, 'https://ror.org/04ztaw443', 'en', 1, 'https://ror.org/04ztaw443 Fisheries Research Institute of Slovenia'), (39162, 'https://ror.org/04zvzt585', 'no_lang_code', 1, 'https://ror.org/04zvzt585 Proteobrás (Brazil)'), (39163, 'https://ror.org/04zyaf064', 'no_lang_code', 1, 'https://ror.org/04zyaf064 Akvaforsk Genetics Center (Norway)'), (39164, 'https://ror.org/04zympr28', 'en', 1, 'https://ror.org/04zympr28 Insch War Memorial Hospital'), (39165, 'https://ror.org/04zypah04', 'no_lang_code', 1, 'https://ror.org/04zypah04 L3Harris (Norway)'), (39166, 'https://ror.org/04zzhqg11', 'no', 1, 'https://ror.org/04zzhqg11 Studentsamskipnaden i Trondheim'), (39167, 'https://ror.org/05011r820', 'no_lang_code', 1, 'https://ror.org/05011r820 Orkana Forlag (Norway)'), (39168, 'https://ror.org/0502tm991', 'en', 1, 'https://ror.org/0502tm991 Shenzhen Zhongshan Urological Hospital'), (39169, 'https://ror.org/05041v694', 'en', 1, 'https://ror.org/05041v694 Professionshøjskolen UCC University College Capital'), (39170, 'https://ror.org/0504mbn59', 'no_lang_code', 1, 'https://ror.org/0504mbn59 Novartis (Slovenia)'), (39171, 'https://ror.org/0508eaq76', 'no_lang_code', 1, 'https://ror.org/0508eaq76 Chavakachcheri Hospital'), (39172, 'https://ror.org/0508hmq85', 'no_lang_code', 1, 'https://ror.org/0508hmq85 Antoniosi Tecnologia Agroindustrial (Brazil)'), (39173, 'https://ror.org/0509azq23', 'no_lang_code', 1, 'https://ror.org/0509azq23 Tendeka (Norway)'), (39174, 'https://ror.org/0509e3289', 'en', 1, 'https://ror.org/0509e3289 Instituto Nacional de Antropología e Historia National Institute of Anthropology and History'), (39175, 'https://ror.org/050aq1k87', 'pt', 1, 'https://ror.org/050aq1k87 Sociedade Brasileira de Pesquisa Odontológica'), (39176, 'https://ror.org/050c4yn95', 'en', 1, 'https://ror.org/050c4yn95 County Governor of Sør-Trøndelag'), (39177, 'https://ror.org/050f2kd12', 'en', 1, 'https://ror.org/050f2kd12 Lindbergh Foundation'), (39178, 'https://ror.org/050jgsv04', 'en', 1, 'https://ror.org/050jgsv04 Somerset Hospital'), (39179, 'https://ror.org/050kr2566', 'no_lang_code', 1, 'https://ror.org/050kr2566 Fraktefartøyenes Rederiforening (Norway)'), (39180, 'https://ror.org/050kv7279', 'en', 1, 'https://ror.org/050kv7279 Ishaka Adventist Hospital'), (39181, 'https://ror.org/050n8x383', 'en', 1, 'https://ror.org/050n8x383 The Bristol-Myers Squibb Children''s Hospital'), (39182, 'https://ror.org/050ng1611', 'no_lang_code', 1, 'https://ror.org/050ng1611 Admit (Norway)'), (39183, 'https://ror.org/050phcn63', 'de', 1, 'https://ror.org/050phcn63 LVR-Klinik Köln'), (39184, 'https://ror.org/050phsp73', 'no', 1, 'https://ror.org/050phsp73 Markedhøyskolen'), (39185, 'https://ror.org/050pqc318', 'no', 1, 'https://ror.org/050pqc318 Norsk Algeforening'), (39186, 'https://ror.org/050psgz02', 'no_lang_code', 1, 'https://ror.org/050psgz02 Misque (Brazil)'), (39187, 'https://ror.org/050qh0g23', 'en', 1, 'https://ror.org/050qh0g23 Villa Torri Hospital'), (39188, 'https://ror.org/050rnw378', 'en', 1, 'https://ror.org/050rnw378 Division of Engineering Education & Centers'), (39189, 'https://ror.org/050sa6c22', 'no_lang_code', 1, 'https://ror.org/050sa6c22 Alpina (Slovenia)'), (39190, 'https://ror.org/050spgz68', 'en', 1, 'https://ror.org/050spgz68 Institute of Deep-Sea Science and Engineering 中国科学院深海科学与工程研究所'), (39191, 'https://ror.org/050vybr60', 'en', 1, 'https://ror.org/050vybr60 Equator Aircraft Norway'), (39192, 'https://ror.org/050w53c21', 'en', 1, 'https://ror.org/050w53c21 Free and Open Source Software Foundation'), (39193, 'https://ror.org/050zafg52', 'no_lang_code', 1, 'https://ror.org/050zafg52 Fjord IT (Norway)'), (39194, 'https://ror.org/0510v1781', 'no', 1, 'https://ror.org/0510v1781 Sandefjord Kommune'), (39195, 'https://ror.org/0510w1f89', 'no_lang_code', 1, 'https://ror.org/0510w1f89 Eletrovento (Brazil)'), (39196, 'https://ror.org/0514c4d93', 'en', 1, 'https://ror.org/0514c4d93 Kanagawa Dental University 神奈川歯科大学'), (39197, 'https://ror.org/0515bx276', 'no_lang_code', 1, 'https://ror.org/0515bx276 Cappelen Damm (Norway)'), (39198, 'https://ror.org/0515m2n86', 'en', 1, 'https://ror.org/0515m2n86 Max Planck Institute for Comparative Public Law and International Law Max-Planck-Institut für ausländisches öffentliches Recht und Völkerrecht'), (39199, 'https://ror.org/0517ce304', 'en', 1, 'https://ror.org/0517ce304 Kingston University'), (39200, 'https://ror.org/0519cg026', 'en', 1, 'https://ror.org/0519cg026 Knox Theological Seminary'), (39201, 'https://ror.org/0519mfj33', 'no_lang_code', 1, 'https://ror.org/0519mfj33 Ostomycure (Norway)'), (39202, 'https://ror.org/051axz542', 'en', 1, 'https://ror.org/051axz542 Manor College'), (39203, 'https://ror.org/051c73j58', 'no_lang_code', 1, 'https://ror.org/051c73j58 Gonar (Poland)'), (39204, 'https://ror.org/051cacg72', 'en', 1, 'https://ror.org/051cacg72 Samaritan Albany General Hospital'), (39205, 'https://ror.org/051cpbj61', 'no_lang_code', 1, 'https://ror.org/051cpbj61 Sensum (Slovenia)'), (39206, 'https://ror.org/051d2r706', 'no_lang_code', 1, 'https://ror.org/051d2r706 Selventa (United States)'), (39207, 'https://ror.org/051dggm19', 'en', 1, 'https://ror.org/051dggm19 Dublin Business School'), (39208, 'https://ror.org/051eh0e10', 'no_lang_code', 1, 'https://ror.org/051eh0e10 Caritas Hospital'), (39209, 'https://ror.org/051f5za14', 'no_lang_code', 1, 'https://ror.org/051f5za14 Engimplan (Brazil)'), (39210, 'https://ror.org/051fftw81', 'en', 1, 'https://ror.org/051fftw81 Division of Mathematical Sciences'); INSERT INTO `rors` VALUES (39211, 'https://ror.org/051g1tp93', 'no_lang_code', 1, 'https://ror.org/051g1tp93 Domos (Norway)'), (39212, 'https://ror.org/051hcjr97', 'pt', 1, 'https://ror.org/051hcjr97 Fundação Carlos Chagas'), (39213, 'https://ror.org/051jybk56', 'en', 1, 'https://ror.org/051jybk56 Henan Provincial Eye Hospital 河南省眼科研究所'), (39214, 'https://ror.org/051mhmc69', 'en', 1, 'https://ror.org/051mhmc69 Fernand Braudel Institute of World Economics Instituto Fernand Braudel de Economia Mundial'), (39215, 'https://ror.org/051nfce45', 'de', 1, 'https://ror.org/051nfce45 Endokrinologikum'), (39216, 'https://ror.org/051p4t773', 'en', 1, 'https://ror.org/051p4t773 Institute for Church, Religion, and Worldview Research'), (39217, 'https://ror.org/051pcb820', 'en', 1, 'https://ror.org/051pcb820 University of the Nations'), (39218, 'https://ror.org/051pm1k39', 'en', 1, 'https://ror.org/051pm1k39 Encino Hospital Medical Center'), (39219, 'https://ror.org/051q8jk17', 'en', 1, 'https://ror.org/051q8jk17 Higher Technological Institute المعهد التكنولوجي العالي'), (39220, 'https://ror.org/051srph65', 'no_lang_code', 1, 'https://ror.org/051srph65 Imatis (Norway)'), (39221, 'https://ror.org/051tbnd05', 'no_lang_code', 1, 'https://ror.org/051tbnd05 Fjellstrand (Norway)'), (39222, 'https://ror.org/051tt6c85', 'it', 1, 'https://ror.org/051tt6c85 Azienda Ospedaliero-Universitaria Policlinico - Vittorio Emanuele'), (39223, 'https://ror.org/051wkpd79', 'pt', 1, 'https://ror.org/051wkpd79 Faculdades Integradas Teresa D''Ávila'), (39224, 'https://ror.org/051z2qe83', 'no_lang_code', 1, 'https://ror.org/051z2qe83 BrasilOzônio (Brazil)'), (39225, 'https://ror.org/0520d0g72', 'en', 1, 'https://ror.org/0520d0g72 Academy of Physiotherapy in Wrocław'), (39226, 'https://ror.org/0520whs57', 'en', 1, 'https://ror.org/0520whs57 IBAT College'), (39227, 'https://ror.org/0523nzq15', 'en', 1, 'https://ror.org/0523nzq15 Juan S. Alano Memorial Hospital'), (39228, 'https://ror.org/0523wf777', 'en', 1, 'https://ror.org/0523wf777 Ridgecrest Regional Hospital'), (39229, 'https://ror.org/0524wwz72', 'no_lang_code', 1, 'https://ror.org/0524wwz72 Unigen Tecnologia pelo DNA (Brazil)'), (39230, 'https://ror.org/05256tw11', 'en', 1, 'https://ror.org/05256tw11 Cologne University of Music Hochschule für Musik und Tanz Köln'), (39231, 'https://ror.org/0526xz308', 'de', 1, 'https://ror.org/0526xz308 Siloah St. Trudpert Klinikum'), (39232, 'https://ror.org/05272pa41', 'en', 1, 'https://ror.org/05272pa41 Municipality of Andebu'), (39233, 'https://ror.org/052b84r98', 'no_lang_code', 1, 'https://ror.org/052b84r98 FiberWork (Brazil)'), (39234, 'https://ror.org/052bnfg64', 'no_lang_code', 1, 'https://ror.org/052bnfg64 Kryptus (Brazil)'), (39235, 'https://ror.org/052frf812', 'en', 1, 'https://ror.org/052frf812 Shanmuganathan Engineering College'), (39236, 'https://ror.org/052fv6w39', 'pt', 1, 'https://ror.org/052fv6w39 Academia Brasileira de Audiologia Brazilian Academy of Audiology'), (39237, 'https://ror.org/052gr5r08', 'en', 1, 'https://ror.org/052gr5r08 Simula School'), (39238, 'https://ror.org/052gzq419', 'de', 1, 'https://ror.org/052gzq419 Hochschule für Jüdische Studien'), (39239, 'https://ror.org/052k3m749', 'no_lang_code', 1, 'https://ror.org/052k3m749 Invenire Internacional Informática (Brazil)'), (39240, 'https://ror.org/052nb9d93', 'no_lang_code', 1, 'https://ror.org/052nb9d93 Cuesta (Brazil)'), (39241, 'https://ror.org/052nwsb77', 'no_lang_code', 1, 'https://ror.org/052nwsb77 Norwex (Norway)'), (39242, 'https://ror.org/052nzzz22', 'en', 1, 'https://ror.org/052nzzz22 Aberdeen Regional Hospital'), (39243, 'https://ror.org/052pha961', 'en', 1, 'https://ror.org/052pha961 National School of Leadership in Education'), (39244, 'https://ror.org/052q3v778', 'en', 1, 'https://ror.org/052q3v778 Northwest Orthopaedic Specialists'), (39245, 'https://ror.org/052q5nf15', 'en', 1, 'https://ror.org/052q5nf15 Five Continents Museum Staatliches Museum für Völkerkunde'), (39246, 'https://ror.org/052rvmw54', 'no_lang_code', 1, 'https://ror.org/052rvmw54 Underbakke (Norway)'), (39247, 'https://ror.org/052tt7c68', 'de', 1, 'https://ror.org/052tt7c68 Carl Gustav Carus-Institut'), (39248, 'https://ror.org/052wcqj17', 'fr', 1, 'https://ror.org/052wcqj17 Institut de Biologie et Technologies Institute of Biology and Technology'), (39249, 'https://ror.org/052x09g67', 'en', 1, 'https://ror.org/052x09g67 Norwegian Film Institute'), (39250, 'https://ror.org/052yjgk16', 'en', 1, 'https://ror.org/052yjgk16 Hung Yen University of Technology and Education Trường Đại học Sư phạm Kỹ thuật Hưng Yên'), (39251, 'https://ror.org/052yqc035', 'no_lang_code', 1, 'https://ror.org/052yqc035 Muthu Hospital'), (39252, 'https://ror.org/052z6qn75', 'no_lang_code', 1, 'https://ror.org/052z6qn75 FMP Technology (Germany)'), (39253, 'https://ror.org/0530erx71', 'en', 1, 'https://ror.org/0530erx71 Weiss Memorial Hospital'), (39254, 'https://ror.org/05342be32', 'en', 1, 'https://ror.org/05342be32 Askham Bryan College'), (39255, 'https://ror.org/05351er27', 'no_lang_code', 1, 'https://ror.org/05351er27 VoiceASP (Norway)'), (39256, 'https://ror.org/0535s4372', 'no_lang_code', 1, 'https://ror.org/0535s4372 Mobilarm (Norway)'), (39257, 'https://ror.org/0536rsk67', 'en', 1, 'https://ror.org/0536rsk67 First Affiliated Hospital of Henan University'), (39258, 'https://ror.org/0539xgm86', 'pt', 1, 'https://ror.org/0539xgm86 Instituto Estadual de Diabetes e Endocrinologia Luiz Capriglione'), (39259, 'https://ror.org/053a2cp42', 'en', 1, 'https://ror.org/053a2cp42 Division of Information and Intelligent Systems'), (39260, 'https://ror.org/053cj9d07', 'en', 1, 'https://ror.org/053cj9d07 Onderstepoort Veterinary Academic Hospital Onderstepoort-dierehospitaal'), (39261, 'https://ror.org/053e9nw85', 'en', 1, 'https://ror.org/053e9nw85 Evangelical Theological Faculty Evangelische Theologische Faculteit Evangelische Theologische Faculteit Leuven Faculté de théologie évangélique de louvain'), (39262, 'https://ror.org/053gnae26', 'en', 1, 'https://ror.org/053gnae26 Concordia Hospital'), (39263, 'https://ror.org/053k88v22', 'no_lang_code', 1, 'https://ror.org/053k88v22 CreoTech (Norway)'), (39264, 'https://ror.org/053mjnp36', 'no_lang_code', 1, 'https://ror.org/053mjnp36 LivaNova (Belgium)'), (39265, 'https://ror.org/053mnmm40', 'no_lang_code', 1, 'https://ror.org/053mnmm40 City Motion (Norway)'), (39266, 'https://ror.org/053p7mr76', 'no_lang_code', 1, 'https://ror.org/053p7mr76 Animalia (Norway)'), (39267, 'https://ror.org/053pw6b94', 'no_lang_code', 1, 'https://ror.org/053pw6b94 Vitenparken'), (39268, 'https://ror.org/053pwq338', 'no_lang_code', 1, 'https://ror.org/053pwq338 ETI Elektroelement (Slovenia)'), (39269, 'https://ror.org/053qb6g74', 'en', 1, 'https://ror.org/053qb6g74 Paper and Fibre Research Institute'), (39270, 'https://ror.org/053s3hs07', 'no_lang_code', 1, 'https://ror.org/053s3hs07 Astronika (Poland)'), (39271, 'https://ror.org/053sej726', 'no_lang_code', 1, 'https://ror.org/053sej726 Agra (Norway)'), (39272, 'https://ror.org/053syz184', 'en', 1, 'https://ror.org/053syz184 Wuhan Technical College of Communications'), (39273, 'https://ror.org/053tba870', 'en', 1, 'https://ror.org/053tba870 Ethiopian Police University College'), (39274, 'https://ror.org/053tv0d72', 'no_lang_code', 1, 'https://ror.org/053tv0d72 Capwell (Norway)'), (39275, 'https://ror.org/053vdc408', 'no_lang_code', 1, 'https://ror.org/053vdc408 Subsea Chokes International (Norway)'), (39276, 'https://ror.org/053ws4838', 'en', 1, 'https://ror.org/053ws4838 Airport Shunyi District Hospital'), (39277, 'https://ror.org/053x7k331', 'en', 1, 'https://ror.org/053x7k331 St Luke''s Hospital'), (39278, 'https://ror.org/053xcdp31', 'no_lang_code', 1, 'https://ror.org/053xcdp31 Genomar (Norway)'), (39279, 'https://ror.org/053y0qd29', 'it', 1, 'https://ror.org/053y0qd29 Azienda Ospedaliera Pugliese Ciaccio'), (39280, 'https://ror.org/053y7yq36', 'no_lang_code', 1, 'https://ror.org/053y7yq36 BRI Offshore (Norway)'), (39281, 'https://ror.org/053zh1b29', 'no_lang_code', 1, 'https://ror.org/053zh1b29 Camo (Norway)'), (39282, 'https://ror.org/053zwxr79', 'en', 1, 'https://ror.org/053zwxr79 United Nations University – Maastricht Economic and Social Research Institute on Innovation and Technology'), (39283, 'https://ror.org/0547b1h57', 'no_lang_code', 1, 'https://ror.org/0547b1h57 Softhis (Poland)'), (39284, 'https://ror.org/0547sph41', 'no', 1, 'https://ror.org/0547sph41 Hedmark Kunnskapspark'), (39285, 'https://ror.org/054b9va62', 'no_lang_code', 1, 'https://ror.org/054b9va62 Overplay (Brazil)'), (39286, 'https://ror.org/054dsb308', 'en', 1, 'https://ror.org/054dsb308 Dr. Everett Chalmers Regional Hospital'), (39287, 'https://ror.org/054dshd81', 'en', 1, 'https://ror.org/054dshd81 International University MITSO'), (39288, 'https://ror.org/054dxwf20', 'no_lang_code', 1, 'https://ror.org/054dxwf20 Vibrant Data (United States)'), (39289, 'https://ror.org/054h11b04', 'en', 1, 'https://ror.org/054h11b04 Central Finland Health Care District Keski-Suomen keskussairaala'), (39290, 'https://ror.org/054hb1p97', 'no_lang_code', 1, 'https://ror.org/054hb1p97 BR Express (Brazil)'), (39291, 'https://ror.org/054k08k63', 'en', 1, 'https://ror.org/054k08k63 World Laparoscopy Hospital'), (39292, 'https://ror.org/054kgv845', 'no_lang_code', 1, 'https://ror.org/054kgv845 Unifeeder (Norway)'), (39293, 'https://ror.org/054m12006', 'no_lang_code', 1, 'https://ror.org/054m12006 Mikanit (Poland)'), (39294, 'https://ror.org/054n7j171', 'no_lang_code', 1, 'https://ror.org/054n7j171 Biochos (Norway)'), (39295, 'https://ror.org/054p5nv83', 'no_lang_code', 1, 'https://ror.org/054p5nv83 Azumi Hospital'), (39296, 'https://ror.org/054r3a876', 'no_lang_code', 1, 'https://ror.org/054r3a876 Nordic Mining (Norway)'), (39297, 'https://ror.org/054v2zz61', 'no_lang_code', 1, 'https://ror.org/054v2zz61 RemovAid (Norway)'), (39298, 'https://ror.org/054ykyc47', 'en', 1, 'https://ror.org/054ykyc47 Palo Verde Hospital'), (39299, 'https://ror.org/054ympc71', 'en', 1, 'https://ror.org/054ympc71 Norwegian Beekeepers Association'), (39300, 'https://ror.org/055081974', 'no_lang_code', 1, 'https://ror.org/055081974 Lid Invest (Norway)'), (39301, 'https://ror.org/05515v279', 'en', 1, 'https://ror.org/05515v279 Metro Health Hospital'), (39302, 'https://ror.org/05516nt33', 'no_lang_code', 1, 'https://ror.org/05516nt33 Jordan Valley Semiconductors (China)'), (39303, 'https://ror.org/0551mkt91', 'de', 1, 'https://ror.org/0551mkt91 St. Remigius Krankenhaus Opladen'), (39304, 'https://ror.org/0554mjv55', 'de', 1, 'https://ror.org/0554mjv55 Institut für EnergieTransformation'), (39305, 'https://ror.org/05569xx10', 'no_lang_code', 1, 'https://ror.org/05569xx10 Bionor (Norway)'), (39306, 'https://ror.org/05594xe57', 'no_lang_code', 1, 'https://ror.org/05594xe57 InterMedium (Norway)'), (39307, 'https://ror.org/0559rdv60', 'no_lang_code', 1, 'https://ror.org/0559rdv60 Spesialprodukter Sør (Norway)'), (39308, 'https://ror.org/055bk1853', 'no_lang_code', 1, 'https://ror.org/055bk1853 Unichem (Slovenia)'), (39309, 'https://ror.org/055faex28', 'no_lang_code', 1, 'https://ror.org/055faex28 Crown Bioscience (China)'), (39310, 'https://ror.org/055frmz88', 'no_lang_code', 1, 'https://ror.org/055frmz88 Teknomedia (Norway)'), (39311, 'https://ror.org/055fsxq56', 'no_lang_code', 1, 'https://ror.org/055fsxq56 Intertek (Switzerland)'), (39312, 'https://ror.org/055ftza32', 'en', 1, 'https://ror.org/055ftza32 Institute of Internal Auditors Norway'), (39313, 'https://ror.org/055fzjh61', 'no_lang_code', 1, 'https://ror.org/055fzjh61 Neorad (Norway)'), (39314, 'https://ror.org/055g39p68', 'sk', 1, 'https://ror.org/055g39p68 Slovenská Spoločnosť pre Kvalitu'), (39315, 'https://ror.org/055hsdr48', 'no_lang_code', 1, 'https://ror.org/055hsdr48 Centro de Espectrometria de Massas Aplicada (Brazil)'), (39316, 'https://ror.org/055j3vp97', 'no_lang_code', 1, 'https://ror.org/055j3vp97 Enel (Poland)'), (39317, 'https://ror.org/055jgd565', 'no_lang_code', 1, 'https://ror.org/055jgd565 Orkel (Norway)'), (39318, 'https://ror.org/055jjx645', 'en', 1, 'https://ror.org/055jjx645 Oslo Cancer Cluster'), (39319, 'https://ror.org/055nt8z76', 'no_lang_code', 1, 'https://ror.org/055nt8z76 Glor (Norway)'), (39320, 'https://ror.org/055pv4k97', 'no_lang_code', 1, 'https://ror.org/055pv4k97 Pemco (Norway)'), (39321, 'https://ror.org/055q5tj54', 'no_lang_code', 1, 'https://ror.org/055q5tj54 BioCer Entwicklungs (Germany)'), (39322, 'https://ror.org/055ta3j62', 'no_lang_code', 1, 'https://ror.org/055ta3j62 Strainoptics (United States)'), (39323, 'https://ror.org/055tjvf60', 'no_lang_code', 1, 'https://ror.org/055tjvf60 Med-Storm Innovation (Norway)'), (39324, 'https://ror.org/055vk7b41', 'en', 1, 'https://ror.org/055vk7b41 Ng Teng Fong General Hospital'), (39325, 'https://ror.org/055wgnw59', 'en', 1, 'https://ror.org/055wgnw59 Norwegian Nobel Institute'), (39326, 'https://ror.org/055y2wa71', 'no_lang_code', 1, 'https://ror.org/055y2wa71 Limpgas Tecnologia (Brazil)'), (39327, 'https://ror.org/0560ehd58', 'en', 1, 'https://ror.org/0560ehd58 Stephen Cottage Hospital'), (39328, 'https://ror.org/0561ntb60', 'no_lang_code', 1, 'https://ror.org/0561ntb60 Impact Clean Power Technology (Poland)'), (39329, 'https://ror.org/0563w4015', 'sl', 1, 'https://ror.org/0563w4015 Tehnološko raziskovalni center JUB'), (39330, 'https://ror.org/0563z6d74', 'en', 1, 'https://ror.org/0563z6d74 421 Hospital of PLA'), (39331, 'https://ror.org/0568w4770', 'en', 1, 'https://ror.org/0568w4770 Bible College of South Australia'), (39332, 'https://ror.org/056agx034', 'de', 1, 'https://ror.org/056agx034 Krankenhaus Neuwerk "Maria von den Aposteln"'), (39333, 'https://ror.org/056bjcd96', 'no_lang_code', 1, 'https://ror.org/056bjcd96 Jiangsu Shengze Hospital'), (39334, 'https://ror.org/056c41506', 'no_lang_code', 1, 'https://ror.org/056c41506 Serodus (Norway)'), (39335, 'https://ror.org/056c4z730', 'en', 1, 'https://ror.org/056c4z730 Professionshøjskolen University College Nordjylland University College of Northern Denmark'), (39336, 'https://ror.org/056cywe62', 'en', 1, 'https://ror.org/056cywe62 Defense Language Institute Foreign Language Center'), (39337, 'https://ror.org/056ej1m32', 'no_lang_code', 1, 'https://ror.org/056ej1m32 Marex (Norway)'), (39338, 'https://ror.org/056hxdb03', 'no_lang_code', 1, 'https://ror.org/056hxdb03 Griaule Biometrics (Brazil)'), (39339, 'https://ror.org/056m9b429', 'pt', 1, 'https://ror.org/056m9b429 Sociedade Astronômica Brasileira'), (39340, 'https://ror.org/056mrrf04', 'en', 1, 'https://ror.org/056mrrf04 St. Luke''s Hospital'), (39341, 'https://ror.org/056n6pc71', 'no_lang_code', 1, 'https://ror.org/056n6pc71 NanoPhotonica (United States)'), (39342, 'https://ror.org/056nsw527', 'no_lang_code', 1, 'https://ror.org/056nsw527 Explomet (Poland)'), (39343, 'https://ror.org/056pzh665', 'en', 1, 'https://ror.org/056pzh665 Raulerson Hospital'), (39344, 'https://ror.org/056rkh971', 'en', 1, 'https://ror.org/056rkh971 Stony Brook Children''s Hospital'), (39345, 'https://ror.org/056rxss60', 'no_lang_code', 1, 'https://ror.org/056rxss60 XMobots (Brazil)'), (39346, 'https://ror.org/056sydj58', 'en', 1, 'https://ror.org/056sydj58 National Wheelchair Softball Association'), (39347, 'https://ror.org/056v9a321', 'en', 1, 'https://ror.org/056v9a321 Caneus International'), (39348, 'https://ror.org/056zqys57', 'no_lang_code', 1, 'https://ror.org/056zqys57 Solution Seeker (Norway)'), (39349, 'https://ror.org/05701yq92', 'es', 1, 'https://ror.org/05701yq92 Hospital Base Guillermo Almenara Irigoyen'), (39350, 'https://ror.org/0570jbq35', 'en', 1, 'https://ror.org/0570jbq35 Fusion UK'), (39351, 'https://ror.org/0572dex65', 'no', 1, 'https://ror.org/0572dex65 Vitensenteret Sørlandet'), (39352, 'https://ror.org/0572v5y16', 'en', 1, 'https://ror.org/0572v5y16 University College Lahore'), (39353, 'https://ror.org/0574vhp63', 'no_lang_code', 1, 'https://ror.org/0574vhp63 Nordic Quantum Computing Group (Norway)'), (39354, 'https://ror.org/05789m354', 'no_lang_code', 1, 'https://ror.org/05789m354 Incubadora Tecnológica Univap Revap (Brazil)'), (39355, 'https://ror.org/057919b11', 'no_lang_code', 1, 'https://ror.org/057919b11 K & K Designs (Norway)'), (39356, 'https://ror.org/0579e9266', 'en', 1, 'https://ror.org/0579e9266 Beijing Fengtai Hospital'), (39357, 'https://ror.org/057bfzf92', 'no_lang_code', 1, 'https://ror.org/057bfzf92 Camlin Technologies (United Kingdom)'), (39358, 'https://ror.org/057f18p10', 'no_lang_code', 1, 'https://ror.org/057f18p10 Encap Security (Norway)'), (39359, 'https://ror.org/057gs9r51', 'en', 1, 'https://ror.org/057gs9r51 Glion Institute of Higher Education Institut de hautes études de glion'), (39360, 'https://ror.org/057hmyk78', 'no', 1, 'https://ror.org/057hmyk78 Ungt Entreprenørskap'), (39361, 'https://ror.org/057k8tk89', 'es', 1, 'https://ror.org/057k8tk89 Sociedad de Biología de Chile'), (39362, 'https://ror.org/057mx6f31', 'no_lang_code', 1, 'https://ror.org/057mx6f31 Klohn Crippen Berger (Canada)'), (39363, 'https://ror.org/057n9mf41', 'no_lang_code', 1, 'https://ror.org/057n9mf41 Jolly Aero (Slovenia)'), (39364, 'https://ror.org/057q4k809', 'no_lang_code', 1, 'https://ror.org/057q4k809 Solstad Offshore (Norway)'), (39365, 'https://ror.org/057scmk50', 'en', 1, 'https://ror.org/057scmk50 Sami Parliament of Finland'), (39366, 'https://ror.org/057t0vd36', 'en', 1, 'https://ror.org/057t0vd36 Government Unani and Ayurvedic Degree College and Hospital'), (39367, 'https://ror.org/057vq6e26', 'en', 1, 'https://ror.org/057vq6e26 Beijing Hospital of Traditional Chinese Medicine 北京市中西医结合医院'), (39368, 'https://ror.org/057xpxe28', 'no_lang_code', 1, 'https://ror.org/057xpxe28 Norsk Kirkegårdsservice (Norway)'), (39369, 'https://ror.org/057xvqd88', 'sl', 1, 'https://ror.org/057xvqd88 Veterinarska Bolnica Maribor'), (39370, 'https://ror.org/057zq5186', 'no', 1, 'https://ror.org/057zq5186 Møre og Romsdal Fylkeskommune'), (39371, 'https://ror.org/05808w753', 'en', 1, 'https://ror.org/05808w753 Norwegian Institute of Emotion-focused Therapy'), (39372, 'https://ror.org/05817s869', 'no_lang_code', 1, 'https://ror.org/05817s869 Snowdon (United States)'), (39373, 'https://ror.org/0582p8j71', 'en', 1, 'https://ror.org/0582p8j71 Jagannath University'), (39374, 'https://ror.org/05884yn26', 'en', 1, 'https://ror.org/05884yn26 Conselho de Pesquisas em Educação e Ciências Sciences and Education Research Council'), (39375, 'https://ror.org/0588hkb73', 'no_lang_code', 1, 'https://ror.org/0588hkb73 Quality Management Software (Norway)'), (39376, 'https://ror.org/05891dg79', 'pt', 1, 'https://ror.org/05891dg79 Fundação André Tosello'), (39377, 'https://ror.org/0589hep89', 'en', 1, 'https://ror.org/0589hep89 Norwegian Centre for Space-related Education'), (39378, 'https://ror.org/058a3vg17', 'en', 1, 'https://ror.org/058a3vg17 Central Mental Hospital'), (39379, 'https://ror.org/058b5kq09', 'no_lang_code', 1, 'https://ror.org/058b5kq09 Polskie Górnictwo Naftowe i Gazownictwo (Poland)'), (39380, 'https://ror.org/058bst240', 'no_lang_code', 1, 'https://ror.org/058bst240 Hamidia Hospital'), (39381, 'https://ror.org/058d7nh07', 'no_lang_code', 1, 'https://ror.org/058d7nh07 Oncoinvent (Norway)'), (39382, 'https://ror.org/058g2b535', 'no_lang_code', 1, 'https://ror.org/058g2b535 Limnos (Slovenia)'), (39383, 'https://ror.org/058gxc624', 'no_lang_code', 1, 'https://ror.org/058gxc624 NLI Innovation (Norway)'), (39384, 'https://ror.org/058gxfr70', 'no_lang_code', 1, 'https://ror.org/058gxfr70 NorMedia (Norway)'), (39385, 'https://ror.org/058jj2467', 'no_lang_code', 1, 'https://ror.org/058jj2467 Mechanix Film (Norway)'), (39386, 'https://ror.org/058jrcm27', 'en', 1, 'https://ror.org/058jrcm27 Aust-Agder County Municipality'), (39387, 'https://ror.org/058kgj085', 'no_lang_code', 1, 'https://ror.org/058kgj085 Hexalab (Brazil)'), (39388, 'https://ror.org/058r2a869', 'no_lang_code', 1, 'https://ror.org/058r2a869 Comptel (Norway)'), (39389, 'https://ror.org/058ran651', 'no_lang_code', 1, 'https://ror.org/058ran651 King Oscar (Norway)'), (39390, 'https://ror.org/058rvd314', 'fr', 1, 'https://ror.org/058rvd314 Institut de Physique Théorique'), (39391, 'https://ror.org/058sgvn64', 'en', 1, 'https://ror.org/058sgvn64 Alameda Hospital'), (39392, 'https://ror.org/058xdps70', 'en', 1, 'https://ror.org/058xdps70 Guangdong Province Science and Technology Library'), (39393, 'https://ror.org/058yg6182', 'en', 1, 'https://ror.org/058yg6182 Brandenburg Main State Archive Brandenburgisches Landeshauptarchiv'), (39394, 'https://ror.org/058zgr739', 'en', 1, 'https://ror.org/058zgr739 Consortium de Recherche en Oncologie Clinique du Québec Quebec - Clinical Research Organization in Cancer'), (39395, 'https://ror.org/0590q1218', 'en', 1, 'https://ror.org/0590q1218 Innovest'), (39396, 'https://ror.org/0591czb14', 'pt', 1, 'https://ror.org/0591czb14 Secretaria da Segurança Pública'), (39397, 'https://ror.org/0591e2567', 'de', 1, 'https://ror.org/0591e2567 Spital Limmattal'), (39398, 'https://ror.org/0591rz722', 'no_lang_code', 1, 'https://ror.org/0591rz722 Triad (Norway)'), (39399, 'https://ror.org/0592jzf54', 'no', 1, 'https://ror.org/0592jzf54 SpareBank 1 Nord-Norge'), (39400, 'https://ror.org/0592q0v50', 'en', 1, 'https://ror.org/0592q0v50 Giustino Fortunato University Università degli Studi Giustino Fortunato'), (39401, 'https://ror.org/0593dvd47', 'en', 1, 'https://ror.org/0593dvd47 Deutsches Orient-Institut German Orient Foundation'), (39402, 'https://ror.org/0594j9961', 'fr', 1, 'https://ror.org/0594j9961 Université des Sciences, de Technologie et de Médecine'), (39403, 'https://ror.org/0594wgp58', 'en', 1, 'https://ror.org/0594wgp58 Mercy Tiffin Hospital'), (39404, 'https://ror.org/059795h04', 'no_lang_code', 1, 'https://ror.org/059795h04 Papirbredden Innovasjon (Norway)'), (39405, 'https://ror.org/0597nct77', 'en', 1, 'https://ror.org/0597nct77 Morton Hospital'), (39406, 'https://ror.org/059cfwd16', 'no_lang_code', 1, 'https://ror.org/059cfwd16 Calanus (Norway)'), (39407, 'https://ror.org/059ed8079', 'en', 1, 'https://ror.org/059ed8079 Alliance for European Diabetes Research'), (39408, 'https://ror.org/059egf570', 'no_lang_code', 1, 'https://ror.org/059egf570 Lucinski (Brazil)'), (39409, 'https://ror.org/059fh8358', 'no_lang_code', 1, 'https://ror.org/059fh8358 Trysil Kommune'), (39410, 'https://ror.org/059gy0v60', 'en', 1, 'https://ror.org/059gy0v60 Women of Essence'), (39411, 'https://ror.org/059h94t31', 'no_lang_code', 1, 'https://ror.org/059h94t31 REN (Norway)'), (39412, 'https://ror.org/059jaw607', 'no_lang_code', 1, 'https://ror.org/059jaw607 Clean Silicon (Norway)'), (39413, 'https://ror.org/059jbqt71', 'fr', 1, 'https://ror.org/059jbqt71 Institut du Nouveau Monde'), (39414, 'https://ror.org/059m0z495', 'no_lang_code', 1, 'https://ror.org/059m0z495 Premium Rosa (Poland)'), (39415, 'https://ror.org/059mcba53', 'no_lang_code', 1, 'https://ror.org/059mcba53 Preseria (Norway)'), (39416, 'https://ror.org/059p4v436', 'no_lang_code', 1, 'https://ror.org/059p4v436 Kanazawa Hospital 金沢病院'), (39417, 'https://ror.org/059s74574', 'en', 1, 'https://ror.org/059s74574 Labour Institute for Economic Research'), (39418, 'https://ror.org/059skkh49', 'no_lang_code', 1, 'https://ror.org/059skkh49 TKK'), (39419, 'https://ror.org/059wee776', 'no_lang_code', 1, 'https://ror.org/059wee776 Nigrad (Slovenia)'), (39420, 'https://ror.org/059x5ff13', 'no_lang_code', 1, 'https://ror.org/059x5ff13 Aliança Orgânica Soluções Ambientais (Brazil)'), (39421, 'https://ror.org/059xg9r41', 'no_lang_code', 1, 'https://ror.org/059xg9r41 Unified Messaging Systems (Norway)'), (39422, 'https://ror.org/059xx0z39', 'en', 1, 'https://ror.org/059xx0z39 Norwegian Labour Inspection Authority'), (39423, 'https://ror.org/059yn9d94', 'no', 1, 'https://ror.org/059yn9d94 Asker kommune'), (39424, 'https://ror.org/059z8dx76', 'no_lang_code', 1, 'https://ror.org/059z8dx76 Danko Hodowla Roślin (Poland)'), (39425, 'https://ror.org/059zjhp33', 'en', 1, 'https://ror.org/059zjhp33 Sector Asset Management'), (39426, 'https://ror.org/059zrhd58', 'no_lang_code', 1, 'https://ror.org/059zrhd58 Norsk Juletre (Norway)'), (39427, 'https://ror.org/05a18r864', 'en', 1, 'https://ror.org/05a18r864 International Ocean Discovery Program'), (39428, 'https://ror.org/05a1hde32', 'no_lang_code', 1, 'https://ror.org/05a1hde32 Sypress Forlag (Norway)'), (39429, 'https://ror.org/05a1ns214', 'no_lang_code', 1, 'https://ror.org/05a1ns214 Regatta (Norway)'), (39430, 'https://ror.org/05a4p4j42', 'en', 1, 'https://ror.org/05a4p4j42 Peace Institute- Institute for Contemporary Social and Political Studies'), (39431, 'https://ror.org/05a60y787', 'en', 1, 'https://ror.org/05a60y787 Intercultural Open University Foundation'), (39432, 'https://ror.org/05a637472', 'en', 1, 'https://ror.org/05a637472 CURE Children’s Hospital of Uganda'), (39433, 'https://ror.org/05a70mg07', 'en', 1, 'https://ror.org/05a70mg07 Nakaseke Hospital'), (39434, 'https://ror.org/05a8h2h02', 'pt', 1, 'https://ror.org/05a8h2h02 Sociedade Brasileira de História da Ciência'), (39435, 'https://ror.org/05a8p8995', 'no_lang_code', 1, 'https://ror.org/05a8p8995 Glencore (Norway)'), (39436, 'https://ror.org/05abjx080', 'no_lang_code', 1, 'https://ror.org/05abjx080 Spider Solutions (Norway)'), (39437, 'https://ror.org/05agnp051', 'no_lang_code', 1, 'https://ror.org/05agnp051 Nema Research (United States)'), (39438, 'https://ror.org/05ahdc712', 'en', 1, 'https://ror.org/05ahdc712 GS1 Norway'), (39439, 'https://ror.org/05ahxa252', 'en', 1, 'https://ror.org/05ahxa252 ASA University Bangladesh আশা বিশ্ববিদ্যালয় বাংলাদেশ'), (39440, 'https://ror.org/05ajm2r35', 'no_lang_code', 1, 'https://ror.org/05ajm2r35 Dynavec (Norway)'), (39441, 'https://ror.org/05akpxs80', 'no_lang_code', 1, 'https://ror.org/05akpxs80 Nordic Semiconductor (Norway)'), (39442, 'https://ror.org/05amp0d44', 'no_lang_code', 1, 'https://ror.org/05amp0d44 Novamed (Italy)'), (39443, 'https://ror.org/05an5n875', 'en', 1, 'https://ror.org/05an5n875 Saad Specialist Hospital مستشفى سعد التخصصي'), (39444, 'https://ror.org/05aq38y40', 'no_lang_code', 1, 'https://ror.org/05aq38y40 ProQuest (United Kingdom)'), (39445, 'https://ror.org/05as0g053', 'en', 1, 'https://ror.org/05as0g053 Mithila Minority Dental College And Hospital'), (39446, 'https://ror.org/05ate2e14', 'fr', 1, 'https://ror.org/05ate2e14 École des Mines de Douai'), (39447, 'https://ror.org/05b2zm953', 'no_lang_code', 1, 'https://ror.org/05b2zm953 Pullup (Brazil)'), (39448, 'https://ror.org/05b30h594', 'no_lang_code', 1, 'https://ror.org/05b30h594 Real Alloy (Norway)'), (39449, 'https://ror.org/05b51ak88', 'no_lang_code', 1, 'https://ror.org/05b51ak88 Chinese People’s Liberation Army 263 hospital'), (39450, 'https://ror.org/05b52bg33', 'en', 1, 'https://ror.org/05b52bg33 Tatarstan Academy of Sciences'), (39451, 'https://ror.org/05b5whm83', 'en', 1, 'https://ror.org/05b5whm83 Norwegian Agency for Quality Assurance in Education'), (39452, 'https://ror.org/05b8fve51', 'no_lang_code', 1, 'https://ror.org/05b8fve51 Archer (Norway)'), (39453, 'https://ror.org/05b9s4832', 'no_lang_code', 1, 'https://ror.org/05b9s4832 EXA-M Instrumentação Biomédica (Brazil)'), (39454, 'https://ror.org/05baenv82', 'no_lang_code', 1, 'https://ror.org/05baenv82 Luxo (Norway)'), (39455, 'https://ror.org/05bbbm605', 'en', 1, 'https://ror.org/05bbbm605 Military Institute of Engineer Technology'), (39456, 'https://ror.org/05bbns833', 'en', 1, 'https://ror.org/05bbns833 University College of Islamabad'), (39457, 'https://ror.org/05bcfye76', 'no_lang_code', 1, 'https://ror.org/05bcfye76 Kawmet (Poland)'), (39458, 'https://ror.org/05bfknj54', 'en', 1, 'https://ror.org/05bfknj54 St. Joseph Hospital'), (39459, 'https://ror.org/05bg39511', 'no_lang_code', 1, 'https://ror.org/05bg39511 ReSight (Norway)'), (39460, 'https://ror.org/05bgpkm02', 'en', 1, 'https://ror.org/05bgpkm02 Krantisinh Nana Patil College of Veterinary Science'), (39461, 'https://ror.org/05bkbs460', 'en', 1, 'https://ror.org/05bkbs460 Obafemi Awolowo University Teaching Hospitals Complex'), (39462, 'https://ror.org/05bkcgf50', 'en', 1, 'https://ror.org/05bkcgf50 Hubei Urban Construction Vocational and Technological College 湖北城市建设职业技术学院'), (39463, 'https://ror.org/05bkwxs60', 'en', 1, 'https://ror.org/05bkwxs60 Colorado Mountain College'), (39464, 'https://ror.org/05bmj6719', 'en', 1, 'https://ror.org/05bmj6719 ICMA Centre'), (39465, 'https://ror.org/05bp6y176', 'en', 1, 'https://ror.org/05bp6y176 Bon Secours Hospital Tralee'), (39466, 'https://ror.org/05bsmsd63', 'en', 1, 'https://ror.org/05bsmsd63 Central Wyoming College'), (39467, 'https://ror.org/05bvm3t13', 'no_lang_code', 1, 'https://ror.org/05bvm3t13 Marna Motor (Norway)'), (39468, 'https://ror.org/05bvpc358', 'no_lang_code', 1, 'https://ror.org/05bvpc358 CGS plus (Slovenia)'), (39469, 'https://ror.org/05bvvtk87', 'en', 1, 'https://ror.org/05bvvtk87 Nehru Gram Bharti University'), (39470, 'https://ror.org/05bxqp605', 'fr', 1, 'https://ror.org/05bxqp605 Réseau Québécois en Innovation Sociale'), (39471, 'https://ror.org/05bxvzw76', 'en', 1, 'https://ror.org/05bxvzw76 Association of Organ Procurement Organizations'), (39472, 'https://ror.org/05by7rp83', 'en', 1, 'https://ror.org/05by7rp83 Helen Newberry Joy Hospital'), (39473, 'https://ror.org/05bzatp41', 'no_lang_code', 1, 'https://ror.org/05bzatp41 Takashimadaira Chuo General Hospital'), (39474, 'https://ror.org/05c1jqg32', 'no_lang_code', 1, 'https://ror.org/05c1jqg32 BMS Kuhn Steel (Norway)'), (39475, 'https://ror.org/05c1z0f40', 'en', 1, 'https://ror.org/05c1z0f40 National Association of Independent Colleges and Universities'), (39476, 'https://ror.org/05c3cgy93', 'en', 1, 'https://ror.org/05c3cgy93 Krakow Cardiovascular Research Institute'), (39477, 'https://ror.org/05c5mw559', 'no_lang_code', 1, 'https://ror.org/05c5mw559 Sagaplant (Norway)'), (39478, 'https://ror.org/05c6gff39', 'no_lang_code', 1, 'https://ror.org/05c6gff39 Seco Warwick (Poland)'), (39479, 'https://ror.org/05c6jzf22', 'pt', 1, 'https://ror.org/05c6jzf22 Faculdades Integradas de São Paulo'), (39480, 'https://ror.org/05c6qc887', 'no_lang_code', 1, 'https://ror.org/05c6qc887 Gyrofly (Brazil)'), (39481, 'https://ror.org/05c82kn73', 'en', 1, 'https://ror.org/05c82kn73 Queensway-Carleton Hospital'), (39482, 'https://ror.org/05ca6eb43', 'en', 1, 'https://ror.org/05ca6eb43 Xuzhou No.1 People''s Hospital'), (39483, 'https://ror.org/05cc9pg46', 'no_lang_code', 1, 'https://ror.org/05cc9pg46 Orthogenics (Norway)'), (39484, 'https://ror.org/05cdcvx65', 'en', 1, 'https://ror.org/05cdcvx65 Metropolitan Hospital College of Nursing'), (39485, 'https://ror.org/05cec6864', 'sl', 1, 'https://ror.org/05cec6864 Bion, Institute for bioelectromagnetics Inštitut Bion'), (39486, 'https://ror.org/05cjvqb89', 'no_lang_code', 1, 'https://ror.org/05cjvqb89 ØKOKRIM'), (39487, 'https://ror.org/05ckkwm59', 'en', 1, 'https://ror.org/05ckkwm59 Kirkwood Hospice'), (39488, 'https://ror.org/05ckrxx96', 'pt', 1, 'https://ror.org/05ckrxx96 Federacao Brasileira de Associacoes de Bibliotecarios'), (39489, 'https://ror.org/05cm0ff89', 'la', 1, 'https://ror.org/05cm0ff89 Monumenta Germaniae Historica'), (39490, 'https://ror.org/05cm4gv85', 'no_lang_code', 1, 'https://ror.org/05cm4gv85 Agios Pavlos General Hospital'), (39491, 'https://ror.org/05cn1e898', 'no_lang_code', 1, 'https://ror.org/05cn1e898 Miljøkom (Norway)'), (39492, 'https://ror.org/05cnz8f61', 'en', 1, 'https://ror.org/05cnz8f61 Research and Development Centre for Wood-Based Panels'), (39493, 'https://ror.org/05cqn9380', 'en', 1, 'https://ror.org/05cqn9380 Yangpu Hospital of Tongji University'), (39494, 'https://ror.org/05cqqj259', 'en', 1, 'https://ror.org/05cqqj259 American Society of Transplantation'), (39495, 'https://ror.org/05cqs0208', 'no_lang_code', 1, 'https://ror.org/05cqs0208 Elhand Transformatory (Poland)'), (39496, 'https://ror.org/05cs9ej55', 'no_lang_code', 1, 'https://ror.org/05cs9ej55 Redealumni (Brazil)'), (39497, 'https://ror.org/05cswb132', 'no_lang_code', 1, 'https://ror.org/05cswb132 Texas Instruments (Norway)'), (39498, 'https://ror.org/05ctcgz71', 'no_lang_code', 1, 'https://ror.org/05ctcgz71 Beta Telecom (Brazil)'), (39499, 'https://ror.org/05cwk4h45', 'es', 1, 'https://ror.org/05cwk4h45 Hospital Quirón Torrevieja'), (39500, 'https://ror.org/05cxk4q81', 'no_lang_code', 1, 'https://ror.org/05cxk4q81 Punan Hospital'), (39501, 'https://ror.org/05czzgv88', 'en', 1, 'https://ror.org/05czzgv88 Namsos Hospital'), (39502, 'https://ror.org/05d01fw51', 'no_lang_code', 1, 'https://ror.org/05d01fw51 Fronteer Solutions (Norway)'), (39503, 'https://ror.org/05d0s2j60', 'en', 1, 'https://ror.org/05d0s2j60 Nazareth Hospital'), (39504, 'https://ror.org/05d3ht335', 'no_lang_code', 1, 'https://ror.org/05d3ht335 Ultimovacs (Norway)'), (39505, 'https://ror.org/05d4adb22', 'no_lang_code', 1, 'https://ror.org/05d4adb22 Mustad Autoline (Norway)'), (39506, 'https://ror.org/05d50hn21', 'en', 1, 'https://ror.org/05d50hn21 St. Johns Hospital'), (39507, 'https://ror.org/05d5cn472', 'no_lang_code', 1, 'https://ror.org/05d5cn472 Altimmune (United Kingdom)'), (39508, 'https://ror.org/05d5xcx47', 'no_lang_code', 1, 'https://ror.org/05d5xcx47 Gentian (Norway)'), (39509, 'https://ror.org/05d6xwf62', 'en', 1, 'https://ror.org/05d6xwf62 Rocky Vista University'), (39510, 'https://ror.org/05d8s8843', 'no_lang_code', 1, 'https://ror.org/05d8s8843 Bruker (Canada)'), (39511, 'https://ror.org/05dbrz220', 'no_lang_code', 1, 'https://ror.org/05dbrz220 Reade (Brazil)'), (39512, 'https://ror.org/05dc99548', 'no_lang_code', 1, 'https://ror.org/05dc99548 Regional Development Agency Mura (Slovenia)'), (39513, 'https://ror.org/05dcmqv57', 'no', 1, 'https://ror.org/05dcmqv57 Inderøy Kommune'), (39514, 'https://ror.org/05de59334', 'en', 1, 'https://ror.org/05de59334 Kristiansand Municipality'), (39515, 'https://ror.org/05dffn720', 'no_lang_code', 1, 'https://ror.org/05dffn720 Centro de Genomas (Brazil)'), (39516, 'https://ror.org/05dfvhh79', 'no_lang_code', 1, 'https://ror.org/05dfvhh79 BP (Spain)'), (39517, 'https://ror.org/05dm9f210', 'no_lang_code', 1, 'https://ror.org/05dm9f210 DMC Equipmentos (Brazil)'), (39518, 'https://ror.org/05dmdhx59', 'en', 1, 'https://ror.org/05dmdhx59 Institute of Ceramics and Building Materials'), (39519, 'https://ror.org/05dn2zg08', 'no_lang_code', 1, 'https://ror.org/05dn2zg08 DLG Automation (Brazil)'), (39520, 'https://ror.org/05dq2qj05', 'no', 1, 'https://ror.org/05dq2qj05 Telemark County Council Telemark Fylkeskommune'), (39521, 'https://ror.org/05dqc2261', 'no', 1, 'https://ror.org/05dqc2261 Barratt Due'), (39522, 'https://ror.org/05dqznn49', 'no_lang_code', 1, 'https://ror.org/05dqznn49 Oslotech (Norway)'), (39523, 'https://ror.org/05drng229', 'no_lang_code', 1, 'https://ror.org/05drng229 Dýnamis Industry e Commerce (Brazil)'), (39524, 'https://ror.org/05dtq3097', 'no_lang_code', 1, 'https://ror.org/05dtq3097 Senseonics (United States)'), (39525, 'https://ror.org/05dtsch22', 'no_lang_code', 1, 'https://ror.org/05dtsch22 Ispas (Norway)'), (39526, 'https://ror.org/05dvp4993', 'no_lang_code', 1, 'https://ror.org/05dvp4993 Ubitech (Greece)'), (39527, 'https://ror.org/05dvpaj72', 'en', 1, 'https://ror.org/05dvpaj72 The Rogosin Institute'), (39528, 'https://ror.org/05dzdb443', 'pl', 1, 'https://ror.org/05dzdb443 Zakład Doświadczalny Instytutu Zootechniki'), (39529, 'https://ror.org/05e19x344', 'no_lang_code', 1, 'https://ror.org/05e19x344 OxyVision (Norway)'), (39530, 'https://ror.org/05e1zbn94', 'en', 1, 'https://ror.org/05e1zbn94 Qingdao Huanghai University'), (39531, 'https://ror.org/05e5vvv83', 'no_lang_code', 1, 'https://ror.org/05e5vvv83 Ship Modelling & Simulation Centre'), (39532, 'https://ror.org/05e64ed12', 'en', 1, 'https://ror.org/05e64ed12 Finance Norway'), (39533, 'https://ror.org/05e8kwn08', 'no_lang_code', 1, 'https://ror.org/05e8kwn08 A-Lifting (Norway)'), (39534, 'https://ror.org/05e966z79', 'en', 1, 'https://ror.org/05e966z79 Akron Council of Engineering and Scientific Societies'), (39535, 'https://ror.org/05ea1cr97', 'en', 1, 'https://ror.org/05ea1cr97 Modern Cancer Hospital Guangzhou'), (39536, 'https://ror.org/05ea91r51', 'no', 1, 'https://ror.org/05ea91r51 Norsk Gartnerforbund'), (39537, 'https://ror.org/05eagfs92', 'en', 1, 'https://ror.org/05eagfs92 Slovak Environmental Agency'), (39538, 'https://ror.org/05ec81r30', 'en', 1, 'https://ror.org/05ec81r30 Napa State Hospital'), (39539, 'https://ror.org/05ecjem84', 'no_lang_code', 1, 'https://ror.org/05ecjem84 Biblioteksentralen (Norway)'), (39540, 'https://ror.org/05edp6x37', 'en', 1, 'https://ror.org/05edp6x37 Norwegian National Museum of Justice'), (39541, 'https://ror.org/05eegng50', 'en', 1, 'https://ror.org/05eegng50 Bangued Christian Hospital'), (39542, 'https://ror.org/05efb1x79', 'no_lang_code', 1, 'https://ror.org/05efb1x79 Western Metal Materials (China)'), (39543, 'https://ror.org/05egmt145', 'no_lang_code', 1, 'https://ror.org/05egmt145 Comm Solutions (Brazil)'), (39544, 'https://ror.org/05ej1z911', 'no_lang_code', 1, 'https://ror.org/05ej1z911 Glamox (Norway)'), (39545, 'https://ror.org/05ejb6h88', 'en', 1, 'https://ror.org/05ejb6h88 Bundeskanzleramt German Federal Chancellery'), (39546, 'https://ror.org/05em0xj58', 'no_lang_code', 1, 'https://ror.org/05em0xj58 Apertus (Norway)'), (39547, 'https://ror.org/05enrfh93', 'en', 1, 'https://ror.org/05enrfh93 Chattahoochee Technical College'), (39548, 'https://ror.org/05eqwb473', 'no_lang_code', 1, 'https://ror.org/05eqwb473 Norrønt (Norway)'), (39549, 'https://ror.org/05etvgz30', 'no_lang_code', 1, 'https://ror.org/05etvgz30 Galwes (Poland)'), (39550, 'https://ror.org/05ev6b373', 'no_lang_code', 1, 'https://ror.org/05ev6b373 Acroni (Slovenia)'), (39551, 'https://ror.org/05evypg37', 'de', 1, 'https://ror.org/05evypg37 Integrierte Forschungs- und Behandlungszentren'), (39552, 'https://ror.org/05ey71f27', 'en', 1, 'https://ror.org/05ey71f27 George C. Marshall European Center for Security Studies George C. Marshall Europäisches Zentrum für Sicherheitsstudien'), (39553, 'https://ror.org/05ezx4n91', 'no', 1, 'https://ror.org/05ezx4n91 Rettspolitisk Forening'), (39554, 'https://ror.org/05f060a20', 'no_lang_code', 1, 'https://ror.org/05f060a20 Keko Equipment (Slovenia)'), (39555, 'https://ror.org/05f1g5a11', 'en', 1, 'https://ror.org/05f1g5a11 Seven Oaks General Hospital'), (39556, 'https://ror.org/05f24d398', 'no_lang_code', 1, 'https://ror.org/05f24d398 SF International (Brazil)'), (39557, 'https://ror.org/05f4xxw74', 'no_lang_code', 1, 'https://ror.org/05f4xxw74 Balton (Poland)'), (39558, 'https://ror.org/05f655c20', 'no_lang_code', 1, 'https://ror.org/05f655c20 Re-Turn (Norway)'), (39559, 'https://ror.org/05f6p1h60', 'no_lang_code', 1, 'https://ror.org/05f6p1h60 Illinois Tool Works (Brazil)'), (39560, 'https://ror.org/05f8we715', 'en', 1, 'https://ror.org/05f8we715 Francke Foundations Franckesche Stiftungen'), (39561, 'https://ror.org/05fa5qm36', 'no_lang_code', 1, 'https://ror.org/05fa5qm36 Hôpital delek Tibetan Delek Hospital'), (39562, 'https://ror.org/05fcegz04', 'en', 1, 'https://ror.org/05fcegz04 Association of Vocational Rehabilitation Enterprises'), (39563, 'https://ror.org/05fdre954', 'no_lang_code', 1, 'https://ror.org/05fdre954 Simitive (United Kingdom)'), (39564, 'https://ror.org/05fe98h83', 'en', 1, 'https://ror.org/05fe98h83 Jinja Hospital'), (39565, 'https://ror.org/05ffh3h97', 'en', 1, 'https://ror.org/05ffh3h97 Government ENT Hospital ప్రభుత్వ ఈఎన్టీ వైద్యశాల'), (39566, 'https://ror.org/05ffk0s37', 'no_lang_code', 1, 'https://ror.org/05ffk0s37 N2 Applied (Norway)'), (39567, 'https://ror.org/05ffyy494', 'en', 1, 'https://ror.org/05ffyy494 Trojina Institute for Applied Slovene Studies'), (39568, 'https://ror.org/05fh9da77', 'no_lang_code', 1, 'https://ror.org/05fh9da77 Z Energi (Norway)'), (39569, 'https://ror.org/05fhsxp84', 'no', 1, 'https://ror.org/05fhsxp84 Evidensia Oslo dyresykehus'), (39570, 'https://ror.org/05fhv3964', 'fr', 1, 'https://ror.org/05fhv3964 Association Internationale des Études Québécoises'), (39571, 'https://ror.org/05fhxyg37', 'no', 1, 'https://ror.org/05fhxyg37 Politiet'), (39572, 'https://ror.org/05fmss017', 'en', 1, 'https://ror.org/05fmss017 All Saints Hospital'), (39573, 'https://ror.org/05fn7qf30', 'no_lang_code', 1, 'https://ror.org/05fn7qf30 Nafra Polska (Poland)'), (39574, 'https://ror.org/05fnafm06', 'no_lang_code', 1, 'https://ror.org/05fnafm06 Cecilia Makiwane Hospital'), (39575, 'https://ror.org/05fp2e057', 'no_lang_code', 1, 'https://ror.org/05fp2e057 Admincontrol (Norway)'), (39576, 'https://ror.org/05fq4pb53', 'en', 1, 'https://ror.org/05fq4pb53 Centres for Economic Development, Transport and the Environment Elinkeino-, liikenne- ja ympäristökeskukset Närings- Trafik- och Miljöcentralen'), (39577, 'https://ror.org/05fs4ar13', 'en', 1, 'https://ror.org/05fs4ar13 Soroti Hospital'), (39578, 'https://ror.org/05ftebz76', 'no_lang_code', 1, 'https://ror.org/05ftebz76 Masiv Bygg (Norway)'), (39579, 'https://ror.org/05ftva293', 'no_lang_code', 1, 'https://ror.org/05ftva293 Moelven (Norway)'), (39580, 'https://ror.org/05fv11t10', 'no_lang_code', 1, 'https://ror.org/05fv11t10 Thorus Scisoft (Brazil)'), (39581, 'https://ror.org/05fx84t54', 'hu', 1, 'https://ror.org/05fx84t54 Jahn Ferenc Dél-Pesti Kórház és Rendelőintézet'), (39582, 'https://ror.org/05fx9z870', 'no_lang_code', 1, 'https://ror.org/05fx9z870 Emergo (United States)'), (39583, 'https://ror.org/05fxczt15', 'no_lang_code', 1, 'https://ror.org/05fxczt15 Marriott International (Canada)'), (39584, 'https://ror.org/05fz42k53', 'no_lang_code', 1, 'https://ror.org/05fz42k53 Simrad (Norway)'), (39585, 'https://ror.org/05g0fhs68', 'no_lang_code', 1, 'https://ror.org/05g0fhs68 Washington Mills (Norway)'), (39586, 'https://ror.org/05g27aj31', 'no', 1, 'https://ror.org/05g27aj31 Norges Kystfiskarlag'), (39587, 'https://ror.org/05g2jnh09', 'en', 1, 'https://ror.org/05g2jnh09 Centre of Excellence for Integrated Approaches in Chemistry and Biology of Proteins'), (39588, 'https://ror.org/05g2wkx97', 'no_lang_code', 1, 'https://ror.org/05g2wkx97 JG Moriya (Brazil)'), (39589, 'https://ror.org/05g3zpw59', 'no_lang_code', 1, 'https://ror.org/05g3zpw59 BiotaTools (Norway)'), (39590, 'https://ror.org/05g65s446', 'pt', 1, 'https://ror.org/05g65s446 Centro de Inovação, Empreendedorismo e Tecnologia'), (39591, 'https://ror.org/05g99rf11', 'no_lang_code', 1, 'https://ror.org/05g99rf11 Kidopi (Brazil)'), (39592, 'https://ror.org/05ga7sz51', 'en', 1, 'https://ror.org/05ga7sz51 King''s Inns Óstaí an Rí'), (39593, 'https://ror.org/05gavvk50', 'no_lang_code', 1, 'https://ror.org/05gavvk50 Tectonor (Norway)'), (39594, 'https://ror.org/05gawss62', 'no_lang_code', 1, 'https://ror.org/05gawss62 Barco (Norway)'), (39595, 'https://ror.org/05gbyky62', 'en', 1, 'https://ror.org/05gbyky62 Institute of Radio-Engineering and Electronics Институт радиотехники и электроники им. В. А. Котельникова РАН'), (39596, 'https://ror.org/05gdb1895', 'no_lang_code', 1, 'https://ror.org/05gdb1895 Elabora Consultoria (Brazil)'), (39597, 'https://ror.org/05gey1s27', 'no_lang_code', 1, 'https://ror.org/05gey1s27 Thales (Norway)'), (39598, 'https://ror.org/05gftk240', 'no_lang_code', 1, 'https://ror.org/05gftk240 Murambinda Mission Hospital'), (39599, 'https://ror.org/05ggnc709', 'no_lang_code', 1, 'https://ror.org/05ggnc709 Inpower (Norway)'), (39600, 'https://ror.org/05ggz9e14', 'no_lang_code', 1, 'https://ror.org/05ggz9e14 EQE Tecnologia (Brazil)'), (39601, 'https://ror.org/05ghtc147', 'en', 1, 'https://ror.org/05ghtc147 St. George Hospital'), (39602, 'https://ror.org/05gjbhz21', 'en', 1, 'https://ror.org/05gjbhz21 Biblioteca del Condado de Hennepin Hennepin County Library'), (39603, 'https://ror.org/05gjjdy50', 'en', 1, 'https://ror.org/05gjjdy50 Swiss Leading Hospitals'), (39604, 'https://ror.org/05gkvd676', 'en', 1, 'https://ror.org/05gkvd676 King George Hospital కింగ్ జార్జి ఆసుపత్రి'), (39605, 'https://ror.org/05gn7qs79', 'no_lang_code', 1, 'https://ror.org/05gn7qs79 Semco Maritime (Norway)'), (39606, 'https://ror.org/05gvw2741', 'en', 1, 'https://ror.org/05gvw2741 Chongqing Medical and Pharmaceutical College'), (39607, 'https://ror.org/05gwwmd95', 'no_lang_code', 1, 'https://ror.org/05gwwmd95 Slovenska Industrija Jekla (Slovenia)'), (39608, 'https://ror.org/05gwzej73', 'no_lang_code', 1, 'https://ror.org/05gwzej73 Trustper (Norway)'), (39609, 'https://ror.org/05gxyna29', 'en', 1, 'https://ror.org/05gxyna29 Frankfurt School of Finance & Management Hochschule für Bankwirtschaft'), (39610, 'https://ror.org/05gy3y907', 'no_lang_code', 1, 'https://ror.org/05gy3y907 Abalonyx (Norway)'), (39611, 'https://ror.org/05gzt5s45', 'no_lang_code', 1, 'https://ror.org/05gzt5s45 Viscenario (Norway)'), (39612, 'https://ror.org/05h0vyf89', 'sl', 1, 'https://ror.org/05h0vyf89 Grm Novo mesto - Center Biotehnike in Turizma'), (39613, 'https://ror.org/05h173491', 'no_lang_code', 1, 'https://ror.org/05h173491 Elotec (Norway)'), (39614, 'https://ror.org/05h3vcy91', 'en', 1, 'https://ror.org/05h3vcy91 Qingdao Institute of Bioenergy and Bioprocess Technology 中国科学院青岛生物能源与过程研究所'), (39615, 'https://ror.org/05h4txh72', 'no_lang_code', 1, 'https://ror.org/05h4txh72 Hotel Ullensvang (Norway)'), (39616, 'https://ror.org/05h6hwf91', 'pt', 1, 'https://ror.org/05h6hwf91 Secretaria Municipal do Verde e do Meio Ambiente'), (39617, 'https://ror.org/05h7a5719', 'no_lang_code', 1, 'https://ror.org/05h7a5719 TeamTec (Norway)'), (39618, 'https://ror.org/05h7j3j46', 'en', 1, 'https://ror.org/05h7j3j46 Steynsburg Provincial Hospital'), (39619, 'https://ror.org/05h8wjh50', 'en', 1, 'https://ror.org/05h8wjh50 Fraunhofer Institute for Material and Beam Technology Fraunhofer-Institut für Werkstoff- und Strahltechnik'), (39620, 'https://ror.org/05hca2307', 'fr', 1, 'https://ror.org/05hca2307 École Nationale Supérieure d’Architecture Paris-Malaquais'), (39621, 'https://ror.org/05hd3bg98', 'no', 1, 'https://ror.org/05hd3bg98 Science Center of Innlandet Vitensenteret Innlandet'), (39622, 'https://ror.org/05hewaf81', 'en', 1, 'https://ror.org/05hewaf81 University of Kang Ning 康寧大學'), (39623, 'https://ror.org/05hg8d082', 'en', 1, 'https://ror.org/05hg8d082 First Hospital of Xi''an'), (39624, 'https://ror.org/05hj5cr21', 'no_lang_code', 1, 'https://ror.org/05hj5cr21 Panalpina (Norway)'), (39625, 'https://ror.org/05hj6ps60', 'no', 1, 'https://ror.org/05hj6ps60 Vikna Kommune'), (39626, 'https://ror.org/05hjjxp72', 'en', 1, 'https://ror.org/05hjjxp72 Asheville–Buncombe Technical Community College'), (39627, 'https://ror.org/05hk46p43', 'no_lang_code', 1, 'https://ror.org/05hk46p43 DeepOcean (Norway)'), (39628, 'https://ror.org/05hkbb047', 'no_lang_code', 1, 'https://ror.org/05hkbb047 Inselli Engenharia e Ciência Aplicada (Brazil)'), (39629, 'https://ror.org/05hmaqs06', 'en', 1, 'https://ror.org/05hmaqs06 Bapuji Dental College and Hospital ಬಾಪೂಜಿ ದಂತ ಮಹಾವಿದ್ಯಾಲಯ ಮತ್ತು ಆಸ್ಪತ್ರೇ'), (39630, 'https://ror.org/05hmcwd14', 'no_lang_code', 1, 'https://ror.org/05hmcwd14 Coop Norge (Norway)'), (39631, 'https://ror.org/05hmx2x96', 'no_lang_code', 1, 'https://ror.org/05hmx2x96 C6 Technologies (Norway)'), (39632, 'https://ror.org/05hq62676', 'en', 1, 'https://ror.org/05hq62676 Bamberg State Library Staatsbibliothek Bamberg'), (39633, 'https://ror.org/05hqmfz74', 'no', 1, 'https://ror.org/05hqmfz74 Nes Kommune'), (39634, 'https://ror.org/05hqztx55', 'no_lang_code', 1, 'https://ror.org/05hqztx55 Aptomar (Norway)'), (39635, 'https://ror.org/05hrhc122', 'en', 1, 'https://ror.org/05hrhc122 Q.D. Research'), (39636, 'https://ror.org/05hrhxs64', 'en', 1, 'https://ror.org/05hrhxs64 Amita Health St. Mary''s Hospital'), (39637, 'https://ror.org/05ht4fz15', 'en', 1, 'https://ror.org/05ht4fz15 Barton Community College'), (39638, 'https://ror.org/05htdfq36', 'en', 1, 'https://ror.org/05htdfq36 Jefferson Davis Community College'), (39639, 'https://ror.org/05htgxx31', 'en', 1, 'https://ror.org/05htgxx31 Point Pedro Hospital'), (39640, 'https://ror.org/05htr1n89', 'pl', 1, 'https://ror.org/05htr1n89 Centrum Słuchu i Mowy'), (39641, 'https://ror.org/05hyj7861', 'en', 1, 'https://ror.org/05hyj7861 Children''s Hospital of Capital Institute of Pediatrics'), (39642, 'https://ror.org/05hyzh026', 'no_lang_code', 1, 'https://ror.org/05hyzh026 Memor Software (Norway)'), (39643, 'https://ror.org/05j3bsc16', 'no_lang_code', 1, 'https://ror.org/05j3bsc16 Cantoni (Poland)'), (39644, 'https://ror.org/05j4ckm72', 'no_lang_code', 1, 'https://ror.org/05j4ckm72 Genetic Technologies (Australia)'), (39645, 'https://ror.org/05j6mnq41', 'en', 1, 'https://ror.org/05j6mnq41 Weifang Maternity and Child Care Hospital'), (39646, 'https://ror.org/05j6q2769', 'no_lang_code', 1, 'https://ror.org/05j6q2769 Petrell (Norway)'), (39647, 'https://ror.org/05j889016', 'no_lang_code', 1, 'https://ror.org/05j889016 Flow Design Bureau (Norway)'), (39648, 'https://ror.org/05jd9hn69', 'en', 1, 'https://ror.org/05jd9hn69 Lady Grey Hospital'), (39649, 'https://ror.org/05jdk6x63', 'en', 1, 'https://ror.org/05jdk6x63 (حکومت نظامیہ جنرل ہسپتال ( طبی داواکہان Government Nizamia General Hospital నిజామియా జనరల్ ఆస్పత్రి'), (39650, 'https://ror.org/05jey0e23', 'pt', 1, 'https://ror.org/05jey0e23 Fundação Padre Albino'), (39651, 'https://ror.org/05jfg8552', 'en', 1, 'https://ror.org/05jfg8552 Columbia Bible College'), (39652, 'https://ror.org/05jg53152', 'it', 1, 'https://ror.org/05jg53152 Ospedale Versilia'), (39653, 'https://ror.org/05jh60332', 'en', 1, 'https://ror.org/05jh60332 Cathcart Provincial Hospital'), (39654, 'https://ror.org/05jhctt84', 'en', 1, 'https://ror.org/05jhctt84 Malaysia Theological Seminary'), (39655, 'https://ror.org/05jjqbw81', 'en', 1, 'https://ror.org/05jjqbw81 Lillebaelt Academy University of Applied Sciences'), (39656, 'https://ror.org/05jk1ds24', 'no_lang_code', 1, 'https://ror.org/05jk1ds24 Finamac (Brazil)'), (39657, 'https://ror.org/05jrtrp47', 'en', 1, 'https://ror.org/05jrtrp47 Maple Grove Hospital'), (39658, 'https://ror.org/05jxvg504', 'tr', 1, 'https://ror.org/05jxvg504 İstanbul Kanuni Sultan Süleyman Eğitim ve Araştırma Hastanesi'); INSERT INTO `rors` VALUES (39659, 'https://ror.org/05jyyjd35', 'no_lang_code', 1, 'https://ror.org/05jyyjd35 Correias Elo (Brazil)'), (39660, 'https://ror.org/05k0x2w50', 'en', 1, 'https://ror.org/05k0x2w50 Lipetsk State Pedagogical University'), (39661, 'https://ror.org/05k2k4e76', 'no_lang_code', 1, 'https://ror.org/05k2k4e76 Alpineon (Slovenia)'), (39662, 'https://ror.org/05k2whz35', 'en', 1, 'https://ror.org/05k2whz35 Inspectorate of the Republic of Slovenia for the Environment and Spatial Planning'), (39663, 'https://ror.org/05k4hm954', 'no_lang_code', 1, 'https://ror.org/05k4hm954 Alstom (Poland)'), (39664, 'https://ror.org/05k51jh55', 'no_lang_code', 1, 'https://ror.org/05k51jh55 Rosomak (Poland)'), (39665, 'https://ror.org/05k5dwn49', 'en', 1, 'https://ror.org/05k5dwn49 Second Affiliated Hospital of Luohe Medical College'), (39666, 'https://ror.org/05k5sr007', 'no_lang_code', 1, 'https://ror.org/05k5sr007 Redpill Linpro (Norway)'), (39667, 'https://ror.org/05k5t2r42', 'de', 1, 'https://ror.org/05k5t2r42 Katholisches Klinikum Bochum'), (39668, 'https://ror.org/05k705z76', 'fr', 1, 'https://ror.org/05k705z76 Institut de Recherche sur les Lois Fondamentales de l''Univers'), (39669, 'https://ror.org/05k7dys50', 'no_lang_code', 1, 'https://ror.org/05k7dys50 Oyatel (Norway)'), (39670, 'https://ror.org/05k8zya46', 'no', 1, 'https://ror.org/05k8zya46 Norges Fiskarlag'), (39671, 'https://ror.org/05ka2ew29', 'no', 1, 'https://ror.org/05ka2ew29 Helse Møre og Romsdal HF'), (39672, 'https://ror.org/05kbjcm35', 'no_lang_code', 1, 'https://ror.org/05kbjcm35 FCA (Poland)'), (39673, 'https://ror.org/05kbnvp43', 'no_lang_code', 1, 'https://ror.org/05kbnvp43 Varier (Norway)'), (39674, 'https://ror.org/05kbqck04', 'pt', 1, 'https://ror.org/05kbqck04 Associação Aeroespacial Brasileira'), (39675, 'https://ror.org/05kbqy564', 'no_lang_code', 1, 'https://ror.org/05kbqy564 Ooyo Seibutsu (Japan)'), (39676, 'https://ror.org/05kcrhm92', 'no_lang_code', 1, 'https://ror.org/05kcrhm92 Climate Risk Analysis (Germany)'), (39677, 'https://ror.org/05kd02296', 'no_lang_code', 1, 'https://ror.org/05kd02296 DigiDoc Technologies (Norway)'), (39678, 'https://ror.org/05kds6518', 'en', 1, 'https://ror.org/05kds6518 Indwe Hospital'), (39679, 'https://ror.org/05kdxv376', 'no_lang_code', 1, 'https://ror.org/05kdxv376 Nordic Seal (Norway)'), (39680, 'https://ror.org/05kff3e67', 'pl', 1, 'https://ror.org/05kff3e67 Central Mine Rescue Station Centralna Stacja Ratownictwa Górniczego'), (39681, 'https://ror.org/05kmd3412', 'no_lang_code', 1, 'https://ror.org/05kmd3412 ERICo (Slovenia)'), (39682, 'https://ror.org/05kprpt37', 'no_lang_code', 1, 'https://ror.org/05kprpt37 Pelagic Power (Norway)'), (39683, 'https://ror.org/05kqg2j33', 'fr', 1, 'https://ror.org/05kqg2j33 Collège Montmorency'), (39684, 'https://ror.org/05kqjh845', 'en', 1, 'https://ror.org/05kqjh845 Smt. Kashibai Navale Medical College and General hospital'), (39685, 'https://ror.org/05kr66310', 'no_lang_code', 1, 'https://ror.org/05kr66310 ArcusGruppen (Norway)'), (39686, 'https://ror.org/05ksgvc87', 'no_lang_code', 1, 'https://ror.org/05ksgvc87 Reichhold (Norway)'), (39687, 'https://ror.org/05ktm1f40', 'en', 1, 'https://ror.org/05ktm1f40 Shalem College'), (39688, 'https://ror.org/05kv62m20', 'no_lang_code', 1, 'https://ror.org/05kv62m20 Memscap (Norway)'), (39689, 'https://ror.org/05kwk4552', 'en', 1, 'https://ror.org/05kwk4552 American School of Classical Studies at Athens Αμερικανική Σχολή Κλασικών Σπουδών στην Αθήνα'), (39690, 'https://ror.org/05kwrc623', 'no_lang_code', 1, 'https://ror.org/05kwrc623 CBPak (Brazil)'), (39691, 'https://ror.org/05kwv6m71', 'no_lang_code', 1, 'https://ror.org/05kwv6m71 Macgregor Pusnes (Norway)'), (39692, 'https://ror.org/05kx58550', 'en', 1, 'https://ror.org/05kx58550 College of Islamic and Arabic Studies كلية الدراسات الإسلامية والعربية'), (39693, 'https://ror.org/05kxjz795', 'no_lang_code', 1, 'https://ror.org/05kxjz795 H. J. Kyvik (Norway)'), (39694, 'https://ror.org/05m1b0q08', 'no_lang_code', 1, 'https://ror.org/05m1b0q08 Sistemska Tehnika (Slovenia)'), (39695, 'https://ror.org/05m1rmx38', 'no_lang_code', 1, 'https://ror.org/05m1rmx38 Terra Azul - Tecnologia de Polímeros Naturais (Brazil)'), (39696, 'https://ror.org/05m5pvn27', 'en', 1, 'https://ror.org/05m5pvn27 Mthatha General Hospital'), (39697, 'https://ror.org/05m6a9a03', 'en', 1, 'https://ror.org/05m6a9a03 The Outer Banks Hospital'), (39698, 'https://ror.org/05m9np560', 'en', 1, 'https://ror.org/05m9np560 Al Yarmouk University College كلية اليرموك الجامعة'), (39699, 'https://ror.org/05ma9je87', 'no_lang_code', 1, 'https://ror.org/05ma9je87 Jaeder (Norway)'), (39700, 'https://ror.org/05mbvyj38', 'no_lang_code', 1, 'https://ror.org/05mbvyj38 Media Lunde Tollefsen (Norway)'), (39701, 'https://ror.org/05mcw8n93', 'en', 1, 'https://ror.org/05mcw8n93 Hedmark County Council'), (39702, 'https://ror.org/05mfqj750', 'no_lang_code', 1, 'https://ror.org/05mfqj750 Weifang Chinese Medicine Hospital'), (39703, 'https://ror.org/05mfr7w08', 'en', 1, 'https://ror.org/05mfr7w08 Third People''s Hospital of Hefei'), (39704, 'https://ror.org/05mg1ma72', 'en', 1, 'https://ror.org/05mg1ma72 Seafield Hospital'), (39705, 'https://ror.org/05mgsm482', 'en', 1, 'https://ror.org/05mgsm482 Howard County General Hospital'), (39706, 'https://ror.org/05mkdrw83', 'no_lang_code', 1, 'https://ror.org/05mkdrw83 Flyever (Brazil)'), (39707, 'https://ror.org/05mkwhv74', 'en', 1, 'https://ror.org/05mkwhv74 Collège militaire royal de Saint-Jean Royal Military College Saint-Jean'), (39708, 'https://ror.org/05mn5p987', 'no_lang_code', 1, 'https://ror.org/05mn5p987 Em.tronic Elektromehanski Sistemi (Slovenia)'), (39709, 'https://ror.org/05mncca07', 'en', 1, 'https://ror.org/05mncca07 City and Islington College'), (39710, 'https://ror.org/05mpa6118', 'en', 1, 'https://ror.org/05mpa6118 Mannar Hospital'), (39711, 'https://ror.org/05mpkhc90', 'de', 1, 'https://ror.org/05mpkhc90 LVR-Industriemuseum'), (39712, 'https://ror.org/05ms76x97', 'en', 1, 'https://ror.org/05ms76x97 Brazilian Society of Protozoology Sociedade Brasileira de Protozoologia'), (39713, 'https://ror.org/05mvkx311', 'no_lang_code', 1, 'https://ror.org/05mvkx311 Cortical Dynamics (Australia)'), (39714, 'https://ror.org/05mw8qs29', 'no_lang_code', 1, 'https://ror.org/05mw8qs29 Hedmark IKT (Norway)'), (39715, 'https://ror.org/05mwhq004', 'es', 1, 'https://ror.org/05mwhq004 Hospital de Jesús Nazareno'), (39716, 'https://ror.org/05mwx1x85', 'no_lang_code', 1, 'https://ror.org/05mwx1x85 PXO (Norway)'), (39717, 'https://ror.org/05mxqzt83', 'no_lang_code', 1, 'https://ror.org/05mxqzt83 Acoustics (Norway)'), (39718, 'https://ror.org/05myyzn85', 'en', 1, 'https://ror.org/05myyzn85 Shanghai First Maternity and Infant Hospital'), (39719, 'https://ror.org/05n0dev02', 'en', 1, 'https://ror.org/05n0dev02 Mbale Hospital'), (39720, 'https://ror.org/05n0n3328', 'no_lang_code', 1, 'https://ror.org/05n0n3328 Orbisat (Brazil)'), (39721, 'https://ror.org/05n2jy464', 'en', 1, 'https://ror.org/05n2jy464 Surgimed Hospital سرجیمیڈ ہسپتال لاہور'), (39722, 'https://ror.org/05n3y0v15', 'no_lang_code', 1, 'https://ror.org/05n3y0v15 Inter Metal (Poland)'), (39723, 'https://ror.org/05n3z7m75', 'no_lang_code', 1, 'https://ror.org/05n3z7m75 Radwag Balances and Scales (Poland)'), (39724, 'https://ror.org/05n4pcy10', 'pl', 1, 'https://ror.org/05n4pcy10 Polskie Stowarzyszenie Korozyjne'), (39725, 'https://ror.org/05n6cs483', 'no_lang_code', 1, 'https://ror.org/05n6cs483 XCOR Aerospace (United States)'), (39726, 'https://ror.org/05n714746', 'en', 1, 'https://ror.org/05n714746 Burgersdorp Provincial Hospital'), (39727, 'https://ror.org/05n877995', 'no_lang_code', 1, 'https://ror.org/05n877995 Proceda (Norway)'), (39728, 'https://ror.org/05n878z30', 'no_lang_code', 1, 'https://ror.org/05n878z30 DFG Consulting (Slovenia)'), (39729, 'https://ror.org/05n8hjk08', 'no_lang_code', 1, 'https://ror.org/05n8hjk08 Friskgården (Norway)'), (39730, 'https://ror.org/05n9fqb27', 'en', 1, 'https://ror.org/05n9fqb27 Community College of Denver'), (39731, 'https://ror.org/05nac3h44', 'pl', 1, 'https://ror.org/05nac3h44 Centrum Badań i Dozoru Górnictwa Podziemnego'), (39732, 'https://ror.org/05ndg7m38', 'no_lang_code', 1, 'https://ror.org/05ndg7m38 Piacentini (Brazil)'), (39733, 'https://ror.org/05ndmfc04', 'en', 1, 'https://ror.org/05ndmfc04 Surrey Memorial Hospital'), (39734, 'https://ror.org/05ne0nx52', 'en', 1, 'https://ror.org/05ne0nx52 Feather River Hospital'), (39735, 'https://ror.org/05ne28y03', 'no_lang_code', 1, 'https://ror.org/05ne28y03 Polon (Poland)'), (39736, 'https://ror.org/05newpx76', 'en', 1, 'https://ror.org/05newpx76 Wagga Wagga Base Hospital'), (39737, 'https://ror.org/05nezzp08', 'pl', 1, 'https://ror.org/05nezzp08 Polskie Forum Osób Niepełnosprawnych'), (39738, 'https://ror.org/05ng62226', 'no_lang_code', 1, 'https://ror.org/05ng62226 Kitemill (Norway)'), (39739, 'https://ror.org/05njqnk64', 'no', 1, 'https://ror.org/05njqnk64 Forbrukerrådet'), (39740, 'https://ror.org/05nkrhe64', 'no_lang_code', 1, 'https://ror.org/05nkrhe64 Targovax (Norway)'), (39741, 'https://ror.org/05nn38891', 'en', 1, 'https://ror.org/05nn38891 Prussian Palaces and Gardens Foundation Berlin Brandenburg Stiftung Preußische Schlösser und Gärten Berlin-Brandenburg'), (39742, 'https://ror.org/05nrp6689', 'pt', 1, 'https://ror.org/05nrp6689 Secretaria de Desenvolvimento Econômico e Turístico'), (39743, 'https://ror.org/05nvjkk97', 'no_lang_code', 1, 'https://ror.org/05nvjkk97 Aquastructures (Norway)'), (39744, 'https://ror.org/05nwjp114', 'en', 1, 'https://ror.org/05nwjp114 Office of Polar Programs'), (39745, 'https://ror.org/05p0byv33', 'no_lang_code', 1, 'https://ror.org/05p0byv33 Sonowand (Norway)'), (39746, 'https://ror.org/05p0hpp38', 'en', 1, 'https://ror.org/05p0hpp38 Society for Arts and Technology Société des Arts Technologiques'), (39747, 'https://ror.org/05p1qcv65', 'no_lang_code', 1, 'https://ror.org/05p1qcv65 Ervik & Sævik (Norway)'), (39748, 'https://ror.org/05p3gy533', 'no_lang_code', 1, 'https://ror.org/05p3gy533 Chem4u (Brazil)'), (39749, 'https://ror.org/05p4cdm91', 'no_lang_code', 1, 'https://ror.org/05p4cdm91 Banadir Hospital'), (39750, 'https://ror.org/05p50vw42', 'no_lang_code', 1, 'https://ror.org/05p50vw42 Viva Biotech (China)'), (39751, 'https://ror.org/05p9n5k62', 'en', 1, 'https://ror.org/05p9n5k62 Adaptive Sports Northwest'), (39752, 'https://ror.org/05pb5hm55', 'en', 1, 'https://ror.org/05pb5hm55 Wuxi People''s Hospital'), (39753, 'https://ror.org/05pbhjp46', 'no_lang_code', 1, 'https://ror.org/05pbhjp46 Alere (Norway)'), (39754, 'https://ror.org/05pc4mf95', 'en', 1, 'https://ror.org/05pc4mf95 Kuala Lumpur Metropolitan University College'), (39755, 'https://ror.org/05pcgcp62', 'pt', 1, 'https://ror.org/05pcgcp62 Associação de Pais e Amigos dos Excepcionais de São Paulo'), (39756, 'https://ror.org/05pd21s36', 'no_lang_code', 1, 'https://ror.org/05pd21s36 Somoso General Hospital'), (39757, 'https://ror.org/05pd2z238', 'en', 1, 'https://ror.org/05pd2z238 Jaffna Teaching Hospital යාපනය ශික්ෂණ රෝහල'), (39758, 'https://ror.org/05pgvrp60', 'no_lang_code', 1, 'https://ror.org/05pgvrp60 Hrafn (Norway)'), (39759, 'https://ror.org/05phqqn85', 'no_lang_code', 1, 'https://ror.org/05phqqn85 Oncolytics Biotech (Canada)'), (39760, 'https://ror.org/05pjatf35', 'no_lang_code', 1, 'https://ror.org/05pjatf35 Rauma Group (Norway)'), (39761, 'https://ror.org/05pnhe163', 'no_lang_code', 1, 'https://ror.org/05pnhe163 Biocontrol (Brazil)'), (39762, 'https://ror.org/05pnk8r52', 'no_lang_code', 1, 'https://ror.org/05pnk8r52 Lushang (China)'), (39763, 'https://ror.org/05ppea990', 'no_lang_code', 1, 'https://ror.org/05ppea990 DSPGeo (Brazil)'), (39764, 'https://ror.org/05ppk5d39', 'no_lang_code', 1, 'https://ror.org/05ppk5d39 Gisplan (Brazil)'), (39765, 'https://ror.org/05pq15235', 'no_lang_code', 1, 'https://ror.org/05pq15235 HS News Systems (Norway)'), (39766, 'https://ror.org/05prt4y28', 'no_lang_code', 1, 'https://ror.org/05prt4y28 Genetic Analysis (Norway)'), (39767, 'https://ror.org/05ptzph62', 'en', 1, 'https://ror.org/05ptzph62 International University College of Turin'), (39768, 'https://ror.org/05pw47n55', 'en', 1, 'https://ror.org/05pw47n55 Vernon Jubilee Hospital'), (39769, 'https://ror.org/05pwyzq32', 'en', 1, 'https://ror.org/05pwyzq32 Samaritan Pacific Communities Hospital'), (39770, 'https://ror.org/05px4ev98', 'en', 1, 'https://ror.org/05px4ev98 Cottage Grove Community Medical Center'), (39771, 'https://ror.org/05pyye095', 'en', 1, 'https://ror.org/05pyye095 Hôpital général de kinshasa Kinshasa General Hospital'), (39772, 'https://ror.org/05pz81c75', 'no', 1, 'https://ror.org/05pz81c75 Hospital IT'), (39773, 'https://ror.org/05q054h21', 'no_lang_code', 1, 'https://ror.org/05q054h21 Syngenta (China)'), (39774, 'https://ror.org/05q388t62', 'no_lang_code', 1, 'https://ror.org/05q388t62 Duverden (Norway)'), (39775, 'https://ror.org/05q5jv102', 'no_lang_code', 1, 'https://ror.org/05q5jv102 Tecnocard (Brazil)'), (39776, 'https://ror.org/05q6w4p96', 'pt', 1, 'https://ror.org/05q6w4p96 Associação Sul-Americana de Automação'), (39777, 'https://ror.org/05q72ar94', 'no_lang_code', 1, 'https://ror.org/05q72ar94 Mwa Automação (Brazil)'), (39778, 'https://ror.org/05q7rp785', 'en', 1, 'https://ror.org/05q7rp785 Hobart Private Hospital'), (39779, 'https://ror.org/05q84jy08', 'no_lang_code', 1, 'https://ror.org/05q84jy08 IKT-Norge (Norway)'), (39780, 'https://ror.org/05q9vv606', 'no_lang_code', 1, 'https://ror.org/05q9vv606 Tech Chrom (Brazil)'), (39781, 'https://ror.org/05qf9ct67', 'no', 1, 'https://ror.org/05qf9ct67 Vågan kommune'), (39782, 'https://ror.org/05qfcgb18', 'no', 1, 'https://ror.org/05qfcgb18 Vardø kommune'), (39783, 'https://ror.org/05qgg4j70', 'no_lang_code', 1, 'https://ror.org/05qgg4j70 Polmlek (Poland)'), (39784, 'https://ror.org/05qhetb06', 'en', 1, 'https://ror.org/05qhetb06 Atascadero State Hospital'), (39785, 'https://ror.org/05qkeds59', 'en', 1, 'https://ror.org/05qkeds59 Milford Hospital'), (39786, 'https://ror.org/05qmjha96', 'fi', 1, 'https://ror.org/05qmjha96 Hengitysliitto'), (39787, 'https://ror.org/05qn8wt84', 'en', 1, 'https://ror.org/05qn8wt84 Pyhäjärvi Institute'), (39788, 'https://ror.org/05qp58s25', 'en', 1, 'https://ror.org/05qp58s25 Association of Christian Schools, Colleges and Universities'), (39789, 'https://ror.org/05qrcqk02', 'no_lang_code', 1, 'https://ror.org/05qrcqk02 Protector (Norway)'), (39790, 'https://ror.org/05qs3gc73', 'no_lang_code', 1, 'https://ror.org/05qs3gc73 Fram Flora (Norway)'), (39791, 'https://ror.org/05qsbt763', 'no_lang_code', 1, 'https://ror.org/05qsbt763 Iskratel (Slovenia)'), (39792, 'https://ror.org/05qtgz885', 'no_lang_code', 1, 'https://ror.org/05qtgz885 Norskog Consulting (Norway)'), (39793, 'https://ror.org/05qy3yc66', 'no_lang_code', 1, 'https://ror.org/05qy3yc66 Beijing Wantai Biological Pharmacy (China)'), (39794, 'https://ror.org/05qztqs34', 'pl', 1, 'https://ror.org/05qztqs34 Instytut Przemysłu Skórzanego'), (39795, 'https://ror.org/05r1rzk07', 'no_lang_code', 1, 'https://ror.org/05r1rzk07 Norsk Wax (Norway)'), (39796, 'https://ror.org/05r1ynr77', 'en', 1, 'https://ror.org/05r1ynr77 Asociación de Universidades Jesuitas Association des universités et facultés jésuites Association of Jesuit Colleges and Universities'), (39797, 'https://ror.org/05r24hk86', 'pt', 1, 'https://ror.org/05r24hk86 Sociedade Brasileira de Psicologia Hospitalar (Brazil)'), (39798, 'https://ror.org/05r2sx051', 'en', 1, 'https://ror.org/05r2sx051 Kingsbridge Private Hospital Sligo'), (39799, 'https://ror.org/05r3pfn29', 'en', 1, 'https://ror.org/05r3pfn29 Morton Plant North Bay Hospital'), (39800, 'https://ror.org/05r45gk31', 'no', 1, 'https://ror.org/05r45gk31 Nome Kommune'), (39801, 'https://ror.org/05r5vfp03', 'en', 1, 'https://ror.org/05r5vfp03 Civil Service Hospital'), (39802, 'https://ror.org/05r7dwa03', 'en', 1, 'https://ror.org/05r7dwa03 Lanier Technical College'), (39803, 'https://ror.org/05r7nbf33', 'en', 1, 'https://ror.org/05r7nbf33 Skyline University College'), (39804, 'https://ror.org/05r8bzv42', 'en', 1, 'https://ror.org/05r8bzv42 Christian Service University College'), (39805, 'https://ror.org/05r9em747', 'no_lang_code', 1, 'https://ror.org/05r9em747 Adespec (Brazil)'), (39806, 'https://ror.org/05razqx97', 'pl', 1, 'https://ror.org/05razqx97 Zakład Doskonalenia Zawodowego w Krakowie'), (39807, 'https://ror.org/05rbhea42', 'no_lang_code', 1, 'https://ror.org/05rbhea42 Centre for Advanced Study'), (39808, 'https://ror.org/05rcdf096', 'no_lang_code', 1, 'https://ror.org/05rcdf096 Andre Abrasive Articles (Poland)'), (39809, 'https://ror.org/05rdrh795', 'no_lang_code', 1, 'https://ror.org/05rdrh795 CBS Inštitut (Slovenia)'), (39810, 'https://ror.org/05rdy5005', 'en', 1, 'https://ror.org/05rdy5005 Institute of Systematics and Evolution of Animals Instytut Systematyki i Ewolucji Zwierząt PAN'), (39811, 'https://ror.org/05rfkzk21', 'pt', 1, 'https://ror.org/05rfkzk21 Colégio Brasileiro de Cirurgiões'), (39812, 'https://ror.org/05rgpb984', 'no_lang_code', 1, 'https://ror.org/05rgpb984 Information and Mathematical Science and Bioinformatics (Japan)'), (39813, 'https://ror.org/05rjfvd69', 'no_lang_code', 1, 'https://ror.org/05rjfvd69 Umlamli Hospital'), (39814, 'https://ror.org/05rkb4k51', 'no_lang_code', 1, 'https://ror.org/05rkb4k51 Molde Kunnskapspark (Norway)'), (39815, 'https://ror.org/05rm0bg60', 'no_lang_code', 1, 'https://ror.org/05rm0bg60 Thelma Biotel (Norway)'), (39816, 'https://ror.org/05rmqc942', 'no_lang_code', 1, 'https://ror.org/05rmqc942 Ipsos (Brazil)'), (39817, 'https://ror.org/05rmtav82', 'no_lang_code', 1, 'https://ror.org/05rmtav82 Silicon Labs (Norway)'), (39818, 'https://ror.org/05rpeka60', 'no_lang_code', 1, 'https://ror.org/05rpeka60 NorLense (Norway)'), (39819, 'https://ror.org/05rs9jm31', 'en', 1, 'https://ror.org/05rs9jm31 Associação Brasileira de Filosofia e História da Biologia Brazilian Association of Philosophy and History of Biology'), (39820, 'https://ror.org/05rxd1q58', 'fr', 1, 'https://ror.org/05rxd1q58 Cégep de l''Outaouais'), (39821, 'https://ror.org/05rzahq86', 'no_lang_code', 1, 'https://ror.org/05rzahq86 WindSim (Norway)'), (39822, 'https://ror.org/05rzcwg85', 'en', 1, 'https://ror.org/05rzcwg85 Peking University Sixth Hospital'), (39823, 'https://ror.org/05s030550', 'no_lang_code', 1, 'https://ror.org/05s030550 Ablynx (Belgium)'), (39824, 'https://ror.org/05s3m5a67', 'no_lang_code', 1, 'https://ror.org/05s3m5a67 Max Manus (Norway)'), (39825, 'https://ror.org/05s3rgw55', 'en', 1, 'https://ror.org/05s3rgw55 Military Institute of Armament Technology'), (39826, 'https://ror.org/05s429h13', 'no_lang_code', 1, 'https://ror.org/05s429h13 Corticalis (Norway)'), (39827, 'https://ror.org/05s6ykc72', 'en', 1, 'https://ror.org/05s6ykc72 Nkqubela Chest Hospital'), (39828, 'https://ror.org/05s76vp15', 'en', 1, 'https://ror.org/05s76vp15 Garden City University College'), (39829, 'https://ror.org/05s8x0p02', 'no_lang_code', 1, 'https://ror.org/05s8x0p02 Iskra Pio (Slovenia)'), (39830, 'https://ror.org/05sa5v987', 'no', 1, 'https://ror.org/05sa5v987 Lenvik kommune'), (39831, 'https://ror.org/05sbaym77', 'no_lang_code', 1, 'https://ror.org/05sbaym77 Boa Offshore (Norway)'), (39832, 'https://ror.org/05scp2b29', 'no_lang_code', 1, 'https://ror.org/05scp2b29 Ziva (United States)'), (39833, 'https://ror.org/05scy2r52', 'no_lang_code', 1, 'https://ror.org/05scy2r52 SHS Engenharia Sustentável'), (39834, 'https://ror.org/05sdds724', 'no_lang_code', 1, 'https://ror.org/05sdds724 Hafenstrom (Norway)'), (39835, 'https://ror.org/05sdxzt97', 'no_lang_code', 1, 'https://ror.org/05sdxzt97 Robotics Inventions (Poland)'), (39836, 'https://ror.org/05se4r489', 'no_lang_code', 1, 'https://ror.org/05se4r489 Transdata (Brazil)'), (39837, 'https://ror.org/05ses6v92', 'en', 1, 'https://ror.org/05ses6v92 First People''s Hospital of Jingzhou'), (39838, 'https://ror.org/05sf2j279', 'no_lang_code', 1, 'https://ror.org/05sf2j279 Proteimax (Brazil)'), (39839, 'https://ror.org/05sgk7672', 'en', 1, 'https://ror.org/05sgk7672 Prirodoslovni muzej Slovenije Slovenian Museum of Natural History'), (39840, 'https://ror.org/05sjm5616', 'no_lang_code', 1, 'https://ror.org/05sjm5616 Dnapta Biotecnologia (Brazil)'), (39841, 'https://ror.org/05sjrmw93', 'no_lang_code', 1, 'https://ror.org/05sjrmw93 Kebony (Norway)'), (39842, 'https://ror.org/05sk1gv89', 'no_lang_code', 1, 'https://ror.org/05sk1gv89 Trimo (Slovenia)'), (39843, 'https://ror.org/05sm49m59', 'no_lang_code', 1, 'https://ror.org/05sm49m59 AgroNova (Norway)'), (39844, 'https://ror.org/05sp73k66', 'no_lang_code', 1, 'https://ror.org/05sp73k66 Geno (Norway)'), (39845, 'https://ror.org/05sqrfr79', 'en', 1, 'https://ror.org/05sqrfr79 Central Institute for Art History Zentralinstitut für Kunstgeschichte'), (39846, 'https://ror.org/05sqvht74', 'en', 1, 'https://ror.org/05sqvht74 Midlothian Community Hospital'), (39847, 'https://ror.org/05sryxz27', 'no', 1, 'https://ror.org/05sryxz27 Norsk Forening for Bildebehandling og Mønstergjenkjenning'), (39848, 'https://ror.org/05ssg5j36', 'de', 1, 'https://ror.org/05ssg5j36 Albertus-Magnus-Institut'), (39849, 'https://ror.org/05sv58043', 'en', 1, 'https://ror.org/05sv58043 University College Absalon'), (39850, 'https://ror.org/05svjc560', 'en', 1, 'https://ror.org/05svjc560 Data Link Institute of Business and Technology'), (39851, 'https://ror.org/05sxctv21', 'no_lang_code', 1, 'https://ror.org/05sxctv21 Mills (Norway)'), (39852, 'https://ror.org/05sy23e62', 'en', 1, 'https://ror.org/05sy23e62 Columbia Gorge Community College'), (39853, 'https://ror.org/05t1nkw30', 'no_lang_code', 1, 'https://ror.org/05t1nkw30 Xiamen Tobacco Industry (China)'), (39854, 'https://ror.org/05t534806', 'en', 1, 'https://ror.org/05t534806 Dr. Jose N. Rodriguez Memorial Hospital'), (39855, 'https://ror.org/05t55rs39', 'no_lang_code', 1, 'https://ror.org/05t55rs39 Piscada (Norway)'), (39856, 'https://ror.org/05t55vt39', 'no_lang_code', 1, 'https://ror.org/05t55vt39 Sarsia (Norway)'), (39857, 'https://ror.org/05t5dnk19', 'no', 1, 'https://ror.org/05t5dnk19 Forskerfabrikken'), (39858, 'https://ror.org/05t6h5824', 'hu', 1, 'https://ror.org/05t6h5824 Szent Imre Egyetemi Oktatókórház'), (39859, 'https://ror.org/05t76y454', 'no', 1, 'https://ror.org/05t76y454 Statped'), (39860, 'https://ror.org/05t8h2f11', 'no_lang_code', 1, 'https://ror.org/05t8h2f11 ZONA Technology (United States)'), (39861, 'https://ror.org/05t8tj069', 'en', 1, 'https://ror.org/05t8tj069 Glen O''Dee Hospital'), (39862, 'https://ror.org/05t9fq164', 'en', 1, 'https://ror.org/05t9fq164 Calvert Memorial Hospital'), (39863, 'https://ror.org/05tacv029', 'no_lang_code', 1, 'https://ror.org/05tacv029 BerGenBio (Norway)'), (39864, 'https://ror.org/05tbw7g42', 'no_lang_code', 1, 'https://ror.org/05tbw7g42 Karde (Norway)'), (39865, 'https://ror.org/05te2ab69', 'en', 1, 'https://ror.org/05te2ab69 Citizens Network Watchdog'), (39866, 'https://ror.org/05tfq8535', 'en', 1, 'https://ror.org/05tfq8535 Phoenix College'), (39867, 'https://ror.org/05tg3h152', 'no_lang_code', 1, 'https://ror.org/05tg3h152 Research Management Systems (United States)'), (39868, 'https://ror.org/05tg8p317', 'en', 1, 'https://ror.org/05tg8p317 Rockyview General Hospital'), (39869, 'https://ror.org/05tgt0w11', 'no_lang_code', 1, 'https://ror.org/05tgt0w11 Cova (Norway)'), (39870, 'https://ror.org/05tj2eg80', 'no_lang_code', 1, 'https://ror.org/05tj2eg80 GCI Science & Technology (China)'), (39871, 'https://ror.org/05tk8yc63', 'no_lang_code', 1, 'https://ror.org/05tk8yc63 Geodados (Brazil)'), (39872, 'https://ror.org/05tn97j65', 'en', 1, 'https://ror.org/05tn97j65 Folsom Lake College'), (39873, 'https://ror.org/05tn9zh92', 'en', 1, 'https://ror.org/05tn9zh92 Gavilan College'), (39874, 'https://ror.org/05tnf6s41', 'no_lang_code', 1, 'https://ror.org/05tnf6s41 Wave Propulsion (Norway)'), (39875, 'https://ror.org/05tq83t16', 'no_lang_code', 1, 'https://ror.org/05tq83t16 Ziebel (Norway)'), (39876, 'https://ror.org/05tqjf426', 'en', 1, 'https://ror.org/05tqjf426 Inspiria Science Center'), (39877, 'https://ror.org/05trysh47', 'no_lang_code', 1, 'https://ror.org/05trysh47 Cerpus (Norway)'), (39878, 'https://ror.org/05tv5ra11', 'en', 1, 'https://ror.org/05tv5ra11 Sixth Affiliated Hospital of Kunming Medical University'), (39879, 'https://ror.org/05tvfb833', 'en', 1, 'https://ror.org/05tvfb833 Institut für Luft- und Kältetechnik Institute of Air Handling and Refrigeration'), (39880, 'https://ror.org/05ty6nt57', 'en', 1, 'https://ror.org/05ty6nt57 Jaypee Hospital'), (39881, 'https://ror.org/05tyger85', 'en', 1, 'https://ror.org/05tyger85 Instituto de Estudos do Comércio e Negociações Internacionais lnstitute for lnternational Trade Negotiations'), (39882, 'https://ror.org/05v00rs76', 'en', 1, 'https://ror.org/05v00rs76 Flagler Hospital'), (39883, 'https://ror.org/05v1bgc28', 'no_lang_code', 1, 'https://ror.org/05v1bgc28 Treindustrien (Norway)'), (39884, 'https://ror.org/05v34hx56', 'no_lang_code', 1, 'https://ror.org/05v34hx56 Nano Carbon (Poland)'), (39885, 'https://ror.org/05v373q59', 'no_lang_code', 1, 'https://ror.org/05v373q59 Emisoft (Norway)'), (39886, 'https://ror.org/05v3yw889', 'no_lang_code', 1, 'https://ror.org/05v3yw889 Omega (Slovenia)'), (39887, 'https://ror.org/05v744n89', 'en', 1, 'https://ror.org/05v744n89 Grande Ronde Hospital'), (39888, 'https://ror.org/05v8cdx93', 'no_lang_code', 1, 'https://ror.org/05v8cdx93 Sencel Bioinformatics (Norway)'), (39889, 'https://ror.org/05vapw332', 'en', 1, 'https://ror.org/05vapw332 University clinical center of Republika Srpska'), (39890, 'https://ror.org/05vb46y86', 'no_lang_code', 1, 'https://ror.org/05vb46y86 MemfoACT (Norway)'), (39891, 'https://ror.org/05vbhz423', 'no_lang_code', 1, 'https://ror.org/05vbhz423 Mectro (Norway)'), (39892, 'https://ror.org/05vc01a67', 'en', 1, 'https://ror.org/05vc01a67 Daejeon Oriental Hospital'), (39893, 'https://ror.org/05vcxb550', 'en', 1, 'https://ror.org/05vcxb550 Affiliated Hospital of Shandong Academy of Medical Sciences'), (39894, 'https://ror.org/05vcxrs03', 'pt', 1, 'https://ror.org/05vcxrs03 Sociedade Brasileira de Microeletrônica'), (39895, 'https://ror.org/05ve4qs86', 'no_lang_code', 1, 'https://ror.org/05ve4qs86 Olav Thon (Norway)'), (39896, 'https://ror.org/05veaq644', 'no', 1, 'https://ror.org/05veaq644 Øvre Eiker Kommune'), (39897, 'https://ror.org/05ver4491', 'en', 1, 'https://ror.org/05ver4491 European Centre for Minority Issues Europäisches Zentrum für Minderheitenfragen'), (39898, 'https://ror.org/05vg3sa15', 'no_lang_code', 1, 'https://ror.org/05vg3sa15 Calysta (Norway)'), (39899, 'https://ror.org/05vgg2c14', 'en', 1, 'https://ror.org/05vgg2c14 West Middlesex University Hospital'), (39900, 'https://ror.org/05vheqh10', 'no_lang_code', 1, 'https://ror.org/05vheqh10 Genomic (Brazil)'), (39901, 'https://ror.org/05vhxx644', 'no_lang_code', 1, 'https://ror.org/05vhxx644 Athens Euroclinic'), (39902, 'https://ror.org/05vj1ve49', 'no_lang_code', 1, 'https://ror.org/05vj1ve49 Luxtec (Brazil)'), (39903, 'https://ror.org/05vjm3y03', 'en', 1, 'https://ror.org/05vjm3y03 Joshi Hospital जोशी रुग्णालय'), (39904, 'https://ror.org/05vn58r96', 'en', 1, 'https://ror.org/05vn58r96 San Antonio Regional Hospital'), (39905, 'https://ror.org/05vpztv21', 'no_lang_code', 1, 'https://ror.org/05vpztv21 Plantech (Brazil)'), (39906, 'https://ror.org/05vsjw141', 'en', 1, 'https://ror.org/05vsjw141 International Hospital Kampala'), (39907, 'https://ror.org/05vsk3m88', 'en', 1, 'https://ror.org/05vsk3m88 Kilinochchi General Hospital'), (39908, 'https://ror.org/05vtg7207', 'no_lang_code', 1, 'https://ror.org/05vtg7207 Geomatics (Norway)'), (39909, 'https://ror.org/05vwgdc91', 'no_lang_code', 1, 'https://ror.org/05vwgdc91 B2 (Slovenia)'), (39910, 'https://ror.org/05vwwq909', 'no_lang_code', 1, 'https://ror.org/05vwwq909 UniSoma (Brazil)'), (39911, 'https://ror.org/05vxqd987', 'no_lang_code', 1, 'https://ror.org/05vxqd987 Aquadyne (Norway)'), (39912, 'https://ror.org/05vyesa56', 'no_lang_code', 1, 'https://ror.org/05vyesa56 Kongsberg Automotive (Norway)'), (39913, 'https://ror.org/05w02xt27', 'no_lang_code', 1, 'https://ror.org/05w02xt27 Hypet Data (Norway)'), (39914, 'https://ror.org/05w0gx844', 'de', 1, 'https://ror.org/05w0gx844 Kinderklinik Regensburg'), (39915, 'https://ror.org/05w1kd396', 'no_lang_code', 1, 'https://ror.org/05w1kd396 Portahead (Norway)'), (39916, 'https://ror.org/05w1vwd46', 'no_lang_code', 1, 'https://ror.org/05w1vwd46 WarpIV Technologies (United States)'), (39917, 'https://ror.org/05w1xct55', 'no_lang_code', 1, 'https://ror.org/05w1xct55 Lilly (China)'), (39918, 'https://ror.org/05w2qpw18', 'no_lang_code', 1, 'https://ror.org/05w2qpw18 GridBridge (United States)'), (39919, 'https://ror.org/05w4sv861', 'en', 1, 'https://ror.org/05w4sv861 Jamestown Hospital'), (39920, 'https://ror.org/05w77r929', 'en', 1, 'https://ror.org/05w77r929 Blaenavon Hospital'), (39921, 'https://ror.org/05w7k9134', 'en', 1, 'https://ror.org/05w7k9134 Ajman Specialty General Hospital بیمارستان عمومی تخصصی عجمان'), (39922, 'https://ror.org/05w7tpg32', 'en', 1, 'https://ror.org/05w7tpg32 Castle Peak Hospital 青山醫院'), (39923, 'https://ror.org/05w9mt194', 'en', 1, 'https://ror.org/05w9mt194 Department for Employment and Learning'), (39924, 'https://ror.org/05wasnw28', 'en', 1, 'https://ror.org/05wasnw28 Meliksah University'), (39925, 'https://ror.org/05watjs66', 'en', 1, 'https://ror.org/05watjs66 Dr D Y Patil Dental College & Hospital'), (39926, 'https://ror.org/05wb29v16', 'en', 1, 'https://ror.org/05wb29v16 Kitojo Hospital'), (39927, 'https://ror.org/05wbvqf90', 'no_lang_code', 1, 'https://ror.org/05wbvqf90 OWC Power (Norway)'), (39928, 'https://ror.org/05wd9fr72', 'no_lang_code', 1, 'https://ror.org/05wd9fr72 Dalvic (Brazil)'), (39929, 'https://ror.org/05wdyx442', 'no_lang_code', 1, 'https://ror.org/05wdyx442 TransFrigor do Brasil (Brazil)'), (39930, 'https://ror.org/05wer6w03', 'en', 1, 'https://ror.org/05wer6w03 Sunrise Hospital & Medical Center'), (39931, 'https://ror.org/05wfz2361', 'en', 1, 'https://ror.org/05wfz2361 Kang-Ning Junior College of Medical Care and Management'), (39932, 'https://ror.org/05wgaw739', 'no_lang_code', 1, 'https://ror.org/05wgaw739 Ralston & Bau (Norway)'), (39933, 'https://ror.org/05wgkzg12', 'en', 1, 'https://ror.org/05wgkzg12 Division of Behavioral and Cognitive Sciences'), (39934, 'https://ror.org/05wgrpp48', 'no_lang_code', 1, 'https://ror.org/05wgrpp48 Infor (Norway)'), (39935, 'https://ror.org/05wh5fw51', 'no_lang_code', 1, 'https://ror.org/05wh5fw51 Mitsui Chemicals (Japan) 三井化学株式会社'), (39936, 'https://ror.org/05whhvm83', 'en', 1, 'https://ror.org/05whhvm83 International Consortium on Geo-disaster Reduction'), (39937, 'https://ror.org/05whram96', 'no_lang_code', 1, 'https://ror.org/05whram96 Svetovalna in Razvojna Dejavnost (Slovenia)'), (39938, 'https://ror.org/05wk1t126', 'en', 1, 'https://ror.org/05wk1t126 Oslo Port Authority'), (39939, 'https://ror.org/05wk2qf13', 'en', 1, 'https://ror.org/05wk2qf13 Institute of Metal Constructions'), (39940, 'https://ror.org/05wkdrh69', 'no_lang_code', 1, 'https://ror.org/05wkdrh69 Top in Life Biotecnologia & Genética Animal (Brazil)'), (39941, 'https://ror.org/05wm9y343', 'en', 1, 'https://ror.org/05wm9y343 Islamic University College'), (39942, 'https://ror.org/05wnbm742', 'no_lang_code', 1, 'https://ror.org/05wnbm742 Hallingplast (Norway)'), (39943, 'https://ror.org/05wnsp028', 'en', 1, 'https://ror.org/05wnsp028 Fort Beaufort Hospital'), (39944, 'https://ror.org/05wp4z583', 'no_lang_code', 1, 'https://ror.org/05wp4z583 New Amsterdam Public Hospital'), (39945, 'https://ror.org/05wqffg52', 'no_lang_code', 1, 'https://ror.org/05wqffg52 Gintel (Norway)'), (39946, 'https://ror.org/05wqyfz02', 'en', 1, 'https://ror.org/05wqyfz02 Marina Del Rey Hospital'), (39947, 'https://ror.org/05wrwe084', 'no_lang_code', 1, 'https://ror.org/05wrwe084 Nortura (Norway)'), (39948, 'https://ror.org/05wweqh04', 'en', 1, 'https://ror.org/05wweqh04 Emirates College for Advanced Education'), (39949, 'https://ror.org/05wx3dm75', 'de', 1, 'https://ror.org/05wx3dm75 Krankenhaus Köln-Holweide'), (39950, 'https://ror.org/05x1p4174', 'no_lang_code', 1, 'https://ror.org/05x1p4174 Expertise Engenharia (Brazil)'), (39951, 'https://ror.org/05x32yq84', 'no_lang_code', 1, 'https://ror.org/05x32yq84 Svorka (Norway)'), (39952, 'https://ror.org/05x3kq496', 'no_lang_code', 1, 'https://ror.org/05x3kq496 ArcticZymes (Norway)'), (39953, 'https://ror.org/05x3pnd66', 'en', 1, 'https://ror.org/05x3pnd66 City College Brighton & Hove, City College Brighton and Hove'), (39954, 'https://ror.org/05x596b40', 'en', 1, 'https://ror.org/05x596b40 Norfolk General Hospital'), (39955, 'https://ror.org/05x6w0w63', 'no_lang_code', 1, 'https://ror.org/05x6w0w63 PetroMarker (Norway)'), (39956, 'https://ror.org/05x75gh12', 'en', 1, 'https://ror.org/05x75gh12 Deutsches Literaturarchiv German Literature Archive'), (39957, 'https://ror.org/05xamdp54', 'fr', 1, 'https://ror.org/05xamdp54 Le Fresnoy - Studio National des Arts Contemporains'), (39958, 'https://ror.org/05xc75s20', 'no', 1, 'https://ror.org/05xc75s20 Regionrådet i Nord-Gudbrandsdal'), (39959, 'https://ror.org/05xceke97', 'en', 1, 'https://ror.org/05xceke97 Second People’s Hospital of Yibin'), (39960, 'https://ror.org/05xdv6s36', 'en', 1, 'https://ror.org/05xdv6s36 Association internationale de science politique International Political Science Association'), (39961, 'https://ror.org/05xe0se54', 'no_lang_code', 1, 'https://ror.org/05xe0se54 Furukawa Electric (Japan) 古河電気工業'), (39962, 'https://ror.org/05xe6ep17', 'no_lang_code', 1, 'https://ror.org/05xe6ep17 Satguru Partap Singh Hospital'), (39963, 'https://ror.org/05xe9nd50', 'no_lang_code', 1, 'https://ror.org/05xe9nd50 Scantrol (Norway)'), (39964, 'https://ror.org/05xeqkp81', 'no_lang_code', 1, 'https://ror.org/05xeqkp81 Tecnima (Brazil)'), (39965, 'https://ror.org/05xfapj25', 'no_lang_code', 1, 'https://ror.org/05xfapj25 Mjanyana Hospital'), (39966, 'https://ror.org/05xfhsc76', 'no', 1, 'https://ror.org/05xfhsc76 Halden Kommune'), (39967, 'https://ror.org/05xh9zn04', 'no_lang_code', 1, 'https://ror.org/05xh9zn04 Mullaitivu Hospital'), (39968, 'https://ror.org/05xjkag81', 'en', 1, 'https://ror.org/05xjkag81 Cyprus College'), (39969, 'https://ror.org/05xn6e267', 'en', 1, 'https://ror.org/05xn6e267 Norwegian Corporate Governance Board'), (39970, 'https://ror.org/05xng5k36', 'en', 1, 'https://ror.org/05xng5k36 Collège héritage Heritage College'), (39971, 'https://ror.org/05xnphh52', 'no_lang_code', 1, 'https://ror.org/05xnphh52 PV Prest Vácuo (Brazil)'), (39972, 'https://ror.org/05xrz9x70', 'no_lang_code', 1, 'https://ror.org/05xrz9x70 Ryfylke (Norway)'), (39973, 'https://ror.org/05xvhkb42', 'no_lang_code', 1, 'https://ror.org/05xvhkb42 TracID (Norway)'), (39974, 'https://ror.org/05xwpxc69', 'en', 1, 'https://ror.org/05xwpxc69 Jerusalem University College'), (39975, 'https://ror.org/05xxpnn88', 'en', 1, 'https://ror.org/05xxpnn88 College of Biblical Studies'), (39976, 'https://ror.org/05xyfkx86', 'no', 1, 'https://ror.org/05xyfkx86 Norsk Sau og Geit'), (39977, 'https://ror.org/05xyfmz81', 'en', 1, 'https://ror.org/05xyfmz81 Total Rehab'), (39978, 'https://ror.org/05y17bn08', 'en', 1, 'https://ror.org/05y17bn08 Grey Provincial Hospital'), (39979, 'https://ror.org/05y3c0716', 'en', 1, 'https://ror.org/05y3c0716 Harrogate and District NHS Foundation Trust'), (39980, 'https://ror.org/05y4f4n31', 'en', 1, 'https://ror.org/05y4f4n31 Wisconsin Association of Independent Colleges and Universities'), (39981, 'https://ror.org/05y7a3192', 'en', 1, 'https://ror.org/05y7a3192 Kirkland and District Hospital'), (39982, 'https://ror.org/05y867510', 'pt', 1, 'https://ror.org/05y867510 Associação Nacional de História'), (39983, 'https://ror.org/05y89d612', 'no_lang_code', 1, 'https://ror.org/05y89d612 Logtrac (Brazil)'), (39984, 'https://ror.org/05ya1hz84', 'no', 1, 'https://ror.org/05ya1hz84 Norsk Hestesenter Stiftelse'), (39985, 'https://ror.org/05yabwx33', 'de', 1, 'https://ror.org/05yabwx33 Kantonsspital Frauenfeld'), (39986, 'https://ror.org/05yaghb42', 'no_lang_code', 1, 'https://ror.org/05yaghb42 Dolphin Interconnect Solutions (Norway)'), (39987, 'https://ror.org/05yawxj29', 'no_lang_code', 1, 'https://ror.org/05yawxj29 Single-Phase Power (Norway)'), (39988, 'https://ror.org/05yaygt56', 'no_lang_code', 1, 'https://ror.org/05yaygt56 Spermatech (Norway)'), (39989, 'https://ror.org/05ycfv646', 'no_lang_code', 1, 'https://ror.org/05ycfv646 Multiconsult (Norway)'), (39990, 'https://ror.org/05ydkmr70', 'en', 1, 'https://ror.org/05ydkmr70 Patna Medical College and Hospital पटना मेडिकल कॉलेज अस्पताल'), (39991, 'https://ror.org/05yfnn994', 'no_lang_code', 1, 'https://ror.org/05yfnn994 Allinea Software (United Kingdom)'), (39992, 'https://ror.org/05yg3bs96', 'pt', 1, 'https://ror.org/05yg3bs96 Secretaria da Casa Civil'), (39993, 'https://ror.org/05yg59x49', 'no_lang_code', 1, 'https://ror.org/05yg59x49 Thrace Polybulk (Norway)'), (39994, 'https://ror.org/05ygpsf69', 'no_lang_code', 1, 'https://ror.org/05ygpsf69 Silcare (Poland)'), (39995, 'https://ror.org/05yhvta08', 'es', 1, 'https://ror.org/05yhvta08 Hospital Tobar García'), (39996, 'https://ror.org/05yjs1q31', 'no_lang_code', 1, 'https://ror.org/05yjs1q31 Gaidaros Forlag (Norway)'), (39997, 'https://ror.org/05ykbvr48', 'en', 1, 'https://ror.org/05ykbvr48 Humboldt District Hospital'), (39998, 'https://ror.org/05ym51d14', 'no_lang_code', 1, 'https://ror.org/05ym51d14 Selaz (Brazil)'), (39999, 'https://ror.org/05ynfxz71', 'no_lang_code', 1, 'https://ror.org/05ynfxz71 Nanophoton (Brazil)'), (40000, 'https://ror.org/05yptg266', 'en', 1, 'https://ror.org/05yptg266 Asnuntuck Community College'), (40001, 'https://ror.org/0001h5y29', 'en', 1, 'https://ror.org/0001h5y29 Beulah Heights University'), (40002, 'https://ror.org/0001ke483', 'en', 1, 'https://ror.org/0001ke483 St George''s Hospital'), (40003, 'https://ror.org/000367g23', 'it', 1, 'https://ror.org/000367g23 Accademia di Belle Arti di Carrara'), (40004, 'https://ror.org/00042h977', 'en', 1, 'https://ror.org/00042h977 Napa Valley College'), (40005, 'https://ror.org/0004nq427', 'en', 1, 'https://ror.org/0004nq427 Data Security Council of India'), (40006, 'https://ror.org/0006f9a08', 'en', 1, 'https://ror.org/0006f9a08 Centre for Science, Development and Media Studies'), (40007, 'https://ror.org/0007gah74', 'en', 1, 'https://ror.org/0007gah74 Drew Associates'), (40008, 'https://ror.org/0009ha653', 'en', 1, 'https://ror.org/0009ha653 Alliance for Clinical Trials in Oncology'), (40009, 'https://ror.org/000bbgp24', 'en', 1, 'https://ror.org/000bbgp24 Centre for Transportation Engineering and Planning'), (40010, 'https://ror.org/000bjk220', 'en', 1, 'https://ror.org/000bjk220 Państwowa Medyczna Wyższa Szkoła Zawodowa Public Higher Medical Professional School in Opole'), (40011, 'https://ror.org/000cnwx98', 'en', 1, 'https://ror.org/000cnwx98 Norco College'), (40012, 'https://ror.org/000cvk368', 'en', 1, 'https://ror.org/000cvk368 Ohio Valley Medical Center'), (40013, 'https://ror.org/000dp5151', 'no_lang_code', 1, 'https://ror.org/000dp5151 Anecova (Switzerland)'), (40014, 'https://ror.org/000feez16', 'en', 1, 'https://ror.org/000feez16 Social Policy Evaluation and Research Unit'), (40015, 'https://ror.org/000fpja48', 'en', 1, 'https://ror.org/000fpja48 Pedagocial University Tyrol pädagogische hochschule tirol'), (40016, 'https://ror.org/000gkvw58', 'en', 1, 'https://ror.org/000gkvw58 Steinbach Bible College'), (40017, 'https://ror.org/000gm1k91', 'no_lang_code', 1, 'https://ror.org/000gm1k91 John Wiley & Sons (Germany)'), (40018, 'https://ror.org/000hkd473', 'en', 1, 'https://ror.org/000hkd473 Dystrophie musculaire Canada Muscular Dystrophy Canada'), (40019, 'https://ror.org/000ht5b74', 'fr', 1, 'https://ror.org/000ht5b74 Fondation du Roi Abdul-Aziz Al Saoud'), (40020, 'https://ror.org/000jbwm32', 'no_lang_code', 1, 'https://ror.org/000jbwm32 National Sanatorium Ooshima Seishōen 国立療養所大島青松園'), (40021, 'https://ror.org/000rbze86', 'en', 1, 'https://ror.org/000rbze86 Asia Pacific Institute of Management'), (40022, 'https://ror.org/000s5ez74', 'en', 1, 'https://ror.org/000s5ez74 All Russian Scientific Research Institute of Aviation Materials Все России научно-исследовательский институт авиационных материалов'), (40023, 'https://ror.org/000s6jb73', 'no_lang_code', 1, 'https://ror.org/000s6jb73 PNC Financial Services (United States)'), (40024, 'https://ror.org/000t17x96', 'en', 1, 'https://ror.org/000t17x96 National Institute of Plant Health Management राष्ट्रीय वनस्पति स्वास्थ्य प्रबंधन संस्थान'), (40025, 'https://ror.org/000wamw23', 'no_lang_code', 1, 'https://ror.org/000wamw23 CohBar (United States)'), (40026, 'https://ror.org/000xh7t03', 'no_lang_code', 1, 'https://ror.org/000xh7t03 Lesieur Cristal'), (40027, 'https://ror.org/000yekt70', 'lv', 1, 'https://ror.org/000yekt70 Malnavas koledža'), (40028, 'https://ror.org/000z2fe63', 'en', 1, 'https://ror.org/000z2fe63 Grace Mission University'), (40029, 'https://ror.org/001154j50', 'en', 1, 'https://ror.org/001154j50 Państwowa Wyższa Szkoła Zawodowa im. prof. Stanisława Tarnowskiego w Tarnobrzegu State Higher Vocational School Memorial of Prof. Stanislaw Tarnowski in Tarnobrzeg'), (40030, 'https://ror.org/00120ce61', 'en', 1, 'https://ror.org/00120ce61 Society for Participatory Research in Asia'), (40031, 'https://ror.org/0012bxd45', 'it', 1, 'https://ror.org/0012bxd45 Conservatorio Giuseppe Nicolini'), (40032, 'https://ror.org/0012pft53', 'en', 1, 'https://ror.org/0012pft53 Faculté de droit thomas jefferson Thomas Jefferson School of Law'), (40033, 'https://ror.org/0013shd50', 'no_lang_code', 1, 'https://ror.org/0013shd50 Novartis (Germany)'), (40034, 'https://ror.org/0017kmw32', 'no_lang_code', 1, 'https://ror.org/0017kmw32 Centrais Elétricas Brasileiras S.A. Eletrobras (Brazil)'), (40035, 'https://ror.org/00182ep39', 'no_lang_code', 1, 'https://ror.org/00182ep39 Advanced Photon Sciences (United States)'), (40036, 'https://ror.org/001c3w852', 'en', 1, 'https://ror.org/001c3w852 Instituto Nacional de Ciência e Tecnologia de Toxicologia Aquática National Institute of Aquatic Toxicology'), (40037, 'https://ror.org/001cf8537', 'en', 1, 'https://ror.org/001cf8537 Baltimore County Public Schools'), (40038, 'https://ror.org/001d3rx39', 'no_lang_code', 1, 'https://ror.org/001d3rx39 Milliman (United States)'), (40039, 'https://ror.org/001edfm43', 'no_lang_code', 1, 'https://ror.org/001edfm43 Theravectys (France)'), (40040, 'https://ror.org/001gb1j79', 'en', 1, 'https://ror.org/001gb1j79 American Baptist College'), (40041, 'https://ror.org/001hjc616', 'en', 1, 'https://ror.org/001hjc616 Venerable English College'), (40042, 'https://ror.org/001r3g324', 'pt', 1, 'https://ror.org/001r3g324 Fundação Ariel Glaser Contra o SIDA Pediátrico'), (40043, 'https://ror.org/001sfpp23', 'en', 1, 'https://ror.org/001sfpp23 Relay Graduate School of Education'), (40044, 'https://ror.org/001snd369', 'no_lang_code', 1, 'https://ror.org/001snd369 Rosa (United States)'), (40045, 'https://ror.org/001t6pv65', 'en', 1, 'https://ror.org/001t6pv65 Grand Lodge of Western Australia'), (40046, 'https://ror.org/001tdwk28', 'en', 1, 'https://ror.org/001tdwk28 Gansu Academy of Agricultural Sciences 农业科学甘肃省科学院'), (40047, 'https://ror.org/001yxxw51', 'en', 1, 'https://ror.org/001yxxw51 M.A.G. Osmani Medical College, Sylhet, Sylhet MAG Osmani Medical College এম.এ.জি. ওসমানী মেডিকেল কলেজ'), (40048, 'https://ror.org/0022sh211', 'it', 1, 'https://ror.org/0022sh211 Conservatorio di Musica Giovambattista Pergolesi'), (40049, 'https://ror.org/0023cym93', 'en', 1, 'https://ror.org/0023cym93 Stefansson Arctic Institute Stofnun Vilhjálms Stefánssonar'), (40050, 'https://ror.org/0026drc14', 'en', 1, 'https://ror.org/0026drc14 Mendocino College'), (40051, 'https://ror.org/0026pwq79', 'fr', 1, 'https://ror.org/0026pwq79 Observatoire National des Droits de l''Enfant'), (40052, 'https://ror.org/0027wxf59', 'en', 1, 'https://ror.org/0027wxf59 Albert Ellis Institute'), (40053, 'https://ror.org/002827k23', 'en', 1, 'https://ror.org/002827k23 Frankfurt Zoological Society Zoologische Gesellschaft Frankfurt'), (40054, 'https://ror.org/00289h314', 'en', 1, 'https://ror.org/00289h314 American Egg Board'), (40055, 'https://ror.org/0028fee73', 'en', 1, 'https://ror.org/0028fee73 Butler County Community College'), (40056, 'https://ror.org/002a3ss66', 'pt', 1, 'https://ror.org/002a3ss66 Centro de Tecnologias Estratégicas do Nordeste'), (40057, 'https://ror.org/002an7w33', 'en', 1, 'https://ror.org/002an7w33 European Union of Medical Specialists Union Européenne des Médecins Spécialistes'), (40058, 'https://ror.org/002anhf82', 'en', 1, 'https://ror.org/002anhf82 Observatoire du Sahara et du Sahel Sahara and Sahel Observatory'), (40059, 'https://ror.org/002b21721', 'pl', 1, 'https://ror.org/002b21721 Państwowa Wyższa Szkoła Zawodowa w Ciechanowie'), (40060, 'https://ror.org/002c9wz60', 'en', 1, 'https://ror.org/002c9wz60 Centre for Ageing Research and Development in Ireland'), (40061, 'https://ror.org/002e14v94', 'en', 1, 'https://ror.org/002e14v94 Union Theological College'), (40062, 'https://ror.org/002e3sm06', 'en', 1, 'https://ror.org/002e3sm06 Academic Degrees & Graduate Education 学位与研究生教育杂志社'), (40063, 'https://ror.org/002em1b68', 'no_lang_code', 1, 'https://ror.org/002em1b68 Casappa (Italy)'), (40064, 'https://ror.org/002ew9g26', 'en', 1, 'https://ror.org/002ew9g26 Leonard Wood Institute'), (40065, 'https://ror.org/002kf8b88', 'en', 1, 'https://ror.org/002kf8b88 Paul D. Camp Community College'), (40066, 'https://ror.org/002kje223', 'no_lang_code', 1, 'https://ror.org/002kje223 iThemba Laboratory'), (40067, 'https://ror.org/002m0wj49', 'en', 1, 'https://ror.org/002m0wj49 Spartan College of Aeronautics and Technology'), (40068, 'https://ror.org/002qv2715', 'en', 1, 'https://ror.org/002qv2715 Statens jordbruksverk Swedish Board of Agriculture'), (40069, 'https://ror.org/002qvaf96', 'no_lang_code', 1, 'https://ror.org/002qvaf96 Gliacure (United States)'), (40070, 'https://ror.org/002rcdx19', 'en', 1, 'https://ror.org/002rcdx19 Institute and Faculty of Actuaries'), (40071, 'https://ror.org/002tzev63', 'en', 1, 'https://ror.org/002tzev63 IMDEA Energy Institute Instituto IMDEA Energía'), (40072, 'https://ror.org/002vdk888', 'it', 1, 'https://ror.org/002vdk888 Conservatorio di Musica Agostino Steffani'), (40073, 'https://ror.org/002wdx176', 'en', 1, 'https://ror.org/002wdx176 Practical Action'), (40074, 'https://ror.org/002y2c982', 'en', 1, 'https://ror.org/002y2c982 Centre d’Excellence de l’Ontario en Santé Mentale des Enfants et des Adolescents Ontario Centre of Excellence for Child and Youth Mental Health'), (40075, 'https://ror.org/003093432', 'en', 1, 'https://ror.org/003093432 International Centre for Reproductive Health'), (40076, 'https://ror.org/0030qkm60', 'en', 1, 'https://ror.org/0030qkm60 National Academy of Sciences 대한민국학술원'), (40077, 'https://ror.org/0030s7a45', 'no_lang_code', 1, 'https://ror.org/0030s7a45 Grape King (Taiwan) 葡萄王生技股份有限公司'), (40078, 'https://ror.org/0033hxy10', 'no_lang_code', 1, 'https://ror.org/0033hxy10 Vaisala (United States)'), (40079, 'https://ror.org/00343m182', 'no_lang_code', 1, 'https://ror.org/00343m182 Subway (United States)'), (40080, 'https://ror.org/00347qn56', 'no_lang_code', 1, 'https://ror.org/00347qn56 Geoterra Image (South Africa)'), (40081, 'https://ror.org/0035bbx08', 'en', 1, 'https://ror.org/0035bbx08 Wharton County Junior College'), (40082, 'https://ror.org/003709a13', 'en', 1, 'https://ror.org/003709a13 National Research Centre for Grapes भाकृअनुप-राष्ट्रीय अंगूर अनुसंधान केन्द्र'), (40083, 'https://ror.org/00382bg18', 'en', 1, 'https://ror.org/00382bg18 College of Applied Psychology Vysoká škola aplikované psychologie'), (40084, 'https://ror.org/00387ef87', 'no_lang_code', 1, 'https://ror.org/00387ef87 Motley Fool (United States)'), (40085, 'https://ror.org/0039tsz33', 'en', 1, 'https://ror.org/0039tsz33 Indian Institute of Management Kashipur भारतीय प्रबंध संस्थान काशीपुर'), (40086, 'https://ror.org/003ad2905', 'no_lang_code', 1, 'https://ror.org/003ad2905 Farm Africa Kenya'), (40087, 'https://ror.org/003chwa70', 'en', 1, 'https://ror.org/003chwa70 South and City College Birmingham'), (40088, 'https://ror.org/003cma469', 'sv', 1, 'https://ror.org/003cma469 Landstinget Sörmland, Södermanlands läns landsting'), (40089, 'https://ror.org/003cmjc53', 'en', 1, 'https://ror.org/003cmjc53 Nipawin Bible College'), (40090, 'https://ror.org/003cq3m13', 'pt', 1, 'https://ror.org/003cq3m13 Empresa de Pesquisa Agropecuária do Rio Grande do Norte'), (40091, 'https://ror.org/003k8c950', 'en', 1, 'https://ror.org/003k8c950 Norges Vitenskapsakademi for Polarforskning Norwegian Scientific Academy for Polar Research'), (40092, 'https://ror.org/003p9wg45', 'en', 1, 'https://ror.org/003p9wg45 Henry Smith Charity'), (40093, 'https://ror.org/003rgm223', 'no_lang_code', 1, 'https://ror.org/003rgm223 AB Science (France)'), (40094, 'https://ror.org/003s3dn82', 'en', 1, 'https://ror.org/003s3dn82 Shenkar College of Engineering and Design שנקר - הנדסה, עיצוב ואמנות'), (40095, 'https://ror.org/003sd7q02', 'en', 1, 'https://ror.org/003sd7q02 Tianjin Natural History Museum 天津自然博物馆始建于'), (40096, 'https://ror.org/003ssft94', 'no_lang_code', 1, 'https://ror.org/003ssft94 Seascape Learning (India)'), (40097, 'https://ror.org/003tb8s84', 'en', 1, 'https://ror.org/003tb8s84 Global ICT Standardization Forum for India'), (40098, 'https://ror.org/003te8934', 'no_lang_code', 1, 'https://ror.org/003te8934 Umvoto Africa'), (40099, 'https://ror.org/003vffc21', 'en', 1, 'https://ror.org/003vffc21 Arts Council of Wales Cyngor Celfyddydau Cymru'), (40100, 'https://ror.org/003wb2x77', 'en', 1, 'https://ror.org/003wb2x77 Northeast Lakeview College'); INSERT INTO `rors` VALUES (40101, 'https://ror.org/003xt6d81', 'de', 1, 'https://ror.org/003xt6d81 Fachhochschule für Verwaltung und Dienstleistung'), (40102, 'https://ror.org/0040bha74', 'en', 1, 'https://ror.org/0040bha74 Milltown Institute of Theology and Philosophy'), (40103, 'https://ror.org/0040q3862', 'en', 1, 'https://ror.org/0040q3862 Atlanta’s John Marshall Law School'), (40104, 'https://ror.org/00420et70', 'en', 1, 'https://ror.org/00420et70 Department for Child Protection and Family Support'), (40105, 'https://ror.org/004481c75', 'pl', 1, 'https://ror.org/004481c75 Academy of Hotel Management and Catering Industry Wyższa Szkoła Hotelarstwa i Gastronomii'), (40106, 'https://ror.org/004565978', 'en', 1, 'https://ror.org/004565978 European Society for Sexual Medicine'), (40107, 'https://ror.org/0045vmg65', 'no_lang_code', 1, 'https://ror.org/0045vmg65 Seiwa Gakuen College 聖和学園短期大学'), (40108, 'https://ror.org/00471x271', 'fr', 1, 'https://ror.org/00471x271 Haut-Commissariat aux Eaux et Forêts et à la Lutte Contre la Désertification'), (40109, 'https://ror.org/004914a33', 'en', 1, 'https://ror.org/004914a33 Federal Scientific Center for Animal Husbandry named after Academician L.K. Ernst Всероссийский НИИ животноводства имени Л. К. Эрнста'), (40110, 'https://ror.org/004a7w818', 'en', 1, 'https://ror.org/004a7w818 M. Tuttle & Associates'), (40111, 'https://ror.org/004adc024', 'en', 1, 'https://ror.org/004adc024 National Medical Stores'), (40112, 'https://ror.org/004axh929', 'en', 1, 'https://ror.org/004axh929 RMIT Vietnam Đại học RMIT Việt Nam'), (40113, 'https://ror.org/004dzkd51', 'en', 1, 'https://ror.org/004dzkd51 Frumkin Institute of Physical Chemistry and Electrochemistry Федеральное государственное бюджетное учреждение науки Институт физической химии и электрохимии им. А. Н. Фрумкина Российской академии наук'), (40114, 'https://ror.org/004fb1r50', 'en', 1, 'https://ror.org/004fb1r50 Indonesian Coral Reef Foundation Yayasan Terumbu Karang Indonesia'), (40115, 'https://ror.org/004fbmp75', 'no_lang_code', 1, 'https://ror.org/004fbmp75 Benbria (Canada)'), (40116, 'https://ror.org/004fggg55', 'en', 1, 'https://ror.org/004fggg55 Ministry of Agriculture, Animal Industry and Fisheries'), (40117, 'https://ror.org/004g7jm05', 'en', 1, 'https://ror.org/004g7jm05 Statistics Korea 통계청'), (40118, 'https://ror.org/004gnah66', 'en', 1, 'https://ror.org/004gnah66 Vilniaus Kolegija Vilnius University of Applied Sciences'), (40119, 'https://ror.org/004jn1895', 'en', 1, 'https://ror.org/004jn1895 Buckminster Fuller Institute'), (40120, 'https://ror.org/004kqsv83', 'en', 1, 'https://ror.org/004kqsv83 Government of Sikkim'), (40121, 'https://ror.org/004kvr873', 'en', 1, 'https://ror.org/004kvr873 Emerson School District'), (40122, 'https://ror.org/004ms0k06', 'en', 1, 'https://ror.org/004ms0k06 Northern Oklahoma College'), (40123, 'https://ror.org/004nr3476', 'no_lang_code', 1, 'https://ror.org/004nr3476 Amdocs (United States)'), (40124, 'https://ror.org/004pw1z78', 'en', 1, 'https://ror.org/004pw1z78 Africa Society for Blood Transfusion'), (40125, 'https://ror.org/004sqv102', 'en', 1, 'https://ror.org/004sqv102 Bromley College of Further and Higher Education'), (40126, 'https://ror.org/004vbe783', 'no_lang_code', 1, 'https://ror.org/004vbe783 Satellite Applications Catapult (United Kingdom)'), (40127, 'https://ror.org/004wta052', 'en', 1, 'https://ror.org/004wta052 British Council Egypt'), (40128, 'https://ror.org/004xgw192', 'en', 1, 'https://ror.org/004xgw192 Air Navigation and Weather Services'), (40129, 'https://ror.org/004y0w704', 'no_lang_code', 1, 'https://ror.org/004y0w704 AgriSense (United Kingdom)'), (40130, 'https://ror.org/0051tvf03', 'no_lang_code', 1, 'https://ror.org/0051tvf03 Nagra (France)'), (40131, 'https://ror.org/00520ey40', 'en', 1, 'https://ror.org/00520ey40 Institute of Numerical Mathematics Федеральное государственное бюджетное учреждение науки Институт вычислительной математики Российской академии наук'), (40132, 'https://ror.org/0052nmr57', 'en', 1, 'https://ror.org/0052nmr57 National Research Centre on Yak'), (40133, 'https://ror.org/0053vns10', 'en', 1, 'https://ror.org/0053vns10 An Comhairle Oidhreachta Heritage Council'), (40134, 'https://ror.org/0055szp73', 'fr', 1, 'https://ror.org/0055szp73 Centre d''Etude Regional pour l''Amelioration de l''Adaptation a la Secheresse'), (40135, 'https://ror.org/0056df569', 'pt', 1, 'https://ror.org/0056df569 Faculdade São Lucas'), (40136, 'https://ror.org/005cx3d93', 'pt', 1, 'https://ror.org/005cx3d93 Fundação João Pinheiro, João Pinheiro Foundation'), (40137, 'https://ror.org/005dydw47', 'no_lang_code', 1, 'https://ror.org/005dydw47 West Bengal Green Energy Development Corporation (India)'), (40138, 'https://ror.org/005epk420', 'en', 1, 'https://ror.org/005epk420 National Space Research and Development Agency'), (40139, 'https://ror.org/005gbx671', 'en', 1, 'https://ror.org/005gbx671 Institute of Philosophy Институт философии'), (40140, 'https://ror.org/005hdaw07', 'en', 1, 'https://ror.org/005hdaw07 Trinity Lutheran College'), (40141, 'https://ror.org/005he3989', 'en', 1, 'https://ror.org/005he3989 Trinity School for Ministry'), (40142, 'https://ror.org/005j5qx09', 'no_lang_code', 1, 'https://ror.org/005j5qx09 FKUZ Stavropol Rospotrebnadzor Anti Institute ФКУЗ Ставропольский противочумный институт Роспотребнадзора'), (40143, 'https://ror.org/005majy75', 'en', 1, 'https://ror.org/005majy75 Yuba College'), (40144, 'https://ror.org/005qgvp74', 'no_lang_code', 1, 'https://ror.org/005qgvp74 Alere (United Kingdom)'), (40145, 'https://ror.org/005s20452', 'en', 1, 'https://ror.org/005s20452 Paichai Chinese Primary School'), (40146, 'https://ror.org/005tx0y19', 'en', 1, 'https://ror.org/005tx0y19 Research Institute of Industrial Science and Technology'), (40147, 'https://ror.org/005v57z85', 'en', 1, 'https://ror.org/005v57z85 IC Design Education Center 반도체설계 교육센터'), (40148, 'https://ror.org/005vq2n07', 'en', 1, 'https://ror.org/005vq2n07 Shyam Shah Medical College'), (40149, 'https://ror.org/005wq4805', 'en', 1, 'https://ror.org/005wq4805 Fobang Foundation'), (40150, 'https://ror.org/005y87145', 'no_lang_code', 1, 'https://ror.org/005y87145 Vargön Alloys (Sweden)'), (40151, 'https://ror.org/005yz5976', 'en', 1, 'https://ror.org/005yz5976 Merced College'), (40152, 'https://ror.org/00600nd69', 'en', 1, 'https://ror.org/00600nd69 Regional Medical Research Centre'), (40153, 'https://ror.org/006023154', 'no_lang_code', 1, 'https://ror.org/006023154 Safeco Insurance'), (40154, 'https://ror.org/00606js28', 'no_lang_code', 1, 'https://ror.org/00606js28 Vocapia Research (France)'), (40155, 'https://ror.org/0060a9610', 'en', 1, 'https://ror.org/0060a9610 Canadian Nuclear Safety Commission Commission Canadienne de Sûreté Nucléaire'), (40156, 'https://ror.org/00615jn62', 'no_lang_code', 1, 'https://ror.org/00615jn62 Walgreens (United States)'), (40157, 'https://ror.org/0062gvn89', 'en', 1, 'https://ror.org/0062gvn89 Angliss International Hotel School'), (40158, 'https://ror.org/0064w0326', 'en', 1, 'https://ror.org/0064w0326 TCI College of Technology'), (40159, 'https://ror.org/0065zqt33', 'en', 1, 'https://ror.org/0065zqt33 National Cancer Center'), (40160, 'https://ror.org/0066jc902', 'en', 1, 'https://ror.org/0066jc902 Soil Conservation and Watershed Management Research پژوهشکده حفاظت خاک و آبخیزداری'), (40161, 'https://ror.org/00686bx53', 'en', 1, 'https://ror.org/00686bx53 PEN American Center'), (40162, 'https://ror.org/0068yvd12', 'en', 1, 'https://ror.org/0068yvd12 Center for Global Development'), (40163, 'https://ror.org/0069hee22', 'en', 1, 'https://ror.org/0069hee22 Kuyper College'), (40164, 'https://ror.org/006btmz82', 'en', 1, 'https://ror.org/006btmz82 Institute of Systematics and Ecology of Animals Федеральное государственное бюджетное учреждение науки Институт систематики и экологии животных Сибирского отделения Российской академии наук'), (40165, 'https://ror.org/006bwjz47', 'no_lang_code', 1, 'https://ror.org/006bwjz47 490 BioTech (United States)'), (40166, 'https://ror.org/006byrq44', 'en', 1, 'https://ror.org/006byrq44 Far Eastern Scientific Centre of Physiology and Pathology of Respiration Russian Academy of Medical Sciences Дальневосточный научный центр физиологии и патологии дыхания'), (40167, 'https://ror.org/006cgkx15', 'en', 1, 'https://ror.org/006cgkx15 Chinese Academy of Governance 国家行政学院'), (40168, 'https://ror.org/006cprg57', 'en', 1, 'https://ror.org/006cprg57 Central Board of Irrgation and Power'), (40169, 'https://ror.org/006ewqz20', 'no_lang_code', 1, 'https://ror.org/006ewqz20 PNO Consultants (Italy)'), (40170, 'https://ror.org/006ffhv52', 'en', 1, 'https://ror.org/006ffhv52 International School of Trieste Scuola Internazionale di Trieste'), (40171, 'https://ror.org/006g9a667', 'en', 1, 'https://ror.org/006g9a667 Center for Circumpolar Studies'), (40172, 'https://ror.org/006hdqg38', 'en', 1, 'https://ror.org/006hdqg38 Shanti Business School'), (40173, 'https://ror.org/006hpkx89', 'en', 1, 'https://ror.org/006hpkx89 Daymar College'), (40174, 'https://ror.org/006j5kw87', 'en', 1, 'https://ror.org/006j5kw87 York County Community College'), (40175, 'https://ror.org/006jnja70', 'en', 1, 'https://ror.org/006jnja70 Utah College of Applied Technology'), (40176, 'https://ror.org/006k05x61', 'pt', 1, 'https://ror.org/006k05x61 Complexo Hospitalar Universitário Professor Edgard Santos'), (40177, 'https://ror.org/006k1pa70', 'en', 1, 'https://ror.org/006k1pa70 Cambridge School'), (40178, 'https://ror.org/006kn4722', 'no_lang_code', 1, 'https://ror.org/006kn4722 Abilian (France)'), (40179, 'https://ror.org/006nxzf98', 'no_lang_code', 1, 'https://ror.org/006nxzf98 Ashland (United States)'), (40180, 'https://ror.org/006p1zj23', 'no_lang_code', 1, 'https://ror.org/006p1zj23 Turner Broadcasting System (United States)'), (40181, 'https://ror.org/006p7vb38', 'no_lang_code', 1, 'https://ror.org/006p7vb38 Armstrong World Industries (United States)'), (40182, 'https://ror.org/006ptez88', 'en', 1, 'https://ror.org/006ptez88 Northwest–Shoals Community College'), (40183, 'https://ror.org/006qkqr45', 'en', 1, 'https://ror.org/006qkqr45 Institute for Coastal Marine Environment Istituto per l''Ambiente Marino Costiero'), (40184, 'https://ror.org/006rqpt26', 'en', 1, 'https://ror.org/006rqpt26 West and Central African Research and Education Network'), (40185, 'https://ror.org/006tvg625', 'en', 1, 'https://ror.org/006tvg625 Bank of America'), (40186, 'https://ror.org/006twj174', 'no_lang_code', 1, 'https://ror.org/006twj174 Berthold (Australia)'), (40187, 'https://ror.org/006w4kh46', 'en', 1, 'https://ror.org/006w4kh46 North Central Texas College'), (40188, 'https://ror.org/006xbp572', 'en', 1, 'https://ror.org/006xbp572 College of Law Juridiskā koledža'), (40189, 'https://ror.org/006zwes74', 'no_lang_code', 1, 'https://ror.org/006zwes74 Dryas Arqueologia (Portugal)'), (40190, 'https://ror.org/00701pv42', 'fr', 1, 'https://ror.org/00701pv42 Wesford'), (40191, 'https://ror.org/0070wyz29', 'es', 1, 'https://ror.org/0070wyz29 Secretaría de Salud de Jalisco'), (40192, 'https://ror.org/00720xw25', 'pt', 1, 'https://ror.org/00720xw25 Faculdade Redentor'), (40193, 'https://ror.org/0075b7k59', 'no_lang_code', 1, 'https://ror.org/0075b7k59 Mitsubishi Electric (France)'), (40194, 'https://ror.org/0077b7806', 'en', 1, 'https://ror.org/0077b7806 Ministry of National Education and Scientific Research'), (40195, 'https://ror.org/00786fr54', 'en', 1, 'https://ror.org/00786fr54 Indian Register of Shipping'), (40196, 'https://ror.org/007bss615', 'en', 1, 'https://ror.org/007bss615 Holland Chemistry'), (40197, 'https://ror.org/007bxt841', 'no_lang_code', 1, 'https://ror.org/007bxt841 Bais HaMedrash and Mesivta of Baltimore'), (40198, 'https://ror.org/007by2j19', 'no_lang_code', 1, 'https://ror.org/007by2j19 Histogenics (United States)'), (40199, 'https://ror.org/007cpvh39', 'fr', 1, 'https://ror.org/007cpvh39 Haute École en Hainaut'), (40200, 'https://ror.org/007ebp326', 'no_lang_code', 1, 'https://ror.org/007ebp326 Krasnoyarsk Scientific Center Красноярский научный центр'), (40201, 'https://ror.org/007ew5756', 'en', 1, 'https://ror.org/007ew5756 Irish Baptist College'), (40202, 'https://ror.org/007gfpa47', 'pt', 1, 'https://ror.org/007gfpa47 Caixa Cultural'), (40203, 'https://ror.org/007ggdv19', 'en', 1, 'https://ror.org/007ggdv19 Tanzania Industrial Research and Development Organization'), (40204, 'https://ror.org/007hhp583', 'it', 1, 'https://ror.org/007hhp583 Conservatorio di Musica Arrigo Boito'), (40205, 'https://ror.org/007je0v50', 'en', 1, 'https://ror.org/007je0v50 Colorado School of Traditional Chinese Medicine'), (40206, 'https://ror.org/007mjr682', 'en', 1, 'https://ror.org/007mjr682 Fiber Optics Research Center Научный центр волоконной оптики Российской академии наук'), (40207, 'https://ror.org/007mwgz28', 'en', 1, 'https://ror.org/007mwgz28 National Telecommunication Regulatory Authority'), (40208, 'https://ror.org/007phjt92', 'en', 1, 'https://ror.org/007phjt92 Deutsche Keramische Gesellschaft German Ceramic Society'), (40209, 'https://ror.org/007qc6d13', 'en', 1, 'https://ror.org/007qc6d13 International Baptist College and Seminary'), (40210, 'https://ror.org/007xnkn32', 'eu', 1, 'https://ror.org/007xnkn32 Osasun Ikaskuntza Fundazioa'), (40211, 'https://ror.org/007ydnn26', 'no_lang_code', 1, 'https://ror.org/007ydnn26 R-Cost (France)'), (40212, 'https://ror.org/007ym4t24', 'no_lang_code', 1, 'https://ror.org/007ym4t24 Tefal (France)'), (40213, 'https://ror.org/007zpd132', 'en', 1, 'https://ror.org/007zpd132 Islamic Azad University of Hamedan دانشگاه آزاد اسلامی واحد همدان'), (40214, 'https://ror.org/0080yzn09', 'en', 1, 'https://ror.org/0080yzn09 Institute of Technical Chemistry'), (40215, 'https://ror.org/00811aj93', 'en', 1, 'https://ror.org/00811aj93 International Humanitarian University Міжнародного гуманітарного університету'), (40216, 'https://ror.org/0082jv665', 'en', 1, 'https://ror.org/0082jv665 Healthy Waterways'), (40217, 'https://ror.org/0084ktm65', 'en', 1, 'https://ror.org/0084ktm65 Fort Scott Community College'), (40218, 'https://ror.org/00863rv26', 'no_lang_code', 1, 'https://ror.org/00863rv26 Mattel (United States)'), (40219, 'https://ror.org/0087m7494', 'es', 1, 'https://ror.org/0087m7494 Instituto Tecnológico de Culiacán'), (40220, 'https://ror.org/0087qvf80', 'pt', 1, 'https://ror.org/0087qvf80 Instituto Técnico Artístico e Profissional de Coimbra'), (40221, 'https://ror.org/0087v5134', 'en', 1, 'https://ror.org/0087v5134 National Centre for Groundwater Research and Training'), (40222, 'https://ror.org/0088h4061', 'en', 1, 'https://ror.org/0088h4061 Dr. D. Y. Patil Medical College, Hospital and Research Centre'), (40223, 'https://ror.org/0088q3d19', 'en', 1, 'https://ror.org/0088q3d19 Shaanxi Provincial Meteorological Bureau 陕西省气象局'), (40224, 'https://ror.org/0088v6m32', 'fr', 1, 'https://ror.org/0088v6m32 Banque de France'), (40225, 'https://ror.org/0089aaq22', 'en', 1, 'https://ror.org/0089aaq22 College of Communications and Management in Poznan Wyższa Szkoła Komunikacji i Zarządzania w Poznaniu'), (40226, 'https://ror.org/008cjy335', 'en', 1, 'https://ror.org/008cjy335 Scientific Research Institute of Experimental and Clinical Medicine ФЕДЕРАЛЬНОЕ ГОСУДАРСТВЕННОЕ БЮДЖЕТНОЕ НАУЧНОЕ УЧРЕЖДЕНИЕ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ ЭКСПЕРИМЕНТАЛЬНОЙ И КЛИНИЧЕСКОЙ МЕДИЦИНЫ'), (40227, 'https://ror.org/008d8ke16', 'en', 1, 'https://ror.org/008d8ke16 Office of the Attorney General'), (40228, 'https://ror.org/008dyv188', 'no_lang_code', 1, 'https://ror.org/008dyv188 EMS (Canada)'), (40229, 'https://ror.org/008e3px62', 'en', 1, 'https://ror.org/008e3px62 Cloud County Community College'), (40230, 'https://ror.org/008evvy56', 'en', 1, 'https://ror.org/008evvy56 Paris Junior College'), (40231, 'https://ror.org/008f09676', 'en', 1, 'https://ror.org/008f09676 Thomas More College of Liberal Arts'), (40232, 'https://ror.org/008js8n22', 'en', 1, 'https://ror.org/008js8n22 National Organization of Peer Educators'), (40233, 'https://ror.org/008mypn13', 'fr', 1, 'https://ror.org/008mypn13 Direction de l’Epidémiologie et de Lutte contre les Maladies'), (40234, 'https://ror.org/008s6wa39', 'en', 1, 'https://ror.org/008s6wa39 Neosho County Community College'), (40235, 'https://ror.org/008seds41', 'en', 1, 'https://ror.org/008seds41 Centre for the Study of Developing Societies'), (40236, 'https://ror.org/008sszm38', 'en', 1, 'https://ror.org/008sszm38 M S Swaminathan Research Foundation'), (40237, 'https://ror.org/008t9m017', 'en', 1, 'https://ror.org/008t9m017 Wallace Community College'), (40238, 'https://ror.org/008yyr230', 'de', 1, 'https://ror.org/008yyr230 Till-Eulenspiegel-Museum Schöppenstedt'), (40239, 'https://ror.org/008zh9d08', 'en', 1, 'https://ror.org/008zh9d08 Maria College'), (40240, 'https://ror.org/008zm7t63', 'en', 1, 'https://ror.org/008zm7t63 National Bureau of Statistics of China 中华人民共和国国家统计局'), (40241, 'https://ror.org/008zzz711', 'en', 1, 'https://ror.org/008zzz711 Somalia Water and Land Information'), (40242, 'https://ror.org/00902tq54', 'no_lang_code', 1, 'https://ror.org/00902tq54 Stanvac Superon Group (India)'), (40243, 'https://ror.org/0091z1a80', 'no_lang_code', 1, 'https://ror.org/0091z1a80 Porto Editora (Portugal)'), (40244, 'https://ror.org/00926c151', 'pl', 1, 'https://ror.org/00926c151 Śląska Wyższa Szkoła Informatyczno-Medyczna'), (40245, 'https://ror.org/00941sb79', 'en', 1, 'https://ror.org/00941sb79 Directorate-General for Neighbourhood and Enlargement Negotiations Europäische Nachbarschaftspolitik und Erweiterungsverhandlungen Politique européenne de voisinage et négociations d''élargissement'), (40246, 'https://ror.org/00946w275', 'pt', 1, 'https://ror.org/00946w275 Instituto Nacional de Estudos e Pesquisa'), (40247, 'https://ror.org/0094z6w96', 'no_lang_code', 1, 'https://ror.org/0094z6w96 MTG Research (United Kingdom)'), (40248, 'https://ror.org/0096pt020', 'it', 1, 'https://ror.org/0096pt020 Conservatorio Statale di Musica Gioachino Rossini'), (40249, 'https://ror.org/00996c044', 'en', 1, 'https://ror.org/00996c044 Catholic University of Applied Social Sciences Katholische Hochschule für Sozialwesen Berlin'), (40250, 'https://ror.org/0099s0h07', 'pt', 1, 'https://ror.org/0099s0h07 Instituto de Tecnologia de Alimentos'), (40251, 'https://ror.org/0099xbw16', 'en', 1, 'https://ror.org/0099xbw16 Tobacco Research Institute 院烟草研究所'), (40252, 'https://ror.org/009asrq67', 'fr', 1, 'https://ror.org/009asrq67 Centre de Calcul El-Khawarizmi'), (40253, 'https://ror.org/009ayk582', 'en', 1, 'https://ror.org/009ayk582 ICLEI - Local Governments for Sustainability Africa'), (40254, 'https://ror.org/009cywx30', 'no_lang_code', 1, 'https://ror.org/009cywx30 VectraWave (France)'), (40255, 'https://ror.org/009epmp89', 'en', 1, 'https://ror.org/009epmp89 College of Occupational Safety and Health Visoka škola za sigurnost'), (40256, 'https://ror.org/009hwr222', 'no_lang_code', 1, 'https://ror.org/009hwr222 Pelum Association'), (40257, 'https://ror.org/009p87514', 'en', 1, 'https://ror.org/009p87514 Mid-Atlantic Christian University'), (40258, 'https://ror.org/009qtkb56', 'en', 1, 'https://ror.org/009qtkb56 Research Institute of Obstetrics and Gynecology named after D.O. Ott НИИ акушерства и гинекологии имени Д. О. Отта'), (40259, 'https://ror.org/009syd513', 'en', 1, 'https://ror.org/009syd513 Phillips Theological Seminary'), (40260, 'https://ror.org/009t8dp88', 'no_lang_code', 1, 'https://ror.org/009t8dp88 Bluestar Silicones (France)'), (40261, 'https://ror.org/009vsv572', 'no_lang_code', 1, 'https://ror.org/009vsv572 Kingston Technology (United States)'), (40262, 'https://ror.org/009w3qm52', 'en', 1, 'https://ror.org/009w3qm52 Bishop Burton College'), (40263, 'https://ror.org/009wrgz05', 'en', 1, 'https://ror.org/009wrgz05 Lighthouse Trust'), (40264, 'https://ror.org/009xxkc85', 'en', 1, 'https://ror.org/009xxkc85 Carrington College'), (40265, 'https://ror.org/009yat059', 'no_lang_code', 1, 'https://ror.org/009yat059 WADI Group (Egypt)'), (40266, 'https://ror.org/00a0cz818', 'en', 1, 'https://ror.org/00a0cz818 Irish Institute of Clinical Neuroscience'), (40267, 'https://ror.org/00a0y1f58', 'en', 1, 'https://ror.org/00a0y1f58 Hazelden Betty Ford Graduate School of Addiction Studies'), (40268, 'https://ror.org/00a264q56', 'en', 1, 'https://ror.org/00a264q56 Academy for Jewish Religion California'), (40269, 'https://ror.org/00a3cy009', 'en', 1, 'https://ror.org/00a3cy009 Phi Beta Kappa Society'), (40270, 'https://ror.org/00a736592', 'en', 1, 'https://ror.org/00a736592 Design School Kolding Designskolen Kolding'), (40271, 'https://ror.org/00a78zp32', 'en', 1, 'https://ror.org/00a78zp32 Irish American Cultural Institute'), (40272, 'https://ror.org/00a7fhh63', 'no_lang_code', 1, 'https://ror.org/00a7fhh63 Zlatarna Celje (Slovenia)'), (40273, 'https://ror.org/00a9jcw35', 'en', 1, 'https://ror.org/00a9jcw35 East Avenue Medical Center'), (40274, 'https://ror.org/00aa5f051', 'no_lang_code', 1, 'https://ror.org/00aa5f051 Unum Group (United States)'), (40275, 'https://ror.org/00aac9t94', 'fr', 1, 'https://ror.org/00aac9t94 Special Military School of Saint-Cyr École Spéciale Militaire de Saint-Cyr'), (40276, 'https://ror.org/00aak0969', 'en', 1, 'https://ror.org/00aak0969 Pennsylvania Office of Attorney General'), (40277, 'https://ror.org/00ab9fg88', 'en', 1, 'https://ror.org/00ab9fg88 Russian Cancer Research Center NN Blokhin Российский онкологический научный центр им. Н. Н. Блохина'), (40278, 'https://ror.org/00acd3d73', 'tr', 1, 'https://ror.org/00acd3d73 Konya Numune Hastanesi'), (40279, 'https://ror.org/00af1mn38', 'no_lang_code', 1, 'https://ror.org/00af1mn38 ERA Arqueologia'), (40280, 'https://ror.org/00ag9jk61', 'no_lang_code', 1, 'https://ror.org/00ag9jk61 Cabot (United States)'), (40281, 'https://ror.org/00agvd592', 'en', 1, 'https://ror.org/00agvd592 Salem Community College'), (40282, 'https://ror.org/00ahnj653', 'no_lang_code', 1, 'https://ror.org/00ahnj653 Hindustan Aeronautics Limited (India) हिंदुस्तान एरोनॉटिक्स लिमिटेड'), (40283, 'https://ror.org/00ajckn66', 'en', 1, 'https://ror.org/00ajckn66 European Central Bank Europäischen Zentralbank'), (40284, 'https://ror.org/00ajg8t71', 'en', 1, 'https://ror.org/00ajg8t71 Korean Educational Development Institute 한국교육개발원'), (40285, 'https://ror.org/00amea583', 'en', 1, 'https://ror.org/00amea583 Alexander College'), (40286, 'https://ror.org/00amzdz67', 'no_lang_code', 1, 'https://ror.org/00amzdz67 ASSAB Pacific (Singapore)'), (40287, 'https://ror.org/00anh1e03', 'en', 1, 'https://ror.org/00anh1e03 Ethiopian Development Research Institute'), (40288, 'https://ror.org/00apb0c64', 'en', 1, 'https://ror.org/00apb0c64 All-Russian Research Institute Fisheries and Oceanography Научно-исследовательский институт рыбного хозяйства России и океанографии'), (40289, 'https://ror.org/00ar3n458', 'en', 1, 'https://ror.org/00ar3n458 College of Dental Surgeons of Hong Kong'), (40290, 'https://ror.org/00attk912', 'no_lang_code', 1, 'https://ror.org/00attk912 Physiogenex (France)'), (40291, 'https://ror.org/00atw9e51', 'no_lang_code', 1, 'https://ror.org/00atw9e51 WaterNet Trust'), (40292, 'https://ror.org/00avcrs60', 'es', 1, 'https://ror.org/00avcrs60 Revista Conamed'), (40293, 'https://ror.org/00avq9860', 'en', 1, 'https://ror.org/00avq9860 Korea Rural Economic Institute 한국 농촌 경제 연구원'), (40294, 'https://ror.org/00awpt414', 'en', 1, 'https://ror.org/00awpt414 Mitchell Community College'), (40295, 'https://ror.org/00axrng91', 'en', 1, 'https://ror.org/00axrng91 Shetland Islands Council'), (40296, 'https://ror.org/00b2pbe02', 'en', 1, 'https://ror.org/00b2pbe02 Florida Keys Community College'), (40297, 'https://ror.org/00b3tsf98', 'en', 1, 'https://ror.org/00b3tsf98 Minisiteri y''Uburezi Ministry of Education Ministère de l''Éducation'), (40298, 'https://ror.org/00b6wzg36', 'en', 1, 'https://ror.org/00b6wzg36 Acupuncture & Integrative Medicine College'), (40299, 'https://ror.org/00b986q94', 'no_lang_code', 1, 'https://ror.org/00b986q94 Optigo Networks (Canada)'), (40300, 'https://ror.org/00b9z5510', 'en', 1, 'https://ror.org/00b9z5510 Old Salem Museums and Gardens'), (40301, 'https://ror.org/00babnh83', 'en', 1, 'https://ror.org/00babnh83 Nature Conservation Research Centre'), (40302, 'https://ror.org/00basdj35', 'no_lang_code', 1, 'https://ror.org/00basdj35 Lexmark (United States)'), (40303, 'https://ror.org/00bav2821', 'en', 1, 'https://ror.org/00bav2821 University Ecclesiastical Academy of Thessaloniki Ανώτατη Εκκλησιαστική Ακαδημία Θεσσαλονίκης'), (40304, 'https://ror.org/00bbdtr88', 'en', 1, 'https://ror.org/00bbdtr88 Texas Workforce Commission'), (40305, 'https://ror.org/00bbewq28', 'en', 1, 'https://ror.org/00bbewq28 Department of Economic and Community Development'), (40306, 'https://ror.org/00bbt0744', 'en', 1, 'https://ror.org/00bbt0744 Polar Geophysical Institute Полярный геофизический институт'), (40307, 'https://ror.org/00bcgjj54', 'en', 1, 'https://ror.org/00bcgjj54 The Culinary Institute of America'), (40308, 'https://ror.org/00bf78a39', 'en', 1, 'https://ror.org/00bf78a39 Bancroft School of Massage Therapy'), (40309, 'https://ror.org/00bgbmf24', 'en', 1, 'https://ror.org/00bgbmf24 Birthingway College of Midwifery'), (40310, 'https://ror.org/00bgchx11', 'en', 1, 'https://ror.org/00bgchx11 Blue Cross Blue Shield of Massachusetts'), (40311, 'https://ror.org/00bhv3b03', 'en', 1, 'https://ror.org/00bhv3b03 Institute of Circulatory and Respiratory Health'), (40312, 'https://ror.org/00bj1nn86', 'en', 1, 'https://ror.org/00bj1nn86 National Science Digital Library'), (40313, 'https://ror.org/00bp00b85', 'es', 1, 'https://ror.org/00bp00b85 Instituto Geográfico Nacional'), (40314, 'https://ror.org/00bpw1b12', 'fr', 1, 'https://ror.org/00bpw1b12 École des Avocats Nord-Ouest'), (40315, 'https://ror.org/00br84389', 'en', 1, 'https://ror.org/00br84389 Salter School'), (40316, 'https://ror.org/00brgvc50', 'en', 1, 'https://ror.org/00brgvc50 Standing Rock Indian Reservation'), (40317, 'https://ror.org/00bv1cj87', 'en', 1, 'https://ror.org/00bv1cj87 Indian Council of Philosophical Research'), (40318, 'https://ror.org/00bvaaw52', 'no_lang_code', 1, 'https://ror.org/00bvaaw52 Infusion (South Africa)'), (40319, 'https://ror.org/00bvew379', 'pt', 1, 'https://ror.org/00bvew379 Faculdade de Administração Ciências Educação e Letras'), (40320, 'https://ror.org/00bvt4k03', 'no_lang_code', 1, 'https://ror.org/00bvt4k03 Niramaya Hospital'), (40321, 'https://ror.org/00bwfrq04', 'no_lang_code', 1, 'https://ror.org/00bwfrq04 Chengdu Institute of Information Technology (China) 中科院成都信息技术有限公司'), (40322, 'https://ror.org/00byjv668', 'fr', 1, 'https://ror.org/00byjv668 Centre Technique des Industries Agroalimentaires'), (40323, 'https://ror.org/00c0gj024', 'no_lang_code', 1, 'https://ror.org/00c0gj024 Research Square (United States)'), (40324, 'https://ror.org/00c1pz865', 'en', 1, 'https://ror.org/00c1pz865 International Academy of Design & Technology'), (40325, 'https://ror.org/00c27rz48', 'en', 1, 'https://ror.org/00c27rz48 London School of Commerce'), (40326, 'https://ror.org/00c3bg218', 'en', 1, 'https://ror.org/00c3bg218 China Europe International Business School 中欧国际工商学院'), (40327, 'https://ror.org/00c3ktd57', 'fr', 1, 'https://ror.org/00c3ktd57 Laboratoire de PhysioMédecine Moléculaire'), (40328, 'https://ror.org/00c4ccg58', 'fr', 1, 'https://ror.org/00c4ccg58 Institut Polytechnique Rural de Formation et de Recherche Appliquée'), (40329, 'https://ror.org/00c62es15', 'fr', 1, 'https://ror.org/00c62es15 École Supérieure d''Arts & Médias de Caen/Cherbourg'), (40330, 'https://ror.org/00c6xwj41', 'en', 1, 'https://ror.org/00c6xwj41 Institute of Chemistry and Chemical Technology Институт химии и химической технологии'), (40331, 'https://ror.org/00c70d758', 'en', 1, 'https://ror.org/00c70d758 Instituto Nacional de Ciência e Tecnologia para Engenharia de Software National Institute of Science and Technology for Software Engineering'), (40332, 'https://ror.org/00c9gth79', 'en', 1, 'https://ror.org/00c9gth79 Astronomisches Observatorium Triest Observatoire astronomique de trieste Osservatorio Astronomico di Trieste Trieste Astronomical Observatory'), (40333, 'https://ror.org/00caave48', 'en', 1, 'https://ror.org/00caave48 National Intelligence Service 대한민국국가정보원'), (40334, 'https://ror.org/00cdwva22', 'en', 1, 'https://ror.org/00cdwva22 All Nations University'), (40335, 'https://ror.org/00cemh325', 'en', 1, 'https://ror.org/00cemh325 Sanford Consortium for Regenerative Medicine'), (40336, 'https://ror.org/00cfqsr23', 'en', 1, 'https://ror.org/00cfqsr23 Karnataka Fisheries Development Corporation'), (40337, 'https://ror.org/00cgdyn62', 'pt', 1, 'https://ror.org/00cgdyn62 Ministério da Administração Interna'), (40338, 'https://ror.org/00ck0vh11', 'en', 1, 'https://ror.org/00ck0vh11 College of Westchester'), (40339, 'https://ror.org/00cmb1w67', 'no_lang_code', 1, 'https://ror.org/00cmb1w67 Rodin Therapeutics (United States)'), (40340, 'https://ror.org/00cmss526', 'no_lang_code', 1, 'https://ror.org/00cmss526 Gmarketing (Pakistan)'), (40341, 'https://ror.org/00cn65j92', 'no_lang_code', 1, 'https://ror.org/00cn65j92 Bomarts Farms (Ghana)'), (40342, 'https://ror.org/00cpstt72', 'en', 1, 'https://ror.org/00cpstt72 Kanyakumari Government Medical College கன்னியாகுமரி அரசு மருத்துவக்கல்லூரி'), (40343, 'https://ror.org/00cq3cz72', 'en', 1, 'https://ror.org/00cq3cz72 National Research Centre on Plant Biotechnology राष्ट्रीय पादप जैवप्रौद्योगिकी अनुसंधान केन्द्र'), (40344, 'https://ror.org/00cty0112', 'no_lang_code', 1, 'https://ror.org/00cty0112 Takasago (Japan) 高砂香料工業株式会社'), (40345, 'https://ror.org/00cv86729', 'en', 1, 'https://ror.org/00cv86729 Council on Competitive Government'), (40346, 'https://ror.org/00cwdhv97', 'no_lang_code', 1, 'https://ror.org/00cwdhv97 China North Industries Group Corporation (China) 中国北方工业公司'), (40347, 'https://ror.org/00cwxbd63', 'en', 1, 'https://ror.org/00cwxbd63 Arizona School of Acupuncture and Oriental Medicine'), (40348, 'https://ror.org/00cxqcr87', 'en', 1, 'https://ror.org/00cxqcr87 Christian Heritage College'), (40349, 'https://ror.org/00cy2ef80', 'pt', 1, 'https://ror.org/00cy2ef80 Centro Universitário Metodista IPA'), (40350, 'https://ror.org/00cztqj29', 'en', 1, 'https://ror.org/00cztqj29 ACS Medical College and Hospital'), (40351, 'https://ror.org/00d1x1168', 'en', 1, 'https://ror.org/00d1x1168 Eurasia Foundation'), (40352, 'https://ror.org/00d4h7g98', 'en', 1, 'https://ror.org/00d4h7g98 Research Institute for Astronomy and Astrophysics of Maragh'), (40353, 'https://ror.org/00d4qwn05', 'no_lang_code', 1, 'https://ror.org/00d4qwn05 Meridian (Russia) Меридиан'), (40354, 'https://ror.org/00d4y9q10', 'no_lang_code', 1, 'https://ror.org/00d4y9q10 MAKGABANENG'), (40355, 'https://ror.org/00d7a9n23', 'es', 1, 'https://ror.org/00d7a9n23 Consejo Superior Universitario Centroamericano'), (40356, 'https://ror.org/00d7hze96', 'en', 1, 'https://ror.org/00d7hze96 Comité international olympique International Olympic Committee'), (40357, 'https://ror.org/00d7zep18', 'en', 1, 'https://ror.org/00d7zep18 Southern African NGO Network'), (40358, 'https://ror.org/00da5h096', 'sl', 1, 'https://ror.org/00da5h096 Šolski Center Škofja Loka'), (40359, 'https://ror.org/00daqep21', 'pt', 1, 'https://ror.org/00daqep21 Sporting Clube Vasco da Gama'), (40360, 'https://ror.org/00davj510', 'en', 1, 'https://ror.org/00davj510 Canadian Council of Professional Engineers Ingénieurs Canada'), (40361, 'https://ror.org/00ddr8x91', 'en', 1, 'https://ror.org/00ddr8x91 Fund for Armenian Relief'), (40362, 'https://ror.org/00ddw9x26', 'fr', 1, 'https://ror.org/00ddw9x26 Direction Générale de la Météorologie'), (40363, 'https://ror.org/00derzd22', 'en', 1, 'https://ror.org/00derzd22 Instituto Nacional de Ciência e Tecnologia Fotônica para Comunicações Ópticas National Institute of Photonic Science and Technology for Optical Communication'), (40364, 'https://ror.org/00dfjma76', 'en', 1, 'https://ror.org/00dfjma76 American Council on Germany'), (40365, 'https://ror.org/00dfkrb12', 'en', 1, 'https://ror.org/00dfkrb12 Rio Grande Bible Institute'), (40366, 'https://ror.org/00dhvr506', 'no_lang_code', 1, 'https://ror.org/00dhvr506 Novartis (India)'), (40367, 'https://ror.org/00djdkd68', 'en', 1, 'https://ror.org/00djdkd68 Daejeon Theological University'), (40368, 'https://ror.org/00dnfj623', 'en', 1, 'https://ror.org/00dnfj623 Hanns Eisler College or Academy of Music Hochschule für Musik Hanns Eisler'), (40369, 'https://ror.org/00dqega85', 'en', 1, 'https://ror.org/00dqega85 Istituto di Fisica Applicata Nello Carrara Nello Carrara Institute of Applied Physics'), (40370, 'https://ror.org/00dqs1064', 'fr', 1, 'https://ror.org/00dqs1064 Centre Marocain de Production Propre'), (40371, 'https://ror.org/00drbxw02', 'fr', 1, 'https://ror.org/00drbxw02 Pôle Supérieur d''Enseignement Artistique of Paris Boulogne-Billancourt'), (40372, 'https://ror.org/00drp2z27', 'en', 1, 'https://ror.org/00drp2z27 LighterLife'), (40373, 'https://ror.org/00drv3378', 'en', 1, 'https://ror.org/00drv3378 Bộ Giáo Dục và Đào tạo Ministry of Education and Training'), (40374, 'https://ror.org/00dse3307', 'en', 1, 'https://ror.org/00dse3307 Tunisia Polytechnic School École Polytechnique de Tunisie المدرسة التونسية للتقنيات'), (40375, 'https://ror.org/00dt8xx11', 'en', 1, 'https://ror.org/00dt8xx11 International Center for Journalists'), (40376, 'https://ror.org/00dv5qk90', 'en', 1, 'https://ror.org/00dv5qk90 Morristown High School'), (40377, 'https://ror.org/00dwde739', 'no_lang_code', 1, 'https://ror.org/00dwde739 OREGA Biotech (France)'), (40378, 'https://ror.org/00dyead60', 'en', 1, 'https://ror.org/00dyead60 Centre de Recherche et des Technologies de l''Energie Research and Technology Center of Energy'), (40379, 'https://ror.org/00dzptj80', 'en', 1, 'https://ror.org/00dzptj80 Yokohama Soei University 横浜創英短期大学'), (40380, 'https://ror.org/00e0kg276', 'en', 1, 'https://ror.org/00e0kg276 Sentara College of Health Sciences'), (40381, 'https://ror.org/00e0p8s95', 'en', 1, 'https://ror.org/00e0p8s95 Charlotte School of Law'), (40382, 'https://ror.org/00e0ttj68', 'en', 1, 'https://ror.org/00e0ttj68 Bundesministerium für wirtschaftliche Zusammenarbeit und Entwicklung Federal Ministry of Economic Cooperation and Development'), (40383, 'https://ror.org/00e261632', 'en', 1, 'https://ror.org/00e261632 Gujarat Institute of Development Research'), (40384, 'https://ror.org/00e2fqy76', 'no_lang_code', 1, 'https://ror.org/00e2fqy76 BMW of North America (United States)'), (40385, 'https://ror.org/00e3ms285', 'en', 1, 'https://ror.org/00e3ms285 Paterson Public Schools'), (40386, 'https://ror.org/00e43q278', 'no_lang_code', 1, 'https://ror.org/00e43q278 Just Ecology (United Kingdom)'), (40387, 'https://ror.org/00e477a69', 'en', 1, 'https://ror.org/00e477a69 Hsin Sheng College of Medical Care and Management 新生醫護管理專科學校'), (40388, 'https://ror.org/00e736r60', 'en', 1, 'https://ror.org/00e736r60 Hope Worldwide'), (40389, 'https://ror.org/00e9s5n07', 'no_lang_code', 1, 'https://ror.org/00e9s5n07 Starmet Corporation (United States)'), (40390, 'https://ror.org/00ea8xx02', 'en', 1, 'https://ror.org/00ea8xx02 Merritt College'), (40391, 'https://ror.org/00ec74h89', 'en', 1, 'https://ror.org/00ec74h89 Mater Dei High School'), (40392, 'https://ror.org/00ed0hz84', 'en', 1, 'https://ror.org/00ed0hz84 Henan Institute of Education 河南教育学院'), (40393, 'https://ror.org/00ed6fq07', 'en', 1, 'https://ror.org/00ed6fq07 AIDS Foundation of South Africa'), (40394, 'https://ror.org/00ed89w50', 'en', 1, 'https://ror.org/00ed89w50 Hanyoung Theological University 한영신학대학교'), (40395, 'https://ror.org/00edfym28', 'no_lang_code', 1, 'https://ror.org/00edfym28 Bharat Electronics (India) भारत इलेक्ट्रॉनिक लिमिटेड'), (40396, 'https://ror.org/00ef10m46', 'en', 1, 'https://ror.org/00ef10m46 Lincoln University - California'), (40397, 'https://ror.org/00ek1m439', 'en', 1, 'https://ror.org/00ek1m439 Utah College of Dental Hygiene'), (40398, 'https://ror.org/00ekjkp43', 'en', 1, 'https://ror.org/00ekjkp43 Santa Ana College'), (40399, 'https://ror.org/00emv3338', 'de', 1, 'https://ror.org/00emv3338 Archiv der Hansestadt Wismar'), (40400, 'https://ror.org/00en31398', 'pt', 1, 'https://ror.org/00en31398 Centro Cultural Vila Flor'), (40401, 'https://ror.org/00enahz60', 'no_lang_code', 1, 'https://ror.org/00enahz60 Bharat Forge (India)'), (40402, 'https://ror.org/00endrs84', 'pt', 1, 'https://ror.org/00endrs84 Externato da Luz'), (40403, 'https://ror.org/00eqbn006', 'no_lang_code', 1, 'https://ror.org/00eqbn006 GVK (India)'), (40404, 'https://ror.org/00ermve21', 'en', 1, 'https://ror.org/00ermve21 Conservatorio Antonio Vivaldi Conservatorio Di Musica A. Vivaldi'), (40405, 'https://ror.org/00erx8914', 'en', 1, 'https://ror.org/00erx8914 All-Russian Scientific Research Institute of Fundamental and Applied Parasitology of Animals and Plants named after K.I. Skryabin Всероссийский научно-исследовательский институт фундаментальной и прикладной паразитологии животных и растений имени К. И. Скрябина'), (40406, 'https://ror.org/00et21g06', 'en', 1, 'https://ror.org/00et21g06 All-Russian Research Institute of Agricultural Biotechnology Russian Academy of Agricultural Sciences Всероссийский институт сельскохозяйственной биотехнологии [править | править вики-текст]'), (40407, 'https://ror.org/00evpm282', 'en', 1, 'https://ror.org/00evpm282 Workplace Health, Safety and Compensation Commission'), (40408, 'https://ror.org/00ew5at92', 'en', 1, 'https://ror.org/00ew5at92 Department of the Premier and Cabinet'), (40409, 'https://ror.org/00ewbej21', 'en', 1, 'https://ror.org/00ewbej21 Gorbatov''s All-Russian Meat Research Institute Всероссийский научно-исследовательский институт мясной промышленности им. В.М. Горбатова'), (40410, 'https://ror.org/00ewfne71', 'en', 1, 'https://ror.org/00ewfne71 Metropolitan University Univerzitet Metropolitan'), (40411, 'https://ror.org/00exehz38', 'no_lang_code', 1, 'https://ror.org/00exehz38 Handok (South Korea) 한독'), (40412, 'https://ror.org/00exxep57', 'no_lang_code', 1, 'https://ror.org/00exxep57 Claritas Genomics (United States)'), (40413, 'https://ror.org/00ezwn594', 'en', 1, 'https://ror.org/00ezwn594 Ministry of Natural Resources and Tourism Wizara ya Maliasili na Utalii'), (40414, 'https://ror.org/00f21s284', 'en', 1, 'https://ror.org/00f21s284 Office of the Chief Scientist לשכת המדען הראשי'), (40415, 'https://ror.org/00f4mz521', 'en', 1, 'https://ror.org/00f4mz521 Institute of Strength Physics and Materials Science Институт физики прочности и материаловедения СО РАН'), (40416, 'https://ror.org/00f5afq73', 'en', 1, 'https://ror.org/00f5afq73 Rogue Community College'), (40417, 'https://ror.org/00f975e16', 'no_lang_code', 1, 'https://ror.org/00f975e16 Genesys (United States)'), (40418, 'https://ror.org/00f9c7v42', 'de', 1, 'https://ror.org/00f9c7v42 Staatsgalerie Stuttgart'), (40419, 'https://ror.org/00fa3cy95', 'en', 1, 'https://ror.org/00fa3cy95 Kenya AIDS NGOs Consortium'), (40420, 'https://ror.org/00fa9v295', 'en', 1, 'https://ror.org/00fa9v295 Medway School of Pharmacy'), (40421, 'https://ror.org/00fd94531', 'no_lang_code', 1, 'https://ror.org/00fd94531 OsseoMatrix (France)'), (40422, 'https://ror.org/00fdhj025', 'en', 1, 'https://ror.org/00fdhj025 Bangladesh Air Force Shaheen College বিএএফ শাহীন কলেজ ঢাকা'), (40423, 'https://ror.org/00fdnsr88', 'en', 1, 'https://ror.org/00fdnsr88 Strayer University'), (40424, 'https://ror.org/00fdv2038', 'en', 1, 'https://ror.org/00fdv2038 Pennsylvania Housing Finance Agency'), (40425, 'https://ror.org/00fe7gj91', 'no_lang_code', 1, 'https://ror.org/00fe7gj91 Excellerate (Australia)'), (40426, 'https://ror.org/00fgkb535', 'en', 1, 'https://ror.org/00fgkb535 Charleston School of Law'), (40427, 'https://ror.org/00fhbr831', 'en', 1, 'https://ror.org/00fhbr831 Triangle'), (40428, 'https://ror.org/00fhten74', 'en', 1, 'https://ror.org/00fhten74 Pukhov Institute for Modelling in Energy Engineering Інститут проблем моделювання в енергетиці ім. Г.Є. Пухова Институт проблем моделирования в энергетике им. Г.Е. Пухова'), (40429, 'https://ror.org/00fj6he94', 'en', 1, 'https://ror.org/00fj6he94 Alberta Bible College'), (40430, 'https://ror.org/00fnqey70', 'de', 1, 'https://ror.org/00fnqey70 Stadtmuseum Penzberg'), (40431, 'https://ror.org/00fszdj92', 'en', 1, 'https://ror.org/00fszdj92 Organization for Women in Science for the Developing World'), (40432, 'https://ror.org/00fvdng26', 'no_lang_code', 1, 'https://ror.org/00fvdng26 Vedanta Resources (India)'), (40433, 'https://ror.org/00fvxtb73', 'en', 1, 'https://ror.org/00fvxtb73 Abbaye de mount angel Mount Angel Abbey'), (40434, 'https://ror.org/00fw4m615', 'no_lang_code', 1, 'https://ror.org/00fw4m615 Cablevision (United States)'), (40435, 'https://ror.org/00fwg7016', 'pl', 1, 'https://ror.org/00fwg7016 Gdansk Management College Wyższa Szkoła Zarządzania w Gdańsku'), (40436, 'https://ror.org/00fy7kr67', 'en', 1, 'https://ror.org/00fy7kr67 Institut für Integrative und Experimentelle Genomik Institute for Integrative and Experimental Genomics'), (40437, 'https://ror.org/00fyzzw59', 'en', 1, 'https://ror.org/00fyzzw59 Ministry of Agriculture'), (40438, 'https://ror.org/00fzs3g26', 'no_lang_code', 1, 'https://ror.org/00fzs3g26 China Tobacco Guangxi Industrial (China) 广西中烟工业有限责任公司'), (40439, 'https://ror.org/00g07sz63', 'de', 1, 'https://ror.org/00g07sz63 SRH Hochschule Heidelberg'), (40440, 'https://ror.org/00g11es29', 'en', 1, 'https://ror.org/00g11es29 SMK University of Applied Social Sciences Socialiniu mokslu kolegija'), (40441, 'https://ror.org/00g1a3p24', 'en', 1, 'https://ror.org/00g1a3p24 Saudi Commission for Health Specialties الهيئة السعودية للتخصصات الصحية'), (40442, 'https://ror.org/00g218c19', 'fr', 1, 'https://ror.org/00g218c19 Institut National de la Recherche Agronomique d''Algérie'), (40443, 'https://ror.org/00g4bcb66', 'en', 1, 'https://ror.org/00g4bcb66 Kazan Scientific Center Казанский научный центр РАН'), (40444, 'https://ror.org/00g5dc702', 'no_lang_code', 1, 'https://ror.org/00g5dc702 OncoMed (United States)'), (40445, 'https://ror.org/00ga0xw04', 'en', 1, 'https://ror.org/00ga0xw04 Research and Studies Telecommunications Centre'), (40446, 'https://ror.org/00gbrgx34', 'en', 1, 'https://ror.org/00gbrgx34 National Institute of Construction Management and Research'), (40447, 'https://ror.org/00gck2e56', 'pt', 1, 'https://ror.org/00gck2e56 Faculdade de Desenvolvimento do Rio Grande do Sul'), (40448, 'https://ror.org/00gfqem49', 'no_lang_code', 1, 'https://ror.org/00gfqem49 Kusamotu & Kusamotu'), (40449, 'https://ror.org/00ggjh491', 'en', 1, 'https://ror.org/00ggjh491 National Youth Policy Institute 한국청소년정책연구원'), (40450, 'https://ror.org/00gkkv889', 'en', 1, 'https://ror.org/00gkkv889 Development Research Center of the State Council 国务院发展研究中心'), (40451, 'https://ror.org/00gkm5b90', 'en', 1, 'https://ror.org/00gkm5b90 University College of Tourism and Ecology Wyższa Szkoła Turystyki i Ekologii w Suchej Beskidzkiej'), (40452, 'https://ror.org/00gm3kb02', 'en', 1, 'https://ror.org/00gm3kb02 North Georgia Technical College'), (40453, 'https://ror.org/00gn1hm60', 'pl', 1, 'https://ror.org/00gn1hm60 Gnieźnieńska Szkoła Wyższa Milenium'), (40454, 'https://ror.org/00gn6h668', 'en', 1, 'https://ror.org/00gn6h668 Rajarajeswari Medical College and Hospital'), (40455, 'https://ror.org/00gpmge60', 'en', 1, 'https://ror.org/00gpmge60 Cowley Community College'), (40456, 'https://ror.org/00gprdj76', 'en', 1, 'https://ror.org/00gprdj76 Latin American Institute Институт Латинской Америки'), (40457, 'https://ror.org/00gqx0331', 'en', 1, 'https://ror.org/00gqx0331 Research Complex at Harwell'), (40458, 'https://ror.org/00gream49', 'no_lang_code', 1, 'https://ror.org/00gream49 DHL (United States)'), (40459, 'https://ror.org/00grm6006', 'en', 1, 'https://ror.org/00grm6006 Uganda Blood Transfusion Service'), (40460, 'https://ror.org/00gs3en43', 'en', 1, 'https://ror.org/00gs3en43 Carolina Christian College'), (40461, 'https://ror.org/00gs59456', 'no_lang_code', 1, 'https://ror.org/00gs59456 CorticoMetrics (United States)'), (40462, 'https://ror.org/00gvr0r24', 'no_lang_code', 1, 'https://ror.org/00gvr0r24 Audionamix (France)'), (40463, 'https://ror.org/00gw7hd69', 'fr', 1, 'https://ror.org/00gw7hd69 Observatoire National sur les Effets du Réchauffement Climatique'), (40464, 'https://ror.org/00gwhv923', 'no_lang_code', 1, 'https://ror.org/00gwhv923 Hasbro (United States)'), (40465, 'https://ror.org/00gy7qs50', 'en', 1, 'https://ror.org/00gy7qs50 Southport College'), (40466, 'https://ror.org/00gyf5557', 'en', 1, 'https://ror.org/00gyf5557 Swiss School of Archaeology in Greece Ελβετική Αρχαιολογική Σχολή στην Ελλάδα'), (40467, 'https://ror.org/00gyygy85', 'en', 1, 'https://ror.org/00gyygy85 JRE Group of Institutions'), (40468, 'https://ror.org/00h0gj516', 'en', 1, 'https://ror.org/00h0gj516 Agri Biotech Foundation'), (40469, 'https://ror.org/00h1xaa75', 'no_lang_code', 1, 'https://ror.org/00h1xaa75 AstraZeneca (South Korea) 한국아스트라제네카'), (40470, 'https://ror.org/00h2bx184', 'en', 1, 'https://ror.org/00h2bx184 Forsvarsakademiet Royal Danish Defence College'), (40471, 'https://ror.org/00h3byr70', 'en', 1, 'https://ror.org/00h3byr70 New Jersey Department of Labor and Workforce Development'), (40472, 'https://ror.org/00h3xj803', 'no_lang_code', 1, 'https://ror.org/00h3xj803 Coal India (India) कोल इंडिया लिमिटेड'), (40473, 'https://ror.org/00h6vxx49', 'en', 1, 'https://ror.org/00h6vxx49 U.S. Green Building Council'), (40474, 'https://ror.org/00h90tg62', 'en', 1, 'https://ror.org/00h90tg62 City College'), (40475, 'https://ror.org/00h9jch39', 'en', 1, 'https://ror.org/00h9jch39 Carey Baptist College'), (40476, 'https://ror.org/00h9jx107', 'en', 1, 'https://ror.org/00h9jx107 Institute of Applied Mathematics Институт прикладной математики ДВО РАН'), (40477, 'https://ror.org/00hagsh42', 'en', 1, 'https://ror.org/00hagsh42 Wuhan City Chinese Medicine Hospital 武汉市中国中医医院'), (40478, 'https://ror.org/00hbzbs53', 'no_lang_code', 1, 'https://ror.org/00hbzbs53 MTS Systems (United States)'), (40479, 'https://ror.org/00hc57b89', 'en', 1, 'https://ror.org/00hc57b89 Solid Wood Innovation'), (40480, 'https://ror.org/00hcabt14', 'no_lang_code', 1, 'https://ror.org/00hcabt14 Light for Life Technologies (France)'), (40481, 'https://ror.org/00hcr7c15', 'en', 1, 'https://ror.org/00hcr7c15 Conseil ouest et centre africain pour la recherche et le développement agricoles West and Central African Council for Agricultural Research and Development'), (40482, 'https://ror.org/00hd92c69', 'en', 1, 'https://ror.org/00hd92c69 Central Institute of Plastics Engineering and Technology'), (40483, 'https://ror.org/00hf72d13', 'en', 1, 'https://ror.org/00hf72d13 Boonton Public Schools'), (40484, 'https://ror.org/00hfszj21', 'en', 1, 'https://ror.org/00hfszj21 Institute of Catalysis and Petrochemistry Институт катализа и нефтехимии'), (40485, 'https://ror.org/00hgavv49', 'en', 1, 'https://ror.org/00hgavv49 Wallace Community College Selma'), (40486, 'https://ror.org/00hgmwb30', 'en', 1, 'https://ror.org/00hgmwb30 Institute of Macromolecular Compounds Федеральное государственное бюджетное учреждение науки Институт высокомолекулярных соединений Российской академии наук'), (40487, 'https://ror.org/00hh4c656', 'en', 1, 'https://ror.org/00hh4c656 Southwest Mississippi Community College'), (40488, 'https://ror.org/00hm0mb83', 'en', 1, 'https://ror.org/00hm0mb83 Bramson ORT College'), (40489, 'https://ror.org/00hmhc458', 'en', 1, 'https://ror.org/00hmhc458 Montcalm Community College'), (40490, 'https://ror.org/00hpff311', 'en', 1, 'https://ror.org/00hpff311 Council of Yukon First Nations'), (40491, 'https://ror.org/00hqa1k37', 'en', 1, 'https://ror.org/00hqa1k37 California Christian College'), (40492, 'https://ror.org/00hqbvm92', 'en', 1, 'https://ror.org/00hqbvm92 Oxford Dental College and Hospital'), (40493, 'https://ror.org/00hrx1t96', 'fr', 1, 'https://ror.org/00hrx1t96 Société Nationale d’Études du Détroit de Gibraltar'); INSERT INTO `rors` VALUES (40494, 'https://ror.org/00hvga705', 'en', 1, 'https://ror.org/00hvga705 Baki Ali Neft Məktəbi Baku Higher Oil School'), (40495, 'https://ror.org/00hx1yw75', 'en', 1, 'https://ror.org/00hx1yw75 Government of Uttar Pradesh उत्तर प्रदेश सरकार'), (40496, 'https://ror.org/00hxcg109', 'en', 1, 'https://ror.org/00hxcg109 Association for Strengthening Agricultural Research in Eastern and Central Africa'), (40497, 'https://ror.org/00hyqw430', 'en', 1, 'https://ror.org/00hyqw430 Centre pour la santé des Inuits et les Changements Environnementaux Nasivvik Centre for Inuit Health and Changing Environments'), (40498, 'https://ror.org/00j0xx731', 'no_lang_code', 1, 'https://ror.org/00j0xx731 Centre d''Higiene Mental Les Corts (Spain)'), (40499, 'https://ror.org/00j1q0b46', 'en', 1, 'https://ror.org/00j1q0b46 Council of Higher Education Yükseköğretim Kurulu'), (40500, 'https://ror.org/00j4sax34', 'en', 1, 'https://ror.org/00j4sax34 Newcastle-under-Lyme College'), (40501, 'https://ror.org/00j73mn11', 'fr', 1, 'https://ror.org/00j73mn11 Ministry of Public Health and Hygiene Ministère de la Santé et de l''Hygiène Publique'), (40502, 'https://ror.org/00j9xkc07', 'en', 1, 'https://ror.org/00j9xkc07 European University of Applied Sciences Europäische Fachhochschule Rhein/Erft'), (40503, 'https://ror.org/00jatyx22', 'en', 1, 'https://ror.org/00jatyx22 International Management Institute'), (40504, 'https://ror.org/00jaxam28', 'en', 1, 'https://ror.org/00jaxam28 Guangzhou Marine Geological Survey 广州海洋地质调查局'), (40505, 'https://ror.org/00jbwpt44', 'en', 1, 'https://ror.org/00jbwpt44 Hochschule für Medien, Kommunikation und Wirtschaft University of Applied Sciences for Media Communication and Business'), (40506, 'https://ror.org/00jce1v14', 'en', 1, 'https://ror.org/00jce1v14 College of the Siskiyous'), (40507, 'https://ror.org/00jdhb158', 'cs', 1, 'https://ror.org/00jdhb158 Film Academy of Miroslav Ondříček, Filmová Akademie Miroslava Ondříčka v Písku'), (40508, 'https://ror.org/00je00x55', 'en', 1, 'https://ror.org/00je00x55 Institute of Mongolian Buddhist and Tibetan Studies Институт монголоведения, буддологии и тибетологии СО РАН'), (40509, 'https://ror.org/00jhy6397', 'en', 1, 'https://ror.org/00jhy6397 Empire College'), (40510, 'https://ror.org/00jm2j742', 'en', 1, 'https://ror.org/00jm2j742 International Society for Gastrointestinal Hereditary Tumours'), (40511, 'https://ror.org/00jsbh426', 'en', 1, 'https://ror.org/00jsbh426 South Eastern Railway'), (40512, 'https://ror.org/00jvbme10', 'de', 1, 'https://ror.org/00jvbme10 Fachhochschule für Finanzen Brandenburg'), (40513, 'https://ror.org/00jvrbg23', 'en', 1, 'https://ror.org/00jvrbg23 Children''s AIDS Fund Uganda'), (40514, 'https://ror.org/00jw3g525', 'en', 1, 'https://ror.org/00jw3g525 Munich Business School'), (40515, 'https://ror.org/00jzq7445', 'en', 1, 'https://ror.org/00jzq7445 Ministry of Finance and Development Planning'), (40516, 'https://ror.org/00k255b93', 'no_lang_code', 1, 'https://ror.org/00k255b93 Golder Associates (South Africa)'), (40517, 'https://ror.org/00k4x4z35', 'en', 1, 'https://ror.org/00k4x4z35 State Justice Institute'), (40518, 'https://ror.org/00k51n564', 'en', 1, 'https://ror.org/00k51n564 Emmanuel Hospital Association'), (40519, 'https://ror.org/00k53p435', 'en', 1, 'https://ror.org/00k53p435 Agencia de Desarrollo Económico de La Rioja Economic Development Agency for La Rioja'), (40520, 'https://ror.org/00k66f384', 'no_lang_code', 1, 'https://ror.org/00k66f384 Nickerson Ltd'), (40521, 'https://ror.org/00k672v31', 'no_lang_code', 1, 'https://ror.org/00k672v31 DuPont (Brazil)'), (40522, 'https://ror.org/00k6vc568', 'en', 1, 'https://ror.org/00k6vc568 Dodowa Health Research Centre'), (40523, 'https://ror.org/00k8b3640', 'no_lang_code', 1, 'https://ror.org/00k8b3640 AnyGenes (France)'), (40524, 'https://ror.org/00k98ea94', 'no_lang_code', 1, 'https://ror.org/00k98ea94 Hokuriku Electric Power Company (Japan) 北陸電力'), (40525, 'https://ror.org/00kb9vf38', 'en', 1, 'https://ror.org/00kb9vf38 Australasian College for Emergency Medicine'), (40526, 'https://ror.org/00ket8v10', 'en', 1, 'https://ror.org/00ket8v10 Gokula Krishna College of Pharmacy'), (40527, 'https://ror.org/00kj48v07', 'no_lang_code', 1, 'https://ror.org/00kj48v07 Foxnum Technology (Taiwan)'), (40528, 'https://ror.org/00km4z122', 'en', 1, 'https://ror.org/00km4z122 Royal Commission for Jubail and Yanbu الهيئة الملكية للجبيل وينبع'), (40529, 'https://ror.org/00kn94t37', 'en', 1, 'https://ror.org/00kn94t37 Rubber Board'), (40530, 'https://ror.org/00kp7ts52', 'en', 1, 'https://ror.org/00kp7ts52 China Accounting Standards Committee 会计准则委员会'), (40531, 'https://ror.org/00ksgqc53', 'en', 1, 'https://ror.org/00ksgqc53 Partners for Health and Development in Africa'), (40532, 'https://ror.org/00ktzqz45', 'en', 1, 'https://ror.org/00ktzqz45 Georgia Department of Transportation'), (40533, 'https://ror.org/00kw0f604', 'en', 1, 'https://ror.org/00kw0f604 New Jersey Economic Development Authority'), (40534, 'https://ror.org/00kyqct09', 'en', 1, 'https://ror.org/00kyqct09 Schuler Scholar Program'), (40535, 'https://ror.org/00kz8zc32', 'no_lang_code', 1, 'https://ror.org/00kz8zc32 Philanjalo'), (40536, 'https://ror.org/00m02ap37', 'en', 1, 'https://ror.org/00m02ap37 CT Group Of Institutions'), (40537, 'https://ror.org/00m2z1b30', 'en', 1, 'https://ror.org/00m2z1b30 University College of Bahrain كلية البحرين الجامعية'), (40538, 'https://ror.org/00m41wh60', 'en', 1, 'https://ror.org/00m41wh60 Hennepin Technical College'), (40539, 'https://ror.org/00m92qj63', 'no_lang_code', 1, 'https://ror.org/00m92qj63 Sharp Edge Labs (United States)'), (40540, 'https://ror.org/00m94dk17', 'en', 1, 'https://ror.org/00m94dk17 Podhalańska Państwowa Wyższa Szkoła Zawodowa w Nowym Targu Podhale State Higher Vocational School in Nowy Targ'), (40541, 'https://ror.org/00m9b5484', 'en', 1, 'https://ror.org/00m9b5484 Mountain Lakes High School'), (40542, 'https://ror.org/00m9mc973', 'en', 1, 'https://ror.org/00m9mc973 European Association of Urology'), (40543, 'https://ror.org/00maat333', 'fr', 1, 'https://ror.org/00maat333 Palais de la Decouverte'), (40544, 'https://ror.org/00maf9573', 'en', 1, 'https://ror.org/00maf9573 Government of Karnataka ಕರ್ನಾಟಕ ಸರ್ಕಾರ'), (40545, 'https://ror.org/00mbwxd54', 'en', 1, 'https://ror.org/00mbwxd54 Italian Institute of Culture'), (40546, 'https://ror.org/00mc4x834', 'no_lang_code', 1, 'https://ror.org/00mc4x834 Ahold Delhaize (United States)'), (40547, 'https://ror.org/00mc9zb90', 'en', 1, 'https://ror.org/00mc9zb90 Citrus Research Institute 中国农业科学院柑桔研究所'), (40548, 'https://ror.org/00mej7b74', 'en', 1, 'https://ror.org/00mej7b74 Arizona Summit Law School'), (40549, 'https://ror.org/00mm8q321', 'en', 1, 'https://ror.org/00mm8q321 American Military University'), (40550, 'https://ror.org/00mpmjk72', 'en', 1, 'https://ror.org/00mpmjk72 Peddie School'), (40551, 'https://ror.org/00mt8kb26', 'en', 1, 'https://ror.org/00mt8kb26 National Agency for Administrative City Construction 행정중심복합도시건설청'), (40552, 'https://ror.org/00mvdkr07', 'en', 1, 'https://ror.org/00mvdkr07 Yeshivat Mikdash Melech'), (40553, 'https://ror.org/00mvrmk84', 'en', 1, 'https://ror.org/00mvrmk84 Providence Christian College'), (40554, 'https://ror.org/00mwrav07', 'en', 1, 'https://ror.org/00mwrav07 Central Pollution Control Board'), (40555, 'https://ror.org/00my0bv27', 'en', 1, 'https://ror.org/00my0bv27 Baltic Psychology and Management University College Baltijas Psiholoģijas un Menedžmenta Augstskola Балтийская Психология и институт менеджмента'), (40556, 'https://ror.org/00mzyf059', 'en', 1, 'https://ror.org/00mzyf059 Institute of Bast Fiber Crops 中国农业科学院麻类研究所'), (40557, 'https://ror.org/00n0e2d34', 'en', 1, 'https://ror.org/00n0e2d34 Ministry of Advanced Education'), (40558, 'https://ror.org/00n178f58', 'en', 1, 'https://ror.org/00n178f58 South Plains College'), (40559, 'https://ror.org/00n27t175', 'en', 1, 'https://ror.org/00n27t175 Seattle Institute of Oriental Medicine'), (40560, 'https://ror.org/00n3vh666', 'en', 1, 'https://ror.org/00n3vh666 Deen Dayal Upadhyay Hospital'), (40561, 'https://ror.org/00n4c8134', 'en', 1, 'https://ror.org/00n4c8134 Lisbon School of Design'), (40562, 'https://ror.org/00n5fv691', 'pl', 1, 'https://ror.org/00n5fv691 Państwowa Wyższa Szkoła Zawodowa w Sulechowie'), (40563, 'https://ror.org/00n8bqs64', 'en', 1, 'https://ror.org/00n8bqs64 Institute of Informatics Problems Федеральный исследовательский Информатика и управление'), (40564, 'https://ror.org/00n900q40', 'en', 1, 'https://ror.org/00n900q40 Bradford School - Pittsburgh'), (40565, 'https://ror.org/00nanf268', 'no_lang_code', 1, 'https://ror.org/00nanf268 Natural Remedies (India)'), (40566, 'https://ror.org/00nas8g50', 'de', 1, 'https://ror.org/00nas8g50 Fonds Gesundes Österreich'), (40567, 'https://ror.org/00nezvm77', 'en', 1, 'https://ror.org/00nezvm77 Voluntary Health Association Of India'), (40568, 'https://ror.org/00nj2y010', 'en', 1, 'https://ror.org/00nj2y010 African Safari Club Of Florida'), (40569, 'https://ror.org/00nkq8a05', 'en', 1, 'https://ror.org/00nkq8a05 Fondazione Luigi Einaudi Luigi Einaudi Foundation'), (40570, 'https://ror.org/00nqqde20', 'en', 1, 'https://ror.org/00nqqde20 Development Aid from People to People'), (40571, 'https://ror.org/00ntq6s45', 'no_lang_code', 1, 'https://ror.org/00ntq6s45 Shell (India)'), (40572, 'https://ror.org/00nxrj229', 'en', 1, 'https://ror.org/00nxrj229 Mokpo National Tuberculosis Hospital 국립목포병원'), (40573, 'https://ror.org/00p0g8998', 'en', 1, 'https://ror.org/00p0g8998 Agence pour la sécurité de la Navigation Aérienne en Afrique et à Madagascar Agency for Aerial Navigation Safety in Africa and Madagascar'), (40574, 'https://ror.org/00p14sn40', 'en', 1, 'https://ror.org/00p14sn40 New Jersey Department of Community Affairs'), (40575, 'https://ror.org/00p536462', 'en', 1, 'https://ror.org/00p536462 Re Action'), (40576, 'https://ror.org/00p5mne09', 'en', 1, 'https://ror.org/00p5mne09 Institute of Seismological Research'), (40577, 'https://ror.org/00p5psh68', 'pt', 1, 'https://ror.org/00p5psh68 Ministério da Saúde e da Segurança Social'), (40578, 'https://ror.org/00p9p2506', 'en', 1, 'https://ror.org/00p9p2506 Ministerstvo dopravy České republiky Ministry of Transport'), (40579, 'https://ror.org/00p9yb286', 'en', 1, 'https://ror.org/00p9yb286 Moroccan National Railways Office Office National des Chemins de Fer du Maroc'), (40580, 'https://ror.org/00pbsg918', 'en', 1, 'https://ror.org/00pbsg918 Organization for Social Services for AIDS'), (40581, 'https://ror.org/00pbyj886', 'en', 1, 'https://ror.org/00pbyj886 Bath College'), (40582, 'https://ror.org/00pctvz49', 'en', 1, 'https://ror.org/00pctvz49 Miller College'), (40583, 'https://ror.org/00phthq42', 'en', 1, 'https://ror.org/00phthq42 Agência Nacional do Petróleo, Gás Natural e Biocombustíveis National Agency of Petroleum, Natural Gas and Biofuels'), (40584, 'https://ror.org/00pnt8b91', 'en', 1, 'https://ror.org/00pnt8b91 Seoul Institute'), (40585, 'https://ror.org/00pnyyg32', 'en', 1, 'https://ror.org/00pnyyg32 Design Institute of San Diego'), (40586, 'https://ror.org/00ppjep56', 'en', 1, 'https://ror.org/00ppjep56 Cancer Association of South Africa'), (40587, 'https://ror.org/00ppxc472', 'no_lang_code', 1, 'https://ror.org/00ppxc472 ArcelorMittal (Poland)'), (40588, 'https://ror.org/00pqt1c92', 'no_lang_code', 1, 'https://ror.org/00pqt1c92 Synergy Microwave (United States)'), (40589, 'https://ror.org/00ps5mk11', 'pt', 1, 'https://ror.org/00ps5mk11 Instituto Nacional de Ciência e Tecnologia de Adaptações da Biota Aquática da Amazônia'), (40590, 'https://ror.org/00pv14226', 'no_lang_code', 1, 'https://ror.org/00pv14226 Acxiom (United States)'), (40591, 'https://ror.org/00pvcan36', 'en', 1, 'https://ror.org/00pvcan36 Arkansas Baptist College'), (40592, 'https://ror.org/00pwe8n55', 'en', 1, 'https://ror.org/00pwe8n55 Moscow School of Social and Economic Sciences Московская высшая школа социальных и экономических наук'), (40593, 'https://ror.org/00pxa0p67', 'no_lang_code', 1, 'https://ror.org/00pxa0p67 Slack Incorporated (United States)'), (40594, 'https://ror.org/00pz3sx52', 'en', 1, 'https://ror.org/00pz3sx52 Egypt Exploration Society'), (40595, 'https://ror.org/00pz6eg79', 'en', 1, 'https://ror.org/00pz6eg79 Ontario Stroke Network'), (40596, 'https://ror.org/00pz6g905', 'en', 1, 'https://ror.org/00pz6g905 Association des Études canadiennes aux États-Unis Association for Canadian Studies in the United States'), (40597, 'https://ror.org/00pzdbj03', 'no_lang_code', 1, 'https://ror.org/00pzdbj03 Haption (France)'), (40598, 'https://ror.org/00pzjnx43', 'id', 1, 'https://ror.org/00pzjnx43 STIKes Prima Nusantara'), (40599, 'https://ror.org/00q24dt49', 'en', 1, 'https://ror.org/00q24dt49 Global College'), (40600, 'https://ror.org/00q2kx914', 'en', 1, 'https://ror.org/00q2kx914 Fisheries Society of the British Isles'), (40601, 'https://ror.org/00q5qvn72', 'en', 1, 'https://ror.org/00q5qvn72 Betanien University College'), (40602, 'https://ror.org/00q5x1a77', 'en', 1, 'https://ror.org/00q5x1a77 Messenger College'), (40603, 'https://ror.org/00q62zf58', 'en', 1, 'https://ror.org/00q62zf58 Agricultural Information Institute 中国农业科学院农业信息研究所'), (40604, 'https://ror.org/00qabtj63', 'en', 1, 'https://ror.org/00qabtj63 Akcent International House Prague Jazyková škola AKCENT IH Prague'), (40605, 'https://ror.org/00qbqm161', 'en', 1, 'https://ror.org/00qbqm161 International Business College - Fort Wayne'), (40606, 'https://ror.org/00qbzpp62', 'en', 1, 'https://ror.org/00qbzpp62 Center for Massive Data Algorithmics'), (40607, 'https://ror.org/00qc32430', 'en', 1, 'https://ror.org/00qc32430 Christie''s Education'), (40608, 'https://ror.org/00qcy3519', 'en', 1, 'https://ror.org/00qcy3519 International Partnership for Human Development'), (40609, 'https://ror.org/00qd3m987', 'no_lang_code', 1, 'https://ror.org/00qd3m987 Premiere'), (40610, 'https://ror.org/00qeyvx79', 'en', 1, 'https://ror.org/00qeyvx79 Sino-Swedish Centre for Tree-Ring Research'), (40611, 'https://ror.org/00qf0n903', 'en', 1, 'https://ror.org/00qf0n903 Clinton College'), (40612, 'https://ror.org/00qghhw55', 'en', 1, 'https://ror.org/00qghhw55 Private University of Environmental Sciences in Radom Prywatna Wyższa Szkoła Ochrony Środowiska w Radomiu'), (40613, 'https://ror.org/00qgtny50', 'en', 1, 'https://ror.org/00qgtny50 Institute of Solid State Physics and Semiconductors Інстытут фізікі цвёрдага цела і паўправаднікоў'), (40614, 'https://ror.org/00qgwdb66', 'en', 1, 'https://ror.org/00qgwdb66 Ministry of Agriculture, Food Security and Cooperatives, Ministry of Agriculture, Food and Cooperatives Wizara ya Kilimo, Chakula na Ushirika'), (40615, 'https://ror.org/00qkjnr71', 'en', 1, 'https://ror.org/00qkjnr71 Yeshiva of Greater Washington'), (40616, 'https://ror.org/00qmsd316', 'pt', 1, 'https://ror.org/00qmsd316 Faculdades Milton Campos'), (40617, 'https://ror.org/00qn2rd91', 'en', 1, 'https://ror.org/00qn2rd91 Institut National des Sciences Appliquées et de Technologie National Institute of Applied Science and Technology'), (40618, 'https://ror.org/00qnd3z77', 'en', 1, 'https://ror.org/00qnd3z77 National American University'), (40619, 'https://ror.org/00qp50z66', 'en', 1, 'https://ror.org/00qp50z66 Hiwassee College'), (40620, 'https://ror.org/00qrrpx34', 'en', 1, 'https://ror.org/00qrrpx34 State Administration of Press, Publication, Radio, Film and Television 国家广播电影电视总局'), (40621, 'https://ror.org/00qrts576', 'en', 1, 'https://ror.org/00qrts576 Kara Counselling and Training Trust'), (40622, 'https://ror.org/00qt5he59', 'no_lang_code', 1, 'https://ror.org/00qt5he59 Oligovax (France)'), (40623, 'https://ror.org/00qxm3x60', 'no_lang_code', 1, 'https://ror.org/00qxm3x60 Biological E (India)'), (40624, 'https://ror.org/00qz2zp29', 'pl', 1, 'https://ror.org/00qz2zp29 Wyższa Szkoła Planowania Strategicznego'), (40625, 'https://ror.org/00qzhtm25', 'en', 1, 'https://ror.org/00qzhtm25 Fairy Lake Botanical Garden 仙湖植物园'), (40626, 'https://ror.org/00r1gaq76', 'it', 1, 'https://ror.org/00r1gaq76 Conservatorio Torrefranca Vibo Valentia'), (40627, 'https://ror.org/00r1qza69', 'en', 1, 'https://ror.org/00r1qza69 Reedley College'), (40628, 'https://ror.org/00r22sc21', 'en', 1, 'https://ror.org/00r22sc21 Vastu Shilpa Foundation'), (40629, 'https://ror.org/00r3dxy86', 'en', 1, 'https://ror.org/00r3dxy86 Busan Institute of Science and Technology 부산과학기술대학교'), (40630, 'https://ror.org/00r3ztb37', 'en', 1, 'https://ror.org/00r3ztb37 Drzavni zavod za zastitu prirode State Institute for Nature Protection'), (40631, 'https://ror.org/00r5r6807', 'en', 1, 'https://ror.org/00r5r6807 China Automotive Technology and Research Center 中囯汽车技术硏究中心'), (40632, 'https://ror.org/00r614q54', 'en', 1, 'https://ror.org/00r614q54 Youngnam Theological University and Seminary 영남신학대학교'), (40633, 'https://ror.org/00r6rm584', 'en', 1, 'https://ror.org/00r6rm584 Institut Tunisien de la Competitivité et des Etudes Quantitatives Tunisian Institute of Competitiveness and Quantitative Studies'), (40634, 'https://ror.org/00r6ym970', 'en', 1, 'https://ror.org/00r6ym970 Latvia Business College Latvijas Biznesa Koledža'), (40635, 'https://ror.org/00r7arj43', 'en', 1, 'https://ror.org/00r7arj43 Central Bank of Uzbekistan O''zbekiston Respublikasi Markaziy banki Ўзбекистон Республикаси Марказий Банки'), (40636, 'https://ror.org/00r8emz85', 'it', 1, 'https://ror.org/00r8emz85 Conservatorio di Musica Carlo Gesualdo da Venosa Potenza'), (40637, 'https://ror.org/00r96e843', 'en', 1, 'https://ror.org/00r96e843 Government of Kerala കേരള സർക്കാർ'), (40638, 'https://ror.org/00ra6qr58', 'en', 1, 'https://ror.org/00ra6qr58 Greenland Government'), (40639, 'https://ror.org/00ra7nj09', 'en', 1, 'https://ror.org/00ra7nj09 Minnesota Department of Commerce'), (40640, 'https://ror.org/00ra8jw08', 'no_lang_code', 1, 'https://ror.org/00ra8jw08 Porsolt (France)'), (40641, 'https://ror.org/00rb16m44', 'en', 1, 'https://ror.org/00rb16m44 Emberi Erőforrások Minisztérium Ministry of Human Capacities'), (40642, 'https://ror.org/00rfy7667', 'en', 1, 'https://ror.org/00rfy7667 Accademia di Belle Arti di Brera Brera Academy'), (40643, 'https://ror.org/00rj4dg52', 'en', 1, 'https://ror.org/00rj4dg52 Cambridge–MIT Institute'), (40644, 'https://ror.org/00rmfhk22', 'en', 1, 'https://ror.org/00rmfhk22 Cuiavian University Kujawska Szkoła Wyższa we Włocławku'), (40645, 'https://ror.org/00rnmt205', 'fr', 1, 'https://ror.org/00rnmt205 Institut National de la Recherche Agronomique du Niger'), (40646, 'https://ror.org/00rpc7w94', 'en', 1, 'https://ror.org/00rpc7w94 National Institute of Technical Teachers Training and Research'), (40647, 'https://ror.org/00rq8ty33', 'en', 1, 'https://ror.org/00rq8ty33 National Research Centre for Banana'), (40648, 'https://ror.org/00rqyj043', 'no_lang_code', 1, 'https://ror.org/00rqyj043 AquAgri Processing Private Limited (India)'), (40649, 'https://ror.org/00rr9fv20', 'no_lang_code', 1, 'https://ror.org/00rr9fv20 Vulcan (United States)'), (40650, 'https://ror.org/00rs33k88', 'en', 1, 'https://ror.org/00rs33k88 Eastern Deanery AIDS Relief Program'), (40651, 'https://ror.org/00rvy3n84', 'en', 1, 'https://ror.org/00rvy3n84 Iolanthe Midwifery Trust'), (40652, 'https://ror.org/00rw4xa44', 'no_lang_code', 1, 'https://ror.org/00rw4xa44 Kemetco Research (Canada)'), (40653, 'https://ror.org/00rw7g836', 'no_lang_code', 1, 'https://ror.org/00rw7g836 Suez (Australia)'), (40654, 'https://ror.org/00rwrmx36', 'en', 1, 'https://ror.org/00rwrmx36 Ethiopian Medical Association'), (40655, 'https://ror.org/00rx3ej27', 'en', 1, 'https://ror.org/00rx3ej27 Robert Kennedy College'), (40656, 'https://ror.org/00rxf7n07', 'en', 1, 'https://ror.org/00rxf7n07 Korea Agency for Infrastructure Technology Advancement'), (40657, 'https://ror.org/00rztgq82', 'no_lang_code', 1, 'https://ror.org/00rztgq82 Tampieri Financial Group (Italy)'), (40658, 'https://ror.org/00s13q694', 'fr', 1, 'https://ror.org/00s13q694 École Supérieure d''Ingénieurs des Travaux de la Construction de Metz'), (40659, 'https://ror.org/00s1xev78', 'en', 1, 'https://ror.org/00s1xev78 Biblioteca Nacional de Colombia National Library of Colombia'), (40660, 'https://ror.org/00s1ymf55', 'no_lang_code', 1, 'https://ror.org/00s1ymf55 ACRI-EC (Morocco)'), (40661, 'https://ror.org/00s2dxs29', 'en', 1, 'https://ror.org/00s2dxs29 East China Mineral Exploration & Development Bureau 江苏省有色金属华东地质勘查局'), (40662, 'https://ror.org/00s5ghb26', 'en', 1, 'https://ror.org/00s5ghb26 Municipality of Tai''an 泰安'), (40663, 'https://ror.org/00s653717', 'en', 1, 'https://ror.org/00s653717 WorldWide Information Services'), (40664, 'https://ror.org/00s6kha82', 'en', 1, 'https://ror.org/00s6kha82 Seoul Women''s College of Nursing'), (40665, 'https://ror.org/00s7bz409', 'no_lang_code', 1, 'https://ror.org/00s7bz409 Oerlikon (Switzerland)'), (40666, 'https://ror.org/00s8v8467', 'en', 1, 'https://ror.org/00s8v8467 Arizona Department of Economic Security'), (40667, 'https://ror.org/00s8w7498', 'en', 1, 'https://ror.org/00s8w7498 Aryavarta Space Organization'), (40668, 'https://ror.org/00sb8wv57', 'en', 1, 'https://ror.org/00sb8wv57 Kenya Institute for Public Policy Research and Analysis'), (40669, 'https://ror.org/00sd8zf10', 'en', 1, 'https://ror.org/00sd8zf10 University of Cape Town Fund'), (40670, 'https://ror.org/00sf50t55', 'en', 1, 'https://ror.org/00sf50t55 Kenya National Blood Transfusion Services'), (40671, 'https://ror.org/00sfwx025', 'en', 1, 'https://ror.org/00sfwx025 Ashkelon Academic College המכללה האקדמית אשקלון'), (40672, 'https://ror.org/00sgtz890', 'no_lang_code', 1, 'https://ror.org/00sgtz890 Malladi Drugs and Pharmaceuticals Limited (India)'), (40673, 'https://ror.org/00shj8q14', 'en', 1, 'https://ror.org/00shj8q14 European College of Business and Management'), (40674, 'https://ror.org/00skrfj45', 'en', 1, 'https://ror.org/00skrfj45 China Youth Development Foundation 中国青少年发展基金会'), (40675, 'https://ror.org/00snyqa86', 'pt', 1, 'https://ror.org/00snyqa86 Teledifusão de Macau 澳廣視'), (40676, 'https://ror.org/00sqv6z18', 'en', 1, 'https://ror.org/00sqv6z18 Virginia College'), (40677, 'https://ror.org/00sr42d65', 'no_lang_code', 1, 'https://ror.org/00sr42d65 Conseillers en gestion et informatique Consultant To Government and Industry (United Kingdom)'), (40678, 'https://ror.org/00srhem84', 'en', 1, 'https://ror.org/00srhem84 Hugh Wooding Law School'), (40679, 'https://ror.org/00ss2rp50', 'fr', 1, 'https://ror.org/00ss2rp50 Direction de la Météorologie Nationale du Niger'), (40680, 'https://ror.org/00ssjpk84', 'no_lang_code', 1, 'https://ror.org/00ssjpk84 L&S Consulting (South Africa)'), (40681, 'https://ror.org/00stpsa05', 'en', 1, 'https://ror.org/00stpsa05 Wisconsin School of Professional Psychology'), (40682, 'https://ror.org/00svp7168', 'no_lang_code', 1, 'https://ror.org/00svp7168 Capital One (United States)'), (40683, 'https://ror.org/00sw9kj55', 'en', 1, 'https://ror.org/00sw9kj55 Paier College of Art Inc'), (40684, 'https://ror.org/00sxn7a20', 'en', 1, 'https://ror.org/00sxn7a20 Korea Human Resource Development Institute for Health and Welfare'), (40685, 'https://ror.org/00t1pfq43', 'no_lang_code', 1, 'https://ror.org/00t1pfq43 Shanghai CASB Biotechnology (China) 上海中科伍佰豪生物工程有限公司'), (40686, 'https://ror.org/00t1yh273', 'en', 1, 'https://ror.org/00t1yh273 Jiangsu Provincial Meteorological Bureau 江苏省气象台'), (40687, 'https://ror.org/00t2kp174', 'en', 1, 'https://ror.org/00t2kp174 HSBC'), (40688, 'https://ror.org/00t2tkn41', 'no_lang_code', 1, 'https://ror.org/00t2tkn41 Cyber-Dynamics (United States)'), (40689, 'https://ror.org/00t5pe133', 'en', 1, 'https://ror.org/00t5pe133 National Environment Management Council'), (40690, 'https://ror.org/00t625d81', 'no_lang_code', 1, 'https://ror.org/00t625d81 John Deere (United States)'), (40691, 'https://ror.org/00t6bvs64', 'en', 1, 'https://ror.org/00t6bvs64 National Heritage Council'), (40692, 'https://ror.org/00t7t9a43', 'en', 1, 'https://ror.org/00t7t9a43 Institute for Design Problems in Microelectronics Институт проблем проектирования в микроэлектронике'), (40693, 'https://ror.org/00t93jm73', 'nl', 1, 'https://ror.org/00t93jm73 Lentis'), (40694, 'https://ror.org/00tc79f78', 'en', 1, 'https://ror.org/00tc79f78 Platt College Aurora'), (40695, 'https://ror.org/00tf2g326', 'en', 1, 'https://ror.org/00tf2g326 Bolton Sixth Form College'), (40696, 'https://ror.org/00tf9x563', 'en', 1, 'https://ror.org/00tf9x563 Arts²'), (40697, 'https://ror.org/00tgr2h49', 'en', 1, 'https://ror.org/00tgr2h49 Computer Equipment and Technologies'), (40698, 'https://ror.org/00tm7y673', 'en', 1, 'https://ror.org/00tm7y673 Methodist Church in Zimbabwe'), (40699, 'https://ror.org/00tnby758', 'lt', 1, 'https://ror.org/00tnby758 V. A. Graičiūno Aukštoji Vadybos Mokykla'), (40700, 'https://ror.org/00tnh9n90', 'no_lang_code', 1, 'https://ror.org/00tnh9n90 Emami (India)'), (40701, 'https://ror.org/00tnkbn59', 'en', 1, 'https://ror.org/00tnkbn59 Institute of Archaeology Федеральное государственное бюджетное учреждение науки Институт археологии Российской академии наук'), (40702, 'https://ror.org/00tnmk453', 'no_lang_code', 1, 'https://ror.org/00tnmk453 NTPC Consultancy (India)'), (40703, 'https://ror.org/00tp13k20', 'en', 1, 'https://ror.org/00tp13k20 Political Development Forum'), (40704, 'https://ror.org/00tqb5b32', 'en', 1, 'https://ror.org/00tqb5b32 Grace School of Theology'), (40705, 'https://ror.org/00tqkxb21', 'en', 1, 'https://ror.org/00tqkxb21 Forest Research Institute वन अनुसंधान संस्थान'), (40706, 'https://ror.org/00tr1bg48', 'en', 1, 'https://ror.org/00tr1bg48 College of Business and Technology'), (40707, 'https://ror.org/00ts6eq50', 'en', 1, 'https://ror.org/00ts6eq50 Duval County Public Schools'), (40708, 'https://ror.org/00twbjb24', 'en', 1, 'https://ror.org/00twbjb24 Sowela Technical Community College'), (40709, 'https://ror.org/00txhpa83', 'en', 1, 'https://ror.org/00txhpa83 RFH - University of Applied Sciences Cologne Rheinische Fachhochschule Köln'), (40710, 'https://ror.org/00txjny54', 'en', 1, 'https://ror.org/00txjny54 Cree Board of Health and Social Services of James Bay'), (40711, 'https://ror.org/00tyghb97', 'no_lang_code', 1, 'https://ror.org/00tyghb97 RefleXion Medical (United States)'), (40712, 'https://ror.org/00v0vvh64', 'nl', 1, 'https://ror.org/00v0vvh64 Tactus Verslavingszorg'), (40713, 'https://ror.org/00v3tjq70', 'en', 1, 'https://ror.org/00v3tjq70 Dairy Management'), (40714, 'https://ror.org/00v43qg93', 'en', 1, 'https://ror.org/00v43qg93 San Diego Christian College'), (40715, 'https://ror.org/00v75kn09', 'no_lang_code', 1, 'https://ror.org/00v75kn09 TogaLabs (South Africa)'), (40716, 'https://ror.org/00v9zm431', 'es', 1, 'https://ror.org/00v9zm431 Hospital Vicente Corral Moscoso'), (40717, 'https://ror.org/00vc8ca13', 'en', 1, 'https://ror.org/00vc8ca13 Tabor College'), (40718, 'https://ror.org/00vcgxy32', 'pt', 1, 'https://ror.org/00vcgxy32 Faculdade Ruy Barbosa'), (40719, 'https://ror.org/00vcnds94', 'de', 1, 'https://ror.org/00vcnds94 Philosophisch-Theologische Hochschule Benediktbeuern'), (40720, 'https://ror.org/00vcvxb53', 'en', 1, 'https://ror.org/00vcvxb53 Centre for Health Solutions'), (40721, 'https://ror.org/00vd2h880', 'en', 1, 'https://ror.org/00vd2h880 Catholic University of Applied Sciences Freiburg Katholische Hochschule Freiburg'), (40722, 'https://ror.org/00ve6e186', 'en', 1, 'https://ror.org/00ve6e186 Australian Bureau of Statistics'), (40723, 'https://ror.org/00verxq29', 'en', 1, 'https://ror.org/00verxq29 A.E. Favorsky Irkutsk Institute of Chemistry Иркутский институт химии им. А.Е.Фаворского Сибирского отделения Российской академии наук'), (40724, 'https://ror.org/00vf1vw09', 'es', 1, 'https://ror.org/00vf1vw09 Universidad de La Salle Bajío'), (40725, 'https://ror.org/00vgtfh11', 'en', 1, 'https://ror.org/00vgtfh11 National Human Rights Commission of Korea 국가인권위원회'), (40726, 'https://ror.org/00vh6ck95', 'en', 1, 'https://ror.org/00vh6ck95 J F Ingram State Technical College'), (40727, 'https://ror.org/00vhg8h29', 'en', 1, 'https://ror.org/00vhg8h29 Korea Health Personnel Licensing Examination Institute 한국보건의료인국가시험원'), (40728, 'https://ror.org/00vhmxj78', 'en', 1, 'https://ror.org/00vhmxj78 Trocaire College'), (40729, 'https://ror.org/00vhvv548', 'no_lang_code', 1, 'https://ror.org/00vhvv548 Andersen (United States)'), (40730, 'https://ror.org/00vj60w13', 'no_lang_code', 1, 'https://ror.org/00vj60w13 Piramal (India)'), (40731, 'https://ror.org/00vk6ps98', 'en', 1, 'https://ror.org/00vk6ps98 Theatre College Luben Groys Театрален колеж Любен Гройс'), (40732, 'https://ror.org/00vkbtf98', 'de', 1, 'https://ror.org/00vkbtf98 Wilhelm Büchner Hochschule'), (40733, 'https://ror.org/00vkpzj58', 'en', 1, 'https://ror.org/00vkpzj58 Malabar Medical College Hospital and Research Centre മലബാർ മെഡിക്കൽ കോളജ്'), (40734, 'https://ror.org/00vkyb445', 'en', 1, 'https://ror.org/00vkyb445 Texas Board of Nursing'), (40735, 'https://ror.org/00vn6kg36', 'en', 1, 'https://ror.org/00vn6kg36 Becker College'), (40736, 'https://ror.org/00vnat122', 'en', 1, 'https://ror.org/00vnat122 China Graduate School of Theology 中國神學研究院'), (40737, 'https://ror.org/00vtmxd94', 'en', 1, 'https://ror.org/00vtmxd94 Terna Dental College and Hospital'), (40738, 'https://ror.org/00vtr6j87', 'en', 1, 'https://ror.org/00vtr6j87 Myotubular Trust'), (40739, 'https://ror.org/00vvdxm97', 'no_lang_code', 1, 'https://ror.org/00vvdxm97 Grupo João Ferreira dos Santos (Mozambique)'), (40740, 'https://ror.org/00vvhe852', 'en', 1, 'https://ror.org/00vvhe852 California College San Diego'), (40741, 'https://ror.org/00vwzpd62', 'no_lang_code', 1, 'https://ror.org/00vwzpd62 American Journal Experts (United States)'), (40742, 'https://ror.org/00vxar649', 'it', 1, 'https://ror.org/00vxar649 Accademia di Belle Arti di Macerata'), (40743, 'https://ror.org/00vxdmt81', 'en', 1, 'https://ror.org/00vxdmt81 Christian Council of Tanzania'), (40744, 'https://ror.org/00vyqsz57', 'no_lang_code', 1, 'https://ror.org/00vyqsz57 Shanghai Genon Biological Products (China) 上海转基因研究中心'), (40745, 'https://ror.org/00vzha967', 'en', 1, 'https://ror.org/00vzha967 Henderson Community College'), (40746, 'https://ror.org/00w07t135', 'en', 1, 'https://ror.org/00w07t135 Friends of the Earth-Ghana'), (40747, 'https://ror.org/00w0qep84', 'en', 1, 'https://ror.org/00w0qep84 Institute of Intelligent Machines 中国科学院合肥智能机械研究所'), (40748, 'https://ror.org/00w1nhp77', 'en', 1, 'https://ror.org/00w1nhp77 Union of Arab Chemists إتحاد الكيميائيين العرب'), (40749, 'https://ror.org/00w4m9556', 'en', 1, 'https://ror.org/00w4m9556 Human Resources Professionals Association'), (40750, 'https://ror.org/00w6thw04', 'en', 1, 'https://ror.org/00w6thw04 Ministry of Environment and Natural Resources & Regional Development Authorities'), (40751, 'https://ror.org/00w793a39', 'en', 1, 'https://ror.org/00w793a39 Livestock Improvement Corporation'), (40752, 'https://ror.org/00w7d0n34', 'no_lang_code', 1, 'https://ror.org/00w7d0n34 WITF (United States)'), (40753, 'https://ror.org/00w7etd19', 'en', 1, 'https://ror.org/00w7etd19 Independent Dance'), (40754, 'https://ror.org/00wa9t836', 'en', 1, 'https://ror.org/00wa9t836 Chief Minister Treasury and Economic Development Directorate'), (40755, 'https://ror.org/00wb8n271', 'en', 1, 'https://ror.org/00wb8n271 Private Pädagogische Hochschule der Diözese Linz Private University College of Education of the Diocese of Linz'), (40756, 'https://ror.org/00wcxq223', 'en', 1, 'https://ror.org/00wcxq223 Rajamangala University of Technology Krungthep'), (40757, 'https://ror.org/00wdghj92', 'en', 1, 'https://ror.org/00wdghj92 North Shore Community College'), (40758, 'https://ror.org/00we1pa83', 'pt', 1, 'https://ror.org/00we1pa83 Inov Inesc Inovação, Instituto de Novas Tecnologias'), (40759, 'https://ror.org/00wf4k745', 'en', 1, 'https://ror.org/00wf4k745 Alytaus Kolegija Alytus College'), (40760, 'https://ror.org/00wfve797', 'en', 1, 'https://ror.org/00wfve797 Institute of Sociology Институт социологии РАН'), (40761, 'https://ror.org/00wg8t158', 'no_lang_code', 1, 'https://ror.org/00wg8t158 Sugal Group (Portugal)'), (40762, 'https://ror.org/00wh1y768', 'en', 1, 'https://ror.org/00wh1y768 Department of Education Tasmania'), (40763, 'https://ror.org/00wj0ge55', 'en', 1, 'https://ror.org/00wj0ge55 New Jersey Council on Developmental Disabilities'), (40764, 'https://ror.org/00wm8m174', 'no_lang_code', 1, 'https://ror.org/00wm8m174 Synthomer (United Kingdom)'), (40765, 'https://ror.org/00wp2bj27', 'en', 1, 'https://ror.org/00wp2bj27 Institute of Chemistry, Far Eastern Branch of the Russian Academy of Sciences'), (40766, 'https://ror.org/00wqess70', 'en', 1, 'https://ror.org/00wqess70 St. Vincent de Paul Regional Seminary'), (40767, 'https://ror.org/00wqj7c25', 'no_lang_code', 1, 'https://ror.org/00wqj7c25 Tupperware Brands (United States)'), (40768, 'https://ror.org/00wrbf093', 'en', 1, 'https://ror.org/00wrbf093 OPEC Fund for International Development'), (40769, 'https://ror.org/00wrwqa33', 'en', 1, 'https://ror.org/00wrwqa33 Indian Institute of Oilseeds Research भाकृअनुप - भारतीय तिलहन अनुसंधान संस्थान'), (40770, 'https://ror.org/00wrxrh45', 'fr', 1, 'https://ror.org/00wrxrh45 Institut Régional d''Administration de Metz'), (40771, 'https://ror.org/00ws8h732', 'no_lang_code', 1, 'https://ror.org/00ws8h732 Tyson Foods (United States)'), (40772, 'https://ror.org/00ws9ra62', 'no_lang_code', 1, 'https://ror.org/00ws9ra62 Netris Pharma (France)'), (40773, 'https://ror.org/00wsjjq14', 'en', 1, 'https://ror.org/00wsjjq14 Providence Newberg Medical Center'), (40774, 'https://ror.org/00wsrxw08', 'en', 1, 'https://ror.org/00wsrxw08 Rwanda Meteorological Service'), (40775, 'https://ror.org/00wzvx415', 'en', 1, 'https://ror.org/00wzvx415 National Council for Cement and Building Materials'), (40776, 'https://ror.org/00x0rjj17', 'en', 1, 'https://ror.org/00x0rjj17 Montana Space Grant Consortium'), (40777, 'https://ror.org/00x0vxx91', 'en', 1, 'https://ror.org/00x0vxx91 Institute of Physics and Technology Физико-технологического института'), (40778, 'https://ror.org/00x4w7v32', 'en', 1, 'https://ror.org/00x4w7v32 Netwas Uganda'), (40779, 'https://ror.org/00x5wty96', 'en', 1, 'https://ror.org/00x5wty96 Redcar & Cleveland College'), (40780, 'https://ror.org/00x6h5n95', 'en', 1, 'https://ror.org/00x6h5n95 Dryad Digital Repository'), (40781, 'https://ror.org/00x6zfm71', 'en', 1, 'https://ror.org/00x6zfm71 Florida Gateway College'), (40782, 'https://ror.org/00x7b5g69', 'no_lang_code', 1, 'https://ror.org/00x7b5g69 Moog (United States)'), (40783, 'https://ror.org/00x8xyn30', 'no_lang_code', 1, 'https://ror.org/00x8xyn30 Lanco Solar (India)'), (40784, 'https://ror.org/00x90x382', 'en', 1, 'https://ror.org/00x90x382 Euro-India Research Centre'), (40785, 'https://ror.org/00x9zs206', 'en', 1, 'https://ror.org/00x9zs206 Velammal Medical College Hospital and Research Institute'), (40786, 'https://ror.org/00xas1432', 'en', 1, 'https://ror.org/00xas1432 Mildmay Uganda'), (40787, 'https://ror.org/00xdt7j93', 'en', 1, 'https://ror.org/00xdt7j93 United Nations Children''s Fund Zambia'), (40788, 'https://ror.org/00xh26g31', 'fr', 1, 'https://ror.org/00xh26g31 Office National d''électricité, Office National de l''Electricite et de l''Eau Potable'), (40789, 'https://ror.org/00xn8e010', 'es', 1, 'https://ror.org/00xn8e010 Asociación para la Conservación de la Cuenca Amazónica'), (40790, 'https://ror.org/00xp6a578', 'en', 1, 'https://ror.org/00xp6a578 Northeastern Junior College'), (40791, 'https://ror.org/00xphjb32', 'en', 1, 'https://ror.org/00xphjb32 Queen’s Nursing Institute Scotland'), (40792, 'https://ror.org/00xv87230', 'en', 1, 'https://ror.org/00xv87230 Church of South India Hospital'), (40793, 'https://ror.org/00xwm9r16', 'en', 1, 'https://ror.org/00xwm9r16 Network for Water and Sanitation International'), (40794, 'https://ror.org/00xwxpw14', 'no_lang_code', 1, 'https://ror.org/00xwxpw14 FRAUDetect (United States)'), (40795, 'https://ror.org/00xx4s907', 'en', 1, 'https://ror.org/00xx4s907 Sarum College'), (40796, 'https://ror.org/00xz0ff56', 'en', 1, 'https://ror.org/00xz0ff56 Institute of Agricultural Economics and Development 中国农业科学院农业经济与发展研究所'), (40797, 'https://ror.org/00y0jw647', 'pt', 1, 'https://ror.org/00y0jw647 Hospital da Senhora da Oliveira Guimarães'), (40798, 'https://ror.org/00y0xzp63', 'en', 1, 'https://ror.org/00y0xzp63 Lassen Community College'), (40799, 'https://ror.org/00y19mj60', 'en', 1, 'https://ror.org/00y19mj60 Department of Environment and Conservation'), (40800, 'https://ror.org/00y1dzm96', 'en', 1, 'https://ror.org/00y1dzm96 Institute of Petroleum Geology and Geophysics Институт нефтегазовой геологии и геофизики имени А. А. Трофимука СО РАН'), (40801, 'https://ror.org/00y2ynd26', 'en', 1, 'https://ror.org/00y2ynd26 Saskatchewan Arts Board'), (40802, 'https://ror.org/00y3pb435', 'en', 1, 'https://ror.org/00y3pb435 Provo College'), (40803, 'https://ror.org/00y3r0391', 'fr', 1, 'https://ror.org/00y3r0391 La Cambre'), (40804, 'https://ror.org/00y5kz467', 'en', 1, 'https://ror.org/00y5kz467 Frontier Lifeline Hospital'), (40805, 'https://ror.org/00y61sp67', 'no_lang_code', 1, 'https://ror.org/00y61sp67 JSW Group (India)'), (40806, 'https://ror.org/00y7x8f51', 'no_lang_code', 1, 'https://ror.org/00y7x8f51 Vodafone (Portugal)'), (40807, 'https://ror.org/00y8tpp02', 'fr', 1, 'https://ror.org/00y8tpp02 Laboratoire National de Santé Publique du Congo'), (40808, 'https://ror.org/00y9yvc25', 'en', 1, 'https://ror.org/00y9yvc25 Action Duchenne'), (40809, 'https://ror.org/00ya5c561', 'de', 1, 'https://ror.org/00ya5c561 Bundesinstitut für Sportwissenschaft'), (40810, 'https://ror.org/00yb6qh25', 'en', 1, 'https://ror.org/00yb6qh25 Beit Trust'), (40811, 'https://ror.org/00ybkrr33', 'en', 1, 'https://ror.org/00ybkrr33 Ripon College Cuddesdon'), (40812, 'https://ror.org/00ycj0006', 'en', 1, 'https://ror.org/00ycj0006 Institute of Economic Growth'), (40813, 'https://ror.org/00ycyk215', 'no_lang_code', 1, 'https://ror.org/00ycyk215 Chemtrix (Netherlands)'), (40814, 'https://ror.org/00ydy7x73', 'en', 1, 'https://ror.org/00ydy7x73 University of the Southwest'), (40815, 'https://ror.org/00yew9b22', 'en', 1, 'https://ror.org/00yew9b22 Fondo Internazionale per lo Sviluppo Agricolo Fonds International de Développement Agricole International Fund for Agricultural Development'), (40816, 'https://ror.org/00ygy3d85', 'it', 1, 'https://ror.org/00ygy3d85 Institute for Applied Mathematics Mauro Picone Istituto per le Applicazioni del Calcolo Mauro Picone'), (40817, 'https://ror.org/00yh09097', 'en', 1, 'https://ror.org/00yh09097 Del Valle Independent School District'), (40818, 'https://ror.org/00yjjd343', 'en', 1, 'https://ror.org/00yjjd343 Uummannaq Polar Institute'), (40819, 'https://ror.org/00ym2nt63', 'it', 1, 'https://ror.org/00ym2nt63 Conservatorio di Musica G.F. Ghedini'), (40820, 'https://ror.org/00ymj2634', 'en', 1, 'https://ror.org/00ymj2634 United Services Automobile Association'), (40821, 'https://ror.org/00ymrc254', 'en', 1, 'https://ror.org/00ymrc254 Curtis Institute of Music'), (40822, 'https://ror.org/00yn60108', 'en', 1, 'https://ror.org/00yn60108 Australian Mathematical Sciences Institute'), (40823, 'https://ror.org/00yqvs913', 'en', 1, 'https://ror.org/00yqvs913 Scripture Union'), (40824, 'https://ror.org/00yrwkd81', 'fr', 1, 'https://ror.org/00yrwkd81 Ministère de la Santé'), (40825, 'https://ror.org/00ys2za03', 'en', 1, 'https://ror.org/00ys2za03 Montana Department of Transportation'), (40826, 'https://ror.org/00yte8n94', 'en', 1, 'https://ror.org/00yte8n94 Church Divinity School of the Pacific'), (40827, 'https://ror.org/00yv7s489', 'en', 1, 'https://ror.org/00yv7s489 Ministry of Health and Sanitation'), (40828, 'https://ror.org/00yw25n09', 'en', 1, 'https://ror.org/00yw25n09 Shanghai Veterinary Research Institute 中国农业科学院上海兽医研究所'), (40829, 'https://ror.org/00yw34h52', 'fr', 1, 'https://ror.org/00yw34h52 Institut Supérieur d''Électronique de Paris'), (40830, 'https://ror.org/00z0g8n94', 'en', 1, 'https://ror.org/00z0g8n94 Kalmyk Institute for Humanities Research Калмыцкий институт гуманитарных исследований'), (40831, 'https://ror.org/00z0n4g71', 'en', 1, 'https://ror.org/00z0n4g71 PLA Electronic Engineering Institute 中国人民解放军电子工程学院'), (40832, 'https://ror.org/00z2dj373', 'en', 1, 'https://ror.org/00z2dj373 A Night For Sight'), (40833, 'https://ror.org/00z3ptn78', 'en', 1, 'https://ror.org/00z3ptn78 Micro Insurance Academy'), (40834, 'https://ror.org/00z6sta78', 'en', 1, 'https://ror.org/00z6sta78 Citrus Growers Association'), (40835, 'https://ror.org/00z79gn62', 'en', 1, 'https://ror.org/00z79gn62 WaterAid'), (40836, 'https://ror.org/00zagyr65', 'en', 1, 'https://ror.org/00zagyr65 Forestry Research Institute of Nigeria'), (40837, 'https://ror.org/00zbhen47', 'de', 1, 'https://ror.org/00zbhen47 Berlin-Weissensee Art Academy Kunsthochschule Berlin-Weißensee'), (40838, 'https://ror.org/00zbk1w77', 'no_lang_code', 1, 'https://ror.org/00zbk1w77 Hess (United States)'), (40839, 'https://ror.org/00zbydh86', 'en', 1, 'https://ror.org/00zbydh86 Truett-McConnell College'), (40840, 'https://ror.org/00zfh7f80', 'en', 1, 'https://ror.org/00zfh7f80 Korea Disabled People s Development Institute 한국장애인개발원'), (40841, 'https://ror.org/00zh1bv32', 'en', 1, 'https://ror.org/00zh1bv32 DuBois Business College'), (40842, 'https://ror.org/00zhf6p05', 'en', 1, 'https://ror.org/00zhf6p05 Reid State Technical College'), (40843, 'https://ror.org/00zhwjs36', 'en', 1, 'https://ror.org/00zhwjs36 Center for Advancing Innovation'), (40844, 'https://ror.org/00zjgt856', 'en', 1, 'https://ror.org/00zjgt856 Guangxi Zhuang Autonomous Region Museum 广西壮族自治区自然博物馆'), (40845, 'https://ror.org/00zkesn06', 'en', 1, 'https://ror.org/00zkesn06 Connecticut Department of Agriculture'), (40846, 'https://ror.org/00zkm9w64', 'no_lang_code', 1, 'https://ror.org/00zkm9w64 Emcure Pharmaceuticals (India)'), (40847, 'https://ror.org/00zmy1708', 'en', 1, 'https://ror.org/00zmy1708 Maryhill School of Theology'), (40848, 'https://ror.org/00znwdt50', 'en', 1, 'https://ror.org/00znwdt50 Newfoundland and Labrador Arts Council'), (40849, 'https://ror.org/00zpk0t94', 'no_lang_code', 1, 'https://ror.org/00zpk0t94 Arctic Portal'), (40850, 'https://ror.org/00ztehj94', 'en', 1, 'https://ror.org/00ztehj94 Swami Ramanand Teerth Rural Medical College'), (40851, 'https://ror.org/00zv0wd17', 'en', 1, 'https://ror.org/00zv0wd17 Center for Information Technology Research in the Interest of Society'), (40852, 'https://ror.org/0100cvt49', 'en', 1, 'https://ror.org/0100cvt49 Centre national du cuir et de la chaussure National Center for Leather and Shoes المركز الوطني للجلود والأحذية'), (40853, 'https://ror.org/0101we292', 'en', 1, 'https://ror.org/0101we292 National Centre of Excellence in Analytical Chemistry'), (40854, 'https://ror.org/01029e417', 'en', 1, 'https://ror.org/01029e417 Carver Bible College'), (40855, 'https://ror.org/01047m564', 'en', 1, 'https://ror.org/01047m564 Flower Valley Conservation Trust'), (40856, 'https://ror.org/01048jt31', 'en', 1, 'https://ror.org/01048jt31 Seacoast Career Schools'), (40857, 'https://ror.org/0104aqe39', 'en', 1, 'https://ror.org/0104aqe39 Longy School of Music of Bard College'), (40858, 'https://ror.org/01064v583', 'en', 1, 'https://ror.org/01064v583 Gemological Institute of America'), (40859, 'https://ror.org/0107rkg57', 'nl', 1, 'https://ror.org/0107rkg57 GGZ Drenthe'), (40860, 'https://ror.org/010dgs567', 'no_lang_code', 1, 'https://ror.org/010dgs567 Deurali Janta Pharmaceuticals (Nepal)'), (40861, 'https://ror.org/010dgsx92', 'en', 1, 'https://ror.org/010dgsx92 Pulaski Technical College'), (40862, 'https://ror.org/010dzxm21', 'en', 1, 'https://ror.org/010dzxm21 Barton Peveril College'), (40863, 'https://ror.org/010e8pt90', 'no_lang_code', 1, 'https://ror.org/010e8pt90 Abu Dhabi National Oil (United Arab Emirates) شركة بترول أبوظبي الوطنية'), (40864, 'https://ror.org/010h4ee55', 'en', 1, 'https://ror.org/010h4ee55 Institute for Urban and Environmental Studies 中国社会科学院城市发展与环境研究所'), (40865, 'https://ror.org/010hxhm64', 'en', 1, 'https://ror.org/010hxhm64 Town Planning and Valuation Department'), (40866, 'https://ror.org/010jszw77', 'en', 1, 'https://ror.org/010jszw77 Delaware Space Grant Consortium'), (40867, 'https://ror.org/010paq956', 'en', 1, 'https://ror.org/010paq956 Yunnan Animal Science and Veterinary Institute 云南省畜牧兽医科学院'), (40868, 'https://ror.org/010w5pd13', 'en', 1, 'https://ror.org/010w5pd13 Kalahari Conservation Society'), (40869, 'https://ror.org/010x33r48', 'en', 1, 'https://ror.org/010x33r48 London Postgraduate Medical and Dental Education'), (40870, 'https://ror.org/0111cp837', 'en', 1, 'https://ror.org/0111cp837 Instytut Badań Systemowych Systems Research Institute'), (40871, 'https://ror.org/01126vz29', 'en', 1, 'https://ror.org/01126vz29 Headley Trust'), (40872, 'https://ror.org/0113pfa64', 'en', 1, 'https://ror.org/0113pfa64 Ministry of Government Legislation 법제처'), (40873, 'https://ror.org/0113xme87', 'en', 1, 'https://ror.org/0113xme87 Korea Energy Economics Institute 에너지경제연구원'), (40874, 'https://ror.org/0116zdb24', 'no_lang_code', 1, 'https://ror.org/0116zdb24 State Street (United States)'), (40875, 'https://ror.org/01184z192', 'en', 1, 'https://ror.org/01184z192 University of Dental Medicine at Mandalay'), (40876, 'https://ror.org/0118vk431', 'no_lang_code', 1, 'https://ror.org/0118vk431 DYNAMICS Scientific and Production Center (Russia) Научно-производственный центр Динамика'), (40877, 'https://ror.org/011aefy29', 'en', 1, 'https://ror.org/011aefy29 College of Nursing in Celje Visoka zdravstvena šola v Celju'), (40878, 'https://ror.org/011bhgb43', 'en', 1, 'https://ror.org/011bhgb43 Pacifica Graduate Institute'), (40879, 'https://ror.org/011bq0640', 'en', 1, 'https://ror.org/011bq0640 Ecole Supérieure des Industries Alimentaires de Tunis Higher Institute of Food Industries of Tunis'), (40880, 'https://ror.org/011fyh806', 'en', 1, 'https://ror.org/011fyh806 Raipur Municipal Corporation रायपुर नगर निगम'), (40881, 'https://ror.org/011gedn87', 'en', 1, 'https://ror.org/011gedn87 Sussex Downs College'), (40882, 'https://ror.org/011k8d702', 'no_lang_code', 1, 'https://ror.org/011k8d702 Mount Sylvia Diatomite (Australia)'), (40883, 'https://ror.org/011mmzv10', 'en', 1, 'https://ror.org/011mmzv10 Odessa College'), (40884, 'https://ror.org/011na1r14', 'en', 1, 'https://ror.org/011na1r14 New England School of Photography'), (40885, 'https://ror.org/011nbgj79', 'en', 1, 'https://ror.org/011nbgj79 Institute of Coal of the Siberian Branch of the RAS Федеральное государственное бюджетное учреждение науки Институт угля Сибирского отделения Российской академии наук'), (40886, 'https://ror.org/011npsm46', 'en', 1, 'https://ror.org/011npsm46 National Institute of Pharmaceutical Education and Research'), (40887, 'https://ror.org/011rbjx16', 'en', 1, 'https://ror.org/011rbjx16 New Jersey Department of Children and Families'), (40888, 'https://ror.org/011rcn817', 'en', 1, 'https://ror.org/011rcn817 Massasoit Community College'), (40889, 'https://ror.org/011sf9664', 'de', 1, 'https://ror.org/011sf9664 Museum am Schölerberg'), (40890, 'https://ror.org/011shyd31', 'en', 1, 'https://ror.org/011shyd31 St. Helena Hospital Foundation'), (40891, 'https://ror.org/011srkg41', 'en', 1, 'https://ror.org/011srkg41 National Institute Of Technology, Ishikawa College 石川工業高等専門学校'), (40892, 'https://ror.org/011v81t74', 'en', 1, 'https://ror.org/011v81t74 Shenzhen Academy of Inspection and Quarantine 深圳市检验检疫科学研究院'), (40893, 'https://ror.org/011vtgm04', 'en', 1, 'https://ror.org/011vtgm04 Missouri State University–West Plains'), (40894, 'https://ror.org/011vyws32', 'no_lang_code', 1, 'https://ror.org/011vyws32 Delta Information Systems (United States)'), (40895, 'https://ror.org/011w0zz81', 'en', 1, 'https://ror.org/011w0zz81 African Technology Policy Studies Network'), (40896, 'https://ror.org/011xh8y77', 'en', 1, 'https://ror.org/011xh8y77 Government Vellore Medical College'), (40897, 'https://ror.org/011ze6662', 'en', 1, 'https://ror.org/011ze6662 Harry J. Lloyd Charitable Trust'), (40898, 'https://ror.org/0120w5678', 'en', 1, 'https://ror.org/0120w5678 European Observatory on Health Systems and Policies'), (40899, 'https://ror.org/0121en785', 'pt', 1, 'https://ror.org/0121en785 Prefeitura do Município de São Paulo'), (40900, 'https://ror.org/0121whw78', 'en', 1, 'https://ror.org/0121whw78 Sergeev Institute of Environmental Geoscience Федеральное государственное бюджетное учреждение науки Институт геоэкологии им.Е.М.Сергеева Российской академии наук'); INSERT INTO `rors` VALUES (40901, 'https://ror.org/0122jkj38', 'no_lang_code', 1, 'https://ror.org/0122jkj38 Radiall (France)'), (40902, 'https://ror.org/0123m2387', 'en', 1, 'https://ror.org/0123m2387 Institute and Academy of Multimedia Inštitut in Akademija za Multimedije'), (40903, 'https://ror.org/01251sa74', 'en', 1, 'https://ror.org/01251sa74 Ministry for Foreign Affairs Utrikesdepartementet'), (40904, 'https://ror.org/01262d760', 'en', 1, 'https://ror.org/01262d760 CNI College'), (40905, 'https://ror.org/0128xcr10', 'en', 1, 'https://ror.org/0128xcr10 Clear Passage Physical Therapy'), (40906, 'https://ror.org/0129nkm21', 'en', 1, 'https://ror.org/0129nkm21 Big Sandy Community and Technical College'), (40907, 'https://ror.org/012a18r91', 'en', 1, 'https://ror.org/012a18r91 Sukachev Institute of Forest Института леса им. В. Н. Сукачева Сибирского отделения Российской академии наук'), (40908, 'https://ror.org/012c35a11', 'en', 1, 'https://ror.org/012c35a11 Missouri Department of Transportation'), (40909, 'https://ror.org/012ds9j70', 'no_lang_code', 1, 'https://ror.org/012ds9j70 ZMQ Software Systems (India)'), (40910, 'https://ror.org/012dywt31', 'en', 1, 'https://ror.org/012dywt31 Defence Laboratory Jodhpur रक्षा प्रयोगशाला जोधपुर'), (40911, 'https://ror.org/012fga139', 'en', 1, 'https://ror.org/012fga139 O''More College of Design'), (40912, 'https://ror.org/012hetj48', 'no_lang_code', 1, 'https://ror.org/012hetj48 Forum For Social Studies'), (40913, 'https://ror.org/012jge305', 'en', 1, 'https://ror.org/012jge305 Sotheby''s Institute of Art'), (40914, 'https://ror.org/012rn8104', 'no_lang_code', 1, 'https://ror.org/012rn8104 Tidewater (United States)'), (40915, 'https://ror.org/012rwzc24', 'no_lang_code', 1, 'https://ror.org/012rwzc24 Shanghai Biomodel Organism 上海南方模式生物科技发展有限公司'), (40916, 'https://ror.org/012s3vx96', 'en', 1, 'https://ror.org/012s3vx96 Saamelaisalueen Koulutuskeskus Sámi Education Institute'), (40917, 'https://ror.org/012sa7x09', 'en', 1, 'https://ror.org/012sa7x09 Eastfield College'), (40918, 'https://ror.org/012wk3x67', 'en', 1, 'https://ror.org/012wk3x67 Metro Transit'), (40919, 'https://ror.org/012wxwj57', 'es', 1, 'https://ror.org/012wxwj57 Universidad del Papaloapan'), (40920, 'https://ror.org/012xmyh22', 'no_lang_code', 1, 'https://ror.org/012xmyh22 31 Degrees (France)'), (40921, 'https://ror.org/012xv3367', 'en', 1, 'https://ror.org/012xv3367 Scientific Committee on Antarctic Research'), (40922, 'https://ror.org/0131gn249', 'en', 1, 'https://ror.org/0131gn249 Chosun University Hospital'), (40923, 'https://ror.org/0132gqh60', 'en', 1, 'https://ror.org/0132gqh60 Southwestern Baptist Theological Seminary'), (40924, 'https://ror.org/01337pb37', 'en', 1, 'https://ror.org/01337pb37 Military Technical College'), (40925, 'https://ror.org/0136vj189', 'no_lang_code', 1, 'https://ror.org/0136vj189 Power Grid Corporation (India)'), (40926, 'https://ror.org/0137p4457', 'en', 1, 'https://ror.org/0137p4457 Nashotah House Theological Seminary'), (40927, 'https://ror.org/0137z5x77', 'no_lang_code', 1, 'https://ror.org/0137z5x77 Broadcom (Canada)'), (40928, 'https://ror.org/0139q7h64', 'no_lang_code', 1, 'https://ror.org/0139q7h64 W.W Grainger (United States)'), (40929, 'https://ror.org/013am1j13', 'en', 1, 'https://ror.org/013am1j13 Rocky Mountain College of Art and Design'), (40930, 'https://ror.org/013b2jw60', 'en', 1, 'https://ror.org/013b2jw60 Georgia Space Grant Consortium'), (40931, 'https://ror.org/013c7pz75', 'no_lang_code', 1, 'https://ror.org/013c7pz75 Givaudan (France)'), (40932, 'https://ror.org/013cxrg50', 'en', 1, 'https://ror.org/013cxrg50 Larnaca College'), (40933, 'https://ror.org/013f0nb72', 'en', 1, 'https://ror.org/013f0nb72 Compton Community College District'), (40934, 'https://ror.org/013gvmj95', 'no_lang_code', 1, 'https://ror.org/013gvmj95 Hallmark Cards (United States)'), (40935, 'https://ror.org/013hg1t45', 'en', 1, 'https://ror.org/013hg1t45 Government of Tamil Nadu தமிழ்நாடு அரசு'), (40936, 'https://ror.org/013hjj010', 'en', 1, 'https://ror.org/013hjj010 Phillips Community College of the University of Arkansas'), (40937, 'https://ror.org/013jp2d40', 'en', 1, 'https://ror.org/013jp2d40 British School at Athens Βρετανική Σχολή Αθηνών'), (40938, 'https://ror.org/013k56n15', 'no_lang_code', 1, 'https://ror.org/013k56n15 Australian Wool Innovation (Australia)'), (40939, 'https://ror.org/013kb0k13', 'en', 1, 'https://ror.org/013kb0k13 China Waterborne Transport Research Institute 交通运输部水运科学研究所'), (40940, 'https://ror.org/013pjny96', 'en', 1, 'https://ror.org/013pjny96 Council for British Research in the Levant'), (40941, 'https://ror.org/013qy4n59', 'en', 1, 'https://ror.org/013qy4n59 Central Institute of Post-Harvest Engineering and Technology'), (40942, 'https://ror.org/013r05090', 'en', 1, 'https://ror.org/013r05090 Riverside College'), (40943, 'https://ror.org/013rsnt52', 'en', 1, 'https://ror.org/013rsnt52 Hazard Community and Technical College'), (40944, 'https://ror.org/013s2jj70', 'no_lang_code', 1, 'https://ror.org/013s2jj70 Hill Holliday (United States)'), (40945, 'https://ror.org/013s90815', 'en', 1, 'https://ror.org/013s90815 Lanzhou Institute of Husbandry and Pharmaceutical Sciences 中国农业科学院兰州畜牧与兽药研究所'), (40946, 'https://ror.org/013spkf41', 'en', 1, 'https://ror.org/013spkf41 Instituto da Defesa Nacional National Defense Institute'), (40947, 'https://ror.org/013t96v18', 'en', 1, 'https://ror.org/013t96v18 Biotechnology Research Center'), (40948, 'https://ror.org/013w40a11', 'no_lang_code', 1, 'https://ror.org/013w40a11 eNeura (United States)'), (40949, 'https://ror.org/013wq3j16', 'no_lang_code', 1, 'https://ror.org/013wq3j16 Shohoku College 湘北短期大学'), (40950, 'https://ror.org/013z3yn41', 'en', 1, 'https://ror.org/013z3yn41 Adana Bilim ve Teknloji Üniversitesi Adana Science and Technology University'), (40951, 'https://ror.org/0141xw169', 'en', 1, 'https://ror.org/0141xw169 Institute for Space Astrophysics and Planetology Istituto Di Astrofisica E Planetologia Spaziali'), (40952, 'https://ror.org/01422c992', 'en', 1, 'https://ror.org/01422c992 Minnesota State College-Southeast Technical'), (40953, 'https://ror.org/014303d61', 'en', 1, 'https://ror.org/014303d61 Ohio Department of Transportation'), (40954, 'https://ror.org/014319z45', 'en', 1, 'https://ror.org/014319z45 Cardinal Tien College of Healthcare and Management 耕莘健康管理專科學校'), (40955, 'https://ror.org/01434tj03', 'fr', 1, 'https://ror.org/01434tj03 Office National pour l''Environnement'), (40956, 'https://ror.org/0144edt49', 'en', 1, 'https://ror.org/0144edt49 Muskegon Community College'), (40957, 'https://ror.org/0145r0q31', 'fr', 1, 'https://ror.org/0145r0q31 Agence de Protection et d''Aménagement du Littoral'), (40958, 'https://ror.org/0149a7069', 'en', 1, 'https://ror.org/0149a7069 Advanced Foods and Materials Network'), (40959, 'https://ror.org/0149fbq67', 'it', 1, 'https://ror.org/0149fbq67 Conservatorio Statale di Musica A. Buzzolla'), (40960, 'https://ror.org/014bdwq31', 'en', 1, 'https://ror.org/014bdwq31 DKTE Society''s Textile and Engineering Institute'), (40961, 'https://ror.org/014ctt859', 'en', 1, 'https://ror.org/014ctt859 Birla Institute of Technology and Science - Hyderabad Campus'), (40962, 'https://ror.org/014dwa961', 'en', 1, 'https://ror.org/014dwa961 South Florida Bible College & Theological Seminary'), (40963, 'https://ror.org/014ezhs73', 'no_lang_code', 1, 'https://ror.org/014ezhs73 Pacific Shipyards (United States)'), (40964, 'https://ror.org/014fm3f82', 'en', 1, 'https://ror.org/014fm3f82 Kanawha County Schools'), (40965, 'https://ror.org/014hmqv77', 'en', 1, 'https://ror.org/014hmqv77 Dudley Group NHS Foundation Trust'), (40966, 'https://ror.org/014jj9v53', 'en', 1, 'https://ror.org/014jj9v53 Society for Nutrition Education and Health Action'), (40967, 'https://ror.org/014m1ef46', 'no_lang_code', 1, 'https://ror.org/014m1ef46 Mitsubishi Corporation (Japan) 三菱商事株式会社'), (40968, 'https://ror.org/014matr28', 'en', 1, 'https://ror.org/014matr28 United States Golf Association'), (40969, 'https://ror.org/014mx8j54', 'no_lang_code', 1, 'https://ror.org/014mx8j54 Devon Energy (United States)'), (40970, 'https://ror.org/014n3ck53', 'en', 1, 'https://ror.org/014n3ck53 Hudson Institute'), (40971, 'https://ror.org/014p3qz82', 'en', 1, 'https://ror.org/014p3qz82 Ministry of Public Administration জনপ্রশাসন মন্ত্রণালয়'), (40972, 'https://ror.org/014pn8930', 'en', 1, 'https://ror.org/014pn8930 National Blood Transfusion Service'), (40973, 'https://ror.org/014tm6y52', 'en', 1, 'https://ror.org/014tm6y52 Osaka Jonan Womens Junior College 大阪城南女子短期大学'), (40974, 'https://ror.org/014ty7t94', 'en', 1, 'https://ror.org/014ty7t94 African Forum for Agricultural Advisory Services'), (40975, 'https://ror.org/014vbqy29', 'en', 1, 'https://ror.org/014vbqy29 American Theatre Wing'), (40976, 'https://ror.org/014vrtf08', 'en', 1, 'https://ror.org/014vrtf08 Wade College'), (40977, 'https://ror.org/014vxaz07', 'en', 1, 'https://ror.org/014vxaz07 Nazarene Theological College'), (40978, 'https://ror.org/014w0p014', 'en', 1, 'https://ror.org/014w0p014 Hong Kong College of Technology 香港專業進修學校'), (40979, 'https://ror.org/014wxtx83', 'en', 1, 'https://ror.org/014wxtx83 Sightsavers'), (40980, 'https://ror.org/014y40p65', 'no_lang_code', 1, 'https://ror.org/014y40p65 H.B. Fuller (United States)'), (40981, 'https://ror.org/014zhhr61', 'en', 1, 'https://ror.org/014zhhr61 Belarusian Medical Academy of Post-Graduate Education Беларуская медыцынская акадэмія паслядыпломнай адукацыі'), (40982, 'https://ror.org/015455k47', 'en', 1, 'https://ror.org/015455k47 Kõrgem Usuteaduslik Seminar Tartu Theological Seminary'), (40983, 'https://ror.org/0155ftp45', 'en', 1, 'https://ror.org/0155ftp45 Mid Michigan Autism Association'), (40984, 'https://ror.org/0156dtt23', 'en', 1, 'https://ror.org/0156dtt23 Arts Council of Northern Ireland'), (40985, 'https://ror.org/0157ysg68', 'no_lang_code', 1, 'https://ror.org/0157ysg68 ETC East Africa (Kenya)'), (40986, 'https://ror.org/0158z1f36', 'en', 1, 'https://ror.org/0158z1f36 Pierce College'), (40987, 'https://ror.org/015a98c38', 'de', 1, 'https://ror.org/015a98c38 Accadis Hochschule Bad Homburg'), (40988, 'https://ror.org/015b60b88', 'en', 1, 'https://ror.org/015b60b88 Porterville College'), (40989, 'https://ror.org/015ddf565', 'en', 1, 'https://ror.org/015ddf565 Michigan Department of Military and Veterans Affairs'), (40990, 'https://ror.org/015dfn538', 'en', 1, 'https://ror.org/015dfn538 Turkish Armed Forces Türk Silahlı Kuvvetleri'), (40991, 'https://ror.org/015dhe595', 'en', 1, 'https://ror.org/015dhe595 Modibbo Adama University of Technology'), (40992, 'https://ror.org/015j7c446', 'en', 1, 'https://ror.org/015j7c446 Islamic Azad University of Najafabad دانشگاه آزاد اسلامی واحد نجفآباد'), (40993, 'https://ror.org/015jrdc82', 'en', 1, 'https://ror.org/015jrdc82 Consorci Sanitari del Maresme Maresme Health Consortium'), (40994, 'https://ror.org/015pmkr43', 'fr', 1, 'https://ror.org/015pmkr43 Haute École Pédagogique BEJUNE'), (40995, 'https://ror.org/015qf5s17', 'en', 1, 'https://ror.org/015qf5s17 Radom College Radomska Szkoła Wyższa'), (40996, 'https://ror.org/015s51n07', 'en', 1, 'https://ror.org/015s51n07 International Advanced Research Centre for Powder Metallurgy and New Materials'), (40997, 'https://ror.org/015sfke75', 'no_lang_code', 1, 'https://ror.org/015sfke75 Vivus (United States)'), (40998, 'https://ror.org/015tw5088', 'en', 1, 'https://ror.org/015tw5088 Regents Theological College'), (40999, 'https://ror.org/015v04m58', 'en', 1, 'https://ror.org/015v04m58 ICFAI Business School'), (41000, 'https://ror.org/015vgt264', 'en', 1, 'https://ror.org/015vgt264 Institute of Chemistry of High-Purity Substances them. G.G.Devyatyh Институт химии высокочистых веществ им'), (41001, 'https://ror.org/015w62071', 'no_lang_code', 1, 'https://ror.org/015w62071 Iran Khodro (Iran) ایران خودرو'), (41002, 'https://ror.org/015z60w50', 'en', 1, 'https://ror.org/015z60w50 Center for Advanced Legal Studies'), (41003, 'https://ror.org/015zbz228', 'en', 1, 'https://ror.org/015zbz228 Space Research Institute Інститут космічних досліджень'), (41004, 'https://ror.org/01606az08', 'en', 1, 'https://ror.org/01606az08 Education Labour Relations Council'), (41005, 'https://ror.org/0160f3285', 'en', 1, 'https://ror.org/0160f3285 Council of Independent Colleges'), (41006, 'https://ror.org/0162ehq15', 'en', 1, 'https://ror.org/0162ehq15 Texas Juvenile Justice Department'), (41007, 'https://ror.org/0163kd003', 'en', 1, 'https://ror.org/0163kd003 Pastwowa Wysza Szkoa Zawodowa im. Witelona w Legnicy Witelon State University of Applied Sciences in Legnica'), (41008, 'https://ror.org/0163r0829', 'en', 1, 'https://ror.org/0163r0829 Polytechnic Marko Marulic Veleučilište "Marko Marulić"'), (41009, 'https://ror.org/0167m9538', 'en', 1, 'https://ror.org/0167m9538 African Training and Research Centre in Administration for Development Centre Africain de Formation et de Recherche Administratives pour le Développement'), (41010, 'https://ror.org/0167nty12', 'fr', 1, 'https://ror.org/0167nty12 École des Avocats du Grand Ouest'), (41011, 'https://ror.org/0167r2g29', 'de', 1, 'https://ror.org/0167r2g29 Merz Akademie'), (41012, 'https://ror.org/016936j45', 'en', 1, 'https://ror.org/016936j45 Association of State Road Transport Undertakings'), (41013, 'https://ror.org/0169ypx19', 'en', 1, 'https://ror.org/0169ypx19 South Dakota Space Grant Consortium'), (41014, 'https://ror.org/016a6js89', 'en', 1, 'https://ror.org/016a6js89 Richmont Graduate University'), (41015, 'https://ror.org/016aq6r42', 'en', 1, 'https://ror.org/016aq6r42 Mahindra United World College India'), (41016, 'https://ror.org/016b0by26', 'en', 1, 'https://ror.org/016b0by26 Monroe County Community College'), (41017, 'https://ror.org/016bssv73', 'en', 1, 'https://ror.org/016bssv73 Southern African Clothing & Textile Workers’ Union'), (41018, 'https://ror.org/016d6bq56', 'en', 1, 'https://ror.org/016d6bq56 Aeronautical Development Agency'), (41019, 'https://ror.org/016gc3g35', 'en', 1, 'https://ror.org/016gc3g35 San Francisco Conservatory of Music'), (41020, 'https://ror.org/016j33873', 'no_lang_code', 1, 'https://ror.org/016j33873 Crocus Technology (France)'), (41021, 'https://ror.org/016j6dw22', 'en', 1, 'https://ror.org/016j6dw22 Burlington College'), (41022, 'https://ror.org/016kfbw71', 'en', 1, 'https://ror.org/016kfbw71 MEF International School'), (41023, 'https://ror.org/016nn4m97', 'en', 1, 'https://ror.org/016nn4m97 National Root Crops Research Institute'), (41024, 'https://ror.org/016q7rz35', 'en', 1, 'https://ror.org/016q7rz35 Notre Dame High School'), (41025, 'https://ror.org/016rj7614', 'no_lang_code', 1, 'https://ror.org/016rj7614 Coffey International (Australia)'), (41026, 'https://ror.org/016tawm39', 'en', 1, 'https://ror.org/016tawm39 Bangalore Baptist Hospital'), (41027, 'https://ror.org/016vvkz13', 'en', 1, 'https://ror.org/016vvkz13 European Patent Organisation'), (41028, 'https://ror.org/016x6xx47', 'en', 1, 'https://ror.org/016x6xx47 Baptist Theological College of Southern Africa'), (41029, 'https://ror.org/016zjn618', 'en', 1, 'https://ror.org/016zjn618 Institute of Metal Superplasticity Problems Институт проблем сверхпластичности металлов РАН'), (41030, 'https://ror.org/016zq4f37', 'en', 1, 'https://ror.org/016zq4f37 Hochschule für Gestaltung Schwäbisch Gmünd University of Design Schwäbisch Gmünd'), (41031, 'https://ror.org/0170vdc43', 'en', 1, 'https://ror.org/0170vdc43 Forum for Ethics Review Committees in India'), (41032, 'https://ror.org/0172s2g64', 'fr', 1, 'https://ror.org/0172s2g64 Institut de Recherche sur le Maghreb Contemporain'), (41033, 'https://ror.org/0174nh398', 'en', 1, 'https://ror.org/0174nh398 Levine Cancer Institute'), (41034, 'https://ror.org/0174qhh23', 'no_lang_code', 1, 'https://ror.org/0174qhh23 BoostHeat (France)'), (41035, 'https://ror.org/0174y3381', 'en', 1, 'https://ror.org/0174y3381 Medical Laboratory Science Council of Nigeria'), (41036, 'https://ror.org/017bbc354', 'de', 1, 'https://ror.org/017bbc354 Turkish-German University Türk-Alman Üniversitesi Türkisch-Deutsche Universität'), (41037, 'https://ror.org/017c99632', 'en', 1, 'https://ror.org/017c99632 D.I. Mendeleyev All-Russian Institute for Metrology ВНИИ метрологии им. Д.И.Менделеева, ломоносовское отделение'), (41038, 'https://ror.org/017cc7f02', 'en', 1, 'https://ror.org/017cc7f02 Achieving Health Nigeria Initiative'), (41039, 'https://ror.org/017dfq504', 'en', 1, 'https://ror.org/017dfq504 Creative New Zealand'), (41040, 'https://ror.org/017e2a614', 'en', 1, 'https://ror.org/017e2a614 College of Management “Edukacja” Wyższa Szkoła Zarządzania "Edukacja"'), (41041, 'https://ror.org/017eb5121', 'no_lang_code', 1, 'https://ror.org/017eb5121 Honeywell (India)'), (41042, 'https://ror.org/017f8n968', 'no_lang_code', 1, 'https://ror.org/017f8n968 Gencia (United States)'), (41043, 'https://ror.org/017fwsj06', 'no_lang_code', 1, 'https://ror.org/017fwsj06 Fujifilm (United States)'), (41044, 'https://ror.org/017gxrm85', 'en', 1, 'https://ror.org/017gxrm85 Incheon St. Mary''s Hospital'), (41045, 'https://ror.org/017kqpz20', 'en', 1, 'https://ror.org/017kqpz20 Northern (Arctic) Federal University Северный (Арктический) федеральный университет имени М. В. Ломоносова'), (41046, 'https://ror.org/017kta585', 'no_lang_code', 1, 'https://ror.org/017kta585 Adivit (Spain)'), (41047, 'https://ror.org/017mjs592', 'en', 1, 'https://ror.org/017mjs592 Illinois Space Grant Consortium'), (41048, 'https://ror.org/017q93w69', 'no_lang_code', 1, 'https://ror.org/017q93w69 Ricoh (United States)'), (41049, 'https://ror.org/017qk3p19', 'en', 1, 'https://ror.org/017qk3p19 Redcliffe College'), (41050, 'https://ror.org/017xz5989', 'en', 1, 'https://ror.org/017xz5989 Chinese National Human Genome Center at Shanghai 国家人类基因组南方研究中心'), (41051, 'https://ror.org/017ycwt89', 'en', 1, 'https://ror.org/017ycwt89 KMCT Group of Educational Institutions'), (41052, 'https://ror.org/017zhda45', 'en', 1, 'https://ror.org/017zhda45 Queensland Centre for Mental Health Research'), (41053, 'https://ror.org/0181xpd52', 'en', 1, 'https://ror.org/0181xpd52 International Graduate School of English 국제영어대학원대학교'), (41054, 'https://ror.org/0182rkr07', 'en', 1, 'https://ror.org/0182rkr07 Edison Community College'), (41055, 'https://ror.org/01831n272', 'en', 1, 'https://ror.org/01831n272 Institute of Experimental Mineralogy Институт экспериментальной минералогии'), (41056, 'https://ror.org/01851c371', 'no_lang_code', 1, 'https://ror.org/01851c371 Itron (United States)'), (41057, 'https://ror.org/018546558', 'en', 1, 'https://ror.org/018546558 Yamano College of Aesthetics 山野美容芸術短期大学'), (41058, 'https://ror.org/01855q607', 'en', 1, 'https://ror.org/01855q607 Ministry of Education and Vocation Training, Ministry of Education and Vocational Training Wizara ya Elimu na Mafunzo ya Ufundi'), (41059, 'https://ror.org/018596x49', 'en', 1, 'https://ror.org/018596x49 Fortis Healthcare'), (41060, 'https://ror.org/0185z7g17', 'no_lang_code', 1, 'https://ror.org/0185z7g17 Vifor Pharma (Switzerland)'), (41061, 'https://ror.org/0186jds22', 'en', 1, 'https://ror.org/0186jds22 Indian Jute Industries Research Association'), (41062, 'https://ror.org/0186tjy74', 'en', 1, 'https://ror.org/0186tjy74 Muscatine Community College'), (41063, 'https://ror.org/0186tvr04', 'en', 1, 'https://ror.org/0186tvr04 Circle in the Square Theatre School'), (41064, 'https://ror.org/0186w6z26', 'en', 1, 'https://ror.org/0186w6z26 Xinjiang Institute of Materia Medica 新疆维吾尔自治区药物研究所'), (41065, 'https://ror.org/018788w33', 'no_lang_code', 1, 'https://ror.org/018788w33 Astellas Pharma (United Kingdom)'), (41066, 'https://ror.org/0188hng36', 'en', 1, 'https://ror.org/0188hng36 Mehrangarh Museum Trust'), (41067, 'https://ror.org/018afr131', 'en', 1, 'https://ror.org/018afr131 Knipovich Polar Research Institute of Marine Fisheries and Oceanography Книпович Институт полярных исследований морского рыбного хозяйства и океанографии'), (41068, 'https://ror.org/018axtd57', 'no_lang_code', 1, 'https://ror.org/018axtd57 Array BioPharma (United States)'), (41069, 'https://ror.org/018bksf75', 'en', 1, 'https://ror.org/018bksf75 Shawnee Mission Medical Center'), (41070, 'https://ror.org/018ct7v08', 'en', 1, 'https://ror.org/018ct7v08 Department of Education'), (41071, 'https://ror.org/018ewp664', 'no_lang_code', 1, 'https://ror.org/018ewp664 Grow More Seeds and Chemicals (Uganda)'), (41072, 'https://ror.org/018g0vw88', 'en', 1, 'https://ror.org/018g0vw88 Accademia nazionale di danza National Academy of Dance'), (41073, 'https://ror.org/018h60391', 'en', 1, 'https://ror.org/018h60391 Institut suisse de médecine équine Swiss Institute of Equine Medicine'), (41074, 'https://ror.org/018hr1j41', 'en', 1, 'https://ror.org/018hr1j41 Ghana AIDS Commission'), (41075, 'https://ror.org/018hvk597', 'en', 1, 'https://ror.org/018hvk597 Mt. San Jacinto College'), (41076, 'https://ror.org/018jcmk18', 'it', 1, 'https://ror.org/018jcmk18 Accademia di Belle Arti di Urbino'), (41077, 'https://ror.org/018kq8f36', 'no_lang_code', 1, 'https://ror.org/018kq8f36 Borsa Istanbul (Turkey)'), (41078, 'https://ror.org/018m84039', 'no_lang_code', 1, 'https://ror.org/018m84039 Tata Teleservices (India)'), (41079, 'https://ror.org/018m8fh96', 'no_lang_code', 1, 'https://ror.org/018m8fh96 Britest (United Kingdom)'), (41080, 'https://ror.org/018mbvt80', 'en', 1, 'https://ror.org/018mbvt80 German open Business School Hochschule für Wirtschaft und Verwaltung'), (41081, 'https://ror.org/018mjrf43', 'en', 1, 'https://ror.org/018mjrf43 Open Rights Group'), (41082, 'https://ror.org/018nbcn37', 'en', 1, 'https://ror.org/018nbcn37 Rhode Island Sea Grant'), (41083, 'https://ror.org/018nw3344', 'no_lang_code', 1, 'https://ror.org/018nw3344 AstraZeneca (Australia)'), (41084, 'https://ror.org/018qsef31', 'en', 1, 'https://ror.org/018qsef31 Northern Gulf Institute'), (41085, 'https://ror.org/018rk1f74', 'en', 1, 'https://ror.org/018rk1f74 Eastern and Southern Africa small scale Farmers’ Forum'), (41086, 'https://ror.org/018rz4f73', 'en', 1, 'https://ror.org/018rz4f73 Cheetah Conservation Fund'), (41087, 'https://ror.org/018t8yw14', 'nl', 1, 'https://ror.org/018t8yw14 Hotelschool Den Haag, Hotelschool The Hague'), (41088, 'https://ror.org/018xbyb32', 'en', 1, 'https://ror.org/018xbyb32 College of Tourism'), (41089, 'https://ror.org/018xpp991', 'en', 1, 'https://ror.org/018xpp991 Northeast Alabama Community College'), (41090, 'https://ror.org/018y7q663', 'en', 1, 'https://ror.org/018y7q663 Pure Earth'), (41091, 'https://ror.org/018yj7q57', 'en', 1, 'https://ror.org/018yj7q57 International Collective in Support of Fishworkers'), (41092, 'https://ror.org/018zase94', 'en', 1, 'https://ror.org/018zase94 All India Institute of Physical Medicine and Rehabilitation'), (41093, 'https://ror.org/018zcf966', 'en', 1, 'https://ror.org/018zcf966 New York State Governor''s Traffic Safety Committee'), (41094, 'https://ror.org/01924nm42', 'en', 1, 'https://ror.org/01924nm42 Fifth Tianjin Central Hospital 天津市第五中心医院'), (41095, 'https://ror.org/0192y2p73', 'en', 1, 'https://ror.org/0192y2p73 New Jersey Department of Law and Public Safety'), (41096, 'https://ror.org/019374v57', 'fr', 1, 'https://ror.org/019374v57 Santé Espoir Vie Côte d''Ivoire'), (41097, 'https://ror.org/0195rjn62', 'en', 1, 'https://ror.org/0195rjn62 Lambeth College'), (41098, 'https://ror.org/01961aj60', 'en', 1, 'https://ror.org/01961aj60 Stella Mann College of Performing Arts'), (41099, 'https://ror.org/0196eae03', 'en', 1, 'https://ror.org/0196eae03 American Academy of Nursing'), (41100, 'https://ror.org/0198sv425', 'en', 1, 'https://ror.org/0198sv425 National Institute of Open Schooling राष्ट्रीय मुक्त विद्यालयी शिक्षा संस्थान'), (41101, 'https://ror.org/019cns802', 'en', 1, 'https://ror.org/019cns802 Jeju International University'), (41102, 'https://ror.org/019grq336', 'en', 1, 'https://ror.org/019grq336 Mecklenburg County Government'), (41103, 'https://ror.org/019j3tz70', 'en', 1, 'https://ror.org/019j3tz70 Institute of Geophysics Институт геофизики'), (41104, 'https://ror.org/019n4sb32', 'en', 1, 'https://ror.org/019n4sb32 Connors State College'), (41105, 'https://ror.org/019qf8a90', 'no_lang_code', 1, 'https://ror.org/019qf8a90 Deseret Laboratories (United States)'), (41106, 'https://ror.org/019t2rq07', 'en', 1, 'https://ror.org/019t2rq07 University of Northwestern'), (41107, 'https://ror.org/019tc7185', 'no_lang_code', 1, 'https://ror.org/019tc7185 Faculty of 1000 (United Kingdom)'), (41108, 'https://ror.org/019vcrv78', 'en', 1, 'https://ror.org/019vcrv78 Maryland Historical Trust'), (41109, 'https://ror.org/019w40127', 'no_lang_code', 1, 'https://ror.org/019w40127 Barnes & Noble (United States)'), (41110, 'https://ror.org/019w4be96', 'hr', 1, 'https://ror.org/019w4be96 Police Academy Policijska akademija'), (41111, 'https://ror.org/019x00e11', 'en', 1, 'https://ror.org/019x00e11 Emmanuel Bible College'), (41112, 'https://ror.org/019y81x83', 'pl', 1, 'https://ror.org/019y81x83 Szczecińska Szkoła Wyższa Collegium Balticum'), (41113, 'https://ror.org/019yfxm71', 'it', 1, 'https://ror.org/019yfxm71 Conservatorio di Musica Nino Rota'), (41114, 'https://ror.org/01a27na53', 'ro', 1, 'https://ror.org/01a27na53 Universitatea Alma Mater Sibiu'), (41115, 'https://ror.org/01a304769', 'en', 1, 'https://ror.org/01a304769 Kenya Institute Of Organic Farming'), (41116, 'https://ror.org/01a9g8z61', 'en', 1, 'https://ror.org/01a9g8z61 Palo Verde College'), (41117, 'https://ror.org/01aae0427', 'no_lang_code', 1, 'https://ror.org/01aae0427 Sanmar Group (India)'), (41118, 'https://ror.org/01abckz52', 'en', 1, 'https://ror.org/01abckz52 AdventHealth for Children'), (41119, 'https://ror.org/01abhta88', 'de', 1, 'https://ror.org/01abhta88 Aus- und Weiterbildungseinrichtung für Klinische Verhaltenstherapie'), (41120, 'https://ror.org/01abrxp85', 'en', 1, 'https://ror.org/01abrxp85 Islamic Azad University Semnan دانشگاه آزاد اسلامی واحد سمنان'), (41121, 'https://ror.org/01ad74h27', 'en', 1, 'https://ror.org/01ad74h27 Tillamook Bay Community College'), (41122, 'https://ror.org/01ah4r412', 'en', 1, 'https://ror.org/01ah4r412 Mary Baker Eddy Library'), (41123, 'https://ror.org/01ahk4t18', 'en', 1, 'https://ror.org/01ahk4t18 Montessori Institute of Milwaukee'), (41124, 'https://ror.org/01ahkhm49', 'en', 1, 'https://ror.org/01ahkhm49 ALD Connect'), (41125, 'https://ror.org/01ahwzz27', 'en', 1, 'https://ror.org/01ahwzz27 Saint Louis County Department of Health'), (41126, 'https://ror.org/01ahys275', 'en', 1, 'https://ror.org/01ahys275 Parker Hughes Cancer Center'), (41127, 'https://ror.org/01ajp8153', 'no_lang_code', 1, 'https://ror.org/01ajp8153 Genmab (Netherlands)'), (41128, 'https://ror.org/01ap78q14', 'pt', 1, 'https://ror.org/01ap78q14 Citeforma'), (41129, 'https://ror.org/01aqjb686', 'no_lang_code', 1, 'https://ror.org/01aqjb686 Svenska Cellulosa (Sweden)'), (41130, 'https://ror.org/01arkg777', 'en', 1, 'https://ror.org/01arkg777 Midland College'), (41131, 'https://ror.org/01asgtt85', 'en', 1, 'https://ror.org/01asgtt85 Malankara Orthodox Syrian Church Medical College Hospital'), (41132, 'https://ror.org/01atycn06', 'no_lang_code', 1, 'https://ror.org/01atycn06 Infonet College'), (41133, 'https://ror.org/01atz5j40', 'en', 1, 'https://ror.org/01atz5j40 Australian College of Theology'), (41134, 'https://ror.org/01avf0w32', 'en', 1, 'https://ror.org/01avf0w32 Lenoir Community College'), (41135, 'https://ror.org/01avfbv46', 'no_lang_code', 1, 'https://ror.org/01avfbv46 Giredmet (Russia) Федеральное государственное научно-исследовательский и проектный институт редких металлургической промышленности'), (41136, 'https://ror.org/01awqyw81', 'en', 1, 'https://ror.org/01awqyw81 St. Cloud Technical and Community College'), (41137, 'https://ror.org/01axjm922', 'no_lang_code', 1, 'https://ror.org/01axjm922 Fresenius Kabi (India)'), (41138, 'https://ror.org/01axtzy32', 'en', 1, 'https://ror.org/01axtzy32 Saint John Vianney College Seminary'), (41139, 'https://ror.org/01ay87255', 'fr', 1, 'https://ror.org/01ay87255 Centre de Développement des Technologies Avancées'), (41140, 'https://ror.org/01aywcp58', 'en', 1, 'https://ror.org/01aywcp58 Southern Maine Community College'), (41141, 'https://ror.org/01azc2m81', 'en', 1, 'https://ror.org/01azc2m81 Sub-Regional Fisheries Commission'), (41142, 'https://ror.org/01azfny69', 'en', 1, 'https://ror.org/01azfny69 IHub'), (41143, 'https://ror.org/01azrym08', 'en', 1, 'https://ror.org/01azrym08 M.N. Mikheev Institute of Metal Physics Институт физики металлов имени М.Н. Михеева Уральского отделения РАН'), (41144, 'https://ror.org/01b03vk69', 'no_lang_code', 1, 'https://ror.org/01b03vk69 Alfact Innovation (France)'), (41145, 'https://ror.org/01b047235', 'en', 1, 'https://ror.org/01b047235 Arkansas Economic Development Commission'), (41146, 'https://ror.org/01b0j0m34', 'en', 1, 'https://ror.org/01b0j0m34 Southern States University'), (41147, 'https://ror.org/01b1e4b88', 'no_lang_code', 1, 'https://ror.org/01b1e4b88 Mars (France)'), (41148, 'https://ror.org/01b25wz12', 'en', 1, 'https://ror.org/01b25wz12 Southeastern University'), (41149, 'https://ror.org/01b2av652', 'en', 1, 'https://ror.org/01b2av652 Institute of Scientific and Technical Information of China 中国科学技术信息研究所'), (41150, 'https://ror.org/01b2bzj52', 'no_lang_code', 1, 'https://ror.org/01b2bzj52 Kellogg''s (United States)'), (41151, 'https://ror.org/01b346b72', 'en', 1, 'https://ror.org/01b346b72 Wonju Severance Christian Hospital 연세대학교 원주세브란스기독병원'), (41152, 'https://ror.org/01b3qhp76', 'en', 1, 'https://ror.org/01b3qhp76 Research Institute of Fundamental and Clinical Immunology Научно-исследовательский институт фундаментальной и клинической иммунологии'), (41153, 'https://ror.org/01b5c2h26', 'en', 1, 'https://ror.org/01b5c2h26 Heart Kids'), (41154, 'https://ror.org/01b5j0073', 'en', 1, 'https://ror.org/01b5j0073 Families USA'), (41155, 'https://ror.org/01b891j88', 'en', 1, 'https://ror.org/01b891j88 Government of Haryana'), (41156, 'https://ror.org/01b8mj511', 'fr', 1, 'https://ror.org/01b8mj511 Laboratoire Interdisciplinaire pour la Sociologie Economique'), (41157, 'https://ror.org/01bahfb02', 'en', 1, 'https://ror.org/01bahfb02 Enterprise Community Partners'), (41158, 'https://ror.org/01bcwyc86', 'en', 1, 'https://ror.org/01bcwyc86 Southern Maine Health Care'), (41159, 'https://ror.org/01bd1sf38', 'en', 1, 'https://ror.org/01bd1sf38 SRM Dental College'), (41160, 'https://ror.org/01bf51295', 'en', 1, 'https://ror.org/01bf51295 Martin College'), (41161, 'https://ror.org/01bfgxb60', 'en', 1, 'https://ror.org/01bfgxb60 St Johns River State College'), (41162, 'https://ror.org/01bhk7372', 'en', 1, 'https://ror.org/01bhk7372 Dallas VA Research Corporation'), (41163, 'https://ror.org/01bhp1y81', 'en', 1, 'https://ror.org/01bhp1y81 Hebei Chemical and Pharmaceutical College 河北化工医药职业技术学院 地址'), (41164, 'https://ror.org/01bkbkc06', 'en', 1, 'https://ror.org/01bkbkc06 Hickey College'), (41165, 'https://ror.org/01bkg3b56', 'no_lang_code', 1, 'https://ror.org/01bkg3b56 Gene Bridges (Germany)'), (41166, 'https://ror.org/01bktqd02', 'en', 1, 'https://ror.org/01bktqd02 John A Gupton College'), (41167, 'https://ror.org/01bnv2160', 'no_lang_code', 1, 'https://ror.org/01bnv2160 Deltamune (South Africa)'), (41168, 'https://ror.org/01bp1fj20', 'en', 1, 'https://ror.org/01bp1fj20 Wilbur and Hilda Glenn Family Foundation'), (41169, 'https://ror.org/01bvm0h13', 'fr', 1, 'https://ror.org/01bvm0h13 Haute École Pédagogique du Canton de Vaud'), (41170, 'https://ror.org/01bvxnj28', 'en', 1, 'https://ror.org/01bvxnj28 Państwowa Wyższa Szkoła Zawodowa im. Stanisława Pigonia w Krośnie State Higher Vocational School in Krosno'), (41171, 'https://ror.org/01bx57d48', 'en', 1, 'https://ror.org/01bx57d48 Higher Institute for Artistic Industries Faenza Istituto Superiore per le Industrie Artistiche'), (41172, 'https://ror.org/01bzmq497', 'en', 1, 'https://ror.org/01bzmq497 Royal College of Obstetricians and Gynaecologists'), (41173, 'https://ror.org/01bzv1j63', 'en', 1, 'https://ror.org/01bzv1j63 Chamber of Commerce and Industry of Tunis Chambre de Commerce et d''Industrie de Tunis'), (41174, 'https://ror.org/01c02p071', 'en', 1, 'https://ror.org/01c02p071 AACC International'), (41175, 'https://ror.org/01c33mn06', 'en', 1, 'https://ror.org/01c33mn06 Institute of the North'), (41176, 'https://ror.org/01c3h5z21', 'fr', 1, 'https://ror.org/01c3h5z21 Institut National de Recherche Forestière'), (41177, 'https://ror.org/01c4qa656', 'en', 1, 'https://ror.org/01c4qa656 Bydgoska Szkoła Wyższa University of Bydgoszcz'), (41178, 'https://ror.org/01c4srk95', 'no_lang_code', 1, 'https://ror.org/01c4srk95 Tirunelveli Medical College திருநெல்வேலி மருத்துவக்கல்லூரி'), (41179, 'https://ror.org/01c508b36', 'fr', 1, 'https://ror.org/01c508b36 Institut Régional d''Administration de Lyon'), (41180, 'https://ror.org/01c5dd102', 'no_lang_code', 1, 'https://ror.org/01c5dd102 Mahindra and Mahindra Limited (India)'), (41181, 'https://ror.org/01c61x273', 'no_lang_code', 1, 'https://ror.org/01c61x273 Folha (Brazil)'), (41182, 'https://ror.org/01c8gte40', 'en', 1, 'https://ror.org/01c8gte40 Appropriate Rural Technology Institute'), (41183, 'https://ror.org/01c9ma830', 'en', 1, 'https://ror.org/01c9ma830 Lääne-Viru College Lääne-Viru Rakenduskõrgkool'), (41184, 'https://ror.org/01c9nq002', 'en', 1, 'https://ror.org/01c9nq002 Missouri College'), (41185, 'https://ror.org/01camwr54', 'en', 1, 'https://ror.org/01camwr54 Tropical Pesticides Research Institute'), (41186, 'https://ror.org/01cb0p019', 'en', 1, 'https://ror.org/01cb0p019 Higher Institute for Artistic Industries Firenze Istituto Superiore per le Industrie Artistiche'), (41187, 'https://ror.org/01cb10c90', 'en', 1, 'https://ror.org/01cb10c90 Cheung Kong Graduate School of Business 长江商学院'), (41188, 'https://ror.org/01cbeee29', 'es', 1, 'https://ror.org/01cbeee29 Universidad Católica Cecilio Acosta'), (41189, 'https://ror.org/01ccb9w37', 'en', 1, 'https://ror.org/01ccb9w37 St. Petersburg Institute for Informatics and Automation Санкт-Петербургский институт информатики и автоматизации'), (41190, 'https://ror.org/01cch8797', 'no_lang_code', 1, 'https://ror.org/01cch8797 Mobica (Egypt)'), (41191, 'https://ror.org/01ccv1722', 'en', 1, 'https://ror.org/01ccv1722 Society of Teachers of Family Medicine'), (41192, 'https://ror.org/01cd26272', 'no_lang_code', 1, 'https://ror.org/01cd26272 MultiMedia InnoVations (South Africa)'), (41193, 'https://ror.org/01cey1344', 'en', 1, 'https://ror.org/01cey1344 Foundation for Research in Health Systems'), (41194, 'https://ror.org/01cf8hm38', 'en', 1, 'https://ror.org/01cf8hm38 Anoka Technical College'), (41195, 'https://ror.org/01cf8y887', 'it', 1, 'https://ror.org/01cf8y887 Accademia di Belle Arti di Venezia'), (41196, 'https://ror.org/01cjdbz30', 'es', 1, 'https://ror.org/01cjdbz30 Davara & Davara Asesores Jurídicos'), (41197, 'https://ror.org/01ckass20', 'en', 1, 'https://ror.org/01ckass20 Military Manpower Administration 병무청'), (41198, 'https://ror.org/01cmzh619', 'en', 1, 'https://ror.org/01cmzh619 Mental Health Australia'), (41199, 'https://ror.org/01cnenr61', 'fi', 1, 'https://ror.org/01cnenr61 Etelä-Pohjanmaan Sairaanhoitopiiri'), (41200, 'https://ror.org/01cphbs04', 'en', 1, 'https://ror.org/01cphbs04 Velammal Educational Trust'), (41201, 'https://ror.org/01crghz68', 'en', 1, 'https://ror.org/01crghz68 Foundation for Research in Community Health'), (41202, 'https://ror.org/01crwqf21', 'en', 1, 'https://ror.org/01crwqf21 Southeast Arkansas College'), (41203, 'https://ror.org/01cryga93', 'no_lang_code', 1, 'https://ror.org/01cryga93 Sami Labs (India)'), (41204, 'https://ror.org/01crz4r71', 'fr', 1, 'https://ror.org/01crz4r71 École Supérieure d''Art des Pyrénées'), (41205, 'https://ror.org/01cy4tw26', 'en', 1, 'https://ror.org/01cy4tw26 South Orange County Community College District'), (41206, 'https://ror.org/01cyqzg93', 'en', 1, 'https://ror.org/01cyqzg93 Southern West Virginia Community and Technical College'), (41207, 'https://ror.org/01d0few86', 'en', 1, 'https://ror.org/01d0few86 Ghana Education Service'), (41208, 'https://ror.org/01d0r2q86', 'en', 1, 'https://ror.org/01d0r2q86 Centre for Internet and Society'), (41209, 'https://ror.org/01d181m24', 'en', 1, 'https://ror.org/01d181m24 Shasta College'), (41210, 'https://ror.org/01d22jf15', 'en', 1, 'https://ror.org/01d22jf15 Ellsworth Community College'), (41211, 'https://ror.org/01d22yy79', 'fr', 1, 'https://ror.org/01d22yy79 Centre d’Expertise National en Stimulation Cognitive'), (41212, 'https://ror.org/01d47cz35', 'en', 1, 'https://ror.org/01d47cz35 Research Design And Standards Organization अनुसंधान अभिकल्प एवं मानक संगठन'), (41213, 'https://ror.org/01d4n6n22', 'de', 1, 'https://ror.org/01d4n6n22 Hochschule für Kunsttherapie Nürtingen'), (41214, 'https://ror.org/01d6n7b64', 'hi', 1, 'https://ror.org/01d6n7b64 Vidya Prathishthan'), (41215, 'https://ror.org/01deqjx32', 'en', 1, 'https://ror.org/01deqjx32 Entrust'), (41216, 'https://ror.org/01dg8c226', 'en', 1, 'https://ror.org/01dg8c226 North Shropshire College'), (41217, 'https://ror.org/01dhcr905', 'no_lang_code', 1, 'https://ror.org/01dhcr905 Nationwide Mutual Insurance Company (United States)'), (41218, 'https://ror.org/01dhkk736', 'en', 1, 'https://ror.org/01dhkk736 Ogden–Weber Applied Technology College'), (41219, 'https://ror.org/01dj44198', 'en', 1, 'https://ror.org/01dj44198 Western Texas College'), (41220, 'https://ror.org/01dmk9z19', 'no_lang_code', 1, 'https://ror.org/01dmk9z19 HollyFrontier (United States)'), (41221, 'https://ror.org/01dmnvb64', 'es', 1, 'https://ror.org/01dmnvb64 Fundación Hospital Manacor'), (41222, 'https://ror.org/01dnjhj88', 'en', 1, 'https://ror.org/01dnjhj88 Nakuru County Council'), (41223, 'https://ror.org/01dqnej95', 'en', 1, 'https://ror.org/01dqnej95 China Land Surveying and Planning Institute 中国土地勘测规划院'), (41224, 'https://ror.org/01drfa298', 'en', 1, 'https://ror.org/01drfa298 Emmaus Bible College'), (41225, 'https://ror.org/01ds31v72', 'en', 1, 'https://ror.org/01ds31v72 V.S. Sobolev Institute of Geology and Mineralogy Федеральное государственное бюджетное учреждение науки Институт геологии и минералогии им. В.С.Соболева Сибирского отделения Российской академии наук (ИГМ СО РАН)'), (41226, 'https://ror.org/01dtghp88', 'en', 1, 'https://ror.org/01dtghp88 Australian American Fulbright Commission'), (41227, 'https://ror.org/01dyrk434', 'pt', 1, 'https://ror.org/01dyrk434 Centro de Excelência em Bioinformática'), (41228, 'https://ror.org/01dywy767', 'pt', 1, 'https://ror.org/01dywy767 Instituto de Ensinos Superiores da Amazônia'), (41229, 'https://ror.org/01dz5cg19', 'fr', 1, 'https://ror.org/01dz5cg19 Laboratoire de Virologie Moléculaire et Structurale'), (41230, 'https://ror.org/01dzc7q23', 'en', 1, 'https://ror.org/01dzc7q23 Somerset Community College'), (41231, 'https://ror.org/01e01nd60', 'en', 1, 'https://ror.org/01e01nd60 National Academy of Social Insurance'), (41232, 'https://ror.org/01e0fj447', 'en', 1, 'https://ror.org/01e0fj447 Assumption College San Lorenzo'), (41233, 'https://ror.org/01e2m0794', 'en', 1, 'https://ror.org/01e2m0794 China Earthquake Disaster Prevention Centre 中国地震灾害防御中心'), (41234, 'https://ror.org/01e2z0p13', 'cs', 1, 'https://ror.org/01e2z0p13 Vysoká Škola Sociálně Správní'), (41235, 'https://ror.org/01e3p0233', 'no_lang_code', 1, 'https://ror.org/01e3p0233 Vesuvius (France)'), (41236, 'https://ror.org/01e46k667', 'no_lang_code', 1, 'https://ror.org/01e46k667 Red Stack Tech (Poland)'), (41237, 'https://ror.org/01e4tdn74', 'en', 1, 'https://ror.org/01e4tdn74 Ministry of Agriculture Livestock and Fisheries'), (41238, 'https://ror.org/01e5ad164', 'no_lang_code', 1, 'https://ror.org/01e5ad164 DualAlign (United States)'), (41239, 'https://ror.org/01e75de70', 'en', 1, 'https://ror.org/01e75de70 Raffles College of Design and Commerce'), (41240, 'https://ror.org/01e8jps31', 'no_lang_code', 1, 'https://ror.org/01e8jps31 Israel Ports Development and Assets (Israel)'), (41241, 'https://ror.org/01e99ef13', 'no_lang_code', 1, 'https://ror.org/01e99ef13 Gansu Meteorological Bureau 甘肃省气象局'), (41242, 'https://ror.org/01ea1bc11', 'en', 1, 'https://ror.org/01ea1bc11 Society for Research and Initiatives for Sustainable Technologies and Institutions'), (41243, 'https://ror.org/01eac6f58', 'no_lang_code', 1, 'https://ror.org/01eac6f58 WD-40 (United States)'), (41244, 'https://ror.org/01eajxh73', 'en', 1, 'https://ror.org/01eajxh73 Hochschule für Agrar- und Umweltpädagogik University College for Agrarian and Environmental Pedagogy'), (41245, 'https://ror.org/01ecv1b71', 'en', 1, 'https://ror.org/01ecv1b71 African Conservation Tillage Network'), (41246, 'https://ror.org/01edctc55', 'no_lang_code', 1, 'https://ror.org/01edctc55 ATLAB Pharma (France)'), (41247, 'https://ror.org/01egp1063', 'es', 1, 'https://ror.org/01egp1063 Ministerio de Producción, Ciencia y Tecnología'), (41248, 'https://ror.org/01ehgvm85', 'en', 1, 'https://ror.org/01ehgvm85 ECAM School of Engineering'), (41249, 'https://ror.org/01ej3e061', 'de', 1, 'https://ror.org/01ej3e061 Philosophisch-Theologische Hochschule SVD St. Augustin'), (41250, 'https://ror.org/01ep2z456', 'es', 1, 'https://ror.org/01ep2z456 Ayuntamiento De Tomelloso'), (41251, 'https://ror.org/01eqzn264', 'pt', 1, 'https://ror.org/01eqzn264 Faculdade da Serra Gaúcha'), (41252, 'https://ror.org/01es48562', 'en', 1, 'https://ror.org/01es48562 Gerald R. Ford Presidential Library and Museum'), (41253, 'https://ror.org/01esc8r67', 'en', 1, 'https://ror.org/01esc8r67 Hellenic Military Academy Στρατιωτική Σχολή Ευελπίδων'), (41254, 'https://ror.org/01etzjr60', 'it', 1, 'https://ror.org/01etzjr60 Conservatorio di Musica Luigi Canepa'), (41255, 'https://ror.org/01ew07e68', 'en', 1, 'https://ror.org/01ew07e68 National Sanitation Utility Office National de l''Assainissement'), (41256, 'https://ror.org/01ew11x49', 'no_lang_code', 1, 'https://ror.org/01ew11x49 Panacea Biotec (India)'), (41257, 'https://ror.org/01ewgyc27', 'en', 1, 'https://ror.org/01ewgyc27 Academy of Cosmetics and Health Care in Warsaw Wyższa Szkoła Zawodowa Kosmetyki'), (41258, 'https://ror.org/01exgks31', 'en', 1, 'https://ror.org/01exgks31 Nigerian Institute for Oceanography and Marine Research'), (41259, 'https://ror.org/01eyhzm47', 'de', 1, 'https://ror.org/01eyhzm47 Fachhochschule für Verwaltung des Saarlandes'), (41260, 'https://ror.org/01eyskv76', 'no_lang_code', 1, 'https://ror.org/01eyskv76 Quantum Genomics (France)'), (41261, 'https://ror.org/01f02ww36', 'en', 1, 'https://ror.org/01f02ww36 All-Russian Research Institute of Agricultural Microbiology'), (41262, 'https://ror.org/01f2hnj65', 'es', 1, 'https://ror.org/01f2hnj65 Instituto Nacional de Cooperación Educativa Socialista'), (41263, 'https://ror.org/01f42aa94', 'en', 1, 'https://ror.org/01f42aa94 Koran Women''s Junior College 香蘭女子短期大学'), (41264, 'https://ror.org/01f5b8367', 'de', 1, 'https://ror.org/01f5b8367 Fachhochschule des Mittelstands'), (41265, 'https://ror.org/01f6q3121', 'en', 1, 'https://ror.org/01f6q3121 Hyundai Hope On Wheels'), (41266, 'https://ror.org/01f8mva30', 'en', 1, 'https://ror.org/01f8mva30 Panchajanya Vidya Peetha Welfare Trust'), (41267, 'https://ror.org/01f93vk95', 'no_lang_code', 1, 'https://ror.org/01f93vk95 Graham Holdings (United States)'), (41268, 'https://ror.org/01f96et60', 'no_lang_code', 1, 'https://ror.org/01f96et60 MedinCell (France)'), (41269, 'https://ror.org/01fazs130', 'en', 1, 'https://ror.org/01fazs130 Millar College of the Bible'), (41270, 'https://ror.org/01fbwnx94', 'en', 1, 'https://ror.org/01fbwnx94 Minnesota West Community & Technical College'), (41271, 'https://ror.org/01fcdd135', 'en', 1, 'https://ror.org/01fcdd135 Chicago Community Trust'), (41272, 'https://ror.org/01fe6wg83', 'en', 1, 'https://ror.org/01fe6wg83 All Russian Research Institute of Geology and Mineral Resources of the World Ocean ВНИИОкеангеология'), (41273, 'https://ror.org/01ffjs081', 'fr', 1, 'https://ror.org/01ffjs081 Ecologie & Evolution'), (41274, 'https://ror.org/01fk7em68', 'en', 1, 'https://ror.org/01fk7em68 Bais Medrash Toras Chesed'), (41275, 'https://ror.org/01frp7483', 'no_lang_code', 1, 'https://ror.org/01frp7483 Weifang University 潍坊学院'), (41276, 'https://ror.org/01frq5x38', 'en', 1, 'https://ror.org/01frq5x38 Department of Education Cagayan de Oro'), (41277, 'https://ror.org/01frwjw20', 'en', 1, 'https://ror.org/01frwjw20 Chreso Ministries'), (41278, 'https://ror.org/01fryje29', 'en', 1, 'https://ror.org/01fryje29 South College'), (41279, 'https://ror.org/01fss9e11', 'fr', 1, 'https://ror.org/01fss9e11 École Supérieure d''Art et Design de Saint-Étienne'), (41280, 'https://ror.org/01fszbh02', 'en', 1, 'https://ror.org/01fszbh02 Academy for Peace and Development Akaademiga Nabadda iyo Horumarka'), (41281, 'https://ror.org/01ft2as73', 'en', 1, 'https://ror.org/01ft2as73 Eastern Medical College and Hospital ইস্টার্ন মেডিকেল কলেজ'), (41282, 'https://ror.org/01ftvnv05', 'en', 1, 'https://ror.org/01ftvnv05 Royal Brisbane and Women''s Hospital Foundation'), (41283, 'https://ror.org/01fvgpx90', 'fr', 1, 'https://ror.org/01fvgpx90 Institut Français de Finlande'), (41284, 'https://ror.org/01fy5k372', 'fr', 1, 'https://ror.org/01fy5k372 École Nationale d''Ingénieurs de Gabès المدرسة الوطنية للمهندسين بقابس'), (41285, 'https://ror.org/01fz2q334', 'en', 1, 'https://ror.org/01fz2q334 National Insurance Institute of Israel המוסד לביטוח לאומי'), (41286, 'https://ror.org/01g0pjd14', 'en', 1, 'https://ror.org/01g0pjd14 Royal Air Force College Cranwell'), (41287, 'https://ror.org/01g1pe685', 'en', 1, 'https://ror.org/01g1pe685 NEOMA Business School École supérieure de commerce de rouen'), (41288, 'https://ror.org/01g39s097', 'en', 1, 'https://ror.org/01g39s097 River Parishes Community College'), (41289, 'https://ror.org/01g454487', 'en', 1, 'https://ror.org/01g454487 National Institute of Transport'), (41290, 'https://ror.org/01g4a4162', 'en', 1, 'https://ror.org/01g4a4162 Newbury College'), (41291, 'https://ror.org/01g621a78', 'en', 1, 'https://ror.org/01g621a78 Royal National Lifeboat Institution'), (41292, 'https://ror.org/01g9cpz33', 'en', 1, 'https://ror.org/01g9cpz33 Morthland College'), (41293, 'https://ror.org/01g9qbv95', 'en', 1, 'https://ror.org/01g9qbv95 Government of Ethiopia'), (41294, 'https://ror.org/01gbhv690', 'no_lang_code', 1, 'https://ror.org/01gbhv690 Systems, Applications & Products in Data Processing (United States)'), (41295, 'https://ror.org/01geb0342', 'no_lang_code', 1, 'https://ror.org/01geb0342 Anthem (United States)'), (41296, 'https://ror.org/01gfs0a38', 'de', 1, 'https://ror.org/01gfs0a38 Akademie für Tiergesundheit'), (41297, 'https://ror.org/01gh6ja41', 'no_lang_code', 1, 'https://ror.org/01gh6ja41 Alltech (United States)'), (41298, 'https://ror.org/01gh88804', 'en', 1, 'https://ror.org/01gh88804 High Magnetic Field Laboratory 中国科学院强磁场科学中心'), (41299, 'https://ror.org/01ghar981', 'en', 1, 'https://ror.org/01ghar981 Koninklijke Hollandsche Maatschappij der Wetenschappen Royal Holland Society of Sciences and Humanities'), (41300, 'https://ror.org/01gk2wz65', 'en', 1, 'https://ror.org/01gk2wz65 Research Institute of Therapy and Preventive Medicine Федеральное государственное бюджетное научное учреждение Научно-исследовательский институт терапии и профилактической медицины'), (41301, 'https://ror.org/01gk62939', 'no_lang_code', 1, 'https://ror.org/01gk62939 Endocontrol (France)'), (41302, 'https://ror.org/01gk6s768', 'no_lang_code', 1, 'https://ror.org/01gk6s768 HHV Solar Technologies (India)'), (41303, 'https://ror.org/01gm0md04', 'en', 1, 'https://ror.org/01gm0md04 Provadis Hochschule Provadis School of International Management and Technology'), (41304, 'https://ror.org/01gnagj68', 'en', 1, 'https://ror.org/01gnagj68 Shanghai Innovative Research Center of Traditional Chinese Medicine 上海中药创新研究中心'), (41305, 'https://ror.org/01gr09x64', 'no_lang_code', 1, 'https://ror.org/01gr09x64 Orica (Australia)'), (41306, 'https://ror.org/01gtbbz35', 'no_lang_code', 1, 'https://ror.org/01gtbbz35 OTR3 (France)'), (41307, 'https://ror.org/01gtdbh44', 'en', 1, 'https://ror.org/01gtdbh44 Cuyamaca College'), (41308, 'https://ror.org/01gwn6z70', 'en', 1, 'https://ror.org/01gwn6z70 College of San Mateo'), (41309, 'https://ror.org/01gxb6382', 'no_lang_code', 1, 'https://ror.org/01gxb6382 Swisse (Australia)'), (41310, 'https://ror.org/01gyh5y52', 'no_lang_code', 1, 'https://ror.org/01gyh5y52 Argos Cement (Colombia) Cementos Argos'), (41311, 'https://ror.org/01gymhc20', 'no_lang_code', 1, 'https://ror.org/01gymhc20 Benteler (Germany)'); INSERT INTO `rors` VALUES (41312, 'https://ror.org/01h0gdq60', 'it', 1, 'https://ror.org/01h0gdq60 Conservatorio di Musica G. Martucci'), (41313, 'https://ror.org/01h10d932', 'en', 1, 'https://ror.org/01h10d932 Union Catholic Regional High School'), (41314, 'https://ror.org/01h153k55', 'pt', 1, 'https://ror.org/01h153k55 Faculdades Integradas de Cacoal'), (41315, 'https://ror.org/01h30nm18', 'no_lang_code', 1, 'https://ror.org/01h30nm18 JCPenney (United States)'), (41316, 'https://ror.org/01h4f0m46', 'en', 1, 'https://ror.org/01h4f0m46 Central Bank of the Republic of Turkey Türkiye Cumhuriyet Merkez Bankası'), (41317, 'https://ror.org/01h547a76', 'en', 1, 'https://ror.org/01h547a76 Tianjin Centers for Disease Control and Prevention 天津市疾病预防控制中心'), (41318, 'https://ror.org/01h5w6873', 'en', 1, 'https://ror.org/01h5w6873 Scandinavian Seminar'), (41319, 'https://ror.org/01h6epf62', 'no_lang_code', 1, 'https://ror.org/01h6epf62 Taimyr College Таймырский колледж'), (41320, 'https://ror.org/01h6pwy85', 'en', 1, 'https://ror.org/01h6pwy85 Colorado Traumatic Brain Injury Trust Fund'), (41321, 'https://ror.org/01h7g8502', 'en', 1, 'https://ror.org/01h7g8502 National Institute of Technology, Toba College 鳥羽商船高等専門学校'), (41322, 'https://ror.org/01h7jse56', 'en', 1, 'https://ror.org/01h7jse56 Banco Central do Brasil Central Bank of Brazil'), (41323, 'https://ror.org/01h7phh70', 'en', 1, 'https://ror.org/01h7phh70 Fortis Memorial Research Institute'), (41324, 'https://ror.org/01h7vw195', 'en', 1, 'https://ror.org/01h7vw195 Deutsche Hochschule der Polizei German Police University'), (41325, 'https://ror.org/01h7y9k21', 'en', 1, 'https://ror.org/01h7y9k21 Nazareth Academy'), (41326, 'https://ror.org/01h8dx481', 'en', 1, 'https://ror.org/01h8dx481 National Biomedical Research Ethics Council'), (41327, 'https://ror.org/01hafxd32', 'no_lang_code', 1, 'https://ror.org/01hafxd32 Motorola (United States)'), (41328, 'https://ror.org/01hbhjt03', 'en', 1, 'https://ror.org/01hbhjt03 North Florida Community College'), (41329, 'https://ror.org/01hbq4r90', 'fr', 1, 'https://ror.org/01hbq4r90 École Nationale Supérieure d''Architecture de Paris-Belleville'), (41330, 'https://ror.org/01hednr46', 'no_lang_code', 1, 'https://ror.org/01hednr46 Mechanics Electronics Computer Corporation (Japan) 株式会社メック'), (41331, 'https://ror.org/01hefnn22', 'en', 1, 'https://ror.org/01hefnn22 Western Nebraska Community College'), (41332, 'https://ror.org/01hehsy63', 'en', 1, 'https://ror.org/01hehsy63 Naval War College'), (41333, 'https://ror.org/01hk19p23', 'no_lang_code', 1, 'https://ror.org/01hk19p23 INHS Asvini'), (41334, 'https://ror.org/01hkc4630', 'en', 1, 'https://ror.org/01hkc4630 Fachhochschule Erfurt University of Applied Sciences Erfurt'), (41335, 'https://ror.org/01hpzjf11', 'en', 1, 'https://ror.org/01hpzjf11 Centre Royal de Télédétection Spatiale Royal Centre for Remote Sensing'), (41336, 'https://ror.org/01hr7tp17', 'fr', 1, 'https://ror.org/01hr7tp17 Institut Supérieur de Musique et de Pédagogie'), (41337, 'https://ror.org/01hr83286', 'en', 1, 'https://ror.org/01hr83286 African Center for Economic Transformation'), (41338, 'https://ror.org/01hssw521', 'en', 1, 'https://ror.org/01hssw521 International Islamic College الكلية لإسلامية العالمية'), (41339, 'https://ror.org/01htb3a72', 'en', 1, 'https://ror.org/01htb3a72 Global Healthy Living Foundation'), (41340, 'https://ror.org/01hv65386', 'en', 1, 'https://ror.org/01hv65386 Southern African Aids Trust'), (41341, 'https://ror.org/01hvyf776', 'en', 1, 'https://ror.org/01hvyf776 New York City Economic Development Corporation'), (41342, 'https://ror.org/01hw0hc30', 'en', 1, 'https://ror.org/01hw0hc30 Third Sector New England'), (41343, 'https://ror.org/01hw7wf62', 'en', 1, 'https://ror.org/01hw7wf62 Ministry of Education وزارت آموزش و پرورش ایران'), (41344, 'https://ror.org/01hygy214', 'en', 1, 'https://ror.org/01hygy214 Ministry of National Development Nemzeti Fejlesztési Minisztérium'), (41345, 'https://ror.org/01hzrxx48', 'en', 1, 'https://ror.org/01hzrxx48 Wor-Wic Community College, Wor–Wic Community College'), (41346, 'https://ror.org/01j1caa04', 'en', 1, 'https://ror.org/01j1caa04 Henley College'), (41347, 'https://ror.org/01j1n1798', 'en', 1, 'https://ror.org/01j1n1798 London School of Business and Management'), (41348, 'https://ror.org/01j1yd225', 'en', 1, 'https://ror.org/01j1yd225 North West Boroughs Healthcare NHS Foundation Trust'), (41349, 'https://ror.org/01j1yrs64', 'en', 1, 'https://ror.org/01j1yrs64 Gwich''in Council International'), (41350, 'https://ror.org/01j3hs414', 'fr', 1, 'https://ror.org/01j3hs414 Union Coopération Forestière Française'), (41351, 'https://ror.org/01j59hh13', 'no_lang_code', 1, 'https://ror.org/01j59hh13 Banco de Cabo Verde Bank of Cape Verde'), (41352, 'https://ror.org/01j5adv11', 'en', 1, 'https://ror.org/01j5adv11 Authorised Association Consortium'), (41353, 'https://ror.org/01j5kpq29', 'en', 1, 'https://ror.org/01j5kpq29 Florida Sea Grant'), (41354, 'https://ror.org/01j60q321', 'en', 1, 'https://ror.org/01j60q321 Denver Botanic Gardens'), (41355, 'https://ror.org/01j8znm98', 'en', 1, 'https://ror.org/01j8znm98 Arizona Christian University'), (41356, 'https://ror.org/01j933b41', 'en', 1, 'https://ror.org/01j933b41 Wichita Area Technical College'), (41357, 'https://ror.org/01j9c2p04', 'en', 1, 'https://ror.org/01j9c2p04 Research Institute of Emergency Care Научно-исследовательский институт скорой помощи им. Н.В. Склифосовского'), (41358, 'https://ror.org/01j9jcf33', 'en', 1, 'https://ror.org/01j9jcf33 Guangzhou Panyu Polytechnic 广州番禺职业技术学院'), (41359, 'https://ror.org/01jaqtk55', 'en', 1, 'https://ror.org/01jaqtk55 Louisville Institute'), (41360, 'https://ror.org/01jbc0c43', 'en', 1, 'https://ror.org/01jbc0c43 Shenzhen Center for Disease Control and Prevention 深圳市疾病预防控制中心'), (41361, 'https://ror.org/01jbcx787', 'en', 1, 'https://ror.org/01jbcx787 Vijaya Medical and Educational Trust'), (41362, 'https://ror.org/01jc8rs51', 'en', 1, 'https://ror.org/01jc8rs51 IGlobal University'), (41363, 'https://ror.org/01jd81545', 'en', 1, 'https://ror.org/01jd81545 AAIR Charity'), (41364, 'https://ror.org/01jdjet24', 'no_lang_code', 1, 'https://ror.org/01jdjet24 Pharmaleads (France)'), (41365, 'https://ror.org/01jdv2a57', 'no_lang_code', 1, 'https://ror.org/01jdv2a57 Agilent Technologies (India)'), (41366, 'https://ror.org/01jf9dm55', 'en', 1, 'https://ror.org/01jf9dm55 African Union Interafrican Bureau for Animal Resources'), (41367, 'https://ror.org/01jh5hv18', 'en', 1, 'https://ror.org/01jh5hv18 Saint Charles Borromeo Seminary'), (41368, 'https://ror.org/01jh9zw60', 'en', 1, 'https://ror.org/01jh9zw60 New York State Office of Temporary and Disability Assistance'), (41369, 'https://ror.org/01jhjbg73', 'en', 1, 'https://ror.org/01jhjbg73 Nova Scotia Department of Health and Wellness'), (41370, 'https://ror.org/01jj16t33', 'en', 1, 'https://ror.org/01jj16t33 Santosh University'), (41371, 'https://ror.org/01jnt0x10', 'fr', 1, 'https://ror.org/01jnt0x10 Office Régional de Mise en Valeur Agricole de Ouarzazate'), (41372, 'https://ror.org/01jpzd518', 'en', 1, 'https://ror.org/01jpzd518 National Center for High-Performance Computing 國家高速網路與計算中心'), (41373, 'https://ror.org/01jq1mc68', 'hr', 1, 'https://ror.org/01jq1mc68 Fakultet za menadžment Herceg Novi'), (41374, 'https://ror.org/01jwm2188', 'en', 1, 'https://ror.org/01jwm2188 FH Gesundheitsberufe OÖ University of Applied Sciences the health professions Upper Austria'), (41375, 'https://ror.org/01jwndr62', 'fr', 1, 'https://ror.org/01jwndr62 National Society for Electricity and Gas Socièté Nationale de l''Electricité et du Gaz الشركة الوطنية للكهرباء والغاز أو سونلغاز'), (41376, 'https://ror.org/01jwsqs03', 'en', 1, 'https://ror.org/01jwsqs03 Jilin Meteorological Bureau 吉林省气象科学研究所'), (41377, 'https://ror.org/01jzst437', 'en', 1, 'https://ror.org/01jzst437 Jiangsu Vocational College of Medicine 江苏医药职业学院'), (41378, 'https://ror.org/01k0y5630', 'fr', 1, 'https://ror.org/01k0y5630 Académie Royale des Beaux-Arts de Liège'), (41379, 'https://ror.org/01k1bte55', 'fr', 1, 'https://ror.org/01k1bte55 Centre de Recherche sur l''Information Scientifique et Technique'), (41380, 'https://ror.org/01k3cb610', 'en', 1, 'https://ror.org/01k3cb610 The American College'), (41381, 'https://ror.org/01k4abj61', 'en', 1, 'https://ror.org/01k4abj61 China Tourism Academy 中国旅游研究院'), (41382, 'https://ror.org/01k5x5w08', 'en', 1, 'https://ror.org/01k5x5w08 Võru County Vocational Training Centre Võrumaa Kutsehariduskeskus'), (41383, 'https://ror.org/01k6gm036', 'hr', 1, 'https://ror.org/01k6gm036 Baltazar Zaprešić University of Applied Sciences'), (41384, 'https://ror.org/01k6xby62', 'de', 1, 'https://ror.org/01k6xby62 SRH Hochschule für Logistik und Wirtschaft'), (41385, 'https://ror.org/01k7shx94', 'en', 1, 'https://ror.org/01k7shx94 Andrew College'), (41386, 'https://ror.org/01k8ec266', 'en', 1, 'https://ror.org/01k8ec266 Ufa Institute of Chemistry Федеральное государственное бюджетное учреждение науки Уфимский Институт химии Российской академии наук'), (41387, 'https://ror.org/01kaw2b03', 'en', 1, 'https://ror.org/01kaw2b03 Australian Defence College'), (41388, 'https://ror.org/01kc9gs57', 'en', 1, 'https://ror.org/01kc9gs57 Northampton College'), (41389, 'https://ror.org/01kdhhd16', 'en', 1, 'https://ror.org/01kdhhd16 Brussels Management School'), (41390, 'https://ror.org/01kdzkq48', 'no_lang_code', 1, 'https://ror.org/01kdzkq48 Helsinn (Switzerland)'), (41391, 'https://ror.org/01khc4e56', 'en', 1, 'https://ror.org/01khc4e56 Yunnan Provincial Hospital of Traditional Chinese Medicine 云南省中医医院'), (41392, 'https://ror.org/01khd9w51', 'en', 1, 'https://ror.org/01khd9w51 Felton Institute'), (41393, 'https://ror.org/01khwek78', 'en', 1, 'https://ror.org/01khwek78 University of Houston - Victoria'), (41394, 'https://ror.org/01kjdwm51', 'en', 1, 'https://ror.org/01kjdwm51 Department of the Prime Minister and Cabinet'), (41395, 'https://ror.org/01kjvw753', 'en', 1, 'https://ror.org/01kjvw753 Biotechnical Educational Centre Ljubljana'), (41396, 'https://ror.org/01km55q65', 'en', 1, 'https://ror.org/01km55q65 Państwowa Wyższa Szkoła Zawodowa w Elblągu State University of Applied Sciences in Elbląg'), (41397, 'https://ror.org/01kn5gg54', 'en', 1, 'https://ror.org/01kn5gg54 Shandong Province Meteorological Bureau 山东省气象局 所有'), (41398, 'https://ror.org/01knpsp07', 'en', 1, 'https://ror.org/01knpsp07 Michigan Community Service Commission'), (41399, 'https://ror.org/01kpf2x84', 'en', 1, 'https://ror.org/01kpf2x84 Chartered Institute of Management Accountants'), (41400, 'https://ror.org/01kqyam71', 'en', 1, 'https://ror.org/01kqyam71 San Diego Miramar College'), (41401, 'https://ror.org/01kr64963', 'no_lang_code', 1, 'https://ror.org/01kr64963 Xura (United States)'), (41402, 'https://ror.org/01ktrdf59', 'it', 1, 'https://ror.org/01ktrdf59 Conservatorio di Musica Cesare Pollini'), (41403, 'https://ror.org/01ktxpf34', 'pt', 1, 'https://ror.org/01ktxpf34 Colégio Pedro II'), (41404, 'https://ror.org/01kwczx50', 'en', 1, 'https://ror.org/01kwczx50 Skadden Arps Slate Meagher & Flom, Skadden, Arps, Slate, Meagher & Flom Skadden, arps, slate, meagher & flom'), (41405, 'https://ror.org/01kxhfp75', 'en', 1, 'https://ror.org/01kxhfp75 National Museum of American History'), (41406, 'https://ror.org/01kywjn02', 'en', 1, 'https://ror.org/01kywjn02 Consumer Goods Council of South Africa'), (41407, 'https://ror.org/01kzgc408', 'fr', 1, 'https://ror.org/01kzgc408 Wilp Wilxo’oskwhl Nisga’a Institute'), (41408, 'https://ror.org/01m2yw646', 'en', 1, 'https://ror.org/01m2yw646 Horticultural Research Institute'), (41409, 'https://ror.org/01m7pan94', 'en', 1, 'https://ror.org/01m7pan94 Guru Gobind Singh Medical College and Hospital'), (41410, 'https://ror.org/01m909h91', 'en', 1, 'https://ror.org/01m909h91 Bureau of International Cooperation 国际合作局'), (41411, 'https://ror.org/01mat8t76', 'en', 1, 'https://ror.org/01mat8t76 Tainan Theological College and Seminary 台南神學院'), (41412, 'https://ror.org/01mbbxx50', 'en', 1, 'https://ror.org/01mbbxx50 China Electronic Information Industry Development 中国电子信息产业发展研究院'), (41413, 'https://ror.org/01mbzp479', 'en', 1, 'https://ror.org/01mbzp479 Korea Institute for Curriculum and Evaluation 교육 과정 및 평가를위한 한국 연구소'), (41414, 'https://ror.org/01mdqc612', 'en', 1, 'https://ror.org/01mdqc612 Institute of Sugar Beet 中国农业科学院甜菜研究所'), (41415, 'https://ror.org/01mf4te84', 'en', 1, 'https://ror.org/01mf4te84 Abbey Awards'), (41416, 'https://ror.org/01mmzry04', 'en', 1, 'https://ror.org/01mmzry04 Vinson & Elkins'), (41417, 'https://ror.org/01mpgt112', 'cs', 1, 'https://ror.org/01mpgt112 Vysoká Škola Realitní Institut Franka Dysona'), (41418, 'https://ror.org/01mtwad75', 'en', 1, 'https://ror.org/01mtwad75 Washington County Community College'), (41419, 'https://ror.org/01mv04x52', 'en', 1, 'https://ror.org/01mv04x52 British College of Osteopathic Medicine'), (41420, 'https://ror.org/01mw24p94', 'en', 1, 'https://ror.org/01mw24p94 Technological Educational Institute of Central Macedonia εχνολογικό Εκπαιδευτικό Ίδρυμα Κεντρικής Μακεδονίας'), (41421, 'https://ror.org/01mww5314', 'en', 1, 'https://ror.org/01mww5314 Health Volunteers Overseas'), (41422, 'https://ror.org/01mx9t266', 'en', 1, 'https://ror.org/01mx9t266 Indian Institute of Plantation Management'), (41423, 'https://ror.org/01myxx963', 'en', 1, 'https://ror.org/01myxx963 Sacramento City College'), (41424, 'https://ror.org/01n09qc98', 'en', 1, 'https://ror.org/01n09qc98 Fukui National College of Technology 福井工業高等専門学校'), (41425, 'https://ror.org/01n0q6e38', 'en', 1, 'https://ror.org/01n0q6e38 Gause Institute of New Antibiotics Russian Academy of Medical Sciences Научно-исследовательский институт по изысканию новых антибиотиков им. Г. Ф. Гаузе'), (41426, 'https://ror.org/01n1cbn15', 'en', 1, 'https://ror.org/01n1cbn15 Institute of Porous Flow and Fluid Mechanics 渗流流体力学研究所'), (41427, 'https://ror.org/01n2qjm43', 'en', 1, 'https://ror.org/01n2qjm43 Children’s Charities Foundation'), (41428, 'https://ror.org/01n3nvq33', 'en', 1, 'https://ror.org/01n3nvq33 Ipek University'), (41429, 'https://ror.org/01n3xha27', 'en', 1, 'https://ror.org/01n3xha27 American Institute of Pakistan Studies'), (41430, 'https://ror.org/01n51v443', 'en', 1, 'https://ror.org/01n51v443 University of North Texas at Dallas'), (41431, 'https://ror.org/01n5qfh17', 'en', 1, 'https://ror.org/01n5qfh17 Centre for Biomedical Engineering and Physics'), (41432, 'https://ror.org/01n7wr636', 'en', 1, 'https://ror.org/01n7wr636 Southwestern Adventist University Université adventiste du sud-ouest'), (41433, 'https://ror.org/01n80c364', 'en', 1, 'https://ror.org/01n80c364 Sopocka Szkoła Wyższa Sopot University of Applied Science'), (41434, 'https://ror.org/01nacjv05', 'en', 1, 'https://ror.org/01nacjv05 Louisiana Public Health Institute'), (41435, 'https://ror.org/01ncqna34', 'en', 1, 'https://ror.org/01ncqna34 Southern California Clinical and Translational Science Institute'), (41436, 'https://ror.org/01ncz4303', 'no_lang_code', 1, 'https://ror.org/01ncz4303 Sinosteel (China) 中国中钢集团公司'), (41437, 'https://ror.org/01nfhtc03', 'en', 1, 'https://ror.org/01nfhtc03 Lowitja Institute'), (41438, 'https://ror.org/01ngb3r97', 'en', 1, 'https://ror.org/01ngb3r97 Ningbo Academy of Agricultural Sciences 宁波市农业科学研究院'), (41439, 'https://ror.org/01ngwgb14', 'no_lang_code', 1, 'https://ror.org/01ngwgb14 AspenTech (United States)'), (41440, 'https://ror.org/01nh53a98', 'en', 1, 'https://ror.org/01nh53a98 Moore College of Art and Design'), (41441, 'https://ror.org/01nhftj29', 'en', 1, 'https://ror.org/01nhftj29 Ministry of Natural Resources and Environmental Protection of the Komi Republic Министерство Природных Ресурсов И Охраны Окружающей Среды Республики Коми'), (41442, 'https://ror.org/01nj0wq75', 'en', 1, 'https://ror.org/01nj0wq75 Shanghai Academy of Quality Management 上海质量管理科学研究院于'), (41443, 'https://ror.org/01nk7a404', 'en', 1, 'https://ror.org/01nk7a404 Naryan-Mar Social and Humanitarian College Нарьян-Марский социально-гуманитарный колледж имени И.П. Выучейского'), (41444, 'https://ror.org/01nkrwq24', 'en', 1, 'https://ror.org/01nkrwq24 Astronomical Society of Australia'), (41445, 'https://ror.org/01nks1c62', 'no_lang_code', 1, 'https://ror.org/01nks1c62 Nissan (Japan) 日産自動車株式会社'), (41446, 'https://ror.org/01nm14c30', 'en', 1, 'https://ror.org/01nm14c30 Northwest Arkansas Community College'), (41447, 'https://ror.org/01nmpe263', 'en', 1, 'https://ror.org/01nmpe263 Institute of Spectroscopy Институт спектроскопии Российской академии наук'), (41448, 'https://ror.org/01nna8315', 'en', 1, 'https://ror.org/01nna8315 Community College of Vermont'), (41449, 'https://ror.org/01nrzdp21', 'en', 1, 'https://ror.org/01nrzdp21 Institute of Agricultural Resources and Regional Planning 中国农业科学院农业资源与农业区划研究所'), (41450, 'https://ror.org/01nssdz50', 'en', 1, 'https://ror.org/01nssdz50 Government Medical College'), (41451, 'https://ror.org/01nsvzv47', 'en', 1, 'https://ror.org/01nsvzv47 Lamar State College–Port Arthur'), (41452, 'https://ror.org/01nsw9720', 'en', 1, 'https://ror.org/01nsw9720 Won Institute of Graduate Studies'), (41453, 'https://ror.org/01nvzzy80', 'no_lang_code', 1, 'https://ror.org/01nvzzy80 China Energy Engineering Corporation (China) 中国能源建设股份有限公司'), (41454, 'https://ror.org/01nw25822', 'en', 1, 'https://ror.org/01nw25822 National Institute of Technology, Toyota College 国立豊田工業高等専門学校'), (41455, 'https://ror.org/01nw8b729', 'en', 1, 'https://ror.org/01nw8b729 Virginia Commission for the Arts'), (41456, 'https://ror.org/01nxdaw82', 'en', 1, 'https://ror.org/01nxdaw82 KES College Κολλέγιο ΚΕΣ'), (41457, 'https://ror.org/01nxpwc48', 'en', 1, 'https://ror.org/01nxpwc48 American College of Neuropsychopharmacology'), (41458, 'https://ror.org/01nxyxz54', 'en', 1, 'https://ror.org/01nxyxz54 Mahatma Gandhi Mission Institute of Health Sciences'), (41459, 'https://ror.org/01ny6q882', 'en', 1, 'https://ror.org/01ny6q882 National Academy of Agricultural Sciences'), (41460, 'https://ror.org/01nzfne16', 'en', 1, 'https://ror.org/01nzfne16 Northern Teacher Education Program'), (41461, 'https://ror.org/01nzgtr23', 'en', 1, 'https://ror.org/01nzgtr23 Grossmont College'), (41462, 'https://ror.org/01nzz9r98', 'en', 1, 'https://ror.org/01nzz9r98 Victor Valley College'), (41463, 'https://ror.org/01p1h2017', 'no_lang_code', 1, 'https://ror.org/01p1h2017 Abhikram (India)'), (41464, 'https://ror.org/01p1xdv40', 'es', 1, 'https://ror.org/01p1xdv40 Instituto Andaluz del Patrimonio Histórico'), (41465, 'https://ror.org/01p4zf543', 'fr', 1, 'https://ror.org/01p4zf543 Agence du Bassin Hydraulique de Sebou'), (41466, 'https://ror.org/01p6qdx15', 'en', 1, 'https://ror.org/01p6qdx15 Beijing Solar Energy Research Institute 北京市太阳能研究所有限公司'), (41467, 'https://ror.org/01p777k66', 'en', 1, 'https://ror.org/01p777k66 FOD Buitenlandse Zaken, Buitenlandse Handel en Ontwikkelingssamenwerking FPS Foreign Affairs, Foreign Trade and Development Cooperation FÖD Auswärtige Angelegenheiten, Außenhandel und Entwicklungszusammenarbeit SPF Affaires étrangères, Commerce extérieur et Coopération au Développement'), (41468, 'https://ror.org/01p78w079', 'en', 1, 'https://ror.org/01p78w079 Chosun University Dental Hospital'), (41469, 'https://ror.org/01p7e9s80', 'it', 1, 'https://ror.org/01p7e9s80 Conservatorio Statale di Musica Domenico Cimarosa di Avellino'), (41470, 'https://ror.org/01p99tm60', 'no_lang_code', 1, 'https://ror.org/01p99tm60 Sekem'), (41471, 'https://ror.org/01p9aw348', 'no_lang_code', 1, 'https://ror.org/01p9aw348 Suven Life Sciences (India)'), (41472, 'https://ror.org/01pc4rp54', 'en', 1, 'https://ror.org/01pc4rp54 Art Institute of Houston'), (41473, 'https://ror.org/01pcs0h38', 'fr', 1, 'https://ror.org/01pcs0h38 École Nationale des Greffes'), (41474, 'https://ror.org/01pe8g251', 'en', 1, 'https://ror.org/01pe8g251 North Bennet Street School'), (41475, 'https://ror.org/01pf6nd13', 'no_lang_code', 1, 'https://ror.org/01pf6nd13 TD Bank'), (41476, 'https://ror.org/01pfpr664', 'en', 1, 'https://ror.org/01pfpr664 Le Cordon Bleu College of Culinary Arts, The Blue Ribbon'), (41477, 'https://ror.org/01pg7ze09', 'cs', 1, 'https://ror.org/01pg7ze09 CEVRO Institut, CEVRO Institute'), (41478, 'https://ror.org/01pkcvt97', 'no_lang_code', 1, 'https://ror.org/01pkcvt97 JetBlue (United States)'), (41479, 'https://ror.org/01pmm8272', 'en', 1, 'https://ror.org/01pmm8272 Privatuniversität Schloss Seeburg Seeburg Castle University'), (41480, 'https://ror.org/01pmnvq60', 'en', 1, 'https://ror.org/01pmnvq60 India HIV/AIDS Alliance'), (41481, 'https://ror.org/01pnp3p28', 'en', 1, 'https://ror.org/01pnp3p28 College of Coastal Georgia'), (41482, 'https://ror.org/01ppfgh80', 'en', 1, 'https://ror.org/01ppfgh80 Packaging Technical Centre'), (41483, 'https://ror.org/01prf6p66', 'no_lang_code', 1, 'https://ror.org/01prf6p66 Zaber Technologies (Canada)'), (41484, 'https://ror.org/01prjcc04', 'en', 1, 'https://ror.org/01prjcc04 SRH Hochschule Berlin SRH University Berlin'), (41485, 'https://ror.org/01pv03m42', 'no_lang_code', 1, 'https://ror.org/01pv03m42 Strand Life Sciences (India)'), (41486, 'https://ror.org/01pwpsm46', 'en', 1, 'https://ror.org/01pwpsm46 China Academy of Safety Sciences and Technology 中国安全生产科学研究院'), (41487, 'https://ror.org/01pxzvy69', 'en', 1, 'https://ror.org/01pxzvy69 Orangeburg–Calhoun Technical College'), (41488, 'https://ror.org/01pysaw17', 'it', 1, 'https://ror.org/01pysaw17 Conservatorio di Musica "Luca Marenzio"'), (41489, 'https://ror.org/01q07sy43', 'fr', 1, 'https://ror.org/01q07sy43 Ministre de la Santé'), (41490, 'https://ror.org/01q1kj855', 'en', 1, 'https://ror.org/01q1kj855 Animal Health Training and Consultancy Service'), (41491, 'https://ror.org/01q29tm52', 'en', 1, 'https://ror.org/01q29tm52 Smart Water Fund'), (41492, 'https://ror.org/01q2x5x62', 'en', 1, 'https://ror.org/01q2x5x62 Indian Institute of Social Welfare and Business Management ইন্ডিয়ান ইনস্টিটিউট অফ সোশ্যাল ওয়েলফেয়ার অ্যান্ড বিজনেস ম্যানেজমেন্ট'), (41493, 'https://ror.org/01qas6g18', 'en', 1, 'https://ror.org/01qas6g18 Södra Älvsborg Hospital Södra Älvsborgs Sjukhus'), (41494, 'https://ror.org/01qcg0c38', 'pt', 1, 'https://ror.org/01qcg0c38 Escola Superior de Ciências da Santa Casa de Misericórdia de Vitória'), (41495, 'https://ror.org/01qfgm256', 'en', 1, 'https://ror.org/01qfgm256 V.E. Lashkaryov Institute of Semiconductor Physics Інститут фізики напівпровідників ім. В.Є. Лашкарьов'), (41496, 'https://ror.org/01qg9m571', 'pt', 1, 'https://ror.org/01qg9m571 Jornal de Notícias'), (41497, 'https://ror.org/01qgfpv05', 'en', 1, 'https://ror.org/01qgfpv05 Pennsylvania Highlands Community College'), (41498, 'https://ror.org/01qhsr268', 'fr', 1, 'https://ror.org/01qhsr268 Institut des Arts de Diffusion'), (41499, 'https://ror.org/01qhvn038', 'en', 1, 'https://ror.org/01qhvn038 Petplan Charitable Trust'), (41500, 'https://ror.org/01qjbb734', 'en', 1, 'https://ror.org/01qjbb734 Hochschule der Sächsischen Polizei Saxon Police Force'), (41501, 'https://ror.org/01qqm4q52', 'en', 1, 'https://ror.org/01qqm4q52 Cañada College'), (41502, 'https://ror.org/01qv7e222', 'en', 1, 'https://ror.org/01qv7e222 Pontifical Athenaeum Regina Apostolorum Pontificio Ateneo Regina Apostolorum'), (41503, 'https://ror.org/01qw1bz85', 'en', 1, 'https://ror.org/01qw1bz85 Humphreys College'), (41504, 'https://ror.org/01qw4gv04', 'en', 1, 'https://ror.org/01qw4gv04 Sri Lanka Law College'), (41505, 'https://ror.org/01qzva589', 'no_lang_code', 1, 'https://ror.org/01qzva589 Monsanto (India)'), (41506, 'https://ror.org/01r134p51', 'en', 1, 'https://ror.org/01r134p51 Urban Unit'), (41507, 'https://ror.org/01r17ea31', 'pt', 1, 'https://ror.org/01r17ea31 Grupo Ibmec Educacional'), (41508, 'https://ror.org/01r3pfw81', 'en', 1, 'https://ror.org/01r3pfw81 Institute of Animal Sciences'), (41509, 'https://ror.org/01r45ka37', 'en', 1, 'https://ror.org/01r45ka37 Nanjing Library 南京图书馆'), (41510, 'https://ror.org/01r7sqp31', 'en', 1, 'https://ror.org/01r7sqp31 Melbourne Water'), (41511, 'https://ror.org/01r9gn109', 'en', 1, 'https://ror.org/01r9gn109 Surry Community College'), (41512, 'https://ror.org/01r9n3w70', 'en', 1, 'https://ror.org/01r9n3w70 Connecticut Department of Transportation'), (41513, 'https://ror.org/01raxej33', 'en', 1, 'https://ror.org/01raxej33 Jiangsu Provincial Party School 江苏省行政学院'), (41514, 'https://ror.org/01rdbtj19', 'en', 1, 'https://ror.org/01rdbtj19 Australian Rotary Health'), (41515, 'https://ror.org/01rfg1r50', 'en', 1, 'https://ror.org/01rfg1r50 Department of Higher Education'), (41516, 'https://ror.org/01rg6da32', 'en', 1, 'https://ror.org/01rg6da32 Bureau of Agriculture of Guangzhou Municipality 广州市农业局'), (41517, 'https://ror.org/01rhp6n73', 'en', 1, 'https://ror.org/01rhp6n73 Erhvervsakademi Sjælland Zealand Institute of Business and Technology'), (41518, 'https://ror.org/01rjfjt94', 'en', 1, 'https://ror.org/01rjfjt94 South University'), (41519, 'https://ror.org/01rjsge60', 'no_lang_code', 1, 'https://ror.org/01rjsge60 Office Depot (United States)'), (41520, 'https://ror.org/01rk7mv85', 'no_lang_code', 1, 'https://ror.org/01rk7mv85 Siemens (Hungary)'), (41521, 'https://ror.org/01rkgg256', 'en', 1, 'https://ror.org/01rkgg256 Korea Customs Service 관세청'), (41522, 'https://ror.org/01rkw8w63', 'no_lang_code', 1, 'https://ror.org/01rkw8w63 Actia Group (France)'), (41523, 'https://ror.org/01rmmj052', 'en', 1, 'https://ror.org/01rmmj052 Centre of Ticks and Tick-borne diseases'), (41524, 'https://ror.org/01rn72k05', 'en', 1, 'https://ror.org/01rn72k05 G.A. Razuvaev Institute of Organometallic Chemistry Институт металлоорганической химии имени Г. А. Разуваева'), (41525, 'https://ror.org/01s15bz77', 'en', 1, 'https://ror.org/01s15bz77 All-Russian Scientific Research and Technological Institute of Poultry Russian Academy of Agricultural Sciences Всероссийский научно-исследовательский и технологический институт птицеводства Российской академии сельскохозяйственных наук'), (41526, 'https://ror.org/01s1s3g75', 'en', 1, 'https://ror.org/01s1s3g75 Hebei Meteorological Bureau 河北省气象局'), (41527, 'https://ror.org/01s26xz84', 'en', 1, 'https://ror.org/01s26xz84 Mesabi Range College'), (41528, 'https://ror.org/01s3vfp47', 'en', 1, 'https://ror.org/01s3vfp47 Atlanta Technical College'), (41529, 'https://ror.org/01s4arm57', 'pt', 1, 'https://ror.org/01s4arm57 Faculdade Guairacá Guaíracá Faculty'), (41530, 'https://ror.org/01s9gyx13', 'en', 1, 'https://ror.org/01s9gyx13 Anti Corruption and Civil Rights Commission 국민권익위원회'), (41531, 'https://ror.org/01scq3556', 'en', 1, 'https://ror.org/01scq3556 Denmark Technical College'), (41532, 'https://ror.org/01senny43', 'pt', 1, 'https://ror.org/01senny43 Instituto de Pesquisas Energéticas e Nucleares Nuclear Energy Research Institute'), (41533, 'https://ror.org/01sfnbz84', 'en', 1, 'https://ror.org/01sfnbz84 VisionTree'), (41534, 'https://ror.org/01sharn77', 'en', 1, 'https://ror.org/01sharn77 Office of Multidisciplinary Activities'), (41535, 'https://ror.org/01shp5e75', 'en', 1, 'https://ror.org/01shp5e75 Black River Technical College'), (41536, 'https://ror.org/01ska0903', 'en', 1, 'https://ror.org/01ska0903 Institute of the Human Brain Институт мозга человека РАН'), (41537, 'https://ror.org/01skwee93', 'no_lang_code', 1, 'https://ror.org/01skwee93 AgeneBio (United States)'), (41538, 'https://ror.org/01smvzn14', 'en', 1, 'https://ror.org/01smvzn14 Winter Cereal Trust'), (41539, 'https://ror.org/01sn2ky05', 'no_lang_code', 1, 'https://ror.org/01sn2ky05 Genes''ink (France)'), (41540, 'https://ror.org/01sn6ez28', 'en', 1, 'https://ror.org/01sn6ez28 Manpower Development Corporation'), (41541, 'https://ror.org/01spfrk28', 'en', 1, 'https://ror.org/01spfrk28 Columbia College Hollywood'), (41542, 'https://ror.org/01spg6m39', 'en', 1, 'https://ror.org/01spg6m39 East Asia School of Theology 东亞神学院'), (41543, 'https://ror.org/01srjfc50', 'de', 1, 'https://ror.org/01srjfc50 Landesarchiv'), (41544, 'https://ror.org/01ss10648', 'en', 1, 'https://ror.org/01ss10648 Northern University of Malaysia Universiti Utara Malaysia 馬來西亞北方大學'), (41545, 'https://ror.org/01st86b26', 'no_lang_code', 1, 'https://ror.org/01st86b26 Energy Services in Sahelian Environment (Senegal) Service de l''énergie en milieu sahélien'), (41546, 'https://ror.org/01stcbz02', 'en', 1, 'https://ror.org/01stcbz02 Los Angeles Mission College'), (41547, 'https://ror.org/01svh8112', 'pl', 1, 'https://ror.org/01svh8112 Wyższa Szkoła Bezpieczeństwa i Securities Services w Warszawie'), (41548, 'https://ror.org/01svz3w83', 'en', 1, 'https://ror.org/01svz3w83 United States Indonesia Society'), (41549, 'https://ror.org/01swa5m73', 'en', 1, 'https://ror.org/01swa5m73 Royal College of Midwives'), (41550, 'https://ror.org/01swt4h11', 'en', 1, 'https://ror.org/01swt4h11 Supreme Court of Korea 대한민국 대법원'), (41551, 'https://ror.org/01sx88q57', 'en', 1, 'https://ror.org/01sx88q57 RenewableUK'), (41552, 'https://ror.org/01sygwk11', 'en', 1, 'https://ror.org/01sygwk11 Tennessee College of Applied Technology - Shelbyville'), (41553, 'https://ror.org/01t067805', 'en', 1, 'https://ror.org/01t067805 Central Soil and Materials Research Station'), (41554, 'https://ror.org/01t0hvx23', 'en', 1, 'https://ror.org/01t0hvx23 Stanly Community College'), (41555, 'https://ror.org/01t2fht66', 'en', 1, 'https://ror.org/01t2fht66 Institute of Economic System and Management 国家发展和改革委员会经济体制与管理研究所'), (41556, 'https://ror.org/01t3f4t10', 'en', 1, 'https://ror.org/01t3f4t10 ActionAid'), (41557, 'https://ror.org/01t3g9a95', 'en', 1, 'https://ror.org/01t3g9a95 Community College of Beaver County'), (41558, 'https://ror.org/01t51rc23', 'en', 1, 'https://ror.org/01t51rc23 Volunteer State Community College'), (41559, 'https://ror.org/01t56m506', 'no_lang_code', 1, 'https://ror.org/01t56m506 Caisse nationale suisse d''assurance en cas d''accidents Istituto nazionale svizzero di assicurazione contro gli infortuni Schweizerische Unfallversicherungsanstalt Suva'), (41560, 'https://ror.org/01t5p5h79', 'no_lang_code', 1, 'https://ror.org/01t5p5h79 Cedar Fair (United States)'), (41561, 'https://ror.org/01t8drk63', 'en', 1, 'https://ror.org/01t8drk63 Land Transport Authority Penguasa Pengangkutan Darat நிலப் போக்குவரத்து வாரியம் 陆路交通管理局'), (41562, 'https://ror.org/01t8gb397', 'en', 1, 'https://ror.org/01t8gb397 Scientific Centre for Aerospace Research of the Earth НАУЧНЫЙ ЦЕНТР АЭРОКОСМИЧЕСКИХ ИССЛЕДОВАНИЙ ЗЕМЛИ ИН-ТА ГЕОЛОГИЧЕСКИХ НАУК НАН УКРАИНЫ, ГУ'), (41563, 'https://ror.org/01t8tyk97', 'sv', 1, 'https://ror.org/01t8tyk97 TransportForsK'), (41564, 'https://ror.org/01t9czq80', 'en', 1, 'https://ror.org/01t9czq80 International University of Rabat Université Internationale de Rabat'), (41565, 'https://ror.org/01tanx198', 'fr', 1, 'https://ror.org/01tanx198 Centre Africain de Recherches sur Bananiers et Plantains, Centre Régional de Recherches sur Bananiers et Plantains'), (41566, 'https://ror.org/01tb4bh27', 'en', 1, 'https://ror.org/01tb4bh27 National Fisheries Research and Development Institute'), (41567, 'https://ror.org/01tdr6x55', 'en', 1, 'https://ror.org/01tdr6x55 Kenyan Medical Women''s Association'), (41568, 'https://ror.org/01tefzr55', 'en', 1, 'https://ror.org/01tefzr55 Great Bay Stewards'), (41569, 'https://ror.org/01teyc394', 'en', 1, 'https://ror.org/01teyc394 Health Insurance Review and Assessment Service 건강 보험 심사 평가원'), (41570, 'https://ror.org/01tg7a346', 'en', 1, 'https://ror.org/01tg7a346 SA Health'), (41571, 'https://ror.org/01th09c42', 'no_lang_code', 1, 'https://ror.org/01th09c42 Suncon Engineers (India)'), (41572, 'https://ror.org/01tq31x15', 'en', 1, 'https://ror.org/01tq31x15 Państwowa Wyższa Szkoła Zawodowa im. rotmistrza Witolda Pileckiego w Oświęcimiu State School of Higher Education in Oświęcim'), (41573, 'https://ror.org/01tqmg467', 'en', 1, 'https://ror.org/01tqmg467 Ministry of Health and Social Services'), (41574, 'https://ror.org/01tqmsq19', 'en', 1, 'https://ror.org/01tqmsq19 Academia Tehnică Militară Military Technical Academy'), (41575, 'https://ror.org/01trzhx11', 'en', 1, 'https://ror.org/01trzhx11 Antelope Valley College'), (41576, 'https://ror.org/01tvfmc06', 'no_lang_code', 1, 'https://ror.org/01tvfmc06 Glasbau Hahn (Germany)'), (41577, 'https://ror.org/01tw2tw87', 'no_lang_code', 1, 'https://ror.org/01tw2tw87 Gentronix (United Kingdom)'), (41578, 'https://ror.org/01twn9665', 'en', 1, 'https://ror.org/01twn9665 Department of Social Sciences'), (41579, 'https://ror.org/01tx99335', 'en', 1, 'https://ror.org/01tx99335 Maysville Community and Technical College'), (41580, 'https://ror.org/01tzw5x87', 'fr', 1, 'https://ror.org/01tzw5x87 Réseau des Plateformess d’ONG d’Afrique de l’Ouest et du Centre'), (41581, 'https://ror.org/01v3sxv43', 'en', 1, 'https://ror.org/01v3sxv43 North Lake College'), (41582, 'https://ror.org/01v41bc35', 'en', 1, 'https://ror.org/01v41bc35 Oregon College of Art and Craft'), (41583, 'https://ror.org/01v4kb744', 'no_lang_code', 1, 'https://ror.org/01v4kb744 Larsen & Toubro (India)'), (41584, 'https://ror.org/01v58ha34', 'pt', 1, 'https://ror.org/01v58ha34 Agrupamento de Escolas Nuno Álvares'), (41585, 'https://ror.org/01v59d868', 'sl', 1, 'https://ror.org/01v59d868 Šolski Center Šentjur'), (41586, 'https://ror.org/01v5nrd60', 'en', 1, 'https://ror.org/01v5nrd60 Center for Health Design'), (41587, 'https://ror.org/01v5wyw51', 'en', 1, 'https://ror.org/01v5wyw51 Minnesota Housing Finance Agency'), (41588, 'https://ror.org/01v7j8968', 'de', 1, 'https://ror.org/01v7j8968 Hochschule für den öffentlichen Dienst in Bayern'), (41589, 'https://ror.org/01v7v5m29', 'en', 1, 'https://ror.org/01v7v5m29 Uttarakhand Jal Sansthan'), (41590, 'https://ror.org/01v7zwf98', 'en', 1, 'https://ror.org/01v7zwf98 National Tainan Institute of Nursing 國立臺南護理專科學校'), (41591, 'https://ror.org/01v8nfs80', 'en', 1, 'https://ror.org/01v8nfs80 Warsaw Academy of Computer Science, Management and Administration Wyższa Szkoła Informatyki, Zarządzania i Administracji'), (41592, 'https://ror.org/01vcn5r95', 'en', 1, 'https://ror.org/01vcn5r95 National Postgraduate Medical College of Nigeria'), (41593, 'https://ror.org/01vctnd13', 'nl', 1, 'https://ror.org/01vctnd13 Vereniging Achmea'), (41594, 'https://ror.org/01vd19x80', 'no_lang_code', 1, 'https://ror.org/01vd19x80 Arthrex (United States)'), (41595, 'https://ror.org/01vdc4k69', 'no_lang_code', 1, 'https://ror.org/01vdc4k69 Cyprotex (United States)'), (41596, 'https://ror.org/01vdt8f48', 'en', 1, 'https://ror.org/01vdt8f48 MRC Mitochondrial Biology Unit'), (41597, 'https://ror.org/01vfwah22', 'en', 1, 'https://ror.org/01vfwah22 Pacific Dental College and Hospital'), (41598, 'https://ror.org/01vga2998', 'en', 1, 'https://ror.org/01vga2998 Agincourt Health and Socio-Demographic Surveillance System'), (41599, 'https://ror.org/01vgq3930', 'en', 1, 'https://ror.org/01vgq3930 Tanzania Red Cross Society'), (41600, 'https://ror.org/01vja6y50', 'en', 1, 'https://ror.org/01vja6y50 South Mountain Community College'), (41601, 'https://ror.org/01vn5yf24', 'en', 1, 'https://ror.org/01vn5yf24 Solano Community College'), (41602, 'https://ror.org/01vpg0r82', 'en', 1, 'https://ror.org/01vpg0r82 Uintah Basin Applied Technology College'), (41603, 'https://ror.org/01vq5dj09', 'en', 1, 'https://ror.org/01vq5dj09 Shrewsbury College'), (41604, 'https://ror.org/01vrhpc86', 'en', 1, 'https://ror.org/01vrhpc86 Ethiopian Society of Obstetricians and Gynecologists'), (41605, 'https://ror.org/01vvpqc21', 'no_lang_code', 1, 'https://ror.org/01vvpqc21 Panos Institute Southern Africa'), (41606, 'https://ror.org/01w09y597', 'en', 1, 'https://ror.org/01w09y597 Mannheim University of Music and Performing Arts Staatliche Hochschule für Musik und Darstellende Kunst Mannheim'), (41607, 'https://ror.org/01w336058', 'en', 1, 'https://ror.org/01w336058 Royal Norwegian Embassy in London'), (41608, 'https://ror.org/01w44h058', 'en', 1, 'https://ror.org/01w44h058 Tartu Academy of Theology Tartu Teoloogia Akadeemia'), (41609, 'https://ror.org/01w4c3c70', 'no_lang_code', 1, 'https://ror.org/01w4c3c70 WAM Technology (South Africa)'), (41610, 'https://ror.org/01w4tn863', 'en', 1, 'https://ror.org/01w4tn863 Polytechnic Lavoslav Ružička Vukovar Veleučilište Lavoslav Ružička u Vukovaru'), (41611, 'https://ror.org/01w6rxw55', 'en', 1, 'https://ror.org/01w6rxw55 Atomic Minerals Directorate for Exploration and Research परमाणु खनिज अन्वेषण एवं अनुसंधान निदेशालय'), (41612, 'https://ror.org/01w84qj32', 'en', 1, 'https://ror.org/01w84qj32 V.A. Negovsky Scientific Research Institute of General Reanimatology НИИ общей реаниматологии РАМН'), (41613, 'https://ror.org/01w8np338', 'no_lang_code', 1, 'https://ror.org/01w8np338 Munin Corporation (United States)'), (41614, 'https://ror.org/01w9gvv59', 'en', 1, 'https://ror.org/01w9gvv59 Pueblo Community College'), (41615, 'https://ror.org/01wc8dm69', 'en', 1, 'https://ror.org/01wc8dm69 Central Clinical Hospital and Polyclinic Центральная клиническая больница c поликлиникой Управления делами Президента Российской Федерации'), (41616, 'https://ror.org/01wcw8667', 'pl', 1, 'https://ror.org/01wcw8667 Wyższa Szkoła Przedsiębiorczości i Marketingu w Chrzanowie'), (41617, 'https://ror.org/01wd8z492', 'fr', 1, 'https://ror.org/01wd8z492 Conseil Français de l''Énergie'), (41618, 'https://ror.org/01we8bn75', 'en', 1, 'https://ror.org/01we8bn75 PFH Private University of Applied Sciences Private Hochschule Göttingen'), (41619, 'https://ror.org/01wff4j64', 'no_lang_code', 1, 'https://ror.org/01wff4j64 Macy''s (United States)'), (41620, 'https://ror.org/01whksa54', 'en', 1, 'https://ror.org/01whksa54 Institute of Astronomy Институт астрономии РАН'), (41621, 'https://ror.org/01wk35t67', 'fr', 1, 'https://ror.org/01wk35t67 Groupe Sociétés, Religions, Laïcités'), (41622, 'https://ror.org/01wk6zs95', 'en', 1, 'https://ror.org/01wk6zs95 Aiken Technical College'), (41623, 'https://ror.org/01wk9js81', 'en', 1, 'https://ror.org/01wk9js81 Ministry of Environment Science Technology and Innovation'), (41624, 'https://ror.org/01wm6bg59', 'en', 1, 'https://ror.org/01wm6bg59 West Shore Community College'), (41625, 'https://ror.org/01wm9rt41', 'en', 1, 'https://ror.org/01wm9rt41 Rowan-Cabarrus Community College, Rowan–Cabarrus Community College'), (41626, 'https://ror.org/01wmq0x68', 'en', 1, 'https://ror.org/01wmq0x68 Beykoz Lojistik Meslek Yüksekokulu Beykoz Vocational School of Logistics'), (41627, 'https://ror.org/01wp3d509', 'en', 1, 'https://ror.org/01wp3d509 Academy of State Administration of Grain 国家粮食局科学研究院'), (41628, 'https://ror.org/01wvxvm13', 'en', 1, 'https://ror.org/01wvxvm13 University of Iowa Foundation'), (41629, 'https://ror.org/01ww2bg72', 'en', 1, 'https://ror.org/01ww2bg72 Oil and Gas Research Institute Институт проблем нефти и газа Российской академии наук'), (41630, 'https://ror.org/01wx0d888', 'de', 1, 'https://ror.org/01wx0d888 Fachhochschule für Management & Kommunikation'), (41631, 'https://ror.org/01wz97s39', 'en', 1, 'https://ror.org/01wz97s39 Senckenberg Forschungsinstitut und Naturmuseum Frankfurt/M Senckenberg Research Institute and Natural History Museum Frankfurt/M'), (41632, 'https://ror.org/01wzc4m50', 'no_lang_code', 1, 'https://ror.org/01wzc4m50 Aurobindo Pharma (India)'), (41633, 'https://ror.org/01x1jeh78', 'en', 1, 'https://ror.org/01x1jeh78 International School of Law and Business Tarptautinė teisės ir verslo aukštoji mokykla'), (41634, 'https://ror.org/01x1nsf94', 'no_lang_code', 1, 'https://ror.org/01x1nsf94 Smartesting (France)'), (41635, 'https://ror.org/01x1wr265', 'no_lang_code', 1, 'https://ror.org/01x1wr265 Tata Technologies (India)'), (41636, 'https://ror.org/01x3kkr08', 'no_lang_code', 1, 'https://ror.org/01x3kkr08 JPMorgan Chase & Co (United States)'), (41637, 'https://ror.org/01x51st25', 'no_lang_code', 1, 'https://ror.org/01x51st25 Cognizant (India)'), (41638, 'https://ror.org/01x735t80', 'no_lang_code', 1, 'https://ror.org/01x735t80 CoreQuest (Switzerland)'), (41639, 'https://ror.org/01x7r2e09', 'en', 1, 'https://ror.org/01x7r2e09 Central Ground Water Board'), (41640, 'https://ror.org/01x7teq58', 'en', 1, 'https://ror.org/01x7teq58 City Vision University'), (41641, 'https://ror.org/01xaxtt28', 'en', 1, 'https://ror.org/01xaxtt28 Varna University of Management'), (41642, 'https://ror.org/01xc6az48', 'en', 1, 'https://ror.org/01xc6az48 Fondazione Internazionale Balzan International Balzan Prize Foundation'), (41643, 'https://ror.org/01xcsye48', 'en', 1, 'https://ror.org/01xcsye48 Kings Health Partners'), (41644, 'https://ror.org/01xddfn70', 'en', 1, 'https://ror.org/01xddfn70 Fairview School District'), (41645, 'https://ror.org/01xe6j451', 'no_lang_code', 1, 'https://ror.org/01xe6j451 Bupa'), (41646, 'https://ror.org/01xes5j22', 'en', 1, 'https://ror.org/01xes5j22 Panos Eastern Africa'), (41647, 'https://ror.org/01xf7jb19', 'en', 1, 'https://ror.org/01xf7jb19 Zanjan University of Medical Sciences دانشگاه علوم پزشکی زنجان'), (41648, 'https://ror.org/01xk4y863', 'it', 1, 'https://ror.org/01xk4y863 Accademia di Belle Arti di Napoli Naples Academy of Fine Arts'), (41649, 'https://ror.org/01xmrwb67', 'en', 1, 'https://ror.org/01xmrwb67 Lagos State Polytechnic'), (41650, 'https://ror.org/01xq37c18', 'en', 1, 'https://ror.org/01xq37c18 V.I.Shumakov Federal Research Center of Transplantology and Artificial Organs Федеральный научный центр трансплантологии и искусственных органов имени академика В.И. Шумакова'), (41651, 'https://ror.org/01xqt1a75', 'en', 1, 'https://ror.org/01xqt1a75 CIAM Public Health Research and Development Centre'), (41652, 'https://ror.org/01xsmwp79', 'no_lang_code', 1, 'https://ror.org/01xsmwp79 Springer Nature (United States)'), (41653, 'https://ror.org/01xtfrw48', 'it', 1, 'https://ror.org/01xtfrw48 Conservatorio di Musica Umberto Giordano'), (41654, 'https://ror.org/01xwqek41', 'en', 1, 'https://ror.org/01xwqek41 Australian Federal Police'), (41655, 'https://ror.org/01xww0f05', 'no_lang_code', 1, 'https://ror.org/01xww0f05 Base4 Innovation (United Kingdom)'), (41656, 'https://ror.org/01xx2ne27', 'en', 1, 'https://ror.org/01xx2ne27 Department of Virology'), (41657, 'https://ror.org/01xyb1v19', 'en', 1, 'https://ror.org/01xyb1v19 Civil Aviation Flight University of China 中国民用航空飞行学院'), (41658, 'https://ror.org/01xyx5098', 'en', 1, 'https://ror.org/01xyx5098 Defense Information Systems Agency'), (41659, 'https://ror.org/01y010s06', 'en', 1, 'https://ror.org/01y010s06 Tanzania Traditional Energy Development and Environment Organisation'), (41660, 'https://ror.org/01y0eyq70', 'en', 1, 'https://ror.org/01y0eyq70 International Society for the Study of the Lumbar Spine'), (41661, 'https://ror.org/01y0jpb32', 'en', 1, 'https://ror.org/01y0jpb32 Tallinn Health Care College Tallinna Tervishoiu Korgkool'), (41662, 'https://ror.org/01y2r8f15', 'en', 1, 'https://ror.org/01y2r8f15 United States Institute for Theatre Technology'), (41663, 'https://ror.org/01y414495', 'en', 1, 'https://ror.org/01y414495 Paris School of Business'), (41664, 'https://ror.org/01y5kcv82', 'en', 1, 'https://ror.org/01y5kcv82 BridgeValley Community and Technical College'), (41665, 'https://ror.org/01yf3qn42', 'no_lang_code', 1, 'https://ror.org/01yf3qn42 Air Quality Consultants (United Kingdom)'), (41666, 'https://ror.org/01ygh0g51', 'en', 1, 'https://ror.org/01ygh0g51 Welding Research Council'), (41667, 'https://ror.org/01ygw1452', 'en', 1, 'https://ror.org/01ygw1452 Institute of Ecological Problems of the North УрО РАН. Институт экологических проблем Севера УрО РАН в соответствии с приказом ФАНО'), (41668, 'https://ror.org/01yh59845', 'en', 1, 'https://ror.org/01yh59845 Montana Bible College'), (41669, 'https://ror.org/01ym21515', 'en', 1, 'https://ror.org/01ym21515 Darton State College'), (41670, 'https://ror.org/01ym43775', 'it', 1, 'https://ror.org/01ym43775 Academy of Fine Arts of Florence Accademia di Belle Arti di Firenze'), (41671, 'https://ror.org/01ymr0y61', 'en', 1, 'https://ror.org/01ymr0y61 National Archives of Australia'), (41672, 'https://ror.org/01yms7j39', 'en', 1, 'https://ror.org/01yms7j39 Academy of Business and Health Sciences in Lodz Wyższa Szkoła Biznesu i Nauk o Zdrowiu'), (41673, 'https://ror.org/01yp7wa04', 'no_lang_code', 1, 'https://ror.org/01yp7wa04 NovaLead Pharma (India)'), (41674, 'https://ror.org/01yqkbc31', 'en', 1, 'https://ror.org/01yqkbc31 Chetham''s School of Music'), (41675, 'https://ror.org/01ysc1e93', 'en', 1, 'https://ror.org/01ysc1e93 Lower Columbia College'), (41676, 'https://ror.org/01ysrdj89', 'no_lang_code', 1, 'https://ror.org/01ysrdj89 Medlog Systems (United States)'), (41677, 'https://ror.org/01yvchj11', 'en', 1, 'https://ror.org/01yvchj11 Horizon University'), (41678, 'https://ror.org/01yy74248', 'en', 1, 'https://ror.org/01yy74248 Institute of Applied Technology 应用技术研究所'), (41679, 'https://ror.org/01yykzy84', 'no_lang_code', 1, 'https://ror.org/01yykzy84 Mahle (Portugal)'), (41680, 'https://ror.org/01yz56j89', 'en', 1, 'https://ror.org/01yz56j89 National Training Service Servicio Nacional de Aprendizaje'), (41681, 'https://ror.org/01z1qnm06', 'en', 1, 'https://ror.org/01z1qnm06 Institute for Advanced Study in the Humanities Essen Kulturwissenschaftliches Institut Essen'), (41682, 'https://ror.org/01z1rpp33', 'en', 1, 'https://ror.org/01z1rpp33 SKANS School of Accountancy'), (41683, 'https://ror.org/01z22gc86', 'en', 1, 'https://ror.org/01z22gc86 Chinese Academy of Cultural Heritage 中国文化遗产研究院'), (41684, 'https://ror.org/01z3b4937', 'fr', 1, 'https://ror.org/01z3b4937 École Nationale Forestière d''Ingénieurs'), (41685, 'https://ror.org/01z4e0695', 'en', 1, 'https://ror.org/01z4e0695 Winston Churchill Memorial Trust'), (41686, 'https://ror.org/01z4nez64', 'en', 1, 'https://ror.org/01z4nez64 Academy of Broadcasting Science 国家广播电影电视总局广播科学研究院'), (41687, 'https://ror.org/01z4x3k54', 'en', 1, 'https://ror.org/01z4x3k54 Association for Stimulating Know How'), (41688, 'https://ror.org/01z524369', 'en', 1, 'https://ror.org/01z524369 Jamestown Business College'), (41689, 'https://ror.org/01z61p797', 'en', 1, 'https://ror.org/01z61p797 Big Bend Community College'), (41690, 'https://ror.org/01z686714', 'en', 1, 'https://ror.org/01z686714 Institute of Computational Mathematics and Mathematical Geophysics Федеральное государственное бюджетное учреждение науки Институт вычислительной математики и математической геофизики Сибирского отделения Российской академии наук'), (41691, 'https://ror.org/01z6kem44', 'no_lang_code', 1, 'https://ror.org/01z6kem44 Hiep Phuoc Power (Vietnam)'), (41692, 'https://ror.org/01zavdj36', 'en', 1, 'https://ror.org/01zavdj36 Ministry of Health and Social Affairs Socialdepartementet'), (41693, 'https://ror.org/01zavqc64', 'en', 1, 'https://ror.org/01zavqc64 Institute of Petroleum Chemistry Институт Химии Нефти Со РАН'), (41694, 'https://ror.org/01zb1m871', 'en', 1, 'https://ror.org/01zb1m871 Conservatoire Royal de Liège Koninklijk Conservatorium Luik Royal Conservatory of Liège'), (41695, 'https://ror.org/01zb3pc28', 'en', 1, 'https://ror.org/01zb3pc28 North Kent College'), (41696, 'https://ror.org/01zbxna89', 'en', 1, 'https://ror.org/01zbxna89 Overseas Koreans Foundation'), (41697, 'https://ror.org/01zc1f144', 'es', 1, 'https://ror.org/01zc1f144 Hospital Universitario Araba'), (41698, 'https://ror.org/01zg1t177', 'en', 1, 'https://ror.org/01zg1t177 Catholic Development Office'), (41699, 'https://ror.org/01zg9j813', 'no_lang_code', 1, 'https://ror.org/01zg9j813 Thieme Medical Publishers (Germany)'), (41700, 'https://ror.org/01zh8gn91', 'no_lang_code', 1, 'https://ror.org/01zh8gn91 Companhia Energética de Pernambuco'), (41701, 'https://ror.org/01zk54j03', 'en', 1, 'https://ror.org/01zk54j03 Evelyn Hone College'), (41702, 'https://ror.org/01zkyh967', 'fr', 1, 'https://ror.org/01zkyh967 Commune de Bobo-Dioulasso'), (41703, 'https://ror.org/01zmrev66', 'en', 1, 'https://ror.org/01zmrev66 Mississippi Delta Community College'), (41704, 'https://ror.org/01zp8e713', 'en', 1, 'https://ror.org/01zp8e713 The Arab Institute of Navigation'); INSERT INTO `rors` VALUES (41705, 'https://ror.org/01zpqad83', 'en', 1, 'https://ror.org/01zpqad83 West Virginia Space Grant Consortium'), (41706, 'https://ror.org/01zqd7t66', 'en', 1, 'https://ror.org/01zqd7t66 Instituto Nacional de Meteorologia de Moçambique Mozambique National Institute of Meteorology'), (41707, 'https://ror.org/01zqv1s26', 'en', 1, 'https://ror.org/01zqv1s26 Faculty of Public Health'), (41708, 'https://ror.org/01zr65j15', 'pt', 1, 'https://ror.org/01zr65j15 Instituto Nacional de Ciência e Tecnologia de Ciência Animal'), (41709, 'https://ror.org/01zrkhb76', 'no_lang_code', 1, 'https://ror.org/01zrkhb76 Stanley Black & Decker (United States)'), (41710, 'https://ror.org/01zvh5583', 'en', 1, 'https://ror.org/01zvh5583 Research for Equity And Community Health Trust'), (41711, 'https://ror.org/01zx97922', 'en', 1, 'https://ror.org/01zx97922 Fraunhofer Institute of Optronics, System Technologies and Image Exploitation Fraunhofer-Institut für Optronik, Systemtechnik und Bildauswertung'), (41712, 'https://ror.org/01zys7518', 'en', 1, 'https://ror.org/01zys7518 Victoria College'), (41713, 'https://ror.org/01zyzqr72', 'en', 1, 'https://ror.org/01zyzqr72 Malawi Blood Transfusion Service'), (41714, 'https://ror.org/01zzpyg63', 'en', 1, 'https://ror.org/01zzpyg63 Moreno Valley College'), (41715, 'https://ror.org/01zzyg547', 'en', 1, 'https://ror.org/01zzyg547 Highlands and Islands Enterprise'), (41716, 'https://ror.org/0200zrw72', 'fr', 1, 'https://ror.org/0200zrw72 Académie Royale des Beaux-Arts Koninklijke Academie voor Schone Kunsten van Brussel'), (41717, 'https://ror.org/02029yx61', 'no_lang_code', 1, 'https://ror.org/02029yx61 Ecolab (United States)'), (41718, 'https://ror.org/020314m54', 'no_lang_code', 1, 'https://ror.org/020314m54 Effigis (Canada)'), (41719, 'https://ror.org/0203q4h88', 'en', 1, 'https://ror.org/0203q4h88 Georgia Christian University'), (41720, 'https://ror.org/0203yhg37', 'en', 1, 'https://ror.org/0203yhg37 Birla Institute of Scientific Research'), (41721, 'https://ror.org/0207az548', 'no_lang_code', 1, 'https://ror.org/0207az548 Agtes (Poland)'), (41722, 'https://ror.org/0207c0t18', 'en', 1, 'https://ror.org/0207c0t18 Admas University'), (41723, 'https://ror.org/0207g4422', 'en', 1, 'https://ror.org/0207g4422 RCVS Knowledge'), (41724, 'https://ror.org/0207hvp23', 'en', 1, 'https://ror.org/0207hvp23 Tunxis Community College'), (41725, 'https://ror.org/0207t6t84', 'en', 1, 'https://ror.org/0207t6t84 Christian Health Association of Kenya'), (41726, 'https://ror.org/0208sdr22', 'pt', 1, 'https://ror.org/0208sdr22 Administração Regional de Saúde de Lisboa e Vale do Tejo'), (41727, 'https://ror.org/0209zky62', 'no_lang_code', 1, 'https://ror.org/0209zky62 Evolva (India)'), (41728, 'https://ror.org/020az2v11', 'no_lang_code', 1, 'https://ror.org/020az2v11 North South Consultants Exchange (Egypt)'), (41729, 'https://ror.org/020gja105', 'no_lang_code', 1, 'https://ror.org/020gja105 ERAS Labo (France)'), (41730, 'https://ror.org/020h4j786', 'en', 1, 'https://ror.org/020h4j786 Kobe Women''s Junior College 神戸女子短期大学'), (41731, 'https://ror.org/020hkyk57', 'en', 1, 'https://ror.org/020hkyk57 Vilniaus technologijų ir dizaino kolegija Vilnius College of Technologies and Design'), (41732, 'https://ror.org/020kb9915', 'en', 1, 'https://ror.org/020kb9915 Southern Regional Technical College'), (41733, 'https://ror.org/020kg3x12', 'no_lang_code', 1, 'https://ror.org/020kg3x12 Ernst & Young (United Kingdom)'), (41734, 'https://ror.org/020psrf40', 'fr', 1, 'https://ror.org/020psrf40 Laboratoire National d''Appui au Développement Agricole'), (41735, 'https://ror.org/020qt9g11', 'en', 1, 'https://ror.org/020qt9g11 United Nations Human Settlements Programme'), (41736, 'https://ror.org/020s1wt84', 'en', 1, 'https://ror.org/020s1wt84 Conservatorio Di Musica di Vicenza Conservatory of Vicenza'), (41737, 'https://ror.org/020sjp894', 'en', 1, 'https://ror.org/020sjp894 Chemistry and Chemical Engineering Research Center of Iran'), (41738, 'https://ror.org/020t7f007', 'en', 1, 'https://ror.org/020t7f007 Rabbinical College of America'), (41739, 'https://ror.org/020v07z27', 'en', 1, 'https://ror.org/020v07z27 Direction Générale-Affaires économiques et financières Directorate-General for Economic and Financial Affairs General Direktion-Wirtschaft und Finanzen'), (41740, 'https://ror.org/020vd6n84', 'en', 1, 'https://ror.org/020vd6n84 National Institute of Technology Meghalaya राष्ट्रीय प्रौद्योगिकी संस्थान मेघालय'), (41741, 'https://ror.org/020vej288', 'en', 1, 'https://ror.org/020vej288 Agence Nationale de la Promotion de la Recherche Scientifique National Agency for Promotion of Research and Innovation الوكالة الوطنية للنهوض بالبحث العلمي'), (41742, 'https://ror.org/020vyj412', 'en', 1, 'https://ror.org/020vyj412 Cairo Institute for Human Rights Studies'), (41743, 'https://ror.org/020wajj63', 'en', 1, 'https://ror.org/020wajj63 Karen Hospital'), (41744, 'https://ror.org/020x0wx65', 'no_lang_code', 1, 'https://ror.org/020x0wx65 Caesars Entertainment (United States)'), (41745, 'https://ror.org/020xgge28', 'en', 1, 'https://ror.org/020xgge28 Oklahoma Space Grant Consortium'), (41746, 'https://ror.org/020z8zc95', 'en', 1, 'https://ror.org/020z8zc95 American Institute for Economic Research'), (41747, 'https://ror.org/0215jzs21', 'en', 1, 'https://ror.org/0215jzs21 Arkansas State University Mountain Home'), (41748, 'https://ror.org/0218eta95', 'en', 1, 'https://ror.org/0218eta95 Department of Physiological Sciences'), (41749, 'https://ror.org/0219f5c57', 'en', 1, 'https://ror.org/0219f5c57 Christian Health Association of Nigeria'), (41750, 'https://ror.org/0219t5m94', 'en', 1, 'https://ror.org/0219t5m94 Vilniaus Verslo Kolegija Vilnius Business College'), (41751, 'https://ror.org/0219v4961', 'no_lang_code', 1, 'https://ror.org/0219v4961 SGC Pharma (United States)'), (41752, 'https://ror.org/021bpcw57', 'en', 1, 'https://ror.org/021bpcw57 Tea Research Foundation of Central Africa'), (41753, 'https://ror.org/021dwa633', 'en', 1, 'https://ror.org/021dwa633 Elizabethtown Community and Technical College'), (41754, 'https://ror.org/021eek248', 'en', 1, 'https://ror.org/021eek248 Department of Global Issues and International Relations'), (41755, 'https://ror.org/021f23q27', 'en', 1, 'https://ror.org/021f23q27 Freedom House'), (41756, 'https://ror.org/021f61w41', 'en', 1, 'https://ror.org/021f61w41 Lübeck Academy of Music Musikhochschule Lübeck'), (41757, 'https://ror.org/021g6e774', 'no_lang_code', 1, 'https://ror.org/021g6e774 Caplin Point Laboratories (India)'), (41758, 'https://ror.org/021gr0q06', 'no_lang_code', 1, 'https://ror.org/021gr0q06 Bremerhaven Economic Development (Germany) Bremerhavener Gesellschaft für Investitionsförderung und Stadtentwicklung mbH'), (41759, 'https://ror.org/021j14906', 'en', 1, 'https://ror.org/021j14906 National Pension Service 국민연금공단'), (41760, 'https://ror.org/021j5fe33', 'iu', 1, 'https://ror.org/021j5fe33 Nunavut Sivuniksavut'), (41761, 'https://ror.org/021kdsb71', 'fr', 1, 'https://ror.org/021kdsb71 École Nationale Supérieure d''Architecture de Saint-Étienne'), (41762, 'https://ror.org/021kjh741', 'en', 1, 'https://ror.org/021kjh741 Institute of Biochemistry and Physiology of Plants and Microorganisms Федеральное государственное бюджетное учреждение науки Институт биохимии и физиологии растений и микроорганизмов Российской академии наук'), (41763, 'https://ror.org/021kzta69', 'en', 1, 'https://ror.org/021kzta69 National Centre for Medium Range Weather Forecasting राष्ट्रीय मधयम अवधि मौसम पूर्वानुमान केंद'), (41764, 'https://ror.org/021ng2673', 'en', 1, 'https://ror.org/021ng2673 Institut Panos Afrique de l''Ouest Panos Institute West Africa'), (41765, 'https://ror.org/021pyej66', 'en', 1, 'https://ror.org/021pyej66 Gandhi Medical College & Hospital గాంధీ వైద్య కళాశాల'), (41766, 'https://ror.org/021q58r72', 'no_lang_code', 1, 'https://ror.org/021q58r72 Kiadis Pharma (Netherlands)'), (41767, 'https://ror.org/021r2cx19', 'fr', 1, 'https://ror.org/021r2cx19 École Supérieure des Professions Immobilières'), (41768, 'https://ror.org/021twv479', 'en', 1, 'https://ror.org/021twv479 National Defence Academy राष्ट्रीय रक्षा अकादमी'), (41769, 'https://ror.org/021vcge65', 'en', 1, 'https://ror.org/021vcge65 State Corporation Commission'), (41770, 'https://ror.org/021w6yj26', 'en', 1, 'https://ror.org/021w6yj26 Western Integrated Pest Management Center'), (41771, 'https://ror.org/021wtx428', 'de', 1, 'https://ror.org/021wtx428 Staats- und Stadtbibliothek Augsburg'), (41772, 'https://ror.org/021y4b202', 'pt', 1, 'https://ror.org/021y4b202 Fundação de Apoio à Pesquisa do Estado da Paraíba'), (41773, 'https://ror.org/0221k0h06', 'en', 1, 'https://ror.org/0221k0h06 European School of Molecular Medicine'), (41774, 'https://ror.org/0225cwm17', 'en', 1, 'https://ror.org/0225cwm17 Pennsylvania Space Grant Consortium'), (41775, 'https://ror.org/0226dpj06', 'en', 1, 'https://ror.org/0226dpj06 Association of Chartered Certified Accountants'), (41776, 'https://ror.org/022af9r61', 'no_lang_code', 1, 'https://ror.org/022af9r61 Alternative Energy Systems (Tunisia)'), (41777, 'https://ror.org/022armd05', 'en', 1, 'https://ror.org/022armd05 Madagascar Biodiversity Partnership'), (41778, 'https://ror.org/022d5rd48', 'en', 1, 'https://ror.org/022d5rd48 Shanghai Library 上海圖書館'), (41779, 'https://ror.org/022d6m891', 'en', 1, 'https://ror.org/022d6m891 Central Scientific Research Institute of Traumatology and Orthopedics Центральный научно-исследовательский институт Травматологии и Ортопедии имени Н.Н. Приорова'), (41780, 'https://ror.org/022d8t961', 'no_lang_code', 1, 'https://ror.org/022d8t961 MASA Group (France)'), (41781, 'https://ror.org/022f44628', 'en', 1, 'https://ror.org/022f44628 King''s College - North Carolina'), (41782, 'https://ror.org/022gkxm60', 'en', 1, 'https://ror.org/022gkxm60 Collegium Varsoviense'), (41783, 'https://ror.org/022gwv794', 'en', 1, 'https://ror.org/022gwv794 Ministry of Lands and Rural Resettlement'), (41784, 'https://ror.org/022jstb93', 'en', 1, 'https://ror.org/022jstb93 Design and Art Direction'), (41785, 'https://ror.org/022kpdg23', 'no_lang_code', 1, 'https://ror.org/022kpdg23 Groupe Up (France)'), (41786, 'https://ror.org/022tm9w06', 'no_lang_code', 1, 'https://ror.org/022tm9w06 Companhia de Eletricidade do Estado da Bahia (Brazil)'), (41787, 'https://ror.org/022txr781', 'fr', 1, 'https://ror.org/022txr781 Laboratoire de Physique Corpusculaire de Caen'), (41788, 'https://ror.org/022wwx668', 'en', 1, 'https://ror.org/022wwx668 Morristown Beard School, Morristown-Beard School'), (41789, 'https://ror.org/022z3g211', 'en', 1, 'https://ror.org/022z3g211 Guangxi Zhuang Autonomous Region Health and Family Planning 广西壮族自治区卫生和计划生育委员会'), (41790, 'https://ror.org/02320dz84', 'en', 1, 'https://ror.org/02320dz84 Paul & Daisy Soros Fellowships for New Americans'), (41791, 'https://ror.org/0232jr667', 'en', 1, 'https://ror.org/0232jr667 Practical Action'), (41792, 'https://ror.org/0232n8553', 'en', 1, 'https://ror.org/0232n8553 American College of Traditional Chinese Medicine'), (41793, 'https://ror.org/0232pe591', 'en', 1, 'https://ror.org/0232pe591 Association of Corporate Treasurers'), (41794, 'https://ror.org/02339nw55', 'en', 1, 'https://ror.org/02339nw55 Academy of Sciences Malaysia Akademi Sains Malaysia'), (41795, 'https://ror.org/0233m9s16', 'en', 1, 'https://ror.org/0233m9s16 Moscow Regional Scientific Research Clinical Institute. MF Vladimirsky'), (41796, 'https://ror.org/02353ej91', 'en', 1, 'https://ror.org/02353ej91 LVCT Health'), (41797, 'https://ror.org/023943s16', 'en', 1, 'https://ror.org/023943s16 American Partnership for Eosinophilic Disorders'), (41798, 'https://ror.org/023abch36', 'en', 1, 'https://ror.org/023abch36 Center for National Health Development in Ethiopia'), (41799, 'https://ror.org/023fvqr32', 'en', 1, 'https://ror.org/023fvqr32 Immanuel Lutheran College'), (41800, 'https://ror.org/023ha6621', 'no_lang_code', 1, 'https://ror.org/023ha6621 Unilever (India)'), (41801, 'https://ror.org/023j5sb16', 'en', 1, 'https://ror.org/023j5sb16 International Institute for Strategic Studies'), (41802, 'https://ror.org/023knef74', 'en', 1, 'https://ror.org/023knef74 Skagit Valley College'), (41803, 'https://ror.org/023kybh62', 'en', 1, 'https://ror.org/023kybh62 Polytechnic University of Puerto Rico Miami'), (41804, 'https://ror.org/023nwkm08', 'en', 1, 'https://ror.org/023nwkm08 International Association for the Study of Lung Cancer'), (41805, 'https://ror.org/023r5tg35', 'en', 1, 'https://ror.org/023r5tg35 Federal Scientific Center of the East Asia Terrestrial Biodiversity FEB RAS Федеральное государственное бюджетное учреждение науки Биолого-почвенный институт Дальневосточного отделения Российской академии наук'), (41806, 'https://ror.org/023rvkh50', 'fr', 1, 'https://ror.org/023rvkh50 Institut Africain de Gestion Urbaine'), (41807, 'https://ror.org/023sjj642', 'pt', 1, 'https://ror.org/023sjj642 Municipal de Óbidos'), (41808, 'https://ror.org/023th6c34', 'no_lang_code', 1, 'https://ror.org/023th6c34 Hovione (Portugal)'), (41809, 'https://ror.org/023v1tr45', 'en', 1, 'https://ror.org/023v1tr45 Hangzhou Academy of Agricultural Sciences 杭州市农业科学研究院'), (41810, 'https://ror.org/023wx7g30', 'en', 1, 'https://ror.org/023wx7g30 Association for Intelligent Transport Systems'), (41811, 'https://ror.org/023xwyz30', 'no_lang_code', 1, 'https://ror.org/023xwyz30 Land Use Consultants (United Kingdom)'), (41812, 'https://ror.org/023y3qd10', 'en', 1, 'https://ror.org/023y3qd10 Ministry of Livestock, Fisheries and Animal Industries Ministère de l''Elevage, des Pêches et des Industries Animales'), (41813, 'https://ror.org/023zxqh11', 'en', 1, 'https://ror.org/023zxqh11 National Office for Technology Acquisition and Promotion'), (41814, 'https://ror.org/023zynq23', 'en', 1, 'https://ror.org/023zynq23 Chinese Academy of Civil Aviation Science and Technology 中国民航科学技术研究院'), (41815, 'https://ror.org/02412rh32', 'sl', 1, 'https://ror.org/02412rh32 Višja Strokovna Šola za Gostinstvo in Turizem Maribor'), (41816, 'https://ror.org/0243g5v54', 'no_lang_code', 1, 'https://ror.org/0243g5v54 Zoomlion Domestic Services (Ghana)'), (41817, 'https://ror.org/0243j3z07', 'de', 1, 'https://ror.org/0243j3z07 European Fernhochschule Hamburg Europäische Fernhochschule Hamburg'), (41818, 'https://ror.org/0246qj146', 'pt', 1, 'https://ror.org/0246qj146 Centro Hospitalar do Tâmega e Sousa'), (41819, 'https://ror.org/0247acz73', 'en', 1, 'https://ror.org/0247acz73 Cavendish University Zambia'), (41820, 'https://ror.org/0249bce70', 'en', 1, 'https://ror.org/0249bce70 Gulf Coast State College'), (41821, 'https://ror.org/024b4v884', 'pt', 1, 'https://ror.org/024b4v884 Faculdades Integradas Aparício Carvalho'), (41822, 'https://ror.org/024d3p373', 'en', 1, 'https://ror.org/024d3p373 Tibet Academy of Agricultural and Animal Husbandry Sciences 西藏农牧科学院'), (41823, 'https://ror.org/024eb0f34', 'hu', 1, 'https://ror.org/024eb0f34 BM Központi Kórház'), (41824, 'https://ror.org/024eshr84', 'en', 1, 'https://ror.org/024eshr84 Coffeyville Community College'), (41825, 'https://ror.org/024g9p727', 'no_lang_code', 1, 'https://ror.org/024g9p727 For farmers (United Kingdom)'), (41826, 'https://ror.org/024gf7f83', 'en', 1, 'https://ror.org/024gf7f83 Međimursko Veleučilište u Čakovcu Polytechnic of Međimurje in Čakovec'), (41827, 'https://ror.org/024h4jv51', 'en', 1, 'https://ror.org/024h4jv51 Central Sheep and Wool Research Institute केंद्रीय भेड़ और ऊन अनुसंधान संस्थान'), (41828, 'https://ror.org/024j3hn90', 'de', 1, 'https://ror.org/024j3hn90 Universitätsklinikum Knappschaftskrankenhaus Bochum'), (41829, 'https://ror.org/024k73h76', 'en', 1, 'https://ror.org/024k73h76 Yamal Multidisciplinary College ЯМАЛЬСКИЙ МНОГОПРОФИЛЬНЫЙ КОЛЛЕДЖ'), (41830, 'https://ror.org/024qkwh22', 'en', 1, 'https://ror.org/024qkwh22 Shangrao Normal University 上饶师范学院'), (41831, 'https://ror.org/024wmk172', 'no_lang_code', 1, 'https://ror.org/024wmk172 VirtualDive (France)'), (41832, 'https://ror.org/024wrmf62', 'en', 1, 'https://ror.org/024wrmf62 Duchenne Research Fund'), (41833, 'https://ror.org/024wrq886', 'en', 1, 'https://ror.org/024wrq886 Helpmann Academy'), (41834, 'https://ror.org/024zavn56', 'en', 1, 'https://ror.org/024zavn56 Graduate Women International'), (41835, 'https://ror.org/024zd0r19', 'en', 1, 'https://ror.org/024zd0r19 Miami Ad School'), (41836, 'https://ror.org/0250say61', 'en', 1, 'https://ror.org/0250say61 Taiwan Food and Drug Administration'), (41837, 'https://ror.org/0252d3t81', 'en', 1, 'https://ror.org/0252d3t81 Family Aids Caring Trust'), (41838, 'https://ror.org/0253rdk33', 'no_lang_code', 1, 'https://ror.org/0253rdk33 SNPedia'), (41839, 'https://ror.org/02540ds77', 'en', 1, 'https://ror.org/02540ds77 Ministry of Education and Youth Policy of the Republic of Komi Министерство образования Республики Коми'), (41840, 'https://ror.org/025410268', 'en', 1, 'https://ror.org/025410268 Institute for Educational Development and Training Институт развития образования и повышения квалификации'), (41841, 'https://ror.org/02544k771', 'en', 1, 'https://ror.org/02544k771 Kasisi Agricultural Training Centre'), (41842, 'https://ror.org/0255w3r50', 'no_lang_code', 1, 'https://ror.org/0255w3r50 Amway (United States)'), (41843, 'https://ror.org/02588qx62', 'pl', 1, 'https://ror.org/02588qx62 Wyższa Szkoła Biznesu w Gorzowie Wielkopolskim'), (41844, 'https://ror.org/025byta18', 'en', 1, 'https://ror.org/025byta18 Tanzania Natural Resource Forum'), (41845, 'https://ror.org/025caaq56', 'en', 1, 'https://ror.org/025caaq56 Walters State Community College'), (41846, 'https://ror.org/025csd220', 'en', 1, 'https://ror.org/025csd220 Odense Kommune Odense Municipality'), (41847, 'https://ror.org/025dabr11', 'en', 1, 'https://ror.org/025dabr11 Division of Institution and Award Support'), (41848, 'https://ror.org/025etn077', 'en', 1, 'https://ror.org/025etn077 Network of AIDS Researchers of Eastern and Southern Africa'), (41849, 'https://ror.org/025fpk195', 'en', 1, 'https://ror.org/025fpk195 Cameroon Baptist Convention Health Services'), (41850, 'https://ror.org/025fq9n57', 'en', 1, 'https://ror.org/025fq9n57 Energy Services Regulatory Authority Entidade Reguladora dos Serviços Energéticos'), (41851, 'https://ror.org/025jwmc29', 'en', 1, 'https://ror.org/025jwmc29 India International Centre'), (41852, 'https://ror.org/025kf5q07', 'en', 1, 'https://ror.org/025kf5q07 United World College of South East Asia 東南亞聯合世界書院'), (41853, 'https://ror.org/025kpm509', 'de', 1, 'https://ror.org/025kpm509 Museum Foundation Lüneburg Museumsstiftung Lüneburg'), (41854, 'https://ror.org/025pp6560', 'no_lang_code', 1, 'https://ror.org/025pp6560 WestRock (United States)'), (41855, 'https://ror.org/025rbpt60', 'no_lang_code', 1, 'https://ror.org/025rbpt60 Eurofilet (Morocco)'), (41856, 'https://ror.org/025syxp62', 'en', 1, 'https://ror.org/025syxp62 Geographic Institute Agustín Codazzi Instituto Geográfico Agustín Codazzi'), (41857, 'https://ror.org/025t37b39', 'no_lang_code', 1, 'https://ror.org/025t37b39 B & B'), (41858, 'https://ror.org/025wyv967', 'en', 1, 'https://ror.org/025wyv967 Center of Arab Woman for Training and Research'), (41859, 'https://ror.org/025xwwx95', 'no_lang_code', 1, 'https://ror.org/025xwwx95 International Consultants (Egypt)'), (41860, 'https://ror.org/025ye0d12', 'en', 1, 'https://ror.org/025ye0d12 Karkonoska Państwowa Szkoła Wyższa Karkonosze College in Jelenia Góra'), (41861, 'https://ror.org/0261qw820', 'en', 1, 'https://ror.org/0261qw820 Institute of Steppe Институт степи УрО РАН'), (41862, 'https://ror.org/0263c5456', 'no_lang_code', 1, 'https://ror.org/0263c5456 Saniku Gakuin College 三育学院大学'), (41863, 'https://ror.org/0265jtk41', 'en', 1, 'https://ror.org/0265jtk41 China Academy of Urban Planning and Design 中国城市规划设计研究院'), (41864, 'https://ror.org/0265k0q35', 'en', 1, 'https://ror.org/0265k0q35 Islamic Azad University Boroujerd Branch دانشگاه آزاد اسلامی واحد بروجرد'), (41865, 'https://ror.org/0265znh70', 'no_lang_code', 1, 'https://ror.org/0265znh70 Mecpro Heavy Engineering (India)'), (41866, 'https://ror.org/026695c98', 'en', 1, 'https://ror.org/026695c98 Project Directorate on Foot and Mouth Disease'), (41867, 'https://ror.org/0266a1t84', 'en', 1, 'https://ror.org/0266a1t84 Udmurt Institute of History, Language and Literature Удмуртский институт истории, языка и литературы УрО РАН'), (41868, 'https://ror.org/026c02f25', 'en', 1, 'https://ror.org/026c02f25 Kazan E. K. Zavoisky Physical-Technical Institute Казанский физико-технический институт им. Е. К. Завойского РАН'), (41869, 'https://ror.org/026c3xn33', 'en', 1, 'https://ror.org/026c3xn33 Hochschule der Wirtschaft für Management University of Applied Management Studies'), (41870, 'https://ror.org/026c6z776', 'no_lang_code', 1, 'https://ror.org/026c6z776 Chronos (France)'), (41871, 'https://ror.org/026c92t86', 'en', 1, 'https://ror.org/026c92t86 Subbaiah Medical College'), (41872, 'https://ror.org/026d1sx92', 'en', 1, 'https://ror.org/026d1sx92 Salim Ali Center for Ornithology and Natural History'), (41873, 'https://ror.org/026drga03', 'en', 1, 'https://ror.org/026drga03 China National Environmental Monitoring Center 中国环境监测总站'), (41874, 'https://ror.org/026emmr85', 'en', 1, 'https://ror.org/026emmr85 Ministry of Children, Community and Social Services Ministère des Services Sociaux et Communautaires'), (41875, 'https://ror.org/026g3rz20', 'pt', 1, 'https://ror.org/026g3rz20 Instituto Nacional de Ciência e Tecnologia em Toxinas'), (41876, 'https://ror.org/026h9k063', 'en', 1, 'https://ror.org/026h9k063 Central Water and Power Research Station'), (41877, 'https://ror.org/026h9r553', 'no_lang_code', 1, 'https://ror.org/026h9r553 Hunan Haili Chemical Industry (China) 湖南化工研究院'), (41878, 'https://ror.org/026hvzx79', 'it', 1, 'https://ror.org/026hvzx79 Conservatorio di Musica ''Francesco Venezze'' di Rovigo'), (41879, 'https://ror.org/026j5b854', 'en', 1, 'https://ror.org/026j5b854 Central Institute of Agricultural Engineering केन्द्रीय कृषि अभियांत्रिकी संस्थान'), (41880, 'https://ror.org/026kenw55', 'de', 1, 'https://ror.org/026kenw55 SRH Hochschule für Gesundheit Gera'), (41881, 'https://ror.org/026ktg130', 'en', 1, 'https://ror.org/026ktg130 Hainan Provincial Academy of Agricultural Sciences 海南省农业科学院'), (41882, 'https://ror.org/026mf8794', 'en', 1, 'https://ror.org/026mf8794 Sterling High School'), (41883, 'https://ror.org/026n0rw09', 'pt', 1, 'https://ror.org/026n0rw09 Instituto Nacional de Ciência e Tecnologia de Obesidade e Diabetes'), (41884, 'https://ror.org/026rh8977', 'en', 1, 'https://ror.org/026rh8977 Direction Générale Fiscalité et union douanière Directorate-General for Taxation and Customs Union Generaldirektion Steuern und Zollunion'), (41885, 'https://ror.org/026s2hr03', 'en', 1, 'https://ror.org/026s2hr03 Pioneer Pacific College'), (41886, 'https://ror.org/026w1rh64', 'en', 1, 'https://ror.org/026w1rh64 Protecting Families against HIV AIDS'), (41887, 'https://ror.org/026xy6j55', 'en', 1, 'https://ror.org/026xy6j55 Faith Evangelical College & Seminary'), (41888, 'https://ror.org/026xz9f02', 'en', 1, 'https://ror.org/026xz9f02 Bronx High School of Science'), (41889, 'https://ror.org/026z8zb87', 'en', 1, 'https://ror.org/026z8zb87 Nambucca Shire Council'), (41890, 'https://ror.org/02726j593', 'en', 1, 'https://ror.org/02726j593 Melentiev Energy Systems Institute Мелентьев Институт систем энергетики'), (41891, 'https://ror.org/02743t710', 'de', 1, 'https://ror.org/02743t710 Norddeutsche Hochschule für Rechtspflege'), (41892, 'https://ror.org/0274zdr66', 'fr', 1, 'https://ror.org/0274zdr66 Laboratoire Jean-Alexandre Dieudonné'), (41893, 'https://ror.org/02760dr55', 'no_lang_code', 1, 'https://ror.org/02760dr55 Economics for the Environment Consultancy (United Kingdom)'), (41894, 'https://ror.org/0278s3c19', 'en', 1, 'https://ror.org/0278s3c19 Lone Star College–Tomball'), (41895, 'https://ror.org/027b9hx20', 'en', 1, 'https://ror.org/027b9hx20 St. Thomas Aquinas College'), (41896, 'https://ror.org/027c96635', 'en', 1, 'https://ror.org/027c96635 GÁLDU Resource Centre for the Rights of Indigenous Peoples Gáldu-et Kompetansesenter for Urfolks Rettigheter'), (41897, 'https://ror.org/027dan833', 'fr', 1, 'https://ror.org/027dan833 École Biblique et Archéologique Française de Jérusalem'), (41898, 'https://ror.org/027h2h886', 'en', 1, 'https://ror.org/027h2h886 Regional Secretariat for the Sea, Science and Technology Secretário Regional do Mar, Ciência e Tecnologia'), (41899, 'https://ror.org/027jqwm11', 'fr', 1, 'https://ror.org/027jqwm11 Haute École Francisco Ferrer'), (41900, 'https://ror.org/027jws131', 'fr', 1, 'https://ror.org/027jws131 Institut Polytechnique Saint-Louis'), (41901, 'https://ror.org/027k9sa32', 'en', 1, 'https://ror.org/027k9sa32 National Institute of Food and Drug Safety Evaluation'), (41902, 'https://ror.org/027m3jw27', 'no_lang_code', 1, 'https://ror.org/027m3jw27 Embraco (Brazil)'), (41903, 'https://ror.org/027n02r78', 'en', 1, 'https://ror.org/027n02r78 Scientific Center of Family Health Problems and Human Reproduction'), (41904, 'https://ror.org/027n34442', 'en', 1, 'https://ror.org/027n34442 African Institute of Biomedical Science and Technology'), (41905, 'https://ror.org/027qksd74', 'no_lang_code', 1, 'https://ror.org/027qksd74 Pinsent Masons (United Kingdom)'), (41906, 'https://ror.org/027s8b340', 'no_lang_code', 1, 'https://ror.org/027s8b340 Henan Communication Science and Technology Research Institute (China) 河南省交通科学技术研究院有限公司'), (41907, 'https://ror.org/027sf5r98', 'en', 1, 'https://ror.org/027sf5r98 Peerless Hospital & B.K.Roy Research Centre'), (41908, 'https://ror.org/027sz0n32', 'en', 1, 'https://ror.org/027sz0n32 Congressional Hispanic Caucus Institute'), (41909, 'https://ror.org/027w2gw37', 'no_lang_code', 1, 'https://ror.org/027w2gw37 Astonfield (India)'), (41910, 'https://ror.org/027wk9464', 'en', 1, 'https://ror.org/027wk9464 Little Priest Tribal College'), (41911, 'https://ror.org/027xqjj19', 'en', 1, 'https://ror.org/027xqjj19 Confederated Tribes of Siletz Indians'), (41912, 'https://ror.org/027z3vs57', 'en', 1, 'https://ror.org/027z3vs57 Kenya Sea Turtle Conservation Committee'), (41913, 'https://ror.org/02825cc16', 'en', 1, 'https://ror.org/02825cc16 Wood Tobé-Coburn School'), (41914, 'https://ror.org/0282ezj14', 'it', 1, 'https://ror.org/0282ezj14 Accademia di Belle Arti di Reggio Calabria'), (41915, 'https://ror.org/02832sw36', 'en', 1, 'https://ror.org/02832sw36 Staatliche Hochschule für Musik Trossingen Trossingen University of Music'), (41916, 'https://ror.org/028394g81', 'no_lang_code', 1, 'https://ror.org/028394g81 Hyundai Motors (United States)'), (41917, 'https://ror.org/0286btk29', 'en', 1, 'https://ror.org/0286btk29 Architectural Institute in Prague'), (41918, 'https://ror.org/0286fq017', 'it', 1, 'https://ror.org/0286fq017 Conservatorio di Musica San Pietro a Majella'), (41919, 'https://ror.org/028a8bc58', 'en', 1, 'https://ror.org/028a8bc58 Institute of Russian Literature Институт русской литературы'), (41920, 'https://ror.org/028b5s745', 'en', 1, 'https://ror.org/028b5s745 Tri-State Bible College'), (41921, 'https://ror.org/028jh0y34', 'no_lang_code', 1, 'https://ror.org/028jh0y34 Zimbabwe AIDS Network'), (41922, 'https://ror.org/028kzf059', 'no_lang_code', 1, 'https://ror.org/028kzf059 Huntsman (France)'), (41923, 'https://ror.org/028mn7f31', 'en', 1, 'https://ror.org/028mn7f31 NYC Media'), (41924, 'https://ror.org/028nyzb21', 'en', 1, 'https://ror.org/028nyzb21 Los Angeles Harbor College'), (41925, 'https://ror.org/028prp877', 'en', 1, 'https://ror.org/028prp877 Tanzania National Parks'), (41926, 'https://ror.org/028q7hc55', 'no_lang_code', 1, 'https://ror.org/028q7hc55 Limagrain (France)'), (41927, 'https://ror.org/028r3ke74', 'en', 1, 'https://ror.org/028r3ke74 Santa Barbara Business College'), (41928, 'https://ror.org/028rd3808', 'fr', 1, 'https://ror.org/028rd3808 Haute École Galilée'), (41929, 'https://ror.org/028thwc63', 'en', 1, 'https://ror.org/028thwc63 Polytechnic University of Puerto Rico Orlando'), (41930, 'https://ror.org/028w99c90', 'no_lang_code', 1, 'https://ror.org/028w99c90 China United Network Communications Group (China) 中国联合网络通信集团有限公司'), (41931, 'https://ror.org/028x2z366', 'no_lang_code', 1, 'https://ror.org/028x2z366 Ion Exchange (India)'), (41932, 'https://ror.org/028xr5559', 'en', 1, 'https://ror.org/028xr5559 Makivik Corporation Makivvik Kuapuriisat Société Makivik'), (41933, 'https://ror.org/028yp0d20', 'en', 1, 'https://ror.org/028yp0d20 Cracow School of Health Promotion Krakowska Wyższa Szkoła Promocji Zdrowia'), (41934, 'https://ror.org/028zdff86', 'en', 1, 'https://ror.org/028zdff86 Ministry of Education, Science, Technology and Sports'), (41935, 'https://ror.org/02914ef02', 'en', 1, 'https://ror.org/02914ef02 International Centre for Education in Islamic Finance'), (41936, 'https://ror.org/02945ys85', 'en', 1, 'https://ror.org/02945ys85 Karachi School for Business and Leadership'), (41937, 'https://ror.org/02967z527', 'de', 1, 'https://ror.org/02967z527 Kunsthistorisches Institut in Florenz'), (41938, 'https://ror.org/0296fd765', 'en', 1, 'https://ror.org/0296fd765 Renton Technical College'), (41939, 'https://ror.org/0297egf66', 'en', 1, 'https://ror.org/0297egf66 Lone Star College–North Harris'), (41940, 'https://ror.org/0297tch52', 'fr', 1, 'https://ror.org/0297tch52 Fondation Hardt'), (41941, 'https://ror.org/029b48872', 'no_lang_code', 1, 'https://ror.org/029b48872 Asur Plant Breeding (France)'), (41942, 'https://ror.org/029bjdf19', 'en', 1, 'https://ror.org/029bjdf19 Institute of Physics Федеральное государственное бюджетное учреждение науки Институт физики им. Л. В. Киренского'), (41943, 'https://ror.org/029bmv142', 'en', 1, 'https://ror.org/029bmv142 Boston Children''s at Waltham'), (41944, 'https://ror.org/029cn2a76', 'nl', 1, 'https://ror.org/029cn2a76 GGZ Rivierduinen'), (41945, 'https://ror.org/029eeye73', 'no_lang_code', 1, 'https://ror.org/029eeye73 Talbot & Talbot (South Africa)'), (41946, 'https://ror.org/029fxjk95', 'en', 1, 'https://ror.org/029fxjk95 Institute of History, Archaeology and Ethnography of the Peoples of Far-East Владивостоке Института истории, археологии и этнографии народов Дальнего Востока'), (41947, 'https://ror.org/029ghce65', 'en', 1, 'https://ror.org/029ghce65 Union Christian College'), (41948, 'https://ror.org/029j8j127', 'en', 1, 'https://ror.org/029j8j127 China National Commission for Disaster Reduction 国家减灾委员会办公室 技术支持'), (41949, 'https://ror.org/029jmvc96', 'en', 1, 'https://ror.org/029jmvc96 IDA Ireland'), (41950, 'https://ror.org/029k7k053', 'en', 1, 'https://ror.org/029k7k053 Research Institute of Medical Genetics of Russian Academy of Medical Sciences Научно-исследовательский институт медицинской генетики'), (41951, 'https://ror.org/029m2pd08', 'en', 1, 'https://ror.org/029m2pd08 Noorul Islam College of Dental Science'), (41952, 'https://ror.org/029mfc453', 'pl', 1, 'https://ror.org/029mfc453 Państwowa Wyższa Szkoła Zawodowa w Nysie University of Applied Sciences in Nysas'), (41953, 'https://ror.org/029pw4y06', 'pt', 1, 'https://ror.org/029pw4y06 Instituto Superior de Teologia Aplicada'), (41954, 'https://ror.org/029q6vx61', 'it', 1, 'https://ror.org/029q6vx61 Accademia di Belle Arti di Sassari'), (41955, 'https://ror.org/029qq7963', 'no_lang_code', 1, 'https://ror.org/029qq7963 Novabase (Portugal)'), (41956, 'https://ror.org/029r33q13', 'de', 1, 'https://ror.org/029r33q13 Hochschule für Musik Saar'), (41957, 'https://ror.org/029rysr23', 'en', 1, 'https://ror.org/029rysr23 New Hampshire State Council on the Arts'), (41958, 'https://ror.org/029rzwj76', 'fr', 1, 'https://ror.org/029rzwj76 École de Biologie Industrielle'), (41959, 'https://ror.org/029sxjy20', 'no_lang_code', 1, 'https://ror.org/029sxjy20 Ferrotec (United States)'), (41960, 'https://ror.org/029td0g71', 'en', 1, 'https://ror.org/029td0g71 Bugok National Hospital 국립부곡병원'), (41961, 'https://ror.org/029tggs59', 'en', 1, 'https://ror.org/029tggs59 South African Business Coalition'), (41962, 'https://ror.org/029trsn45', 'no_lang_code', 1, 'https://ror.org/029trsn45 TOKU-E (United States)'), (41963, 'https://ror.org/029tz6g71', 'en', 1, 'https://ror.org/029tz6g71 India Foundation for the Arts'), (41964, 'https://ror.org/029vq7v31', 'fr', 1, 'https://ror.org/029vq7v31 Société de Développement des Forêts'), (41965, 'https://ror.org/029x1vn55', 'en', 1, 'https://ror.org/029x1vn55 CU Shah Medical College and Hospital'), (41966, 'https://ror.org/029z3g861', 'no_lang_code', 1, 'https://ror.org/029z3g861 Epic Systems (United States)'), (41967, 'https://ror.org/02a1nbm25', 'en', 1, 'https://ror.org/02a1nbm25 New York School of Interior Design'), (41968, 'https://ror.org/02a3j1p21', 'en', 1, 'https://ror.org/02a3j1p21 Fisher College'), (41969, 'https://ror.org/02a4rdf09', 'de', 1, 'https://ror.org/02a4rdf09 Fondation Bodmer Fondation Martin Bodmer'), (41970, 'https://ror.org/02a503x19', 'en', 1, 'https://ror.org/02a503x19 Fox College'), (41971, 'https://ror.org/02a5hqa58', 'en', 1, 'https://ror.org/02a5hqa58 Institute for African Studies науки Институт Африки Российской академии наук'), (41972, 'https://ror.org/02a5sx544', 'en', 1, 'https://ror.org/02a5sx544 College of Physical Education and Sport Palestra Vysoká škola telesné výchovy a sportu Palestra'), (41973, 'https://ror.org/02a7xs776', 'no_lang_code', 1, 'https://ror.org/02a7xs776 Jyotirmay Eye Clinic'), (41974, 'https://ror.org/02a8wk986', 'en', 1, 'https://ror.org/02a8wk986 AKAD University'), (41975, 'https://ror.org/02aa1n426', 'fr', 1, 'https://ror.org/02aa1n426 Centre pour l’Environnement et le Développement'), (41976, 'https://ror.org/02aafyx20', 'en', 1, 'https://ror.org/02aafyx20 Furness College'), (41977, 'https://ror.org/02ac3as27', 'no_lang_code', 1, 'https://ror.org/02ac3as27 JK Agri Genetics (India)'), (41978, 'https://ror.org/02ach0e13', 'en', 1, 'https://ror.org/02ach0e13 Jan Grodek State Vocational Academy in Sanok Państwowa Wyższa Szkoła Zawodowa im. Jana Grodka w Sanoku'), (41979, 'https://ror.org/02ae4g054', 'en', 1, 'https://ror.org/02ae4g054 Division of Historical and Philological Sciences'), (41980, 'https://ror.org/02ag9qs60', 'es', 1, 'https://ror.org/02ag9qs60 MPS España'), (41981, 'https://ror.org/02agyqq59', 'en', 1, 'https://ror.org/02agyqq59 Department of Communities, Culture and Heritage'), (41982, 'https://ror.org/02ah1da87', 'en', 1, 'https://ror.org/02ah1da87 Office of Management'), (41983, 'https://ror.org/02ahpq120', 'en', 1, 'https://ror.org/02ahpq120 El Centro College'), (41984, 'https://ror.org/02ahzca76', 'fr', 1, 'https://ror.org/02ahzca76 Laboratoire d''Ingénierie Circulation Transports'), (41985, 'https://ror.org/02akg1305', 'en', 1, 'https://ror.org/02akg1305 Asian Institute of Public Health'), (41986, 'https://ror.org/02akkm420', 'en', 1, 'https://ror.org/02akkm420 Institute of Automation and Control Processes Институт автоматики и процессов управления'), (41987, 'https://ror.org/02anh8x74', 'en', 1, 'https://ror.org/02anh8x74 M S Ramaiah University of Applied Sciences'), (41988, 'https://ror.org/02apff255', 'en', 1, 'https://ror.org/02apff255 Institute of Finance and Trade Economics 中国社会科学院财政与贸易经济研究所'), (41989, 'https://ror.org/02apntt89', 'en', 1, 'https://ror.org/02apntt89 Nigerian Geological Survey Agency'), (41990, 'https://ror.org/02aqppr80', 'en', 1, 'https://ror.org/02aqppr80 Boston Area Research Initiative'), (41991, 'https://ror.org/02arrmv90', 'en', 1, 'https://ror.org/02arrmv90 Islamic Azad University of Ayatollah Amoli دانشگاه آزاد اسلامی آیت الله آملی'), (41992, 'https://ror.org/02arv0f08', 'en', 1, 'https://ror.org/02arv0f08 Technological Educational Institute of the Ionian Islands Τεχνολογικό Εκπαιδευτικό Ίδρυμα'), (41993, 'https://ror.org/02arzh683', 'en', 1, 'https://ror.org/02arzh683 Aidjan-Lagos Corridor Organization Organisation du Corridor Abidjan-Lagos'), (41994, 'https://ror.org/02ase7r14', 'en', 1, 'https://ror.org/02ase7r14 St Anthonys Senior Secondary School'), (41995, 'https://ror.org/02asra118', 'en', 1, 'https://ror.org/02asra118 Desmond Tutu HIV Foundation'), (41996, 'https://ror.org/02at7zv53', 'en', 1, 'https://ror.org/02at7zv53 Fraunhofer Institute for Process Engineering and Packaging Fraunhofer-Institut für Verfahrenstechnik und Verpackung IVV'), (41997, 'https://ror.org/02av6ek82', 'en', 1, 'https://ror.org/02av6ek82 American Academy in Berlin'), (41998, 'https://ror.org/02avcvc17', 'en', 1, 'https://ror.org/02avcvc17 National Trust for Nature Conservation राष्ट्रिय प्रकृति संरक्षण कोष'), (41999, 'https://ror.org/02avh2k34', 'en', 1, 'https://ror.org/02avh2k34 Sri Balaji Vidyapeeth University'), (42000, 'https://ror.org/02awrhk36', 'en', 1, 'https://ror.org/02awrhk36 Northern National College Северный Национальный колледж'), (42001, 'https://ror.org/02ay8t571', 'en', 1, 'https://ror.org/02ay8t571 Shriram Institute for Industrial Research'), (42002, 'https://ror.org/02b3gqy34', 'no_lang_code', 1, 'https://ror.org/02b3gqy34 Craft Engineering Associates (United States)'), (42003, 'https://ror.org/02b61re56', 'hr', 1, 'https://ror.org/02b61re56 Veleučilište "Nikola Tesla" u Gospiću'), (42004, 'https://ror.org/02b90d314', 'en', 1, 'https://ror.org/02b90d314 Malawi Government'), (42005, 'https://ror.org/02baj1350', 'en', 1, 'https://ror.org/02baj1350 Chinese Academy for Environmental Planning 中国环境保护部环境规划院'), (42006, 'https://ror.org/02bakwe76', 'en', 1, 'https://ror.org/02bakwe76 Research Center for Rural Economy 农业部农村经济研究中心'), (42007, 'https://ror.org/02bb8n686', 'en', 1, 'https://ror.org/02bb8n686 Guiyang College of Traditional Chinese Medicine 贵阳中医学院'), (42008, 'https://ror.org/02bbqcn27', 'en', 1, 'https://ror.org/02bbqcn27 King''s College School'), (42009, 'https://ror.org/02bc50c05', 'en', 1, 'https://ror.org/02bc50c05 Peter the Great''s Museum of Anthropology and Ethnography Петра Великого Музей антропологии и этнографии'), (42010, 'https://ror.org/02bdat184', 'en', 1, 'https://ror.org/02bdat184 Metropolitan Community College - Kansas City'), (42011, 'https://ror.org/02bdw9258', 'no_lang_code', 1, 'https://ror.org/02bdw9258 Assore (South Africa)'), (42012, 'https://ror.org/02bf3a828', 'fr', 1, 'https://ror.org/02bf3a828 Hôpital Cardiologique du Haut-Lévêque'), (42013, 'https://ror.org/02bfkc760', 'en', 1, 'https://ror.org/02bfkc760 Sichuan Academy of Forestry 四川省林业科学研究院'), (42014, 'https://ror.org/02bjnsn63', 'en', 1, 'https://ror.org/02bjnsn63 Beijing Research Institute of Mechanical and Electrical Technology 北京机电研究所'), (42015, 'https://ror.org/02bjqnd50', 'en', 1, 'https://ror.org/02bjqnd50 Pro Health International'), (42016, 'https://ror.org/02bjw4523', 'en', 1, 'https://ror.org/02bjw4523 Chartered Institute of Linguists'), (42017, 'https://ror.org/02bmrs815', 'en', 1, 'https://ror.org/02bmrs815 South Seattle College'), (42018, 'https://ror.org/02bqmev78', 'en', 1, 'https://ror.org/02bqmev78 Kenya AIDS Vaccine Initiative'), (42019, 'https://ror.org/02bqwx915', 'en', 1, 'https://ror.org/02bqwx915 Jubilee Mission Medical College and Research Institute'), (42020, 'https://ror.org/02br4sp34', 'en', 1, 'https://ror.org/02br4sp34 Saskatchewan Flax Development Commission'), (42021, 'https://ror.org/02bremz31', 'no_lang_code', 1, 'https://ror.org/02bremz31 Alembic Pharmaceuticals (India)'), (42022, 'https://ror.org/02bvtqs16', 'en', 1, 'https://ror.org/02bvtqs16 Songhai Health Trust'), (42023, 'https://ror.org/02bw2pq83', 'en', 1, 'https://ror.org/02bw2pq83 Russian National Public Library for Science and Technology Государственная публичная научно-техническая библиотека'), (42024, 'https://ror.org/02bwvpt98', 'no_lang_code', 1, 'https://ror.org/02bwvpt98 Hyosung Corporation (South Korea) 효성'), (42025, 'https://ror.org/02bx25k35', 'es', 1, 'https://ror.org/02bx25k35 Hospital Militar Central'), (42026, 'https://ror.org/02bxn5a88', 'it', 1, 'https://ror.org/02bxn5a88 Conservatorio di Musica FA Bonporti Trento'), (42027, 'https://ror.org/02bzmps39', 'en', 1, 'https://ror.org/02bzmps39 Egyptian Center for Public Opinion Research Baseera'), (42028, 'https://ror.org/02c191v59', 'en', 1, 'https://ror.org/02c191v59 Orpheus Institute Orpheus Instituut'), (42029, 'https://ror.org/02c1vmy63', 'en', 1, 'https://ror.org/02c1vmy63 Pennsylvania Department of Community and Economic Development'), (42030, 'https://ror.org/02c38jz43', 'en', 1, 'https://ror.org/02c38jz43 Relaxnews'), (42031, 'https://ror.org/02c3q7w36', 'en', 1, 'https://ror.org/02c3q7w36 Environmental Law Research Institute'), (42032, 'https://ror.org/02c5acs33', 'no_lang_code', 1, 'https://ror.org/02c5acs33 Sutol (Portugal)'), (42033, 'https://ror.org/02c6nb222', 'en', 1, 'https://ror.org/02c6nb222 Vermilion Community College'), (42034, 'https://ror.org/02c8msm58', 'en', 1, 'https://ror.org/02c8msm58 Kaitohutohu Kaupapa Rawa New Zealand Treasury, Treasury'), (42035, 'https://ror.org/02cb4m248', 'en', 1, 'https://ror.org/02cb4m248 Coastal Carolina Community College'), (42036, 'https://ror.org/02ccnn750', 'en', 1, 'https://ror.org/02ccnn750 United Way'), (42037, 'https://ror.org/02cd1dc23', 'en', 1, 'https://ror.org/02cd1dc23 Rheinisches Institut für Umweltforschung Rhenish Institute for Environmental Research'), (42038, 'https://ror.org/02cf97417', 'en', 1, 'https://ror.org/02cf97417 Heteroelements and Coordination Chemistry Lab Laboratoire Hétéroéléments et Coordination'), (42039, 'https://ror.org/02cg6jf50', 'en', 1, 'https://ror.org/02cg6jf50 Lubavitch Educational Center'), (42040, 'https://ror.org/02cge6w61', 'en', 1, 'https://ror.org/02cge6w61 Central Siberian Botanical Garden Центральный сибирский ботанический сад'), (42041, 'https://ror.org/02ch3jz57', 'en', 1, 'https://ror.org/02ch3jz57 Memphis Theological Seminary'), (42042, 'https://ror.org/02chwk660', 'en', 1, 'https://ror.org/02chwk660 Clay Mathematics Institute'), (42043, 'https://ror.org/02ckm0r33', 'pt', 1, 'https://ror.org/02ckm0r33 Governo do Distrito Federal'), (42044, 'https://ror.org/02cm5rz95', 'no_lang_code', 1, 'https://ror.org/02cm5rz95 Koch Agronomic Services (United States)'), (42045, 'https://ror.org/02cnc0j97', 'en', 1, 'https://ror.org/02cnc0j97 Shadan Hospital and Institute of Medical Sciences'), (42046, 'https://ror.org/02cpn5v29', 'no_lang_code', 1, 'https://ror.org/02cpn5v29 Bausch Health (Ireland)'), (42047, 'https://ror.org/02cqthz49', 'no_lang_code', 1, 'https://ror.org/02cqthz49 Blueprint Genetics (Finland)'), (42048, 'https://ror.org/02crnef85', 'en', 1, 'https://ror.org/02crnef85 IIHMR University'), (42049, 'https://ror.org/02ct1m089', 'en', 1, 'https://ror.org/02ct1m089 Kazan State Medical Academy'), (42050, 'https://ror.org/02ctkg564', 'en', 1, 'https://ror.org/02ctkg564 Nebraska Christian College'), (42051, 'https://ror.org/02cwzn382', 'no_lang_code', 1, 'https://ror.org/02cwzn382 Senko Medical Instrument Manufacturing (Japan)'), (42052, 'https://ror.org/02cx93t24', 'en', 1, 'https://ror.org/02cx93t24 Leicester College'), (42053, 'https://ror.org/02czsq936', 'en', 1, 'https://ror.org/02czsq936 British Institute for the Study of Iraq'), (42054, 'https://ror.org/02czw2y48', 'en', 1, 'https://ror.org/02czw2y48 Egyptian Center for Public Policy Studies'), (42055, 'https://ror.org/02d1vh520', 'en', 1, 'https://ror.org/02d1vh520 Government College of Science'), (42056, 'https://ror.org/02d290x88', 'de', 1, 'https://ror.org/02d290x88 Pädagogische Hochschule Burgenland University of Education in Burgenland'), (42057, 'https://ror.org/02d2b9s76', 'en', 1, 'https://ror.org/02d2b9s76 Holy Spirit High School'), (42058, 'https://ror.org/02d7xrh88', 'pt', 1, 'https://ror.org/02d7xrh88 Secretaria da Educação do Estado da Bahia'), (42059, 'https://ror.org/02d898a89', 'fr', 1, 'https://ror.org/02d898a89 Biostatistique et Processus Spatiaux'), (42060, 'https://ror.org/02d89at43', 'en', 1, 'https://ror.org/02d89at43 Hochschule der Bundesagentur für Arbeit University of Applied Labour Studies of the Federal Employment Agency'), (42061, 'https://ror.org/02d918b78', 'en', 1, 'https://ror.org/02d918b78 Shanghai Botanical Garden 上海植物园'), (42062, 'https://ror.org/02d9wx511', 'en', 1, 'https://ror.org/02d9wx511 Observatório Político Political Observatory'), (42063, 'https://ror.org/02db8ta43', 'no_lang_code', 1, 'https://ror.org/02db8ta43 Nobex Technology (Nigeria)'), (42064, 'https://ror.org/02dd2e850', 'en', 1, 'https://ror.org/02dd2e850 School Centre Nova Gorica Šolski center Nova Gorica'), (42065, 'https://ror.org/02dd61a62', 'en', 1, 'https://ror.org/02dd61a62 An Chomhairle Ealaíon Arts Council'), (42066, 'https://ror.org/02de22795', 'en', 1, 'https://ror.org/02de22795 Florida College of Integrative Medicine'), (42067, 'https://ror.org/02dhdwm14', 'en', 1, 'https://ror.org/02dhdwm14 Global Innovation and Technology Alliance'), (42068, 'https://ror.org/02dja5009', 'en', 1, 'https://ror.org/02dja5009 Bradford School - Columbus'), (42069, 'https://ror.org/02dnes125', 'de', 1, 'https://ror.org/02dnes125 Knappschaftskrankenhaus Recklinghausen'), (42070, 'https://ror.org/02dpn9096', 'no_lang_code', 1, 'https://ror.org/02dpn9096 Ghana-India Kofi Annan Centre of Excellence in ICT'), (42071, 'https://ror.org/02dprkj51', 'nl', 1, 'https://ror.org/02dprkj51 Bruxelles Environnemont Leefmilieu Brussel'), (42072, 'https://ror.org/02dq20r43', 'en', 1, 'https://ror.org/02dq20r43 Dragon Rises College of Oriental Medicine'), (42073, 'https://ror.org/02dqcqh19', 'en', 1, 'https://ror.org/02dqcqh19 Kamineni Institute of Dental Sciences'), (42074, 'https://ror.org/02ds88v51', 'en', 1, 'https://ror.org/02ds88v51 Camera dei Deputati Chamber of Deputies'), (42075, 'https://ror.org/02dsehb09', 'en', 1, 'https://ror.org/02dsehb09 Center for Solar Energy Research and Studies مركز بحوث ودراسات الطاقة الشمسية'), (42076, 'https://ror.org/02dwq5n29', 'en', 1, 'https://ror.org/02dwq5n29 Alliance College of Australia'), (42077, 'https://ror.org/02dyq9q38', 'no_lang_code', 1, 'https://ror.org/02dyq9q38 TERI'), (42078, 'https://ror.org/02dywf273', 'en', 1, 'https://ror.org/02dywf273 Ohio Department of Education'), (42079, 'https://ror.org/02e1eph40', 'en', 1, 'https://ror.org/02e1eph40 Institute of World History Институт всеобщей истории'), (42080, 'https://ror.org/02e22ra24', 'en', 1, 'https://ror.org/02e22ra24 Ashoka Trust for Research in Ecology and the Environment'), (42081, 'https://ror.org/02e2pmn45', 'en', 1, 'https://ror.org/02e2pmn45 Institute of Slavic Studies Институт славяноведения'), (42082, 'https://ror.org/02e38dy05', 'en', 1, 'https://ror.org/02e38dy05 Comissão Interministerial para os Recursos do Mar Interministerial Commission for Sea Resources'), (42083, 'https://ror.org/02e3cth88', 'no_lang_code', 1, 'https://ror.org/02e3cth88 Zyvex (United States)'), (42084, 'https://ror.org/02e3vax31', 'en', 1, 'https://ror.org/02e3vax31 Sydney Missionary and Bible College'), (42085, 'https://ror.org/02e5dc168', 'en', 1, 'https://ror.org/02e5dc168 Center for Global Health'), (42086, 'https://ror.org/02e5n0e79', 'de', 1, 'https://ror.org/02e5n0e79 AMD Academy of Fashion and Design Akademie Mode & Design'), (42087, 'https://ror.org/02e6pdw39', 'en', 1, 'https://ror.org/02e6pdw39 Southern California Seminary'), (42088, 'https://ror.org/02e6y4370', 'en', 1, 'https://ror.org/02e6y4370 William Booth College'), (42089, 'https://ror.org/02e71t779', 'no_lang_code', 1, 'https://ror.org/02e71t779 Osaka Chiyoda Junior College 大阪千代田短期大学'), (42090, 'https://ror.org/02e7x8p39', 'en', 1, 'https://ror.org/02e7x8p39 The Asiatic Society of Mumbai'), (42091, 'https://ror.org/02e957z30', 'en', 1, 'https://ror.org/02e957z30 Ministry of Agriculture and Land Reclamation وزارة الزراعة واستصلاح الأراضي المصرية'), (42092, 'https://ror.org/02e9x4k55', 'en', 1, 'https://ror.org/02e9x4k55 Christian Social Services Commission'), (42093, 'https://ror.org/02ec5p106', 'en', 1, 'https://ror.org/02ec5p106 AIDS Information Centre'), (42094, 'https://ror.org/02eeq5d55', 'no_lang_code', 1, 'https://ror.org/02eeq5d55 ESiOR Oy (Finland)'), (42095, 'https://ror.org/02egfyg20', 'en', 1, 'https://ror.org/02egfyg20 China Center of Advanced Science and Technology 中国高等科学技术中心'), (42096, 'https://ror.org/02ehp0f77', 'en', 1, 'https://ror.org/02ehp0f77 Umeå Plant Science Centre'), (42097, 'https://ror.org/02ekmsz98', 'en', 1, 'https://ror.org/02ekmsz98 Golden Valley Agricultural Research Trust'); INSERT INTO `rors` VALUES (42098, 'https://ror.org/02em10776', 'en', 1, 'https://ror.org/02em10776 Gdansk School of Higher Education Gdańska Szkoła Wyższa'), (42099, 'https://ror.org/02eneb966', 'en', 1, 'https://ror.org/02eneb966 World Mission University'), (42100, 'https://ror.org/02es31f96', 'en', 1, 'https://ror.org/02es31f96 Tamil Nadu State AIDS Control Society'), (42101, 'https://ror.org/02etj2579', 'en', 1, 'https://ror.org/02etj2579 Savannah Law School'), (42102, 'https://ror.org/02evbg326', 'en', 1, 'https://ror.org/02evbg326 Royal College of Pathologists of Australasia'), (42103, 'https://ror.org/02evmt624', 'en', 1, 'https://ror.org/02evmt624 Guntur Medical College'), (42104, 'https://ror.org/02ewpfp83', 'no_lang_code', 1, 'https://ror.org/02ewpfp83 Medicure (Canada)'), (42105, 'https://ror.org/02exn6h14', 'it', 1, 'https://ror.org/02exn6h14 Conservatorio di Musica Licinio Refice'), (42106, 'https://ror.org/02ez1f997', 'en', 1, 'https://ror.org/02ez1f997 Sparks'), (42107, 'https://ror.org/02f5g3528', 'en', 1, 'https://ror.org/02f5g3528 Infectious Diseases Research Collaboration'), (42108, 'https://ror.org/02f5k2623', 'en', 1, 'https://ror.org/02f5k2623 Southeastern Baptist College'), (42109, 'https://ror.org/02f62sy66', 'en', 1, 'https://ror.org/02f62sy66 Bio-oriented Technology Research Advancement Institution 生物系特定産業技術研究支援センタ'), (42110, 'https://ror.org/02f72qf66', 'es', 1, 'https://ror.org/02f72qf66 Universidad Tecnológica del Sur de Sonora'), (42111, 'https://ror.org/02f7s4h98', 'en', 1, 'https://ror.org/02f7s4h98 Pushpagiri Medical College'), (42112, 'https://ror.org/02fa3j397', 'es', 1, 'https://ror.org/02fa3j397 Confederación Estatal de Personas Sordas'), (42113, 'https://ror.org/02fa80e12', 'en', 1, 'https://ror.org/02fa80e12 Eastwick College and the HoHoKus Schools'), (42114, 'https://ror.org/02fcamb19', 'en', 1, 'https://ror.org/02fcamb19 National Research Centre on Seed Spices'), (42115, 'https://ror.org/02fd5ff90', 'en', 1, 'https://ror.org/02fd5ff90 Specs Howard School of Media Arts'), (42116, 'https://ror.org/02fdv8735', 'en', 1, 'https://ror.org/02fdv8735 Lagrange Laboratory'), (42117, 'https://ror.org/02ffbv447', 'en', 1, 'https://ror.org/02ffbv447 Crowleys Ridge College'), (42118, 'https://ror.org/02ffdpz25', 'en', 1, 'https://ror.org/02ffdpz25 Health Education North West'), (42119, 'https://ror.org/02ffkja82', 'no_lang_code', 1, 'https://ror.org/02ffkja82 Hewlett-Packard (India)'), (42120, 'https://ror.org/02ffzw118', 'en', 1, 'https://ror.org/02ffzw118 Columbia College - California'), (42121, 'https://ror.org/02fg4tx92', 'no_lang_code', 1, 'https://ror.org/02fg4tx92 Cleanergy (Sweden)'), (42122, 'https://ror.org/02fjxcw19', 'en', 1, 'https://ror.org/02fjxcw19 New South Wales Institute of Psychiatry'), (42123, 'https://ror.org/02fm1e093', 'no_lang_code', 1, 'https://ror.org/02fm1e093 Sanru'), (42124, 'https://ror.org/02fn8ac40', 'en', 1, 'https://ror.org/02fn8ac40 Ministry of Economy משרד הכלכלה'), (42125, 'https://ror.org/02fnn6t22', 'it', 1, 'https://ror.org/02fnn6t22 Conservatorio di Musica "G.B. Martini"'), (42126, 'https://ror.org/02fnpjd08', 'en', 1, 'https://ror.org/02fnpjd08 Institute of Vegetables and Flowers 中国农业科学院蔬菜花卉研究所'), (42127, 'https://ror.org/02fq16441', 'no_lang_code', 1, 'https://ror.org/02fq16441 Kalyani Group (India)'), (42128, 'https://ror.org/02fr0s482', 'no_lang_code', 1, 'https://ror.org/02fr0s482 Wenzhou Municipal Sci-Tech Bureau 温州市科学技术局'), (42129, 'https://ror.org/02fs6pb13', 'en', 1, 'https://ror.org/02fs6pb13 South Piedmont Community College'), (42130, 'https://ror.org/02fsfnf94', 'en', 1, 'https://ror.org/02fsfnf94 Institute of Molecular and Cell Biology Институт молекулярной и клеточной биологии'), (42131, 'https://ror.org/02fsnvs68', 'no_lang_code', 1, 'https://ror.org/02fsnvs68 Portuguese Air Transportations (Portugal) Transportes Aéreos Portugueses'), (42132, 'https://ror.org/02fv0rq89', 'no_lang_code', 1, 'https://ror.org/02fv0rq89 Computational Diagnostics (United States)'), (42133, 'https://ror.org/02fv6wk06', 'en', 1, 'https://ror.org/02fv6wk06 Tunisian Union of Agriculture and Fisheries Union Tunisienne de l''Agriculture et de la Pêche'), (42134, 'https://ror.org/02fwden70', 'en', 1, 'https://ror.org/02fwden70 Astronomical Observatory of Capodimonte Osservatorio Astronomico di Capodimonte'), (42135, 'https://ror.org/02fxe3b78', 'en', 1, 'https://ror.org/02fxe3b78 Sri Manakula Vinayagar Educational Trust'), (42136, 'https://ror.org/02fypjr73', 'en', 1, 'https://ror.org/02fypjr73 St. Bernard’s School of Theology and Ministry'), (42137, 'https://ror.org/02fyqee34', 'en', 1, 'https://ror.org/02fyqee34 Dormitory Authority of the State of New York'), (42138, 'https://ror.org/02fzvr850', 'en', 1, 'https://ror.org/02fzvr850 French School at Athens École française d’Athènes Γαλλική Σχολή Αθηνών'), (42139, 'https://ror.org/02fzwdc59', 'en', 1, 'https://ror.org/02fzwdc59 Yonsei University Dental Hospital'), (42140, 'https://ror.org/02fzzay98', 'en', 1, 'https://ror.org/02fzzay98 Xinjiang Entry-Exit Inspection and Quarantine Bureau 新疆出入境检验检疫局检验检疫技术中心'), (42141, 'https://ror.org/02g11qe83', 'de', 1, 'https://ror.org/02g11qe83 Fachhochschule für Rechtspflege Nordrhein Westfalen'), (42142, 'https://ror.org/02g43d244', 'en', 1, 'https://ror.org/02g43d244 International Crops Research Institute for the Semi-Arid Tropics'), (42143, 'https://ror.org/02g4n1614', 'no_lang_code', 1, 'https://ror.org/02g4n1614 Qatar Petroleum (Qatar) عمليات قطر للبترول'), (42144, 'https://ror.org/02g553740', 'en', 1, 'https://ror.org/02g553740 Beal College'), (42145, 'https://ror.org/02g5xq267', 'en', 1, 'https://ror.org/02g5xq267 Saskatchewan Ministry of Agriculture'), (42146, 'https://ror.org/02g7a7139', 'en', 1, 'https://ror.org/02g7a7139 Critical Art and Media Practice'), (42147, 'https://ror.org/02g9hzn44', 'en', 1, 'https://ror.org/02g9hzn44 National Institute of Science and Mathematics Technology'), (42148, 'https://ror.org/02g9vj608', 'en', 1, 'https://ror.org/02g9vj608 University and College Union'), (42149, 'https://ror.org/02ga7kh69', 'no_lang_code', 1, 'https://ror.org/02ga7kh69 Freddie Mac (United States)'), (42150, 'https://ror.org/02gbq8p27', 'en', 1, 'https://ror.org/02gbq8p27 University College of Estate Management'), (42151, 'https://ror.org/02gc32c47', 'en', 1, 'https://ror.org/02gc32c47 New College Lanarkshire'), (42152, 'https://ror.org/02gcnpr25', 'en', 1, 'https://ror.org/02gcnpr25 Trinity College London'), (42153, 'https://ror.org/02gdmq314', 'en', 1, 'https://ror.org/02gdmq314 Ridley College'), (42154, 'https://ror.org/02gdp5e27', 'en', 1, 'https://ror.org/02gdp5e27 Joseph Rowntree Charitable Trust'), (42155, 'https://ror.org/02ge9fk48', 'es', 1, 'https://ror.org/02ge9fk48 Secretaría de Ciencia Tecnología e Innovación'), (42156, 'https://ror.org/02getqa45', 'no_lang_code', 1, 'https://ror.org/02getqa45 Avesthagen (India)'), (42157, 'https://ror.org/02gf2m037', 'it', 1, 'https://ror.org/02gf2m037 Istituto Svizzero di Roma'), (42158, 'https://ror.org/02gfwng46', 'no_lang_code', 1, 'https://ror.org/02gfwng46 Whirlpool (United States)'), (42159, 'https://ror.org/02ggka625', 'en', 1, 'https://ror.org/02ggka625 Basel Convention Co-Ordinating Centre'), (42160, 'https://ror.org/02ggy9z10', 'en', 1, 'https://ror.org/02ggy9z10 Higher Institute for Artistic Industries Urbino Istituto Superiore per le Industrie Artistiche'), (42161, 'https://ror.org/02gkfsf47', 'en', 1, 'https://ror.org/02gkfsf47 LUCA School of Arts'), (42162, 'https://ror.org/02gn4kd94', 'en', 1, 'https://ror.org/02gn4kd94 National Institute of Technology, Numazu College 沼津高専'), (42163, 'https://ror.org/02gnt4v62', 'en', 1, 'https://ror.org/02gnt4v62 Indian Institute of Ecology and Environment'), (42164, 'https://ror.org/02gp6p739', 'no_lang_code', 1, 'https://ror.org/02gp6p739 Mali-Folkecenter'), (42165, 'https://ror.org/02gqw3a90', 'en', 1, 'https://ror.org/02gqw3a90 Austrian Archeological Institute Österreichisches Archäologisches Institut'), (42166, 'https://ror.org/02grghs20', 'en', 1, 'https://ror.org/02grghs20 Yeshiva and Kollel Be''er Yitzchok of Elizabeth'), (42167, 'https://ror.org/02gvasz77', 'en', 1, 'https://ror.org/02gvasz77 South Georgia Technical College'), (42168, 'https://ror.org/02gxkme34', 'en', 1, 'https://ror.org/02gxkme34 University of Arkansas Community College at Morrilton'), (42169, 'https://ror.org/02gyqgr85', 'no_lang_code', 1, 'https://ror.org/02gyqgr85 NanoFlex Power (United States)'), (42170, 'https://ror.org/02gzrnr79', 'en', 1, 'https://ror.org/02gzrnr79 Rabbi Jacob Joseph School'), (42171, 'https://ror.org/02gzvm828', 'en', 1, 'https://ror.org/02gzvm828 National Earthquake Response Support Service 中国地震应急搜救中心'), (42172, 'https://ror.org/02h2say50', 'en', 1, 'https://ror.org/02h2say50 Virginia BioTechnology Research Park'), (42173, 'https://ror.org/02h3vgm10', 'en', 1, 'https://ror.org/02h3vgm10 Zemaitija College Žemaitijos Kolegija'), (42174, 'https://ror.org/02h44gz71', 'en', 1, 'https://ror.org/02h44gz71 Mysore Resettlement and Development Agency'), (42175, 'https://ror.org/02h5zfy21', 'en', 1, 'https://ror.org/02h5zfy21 Accident Compensation Corporation Te Kaporeihana Āwhina Hunga Whara'), (42176, 'https://ror.org/02h6mhy16', 'en', 1, 'https://ror.org/02h6mhy16 Oak Hills Christian College'), (42177, 'https://ror.org/02h6w3w70', 'no_lang_code', 1, 'https://ror.org/02h6w3w70 Malabar Cancer Centre'), (42178, 'https://ror.org/02h77vn79', 'ro', 1, 'https://ror.org/02h77vn79 Ministerul Muncii, Familiei, Protecţiei Sociale şi Persoanelor Vârstnice'), (42179, 'https://ror.org/02h7w3c75', 'en', 1, 'https://ror.org/02h7w3c75 Tanzania Forestry Research Institute'), (42180, 'https://ror.org/02h8dsx08', 'en', 1, 'https://ror.org/02h8dsx08 Dmitry Rogachev National Research Center of Pediatric Hematology, Oncology and Immunology ДЕТСКОЙ ГЕМАТОЛОГИИ, ОНКОЛОГИИ И ИММУНОЛОГИИ им. Дмитрия Рогачева'), (42181, 'https://ror.org/02h8pgc47', 'no_lang_code', 1, 'https://ror.org/02h8pgc47 Narayana Nethralaya'), (42182, 'https://ror.org/02h8s2s90', 'en', 1, 'https://ror.org/02h8s2s90 United States Election Assistance Commission'), (42183, 'https://ror.org/02hbw4f89', 'no_lang_code', 1, 'https://ror.org/02hbw4f89 Lantheus Medical Imaging (United States)'), (42184, 'https://ror.org/02hc4dw24', 'en', 1, 'https://ror.org/02hc4dw24 Montgomery High School'), (42185, 'https://ror.org/02hce4k71', 'fr', 1, 'https://ror.org/02hce4k71 École Nationale Supérieure d''Art et de Design de Nancy'), (42186, 'https://ror.org/02hd4h748', 'en', 1, 'https://ror.org/02hd4h748 Phyto consulting'), (42187, 'https://ror.org/02hdve317', 'en', 1, 'https://ror.org/02hdve317 Academy of Fine Arts Karlsruhe Staatliche Akademie der Bildenden Künste Karlsruhe'), (42188, 'https://ror.org/02hfjdw52', 'fr', 1, 'https://ror.org/02hfjdw52 Ministère de Environnement et de l''Assainissement du Mali'), (42189, 'https://ror.org/02hger267', 'en', 1, 'https://ror.org/02hger267 Great Britain China Centre'), (42190, 'https://ror.org/02hnxxp83', 'en', 1, 'https://ror.org/02hnxxp83 American University of the Caribbean School of Medicine'), (42191, 'https://ror.org/02hp9qz46', 'no_lang_code', 1, 'https://ror.org/02hp9qz46 Erytech Pharma (France)'), (42192, 'https://ror.org/02hx58q14', 'no_lang_code', 1, 'https://ror.org/02hx58q14 Alabama Power (United States)'), (42193, 'https://ror.org/02hxmqn30', 'en', 1, 'https://ror.org/02hxmqn30 Civil Service College'), (42194, 'https://ror.org/02hy76n39', 'en', 1, 'https://ror.org/02hy76n39 Vilniaus Kooperacijos Kolegija Vilnius Cooperative College'), (42195, 'https://ror.org/02j1fb913', 'es', 1, 'https://ror.org/02j1fb913 Secretaría de Investigación, Innovación y Educación Superior'), (42196, 'https://ror.org/02j37bn23', 'en', 1, 'https://ror.org/02j37bn23 Beatson Cancer Charity'), (42197, 'https://ror.org/02j530k95', 'fr', 1, 'https://ror.org/02j530k95 École Supérieure de Chimie Organique et Minérale'), (42198, 'https://ror.org/02j693n47', 'en', 1, 'https://ror.org/02j693n47 Chinese Academy of Surveying and Mapping 中国测绘科学研究院'), (42199, 'https://ror.org/02j8mex09', 'en', 1, 'https://ror.org/02j8mex09 Wilson Community College'), (42200, 'https://ror.org/02j8pmw82', 'en', 1, 'https://ror.org/02j8pmw82 Indian Institute of Management Indore भारतीय प्रबंध संस्थान इंदौर'), (42201, 'https://ror.org/02j95s845', 'en', 1, 'https://ror.org/02j95s845 International Association for Great Lakes Research'), (42202, 'https://ror.org/02j983531', 'no_lang_code', 1, 'https://ror.org/02j983531 Scientific Center of RAS in Chernogolovka Федеральное государственное бюджетное учреждение науки Научный центр Российской академии наук в Черноголовке'), (42203, 'https://ror.org/02jbzdv43', 'pt', 1, 'https://ror.org/02jbzdv43 Fundo para a Protecção dos Animais Selvagens'), (42204, 'https://ror.org/02jd4k732', 'en', 1, 'https://ror.org/02jd4k732 National Office of Hydrocarbons and Mines Office National des Hydrocarbures et des Mines'), (42205, 'https://ror.org/02jexx044', 'de', 1, 'https://ror.org/02jexx044 Senatsverwaltung für Bildung, Jugend und Wissenschaft'), (42206, 'https://ror.org/02jf25180', 'en', 1, 'https://ror.org/02jf25180 Warwickshire College'), (42207, 'https://ror.org/02jf7e446', 'en', 1, 'https://ror.org/02jf7e446 Gannan Normal University 赣南师範学院'), (42208, 'https://ror.org/02jfv6690', 'en', 1, 'https://ror.org/02jfv6690 Tennessee Wildlife Resources Agency'), (42209, 'https://ror.org/02jfyz617', 'en', 1, 'https://ror.org/02jfyz617 Union Presbyterian Seminary'), (42210, 'https://ror.org/02jhhh683', 'en', 1, 'https://ror.org/02jhhh683 Shanghai Science and Technology Museum 上海科技馆'), (42211, 'https://ror.org/02jj4k517', 'en', 1, 'https://ror.org/02jj4k517 Physico-Technical Institute Физико-технический институт Уральского отделения Российской Академии наук'), (42212, 'https://ror.org/02jk0vd24', 'it', 1, 'https://ror.org/02jk0vd24 Conservatorio di Musica Giuseppe Verdi'), (42213, 'https://ror.org/02jnewa08', 'en', 1, 'https://ror.org/02jnewa08 American Institute of Ultrasound in Medicine'), (42214, 'https://ror.org/02jp3w516', 'en', 1, 'https://ror.org/02jp3w516 Department of Agriculture, Land Reform and Rural Development'), (42215, 'https://ror.org/02jr12631', 'sl', 1, 'https://ror.org/02jr12631 Šolski Center Velenje'), (42216, 'https://ror.org/02jract75', 'en', 1, 'https://ror.org/02jract75 Institute on Laser and Information Technologies Институт проблем лазерных и информационных технологий'), (42217, 'https://ror.org/02jv94566', 'no_lang_code', 1, 'https://ror.org/02jv94566 Canon (United States)'), (42218, 'https://ror.org/02jxpdd90', 'en', 1, 'https://ror.org/02jxpdd90 Life Science Zurich'), (42219, 'https://ror.org/02jz4rx70', 'en', 1, 'https://ror.org/02jz4rx70 Aarupadai Veedu Medical College & Hospital'), (42220, 'https://ror.org/02k139m61', 'fr', 1, 'https://ror.org/02k139m61 Institut Régional d''Administration de Bastia'), (42221, 'https://ror.org/02k2r5455', 'en', 1, 'https://ror.org/02k2r5455 Maryland Space Grant Consortium'), (42222, 'https://ror.org/02k6n4s14', 'fr', 1, 'https://ror.org/02k6n4s14 École Centrale d''Électronique'), (42223, 'https://ror.org/02k7e9603', 'fr', 1, 'https://ror.org/02k7e9603 Haute École Libre de Bruxelles Ilya Prigogine'), (42224, 'https://ror.org/02k7q2e66', 'pl', 1, 'https://ror.org/02k7q2e66 Uczelnia Zawodowa Zagłębia Miedziowego w Lubinie'), (42225, 'https://ror.org/02k7ygp86', 'fr', 1, 'https://ror.org/02k7ygp86 Académie des Beaux-Arts de Tournai'), (42226, 'https://ror.org/02k8h2m07', 'en', 1, 'https://ror.org/02k8h2m07 Williamson College'), (42227, 'https://ror.org/02kbrsj34', 'no_lang_code', 1, 'https://ror.org/02kbrsj34 Companhia Energética de Minas Gerais (Brazil)'), (42228, 'https://ror.org/02kbwgp44', 'fr', 1, 'https://ror.org/02kbwgp44 École Supérieure d''Art et de Design d''Orléans'), (42229, 'https://ror.org/02kbxde97', 'en', 1, 'https://ror.org/02kbxde97 Uganda Wildlife Authority'), (42230, 'https://ror.org/02kc2j595', 'en', 1, 'https://ror.org/02kc2j595 Copiah-Lincoln Community College'), (42231, 'https://ror.org/02kd2sw87', 'en', 1, 'https://ror.org/02kd2sw87 Safe Kids Worldwide'), (42232, 'https://ror.org/02kgft750', 'fr', 1, 'https://ror.org/02kgft750 École Nationale Supérieure d''Art'), (42233, 'https://ror.org/02kjxc710', 'en', 1, 'https://ror.org/02kjxc710 Aventis School of Management'), (42234, 'https://ror.org/02kkj1692', 'en', 1, 'https://ror.org/02kkj1692 World Medicine Institute'), (42235, 'https://ror.org/02kmd4c68', 'no_lang_code', 1, 'https://ror.org/02kmd4c68 Calyx (India)'), (42236, 'https://ror.org/02knnfm74', 'en', 1, 'https://ror.org/02knnfm74 Board of Intermediate Education Karachi'), (42237, 'https://ror.org/02kr3gj55', 'en', 1, 'https://ror.org/02kr3gj55 Mid Cheshire Hospitals NHS Foundation Trust'), (42238, 'https://ror.org/02kraxp86', 'de', 1, 'https://ror.org/02kraxp86 SRH Hochschule der Populären Künste'), (42239, 'https://ror.org/02kreny85', 'en', 1, 'https://ror.org/02kreny85 Delaware Division of the Arts'), (42240, 'https://ror.org/02kt2ac46', 'en', 1, 'https://ror.org/02kt2ac46 Ubuntu Education Fund'), (42241, 'https://ror.org/02kw9m715', 'pl', 1, 'https://ror.org/02kw9m715 Dolnośląska Wyższa Szkoła Przedsiębiorczości i Techniki w Polkowicach'), (42242, 'https://ror.org/02kxkqy32', 'en', 1, 'https://ror.org/02kxkqy32 Hawaii Community College'), (42243, 'https://ror.org/02ky6c719', 'no_lang_code', 1, 'https://ror.org/02ky6c719 Johnson Controls (United States)'), (42244, 'https://ror.org/02kz5f065', 'en', 1, 'https://ror.org/02kz5f065 Medicine Hat College'), (42245, 'https://ror.org/02m0pjb51', 'en', 1, 'https://ror.org/02m0pjb51 Wesley Biblical Seminary'), (42246, 'https://ror.org/02m5dy175', 'en', 1, 'https://ror.org/02m5dy175 Georgia Tech Lorraine'), (42247, 'https://ror.org/02m8kpq64', 'en', 1, 'https://ror.org/02m8kpq64 Child In Need Institute'), (42248, 'https://ror.org/02mabj369', 'en', 1, 'https://ror.org/02mabj369 Nurses'' Training College, Ho'), (42249, 'https://ror.org/02mdak015', 'no_lang_code', 1, 'https://ror.org/02mdak015 Hilleman Laboratories (India)'), (42250, 'https://ror.org/02mf6dg38', 'en', 1, 'https://ror.org/02mf6dg38 Action Cancer'), (42251, 'https://ror.org/02mfknm62', 'en', 1, 'https://ror.org/02mfknm62 Hypertension Trust'), (42252, 'https://ror.org/02mfyea49', 'en', 1, 'https://ror.org/02mfyea49 Radom Academy of Economics Wyższa Szkoła Handlowa w Radomiu'), (42253, 'https://ror.org/02mh1yk91', 'en', 1, 'https://ror.org/02mh1yk91 Dr. A. Ramachandran''s Diabetes Hospitals'), (42254, 'https://ror.org/02mht3s70', 'en', 1, 'https://ror.org/02mht3s70 City of Westminster College'), (42255, 'https://ror.org/02mj1af40', 'en', 1, 'https://ror.org/02mj1af40 Children & Youth Science Center of CAST 中国科协青少年科技中心'), (42256, 'https://ror.org/02mkq9q94', 'en', 1, 'https://ror.org/02mkq9q94 Institute of Sociology 中国社会科学院社会学研究所'), (42257, 'https://ror.org/02mr7vz40', 'en', 1, 'https://ror.org/02mr7vz40 Northwestern Oklahoma State University'), (42258, 'https://ror.org/02ms60710', 'en', 1, 'https://ror.org/02ms60710 Fukuyama City University 福山市立大学'), (42259, 'https://ror.org/02mt4s337', 'en', 1, 'https://ror.org/02mt4s337 Bank of China 中国银行股份有限公司'), (42260, 'https://ror.org/02mv4ab52', 'en', 1, 'https://ror.org/02mv4ab52 inVentiv Health Clinical'), (42261, 'https://ror.org/02mvc1a11', 'en', 1, 'https://ror.org/02mvc1a11 TCA College'), (42262, 'https://ror.org/02mwyc682', 'en', 1, 'https://ror.org/02mwyc682 Korea Labor Institute 한국노동연구원'), (42263, 'https://ror.org/02mxq6q49', 'en', 1, 'https://ror.org/02mxq6q49 Guangdong Laboratory Animals Monitoring Institute 广东省实验动物监测所'), (42264, 'https://ror.org/02n352k96', 'en', 1, 'https://ror.org/02n352k96 Regional Universities Forum for Capacity Building in Agriculture'), (42265, 'https://ror.org/02n3ttt92', 'en', 1, 'https://ror.org/02n3ttt92 ALS Society of Canada'), (42266, 'https://ror.org/02n5zea08', 'en', 1, 'https://ror.org/02n5zea08 Friends for Global Health Initiative Nigeria'), (42267, 'https://ror.org/02n64v793', 'fr', 1, 'https://ror.org/02n64v793 Infor Jeunes Bruxelles'), (42268, 'https://ror.org/02n67pd69', 'de', 1, 'https://ror.org/02n67pd69 Fördergemeinschaft Kinderkrebs-Zentrum Hamburg'), (42269, 'https://ror.org/02n7mrn32', 'no_lang_code', 1, 'https://ror.org/02n7mrn32 Chubu Electric Power (Japan) 中部電力株式会社'), (42270, 'https://ror.org/02n937p61', 'en', 1, 'https://ror.org/02n937p61 Central Economics and Mathematics Institute Центральный экономико-математический институт'), (42271, 'https://ror.org/02n9a7a30', 'fr', 1, 'https://ror.org/02n9a7a30 Agence Nationale de l''Aviation Civile'), (42272, 'https://ror.org/02n9jjp67', 'en', 1, 'https://ror.org/02n9jjp67 Groden Network'), (42273, 'https://ror.org/02n9yc996', 'en', 1, 'https://ror.org/02n9yc996 Det kongelige Utenriksdepartement Ministry of Foreign Affairs'), (42274, 'https://ror.org/02na6tz09', 'pt', 1, 'https://ror.org/02na6tz09 Universidade Estadual do Piau'), (42275, 'https://ror.org/02nabw167', 'en', 1, 'https://ror.org/02nabw167 State Hospital'), (42276, 'https://ror.org/02nbb5780', 'no_lang_code', 1, 'https://ror.org/02nbb5780 HCL Technologies (India)'), (42277, 'https://ror.org/02nbfcv58', 'en', 1, 'https://ror.org/02nbfcv58 China Nuclear Energy Association 核工业航测遥感中心'), (42278, 'https://ror.org/02nbqkk54', 'en', 1, 'https://ror.org/02nbqkk54 Western Wyoming Community College'), (42279, 'https://ror.org/02nc61e46', 'en', 1, 'https://ror.org/02nc61e46 Community Research and Development Information Service Forschungs- und Entwicklungsinformationsdienst der Gemeinschaft Service communautaire d''information sur la recherche et le développement Servizio Comunitario di Informazione in materia di Ricerca e Sviluppo Wspólnotowy Serwis Informacyjny Badań i Rozwoju'), (42280, 'https://ror.org/02nc8vp15', 'es', 1, 'https://ror.org/02nc8vp15 Departamento Nacional de Planeación'), (42281, 'https://ror.org/02ncvqp37', 'en', 1, 'https://ror.org/02ncvqp37 Center for Theoretical Problems of Physicochemical Pharmacology Центр теоретических проблем физико-химической фармакологии РАН'), (42282, 'https://ror.org/02nd9e057', 'en', 1, 'https://ror.org/02nd9e057 Ross University School of Medicine'), (42283, 'https://ror.org/02nf1ky18', 'en', 1, 'https://ror.org/02nf1ky18 Institute of Quantitative and Technical Economics 中国社会科学院数量经济与技术经济研究所'), (42284, 'https://ror.org/02nfbzg04', 'en', 1, 'https://ror.org/02nfbzg04 Department of Local Government and Communities'), (42285, 'https://ror.org/02nfh7608', 'fr', 1, 'https://ror.org/02nfh7608 Bayerisch-Französische Hochschulzentrum Centre de Coopération Universitaire Franco-Bavarois'), (42286, 'https://ror.org/02nfy5246', 'en', 1, 'https://ror.org/02nfy5246 Ministry of Science and Technology Thailand กระทรวงวิทยาศาสตร์และเทคโนโลยี'), (42287, 'https://ror.org/02ngzgx62', 'en', 1, 'https://ror.org/02ngzgx62 Bibliothèque du Parlement Library of Parliament'), (42288, 'https://ror.org/02nk74404', 'en', 1, 'https://ror.org/02nk74404 Ministry of Employment and Labor 고용노동부'), (42289, 'https://ror.org/02nm6nb22', 'en', 1, 'https://ror.org/02nm6nb22 Sullivan College of Technology and Design'), (42290, 'https://ror.org/02nmyab03', 'en', 1, 'https://ror.org/02nmyab03 Nyanza Reproductive Health Society'), (42291, 'https://ror.org/02npjmq89', 'pt', 1, 'https://ror.org/02npjmq89 Fundação de Estudo e Pesquisa em Medicina Veterinária e Zootecnia'), (42292, 'https://ror.org/02ntrvb55', 'es', 1, 'https://ror.org/02ntrvb55 Instituto Católico Chileno de Migración'), (42293, 'https://ror.org/02nxvmx58', 'en', 1, 'https://ror.org/02nxvmx58 Accrington and Rossendale College'), (42294, 'https://ror.org/02nys7898', 'en', 1, 'https://ror.org/02nys7898 Western Cape Department of Health'), (42295, 'https://ror.org/02p2cvb06', 'en', 1, 'https://ror.org/02p2cvb06 Taft College'), (42296, 'https://ror.org/02p3rg563', 'en', 1, 'https://ror.org/02p3rg563 Shandong Academy of Social Sciences 山东社会科学院'), (42297, 'https://ror.org/02p58en94', 'en', 1, 'https://ror.org/02p58en94 The Restaurant School at Walnut Hill College'), (42298, 'https://ror.org/02p6c5g88', 'en', 1, 'https://ror.org/02p6c5g88 Federal Ministry of Science & Technology'), (42299, 'https://ror.org/02p79p790', 'en', 1, 'https://ror.org/02p79p790 Technological Institute of the Philippines'), (42300, 'https://ror.org/02p7rqa77', 'fr', 1, 'https://ror.org/02p7rqa77 Centre Technique de l''Agro-Alimentaire'), (42301, 'https://ror.org/02p837k95', 'no_lang_code', 1, 'https://ror.org/02p837k95 Ebro Foods (Canada)'), (42302, 'https://ror.org/02p87ey03', 'no_lang_code', 1, 'https://ror.org/02p87ey03 Tech Mahindra (India)'), (42303, 'https://ror.org/02pap8190', 'no_lang_code', 1, 'https://ror.org/02pap8190 Biognos (Sweden)'), (42304, 'https://ror.org/02pcng468', 'en', 1, 'https://ror.org/02pcng468 Tanzania Public health Association'), (42305, 'https://ror.org/02pfhbd70', 'en', 1, 'https://ror.org/02pfhbd70 Bundesministerium für Landesverteidigung und Sport Ministry of National Defence and Sport'), (42306, 'https://ror.org/02phrtc32', 'no_lang_code', 1, 'https://ror.org/02phrtc32 SGS (Portugal) Sociedade Geral de Superintendência'), (42307, 'https://ror.org/02pnpa204', 'it', 1, 'https://ror.org/02pnpa204 Istituzione Bologna Musei'), (42308, 'https://ror.org/02pnvb171', 'en', 1, 'https://ror.org/02pnvb171 National Bureau of Agriculturally Important Microorganisms कृषि के लिए महत्वपूर्ण सूक्ष्मजीवों के राष्ट्रीय ब्यूरो'), (42309, 'https://ror.org/02ppykv54', 'no_lang_code', 1, 'https://ror.org/02ppykv54 Ipca Laboratories (India)'), (42310, 'https://ror.org/02psef266', 'en', 1, 'https://ror.org/02psef266 Friends for an Earlier Breast Cancer Test'), (42311, 'https://ror.org/02ptdck34', 'en', 1, 'https://ror.org/02ptdck34 Australian Housing and Urban Research Institute'), (42312, 'https://ror.org/02pv2je48', 'en', 1, 'https://ror.org/02pv2je48 Queen of the Valley Medical Center'), (42313, 'https://ror.org/02pvvfc75', 'en', 1, 'https://ror.org/02pvvfc75 Vaatsalya Healthcare'), (42314, 'https://ror.org/02pz3nt69', 'en', 1, 'https://ror.org/02pz3nt69 Truman Bodden Law School'), (42315, 'https://ror.org/02q017026', 'en', 1, 'https://ror.org/02q017026 Asian Center for Theological Studies and Mission 아세아연합신학대학교'), (42316, 'https://ror.org/02q0t9634', 'hi', 1, 'https://ror.org/02q0t9634 Chhattisgarh Kamdhenu Vishwavidyalaya, छत्तीसगढ़ कामधेनु विश्वविद्यालय'), (42317, 'https://ror.org/02q312y93', 'no_lang_code', 1, 'https://ror.org/02q312y93 Inova Design Solutions (United Kingdom)'), (42318, 'https://ror.org/02q4r4y12', 'en', 1, 'https://ror.org/02q4r4y12 Government Medical College Thoothukudi தூத்துக்குடி அரசு மருத்துவக் கல்லூரி'), (42319, 'https://ror.org/02q5yp463', 'en', 1, 'https://ror.org/02q5yp463 KVG Medical College & Hospital'), (42320, 'https://ror.org/02q7fkp22', 'en', 1, 'https://ror.org/02q7fkp22 Cameroon Academy of Sciences'), (42321, 'https://ror.org/02q931085', 'no_lang_code', 1, 'https://ror.org/02q931085 AMPAC Fine Chemicals (United States)'), (42322, 'https://ror.org/02qb40709', 'no_lang_code', 1, 'https://ror.org/02qb40709 Medical Insurance Group Australia'), (42323, 'https://ror.org/02qbcmz19', 'en', 1, 'https://ror.org/02qbcmz19 Fachhochschule für öffentliche Verwaltung Nordrhein-Westfalen University of Applied Sciences for Public Administration and Management'), (42324, 'https://ror.org/02qj9w984', 'no_lang_code', 1, 'https://ror.org/02qj9w984 Getra (Italy)'), (42325, 'https://ror.org/02qjrvm45', 'fr', 1, 'https://ror.org/02qjrvm45 Centre de Recherche sur l''Environnement Alpin'), (42326, 'https://ror.org/02qn0hf26', 'en', 1, 'https://ror.org/02qn0hf26 University of Agricultural Sciences, Dharwad'), (42327, 'https://ror.org/02qpqb855', 'en', 1, 'https://ror.org/02qpqb855 Institute of History Институт истории СО РАН'), (42328, 'https://ror.org/02qqa1p29', 'en', 1, 'https://ror.org/02qqa1p29 Emmanuel College - Georgia'), (42329, 'https://ror.org/02qqx5a95', 'en', 1, 'https://ror.org/02qqx5a95 Russian Scientific Center of Radiology and Surgical Technologies Российский научный центр радиологии и хирургических технологий'), (42330, 'https://ror.org/02qrj0f68', 'no_lang_code', 1, 'https://ror.org/02qrj0f68 Jaypee Group (India)'), (42331, 'https://ror.org/02qrt6d45', 'fr', 1, 'https://ror.org/02qrt6d45 Institut Préparatoire aux Études d''Ingénieurs de Monastir'), (42332, 'https://ror.org/02qrynm70', 'en', 1, 'https://ror.org/02qrynm70 Research Manitoba'), (42333, 'https://ror.org/02qs1a797', 'en', 1, 'https://ror.org/02qs1a797 Centro Nacional de Investigaciones Cardiovasculares Carlos III Spanish National Centre for Cardiovascular Research'), (42334, 'https://ror.org/02qsf1r97', 'en', 1, 'https://ror.org/02qsf1r97 Academy of Science of South Africa'), (42335, 'https://ror.org/02qvpgb95', 'tr', 1, 'https://ror.org/02qvpgb95 Denizli Special Provincial Administration Denizli Yatırım İzleme ve Koordinasyon Başkanlığı'), (42336, 'https://ror.org/02qx7s056', 'en', 1, 'https://ror.org/02qx7s056 Marymount California University, Marymount College, Palos Verdes'), (42337, 'https://ror.org/02qxe8g21', 'en', 1, 'https://ror.org/02qxe8g21 Vanguard College'), (42338, 'https://ror.org/02qypfy05', 'no_lang_code', 1, 'https://ror.org/02qypfy05 Smiths Power (United States)'), (42339, 'https://ror.org/02qz16y57', 'en', 1, 'https://ror.org/02qz16y57 Korea Transport Institute 한국 교통 연구원'), (42340, 'https://ror.org/02qz3vf90', 'en', 1, 'https://ror.org/02qz3vf90 Davidson County Community College'), (42341, 'https://ror.org/02r0rw765', 'en', 1, 'https://ror.org/02r0rw765 Sault College'), (42342, 'https://ror.org/02r140y61', 'pt', 1, 'https://ror.org/02r140y61 Instituição Toledo de Ensino'), (42343, 'https://ror.org/02r1j5t41', 'no_lang_code', 1, 'https://ror.org/02r1j5t41 ZOSP RP Wytwórnia Umundurowania Strażackiego (Poland)'), (42344, 'https://ror.org/02r2mca20', 'no_lang_code', 1, 'https://ror.org/02r2mca20 Zabaykalsky National Park Забайкальский национальный парк'), (42345, 'https://ror.org/02r321f54', 'en', 1, 'https://ror.org/02r321f54 Lamar Community College'), (42346, 'https://ror.org/02r4ram30', 'en', 1, 'https://ror.org/02r4ram30 Institute of Economics Институт экономики УрО РАН'), (42347, 'https://ror.org/02r724415', 'de', 1, 'https://ror.org/02r724415 Evangelische Hochschule Dresden'), (42348, 'https://ror.org/02ra35s50', 'no_lang_code', 1, 'https://ror.org/02ra35s50 Georgia Power (United States)'), (42349, 'https://ror.org/02re25503', 'en', 1, 'https://ror.org/02re25503 Westerdals Oslo School of Arts, Communication and Technology'), (42350, 'https://ror.org/02re32a17', 'en', 1, 'https://ror.org/02re32a17 Hochschule Mainz University of Applied Sciences Mainz'), (42351, 'https://ror.org/02rejsj11', 'pt', 1, 'https://ror.org/02rejsj11 Conservatório de Música de Coimbra'), (42352, 'https://ror.org/02rey2c02', 'en', 1, 'https://ror.org/02rey2c02 Sterling College - Kansas'), (42353, 'https://ror.org/02rfxzc53', 'en', 1, 'https://ror.org/02rfxzc53 Louisville Presbyterian Theological Seminary'), (42354, 'https://ror.org/02rktmz08', 'en', 1, 'https://ror.org/02rktmz08 State Preservation Board'), (42355, 'https://ror.org/02rppq041', 'de', 1, 'https://ror.org/02rppq041 Krankenhaus Nordwest'), (42356, 'https://ror.org/02rpqwp12', 'pt', 1, 'https://ror.org/02rpqwp12 Instituto Vita'), (42357, 'https://ror.org/02rpz4k59', 'no_lang_code', 1, 'https://ror.org/02rpz4k59 Swets & Zeitlinger Swets (Netherlands)'), (42358, 'https://ror.org/02rqftv84', 'en', 1, 'https://ror.org/02rqftv84 Organisation for the Prohibition of Chemical Weapons Organización para la Prohibición de Armas Químicas'), (42359, 'https://ror.org/02rrsh045', 'en', 1, 'https://ror.org/02rrsh045 Aichi Konan College 愛知江南短期大学'), (42360, 'https://ror.org/02rs18x11', 'en', 1, 'https://ror.org/02rs18x11 Conseil pour le développement de la recherche en sciences sociales en Afrique Conselho para o Desenvolvimento da Pesquisa em Ciências Sociais em África Council for the Development of Social Science Research in Africa مجلس تنمية البحوث الإجتماعية في أفريقي'), (42361, 'https://ror.org/02rv28335', 'en', 1, 'https://ror.org/02rv28335 Ukrainian Military Medical Academy Українська військово-медична академія'), (42362, 'https://ror.org/02rvd6d64', 'en', 1, 'https://ror.org/02rvd6d64 Psychological Institute of the Russian Academy of Education'), (42363, 'https://ror.org/02rw00q54', 'en', 1, 'https://ror.org/02rw00q54 Tanzania Commission for AIDS'), (42364, 'https://ror.org/02rwycx38', 'en', 1, 'https://ror.org/02rwycx38 San Raffaele University of Rome Università telematica San Raffaele'), (42365, 'https://ror.org/02rx19412', 'en', 1, 'https://ror.org/02rx19412 National Academy of Agricultural Research Management'), (42366, 'https://ror.org/02rzek752', 'pt', 1, 'https://ror.org/02rzek752 Centro de Desenvolvimento Sustentável para as Zonas Costeiras'), (42367, 'https://ror.org/02s28hw54', 'en', 1, 'https://ror.org/02s28hw54 Emily Griffith Technical College'), (42368, 'https://ror.org/02s2t6509', 'en', 1, 'https://ror.org/02s2t6509 MacPhail Center for Music'), (42369, 'https://ror.org/02s4jq766', 'en', 1, 'https://ror.org/02s4jq766 Youth for Christ South Africa'), (42370, 'https://ror.org/02s6ww326', 'en', 1, 'https://ror.org/02s6ww326 Institute of Oriental Manuscripts Институт восточных рукописей Российской академии наук'), (42371, 'https://ror.org/02s7a2f24', 'en', 1, 'https://ror.org/02s7a2f24 Ali Yavar Jung National Institute for the Hearing Handicapped'), (42372, 'https://ror.org/02s995827', 'no_lang_code', 1, 'https://ror.org/02s995827 Allergan (Germany)'), (42373, 'https://ror.org/02s9tm513', 'no_lang_code', 1, 'https://ror.org/02s9tm513 Indian Oil Corporation (India)'), (42374, 'https://ror.org/02sbchm13', 'no_lang_code', 1, 'https://ror.org/02sbchm13 Asceneuron (Switzerland)'), (42375, 'https://ror.org/02sbnnp08', 'en', 1, 'https://ror.org/02sbnnp08 Alanya Hamdullah Emin Pasa University Alanya Hamdullah Emin Paşa Üniversitesi'), (42376, 'https://ror.org/02schg286', 'es', 1, 'https://ror.org/02schg286 Dirección de Investigación y Desarrollo'), (42377, 'https://ror.org/02se5n791', 'en', 1, 'https://ror.org/02se5n791 Entrepreneurship Development Institute of India'), (42378, 'https://ror.org/02seyh617', 'no_lang_code', 1, 'https://ror.org/02seyh617 AriadNEXT (France)'), (42379, 'https://ror.org/02sf8e546', 'en', 1, 'https://ror.org/02sf8e546 Patrick Henry Community College'), (42380, 'https://ror.org/02sj9qn07', 'en', 1, 'https://ror.org/02sj9qn07 Flint Hills Technical College'), (42381, 'https://ror.org/02skzpy58', 'en', 1, 'https://ror.org/02skzpy58 Centre for Environmental Management and Participatory Development'), (42382, 'https://ror.org/02sn4rb40', 'no_lang_code', 1, 'https://ror.org/02sn4rb40 Peregrine Power (United States)'), (42383, 'https://ror.org/02sqcy831', 'en', 1, 'https://ror.org/02sqcy831 Global Cardiovascular Innovation Center'), (42384, 'https://ror.org/02sqt9870', 'en', 1, 'https://ror.org/02sqt9870 University of Louisiana System'), (42385, 'https://ror.org/02srjxm46', 'en', 1, 'https://ror.org/02srjxm46 Brazosport College'), (42386, 'https://ror.org/02ss0kx69', 'en', 1, 'https://ror.org/02ss0kx69 Kyung Hee University Dental Hospital 경희대학교치과병원'), (42387, 'https://ror.org/02sstxn62', 'en', 1, 'https://ror.org/02sstxn62 European Bank for Reconstruction and Development'), (42388, 'https://ror.org/02sv2ex42', 'en', 1, 'https://ror.org/02sv2ex42 KLE Society Hospital'), (42389, 'https://ror.org/02svk5a52', 'en', 1, 'https://ror.org/02svk5a52 Państwowa Wyższa Szkoła Zawodowa w Skierniewicach State Higher Vocational School in Skierniewice'), (42390, 'https://ror.org/02svqj611', 'en', 1, 'https://ror.org/02svqj611 London School of Business and Finance'), (42391, 'https://ror.org/02svt2f64', 'no_lang_code', 1, 'https://ror.org/02svt2f64 Maharashtra Hybrid Seeds (India)'), (42392, 'https://ror.org/02swjdp46', 'en', 1, 'https://ror.org/02swjdp46 Children’s Discovery Institute'), (42393, 'https://ror.org/02sx0vk32', 'en', 1, 'https://ror.org/02sx0vk32 Department of Education and Training'), (42394, 'https://ror.org/02sx1y706', 'no_lang_code', 1, 'https://ror.org/02sx1y706 Sears Holdings (United States)'), (42395, 'https://ror.org/02sx3vp22', 'en', 1, 'https://ror.org/02sx3vp22 North Central Missouri College'), (42396, 'https://ror.org/02sx6dd34', 'en', 1, 'https://ror.org/02sx6dd34 Health Care Foundation'), (42397, 'https://ror.org/02sxcbg21', 'en', 1, 'https://ror.org/02sxcbg21 Indian Navy भारतीय नौसेना'), (42398, 'https://ror.org/02sz0wz08', 'en', 1, 'https://ror.org/02sz0wz08 Health Systems Trust'), (42399, 'https://ror.org/02sz4p320', 'en', 1, 'https://ror.org/02sz4p320 Institute of World Politics'), (42400, 'https://ror.org/02t1a0v32', 'no_lang_code', 1, 'https://ror.org/02t1a0v32 BMC Software (United States)'), (42401, 'https://ror.org/02t1dzr71', 'en', 1, 'https://ror.org/02t1dzr71 China Machine Press 中国机械工业出版社'), (42402, 'https://ror.org/02t2raw56', 'en', 1, 'https://ror.org/02t2raw56 National Assembly Library 대한민국 국회도서관'), (42403, 'https://ror.org/02t3dz930', 'en', 1, 'https://ror.org/02t3dz930 European External Action Service Europese Dienst voor extern optreden Europäischer Auswärtiger Dienst Service européen pour l’action extérieure'), (42404, 'https://ror.org/02t3sye10', 'en', 1, 'https://ror.org/02t3sye10 Excellence & Friends Management Care Centre'), (42405, 'https://ror.org/02t4zgr18', 'fr', 1, 'https://ror.org/02t4zgr18 Institut National de Nutrition et de Technologie Alimentaire'), (42406, 'https://ror.org/02t573g91', 'en', 1, 'https://ror.org/02t573g91 China Executive Leadership Academy Pudong 中国浦东干部学院'), (42407, 'https://ror.org/02t5chg71', 'en', 1, 'https://ror.org/02t5chg71 Alberta Foundation for the Arts'), (42408, 'https://ror.org/02t5vjx28', 'en', 1, 'https://ror.org/02t5vjx28 Central Mindanao Colleges'), (42409, 'https://ror.org/02t64n115', 'en', 1, 'https://ror.org/02t64n115 Polarforskningssekretariatet Swedish Polar Research Secretariat'), (42410, 'https://ror.org/02t6f2351', 'pt', 1, 'https://ror.org/02t6f2351 Instituto Federal de Educação, Ciência e Tecnologia de Mato Grosso'), (42411, 'https://ror.org/02t9ezy32', 'en', 1, 'https://ror.org/02t9ezy32 Bracknell and Wokingham College'), (42412, 'https://ror.org/02tbw3b35', 'en', 1, 'https://ror.org/02tbw3b35 Islamic Azad University of Shahrekord دانشگاه آزاد اسلامی واحد شهرکرد'), (42413, 'https://ror.org/02tc88d30', 'no_lang_code', 1, 'https://ror.org/02tc88d30 InfoBeyond Technology (United States)'), (42414, 'https://ror.org/02tcs8g80', 'no_lang_code', 1, 'https://ror.org/02tcs8g80 Laboratório Edol (Portugal)'), (42415, 'https://ror.org/02tdb1n52', 'en', 1, 'https://ror.org/02tdb1n52 Bellingen Shire Council'), (42416, 'https://ror.org/02tdd1e40', 'en', 1, 'https://ror.org/02tdd1e40 Saint Luke''s College of Health Sciences'), (42417, 'https://ror.org/02tec3785', 'en', 1, 'https://ror.org/02tec3785 Ulsan College 울산과학대학교'), (42418, 'https://ror.org/02thwp314', 'no_lang_code', 1, 'https://ror.org/02thwp314 Helixor Heilmittel (Germany)'), (42419, 'https://ror.org/02tjbfx21', 'en', 1, 'https://ror.org/02tjbfx21 Kasturba Hospital'), (42420, 'https://ror.org/02tjcpt69', 'en', 1, 'https://ror.org/02tjcpt69 University of Agricultural Sciences Raichur ಕೃಷಿ ವಿಶ್ವವಿದ್ಯಾಲಯ, ರಾಯಚೂರು'), (42421, 'https://ror.org/02tn5xc56', 'en', 1, 'https://ror.org/02tn5xc56 Colgate Rochester Crozer Divinity School'), (42422, 'https://ror.org/02tq21k19', 'pt', 1, 'https://ror.org/02tq21k19 For Mar Centro de Formação Profissional das Pescas e do Mar'), (42423, 'https://ror.org/02tr1pz26', 'en', 1, 'https://ror.org/02tr1pz26 Alberta College Alberta Koledža'), (42424, 'https://ror.org/02trn6p95', 'es', 1, 'https://ror.org/02trn6p95 Comisión Sectorial de Investigación Científica'), (42425, 'https://ror.org/02tsh5b53', 'en', 1, 'https://ror.org/02tsh5b53 Majlis Kebudayaan Kebangsaan Singapura National Arts Council 国家艺术理事会'), (42426, 'https://ror.org/02ttd0n41', 'en', 1, 'https://ror.org/02ttd0n41 Wellington City Council'), (42427, 'https://ror.org/02tvx6482', 'en', 1, 'https://ror.org/02tvx6482 Key Laboratory of Chemistry for Natural Products of Guizhou Province and Chinese Academy of Sciences 贵州省中国科学院天然产物化学重点实验室'), (42428, 'https://ror.org/02txa2075', 'en', 1, 'https://ror.org/02txa2075 Vision West Nottinghamshire College'), (42429, 'https://ror.org/02txwfx92', 'it', 1, 'https://ror.org/02txwfx92 Giuseppe Salvatore Vaiana Osservatorio Astronomico di Palermo'), (42430, 'https://ror.org/02ty6ja84', 'en', 1, 'https://ror.org/02ty6ja84 Texas Department of Family and Protective Services'), (42431, 'https://ror.org/02tzvz077', 'pt', 1, 'https://ror.org/02tzvz077 Teatro Nacional São João'), (42432, 'https://ror.org/02v0ayw84', 'sv', 1, 'https://ror.org/02v0ayw84 Kungälvs Sjukhus'), (42433, 'https://ror.org/02v2jz242', 'no_lang_code', 1, 'https://ror.org/02v2jz242 Ssemwanga (Uganda)'), (42434, 'https://ror.org/02v616z87', 'no_lang_code', 1, 'https://ror.org/02v616z87 BNP Paribas (France)'), (42435, 'https://ror.org/02v65ck63', 'en', 1, 'https://ror.org/02v65ck63 Maple Springs Baptist Bible College and Seminary'), (42436, 'https://ror.org/02v8a2f42', 'en', 1, 'https://ror.org/02v8a2f42 Automotive Research Association of India'), (42437, 'https://ror.org/02v8s3859', 'en', 1, 'https://ror.org/02v8s3859 Azad University in Oxford'), (42438, 'https://ror.org/02vb0gn74', 'fr', 1, 'https://ror.org/02vb0gn74 TL & Associés'), (42439, 'https://ror.org/02vc1v137', 'en', 1, 'https://ror.org/02vc1v137 Indian Spinal Injuries Centre'), (42440, 'https://ror.org/02vcjcj30', 'de', 1, 'https://ror.org/02vcjcj30 Ministerium für Wissenschaft, Forschung und Kultur'), (42441, 'https://ror.org/02vfz9j23', 'en', 1, 'https://ror.org/02vfz9j23 Forsvarets Høgskoler Norwegian Defence University College'), (42442, 'https://ror.org/02vj63597', 'en', 1, 'https://ror.org/02vj63597 Nicolet Area Technical College'), (42443, 'https://ror.org/02vksp793', 'es', 1, 'https://ror.org/02vksp793 Instituto de Investigaciones en Fruticultura Tropical'), (42444, 'https://ror.org/02vmd6f14', 'en', 1, 'https://ror.org/02vmd6f14 Saint John''s School'), (42445, 'https://ror.org/02vnvpc56', 'en', 1, 'https://ror.org/02vnvpc56 Jan Amos Komeński State School of Higher Vocational Education Państwowa Wyższa Szkoła Zawodowa im. Jana Amosa Komeńskiego w Lesznie'), (42446, 'https://ror.org/02vp8jr44', 'es', 1, 'https://ror.org/02vp8jr44 Ministerio de Ciencia y Tecnología'), (42447, 'https://ror.org/02vt55417', 'en', 1, 'https://ror.org/02vt55417 Blessing-Rieman College of Nursing'), (42448, 'https://ror.org/02vtmt724', 'en', 1, 'https://ror.org/02vtmt724 Institute of Synthetic Polymeric Materials Федеральное государственное бюджетное учреждение науки Институт синтетических полимерных материалов им.Н.С.Ениколопова Российской академии наук'), (42449, 'https://ror.org/02vv5t298', 'no_lang_code', 1, 'https://ror.org/02vv5t298 Newcrest Mining (Australia)'), (42450, 'https://ror.org/02vvfyx50', 'en', 1, 'https://ror.org/02vvfyx50 Rich Mountain Community College'), (42451, 'https://ror.org/02vw5s254', 'en', 1, 'https://ror.org/02vw5s254 Ministry of Unification 통일부'), (42452, 'https://ror.org/02vxhys40', 'en', 1, 'https://ror.org/02vxhys40 Africa Groundwater Network'), (42453, 'https://ror.org/02vz1de40', 'no_lang_code', 1, 'https://ror.org/02vz1de40 Canegrowers (Australia)'), (42454, 'https://ror.org/02w20cr42', 'en', 1, 'https://ror.org/02w20cr42 Nebraska Space Grant Consortium'), (42455, 'https://ror.org/02w2mvp24', 'en', 1, 'https://ror.org/02w2mvp24 Białystok Institute of Cosmetology and Healthcare Wyższa Szkoła Kosmetologii i Ochrony Zdrowia w Białymstoku'), (42456, 'https://ror.org/02w6yjb02', 'no_lang_code', 1, 'https://ror.org/02w6yjb02 Advanced Fiber Technologies (United States)'), (42457, 'https://ror.org/02w7f3w92', 'no_lang_code', 1, 'https://ror.org/02w7f3w92 Microsoft Research (India)'), (42458, 'https://ror.org/02w9pf714', 'en', 1, 'https://ror.org/02w9pf714 Saint Vincent Seminary'), (42459, 'https://ror.org/02wawqt17', 'no_lang_code', 1, 'https://ror.org/02wawqt17 Scope e-Knowledge Center (India)'), (42460, 'https://ror.org/02wb4dv66', 'en', 1, 'https://ror.org/02wb4dv66 Ohio Arts Council'), (42461, 'https://ror.org/02wben378', 'no_lang_code', 1, 'https://ror.org/02wben378 Imtek (Russia) Имтек'), (42462, 'https://ror.org/02wbgn345', 'en', 1, 'https://ror.org/02wbgn345 Newman Theological College'), (42463, 'https://ror.org/02wbs0d88', 'en', 1, 'https://ror.org/02wbs0d88 Texas Water Development Board'), (42464, 'https://ror.org/02wcz1374', 'en', 1, 'https://ror.org/02wcz1374 Arthritis Australia'), (42465, 'https://ror.org/02wg74v35', 'en', 1, 'https://ror.org/02wg74v35 Korea District Heating Corporation'), (42466, 'https://ror.org/02wjedj15', 'en', 1, 'https://ror.org/02wjedj15 Kerala School of Mathematics'), (42467, 'https://ror.org/02wk65538', 'en', 1, 'https://ror.org/02wk65538 Delaware College of Art and Design'), (42468, 'https://ror.org/02wmtxq23', 'en', 1, 'https://ror.org/02wmtxq23 Central Institute for Research on Buffaloes'), (42469, 'https://ror.org/02wn2b621', 'en', 1, 'https://ror.org/02wn2b621 College of the Resurrection'), (42470, 'https://ror.org/02wq22q69', 'en', 1, 'https://ror.org/02wq22q69 Nehru Trust'), (42471, 'https://ror.org/02wrr2w36', 'en', 1, 'https://ror.org/02wrr2w36 Ministry of Community Development, Mother and Child Health'), (42472, 'https://ror.org/02wstxe29', 'en', 1, 'https://ror.org/02wstxe29 Chinese Academy of Personnel Science 中国人事科学研究院'), (42473, 'https://ror.org/02wtdws21', 'en', 1, 'https://ror.org/02wtdws21 Kagawa Junior College 香川短期大学'), (42474, 'https://ror.org/02wtecw28', 'de', 1, 'https://ror.org/02wtecw28 Sparkassen-Finanzgruppe'), (42475, 'https://ror.org/02wvb2a30', 'en', 1, 'https://ror.org/02wvb2a30 Nordland Research Institute Nordlandsforskning'), (42476, 'https://ror.org/02wvzb321', 'en', 1, 'https://ror.org/02wvzb321 Action for Agricultural Renewal in Maharashtra'), (42477, 'https://ror.org/02wyv8x71', 'en', 1, 'https://ror.org/02wyv8x71 San Francisco Theological Seminary'), (42478, 'https://ror.org/02wzg6d13', 'en', 1, 'https://ror.org/02wzg6d13 Geological Survey of Japan 地質調査総合センター'), (42479, 'https://ror.org/02wzm7472', 'no_lang_code', 1, 'https://ror.org/02wzm7472 APEX Technologies (France)'), (42480, 'https://ror.org/02x0mcx56', 'pt', 1, 'https://ror.org/02x0mcx56 Prefeitura Municipal do Natal'), (42481, 'https://ror.org/02x1t0474', 'en', 1, 'https://ror.org/02x1t0474 Seth Research Foundation'), (42482, 'https://ror.org/02x26d386', 'no_lang_code', 1, 'https://ror.org/02x26d386 Flora Pyramids Paper Mills'), (42483, 'https://ror.org/02x2gpf88', 'en', 1, 'https://ror.org/02x2gpf88 University of Northwestern Ohio'), (42484, 'https://ror.org/02x2rzn44', 'en', 1, 'https://ror.org/02x2rzn44 Playford Trust'), (42485, 'https://ror.org/02x351n42', 'en', 1, 'https://ror.org/02x351n42 Advanced Materials and Processes Research Institute प्रगत पदार्थ तथा प्रक्रम अनुसन्धान संस्थान'), (42486, 'https://ror.org/02x3mf211', 'en', 1, 'https://ror.org/02x3mf211 Institute of Computational Technologies Институт вычислительных технологий СО РАН'), (42487, 'https://ror.org/02x50w080', 'no_lang_code', 1, 'https://ror.org/02x50w080 Interacoustics (Denmark)'), (42488, 'https://ror.org/02x5pe091', 'no_lang_code', 1, 'https://ror.org/02x5pe091 SCG Chemicals (Thailand)'), (42489, 'https://ror.org/02x5rws94', 'en', 1, 'https://ror.org/02x5rws94 Southern African Research and Innovation Management Association'), (42490, 'https://ror.org/02x6jsy35', 'en', 1, 'https://ror.org/02x6jsy35 Instituto Nacional de Genética Médica Populacional National Institute on Population Medical Genetics'), (42491, 'https://ror.org/02x9c2945', 'no_lang_code', 1, 'https://ror.org/02x9c2945 Alliance One Tobacco (Malawi)'), (42492, 'https://ror.org/02x9fc857', 'en', 1, 'https://ror.org/02x9fc857 G Беляков Тихоокеанский институт биоорганической химии Pacific Institute of Bioorganic Chemistry. GB Elyakova Far Eastern Branch of the Russian Academy of Sciences'), (42493, 'https://ror.org/02xbxcz59', 'en', 1, 'https://ror.org/02xbxcz59 New Hampshire Institute of Art'), (42494, 'https://ror.org/02xcgb468', 'en', 1, 'https://ror.org/02xcgb468 R.O.C Military Academy 中華民國陸軍軍官學校'), (42495, 'https://ror.org/02xfgyt86', 'no_lang_code', 1, 'https://ror.org/02xfgyt86 SinoGenoMax (China) 北京诺赛基因组研究中心有限公司'); INSERT INTO `rors` VALUES (42496, 'https://ror.org/02xh2ys40', 'en', 1, 'https://ror.org/02xh2ys40 National Research Centre on Camel राष्ट्रीय उष्ट्र अनुसंधान केन्द्र'), (42497, 'https://ror.org/02xhv2402', 'en', 1, 'https://ror.org/02xhv2402 Trinity Bible College'), (42498, 'https://ror.org/02xj62754', 'en', 1, 'https://ror.org/02xj62754 Seoul School of Integrated Sciences and Technologies 서울과학종합대학원대학교'), (42499, 'https://ror.org/02xkgba40', 'en', 1, 'https://ror.org/02xkgba40 Theodore Roosevelt High School'), (42500, 'https://ror.org/02xm1rf97', 'en', 1, 'https://ror.org/02xm1rf97 National Climate Change Adaptation Research Facility'), (42501, 'https://ror.org/02xm2e940', 'pl', 1, 'https://ror.org/02xm2e940 Collegium Mazovia Innowacyjna Szkoła Wyższa'), (42502, 'https://ror.org/02xmv6y90', 'no_lang_code', 1, 'https://ror.org/02xmv6y90 Genetech (Sri Lanka)'), (42503, 'https://ror.org/02xq6cs86', 'no_lang_code', 1, 'https://ror.org/02xq6cs86 Naskeo Environnement (France)'), (42504, 'https://ror.org/02xq98350', 'en', 1, 'https://ror.org/02xq98350 Coffee Research Institute'), (42505, 'https://ror.org/02xqs5h32', 'no_lang_code', 1, 'https://ror.org/02xqs5h32 Antrix Corporation (India)'), (42506, 'https://ror.org/02xv1yp72', 'en', 1, 'https://ror.org/02xv1yp72 All-Russian Scientific Research Institute of Radiology and AgroEcology All-русский научно-исследовательский институт радиологии и экологии'), (42507, 'https://ror.org/02xwsbr93', 'en', 1, 'https://ror.org/02xwsbr93 Weatherford College'), (42508, 'https://ror.org/02y5xdy12', 'en', 1, 'https://ror.org/02y5xdy12 Graduate School for the Creation of New Photonics Industries 光産業創成大学院大学'), (42509, 'https://ror.org/02y7dq096', 'no_lang_code', 1, 'https://ror.org/02y7dq096 Mclean Media (United States)'), (42510, 'https://ror.org/02y85x967', 'no_lang_code', 1, 'https://ror.org/02y85x967 Otter Tail Corporation (United States)'), (42511, 'https://ror.org/02yd5qy74', 'no_lang_code', 1, 'https://ror.org/02yd5qy74 Encapson (Netherlands)'), (42512, 'https://ror.org/02yd7p033', 'fr', 1, 'https://ror.org/02yd7p033 Institut Togolais de Recherche Agronomique'), (42513, 'https://ror.org/02yec8h85', 'en', 1, 'https://ror.org/02yec8h85 Urban College of Boston'), (42514, 'https://ror.org/02yf3ey12', 'en', 1, 'https://ror.org/02yf3ey12 Department of Culture and the Arts'), (42515, 'https://ror.org/02ygqdd77', 'en', 1, 'https://ror.org/02ygqdd77 Centre for Forest Ecology and Productivity Центр по проблемам экологии и продуктивности лесов РАН'), (42516, 'https://ror.org/02yj8av48', 'en', 1, 'https://ror.org/02yj8av48 National Dairy Development Board'), (42517, 'https://ror.org/02yjx5e75', 'en', 1, 'https://ror.org/02yjx5e75 Beijing Xuanwu Traditional Chinese Medicine Hospital 北京市宣武中医医院'), (42518, 'https://ror.org/02yk6f609', 'pt', 1, 'https://ror.org/02yk6f609 Secretaria de Estado da Ciência, Tecnologia e Inovação'), (42519, 'https://ror.org/02ypmq936', 'en', 1, 'https://ror.org/02ypmq936 Caritas Nigeria'), (42520, 'https://ror.org/02ypzv613', 'en', 1, 'https://ror.org/02ypzv613 Military Geographical Institute Vojnogeografski institut'), (42521, 'https://ror.org/02yqzaa38', 'fr', 1, 'https://ror.org/02yqzaa38 Haute École des Arts du Rhin'), (42522, 'https://ror.org/02yrcbg49', 'en', 1, 'https://ror.org/02yrcbg49 Government College for Women Anantnag گورنمنٹ کالج خواتین اننت ناگ'), (42523, 'https://ror.org/02yt5we53', 'no_lang_code', 1, 'https://ror.org/02yt5we53 Human Factors International (India)'), (42524, 'https://ror.org/02ywnmf80', 'en', 1, 'https://ror.org/02ywnmf80 French Institute for Research in Africa'), (42525, 'https://ror.org/02ywp9g98', 'fr', 1, 'https://ror.org/02ywp9g98 Commissariat Général à l''Investissement'), (42526, 'https://ror.org/02yxawe84', 'en', 1, 'https://ror.org/02yxawe84 Integrated Community Based Initiatives'), (42527, 'https://ror.org/02z1v3h34', 'en', 1, 'https://ror.org/02z1v3h34 Pawel Wlodkowic University College in Płock Szkola Wyzsza im. Pawla Wlodkowica w Plocku'), (42528, 'https://ror.org/02z1x9d19', 'no_lang_code', 1, 'https://ror.org/02z1x9d19 Celfinet (Portugal)'), (42529, 'https://ror.org/02z2wec49', 'pt', 1, 'https://ror.org/02z2wec49 Instituto Nacional de Ciência e Tecnologia em Eletrônica Orgânica'), (42530, 'https://ror.org/02z493v75', 'en', 1, 'https://ror.org/02z493v75 Owensboro Community and Technical College'), (42531, 'https://ror.org/02z4faz68', 'no_lang_code', 1, 'https://ror.org/02z4faz68 Eisai (South Korea) 한국에자이'), (42532, 'https://ror.org/02z64ft38', 'no_lang_code', 1, 'https://ror.org/02z64ft38 Behavior Imaging Solutions (United States)'), (42533, 'https://ror.org/02z8rt196', 'en', 1, 'https://ror.org/02z8rt196 National Center for Technology Management'), (42534, 'https://ror.org/02zcvj403', 'it', 1, 'https://ror.org/02zcvj403 Conservatorio di Musica Girolamo Frescobaldi'), (42535, 'https://ror.org/02zdrev82', 'pt', 1, 'https://ror.org/02zdrev82 Instituto Nacional de Ciência e Tecnologia de Processos Redox em Biomedicina'), (42536, 'https://ror.org/02ze2t980', 'en', 1, 'https://ror.org/02ze2t980 Russian Association of Indigenous Peoples of the North Ассоциация коренных, малочисленных народов Севера, Сибири и Дальнего Востока Российской Федерации'), (42537, 'https://ror.org/02zfe4c02', 'en', 1, 'https://ror.org/02zfe4c02 Dundee and Angus College'), (42538, 'https://ror.org/02zj71846', 'en', 1, 'https://ror.org/02zj71846 Holy Cross University'), (42539, 'https://ror.org/02zjd4750', 'en', 1, 'https://ror.org/02zjd4750 Zimbabwe National Water Authority'), (42540, 'https://ror.org/02zjtq409', 'en', 1, 'https://ror.org/02zjtq409 Russian Railways Российские железные дороги'), (42541, 'https://ror.org/02zjyrw66', 'en', 1, 'https://ror.org/02zjyrw66 Niskamoon Corporation'), (42542, 'https://ror.org/02zkr7r20', 'it', 1, 'https://ror.org/02zkr7r20 Conservatorio di Musica Luigi Cherubini'), (42543, 'https://ror.org/02zm5j810', 'en', 1, 'https://ror.org/02zm5j810 National Institute of Science, Technology and Development Studies राष्ट्रीय विज्ञान, प्रौद्योगिकी और विकास अध्ययन संस्थान'), (42544, 'https://ror.org/02zmh8h66', 'es', 1, 'https://ror.org/02zmh8h66 Instituto Tecnológico de León'), (42545, 'https://ror.org/02zndy744', 'en', 1, 'https://ror.org/02zndy744 Ohio Business College'), (42546, 'https://ror.org/02zp2tc18', 'en', 1, 'https://ror.org/02zp2tc18 Institute of Solution Chemistry Институт химии растворов им. Г.А. Крестова Российской академии наук'), (42547, 'https://ror.org/02zpajz15', 'en', 1, 'https://ror.org/02zpajz15 Bates Technical College'), (42548, 'https://ror.org/02zwsc421', 'fr', 1, 'https://ror.org/02zwsc421 École Supérieure des Arts Saint-Luc de Liège'), (42549, 'https://ror.org/02zxpkz02', 'sl', 1, 'https://ror.org/02zxpkz02 School Centre Celje, Šolski center Celje'), (42550, 'https://ror.org/02zy6dj62', 'no_lang_code', 1, 'https://ror.org/02zy6dj62 Njala University'), (42551, 'https://ror.org/02zzkft25', 'no_lang_code', 1, 'https://ror.org/02zzkft25 Shigakukan University 志學館大学'), (42552, 'https://ror.org/02zztqs66', 'en', 1, 'https://ror.org/02zztqs66 305 Hospital of People Liberation Army 中国人民解放军第三0五医院'), (42553, 'https://ror.org/02zzvms95', 'en', 1, 'https://ror.org/02zzvms95 Northern Lakes College'), (42554, 'https://ror.org/0300bh485', 'en', 1, 'https://ror.org/0300bh485 Clarence Valley Council'), (42555, 'https://ror.org/03024dz78', 'en', 1, 'https://ror.org/03024dz78 Vermont Space Grant Consortium'), (42556, 'https://ror.org/0302gfc36', 'en', 1, 'https://ror.org/0302gfc36 Southern Crescent Technical College'), (42557, 'https://ror.org/03038ad20', 'en', 1, 'https://ror.org/03038ad20 South Texas College'), (42558, 'https://ror.org/0303pm905', 'en', 1, 'https://ror.org/0303pm905 Santa Clara County Library District'), (42559, 'https://ror.org/0305bn856', 'en', 1, 'https://ror.org/0305bn856 Changjiang Water Resources Commission 长江水利委员会水文局'), (42560, 'https://ror.org/0305m4448', 'en', 1, 'https://ror.org/0305m4448 Diamond and Precious Metal Geology Institute Институт геологии алмаза и благородных металлов СО РАН'), (42561, 'https://ror.org/0306bn619', 'en', 1, 'https://ror.org/0306bn619 South Downs College'), (42562, 'https://ror.org/0306dg290', 'en', 1, 'https://ror.org/0306dg290 Nash Community College'), (42563, 'https://ror.org/03080tp23', 'fr', 1, 'https://ror.org/03080tp23 Direction de la Météorologie Nationale'), (42564, 'https://ror.org/0308cf074', 'no_lang_code', 1, 'https://ror.org/0308cf074 Cosmos Limited'), (42565, 'https://ror.org/030ag6b74', 'en', 1, 'https://ror.org/030ag6b74 Meenakshi Medical College Hospital and Research Institute'), (42566, 'https://ror.org/030bm8r25', 'pl', 1, 'https://ror.org/030bm8r25 Uczelnia Jańskiego w Łomży'), (42567, 'https://ror.org/030bz9353', 'sl', 1, 'https://ror.org/030bz9353 Šolski Center Postojna'), (42568, 'https://ror.org/030dhdf69', 'en', 1, 'https://ror.org/030dhdf69 Biotechnologie Institut Thurgau Biotechnology Institute Thurgau'), (42569, 'https://ror.org/030dn1w49', 'en', 1, 'https://ror.org/030dn1w49 Hartlepool College of Further Education'), (42570, 'https://ror.org/030hk6x09', 'en', 1, 'https://ror.org/030hk6x09 Institute of Cosmophysical Research and Radio Wave Propagation Институт космофизических исследований и распространения радиоволн'), (42571, 'https://ror.org/030jm0n16', 'fr', 1, 'https://ror.org/030jm0n16'), (42572, 'https://ror.org/030ks9p42', 'en', 1, 'https://ror.org/030ks9p42 National Directorate of Geology'), (42573, 'https://ror.org/030me6k41', 'es', 1, 'https://ror.org/030me6k41 Instituto Universitario General Gutiérrez Mellado'), (42574, 'https://ror.org/030ms0x66', 'es', 1, 'https://ror.org/030ms0x66 Hospital Universitario Dr José Eleuterio Gonzalez'), (42575, 'https://ror.org/030n1xr75', 'pt', 1, 'https://ror.org/030n1xr75 Escola Básica Integrada da Horta'), (42576, 'https://ror.org/030pa4076', 'en', 1, 'https://ror.org/030pa4076 Summit Pacific College'), (42577, 'https://ror.org/030r69d22', 'no_lang_code', 1, 'https://ror.org/030r69d22 Duke Energy (United States)'), (42578, 'https://ror.org/030rrcn92', 'no_lang_code', 1, 'https://ror.org/030rrcn92 TCG Lifesciences (India)'), (42579, 'https://ror.org/030sdwr92', 'en', 1, 'https://ror.org/030sdwr92 Hochschule für Gestaltung Offenbach University of Art and Design Offenbach'), (42580, 'https://ror.org/030y35h40', 'en', 1, 'https://ror.org/030y35h40 Bowel and Cancer Research'), (42581, 'https://ror.org/030za3c40', 'fr', 1, 'https://ror.org/030za3c40 Laboratoire des Systèmes Perceptifs'), (42582, 'https://ror.org/0310kd428', 'en', 1, 'https://ror.org/0310kd428 Pakistan Army پاک فوج'), (42583, 'https://ror.org/0311qq620', 'pt', 1, 'https://ror.org/0311qq620 Santa Casa da Misericórdia de Almeirim'), (42584, 'https://ror.org/0311w8j32', 'en', 1, 'https://ror.org/0311w8j32 Guangxi Academy of Fishery Sciences 广西水产科学研究院'), (42585, 'https://ror.org/0312t3r96', 'en', 1, 'https://ror.org/0312t3r96 Newbold College of Higher Education'), (42586, 'https://ror.org/0312xab44', 'es', 1, 'https://ror.org/0312xab44 Servicio Canario de la Salud'), (42587, 'https://ror.org/03134gf68', 'en', 1, 'https://ror.org/03134gf68 Image Processing Systems Institute учреждение науки Институт систем обработки изображений'), (42588, 'https://ror.org/0314ecq26', 'es', 1, 'https://ror.org/0314ecq26 Centro Nacional de Investigación y Desarrollo Tecnológico'), (42589, 'https://ror.org/031603425', 'no_lang_code', 1, 'https://ror.org/031603425 Home Depot (United States)'), (42590, 'https://ror.org/03163vt79', 'en', 1, 'https://ror.org/03163vt79 Moultrie Technical College'), (42591, 'https://ror.org/03192vt15', 'en', 1, 'https://ror.org/03192vt15 Ataxia UK'), (42592, 'https://ror.org/031a9h652', 'en', 1, 'https://ror.org/031a9h652 Kementerian Kebudayaan, Masyarakat dan Belia Ministry of Culture, Community and Youth கலாசார, சமூக, இளையர்துறை அமைச்சு 文化、社区及青年部'), (42593, 'https://ror.org/031awfc58', 'en', 1, 'https://ror.org/031awfc58 Lake Victoria Fisheries Organization'), (42594, 'https://ror.org/031cmny56', 'en', 1, 'https://ror.org/031cmny56 Ethiopian Agricultural Transformation Agency'), (42595, 'https://ror.org/031dhd775', 'en', 1, 'https://ror.org/031dhd775 Utica School of Commerce'), (42596, 'https://ror.org/031ew8w25', 'en', 1, 'https://ror.org/031ew8w25 Milwaukee Institute of Art & Design'), (42597, 'https://ror.org/031gd3q51', 'it', 1, 'https://ror.org/031gd3q51 Conservatorio di Musica Giacomo Puccini'), (42598, 'https://ror.org/031jzbb03', 'en', 1, 'https://ror.org/031jzbb03 Chinese People''s Armed Police Force Engineering University 中国人民武装警察部队工程大学'), (42599, 'https://ror.org/031m3kw45', 'en', 1, 'https://ror.org/031m3kw45 Alexander Graham Bell Association for the Deaf and Hard of Hearing'), (42600, 'https://ror.org/031rnv444', 'no_lang_code', 1, 'https://ror.org/031rnv444 Goldman Sachs (United States)'), (42601, 'https://ror.org/031ve8169', 'fr', 1, 'https://ror.org/031ve8169 École de Formation Professionnelle des Barreaux de la Cour d''Appel de Paris'), (42602, 'https://ror.org/031vfy029', 'fr', 1, 'https://ror.org/031vfy029 Centre de la Méditerranée Moderne et Contemporaine'), (42603, 'https://ror.org/031xz8a15', 'en', 1, 'https://ror.org/031xz8a15 West New York School District'), (42604, 'https://ror.org/031ypdv26', 'en', 1, 'https://ror.org/031ypdv26 Intercollegiate Studies Institute'), (42605, 'https://ror.org/031ypg304', 'en', 1, 'https://ror.org/031ypg304 International Space University'), (42606, 'https://ror.org/0323nsw79', 'en', 1, 'https://ror.org/0323nsw79 Citizens for Justice'), (42607, 'https://ror.org/03264me25', 'pt', 1, 'https://ror.org/03264me25 Associação de Municípios do Vale do Sousa'), (42608, 'https://ror.org/0326gsy75', 'en', 1, 'https://ror.org/0326gsy75 County Administrative Board Länsstyrelsen Östergötland'), (42609, 'https://ror.org/0328b5c57', 'fr', 1, 'https://ror.org/0328b5c57 Laboratoire d''Études et de Recherche sur les Dynamiques Sociales et le Développement Local'), (42610, 'https://ror.org/0328trt29', 'pt', 1, 'https://ror.org/0328trt29 Faculdade Sumaré'), (42611, 'https://ror.org/032bw1116', 'en', 1, 'https://ror.org/032bw1116 Hunan Women''S University 湖南女子学院'), (42612, 'https://ror.org/032c96a22', 'en', 1, 'https://ror.org/032c96a22 Turk Silahli Kuvvetlerini Guclendirme Vakfi Turkish Armed Forces Foundation'), (42613, 'https://ror.org/032e4ps38', 'en', 1, 'https://ror.org/032e4ps38 Kathmandu College of Management'), (42614, 'https://ror.org/032gm3e90', 'en', 1, 'https://ror.org/032gm3e90 Michigan State Housing Development Authority'), (42615, 'https://ror.org/032j6ge54', 'en', 1, 'https://ror.org/032j6ge54 Recycled Materials Resource Center'), (42616, 'https://ror.org/032k9nq85', 'no_lang_code', 1, 'https://ror.org/032k9nq85 Magbro Healthcare (India)'), (42617, 'https://ror.org/032sa1p36', 'pt', 1, 'https://ror.org/032sa1p36 Serviço Social da Indústria de Santa Catarina'), (42618, 'https://ror.org/032sm9x52', 'no_lang_code', 1, 'https://ror.org/032sm9x52 Osta Bio Technologies (Canada)'), (42619, 'https://ror.org/032tek884', 'en', 1, 'https://ror.org/032tek884 Medical Letter'), (42620, 'https://ror.org/032xgdx47', 'en', 1, 'https://ror.org/032xgdx47 Citigroup'), (42621, 'https://ror.org/0331rkj73', 'en', 1, 'https://ror.org/0331rkj73 Republic of Korea Army 대한민국 육군'), (42622, 'https://ror.org/0333mmt30', 'en', 1, 'https://ror.org/0333mmt30 Energy, Environment and Development Network for Africa'), (42623, 'https://ror.org/0335kqk33', 'en', 1, 'https://ror.org/0335kqk33 Research Institute of Highway 交通运输部公路科学研究院'), (42624, 'https://ror.org/0335qtz31', 'en', 1, 'https://ror.org/0335qtz31 Instituto de Estudios Superiores de Tamaulipas Tamaulipas Institute of Higher Education'), (42625, 'https://ror.org/0338hg181', 'pt', 1, 'https://ror.org/0338hg181 Confraria de Santa Luzia'), (42626, 'https://ror.org/033a3s432', 'en', 1, 'https://ror.org/033a3s432 University of Occupational Safety Management in Katowice'), (42627, 'https://ror.org/033becj92', 'en', 1, 'https://ror.org/033becj92 National Operating Committee on Standards for Athletic Equipment'), (42628, 'https://ror.org/033c4qc49', 'en', 1, 'https://ror.org/033c4qc49 Niuvanniemi Hospital Nuvanniemen Sairala'), (42629, 'https://ror.org/033ca2d23', 'en', 1, 'https://ror.org/033ca2d23 Institute of World Economics and Politics 中国社会科学院世界经济与政治研究所'), (42630, 'https://ror.org/033cbzv42', 'en', 1, 'https://ror.org/033cbzv42 Institute of Plasma Physics 中国科学院等离子体物理研究所'), (42631, 'https://ror.org/033d2fn04', 'en', 1, 'https://ror.org/033d2fn04 Korean Society of Speech Sciences'), (42632, 'https://ror.org/033d3q980', 'fr', 1, 'https://ror.org/033d3q980 Eurostat, Eurostat – Statistiques européennes Statistische Amt der Europäischen Union'), (42633, 'https://ror.org/033d6zz21', 'en', 1, 'https://ror.org/033d6zz21 McCormick Theological Seminary'), (42634, 'https://ror.org/033e57h61', 'en', 1, 'https://ror.org/033e57h61 Manhattan School of Music'), (42635, 'https://ror.org/033hftr56', 'pl', 1, 'https://ror.org/033hftr56 Wyższa Szkoła Zdrowia Urody i Edukacji'), (42636, 'https://ror.org/033jaw121', 'en', 1, 'https://ror.org/033jaw121 College of Intensive Care Medicine'), (42637, 'https://ror.org/033jd5r25', 'de', 1, 'https://ror.org/033jd5r25 Technische Hochschule Georg Agricola'), (42638, 'https://ror.org/033n2z030', 'it', 1, 'https://ror.org/033n2z030 Conservatorio di Musica Niccolò Paganini'), (42639, 'https://ror.org/033nebn40', 'en', 1, 'https://ror.org/033nebn40 Lenape Regional High School District'), (42640, 'https://ror.org/033r52n02', 'en', 1, 'https://ror.org/033r52n02 Pennsylvania Sea Grant'), (42641, 'https://ror.org/033sn5p83', 'en', 1, 'https://ror.org/033sn5p83 Gates Cambridge Trust'), (42642, 'https://ror.org/033sxkx41', 'en', 1, 'https://ror.org/033sxkx41 Office of the Civil Service Commission สำนักงานคณะกรรมการข้าราชการพลเรือน'), (42643, 'https://ror.org/033wswd35', 'en', 1, 'https://ror.org/033wswd35 Conservatoire royal de Bruxelles Royal Conservatory of Brussels'), (42644, 'https://ror.org/033zy4a51', 'en', 1, 'https://ror.org/033zy4a51 Center for Enabling New Technologies Through Catalysis'), (42645, 'https://ror.org/0340xvs51', 'en', 1, 'https://ror.org/0340xvs51 China National Administration of Coal Geology'), (42646, 'https://ror.org/0341wf912', 'en', 1, 'https://ror.org/0341wf912 Safari Club International'), (42647, 'https://ror.org/0343ncx27', 'en', 1, 'https://ror.org/0343ncx27 Scottish School of Christian Mission'), (42648, 'https://ror.org/0344x6030', 'en', 1, 'https://ror.org/0344x6030 Institute of Experimental Medicine Федеральное государственное бюджетное научное учреждение Институт экспериментальной медицины'), (42649, 'https://ror.org/03455j977', 'en', 1, 'https://ror.org/03455j977 Fraser Institute'), (42650, 'https://ror.org/0347pb070', 'ro', 1, 'https://ror.org/0347pb070 Camera de Comerț Industrie și Agricultură Timișoara'), (42651, 'https://ror.org/0348r9089', 'no_lang_code', 1, 'https://ror.org/0348r9089 Beginning (Bangladesh)'), (42652, 'https://ror.org/034bqzm84', 'no_lang_code', 1, 'https://ror.org/034bqzm84 Adecco (Switzerland)'), (42653, 'https://ror.org/034e1cb35', 'en', 1, 'https://ror.org/034e1cb35 Information-Technology Promotion Agency 独立行政法人情報処理推進機構'), (42654, 'https://ror.org/034e5n787', 'no_lang_code', 1, 'https://ror.org/034e5n787 Volkswagen Group (United States)'), (42655, 'https://ror.org/034fab991', 'en', 1, 'https://ror.org/034fab991 Eastern West Virginia Community and Technical College'), (42656, 'https://ror.org/034ffw198', 'no_lang_code', 1, 'https://ror.org/034ffw198 Rayat Shikshan Sanstha'), (42657, 'https://ror.org/034kb7s93', 'no_lang_code', 1, 'https://ror.org/034kb7s93 Tasly Holding Group (China)'), (42658, 'https://ror.org/034n3k032', 'no_lang_code', 1, 'https://ror.org/034n3k032 Pikitup'), (42659, 'https://ror.org/034n9j029', 'en', 1, 'https://ror.org/034n9j029 National Blood Service Zimbabwe'), (42660, 'https://ror.org/034pbde03', 'en', 1, 'https://ror.org/034pbde03 Maharaja Engineering College'), (42661, 'https://ror.org/034qvhk73', 'en', 1, 'https://ror.org/034qvhk73 Social Integration State Agency Sociālās Integrācijas Valsts Aģentūrā'), (42662, 'https://ror.org/034rwyq63', 'en', 1, 'https://ror.org/034rwyq63 GSL Medical College & General Hospital'), (42663, 'https://ror.org/034sd6c34', 'en', 1, 'https://ror.org/034sd6c34 Development Aid from People to People in Zambia'), (42664, 'https://ror.org/034vwwk41', 'fr', 1, 'https://ror.org/034vwwk41 Goma Volcanological Observatory Observatoire Volcanologique de Goma'), (42665, 'https://ror.org/034xvnf25', 'en', 1, 'https://ror.org/034xvnf25 Eisenhower Fellowships'), (42666, 'https://ror.org/034y4c446', 'no_lang_code', 1, 'https://ror.org/034y4c446 Epistar (Taiwan)'), (42667, 'https://ror.org/034yr0a74', 'no_lang_code', 1, 'https://ror.org/034yr0a74 Royal Caribbean Cruises (United States)'), (42668, 'https://ror.org/03508em42', 'no_lang_code', 1, 'https://ror.org/03508em42 Graftys (France)'), (42669, 'https://ror.org/0351a1c74', 'pt', 1, 'https://ror.org/0351a1c74 Faculdade Novos Horizontes'), (42670, 'https://ror.org/0352adn16', 'en', 1, 'https://ror.org/0352adn16 American College of Dubai'), (42671, 'https://ror.org/0352dma55', 'en', 1, 'https://ror.org/0352dma55 West Kentucky Community and Technical College'), (42672, 'https://ror.org/03538jp08', 'no_lang_code', 1, 'https://ror.org/03538jp08 AbbVie (Germany)'), (42673, 'https://ror.org/0354a0368', 'en', 1, 'https://ror.org/0354a0368 Sahelian Solutions Foundation'), (42674, 'https://ror.org/0354r6c10', 'en', 1, 'https://ror.org/0354r6c10 Oil Crops Research Institute 中国农业科学院油料作物研究所'), (42675, 'https://ror.org/0354taf69', 'en', 1, 'https://ror.org/0354taf69 West African College of Physicians'), (42676, 'https://ror.org/03561p598', 'en', 1, 'https://ror.org/03561p598 Institute of Bio-Resources and Sustainable Development'), (42677, 'https://ror.org/035ccrh61', 'en', 1, 'https://ror.org/035ccrh61 Midwestern Baptist Theological Seminary'), (42678, 'https://ror.org/035ckv436', 'hr', 1, 'https://ror.org/035ckv436 Fakultet za Mediteranske Poslovne Studije'), (42679, 'https://ror.org/035dn9148', 'en', 1, 'https://ror.org/035dn9148 Baltic Methodist Theological Seminary'), (42680, 'https://ror.org/035dqf024', 'en', 1, 'https://ror.org/035dqf024 Agence Nationale pour la Maîtrise de l''Energie National Agency for Energy Management'), (42681, 'https://ror.org/035dsh769', 'en', 1, 'https://ror.org/035dsh769 Government of Gujarat'), (42682, 'https://ror.org/035e9j894', 'en', 1, 'https://ror.org/035e9j894 Teaching Learning & Research Initiative'), (42683, 'https://ror.org/035fpgr29', 'en', 1, 'https://ror.org/035fpgr29 Mission College'), (42684, 'https://ror.org/035fw1666', 'en', 1, 'https://ror.org/035fw1666 Good Shepherd College'), (42685, 'https://ror.org/035ghve61', 'hr', 1, 'https://ror.org/035ghve61 Veleučilište Velika Gorica'), (42686, 'https://ror.org/035h1xx45', 'en', 1, 'https://ror.org/035h1xx45 Yeshiva Ohr Elchonon Chabad West Coast Talmudical Seminary'), (42687, 'https://ror.org/035jc1316', 'de', 1, 'https://ror.org/035jc1316 Hessische Hochschule für Finanzen und Rechtspflege'), (42688, 'https://ror.org/035khbv71', 'en', 1, 'https://ror.org/035khbv71 Houston Graduate School of Theology'), (42689, 'https://ror.org/035rr9c26', 'en', 1, 'https://ror.org/035rr9c26 Institute of Developmental Physiology Институт возрастной физиологии'), (42690, 'https://ror.org/035sbxw24', 'no_lang_code', 1, 'https://ror.org/035sbxw24 21st Century Technologies (United States)'), (42691, 'https://ror.org/035xrsk97', 'fr', 1, 'https://ror.org/035xrsk97 Institut Régional d’Administration de Lille'), (42692, 'https://ror.org/035y1ap70', 'en', 1, 'https://ror.org/035y1ap70 Institute of Biology of Karelian Research Centre Институт биологии КарНЦ РАН'), (42693, 'https://ror.org/035y1v638', 'en', 1, 'https://ror.org/035y1v638 Baobab Health Trust'), (42694, 'https://ror.org/035zbbv42', 'en', 1, 'https://ror.org/035zbbv42 First Affiliated Hospital of Henan University of Science and Technology'), (42695, 'https://ror.org/0360y2h46', 'no_lang_code', 1, 'https://ror.org/0360y2h46 Illovo Sugar (South Africa)'), (42696, 'https://ror.org/03629ds51', 'no_lang_code', 1, 'https://ror.org/03629ds51 Springer Publishing Company (United States)'), (42697, 'https://ror.org/0362ttz08', 'en', 1, 'https://ror.org/0362ttz08 Center for Economic Research and Graduate Education – Economics Institute'), (42698, 'https://ror.org/0362x2g28', 'en', 1, 'https://ror.org/0362x2g28 Forestry Research Institute of Karelian Research Centre Институт леса КарНЦ'), (42699, 'https://ror.org/03660jk02', 'en', 1, 'https://ror.org/03660jk02 The Master''s Seminary'), (42700, 'https://ror.org/0366v8040', 'en', 1, 'https://ror.org/0366v8040 Central Soil Salinity Research Institute'), (42701, 'https://ror.org/03672y868', 'en', 1, 'https://ror.org/03672y868 Ministry for Foreign Affairs of Iceland Utanríkisráðuneytið'), (42702, 'https://ror.org/0367m1n91', 'de', 1, 'https://ror.org/0367m1n91 Hochschule Weserbergland'), (42703, 'https://ror.org/0367pw924', 'en', 1, 'https://ror.org/0367pw924 Lincoln College'), (42704, 'https://ror.org/036b4vb45', 'en', 1, 'https://ror.org/036b4vb45 Hong Kong Academy of Medicine'), (42705, 'https://ror.org/036bh3761', 'no_lang_code', 1, 'https://ror.org/036bh3761 Sonae (Portugal)'), (42706, 'https://ror.org/036czv220', 'no_lang_code', 1, 'https://ror.org/036czv220 Microchem (South Africa)'), (42707, 'https://ror.org/036ddx961', 'no_lang_code', 1, 'https://ror.org/036ddx961 ELITech Group (France)'), (42708, 'https://ror.org/036dqy506', 'no_lang_code', 1, 'https://ror.org/036dqy506 NuVasive (United States)'), (42709, 'https://ror.org/036e9v691', 'en', 1, 'https://ror.org/036e9v691 National Institution for Transforming India Aayog राष्ट्रीय भारत परिवर्तन संस्था'), (42710, 'https://ror.org/036f7qt17', 'de', 1, 'https://ror.org/036f7qt17 Fliedner Fachhochschule Düsseldorf University of Applied Sciences Fliedner Fachhochschule'), (42711, 'https://ror.org/036g8gs02', 'en', 1, 'https://ror.org/036g8gs02 Pearl River Hydraulic Research Institute 珠江水利委员会珠江水利科学研究院'), (42712, 'https://ror.org/036jj0x14', 'en', 1, 'https://ror.org/036jj0x14 Apiculture Science Institute of Jinlin province 吉林省养蜂科学研究所'), (42713, 'https://ror.org/036kj7q93', 'it', 1, 'https://ror.org/036kj7q93 Fondazione Lanza'), (42714, 'https://ror.org/036m22d48', 'en', 1, 'https://ror.org/036m22d48 Shandong Marine Resource and Environment Research Institute 山东省海洋资源与环境研究院'), (42715, 'https://ror.org/036nj8c41', 'en', 1, 'https://ror.org/036nj8c41 Healthcare in Sweden'), (42716, 'https://ror.org/036s7bw54', 'no_lang_code', 1, 'https://ror.org/036s7bw54 Cognizant (United States)'), (42717, 'https://ror.org/036vyg793', 'en', 1, 'https://ror.org/036vyg793 Korea Creative Content Agency'), (42718, 'https://ror.org/036y2y849', 'en', 1, 'https://ror.org/036y2y849 DellArte International School of Physical Theatre'), (42719, 'https://ror.org/036zvka13', 'en', 1, 'https://ror.org/036zvka13 Riga Technical College Rigas Tehniska Koledza'), (42720, 'https://ror.org/0370acc92', 'en', 1, 'https://ror.org/0370acc92 Fidmag Germanes Hospitalàries Fidmag Hermanas Hospitalarias Fidmag Sisters Hospitallers'), (42721, 'https://ror.org/0370tyv92', 'no_lang_code', 1, 'https://ror.org/0370tyv92 Hardik Fintrade (India)'), (42722, 'https://ror.org/0371xpz28', 'en', 1, 'https://ror.org/0371xpz28 Trinity Theological College'), (42723, 'https://ror.org/03728bb41', 'en', 1, 'https://ror.org/03728bb41 Direction Générale de l’interprétation Directorate-General for Interpretation Generaldirektion Dolmetschen'), (42724, 'https://ror.org/0373m1z21', 'no_lang_code', 1, 'https://ror.org/0373m1z21 IIDC (India)'), (42725, 'https://ror.org/0374drm04', 'it', 1, 'https://ror.org/0374drm04 Accademia di Belle Arti dell''Aquila'), (42726, 'https://ror.org/0374spr83', 'en', 1, 'https://ror.org/0374spr83 Unit for Research and Development of Information Products'), (42727, 'https://ror.org/03777v328', 'en', 1, 'https://ror.org/03777v328 African Center of Meteorological Application for Development'), (42728, 'https://ror.org/0377f1g25', 'es', 1, 'https://ror.org/0377f1g25 Instituto Tecnológico de Tepic'), (42729, 'https://ror.org/0379sy433', 'en', 1, 'https://ror.org/0379sy433 Energy Research Institute Федеральное государственное бюджетное учреждение науки Институт энергетических исследований Российской академии наук'), (42730, 'https://ror.org/037fek297', 'en', 1, 'https://ror.org/037fek297 Illinois Department of Children and Family Services'), (42731, 'https://ror.org/037gnvs23', 'en', 1, 'https://ror.org/037gnvs23 English Speaking Union'), (42732, 'https://ror.org/037gpje79', 'en', 1, 'https://ror.org/037gpje79 Colleges of Medicine of South Africa'), (42733, 'https://ror.org/037m1gz55', 'en', 1, 'https://ror.org/037m1gz55 Icelandic International Development Agency Próunarsamvinnustofnun Íslands'), (42734, 'https://ror.org/037mk9523', 'fr', 1, 'https://ror.org/037mk9523 École Supérieure d''Ingénieurs des Travaux de la Construction de Cachan'), (42735, 'https://ror.org/037mwns69', 'en', 1, 'https://ror.org/037mwns69 Centre for Operations Research and Training'), (42736, 'https://ror.org/037n46f49', 'en', 1, 'https://ror.org/037n46f49 Royal College of Pathologists'), (42737, 'https://ror.org/037pjhv41', 'en', 1, 'https://ror.org/037pjhv41 Craven College'), (42738, 'https://ror.org/037qtfe97', 'en', 1, 'https://ror.org/037qtfe97 Department of Arts and Culture'), (42739, 'https://ror.org/037r2ff59', 'no_lang_code', 1, 'https://ror.org/037r2ff59 Wells Fargo (United States)'), (42740, 'https://ror.org/037r51j35', 'en', 1, 'https://ror.org/037r51j35 Blue Ridge Community and Technical College'), (42741, 'https://ror.org/037rveh76', 'en', 1, 'https://ror.org/037rveh76 Bangladesh College of Physicians and Surgeons'), (42742, 'https://ror.org/037s01565', 'da', 1, 'https://ror.org/037s01565 Scleroseforeningen'), (42743, 'https://ror.org/037saaz25', 'en', 1, 'https://ror.org/037saaz25 Hibbing Community College'), (42744, 'https://ror.org/037tapg39', 'en', 1, 'https://ror.org/037tapg39 Kingston College'), (42745, 'https://ror.org/037tw3m02', 'en', 1, 'https://ror.org/037tw3m02 Montpellier Business School École Supérieure de Commerce de Montpellier'), (42746, 'https://ror.org/037w3ea30', 'no_lang_code', 1, 'https://ror.org/037w3ea30 WSO2 (Sri Lanka)'), (42747, 'https://ror.org/037ydwx27', 'en', 1, 'https://ror.org/037ydwx27 Urshan Graduate School of Theology'), (42748, 'https://ror.org/037yxaz30', 'en', 1, 'https://ror.org/037yxaz30 South Central College'), (42749, 'https://ror.org/037yznf56', 'en', 1, 'https://ror.org/037yznf56 Kementerian Sumber Asli dan Alam Sekitar Ministry of Natural Resources and Environment'), (42750, 'https://ror.org/037zdfv74', 'en', 1, 'https://ror.org/037zdfv74 Lyceum College'), (42751, 'https://ror.org/0380sxs47', 'en', 1, 'https://ror.org/0380sxs47 African Union of Public Transport'), (42752, 'https://ror.org/038339q73', 'en', 1, 'https://ror.org/038339q73 Krishak Bharati Cooperative'), (42753, 'https://ror.org/03836vq90', 'en', 1, 'https://ror.org/03836vq90 International Tropical Timber Organization'), (42754, 'https://ror.org/0384x6e13', 'no_lang_code', 1, 'https://ror.org/0384x6e13 Hetero Drugs (India)'), (42755, 'https://ror.org/0385qa794', 'en', 1, 'https://ror.org/0385qa794 European Council of International Schools'), (42756, 'https://ror.org/038716291', 'fr', 1, 'https://ror.org/038716291 Institut d''Urbanisme et d''Aménagement Régional'), (42757, 'https://ror.org/0387e6h74', 'no_lang_code', 1, 'https://ror.org/0387e6h74 Return on Intelligence (Latvia)'), (42758, 'https://ror.org/0387j8q89', 'pt', 1, 'https://ror.org/0387j8q89 Grupo Hospitalar Conceição'), (42759, 'https://ror.org/038d9tx28', 'no_lang_code', 1, 'https://ror.org/038d9tx28 Nile Valley Engineering (Egypt)'), (42760, 'https://ror.org/038e03x62', 'en', 1, 'https://ror.org/038e03x62 Supreme Prosecutors Office of the Republic of Korea 검찰청'), (42761, 'https://ror.org/038e20a83', 'en', 1, 'https://ror.org/038e20a83 Agro-Environmental Protection Institute 农业部环境保护科研监测所'), (42762, 'https://ror.org/038ejm451', 'en', 1, 'https://ror.org/038ejm451 World Federation for Mental Health'), (42763, 'https://ror.org/038fwdn76', 'en', 1, 'https://ror.org/038fwdn76 Hochschule für Angewandtes Management University of Applied Management'), (42764, 'https://ror.org/038gsqt29', 'hr', 1, 'https://ror.org/038gsqt29 Visoka Škola za Informacijske Tehnologije Zagreb'), (42765, 'https://ror.org/038m0zy23', 'no_lang_code', 1, 'https://ror.org/038m0zy23 Guavus (India)'), (42766, 'https://ror.org/038nxyh73', 'en', 1, 'https://ror.org/038nxyh73 Great Lakes Institute of Management'), (42767, 'https://ror.org/038pzr527', 'en', 1, 'https://ror.org/038pzr527 Early Learning Coalition of Miami Dade Monroe'), (42768, 'https://ror.org/038qjap85', 'en', 1, 'https://ror.org/038qjap85 Gambling Awareness Nova Scotia'), (42769, 'https://ror.org/038rpb237', 'en', 1, 'https://ror.org/038rpb237 Directorate of Groundnut Research मूँगफली अनुसंधान निदेशालय'), (42770, 'https://ror.org/038svqn12', 'pl', 1, 'https://ror.org/038svqn12 Wyższa Szkoła Zarządzania i Przedsiębiorczości'), (42771, 'https://ror.org/038ta1n82', 'en', 1, 'https://ror.org/038ta1n82 South Essex College'), (42772, 'https://ror.org/038tkyd35', 'sw', 1, 'https://ror.org/038tkyd35 Chama Cha Uzazi na Malezi Bora Tanzania'), (42773, 'https://ror.org/038vv7y77', 'no_lang_code', 1, 'https://ror.org/038vv7y77 SiaMed’Xpress (France)'), (42774, 'https://ror.org/038xyrg49', 'no_lang_code', 1, 'https://ror.org/038xyrg49 Africagrowth Institute (South Africa)'), (42775, 'https://ror.org/038z1c623', 'en', 1, 'https://ror.org/038z1c623 Pikes Peak Community College'), (42776, 'https://ror.org/039594g80', 'en', 1, 'https://ror.org/039594g80 School of Advanced Study'), (42777, 'https://ror.org/0395sep02', 'fr', 1, 'https://ror.org/0395sep02 Lycée Louis-le-Grand'), (42778, 'https://ror.org/0397v9r66', 'en', 1, 'https://ror.org/0397v9r66 University of Economics and Management Vysoká škola ekonomie a managementu'), (42779, 'https://ror.org/039828v86', 'en', 1, 'https://ror.org/039828v86 Guizhou Academy of Environmental Science and Design 贵州省环境科学研究设计院'), (42780, 'https://ror.org/0398xv274', 'en', 1, 'https://ror.org/0398xv274 Daeshin University 대신대학교'), (42781, 'https://ror.org/039exzx30', 'en', 1, 'https://ror.org/039exzx30 New Mexico Legislature'), (42782, 'https://ror.org/039h3aa75', 'en', 1, 'https://ror.org/039h3aa75 ASA College'), (42783, 'https://ror.org/039k65f65', 'en', 1, 'https://ror.org/039k65f65 Korea Legislation Research Institute 한국법제연구원'), (42784, 'https://ror.org/039mh4d88', 'en', 1, 'https://ror.org/039mh4d88 Madisonville Community College'), (42785, 'https://ror.org/039r0r789', 'en', 1, 'https://ror.org/039r0r789 Government Dental College and Hospital'), (42786, 'https://ror.org/039w3f025', 'no_lang_code', 1, 'https://ror.org/039w3f025 McDermott International (United States)'), (42787, 'https://ror.org/039wntw43', 'no_lang_code', 1, 'https://ror.org/039wntw43 Remidio Innovative Solutions (India)'), (42788, 'https://ror.org/039x3s865', 'no_lang_code', 1, 'https://ror.org/039x3s865 B. Braun (United States)'), (42789, 'https://ror.org/039yyjw43', 'en', 1, 'https://ror.org/039yyjw43 Royal Anthropological Institute'), (42790, 'https://ror.org/03a0gk952', 'pt', 1, 'https://ror.org/03a0gk952 Escola Superior Aberta do Brasil'), (42791, 'https://ror.org/03a11m818', 'en', 1, 'https://ror.org/03a11m818 Islamic Azad University Central Tehran Branch دانشگاه آزاد اسلامی واحد تهران مرکزی'), (42792, 'https://ror.org/03a300k41', 'en', 1, 'https://ror.org/03a300k41 Civitan International'), (42793, 'https://ror.org/03a39dd69', 'en', 1, 'https://ror.org/03a39dd69 De La Salle University – Dasmariñas'), (42794, 'https://ror.org/03a4nen96', 'no_lang_code', 1, 'https://ror.org/03a4nen96 New York Life Insurance Company (United States)'), (42795, 'https://ror.org/03a74kx83', 'en', 1, 'https://ror.org/03a74kx83 Research Institute of National Schools of the Republic of Sakha Научно-исследовательский институт национальных школ Республики Саха'), (42796, 'https://ror.org/03a7v0208', 'en', 1, 'https://ror.org/03a7v0208 Southern Virginia University'), (42797, 'https://ror.org/03a942552', 'no_lang_code', 1, 'https://ror.org/03a942552 Adaptix (United Kingdom)'), (42798, 'https://ror.org/03a9t7g49', 'en', 1, 'https://ror.org/03a9t7g49 Jacksonville College'), (42799, 'https://ror.org/03abjmr84', 'no_lang_code', 1, 'https://ror.org/03abjmr84 Rashtreeya Sikshana Samithi Trust'), (42800, 'https://ror.org/03acf4h47', 'en', 1, 'https://ror.org/03acf4h47 Junior League of Des Moines'), (42801, 'https://ror.org/03ad74s15', 'en', 1, 'https://ror.org/03ad74s15 Institute of Industrial Economics 中国社会科学院工业经济研究所'), (42802, 'https://ror.org/03ae9x524', 'de', 1, 'https://ror.org/03ae9x524 Naturhistorisches Museum, Staatliches Naturhistorisches Museum'), (42803, 'https://ror.org/03af0nw04', 'en', 1, 'https://ror.org/03af0nw04 Canadian Mental Health Association'), (42804, 'https://ror.org/03af2ad05', 'en', 1, 'https://ror.org/03af2ad05 Institute of Mechanics and Engineering Институт механики и машиностроения КазНЦ РАН'), (42805, 'https://ror.org/03af57g89', 'it', 1, 'https://ror.org/03af57g89 Conservatorio di Verona Evaristo Felice Dall Abaco'), (42806, 'https://ror.org/03af82z38', 'no_lang_code', 1, 'https://ror.org/03af82z38 LFB (France)'), (42807, 'https://ror.org/03af8h728', 'en', 1, 'https://ror.org/03af8h728 Maharashtra State Board of Technical Education'), (42808, 'https://ror.org/03afcx965', 'en', 1, 'https://ror.org/03afcx965 bbw Hochschule bbw University of Applied Sciences'), (42809, 'https://ror.org/03afrdr97', 'en', 1, 'https://ror.org/03afrdr97 Mesalands Community College'), (42810, 'https://ror.org/03agewr40', 'no_lang_code', 1, 'https://ror.org/03agewr40 Webster Bank (United States)'), (42811, 'https://ror.org/03aky0p13', 'de', 1, 'https://ror.org/03aky0p13 Media Design University for Design and Computer Science Mediadesign Hochschule für Design und Informatik'), (42812, 'https://ror.org/03anfvd83', 'en', 1, 'https://ror.org/03anfvd83 Western Theological Seminary'), (42813, 'https://ror.org/03athrm05', 'en', 1, 'https://ror.org/03athrm05 University of Security and Economics Висше Училище по Сигурност и Икономика'), (42814, 'https://ror.org/03aw4b617', 'en', 1, 'https://ror.org/03aw4b617 Virginia Commission on Youth'), (42815, 'https://ror.org/03awsbx38', 'en', 1, 'https://ror.org/03awsbx38 Thaddeus Stevens College of Technology'), (42816, 'https://ror.org/03ax4bc53', 'en', 1, 'https://ror.org/03ax4bc53 Conservatorio di Musica "Lucio Campiani" Music Conservatory of Mantova'), (42817, 'https://ror.org/03azwf096', 'fr', 1, 'https://ror.org/03azwf096 École d''Enseignement Supérieur d''Art de Bordeaux'), (42818, 'https://ror.org/03b0h6662', 'no_lang_code', 1, 'https://ror.org/03b0h6662 TAMI Industries (France) Technologie Avancée et Membranes Industrielles'), (42819, 'https://ror.org/03b1zjt31', 'en', 1, 'https://ror.org/03b1zjt31 National Engineering School of Tunis École Nationale d''Ingénieurs de Tunis المدرسة الوطنية للمهندسين بتونس'), (42820, 'https://ror.org/03b325x62', 'en', 1, 'https://ror.org/03b325x62 Pope St. John XXIII National Seminary'), (42821, 'https://ror.org/03b49d241', 'en', 1, 'https://ror.org/03b49d241 Islamic Azad University Shabestar دانشگاه آزاد اسلامی واحد شبستر صفحه اصلی'), (42822, 'https://ror.org/03b6pnq25', 'no_lang_code', 1, 'https://ror.org/03b6pnq25 Tata Chemicals (India)'), (42823, 'https://ror.org/03b7h0n98', 'en', 1, 'https://ror.org/03b7h0n98 Panola College'), (42824, 'https://ror.org/03ba15j53', 'fr', 1, 'https://ror.org/03ba15j53 École de Recherche Graphique'), (42825, 'https://ror.org/03bavdz78', 'de', 1, 'https://ror.org/03bavdz78 Hochschule für Musik Freiburg'), (42826, 'https://ror.org/03bbh2s13', 'en', 1, 'https://ror.org/03bbh2s13 Northumberland County Council'), (42827, 'https://ror.org/03be58a36', 'en', 1, 'https://ror.org/03be58a36 Southern Arkansas University Tech'), (42828, 'https://ror.org/03bfyaa19', 'no_lang_code', 1, 'https://ror.org/03bfyaa19 Goodyear (United States)'), (42829, 'https://ror.org/03bgts378', 'en', 1, 'https://ror.org/03bgts378 Board of Audit and Inspection 감사원'), (42830, 'https://ror.org/03bhckb42', 'no_lang_code', 1, 'https://ror.org/03bhckb42 Primity Bio (United States)'), (42831, 'https://ror.org/03bhwa869', 'en', 1, 'https://ror.org/03bhwa869 Freehold Regional High School District'), (42832, 'https://ror.org/03bjaz271', 'en', 1, 'https://ror.org/03bjaz271 International Polar Foundation'), (42833, 'https://ror.org/03bjn0010', 'en', 1, 'https://ror.org/03bjn0010 National Research Council'), (42834, 'https://ror.org/03bkgak51', 'en', 1, 'https://ror.org/03bkgak51 Christ the King Sixth Form College'), (42835, 'https://ror.org/03bmbn692', 'en', 1, 'https://ror.org/03bmbn692 Allentown High School'), (42836, 'https://ror.org/03bnxc149', 'en', 1, 'https://ror.org/03bnxc149 Five Towns College'), (42837, 'https://ror.org/03bq96v15', 'no_lang_code', 1, 'https://ror.org/03bq96v15 Sphaera Pharma (India)'), (42838, 'https://ror.org/03bqbw279', 'en', 1, 'https://ror.org/03bqbw279 Lexington Theological Seminary'), (42839, 'https://ror.org/03bqw6m62', 'en', 1, 'https://ror.org/03bqw6m62 National Theatre D. Maria II Teatro Nacional D. Maria II'), (42840, 'https://ror.org/03brhac83', 'fr', 1, 'https://ror.org/03brhac83 Fondation Internet Nouvelle Génération'), (42841, 'https://ror.org/03bs3bh63', 'no_lang_code', 1, 'https://ror.org/03bs3bh63 Actualis (France)'), (42842, 'https://ror.org/03bt9y476', 'en', 1, 'https://ror.org/03bt9y476 South African Democratic Teachers Union'), (42843, 'https://ror.org/03bthq143', 'en', 1, 'https://ror.org/03bthq143 Fachhochschule Westküste West Coast University of Applied Sciences'), (42844, 'https://ror.org/03bx9gv58', 'no_lang_code', 1, 'https://ror.org/03bx9gv58 BA Systèmes (France)'), (42845, 'https://ror.org/03bxybp61', 'en', 1, 'https://ror.org/03bxybp61 Competence Centre for Materials Science and Technology'), (42846, 'https://ror.org/03bybmz71', 'en', 1, 'https://ror.org/03bybmz71 AIB College of Business'), (42847, 'https://ror.org/03bytya42', 'en', 1, 'https://ror.org/03bytya42 Pasukan Polis Singapura Singapore Police Force சிங்கப்பூர் காவல் துறை 新加坡警察部队'), (42848, 'https://ror.org/03bzbv419', 'en', 1, 'https://ror.org/03bzbv419 Anhui Institute of Optics and Fine Mechanics 中国科学院安徽光学精密机械研究所'), (42849, 'https://ror.org/03c0kv729', 'nl', 1, 'https://ror.org/03c0kv729 GGZ Friesland'), (42850, 'https://ror.org/03c174j31', 'en', 1, 'https://ror.org/03c174j31 Michigan School of Professional Psychology'), (42851, 'https://ror.org/03c2stx68', 'en', 1, 'https://ror.org/03c2stx68 American Career College'), (42852, 'https://ror.org/03c3ct763', 'pt', 1, 'https://ror.org/03c3ct763 Faculdades Integradas de Taquara'), (42853, 'https://ror.org/03c6tcr26', 'no_lang_code', 1, 'https://ror.org/03c6tcr26 Graphtech (Tunisia)'), (42854, 'https://ror.org/03c89jq84', 'en', 1, 'https://ror.org/03c89jq84 African Network Information Center'), (42855, 'https://ror.org/03c94bc04', 'en', 1, 'https://ror.org/03c94bc04 Bakulev Scientific Center for Cardiovascular Surgery Russian Academy of Medical Sciences Научный центр сердечно-сосудистой хирургии им. А.Н. Бакулева'), (42856, 'https://ror.org/03c94t831', 'en', 1, 'https://ror.org/03c94t831 Zhejiang Meteorological Bureau 浙江省气象科学研究所'), (42857, 'https://ror.org/03c9c1383', 'en', 1, 'https://ror.org/03c9c1383 Montserrat College of Art'), (42858, 'https://ror.org/03ca35056', 'en', 1, 'https://ror.org/03ca35056 Atlantic Philanthropies'), (42859, 'https://ror.org/03cbgzw80', 'en', 1, 'https://ror.org/03cbgzw80 Central Institute for Cotton Research'), (42860, 'https://ror.org/03cbzve16', 'en', 1, 'https://ror.org/03cbzve16 An Roinn Oideachais agus Scileanna Department of Education and Skills'), (42861, 'https://ror.org/03ccevd14', 'en', 1, 'https://ror.org/03ccevd14 New York College of Traditional Chinese Medicine'), (42862, 'https://ror.org/03cen2c33', 'pt', 1, 'https://ror.org/03cen2c33 Fundação de Amparo à Pesquisa do Espírito Santo'), (42863, 'https://ror.org/03cg6qr34', 'en', 1, 'https://ror.org/03cg6qr34 Florida Department of Military Affairs'), (42864, 'https://ror.org/03cg9wt32', 'en', 1, 'https://ror.org/03cg9wt32 China Research Institute for Science Popularization 中国科普研究所'), (42865, 'https://ror.org/03cjaa329', 'en', 1, 'https://ror.org/03cjaa329 Migraine Trust'), (42866, 'https://ror.org/03cjdzf13', 'en', 1, 'https://ror.org/03cjdzf13 Casa College'), (42867, 'https://ror.org/03ck0h361', 'en', 1, 'https://ror.org/03ck0h361 Ministry of Education and Science Կրթության և գիտության նախարարություն'), (42868, 'https://ror.org/03cm6ap49', 'no_lang_code', 1, 'https://ror.org/03cm6ap49 Endo (Ireland)'), (42869, 'https://ror.org/03cmq3458', 'de', 1, 'https://ror.org/03cmq3458 Pädagogische Hochschule Viktor Frankl Hochschule, University College of Teacher Education Carinthia'), (42870, 'https://ror.org/03cp14g09', 'no_lang_code', 1, 'https://ror.org/03cp14g09 QuikTrip (United States)'), (42871, 'https://ror.org/03cps2823', 'pl', 1, 'https://ror.org/03cps2823 Wielkopolska Wyższa Szkoła Społeczno-Ekonomiczna'), (42872, 'https://ror.org/03cqmba17', 'pt', 1, 'https://ror.org/03cqmba17 Instituto Nacional de Ciência e Tecnologia de Neurociência Translacional'), (42873, 'https://ror.org/03cqnhx95', 'en', 1, 'https://ror.org/03cqnhx95 St. John''s College of Nursing'), (42874, 'https://ror.org/03cqs4n40', 'en', 1, 'https://ror.org/03cqs4n40 Organisation mondiale du commerce Organización Mundial del Comercio Organizzazione mondiale del commercio Welthandelsorganisation World Trade Organization'), (42875, 'https://ror.org/03ctxn313', 'en', 1, 'https://ror.org/03ctxn313 Federal HIV/AIDS Prevention and Control Office'), (42876, 'https://ror.org/03cv3dj55', 'en', 1, 'https://ror.org/03cv3dj55 Williams Baptist College'), (42877, 'https://ror.org/03cv6f983', 'en', 1, 'https://ror.org/03cv6f983 Texas A&M University School of Law'), (42878, 'https://ror.org/03cy6xx05', 'en', 1, 'https://ror.org/03cy6xx05 Cancer League of Colorado'), (42879, 'https://ror.org/03czns913', 'fr', 1, 'https://ror.org/03czns913 Laboratoire d''Optique Appliquée'), (42880, 'https://ror.org/03d0ft388', 'de', 1, 'https://ror.org/03d0ft388 Bank für Tirol und Vorarlberg'), (42881, 'https://ror.org/03d2te836', 'en', 1, 'https://ror.org/03d2te836 Texas Education Agency'), (42882, 'https://ror.org/03d2tka35', 'no_lang_code', 1, 'https://ror.org/03d2tka35 TransUnion (United States)'), (42883, 'https://ror.org/03d4eey82', 'en', 1, 'https://ror.org/03d4eey82 South Louisiana Community College'), (42884, 'https://ror.org/03d61qr92', 'en', 1, 'https://ror.org/03d61qr92 South Arkansas Community College'), (42885, 'https://ror.org/03d8erd68', 'en', 1, 'https://ror.org/03d8erd68 South Tyneside College'), (42886, 'https://ror.org/03d8jhc95', 'no_lang_code', 1, 'https://ror.org/03d8jhc95 Steelcase (United States)'), (42887, 'https://ror.org/03dafc138', 'no_lang_code', 1, 'https://ror.org/03dafc138 Defense Systems (United States)'), (42888, 'https://ror.org/03db92766', 'en', 1, 'https://ror.org/03db92766 Centre for Development of Telematics टेलीमैटिक्स विकास केंद्र'), (42889, 'https://ror.org/03dgc0w76', 'en', 1, 'https://ror.org/03dgc0w76 Network for Preventive Environmental Management'), (42890, 'https://ror.org/03djfm287', 'en', 1, 'https://ror.org/03djfm287 British Universities North America Club'), (42891, 'https://ror.org/03dmtvy82', 'en', 1, 'https://ror.org/03dmtvy82 Department of Commerce'), (42892, 'https://ror.org/03dp8ay82', 'no_lang_code', 1, 'https://ror.org/03dp8ay82 Chitungwiza Municipality'), (42893, 'https://ror.org/03dpkyr84', 'no_lang_code', 1, 'https://ror.org/03dpkyr84 Silicon Chemical (United States)'), (42894, 'https://ror.org/03dsk4d59', 'no_lang_code', 1, 'https://ror.org/03dsk4d59 Springer Nature (United Kingdom)'), (42895, 'https://ror.org/03dv5mp96', 'en', 1, 'https://ror.org/03dv5mp96 Virginia Department of Social Services'), (42896, 'https://ror.org/03dw6jp83', 'en', 1, 'https://ror.org/03dw6jp83 San Pedro College'), (42897, 'https://ror.org/03dy5jr56', 'en', 1, 'https://ror.org/03dy5jr56 Grāmatvedības un finanšu koledža Riga College of Accounting and Finance'), (42898, 'https://ror.org/03dyet424', 'no_lang_code', 1, 'https://ror.org/03dyet424 Tata Elxsi (India)'); INSERT INTO `rors` VALUES (42899, 'https://ror.org/03e1rva04', 'en', 1, 'https://ror.org/03e1rva04 Texas Groundwater Protection Committee'), (42900, 'https://ror.org/03e29r284', 'en', 1, 'https://ror.org/03e29r284 National Taipei University 國立臺北大學'), (42901, 'https://ror.org/03e6g8q57', 'en', 1, 'https://ror.org/03e6g8q57 Masan National Tuberculosis Hospital'), (42902, 'https://ror.org/03e8e5846', 'en', 1, 'https://ror.org/03e8e5846 Rio Salado College'), (42903, 'https://ror.org/03e9akr35', 'en', 1, 'https://ror.org/03e9akr35 College for Management in Tourism and Informatics in Virovitica Visoka škola za menadžment u turizmu i informatici'), (42904, 'https://ror.org/03e9cyb52', 'en', 1, 'https://ror.org/03e9cyb52 Central Laboratory For Agricultural Expert Systems'), (42905, 'https://ror.org/03eabnp32', 'en', 1, 'https://ror.org/03eabnp32 Carl Albert State College'), (42906, 'https://ror.org/03ebs8975', 'en', 1, 'https://ror.org/03ebs8975 Department of State Growth'), (42907, 'https://ror.org/03ect3280', 'en', 1, 'https://ror.org/03ect3280 Gansu Desert Control Research Institute 甘肃省治沙研究所'), (42908, 'https://ror.org/03ed9w591', 'en', 1, 'https://ror.org/03ed9w591 Technological Educational Institute of Central Greece Τεχνολογικό Εκπαιδευτικό Ίδρυμα Στερεάς Ελλάδας'), (42909, 'https://ror.org/03eeyzx69', 'en', 1, 'https://ror.org/03eeyzx69 Ministy of Fisheries and Marine Resources'), (42910, 'https://ror.org/03efa8j75', 'en', 1, 'https://ror.org/03efa8j75 IMS Unison University'), (42911, 'https://ror.org/03eh3c696', 'en', 1, 'https://ror.org/03eh3c696 Civil Aviation Management Institute of China 中国民航管理干部学院'), (42912, 'https://ror.org/03ehswj04', 'en', 1, 'https://ror.org/03ehswj04 Barstow Community College'), (42913, 'https://ror.org/03ekjqb98', 'it', 1, 'https://ror.org/03ekjqb98 Accademia di Belle Arti di Frosinone'), (42914, 'https://ror.org/03em6r869', 'en', 1, 'https://ror.org/03em6r869 Armed Forces Medical College জ্ঞানই শক্তি,সেবাই ধর্ম'), (42915, 'https://ror.org/03emcx872', 'no_lang_code', 1, 'https://ror.org/03emcx872 PaxiTech (France)'), (42916, 'https://ror.org/03en4zh39', 'it', 1, 'https://ror.org/03en4zh39 Academy of Fine Arts of Palermo Accademia di Belle Arti di Palermo'), (42917, 'https://ror.org/03enm7r21', 'no_lang_code', 1, 'https://ror.org/03enm7r21 Pakistan Telecommunication Company (Pakistan) پی ٹی سی ایل'), (42918, 'https://ror.org/03enn8902', 'en', 1, 'https://ror.org/03enn8902 Northeast Mississippi Community College'), (42919, 'https://ror.org/03epp6210', 'en', 1, 'https://ror.org/03epp6210 Chongqing Institute of Geology and Mineral Resources 重庆地质矿产研究院'), (42920, 'https://ror.org/03eqw9e29', 'en', 1, 'https://ror.org/03eqw9e29 Teachers Insurance and Annuity Association of America'), (42921, 'https://ror.org/03eqwj662', 'en', 1, 'https://ror.org/03eqwj662 Leibniz Fachhochschule Leibniz University of Applied Sciences'), (42922, 'https://ror.org/03er61e50', 'fr', 1, 'https://ror.org/03er61e50 Clinique Pasteur Pasteur Clinic'), (42923, 'https://ror.org/03er7bd95', 'en', 1, 'https://ror.org/03er7bd95 Taylor College and Seminary'), (42924, 'https://ror.org/03eraeg88', 'no_lang_code', 1, 'https://ror.org/03eraeg88 Medtronic (France)'), (42925, 'https://ror.org/03etbcx90', 'en', 1, 'https://ror.org/03etbcx90 Pasco–Hernando State College'), (42926, 'https://ror.org/03etbp963', 'fr', 1, 'https://ror.org/03etbp963 Vizion’R'), (42927, 'https://ror.org/03ew7wh25', 'en', 1, 'https://ror.org/03ew7wh25 Seevic College'), (42928, 'https://ror.org/03ex1m609', 'no_lang_code', 1, 'https://ror.org/03ex1m609 Satimo (France) Société d’Applications Technologiques de l’Imagerie Micro-Onde'), (42929, 'https://ror.org/03ezdk227', 'en', 1, 'https://ror.org/03ezdk227 Epic Bible College'), (42930, 'https://ror.org/03f34pe19', 'no_lang_code', 1, 'https://ror.org/03f34pe19 Starbucks (United States)'), (42931, 'https://ror.org/03f3kev64', 'en', 1, 'https://ror.org/03f3kev64 Centre for Interdisciplinary Research in Music Media and Technology'), (42932, 'https://ror.org/03f3r3r28', 'en', 1, 'https://ror.org/03f3r3r28 Mid Michigan Community College'), (42933, 'https://ror.org/03f5nqa05', 'no_lang_code', 1, 'https://ror.org/03f5nqa05 Aboca (Italy)'), (42934, 'https://ror.org/03f5ppt85', 'en', 1, 'https://ror.org/03f5ppt85 Pacific Institute of Geography, Far Eastern Branch of the Russian Academy of Sciences Тихоокеанский институт географи'), (42935, 'https://ror.org/03f614z16', 'en', 1, 'https://ror.org/03f614z16 Humsafar Trust'), (42936, 'https://ror.org/03f6f0r93', 'no_lang_code', 1, 'https://ror.org/03f6f0r93 Guardian Life Insurance Company of America (United States)'), (42937, 'https://ror.org/03f6y0160', 'en', 1, 'https://ror.org/03f6y0160 Ministry of Energy, Mines, Water and Environment Ministère de l''Energie, des Mines, de l''Eau et de l''Environnement'), (42938, 'https://ror.org/03f856541', 'es', 1, 'https://ror.org/03f856541 Ministerio de Educación Pública'), (42939, 'https://ror.org/03f8nwf60', 'no_lang_code', 1, 'https://ror.org/03f8nwf60 Solar23 Tunisie (Tunisia)'), (42940, 'https://ror.org/03fbewc07', 'pt', 1, 'https://ror.org/03fbewc07 Conservatório de Música do Porto'), (42941, 'https://ror.org/03fbg1b47', 'fr', 1, 'https://ror.org/03fbg1b47 Institut Supérieur de Gestion et de Planification'), (42942, 'https://ror.org/03fcyyh75', 'en', 1, 'https://ror.org/03fcyyh75 Eastern Arizona College'), (42943, 'https://ror.org/03fd87035', 'fr', 1, 'https://ror.org/03fd87035 Laboratoire Motricité Humaine Éducation Sport Santé'), (42944, 'https://ror.org/03fdtyj95', 'no_lang_code', 1, 'https://ror.org/03fdtyj95 Electra- Empresa de Electricidade e Água (Cape Verde)'), (42945, 'https://ror.org/03fe85378', 'en', 1, 'https://ror.org/03fe85378 Cincinnati College of Mortuary Science'), (42946, 'https://ror.org/03fe8wt32', 'fr', 1, 'https://ror.org/03fe8wt32 Association Mitsinjo'), (42947, 'https://ror.org/03fh39287', 'fr', 1, 'https://ror.org/03fh39287 Agence Nationale de l''Aviation Civile du Sénégal, Agence Nationale de l''Aviation Civile et de la Météorologie'), (42948, 'https://ror.org/03fkcxa91', 'en', 1, 'https://ror.org/03fkcxa91 Environmental Protection Agency Miljøstyrelsen'), (42949, 'https://ror.org/03fm9h746', 'en', 1, 'https://ror.org/03fm9h746 Acsenda School of Management'), (42950, 'https://ror.org/03fntkd46', 'en', 1, 'https://ror.org/03fntkd46 Commission du Bassin du Lac Tchad Lake Chad Basin Commission'), (42951, 'https://ror.org/03fpzah45', 'en', 1, 'https://ror.org/03fpzah45 College of Southern Nevada'), (42952, 'https://ror.org/03fq8ts34', 'en', 1, 'https://ror.org/03fq8ts34 Countryside and Community Research Institute'), (42953, 'https://ror.org/03fqqej38', 'en', 1, 'https://ror.org/03fqqej38 Johns Hopkins Children''s Center'), (42954, 'https://ror.org/03fs51t18', 'en', 1, 'https://ror.org/03fs51t18 Wayne Community College'), (42955, 'https://ror.org/03fs66f88', 'no_lang_code', 1, 'https://ror.org/03fs66f88 Pitney Bowes (United States)'), (42956, 'https://ror.org/03fs7vk32', 'no_lang_code', 1, 'https://ror.org/03fs7vk32 American International Group (United States)'), (42957, 'https://ror.org/03ftcjb67', 'en', 1, 'https://ror.org/03ftcjb67 Muséum d''Histoire Naturelle de Genève Natural History Museum of Geneva'), (42958, 'https://ror.org/03fthvs97', 'pt', 1, 'https://ror.org/03fthvs97 Faculdade de Itaituba'), (42959, 'https://ror.org/03fyw2k76', 'en', 1, 'https://ror.org/03fyw2k76 Blood Transfusion Service of Namibia'), (42960, 'https://ror.org/03fzdmt35', 'en', 1, 'https://ror.org/03fzdmt35 East European State Higher School in Przemyśl Państwowa Wyższa Szkoła Wschodnioeuropejska w Przemyślu'), (42961, 'https://ror.org/03g38sn14', 'fr', 1, 'https://ror.org/03g38sn14 Laboratory Colloïdes et Matériaux Divisés'), (42962, 'https://ror.org/03g5f5777', 'en', 1, 'https://ror.org/03g5f5777 Maine Medical Center'), (42963, 'https://ror.org/03g9c1e75', 'no_lang_code', 1, 'https://ror.org/03g9c1e75 Delta Air Lines (United States)'), (42964, 'https://ror.org/03g9mpe61', 'en', 1, 'https://ror.org/03g9mpe61 Upper Valley Educators Institute'), (42965, 'https://ror.org/03ga33f34', 'en', 1, 'https://ror.org/03ga33f34 Department of Arts and Museums'), (42966, 'https://ror.org/03gbfvb23', 'en', 1, 'https://ror.org/03gbfvb23 Central Ohio Technical College'), (42967, 'https://ror.org/03gc7jk79', 'en', 1, 'https://ror.org/03gc7jk79 Cisco College'), (42968, 'https://ror.org/03gjr0792', 'en', 1, 'https://ror.org/03gjr0792 Central Building Research Institute'), (42969, 'https://ror.org/03gjxrs28', 'en', 1, 'https://ror.org/03gjxrs28 National Art Gallery of Namibia'), (42970, 'https://ror.org/03gn3dp35', 'no_lang_code', 1, 'https://ror.org/03gn3dp35 Adamore (Nigeria)'), (42971, 'https://ror.org/03grdwb80', 'no_lang_code', 1, 'https://ror.org/03grdwb80 Sanofi (South Korea) 사노피-아벤티스 코리아'), (42972, 'https://ror.org/03grty434', 'en', 1, 'https://ror.org/03grty434 Jembi Health Systems'), (42973, 'https://ror.org/03gvptg28', 'en', 1, 'https://ror.org/03gvptg28 Ludwig Cancer Research'), (42974, 'https://ror.org/03gwh5v62', 'fr', 1, 'https://ror.org/03gwh5v62 Iskane Ingénierie'), (42975, 'https://ror.org/03gxxv409', 'en', 1, 'https://ror.org/03gxxv409 Rama Dental College Hospital & Research Centre'), (42976, 'https://ror.org/03h37fs39', 'en', 1, 'https://ror.org/03h37fs39 Daegu Future College 大邱未來大學 대구미래대학'), (42977, 'https://ror.org/03h3f5845', 'en', 1, 'https://ror.org/03h3f5845 Murmansk Academy of Economics and Management Мурманская академия экономики и управления'), (42978, 'https://ror.org/03h8x3k49', 'en', 1, 'https://ror.org/03h8x3k49 Kamiesberg Local Municipality'), (42979, 'https://ror.org/03ha3x766', 'no_lang_code', 1, 'https://ror.org/03ha3x766 Beijing Planetarium 北京天文馆/北京天文館'), (42980, 'https://ror.org/03hagz796', 'no_lang_code', 1, 'https://ror.org/03hagz796 Pantarhei Bioscience (Netherlands)'), (42981, 'https://ror.org/03hasam33', 'en', 1, 'https://ror.org/03hasam33 Wolford College'), (42982, 'https://ror.org/03hayrn10', 'en', 1, 'https://ror.org/03hayrn10 Sorbian Institute Sorbisches Institut'), (42983, 'https://ror.org/03hbjhd85', 'en', 1, 'https://ror.org/03hbjhd85 National Registration, Passport and Citizenship Department'), (42984, 'https://ror.org/03hc6ex92', 'es', 1, 'https://ror.org/03hc6ex92 Secretaría de Innovación, Ciencia y Educación Superior'), (42985, 'https://ror.org/03hdcb713', 'no_lang_code', 1, 'https://ror.org/03hdcb713 MicroMass Communications (United States)'), (42986, 'https://ror.org/03hegxg89', 'en', 1, 'https://ror.org/03hegxg89 Southwest Wisconsin Technical College'), (42987, 'https://ror.org/03hg8g849', 'en', 1, 'https://ror.org/03hg8g849 Timiryazev Institute of Plant Physiology Институт физиологии растений К.А. Тимирязева'), (42988, 'https://ror.org/03hmgxr98', 'en', 1, 'https://ror.org/03hmgxr98 Lietuvos aukstoji jureivystes mokykla Lithuanian Maritime Academy'), (42989, 'https://ror.org/03hr48p12', 'en', 1, 'https://ror.org/03hr48p12 Tohono O''odham Community College'), (42990, 'https://ror.org/03ht0cf17', 'en', 1, 'https://ror.org/03ht0cf17 Sher-e-Bangla Agricultural University শেরে বাংলা কৃষি বিশ্ববিদ্যালয়'), (42991, 'https://ror.org/03hz79v84', 'en', 1, 'https://ror.org/03hz79v84 Fair Haven Community Health Center'), (42992, 'https://ror.org/03j09xa79', 'es', 1, 'https://ror.org/03j09xa79 Genetaq'), (42993, 'https://ror.org/03j113172', 'en', 1, 'https://ror.org/03j113172 Biogas Institute of Ministry of Agriculture 农业部沼气科学研究所'), (42994, 'https://ror.org/03j2cpb79', 'en', 1, 'https://ror.org/03j2cpb79 Farmland Irrigation Research Institute 中国农业科学院农田灌溉研究所'), (42995, 'https://ror.org/03j397k95', 'en', 1, 'https://ror.org/03j397k95 South African Holocaust and Genocide Foundation'), (42996, 'https://ror.org/03j4bgx95', 'fr', 1, 'https://ror.org/03j4bgx95 ECAM Rennes Louis de Broglie'), (42997, 'https://ror.org/03j70bf39', 'en', 1, 'https://ror.org/03j70bf39 American College of Acupuncture & Oriental Medicine'), (42998, 'https://ror.org/03j803518', 'en', 1, 'https://ror.org/03j803518 China Institute of Daily Chemical Industry 中国日用化学工业研究院'), (42999, 'https://ror.org/03j9n1e36', 'en', 1, 'https://ror.org/03j9n1e36 Davis College - Ohio'), (43000, 'https://ror.org/03j9ysw15', 'en', 1, 'https://ror.org/03j9ysw15 CareWorks'), (43001, 'https://ror.org/03ja16q10', 'en', 1, 'https://ror.org/03ja16q10 Frank Lloyd Wright School of Architecture'), (43002, 'https://ror.org/03jab8886', 'en', 1, 'https://ror.org/03jab8886 International School of Management'), (43003, 'https://ror.org/03jb94x09', 'no_lang_code', 1, 'https://ror.org/03jb94x09 Brochier Technologies (France)'), (43004, 'https://ror.org/03jbhek14', 'hr', 1, 'https://ror.org/03jbhek14 Tehničko Veleučilište u Zagrebu'), (43005, 'https://ror.org/03jcbwy51', 'en', 1, 'https://ror.org/03jcbwy51 Oblate School of Theology'), (43006, 'https://ror.org/03jcx4790', 'en', 1, 'https://ror.org/03jcx4790 College of St. Joseph'), (43007, 'https://ror.org/03jfd4440', 'en', 1, 'https://ror.org/03jfd4440 Instituto Tecnológico de Mexitali Mexicali Institute of Technology'), (43008, 'https://ror.org/03jfnxv58', 'en', 1, 'https://ror.org/03jfnxv58 G. S. Rakovski National Defence College Военна академия Г. С. Раковски'), (43009, 'https://ror.org/03jgxzm03', 'en', 1, 'https://ror.org/03jgxzm03 Američka Visoka Skola za Menadžment i Tehnologiju Rochester Institute of Technology Croatia'), (43010, 'https://ror.org/03jjt5g98', 'en', 1, 'https://ror.org/03jjt5g98 Kolping University of Applied Sciences'), (43011, 'https://ror.org/03jjxkw75', 'en', 1, 'https://ror.org/03jjxkw75 Rajasthan University of Veterinary and Animal Sciences'), (43012, 'https://ror.org/03jk3dn88', 'en', 1, 'https://ror.org/03jk3dn88 Egyptian Information Telecommunications Electronics and Software Alliance'), (43013, 'https://ror.org/03jmc9t23', 'en', 1, 'https://ror.org/03jmc9t23 Research Institute of General Pathology and Pathophysiology, the Russian Academy of Medical Sciences Научно-исследовательский Институт общей патологии и патофизиологии'), (43014, 'https://ror.org/03jmcpx27', 'en', 1, 'https://ror.org/03jmcpx27 Agriculture Food and Rural Development'), (43015, 'https://ror.org/03jmw7514', 'en', 1, 'https://ror.org/03jmw7514 Qinghai Meteorological Institute 青海省气象局'), (43016, 'https://ror.org/03jn6k846', 'en', 1, 'https://ror.org/03jn6k846 Visoka Poslovna Skola Zagreb Zagreb School of Business'), (43017, 'https://ror.org/03jpef473', 'en', 1, 'https://ror.org/03jpef473 Canton City School District'), (43018, 'https://ror.org/03jqk9681', 'en', 1, 'https://ror.org/03jqk9681 Spartanburg Community College'), (43019, 'https://ror.org/03jrs5v66', 'en', 1, 'https://ror.org/03jrs5v66 Institute of Geosphere Dynamics Федеральное государственное бюджетное учреждение науки Институт динамики геосфер Российской академии наук'), (43020, 'https://ror.org/03jvv3z84', 'en', 1, 'https://ror.org/03jvv3z84 Bournville College'), (43021, 'https://ror.org/03jy4yd76', 'en', 1, 'https://ror.org/03jy4yd76 Uganda Carbon Bureau'), (43022, 'https://ror.org/03jyeqg89', 'en', 1, 'https://ror.org/03jyeqg89 Jewish Child Care Association'), (43023, 'https://ror.org/03k082032', 'no_lang_code', 1, 'https://ror.org/03k082032 News Corp (United States)'), (43024, 'https://ror.org/03k2ghn57', 'en', 1, 'https://ror.org/03k2ghn57 Markedsmodningsfonden Market Development Fund'), (43025, 'https://ror.org/03k31z678', 'en', 1, 'https://ror.org/03k31z678 Institute for Soil, Climate and Water'), (43026, 'https://ror.org/03k3rfc04', 'en', 1, 'https://ror.org/03k3rfc04 Oxnard College'), (43027, 'https://ror.org/03k3wrz84', 'pt', 1, 'https://ror.org/03k3wrz84 Ministério do Ensino Superior Ciência e Inovação'), (43028, 'https://ror.org/03k42gv86', 'en', 1, 'https://ror.org/03k42gv86 Institute of Machines Science Институт машиноведения имени А. А. Благонравова РАН'), (43029, 'https://ror.org/03k4btr05', 'en', 1, 'https://ror.org/03k4btr05 Center for Support of Indigenous Peoples of the North'), (43030, 'https://ror.org/03k6e9943', 'no_lang_code', 1, 'https://ror.org/03k6e9943 Reliance (United Kingdom)'), (43031, 'https://ror.org/03k722897', 'en', 1, 'https://ror.org/03k722897 Institute of Advanced Studies in Education'), (43032, 'https://ror.org/03k94d886', 'en', 1, 'https://ror.org/03k94d886 Notre Dame Seminary'), (43033, 'https://ror.org/03k9yfc35', 'en', 1, 'https://ror.org/03k9yfc35 University of Fort Lauderdale'), (43034, 'https://ror.org/03ka08s53', 'en', 1, 'https://ror.org/03ka08s53 Ministry of Science and Environmental Protection Министарство науке и заштите животне средине'), (43035, 'https://ror.org/03kd1v147', 'no_lang_code', 1, 'https://ror.org/03kd1v147 TVS Motor Company (India)'), (43036, 'https://ror.org/03kfyg105', 'no_lang_code', 1, 'https://ror.org/03kfyg105 Safran (Poland)'), (43037, 'https://ror.org/03kgddd58', 'en', 1, 'https://ror.org/03kgddd58 MacDowell Colony'), (43038, 'https://ror.org/03kgyg741', 'no_lang_code', 1, 'https://ror.org/03kgyg741 General Mills (United States)'), (43039, 'https://ror.org/03khvgd78', 'no_lang_code', 1, 'https://ror.org/03khvgd78 Imedex (United States)'), (43040, 'https://ror.org/03kk24v11', 'fr', 1, 'https://ror.org/03kk24v11 PhotoTherme, Toutes nos Energies Pour Economiser la Votre'), (43041, 'https://ror.org/03kmar131', 'fr', 1, 'https://ror.org/03kmar131 Haute École de la Province de Liège'), (43042, 'https://ror.org/03ktyvw44', 'no_lang_code', 1, 'https://ror.org/03ktyvw44 Cadila Healthcare (India)'), (43043, 'https://ror.org/03kv3z486', 'no_lang_code', 1, 'https://ror.org/03kv3z486 IBM (Portugal)'), (43044, 'https://ror.org/03kv7mm58', 'en', 1, 'https://ror.org/03kv7mm58 Wartburg Theological Seminary'), (43045, 'https://ror.org/03ky3pc21', 'no_lang_code', 1, 'https://ror.org/03ky3pc21 Bharat Heavy Electricals (India)'), (43046, 'https://ror.org/03kyawa63', 'en', 1, 'https://ror.org/03kyawa63 An Roinn Gnóthaí Eachtracha agus Trádála Department of Foreign Affairs and Trade'), (43047, 'https://ror.org/03kyen796', 'en', 1, 'https://ror.org/03kyen796 Academia Forțelor Terestre Nicolae Bălcescu Nicolae Bălcescu Land Forces Academy'), (43048, 'https://ror.org/03kzcrh59', 'en', 1, 'https://ror.org/03kzcrh59 Guangzhou Maritime College 广州航海高等专科学校'), (43049, 'https://ror.org/03kzgcv48', 'en', 1, 'https://ror.org/03kzgcv48 Freie Theologische Hochschule Gießen Giessen School of Theology'), (43050, 'https://ror.org/03m1r7z07', 'no_lang_code', 1, 'https://ror.org/03m1r7z07 Asian Civilisations Museum Muzium Tamadun Asia 亚洲文明博物馆'), (43051, 'https://ror.org/03m3r4n45', 'en', 1, 'https://ror.org/03m3r4n45 Shout It Now'), (43052, 'https://ror.org/03m5ehy13', 'en', 1, 'https://ror.org/03m5ehy13 Ministry of Higher Education and Scientific Research وزارة التعليم العالي والبحث العلمي'), (43053, 'https://ror.org/03m6sha91', 'en', 1, 'https://ror.org/03m6sha91 Institut National de la Météorologie National Institute of Meteorology'), (43054, 'https://ror.org/03m7k8v87', 'en', 1, 'https://ror.org/03m7k8v87 Tanzania Association of Foresters'), (43055, 'https://ror.org/03mcw5r69', 'en', 1, 'https://ror.org/03mcw5r69 Southeastern Baptist Theological Seminary'), (43056, 'https://ror.org/03mcws937', 'en', 1, 'https://ror.org/03mcws937 University of Arkansas Community College at Hope'), (43057, 'https://ror.org/03mef6610', 'en', 1, 'https://ror.org/03mef6610 South African Weather Service'), (43058, 'https://ror.org/03mfa1h60', 'no_lang_code', 1, 'https://ror.org/03mfa1h60 Ungweru'), (43059, 'https://ror.org/03mfv0751', 'en', 1, 'https://ror.org/03mfv0751 Flags of Honour Foundation'), (43060, 'https://ror.org/03mhba648', 'en', 1, 'https://ror.org/03mhba648 Conseil des arts de l''Ontario Ontario Arts Council'), (43061, 'https://ror.org/03mj1nk45', 'en', 1, 'https://ror.org/03mj1nk45 National University of Educational Planning and Administration'), (43062, 'https://ror.org/03mjd0271', 'en', 1, 'https://ror.org/03mjd0271 Construction Research Institute of Malaysia'), (43063, 'https://ror.org/03mjnxj17', 'no_lang_code', 1, 'https://ror.org/03mjnxj17 LEK Consulting (United States)'), (43064, 'https://ror.org/03mkee371', 'en', 1, 'https://ror.org/03mkee371 General Organization for Social Insurance المؤسسة العامة للتأمينات الاجتماعية'), (43065, 'https://ror.org/03mm0f366', 'da', 1, 'https://ror.org/03mm0f366 Kriminalforsorgen'), (43066, 'https://ror.org/03mngpd27', 'no_lang_code', 1, 'https://ror.org/03mngpd27 Health Strat (Kenya)'), (43067, 'https://ror.org/03mrwhf77', 'en', 1, 'https://ror.org/03mrwhf77 Commonwealth Forestry Association'), (43068, 'https://ror.org/03msax388', 'en', 1, 'https://ror.org/03msax388 Gauteng Department of Agriculture and Rural Development'), (43069, 'https://ror.org/03mt6tt39', 'en', 1, 'https://ror.org/03mt6tt39 Asian Institute of Management'), (43070, 'https://ror.org/03mv3zz84', 'en', 1, 'https://ror.org/03mv3zz84 Brno International Business School'), (43071, 'https://ror.org/03mv9kp97', 'en', 1, 'https://ror.org/03mv9kp97 AOMA Graduate School of Integrative Medicine'), (43072, 'https://ror.org/03mw5cy89', 'en', 1, 'https://ror.org/03mw5cy89 Sree Gokulam Medical College and Research Foundation'), (43073, 'https://ror.org/03mx5e235', 'en', 1, 'https://ror.org/03mx5e235 European Committee for Treatment and Research in Multiple Sclerosis'), (43074, 'https://ror.org/03mxg5j39', 'en', 1, 'https://ror.org/03mxg5j39 Agricultural Adaptation Council'), (43075, 'https://ror.org/03myaza48', 'en', 1, 'https://ror.org/03myaza48 Defence Academy of the United Kingdom'), (43076, 'https://ror.org/03mz4hq51', 'en', 1, 'https://ror.org/03mz4hq51 Naju National Hospital 국립나주병원'), (43077, 'https://ror.org/03n0qtw28', 'cs', 1, 'https://ror.org/03n0qtw28 Westmoravian College Třebíč, Západomoravská vysoká škola Třebíč'), (43078, 'https://ror.org/03n0s6k02', 'it', 1, 'https://ror.org/03n0s6k02 Conservatorio di Musica Lorenzo Perosi'), (43079, 'https://ror.org/03n10mx16', 'en', 1, 'https://ror.org/03n10mx16 Women''s Research & Education Institute'), (43080, 'https://ror.org/03n4gks22', 'en', 1, 'https://ror.org/03n4gks22 Abertine Rift Conservation Society'), (43081, 'https://ror.org/03navfe48', 'no_lang_code', 1, 'https://ror.org/03navfe48 ANADER'), (43082, 'https://ror.org/03naw9h65', 'en', 1, 'https://ror.org/03naw9h65 Royal Australian and New Zealand College of Obstetricians and Gynaecologists'), (43083, 'https://ror.org/03nb5d893', 'en', 1, 'https://ror.org/03nb5d893 Academy of Chinese Culture and Health Sciences'), (43084, 'https://ror.org/03ngerk47', 'en', 1, 'https://ror.org/03ngerk47 Al-Farabi College'), (43085, 'https://ror.org/03nh6bz87', 'no_lang_code', 1, 'https://ror.org/03nh6bz87 Vacsera (Egypt)'), (43086, 'https://ror.org/03njb3j41', 'en', 1, 'https://ror.org/03njb3j41 Southwestern College - New Mexico'), (43087, 'https://ror.org/03njdre41', 'en', 1, 'https://ror.org/03njdre41 Bangladesh Council of Scientific and Industrial Research বাংলাদেশ বিজ্ঞান ও শিল্প গবেষণা পরিষদ'), (43088, 'https://ror.org/03njnhv57', 'en', 1, 'https://ror.org/03njnhv57 Etobicoke School of the Arts'), (43089, 'https://ror.org/03njrcx45', 'fr', 1, 'https://ror.org/03njrcx45 Laboratoire de Biologie et Pharmacologie Appliquée'), (43090, 'https://ror.org/03nkkb025', 'en', 1, 'https://ror.org/03nkkb025 Rwanda Agriculture Board'), (43091, 'https://ror.org/03nm76z82', 'en', 1, 'https://ror.org/03nm76z82 Australian Institute of Policy and Science'), (43092, 'https://ror.org/03nmnmt74', 'en', 1, 'https://ror.org/03nmnmt74 Midwest College of Oriental Medicine'), (43093, 'https://ror.org/03nqvpf75', 'fr', 1, 'https://ror.org/03nqvpf75 Laboratoire d''Étude des Microstructures'), (43094, 'https://ror.org/03nqwhd11', 'no_lang_code', 1, 'https://ror.org/03nqwhd11 Saudi Arabia Basic Industries (Saudi Arabia) الشركة السعودية للصناعات الأساسية ، سابك'), (43095, 'https://ror.org/03nrq6f82', 'en', 1, 'https://ror.org/03nrq6f82 Northpoint Bible College'), (43096, 'https://ror.org/03nvc8x46', 'no_lang_code', 1, 'https://ror.org/03nvc8x46 Anglo American (South Africa)'), (43097, 'https://ror.org/03nvkc167', 'en', 1, 'https://ror.org/03nvkc167 Ministry of Foreign Affairs of Denmark Udenrigsministeriet'), (43098, 'https://ror.org/03nzct076', 'en', 1, 'https://ror.org/03nzct076 Platt College'), (43099, 'https://ror.org/03nzw8376', 'no_lang_code', 1, 'https://ror.org/03nzw8376 Theranexus (France)'), (43100, 'https://ror.org/03p371w23', 'fr', 1, 'https://ror.org/03p371w23 Laboratoire de Recherches sur le Développement de l''Elevage'), (43101, 'https://ror.org/03p5mga34', 'no_lang_code', 1, 'https://ror.org/03p5mga34 Element Six (Luxembourg)'), (43102, 'https://ror.org/03p5txy82', 'en', 1, 'https://ror.org/03p5txy82 Celje School of Economics Ekonomska Šola Celje'), (43103, 'https://ror.org/03p5wj904', 'en', 1, 'https://ror.org/03p5wj904 Japan Center for Economic Research 日本経済研究センター'), (43104, 'https://ror.org/03p6h3k49', 'en', 1, 'https://ror.org/03p6h3k49 Police Academy Polis Akademisi'), (43105, 'https://ror.org/03p98pb63', 'no_lang_code', 1, 'https://ror.org/03p98pb63 Anthem Biosciences (India)'), (43106, 'https://ror.org/03p9jms48', 'en', 1, 'https://ror.org/03p9jms48 Beijing Cultural Development Foundation 北京文化发展基金会'), (43107, 'https://ror.org/03p9skh04', 'no_lang_code', 1, 'https://ror.org/03p9skh04 Brother International (United States)'), (43108, 'https://ror.org/03pbxrn39', 'it', 1, 'https://ror.org/03pbxrn39 Conservatorio di Musica "Giuseppe Verdi"'), (43109, 'https://ror.org/03pg9x804', 'en', 1, 'https://ror.org/03pg9x804 Texas Commission on the Arts'), (43110, 'https://ror.org/03pgfye82', 'en', 1, 'https://ror.org/03pgfye82 New England College of Business'), (43111, 'https://ror.org/03pgxht93', 'en', 1, 'https://ror.org/03pgxht93 Foshan Municipal Government'), (43112, 'https://ror.org/03ph2cv51', 'en', 1, 'https://ror.org/03ph2cv51 Westminster Kingsway College'), (43113, 'https://ror.org/03pkfys17', 'en', 1, 'https://ror.org/03pkfys17 Zhejiang Institute of Hydraulics & Estuary 浙江省水利河口研究院'), (43114, 'https://ror.org/03pmbkw20', 'no_lang_code', 1, 'https://ror.org/03pmbkw20 Sophumelela Centre'), (43115, 'https://ror.org/03ppgma52', 'en', 1, 'https://ror.org/03ppgma52 Project Management Institute'), (43116, 'https://ror.org/03pq5wv02', 'en', 1, 'https://ror.org/03pq5wv02 Academy of Vocal Arts'), (43117, 'https://ror.org/03pqf0084', 'en', 1, 'https://ror.org/03pqf0084 Geschichte des Internationalen Hochschulinstituts (IHI) Zittau International University Institute'), (43118, 'https://ror.org/03pr1st25', 'no_lang_code', 1, 'https://ror.org/03pr1st25 African Explosives (South Africa)'), (43119, 'https://ror.org/03pr7e672', 'fr', 1, 'https://ror.org/03pr7e672 Université des Sciences Juridiques et Politiques de Bamako'), (43120, 'https://ror.org/03ps79624', 'en', 1, 'https://ror.org/03ps79624 Rainman Landcare Foundation'), (43121, 'https://ror.org/03pvm4464', 'en', 1, 'https://ror.org/03pvm4464 Wiregrass Georgia Technical College'), (43122, 'https://ror.org/03pvphy63', 'en', 1, 'https://ror.org/03pvphy63 Byzantine Catholic Seminary of Saints Cyril and Methodius'), (43123, 'https://ror.org/03pwnpf38', 'it', 1, 'https://ror.org/03pwnpf38 Conservatorio State Di Musica Giuseppe Verdi'), (43124, 'https://ror.org/03pxsxg30', 'no_lang_code', 1, 'https://ror.org/03pxsxg30 Advanced Acoustic Concepts (United States)'), (43125, 'https://ror.org/03py54049', 'en', 1, 'https://ror.org/03py54049 Ernst Busch Academy of Dramatic Arts Hochschule für Schauspielkunst Ernst Busch'), (43126, 'https://ror.org/03pydjx38', 'no_lang_code', 1, 'https://ror.org/03pydjx38 State Nuclear Power Technology Company (China)'), (43127, 'https://ror.org/03pztks36', 'no_lang_code', 1, 'https://ror.org/03pztks36 Aditya Birla (India)'), (43128, 'https://ror.org/03q098e53', 'fr', 1, 'https://ror.org/03q098e53 Centre de Recherche en Astronomie Astrophysique et Géophysique'), (43129, 'https://ror.org/03q1jsa36', 'en', 1, 'https://ror.org/03q1jsa36 Central Manufacturing Technology Institute'), (43130, 'https://ror.org/03q22e955', 'en', 1, 'https://ror.org/03q22e955 Xaverian College'), (43131, 'https://ror.org/03q3jnq04', 'no_lang_code', 1, 'https://ror.org/03q3jnq04 China Nonferrous Metal Mining (China) 中国有色矿业集团有限公司'), (43132, 'https://ror.org/03q4sef08', 'no_lang_code', 1, 'https://ror.org/03q4sef08 BASIS International (United States)'), (43133, 'https://ror.org/03q6w3828', 'no_lang_code', 1, 'https://ror.org/03q6w3828 International Paper (United States)'), (43134, 'https://ror.org/03q7p3t30', 'fr', 1, 'https://ror.org/03q7p3t30 Laboratoire de Chimie Moléculaire et Thioorganique'), (43135, 'https://ror.org/03q82hy28', 'en', 1, 'https://ror.org/03q82hy28 Arab and African Research Center'), (43136, 'https://ror.org/03q8jhh94', 'en', 1, 'https://ror.org/03q8jhh94 Allen Community College'), (43137, 'https://ror.org/03q8sfx86', 'en', 1, 'https://ror.org/03q8sfx86 Comilla Medical College কুমিল্লা মেডিকেল কলেজ'), (43138, 'https://ror.org/03q8zdw85', 'en', 1, 'https://ror.org/03q8zdw85 Accademia Nazionale di Arte Drammatica Silvio DAmico Silvio d''Amico National Academy of Dramatic Arts'), (43139, 'https://ror.org/03q98b746', 'en', 1, 'https://ror.org/03q98b746 Maroc Numeric Cluster'), (43140, 'https://ror.org/03q9jd971', 'en', 1, 'https://ror.org/03q9jd971 Vernon College'), (43141, 'https://ror.org/03qa0dm98', 'en', 1, 'https://ror.org/03qa0dm98 East Central Community College'), (43142, 'https://ror.org/03qcxsn76', 'en', 1, 'https://ror.org/03qcxsn76 Mental Health Commission'), (43143, 'https://ror.org/03qesm017', 'en', 1, 'https://ror.org/03qesm017 Southern Health NHS Foundation Trust'), (43144, 'https://ror.org/03qfn8998', 'no_lang_code', 1, 'https://ror.org/03qfn8998 Depomed (United States)'), (43145, 'https://ror.org/03qg6cx04', 'en', 1, 'https://ror.org/03qg6cx04 China National Committee for Terms in Sciences and Technologies 全国科学技术名词审定委员会'), (43146, 'https://ror.org/03qhht705', 'en', 1, 'https://ror.org/03qhht705 National Institute of Technology, Matsue College 松江工業高等専門学校'), (43147, 'https://ror.org/03qp8ma69', 'en', 1, 'https://ror.org/03qp8ma69 Center for Clinical Research Dalarna Centrum för Klinisk Forskning'), (43148, 'https://ror.org/03qq1s904', 'en', 1, 'https://ror.org/03qq1s904 Executive Office of Housing and Economic Development'), (43149, 'https://ror.org/03qs9h678', 'en', 1, 'https://ror.org/03qs9h678 Indonesian State College of Accountancy Sekolah Tinggi Akuntansi Negara'), (43150, 'https://ror.org/03qt57y19', 'no_lang_code', 1, 'https://ror.org/03qt57y19 Perrigo (Ireland)'), (43151, 'https://ror.org/03qvjfw18', 'en', 1, 'https://ror.org/03qvjfw18 Rio Hondo College'), (43152, 'https://ror.org/03qvv9093', 'pt', 1, 'https://ror.org/03qvv9093 Colsan - Associação Beneficente de Coleta de Sangue'), (43153, 'https://ror.org/03qw7bm31', 'en', 1, 'https://ror.org/03qw7bm31 Indian Society of International Law'), (43154, 'https://ror.org/03qwqnb95', 'no_lang_code', 1, 'https://ror.org/03qwqnb95 Deutsche Bank (Germany)'), (43155, 'https://ror.org/03qy49k44', 'en', 1, 'https://ror.org/03qy49k44 Agence Nationale des Parcs Nationaux National Agency for National Parks'), (43156, 'https://ror.org/03r0qcr69', 'no_lang_code', 1, 'https://ror.org/03r0qcr69 Syngaschem (Netherlands)'), (43157, 'https://ror.org/03r2s9s41', 'en', 1, 'https://ror.org/03r2s9s41 Skyline College'), (43158, 'https://ror.org/03r3n5r63', 'en', 1, 'https://ror.org/03r3n5r63 Food, Agriculture and Natural Resources Policy Analysis Network'), (43159, 'https://ror.org/03r5jfv76', 'no_lang_code', 1, 'https://ror.org/03r5jfv76 Amerisure Insurance (United States)'), (43160, 'https://ror.org/03r6d1b04', 'en', 1, 'https://ror.org/03r6d1b04 National Institute of Public Finance and Policy'), (43161, 'https://ror.org/03r7eh527', 'fr', 1, 'https://ror.org/03r7eh527 Laboratoire de Photophysique et Photochimie Supramoléculaires et Macromoléculaires'), (43162, 'https://ror.org/03r8r2789', 'no_lang_code', 1, 'https://ror.org/03r8r2789 Sify Technologies (India)'), (43163, 'https://ror.org/03rafms67', 'en', 1, 'https://ror.org/03rafms67 Plant Gene Expression Center'), (43164, 'https://ror.org/03rb26y64', 'en', 1, 'https://ror.org/03rb26y64 Collins College'), (43165, 'https://ror.org/03re0h651', 'no_lang_code', 1, 'https://ror.org/03re0h651 Zaytuna College'), (43166, 'https://ror.org/03rec7637', 'no_lang_code', 1, 'https://ror.org/03rec7637 Cigna (United States)'), (43167, 'https://ror.org/03reeve97', 'en', 1, 'https://ror.org/03reeve97 National Quarantine Station'), (43168, 'https://ror.org/03revcz59', 'en', 1, 'https://ror.org/03revcz59 Water and Power Development Authority واٹر اینڈ پاور ڈیولپمنٹ اتھارٹی'), (43169, 'https://ror.org/03rgtag81', 'no_lang_code', 1, 'https://ror.org/03rgtag81 Dhaka Regency Hotel and Resort (Bangladesh)'), (43170, 'https://ror.org/03rqcrq04', 'no_lang_code', 1, 'https://ror.org/03rqcrq04 Victoria Seeds (Uganda)'), (43171, 'https://ror.org/03rt0fp67', 'en', 1, 'https://ror.org/03rt0fp67 WaterAid'), (43172, 'https://ror.org/03rvrbb45', 'en', 1, 'https://ror.org/03rvrbb45 Higher Ecclesiastical Academy of Athens Ανώτατη Εκκλησιαστική Ακαδημία Αθήνας'), (43173, 'https://ror.org/03rxtcd18', 'no_lang_code', 1, 'https://ror.org/03rxtcd18 Kalgoorlie Consolidated Gold Mines (Australia)'), (43174, 'https://ror.org/03rzfjh59', 'pt', 1, 'https://ror.org/03rzfjh59 Centro Universitário Cesmac'), (43175, 'https://ror.org/03s01ed61', 'no_lang_code', 1, 'https://ror.org/03s01ed61 Yuma Therapeutics (United States)'), (43176, 'https://ror.org/03s0fv852', 'en', 1, 'https://ror.org/03s0fv852 Einstein Foundation Einstein Stiftung'), (43177, 'https://ror.org/03s130c71', 'en', 1, 'https://ror.org/03s130c71 State Council Leading Group of Poverty Alleviation and Development 国务院扶贫与发展集团'), (43178, 'https://ror.org/03s1kd923', 'en', 1, 'https://ror.org/03s1kd923 Center for Health, Human Rights and Development'), (43179, 'https://ror.org/03s26zd55', 'en', 1, 'https://ror.org/03s26zd55 Sorokdo National Hospital 국립소록도병원'), (43180, 'https://ror.org/03s2fjy85', 'en', 1, 'https://ror.org/03s2fjy85 Theological University of Apeldoorn Theologische Universiteit Apeldoorn'), (43181, 'https://ror.org/03s4x4e93', 'en', 1, 'https://ror.org/03s4x4e93 George Institute for Global Health'), (43182, 'https://ror.org/03s5w0e14', 'en', 1, 'https://ror.org/03s5w0e14 Indian Institute for Human Settlements'), (43183, 'https://ror.org/03s7h1x17', 'en', 1, 'https://ror.org/03s7h1x17 Bank of Korea'), (43184, 'https://ror.org/03sasjr79', 'en', 1, 'https://ror.org/03sasjr79 Yunnan Institute of Parasitic Diseases 云南寄生虫病防治网'), (43185, 'https://ror.org/03sfs6n55', 'en', 1, 'https://ror.org/03sfs6n55 Klamath Community College'), (43186, 'https://ror.org/03sgfhr82', 'es', 1, 'https://ror.org/03sgfhr82 Asociacion Para Evitar la Ceguera en México Hospital Dr. Luis Sánchez Bulnes'), (43187, 'https://ror.org/03sjyr749', 'en', 1, 'https://ror.org/03sjyr749 Mornington Peninsula Shire'), (43188, 'https://ror.org/03skjap48', 'en', 1, 'https://ror.org/03skjap48 Académie de droit international de La Haye Hague Academy of International Law'), (43189, 'https://ror.org/03spd6n49', 'en', 1, 'https://ror.org/03spd6n49 Electricity Generating Authority of Thailand การไฟฟ้าฝ่ายผลิตแห่งประเทศไทย'), (43190, 'https://ror.org/03spzdh62', 'no_lang_code', 1, 'https://ror.org/03spzdh62 Computational Sciences (United States)'), (43191, 'https://ror.org/03srzrr63', 'en', 1, 'https://ror.org/03srzrr63 Pittsburgh Theological Seminary'), (43192, 'https://ror.org/03ssr6t63', 'no_lang_code', 1, 'https://ror.org/03ssr6t63 Tiandi Science & Technology (China) 中煤科工集团西安研究院'), (43193, 'https://ror.org/03sttqc46', 'en', 1, 'https://ror.org/03sttqc46 Centre Suisse de Recherches Scientifiques en Côte d''Ivoire Swiss Centre for Scientific Research'), (43194, 'https://ror.org/03sv4d295', 'en', 1, 'https://ror.org/03sv4d295 Williamson College of the Trades'), (43195, 'https://ror.org/03sv4ev21', 'en', 1, 'https://ror.org/03sv4ev21 Christian Institute of Health Sciences and Research Hospital'), (43196, 'https://ror.org/03svd7w08', 'en', 1, 'https://ror.org/03svd7w08 West Midlands Deanery'), (43197, 'https://ror.org/03sz2k744', 'en', 1, 'https://ror.org/03sz2k744 National Law University, Delhi'), (43198, 'https://ror.org/03szbab20', 'fr', 1, 'https://ror.org/03szbab20 Institut Régional d''Administration'), (43199, 'https://ror.org/03szme345', 'en', 1, 'https://ror.org/03szme345 Institute of Tectonics and Geophysics named after Y.A. Kosygin ДВО РАН Институт Тектоники и Геофизики им. Ю.А.Косыгина'), (43200, 'https://ror.org/03t0k7069', 'no_lang_code', 1, 'https://ror.org/03t0k7069 McDonald''s (United States)'), (43201, 'https://ror.org/03t1tgz69', 'en', 1, 'https://ror.org/03t1tgz69 Academy for Five Element Acupuncture'), (43202, 'https://ror.org/03t5hbz89', 'en', 1, 'https://ror.org/03t5hbz89 Institute of Organic Chemistry Інститут органічної хімії'), (43203, 'https://ror.org/03t730d83', 'en', 1, 'https://ror.org/03t730d83 Yellowstone Christian College'), (43204, 'https://ror.org/03t7d6q88', 'en', 1, 'https://ror.org/03t7d6q88 Federal University of Applied Administrative Sciences Hochschule des Bundes für öffentliche Verwaltung École supérieure fédérale d’administration publique'), (43205, 'https://ror.org/03t89te61', 'no_lang_code', 1, 'https://ror.org/03t89te61 Mubadala (United Arab Emirates)'), (43206, 'https://ror.org/03t8n7w93', 'no_lang_code', 1, 'https://ror.org/03t8n7w93 Health Advances (United States)'), (43207, 'https://ror.org/03t9v7a05', 'it', 1, 'https://ror.org/03t9v7a05 Conservatorio di Musica Tito Schipa'), (43208, 'https://ror.org/03ta21y66', 'en', 1, 'https://ror.org/03ta21y66 Korea Institute for National Unification 통일연구원'), (43209, 'https://ror.org/03ta4hv58', 'en', 1, 'https://ror.org/03ta4hv58 Russian Research Institute for Phytopathology Научно-исследовательский институт фитопатологии России'), (43210, 'https://ror.org/03tajza86', 'fr', 1, 'https://ror.org/03tajza86 Agence de la Biomédecine'), (43211, 'https://ror.org/03tamv273', 'en', 1, 'https://ror.org/03tamv273 Instituto Tecnológico de Celaya Technological Institute of Celaya'), (43212, 'https://ror.org/03taxx854', 'en', 1, 'https://ror.org/03taxx854 Northwest Technical College'), (43213, 'https://ror.org/03tbxt129', 'en', 1, 'https://ror.org/03tbxt129 Guangzhou Institute of Geography 广州地理研究所'), (43214, 'https://ror.org/03tf2hn88', 'no_lang_code', 1, 'https://ror.org/03tf2hn88 Potentia (Namibia)'), (43215, 'https://ror.org/03tgywz49', 'en', 1, 'https://ror.org/03tgywz49 Korea Institute of Public Finance 한국조세재정연구원'), (43216, 'https://ror.org/03thb9733', 'en', 1, 'https://ror.org/03thb9733 Mudra Institute of Communications Ahmedabad'), (43217, 'https://ror.org/03thf4080', 'en', 1, 'https://ror.org/03thf4080 Ranney School'), (43218, 'https://ror.org/03thxbc14', 'en', 1, 'https://ror.org/03thxbc14 Western Seminary'), (43219, 'https://ror.org/03tjm2p32', 'en', 1, 'https://ror.org/03tjm2p32 Chuncheon National Hospital 국립춘천병원'), (43220, 'https://ror.org/03tkdcg84', 'no_lang_code', 1, 'https://ror.org/03tkdcg84 Magnisense (France)'), (43221, 'https://ror.org/03tmzec49', 'en', 1, 'https://ror.org/03tmzec49 Korea Research Institute for Vocational Education and Training 한국직업능력개발원'), (43222, 'https://ror.org/03tpxt335', 'en', 1, 'https://ror.org/03tpxt335 Water Supply and Sanitation Department पाणी पुरवठा व स्वच्छता विभाग'), (43223, 'https://ror.org/03tpyg842', 'en', 1, 'https://ror.org/03tpyg842 Michigan Department of Health and Human Services'), (43224, 'https://ror.org/03tsm8967', 'en', 1, 'https://ror.org/03tsm8967 Arts Midwest'), (43225, 'https://ror.org/03tt3bb59', 'en', 1, 'https://ror.org/03tt3bb59 British Institute of International and Comparative Law'), (43226, 'https://ror.org/03tv0yw82', 'no_lang_code', 1, 'https://ror.org/03tv0yw82 Kheth’Impilo'), (43227, 'https://ror.org/03tv4yh49', 'en', 1, 'https://ror.org/03tv4yh49 Nenets Agro-Economic College'), (43228, 'https://ror.org/03tx2pf91', 'en', 1, 'https://ror.org/03tx2pf91 Institute of Socio-Economic Development of Territories Институт социально-экономического развития территорий Российской академии наук'), (43229, 'https://ror.org/03tydf244', 'pt', 1, 'https://ror.org/03tydf244 Instituto Nacional de Ciência e Tecnologia em Excitotoxicidade e Neuroproteção'), (43230, 'https://ror.org/03tyfrs48', 'en', 1, 'https://ror.org/03tyfrs48 Saint Paul College'), (43231, 'https://ror.org/03tyjmh67', 'en', 1, 'https://ror.org/03tyjmh67 Melissa Institute for Violence Prevention and Treatment'), (43232, 'https://ror.org/03tzsk589', 'en', 1, 'https://ror.org/03tzsk589 British Council For Prevention of Blindness'), (43233, 'https://ror.org/03v05gb64', 'en', 1, 'https://ror.org/03v05gb64 Centre for the Rehabilitation of the Paralysed'), (43234, 'https://ror.org/03v16kr17', 'en', 1, 'https://ror.org/03v16kr17 Kentucky Mountain Bible College'), (43235, 'https://ror.org/03v4jhb18', 'en', 1, 'https://ror.org/03v4jhb18 Cranbrook Academy of Art'), (43236, 'https://ror.org/03v4rcp75', 'en', 1, 'https://ror.org/03v4rcp75 Area Territoriale di Ricerca del CNR di Bologna Bologna Research Area'), (43237, 'https://ror.org/03v4wsf43', 'no_lang_code', 1, 'https://ror.org/03v4wsf43 Mecachrome (France)'), (43238, 'https://ror.org/03v7b8950', 'sl', 1, 'https://ror.org/03v7b8950 Izobraževalni Center Piramida Maribor'), (43239, 'https://ror.org/03v8gvx29', 'en', 1, 'https://ror.org/03v8gvx29 American College of Psychiatrists'), (43240, 'https://ror.org/03ve5gp11', 'en', 1, 'https://ror.org/03ve5gp11 International Trauma Anesthesia and Critical Care Society'), (43241, 'https://ror.org/03ve8wd49', 'en', 1, 'https://ror.org/03ve8wd49 GS1 South Africa'), (43242, 'https://ror.org/03vemr371', 'en', 1, 'https://ror.org/03vemr371 Modesto Junior College'), (43243, 'https://ror.org/03vhd2n30', 'en', 1, 'https://ror.org/03vhd2n30 Circumpolar Agricultural Association'), (43244, 'https://ror.org/03vk3dn23', 'en', 1, 'https://ror.org/03vk3dn23 Global Water Partnership'), (43245, 'https://ror.org/03vkpnc84', 'en', 1, 'https://ror.org/03vkpnc84 Clarkson College'), (43246, 'https://ror.org/03vp67w60', 'en', 1, 'https://ror.org/03vp67w60 Max Planck Institute for Social Law and Social Policy Max-Planck-Institut für Sozialrecht und Sozialpolitik'), (43247, 'https://ror.org/03vpfss84', 'en', 1, 'https://ror.org/03vpfss84 Institute of Musculoskeletal Health and Arthritis'), (43248, 'https://ror.org/03vqakm84', 'en', 1, 'https://ror.org/03vqakm84 Institute of Mining Федеральное государственное бюджетное учреждение науки Горный институт Уральского отделения Российской академии наук'), (43249, 'https://ror.org/03vqkag84', 'en', 1, 'https://ror.org/03vqkag84 American College of Education'), (43250, 'https://ror.org/03vr80018', 'en', 1, 'https://ror.org/03vr80018 Escola de Mar School of Sea'), (43251, 'https://ror.org/03vsjrm65', 'no_lang_code', 1, 'https://ror.org/03vsjrm65 Economic Expert Group (Russia) Экономическая экспертная группа'), (43252, 'https://ror.org/03vsjrq56', 'no_lang_code', 1, 'https://ror.org/03vsjrq56 Abiant (United States)'), (43253, 'https://ror.org/03vv7cm03', 'en', 1, 'https://ror.org/03vv7cm03 Institute of Mathematics with Computer Center Институт математики с вычислительным центром УНЦ РАН'), (43254, 'https://ror.org/03vwp3588', 'en', 1, 'https://ror.org/03vwp3588 Arkleton Trust'), (43255, 'https://ror.org/03vz3qc29', 'en', 1, 'https://ror.org/03vz3qc29 Evangelische Hochschule Rheinland-Westfalen-Lippe Protestant University of Applied Sciences Rhineland-Westphalia-Lippe'), (43256, 'https://ror.org/03w077619', 'en', 1, 'https://ror.org/03w077619 Federal College of Fisheries and Marine Technology'), (43257, 'https://ror.org/03w27x846', 'en', 1, 'https://ror.org/03w27x846 Sachverständigenrat deutscher Stiftungen für Integration und Migration The Expert Council of German Foundations on Integration and Migration'), (43258, 'https://ror.org/03w2ae733', 'en', 1, 'https://ror.org/03w2ae733 Armed Forces Academies Preparatory School โรงเรียนเตรียมทหาร'), (43259, 'https://ror.org/03w2dn060', 'en', 1, 'https://ror.org/03w2dn060 African Institute for Capacity Development'), (43260, 'https://ror.org/03w4wmy72', 'no_lang_code', 1, 'https://ror.org/03w4wmy72 Genomic Vision (France)'), (43261, 'https://ror.org/03w5vx872', 'en', 1, 'https://ror.org/03w5vx872 Guangxi Mangrove Research Center 广西红树林研究中心'), (43262, 'https://ror.org/03w6ebm44', 'en', 1, 'https://ror.org/03w6ebm44 South Arts'), (43263, 'https://ror.org/03w6f4808', 'en', 1, 'https://ror.org/03w6f4808 Technical College of the Lowcountry'), (43264, 'https://ror.org/03w7tfy68', 'en', 1, 'https://ror.org/03w7tfy68 Reformed Theological College'), (43265, 'https://ror.org/03waye253', 'de', 1, 'https://ror.org/03waye253 Fachhochschule der Sächsischen Verwaltung Meißen'), (43266, 'https://ror.org/03wb61205', 'no_lang_code', 1, 'https://ror.org/03wb61205 Sappi (South Africa)'), (43267, 'https://ror.org/03wd9vk87', 'en', 1, 'https://ror.org/03wd9vk87 Beijing Meteorological Bureau 北京市气象局'), (43268, 'https://ror.org/03wejsv15', 'en', 1, 'https://ror.org/03wejsv15 Ministry of Defence रक्षा मंत्रालय'), (43269, 'https://ror.org/03wgj1374', 'en', 1, 'https://ror.org/03wgj1374 Legislative Assembly of Saskatchewan'), (43270, 'https://ror.org/03wgnjj45', 'en', 1, 'https://ror.org/03wgnjj45 Uganda National Meteorological Authority'), (43271, 'https://ror.org/03whbx426', 'fr', 1, 'https://ror.org/03whbx426 Institut National de Santé Publique'), (43272, 'https://ror.org/03wj7cn78', 'no_lang_code', 1, 'https://ror.org/03wj7cn78 AxisCades (India)'), (43273, 'https://ror.org/03wjj7779', 'en', 1, 'https://ror.org/03wjj7779 Massachusetts Department of Agricultural Resources'), (43274, 'https://ror.org/03wkfdc28', 'pt', 1, 'https://ror.org/03wkfdc28 Centro Dramático de Évora'), (43275, 'https://ror.org/03wnt7k73', 'no_lang_code', 1, 'https://ror.org/03wnt7k73 Hormel (United States)'), (43276, 'https://ror.org/03wp7b065', 'en', 1, 'https://ror.org/03wp7b065 Neighborhood Playhouse School of the Theatre'), (43277, 'https://ror.org/03wrf9427', 'en', 1, 'https://ror.org/03wrf9427 Shenzhen Institute of Information Technology 深圳信息职业技术学院'), (43278, 'https://ror.org/03wy2a142', 'en', 1, 'https://ror.org/03wy2a142 New Jersey Commission on Science, Innovation and Technology'), (43279, 'https://ror.org/03wyye266', 'en', 1, 'https://ror.org/03wyye266 Townhouse Gallery'), (43280, 'https://ror.org/03wzvrw53', 'en', 1, 'https://ror.org/03wzvrw53 Feather River College'), (43281, 'https://ror.org/03x05n260', 'en', 1, 'https://ror.org/03x05n260 South China Institute Of Environmental Sciences 环境保护部华南环境科学研究所'), (43282, 'https://ror.org/03x131c97', 'en', 1, 'https://ror.org/03x131c97 International Institute for Restorative Practices'), (43283, 'https://ror.org/03x1zq178', 'en', 1, 'https://ror.org/03x1zq178 Biznesa vadības koledža College of Business Administration'), (43284, 'https://ror.org/03x30pe27', 'fr', 1, 'https://ror.org/03x30pe27 Office National de la Météorologie'), (43285, 'https://ror.org/03x467203', 'en', 1, 'https://ror.org/03x467203 Truman Library Institute'), (43286, 'https://ror.org/03x4sv346', 'en', 1, 'https://ror.org/03x4sv346 Ministarstvo zdravstva Ministry of Health'), (43287, 'https://ror.org/03x529519', 'en', 1, 'https://ror.org/03x529519 Ministry of Finance 財務省'), (43288, 'https://ror.org/03x5adz07', 'en', 1, 'https://ror.org/03x5adz07 UsAgainstAlzheimer'), (43289, 'https://ror.org/03x6axv89', 'en', 1, 'https://ror.org/03x6axv89 Riverside City College'), (43290, 'https://ror.org/03x76j861', 'no_lang_code', 1, 'https://ror.org/03x76j861 Dynegy (United States)'), (43291, 'https://ror.org/03x8h1v05', 'fr', 1, 'https://ror.org/03x8h1v05 École Supérieure du Bois'), (43292, 'https://ror.org/03x8myy24', 'en', 1, 'https://ror.org/03x8myy24 Centre for Coordination of Agricultural Research and Development for Southern Africa'), (43293, 'https://ror.org/03xh5a585', 'en', 1, 'https://ror.org/03xh5a585 Ministry of Agriculture'), (43294, 'https://ror.org/03xj8qc33', 'en', 1, 'https://ror.org/03xj8qc33 Dania Academy of Higher Education'), (43295, 'https://ror.org/03xja9992', 'en', 1, 'https://ror.org/03xja9992 Hindustan Bible Institute & College'), (43296, 'https://ror.org/03xmwfe88', 'en', 1, 'https://ror.org/03xmwfe88 National Wool Growers Associations of South Africa'), (43297, 'https://ror.org/03xn5qt57', 'no_lang_code', 1, 'https://ror.org/03xn5qt57 Landsvirkjun (Iceland)'), (43298, 'https://ror.org/03xn8gh76', 'no_lang_code', 1, 'https://ror.org/03xn8gh76 Sipra Labs (India)'), (43299, 'https://ror.org/03xnf5k89', 'en', 1, 'https://ror.org/03xnf5k89 Common Fund for Commodities'), (43300, 'https://ror.org/03xnmzw54', 'en', 1, 'https://ror.org/03xnmzw54 Kansas Space Grant Consortium'); INSERT INTO `rors` VALUES (43301, 'https://ror.org/03xr30889', 'en', 1, 'https://ror.org/03xr30889 Tianjin Meteorological Bureau 天津市气象局 制作'), (43302, 'https://ror.org/03xscnc52', 'en', 1, 'https://ror.org/03xscnc52 Saami Council'), (43303, 'https://ror.org/03xsk8f60', 'en', 1, 'https://ror.org/03xsk8f60 Architectural League of New York'), (43304, 'https://ror.org/03xws5b35', 'nl', 1, 'https://ror.org/03xws5b35 Marnix Academie'), (43305, 'https://ror.org/03y02pg02', 'en', 1, 'https://ror.org/03y02pg02 Hochschule für Musik Detmold University of Music Detmold'), (43306, 'https://ror.org/03y0dv989', 'en', 1, 'https://ror.org/03y0dv989 Qaemshahr Islamic Azad University دانشگاه آزاد اسلامی واحد قائمشهر'), (43307, 'https://ror.org/03y13mg86', 'en', 1, 'https://ror.org/03y13mg86 Grayson College'), (43308, 'https://ror.org/03y14xz82', 'en', 1, 'https://ror.org/03y14xz82 Jewish Board of Family and Children''s Services'), (43309, 'https://ror.org/03y1x4f32', 'en', 1, 'https://ror.org/03y1x4f32 Music and Arts University of the City of Vienna Musik und Kunst Privatuniversität der Stadt Wien'), (43310, 'https://ror.org/03y1z8727', 'no_lang_code', 1, 'https://ror.org/03y1z8727 Remegenix (United States)'), (43311, 'https://ror.org/03y1zyv86', 'en', 1, 'https://ror.org/03y1zyv86 Oklahoma State University Oklahoma City, Oklahoma State University–Oklahoma City'), (43312, 'https://ror.org/03y28aj90', 'no_lang_code', 1, 'https://ror.org/03y28aj90 Cummins (United States)'), (43313, 'https://ror.org/03y33h821', 'en', 1, 'https://ror.org/03y33h821 Jiangsu Institute of Meteorological Sciences 江苏省气象科学研究所'), (43314, 'https://ror.org/03y350s17', 'no_lang_code', 1, 'https://ror.org/03y350s17 West Bengal Electronics Industry Development Corporation Limited (India) পশ্চিমবঙ্গ ইলেকট্রনিক্স শিল্প উন্নয়ন কর্পোরেশন লিমিটেড'), (43315, 'https://ror.org/03y37ca41', 'fr', 1, 'https://ror.org/03y37ca41 Haute École de la Ville de Liège'), (43316, 'https://ror.org/03y3qvs38', 'en', 1, 'https://ror.org/03y3qvs38 Southwest Acupuncture College - Boulder'), (43317, 'https://ror.org/03y6ab910', 'en', 1, 'https://ror.org/03y6ab910 Farm Africa Ethiopia'), (43318, 'https://ror.org/03y6m2j03', 'en', 1, 'https://ror.org/03y6m2j03 China University of Technology 中國科技大學'), (43319, 'https://ror.org/03y95vf10', 'en', 1, 'https://ror.org/03y95vf10 National Library of Russia Российская национальная библиотека'), (43320, 'https://ror.org/03ya8jr27', 'no_lang_code', 1, 'https://ror.org/03ya8jr27 Health Science Academy (South Africa)'), (43321, 'https://ror.org/03ybgf406', 'en', 1, 'https://ror.org/03ybgf406 Urumqi General Hospital of PLA 兰州军区乌鲁木齐总医院'), (43322, 'https://ror.org/03ycy6g75', 'en', 1, 'https://ror.org/03ycy6g75 New York Space Grant Consortium'), (43323, 'https://ror.org/03ye1a762', 'en', 1, 'https://ror.org/03ye1a762 Alliance Nationale Contre le SIDA en Cote d''Ivoire Alliance of Health'), (43324, 'https://ror.org/03ye76s02', 'en', 1, 'https://ror.org/03ye76s02 Eastern Wyoming College'), (43325, 'https://ror.org/03yfbaq97', 'no_lang_code', 1, 'https://ror.org/03yfbaq97 Harman (United States)'), (43326, 'https://ror.org/03yjs4n28', 'en', 1, 'https://ror.org/03yjs4n28 Commonwealth Education Trust'), (43327, 'https://ror.org/03yk5sc72', 'en', 1, 'https://ror.org/03yk5sc72 Manhattan Area Technical College'), (43328, 'https://ror.org/03ymf7q07', 'no_lang_code', 1, 'https://ror.org/03ymf7q07 Sun Pharma Advanced Research (India)'), (43329, 'https://ror.org/03ymmms77', 'en', 1, 'https://ror.org/03ymmms77 Institute of Continuous Media Mechanics Институт механики сплошных сред'), (43330, 'https://ror.org/03yq84q39', 'en', 1, 'https://ror.org/03yq84q39 Centre For Environment Architecture & Human Settlements'), (43331, 'https://ror.org/03yvf9v84', 'en', 1, 'https://ror.org/03yvf9v84 Father Muller Homoeopathic Medical College'), (43332, 'https://ror.org/03ywbpv23', 'it', 1, 'https://ror.org/03ywbpv23 Conservatorio di Musica Pierluigi da Palestrina'), (43333, 'https://ror.org/03ywskk07', 'pt', 1, 'https://ror.org/03ywskk07 Faculdade de Medicina de Jundiaí'), (43334, 'https://ror.org/03yxw1t21', 'en', 1, 'https://ror.org/03yxw1t21 Academy of Fine Arts Nuremberg Akademie der Bildenden Künste Nürnberg'), (43335, 'https://ror.org/03yz5ry83', 'en', 1, 'https://ror.org/03yz5ry83 Centre for Educational Development in Health Arusha'), (43336, 'https://ror.org/03z54xm22', 'en', 1, 'https://ror.org/03z54xm22 Near East School of Theology'), (43337, 'https://ror.org/03z5dpc36', 'en', 1, 'https://ror.org/03z5dpc36 Pennsylvania Department of Military and Veterans Affairs'), (43338, 'https://ror.org/03z7hft29', 'en', 1, 'https://ror.org/03z7hft29 British Federation of Women Graduates'), (43339, 'https://ror.org/03z86v888', 'sl', 1, 'https://ror.org/03z86v888 Šolski center Slovenj Gradec'), (43340, 'https://ror.org/03z90hq89', 'en', 1, 'https://ror.org/03z90hq89 Central Scientific Research Institute of Tuberculosis Russian Academy of Medical Sciences Центральный научно-исследовательский институт туберкулеза Российской академии медицинских наук'), (43341, 'https://ror.org/03z9hh605', 'en', 1, 'https://ror.org/03z9hh605 Division of Antarctic Infrastructure and Logistics'), (43342, 'https://ror.org/03zb1qq41', 'en', 1, 'https://ror.org/03zb1qq41 Guizhou Institute of Plant Protection 贵州省植物保护研究所'), (43343, 'https://ror.org/03zb78h42', 'pt', 1, 'https://ror.org/03zb78h42 Mendelics'), (43344, 'https://ror.org/03zbza087', 'fr', 1, 'https://ror.org/03zbza087 Association de Recherche de Communication et d’Accompagnement à Domicile de personnes Vivant avec le VIH'), (43345, 'https://ror.org/03zc86h29', 'en', 1, 'https://ror.org/03zc86h29 Carteret Community College'), (43346, 'https://ror.org/03ze2zr46', 'no_lang_code', 1, 'https://ror.org/03ze2zr46 AXO Science (France)'), (43347, 'https://ror.org/03zeyg902', 'en', 1, 'https://ror.org/03zeyg902 Institute of Engineering Science Федеральное государственное бюджетное учреждение науки Институт машиноведения Уральского отделения Российской академии наук'), (43348, 'https://ror.org/03zfxaj88', 'pl', 1, 'https://ror.org/03zfxaj88 Higher School of Humanities in Leszno Wyższa Szkoła Humanistyczna'), (43349, 'https://ror.org/03zhqjb33', 'en', 1, 'https://ror.org/03zhqjb33 Ceramic Society of Japan 日本セラミックス協会'), (43350, 'https://ror.org/03zhv0t98', 'no_lang_code', 1, 'https://ror.org/03zhv0t98 WSFS Financial Corporation (United States)'), (43351, 'https://ror.org/03zjevq63', 'en', 1, 'https://ror.org/03zjevq63 Korea Air Force Academy 공군사관학교'), (43352, 'https://ror.org/03zmqr331', 'no_lang_code', 1, 'https://ror.org/03zmqr331 Bristol-Myers Squibb (India)'), (43353, 'https://ror.org/03zqvfs52', 'en', 1, 'https://ror.org/03zqvfs52 Israel National Road Safety Authority'), (43354, 'https://ror.org/03zqzpy75', 'en', 1, 'https://ror.org/03zqzpy75 Texas Council for Developmental Disabilities'), (43355, 'https://ror.org/03zrrks14', 'no_lang_code', 1, 'https://ror.org/03zrrks14 Metav (Romania)'), (43356, 'https://ror.org/03zs93v51', 'en', 1, 'https://ror.org/03zs93v51 Ministry of Foreign Affairs Ministério dos Negócios Estrangeiros'), (43357, 'https://ror.org/03zsz9v82', 'it', 1, 'https://ror.org/03zsz9v82 Accademia di Belle Arti di Foggia'), (43358, 'https://ror.org/03zt3va85', 'fr', 1, 'https://ror.org/03zt3va85 Institut de Paléontologie Humaine'), (43359, 'https://ror.org/03zx8g717', 'no_lang_code', 1, 'https://ror.org/03zx8g717 Techno India Group (India)'), (43360, 'https://ror.org/03zxry661', 'en', 1, 'https://ror.org/03zxry661 European Investment Bank'), (43361, 'https://ror.org/0400m9h41', 'en', 1, 'https://ror.org/0400m9h41 Grays Harbor College'), (43362, 'https://ror.org/0403qeq92', 'en', 1, 'https://ror.org/0403qeq92 Pearl River Community College'), (43363, 'https://ror.org/04040wx85', 'no_lang_code', 1, 'https://ror.org/04040wx85 Fukushima College 福島学院大学'), (43364, 'https://ror.org/0404w7c41', 'fr', 1, 'https://ror.org/0404w7c41 AFRICSanté'), (43365, 'https://ror.org/04056ja87', 'en', 1, 'https://ror.org/04056ja87 Technological Educational Institute of Thessaly Τεχνολογικό Εκπαιδευτικό Ίδρυμα Λάρισας'), (43366, 'https://ror.org/0406h9r54', 'en', 1, 'https://ror.org/0406h9r54 Korea Green Promotion Agency'), (43367, 'https://ror.org/040817k51', 'en', 1, 'https://ror.org/040817k51 Centre For Development Alternatives'), (43368, 'https://ror.org/040aqz944', 'no_lang_code', 1, 'https://ror.org/040aqz944 Cargill (Netherlands)'), (43369, 'https://ror.org/040cw3796', 'en', 1, 'https://ror.org/040cw3796 British Ornithologists Union'), (43370, 'https://ror.org/040dgqr26', 'en', 1, 'https://ror.org/040dgqr26 National Institute of Pharmaceutical Education and Research'), (43371, 'https://ror.org/040dxjz28', 'de', 1, 'https://ror.org/040dxjz28 Fachhochschule für öffentliche Verwaltung, Polizei und Rechtspflege des Landes Mecklenburg-Vorpommern'), (43372, 'https://ror.org/040er0w10', 'en', 1, 'https://ror.org/040er0w10 All-Russian Scientific Research Institute of Food Biotechnology ВСЕРОССИЙСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ ПИЩЕВОЙ БИОТЕХНОЛОГИИ'), (43373, 'https://ror.org/040eytj64', 'en', 1, 'https://ror.org/040eytj64 St.Martha''s College Of Nursing'), (43374, 'https://ror.org/040f10867', 'en', 1, 'https://ror.org/040f10867 Taiyuan Central Hospital 太原市中心医院'), (43375, 'https://ror.org/040fqas51', 'no_lang_code', 1, 'https://ror.org/040fqas51 Baxalta (United States)'), (43376, 'https://ror.org/040gs8e06', 'de', 1, 'https://ror.org/040gs8e06 Haute École Pédagogique du Valais Pädagogische Hochschule Wallis'), (43377, 'https://ror.org/040gxv777', 'en', 1, 'https://ror.org/040gxv777 Delaney AIDS Research Enterprise'), (43378, 'https://ror.org/040hdjp50', 'en', 1, 'https://ror.org/040hdjp50 United States Army Reserve'), (43379, 'https://ror.org/040hfpx97', 'en', 1, 'https://ror.org/040hfpx97 CEC ArtsLink'), (43380, 'https://ror.org/040rcm367', 'no_lang_code', 1, 'https://ror.org/040rcm367 Virtual Materials Group (Canada)'), (43381, 'https://ror.org/040rd2b57', 'no_lang_code', 1, 'https://ror.org/040rd2b57 Mapúa University Suriang Mapúa ng Teknolohiya'), (43382, 'https://ror.org/040s5rx17', 'en', 1, 'https://ror.org/040s5rx17 Texas Department of Aging and Disability Services'), (43383, 'https://ror.org/040vj3n59', 'en', 1, 'https://ror.org/040vj3n59 Dunwoody College of Technology'), (43384, 'https://ror.org/040xtna86', 'fr', 1, 'https://ror.org/040xtna86 Ministère de l''Agriculture, du Développement Rural et de la Pêche'), (43385, 'https://ror.org/040y9br29', 'en', 1, 'https://ror.org/040y9br29 Africa Rice Center'), (43386, 'https://ror.org/040ybj657', 'en', 1, 'https://ror.org/040ybj657 Banco Central de Venezuela Central Bank of Venezuela'), (43387, 'https://ror.org/040ykgb05', 'en', 1, 'https://ror.org/040ykgb05 Halifax Community College'), (43388, 'https://ror.org/040z06056', 'en', 1, 'https://ror.org/040z06056 Manubhai Patel Dental College and Hospital'), (43389, 'https://ror.org/040zb1w28', 'en', 1, 'https://ror.org/040zb1w28 Eesti Infotehnoloogia Kolledž Estonian Information Technology College'), (43390, 'https://ror.org/040zy7h93', 'fr', 1, 'https://ror.org/040zy7h93 Société Générale des Travaux du Maroc'), (43391, 'https://ror.org/041169e26', 'en', 1, 'https://ror.org/041169e26 Ministry of Water and Energy'), (43392, 'https://ror.org/0411p0k29', 'en', 1, 'https://ror.org/0411p0k29 Australian Institute of Physics'), (43393, 'https://ror.org/04141fq07', 'no_lang_code', 1, 'https://ror.org/04141fq07 Lepra Society'), (43394, 'https://ror.org/0414wrz80', 'no_lang_code', 1, 'https://ror.org/0414wrz80 United Continental (United States)'), (43395, 'https://ror.org/0415ygs14', 'en', 1, 'https://ror.org/0415ygs14 National Institute of Technology, Tomakomai College 苫小牧工業高等専門学校'), (43396, 'https://ror.org/041621784', 'en', 1, 'https://ror.org/041621784 Texas College of Traditional Chinese Medicine, Texas Health and Science University'), (43397, 'https://ror.org/0416smw97', 'en', 1, 'https://ror.org/0416smw97 Ovarian Awareness Walk'), (43398, 'https://ror.org/0417mky81', 'en', 1, 'https://ror.org/0417mky81 Resource Optimization Initiative'), (43399, 'https://ror.org/0417r6n29', 'en', 1, 'https://ror.org/0417r6n29 Richland College'), (43400, 'https://ror.org/041a9yj35', 'fr', 1, 'https://ror.org/041a9yj35 Société de Conseil et de Prospective Scientifique'), (43401, 'https://ror.org/041dhrh62', 'en', 1, 'https://ror.org/041dhrh62 Ministry of Mines, Industry and Technological Development Ministère des Mines, de l''Industrie et du Développement Technologique'), (43402, 'https://ror.org/041dvyp82', 'fr', 1, 'https://ror.org/041dvyp82 Institut Technique des Grandes Cultures'), (43403, 'https://ror.org/041e5xy86', 'no_lang_code', 1, 'https://ror.org/041e5xy86 Chugoku Marine Paints (Japan) 中国塗料株式会社'), (43404, 'https://ror.org/041g2nn20', 'en', 1, 'https://ror.org/041g2nn20 Research on Poverty Alleviation'), (43405, 'https://ror.org/041hbh421', 'en', 1, 'https://ror.org/041hbh421 Community Development Resource Network'), (43406, 'https://ror.org/041j39g66', 'en', 1, 'https://ror.org/041j39g66 St. Mary’s Hospital'), (43407, 'https://ror.org/041j7s452', 'en', 1, 'https://ror.org/041j7s452 Thailand National Metal and Materials Technology Center ศูนย์เทคโนโลยีโลหะและวัสดุแห่งชาติ'), (43408, 'https://ror.org/041kv9d24', 'en', 1, 'https://ror.org/041kv9d24 Miles Community College'), (43409, 'https://ror.org/041m1e551', 'en', 1, 'https://ror.org/041m1e551 Princeton Public Schools'), (43410, 'https://ror.org/041nsyx41', 'fr', 1, 'https://ror.org/041nsyx41 Coordination Nationale des Organisations Paysannes du Mali'), (43411, 'https://ror.org/041q18g77', 'en', 1, 'https://ror.org/041q18g77 Office of the Attorney General Virginia'), (43412, 'https://ror.org/041q21635', 'en', 1, 'https://ror.org/041q21635 Nigerian Institute for Trypanosomiasis Research'), (43413, 'https://ror.org/041r43076', 'no_lang_code', 1, 'https://ror.org/041r43076 Etablissements Abdelmoula (Tunisia)'), (43414, 'https://ror.org/041s2dw89', 'pt', 1, 'https://ror.org/041s2dw89 Fundo para o Desenvolvimento Tecnológico das Telecomunicações'), (43415, 'https://ror.org/041tbvj87', 'en', 1, 'https://ror.org/041tbvj87 Westmoreland County Community College'), (43416, 'https://ror.org/041vyyf82', 'no_lang_code', 1, 'https://ror.org/041vyyf82 Avaya (United States)'), (43417, 'https://ror.org/041w2kh96', 'en', 1, 'https://ror.org/041w2kh96 University of Applied Sciences Europe'), (43418, 'https://ror.org/041ws6x07', 'it', 1, 'https://ror.org/041ws6x07 Istituto di Alta Formazione Musicale Conservatorio "Claudio Monteverdi"'), (43419, 'https://ror.org/041wtwq79', 'en', 1, 'https://ror.org/041wtwq79 New Jersey Turnpike Authority'), (43420, 'https://ror.org/041y4nv46', 'en', 1, 'https://ror.org/041y4nv46 Centre for Sexual Health and HIV AIDS Research'), (43421, 'https://ror.org/041yajy32', 'en', 1, 'https://ror.org/041yajy32 Nansen Environmental Research Centre India'), (43422, 'https://ror.org/041z20775', 'en', 1, 'https://ror.org/041z20775 Mvumi Hospital'), (43423, 'https://ror.org/0420s7j63', 'en', 1, 'https://ror.org/0420s7j63 Northwestern Connecticut Community College'), (43424, 'https://ror.org/042183v27', 'en', 1, 'https://ror.org/042183v27 Nick Kot Charity For TBI'), (43425, 'https://ror.org/0421aqz02', 'en', 1, 'https://ror.org/0421aqz02 Westminster College - Missouri'), (43426, 'https://ror.org/0422vxn54', 'en', 1, 'https://ror.org/0422vxn54 Ministry of Irrigation and Water Development'), (43427, 'https://ror.org/0423rx754', 'no_lang_code', 1, 'https://ror.org/0423rx754 Converse (United States)'), (43428, 'https://ror.org/042404z19', 'en', 1, 'https://ror.org/042404z19 Coeliac UK'), (43429, 'https://ror.org/0424a8630', 'en', 1, 'https://ror.org/0424a8630 Beijing Botanical Garden 北京植物园'), (43430, 'https://ror.org/0424j7c73', 'en', 1, 'https://ror.org/0424j7c73 Institute for Scintillation Materials Інститут сцинтиляційних матеріалів'), (43431, 'https://ror.org/0425rfe30', 'no_lang_code', 1, 'https://ror.org/0425rfe30 Naturamole (France)'), (43432, 'https://ror.org/042618t81', 'en', 1, 'https://ror.org/042618t81 Medical Advances Without Animals Trust'), (43433, 'https://ror.org/0427xec12', 'en', 1, 'https://ror.org/0427xec12 Islamic Society of North America'), (43434, 'https://ror.org/0428azw09', 'en', 1, 'https://ror.org/0428azw09 Talmudic University'), (43435, 'https://ror.org/0428exr50', 'no_lang_code', 1, 'https://ror.org/0428exr50 Environmental Systems Research Institute (United States)'), (43436, 'https://ror.org/0428qkc73', 'en', 1, 'https://ror.org/0428qkc73 Saint Vladimir''s Orthodox Theological Seminary Séminaire saint-vladimir'), (43437, 'https://ror.org/04298em06', 'en', 1, 'https://ror.org/04298em06 Central Arid Zone Research Institute'), (43438, 'https://ror.org/042bcp892', 'en', 1, 'https://ror.org/042bcp892 MTI College'), (43439, 'https://ror.org/042cj6q83', 'no_lang_code', 1, 'https://ror.org/042cj6q83 Nintendo (United States)'), (43440, 'https://ror.org/042dg8338', 'en', 1, 'https://ror.org/042dg8338 Rudolf Steiner College'), (43441, 'https://ror.org/042dgb341', 'fr', 1, 'https://ror.org/042dgb341 Institut Superieur Des Sciences De La Population'), (43442, 'https://ror.org/042dm9855', 'no_lang_code', 1, 'https://ror.org/042dm9855 Aegon (United States)'), (43443, 'https://ror.org/042e5sj03', 'no_lang_code', 1, 'https://ror.org/042e5sj03 mHealth (Kenya)'), (43444, 'https://ror.org/042heys49', 'no_lang_code', 1, 'https://ror.org/042heys49 Islamic Azad University Tonekabon'), (43445, 'https://ror.org/042k2b411', 'en', 1, 'https://ror.org/042k2b411 National Centre for Sustainable Coastal Management'), (43446, 'https://ror.org/042k6ee15', 'en', 1, 'https://ror.org/042k6ee15 Pakistan Space and Upper Atmosphere Research Commission خلائی و بالائی فضائی تحقیقاتی مأموریہ'), (43447, 'https://ror.org/042k9q065', 'en', 1, 'https://ror.org/042k9q065 European Business School Paris'), (43448, 'https://ror.org/042n52121', 'en', 1, 'https://ror.org/042n52121 Southern African Development Community'), (43449, 'https://ror.org/042pnza07', 'no_lang_code', 1, 'https://ror.org/042pnza07 Pfizer (Australia)'), (43450, 'https://ror.org/042ryz918', 'pt', 1, 'https://ror.org/042ryz918 Colégio Teresiano de Braga'), (43451, 'https://ror.org/042szwr56', 'en', 1, 'https://ror.org/042szwr56 Spinal Research'), (43452, 'https://ror.org/042vyea63', 'en', 1, 'https://ror.org/042vyea63 Institute of Environmental Studies & Wetland Management'), (43453, 'https://ror.org/04320xd69', 'en', 1, 'https://ror.org/04320xd69 National Water Research Center'), (43454, 'https://ror.org/0432tev68', 'en', 1, 'https://ror.org/0432tev68 Davao Medical School Foundation'), (43455, 'https://ror.org/0433haa75', 'no_lang_code', 1, 'https://ror.org/0433haa75 Hyundai Heavy Industries (South Korea)'), (43456, 'https://ror.org/0433rbd97', 'en', 1, 'https://ror.org/0433rbd97 Paradise Valley Community College'), (43457, 'https://ror.org/0433t4193', 'en', 1, 'https://ror.org/0433t4193 Office of the First Minister and deputy First Minister'), (43458, 'https://ror.org/0433t4a66', 'en', 1, 'https://ror.org/0433t4a66 Netaji Subhas National Institute of Sports'), (43459, 'https://ror.org/0435dnz03', 'en', 1, 'https://ror.org/0435dnz03 Interdenominational Theological Center'), (43460, 'https://ror.org/0436b4p03', 'no_lang_code', 1, 'https://ror.org/0436b4p03 Madera BioSciences (United States)'), (43461, 'https://ror.org/0436hqh35', 'no_lang_code', 1, 'https://ror.org/0436hqh35 MAPNA Group (Iran)'), (43462, 'https://ror.org/0437gna76', 'en', 1, 'https://ror.org/0437gna76 Concordia College - New York'), (43463, 'https://ror.org/0437zex07', 'no_lang_code', 1, 'https://ror.org/0437zex07 Macopharma (France)'), (43464, 'https://ror.org/04397y226', 'en', 1, 'https://ror.org/04397y226 Canterbury Museum'), (43465, 'https://ror.org/043b7ay30', 'no_lang_code', 1, 'https://ror.org/043b7ay30 Helion (France)'), (43466, 'https://ror.org/043cxr310', 'no_lang_code', 1, 'https://ror.org/043cxr310 Mastercard (United States)'), (43467, 'https://ror.org/043dpbz34', 'fr', 1, 'https://ror.org/043dpbz34 Programme National Multisectoriel de Lutte contre le sida'), (43468, 'https://ror.org/043f79m81', 'no_lang_code', 1, 'https://ror.org/043f79m81 Neovii Biotech (Germany)'), (43469, 'https://ror.org/043jbda17', 'fr', 1, 'https://ror.org/043jbda17 Groupe de Musique Electroacoustique d''Albi'), (43470, 'https://ror.org/043jtq828', 'en', 1, 'https://ror.org/043jtq828 Dallas Christian College'), (43471, 'https://ror.org/043jwkg64', 'fr', 1, 'https://ror.org/043jwkg64 Agence pour le Développement et la Réhabilitation de la Ville de Fès'), (43472, 'https://ror.org/043kws463', 'no_lang_code', 1, 'https://ror.org/043kws463 Sun Nuclear (United States)'), (43473, 'https://ror.org/043n0m737', 'en', 1, 'https://ror.org/043n0m737 Virginia Economic Development Partnership'), (43474, 'https://ror.org/043ncwv78', 'no_lang_code', 1, 'https://ror.org/043ncwv78 IBM (Denmark)'), (43475, 'https://ror.org/043rj4j47', 'no_lang_code', 1, 'https://ror.org/043rj4j47 Avantha (India)'), (43476, 'https://ror.org/043sd6y04', 'no_lang_code', 1, 'https://ror.org/043sd6y04 Helios Global (United States)'), (43477, 'https://ror.org/043v8bs69', 'en', 1, 'https://ror.org/043v8bs69 Urban Management Centre'), (43478, 'https://ror.org/043w1y866', 'en', 1, 'https://ror.org/043w1y866 National Research Centre on Mithun'), (43479, 'https://ror.org/043w4dx82', 'fr', 1, 'https://ror.org/043w4dx82 École Militaire Interarmes'), (43480, 'https://ror.org/043xe1r71', 'no_lang_code', 1, 'https://ror.org/043xe1r71 C-M Concrete Products (Australia)'), (43481, 'https://ror.org/043xy0x82', 'en', 1, 'https://ror.org/043xy0x82 Boston Baptist College'), (43482, 'https://ror.org/043z25g17', 'en', 1, 'https://ror.org/043z25g17 Louisiana State University of Alexandria Université d''État de Louisiane à Alexandria'), (43483, 'https://ror.org/043zcks33', 'en', 1, 'https://ror.org/043zcks33 International Institute for Sustainable Development'), (43484, 'https://ror.org/044037f11', 'en', 1, 'https://ror.org/044037f11 Saratov Research Center Федеральное государственное бюджетное учреждение науки Саратовский научный центр Российской академии наук'), (43485, 'https://ror.org/0440rnc27', 'no_lang_code', 1, 'https://ror.org/0440rnc27 Vilmorin & Cie (France)'), (43486, 'https://ror.org/0440v7339', 'en', 1, 'https://ror.org/0440v7339 Kenya Plant Health Inspectorate Services'), (43487, 'https://ror.org/044171329', 'en', 1, 'https://ror.org/044171329 Research Institute of Pharmacology and Regenerative Medicine named ED Goldberg Научно-исследовательский институт фармакологии и регенеративной медицины имени Е.Д. Гольдберга'), (43488, 'https://ror.org/0444zqa87', 'en', 1, 'https://ror.org/0444zqa87 Sri Devaraj Urs Academy of Higher Education and Research'), (43489, 'https://ror.org/0448r9386', 'en', 1, 'https://ror.org/0448r9386 Divine Word College'), (43490, 'https://ror.org/0449t3a80', 'no_lang_code', 1, 'https://ror.org/0449t3a80 NortonLifeLock (United States)'), (43491, 'https://ror.org/044a15h91', 'no_lang_code', 1, 'https://ror.org/044a15h91 Knexus Research (United States)'), (43492, 'https://ror.org/044aa1z42', 'en', 1, 'https://ror.org/044aa1z42 National Agricultural Research Institute'), (43493, 'https://ror.org/044abmm29', 'en', 1, 'https://ror.org/044abmm29 Hobe Sound Bible College'), (43494, 'https://ror.org/044cdgz67', 'en', 1, 'https://ror.org/044cdgz67 Delhi Integrated Multi-Modal Transit System'), (43495, 'https://ror.org/044d6xz07', 'en', 1, 'https://ror.org/044d6xz07 National HIV/AIDS/STI/TB Council'), (43496, 'https://ror.org/044f89640', 'no_lang_code', 1, 'https://ror.org/044f89640 Agama Energy (South Africa)'), (43497, 'https://ror.org/044j2cm68', 'en', 1, 'https://ror.org/044j2cm68 South Tyneside and Sunderland NHS Foundation Trust'), (43498, 'https://ror.org/044j5mm75', 'fr', 1, 'https://ror.org/044j5mm75 Centre d''Etudes et De Recherche en Informatique et Communications'), (43499, 'https://ror.org/044jr0f96', 'en', 1, 'https://ror.org/044jr0f96 Government of West Bengal পশ্চিমবঙ্গ সরকার'), (43500, 'https://ror.org/044kx9w86', 'no_lang_code', 1, 'https://ror.org/044kx9w86 Vision Objects (France)'), (43501, 'https://ror.org/044pnzs23', 'fr', 1, 'https://ror.org/044pnzs23 Commune de Matam'), (43502, 'https://ror.org/044rf5p19', 'en', 1, 'https://ror.org/044rf5p19 Academy of Fine Arts Munich Akademie der Bildenden Künste München'), (43503, 'https://ror.org/044txcp97', 'en', 1, 'https://ror.org/044txcp97 Emperors College'), (43504, 'https://ror.org/044vgd869', 'en', 1, 'https://ror.org/044vgd869 National Institute of Cardiovascular Diseases'), (43505, 'https://ror.org/044vzkq25', 'en', 1, 'https://ror.org/044vzkq25 Marion Military Institute'), (43506, 'https://ror.org/044vzpb64', 'fr', 1, 'https://ror.org/044vzpb64 Institut de Recherche pour le Développement'), (43507, 'https://ror.org/044wc7t32', 'en', 1, 'https://ror.org/044wc7t32 Australian College of Rural and Remote Medicine'), (43508, 'https://ror.org/044weqf48', 'en', 1, 'https://ror.org/044weqf48 Dalubhasaang Miriam Miriam College'), (43509, 'https://ror.org/044x5g822', 'en', 1, 'https://ror.org/044x5g822 Pennsylvania College of Art and Design'), (43510, 'https://ror.org/044ysd349', 'en', 1, 'https://ror.org/044ysd349 Hunan Institute of Science and Technology 湖南理工学院'), (43511, 'https://ror.org/044zr9v92', 'no_lang_code', 1, 'https://ror.org/044zr9v92 Allegro Ophthalmics (United States)'), (43512, 'https://ror.org/045155251', 'en', 1, 'https://ror.org/045155251 Morgan Community College'), (43513, 'https://ror.org/04517nj83', 'en', 1, 'https://ror.org/04517nj83 New York State Council on Graduate Medical Education'), (43514, 'https://ror.org/0451asy50', 'no_lang_code', 1, 'https://ror.org/0451asy50 L&E Research (United States)'), (43515, 'https://ror.org/0452sj958', 'ca', 1, 'https://ror.org/0452sj958 Unió Catalana de Centres de Desenvolupament Infantil i Atenció Precoç'), (43516, 'https://ror.org/04564ag58', 'en', 1, 'https://ror.org/04564ag58 Glen Oaks Community College'), (43517, 'https://ror.org/0457x4y88', 'en', 1, 'https://ror.org/0457x4y88 St. Catharine College'), (43518, 'https://ror.org/04580fn28', 'de', 1, 'https://ror.org/04580fn28 Hamburger Fern-Hochschule'), (43519, 'https://ror.org/04586n774', 'en', 1, 'https://ror.org/04586n774 Kunming Metallurgy College 昆明冶金高等专科学校'), (43520, 'https://ror.org/045975y75', 'it', 1, 'https://ror.org/045975y75 Conservatorio di Musica Francesco Cilea'), (43521, 'https://ror.org/045by4v54', 'en', 1, 'https://ror.org/045by4v54 Louisiana Sea Grant'), (43522, 'https://ror.org/045etwd57', 'no_lang_code', 1, 'https://ror.org/045etwd57 Joaquim Peixoto Azevedo and Sons (Portugal)'), (43523, 'https://ror.org/045fdzr53', 'en', 1, 'https://ror.org/045fdzr53 North Dakota Space Grant Consortium'), (43524, 'https://ror.org/045g90a87', 'en', 1, 'https://ror.org/045g90a87 China Leather and Footwear Industry Research Institute 中国皮革和制鞋工业研究院'), (43525, 'https://ror.org/045gxp391', 'en', 1, 'https://ror.org/045gxp391 Aneurin Bevan University Health Board'), (43526, 'https://ror.org/045hatt54', 'en', 1, 'https://ror.org/045hatt54 College of Business and Hotel Management Vysoká škola obchodní a hotelová'), (43527, 'https://ror.org/045hvha55', 'no_lang_code', 1, 'https://ror.org/045hvha55 3-Sigma Research (United States)'), (43528, 'https://ror.org/045jcv930', 'en', 1, 'https://ror.org/045jcv930 Mali Health'), (43529, 'https://ror.org/045mrnd19', 'en', 1, 'https://ror.org/045mrnd19 Government of Andhra Pradesh'), (43530, 'https://ror.org/045p8e908', 'no_lang_code', 1, 'https://ror.org/045p8e908 Mochida Pharmaceutical (Japan) 持田製薬株式会社'), (43531, 'https://ror.org/045sc8e83', 'en', 1, 'https://ror.org/045sc8e83 Federal Center Research Fundamentals of Biotechnology Федеральный исследовательский центр Фундаментальные основы биотехнологии'), (43532, 'https://ror.org/045sx7862', 'en', 1, 'https://ror.org/045sx7862 Wentworth Military Academy and College'), (43533, 'https://ror.org/045t45114', 'pl', 1, 'https://ror.org/045t45114 Wyższa Szkoła Zarządzania Środowiskiem w Tucholi'), (43534, 'https://ror.org/045v66z43', 'en', 1, 'https://ror.org/045v66z43 Institute of Physical Materials Science ИНСТИТУТ ФИЗИЧЕСКОГО МАТЕРИАЛОВЕДЕНИЯ'), (43535, 'https://ror.org/045w8cb33', 'pt', 1, 'https://ror.org/045w8cb33 Faculdades Integradas do Vale do Ivaí'), (43536, 'https://ror.org/045w94e48', 'en', 1, 'https://ror.org/045w94e48 Desert Research Foundation of Namibia'), (43537, 'https://ror.org/045xd0268', 'en', 1, 'https://ror.org/045xd0268 Institute of the Earth’s Crust Институт земной коры СО РАН'), (43538, 'https://ror.org/045xmas39', 'pt', 1, 'https://ror.org/045xmas39 Fundacao Joaquim Nabuco'), (43539, 'https://ror.org/045xx6g59', 'no_lang_code', 1, 'https://ror.org/045xx6g59 Time Warner (United States)'), (43540, 'https://ror.org/045yq1w74', 'en', 1, 'https://ror.org/045yq1w74 Banco do Brasil Bank of Brazil'), (43541, 'https://ror.org/045zf1n87', 'no_lang_code', 1, 'https://ror.org/045zf1n87 Albany International (United States)'), (43542, 'https://ror.org/045zgf584', 'en', 1, 'https://ror.org/045zgf584 Oklahoma State University at Tulsa'), (43543, 'https://ror.org/04608tw18', 'en', 1, 'https://ror.org/04608tw18 Lincoln College of New England'), (43544, 'https://ror.org/0461tyx67', 'no_lang_code', 1, 'https://ror.org/0461tyx67 Agram (Poland)'), (43545, 'https://ror.org/04625j688', 'en', 1, 'https://ror.org/04625j688 University of Maine School of Law'), (43546, 'https://ror.org/0462yrd97', 'en', 1, 'https://ror.org/0462yrd97 Leukemia & Lymphoma Society of Canada'), (43547, 'https://ror.org/0465ncg47', 'en', 1, 'https://ror.org/0465ncg47 South Country Central School District'), (43548, 'https://ror.org/0467tbj17', 'en', 1, 'https://ror.org/0467tbj17 Randolph Community College'), (43549, 'https://ror.org/0468ehz42', 'en', 1, 'https://ror.org/0468ehz42 Austrian Polar Research Institute'), (43550, 'https://ror.org/0469ct910', 'pt', 1, 'https://ror.org/0469ct910 Prefeitura Municipal de Curitiba'), (43551, 'https://ror.org/046e8j462', 'en', 1, 'https://ror.org/046e8j462 Christian Health Association of Malawi'), (43552, 'https://ror.org/046gt4s87', 'en', 1, 'https://ror.org/046gt4s87 Ministry of Infrastructure, Transport and Networks Υπουργείο Υποδομών, Μεταφορών και Δικτύων'), (43553, 'https://ror.org/046hkwj59', 'en', 1, 'https://ror.org/046hkwj59 Coastal Bend College'), (43554, 'https://ror.org/046j50r07', 'en', 1, 'https://ror.org/046j50r07 San Bernardino Community College District'), (43555, 'https://ror.org/046msd355', 'en', 1, 'https://ror.org/046msd355 Institute of Complex Development of Bowels Институт проблем комплексного освоения недр РАН'), (43556, 'https://ror.org/046ns5110', 'de', 1, 'https://ror.org/046ns5110 Fachhochschule der Wirtschaft'), (43557, 'https://ror.org/046pgjy90', 'en', 1, 'https://ror.org/046pgjy90 Prevention Alzheimer International Foundation'), (43558, 'https://ror.org/046qg1023', 'en', 1, 'https://ror.org/046qg1023 National Parks Board'), (43559, 'https://ror.org/046qx3a23', 'en', 1, 'https://ror.org/046qx3a23 Beijing Research Institute of Uranium Geology 核工业北京地质研究院'), (43560, 'https://ror.org/046vhnd58', 'en', 1, 'https://ror.org/046vhnd58 Xavier School of Management'), (43561, 'https://ror.org/046vt0d34', 'en', 1, 'https://ror.org/046vt0d34 Programme for Accessible Health Communication and Education'), (43562, 'https://ror.org/046y0et18', 'no_lang_code', 1, 'https://ror.org/046y0et18 OnApp (Gibraltar)'), (43563, 'https://ror.org/046z1kv09', 'en', 1, 'https://ror.org/046z1kv09 Ohio Emergency Management Agency'), (43564, 'https://ror.org/046zhvz32', 'fr', 1, 'https://ror.org/046zhvz32 Laboratoire de Recherches Vétérinaires et Zootechniques de Farcha'), (43565, 'https://ror.org/0470p4z29', 'no_lang_code', 1, 'https://ror.org/0470p4z29 T-MARC'), (43566, 'https://ror.org/0474dbm94', 'en', 1, 'https://ror.org/0474dbm94 British Institute of Persian Studies'), (43567, 'https://ror.org/04761rz89', 'en', 1, 'https://ror.org/04761rz89 Whatcom Museum'), (43568, 'https://ror.org/047ax2108', 'en', 1, 'https://ror.org/047ax2108 Federal Research Centre Coal and Coal Chemistry Федеральный исследовательский центр угля и углехимии СО РАН'), (43569, 'https://ror.org/047bx2p96', 'en', 1, 'https://ror.org/047bx2p96 Neath Port Talbot College'), (43570, 'https://ror.org/047e48t34', 'fr', 1, 'https://ror.org/047e48t34 École Nationale d''Administration Pénitentiaire'), (43571, 'https://ror.org/047ehxy71', 'en', 1, 'https://ror.org/047ehxy71 Office of Policy and Management'), (43572, 'https://ror.org/047exzk05', 'en', 1, 'https://ror.org/047exzk05 Nuclear Safety Institute Институт ядерной безопасности'), (43573, 'https://ror.org/047f8bv22', 'en', 1, 'https://ror.org/047f8bv22 Institute of Computational Modeling Институт вычислительного моделирования Сибирского отделения Российской академии наук'), (43574, 'https://ror.org/047h65335', 'de', 1, 'https://ror.org/047h65335 Deutsche Hochschule für Prävention und Gesundheitsmanagement'), (43575, 'https://ror.org/047kynf18', 'no_lang_code', 1, 'https://ror.org/047kynf18 Biocon (India)'), (43576, 'https://ror.org/047m0fb88', 'en', 1, 'https://ror.org/047m0fb88 Mental Health Services Region Hovedstadens psykiatriske hospital'), (43577, 'https://ror.org/047njqg32', 'en', 1, 'https://ror.org/047njqg32 Edward F. Szczepanik State School of Higher Professional Education in Suwalki Państwowa Wyższa Szkoła Zawodowa im. prof. E. Szczepanika w Suwałkach'), (43578, 'https://ror.org/047nvfh18', 'no_lang_code', 1, 'https://ror.org/047nvfh18 Global Green Synergy (Malaysia)'), (43579, 'https://ror.org/047swfp57', 'en', 1, 'https://ror.org/047swfp57 Russian Research Institute of Fruit Crop Breeding Всероссийского научно-исследовательского института селекции плодовых культур'), (43580, 'https://ror.org/047ta5t95', 'en', 1, 'https://ror.org/047ta5t95 Państwowa Wyższa Szkoła Zawodowa w Chełmie State School of Higher Education in Chełm'), (43581, 'https://ror.org/047ts9g27', 'no_lang_code', 1, 'https://ror.org/047ts9g27 Nanobiotix (France)'), (43582, 'https://ror.org/047vv7q25', 'fr', 1, 'https://ror.org/047vv7q25 École Supérieure d''Art du Nord-Pas-de-Calais'), (43583, 'https://ror.org/047wbzv64', 'en', 1, 'https://ror.org/047wbzv64 All Russian Institute for Scientific and Technical Information Всероссийский институт научной и технической информации'), (43584, 'https://ror.org/047y9vj34', 'en', 1, 'https://ror.org/047y9vj34 Gwinnett College'), (43585, 'https://ror.org/047yavc84', 'en', 1, 'https://ror.org/047yavc84 Commission on Professionals in Science and Technology'), (43586, 'https://ror.org/047yw9a66', 'no_lang_code', 1, 'https://ror.org/047yw9a66 Kenya Seed Company (Kenya)'), (43587, 'https://ror.org/04819nb17', 'no_lang_code', 1, 'https://ror.org/04819nb17 Satriwitthaya 2 School โรงเรียนสตรีวิทยา 2 ในพระราชูปถัมภ์สมเด็จพระศรีนครินทราบรมราชชนนี'), (43588, 'https://ror.org/0481vq919', 'no_lang_code', 1, 'https://ror.org/0481vq919 Nicéphore Cité (France)'), (43589, 'https://ror.org/04827d323', 'no_lang_code', 1, 'https://ror.org/04827d323 Ressources Ingénierie (Morocco)'), (43590, 'https://ror.org/048308827', 'no_lang_code', 1, 'https://ror.org/048308827 Egyptian Consulting & Trading Co. Ltd'), (43591, 'https://ror.org/0484fme70', 'en', 1, 'https://ror.org/0484fme70 Northeastern Technical College'), (43592, 'https://ror.org/04850rm18', 'en', 1, 'https://ror.org/04850rm18 Baikal Institute of Nature Management природопользования Сибирского отделения Российской академии наук'), (43593, 'https://ror.org/0485q2d74', 'en', 1, 'https://ror.org/0485q2d74 National Institute of Technology, Tsuyama College 津山工業高等専門学校'), (43594, 'https://ror.org/04863f219', 'en', 1, 'https://ror.org/04863f219 Council of State Valtioneuvosto statsrådet'), (43595, 'https://ror.org/0487vq079', 'en', 1, 'https://ror.org/0487vq079 College of Slavonski Brod Veleučilište u Slavonskom Brodu'), (43596, 'https://ror.org/04883df86', 'no_lang_code', 1, 'https://ror.org/04883df86 Global University Systems'), (43597, 'https://ror.org/0488f2s41', 'en', 1, 'https://ror.org/0488f2s41 Lakes College'), (43598, 'https://ror.org/0488nbv42', 'no_lang_code', 1, 'https://ror.org/0488nbv42 MTEL-KTEI Teleinfra (India)'), (43599, 'https://ror.org/048966a50', 'en', 1, 'https://ror.org/048966a50 New York State Developmental Disabilities Planning Council'), (43600, 'https://ror.org/048amsp50', 'en', 1, 'https://ror.org/048amsp50 Institute for Computer Aided Design Федеральное государственное бюджетное учреждение науки Институт автоматизации проектирования Российской академии наук'), (43601, 'https://ror.org/048fp0x47', 'en', 1, 'https://ror.org/048fp0x47 Yuxi Normal University 玉溪师范学院'), (43602, 'https://ror.org/048fs3s61', 'pt', 1, 'https://ror.org/048fs3s61 Centro de Medicina de Reabilitacao do Alcoitão'), (43603, 'https://ror.org/048gre751', 'fr', 1, 'https://ror.org/048gre751 Haute École Pédagogique Fribourg'), (43604, 'https://ror.org/048j1zc07', 'en', 1, 'https://ror.org/048j1zc07 Bexley College'), (43605, 'https://ror.org/048jw1p35', 'no_lang_code', 1, 'https://ror.org/048jw1p35 Intel (Malaysia)'), (43606, 'https://ror.org/048m92c51', 'en', 1, 'https://ror.org/048m92c51 Foundation for Advancing Veterans Health Research'), (43607, 'https://ror.org/048mbp462', 'en', 1, 'https://ror.org/048mbp462 Community of Professional Sociologists Сообщество профессиональных социологов'), (43608, 'https://ror.org/048nm8g63', 'en', 1, 'https://ror.org/048nm8g63 Institute of Environment and Sustainable Development in Agriculture 农业环境与可持续发展研究所'), (43609, 'https://ror.org/048nw8b43', 'en', 1, 'https://ror.org/048nw8b43 Haywood Community College'), (43610, 'https://ror.org/048s34f25', 'no_lang_code', 1, 'https://ror.org/048s34f25 Umgeni Water Amanzi'), (43611, 'https://ror.org/048vved44', 'pt', 1, 'https://ror.org/048vved44 Associação Desportiva e Cultural da Escola Preparatória Diogo Cão'), (43612, 'https://ror.org/048w4ef35', 'en', 1, 'https://ror.org/048w4ef35 South African Institute of Tax Practitioners'), (43613, 'https://ror.org/048x0xw34', 'en', 1, 'https://ror.org/048x0xw34 Toronto Baptist Seminary and Bible College'), (43614, 'https://ror.org/0490cs563', 'sv', 1, 'https://ror.org/0490cs563 Samernas Utbildningscentrum Sámi Educational Centre'), (43615, 'https://ror.org/0490rfk07', 'en', 1, 'https://ror.org/0490rfk07 Feed Research Institute 中国农业科学院饲料研究所'), (43616, 'https://ror.org/0490tje89', 'en', 1, 'https://ror.org/0490tje89 Daugavpils Medical College Daugavpils medicinas koledza'), (43617, 'https://ror.org/0491qwe57', 'en', 1, 'https://ror.org/0491qwe57 Korea Naval Academy 해군사관학교'), (43618, 'https://ror.org/04946aj33', 'no_lang_code', 1, 'https://ror.org/04946aj33 De Beers (South Africa)'), (43619, 'https://ror.org/04951hq16', 'en', 1, 'https://ror.org/04951hq16 An Roinn Fiontar, Trádála agus Fostaíochta Department of Enterprise, Trade and Employment'), (43620, 'https://ror.org/0495w1157', 'en', 1, 'https://ror.org/0495w1157 San Joaquin Delta College'), (43621, 'https://ror.org/0497mxq65', 'en', 1, 'https://ror.org/0497mxq65 Gian Sagar Dental College and Hospital'), (43622, 'https://ror.org/0497xq319', 'en', 1, 'https://ror.org/0497xq319 Anna Freud Centre'), (43623, 'https://ror.org/049aqs582', 'no_lang_code', 1, 'https://ror.org/049aqs582 Valley National Bank (United States)'), (43624, 'https://ror.org/049dnw004', 'en', 1, 'https://ror.org/049dnw004 Society of Environmental Toxicology and Chemistry'), (43625, 'https://ror.org/049faq822', 'en', 1, 'https://ror.org/049faq822 Institute of Natural Resources'), (43626, 'https://ror.org/049h22071', 'en', 1, 'https://ror.org/049h22071 Arte Institute'), (43627, 'https://ror.org/049h8sz96', 'pl', 1, 'https://ror.org/049h8sz96 Wyższa Szkoła Humanistyczno-Przyrodnicza w Sandomierzu'), (43628, 'https://ror.org/049kydx29', 'en', 1, 'https://ror.org/049kydx29 Perpetual Succour Hospital'), (43629, 'https://ror.org/049pzbj60', 'en', 1, 'https://ror.org/049pzbj60 Institute of Mining Институт горного дела СО РАН'), (43630, 'https://ror.org/049ref070', 'en', 1, 'https://ror.org/049ref070 Southeastern Technical College'), (43631, 'https://ror.org/049s3yd39', 'en', 1, 'https://ror.org/049s3yd39 Native American Bible College'), (43632, 'https://ror.org/049sgh675', 'pt', 1, 'https://ror.org/049sgh675 Agência Nacional de Energia Elétrica'), (43633, 'https://ror.org/049wrhp57', 'en', 1, 'https://ror.org/049wrhp57 Phoenix Institute of Herbal Medicine and Acupuncture'), (43634, 'https://ror.org/049wv9211', 'en', 1, 'https://ror.org/049wv9211 Elizabeth Glaser Pediatric AIDS Foundation'), (43635, 'https://ror.org/049ygtv97', 'sv', 1, 'https://ror.org/049ygtv97 Landstinget Dalarna'), (43636, 'https://ror.org/04a1nmz13', 'it', 1, 'https://ror.org/04a1nmz13 Accademia di Belle Arti di Roma'), (43637, 'https://ror.org/04a2pvv21', 'no_lang_code', 1, 'https://ror.org/04a2pvv21 Strathmore Company (United States)'), (43638, 'https://ror.org/04a30tf85', 'en', 1, 'https://ror.org/04a30tf85 Beijing Vaccum Electronic Research Institute 北京真空电子技术研究所'), (43639, 'https://ror.org/04a39s417', 'en', 1, 'https://ror.org/04a39s417 Indian Institute of Remote Sensing'), (43640, 'https://ror.org/04a5x3y83', 'en', 1, 'https://ror.org/04a5x3y83 Caldwell Community College & Technical Institute'), (43641, 'https://ror.org/04a7dp661', 'no_lang_code', 1, 'https://ror.org/04a7dp661 SertiNK федеральное государственное автономное учреждение Научно-учебный центр Сварка и контроль при МГТУ им. Н.Э. Баумана'), (43642, 'https://ror.org/04aa84x73', 'en', 1, 'https://ror.org/04aa84x73 National Institute of Technology, Hiroshima College 広島商船高等専門学校'), (43643, 'https://ror.org/04aa9w798', 'fr', 1, 'https://ror.org/04aa9w798 Consortium pour la recherche économique et sociale'), (43644, 'https://ror.org/04ac17w60', 'en', 1, 'https://ror.org/04ac17w60 Garden City Community College'), (43645, 'https://ror.org/04ac3f410', 'pl', 1, 'https://ror.org/04ac3f410 Gliwicka Wyższa Szkoła Przedsiębiorczości'), (43646, 'https://ror.org/04af9zr29', 'en', 1, 'https://ror.org/04af9zr29 Innoviris'), (43647, 'https://ror.org/04afrdx88', 'en', 1, 'https://ror.org/04afrdx88 Agri-Food and Veterinary Authority of Singapore'), (43648, 'https://ror.org/04ag58v20', 'en', 1, 'https://ror.org/04ag58v20 Antwerp Maritime Academy Hogere Zeevaartschool Antwerpen'), (43649, 'https://ror.org/04age2m32', 'pl', 1, 'https://ror.org/04age2m32 Państwowa Wyższa Szkoła Zawodowa w Raciborzu'), (43650, 'https://ror.org/04ajtb593', 'en', 1, 'https://ror.org/04ajtb593 Indian Air Force भारतीय वायु सेना'), (43651, 'https://ror.org/04ak1vs79', 'fr', 1, 'https://ror.org/04ak1vs79 École Supérieure des Ingénieurs de l''Équipement Rural'), (43652, 'https://ror.org/04akhbz72', 'en', 1, 'https://ror.org/04akhbz72 Hong Kong Institute of Surveyors 香港測量師學會'), (43653, 'https://ror.org/04anve402', 'en', 1, 'https://ror.org/04anve402 World Intellectual Property Organization'), (43654, 'https://ror.org/04aqw2724', 'en', 1, 'https://ror.org/04aqw2724 African Association of Remote Sensing of the Environment'), (43655, 'https://ror.org/04as4jd41', 'en', 1, 'https://ror.org/04as4jd41 Prevent Alzheimer’s Disease 2020'), (43656, 'https://ror.org/04ateak98', 'en', 1, 'https://ror.org/04ateak98 Base Training'), (43657, 'https://ror.org/04atrwr33', 'en', 1, 'https://ror.org/04atrwr33 Duchy College'), (43658, 'https://ror.org/04ax2jp69', 'en', 1, 'https://ror.org/04ax2jp69 Geological Museum of China 中国地质博物馆'), (43659, 'https://ror.org/04ay6mm65', 'en', 1, 'https://ror.org/04ay6mm65 International Centre for Reindeer Husbandry'), (43660, 'https://ror.org/04ayk8723', 'en', 1, 'https://ror.org/04ayk8723 G.S. Science, Arts And Commerce College'), (43661, 'https://ror.org/04ayxkk27', 'no_lang_code', 1, 'https://ror.org/04ayxkk27 Blackstar Amplification (United Kingdom)'), (43662, 'https://ror.org/04aznz088', 'no_lang_code', 1, 'https://ror.org/04aznz088 GroupeOPA (France)'), (43663, 'https://ror.org/04b0jpj80', 'en', 1, 'https://ror.org/04b0jpj80 Texarkana College'), (43664, 'https://ror.org/04b0w1821', 'no_lang_code', 1, 'https://ror.org/04b0w1821 Hiwin Technologies (Taiwan)'), (43665, 'https://ror.org/04b3wz043', 'en', 1, 'https://ror.org/04b3wz043 Ministry of Technology, Innovation & Citizens'' Services'), (43666, 'https://ror.org/04b4b5885', 'no_lang_code', 1, 'https://ror.org/04b4b5885 Moneague College'), (43667, 'https://ror.org/04b581c27', 'en', 1, 'https://ror.org/04b581c27 Institute of Applied Astronomy Институт прикладной астрономии'), (43668, 'https://ror.org/04b6b6f76', 'en', 1, 'https://ror.org/04b6b6f76 North Central State College'), (43669, 'https://ror.org/04b6chq95', 'en', 1, 'https://ror.org/04b6chq95 Ministry of Water and Irrigation Wizara ya Maji na Umwagiliaji'), (43670, 'https://ror.org/04bangx95', 'en', 1, 'https://ror.org/04bangx95 Pennsylvania Department of Conservation and Natural Resources'), (43671, 'https://ror.org/04bbkwf42', 'en', 1, 'https://ror.org/04bbkwf42 New York State Department of Transportation'), (43672, 'https://ror.org/04bc8dn02', 'de', 1, 'https://ror.org/04bc8dn02 Christoffel Blinden Mission'), (43673, 'https://ror.org/04bcrv494', 'en', 1, 'https://ror.org/04bcrv494 National Institute of Solar Energy'), (43674, 'https://ror.org/04bd4jp27', 'en', 1, 'https://ror.org/04bd4jp27 Redlands Community College'), (43675, 'https://ror.org/04bdeg508', 'en', 1, 'https://ror.org/04bdeg508 Petroleum Research Newfoundland and Labrador'), (43676, 'https://ror.org/04bdnn252', 'en', 1, 'https://ror.org/04bdnn252 Sussex County Community College'), (43677, 'https://ror.org/04beyjz13', 'en', 1, 'https://ror.org/04beyjz13 European Tropical Forest Research Network'), (43678, 'https://ror.org/04bf6dq94', 'en', 1, 'https://ror.org/04bf6dq94 Pädagogische Hochschule Thurgau Thurgau University of Teacher Education'), (43679, 'https://ror.org/04bfba223', 'es', 1, 'https://ror.org/04bfba223 Instituto de Investigaciones Eléctricas'), (43680, 'https://ror.org/04bgn1297', 'en', 1, 'https://ror.org/04bgn1297 Higher School of Agribusiness Wyższa Szkoła Agrobiznesu w Łomży Высшая Школа Агробизнеса в Ломже'), (43681, 'https://ror.org/04bhgg012', 'es', 1, 'https://ror.org/04bhgg012 Universidad Politécnica de Tulancingo'), (43682, 'https://ror.org/04bjq2e40', 'en', 1, 'https://ror.org/04bjq2e40 College of North West London'), (43683, 'https://ror.org/04bqa9n74', 'en', 1, 'https://ror.org/04bqa9n74 United States Global Change Research Program'), (43684, 'https://ror.org/04brn7x66', 'en', 1, 'https://ror.org/04brn7x66 Technological Educational Institute of Epirus Τεχνολογικό Εκπαιδευτικό Ίδρυμα Ηπείρου'), (43685, 'https://ror.org/04brx9y30', 'en', 1, 'https://ror.org/04brx9y30 Beijing Water Science and Technology Institute 北京市水科学技术研究院'), (43686, 'https://ror.org/04bwc3e35', 'en', 1, 'https://ror.org/04bwc3e35 Centre for the Study of Adolescence'), (43687, 'https://ror.org/04bx29k51', 'en', 1, 'https://ror.org/04bx29k51 Northern Essex Community College'), (43688, 'https://ror.org/04bxq2s19', 'no_lang_code', 1, 'https://ror.org/04bxq2s19 Evalueserve (India)'), (43689, 'https://ror.org/04bz8f123', 'en', 1, 'https://ror.org/04bz8f123 Chhattisgarh Council of Science and Technology छत्तीसगढ़ विज्ञान एवं प्रौद्योगिकी परिषद'), (43690, 'https://ror.org/04bzq6109', 'en', 1, 'https://ror.org/04bzq6109 Central Tobacco Research Institute'), (43691, 'https://ror.org/04c0a2034', 'en', 1, 'https://ror.org/04c0a2034 Institute of Special Animal and Plant Sciences 中国农业科学院特产研究所'), (43692, 'https://ror.org/04c2h1p08', 'no_lang_code', 1, 'https://ror.org/04c2h1p08 State Farm (United States)'), (43693, 'https://ror.org/04c3ymz82', 'pt', 1, 'https://ror.org/04c3ymz82 Faculdade de Tecnologia e Ciências'), (43694, 'https://ror.org/04c49cg83', 'en', 1, 'https://ror.org/04c49cg83 Clarendon College'), (43695, 'https://ror.org/04c4jf131', 'en', 1, 'https://ror.org/04c4jf131 Government of Uganda'), (43696, 'https://ror.org/04c581336', 'en', 1, 'https://ror.org/04c581336 Kenrick–Glennon Seminary'), (43697, 'https://ror.org/04c7vyz18', 'en', 1, 'https://ror.org/04c7vyz18 Breakthrough Institute'); INSERT INTO `rors` VALUES (43698, 'https://ror.org/04c99m021', 'no_lang_code', 1, 'https://ror.org/04c99m021 International Drilling Services (Tunisia)'), (43699, 'https://ror.org/04ca1xj65', 'en', 1, 'https://ror.org/04ca1xj65 United Theological Seminary'), (43700, 'https://ror.org/04caq8026', 'en', 1, 'https://ror.org/04caq8026 Qinghai Meteorological Bureau 青海省气象局'), (43701, 'https://ror.org/04cas5j33', 'en', 1, 'https://ror.org/04cas5j33 Grace Bible College'), (43702, 'https://ror.org/04ccjrt09', 'no_lang_code', 1, 'https://ror.org/04ccjrt09 AECpolymers (France)'), (43703, 'https://ror.org/04cdzwd37', 'en', 1, 'https://ror.org/04cdzwd37 Merchant Marine Academy Ακαδημίες Εμπορικού Ναυτικού'), (43704, 'https://ror.org/04ce52x58', 'it', 1, 'https://ror.org/04ce52x58 Conservatorio di Musica Antonio Scontrino Trapani'), (43705, 'https://ror.org/04ce87537', 'en', 1, 'https://ror.org/04ce87537 Sherwood Forest Hospitals NHS Foundation Trust'), (43706, 'https://ror.org/04cg1fd02', 'en', 1, 'https://ror.org/04cg1fd02 Wilkes Community College'), (43707, 'https://ror.org/04ch3k260', 'fr', 1, 'https://ror.org/04ch3k260 École Supérieure d''Art et de Design de Reims'), (43708, 'https://ror.org/04cmdwv88', 'no_lang_code', 1, 'https://ror.org/04cmdwv88 Close Concerns (United States)'), (43709, 'https://ror.org/04cpebv17', 'no_lang_code', 1, 'https://ror.org/04cpebv17 Northernchem (Canada)'), (43710, 'https://ror.org/04cpx2569', 'no_lang_code', 1, 'https://ror.org/04cpx2569 Samsung (India)'), (43711, 'https://ror.org/04cqp5h60', 'en', 1, 'https://ror.org/04cqp5h60 The Independent Games Developers Association'), (43712, 'https://ror.org/04cvyy414', 'en', 1, 'https://ror.org/04cvyy414 Connecticut Department of Labor'), (43713, 'https://ror.org/04cy3kb56', 'en', 1, 'https://ror.org/04cy3kb56 Indian National Trust for Art and Cultural Heritage'), (43714, 'https://ror.org/04czq2g39', 'en', 1, 'https://ror.org/04czq2g39 Uganda National Association Of the Deaf'), (43715, 'https://ror.org/04czy3x31', 'en', 1, 'https://ror.org/04czy3x31 Heritage Bible College'), (43716, 'https://ror.org/04d1ryd22', 'fr', 1, 'https://ror.org/04d1ryd22 École des Avocats Rhône-Alpes'), (43717, 'https://ror.org/04d357y30', 'pt', 1, 'https://ror.org/04d357y30 Instituto Nacional de Ciência e Tecnologia para o Controle das Intoxicações por Plantas'), (43718, 'https://ror.org/04d3cfv77', 'en', 1, 'https://ror.org/04d3cfv77 Writers Project of Ghana'), (43719, 'https://ror.org/04d3d5q14', 'en', 1, 'https://ror.org/04d3d5q14 Inspiration Innovation Synergy University'), (43720, 'https://ror.org/04d5f4w73', 'en', 1, 'https://ror.org/04d5f4w73 Stockholm Health Care Services Stockholms läns sjukvårdsområde'), (43721, 'https://ror.org/04d5ffq02', 'en', 1, 'https://ror.org/04d5ffq02 Pingry School'), (43722, 'https://ror.org/04d5j6d22', 'en', 1, 'https://ror.org/04d5j6d22 Moberly Area Community College'), (43723, 'https://ror.org/04d68zn48', 'de', 1, 'https://ror.org/04d68zn48 Landesschulrat für Tirol'), (43724, 'https://ror.org/04d81ed36', 'en', 1, 'https://ror.org/04d81ed36 Technology Information, Forecasting and Assessment Council प्रौद्योगिकी सूचना, पूर्वानुमान एवं मूल्यांकन परिषद'), (43725, 'https://ror.org/04d8byx33', 'en', 1, 'https://ror.org/04d8byx33 Georgia Highlands College'), (43726, 'https://ror.org/04d94aw40', 'en', 1, 'https://ror.org/04d94aw40 Ministry of Lands, Housing & Urban Development'), (43727, 'https://ror.org/04d9y9m22', 'en', 1, 'https://ror.org/04d9y9m22 National Institute of Technology, Miyakonojo College 都城工業高等専門学校'), (43728, 'https://ror.org/04da1m383', 'en', 1, 'https://ror.org/04da1m383 University of Garden City'), (43729, 'https://ror.org/04db3be62', 'fr', 1, 'https://ror.org/04db3be62 Laboratoire de Chimie Organique'), (43730, 'https://ror.org/04dd9ss52', 'no_lang_code', 1, 'https://ror.org/04dd9ss52 General Electric (India)'), (43731, 'https://ror.org/04de57j78', 'no_lang_code', 1, 'https://ror.org/04de57j78 Apex Innovations (United States)'), (43732, 'https://ror.org/04ded8w14', 'en', 1, 'https://ror.org/04ded8w14 Virginia Information Technologies Agency'), (43733, 'https://ror.org/04dfrdm61', 'en', 1, 'https://ror.org/04dfrdm61 Unitelma Sapienza University Università telematica UNITELMA Sapienza'), (43734, 'https://ror.org/04dg1kd85', 'en', 1, 'https://ror.org/04dg1kd85 Department of Research and Specialist Services'), (43735, 'https://ror.org/04dh0w640', 'en', 1, 'https://ror.org/04dh0w640 Institute of Population and Public Health'), (43736, 'https://ror.org/04dh1cz78', 'en', 1, 'https://ror.org/04dh1cz78 Pasold Research Fund'), (43737, 'https://ror.org/04dh20q25', 'pt', 1, 'https://ror.org/04dh20q25 Escola Profissional Profitecla'), (43738, 'https://ror.org/04dkqr510', 'no_lang_code', 1, 'https://ror.org/04dkqr510 Assystem (Morocco)'), (43739, 'https://ror.org/04dpna982', 'en', 1, 'https://ror.org/04dpna982 Korea Fair Trade Commission 공정거래위원회'), (43740, 'https://ror.org/04dpszf19', 'en', 1, 'https://ror.org/04dpszf19 Pennsylvania Department Of State'), (43741, 'https://ror.org/04dpx8b39', 'no_lang_code', 1, 'https://ror.org/04dpx8b39 Shanghai Supercomputer Center (China) 上海超级计算中心'), (43742, 'https://ror.org/04dvezj25', 'en', 1, 'https://ror.org/04dvezj25 Frederick S. Pardee RAND Graduate School'), (43743, 'https://ror.org/04dvrba58', 'en', 1, 'https://ror.org/04dvrba58 Anchorage'), (43744, 'https://ror.org/04dw3t358', 'en', 1, 'https://ror.org/04dw3t358 Zhengzhou Fruit Research Institute 中国农业科学院郑州果树研究所'), (43745, 'https://ror.org/04dw8vw47', 'fr', 1, 'https://ror.org/04dw8vw47 École Nationale Supérieure d''Architecture de Clermont-Ferrand'), (43746, 'https://ror.org/04dxtny83', 'no_lang_code', 1, 'https://ror.org/04dxtny83 Section27'), (43747, 'https://ror.org/04dy4th59', 'en', 1, 'https://ror.org/04dy4th59 Bon Secours Memorial College of Nursing'), (43748, 'https://ror.org/04dyam975', 'it', 1, 'https://ror.org/04dyam975 Sistema Bibliotecario di Udine e dell''Hinterland Udinese'), (43749, 'https://ror.org/04dzf3m45', 'en', 1, 'https://ror.org/04dzf3m45 Desert Research Center'), (43750, 'https://ror.org/04e02dg93', 'en', 1, 'https://ror.org/04e02dg93 Concordia College Alabama'), (43751, 'https://ror.org/04e09qg36', 'en', 1, 'https://ror.org/04e09qg36 Institute of Ecology and Genetics of Microorganisms'), (43752, 'https://ror.org/04e1s8k93', 'no_lang_code', 1, 'https://ror.org/04e1s8k93 Allium & Brassica Centre (United Kingdom)'), (43753, 'https://ror.org/04e2v9172', 'no_lang_code', 1, 'https://ror.org/04e2v9172 Vectec Solutions (United States)'), (43754, 'https://ror.org/04e3vbx44', 'fr', 1, 'https://ror.org/04e3vbx44 Ministère de la Culture'), (43755, 'https://ror.org/04e3z5r84', 'en', 1, 'https://ror.org/04e3z5r84 Islamic Development Bank البنك الإسلامي للتنمية'), (43756, 'https://ror.org/04e433w04', 'no_lang_code', 1, 'https://ror.org/04e433w04 Cornerstone Specialty Wood Products (United States)'), (43757, 'https://ror.org/04e57v876', 'en', 1, 'https://ror.org/04e57v876 Career Institute Of Medical & Dental Sciences and Hospital'), (43758, 'https://ror.org/04e5d6174', 'en', 1, 'https://ror.org/04e5d6174 Indian Army भारतीय थलसेना'), (43759, 'https://ror.org/04e72vw61', 'en', 1, 'https://ror.org/04e72vw61 Debre Berhan University'), (43760, 'https://ror.org/04eak0r73', 'en', 1, 'https://ror.org/04eak0r73 Child Health Research Foundation'), (43761, 'https://ror.org/04eb14s37', 'en', 1, 'https://ror.org/04eb14s37 Institute of Molecular Medicine'), (43762, 'https://ror.org/04edktq70', 'en', 1, 'https://ror.org/04edktq70 Royal British Legion'), (43763, 'https://ror.org/04eehbt36', 'en', 1, 'https://ror.org/04eehbt36 Nevada Space Grant Consortium'), (43764, 'https://ror.org/04ef8pm25', 'en', 1, 'https://ror.org/04ef8pm25 Archive of the Russian Academy of Sciences Санкт-Петербургский филиал Архива РАН'), (43765, 'https://ror.org/04ef94584', 'fr', 1, 'https://ror.org/04ef94584 Institut Libre d''Education Physique Supérieur'), (43766, 'https://ror.org/04efjkk54', 'no_lang_code', 1, 'https://ror.org/04efjkk54 KMG Ultra Pure Chemicals (France)'), (43767, 'https://ror.org/04eghjs57', 'fr', 1, 'https://ror.org/04eghjs57 École Nationale Supérieure d''Architecture de Bretagne'), (43768, 'https://ror.org/04ejbez48', 'en', 1, 'https://ror.org/04ejbez48 Jēkabpils Agrobiznesa Koledža Jekabpils Agrobusiness College'), (43769, 'https://ror.org/04ekv3k57', 'en', 1, 'https://ror.org/04ekv3k57 Development Bank of Saxony Sächsische Aufbaubank'), (43770, 'https://ror.org/04ep6k202', 'en', 1, 'https://ror.org/04ep6k202 Trinity Medical Center'), (43771, 'https://ror.org/04eqe6790', 'no_lang_code', 1, 'https://ror.org/04eqe6790 Danish Hydraulic Institute (India)'), (43772, 'https://ror.org/04eqxyk73', 'en', 1, 'https://ror.org/04eqxyk73 Institute of Volcanology and Seismology Институт вулканологии и сейсмологии'), (43773, 'https://ror.org/04er5hw95', 'it', 1, 'https://ror.org/04er5hw95 Conservatorio di Musica Egidio R. Duni'), (43774, 'https://ror.org/04esabr24', 'en', 1, 'https://ror.org/04esabr24 Institute of Nephro Urology'), (43775, 'https://ror.org/04etgav66', 'no_lang_code', 1, 'https://ror.org/04etgav66 Colgate-Palmolive (Switzerland)'), (43776, 'https://ror.org/04etqyp34', 'cy', 1, 'https://ror.org/04etqyp34 Remedi'), (43777, 'https://ror.org/04etshx64', 'en', 1, 'https://ror.org/04etshx64 United States Capitol Historical Society'), (43778, 'https://ror.org/04evh7y43', 'en', 1, 'https://ror.org/04evh7y43 Division of Acquisition and Cooperative Support'), (43779, 'https://ror.org/04ewbdy08', 'en', 1, 'https://ror.org/04ewbdy08 University of Agribusiness and Rural Development'), (43780, 'https://ror.org/04ewkgj12', 'fr', 1, 'https://ror.org/04ewkgj12 Fondation Le Corbusier'), (43781, 'https://ror.org/04excha61', 'no_lang_code', 1, 'https://ror.org/04excha61 Paion (United Kingdom)'), (43782, 'https://ror.org/04eyn1y36', 'de', 1, 'https://ror.org/04eyn1y36 Kantonsspital Baselland Standort Bruderholz'), (43783, 'https://ror.org/04f00y561', 'en', 1, 'https://ror.org/04f00y561 Seton Hall Preparatory School'), (43784, 'https://ror.org/04f0j5918', 'en', 1, 'https://ror.org/04f0j5918 Baptist Theological Academy'), (43785, 'https://ror.org/04f1ha654', 'no_lang_code', 1, 'https://ror.org/04f1ha654 M S Jacovides (Greece)'), (43786, 'https://ror.org/04f2n1245', 'no_lang_code', 1, 'https://ror.org/04f2n1245 Intel (India)'), (43787, 'https://ror.org/04f3rva03', 'en', 1, 'https://ror.org/04f3rva03 MICAIA Foundation'), (43788, 'https://ror.org/04f3vpm64', 'en', 1, 'https://ror.org/04f3vpm64 Institute of Anthropology and Ethnography Федеральное государственное бюджетное учреждение науки Ордена Дружбы народов Институт этнологии и антропологии им. Н.Н. Миклухо-Маклая Российской академии наук'), (43789, 'https://ror.org/04f5fw921', 'en', 1, 'https://ror.org/04f5fw921 Sojagnon Association'), (43790, 'https://ror.org/04f6gef75', 'en', 1, 'https://ror.org/04f6gef75 Government Medical College and Hospital'), (43791, 'https://ror.org/04faa0n67', 'en', 1, 'https://ror.org/04faa0n67 Institute of Economics and Industrial Engineering Институт экономики и организации промышленного производства СО РАН'), (43792, 'https://ror.org/04fat9m09', 'fr', 1, 'https://ror.org/04fat9m09 Centre de Recherche & Développement de l''Électricité et du Gaz'), (43793, 'https://ror.org/04fbzd287', 'en', 1, 'https://ror.org/04fbzd287 Banc d''Arguin National Park Parc National du Banc d''Arguin'), (43794, 'https://ror.org/04fdat027', 'en', 1, 'https://ror.org/04fdat027 IU International University of Applied Sciences IU Internationale Hochschule'), (43795, 'https://ror.org/04fdz6f52', 'en', 1, 'https://ror.org/04fdz6f52 Crossroads Bible College'), (43796, 'https://ror.org/04ffdar46', 'en', 1, 'https://ror.org/04ffdar46 Ministry of Health and Social Welfare'), (43797, 'https://ror.org/04ffrf281', 'no_lang_code', 1, 'https://ror.org/04ffrf281 Deutsche Telekom (South Africa)'), (43798, 'https://ror.org/04ffw0491', 'en', 1, 'https://ror.org/04ffw0491 Artevelde University College Ghent'), (43799, 'https://ror.org/04ffyk186', 'en', 1, 'https://ror.org/04ffyk186 Veld Products Research & Development'), (43800, 'https://ror.org/04fg7fb49', 'en', 1, 'https://ror.org/04fg7fb49 Institute of Cell Biology'), (43801, 'https://ror.org/04fg92n70', 'no_lang_code', 1, 'https://ror.org/04fg92n70 Arion (France)'), (43802, 'https://ror.org/04fh8an03', 'en', 1, 'https://ror.org/04fh8an03 Mountain View College'), (43803, 'https://ror.org/04fhp7r51', 'en', 1, 'https://ror.org/04fhp7r51 Davao del Norte State College'), (43804, 'https://ror.org/04fqqys39', 'en', 1, 'https://ror.org/04fqqys39 Computational Intelligence and Information Systems Lab'), (43805, 'https://ror.org/04fr7ha98', 'no_lang_code', 1, 'https://ror.org/04fr7ha98 Pearl Seeds (Uganda)'), (43806, 'https://ror.org/04fsb1973', 'en', 1, 'https://ror.org/04fsb1973 Texas College'), (43807, 'https://ror.org/04fszdm13', 'en', 1, 'https://ror.org/04fszdm13 Art Academy of Cincinnati'), (43808, 'https://ror.org/04fxab197', 'en', 1, 'https://ror.org/04fxab197 Natural Science and Technical Academy Isny Naturwissenschaftlich-Technische Akademie Isny'), (43809, 'https://ror.org/04fydbf11', 'en', 1, 'https://ror.org/04fydbf11 Instituto Superior de Gestão Bancária Portuguese School of Bank Management'), (43810, 'https://ror.org/04g2mk116', 'no_lang_code', 1, 'https://ror.org/04g2mk116 Hemarina (France)'), (43811, 'https://ror.org/04g3mbv81', 'en', 1, 'https://ror.org/04g3mbv81 European Graduate School'), (43812, 'https://ror.org/04g3ykc66', 'en', 1, 'https://ror.org/04g3ykc66 Maine Sea Grant'), (43813, 'https://ror.org/04g4hjw43', 'en', 1, 'https://ror.org/04g4hjw43 A.V. Dumansky Institute of Colloid and Water Chemistry Інститут колоїдної хімії та хімії води ім. А.В. Думанського'), (43814, 'https://ror.org/04g4v2334', 'no_lang_code', 1, 'https://ror.org/04g4v2334 Sakhr Software (Egypt)'), (43815, 'https://ror.org/04g96bg87', 'en', 1, 'https://ror.org/04g96bg87 TALLINNA ÄRIPANGA AS Tallinn Business Bank'), (43816, 'https://ror.org/04gap2p44', 'en', 1, 'https://ror.org/04gap2p44 Society of Exploration Geophysicists'), (43817, 'https://ror.org/04gd58c86', 'en', 1, 'https://ror.org/04gd58c86 IBA Erhvervsakademi International Business Academy'), (43818, 'https://ror.org/04gdyqq92', 'en', 1, 'https://ror.org/04gdyqq92 Charlotte Christian College and Theological Seminary'), (43819, 'https://ror.org/04gecbm52', 'no_lang_code', 1, 'https://ror.org/04gecbm52 Lam Research (United States)'), (43820, 'https://ror.org/04gevk212', 'no_lang_code', 1, 'https://ror.org/04gevk212 Asian Paints (India)'), (43821, 'https://ror.org/04gh7n706', 'no_lang_code', 1, 'https://ror.org/04gh7n706 HEB Grocery Company (United States)'), (43822, 'https://ror.org/04gj4ky87', 'en', 1, 'https://ror.org/04gj4ky87 China Population and Development Research Center 中国人口与发展研究中心'), (43823, 'https://ror.org/04gjmb875', 'en', 1, 'https://ror.org/04gjmb875 Guang’anmen Hospital 中国中医科学院广安门医院'), (43824, 'https://ror.org/04gm0xc34', 'en', 1, 'https://ror.org/04gm0xc34 Group For Research and Technology Exchanges Groupe de Recherches et d''Echanges Technologiques'), (43825, 'https://ror.org/04gm25w26', 'en', 1, 'https://ror.org/04gm25w26 United Way for Southeastern Michigan'), (43826, 'https://ror.org/04gm2r032', 'fr', 1, 'https://ror.org/04gm2r032 Agence de Bassin Hydrographique Constantinois-Seybousse-Mellegue'), (43827, 'https://ror.org/04gpxrn68', 'no_lang_code', 1, 'https://ror.org/04gpxrn68 China Academy Of Machinery Science & Technology (China) 机械科学与技术研究院中国'), (43828, 'https://ror.org/04gqe5s96', 'en', 1, 'https://ror.org/04gqe5s96 Chichester College'), (43829, 'https://ror.org/04gqrt415', 'en', 1, 'https://ror.org/04gqrt415 Ambulance Service of New South Wales'), (43830, 'https://ror.org/04grzdh47', 'en', 1, 'https://ror.org/04grzdh47 Guangdong University of Finance 广东金融学院'), (43831, 'https://ror.org/04gs7j941', 'en', 1, 'https://ror.org/04gs7j941 Morling College'), (43832, 'https://ror.org/04gx27k56', 'en', 1, 'https://ror.org/04gx27k56 Iowa Western Community College'), (43833, 'https://ror.org/04gx7mb59', 'tr', 1, 'https://ror.org/04gx7mb59 Selçuk Üniversitesi Tıp Fakültesi Hastanesi'), (43834, 'https://ror.org/04h0czz41', 'no_lang_code', 1, 'https://ror.org/04h0czz41 Eesti Energia (Estonia)'), (43835, 'https://ror.org/04h21q173', 'en', 1, 'https://ror.org/04h21q173 Ministarstvo kulture Ministry of Culture of the Republic of Croatia'), (43836, 'https://ror.org/04h36ea57', 'en', 1, 'https://ror.org/04h36ea57 Alexander Technological Educational Institute of Thessaloniki Αλεξάνδρειο Τεχνολογικό Εκπαιδευτικό Ίδρυμα Θεσσαλονίκης'), (43837, 'https://ror.org/04h3gcf69', 'es', 1, 'https://ror.org/04h3gcf69 Instituto Nacional de Investigaciones Agricolas'), (43838, 'https://ror.org/04h4g6162', 'en', 1, 'https://ror.org/04h4g6162 Pt. Jawahar Lal Nehru Memorial Medical College'), (43839, 'https://ror.org/04h5ys198', 'no_lang_code', 1, 'https://ror.org/04h5ys198 Cniitmash (Russia) цниитмаш'), (43840, 'https://ror.org/04h8m0888', 'en', 1, 'https://ror.org/04h8m0888 Direction Générale Commerce Directorate-General for Trade Generaldirektion Handel'), (43841, 'https://ror.org/04hbd7s79', 'en', 1, 'https://ror.org/04hbd7s79 Africa Harvest Biotech Foundation International'), (43842, 'https://ror.org/04hdgmg32', 'en', 1, 'https://ror.org/04hdgmg32 Bibliothèque nationale d''inde National Library of India राष्ट्रियः पुस्तकालयः राष्ट्रीय पुस्तकालय জাতীয় গ্রন্থাগার இந்திய தேசிய நூலகம் భారత జాతీయ గ్రంథాలయం ഭാരതീയ ദേശീയ ഗ്രന്ഥശാല'), (43843, 'https://ror.org/04he9zv34', 'no_lang_code', 1, 'https://ror.org/04he9zv34 Phoenix Medical Systems (India)'), (43844, 'https://ror.org/04hef0n19', 'en', 1, 'https://ror.org/04hef0n19 Brihanmumbai Municipal Corporation बृहन्मुंबई महानगरपालिका'), (43845, 'https://ror.org/04hes6w33', 'en', 1, 'https://ror.org/04hes6w33 Nama Khoi Local Municipality'), (43846, 'https://ror.org/04hf31n78', 'en', 1, 'https://ror.org/04hf31n78 National Drought Management Authority'), (43847, 'https://ror.org/04hmgwg30', 'no_lang_code', 1, 'https://ror.org/04hmgwg30 Karolinska Institutet Innovations (Sweden)'), (43848, 'https://ror.org/04hpd0e20', 'en', 1, 'https://ror.org/04hpd0e20 Institute of Magnetism'), (43849, 'https://ror.org/04hpwpk22', 'en', 1, 'https://ror.org/04hpwpk22 Albany Technical College'), (43850, 'https://ror.org/04hqtzh27', 'en', 1, 'https://ror.org/04hqtzh27 Indian Institute Of Bio social Research And Development'), (43851, 'https://ror.org/04hr2ce79', 'no_lang_code', 1, 'https://ror.org/04hr2ce79 Low & Bonar (Netherlands)'), (43852, 'https://ror.org/04hrmb987', 'en', 1, 'https://ror.org/04hrmb987 Confederation of Indian Industry कॉन्फेडरेशन ऑफ इंडियन इंडस्ट्री'), (43853, 'https://ror.org/04hs3y322', 'en', 1, 'https://ror.org/04hs3y322 Eagle Gate College'), (43854, 'https://ror.org/04ht9zz88', 'en', 1, 'https://ror.org/04ht9zz88 Lone Star College Kingwood, Lone Star College–Kingwood'), (43855, 'https://ror.org/04hv4eh07', 'en', 1, 'https://ror.org/04hv4eh07 Royal Society for the Prevention of Cruelty to Animals'), (43856, 'https://ror.org/04hvenk37', 'en', 1, 'https://ror.org/04hvenk37 Family Guidance Association of Ethiopia'), (43857, 'https://ror.org/04hwmbc03', 'sv', 1, 'https://ror.org/04hwmbc03 Växjö Kommun Växjö Municipality'), (43858, 'https://ror.org/04j06r887', 'en', 1, 'https://ror.org/04j06r887 Garrett College'), (43859, 'https://ror.org/04j0w0694', 'en', 1, 'https://ror.org/04j0w0694 Atlantic International University'), (43860, 'https://ror.org/04j1sr579', 'de', 1, 'https://ror.org/04j1sr579 Hochschule für Gesundheit & Sport, Technik & Kunst'), (43861, 'https://ror.org/04j3eks61', 'en', 1, 'https://ror.org/04j3eks61 Institute of Solid State Physics 固体物理研究所'), (43862, 'https://ror.org/04j3mbq57', 'no_lang_code', 1, 'https://ror.org/04j3mbq57 A-Team (United States)'), (43863, 'https://ror.org/04j68nv27', 'en', 1, 'https://ror.org/04j68nv27 Millennia Atlantic University'), (43864, 'https://ror.org/04j6cfb03', 'no_lang_code', 1, 'https://ror.org/04j6cfb03 Reliance Industries (India)'), (43865, 'https://ror.org/04jaeeg73', 'en', 1, 'https://ror.org/04jaeeg73 Wyoming Space Grant Consortium'), (43866, 'https://ror.org/04jc0pe38', 'no_lang_code', 1, 'https://ror.org/04jc0pe38 RenewSys (India)'), (43867, 'https://ror.org/04jdsqj08', 'pl', 1, 'https://ror.org/04jdsqj08 Wyższa Szkoła Pedagogiki i Administracji im. Mieszka I w Poznaniu'), (43868, 'https://ror.org/04je48v27', 'pt', 1, 'https://ror.org/04je48v27 Instituto Federal do Rio Grande do Norte'), (43869, 'https://ror.org/04jfg7g12', 'en', 1, 'https://ror.org/04jfg7g12 Shanghai Institute of Disaster Prevention and Relief 上海防灾救灾研究所'), (43870, 'https://ror.org/04jfz0g97', 'zh', 1, 'https://ror.org/04jfz0g97 Tung Wah College, 東華學院'), (43871, 'https://ror.org/04jgb8w65', 'en', 1, 'https://ror.org/04jgb8w65 Sino-Japan Friendship Center for Environmental Protection 中日友好环境保护中心'), (43872, 'https://ror.org/04jhyte11', 'no_lang_code', 1, 'https://ror.org/04jhyte11 Edwards Lifesciences (United States)'), (43873, 'https://ror.org/04jjns303', 'en', 1, 'https://ror.org/04jjns303 Institute of Applied Mechanics Институт прикладной механики'), (43874, 'https://ror.org/04jqr6p02', 'en', 1, 'https://ror.org/04jqr6p02 Forestry Commission'), (43875, 'https://ror.org/04jrbrj58', 'en', 1, 'https://ror.org/04jrbrj58 Rhode Island Space Grant Consortium'), (43876, 'https://ror.org/04jtk0f19', 'es', 1, 'https://ror.org/04jtk0f19 Instituto Superior de Estudios Psicológicos'), (43877, 'https://ror.org/04jzegn30', 'en', 1, 'https://ror.org/04jzegn30 Centre for Policy Research'), (43878, 'https://ror.org/04jzz0b06', 'en', 1, 'https://ror.org/04jzz0b06 National Research Centre on Equines'), (43879, 'https://ror.org/04k0x3905', 'en', 1, 'https://ror.org/04k0x3905 American Academy of Fixed Prosthodontics'), (43880, 'https://ror.org/04k1m2t10', 'en', 1, 'https://ror.org/04k1m2t10 Jiangsu Police Officer College 江苏警官学院'), (43881, 'https://ror.org/04k4dpz50', 'en', 1, 'https://ror.org/04k4dpz50 Accelerated Cure Project for Multiple Sclerosis'), (43882, 'https://ror.org/04k5pfq21', 'no_lang_code', 1, 'https://ror.org/04k5pfq21 Video Discovery (United States)'), (43883, 'https://ror.org/04k66wn67', 'en', 1, 'https://ror.org/04k66wn67 Leo Baeck College'), (43884, 'https://ror.org/04k6mn280', 'en', 1, 'https://ror.org/04k6mn280 Society for Endocrinology'), (43885, 'https://ror.org/04k70g465', 'it', 1, 'https://ror.org/04k70g465 Conservatorio di Musica Benedetto Marcello di Venezia'), (43886, 'https://ror.org/04kadgz77', 'fr', 1, 'https://ror.org/04kadgz77 Surface du Verre et Interfaces'), (43887, 'https://ror.org/04kaykv54', 'en', 1, 'https://ror.org/04kaykv54 Central Board of Secondary Education'), (43888, 'https://ror.org/04kcf7d03', 'no_lang_code', 1, 'https://ror.org/04kcf7d03 SENSEYE LIMITED'), (43889, 'https://ror.org/04kh65m59', 'en', 1, 'https://ror.org/04kh65m59 Moscow Institute of Energy and Energy Saving'), (43890, 'https://ror.org/04kh7mx79', 'en', 1, 'https://ror.org/04kh7mx79 Polytecnic in Požega Veleučilište u Požegi'), (43891, 'https://ror.org/04kh9f807', 'en', 1, 'https://ror.org/04kh9f807 Institute of Precambrian Geology and Geochronology Институт геологии и геохронологии докембрия'), (43892, 'https://ror.org/04kjbga23', 'en', 1, 'https://ror.org/04kjbga23 Chinese Students and Scholars Association of Ireland 爱尔兰中国学生学者联合谊会'), (43893, 'https://ror.org/04kk1a460', 'es', 1, 'https://ror.org/04kk1a460 Fundación Pablo García'), (43894, 'https://ror.org/04kknj623', 'en', 1, 'https://ror.org/04kknj623 EMF Biological Research Trust'), (43895, 'https://ror.org/04kn1c182', 'no_lang_code', 1, 'https://ror.org/04kn1c182 Serampore College শ্রীরামপুর কলেজ'), (43896, 'https://ror.org/04kne2879', 'de', 1, 'https://ror.org/04kne2879 Kirchliche Pädagogische Hochschule Edith Stein'), (43897, 'https://ror.org/04kpqhb39', 'ms', 1, 'https://ror.org/04kpqhb39 Jabatan Perkhidmatan Awam Malaysia Public Service Department'), (43898, 'https://ror.org/04kq05542', 'no_lang_code', 1, 'https://ror.org/04kq05542 Veolia (India)'), (43899, 'https://ror.org/04kq49p26', 'fr', 1, 'https://ror.org/04kq49p26 Centre des Techniques et Matériaux de Construction'), (43900, 'https://ror.org/04ktct527', 'en', 1, 'https://ror.org/04ktct527 Cure Childhood Cancer Association'), (43901, 'https://ror.org/04kthgc59', 'en', 1, 'https://ror.org/04kthgc59 Criminological Research Institute of Lower Saxony Kriminologisches Forschungsinstitut Niedersachsen'), (43902, 'https://ror.org/04kxhvh23', 'en', 1, 'https://ror.org/04kxhvh23 Oconee Fall Line Technical College'), (43903, 'https://ror.org/04ky50w21', 'no_lang_code', 1, 'https://ror.org/04ky50w21 Murugappa (India)'), (43904, 'https://ror.org/04kzzpx53', 'fr', 1, 'https://ror.org/04kzzpx53 Puce Muse / Espace Musical'), (43905, 'https://ror.org/04m2f2s83', 'en', 1, 'https://ror.org/04m2f2s83 Office of the Attorney General'), (43906, 'https://ror.org/04m34bn97', 'es', 1, 'https://ror.org/04m34bn97 Universidad Politecnica del Estado de Morelos'), (43907, 'https://ror.org/04m4a9x26', 'en', 1, 'https://ror.org/04m4a9x26 Direction Générale Affaires maritimes et pêche Directorate-General for Maritime Affairs and Fisheries Generaldirektion Maritime Angelegenheiten und Fischerei'), (43908, 'https://ror.org/04m4shs41', 'de', 1, 'https://ror.org/04m4shs41 Dekra Hochschule für Medien'), (43909, 'https://ror.org/04m514a38', 'en', 1, 'https://ror.org/04m514a38 Clarity Centre for Sensor Web Technologies'), (43910, 'https://ror.org/04m57qg37', 'en', 1, 'https://ror.org/04m57qg37 Manitoba Labour and Immigration'), (43911, 'https://ror.org/04m63t111', 'en', 1, 'https://ror.org/04m63t111 Tennessee College of Applied Technology'), (43912, 'https://ror.org/04m6e6f10', 'en', 1, 'https://ror.org/04m6e6f10 Ministry of Agriculture and Fisheries Ministère de l''Agriculture et de la Pêche Maritime'), (43913, 'https://ror.org/04m6m8q83', 'fr', 1, 'https://ror.org/04m6m8q83 Vétérinaires Sans Frontières Suisse'), (43914, 'https://ror.org/04m7jhx64', 'fr', 1, 'https://ror.org/04m7jhx64 Confédération Générale des Entreprises du Maroc'), (43915, 'https://ror.org/04magp836', 'pt', 1, 'https://ror.org/04magp836 Centro Terra Viva'), (43916, 'https://ror.org/04mekkx88', 'no_lang_code', 1, 'https://ror.org/04mekkx88 Spirit AeroSystems (United States)'), (43917, 'https://ror.org/04mg21y19', 'en', 1, 'https://ror.org/04mg21y19 Tyler Junior College'), (43918, 'https://ror.org/04mgkhj33', 'pt', 1, 'https://ror.org/04mgkhj33 Instituto Alergoimuno de Americana'), (43919, 'https://ror.org/04mhkhc08', 'en', 1, 'https://ror.org/04mhkhc08 Solve ME/CFS Initiative'), (43920, 'https://ror.org/04mnf7j68', 'en', 1, 'https://ror.org/04mnf7j68 Dongnam Health University 東南保健大學 동남보건대학'), (43921, 'https://ror.org/04mq24005', 'en', 1, 'https://ror.org/04mq24005 Public Procurement Service 조달청'), (43922, 'https://ror.org/04mqwrw94', 'en', 1, 'https://ror.org/04mqwrw94 New England Bible College'), (43923, 'https://ror.org/04mraae85', 'no_lang_code', 1, 'https://ror.org/04mraae85 SOS Sahel Ethiopia'), (43924, 'https://ror.org/04mrtf838', 'pl', 1, 'https://ror.org/04mrtf838 Staropolska Szkoła Wyższa w Kielcach'), (43925, 'https://ror.org/04mvanw22', 'en', 1, 'https://ror.org/04mvanw22 Fachhochschule Polizei Sachsen-Anhalt University of Applied Police Sciences Saxony Anhalt'), (43926, 'https://ror.org/04mw0df78', 'en', 1, 'https://ror.org/04mw0df78 North Carolina Community College System'), (43927, 'https://ror.org/04mw3jj73', 'fr', 1, 'https://ror.org/04mw3jj73 Fondation Sciences et Technologies pour l''Aéronautique et l''Espace'), (43928, 'https://ror.org/04mwj6r38', 'en', 1, 'https://ror.org/04mwj6r38 Community Media Trust'), (43929, 'https://ror.org/04mwvcn50', 'en', 1, 'https://ror.org/04mwvcn50 Islamic Azad University, Yazd دانشگاه آزاد اسلامی یزد'), (43930, 'https://ror.org/04mxf4066', 'en', 1, 'https://ror.org/04mxf4066 Gwinnett Technical College'), (43931, 'https://ror.org/04mze8a19', 'en', 1, 'https://ror.org/04mze8a19 Gian Sagar Medical College and Hospital'), (43932, 'https://ror.org/04n0f2b96', 'no_lang_code', 1, 'https://ror.org/04n0f2b96 China South Industries Group (China) 中国兵器工业第五九研究所'), (43933, 'https://ror.org/04n0t4871', 'en', 1, 'https://ror.org/04n0t4871 LDS Business College'), (43934, 'https://ror.org/04n28sf88', 'en', 1, 'https://ror.org/04n28sf88 Icelandic Tourism Research Centre Rannsóknamiðstöð Ferðamála'), (43935, 'https://ror.org/04n2vg926', 'en', 1, 'https://ror.org/04n2vg926 Yamal Polar Agro-Economic College Ямальский полярный агроэкономический техникум'), (43936, 'https://ror.org/04n30gn53', 'pt', 1, 'https://ror.org/04n30gn53 Associação Empresarial de Paços de Ferreira'), (43937, 'https://ror.org/04n3mvx98', 'no_lang_code', 1, 'https://ror.org/04n3mvx98 Elder Pharmaceuticals (India)'), (43938, 'https://ror.org/04n4r7e14', 'pt', 1, 'https://ror.org/04n4r7e14 Fundação Centro de Hematologia e Hemoterapia de Minas Gerais'), (43939, 'https://ror.org/04n5aqd27', 'en', 1, 'https://ror.org/04n5aqd27 Union College - Kentucky'), (43940, 'https://ror.org/04n6a5g54', 'en', 1, 'https://ror.org/04n6a5g54 South Coast College'), (43941, 'https://ror.org/04n835f38', 'en', 1, 'https://ror.org/04n835f38 Graduate School USA'), (43942, 'https://ror.org/04n9x2190', 'fr', 1, 'https://ror.org/04n9x2190 Comité National de Télédétection et d''Information Géographique'), (43943, 'https://ror.org/04na2p952', 'en', 1, 'https://ror.org/04na2p952 Ministry of Information, Communications and Technology'), (43944, 'https://ror.org/04nahdt84', 'en', 1, 'https://ror.org/04nahdt84 SVS Medical College'), (43945, 'https://ror.org/04nap1310', 'en', 1, 'https://ror.org/04nap1310 American College of Financial Services'), (43946, 'https://ror.org/04nbnrt83', 'no_lang_code', 1, 'https://ror.org/04nbnrt83 New Balance (United States)'), (43947, 'https://ror.org/04ndr7251', 'en', 1, 'https://ror.org/04ndr7251 Shandong Provincial Water Resources Research Institute 山东省水科院'), (43948, 'https://ror.org/04netx779', 'en', 1, 'https://ror.org/04netx779 Children''s Cancer Therapy Development Institute'), (43949, 'https://ror.org/04nje3391', 'en', 1, 'https://ror.org/04nje3391 Goodenough College'), (43950, 'https://ror.org/04nr63k14', 'en', 1, 'https://ror.org/04nr63k14 Pennsylvania Higher Education Assistance Agency'), (43951, 'https://ror.org/04nv2wh79', 'en', 1, 'https://ror.org/04nv2wh79 Novant Health'), (43952, 'https://ror.org/04nv8he75', 'en', 1, 'https://ror.org/04nv8he75 Arkansas Arts Council'), (43953, 'https://ror.org/04nvfwd22', 'en', 1, 'https://ror.org/04nvfwd22 LIM College'), (43954, 'https://ror.org/04nvtmr42', 'no_lang_code', 1, 'https://ror.org/04nvtmr42 Interface (United States)'), (43955, 'https://ror.org/04nwg1t42', 'fr', 1, 'https://ror.org/04nwg1t42 École Spéciale des Travaux Publics'), (43956, 'https://ror.org/04p0q7p15', 'no_lang_code', 1, 'https://ror.org/04p0q7p15 SurveyMonkey (United States)'), (43957, 'https://ror.org/04p175r34', 'it', 1, 'https://ror.org/04p175r34 Conservatorio statale di Musica Alfredo Casella'), (43958, 'https://ror.org/04p181a07', 'en', 1, 'https://ror.org/04p181a07 Beskæftigelsesministeriet Danish Ministry of Employment'), (43959, 'https://ror.org/04p18ec14', 'en', 1, 'https://ror.org/04p18ec14 Vinayaka Missions Medical College and Hospitals'), (43960, 'https://ror.org/04p2bt406', 'no_lang_code', 1, 'https://ror.org/04p2bt406 Maharaja Chhatrasal Bundelkhand University महाराजा छत्रसाल बुंदेलखंड विश्वविद्यालय'), (43961, 'https://ror.org/04p2zt755', 'en', 1, 'https://ror.org/04p2zt755 South African National Energy Development Institute'), (43962, 'https://ror.org/04p3h2z50', 'no_lang_code', 1, 'https://ror.org/04p3h2z50 Bank of New York Mellon'), (43963, 'https://ror.org/04p3nq874', 'no_lang_code', 1, 'https://ror.org/04p3nq874 Sunoco (United States)'), (43964, 'https://ror.org/04p3pp808', 'en', 1, 'https://ror.org/04p3pp808 ICFAI Foundation for Higher Education'), (43965, 'https://ror.org/04p3y0q03', 'en', 1, 'https://ror.org/04p3y0q03 Bank of England'), (43966, 'https://ror.org/04p549618', 'en', 1, 'https://ror.org/04p549618 University of South Carolina Union'), (43967, 'https://ror.org/04p5ezw03', 'en', 1, 'https://ror.org/04p5ezw03 Cox College'), (43968, 'https://ror.org/04p63s850', 'en', 1, 'https://ror.org/04p63s850 Minnesota Department of Transportation'), (43969, 'https://ror.org/04p6zf087', 'no_lang_code', 1, 'https://ror.org/04p6zf087 Mekhanobr Appliances (Russia) Механобр-техника'), (43970, 'https://ror.org/04p93kz40', 'en', 1, 'https://ror.org/04p93kz40 G Pulla Reddy Dental College & Hospital'), (43971, 'https://ror.org/04p9b6182', 'en', 1, 'https://ror.org/04p9b6182 National Institute of Pharmaceutical Education and Research ৰাষ্ট্ৰীয় ভেষজবিজ্ঞান শিক্ষা আৰু গৱেষণা প্ৰতিষ্ঠান, গুৱাহাটী'), (43972, 'https://ror.org/04p9htb70', 'en', 1, 'https://ror.org/04p9htb70 Seychelles Fishing Authority'), (43973, 'https://ror.org/04pdjh730', 'no_lang_code', 1, 'https://ror.org/04pdjh730 MSA Gallet (France)'), (43974, 'https://ror.org/04pf8en64', 'en', 1, 'https://ror.org/04pf8en64 Rosedale Bible College'), (43975, 'https://ror.org/04pgv9784', 'en', 1, 'https://ror.org/04pgv9784 Energy Biosciences Institute'), (43976, 'https://ror.org/04phxq043', 'en', 1, 'https://ror.org/04phxq043 California Miramar University'), (43977, 'https://ror.org/04pjj9g71', 'en', 1, 'https://ror.org/04pjj9g71 Warsaw Management University Wyższa Szkoła Menedżerska'), (43978, 'https://ror.org/04pjzhr83', 'en', 1, 'https://ror.org/04pjzhr83 Wenatchee Valley College'), (43979, 'https://ror.org/04pks1p32', 'fr', 1, 'https://ror.org/04pks1p32 Centre National de Recherches Prehistoriques, Anthropologiques et Historiques'), (43980, 'https://ror.org/04pnpc024', 'pt', 1, 'https://ror.org/04pnpc024 Governo do Estado do Rio de Janeiro'), (43981, 'https://ror.org/04pqf8583', 'es', 1, 'https://ror.org/04pqf8583 Institut Pere Mata'), (43982, 'https://ror.org/04pqs5t46', 'en', 1, 'https://ror.org/04pqs5t46 Beacon College'), (43983, 'https://ror.org/04pqz1f73', 'sv', 1, 'https://ror.org/04pqz1f73 Lasarettet i Ystad'), (43984, 'https://ror.org/04ps7x844', 'no_lang_code', 1, 'https://ror.org/04ps7x844 FedEx (United States)'), (43985, 'https://ror.org/04pv4k943', 'en', 1, 'https://ror.org/04pv4k943 Hydrometeorological Research Centre of Russian Federation федеральное государственное бюджетное учреждение Гидрометеорологический научно-исследовательский центр Российской Федерации'), (43986, 'https://ror.org/04px8zq55', 'no_lang_code', 1, 'https://ror.org/04px8zq55 Egyptian Solar Research Center'), (43987, 'https://ror.org/04pxbhh58', 'pt', 1, 'https://ror.org/04pxbhh58 República de Moçambique'), (43988, 'https://ror.org/04py24056', 'en', 1, 'https://ror.org/04py24056 Bavarian State Painting Collections Bayerische Staatsgemäldesammlungen'), (43989, 'https://ror.org/04q01pf08', 'en', 1, 'https://ror.org/04q01pf08 Federation Wallonia-Brussels, French Community of Belgium Fédération Wallonie-Bruxelles'), (43990, 'https://ror.org/04q0d9a06', 'no_lang_code', 1, 'https://ror.org/04q0d9a06 Avisonic (Taiwan)'), (43991, 'https://ror.org/04q2mdb48', 'sl', 1, 'https://ror.org/04q2mdb48 Ekonomska Šola Murska Sobota'), (43992, 'https://ror.org/04q32pk93', 'en', 1, 'https://ror.org/04q32pk93 Jawaharlal Nehru Medical College Hospital'), (43993, 'https://ror.org/04q7j9m29', 'en', 1, 'https://ror.org/04q7j9m29 Arkansas Agricultural Experiment Station'), (43994, 'https://ror.org/04q89zk14', 'en', 1, 'https://ror.org/04q89zk14 Swindon College'), (43995, 'https://ror.org/04q9me654', 'no_lang_code', 1, 'https://ror.org/04q9me654 Fleury S.A. (Brazil)'), (43996, 'https://ror.org/04qd7ym22', 'en', 1, 'https://ror.org/04qd7ym22 HOPE Cape Town Trust'), (43997, 'https://ror.org/04qdwr166', 'en', 1, 'https://ror.org/04qdwr166 Texas Medical Board'), (43998, 'https://ror.org/04qf03327', 'en', 1, 'https://ror.org/04qf03327 Republic Polytechnic 共和理工學院'), (43999, 'https://ror.org/04qf4wy02', 'no_lang_code', 1, 'https://ror.org/04qf4wy02 Omnitek Engineering (United States)'), (44000, 'https://ror.org/04qk6hk13', 'en', 1, 'https://ror.org/04qk6hk13 North Warwickshire and Hinckley College'), (44001, 'https://ror.org/04qmzfs71', 'no_lang_code', 1, 'https://ror.org/04qmzfs71 PRASAC Pôle Régional de Recherche Appliquée au Développement des Systèmes Agricoles d''Afrique Centrale'), (44002, 'https://ror.org/04qpqg969', 'pt', 1, 'https://ror.org/04qpqg969 Direcção Geral de Ensino Superior Ciencia'), (44003, 'https://ror.org/04qqd9793', 'en', 1, 'https://ror.org/04qqd9793 Chinese Academy of Science and Technology for Development 中国科学技术促进发展'), (44004, 'https://ror.org/04qs0rx25', 'en', 1, 'https://ror.org/04qs0rx25 Wallace State Community College'), (44005, 'https://ror.org/04qv8j179', 'en', 1, 'https://ror.org/04qv8j179 Government of Equatorial Guinea'), (44006, 'https://ror.org/04qvn8b67', 'en', 1, 'https://ror.org/04qvn8b67 Association of British Paediatric Nurses'), (44007, 'https://ror.org/04qw2cf87', 'no_lang_code', 1, 'https://ror.org/04qw2cf87 WESTERVELD CONSERVATION TRUST'), (44008, 'https://ror.org/04qwsbk34', 'en', 1, 'https://ror.org/04qwsbk34 Medical Access Uganda'), (44009, 'https://ror.org/04qxsp544', 'no_lang_code', 1, 'https://ror.org/04qxsp544 Newman''s Own (United States)'), (44010, 'https://ror.org/04r030w90', 'en', 1, 'https://ror.org/04r030w90 Yeshiva of Nitra Rabbinical College'), (44011, 'https://ror.org/04r0j3d36', 'en', 1, 'https://ror.org/04r0j3d36 Państwowa Wyższa Szkoła Zawodowa w Koninie State University of Applied Sciences in Konin'), (44012, 'https://ror.org/04r4z2512', 'en', 1, 'https://ror.org/04r4z2512 Northwest Iowa Community College'), (44013, 'https://ror.org/04r8ftk86', 'no_lang_code', 1, 'https://ror.org/04r8ftk86 ICICI Lombard (India)'), (44014, 'https://ror.org/04r9pgh69', 'en', 1, 'https://ror.org/04r9pgh69 Private College of Economic Studies Znojmo Soukromá Vysoká Skola Ekonomická Znojmo'), (44015, 'https://ror.org/04rawk951', 'en', 1, 'https://ror.org/04rawk951 Chumakov Institute of Poliomyelitis and Viral Encephalitides Институт полиомиелита и вирусных энцефалитов'), (44016, 'https://ror.org/04rb38388', 'en', 1, 'https://ror.org/04rb38388 Institute of Metallurgy Институт металлургии УрО РАН'), (44017, 'https://ror.org/04rbbpv92', 'no_lang_code', 1, 'https://ror.org/04rbbpv92 J-Power (Japan) 電源開発株式会社'), (44018, 'https://ror.org/04rc6g352', 'en', 1, 'https://ror.org/04rc6g352 Granger Foundation'), (44019, 'https://ror.org/04rew5e44', 'en', 1, 'https://ror.org/04rew5e44 Autorité du Lac Tanganyika Lake Tanganyika Authority'), (44020, 'https://ror.org/04rewz209', 'no_lang_code', 1, 'https://ror.org/04rewz209 Research Center for Surface and Vacuum (Russia) Научно-исследовательский центр по изучению свойств поверхности и вакуума'), (44021, 'https://ror.org/04rhvbz32', 'en', 1, 'https://ror.org/04rhvbz32 California Community Colleges System'), (44022, 'https://ror.org/04rkf8c04', 'en', 1, 'https://ror.org/04rkf8c04 San Joaquin Valley College'), (44023, 'https://ror.org/04rkgm763', 'it', 1, 'https://ror.org/04rkgm763 Conservatorio di Musica Ottorino Respighi'), (44024, 'https://ror.org/04rnenb96', 'en', 1, 'https://ror.org/04rnenb96 Australian War Memorial'), (44025, 'https://ror.org/04rp2t677', 'en', 1, 'https://ror.org/04rp2t677 African Palliative Care Association'), (44026, 'https://ror.org/04rqr4m92', 'it', 1, 'https://ror.org/04rqr4m92 Academy of Fine Arts of Bologna Accademia di Belle Arti di Bologna'), (44027, 'https://ror.org/04rqxx434', 'fr', 1, 'https://ror.org/04rqxx434 Agence Nationale pour la Promotion et la Rationalisation de l''Utilisation de l''Energie'), (44028, 'https://ror.org/04rt7n757', 'en', 1, 'https://ror.org/04rt7n757 C. U. Shah University'), (44029, 'https://ror.org/04rtx9382', 'en', 1, 'https://ror.org/04rtx9382 World Health Organization Regional Office for Africa'), (44030, 'https://ror.org/04rvw0k47', 'en', 1, 'https://ror.org/04rvw0k47 University of Shizuoka 静岡県立大学'), (44031, 'https://ror.org/04rw0w260', 'fr', 1, 'https://ror.org/04rw0w260 École Européenne Supérieure d''Art de Bretagne'), (44032, 'https://ror.org/04rxdpa15', 'no_lang_code', 1, 'https://ror.org/04rxdpa15 Sprint (United States)'), (44033, 'https://ror.org/04rxyz404', 'en', 1, 'https://ror.org/04rxyz404 St. John''s Seminary'), (44034, 'https://ror.org/04ry1rt27', 'fr', 1, 'https://ror.org/04ry1rt27 Conseil Régional d''Île-de-France'), (44035, 'https://ror.org/04ry60e05', 'en', 1, 'https://ror.org/04ry60e05 Institute of Forensic Science 司法部司法鉴定科学技术研究所'), (44036, 'https://ror.org/04s3dsz85', 'en', 1, 'https://ror.org/04s3dsz85 Office of Diversity and Inclusion'), (44037, 'https://ror.org/04s4kqd92', 'no_lang_code', 1, 'https://ror.org/04s4kqd92 Dabur Research Foundation (India)'), (44038, 'https://ror.org/04s4rcv05', 'en', 1, 'https://ror.org/04s4rcv05 Hipolit Cegielski State University of Applied Sciences in Gniezno Państwowa Wyższa Szkoła Zawodowa im. Hipolita Cegielskiego w Gnieźnie'), (44039, 'https://ror.org/04s51wj45', 'fr', 1, 'https://ror.org/04s51wj45 Ministère de l’Industrie, du Commerce, de l’Investissement et de l’Economie Numérique'), (44040, 'https://ror.org/04s5ed403', 'en', 1, 'https://ror.org/04s5ed403 Randolph Township Schools'), (44041, 'https://ror.org/04s8aes72', 'fr', 1, 'https://ror.org/04s8aes72 Chambre de Commerce et d''Industrie du Centre'), (44042, 'https://ror.org/04s8jbf64', 'en', 1, 'https://ror.org/04s8jbf64 Centre for Development Economics'), (44043, 'https://ror.org/04s9fyw02', 'en', 1, 'https://ror.org/04s9fyw02 National Institute Of Veterinary Epidemiology And Disease Informatics'), (44044, 'https://ror.org/04sbk5k46', 'en', 1, 'https://ror.org/04sbk5k46 North China Research Institute of Electro-optics 华北光电技术研究所'), (44045, 'https://ror.org/04scnfc98', 'en', 1, 'https://ror.org/04scnfc98 Republican Scientific and Practical Center of Neurology and Neurosurgery Республиканский научно-практический центр неврологии и нейрохирургии Рэспубліканскі навукова-практычны цэнтр неўралогіі і нейрахірургіі'), (44046, 'https://ror.org/04sd34v05', 'en', 1, 'https://ror.org/04sd34v05 Centre for World Solidarity'), (44047, 'https://ror.org/04sdh5f05', 'en', 1, 'https://ror.org/04sdh5f05 Vance-Granville Community College'), (44048, 'https://ror.org/04sdw4j56', 'en', 1, 'https://ror.org/04sdw4j56 Development Centre of the Tensift Region'), (44049, 'https://ror.org/04se07z51', 'no_lang_code', 1, 'https://ror.org/04se07z51 Misc (Egypt)'), (44050, 'https://ror.org/04sg05j02', 'no_lang_code', 1, 'https://ror.org/04sg05j02 Tarix Orphan (United States)'), (44051, 'https://ror.org/04sgttv52', 'pt', 1, 'https://ror.org/04sgttv52 Centro Hospitalar Cova da Beira, Hospital Center of Cova da Beira'), (44052, 'https://ror.org/04shpes69', 'no_lang_code', 1, 'https://ror.org/04shpes69 Span Diagnostics (India)'), (44053, 'https://ror.org/04sj6d461', 'en', 1, 'https://ror.org/04sj6d461 Chatfield College'), (44054, 'https://ror.org/04sjht826', 'en', 1, 'https://ror.org/04sjht826 Minnesota State Arts Board'), (44055, 'https://ror.org/04sn8qj61', 'en', 1, 'https://ror.org/04sn8qj61 International School of Management'), (44056, 'https://ror.org/04spf1k23', 'en', 1, 'https://ror.org/04spf1k23 Massachusetts Department of Environmental Protection'), (44057, 'https://ror.org/04spzbf72', 'en', 1, 'https://ror.org/04spzbf72 Office of Public Health Genomics'), (44058, 'https://ror.org/04stt5k13', 'en', 1, 'https://ror.org/04stt5k13 Prairie Improvement Network'), (44059, 'https://ror.org/04sv11p30', 'fr', 1, 'https://ror.org/04sv11p30 Haute École de la Province de Namur'), (44060, 'https://ror.org/04sxex454', 'pt', 1, 'https://ror.org/04sxex454 Faculdade Meridional'), (44061, 'https://ror.org/04sxgk411', 'fr', 1, 'https://ror.org/04sxgk411 Ministry of Sports, Youth, Popular Education and Community Life Ministère de la Ville, de la Jeunesse et des Sports'), (44062, 'https://ror.org/04sxpzn67', 'en', 1, 'https://ror.org/04sxpzn67 Society For Development Alternatives'), (44063, 'https://ror.org/04t0epe82', 'no_lang_code', 1, 'https://ror.org/04t0epe82 3DT Holdings (United States)'), (44064, 'https://ror.org/04t17dk82', 'pt', 1, 'https://ror.org/04t17dk82 União Dinâmica de Faculdades Cataratas'), (44065, 'https://ror.org/04t1qep04', 'en', 1, 'https://ror.org/04t1qep04 San Bernardino Valley College'), (44066, 'https://ror.org/04t25zj93', 'en', 1, 'https://ror.org/04t25zj93 God''s Bible School and College'), (44067, 'https://ror.org/04t39kh72', 'fr', 1, 'https://ror.org/04t39kh72 Ministère de l’Environnement et du Développement Durable'), (44068, 'https://ror.org/04t4ty441', 'en', 1, 'https://ror.org/04t4ty441 Southeast Kentucky Community and Technical College'), (44069, 'https://ror.org/04t59qd02', 'no_lang_code', 1, 'https://ror.org/04t59qd02 China Power Engineering Consulting Group (China)'), (44070, 'https://ror.org/04t5yz624', 'en', 1, 'https://ror.org/04t5yz624 Defense Information School'), (44071, 'https://ror.org/04tb1ww30', 'en', 1, 'https://ror.org/04tb1ww30 Adler Graduate School'), (44072, 'https://ror.org/04td2q443', 'en', 1, 'https://ror.org/04td2q443 Texas Animal Health Commission'), (44073, 'https://ror.org/04tdh7519', 'en', 1, 'https://ror.org/04tdh7519 Jiangxi Province Forestry Survey Planning Institute 国家林业局调查规划设计院'), (44074, 'https://ror.org/04th3yy26', 'pt', 1, 'https://ror.org/04th3yy26 Secretaria de Estado de Ciência Tecnologia e Inovação'), (44075, 'https://ror.org/04tnw9626', 'en', 1, 'https://ror.org/04tnw9626 Queensland Academy of Sport'), (44076, 'https://ror.org/04tr4sk76', 'de', 1, 'https://ror.org/04tr4sk76 Fachhochschule für Finanzen Nordrhein Westfalen'), (44077, 'https://ror.org/04trbax61', 'no_lang_code', 1, 'https://ror.org/04trbax61 Roxel (France)'), (44078, 'https://ror.org/04tvwvh44', 'fr', 1, 'https://ror.org/04tvwvh44 Association Marocaine Pour la Recherche Développement'), (44079, 'https://ror.org/04twsya26', 'en', 1, 'https://ror.org/04twsya26 B. V. Patel Pharmaceutical Education and Research Development Centre'), (44080, 'https://ror.org/04ty11y53', 'no_lang_code', 1, 'https://ror.org/04ty11y53 Kirloskar Group (India)'), (44081, 'https://ror.org/04v0zrf25', 'en', 1, 'https://ror.org/04v0zrf25 New York College of Health Professions'), (44082, 'https://ror.org/04v1jm771', 'en', 1, 'https://ror.org/04v1jm771 State Oil and Gas Board of Alabama'), (44083, 'https://ror.org/04v2xzv40', 'en', 1, 'https://ror.org/04v2xzv40 Building Research Association of New Zealand'), (44084, 'https://ror.org/04v31xa23', 'en', 1, 'https://ror.org/04v31xa23 Institute of Economics 中国社会科学院经济研究所'), (44085, 'https://ror.org/04v4h5886', 'en', 1, 'https://ror.org/04v4h5886 New Orleans Baptist Theological Seminary'), (44086, 'https://ror.org/04v70b898', 'no_lang_code', 1, 'https://ror.org/04v70b898 Nano Energy (South Africa)'), (44087, 'https://ror.org/04v719r80', 'en', 1, 'https://ror.org/04v719r80 National Board of Examinations राष्ट्रीय परीक्षा बोर्ड'), (44088, 'https://ror.org/04v748538', 'no_lang_code', 1, 'https://ror.org/04v748538 Abbott (Japan) アボット'), (44089, 'https://ror.org/04v8c9r98', 'no_lang_code', 1, 'https://ror.org/04v8c9r98 Fidelity Investments (United States)'), (44090, 'https://ror.org/04vatt549', 'fr', 1, 'https://ror.org/04vatt549 Agence Nationale pour la Promotion des Petites et Moyennes Entreprises'), (44091, 'https://ror.org/04vctsm14', 'en', 1, 'https://ror.org/04vctsm14 Department of Social Services'), (44092, 'https://ror.org/04vd30725', 'en', 1, 'https://ror.org/04vd30725 Europejska Uczelnia Społeczno-Techniczna w Radomiu Radom Academy of Social and Technical Sciences'), (44093, 'https://ror.org/04vdmc602', 'no_lang_code', 1, 'https://ror.org/04vdmc602 Honda (United States)'), (44094, 'https://ror.org/04vghy880', 'en', 1, 'https://ror.org/04vghy880 Port of Melbourne Corporation'), (44095, 'https://ror.org/04vgqtr26', 'en', 1, 'https://ror.org/04vgqtr26 Tri-State College of Acupuncture'), (44096, 'https://ror.org/04vhk3x11', 'en', 1, 'https://ror.org/04vhk3x11 Information and Communication Technology Authority'), (44097, 'https://ror.org/04vkgh027', 'en', 1, 'https://ror.org/04vkgh027 Berk Trade and Business School'), (44098, 'https://ror.org/04vmpjr08', 'en', 1, 'https://ror.org/04vmpjr08 Institute of Grassland Research 草原研究所'), (44099, 'https://ror.org/04vmsnf37', 'no_lang_code', 1, 'https://ror.org/04vmsnf37 Assurant (United States)'); INSERT INTO `rors` VALUES (44100, 'https://ror.org/04vpt1784', 'en', 1, 'https://ror.org/04vpt1784 Sha''arei Mishpat College מכללת שערי משפט'), (44101, 'https://ror.org/04vpx0k46', 'fr', 1, 'https://ror.org/04vpx0k46 Anvredet'), (44102, 'https://ror.org/04vpza371', 'en', 1, 'https://ror.org/04vpza371 Cooperative Office for Voluntary Organizations'), (44103, 'https://ror.org/04vqdec11', 'no_lang_code', 1, 'https://ror.org/04vqdec11 Southwest Airlines (United States)'), (44104, 'https://ror.org/04vtbxw76', 'en', 1, 'https://ror.org/04vtbxw76 Guangdong Academy of Forestry 广东省林业科学研究院'), (44105, 'https://ror.org/04vtvrr13', 'nl', 1, 'https://ror.org/04vtvrr13 Codarts Rotterdam'), (44106, 'https://ror.org/04vtz2g46', 'en', 1, 'https://ror.org/04vtz2g46 Korea Institute for International Economic Policy 대외경제정책연구원'), (44107, 'https://ror.org/04vv1c071', 'en', 1, 'https://ror.org/04vv1c071 Silsbee Independent School District'), (44108, 'https://ror.org/04vw0kz07', 'en', 1, 'https://ror.org/04vw0kz07 Division of Human Resource Management'), (44109, 'https://ror.org/04vwfqp33', 'no_lang_code', 1, 'https://ror.org/04vwfqp33 Sanwa Hydrotech (Japan) 三和ハイドロテック株式会社'), (44110, 'https://ror.org/04vwgk321', 'en', 1, 'https://ror.org/04vwgk321 Art Institute of Atlanta'), (44111, 'https://ror.org/04vxpm374', 'no_lang_code', 1, 'https://ror.org/04vxpm374 Aegon (Netherlands)'), (44112, 'https://ror.org/04w0qkc46', 'en', 1, 'https://ror.org/04w0qkc46 Labette Community College'), (44113, 'https://ror.org/04w0r6004', 'it', 1, 'https://ror.org/04w0r6004 Fondazione Antonio Ratti'), (44114, 'https://ror.org/04w1wsw24', 'en', 1, 'https://ror.org/04w1wsw24 Geophysical Center Федеральное государственное бюджетное учреждение науки Геофизический центр Российской академии наук'), (44115, 'https://ror.org/04w23p232', 'de', 1, 'https://ror.org/04w23p232 Evangelische Hochschule Darmstadt'), (44116, 'https://ror.org/04w2e0b44', 'en', 1, 'https://ror.org/04w2e0b44 Department of Agriculture & Co-operation'), (44117, 'https://ror.org/04w49ae90', 'de', 1, 'https://ror.org/04w49ae90 EBC Hochschule'), (44118, 'https://ror.org/04w49dw51', 'en', 1, 'https://ror.org/04w49dw51 Pacific Institute for the Mathematical Sciences'), (44119, 'https://ror.org/04w4h5c56', 'en', 1, 'https://ror.org/04w4h5c56 Rabbinical College Ohr Yisroel'), (44120, 'https://ror.org/04w8xa018', 'no_lang_code', 1, 'https://ror.org/04w8xa018 Cadence Design Systems (United States)'), (44121, 'https://ror.org/04w93kd83', 'en', 1, 'https://ror.org/04w93kd83 Institute for the Psychological Sciences'), (44122, 'https://ror.org/04w9gdv63', 'en', 1, 'https://ror.org/04w9gdv63 Parliament of Australia'), (44123, 'https://ror.org/04wa2dm78', 'en', 1, 'https://ror.org/04wa2dm78 Virginia Baptist College'), (44124, 'https://ror.org/04wacmk20', 'no_lang_code', 1, 'https://ror.org/04wacmk20 Kuwait Petroleum Corporation (Kuwait) مؤسسة البترول الكويتية'), (44125, 'https://ror.org/04wccky94', 'en', 1, 'https://ror.org/04wccky94 Climate Change, Agriculture and Food Security'), (44126, 'https://ror.org/04wdr7416', 'no_lang_code', 1, 'https://ror.org/04wdr7416 Lupin Pharmaceuticals (India)'), (44127, 'https://ror.org/04wdzm653', 'en', 1, 'https://ror.org/04wdzm653 World Forestry Center'), (44128, 'https://ror.org/04were380', 'en', 1, 'https://ror.org/04were380 ESIC Hospital'), (44129, 'https://ror.org/04wfc2h84', 'pt', 1, 'https://ror.org/04wfc2h84 Escola Secundária Quinta do Marquês'), (44130, 'https://ror.org/04wh0kc34', 'en', 1, 'https://ror.org/04wh0kc34 Northeast Texas Community College'), (44131, 'https://ror.org/04whcrx81', 'no_lang_code', 1, 'https://ror.org/04whcrx81 Linguagen (United States)'), (44132, 'https://ror.org/04wnmck86', 'sl', 1, 'https://ror.org/04wnmck86 Šolski Center za Pošto, Ekonomijo in Telekomunikacije'), (44133, 'https://ror.org/04wpk4a30', 'en', 1, 'https://ror.org/04wpk4a30 Atlantic Institute of Oriental Medicine'), (44134, 'https://ror.org/04wrg1d30', 'en', 1, 'https://ror.org/04wrg1d30 Max Planck Research Unit for Enzymology of Protein Folding Max-Planck-Forschungsstelle für Enzymologie der Proteinfaltung'), (44135, 'https://ror.org/04wsxm558', 'pt', 1, 'https://ror.org/04wsxm558 Faculdade Cásper Líbero'), (44136, 'https://ror.org/04wtd6086', 'en', 1, 'https://ror.org/04wtd6086 Development Bank of Southern Africa'), (44137, 'https://ror.org/04wteqw51', 'en', 1, 'https://ror.org/04wteqw51 Institute for System Dynamics and Control Theory Институт динамики систем и теории управления имени В.М. Матросова'), (44138, 'https://ror.org/04wthrp69', 'en', 1, 'https://ror.org/04wthrp69 Państwowa Wyższa Szkoła Zawodowa w Głogowie State Higher Vocational School in Głogów'), (44139, 'https://ror.org/04wtra345', 'en', 1, 'https://ror.org/04wtra345 Rural Development Institute 中国社会科学院农村发展研究所'), (44140, 'https://ror.org/04wvs0518', 'en', 1, 'https://ror.org/04wvs0518 Porticus'), (44141, 'https://ror.org/04wx2hz08', 'en', 1, 'https://ror.org/04wx2hz08 India China Economic and Cultural Council'), (44142, 'https://ror.org/04wz0k923', 'en', 1, 'https://ror.org/04wz0k923 Trinity Theological College 三一神学院'), (44143, 'https://ror.org/04wz1mc47', 'en', 1, 'https://ror.org/04wz1mc47 Calliope Film Resources'), (44144, 'https://ror.org/04x22kg34', 'en', 1, 'https://ror.org/04x22kg34 Delbarton School'), (44145, 'https://ror.org/04x2e7745', 'en', 1, 'https://ror.org/04x2e7745 AlloSource'), (44146, 'https://ror.org/04x3tm905', 'en', 1, 'https://ror.org/04x3tm905 Institute of Chartered Accountants of India'), (44147, 'https://ror.org/04x450n10', 'en', 1, 'https://ror.org/04x450n10 Northwest Mississippi Community College'), (44148, 'https://ror.org/04x4haa49', 'en', 1, 'https://ror.org/04x4haa49 Chesapeake Bay Program'), (44149, 'https://ror.org/04x4qbn15', 'no_lang_code', 1, 'https://ror.org/04x4qbn15 NEEL trimarans (France)'), (44150, 'https://ror.org/04x7sgz22', 'en', 1, 'https://ror.org/04x7sgz22 Mining Institute Институт горного'), (44151, 'https://ror.org/04x9k0k55', 'en', 1, 'https://ror.org/04x9k0k55 Aquinas College - Tennessee'), (44152, 'https://ror.org/04xa4q582', 'en', 1, 'https://ror.org/04xa4q582 Shanghai Academy of Social Sciences 上海社会科学院'), (44153, 'https://ror.org/04xadt873', 'pt', 1, 'https://ror.org/04xadt873 Associação Cultural de Arte e Comunicação Oficinas do Convento'), (44154, 'https://ror.org/04xc6a353', 'en', 1, 'https://ror.org/04xc6a353 Regional Alliance for Sustainable Development'), (44155, 'https://ror.org/04xcr6k92', 'no_lang_code', 1, 'https://ror.org/04xcr6k92 Accenture (Spain)'), (44156, 'https://ror.org/04xghb049', 'fr', 1, 'https://ror.org/04xghb049 Institut Mauritanien de Recherches Océanographiques et des Pêches'), (44157, 'https://ror.org/04xnqnd94', 'en', 1, 'https://ror.org/04xnqnd94 Institute for Humanities Research and Indigenous Studies of the North Институт гуманитарных исследований и коренных народов Севера'), (44158, 'https://ror.org/04xprjz26', 'no_lang_code', 1, 'https://ror.org/04xprjz26 Geometric (India)'), (44159, 'https://ror.org/04xrsnf23', 'en', 1, 'https://ror.org/04xrsnf23 Bolton College'), (44160, 'https://ror.org/04xs1rp67', 'en', 1, 'https://ror.org/04xs1rp67 Institute of Wood Science and Technology'), (44161, 'https://ror.org/04xsfz394', 'en', 1, 'https://ror.org/04xsfz394 National Institute for Scientific and Industrial Research'), (44162, 'https://ror.org/04xwqjy30', 'no_lang_code', 1, 'https://ror.org/04xwqjy30 Ameren (United States)'), (44163, 'https://ror.org/04xx6j115', 'fr', 1, 'https://ror.org/04xx6j115 Union Economique et Monétaire Ouest Africaine'), (44164, 'https://ror.org/04xxdsr80', 'en', 1, 'https://ror.org/04xxdsr80 IT for Change'), (44165, 'https://ror.org/04xxj4388', 'en', 1, 'https://ror.org/04xxj4388 Seattle School of Theology and Psychology'), (44166, 'https://ror.org/04xxqgb42', 'no_lang_code', 1, 'https://ror.org/04xxqgb42 Leco Corporation (United States)'), (44167, 'https://ror.org/04y0xnw59', 'fr', 1, 'https://ror.org/04y0xnw59 Enda Sahel et Afrique de l’Ouest'), (44168, 'https://ror.org/04y4dkp70', 'en', 1, 'https://ror.org/04y4dkp70 PSG Institute of Advanced Studies'), (44169, 'https://ror.org/04y4hcz67', 'en', 1, 'https://ror.org/04y4hcz67 Państwowa Wyższa Szkoła Zawodowa im. Szymona Szymonowica w Zamościu State Higher School of Vocational Education in Zamość'), (44170, 'https://ror.org/04y50an90', 'en', 1, 'https://ror.org/04y50an90 Karlovac University of Applied Sciences Veleučilište u Karlovcu'), (44171, 'https://ror.org/04y5qg507', 'no_lang_code', 1, 'https://ror.org/04y5qg507 ITPEnergised Group (India)'), (44172, 'https://ror.org/04y63ab76', 'en', 1, 'https://ror.org/04y63ab76 Catching the Dream'), (44173, 'https://ror.org/04y65f081', 'en', 1, 'https://ror.org/04y65f081 Ohio Space Grant Consortium'), (44174, 'https://ror.org/04y726b94', 'en', 1, 'https://ror.org/04y726b94 National Museum of the Finnish Sámi'), (44175, 'https://ror.org/04y75dx46', 'en', 1, 'https://ror.org/04y75dx46 Institute of Medical Sciences'), (44176, 'https://ror.org/04y7b4z29', 'en', 1, 'https://ror.org/04y7b4z29 Coordinating Office for Control of Trypanosomiasis in Uganda'), (44177, 'https://ror.org/04y8p8435', 'no_lang_code', 1, 'https://ror.org/04y8p8435 Kronotex (Germany)'), (44178, 'https://ror.org/04ya3kq71', 'en', 1, 'https://ror.org/04ya3kq71 Polar Environment, Safety and Health Section'), (44179, 'https://ror.org/04yaxh485', 'en', 1, 'https://ror.org/04yaxh485 Raffles Institution'), (44180, 'https://ror.org/04yddv436', 'it', 1, 'https://ror.org/04yddv436 Conservatorio Statale di Musica Jacopo Tomadini Udine'), (44181, 'https://ror.org/04yhxmc54', 'en', 1, 'https://ror.org/04yhxmc54 Southern Union State Community College'), (44182, 'https://ror.org/04yjjyw09', 'fr', 1, 'https://ror.org/04yjjyw09 Institut pour Un Developpement Durable'), (44183, 'https://ror.org/04ymsr904', 'en', 1, 'https://ror.org/04ymsr904 Carclew Youth Arts'), (44184, 'https://ror.org/04yn1kj34', 'no_lang_code', 1, 'https://ror.org/04yn1kj34 Diafir (France)'), (44185, 'https://ror.org/04ynw2g14', 'en', 1, 'https://ror.org/04ynw2g14 Information Technology Institute'), (44186, 'https://ror.org/04yt1rh21', 'en', 1, 'https://ror.org/04yt1rh21 Lifespan'), (44187, 'https://ror.org/04yt9wc05', 'no_lang_code', 1, 'https://ror.org/04yt9wc05 China Construction Eighth Engineering Division (China)'), (44188, 'https://ror.org/04yts9m86', 'es', 1, 'https://ror.org/04yts9m86 Universidad Dr. José Gregorio Hernández'), (44189, 'https://ror.org/04ywhbc61', 'en', 1, 'https://ror.org/04ywhbc61 Australian e-Health Research Centre'), (44190, 'https://ror.org/04ywz9252', 'en', 1, 'https://ror.org/04ywz9252 Islamic Azad University Kerman دانشگاه آزاد اسلامی واحد کرمان'), (44191, 'https://ror.org/04yx5fa32', 'no_lang_code', 1, 'https://ror.org/04yx5fa32 Nutricia Research (Netherlands)'), (44192, 'https://ror.org/04yxemm04', 'en', 1, 'https://ror.org/04yxemm04 e-Waste Association of South Africa'), (44193, 'https://ror.org/04yyexg79', 'en', 1, 'https://ror.org/04yyexg79 Southcentral Kentucky Community and Technical College'), (44194, 'https://ror.org/04yyprp21', 'en', 1, 'https://ror.org/04yyprp21 Nashua Community College'), (44195, 'https://ror.org/04yz1w831', 'en', 1, 'https://ror.org/04yz1w831 Partnership for Healthcare Improvement'), (44196, 'https://ror.org/04z03cz64', 'de', 1, 'https://ror.org/04z03cz64 Hochschule der Bildenden Künste Saar'), (44197, 'https://ror.org/04z1g6718', 'en', 1, 'https://ror.org/04z1g6718 Brookhaven College'), (44198, 'https://ror.org/04z3sd442', 'en', 1, 'https://ror.org/04z3sd442 Centre for Schistosomiasis & Parasitology'), (44199, 'https://ror.org/04z4fen17', 'en', 1, 'https://ror.org/04z4fen17 Génétique Humaine des Maladies Infectieuses Human Genetic of Infectious Diseases'), (44200, 'https://ror.org/04z58j690', 'en', 1, 'https://ror.org/04z58j690 Polytechnic Pula'), (44201, 'https://ror.org/04z65vq06', 'en', 1, 'https://ror.org/04z65vq06 Fine Arts Work Center'), (44202, 'https://ror.org/04z8mkz77', 'en', 1, 'https://ror.org/04z8mkz77 Research Institute of Physiology and Fundamental Medicine of the Siberian Branch of the Russian Academy of Medical Sciences Федеральное государственное бюджетное учреждение «Научно-исследовательский институт физиологии и фундаментальной медицины»'), (44203, 'https://ror.org/04z91h293', 'pt', 1, 'https://ror.org/04z91h293 Instituto Nacional de Desenvolvimento das Pescas'), (44204, 'https://ror.org/04z9fas77', 'en', 1, 'https://ror.org/04z9fas77 Skolkovo Moscow School of Management Московская школа управления Сколково'), (44205, 'https://ror.org/04z9hqv51', 'no_lang_code', 1, 'https://ror.org/04z9hqv51 Nidan'), (44206, 'https://ror.org/04zb8fk81', 'en', 1, 'https://ror.org/04zb8fk81 Maastricht School of Management'), (44207, 'https://ror.org/04ze84192', 'en', 1, 'https://ror.org/04ze84192 Australian College of Physical Education'), (44208, 'https://ror.org/04zh58f23', 'no_lang_code', 1, 'https://ror.org/04zh58f23 Compagnie Africaine des Peintures'), (44209, 'https://ror.org/04zh6ks36', 'no_lang_code', 1, 'https://ror.org/04zh6ks36 Leroux & Lotz Technologies (France)'), (44210, 'https://ror.org/04zk59080', 'sv', 1, 'https://ror.org/04zk59080 Greta och Johan Kocks stiftelser'), (44211, 'https://ror.org/04zk97n46', 'en', 1, 'https://ror.org/04zk97n46 New College Durham'), (44212, 'https://ror.org/04zkbxs23', 'en', 1, 'https://ror.org/04zkbxs23 Royal College of Emergency Medicine'), (44213, 'https://ror.org/04zkp0k73', 'en', 1, 'https://ror.org/04zkp0k73 State Police College Valsts Policijas Koledza'), (44214, 'https://ror.org/04zmybf18', 'en', 1, 'https://ror.org/04zmybf18 Korea Institute of Nuclear Safety 한국원자력안전기술원'), (44215, 'https://ror.org/04zpt4h82', 'no_lang_code', 1, 'https://ror.org/04zpt4h82 IBM (Egypt)'), (44216, 'https://ror.org/04zs2z136', 'it', 1, 'https://ror.org/04zs2z136 Collegio Ghislieri'), (44217, 'https://ror.org/04zt8qr11', 'en', 1, 'https://ror.org/04zt8qr11 Addis Ababa City Administration Health Bureau'), (44218, 'https://ror.org/04zxzn882', 'fr', 1, 'https://ror.org/04zxzn882 Bureau National d''Études Techniques et de Développement'), (44219, 'https://ror.org/04zyfmb02', 'en', 1, 'https://ror.org/04zyfmb02 Government of Khyber Pakhtunkhwa حکومتِ خیبرپختونخوا دخیبر پښتونخواحکومت'), (44220, 'https://ror.org/04zyg9w69', 'no_lang_code', 1, 'https://ror.org/04zyg9w69 Sonic Emotion (France)'), (44221, 'https://ror.org/04zzmzt85', 'en', 1, 'https://ror.org/04zzmzt85 Temple University Ambler'), (44222, 'https://ror.org/050133s12', 'en', 1, 'https://ror.org/050133s12 Schott Foundation for Public Education'), (44223, 'https://ror.org/050384c29', 'en', 1, 'https://ror.org/050384c29 Kyungwoon University 경운대학교'), (44224, 'https://ror.org/0504hx432', 'en', 1, 'https://ror.org/0504hx432 Egyptian Museum'), (44225, 'https://ror.org/0504sy495', 'no_lang_code', 1, 'https://ror.org/0504sy495 Arthrex (Germany)'), (44226, 'https://ror.org/0505yy418', 'en', 1, 'https://ror.org/0505yy418 Lakeridge Health'), (44227, 'https://ror.org/0506h7130', 'en', 1, 'https://ror.org/0506h7130 Aaron Copland Fund for Music'), (44228, 'https://ror.org/0506q7a98', 'en', 1, 'https://ror.org/0506q7a98 Yellow River Institute of Hydraulic Research 黄河水文水资源科学研究院'), (44229, 'https://ror.org/05076r819', 'no_lang_code', 1, 'https://ror.org/05076r819 Biospyder (United States)'), (44230, 'https://ror.org/0508qa918', 'no_lang_code', 1, 'https://ror.org/0508qa918 Syngenta (Zimbabwe)'), (44231, 'https://ror.org/050a3p398', 'en', 1, 'https://ror.org/050a3p398 Asian American Journalists Association'), (44232, 'https://ror.org/050af1664', 'en', 1, 'https://ror.org/050af1664 Bossier Parish Community College'), (44233, 'https://ror.org/050awh611', 'no_lang_code', 1, 'https://ror.org/050awh611 Montupet (France)'), (44234, 'https://ror.org/050dfh454', 'no_lang_code', 1, 'https://ror.org/050dfh454 Ashok Leyland (India)'), (44235, 'https://ror.org/050ggte33', 'en', 1, 'https://ror.org/050ggte33 Stockholm School of Economics in Russia Стокгольмская школа экономики в России'), (44236, 'https://ror.org/050khj261', 'en', 1, 'https://ror.org/050khj261 Marijampole College Marijampoles Kolejia'), (44237, 'https://ror.org/050khzd41', 'en', 1, 'https://ror.org/050khzd41 Peirce College'), (44238, 'https://ror.org/050m92g92', 'en', 1, 'https://ror.org/050m92g92 Government Mohan Kumaramangalam Medical College'), (44239, 'https://ror.org/050mv4p70', 'no_lang_code', 1, 'https://ror.org/050mv4p70 Yamaha (United States)'), (44240, 'https://ror.org/050nwww65', 'en', 1, 'https://ror.org/050nwww65 Botswana Accountancy College'), (44241, 'https://ror.org/050p5ky47', 'en', 1, 'https://ror.org/050p5ky47 CollegeAmerica'), (44242, 'https://ror.org/050q0kv47', 'es', 1, 'https://ror.org/050q0kv47 Centro de Investigación Biomédica en Red de Epidemiología y Salud Pública'), (44243, 'https://ror.org/050q16438', 'en', 1, 'https://ror.org/050q16438 Department of Sport and Recreation'), (44244, 'https://ror.org/050r8mq79', 'en', 1, 'https://ror.org/050r8mq79 Thrombosis Research Institute'), (44245, 'https://ror.org/050vepj62', 'en', 1, 'https://ror.org/050vepj62 Arctic College of the Peoples of the North АРКТИЧЕСКИЙ КОЛЛЕДЖ НАРОДОВ СЕВЕРА'), (44246, 'https://ror.org/050we9f15', 'en', 1, 'https://ror.org/050we9f15 South Carolina Space Grant Consortium'), (44247, 'https://ror.org/050zhbw42', 'en', 1, 'https://ror.org/050zhbw42 American Institute of Bangladesh Studies'), (44248, 'https://ror.org/0511bn634', 'no_lang_code', 1, 'https://ror.org/0511bn634 Chiesi (Italy)'), (44249, 'https://ror.org/0511q3e85', 'en', 1, 'https://ror.org/0511q3e85 Gateway Community College'), (44250, 'https://ror.org/051475v86', 'en', 1, 'https://ror.org/051475v86 Indian National Science Academy'), (44251, 'https://ror.org/0516wpz95', 'en', 1, 'https://ror.org/0516wpz95 Tianjin Academy of Agricultural Sciences 天津市农业科学院成立于'), (44252, 'https://ror.org/051cmzf26', 'en', 1, 'https://ror.org/051cmzf26 Roxbury Community College'), (44253, 'https://ror.org/051e52h07', 'fr', 1, 'https://ror.org/051e52h07 Haute École de Namur-Liège-Luxembourg'), (44254, 'https://ror.org/051eg6511', 'no_lang_code', 1, 'https://ror.org/051eg6511 Energy International (United States)'), (44255, 'https://ror.org/051ev5v05', 'en', 1, 'https://ror.org/051ev5v05 American Institute of Certified Public Accountants'), (44256, 'https://ror.org/051eyp684', 'en', 1, 'https://ror.org/051eyp684 Institute for the International Education of Students'), (44257, 'https://ror.org/051f11n17', 'en', 1, 'https://ror.org/051f11n17 Institute of Molecular Biology and Biophysics Научно-исследовательский институт молекулярной биологии и биофизики'), (44258, 'https://ror.org/051fr2332', 'en', 1, 'https://ror.org/051fr2332 Institute of Structural Macrokinetics and Materials Science Институт структурной макрокинетики и проблем материаловедения Российской академии наук'), (44259, 'https://ror.org/051gp9n72', 'en', 1, 'https://ror.org/051gp9n72 Santiago Canyon College'), (44260, 'https://ror.org/051j50p12', 'en', 1, 'https://ror.org/051j50p12 The King''s College'), (44261, 'https://ror.org/051jjt714', 'en', 1, 'https://ror.org/051jjt714 Institute of Electrophysics Институт электрофизики'), (44262, 'https://ror.org/051ka9v26', 'no_lang_code', 1, 'https://ror.org/051ka9v26 Hybu Cig Cymru (United Kingdom)'), (44263, 'https://ror.org/051ksdh55', 'en', 1, 'https://ror.org/051ksdh55 Kentucky Space Grant Consortium'), (44264, 'https://ror.org/051kxxw69', 'en', 1, 'https://ror.org/051kxxw69 Pensacola State College'), (44265, 'https://ror.org/051p3cy55', 'en', 1, 'https://ror.org/051p3cy55 Hebei Academy of Agriculture and Forestry Sciences 河北省农林科学院遗传生理研究所'), (44266, 'https://ror.org/051qah137', 'no_lang_code', 1, 'https://ror.org/051qah137 VSL Korea (South Korea)'), (44267, 'https://ror.org/051qrf195', 'en', 1, 'https://ror.org/051qrf195 Davis Applied Technology College'), (44268, 'https://ror.org/051qxpt90', 'en', 1, 'https://ror.org/051qxpt90 School Center Novo mesto Šolski center Novo mesto'), (44269, 'https://ror.org/051rc7j94', 'de', 1, 'https://ror.org/051rc7j94 Diploma Hochschule Diploma University'), (44270, 'https://ror.org/051rq2a77', 'en', 1, 'https://ror.org/051rq2a77 Oxford Graduate School'), (44271, 'https://ror.org/051sg1a03', 'no_lang_code', 1, 'https://ror.org/051sg1a03 AOL (United States)'), (44272, 'https://ror.org/051sxdw86', 'en', 1, 'https://ror.org/051sxdw86 Royal Drawing School'), (44273, 'https://ror.org/051vmc086', 'fr', 1, 'https://ror.org/051vmc086 Agro PME Fondation'), (44274, 'https://ror.org/051zva233', 'en', 1, 'https://ror.org/051zva233 National Library Board தேசிய நூலக வாரியம் 国家图书馆管理局'), (44275, 'https://ror.org/052073c89', 'pt', 1, 'https://ror.org/052073c89 Prefeitura Municipal de Vitória'), (44276, 'https://ror.org/0521x3786', 'no_lang_code', 1, 'https://ror.org/0521x3786 Pathway Genomics (United States)'), (44277, 'https://ror.org/0522bga53', 'it', 1, 'https://ror.org/0522bga53 Academy of Music Vincenzo Bellini Conservatorio Vincenzo Bellini, Conservatorio di Musica Vincenzo Bellini di Palermo'), (44278, 'https://ror.org/0522dg826', 'en', 1, 'https://ror.org/0522dg826 Shanxi University of Traditional Chinese Medicine 山西中医学院'), (44279, 'https://ror.org/0523x4410', 'en', 1, 'https://ror.org/0523x4410 Jilin Academy of Traditional Chinese Medicine 吉林省中医药科学院'), (44280, 'https://ror.org/05253sv14', 'no_lang_code', 1, 'https://ror.org/05253sv14 Enreco 2000 (Spain)'), (44281, 'https://ror.org/05256fm24', 'en', 1, 'https://ror.org/05256fm24 Ministry of Health and Family Welfare স্বাস্থ্য ও পরিবার কল্যাণ মন্ত্রণালয়'), (44282, 'https://ror.org/0525aen51', 'en', 1, 'https://ror.org/0525aen51 National Park College'), (44283, 'https://ror.org/052a86v37', 'no_lang_code', 1, 'https://ror.org/052a86v37 Baikowski (France)'), (44284, 'https://ror.org/052afrt88', 'en', 1, 'https://ror.org/052afrt88 Central Plantation Crops Research Institute'), (44285, 'https://ror.org/052bjm215', 'en', 1, 'https://ror.org/052bjm215 MNR Medical College and Hospital'), (44286, 'https://ror.org/052cqax41', 'en', 1, 'https://ror.org/052cqax41 Chinese Society of Theoretical and Applied Mechanics 中国力学学会'), (44287, 'https://ror.org/052f72b28', 'en', 1, 'https://ror.org/052f72b28 Vilniaus Dizaino Kolegija Vilnius College of Design'), (44288, 'https://ror.org/052jm1735', 'en', 1, 'https://ror.org/052jm1735 MOH Holdings'), (44289, 'https://ror.org/052rpb648', 'en', 1, 'https://ror.org/052rpb648 Resurrection University'), (44290, 'https://ror.org/052x1x555', 'fr', 1, 'https://ror.org/052x1x555 Haute École Libre Mosane'), (44291, 'https://ror.org/052yxa807', 'en', 1, 'https://ror.org/052yxa807 Brotherhood of St Laurence'), (44292, 'https://ror.org/052zj9g72', 'en', 1, 'https://ror.org/052zj9g72 Williston State College'), (44293, 'https://ror.org/0530gbs37', 'de', 1, 'https://ror.org/0530gbs37 IB Hochschule'), (44294, 'https://ror.org/0530xcn78', 'en', 1, 'https://ror.org/0530xcn78 Apex School of Theology'), (44295, 'https://ror.org/0535kjm37', 'en', 1, 'https://ror.org/0535kjm37 Canadian Institute of Mining, Metallurgy and Petroleum Institut Canadien des Mines, de la Métallurgie et du Pétrole'), (44296, 'https://ror.org/05362bq16', 'en', 1, 'https://ror.org/05362bq16 Royal College of Anaesthetists'), (44297, 'https://ror.org/0536hv290', 'en', 1, 'https://ror.org/0536hv290 Elizabeth Glaser Pediatric AIDS Foundation'), (44298, 'https://ror.org/0536m9756', 'en', 1, 'https://ror.org/0536m9756 Northwest Institute of Literary Arts'), (44299, 'https://ror.org/0536t7y80', 'en', 1, 'https://ror.org/0536t7y80 North Khorasan University of Medical Sciences'), (44300, 'https://ror.org/0536wq444', 'en', 1, 'https://ror.org/0536wq444 Family of Faith College'), (44301, 'https://ror.org/0536y0s22', 'en', 1, 'https://ror.org/0536y0s22 Daniels Fund'), (44302, 'https://ror.org/0539hqx70', 'en', 1, 'https://ror.org/0539hqx70 Millennium Challenge Corporation'), (44303, 'https://ror.org/053bwq229', 'en', 1, 'https://ror.org/053bwq229 Centrum för Idrottsforskning Swedish Research Council for Sport Science'), (44304, 'https://ror.org/053c08c15', 'en', 1, 'https://ror.org/053c08c15 Bicton College'), (44305, 'https://ror.org/053cexp66', 'en', 1, 'https://ror.org/053cexp66 China Information Technology Security Evaluation Center 中国信息安全测评中心'), (44306, 'https://ror.org/053e12g40', 'en', 1, 'https://ror.org/053e12g40 Centre for Science and Environment'), (44307, 'https://ror.org/053e6gh17', 'en', 1, 'https://ror.org/053e6gh17 Royal College of Radiologists'), (44308, 'https://ror.org/053efsj20', 'en', 1, 'https://ror.org/053efsj20 Instituto Nacional de Ciência e Tecnologia de Fármacos e Medicamentos National Institute of Science and Technology of Drugs and Medicines'), (44309, 'https://ror.org/053evkn98', 'no_lang_code', 1, 'https://ror.org/053evkn98 Abbott (South Korea)'), (44310, 'https://ror.org/053gd2580', 'en', 1, 'https://ror.org/053gd2580 Botswana-Baylor Children''s Clinical Center of Excellence'), (44311, 'https://ror.org/053hkpw83', 'en', 1, 'https://ror.org/053hkpw83 Children''s Trust'), (44312, 'https://ror.org/053jnhe44', 'no_lang_code', 1, 'https://ror.org/053jnhe44 Mitsubishi Electric (United States)'), (44313, 'https://ror.org/053mnhb64', 'en', 1, 'https://ror.org/053mnhb64 University of Finance, Business and Entrepreneurship Висше училище по застраховане и финанси'), (44314, 'https://ror.org/053n55597', 'cs', 1, 'https://ror.org/053n55597 Evropský Polytechnický Institut, Evropský polytechnický institut'), (44315, 'https://ror.org/053nrfb18', 'en', 1, 'https://ror.org/053nrfb18 Southern Scientific Center Южный научный центр'), (44316, 'https://ror.org/053qdb191', 'fr', 1, 'https://ror.org/053qdb191 Laboratoire des Systèmes Macromoléculaires et Signalisation'), (44317, 'https://ror.org/053qgh778', 'en', 1, 'https://ror.org/053qgh778 Aid to Development of Traditional Medicine Aide au Développement de la Médecine Traditionnelle'), (44318, 'https://ror.org/053s4kp50', 'en', 1, 'https://ror.org/053s4kp50 Islamic Azad University Saveh دانشگاه آزاد اسلامی واحد ساوه'), (44319, 'https://ror.org/053s50k72', 'en', 1, 'https://ror.org/053s50k72 Mid-America Baptist Theological Seminary'), (44320, 'https://ror.org/053sycd29', 'en', 1, 'https://ror.org/053sycd29 Technological Institute for Superhard and Novel Carbon Materials Технологический институт сверхтвердых и новых углеродных материалов'), (44321, 'https://ror.org/053wngn77', 'sl', 1, 'https://ror.org/053wngn77 Tehniški Solski Center Maribor'), (44322, 'https://ror.org/053y1tm43', 'en', 1, 'https://ror.org/053y1tm43 Mateur Higher School of Agriculture'), (44323, 'https://ror.org/053y21r38', 'no_lang_code', 1, 'https://ror.org/053y21r38 RSA Cosmos (France)'), (44324, 'https://ror.org/053ya0s96', 'pl', 1, 'https://ror.org/053ya0s96 Państwowa Wyższa Szkoła Zawodowa we Włocławku'), (44325, 'https://ror.org/053yb3j55', 'en', 1, 'https://ror.org/053yb3j55 Collège loyaliste Loyalist College'), (44326, 'https://ror.org/053ykx779', 'en', 1, 'https://ror.org/053ykx779 Ministry of Health'), (44327, 'https://ror.org/05407ka75', 'en', 1, 'https://ror.org/05407ka75 Catholic Biblical Association'), (44328, 'https://ror.org/0542f9556', 'en', 1, 'https://ror.org/0542f9556 International Academy of Design & Technology'), (44329, 'https://ror.org/0543wbp89', 'en', 1, 'https://ror.org/0543wbp89 Maryland State Arts Council'), (44330, 'https://ror.org/05450rm96', 'en', 1, 'https://ror.org/05450rm96 Kaunas University of Applied Engineering Sciences Kauno technikos kolegijos'), (44331, 'https://ror.org/0546v0856', 'cs', 1, 'https://ror.org/0546v0856 Karel Englis College, Vysoká škola Karla Engliše'), (44332, 'https://ror.org/0549pzy23', 'en', 1, 'https://ror.org/0549pzy23 National Veterinary Institute'), (44333, 'https://ror.org/054b9rx02', 'no_lang_code', 1, 'https://ror.org/054b9rx02 Biospace Lab (France)'), (44334, 'https://ror.org/054bxds61', 'en', 1, 'https://ror.org/054bxds61 Agência Nacional de Águas National Water Agency'), (44335, 'https://ror.org/054cccb97', 'en', 1, 'https://ror.org/054cccb97 Grounded Media'), (44336, 'https://ror.org/054ebrh70', 'en', 1, 'https://ror.org/054ebrh70 Danube Private University'), (44337, 'https://ror.org/054n9rz51', 'en', 1, 'https://ror.org/054n9rz51 South Dakota Board of Regents'), (44338, 'https://ror.org/054p3p004', 'en', 1, 'https://ror.org/054p3p004 Academy of Medical Royal Colleges'), (44339, 'https://ror.org/054xffa50', 'en', 1, 'https://ror.org/054xffa50 Institute of Geology of Ore Deposits Petrography Mineralogy and Geochemistry Институт геологии рудных месторождений петрографии минералогии и геохимии Российской академии наук'), (44340, 'https://ror.org/054xfjj29', 'en', 1, 'https://ror.org/054xfjj29 CRC for Rail Innovation'), (44341, 'https://ror.org/054y8ka78', 'en', 1, 'https://ror.org/054y8ka78 European Polytechnical University Европейския политехнически университет'), (44342, 'https://ror.org/054ywmw83', 'en', 1, 'https://ror.org/054ywmw83 Higher Vocational College for Hospitality and Tourism Bled Višja Strokovna Šola za Gostinstvo in Turizem Bled'), (44343, 'https://ror.org/054z67s11', 'en', 1, 'https://ror.org/054z67s11 Institute of Technology of Cambodia'), (44344, 'https://ror.org/054zftm42', 'en', 1, 'https://ror.org/054zftm42 Shaheed Rajaei Cardiovascular Medical and Research Center'), (44345, 'https://ror.org/054ztz556', 'en', 1, 'https://ror.org/054ztz556 New York Chiropractic College'), (44346, 'https://ror.org/054zw2979', 'en', 1, 'https://ror.org/054zw2979 Arizona Space Grant Consortium'), (44347, 'https://ror.org/054zz9x25', 'en', 1, 'https://ror.org/054zz9x25 Scientific Council for Government Policy Wetenschappelijke Raad voor het Regeringsbeleid'), (44348, 'https://ror.org/0551rpg58', 'en', 1, 'https://ror.org/0551rpg58 Kementerian Ehwal Dalam Negeri Ministry of Home Affairs உள்துறை அமைச்சு 内政部'), (44349, 'https://ror.org/05532cf37', 'en', 1, 'https://ror.org/05532cf37 National Smallholder Farmers Association of Malawi'), (44350, 'https://ror.org/05550md95', 'en', 1, 'https://ror.org/05550md95 Sudan Meteorological Authority'), (44351, 'https://ror.org/0555c8894', 'en', 1, 'https://ror.org/0555c8894 Rocky Mountain College'), (44352, 'https://ror.org/055699s02', 'en', 1, 'https://ror.org/055699s02 Market Matters'), (44353, 'https://ror.org/055afmj54', 'en', 1, 'https://ror.org/055afmj54 Trinidad State Junior College'), (44354, 'https://ror.org/055afwm56', 'no_lang_code', 1, 'https://ror.org/055afwm56 Genelux (United States)'), (44355, 'https://ror.org/055camg08', 'en', 1, 'https://ror.org/055camg08 Scintillon Institute'), (44356, 'https://ror.org/055csed06', 'en', 1, 'https://ror.org/055csed06 Mental Health Research Center of Russian Academy of Medical Sciences Научный Центр Психического Здоровья РАМН'), (44357, 'https://ror.org/055dvgm08', 'en', 1, 'https://ror.org/055dvgm08 Business Academy Aarhus'), (44358, 'https://ror.org/055e3p039', 'en', 1, 'https://ror.org/055e3p039 North Iowa Area Community College'), (44359, 'https://ror.org/055fe2s59', 'en', 1, 'https://ror.org/055fe2s59 Institute of High Current Electronics Институт сильноточной электроники'), (44360, 'https://ror.org/055fmxa32', 'en', 1, 'https://ror.org/055fmxa32 Dongnam Institute of Radiological & Medical Sciences'), (44361, 'https://ror.org/055j5q029', 'en', 1, 'https://ror.org/055j5q029 Midwives College of Utah'), (44362, 'https://ror.org/055mc4536', 'en', 1, 'https://ror.org/055mc4536 Malopolska Higher Vocational School of J. Dietl in Kraków Małopolska Wyższa Szkoła im. Józefa Dietla'), (44363, 'https://ror.org/055r0va70', 'en', 1, 'https://ror.org/055r0va70 International Center for Biosaline Agriculture'), (44364, 'https://ror.org/055s1wn27', 'de', 1, 'https://ror.org/055s1wn27 Hochschule für Polizei Baden-Württemberg'), (44365, 'https://ror.org/055t3yk56', 'en', 1, 'https://ror.org/055t3yk56 ACT Department of Treasury'), (44366, 'https://ror.org/055wa9133', 'no_lang_code', 1, 'https://ror.org/055wa9133 Innate Pharma (France)'), (44367, 'https://ror.org/055x00f07', 'en', 1, 'https://ror.org/055x00f07 ICARE Institute of Medical Sciences and Research & Dr. Bidhan Chandra Roy Hospital'), (44368, 'https://ror.org/055x7ey06', 'en', 1, 'https://ror.org/055x7ey06 Wabash Valley College'), (44369, 'https://ror.org/0560e8961', 'en', 1, 'https://ror.org/0560e8961 Hamburg School of Business Administration'), (44370, 'https://ror.org/0561npm29', 'en', 1, 'https://ror.org/0561npm29 Indian Institute of Pulses Research भारतीय दलहन अनुसन्धान संस्थान'), (44371, 'https://ror.org/0562x8a64', 'no_lang_code', 1, 'https://ror.org/0562x8a64 Daewoo Shipbuilding and Marine Engineering (South Korea) 대우조선해양'), (44372, 'https://ror.org/056456402', 'no_lang_code', 1, 'https://ror.org/056456402 Kenes Group (Switzerland)'), (44373, 'https://ror.org/05649x844', 'lt', 1, 'https://ror.org/05649x844 Kauno Mišku ir Aplinkos Inžinerijos Kolegija'), (44374, 'https://ror.org/0567eg765', 'en', 1, 'https://ror.org/0567eg765 Fulbright New Zealand'), (44375, 'https://ror.org/0569v7v35', 'en', 1, 'https://ror.org/0569v7v35 Action for ME'), (44376, 'https://ror.org/056ahff07', 'no_lang_code', 1, 'https://ror.org/056ahff07 CRSTRA Centre de Recherche Scientifique et Technique sur les Régions Arides'), (44377, 'https://ror.org/056an8658', 'en', 1, 'https://ror.org/056an8658 Institute of Clinical and Experimental Lymphology Институт клинической и экспериментальной лимфологии'), (44378, 'https://ror.org/056ant482', 'en', 1, 'https://ror.org/056ant482 State Council of Science and Technology for Sikkim'), (44379, 'https://ror.org/056b4pm25', 'fr', 1, 'https://ror.org/056b4pm25 Hôpital Pasteur'), (44380, 'https://ror.org/056c0n883', 'en', 1, 'https://ror.org/056c0n883 Uttarakhand State Council for Science and Technology'), (44381, 'https://ror.org/056c6e777', 'es', 1, 'https://ror.org/056c6e777 Secretaría de Educación Superior, Ciencia, Tecnología e Innovación'), (44382, 'https://ror.org/056d4e670', 'en', 1, 'https://ror.org/056d4e670 Ghana Center for Democratic Development'), (44383, 'https://ror.org/056e86068', 'en', 1, 'https://ror.org/056e86068 Ministry of Food and Agriculture'), (44384, 'https://ror.org/056fctw89', 'no_lang_code', 1, 'https://ror.org/056fctw89 Nexter (France)'), (44385, 'https://ror.org/056fndr85', 'no_lang_code', 1, 'https://ror.org/056fndr85 Holtzbrinck Publishing Group (United States)'), (44386, 'https://ror.org/056frtj18', 'en', 1, 'https://ror.org/056frtj18 China Atomic Energy Authority 国家原子能机构'), (44387, 'https://ror.org/056j68a95', 'en', 1, 'https://ror.org/056j68a95 Consumers Union'), (44388, 'https://ror.org/056js0g95', 'en', 1, 'https://ror.org/056js0g95 Jilin Weather Modification Office 吉林省人工影响天气办公室'), (44389, 'https://ror.org/056mqdw19', 'no_lang_code', 1, 'https://ror.org/056mqdw19 ProtNeteomix (France)'), (44390, 'https://ror.org/056r9ej12', 'en', 1, 'https://ror.org/056r9ej12 Ministry of Economic Development and Technology'), (44391, 'https://ror.org/056v09p63', 'en', 1, 'https://ror.org/056v09p63 Surgical Society of Zambia'), (44392, 'https://ror.org/056w1kd89', 'en', 1, 'https://ror.org/056w1kd89 Tea Research Institute 中国农业科学院茶叶研究所'), (44393, 'https://ror.org/056y2wm23', 'en', 1, 'https://ror.org/056y2wm23 Ministry of Water and Environment'), (44394, 'https://ror.org/056y4tg97', 'en', 1, 'https://ror.org/056y4tg97 Water Resources Commission of Ghana'), (44395, 'https://ror.org/056yn4g37', 'en', 1, 'https://ror.org/056yn4g37 Ranger College'), (44396, 'https://ror.org/056yt6m90', 'no_lang_code', 1, 'https://ror.org/056yt6m90 iRhythm (United States)'), (44397, 'https://ror.org/0570hy479', 'en', 1, 'https://ror.org/0570hy479 Shanxi Academy of Agricultural Sciences 山西省农业科学院生物技术研究中心'), (44398, 'https://ror.org/0571cj070', 'en', 1, 'https://ror.org/0571cj070 Fresh Science'), (44399, 'https://ror.org/0572yc306', 'de', 1, 'https://ror.org/0572yc306 SRH Hochschule für Wirtschaft und Medien Calw'), (44400, 'https://ror.org/05739xz97', 'en', 1, 'https://ror.org/05739xz97 Korea Information Society Development Institute 정보통신정책연구원'), (44401, 'https://ror.org/0576c1v48', 'en', 1, 'https://ror.org/0576c1v48 People''s Liberation Army 411 Hospital 中国人民解放军第四一一医院'), (44402, 'https://ror.org/0578r5v59', 'fr', 1, 'https://ror.org/0578r5v59 Institut National Supérieur des Arts du Spectacle et des Techniques de Diffusion'), (44403, 'https://ror.org/0579b5p03', 'en', 1, 'https://ror.org/0579b5p03 Communities for a Better Environment'), (44404, 'https://ror.org/057ckzt47', 'en', 1, 'https://ror.org/057ckzt47 Shaanxi Provincial People''s Hospital 陕西省人民医院'), (44405, 'https://ror.org/057ec1n13', 'pt', 1, 'https://ror.org/057ec1n13 Radio Moçambique'), (44406, 'https://ror.org/057fg2a35', 'en', 1, 'https://ror.org/057fg2a35 Saint Vincent Health System'), (44407, 'https://ror.org/057g0br29', 'en', 1, 'https://ror.org/057g0br29 Brazilian Institute of Environment and Renewable Natural Resources Instituto Brasileiro do Meio Ambiente e dos Recursos Naturais Renováveis'), (44408, 'https://ror.org/057gftg63', 'en', 1, 'https://ror.org/057gftg63 Government Medical College'), (44409, 'https://ror.org/057k85v44', 'en', 1, 'https://ror.org/057k85v44 Swiss Hotel Management School'), (44410, 'https://ror.org/057wr4y62', 'en', 1, 'https://ror.org/057wr4y62 National Aerospace Laboratories भारतीयवैमानिकप्रयोगशाला(NAL) राष्ट्रीय एयरोस्पेस प्रयोगशाला ನ್ಯಾಷನಲ್ ಏರೋಸ್ಪೇಸ್ ಲ್ಯಾಬೋರೇಟರಿ നാഷണൽ ഏറോസ്പേസ് ലാബറട്ടറീസ്'), (44411, 'https://ror.org/057xgt263', 'pt', 1, 'https://ror.org/057xgt263 Fundação de Tecnologia do Estado do Acre'), (44412, 'https://ror.org/057ykey20', 'en', 1, 'https://ror.org/057ykey20 Government of Maharashtra महाराष्ट्र.भारत'), (44413, 'https://ror.org/057z2zh71', 'en', 1, 'https://ror.org/057z2zh71 Ex''pression College for Digital Arts'), (44414, 'https://ror.org/0580grj78', 'en', 1, 'https://ror.org/0580grj78 Institute of Advanced Studies in Administration Instituto de Estudios Superiores de Administración'), (44415, 'https://ror.org/05813wx75', 'en', 1, 'https://ror.org/05813wx75 Institute for Research on Combustion Istituto di Ricerche sulla Combustione'), (44416, 'https://ror.org/0582p5b89', 'en', 1, 'https://ror.org/0582p5b89 Academy of Tourism and Hotel Management in Gdansk Wyższa Szkoła Turystyki i Hotelarstwa w Gdańsku'), (44417, 'https://ror.org/05834nb68', 'en', 1, 'https://ror.org/05834nb68 University of Security in Poznań Wyższa Szkoła Bezpieczeństwa w Poznaniu'), (44418, 'https://ror.org/0583vk835', 'en', 1, 'https://ror.org/0583vk835 East Arkansas Community College'), (44419, 'https://ror.org/058465397', 'en', 1, 'https://ror.org/058465397 North Carolina Space Grant Consortium'), (44420, 'https://ror.org/0584ana26', 'en', 1, 'https://ror.org/0584ana26 Summit Public Schools'), (44421, 'https://ror.org/0588z1342', 'no_lang_code', 1, 'https://ror.org/0588z1342 Thermax (India)'), (44422, 'https://ror.org/058ab6j52', 'en', 1, 'https://ror.org/058ab6j52 Bemis Center for Contemporary Arts'), (44423, 'https://ror.org/058ay4m70', 'en', 1, 'https://ror.org/058ay4m70 CRC Health Group'), (44424, 'https://ror.org/058cd5p17', 'en', 1, 'https://ror.org/058cd5p17 Network of Networks of HIV Positives'), (44425, 'https://ror.org/058er5w71', 'en', 1, 'https://ror.org/058er5w71 Spurgeons College'), (44426, 'https://ror.org/058eyqd35', 'fr', 1, 'https://ror.org/058eyqd35 École Supérieure Angevine d''Informatique et de Productique'), (44427, 'https://ror.org/058fj5k57', 'en', 1, 'https://ror.org/058fj5k57 European Parliament Europees Parlement Europäisches Parlament Parlement Européen'), (44428, 'https://ror.org/058g3x876', 'no_lang_code', 1, 'https://ror.org/058g3x876 Grace Bio-Labs (United States)'), (44429, 'https://ror.org/058jtxa41', 'en', 1, 'https://ror.org/058jtxa41 Craven Community College'), (44430, 'https://ror.org/058k9k832', 'en', 1, 'https://ror.org/058k9k832 European University Evropski Univerzitet'), (44431, 'https://ror.org/058mfk884', 'de', 1, 'https://ror.org/058mfk884 Museumsdorf Cloppenburg, Museumsdorf Cloppenburg – Niedersächsisches Freilichtmuseum'), (44432, 'https://ror.org/058npc379', 'en', 1, 'https://ror.org/058npc379 Institution of Electronics and Telecommunication Engineers'), (44433, 'https://ror.org/058psnj96', 'en', 1, 'https://ror.org/058psnj96 Japanese Red Cross Hokkaido College of Nursing 日本赤十字北海道看護大学'), (44434, 'https://ror.org/058pt1w78', 'en', 1, 'https://ror.org/058pt1w78 Siddhartha Medical College'), (44435, 'https://ror.org/058tmpm50', 'fr', 1, 'https://ror.org/058tmpm50 Groupe de Recherche et d’Action sur le Foncier'), (44436, 'https://ror.org/058vg7409', 'en', 1, 'https://ror.org/058vg7409 Christian Missionary Fellowship International'), (44437, 'https://ror.org/058vwqx43', 'en', 1, 'https://ror.org/058vwqx43 Institute for Doctoral Studies in the Visual Arts'), (44438, 'https://ror.org/058x5eq06', 'en', 1, 'https://ror.org/058x5eq06 Beijing Haidian Hospital 北京市海淀医院'), (44439, 'https://ror.org/058z3vf87', 'fr', 1, 'https://ror.org/058z3vf87 Gulliver'), (44440, 'https://ror.org/0590dv991', 'en', 1, 'https://ror.org/0590dv991 Agricultural Research Corporation هيئة البحوث الزراعية'), (44441, 'https://ror.org/0590p8j42', 'en', 1, 'https://ror.org/0590p8j42 West Cheshire College'), (44442, 'https://ror.org/0590ypp09', 'en', 1, 'https://ror.org/0590ypp09 Shanghai Estuarine & Coastal Science Research Center 上海河口海岸科学研究中心'), (44443, 'https://ror.org/0593f2f80', 'no_lang_code', 1, 'https://ror.org/0593f2f80 Byblos Group (France)'), (44444, 'https://ror.org/059538728', 'pt', 1, 'https://ror.org/059538728 Centro de Ensino Superior de Juiz de Fora'), (44445, 'https://ror.org/05961na22', 'en', 1, 'https://ror.org/05961na22 Marine Hydrophysical Institute Морской Гидрофизический Институт'), (44446, 'https://ror.org/05973tj24', 'cs', 1, 'https://ror.org/05973tj24 Vysoká Skola Aplikovaného Práva'), (44447, 'https://ror.org/059b1px42', 'no_lang_code', 1, 'https://ror.org/059b1px42 Freelancer (Portugal)'), (44448, 'https://ror.org/059dmrc35', 'en', 1, 'https://ror.org/059dmrc35 Institute of Agrarian Problems Институт аграрных проблем'), (44449, 'https://ror.org/059dt4t68', 'no_lang_code', 1, 'https://ror.org/059dt4t68 HistoGenetics (United States)'), (44450, 'https://ror.org/059esw871', 'en', 1, 'https://ror.org/059esw871 Augusta Technical College'), (44451, 'https://ror.org/059gb4y29', 'it', 1, 'https://ror.org/059gb4y29 Conservatorio di Musica N. Piccinni Conservatory of Bari'), (44452, 'https://ror.org/059hj0296', 'it', 1, 'https://ror.org/059hj0296 Conservatorio Statale di Musica Nicola Sala - Benevento'), (44453, 'https://ror.org/059hjkt43', 'hr', 1, 'https://ror.org/059hjkt43 Faculty for Business Management Fakultet za Poslovni Menadžment u Baru'), (44454, 'https://ror.org/059hsy938', 'no_lang_code', 1, 'https://ror.org/059hsy938 China Minmetals (China) 长沙矿冶研究院有限责任公司'), (44455, 'https://ror.org/059nf5421', 'en', 1, 'https://ror.org/059nf5421 China National Research Institute of Food and Fermentation 中国食品发酵工业研究院'), (44456, 'https://ror.org/059qtxz36', 'en', 1, 'https://ror.org/059qtxz36 Dr. B.L. Kapur Memorial Hospital'), (44457, 'https://ror.org/059qxwv46', 'en', 1, 'https://ror.org/059qxwv46 Kranj School Centre Šolski center Kranj'), (44458, 'https://ror.org/059qzzv16', 'en', 1, 'https://ror.org/059qzzv16 Fujian Institute of Oceanography 福建海洋研究所'), (44459, 'https://ror.org/059sbje92', 'en', 1, 'https://ror.org/059sbje92 Ayush & Health Sciences University Chhattisgarh पं. दीनदयाल उपाध्याय स्मृति स्वास्थ्य विज्ञान एवं आयुष विश्वविद्यालय छत्तीसगढ़'), (44460, 'https://ror.org/059tqvg48', 'en', 1, 'https://ror.org/059tqvg48 Department of Chemistry and Material Sciences'), (44461, 'https://ror.org/059tvcg64', 'no_lang_code', 1, 'https://ror.org/059tvcg64 Adobe Systems (United States)'), (44462, 'https://ror.org/05a0bkt47', 'en', 1, 'https://ror.org/05a0bkt47 Amref Health Africa'), (44463, 'https://ror.org/05a1xb650', 'en', 1, 'https://ror.org/05a1xb650 Seema Dental College and Hospital'), (44464, 'https://ror.org/05a3mms16', 'en', 1, 'https://ror.org/05a3mms16 Academia Naţională de Educaţie Fizică şi Sport Bucureşti National Academy of Physical Education and Sport'), (44465, 'https://ror.org/05a4fj080', 'en', 1, 'https://ror.org/05a4fj080 Rockingham Community College'), (44466, 'https://ror.org/05a781r26', 'no_lang_code', 1, 'https://ror.org/05a781r26 Statisticon (Sweden)'), (44467, 'https://ror.org/05a84rn81', 'en', 1, 'https://ror.org/05a84rn81 Long Island League to Abolish Cancer'), (44468, 'https://ror.org/05a8hvs03', 'it', 1, 'https://ror.org/05a8hvs03 Istituto Ricerche Solari Locarno'), (44469, 'https://ror.org/05a8r2n20', 'en', 1, 'https://ror.org/05a8r2n20 Sidley Austin'), (44470, 'https://ror.org/05a99n355', 'no_lang_code', 1, 'https://ror.org/05a99n355 Vale (Brazil)'), (44471, 'https://ror.org/05ab3fa41', 'en', 1, 'https://ror.org/05ab3fa41 New College'), (44472, 'https://ror.org/05abrn361', 'fr', 1, 'https://ror.org/05abrn361 Centre Suisse de Cartographie de la Faune'), (44473, 'https://ror.org/05ae2ng62', 'en', 1, 'https://ror.org/05ae2ng62 Wisconsin Space Grant Consortium'), (44474, 'https://ror.org/05aemnj50', 'ro', 1, 'https://ror.org/05aemnj50 Universitatea Avram Iancu'), (44475, 'https://ror.org/05anb3b46', 'no_lang_code', 1, 'https://ror.org/05anb3b46 3D Bioprinting Solutions (Russia) 3Д Биопринтинг Солюшенс'), (44476, 'https://ror.org/05arhrm06', 'en', 1, 'https://ror.org/05arhrm06 Shura Council'), (44477, 'https://ror.org/05awrb105', 'no_lang_code', 1, 'https://ror.org/05awrb105 Discovery Communications (United States)'), (44478, 'https://ror.org/05awvfd69', 'en', 1, 'https://ror.org/05awvfd69 Kumi District Local Government'), (44479, 'https://ror.org/05awzqc14', 'en', 1, 'https://ror.org/05awzqc14 Africa 2000 Network'), (44480, 'https://ror.org/05axake65', 'en', 1, 'https://ror.org/05axake65 International Yacht Restoration School'), (44481, 'https://ror.org/05b11sy48', 'en', 1, 'https://ror.org/05b11sy48 Antonelli College'), (44482, 'https://ror.org/05b210c34', 'en', 1, 'https://ror.org/05b210c34 City of Cape Town IsiXeko SaseKapa Stad Kaapstad'), (44483, 'https://ror.org/05b233w53', 'en', 1, 'https://ror.org/05b233w53 Association of California Community College Administrators'), (44484, 'https://ror.org/05b2mj890', 'en', 1, 'https://ror.org/05b2mj890 Scott Community College'), (44485, 'https://ror.org/05b4bk905', 'pt', 1, 'https://ror.org/05b4bk905 Governo do Estado de Mato Grosso'), (44486, 'https://ror.org/05b5ahr77', 'en', 1, 'https://ror.org/05b5ahr77 Pine Technical and Community College'), (44487, 'https://ror.org/05b6ef038', 'en', 1, 'https://ror.org/05b6ef038 American Academy of Psychiatry and the Law'), (44488, 'https://ror.org/05b6yak03', 'en', 1, 'https://ror.org/05b6yak03 Community Arts Network'), (44489, 'https://ror.org/05b74sw86', 'en', 1, 'https://ror.org/05b74sw86 Research Center of Neurology Научного центра неврологии'), (44490, 'https://ror.org/05b7jac82', 'en', 1, 'https://ror.org/05b7jac82 Hussian College'), (44491, 'https://ror.org/05b7xvc63', 'en', 1, 'https://ror.org/05b7xvc63 Hochschule für Musik Nürnberg Nuremberg University of Music'), (44492, 'https://ror.org/05b9pe067', 'en', 1, 'https://ror.org/05b9pe067 Malayan Colleges Laguna'), (44493, 'https://ror.org/05baev169', 'en', 1, 'https://ror.org/05baev169 United States Commission of Fine Arts'), (44494, 'https://ror.org/05baq4a16', 'no_lang_code', 1, 'https://ror.org/05baq4a16 Yong-in Songdam College 용인송담대학교'), (44495, 'https://ror.org/05bb03e97', 'en', 1, 'https://ror.org/05bb03e97 Bodoland University बड''लेण्ड बुहुमफरायसालि'), (44496, 'https://ror.org/05bcewb51', 'en', 1, 'https://ror.org/05bcewb51 Instituto Millenium Millennium Institute'), (44497, 'https://ror.org/05bdeef79', 'en', 1, 'https://ror.org/05bdeef79 Oil and Gas Center 国土资源部油气资源战略研究中心'), (44498, 'https://ror.org/05bkrjx06', 'en', 1, 'https://ror.org/05bkrjx06 Institute of Hydroecology 水利部中国科学院水工程生态研究所'), (44499, 'https://ror.org/05bpnjz66', 'en', 1, 'https://ror.org/05bpnjz66 Institute of Pharmacology Russian Academy of Medical Sciences Научно-исследовательский институт фармакологии имени В.В.Закусова» ... Российской академии'); INSERT INTO `rors` VALUES (44500, 'https://ror.org/05bqzy933', 'en', 1, 'https://ror.org/05bqzy933 Sunderland College'), (44501, 'https://ror.org/05bt9es09', 'no_lang_code', 1, 'https://ror.org/05bt9es09 Nipson Technology (France)'), (44502, 'https://ror.org/05btn9560', 'en', 1, 'https://ror.org/05btn9560 Korean Intellectual Property Office 대한민국 특허청'), (44503, 'https://ror.org/05bxm0g51', 'fr', 1, 'https://ror.org/05bxm0g51 Centre Marocain des Techniques du Cuir'), (44504, 'https://ror.org/05bxwd659', 'en', 1, 'https://ror.org/05bxwd659 Rome International School'), (44505, 'https://ror.org/05bz49965', 'no_lang_code', 1, 'https://ror.org/05bz49965 Angelini Pharma (Italy)'), (44506, 'https://ror.org/05c0t9w87', 'en', 1, 'https://ror.org/05c0t9w87 Vermont College of Fine Arts'), (44507, 'https://ror.org/05c1b0415', 'en', 1, 'https://ror.org/05c1b0415 Sioux Falls Seminary'), (44508, 'https://ror.org/05c2gdy67', 'en', 1, 'https://ror.org/05c2gdy67 Reformed Episcopal Seminary'), (44509, 'https://ror.org/05c2t0m16', 'pt', 1, 'https://ror.org/05c2t0m16 Fundação de Apoio à Pesquisa do Rio Grande do Norte'), (44510, 'https://ror.org/05c3bnw72', 'en', 1, 'https://ror.org/05c3bnw72 V.V. Dokuchaev Soil Science Institute'), (44511, 'https://ror.org/05c3kvr55', 'en', 1, 'https://ror.org/05c3kvr55 Bangladesh Centre for Advanced Studies'), (44512, 'https://ror.org/05c48af58', 'sw', 1, 'https://ror.org/05c48af58 Twaweza'), (44513, 'https://ror.org/05c4jxb21', 'en', 1, 'https://ror.org/05c4jxb21 Workers Compensation Board of British Columbia'), (44514, 'https://ror.org/05c686207', 'en', 1, 'https://ror.org/05c686207 Daoist Traditions College of Chinese Medical Arts'), (44515, 'https://ror.org/05c8bms59', 'en', 1, 'https://ror.org/05c8bms59 Kenya Psychiatry Association'), (44516, 'https://ror.org/05c8v5d10', 'en', 1, 'https://ror.org/05c8v5d10 Pennsylvania Department of Labor and Industry'), (44517, 'https://ror.org/05ccyns11', 'en', 1, 'https://ror.org/05ccyns11 Apollo Hospitals'), (44518, 'https://ror.org/05cemnq96', 'en', 1, 'https://ror.org/05cemnq96 Society of Gastroenterology Nurses and Associates'), (44519, 'https://ror.org/05cfwmz90', 'no_lang_code', 1, 'https://ror.org/05cfwmz90 REACH ETHIOPIA'), (44520, 'https://ror.org/05cmcts66', 'no_lang_code', 1, 'https://ror.org/05cmcts66 Grameenphone (Bangladesh) গ্রামীণফোন'), (44521, 'https://ror.org/05cnkke79', 'en', 1, 'https://ror.org/05cnkke79 National Vulvodynia Association'), (44522, 'https://ror.org/05cnwh310', 'no_lang_code', 1, 'https://ror.org/05cnwh310 Surys (France)'), (44523, 'https://ror.org/05crd4c40', 'en', 1, 'https://ror.org/05crd4c40 International Life Sciences Institute India'), (44524, 'https://ror.org/05cstvk27', 'en', 1, 'https://ror.org/05cstvk27 Management Development Institute'), (44525, 'https://ror.org/05ct5rw58', 'en', 1, 'https://ror.org/05ct5rw58 Saint-Petersburg Institute of History Санкт-Петербургский институт истории'), (44526, 'https://ror.org/05ctqth87', 'no_lang_code', 1, 'https://ror.org/05ctqth87 Usha Martin (India)'), (44527, 'https://ror.org/05cvbj479', 'en', 1, 'https://ror.org/05cvbj479 Guangzhou HKUST Fok Ying Tung Research Institute 霍英东研究院'), (44528, 'https://ror.org/05cxb7m31', 'en', 1, 'https://ror.org/05cxb7m31 Heartland Baptist Bible College'), (44529, 'https://ror.org/05cy65c44', 'en', 1, 'https://ror.org/05cy65c44 Concern for Development Initiatives in Africa'), (44530, 'https://ror.org/05cy9p581', 'en', 1, 'https://ror.org/05cy9p581 Estrella Mountain Community College'), (44531, 'https://ror.org/05cz6d336', 'no_lang_code', 1, 'https://ror.org/05cz6d336 Otemae College 大手前短期大学'), (44532, 'https://ror.org/05d6z1532', 'de', 1, 'https://ror.org/05d6z1532 Hochschule für Finanzen Rheinland Pfalz'), (44533, 'https://ror.org/05d89hd10', 'en', 1, 'https://ror.org/05d89hd10 Jesuit Madurai Province'), (44534, 'https://ror.org/05d97wj93', 'en', 1, 'https://ror.org/05d97wj93 West Suffolk College'), (44535, 'https://ror.org/05db06c70', 'en', 1, 'https://ror.org/05db06c70 Kenya Coastal Development Project'), (44536, 'https://ror.org/05db4h730', 'en', 1, 'https://ror.org/05db4h730 Bryan College of Health Sciences'), (44537, 'https://ror.org/05dbsyw70', 'es', 1, 'https://ror.org/05dbsyw70 Ministerio de Ciencia, Tecnología y Telecomunicaciones'), (44538, 'https://ror.org/05dbw7b97', 'en', 1, 'https://ror.org/05dbw7b97 CVJM-Hochschule International YMCA University of Applied Sciences'), (44539, 'https://ror.org/05dc3mt95', 'en', 1, 'https://ror.org/05dc3mt95 Asian Energy Institute'), (44540, 'https://ror.org/05dcrp459', 'en', 1, 'https://ror.org/05dcrp459 Rainbow Children''s Hospital'), (44541, 'https://ror.org/05dd0pt55', 'no_lang_code', 1, 'https://ror.org/05dd0pt55 Oracle (India)'), (44542, 'https://ror.org/05dd3bg73', 'no_lang_code', 1, 'https://ror.org/05dd3bg73 Structural Timber Innovation Company (New Zealand)'), (44543, 'https://ror.org/05dhgjm21', 'en', 1, 'https://ror.org/05dhgjm21 Institut Marocain des Relations Internationales MOROCCAN INSTITUTE OF INTERNATIONAL RELATIONS'), (44544, 'https://ror.org/05dm44j82', 'no_lang_code', 1, 'https://ror.org/05dm44j82 Gramercy Research Group (United States)'), (44545, 'https://ror.org/05dnc4543', 'en', 1, 'https://ror.org/05dnc4543 Organisation Pour la Mise en Valeur du Fleuve Sénégal Senegal River Basin Development Authority'), (44546, 'https://ror.org/05dngsw26', 'fr', 1, 'https://ror.org/05dngsw26 Ministère de l''Équipement'), (44547, 'https://ror.org/05dry3213', 'en', 1, 'https://ror.org/05dry3213 Pidstryhach Institute for Applied Problems of Mechanics and Mathematics ститут прикладних проблем механіки і математики ім. Я. С. Підстригача'), (44548, 'https://ror.org/05dt7z971', 'en', 1, 'https://ror.org/05dt7z971 Changsha Medical University 长沙医学院'), (44549, 'https://ror.org/05dw0xd38', 'no_lang_code', 1, 'https://ror.org/05dw0xd38 Huvepharma (Bulgaria)'), (44550, 'https://ror.org/05dwsnj39', 'en', 1, 'https://ror.org/05dwsnj39 ING Direct'), (44551, 'https://ror.org/05dx8t190', 'en', 1, 'https://ror.org/05dx8t190 International Association for the Study of Pain'), (44552, 'https://ror.org/05dyx6314', 'en', 1, 'https://ror.org/05dyx6314 National Center for Research on Earthquake Engineering 國家地震工程研究中心'), (44553, 'https://ror.org/05e0nrg39', 'no_lang_code', 1, 'https://ror.org/05e0nrg39 Africare'), (44554, 'https://ror.org/05e0vkr08', 'en', 1, 'https://ror.org/05e0vkr08 Bibliothèque Nationale de Luxembourg Bibliothèque nationale de Luxembourg Lëtzebuerger Nationalbibliothéik National Library of Luxembourg'), (44555, 'https://ror.org/05e1bqk54', 'en', 1, 'https://ror.org/05e1bqk54 Boise Bible College'), (44556, 'https://ror.org/05e2y6e35', 'en', 1, 'https://ror.org/05e2y6e35 Social Development and Improvement Agency'), (44557, 'https://ror.org/05e3g0s87', 'de', 1, 'https://ror.org/05e3g0s87 Bibliotheca Augustiniana'), (44558, 'https://ror.org/05e7sd388', 'en', 1, 'https://ror.org/05e7sd388 Central Institute of Brackishwater Aquaculture'), (44559, 'https://ror.org/05e8kce13', 'en', 1, 'https://ror.org/05e8kce13 Presbyterian Theological College'), (44560, 'https://ror.org/05e9s0v14', 'no_lang_code', 1, 'https://ror.org/05e9s0v14 Tata Power Solar (India)'), (44561, 'https://ror.org/05ea3hs66', 'en', 1, 'https://ror.org/05ea3hs66 National Research Institute for Veterinary Virology and Microbiology of Russia Всероссийский НИИ ветеринарной вирусологии и микробиологии'), (44562, 'https://ror.org/05ecysg06', 'en', 1, 'https://ror.org/05ecysg06 Regional Commissioners Office'), (44563, 'https://ror.org/05edrtk54', 'hi', 1, 'https://ror.org/05edrtk54 Kadi Sarva Vishwavidyalaya'), (44564, 'https://ror.org/05ee4t010', 'en', 1, 'https://ror.org/05ee4t010 National AIDS Council'), (44565, 'https://ror.org/05efhq671', 'es', 1, 'https://ror.org/05efhq671 Centro de Análisis y Difusión de la Economía Paraguya'), (44566, 'https://ror.org/05egk1864', 'en', 1, 'https://ror.org/05egk1864 North Central Michigan College'), (44567, 'https://ror.org/05egkbh47', 'en', 1, 'https://ror.org/05egkbh47 National Anti-Vivisection Society'), (44568, 'https://ror.org/05ek3nq77', 'no_lang_code', 1, 'https://ror.org/05ek3nq77 Ghelfi Ondulati (Italy)'), (44569, 'https://ror.org/05eqkxh55', 'en', 1, 'https://ror.org/05eqkxh55 New River Community College'), (44570, 'https://ror.org/05err5w18', 'en', 1, 'https://ror.org/05err5w18 Manatū Mō Te Taiao Ministry for the Environment'), (44571, 'https://ror.org/05et1sq07', 'en', 1, 'https://ror.org/05et1sq07 Medical Research Council of Zimbabwe'), (44572, 'https://ror.org/05etkex69', 'en', 1, 'https://ror.org/05etkex69 Department of Genomes & Genetics'), (44573, 'https://ror.org/05evqj924', 'en', 1, 'https://ror.org/05evqj924 SPIE Europe'), (44574, 'https://ror.org/05ewcwb21', 'en', 1, 'https://ror.org/05ewcwb21 Pharmaceutical and Medical Device Regulatory Science Society of Japan 医薬品医療機器レギュラトリーサイエンス財団'), (44575, 'https://ror.org/05exk7n54', 'en', 1, 'https://ror.org/05exk7n54 Arusha City Council'), (44576, 'https://ror.org/05eybs418', 'en', 1, 'https://ror.org/05eybs418 Anoka-Ramsey Community College'), (44577, 'https://ror.org/05eyxqf74', 'de', 1, 'https://ror.org/05eyxqf74 Fachhochschule für Wirtschaft und Technik, Private Hochschule für Wirtschaft und Technik'), (44578, 'https://ror.org/05ez1q344', 'fr', 1, 'https://ror.org/05ez1q344 École Supérieure des Arts de l''Image Le 75'), (44579, 'https://ror.org/05ez4ar64', 'en', 1, 'https://ror.org/05ez4ar64 Artemis Hospitals'), (44580, 'https://ror.org/05ezcey15', 'no_lang_code', 1, 'https://ror.org/05ezcey15 Toa Pharmaceutical (Japan)'), (44581, 'https://ror.org/05ezpsg97', 'en', 1, 'https://ror.org/05ezpsg97 Ozark Christian College'), (44582, 'https://ror.org/05f0php28', 'en', 1, 'https://ror.org/05f0php28 Sichuan Academy of Agricultural Sciences 四川省农业科学院作物研究所'), (44583, 'https://ror.org/05f11bs74', 'en', 1, 'https://ror.org/05f11bs74 National Computer Board'), (44584, 'https://ror.org/05f3gj938', 'en', 1, 'https://ror.org/05f3gj938 BTK - Hochschule für Kunst & Design BTK University of Arts & Design'), (44585, 'https://ror.org/05f5rab97', 'en', 1, 'https://ror.org/05f5rab97 Ear Science Institute Australia'), (44586, 'https://ror.org/05f5ttq44', 'no_lang_code', 1, 'https://ror.org/05f5ttq44 Mauna Kea Technologies (France)'), (44587, 'https://ror.org/05f6c0c45', 'en', 1, 'https://ror.org/05f6c0c45 Helse Nord RHF Northern Norway Regional Health Authority'), (44588, 'https://ror.org/05f7skt07', 'en', 1, 'https://ror.org/05f7skt07 Sri Guru Harkrishan Sahib Charitable Eye Hospital Trust'), (44589, 'https://ror.org/05f9b5v38', 'en', 1, 'https://ror.org/05f9b5v38 Grand Egyptian Museum'), (44590, 'https://ror.org/05f9h4q47', 'no_lang_code', 1, 'https://ror.org/05f9h4q47 Exactech (France)'), (44591, 'https://ror.org/05fbb1126', 'pt', 1, 'https://ror.org/05fbb1126 Instituto Nacional de Ciência e Tecnologia de Doenças Tropicais'), (44592, 'https://ror.org/05fd6p289', 'en', 1, 'https://ror.org/05fd6p289 Australian Communications Consumer Action Network'), (44593, 'https://ror.org/05ff6z697', 'en', 1, 'https://ror.org/05ff6z697 Major League Baseball'), (44594, 'https://ror.org/05ffhwq07', 'en', 1, 'https://ror.org/05ffhwq07 California Space Grant Consortium'), (44595, 'https://ror.org/05fj0ng27', 'fr', 1, 'https://ror.org/05fj0ng27 École Pratique des Hautes Études Commerciales'), (44596, 'https://ror.org/05fmdkk55', 'en', 1, 'https://ror.org/05fmdkk55 Memphis College of Art'), (44597, 'https://ror.org/05fmgwf75', 'no_lang_code', 1, 'https://ror.org/05fmgwf75 Associated British Ports (United Kingdom)'), (44598, 'https://ror.org/05fp0vp37', 'it', 1, 'https://ror.org/05fp0vp37 Accademia di Belle Arti di Lecce'), (44599, 'https://ror.org/05fqva713', 'en', 1, 'https://ror.org/05fqva713 South African National Blood Service'), (44600, 'https://ror.org/05ft5aq05', 'en', 1, 'https://ror.org/05ft5aq05 JTC Corporation 裕廊集团'), (44601, 'https://ror.org/05fwp8t64', 'de', 1, 'https://ror.org/05fwp8t64 Hochschule der Deutschen Bundesbank'), (44602, 'https://ror.org/05fx0av92', 'en', 1, 'https://ror.org/05fx0av92 Centre technique du textile Textile Technical Center'), (44603, 'https://ror.org/05fx6hz85', 'pt', 1, 'https://ror.org/05fx6hz85 Sport Lisboa e Benfica'), (44604, 'https://ror.org/05fy6my48', 'no_lang_code', 1, 'https://ror.org/05fy6my48 Prudential Financial (United States)'), (44605, 'https://ror.org/05fy98n62', 'en', 1, 'https://ror.org/05fy98n62 Columbia College'), (44606, 'https://ror.org/05g59tn70', 'tr', 1, 'https://ror.org/05g59tn70 İzmir Kavram Meslek Yüksek Okulu'), (44607, 'https://ror.org/05g5fwv52', 'en', 1, 'https://ror.org/05g5fwv52 North Carolina Exploring Cultural Heritage Online'), (44608, 'https://ror.org/05g5nrw43', 'no_lang_code', 1, 'https://ror.org/05g5nrw43 General Motors (India)'), (44609, 'https://ror.org/05g617r34', 'en', 1, 'https://ror.org/05g617r34 New Hope Christian College'), (44610, 'https://ror.org/05g795n60', 'en', 1, 'https://ror.org/05g795n60 Justice Development and Peace Caritas'), (44611, 'https://ror.org/05g7f8997', 'en', 1, 'https://ror.org/05g7f8997 Talmudical Seminary Oholei Torah'), (44612, 'https://ror.org/05g89q777', 'no_lang_code', 1, 'https://ror.org/05g89q777 Vatterott College'), (44613, 'https://ror.org/05g9jck81', 'no_lang_code', 1, 'https://ror.org/05g9jck81 MediaTek (Taiwan) 聯發科技股份有限公司'), (44614, 'https://ror.org/05g9jvj02', 'en', 1, 'https://ror.org/05g9jvj02 Kosair Charities'), (44615, 'https://ror.org/05gap9e81', 'fr', 1, 'https://ror.org/05gap9e81 Ministère de l’Enseignement Supérieur et de la Recherche Scientifique'), (44616, 'https://ror.org/05gb9fv74', 'en', 1, 'https://ror.org/05gb9fv74 Southwest Acupuncture College - Santa Fe'), (44617, 'https://ror.org/05gd3g169', 'it', 1, 'https://ror.org/05gd3g169 Conservatorio di Musica Stanislao Giacomantonio'), (44618, 'https://ror.org/05ghbet76', 'en', 1, 'https://ror.org/05ghbet76 Associated Board of the Royal Schools of Music'), (44619, 'https://ror.org/05ghhx264', 'en', 1, 'https://ror.org/05ghhx264 Pädagogische Hochschule Zug University of Teacher Education Zug'), (44620, 'https://ror.org/05gj5ka88', 'en', 1, 'https://ror.org/05gj5ka88 National Diet Library 国立国会図書館'), (44621, 'https://ror.org/05gja2q95', 'en', 1, 'https://ror.org/05gja2q95 Phoenix Seminary'), (44622, 'https://ror.org/05gjrwv72', 'en', 1, 'https://ror.org/05gjrwv72 Government of Nepal नेपाल सरकार'), (44623, 'https://ror.org/05gjxaj47', 'pl', 1, 'https://ror.org/05gjxaj47 Wyższa Szkoła Nauk Społecznych z Siedzibą w Lublinie'), (44624, 'https://ror.org/05gkhkw84', 'pt', 1, 'https://ror.org/05gkhkw84 Centro de Formação Profissional para a Indústria Cerâmica'), (44625, 'https://ror.org/05gm3yv92', 'en', 1, 'https://ror.org/05gm3yv92 North Eastern Indira Gandhi Regional Institute of Health and Medical Sciences'), (44626, 'https://ror.org/05gmmwe91', 'no_lang_code', 1, 'https://ror.org/05gmmwe91 Britannia University'), (44627, 'https://ror.org/05gmsjx02', 'en', 1, 'https://ror.org/05gmsjx02 Shorter College'), (44628, 'https://ror.org/05gmwtd57', 'en', 1, 'https://ror.org/05gmwtd57 Institute of History and Archaeology Институт истории и археологии УрО РАН'), (44629, 'https://ror.org/05gn8bd38', 'en', 1, 'https://ror.org/05gn8bd38 Yukon Agricultural Association'), (44630, 'https://ror.org/05gsxwg61', 'es', 1, 'https://ror.org/05gsxwg61 Oficina Regional de Coordinación de Salud Mental'), (44631, 'https://ror.org/05gvg0p95', 'en', 1, 'https://ror.org/05gvg0p95 Centre for Water Resources Development and Management'), (44632, 'https://ror.org/05gvkv284', 'fr', 1, 'https://ror.org/05gvkv284 Institut de Recherche Agronomique de Guinée'), (44633, 'https://ror.org/05gvzz769', 'en', 1, 'https://ror.org/05gvzz769 UPASI Tea Research Foundation'), (44634, 'https://ror.org/05gwc3q21', 'es', 1, 'https://ror.org/05gwc3q21 Instituto Tecnologico de Veracruz'), (44635, 'https://ror.org/05gy3fg68', 'en', 1, 'https://ror.org/05gy3fg68 Séminaire théologique de westminster Westminster Theological Seminary'), (44636, 'https://ror.org/05h4fcj88', 'no_lang_code', 1, 'https://ror.org/05h4fcj88 Mercers’ Company (United Kingdom)'), (44637, 'https://ror.org/05h4smh31', 'en', 1, 'https://ror.org/05h4smh31 Summit Christian College'), (44638, 'https://ror.org/05h7nhz20', 'en', 1, 'https://ror.org/05h7nhz20 Dong Thap University'), (44639, 'https://ror.org/05h8na936', 'en', 1, 'https://ror.org/05h8na936 New York State Council on the Arts'), (44640, 'https://ror.org/05h8yxf34', 'en', 1, 'https://ror.org/05h8yxf34 Hartford Food System'), (44641, 'https://ror.org/05hen7093', 'no_lang_code', 1, 'https://ror.org/05hen7093 Sonatrach (Algeria) المؤسسة الوطنية للتنقيب, صناعة, نقل, تحويل و تسويق المحروقات'), (44642, 'https://ror.org/05hez5t42', 'en', 1, 'https://ror.org/05hez5t42 Süleyman Şah University Süleyman Şah Üniversitesi'), (44643, 'https://ror.org/05hfa9864', 'it', 1, 'https://ror.org/05hfa9864 Conservatorio Guido Cantelli di Novara'), (44644, 'https://ror.org/05hgtp764', 'en', 1, 'https://ror.org/05hgtp764 University of Agriculture'), (44645, 'https://ror.org/05hhm9a98', 'en', 1, 'https://ror.org/05hhm9a98 Savannah River Operations Office'), (44646, 'https://ror.org/05hk82j82', 'en', 1, 'https://ror.org/05hk82j82 Anchor Center for Blind Children'), (44647, 'https://ror.org/05hn31665', 'en', 1, 'https://ror.org/05hn31665 Young Harris College'), (44648, 'https://ror.org/05hp8wn67', 'en', 1, 'https://ror.org/05hp8wn67 Department of Internal Affairs Te Tari Taiwhenua'), (44649, 'https://ror.org/05hsv7e61', 'en', 1, 'https://ror.org/05hsv7e61 Office of Economic Impact and Diversity'), (44650, 'https://ror.org/05hvcqy45', 'pt', 1, 'https://ror.org/05hvcqy45 Instituto Agronômico do Paraná'), (44651, 'https://ror.org/05hwvzg47', 'en', 1, 'https://ror.org/05hwvzg47 Federal Reserve Bank of New York'), (44652, 'https://ror.org/05hwzrf74', 'en', 1, 'https://ror.org/05hwzrf74 Chuncheon Sacred Heart Hospital'), (44653, 'https://ror.org/05hxfvg04', 'en', 1, 'https://ror.org/05hxfvg04 Liaoning Ocean and Fisheries Research Institute 辽宁省海洋水产科学研究院'), (44654, 'https://ror.org/05hxqvt36', 'en', 1, 'https://ror.org/05hxqvt36 Institut de Medicina Predictiva i Personalitzada del Cancer Institute of Predictive and Personalized Medicine of Cancer'), (44655, 'https://ror.org/05hxrpj87', 'en', 1, 'https://ror.org/05hxrpj87 China Electronics Standardization Institute 中国电子技术标准化研究院'), (44656, 'https://ror.org/05hza8t97', 'en', 1, 'https://ror.org/05hza8t97 Instituto Nacional de Gestão de Calamidades National Disasters Management Institute'), (44657, 'https://ror.org/05j03hp45', 'en', 1, 'https://ror.org/05j03hp45 Panevėžys College'), (44658, 'https://ror.org/05j137f13', 'en', 1, 'https://ror.org/05j137f13 Act Health'), (44659, 'https://ror.org/05j1pnm38', 'en', 1, 'https://ror.org/05j1pnm38 Dunhuang Research Academy 敦煌研究院'), (44660, 'https://ror.org/05j2c6r36', 'en', 1, 'https://ror.org/05j2c6r36 Virginia Theological Seminary'), (44661, 'https://ror.org/05j2t3d29', 'en', 1, 'https://ror.org/05j2t3d29 Ministry for Foreign Affairs, Education and Culture'), (44662, 'https://ror.org/05j4m3n18', 'no_lang_code', 1, 'https://ror.org/05j4m3n18 Immediate Post Concussion Assessment and Cognitive Testing (United States)'), (44663, 'https://ror.org/05j6xkp39', 'en', 1, 'https://ror.org/05j6xkp39 Perinatal HIV Research Unit'), (44664, 'https://ror.org/05j78sg27', 'en', 1, 'https://ror.org/05j78sg27 National Primary Health Care Development Agency'), (44665, 'https://ror.org/05j873a45', 'en', 1, 'https://ror.org/05j873a45 Indian Institute of Soil Science भाकृअनुप-भारतीय मृदा विज्ञान संस्थान'), (44666, 'https://ror.org/05jc16005', 'no_lang_code', 1, 'https://ror.org/05jc16005 Atys Medical (France)'), (44667, 'https://ror.org/05jc4yc89', 'en', 1, 'https://ror.org/05jc4yc89 China Meat Research Centre 中国肉类食品研究中心'), (44668, 'https://ror.org/05jdfze05', 'en', 1, 'https://ror.org/05jdfze05 Indian Institute of Soil and Water Conservation'), (44669, 'https://ror.org/05jdvx041', 'en', 1, 'https://ror.org/05jdvx041 New Zealand Council for Educational Research'), (44670, 'https://ror.org/05je3gn27', 'pt', 1, 'https://ror.org/05je3gn27 Centro Universitário do Rio Grande do Norte'), (44671, 'https://ror.org/05je8kx69', 'en', 1, 'https://ror.org/05je8kx69 St Patrick''s College'), (44672, 'https://ror.org/05jext738', 'en', 1, 'https://ror.org/05jext738 Driestar Christian University'), (44673, 'https://ror.org/05jh6j253', 'en', 1, 'https://ror.org/05jh6j253 Resource Conflict Institute'), (44674, 'https://ror.org/05jh79p16', 'no_lang_code', 1, 'https://ror.org/05jh79p16 American Airlines (United States)'), (44675, 'https://ror.org/05jhdev04', 'en', 1, 'https://ror.org/05jhdev04 Office of the Registrar General & Census Commissioner'), (44676, 'https://ror.org/05jhyr833', 'en', 1, 'https://ror.org/05jhyr833 Boston Graduate School of Psychoanalysis'), (44677, 'https://ror.org/05jjx9m04', 'es', 1, 'https://ror.org/05jjx9m04 Fundación Ciencias de la Documentación'), (44678, 'https://ror.org/05jn2xb28', 'en', 1, 'https://ror.org/05jn2xb28 Kidney Health New Zealand'), (44679, 'https://ror.org/05jn4y223', 'en', 1, 'https://ror.org/05jn4y223 NewSchool of Architecture and Design'), (44680, 'https://ror.org/05jnbme07', 'en', 1, 'https://ror.org/05jnbme07 Birla Institute of Technology and Science, Pilani - Dubai Campus बिरला प्रौद्योगिकी एवं विज्ञान संस्थान, पिलानी-दुबई कैंपस'), (44681, 'https://ror.org/05jnejj89', 'pt', 1, 'https://ror.org/05jnejj89 Faculdades EST'), (44682, 'https://ror.org/05jqx2y43', 'fr', 1, 'https://ror.org/05jqx2y43 Observatoire Satellital des Forêts d’Afrique Centrale'), (44683, 'https://ror.org/05jr3qk95', 'en', 1, 'https://ror.org/05jr3qk95 Mid Atlantic Arts Foundation'), (44684, 'https://ror.org/05jwrfc26', 'en', 1, 'https://ror.org/05jwrfc26 Rajasthan Dental College and Hospital'), (44685, 'https://ror.org/05jwx8118', 'en', 1, 'https://ror.org/05jwx8118 Tennessee College of Applied Technology - Pulaski'), (44686, 'https://ror.org/05jyjaa40', 'no_lang_code', 1, 'https://ror.org/05jyjaa40 Keolis (France)'), (44687, 'https://ror.org/05jysw312', 'en', 1, 'https://ror.org/05jysw312 Hamilton Technical College'), (44688, 'https://ror.org/05k0kb696', 'en', 1, 'https://ror.org/05k0kb696 Institute of Management Technology'), (44689, 'https://ror.org/05k5nmp03', 'pt', 1, 'https://ror.org/05k5nmp03 Prefeitura Municipal de Belo Horizonte'), (44690, 'https://ror.org/05k6xb467', 'en', 1, 'https://ror.org/05k6xb467 Visible Music College'), (44691, 'https://ror.org/05k70qf45', 'en', 1, 'https://ror.org/05k70qf45 Lake Champlain Sea Grant'), (44692, 'https://ror.org/05k7s2p27', 'no_lang_code', 1, 'https://ror.org/05k7s2p27 Nonin Medical (United States)'), (44693, 'https://ror.org/05k8mpr32', 'no_lang_code', 1, 'https://ror.org/05k8mpr32 Smart Separations (United Kingdom)'), (44694, 'https://ror.org/05k9pq902', 'en', 1, 'https://ror.org/05k9pq902 Southern African Catholic Bishops Conference'), (44695, 'https://ror.org/05k9vmz93', 'de', 1, 'https://ror.org/05k9vmz93 Hochschule für Telekommunikation Leipzig'), (44696, 'https://ror.org/05ka3vy68', 'en', 1, 'https://ror.org/05ka3vy68 Roberto-Venn School of Luthiery'), (44697, 'https://ror.org/05kb3r694', 'en', 1, 'https://ror.org/05kb3r694 Stanmore College'), (44698, 'https://ror.org/05kbrcy03', 'en', 1, 'https://ror.org/05kbrcy03 Episcopal Divinity School'), (44699, 'https://ror.org/05kc32532', 'en', 1, 'https://ror.org/05kc32532 Saint Joseph Seminary College'), (44700, 'https://ror.org/05kcf4918', 'en', 1, 'https://ror.org/05kcf4918 Myerscough College'), (44701, 'https://ror.org/05kd26g25', 'en', 1, 'https://ror.org/05kd26g25 Prairie Bible Institute'), (44702, 'https://ror.org/05kdesr16', 'no_lang_code', 1, 'https://ror.org/05kdesr16 Convergys (United States)'), (44703, 'https://ror.org/05kdkdw55', 'en', 1, 'https://ror.org/05kdkdw55 Melbourne School of Theology'), (44704, 'https://ror.org/05kf6ye97', 'en', 1, 'https://ror.org/05kf6ye97 Korea Research Institute for Human Settlements 국토 연구원'), (44705, 'https://ror.org/05kf9jb93', 'fr', 1, 'https://ror.org/05kf9jb93 Institut de Recherche Pour le Développement'), (44706, 'https://ror.org/05kfmjk33', 'en', 1, 'https://ror.org/05kfmjk33 Jiangxi Academy of Environmental Sciences 江西省环境保护科学研究院'), (44707, 'https://ror.org/05kgq6h80', 'no_lang_code', 1, 'https://ror.org/05kgq6h80 NBCUniversal (United States)'), (44708, 'https://ror.org/05khqm878', 'en', 1, 'https://ror.org/05khqm878 Institute of Quality Standards and Testing Technology for Agro Products 中国农科院科学院农科院质量标准与检测技术研究所'), (44709, 'https://ror.org/05kkmzc89', 'en', 1, 'https://ror.org/05kkmzc89 Nassau County Department of Social Services'), (44710, 'https://ror.org/05kknxr83', 'en', 1, 'https://ror.org/05kknxr83 Department of Energy, Engineering, Mechanics and Control Processes Федеральное государственное бюджетное учреждение науки Институт энергетических проблем химической физики'), (44711, 'https://ror.org/05kks9g21', 'hi', 1, 'https://ror.org/05kks9g21 Shramik Bharti'), (44712, 'https://ror.org/05km8ys10', 'en', 1, 'https://ror.org/05km8ys10 Islamic Azad University of Urmia دانشگاه آزاد اسلامی واحد ارومیه'), (44713, 'https://ror.org/05kp9g017', 'en', 1, 'https://ror.org/05kp9g017 Państwowa Wyższa Szkoła Zawodowa im. Stanisława Staszica w Pile Stanisław Staszic University of Applied Sciences in Piła'), (44714, 'https://ror.org/05kqgwz20', 'fr', 1, 'https://ror.org/05kqgwz20 École des Officiers de la Gendarmerie Nationale'), (44715, 'https://ror.org/05krxyw16', 'en', 1, 'https://ror.org/05krxyw16 Guangdong Police College 广东警官学院'), (44716, 'https://ror.org/05kvjc571', 'en', 1, 'https://ror.org/05kvjc571 Institute of Psychology Институт психологии'), (44717, 'https://ror.org/05kwakw98', 'en', 1, 'https://ror.org/05kwakw98 Rainy River Community College'), (44718, 'https://ror.org/05kxbax75', 'en', 1, 'https://ror.org/05kxbax75 Danish Ministry of Health Sundheds- og Ældreministeriet'), (44719, 'https://ror.org/05m0qr140', 'en', 1, 'https://ror.org/05m0qr140 Ghana Meteorological Agency'), (44720, 'https://ror.org/05m1pqv80', 'en', 1, 'https://ror.org/05m1pqv80 Hochschule für Musik Würzburg University of Music Würzburg'), (44721, 'https://ror.org/05m3tag45', 'en', 1, 'https://ror.org/05m3tag45 Institute of Archaeology and Ethnography Института археологии и этнографии СО РАН'), (44722, 'https://ror.org/05m42bs81', 'en', 1, 'https://ror.org/05m42bs81 Northeast State Community College'), (44723, 'https://ror.org/05m4ewg24', 'en', 1, 'https://ror.org/05m4ewg24 Association of African Universities'), (44724, 'https://ror.org/05m4h2z49', 'en', 1, 'https://ror.org/05m4h2z49 Columbus Technical College'), (44725, 'https://ror.org/05m856m15', 'no_lang_code', 1, 'https://ror.org/05m856m15 Alcméon (France)'), (44726, 'https://ror.org/05m906m06', 'fr', 1, 'https://ror.org/05m906m06 Régie Autonome Multi Services D''Agadir'), (44727, 'https://ror.org/05m9m3d82', 'en', 1, 'https://ror.org/05m9m3d82 Shenyang The Fourth Hospital of People 沈阳市第四人民医院'), (44728, 'https://ror.org/05ma8ss29', 'en', 1, 'https://ror.org/05ma8ss29 Ministry of Sea Inland Waters and Fisheries Ministério do Mar, Águas Interiores e Pescas'), (44729, 'https://ror.org/05mbtn536', 'no_lang_code', 1, 'https://ror.org/05mbtn536 Newsweek (United States)'), (44730, 'https://ror.org/05meah667', 'no_lang_code', 1, 'https://ror.org/05meah667 British Biocell International (United Kingdom)'), (44731, 'https://ror.org/05mf79c96', 'en', 1, 'https://ror.org/05mf79c96 UPMC Center for High Value Health Care'), (44732, 'https://ror.org/05mg7fy05', 'en', 1, 'https://ror.org/05mg7fy05 Coastal Pines Technical College'), (44733, 'https://ror.org/05mhhk279', 'en', 1, 'https://ror.org/05mhhk279 Information and Library Network'), (44734, 'https://ror.org/05mk08g75', 'en', 1, 'https://ror.org/05mk08g75 Sir John Deane''s College'), (44735, 'https://ror.org/05mkyac79', 'no_lang_code', 1, 'https://ror.org/05mkyac79 Target (United States)'), (44736, 'https://ror.org/05mm5nv75', 'en', 1, 'https://ror.org/05mm5nv75 Ozarka College'), (44737, 'https://ror.org/05mq34b10', 'en', 1, 'https://ror.org/05mq34b10 Bank of Mauritius'), (44738, 'https://ror.org/05mqjj634', 'no_lang_code', 1, 'https://ror.org/05mqjj634 Aesculap (United States)'), (44739, 'https://ror.org/05msvfx67', 'en', 1, 'https://ror.org/05msvfx67 Gedik University Gedik Üniversitesi'), (44740, 'https://ror.org/05msvkx71', 'fr', 1, 'https://ror.org/05msvkx71 Ministère de la Santé Publique'), (44741, 'https://ror.org/05mtgrz63', 'en', 1, 'https://ror.org/05mtgrz63 Takestan Islamic Azad University'), (44742, 'https://ror.org/05mv80p58', 'fr', 1, 'https://ror.org/05mv80p58 Institut Textile et Chimique'), (44743, 'https://ror.org/05mv9af24', 'no_lang_code', 1, 'https://ror.org/05mv9af24 M&T Bank (United States)'), (44744, 'https://ror.org/05mwe6667', 'en', 1, 'https://ror.org/05mwe6667 Minnesota Office of Higher Education'), (44745, 'https://ror.org/05mx0wr29', 'en', 1, 'https://ror.org/05mx0wr29 Zhejiang University of Science and Technology 浙江科技学院'), (44746, 'https://ror.org/05mxmg050', 'pt', 1, 'https://ror.org/05mxmg050 Colégio Sinodal'), (44747, 'https://ror.org/05mxsz225', 'no_lang_code', 1, 'https://ror.org/05mxsz225 Mahindra Group (India)'), (44748, 'https://ror.org/05mzfgt17', 'en', 1, 'https://ror.org/05mzfgt17 Institute of Advanced Study in Science and Technology'), (44749, 'https://ror.org/05mztcw68', 'no_lang_code', 1, 'https://ror.org/05mztcw68 Clyde Bergemann Power Group'), (44750, 'https://ror.org/05n06xd29', 'no_lang_code', 1, 'https://ror.org/05n06xd29 Groupe Artémis (France)'), (44751, 'https://ror.org/05n3fvh77', 'en', 1, 'https://ror.org/05n3fvh77 Nature Kenya The East Africa Natural History Society'), (44752, 'https://ror.org/05n5mpz07', 'pt', 1, 'https://ror.org/05n5mpz07 Ordem dos Médicos'), (44753, 'https://ror.org/05n68xc32', 'en', 1, 'https://ror.org/05n68xc32 NorQuest College'), (44754, 'https://ror.org/05n72ks39', 'en', 1, 'https://ror.org/05n72ks39 Institute of Urban Designers – India'), (44755, 'https://ror.org/05n7sxn21', 'en', 1, 'https://ror.org/05n7sxn21 Central Statistical Office'), (44756, 'https://ror.org/05n9pp477', 'en', 1, 'https://ror.org/05n9pp477 Texas State Affordable Housing Corporation'), (44757, 'https://ror.org/05nap1d83', 'en', 1, 'https://ror.org/05nap1d83 Territory and Municipal Services'), (44758, 'https://ror.org/05nb24p55', 'no_lang_code', 1, 'https://ror.org/05nb24p55 LF Driscoll'), (44759, 'https://ror.org/05nb4x016', 'en', 1, 'https://ror.org/05nb4x016 Institute of Linguistic Studies Институт лингвистических исследований'), (44760, 'https://ror.org/05nc0nk71', 'en', 1, 'https://ror.org/05nc0nk71 Cooperative Institute for Climate and Satellites'), (44761, 'https://ror.org/05nct1z71', 'en', 1, 'https://ror.org/05nct1z71 Institute of Nutrition, Metabolism and Diabetes'), (44762, 'https://ror.org/05nd97262', 'en', 1, 'https://ror.org/05nd97262 Mercer County Community College'), (44763, 'https://ror.org/05nf32076', 'en', 1, 'https://ror.org/05nf32076 McLennan Community College'), (44764, 'https://ror.org/05nfte436', 'no_lang_code', 1, 'https://ror.org/05nfte436 Bermuda College'), (44765, 'https://ror.org/05nfx1325', 'en', 1, 'https://ror.org/05nfx1325 University of the Philippines Cebu'), (44766, 'https://ror.org/05nhx9b20', 'en', 1, 'https://ror.org/05nhx9b20 China Social Welfare Foundation 中国社会福利基金会'), (44767, 'https://ror.org/05njab859', 'en', 1, 'https://ror.org/05njab859 Mineral Area College'), (44768, 'https://ror.org/05njgh475', 'no_lang_code', 1, 'https://ror.org/05njgh475 Genomic Health (United States)'), (44769, 'https://ror.org/05nkvn594', 'en', 1, 'https://ror.org/05nkvn594 American Academy of Acupuncture and Oriental Medicine'), (44770, 'https://ror.org/05nmyph15', 'en', 1, 'https://ror.org/05nmyph15 Culham Centre for Fusion Energy'), (44771, 'https://ror.org/05npcpv02', 'en', 1, 'https://ror.org/05npcpv02 School of Advertising Art'), (44772, 'https://ror.org/05nqdns93', 'en', 1, 'https://ror.org/05nqdns93 Pacific States University'), (44773, 'https://ror.org/05nr28g03', 'en', 1, 'https://ror.org/05nr28g03 Assiniboine Community College'), (44774, 'https://ror.org/05nrjb178', 'nl', 1, 'https://ror.org/05nrjb178 Katholieke Pabo Zwolle University of Professional Teacher Education PABO Zwolle'), (44775, 'https://ror.org/05nsgrk27', 'en', 1, 'https://ror.org/05nsgrk27 Sahel Eco'), (44776, 'https://ror.org/05nsvn336', 'fr', 1, 'https://ror.org/05nsvn336 Archéologie et Philologie d’Orient et d’Occident'), (44777, 'https://ror.org/05nw06c68', 'en', 1, 'https://ror.org/05nw06c68 Snead State Community College'), (44778, 'https://ror.org/05nyhnc56', 'pt', 1, 'https://ror.org/05nyhnc56 Secretaria de Desenvolvimento Econômico Ciência Tecnologia e Ensino Superior'), (44779, 'https://ror.org/05p432337', 'no_lang_code', 1, 'https://ror.org/05p432337 WaterAid'), (44780, 'https://ror.org/05p4pn188', 'no_lang_code', 1, 'https://ror.org/05p4pn188 Mead Johnson (United States)'), (44781, 'https://ror.org/05p6hp428', 'en', 1, 'https://ror.org/05p6hp428 Arab Board Of Health Specializations المجلس العربي للاختصاصات الصحية'), (44782, 'https://ror.org/05p7erx10', 'no_lang_code', 1, 'https://ror.org/05p7erx10 QoS Design (France)'), (44783, 'https://ror.org/05pae1j85', 'no_lang_code', 1, 'https://ror.org/05pae1j85 AES (Brazil)'), (44784, 'https://ror.org/05pbb8y14', 'en', 1, 'https://ror.org/05pbb8y14 Olympic College'), (44785, 'https://ror.org/05pbm6778', 'en', 1, 'https://ror.org/05pbm6778 All-Russian Scientific Research Institute of Records Management and Archival Всероссийский научно-исследовательский институт документоведения и архивного дела'), (44786, 'https://ror.org/05pc4m625', 'en', 1, 'https://ror.org/05pc4m625 Martin Luther College'), (44787, 'https://ror.org/05pc7fv53', 'en', 1, 'https://ror.org/05pc7fv53 National Research Institute of Public Health named after N.A. Semashko Национальный научно-исследовательский институт общественного здоровья имени Н.А. Семашко'), (44788, 'https://ror.org/05pd10v94', 'de', 1, 'https://ror.org/05pd10v94 Sigmund Freud Institut Sigmund Freud Institute'), (44789, 'https://ror.org/05pd35d11', 'en', 1, 'https://ror.org/05pd35d11 African Comprehensive HIV/AIDS Partnerships'), (44790, 'https://ror.org/05pgn2b73', 'no_lang_code', 1, 'https://ror.org/05pgn2b73 Merck (India)'), (44791, 'https://ror.org/05phbf047', 'no_lang_code', 1, 'https://ror.org/05phbf047 Micro Focus (United States)'), (44792, 'https://ror.org/05phe2d91', 'en', 1, 'https://ror.org/05phe2d91 Xavier School'), (44793, 'https://ror.org/05pjrxm83', 'en', 1, 'https://ror.org/05pjrxm83 Association of Support in the Development of Activities of Population'), (44794, 'https://ror.org/05pkrbq13', 'no_lang_code', 1, 'https://ror.org/05pkrbq13 Maison Arabe de Software et de Hardware (Tunisia)'), (44795, 'https://ror.org/05pkv9t98', 'en', 1, 'https://ror.org/05pkv9t98 Central Research Institute of Structural Materials Prometey ГНЦ ФГУП «ЦНИИ конструкционных материалов «Прометей»'), (44796, 'https://ror.org/05pmc2b98', 'pt', 1, 'https://ror.org/05pmc2b98 Companhia Energética de São Paulo'), (44797, 'https://ror.org/05pp7qy10', 'en', 1, 'https://ror.org/05pp7qy10 Institute of Hydrocarbon Processing Институт проблем переработки углеводородов'), (44798, 'https://ror.org/05prqcv46', 'en', 1, 'https://ror.org/05prqcv46 Korean Women''s Development Institute 한국여성정책연구원'), (44799, 'https://ror.org/05prw4m25', 'no_lang_code', 1, 'https://ror.org/05prw4m25 Chengdu Tool Research Institute (China) 成都工具研究所有限公司'), (44800, 'https://ror.org/05pv25483', 'no_lang_code', 1, 'https://ror.org/05pv25483 Sunrise Communications AG (Switzerland)'), (44801, 'https://ror.org/05pysk134', 'en', 1, 'https://ror.org/05pysk134 Health Action by People'), (44802, 'https://ror.org/05q1hvw61', 'pt', 1, 'https://ror.org/05q1hvw61 Clínica Sagrada Esperança'), (44803, 'https://ror.org/05q25dx05', 'en', 1, 'https://ror.org/05q25dx05 Kementerian Tenaga, Teknologi Hijau dan Air Ministry of Energy Green Technology and Water'), (44804, 'https://ror.org/05q2pee13', 'de', 1, 'https://ror.org/05q2pee13 Hochschule für Öffentliche Verwaltung Bremen'), (44805, 'https://ror.org/05q4ybv44', 'en', 1, 'https://ror.org/05q4ybv44 International and European Law School'), (44806, 'https://ror.org/05q77p435', 'en', 1, 'https://ror.org/05q77p435 Austin Graduate School of Theology'), (44807, 'https://ror.org/05q89dp90', 'en', 1, 'https://ror.org/05q89dp90 Pharmacy and Poisons Board'), (44808, 'https://ror.org/05qc7pm63', 'no_lang_code', 1, 'https://ror.org/05qc7pm63 Hannover Re (Germany) Hannover Rück'), (44809, 'https://ror.org/05qej3r07', 'en', 1, 'https://ror.org/05qej3r07 British Columbia Arts Council'), (44810, 'https://ror.org/05qej6276', 'en', 1, 'https://ror.org/05qej6276 Hellenic Police Academy Αστυνομική Ακαδημία'), (44811, 'https://ror.org/05qendg40', 'en', 1, 'https://ror.org/05qendg40 Queensland Theological College'), (44812, 'https://ror.org/05qfxcq37', 'en', 1, 'https://ror.org/05qfxcq37 Hope Worldwide Kenya'), (44813, 'https://ror.org/05qh2mm74', 'en', 1, 'https://ror.org/05qh2mm74 Land Consolidation and Rehabilitation Center 中国国土整治网'), (44814, 'https://ror.org/05qkx4t42', 'en', 1, 'https://ror.org/05qkx4t42 Zhejiang Academy of Forestry 浙江省林业科学研究院'), (44815, 'https://ror.org/05qrzv962', 'en', 1, 'https://ror.org/05qrzv962 Overseas Press Club of America'), (44816, 'https://ror.org/05qs80z63', 'en', 1, 'https://ror.org/05qs80z63 Institute of Finance and Banking 中国社会科学院金融研究所'), (44817, 'https://ror.org/05qvbeb50', 'en', 1, 'https://ror.org/05qvbeb50 National Association of Social Workers'), (44818, 'https://ror.org/05qx9ce83', 'fr', 1, 'https://ror.org/05qx9ce83 Observatoire National de la Jeunesse'), (44819, 'https://ror.org/05r1p5z75', 'en', 1, 'https://ror.org/05r1p5z75 KVG Dental College & Hospital'), (44820, 'https://ror.org/05r27jw59', 'en', 1, 'https://ror.org/05r27jw59 Warren County Community College'), (44821, 'https://ror.org/05r2f2383', 'no_lang_code', 1, 'https://ror.org/05r2f2383 Magellium (France)'), (44822, 'https://ror.org/05r81c657', 'en', 1, 'https://ror.org/05r81c657 Yeshiva Toras Chaim Talmudic Seminary'), (44823, 'https://ror.org/05r8zkn09', 'it', 1, 'https://ror.org/05r8zkn09 Dipartimento dell Educazione della Cultura e dello Sport'), (44824, 'https://ror.org/05r9gnf88', 'en', 1, 'https://ror.org/05r9gnf88 Department of Education Pagadian'), (44825, 'https://ror.org/05raay295', 'en', 1, 'https://ror.org/05raay295 Agfa HealthCare'), (44826, 'https://ror.org/05rb06393', 'no_lang_code', 1, 'https://ror.org/05rb06393 Volkswagen Group (India)'), (44827, 'https://ror.org/05rcqjk71', 'no_lang_code', 1, 'https://ror.org/05rcqjk71 Consolidated Contractors Company (Greece) شركة اتحاد المقاولين'), (44828, 'https://ror.org/05rdptj07', 'en', 1, 'https://ror.org/05rdptj07 Josephine De Karman Fellowship Trust'), (44829, 'https://ror.org/05re2x545', 'en', 1, 'https://ror.org/05re2x545 Burg Giebichenstein Kunsthochschule Halle Burg Giebichenstein University of Art and Design Halle'), (44830, 'https://ror.org/05remtc15', 'en', 1, 'https://ror.org/05remtc15 Georgia Piedmont Technical College'), (44831, 'https://ror.org/05rgfz198', 'en', 1, 'https://ror.org/05rgfz198 United Nations Economic Commission for Africa'), (44832, 'https://ror.org/05rmmzm29', 'en', 1, 'https://ror.org/05rmmzm29 Marion Technical College'), (44833, 'https://ror.org/05rmt1x67', 'en', 1, 'https://ror.org/05rmt1x67 National Agricultural Research Organisation'), (44834, 'https://ror.org/05rnev335', 'en', 1, 'https://ror.org/05rnev335 Pennsylvania Department of Aging'), (44835, 'https://ror.org/05rnhb415', 'no_lang_code', 1, 'https://ror.org/05rnhb415 ISS International (South Africa)'), (44836, 'https://ror.org/05rnj0j91', 'en', 1, 'https://ror.org/05rnj0j91 Kungliga Fysiografiska Sällskapet i Lund Royal Physiographic Society of Lund'), (44837, 'https://ror.org/05rpf2x18', 'en', 1, 'https://ror.org/05rpf2x18 Yunnan Academy of Forestry 云南省林业科学院'), (44838, 'https://ror.org/05rs18f71', 'no_lang_code', 1, 'https://ror.org/05rs18f71 Toagosei (Japan) 東亞合成株式会社'), (44839, 'https://ror.org/05rvkm618', 'en', 1, 'https://ror.org/05rvkm618 Massachusetts School of Law'), (44840, 'https://ror.org/05s142056', 'es', 1, 'https://ror.org/05s142056 Instituto Tecnológico de Toluca'), (44841, 'https://ror.org/05s1apj20', 'no_lang_code', 1, 'https://ror.org/05s1apj20 Bharat Petroleum (India)'), (44842, 'https://ror.org/05s1k4z57', 'en', 1, 'https://ror.org/05s1k4z57 South Georgia State College'), (44843, 'https://ror.org/05s2efz59', 'en', 1, 'https://ror.org/05s2efz59 Northlands College'), (44844, 'https://ror.org/05s2h4a13', 'no_lang_code', 1, 'https://ror.org/05s2h4a13 Imagine Optic (France)'), (44845, 'https://ror.org/05s2p6w24', 'pt', 1, 'https://ror.org/05s2p6w24 Museu Nacional de Arte Contemporânea do Chiado'), (44846, 'https://ror.org/05s5km770', 'en', 1, 'https://ror.org/05s5km770 Churches Health Assoication Of Zambia'), (44847, 'https://ror.org/05s61gx60', 'en', 1, 'https://ror.org/05s61gx60 Photochemistry Center Центр фотохимии'), (44848, 'https://ror.org/05s6rc685', 'en', 1, 'https://ror.org/05s6rc685 Korea Institute of Public Administration 한국행정연구원'), (44849, 'https://ror.org/05s86pb97', 'en', 1, 'https://ror.org/05s86pb97 Royal College of Ophthalmologists'), (44850, 'https://ror.org/05s96xm34', 'en', 1, 'https://ror.org/05s96xm34 Council on Foreign Relations'), (44851, 'https://ror.org/05saacc29', 'en', 1, 'https://ror.org/05saacc29 T A Pai Management Institute'), (44852, 'https://ror.org/05sagy566', 'no_lang_code', 1, 'https://ror.org/05sagy566 AudioGaming (France)'), (44853, 'https://ror.org/05sar2b82', 'no_lang_code', 1, 'https://ror.org/05sar2b82 Research Research (South Africa)'), (44854, 'https://ror.org/05sbeh252', 'en', 1, 'https://ror.org/05sbeh252 Columbia College of Nursing'), (44855, 'https://ror.org/05sbpak56', 'en', 1, 'https://ror.org/05sbpak56 Geophysical Survey Геофизическая служба Российской Академии Наук'), (44856, 'https://ror.org/05schts45', 'en', 1, 'https://ror.org/05schts45 Heart Failure Society of America'), (44857, 'https://ror.org/05sdk4y29', 'fr', 1, 'https://ror.org/05sdk4y29 Progamme National Contre le Tuberculose'), (44858, 'https://ror.org/05sfbd077', 'en', 1, 'https://ror.org/05sfbd077 Industrial Credit and Investment Corporation of India'), (44859, 'https://ror.org/05sfx8f21', 'en', 1, 'https://ror.org/05sfx8f21 Georgia Northwestern Technical College'), (44860, 'https://ror.org/05sgnj165', 'en', 1, 'https://ror.org/05sgnj165 Palo Alto College'), (44861, 'https://ror.org/05skhck39', 'en', 1, 'https://ror.org/05skhck39 HealthForceOntario'), (44862, 'https://ror.org/05sqdn872', 'en', 1, 'https://ror.org/05sqdn872 Strode College'), (44863, 'https://ror.org/05ssfag15', 'en', 1, 'https://ror.org/05ssfag15 Federal Research Centre of Nutrition and Biotechnology Федеральное государственное бюджетное научное учреждение Научно-исследовательский институт питания'), (44864, 'https://ror.org/05ssnx856', 'pt', 1, 'https://ror.org/05ssnx856 Fundação Técnico Educacional Souza Marques'), (44865, 'https://ror.org/05sstfv48', 'en', 1, 'https://ror.org/05sstfv48 Institute of Apiculture Research 中国农业科学院蜜蜂研究所'), (44866, 'https://ror.org/05sw1c749', 'no_lang_code', 1, 'https://ror.org/05sw1c749 Labthermics Technologies (United States)'), (44867, 'https://ror.org/05sw24q25', 'no_lang_code', 1, 'https://ror.org/05sw24q25 Technoscene (South Africa)'), (44868, 'https://ror.org/05sxd9d78', 'it', 1, 'https://ror.org/05sxd9d78 Conservatorio di Musica di Perugia'), (44869, 'https://ror.org/05sxgbh67', 'no_lang_code', 1, 'https://ror.org/05sxgbh67 Jubilant Life Sciences (India)'), (44870, 'https://ror.org/05sxqt066', 'en', 1, 'https://ror.org/05sxqt066 McNeil Center for Early American Studies'), (44871, 'https://ror.org/05sy8b013', 'en', 1, 'https://ror.org/05sy8b013 United World College of the Adriatic'), (44872, 'https://ror.org/05syv4032', 'no_lang_code', 1, 'https://ror.org/05syv4032 Whirlpool (India)'), (44873, 'https://ror.org/05t0zwy08', 'en', 1, 'https://ror.org/05t0zwy08 Polytechnic School of Algiers المدرسة الوطنية المتعددة التقنيات بالجزائر'), (44874, 'https://ror.org/05t167j53', 'en', 1, 'https://ror.org/05t167j53 Państwowa Wyższa Szkoła Zawodowa w Koszalinie State Higher Vocational School in Koszalin'), (44875, 'https://ror.org/05t259f86', 'en', 1, 'https://ror.org/05t259f86 Bundesamt für Bevölkerungsschutz und Katastrophenhilfe Federal Office of Civil protection and Disaster Assistance'), (44876, 'https://ror.org/05t365n53', 'en', 1, 'https://ror.org/05t365n53 American River College'), (44877, 'https://ror.org/05t4q5a05', 'en', 1, 'https://ror.org/05t4q5a05 McNally Smith College of Music'), (44878, 'https://ror.org/05t4way13', 'en', 1, 'https://ror.org/05t4way13 Beijing Machine Tool Research Institute 北京机床研究所'), (44879, 'https://ror.org/05t5rc419', 'en', 1, 'https://ror.org/05t5rc419 Research Institute of Complex Problems of Cardiovascular Disease Russian Academy of Medical Sciences'), (44880, 'https://ror.org/05t6em937', 'en', 1, 'https://ror.org/05t6em937 Three Rivers College'), (44881, 'https://ror.org/05t7drw06', 'no_lang_code', 1, 'https://ror.org/05t7drw06 MNM Consulting (France)'), (44882, 'https://ror.org/05t8ffp36', 'es', 1, 'https://ror.org/05t8ffp36 Real Academia Española Royal Spanish Academy'), (44883, 'https://ror.org/05t99sp05', 'en', 1, 'https://ror.org/05t99sp05 California Coast University'), (44884, 'https://ror.org/05ta7wm04', 'en', 1, 'https://ror.org/05ta7wm04 South Florida State College'), (44885, 'https://ror.org/05tbdf588', 'en', 1, 'https://ror.org/05tbdf588 Association Africa AgroEXport'), (44886, 'https://ror.org/05tbkpd69', 'en', 1, 'https://ror.org/05tbkpd69 All India Management Association'), (44887, 'https://ror.org/05tc6tx51', 'en', 1, 'https://ror.org/05tc6tx51 Kagoshima Prefectural College 鹿児島県立短期大学'), (44888, 'https://ror.org/05tdek150', 'en', 1, 'https://ror.org/05tdek150 Instituto Tecnológico de Tuxtla Gutiérrez Tuxtla Gutierrez Institute of Technology'), (44889, 'https://ror.org/05tdz0n30', 'en', 1, 'https://ror.org/05tdz0n30 China Institute of Geological Environmental Monitoring 中国地质环境监测院'), (44890, 'https://ror.org/05tesye40', 'no_lang_code', 1, 'https://ror.org/05tesye40 EcoMetrix Africa'), (44891, 'https://ror.org/05tev5412', 'en', 1, 'https://ror.org/05tev5412 Higher and Technical Education Department'), (44892, 'https://ror.org/05tg57g61', 'en', 1, 'https://ror.org/05tg57g61 Azrieli College of Engineering Jerusalem עזריאלי-המכללה להנדסה ירושלים'), (44893, 'https://ror.org/05thvt304', 'en', 1, 'https://ror.org/05thvt304 Van Alen Institute'), (44894, 'https://ror.org/05tkawa34', 'no_lang_code', 1, 'https://ror.org/05tkawa34 Mimar Engineering Consultancy (Egypt)'), (44895, 'https://ror.org/05tkfe889', 'no_lang_code', 1, 'https://ror.org/05tkfe889 Evenflo (United States)'), (44896, 'https://ror.org/05tkyr506', 'no_lang_code', 1, 'https://ror.org/05tkyr506 Active Ethernet Passive Optical Networks Over λ MultipleXing (Canada)'), (44897, 'https://ror.org/05tm3gs98', 'en', 1, 'https://ror.org/05tm3gs98 Agence de Promotion de l’Industrie et de l''Innovation Agency for the Promotion of Industry and Innovation وكالة النهوض بالصناعة و التجديد'), (44898, 'https://ror.org/05tm9j755', 'no_lang_code', 1, 'https://ror.org/05tm9j755 Mitsui & Co (Japan) 三井物産'), (44899, 'https://ror.org/05tn39y33', 'de', 1, 'https://ror.org/05tn39y33 Akademie der Polizei Hamburg'), (44900, 'https://ror.org/05tn82m22', 'en', 1, 'https://ror.org/05tn82m22 Community Care College'), (44901, 'https://ror.org/05tnja216', 'en', 1, 'https://ror.org/05tnja216 University College of Osteopathy'), (44902, 'https://ror.org/05tpt3034', 'en', 1, 'https://ror.org/05tpt3034 Stapledon Memorial Trust'), (44903, 'https://ror.org/05tpxpz56', 'en', 1, 'https://ror.org/05tpxpz56 Institute of Mineralogy Институт минералогии'), (44904, 'https://ror.org/05ts6js78', 'no_lang_code', 1, 'https://ror.org/05ts6js78 Baker Hughes (United States)'), (44905, 'https://ror.org/05tv9ra42', 'no_lang_code', 1, 'https://ror.org/05tv9ra42 Sekab (Sweden) Svensk Etanolkemi'), (44906, 'https://ror.org/05twc1c66', 'en', 1, 'https://ror.org/05twc1c66 Cold Climate Housing Research Center'), (44907, 'https://ror.org/05ty2n298', 'en', 1, 'https://ror.org/05ty2n298 Guizhou Academy of Sciences 贵州科学院'), (44908, 'https://ror.org/05tysfd19', 'en', 1, 'https://ror.org/05tysfd19 African Minerals and Geosciences Centre'), (44909, 'https://ror.org/05tzkx710', 'no_lang_code', 1, 'https://ror.org/05tzkx710 Mir Technology Holdings (Turkey)'), (44910, 'https://ror.org/05tzn2b35', 'en', 1, 'https://ror.org/05tzn2b35 Headwaters Health Care Centre'), (44911, 'https://ror.org/05v091r53', 'no_lang_code', 1, 'https://ror.org/05v091r53 Climeon (Sweden)'); INSERT INTO `rors` VALUES (44912, 'https://ror.org/05v13xr40', 'en', 1, 'https://ror.org/05v13xr40 State Duma Госуда́рственная ду́ма'), (44913, 'https://ror.org/05v2jd533', 'en', 1, 'https://ror.org/05v2jd533 Tidepool'), (44914, 'https://ror.org/05v3pgb06', 'no_lang_code', 1, 'https://ror.org/05v3pgb06 WR Nyabeze & Associates (South Africa)'), (44915, 'https://ror.org/05v556078', 'en', 1, 'https://ror.org/05v556078 Southside Virginia Community College'), (44916, 'https://ror.org/05v5ag345', 'de', 1, 'https://ror.org/05v5ag345 Krebsliga Beider Basel'), (44917, 'https://ror.org/05v5xnv04', 'en', 1, 'https://ror.org/05v5xnv04 Tung Fang Design Institute 東方設計學院'), (44918, 'https://ror.org/05v5ypf73', 'no_lang_code', 1, 'https://ror.org/05v5ypf73 Cerberus Capital Management (United States)'), (44919, 'https://ror.org/05v69pw95', 'en', 1, 'https://ror.org/05v69pw95 Bexley Hall'), (44920, 'https://ror.org/05v9c7616', 'en', 1, 'https://ror.org/05v9c7616 Pitt Community College'), (44921, 'https://ror.org/05v9kmg29', 'en', 1, 'https://ror.org/05v9kmg29 Environmental Alert'), (44922, 'https://ror.org/05vb1qq28', 'en', 1, 'https://ror.org/05vb1qq28 Shiloh University'), (44923, 'https://ror.org/05vch7162', 'en', 1, 'https://ror.org/05vch7162 South African San Institute'), (44924, 'https://ror.org/05vg58c56', 'de', 1, 'https://ror.org/05vg58c56 Pädagogische Hochschule Niederösterreich'), (44925, 'https://ror.org/05vhwn119', 'en', 1, 'https://ror.org/05vhwn119 Ethiopian Economic Association'), (44926, 'https://ror.org/05vjege66', 'en', 1, 'https://ror.org/05vjege66 DeVry College'), (44927, 'https://ror.org/05vjz1d16', 'en', 1, 'https://ror.org/05vjz1d16 Heartland Center for Occupational Safety and Health'), (44928, 'https://ror.org/05vkc3y92', 'no_lang_code', 1, 'https://ror.org/05vkc3y92 Omnia (South Africa)'), (44929, 'https://ror.org/05vm7ws26', 'en', 1, 'https://ror.org/05vm7ws26 National Bureau of Soil Survey and Land Use Planning राष्ट्रीय मृदा सर्वेक्षण एवं भूमि उपयोग नियोजन ब्यूरो'), (44930, 'https://ror.org/05vpj2s72', 'es', 1, 'https://ror.org/05vpj2s72 Instituto Tecnologico de Orizaba'), (44931, 'https://ror.org/05vrdx898', 'en', 1, 'https://ror.org/05vrdx898 Southwestern Institute of Physics 核工业西南物理研究院'), (44932, 'https://ror.org/05vs4r368', 'pt', 1, 'https://ror.org/05vs4r368 Instituto Cuiabano de Educação'), (44933, 'https://ror.org/05vzn8153', 'en', 1, 'https://ror.org/05vzn8153 Department of Correctional Services Suid-Afrikaanse Departement van Korrektiewe Dienste'), (44934, 'https://ror.org/05w034p46', 'no_lang_code', 1, 'https://ror.org/05w034p46 FLAME TAO Knoware (India)'), (44935, 'https://ror.org/05w1crz90', 'en', 1, 'https://ror.org/05w1crz90 Arkansas Autism Resource & Outreach Center'), (44936, 'https://ror.org/05w1m1q56', 'en', 1, 'https://ror.org/05w1m1q56 Ministry of Education, Science and Technology Development Center 教育部科技发展中心'), (44937, 'https://ror.org/05w3mye26', 'en', 1, 'https://ror.org/05w3mye26 Geological Survey of Alabama'), (44938, 'https://ror.org/05w3wzj77', 'fr', 1, 'https://ror.org/05w3wzj77 Agence de l''eau Adour-Garonne'), (44939, 'https://ror.org/05w47ap08', 'en', 1, 'https://ror.org/05w47ap08 Jawaharlal Nehru Tropical Botanic Garden and Research Institute'), (44940, 'https://ror.org/05w4b5488', 'no_lang_code', 1, 'https://ror.org/05w4b5488 CellGenix (Germany)'), (44941, 'https://ror.org/05w57eq63', 'pl', 1, 'https://ror.org/05w57eq63 Kaszubsko-Pomorska Szkoła Wyższa'), (44942, 'https://ror.org/05w5n1x92', 'en', 1, 'https://ror.org/05w5n1x92 Organisation Ouest Africaine de la Santé West African Health Organisation'), (44943, 'https://ror.org/05w6t8s34', 'no_lang_code', 1, 'https://ror.org/05w6t8s34 NIIT (India)'), (44944, 'https://ror.org/05w90jm68', 'en', 1, 'https://ror.org/05w90jm68 Korea Society'), (44945, 'https://ror.org/05w9pqd22', 'en', 1, 'https://ror.org/05w9pqd22 Yeshiva Derech Chaim'), (44946, 'https://ror.org/05wa1wa97', 'en', 1, 'https://ror.org/05wa1wa97 Uganda Episcopal Conference'), (44947, 'https://ror.org/05wc4jq58', 'en', 1, 'https://ror.org/05wc4jq58 Ecclesia College'), (44948, 'https://ror.org/05wdecy17', 'en', 1, 'https://ror.org/05wdecy17 Institute of Infection and Immunity'), (44949, 'https://ror.org/05wf9ss90', 'en', 1, 'https://ror.org/05wf9ss90 Virginia Highlands Community College'), (44950, 'https://ror.org/05wfehw39', 'it', 1, 'https://ror.org/05wfehw39 Accademia Nazionale dei Lincei'), (44951, 'https://ror.org/05wfg5466', 'no_lang_code', 1, 'https://ror.org/05wfg5466 Environement Quality International (Egypt)'), (44952, 'https://ror.org/05wg4vp92', 'en', 1, 'https://ror.org/05wg4vp92 Ternopil Institute for Social and Information Technologies'), (44953, 'https://ror.org/05wk0jx96', 'no_lang_code', 1, 'https://ror.org/05wk0jx96 Amdocs (France)'), (44954, 'https://ror.org/05wn69s11', 'en', 1, 'https://ror.org/05wn69s11 Northwestern Polytechnic University'), (44955, 'https://ror.org/05wnef833', 'en', 1, 'https://ror.org/05wnef833 Saxon State Ministry for Science and the Arts Sächsisches Staatsministerium für Wissenschaft und Kunst'), (44956, 'https://ror.org/05wtp9w08', 'en', 1, 'https://ror.org/05wtp9w08 Department of Agricultural Sciences'), (44957, 'https://ror.org/05wy2at76', 'no_lang_code', 1, 'https://ror.org/05wy2at76 Engineers India (India) इंजीनियर्स इंडिया लिमिटेड'), (44958, 'https://ror.org/05x05k755', 'en', 1, 'https://ror.org/05x05k755 Laguna College of Art and Design'), (44959, 'https://ror.org/05x0jxp48', 'fr', 1, 'https://ror.org/05x0jxp48 Ministère de l’Éducation Nationale et de l''Enseignement Technique'), (44960, 'https://ror.org/05x346678', 'fr', 1, 'https://ror.org/05x346678 École Supérieure d''Art et de Design Tours-Angers-Le Mans'), (44961, 'https://ror.org/05x57gp50', 'en', 1, 'https://ror.org/05x57gp50 Korean National Police Agency 경찰청'), (44962, 'https://ror.org/05x8s5x77', 'en', 1, 'https://ror.org/05x8s5x77 Shamnur Shivashankarappa Institute of Medical Sciences & Research Centre ಶಾಮನೂರು ಶಿವಶಂಕರಪ್ಪ ವೈದ್ಯಕೀಯ ಮಹಾವಿದ್ಯಾಲಯ, ಸಂಶೋದನಾ ಕೇಂದ್ರ'), (44963, 'https://ror.org/05xavft74', 'en', 1, 'https://ror.org/05xavft74 Ministry of Health and the Fight against AIDS Ministère de la Santé et de la Lutte contre le sida'), (44964, 'https://ror.org/05xcjmm14', 'fr', 1, 'https://ror.org/05xcjmm14 Bibliothèque et Archives nationales du Québec National Library and Archives of Québec'), (44965, 'https://ror.org/05xfrjs60', 'no_lang_code', 1, 'https://ror.org/05xfrjs60 Helsinn Therapeutics (United States)'), (44966, 'https://ror.org/05xgaq910', 'en', 1, 'https://ror.org/05xgaq910 Nanjing Institute of Agricultural Mechanization 农业部南京农业机械化研究所'), (44967, 'https://ror.org/05xgx1b08', 'en', 1, 'https://ror.org/05xgx1b08 Riga Building College Rīgas Celtniecības koledža'), (44968, 'https://ror.org/05xhe5a74', 'en', 1, 'https://ror.org/05xhe5a74 Tertiary Education Commission'), (44969, 'https://ror.org/05xjztb11', 'en', 1, 'https://ror.org/05xjztb11 Pennsylvania Public Utility Commission'), (44970, 'https://ror.org/05xntm622', 'no_lang_code', 1, 'https://ror.org/05xntm622 Exeger Sweden (Sweden)'), (44971, 'https://ror.org/05xp7y466', 'no_lang_code', 1, 'https://ror.org/05xp7y466 Eni (Kazakhstan)'), (44972, 'https://ror.org/05xphj289', 'en', 1, 'https://ror.org/05xphj289 Pontifical John Paul II Institute for Studies on Marriage and Family'), (44973, 'https://ror.org/05xr5sw33', 'en', 1, 'https://ror.org/05xr5sw33 Virginia Tech Services'), (44974, 'https://ror.org/05xsgtz43', 'en', 1, 'https://ror.org/05xsgtz43 Atomic Energy Regulatory Board'), (44975, 'https://ror.org/05xtce923', 'en', 1, 'https://ror.org/05xtce923 School of Administration in Bielsko-Biala Wyższa Szkoła Administracji w Bielsku-Białej'), (44976, 'https://ror.org/05xth1n37', 'no_lang_code', 1, 'https://ror.org/05xth1n37 Natco Pharma (India)'), (44977, 'https://ror.org/05xtmhv34', 'en', 1, 'https://ror.org/05xtmhv34 National School of Leadership'), (44978, 'https://ror.org/05xw3yj26', 'en', 1, 'https://ror.org/05xw3yj26 Institute of Physiologically Active Compounds Институт физиологически активных веществ'), (44979, 'https://ror.org/05xwhfa95', 'en', 1, 'https://ror.org/05xwhfa95 Guyana School of Agriculture'), (44980, 'https://ror.org/05xxn0r26', 'en', 1, 'https://ror.org/05xxn0r26 Americans for Medical Progress'), (44981, 'https://ror.org/05xxykr42', 'pl', 1, 'https://ror.org/05xxykr42 Toruńska Wyższa Szkoła Przedsiębiorczości'), (44982, 'https://ror.org/05y0c7g28', 'en', 1, 'https://ror.org/05y0c7g28 Reserve Bank of New Zealand'), (44983, 'https://ror.org/05y2q9q81', 'en', 1, 'https://ror.org/05y2q9q81 Namibia Institute of Pathology'), (44984, 'https://ror.org/05y5g2a51', 'en', 1, 'https://ror.org/05y5g2a51 Northern Lithuania College Šiaurės Lietuvos kolegija'), (44985, 'https://ror.org/05y6zxn94', 'en', 1, 'https://ror.org/05y6zxn94 New Mexico Junior College'), (44986, 'https://ror.org/05y723906', 'en', 1, 'https://ror.org/05y723906 Food, Agriculture and Natural Resources Policy Analysis Network'), (44987, 'https://ror.org/05y92qc28', 'en', 1, 'https://ror.org/05y92qc28 Sandhills Community College'), (44988, 'https://ror.org/05y9xcd05', 'en', 1, 'https://ror.org/05y9xcd05 Australian Water Recycling Centre of Excellence'), (44989, 'https://ror.org/05ya3va27', 'no_lang_code', 1, 'https://ror.org/05ya3va27 Sarost (Tunisia)'), (44990, 'https://ror.org/05yamzm60', 'en', 1, 'https://ror.org/05yamzm60 Lietuvos Verslo Kolegija Lithuania Business University of Applied Science'), (44991, 'https://ror.org/05yc7zr31', 'en', 1, 'https://ror.org/05yc7zr31 Cossatot Community College'), (44992, 'https://ror.org/05ycd7562', 'en', 1, 'https://ror.org/05ycd7562 Nanjing Institute of Environmental Sciences 环境保护部南京环境科学研究所'), (44993, 'https://ror.org/05yd80n95', 'en', 1, 'https://ror.org/05yd80n95 Congressional Hunger Center'), (44994, 'https://ror.org/05yg67b36', 'en', 1, 'https://ror.org/05yg67b36 Dr Maliso Mphele Hospital'), (44995, 'https://ror.org/05ygsee60', 'en', 1, 'https://ror.org/05ygsee60 Yunnan Institute of Endemic Diseases Control and Prevention 云南省地方病防治网'), (44996, 'https://ror.org/05yj5ep86', 'en', 1, 'https://ror.org/05yj5ep86 Christliche Universität Partium Partium Christian University Partiumi Keresztény Egyetem Universitatea Creștină Partium'), (44997, 'https://ror.org/05yjrbd39', 'no_lang_code', 1, 'https://ror.org/05yjrbd39 Sinequa (France)'), (44998, 'https://ror.org/05yk11s87', 'no_lang_code', 1, 'https://ror.org/05yk11s87 United Space Alliance (USA)'), (44999, 'https://ror.org/05ymegm05', 'en', 1, 'https://ror.org/05ymegm05 BAIF Development Research Foundation'), (45000, 'https://ror.org/05ynf4333', 'fr', 1, 'https://ror.org/05ynf4333 INSEAD, Institut Européen d''Administration des Affaires'), (45001, 'https://ror.org/0000h6r91', 'no_lang_code', 1, 'https://ror.org/0000h6r91 Naval Group (Ireland)'), (45002, 'https://ror.org/0000yrh61', 'en', 1, 'https://ror.org/0000yrh61 Hospital of Hebei Province 河北省中医院'), (45003, 'https://ror.org/000146m32', 'no_lang_code', 1, 'https://ror.org/000146m32 CoMentis (United States)'), (45004, 'https://ror.org/0005ck383', 'en', 1, 'https://ror.org/0005ck383 Kanagawa Prefectural Police Department 神奈川県警察本部'), (45005, 'https://ror.org/0005eqq91', 'en', 1, 'https://ror.org/0005eqq91 Colombo North Teaching Hospital'), (45006, 'https://ror.org/0006j5k73', 'en', 1, 'https://ror.org/0006j5k73 Nagano Prefectural Ueda Senior High School 長野県上田高等学校'), (45007, 'https://ror.org/0006kcg24', 'en', 1, 'https://ror.org/0006kcg24 Osaka Municipal Miyakojima Technical High School 大阪市立都島工業高等学校'), (45008, 'https://ror.org/0007sdx38', 'no_lang_code', 1, 'https://ror.org/0007sdx38 BMG (Japan) 株式会社ビーエムジー'), (45009, 'https://ror.org/000963779', 'no_lang_code', 1, 'https://ror.org/000963779 Universal Products (United States)'), (45010, 'https://ror.org/000ajpb39', 'en', 1, 'https://ror.org/000ajpb39 Gere Foundation'), (45011, 'https://ror.org/000cytz87', 'no_lang_code', 1, 'https://ror.org/000cytz87 Weatherford (Switzerland)'), (45012, 'https://ror.org/000gjv789', 'no_lang_code', 1, 'https://ror.org/000gjv789 Dawn Research (United States)'), (45013, 'https://ror.org/000hzcm20', 'en', 1, 'https://ror.org/000hzcm20 Web Science Trust'), (45014, 'https://ror.org/000j1d533', 'fr', 1, 'https://ror.org/000j1d533 Université Amadou Hampaté Ba'), (45015, 'https://ror.org/000jzpp78', 'en', 1, 'https://ror.org/000jzpp78 International University in Germany'), (45016, 'https://ror.org/000n78v25', 'no_lang_code', 1, 'https://ror.org/000n78v25 KindHeart (United States)'), (45017, 'https://ror.org/000nfen14', 'en', 1, 'https://ror.org/000nfen14 Shizuoka Prefectural Numazu Technical High School 静岡県立沼津工業高等学校'), (45018, 'https://ror.org/000p2wp51', 'en', 1, 'https://ror.org/000p2wp51 Lambeth Palace Library'), (45019, 'https://ror.org/000va8z45', 'no_lang_code', 1, 'https://ror.org/000va8z45 Dornier (United States)'), (45020, 'https://ror.org/000wtey38', 'en', 1, 'https://ror.org/000wtey38 Africa Harvest Biotech Foundation International'), (45021, 'https://ror.org/000y15785', 'en', 1, 'https://ror.org/000y15785 Australian Society For Fish Biology'), (45022, 'https://ror.org/000ycsz94', 'no_lang_code', 1, 'https://ror.org/000ycsz94 Isuzu Motors (Japan) いすゞ自動車株式会社'), (45023, 'https://ror.org/0010e1p75', 'en', 1, 'https://ror.org/0010e1p75 Chiba Prefectural Institute of Public Health 千葉県衛生研究所'), (45024, 'https://ror.org/00114hq16', 'pt', 1, 'https://ror.org/00114hq16 Centro Nacional de Monitoramento e Alertas de Desastres Naturais'), (45025, 'https://ror.org/00145nn26', 'en', 1, 'https://ror.org/00145nn26 Agency for Cultural Affairs 文化庁'), (45026, 'https://ror.org/00147ek89', 'en', 1, 'https://ror.org/00147ek89 Australian Orthopaedic Association'), (45027, 'https://ror.org/00148fb49', 'no_lang_code', 1, 'https://ror.org/00148fb49 Merck (United Kingdom)'), (45028, 'https://ror.org/0017b9g92', 'en', 1, 'https://ror.org/0017b9g92 International Society for Developmental Origins of Health and Disease'), (45029, 'https://ror.org/0018f1k63', 'no_lang_code', 1, 'https://ror.org/0018f1k63 Texas High Energy Materials (United States)'), (45030, 'https://ror.org/001a5a111', 'no_lang_code', 1, 'https://ror.org/001a5a111 Symbio FCell (France)'), (45031, 'https://ror.org/001aem118', 'en', 1, 'https://ror.org/001aem118 Executive Office of Education'), (45032, 'https://ror.org/001brd097', 'en', 1, 'https://ror.org/001brd097 American School of Kuwait'), (45033, 'https://ror.org/001d8ym38', 'en', 1, 'https://ror.org/001d8ym38 Jon Peddie Research'), (45034, 'https://ror.org/001dmcq07', 'no_lang_code', 1, 'https://ror.org/001dmcq07 Achelios Therapeutics (United States)'), (45035, 'https://ror.org/001dnh404', 'en', 1, 'https://ror.org/001dnh404 College for All Texans Foundation'), (45036, 'https://ror.org/001ee4r52', 'en', 1, 'https://ror.org/001ee4r52 Center for Studies on Sustainable Luxury Centro de Estudios para el Lujo Sustentable'), (45037, 'https://ror.org/001g9ww12', 'no_lang_code', 1, 'https://ror.org/001g9ww12 NIIGrafit НИИграфит'), (45038, 'https://ror.org/001hpw566', 'pt', 1, 'https://ror.org/001hpw566 Sociedade Brasileira de Ortopedia e Traumatologia'), (45039, 'https://ror.org/001hybq57', 'no_lang_code', 1, 'https://ror.org/001hybq57 Atlas Scientific (United States)'), (45040, 'https://ror.org/001jk8698', 'en', 1, 'https://ror.org/001jk8698 Stofnun Árna Magnússonar í íslenskum fræðum Árni Magnússon Institute for Icelandic Studies'), (45041, 'https://ror.org/001k0sf19', 'en', 1, 'https://ror.org/001k0sf19 Delta Greely School District'), (45042, 'https://ror.org/001ke5c68', 'en', 1, 'https://ror.org/001ke5c68 Department of Agriculture'), (45043, 'https://ror.org/001m9wh67', 'no_lang_code', 1, 'https://ror.org/001m9wh67 Taiyo Yuden (Japan) 太陽誘電株式会社'), (45044, 'https://ror.org/001mbm465', 'no_lang_code', 1, 'https://ror.org/001mbm465 MicroDysis (United States)'), (45045, 'https://ror.org/001mpte05', 'en', 1, 'https://ror.org/001mpte05 Hiroshima Prefectural Police 広島県警察'), (45046, 'https://ror.org/001mzze07', 'id', 1, 'https://ror.org/001mzze07 Universitas Tabanan'), (45047, 'https://ror.org/001p7q739', 'no_lang_code', 1, 'https://ror.org/001p7q739 Apoplogic Pharmaceuticals (United States)'), (45048, 'https://ror.org/001pe6j19', 'es', 1, 'https://ror.org/001pe6j19 Ministerio de Ganadería Agricultura y Pesca'), (45049, 'https://ror.org/001pthy87', 'es', 1, 'https://ror.org/001pthy87 Universidad Privada del Estado de Morelos'), (45050, 'https://ror.org/001qk2b56', 'en', 1, 'https://ror.org/001qk2b56 Healthy Families of Clallam County'), (45051, 'https://ror.org/001t6ze16', 'en', 1, 'https://ror.org/001t6ze16 Bickley Day Hospital'), (45052, 'https://ror.org/001vbm067', 'no_lang_code', 1, 'https://ror.org/001vbm067 Empire Technical Development (United States)'), (45053, 'https://ror.org/001z5b761', 'en', 1, 'https://ror.org/001z5b761 Pitt County Development Commission'), (45054, 'https://ror.org/0020pt210', 'en', 1, 'https://ror.org/0020pt210 Noma Institute Of Educational Reserch 野間教育研究所'), (45055, 'https://ror.org/002783g69', 'no_lang_code', 1, 'https://ror.org/002783g69 Cim Systems (United States)'), (45056, 'https://ror.org/002784y28', 'no_lang_code', 1, 'https://ror.org/002784y28 Mantra Energy Alternatives (Canada)'), (45057, 'https://ror.org/0028edj28', 'en', 1, 'https://ror.org/0028edj28 Japan University of Health Sciences 日本保健医療大学'), (45058, 'https://ror.org/0029h8b97', 'en', 1, 'https://ror.org/0029h8b97 Kansai Women''s College 関西女子短期大学'), (45059, 'https://ror.org/002bhvh12', 'en', 1, 'https://ror.org/002bhvh12 Yokohama College of Art and Design 横浜美術短期大学'), (45060, 'https://ror.org/002d67284', 'id', 1, 'https://ror.org/002d67284 Universitas Sutomo'), (45061, 'https://ror.org/002degh13', 'en', 1, 'https://ror.org/002degh13 Fatih University Medical Faculty Hospital Fatih Üniversitesi Tıp Fakültesi Hastanesi'), (45062, 'https://ror.org/002dnnm39', 'no_lang_code', 1, 'https://ror.org/002dnnm39 Siemens (Brazil)'), (45063, 'https://ror.org/002dzyh86', 'en', 1, 'https://ror.org/002dzyh86 Marine Bio-Technologies Center of Innovation'), (45064, 'https://ror.org/002f4wy65', 'en', 1, 'https://ror.org/002f4wy65 Advocado Press'), (45065, 'https://ror.org/002hfez23', 'en', 1, 'https://ror.org/002hfez23 Huzhou Vocational and Technical College'), (45066, 'https://ror.org/002k06d85', 'en', 1, 'https://ror.org/002k06d85 National Institute of Technology, Tokyo College 国立東京工業高等専門学校'), (45067, 'https://ror.org/002mban83', 'no_lang_code', 1, 'https://ror.org/002mban83 Sensient Technologies (Germany)'), (45068, 'https://ror.org/002mja273', 'en', 1, 'https://ror.org/002mja273 University of Jazeera'), (45069, 'https://ror.org/002nr2s48', 'no_lang_code', 1, 'https://ror.org/002nr2s48 Agile EndoSurgery (United States)'), (45070, 'https://ror.org/002nwxy91', 'no_lang_code', 1, 'https://ror.org/002nwxy91 Solmax (Canada)'), (45071, 'https://ror.org/002qh8m50', 'no_lang_code', 1, 'https://ror.org/002qh8m50 Trelleborg (Germany)'), (45072, 'https://ror.org/002qjv549', 'no_lang_code', 1, 'https://ror.org/002qjv549 Whirlpool (Germany)'), (45073, 'https://ror.org/002qxpg72', 'no_lang_code', 1, 'https://ror.org/002qxpg72 ON Semiconductor (United Kingdom)'), (45074, 'https://ror.org/002sk4j30', 'en', 1, 'https://ror.org/002sk4j30 Fort Mac LRA'), (45075, 'https://ror.org/002vd5g50', 'en', 1, 'https://ror.org/002vd5g50 Research Station of the Russian Academy of Sciences in Bishkek Научная станция Российской академии наук в Бишкеке [править | править вики-текст]'), (45076, 'https://ror.org/002vrhd35', 'en', 1, 'https://ror.org/002vrhd35 Nara National Museum 奈良国立博物館'), (45077, 'https://ror.org/002wxg772', 'no_lang_code', 1, 'https://ror.org/002wxg772 Tsubaki (Germany) 株式会社椿本チエイン'), (45078, 'https://ror.org/002y0mb20', 'no_lang_code', 1, 'https://ror.org/002y0mb20 Advanced Research Corporation (United States)'), (45079, 'https://ror.org/002zd6q52', 'en', 1, 'https://ror.org/002zd6q52 Michigan Institute for Educational Management'), (45080, 'https://ror.org/0030xrh72', 'no_lang_code', 1, 'https://ror.org/0030xrh72 CryptoExperts (France)'), (45081, 'https://ror.org/0032h6p54', 'no_lang_code', 1, 'https://ror.org/0032h6p54 Universal Scientific Industrial (China) 环旭电子股份有限公司'), (45082, 'https://ror.org/00335tx14', 'en', 1, 'https://ror.org/00335tx14 North Carolina Soybean Association'), (45083, 'https://ror.org/0033b1559', 'en', 1, 'https://ror.org/0033b1559 Allegheny County Library Association'), (45084, 'https://ror.org/0033p4m78', 'no_lang_code', 1, 'https://ror.org/0033p4m78 eIQ Energy (United States)'), (45085, 'https://ror.org/003470t18', 'no_lang_code', 1, 'https://ror.org/003470t18 Ohmx (United States)'), (45086, 'https://ror.org/0035wxz79', 'en', 1, 'https://ror.org/0035wxz79 Dambari Wildlife Trust'), (45087, 'https://ror.org/0036wzx44', 'en', 1, 'https://ror.org/0036wzx44 Junshin Gakuen University 純真学園大学'), (45088, 'https://ror.org/00386qk52', 'no_lang_code', 1, 'https://ror.org/00386qk52 Sandvik (Austria)'), (45089, 'https://ror.org/003agka18', 'en', 1, 'https://ror.org/003agka18 Search Institute'), (45090, 'https://ror.org/003c45k89', 'en', 1, 'https://ror.org/003c45k89 Korea Foundation Of Nuclear Safety 한국원자력안전재단'), (45091, 'https://ror.org/003cm7v94', 'no_lang_code', 1, 'https://ror.org/003cm7v94 Sensor Creations (United States)'), (45092, 'https://ror.org/003gxx992', 'en', 1, 'https://ror.org/003gxx992 Sendai Science Museum 仙台市科学館'), (45093, 'https://ror.org/003hspx48', 'en', 1, 'https://ror.org/003hspx48 Aichi Prefectural Nisshin West High School 愛知県立日進西高等学校'), (45094, 'https://ror.org/003j6bs77', 'en', 1, 'https://ror.org/003j6bs77 Internationals Network For Public Schools'), (45095, 'https://ror.org/003js0r95', 'no_lang_code', 1, 'https://ror.org/003js0r95 Monsanto (Brazil)'), (45096, 'https://ror.org/003kk8e92', 'de', 1, 'https://ror.org/003kk8e92 Deutsches Textilforschungszentrum Nord-West'), (45097, 'https://ror.org/003kz5h76', 'en', 1, 'https://ror.org/003kz5h76 Association of Management Consulting Firms'), (45098, 'https://ror.org/003mv3827', 'es', 1, 'https://ror.org/003mv3827 Universidad Obrera de Mexico'), (45099, 'https://ror.org/003ns4430', 'no_lang_code', 1, 'https://ror.org/003ns4430 Rogers Sciences (United States)'), (45100, 'https://ror.org/003ns5237', 'no_lang_code', 1, 'https://ror.org/003ns5237 Lear (Germany)'), (45101, 'https://ror.org/003p2k248', 'no_lang_code', 1, 'https://ror.org/003p2k248 Pirelli (Germany)'), (45102, 'https://ror.org/003rkqt50', 'en', 1, 'https://ror.org/003rkqt50 Yamagata Prefectural Education Institute 山形県教育センター'), (45103, 'https://ror.org/003sgjn18', 'no_lang_code', 1, 'https://ror.org/003sgjn18 Osaka Butsuryo University 大阪物療大学'), (45104, 'https://ror.org/003snev59', 'no_lang_code', 1, 'https://ror.org/003snev59 Volvo (Germany)'), (45105, 'https://ror.org/003sw4m03', 'en', 1, 'https://ror.org/003sw4m03 Saudi Center for Theoretical Physics'), (45106, 'https://ror.org/003tmp461', 'en', 1, 'https://ror.org/003tmp461 Schiller International University'), (45107, 'https://ror.org/003vha698', 'en', 1, 'https://ror.org/003vha698 Japan Spaceguard Association 日本スペースガード協会'), (45108, 'https://ror.org/003x8h913', 'no_lang_code', 1, 'https://ror.org/003x8h913 Eastman Chemical Company (Germany)'), (45109, 'https://ror.org/003xctm20', 'en', 1, 'https://ror.org/003xctm20 Road Map Project'), (45110, 'https://ror.org/003xdw211', 'en', 1, 'https://ror.org/003xdw211 National Yang Ming University Hospital 国立阳明大学附设医院'), (45111, 'https://ror.org/003zfh275', 'pt', 1, 'https://ror.org/003zfh275 Hospital Padre Américo'), (45112, 'https://ror.org/004046r88', 'en', 1, 'https://ror.org/004046r88 Cw Private Hospital'), (45113, 'https://ror.org/00425vc91', 'no_lang_code', 1, 'https://ror.org/00425vc91 Rheomics (United States)'), (45114, 'https://ror.org/0042aq380', 'no_lang_code', 1, 'https://ror.org/0042aq380 Sironix Renewables (United States)'), (45115, 'https://ror.org/0043qss98', 'en', 1, 'https://ror.org/0043qss98 Federal Employee Education and Assistance Fund'), (45116, 'https://ror.org/0043z0e71', 'en', 1, 'https://ror.org/0043z0e71 Arkitektur- och designcentrum Swedish Centre for Architecture and Design'), (45117, 'https://ror.org/0044cjb29', 'no_lang_code', 1, 'https://ror.org/0044cjb29 Clinical Investigation Support (Austria)'), (45118, 'https://ror.org/0044zd471', 'en', 1, 'https://ror.org/0044zd471 Foundation Osaka City Museum Association 公益財団法人大阪市博物館協会'), (45119, 'https://ror.org/00459cq42', 'en', 1, 'https://ror.org/00459cq42 Gateway Health Institute'), (45120, 'https://ror.org/0045ja979', 'en', 1, 'https://ror.org/0045ja979 Chester County Library System'), (45121, 'https://ror.org/0048he143', 'no_lang_code', 1, 'https://ror.org/0048he143 Össur (Germany)'), (45122, 'https://ror.org/00497ac31', 'no_lang_code', 1, 'https://ror.org/00497ac31 Umlaut Software (United States)'), (45123, 'https://ror.org/0049gd358', 'en', 1, 'https://ror.org/0049gd358 University of Science, Art and Technology'), (45124, 'https://ror.org/004atj446', 'en', 1, 'https://ror.org/004atj446 Library of Michigan Foundation'), (45125, 'https://ror.org/004b7jc50', 'no_lang_code', 1, 'https://ror.org/004b7jc50 Maxim Integrated (United Kingdom)'), (45126, 'https://ror.org/004debr48', 'it', 1, 'https://ror.org/004debr48 Ospedale Santa Maria di Loreto Nuovo'), (45127, 'https://ror.org/004dpkc57', 'es', 1, 'https://ror.org/004dpkc57 Wikimedia Chile'), (45128, 'https://ror.org/004f1yx35', 'pt', 1, 'https://ror.org/004f1yx35 Empresa de Pesquisa Agropecuária e Extensão Rural de Santa Catarina'), (45129, 'https://ror.org/004fan886', 'es', 1, 'https://ror.org/004fan886 Universidad Autónoma Monterrey'), (45130, 'https://ror.org/004g74051', 'en', 1, 'https://ror.org/004g74051 Technological University Panglong နည်းပညာတက္ကသိုလ်(ပင်လုံ)'), (45131, 'https://ror.org/004g8sj50', 'no_lang_code', 1, 'https://ror.org/004g8sj50 EnergyAustralia (Australia)'), (45132, 'https://ror.org/004gdd155', 'en', 1, 'https://ror.org/004gdd155 Belize Zoo'), (45133, 'https://ror.org/004h0ew98', 'en', 1, 'https://ror.org/004h0ew98 LearnLaunch Institute'), (45134, 'https://ror.org/004hb4039', 'no_lang_code', 1, 'https://ror.org/004hb4039 Danfoss (China)'), (45135, 'https://ror.org/004j8ab67', 'no_lang_code', 1, 'https://ror.org/004j8ab67 Nitride Crystals (United States)'), (45136, 'https://ror.org/004jk3542', 'no_lang_code', 1, 'https://ror.org/004jk3542 Renishaw (Ireland)'), (45137, 'https://ror.org/004m46j22', 'pt', 1, 'https://ror.org/004m46j22 Secretaria de Ciência, Tecnologia e Inovação'), (45138, 'https://ror.org/004nj3f45', 'en', 1, 'https://ror.org/004nj3f45 Virginia Assistive Technology System'), (45139, 'https://ror.org/004np3m61', 'en', 1, 'https://ror.org/004np3m61 National Institute of Technology, Ariake College 有明工業高等専門学校'), (45140, 'https://ror.org/004nttc42', 'en', 1, 'https://ror.org/004nttc42 Fraunhofer Institute for Mechatronic Systems Design Fraunhofer-Institut für Entwurfstechnik Mechatronik'), (45141, 'https://ror.org/004qxzr21', 'en', 1, 'https://ror.org/004qxzr21 Theodor Fliedner Foundation Theodor Fliedner Stiftung'), (45142, 'https://ror.org/004tddr41', 'en', 1, 'https://ror.org/004tddr41 Family Online Safety Institute'), (45143, 'https://ror.org/004vz6g09', 'en', 1, 'https://ror.org/004vz6g09 Lincoln Trail Area Development District'), (45144, 'https://ror.org/004yf8m37', 'no_lang_code', 1, 'https://ror.org/004yf8m37 Reaction35 (United States)'), (45145, 'https://ror.org/004ywrc08', 'en', 1, 'https://ror.org/004ywrc08 Kobe City Fire Department 神戸市消防局'), (45146, 'https://ror.org/00505z102', 'no_lang_code', 1, 'https://ror.org/00505z102 Johnson & Johnson (Switzerland)'), (45147, 'https://ror.org/005263a87', 'id', 1, 'https://ror.org/005263a87 Wikimedia Indonesia'), (45148, 'https://ror.org/00541hg31', 'en', 1, 'https://ror.org/00541hg31 San Francisco Fire Department'), (45149, 'https://ror.org/005535379', 'en', 1, 'https://ror.org/005535379 Blanchette Rockefeller Neurosciences Institute'), (45150, 'https://ror.org/005891v66', 'en', 1, 'https://ror.org/005891v66 Cardiac Society of Australia and New Zealand'), (45151, 'https://ror.org/00593cw33', 'no_lang_code', 1, 'https://ror.org/00593cw33 Richtek Technology (Taiwan) 立錡科技'), (45152, 'https://ror.org/0059k7j85', 'no_lang_code', 1, 'https://ror.org/0059k7j85 Institute For Smart Monitoring (United States)'), (45153, 'https://ror.org/005a4h693', 'en', 1, 'https://ror.org/005a4h693 Aichi Prefectural Kasugai Higashi High School 愛知県立春日井東高等学校'), (45154, 'https://ror.org/005b4rt94', 'en', 1, 'https://ror.org/005b4rt94 Jung Tao School of Classical Chinese Medicine'), (45155, 'https://ror.org/005b7va47', 'no_lang_code', 1, 'https://ror.org/005b7va47 GroundMetrics (United States)'), (45156, 'https://ror.org/005d42743', 'no_lang_code', 1, 'https://ror.org/005d42743 Illinois Tool Works (Australia)'), (45157, 'https://ror.org/005et7b18', 'en', 1, 'https://ror.org/005et7b18 Bamenda University of Science and Technology'), (45158, 'https://ror.org/005fe1k46', 'no_lang_code', 1, 'https://ror.org/005fe1k46 BorgWarner (Brazil)'), (45159, 'https://ror.org/005hdgp31', 'en', 1, 'https://ror.org/005hdgp31 Basque Center for Materials, Applications and Nanostructures'), (45160, 'https://ror.org/005j0cx32', 'de', 1, 'https://ror.org/005j0cx32 Augenklinik Heidelberg'), (45161, 'https://ror.org/005jw9139', 'no_lang_code', 1, 'https://ror.org/005jw9139 Mondelēz International (United States)'), (45162, 'https://ror.org/005kpb876', 'en', 1, 'https://ror.org/005kpb876 London Cancer'), (45163, 'https://ror.org/005mjtj84', 'pl', 1, 'https://ror.org/005mjtj84 Niepubliczna Wyższa Szkoła Medyczna'), (45164, 'https://ror.org/005mn0111', 'no_lang_code', 1, 'https://ror.org/005mn0111 Sciaky (United States)'), (45165, 'https://ror.org/005pzyb51', 'en', 1, 'https://ror.org/005pzyb51 Research Institute for Innovation and Technology'), (45166, 'https://ror.org/005qnwq38', 'no_lang_code', 1, 'https://ror.org/005qnwq38 Unilever (Philippines)'), (45167, 'https://ror.org/005scs312', 'en', 1, 'https://ror.org/005scs312 World Rehabilitation Fund'), (45168, 'https://ror.org/005swq337', 'no_lang_code', 1, 'https://ror.org/005swq337 Winterthur Gas & Diesel (Switzerland)'), (45169, 'https://ror.org/005v44f98', 'fr', 1, 'https://ror.org/005v44f98 Centre d''Échographie de la Femme et du Fœtus'), (45170, 'https://ror.org/005v7em92', 'en', 1, 'https://ror.org/005v7em92 Colorado Department of Higher Education'), (45171, 'https://ror.org/005w1s219', 'en', 1, 'https://ror.org/005w1s219 ICCO'), (45172, 'https://ror.org/005xj6w35', 'en', 1, 'https://ror.org/005xj6w35 Shogen Junior College 正眼短期大学'), (45173, 'https://ror.org/0060eq849', 'en', 1, 'https://ror.org/0060eq849 Freshwater Habitats Trust'), (45174, 'https://ror.org/0063pqn40', 'en', 1, 'https://ror.org/0063pqn40 Saitama Prefectural Kumagaya Girls High School 埼玉県立熊谷女子高等学校'), (45175, 'https://ror.org/0063wfd54', 'no_lang_code', 1, 'https://ror.org/0063wfd54 First Sensor (Germany)'), (45176, 'https://ror.org/0063zxz13', 'no_lang_code', 1, 'https://ror.org/0063zxz13 Avid (Israel)'), (45177, 'https://ror.org/0067q8j88', 'id', 1, 'https://ror.org/0067q8j88 Rumah Sakit Dokter Soetomo'), (45178, 'https://ror.org/006afd344', 'en', 1, 'https://ror.org/006afd344 Sunnyvale Public Library'), (45179, 'https://ror.org/006bxqs05', 'en', 1, 'https://ror.org/006bxqs05 Institute of Astrophysics and Space Sciences Instituto de Astrofísica e Ciências do Espaço'), (45180, 'https://ror.org/006dp6044', 'sv', 1, 'https://ror.org/006dp6044 Svenskt Gastekniskt Center Swedish Gas Technology Centre'), (45181, 'https://ror.org/006ejbv88', 'en', 1, 'https://ror.org/006ejbv88 Kampala International University'), (45182, 'https://ror.org/006n22802', 'en', 1, 'https://ror.org/006n22802 International School of Europe'), (45183, 'https://ror.org/006s9y688', 'no_lang_code', 1, 'https://ror.org/006s9y688 Ingersoll Rand (United States)'), (45184, 'https://ror.org/006sha924', 'en', 1, 'https://ror.org/006sha924 Institute of Public Enterprise'), (45185, 'https://ror.org/006smnb28', 'en', 1, 'https://ror.org/006smnb28 Kariya City Board of Education 刈谷市教育委員会委員名簿'), (45186, 'https://ror.org/006t6t254', 'en', 1, 'https://ror.org/006t6t254 Bộ Thông tin và Truyền thông Ministry of Information and Communications'), (45187, 'https://ror.org/006vpev48', 'en', 1, 'https://ror.org/006vpev48 Kumamoto Prefectural Minamata Technical High School 熊本県立水俣工業高等学校'), (45188, 'https://ror.org/006z6tk79', 'en', 1, 'https://ror.org/006z6tk79 Dover Town Library'), (45189, 'https://ror.org/0070x6033', 'de', 1, 'https://ror.org/0070x6033 Klinik Preetz'), (45190, 'https://ror.org/0072m3y51', 'no_lang_code', 1, 'https://ror.org/0072m3y51 Oracle (Israel)'), (45191, 'https://ror.org/0076k6d95', 'no_lang_code', 1, 'https://ror.org/0076k6d95 Assa Abloy (Germany)'), (45192, 'https://ror.org/0076ska18', 'en', 1, 'https://ror.org/0076ska18 Mountain Home School District'), (45193, 'https://ror.org/00792x745', 'no_lang_code', 1, 'https://ror.org/00792x745 Amdocs (Germany)'), (45194, 'https://ror.org/007b1tt61', 'en', 1, 'https://ror.org/007b1tt61 Murmansk Regional Clinical Hospital Мурманская область больнице P.A.Bayandina'), (45195, 'https://ror.org/007c37917', 'no_lang_code', 1, 'https://ror.org/007c37917 Moog (Germany)'), (45196, 'https://ror.org/007d4jn78', 'en', 1, 'https://ror.org/007d4jn78 Institute of Philosophy 哲学研究所'), (45197, 'https://ror.org/007eeyb09', 'no_lang_code', 1, 'https://ror.org/007eeyb09 MRI Robotics (United States)'), (45198, 'https://ror.org/007eyd925', 'en', 1, 'https://ror.org/007eyd925 Tianjin University of Sport 天津体育学院'), (45199, 'https://ror.org/007h0zf03', 'en', 1, 'https://ror.org/007h0zf03 National Institute for Educational Policy Research 国立教育政策研究所'), (45200, 'https://ror.org/007hwje16', 'en', 1, 'https://ror.org/007hwje16 Kihara Institute for Biological Research 横浜市立大学木原生物学研究所'), (45201, 'https://ror.org/007j02p07', 'en', 1, 'https://ror.org/007j02p07 Maulana Abul Kalam Azad Institute of Asian Studies মৌলানা আবুল কালাম আজাদ ইনস্টিটিউট্ অফ এশিয়ান স্টাডিজ্'), (45202, 'https://ror.org/007kevk58', 'en', 1, 'https://ror.org/007kevk58 Westfield Memorial Library'), (45203, 'https://ror.org/007mfjf50', 'en', 1, 'https://ror.org/007mfjf50 Kyushu National Museum 九州国立博物館'), (45204, 'https://ror.org/007nce146', 'no_lang_code', 1, 'https://ror.org/007nce146 Emergent BioSolutions (United Kingdom)'), (45205, 'https://ror.org/007qdwg58', 'no_lang_code', 1, 'https://ror.org/007qdwg58 GEO-HAZ Consulting (United States)'), (45206, 'https://ror.org/007qf4q77', 'en', 1, 'https://ror.org/007qf4q77 Lion Foundation for Dental Health ライオン歯科衛生研究所'), (45207, 'https://ror.org/007r1jg09', 'no_lang_code', 1, 'https://ror.org/007r1jg09 InvestorNet-Gate2Growth (Denmark)'), (45208, 'https://ror.org/007r42p71', 'en', 1, 'https://ror.org/007r42p71 Rabindranath Tagore Medical College'), (45209, 'https://ror.org/007st8028', 'no_lang_code', 1, 'https://ror.org/007st8028 Visuray (Malta)'), (45210, 'https://ror.org/007tn2w26', 'no_lang_code', 1, 'https://ror.org/007tn2w26 Mycofarm (Singapore)'), (45211, 'https://ror.org/007vmg243', 'en', 1, 'https://ror.org/007vmg243 Kyushu Economic Research Center 公益財団法人 九州経済調査協会'), (45212, 'https://ror.org/007wpch15', 'en', 1, 'https://ror.org/007wpch15 Institute for Stem Cell Biology and Regenerative Medicine'), (45213, 'https://ror.org/007xn0x86', 'en', 1, 'https://ror.org/007xn0x86 Yakama Nation Tribal Council'), (45214, 'https://ror.org/007y22n43', 'de', 1, 'https://ror.org/007y22n43 Gesundheitszentrum Bitterfeld'), (45215, 'https://ror.org/007ypmw98', 'no_lang_code', 1, 'https://ror.org/007ypmw98 Meloche (Canada)'), (45216, 'https://ror.org/007zab522', 'en', 1, 'https://ror.org/007zab522 Fukuoka Women''s Junior College 福岡女子短期大学'), (45217, 'https://ror.org/007zjjv25', 'en', 1, 'https://ror.org/007zjjv25 Monmouth County Library'), (45218, 'https://ror.org/0080zax93', 'en', 1, 'https://ror.org/0080zax93 Horsham Land Redevelopment Authority'), (45219, 'https://ror.org/008124755', 'en', 1, 'https://ror.org/008124755 British Toxicology Society'), (45220, 'https://ror.org/008382c47', 'no_lang_code', 1, 'https://ror.org/008382c47 Sendai City Museum 仙台市博物館'), (45221, 'https://ror.org/008421332', 'en', 1, 'https://ror.org/008421332 NBIA Disorders Association'), (45222, 'https://ror.org/008437370', 'en', 1, 'https://ror.org/008437370 National Institute of Population and Social Security Research 国立社会保障・人口問題研究所'), (45223, 'https://ror.org/008558y11', 'no_lang_code', 1, 'https://ror.org/008558y11 Gemalto (Germany)'), (45224, 'https://ror.org/0085d1p90', 'no_lang_code', 1, 'https://ror.org/0085d1p90 Atmospheric Plasma Solutions (United States)'), (45225, 'https://ror.org/0085x3f43', 'en', 1, 'https://ror.org/0085x3f43 Ningbo Dahongying University 宁波大红鹰学院'), (45226, 'https://ror.org/0087ve919', 'no_lang_code', 1, 'https://ror.org/0087ve919 Solid Material Solutions (United States)'), (45227, 'https://ror.org/0088z0796', 'en', 1, 'https://ror.org/0088z0796 Museum of Fine Arts, Gifu 岐阜県美術館'), (45228, 'https://ror.org/0089qm711', 'no_lang_code', 1, 'https://ror.org/0089qm711 OCT Medical Imaging (United States)'), (45229, 'https://ror.org/008egk659', 'no_lang_code', 1, 'https://ror.org/008egk659 Gnowit (Canada)'), (45230, 'https://ror.org/008ensz53', 'en', 1, 'https://ror.org/008ensz53 Alliance for Excellent Education'), (45231, 'https://ror.org/008f7aw41', 'en', 1, 'https://ror.org/008f7aw41 Paleological Association of Japan 公益財団法人古代学協会'), (45232, 'https://ror.org/008htsm20', 'de', 1, 'https://ror.org/008htsm20 Sana Kliniken Duisburg'), (45233, 'https://ror.org/008j2vk87', 'no_lang_code', 1, 'https://ror.org/008j2vk87 Johnson & Johnson (Ireland)'), (45234, 'https://ror.org/008jqbh70', 'en', 1, 'https://ror.org/008jqbh70 Himeji High School 姫路市立姫路高等学校'), (45235, 'https://ror.org/008krtd86', 'no_lang_code', 1, 'https://ror.org/008krtd86 Thomson Reuters (United Kingdom)'), (45236, 'https://ror.org/008mems69', 'en', 1, 'https://ror.org/008mems69 National Institute of Technology, Yuge College 弓削商船高等専門学校'), (45237, 'https://ror.org/008p7xh83', 'en', 1, 'https://ror.org/008p7xh83 Chinese Preventive Medicine Association'), (45238, 'https://ror.org/008qm0n27', 'en', 1, 'https://ror.org/008qm0n27 National Math and Science Initiative'), (45239, 'https://ror.org/008rq7v69', 'en', 1, 'https://ror.org/008rq7v69 Miyagi Prefecture Ishinomaki Technical High School 宮城県石巻工業高等学校'), (45240, 'https://ror.org/008te2062', 'en', 1, 'https://ror.org/008te2062 St Michael’s Hospital'), (45241, 'https://ror.org/008yrcn60', 'en', 1, 'https://ror.org/008yrcn60 Bertha Voyer Memorial Library'), (45242, 'https://ror.org/008ze5r69', 'no_lang_code', 1, 'https://ror.org/008ze5r69 Cernostics (United States)'), (45243, 'https://ror.org/008zgph74', 'en', 1, 'https://ror.org/008zgph74 Bossier Parish School Board'), (45244, 'https://ror.org/0090z5g12', 'no_lang_code', 1, 'https://ror.org/0090z5g12 Lhoist (Germany)'), (45245, 'https://ror.org/0092jx746', 'en', 1, 'https://ror.org/0092jx746 Institute for Educational Leadership'), (45246, 'https://ror.org/0093zaj76', 'pt', 1, 'https://ror.org/0093zaj76 Instituto de Ensino e Pesquisa Santa Casa'), (45247, 'https://ror.org/0098ak319', 'en', 1, 'https://ror.org/0098ak319 Coconut Research Institute'), (45248, 'https://ror.org/0098qsx72', 'no_lang_code', 1, 'https://ror.org/0098qsx72 Royal HaskoningDHV (United Kingdom)'), (45249, 'https://ror.org/009afhj46', 'en', 1, 'https://ror.org/009afhj46 Fucape Business School'), (45250, 'https://ror.org/009bczc36', 'ca', 1, 'https://ror.org/009bczc36 Societat Catalana d''Oftalmologia'), (45251, 'https://ror.org/009be3496', 'en', 1, 'https://ror.org/009be3496 Nagasaki Prefectural Shimabara High School 長崎県立島原高等学校'), (45252, 'https://ror.org/009byq155', 'es', 1, 'https://ror.org/009byq155 Centro de Investigación Biomédica en Red de Salud Mental'), (45253, 'https://ror.org/009cg4615', 'en', 1, 'https://ror.org/009cg4615 Hyogo Prefectural Police 兵庫県警察'), (45254, 'https://ror.org/009dch554', 'en', 1, 'https://ror.org/009dch554 Missouri Valley Cancer Consortium'), (45255, 'https://ror.org/009dxjw45', 'en', 1, 'https://ror.org/009dxjw45 Faurecia (Germany)'), (45256, 'https://ror.org/009e9eq52', 'en', 1, 'https://ror.org/009e9eq52 Newcastle University Medicine Malaysia'), (45257, 'https://ror.org/009fme624', 'no_lang_code', 1, 'https://ror.org/009fme624 E-Spectrum Technologies (United States)'), (45258, 'https://ror.org/009hd2k51', 'en', 1, 'https://ror.org/009hd2k51 Wisconsin Economic Development Corporation'), (45259, 'https://ror.org/009mmq515', 'en', 1, 'https://ror.org/009mmq515 Australian Diabetes Society'), (45260, 'https://ror.org/009nhnc47', 'de', 1, 'https://ror.org/009nhnc47 Klinik und Poliklinik für Hals-, Nasen-, Ohrenheilkunde'), (45261, 'https://ror.org/009qwqe18', 'en', 1, 'https://ror.org/009qwqe18 ACT Foundation'), (45262, 'https://ror.org/009rysn20', 'en', 1, 'https://ror.org/009rysn20 Gary Public Library'), (45263, 'https://ror.org/009sp3d14', 'no_lang_code', 1, 'https://ror.org/009sp3d14 Gentherm (United States)'), (45264, 'https://ror.org/009tscw31', 'en', 1, 'https://ror.org/009tscw31 Institut für Stadt- und Regionalforschung Institute for Urban and Regional Research'), (45265, 'https://ror.org/009wszx58', 'en', 1, 'https://ror.org/009wszx58 South Carolina Department of Employment and Workforce'), (45266, 'https://ror.org/009ynjx25', 'pt', 1, 'https://ror.org/009ynjx25 Secretaria de Educação de Pernambuco'), (45267, 'https://ror.org/009yrnm54', 'no_lang_code', 1, 'https://ror.org/009yrnm54 Trelleborg (United Kingdom)'), (45268, 'https://ror.org/009z7vc79', 'no_lang_code', 1, 'https://ror.org/009z7vc79 Hyundai Card (South Korea) 현대카드'), (45269, 'https://ror.org/00a0e8y90', 'no_lang_code', 1, 'https://ror.org/00a0e8y90 Mera Pharmaceuticals (United states)'), (45270, 'https://ror.org/00a0wcz54', 'en', 1, 'https://ror.org/00a0wcz54 Lancaster Education Foundation'), (45271, 'https://ror.org/00a0zet70', 'pt', 1, 'https://ror.org/00a0zet70 Prefeitura Municipal de Barra Mansa'), (45272, 'https://ror.org/00a7kcq71', 'no_lang_code', 1, 'https://ror.org/00a7kcq71 Recif Technologies (France)'), (45273, 'https://ror.org/00a8m1d79', 'en', 1, 'https://ror.org/00a8m1d79 Long Beach Public Library'), (45274, 'https://ror.org/00ae67970', 'en', 1, 'https://ror.org/00ae67970 National Environmental Agency გარემოს ეროვნული სააგენტო'), (45275, 'https://ror.org/00aesyf04', 'en', 1, 'https://ror.org/00aesyf04 Glendale Public Library'), (45276, 'https://ror.org/00ag1vy72', 'no_lang_code', 1, 'https://ror.org/00ag1vy72 Liebherr (Austria)'), (45277, 'https://ror.org/00agsqd14', 'no_lang_code', 1, 'https://ror.org/00agsqd14 Nanium (Portugal)'), (45278, 'https://ror.org/00ahm5y33', 'no_lang_code', 1, 'https://ror.org/00ahm5y33 Rostec (Russia) Ростех'), (45279, 'https://ror.org/00amn8x39', 'en', 1, 'https://ror.org/00amn8x39 Nehru Foundation for Development'), (45280, 'https://ror.org/00apjgf04', 'en', 1, 'https://ror.org/00apjgf04 Schiller International University'), (45281, 'https://ror.org/00aptaa75', 'en', 1, 'https://ror.org/00aptaa75 Alliance pour le Prévention des maladies Chroniques au Canada Chronic Disease Prevention Alliance of Canada'), (45282, 'https://ror.org/00aq0ev26', 'en', 1, 'https://ror.org/00aq0ev26 Funders Concerned About AIDS'), (45283, 'https://ror.org/00aq0fx21', 'es', 1, 'https://ror.org/00aq0fx21 Centro para la Investigación en Sistemas Sostenibles de Producción Agropecuaria'), (45284, 'https://ror.org/00aqb5q90', 'en', 1, 'https://ror.org/00aqb5q90 Maple Street School'), (45285, 'https://ror.org/00arw9a52', 'en', 1, 'https://ror.org/00arw9a52 National Research Institute of Fire and Disaster 消防庁 消防大学校 消防研究センター'), (45286, 'https://ror.org/00atp6h41', 'no_lang_code', 1, 'https://ror.org/00atp6h41 Standard Imaging (United States)'), (45287, 'https://ror.org/00av44s75', 'pt', 1, 'https://ror.org/00av44s75 Hospital do Servidor Público Municipal'), (45288, 'https://ror.org/00av6fw44', 'en', 1, 'https://ror.org/00av6fw44 Shandong Geological Sciences Institute 山东省地质科学实验研究院'), (45289, 'https://ror.org/00avape27', 'en', 1, 'https://ror.org/00avape27 Yoshida Biological Laboratry 吉田生物学研究所'), (45290, 'https://ror.org/00avqt683', 'fr', 1, 'https://ror.org/00avqt683 Cégep de Baie-Comeau'), (45291, 'https://ror.org/00awfxn33', 'no_lang_code', 1, 'https://ror.org/00awfxn33 FDC Composites (Canada)'), (45292, 'https://ror.org/00awz3e55', 'no_lang_code', 1, 'https://ror.org/00awz3e55 Flash Bainite (United States)'), (45293, 'https://ror.org/00ax8r212', 'no_lang_code', 1, 'https://ror.org/00ax8r212 DfR Solutions (United States)'), (45294, 'https://ror.org/00ay2hv83', 'no_lang_code', 1, 'https://ror.org/00ay2hv83 Safran (Singapore)'), (45295, 'https://ror.org/00b25cj29', 'pt', 1, 'https://ror.org/00b25cj29 Governo do Estado de Alagoas'), (45296, 'https://ror.org/00b2e6559', 'en', 1, 'https://ror.org/00b2e6559 National Institute of Technology, Maizuru College 舞鶴工業高等専門学校'), (45297, 'https://ror.org/00b2vwt46', 'en', 1, 'https://ror.org/00b2vwt46 Victorian Multicultural Commission'), (45298, 'https://ror.org/00b2yyz32', 'pt', 1, 'https://ror.org/00b2yyz32 Associação de Leitura do Brasil'), (45299, 'https://ror.org/00b43n621', 'no_lang_code', 1, 'https://ror.org/00b43n621 Mitutoyo Corporation (Japan) 株式会社ミツトヨ'), (45300, 'https://ror.org/00b4fbe80', 'no_lang_code', 1, 'https://ror.org/00b4fbe80 Universal Environmental Technologies (United States)'), (45301, 'https://ror.org/00b5k3781', 'en', 1, 'https://ror.org/00b5k3781 Southern Africa Association for the Advancement of Science'), (45302, 'https://ror.org/00b5zg596', 'en', 1, 'https://ror.org/00b5zg596 British Educational Research Association'), (45303, 'https://ror.org/00b65kj58', 'no_lang_code', 1, 'https://ror.org/00b65kj58 MPDV Mikrolab (Germany)'), (45304, 'https://ror.org/00b6zxk24', 'en', 1, 'https://ror.org/00b6zxk24 Tweed Shire Council'), (45305, 'https://ror.org/00b80p354', 'en', 1, 'https://ror.org/00b80p354 Kanagawa Prefectural Kanazawa-Bunko Museum 神奈川県立金沢文庫'), (45306, 'https://ror.org/00b8kmt09', 'no_lang_code', 1, 'https://ror.org/00b8kmt09 Virtual Power Solutions (Portugal)'), (45307, 'https://ror.org/00b9m5f16', 'en', 1, 'https://ror.org/00b9m5f16 Gaborone University College Of Law and Professional Studies'), (45308, 'https://ror.org/00b9ph040', 'no_lang_code', 1, 'https://ror.org/00b9ph040 Hexagon (Israel)'), (45309, 'https://ror.org/00ba1ja72', 'no_lang_code', 1, 'https://ror.org/00ba1ja72 STMicroelectronics (Netherlands)'), (45310, 'https://ror.org/00bcfzm29', 'en', 1, 'https://ror.org/00bcfzm29 Lotus Innovative Sciences'), (45311, 'https://ror.org/00be3zh53', 'en', 1, 'https://ror.org/00be3zh53 Institute of Applied Science and Intelligent Systems Istituto di Scienze Applicate e Sistemi Intelligenti "Eduardo Caianiello"'), (45312, 'https://ror.org/00bkhev45', 'en', 1, 'https://ror.org/00bkhev45 Saitama Prefectural Omiya Chuo Senior High School 埼玉県立大宮中央高等学校'), (45313, 'https://ror.org/00bkzza76', 'en', 1, 'https://ror.org/00bkzza76 Fujiidera Technical High School 大阪府立藤井寺工科高等学校'), (45314, 'https://ror.org/00bm3g510', 'no_lang_code', 1, 'https://ror.org/00bm3g510 Kaneka (United States)'), (45315, 'https://ror.org/00bn1cs33', 'en', 1, 'https://ror.org/00bn1cs33 Florida Association of District School Superintendents'), (45316, 'https://ror.org/00bpw5437', 'en', 1, 'https://ror.org/00bpw5437 Arthritis Society'), (45317, 'https://ror.org/00br1x675', 'en', 1, 'https://ror.org/00br1x675 Gangoji Institute for Research of Cultural Property 元興寺文化財研究所'), (45318, 'https://ror.org/00bsqmj12', 'en', 1, 'https://ror.org/00bsqmj12 Marshalltown Community College'), (45319, 'https://ror.org/00bveh077', 'en', 1, 'https://ror.org/00bveh077 Kanagawa Institute of Technology Atsugi Children''s Science Museum 厚木市子ども科学館'), (45320, 'https://ror.org/00bvfhz16', 'en', 1, 'https://ror.org/00bvfhz16 Mie Prefecture Board of Education 教育の三重県委員会'), (45321, 'https://ror.org/00bx90590', 'no_lang_code', 1, 'https://ror.org/00bx90590 Deutsche Telekom (Austria)'), (45322, 'https://ror.org/00bxkz165', 'no_lang_code', 1, 'https://ror.org/00bxkz165 Asus (Taiwan) 華碩電腦股份有限公司'), (45323, 'https://ror.org/00bxp1m74', 'pt', 1, 'https://ror.org/00bxp1m74 Associação Brasileira de Engenharia de Produção'), (45324, 'https://ror.org/00bxxsn28', 'en', 1, 'https://ror.org/00bxxsn28 Oita Prefectural Yufu Support School 大分県由布院支援学校'), (45325, 'https://ror.org/00bygx606', 'en', 1, 'https://ror.org/00bygx606 International Council Of Aids Service Organizations'), (45326, 'https://ror.org/00bz3eh81', 'no_lang_code', 1, 'https://ror.org/00bz3eh81 Vivienda y Suelo de Euskadi (Spain)'); INSERT INTO `rors` VALUES (45327, 'https://ror.org/00bz97317', 'no_lang_code', 1, 'https://ror.org/00bz97317 UNIFAVIP'), (45328, 'https://ror.org/00c0azs61', 'en', 1, 'https://ror.org/00c0azs61 Hiroshima Children''s Museum'), (45329, 'https://ror.org/00c1jzs80', 'en', 1, 'https://ror.org/00c1jzs80 Environment and Public Health Organisation'), (45330, 'https://ror.org/00c1z8d24', 'en', 1, 'https://ror.org/00c1z8d24 Mexican American Legal Defense and Educational Fund'), (45331, 'https://ror.org/00c33pd26', 'en', 1, 'https://ror.org/00c33pd26 Hokkaido Sapporo Kaisei High School 北海道札幌開成高等学校'), (45332, 'https://ror.org/00c3hvv49', 'en', 1, 'https://ror.org/00c3hvv49 Matsumoto Junior College 松本短期大学'), (45333, 'https://ror.org/00c3ma888', 'pl', 1, 'https://ror.org/00c3ma888 Wikimedia Polska'), (45334, 'https://ror.org/00c4rw797', 'no_lang_code', 1, 'https://ror.org/00c4rw797 Transtech Innovations (Canada)'), (45335, 'https://ror.org/00c7qwq82', 'no_lang_code', 1, 'https://ror.org/00c7qwq82 Freudenberg (United States)'), (45336, 'https://ror.org/00c87zj30', 'no_lang_code', 1, 'https://ror.org/00c87zj30 Industrial Microbes (United States)'), (45337, 'https://ror.org/00c8rjz37', 'en', 1, 'https://ror.org/00c8rjz37 Mansoura University Hospital'), (45338, 'https://ror.org/00c93aj32', 'no_lang_code', 1, 'https://ror.org/00c93aj32 DIC (Japan) ディーアイシー'), (45339, 'https://ror.org/00cc7y784', 'en', 1, 'https://ror.org/00cc7y784 American Urogynecologic Society'), (45340, 'https://ror.org/00ccnfj96', 'en', 1, 'https://ror.org/00ccnfj96 Regional Information Center for Science and Technology مرکز منطقه ای اطلاع رسانی علوم و فناوری'), (45341, 'https://ror.org/00cdhs571', 'no_lang_code', 1, 'https://ror.org/00cdhs571 Amdocs (Israel)'), (45342, 'https://ror.org/00cdwab02', 'en', 1, 'https://ror.org/00cdwab02 Children’s Literature Association'), (45343, 'https://ror.org/00cedkn40', 'no_lang_code', 1, 'https://ror.org/00cedkn40 Robert Bosch (China)'), (45344, 'https://ror.org/00cg4a205', 'no_lang_code', 1, 'https://ror.org/00cg4a205 Stryker (Ireland)'), (45345, 'https://ror.org/00cgnt765', 'en', 1, 'https://ror.org/00cgnt765 Deutsche Stiftung Weltbevoelkerung German Foundation for World Population'), (45346, 'https://ror.org/00ch15449', 'no_lang_code', 1, 'https://ror.org/00ch15449 Somfy (Germany)'), (45347, 'https://ror.org/00chnh519', 'en', 1, 'https://ror.org/00chnh519 Hokkaido Sapporo Kiyota High School 北海道札幌清田高等学校'), (45348, 'https://ror.org/00ckqw993', 'en', 1, 'https://ror.org/00ckqw993 Shiga Bunkyo Junior College 滋賀文教短期大学'), (45349, 'https://ror.org/00cnk1752', 'no_lang_code', 1, 'https://ror.org/00cnk1752 W. L. Gore & Associates (Japan)'), (45350, 'https://ror.org/00cp8ee37', 'pt', 1, 'https://ror.org/00cp8ee37 Prefeitura Municipal de Alto Alegre'), (45351, 'https://ror.org/00cpm5y73', 'no_lang_code', 1, 'https://ror.org/00cpm5y73 Serres Sagami (Canada)'), (45352, 'https://ror.org/00cq0fp06', 'en', 1, 'https://ror.org/00cq0fp06 Institute of Physiology and Basic Medicine Федеральный государственный научно-исследовательский институт Бюджетная научное учреждение Научно физиологии и фундаментальной медицины'), (45353, 'https://ror.org/00cq3qn16', 'en', 1, 'https://ror.org/00cq3qn16 Beijing Institute of Geology for Mineral Resources 北京矿产地质研究院 京I'), (45354, 'https://ror.org/00cqcft87', 'en', 1, 'https://ror.org/00cqcft87 Koganei Daiichi Elementary School 小金井市立小金井第一小学校'), (45355, 'https://ror.org/00cqrch10', 'en', 1, 'https://ror.org/00cqrch10 Center For Children With Special Needs'), (45356, 'https://ror.org/00ctv5m58', 'en', 1, 'https://ror.org/00ctv5m58 John N. Gardner Institute for Excellence in Undergraduate Education'), (45357, 'https://ror.org/00cwr8424', 'no_lang_code', 1, 'https://ror.org/00cwr8424 Gad Consulting Services (United States)'), (45358, 'https://ror.org/00cyam193', 'en', 1, 'https://ror.org/00cyam193 National Institute of Animal Sciences Viện Chăn Nuôi'), (45359, 'https://ror.org/00cz1kp86', 'en', 1, 'https://ror.org/00cz1kp86 Vishwamitra Research Institute'), (45360, 'https://ror.org/00d0v0049', 'en', 1, 'https://ror.org/00d0v0049 Max Planck Innovation'), (45361, 'https://ror.org/00d4czm47', 'en', 1, 'https://ror.org/00d4czm47 Gold Coast City Council'), (45362, 'https://ror.org/00d4far13', 'en', 1, 'https://ror.org/00d4far13 Colorado Education Initiative'), (45363, 'https://ror.org/00d68k463', 'en', 1, 'https://ror.org/00d68k463 Toyama Prefectural Institute for Pharmaceutical Research 富山県薬事総合研究開発センター'), (45364, 'https://ror.org/00d8hgw93', 'en', 1, 'https://ror.org/00d8hgw93 Global Environmental Outreach Centre'), (45365, 'https://ror.org/00d958b97', 'en', 1, 'https://ror.org/00d958b97 Sarvodaya Fertility & IVF Centre'), (45366, 'https://ror.org/00d9m6s48', 'en', 1, 'https://ror.org/00d9m6s48 Guangdong Provincial Occupational Disease Prevention Hospital 广东省职业病防治院'), (45367, 'https://ror.org/00db1z327', 'no_lang_code', 1, 'https://ror.org/00db1z327 SixOne Solutions (United States)'), (45368, 'https://ror.org/00ddyzb69', 'en', 1, 'https://ror.org/00ddyzb69 Biodiversity Research Institute'), (45369, 'https://ror.org/00deghz86', 'en', 1, 'https://ror.org/00deghz86 Zhejiang Financial College 浙江金融职业学院'), (45370, 'https://ror.org/00df6sb82', 'no_lang_code', 1, 'https://ror.org/00df6sb82 Catalan Government Railways Ferrocarrils de la Generalitat de Catalunya (Spain)'), (45371, 'https://ror.org/00dhbnv07', 'en', 1, 'https://ror.org/00dhbnv07 Moscow Center For Continuous Mathematical Education Московский центр непрерывного математического образования'), (45372, 'https://ror.org/00djzv109', 'en', 1, 'https://ror.org/00djzv109 Komaki Technical High School 愛知県立小牧工業高等学校'), (45373, 'https://ror.org/00dmed338', 'no_lang_code', 1, 'https://ror.org/00dmed338 Netzsch (Germany)'), (45374, 'https://ror.org/00dsd1564', 'no_lang_code', 1, 'https://ror.org/00dsd1564 Creo Medical (United Kingdom)'), (45375, 'https://ror.org/00dsdst25', 'no_lang_code', 1, 'https://ror.org/00dsdst25 John Deere (New Zealand)'), (45376, 'https://ror.org/00dsga669', 'en', 1, 'https://ror.org/00dsga669 Education Service Center Region 13'), (45377, 'https://ror.org/00dv34a34', 'en', 1, 'https://ror.org/00dv34a34 National Centre for Genetic Resources and Biotechnology'), (45378, 'https://ror.org/00dwzq257', 'en', 1, 'https://ror.org/00dwzq257 Japanese Center for International Studies in Ecology 国際生態学センター'), (45379, 'https://ror.org/00dzkv815', 'no_lang_code', 1, 'https://ror.org/00dzkv815 Ericsson LG (South Korea)'), (45380, 'https://ror.org/00e1g8a02', 'no_lang_code', 1, 'https://ror.org/00e1g8a02 Teledyne e2v (United Kingdom)'), (45381, 'https://ror.org/00e58e871', 'no_lang_code', 1, 'https://ror.org/00e58e871 Zhejiang Zanyu Technology (China) 浙江赞宇科技'), (45382, 'https://ror.org/00e6q5h84', 'en', 1, 'https://ror.org/00e6q5h84 Central Coast Orthopedic Medical Group'), (45383, 'https://ror.org/00e8fa768', 'en', 1, 'https://ror.org/00e8fa768 Montgomery County Office of the County Executive'), (45384, 'https://ror.org/00e8jms23', 'en', 1, 'https://ror.org/00e8jms23 Hubei Academy of Forestry 湖北省林业科学研究院'), (45385, 'https://ror.org/00eaebe27', 'en', 1, 'https://ror.org/00eaebe27 Islamic Azad University Medical Branch of Tehran دانشگاه آزاد اسلامی واحد پزشکی تهران'), (45386, 'https://ror.org/00edpzw35', 'fr', 1, 'https://ror.org/00edpzw35 Centre Hospitalo-Universitaire Dr Benbadis Constantine'), (45387, 'https://ror.org/00ejh1102', 'en', 1, 'https://ror.org/00ejh1102 Islamic Azad University, Boukan دانشگاه آزاد اسلامی واحد بوکان'), (45388, 'https://ror.org/00em2wb15', 'en', 1, 'https://ror.org/00em2wb15 Palm Beach County Library System'), (45389, 'https://ror.org/00enjfk59', 'en', 1, 'https://ror.org/00enjfk59 Oita Prefectural College of Arts and Culture 大分県立芸術文化短期大学'), (45390, 'https://ror.org/00ep5zh10', 'en', 1, 'https://ror.org/00ep5zh10 Edisto Island Historic Preservation Society'), (45391, 'https://ror.org/00eqgtd35', 'no_lang_code', 1, 'https://ror.org/00eqgtd35 Paion (Germany)'), (45392, 'https://ror.org/00eqr6v35', 'en', 1, 'https://ror.org/00eqr6v35 Katori City Higashiodo Elementary School 香取市立東大戸小学校'), (45393, 'https://ror.org/00esacy80', 'no_lang_code', 1, 'https://ror.org/00esacy80 TDK (United Kingdom)'), (45394, 'https://ror.org/00ew91p29', 'en', 1, 'https://ror.org/00ew91p29 Deutsche Gesellschaft für Chirurgie German Society of Surgery'), (45395, 'https://ror.org/00eykd632', 'en', 1, 'https://ror.org/00eykd632 International University of Fundamental Studies Международный Университет Фундаментального Обучения'), (45396, 'https://ror.org/00eykv937', 'no_lang_code', 1, 'https://ror.org/00eykv937 CertiRx (United States)'), (45397, 'https://ror.org/00eys7z46', 'no_lang_code', 1, 'https://ror.org/00eys7z46 Renesas Electronics (United Kingdom) ルネサス エレクトロニクス株式会社'), (45398, 'https://ror.org/00f31yh98', 'en', 1, 'https://ror.org/00f31yh98 Gifu Prefectural Research Institute for Fisheries and Aquatic Environments 岐阜県水産研究所'), (45399, 'https://ror.org/00f3a6g74', 'en', 1, 'https://ror.org/00f3a6g74 Vocational School YIC Rehabilitation College'), (45400, 'https://ror.org/00f4t6397', 'en', 1, 'https://ror.org/00f4t6397 Pain and Headache Center'), (45401, 'https://ror.org/00f6d9d53', 'en', 1, 'https://ror.org/00f6d9d53 House of Representatives Tweede Kamer der Staten-Generaal'), (45402, 'https://ror.org/00f6qhc93', 'en', 1, 'https://ror.org/00f6qhc93 Universal Technical Institute Dallas-Fort Worth'), (45403, 'https://ror.org/00f7vya03', 'no_lang_code', 1, 'https://ror.org/00f7vya03 Thales (Australia)'), (45404, 'https://ror.org/00f96dc95', 'en', 1, 'https://ror.org/00f96dc95 Kamehameha Schools'), (45405, 'https://ror.org/00fbm6g50', 'en', 1, 'https://ror.org/00fbm6g50 Central America Health Sciences University'), (45406, 'https://ror.org/00ff97g12', 'no_lang_code', 1, 'https://ror.org/00ff97g12 Guangxi Institute of Botany 中科院广西植物研究所'), (45407, 'https://ror.org/00ffmas49', 'no_lang_code', 1, 'https://ror.org/00ffmas49 CorPower Ocean (Sweden)'), (45408, 'https://ror.org/00fgym023', 'en', 1, 'https://ror.org/00fgym023 Hamamatsu City High School 浜松市高等学校'), (45409, 'https://ror.org/00fjn4j64', 'no_lang_code', 1, 'https://ror.org/00fjn4j64 LightComp (Czechia)'), (45410, 'https://ror.org/00fmck729', 'no_lang_code', 1, 'https://ror.org/00fmck729 Bharat Forge (Germany)'), (45411, 'https://ror.org/00fp8n517', 'en', 1, 'https://ror.org/00fp8n517 Nepal Development Research Institute नेपाल विकास अनुसन्धान संस्थान'), (45412, 'https://ror.org/00fp9k450', 'en', 1, 'https://ror.org/00fp9k450 Arab Open University الجامعة العربية المفتوحة'), (45413, 'https://ror.org/00fqwsq79', 'no_lang_code', 1, 'https://ror.org/00fqwsq79 Spectra Science (United States)'), (45414, 'https://ror.org/00fss9n81', 'en', 1, 'https://ror.org/00fss9n81 Niigata Prefectural Education Center 新潟県立教育センター'), (45415, 'https://ror.org/00ft7bw25', 'no_lang_code', 1, 'https://ror.org/00ft7bw25 STMicroelectronics (India)'), (45416, 'https://ror.org/00ftn9c34', 'en', 1, 'https://ror.org/00ftn9c34 Toyama Prefectural Toyama Minami High School 富山県立富山南高等学校'), (45417, 'https://ror.org/00fwkdt40', 'no_lang_code', 1, 'https://ror.org/00fwkdt40 Specific Technologies (United States)'), (45418, 'https://ror.org/00fymn751', 'no_lang_code', 1, 'https://ror.org/00fymn751 General Electric (Israel)'), (45419, 'https://ror.org/00g4f6p58', 'en', 1, 'https://ror.org/00g4f6p58 Artemis One Health Research Foundation'), (45420, 'https://ror.org/00g6dr962', 'lt', 1, 'https://ror.org/00g6dr962 Klaipėdos Verslo Aukštoji Mokykla'), (45421, 'https://ror.org/00g702m33', 'no_lang_code', 1, 'https://ror.org/00g702m33 Stihl (Germany)'), (45422, 'https://ror.org/00g8rjs80', 'no_lang_code', 1, 'https://ror.org/00g8rjs80 Immune Biosolutions (Canada)'), (45423, 'https://ror.org/00g9ma558', 'no_lang_code', 1, 'https://ror.org/00g9ma558 Microsemi (Israel)'), (45424, 'https://ror.org/00gcbxk06', 'en', 1, 'https://ror.org/00gcbxk06 All-Russian Electrotechnical Institute named after V.I.Lenin Всероссийский электротехнический институт им. В.И. Ленина'), (45425, 'https://ror.org/00ge9bp23', 'en', 1, 'https://ror.org/00ge9bp23 Tokyo Metropolitan Agriculture and Forestry Research Center 東京都農林総合研究センター'), (45426, 'https://ror.org/00geks132', 'no_lang_code', 1, 'https://ror.org/00geks132 Motosu Shoyo High School 岐阜県立本巣松陽高等学校'), (45427, 'https://ror.org/00ges3302', 'en', 1, 'https://ror.org/00ges3302 Western Reserve Hospital'), (45428, 'https://ror.org/00gf6rd21', 'no_lang_code', 1, 'https://ror.org/00gf6rd21 Ormazabal (Germany)'), (45429, 'https://ror.org/00ggr8w08', 'fr', 1, 'https://ror.org/00ggr8w08 Institut de Technologie Alimentaire'), (45430, 'https://ror.org/00gh9ef15', 'en', 1, 'https://ror.org/00gh9ef15 Japan Association for International Chemical Information 化学情報協会'), (45431, 'https://ror.org/00ghqbv36', 'no_lang_code', 1, 'https://ror.org/00ghqbv36 Vivreon Biosciences (United States)'), (45432, 'https://ror.org/00gj51q98', 'de', 1, 'https://ror.org/00gj51q98 Frankfurter Institut für Nachhaltige Entwicklung'), (45433, 'https://ror.org/00gj8pr18', 'de', 1, 'https://ror.org/00gj8pr18 Städtisches Klinikum Dessau'), (45434, 'https://ror.org/00gk1rp50', 'en', 1, 'https://ror.org/00gk1rp50 Aoyama Gakuin Senior High School 青山学院中等部・高等部'), (45435, 'https://ror.org/00gk9by75', 'no_lang_code', 1, 'https://ror.org/00gk9by75 Ishikawa Prefectural Takamatsu Hospital 石川県立高松病院'), (45436, 'https://ror.org/00gkmm041', 'pt', 1, 'https://ror.org/00gkmm041 Instituto de Biologia Molecular do Paraná'), (45437, 'https://ror.org/00gm0dm67', 'en', 1, 'https://ror.org/00gm0dm67 Matsura Historical Museum 松浦史料博物館'), (45438, 'https://ror.org/00gm6mv51', 'en', 1, 'https://ror.org/00gm6mv51 Sleep Research Society'), (45439, 'https://ror.org/00gmn3n47', 'pt', 1, 'https://ror.org/00gmn3n47 Prefeitura Municipal de Igarapé'), (45440, 'https://ror.org/00gnxy932', 'en', 1, 'https://ror.org/00gnxy932 Tohoku Bunkyo University 東北文教大学'), (45441, 'https://ror.org/00gnyh466', 'en', 1, 'https://ror.org/00gnyh466 Medical Library Association'), (45442, 'https://ror.org/00gp9bw49', 'fr', 1, 'https://ror.org/00gp9bw49 Vaincre la Mucoviscidose'), (45443, 'https://ror.org/00gr1ep19', 'no_lang_code', 1, 'https://ror.org/00gr1ep19 Gnosys Systems (United States)'), (45444, 'https://ror.org/00gttkw41', 'no_lang_code', 1, 'https://ror.org/00gttkw41 Thermo Fisher Scientific (Canada)'), (45445, 'https://ror.org/00gve2f24', 'no_lang_code', 1, 'https://ror.org/00gve2f24 Great Lakes Sound and Vibration (United States)'), (45446, 'https://ror.org/00gw6fh23', 'de', 1, 'https://ror.org/00gw6fh23 Klinikum Hanau'), (45447, 'https://ror.org/00gym2132', 'no_lang_code', 1, 'https://ror.org/00gym2132 Mellanox Technologies (Israel) מלאנוקס טכנולוגיות בע"מ'), (45448, 'https://ror.org/00gyqd239', 'en', 1, 'https://ror.org/00gyqd239 Copperas Cove Independent School District'), (45449, 'https://ror.org/00h0my365', 'en', 1, 'https://ror.org/00h0my365 Fraunhofer Chile Research Foundation'), (45450, 'https://ror.org/00h0qgf14', 'en', 1, 'https://ror.org/00h0qgf14 Yamamoto Hospital 山本病院'), (45451, 'https://ror.org/00h32kx47', 'en', 1, 'https://ror.org/00h32kx47 Institute of Town Planners India'), (45452, 'https://ror.org/00h3t4h60', 'en', 1, 'https://ror.org/00h3t4h60 Ministerstvo zahraničních věcí České republiky Ministry of Foreign Affairs'), (45453, 'https://ror.org/00h446q73', 'no_lang_code', 1, 'https://ror.org/00h446q73 Hewlett-Packard (Australia)'), (45454, 'https://ror.org/00h4cmb88', 'en', 1, 'https://ror.org/00h4cmb88 New Covenant International'), (45455, 'https://ror.org/00h590f14', 'no_lang_code', 1, 'https://ror.org/00h590f14 NutriAg (Canada)'), (45456, 'https://ror.org/00h69cf80', 'en', 1, 'https://ror.org/00h69cf80 Hyogo Institute for Traumatic Stress'), (45457, 'https://ror.org/00h6s5242', 'no_lang_code', 1, 'https://ror.org/00h6s5242 Ineos (Switzerland)'), (45458, 'https://ror.org/00h7ny872', 'en', 1, 'https://ror.org/00h7ny872 Rushford Public Library'), (45459, 'https://ror.org/00h8b7583', 'en', 1, 'https://ror.org/00h8b7583 National Tsunami Warning Center'), (45460, 'https://ror.org/00h90tt32', 'en', 1, 'https://ror.org/00h90tt32 Institut za mjeriteljstvo Bosne i Hercegovine Institute of Metrology of Bosnia and Herzegovina Институт за метрологију Босне и Херцеговине'), (45461, 'https://ror.org/00hcj0e04', 'no_lang_code', 1, 'https://ror.org/00hcj0e04 Johnson Controls (Switzerland)'), (45462, 'https://ror.org/00hd52462', 'no_lang_code', 1, 'https://ror.org/00hd52462 Toshiba (Austria)'), (45463, 'https://ror.org/00hezhh51', 'pt', 1, 'https://ror.org/00hezhh51 Fundacao Padre Leonel Franca'), (45464, 'https://ror.org/00hf3db96', 'no_lang_code', 1, 'https://ror.org/00hf3db96 Aerospace Testing Alliance (United States)'), (45465, 'https://ror.org/00hfbr881', 'no_lang_code', 1, 'https://ror.org/00hfbr881 Wildlife Computers (United States)'), (45466, 'https://ror.org/00hfr5j60', 'en', 1, 'https://ror.org/00hfr5j60 Homarus'), (45467, 'https://ror.org/00hg48986', 'en', 1, 'https://ror.org/00hg48986 Ibaraki Prefectural Mitsukaido First High School 茨城県立太田第二高等学校'), (45468, 'https://ror.org/00hg4dc82', 'no_lang_code', 1, 'https://ror.org/00hg4dc82 Emissol (United States)'), (45469, 'https://ror.org/00hgd2m44', 'en', 1, 'https://ror.org/00hgd2m44 Chiba Prefectural Police 千葉県警察'), (45470, 'https://ror.org/00hh8pd76', 'no_lang_code', 1, 'https://ror.org/00hh8pd76 Avaya (United Kingdom)'), (45471, 'https://ror.org/00hht4y98', 'en', 1, 'https://ror.org/00hht4y98 Koyo Schools 向陽学園'), (45472, 'https://ror.org/00hjm9t74', 'no_lang_code', 1, 'https://ror.org/00hjm9t74 Marvell (Bermuda)'), (45473, 'https://ror.org/00hmj8r26', 'no_lang_code', 1, 'https://ror.org/00hmj8r26 Hamilton Utilities Corporation'), (45474, 'https://ror.org/00hmyb194', 'no_lang_code', 1, 'https://ror.org/00hmyb194 Accenture (Ireland)'), (45475, 'https://ror.org/00hn0nx84', 'en', 1, 'https://ror.org/00hn0nx84 Mie Prefectural Kobe High School 三重県立神戸高校'), (45476, 'https://ror.org/00hpp0v51', 'no_lang_code', 1, 'https://ror.org/00hpp0v51 Vibra Finish (Canada)'), (45477, 'https://ror.org/00hrhm488', 'en', 1, 'https://ror.org/00hrhm488 Practical Robotics Institute Austria'), (45478, 'https://ror.org/00hrjdb92', 'en', 1, 'https://ror.org/00hrjdb92 Farallon Institute'), (45479, 'https://ror.org/00hw70n10', 'en', 1, 'https://ror.org/00hw70n10 Korea International Trade Association 한국무역협회'), (45480, 'https://ror.org/00hxspe04', 'ca', 1, 'https://ror.org/00hxspe04 Clínica Girona'), (45481, 'https://ror.org/00hz0qn68', 'no_lang_code', 1, 'https://ror.org/00hz0qn68 IsoTherapeutics Group (United States)'), (45482, 'https://ror.org/00j04c011', 'nl', 1, 'https://ror.org/00j04c011 Aidsfonds'), (45483, 'https://ror.org/00j09dc39', 'en', 1, 'https://ror.org/00j09dc39 Okinawa Prefectural Koroku High School 沖縄県立小禄高等学校'), (45484, 'https://ror.org/00j1faf79', 'es', 1, 'https://ror.org/00j1faf79 Universidad Cristiana de las Asambleas de Dios'), (45485, 'https://ror.org/00j460570', 'no_lang_code', 1, 'https://ror.org/00j460570 Digimarc (United States)'), (45486, 'https://ror.org/00j4x4e07', 'no_lang_code', 1, 'https://ror.org/00j4x4e07 Niigata Chuoh Junior College 新潟中央短期大学'), (45487, 'https://ror.org/00j5mnh72', 'en', 1, 'https://ror.org/00j5mnh72 Aichi Prefectural Toyohashi School for the Deaf 愛知県立豊橋聾学校'), (45488, 'https://ror.org/00j8b8469', 'no_lang_code', 1, 'https://ror.org/00j8b8469 Spectrum Brands (United Kingdom)'), (45489, 'https://ror.org/00j8cdz25', 'no_lang_code', 1, 'https://ror.org/00j8cdz25 Illinois Tool Works (Germany)'), (45490, 'https://ror.org/00j9tzw69', 'cy', 1, 'https://ror.org/00j9tzw69 Large Vale Hospital Ysbyty Ystrad Fawr'), (45491, 'https://ror.org/00j9w3k35', 'en', 1, 'https://ror.org/00j9w3k35 Cultural Relics Institute Hebei Province 河北省文物研究所'), (45492, 'https://ror.org/00jb92367', 'no_lang_code', 1, 'https://ror.org/00jb92367 Foxconn (China) 鴻海科技集團'), (45493, 'https://ror.org/00jcwff27', 'en', 1, 'https://ror.org/00jcwff27 Society for Experimental Biology'), (45494, 'https://ror.org/00jd8yr11', 'no_lang_code', 1, 'https://ror.org/00jd8yr11 Pitney Bowes (United Kingdom)'), (45495, 'https://ror.org/00je63m83', 'en', 1, 'https://ror.org/00je63m83 Regional Hospital of Scranton'), (45496, 'https://ror.org/00jfs8131', 'no_lang_code', 1, 'https://ror.org/00jfs8131 Reliance Industries (United States)'), (45497, 'https://ror.org/00jh11v62', 'en', 1, 'https://ror.org/00jh11v62 Okazaki Higashi High School 愛知県立岡崎東高等学校'), (45498, 'https://ror.org/00jjgc591', 'no_lang_code', 1, 'https://ror.org/00jjgc591 Fujitsu Ten (Japan) 富士通テン株式会社'), (45499, 'https://ror.org/00jjq6q61', 'en', 1, 'https://ror.org/00jjq6q61 Rockefeller University Hospital'), (45500, 'https://ror.org/00jkg1x62', 'en', 1, 'https://ror.org/00jkg1x62 Wakayama Prefecture Wakayama School for the Blind 和歌山県立和歌山盲学校'), (45501, 'https://ror.org/00jkmqv24', 'en', 1, 'https://ror.org/00jkmqv24 Nagano Prefectural Board of Education 長野県教育委員会'), (45502, 'https://ror.org/00jmjse55', 'en', 1, 'https://ror.org/00jmjse55 Black Alliance for Educational Options'), (45503, 'https://ror.org/00jqtf796', 'en', 1, 'https://ror.org/00jqtf796 IEEE France section'), (45504, 'https://ror.org/00jr1sd21', 'en', 1, 'https://ror.org/00jr1sd21 African Field Epidemiology Network'), (45505, 'https://ror.org/00jrevc54', 'no_lang_code', 1, 'https://ror.org/00jrevc54 Dover (United Kingdom)'), (45506, 'https://ror.org/00jtd6242', 'pt', 1, 'https://ror.org/00jtd6242 Empresa Mato-grossense de Pesquisa, Assistência e Extensão Rural'), (45507, 'https://ror.org/00jvf9d33', 'en', 1, 'https://ror.org/00jvf9d33 Okinawa Red Cross Hospital 沖縄赤十字病院'), (45508, 'https://ror.org/00jvm9038', 'en', 1, 'https://ror.org/00jvm9038 Tricoci University of Beauty Culture'), (45509, 'https://ror.org/00jws7929', 'en', 1, 'https://ror.org/00jws7929 Department for Exiting the European Union'), (45510, 'https://ror.org/00jyykt64', 'en', 1, 'https://ror.org/00jyykt64 Water Supply and Sanitation Technology Platform'), (45511, 'https://ror.org/00jz33f47', 'no_lang_code', 1, 'https://ror.org/00jz33f47 Mimetas (Netherlands)'), (45512, 'https://ror.org/00k01hv15', 'de', 1, 'https://ror.org/00k01hv15 Regionalverbund kirchlicher Krankenhäuser'), (45513, 'https://ror.org/00k02x334', 'en', 1, 'https://ror.org/00k02x334 Osaka Prefectural Agricultural High School 大阪府立農芸高等学校'), (45514, 'https://ror.org/00k427y50', 'en', 1, 'https://ror.org/00k427y50 Osaka Municipal College of Design 大阪市立デザイン教育研究所'), (45515, 'https://ror.org/00k4nrj32', 'en', 1, 'https://ror.org/00k4nrj32 Essex County Hospital'), (45516, 'https://ror.org/00k6bry75', 'es', 1, 'https://ror.org/00k6bry75 Instituto Tecnológico de Hermosillo'), (45517, 'https://ror.org/00k6jf574', 'en', 1, 'https://ror.org/00k6jf574 Johar Health Maintenance Organization'), (45518, 'https://ror.org/00k6n7177', 'en', 1, 'https://ror.org/00k6n7177 National Archives of Japan 独立行政法人国立公文書館'), (45519, 'https://ror.org/00k900h94', 'en', 1, 'https://ror.org/00k900h94 Queen Jadwiga Foundation'), (45520, 'https://ror.org/00k9rsb32', 'en', 1, 'https://ror.org/00k9rsb32 Imakane Board of Education 今金町教育委員会'), (45521, 'https://ror.org/00kakgh93', 'en', 1, 'https://ror.org/00kakgh93 Institute of Microbiology and Biotechnology Institutul de Microbiologie si Biotehnologie'), (45522, 'https://ror.org/00kbped59', 'es', 1, 'https://ror.org/00kbped59 Asociación Española para el Estudio del Hígado'), (45523, 'https://ror.org/00kbwx014', 'en', 1, 'https://ror.org/00kbwx014 Blended Solutions'), (45524, 'https://ror.org/00kddkz24', 'en', 1, 'https://ror.org/00kddkz24 Japan Place Name Research Center 日本地名研究所'), (45525, 'https://ror.org/00kdez258', 'no_lang_code', 1, 'https://ror.org/00kdez258 Maxwell Technologies (United States)'), (45526, 'https://ror.org/00ke0d331', 'en', 1, 'https://ror.org/00ke0d331 Marie Curie Palliative Care Institute Liverpool'), (45527, 'https://ror.org/00ker7c87', 'no_lang_code', 1, 'https://ror.org/00ker7c87 TDK (Japan) TDK株式会社'), (45528, 'https://ror.org/00kf09769', 'en', 1, 'https://ror.org/00kf09769 African Ministers'' Council on Water'), (45529, 'https://ror.org/00kgqwj69', 'en', 1, 'https://ror.org/00kgqwj69 American University of Integrative Sciences'), (45530, 'https://ror.org/00kh5vs10', 'en', 1, 'https://ror.org/00kh5vs10 Mie Prefectural School for the Blind 三重県立盲学校'), (45531, 'https://ror.org/00kheej15', 'no_lang_code', 1, 'https://ror.org/00kheej15 Tektronix (Switzerland)'), (45532, 'https://ror.org/00kp77011', 'en', 1, 'https://ror.org/00kp77011 Desmond Tutu Peace Foundation'), (45533, 'https://ror.org/00kqvg908', 'en', 1, 'https://ror.org/00kqvg908 Rowan Works Economic Development'), (45534, 'https://ror.org/00ktxha38', 'en', 1, 'https://ror.org/00ktxha38 Anjo Chubu Elementary School 安城市立安城中部小学校'), (45535, 'https://ror.org/00kv7my10', 'no_lang_code', 1, 'https://ror.org/00kv7my10 Smallmatek (Portugal)'), (45536, 'https://ror.org/00kvz1558', 'no_lang_code', 1, 'https://ror.org/00kvz1558 Microchip Technology (United States)'), (45537, 'https://ror.org/00m0wef21', 'en', 1, 'https://ror.org/00m0wef21 Woodlawn School'), (45538, 'https://ror.org/00m1bnc32', 'en', 1, 'https://ror.org/00m1bnc32 Council for Christian Colleges and Universities'), (45539, 'https://ror.org/00m5fcs37', 'en', 1, 'https://ror.org/00m5fcs37 Humane Slaughter Association'), (45540, 'https://ror.org/00ma0s885', 'no_lang_code', 1, 'https://ror.org/00ma0s885 Teledyne Technologies (Australia)'), (45541, 'https://ror.org/00mbfhq81', 'en', 1, 'https://ror.org/00mbfhq81 Newcastle University Singapore'), (45542, 'https://ror.org/00mc41d88', 'en', 1, 'https://ror.org/00mc41d88 Shoreline Public Schools'), (45543, 'https://ror.org/00mce9b34', 'en', 1, 'https://ror.org/00mce9b34 National Hospital Organization Kyushu Cancer Center 国立病院機構九州がんセンター'), (45544, 'https://ror.org/00mcmme34', 'de', 1, 'https://ror.org/00mcmme34 Wirtschaftspsychologische Gesellschaft'), (45545, 'https://ror.org/00medbt67', 'no_lang_code', 1, 'https://ror.org/00medbt67 Cloud Pharmaceuticals (United States)'), (45546, 'https://ror.org/00mhg9s35', 'no_lang_code', 1, 'https://ror.org/00mhg9s35 Mitsubishi Gas Chemical (Japan) 三菱ガス化学'), (45547, 'https://ror.org/00mhktq57', 'no_lang_code', 1, 'https://ror.org/00mhktq57 Lenovo (Singapore)'), (45548, 'https://ror.org/00mj88198', 'en', 1, 'https://ror.org/00mj88198 Institute of Natural Resources, Ecology and Cryology Федеральное государственное бюджетное учреждение науки Институт природных ресурсов, экологии и криологии Сибирского отделения Российской академии наук'), (45549, 'https://ror.org/00mke2t69', 'no_lang_code', 1, 'https://ror.org/00mke2t69 Zimmer Biomet (United Kingdom)'), (45550, 'https://ror.org/00mmzyj40', 'en', 1, 'https://ror.org/00mmzyj40 National Institution For Youth Education 国立青少年教育振興機構'), (45551, 'https://ror.org/00mre2126', 'en', 1, 'https://ror.org/00mre2126 Toho University Ohashi Medical Center 東邦大学医療センター大橋病院'), (45552, 'https://ror.org/00ms9d710', 'no_lang_code', 1, 'https://ror.org/00ms9d710 Soliton Ocean Services (United States)'), (45553, 'https://ror.org/00msak069', 'en', 1, 'https://ror.org/00msak069 Access to Medicine Index'), (45554, 'https://ror.org/00mv8h305', 'en', 1, 'https://ror.org/00mv8h305 Christian Doppler Forschungsgesellschaft Christian Doppler Research Association'), (45555, 'https://ror.org/00mvbdj52', 'no_lang_code', 1, 'https://ror.org/00mvbdj52 Universal Entertainment (Japan) ユニバーサルエンターテインメント'), (45556, 'https://ror.org/00mvrwh98', 'no_lang_code', 1, 'https://ror.org/00mvrwh98 Universal Engraving (United States)'), (45557, 'https://ror.org/00mwp7g70', 'no_lang_code', 1, 'https://ror.org/00mwp7g70 Soft99 (Japan) ソフト99コーポレーション'), (45558, 'https://ror.org/00n0yrk65', 'no_lang_code', 1, 'https://ror.org/00n0yrk65 WHYY (United States)'), (45559, 'https://ror.org/00n1w2a60', 'no_lang_code', 1, 'https://ror.org/00n1w2a60 Novocor Medical Systems (United States)'), (45560, 'https://ror.org/00n3fv874', 'no_lang_code', 1, 'https://ror.org/00n3fv874 Unilever (United States)'), (45561, 'https://ror.org/00n55wf36', 'en', 1, 'https://ror.org/00n55wf36 University of Iranians دانشگاه جامع بینالمللی ایرانیان'), (45562, 'https://ror.org/00n7t8t84', 'en', 1, 'https://ror.org/00n7t8t84 Orio Aishin Junior College 折尾愛真短期大学'), (45563, 'https://ror.org/00n80r273', 'en', 1, 'https://ror.org/00n80r273 Congressional Black Caucus Foundation'), (45564, 'https://ror.org/00nafdb41', 'no_lang_code', 1, 'https://ror.org/00nafdb41 Callaway Golf (United States)'), (45565, 'https://ror.org/00nc8dt74', 'no_lang_code', 1, 'https://ror.org/00nc8dt74 ElringKlinger (Germany)'), (45566, 'https://ror.org/00nekn329', 'en', 1, 'https://ror.org/00nekn329 Higher Institute of Advanced Studies'), (45567, 'https://ror.org/00nfn7821', 'en', 1, 'https://ror.org/00nfn7821 Botho University'), (45568, 'https://ror.org/00nfw5c37', 'it', 1, 'https://ror.org/00nfw5c37 Istituto Ramazzini'), (45569, 'https://ror.org/00nj92d70', 'en', 1, 'https://ror.org/00nj92d70 Aaron Marcus and Associates'), (45570, 'https://ror.org/00nk4ab75', 'no_lang_code', 1, 'https://ror.org/00nk4ab75 Mfantsiman Girls Secondary School'), (45571, 'https://ror.org/00nm1ws09', 'de', 1, 'https://ror.org/00nm1ws09 Institut für Nachhaltiges Management'), (45572, 'https://ror.org/00nnq2331', 'en', 1, 'https://ror.org/00nnq2331 Ministry of Agriculture and Natural Resource'), (45573, 'https://ror.org/00nxtmb68', 'de', 1, 'https://ror.org/00nxtmb68 Universalmuseum Joanneum'), (45574, 'https://ror.org/00nyy7p10', 'en', 1, 'https://ror.org/00nyy7p10 Deepam Educational Society for Health'), (45575, 'https://ror.org/00nz8kv36', 'en', 1, 'https://ror.org/00nz8kv36 Black Archives of Mid-America'), (45576, 'https://ror.org/00p1mfz27', 'no_lang_code', 1, 'https://ror.org/00p1mfz27 AV&R (Canada)'), (45577, 'https://ror.org/00p3e1n56', 'no_lang_code', 1, 'https://ror.org/00p3e1n56 Tenneco (Belgium)'), (45578, 'https://ror.org/00p3nks92', 'en', 1, 'https://ror.org/00p3nks92 American Indian Institute'), (45579, 'https://ror.org/00p8r6x45', 'en', 1, 'https://ror.org/00p8r6x45 Centre for Arctic Gas Hydrate, Environment and Climate Senter for arktisk gasshydrat, miljø og klima'), (45580, 'https://ror.org/00p8ta394', 'en', 1, 'https://ror.org/00p8ta394 International AIDS Society'), (45581, 'https://ror.org/00p954r86', 'en', 1, 'https://ror.org/00p954r86 Universite Laique Adventiste de Kigali University of Lay Adventists of Kigali'), (45582, 'https://ror.org/00p9kb710', 'no_lang_code', 1, 'https://ror.org/00p9kb710 Thorlabs (Germany)'), (45583, 'https://ror.org/00pbd7j83', 'en', 1, 'https://ror.org/00pbd7j83 Osaka Museum of Natural History 大阪市立自然史博物館'), (45584, 'https://ror.org/00pccrq10', 'no_lang_code', 1, 'https://ror.org/00pccrq10 Marbes Consulting'), (45585, 'https://ror.org/00pgdk225', 'de', 1, 'https://ror.org/00pgdk225 Deutsche PalliativStiftung'), (45586, 'https://ror.org/00phmvd84', 'en', 1, 'https://ror.org/00phmvd84 Matsuyama Gakuen Matsuyama welfare College 松山学園松山福祉専門学校'), (45587, 'https://ror.org/00pj60478', 'en', 1, 'https://ror.org/00pj60478 Duraspace'), (45588, 'https://ror.org/00pj6vp51', 'en', 1, 'https://ror.org/00pj6vp51 Australian Society for Biochemistry and Molecular Biology'), (45589, 'https://ror.org/00pjmpv91', 'es', 1, 'https://ror.org/00pjmpv91 Pro Cosara'), (45590, 'https://ror.org/00pjwdc92', 'en', 1, 'https://ror.org/00pjwdc92 National Institute of Technology, Ube College 宇部工業高等専門学校'), (45591, 'https://ror.org/00pn5a327', 'no_lang_code', 1, 'https://ror.org/00pn5a327 Rambus (United States)'), (45592, 'https://ror.org/00pn5nj90', 'en', 1, 'https://ror.org/00pn5nj90 Ventura College'), (45593, 'https://ror.org/00pnxra12', 'en', 1, 'https://ror.org/00pnxra12 Parents’ Action for Children'), (45594, 'https://ror.org/00prymb05', 'pt', 1, 'https://ror.org/00prymb05 Centrus Diagnósticos por Imagem'), (45595, 'https://ror.org/00pscny09', 'no_lang_code', 1, 'https://ror.org/00pscny09 Nintendo (Japan) 任天堂株式会社'), (45596, 'https://ror.org/00pvmsx89', 'no_lang_code', 1, 'https://ror.org/00pvmsx89 Intrinsik (Canada)'), (45597, 'https://ror.org/00pvn1h36', 'no_lang_code', 1, 'https://ror.org/00pvn1h36 Eli Lilly (Ireland)'), (45598, 'https://ror.org/00pyv1r78', 'en', 1, 'https://ror.org/00pyv1r78 Institute of Disaster Prevention 防灾科技学院'), (45599, 'https://ror.org/00pzmcd49', 'en', 1, 'https://ror.org/00pzmcd49 Missouri Assistive Technology'), (45600, 'https://ror.org/00q06r288', 'no_lang_code', 1, 'https://ror.org/00q06r288 Privacy Analytics (Canada)'), (45601, 'https://ror.org/00q0v3357', 'en', 1, 'https://ror.org/00q0v3357 Quzhou College of Technology'), (45602, 'https://ror.org/00q15w993', 'en', 1, 'https://ror.org/00q15w993 Bircham International University'), (45603, 'https://ror.org/00q6pdr71', 'no_lang_code', 1, 'https://ror.org/00q6pdr71 Fukuoka Art Museum 福岡市美術館'), (45604, 'https://ror.org/00qa0qd14', 'no_lang_code', 1, 'https://ror.org/00qa0qd14 Advanced Radiation Therapy (United States)'), (45605, 'https://ror.org/00qabvy28', 'no_lang_code', 1, 'https://ror.org/00qabvy28 Visteon (United States)'), (45606, 'https://ror.org/00qehty47', 'no_lang_code', 1, 'https://ror.org/00qehty47 Prime Solutions Group (United States)'), (45607, 'https://ror.org/00qfejz91', 'no_lang_code', 1, 'https://ror.org/00qfejz91 3D Biomatrix (United States)'), (45608, 'https://ror.org/00qm7ky44', 'no_lang_code', 1, 'https://ror.org/00qm7ky44 Global Power Technologies Group (United States)'), (45609, 'https://ror.org/00qnxgg65', 'no_lang_code', 1, 'https://ror.org/00qnxgg65 Fukuyama City Zoo 福山市立動物園'), (45610, 'https://ror.org/00qpbjw91', 'no_lang_code', 1, 'https://ror.org/00qpbjw91 Fujikura (United States)'), (45611, 'https://ror.org/00qpgkq73', 'no_lang_code', 1, 'https://ror.org/00qpgkq73 Everist Health (United States)'), (45612, 'https://ror.org/00qrfm413', 'en', 1, 'https://ror.org/00qrfm413 Institute for Expressive Analysis'), (45613, 'https://ror.org/00qtbt108', 'no_lang_code', 1, 'https://ror.org/00qtbt108 Stanley Black & Decker (Switzerland)'), (45614, 'https://ror.org/00qtt4469', 'en', 1, 'https://ror.org/00qtt4469 Fukushima Prefectural Board of Education 福島県教育委員会のホー'), (45615, 'https://ror.org/00qtxwz11', 'en', 1, 'https://ror.org/00qtxwz11 Aichi Prefectural Police 愛知県警察'), (45616, 'https://ror.org/00qvkvn65', 'en', 1, 'https://ror.org/00qvkvn65 Wikimedia Philippines'), (45617, 'https://ror.org/00qwbag55', 'en', 1, 'https://ror.org/00qwbag55 Gwinnett County Public Library'), (45618, 'https://ror.org/00qxrgg46', 'no_lang_code', 1, 'https://ror.org/00qxrgg46 Deutsche Telekom (United Kingdom)'), (45619, 'https://ror.org/00qyaft09', 'en', 1, 'https://ror.org/00qyaft09 Healthcare Infection Society'), (45620, 'https://ror.org/00r17pp94', 'en', 1, 'https://ror.org/00r17pp94 Physiology Educational Research Consortium'), (45621, 'https://ror.org/00r1d6p76', 'no_lang_code', 1, 'https://ror.org/00r1d6p76 Physcient (United States)'), (45622, 'https://ror.org/00r1wdc11', 'en', 1, 'https://ror.org/00r1wdc11 Fraunhofer Institute for Experimental Software Engineering Fraunhofer-Institut für Experimentelles Software Engineering'), (45623, 'https://ror.org/00r4cx198', 'en', 1, 'https://ror.org/00r4cx198 National Center for Public Policy and Higher Education'), (45624, 'https://ror.org/00r4ss513', 'en', 1, 'https://ror.org/00r4ss513 NCEast Alliance'), (45625, 'https://ror.org/00r6j0178', 'no_lang_code', 1, 'https://ror.org/00r6j0178 SilaGene (United States)'), (45626, 'https://ror.org/00r6wds48', 'en', 1, 'https://ror.org/00r6wds48 Nagasaki Museum of History and Culture 長崎歴史文化博物館'), (45627, 'https://ror.org/00r76tg20', 'no_lang_code', 1, 'https://ror.org/00r76tg20 Osaka Christian College 大阪キリスト教短期大学'), (45628, 'https://ror.org/00r8m9k11', 'no_lang_code', 1, 'https://ror.org/00r8m9k11 Avnet (United States)'), (45629, 'https://ror.org/00r97xx27', 'en', 1, 'https://ror.org/00r97xx27 Seattle Colleges'), (45630, 'https://ror.org/00rar1v21', 'en', 1, 'https://ror.org/00rar1v21 Midcoast Regional Redevelopment Authority'), (45631, 'https://ror.org/00reyx053', 'no_lang_code', 1, 'https://ror.org/00reyx053 Smith & Nephew (United States)'), (45632, 'https://ror.org/00rjqd126', 'en', 1, 'https://ror.org/00rjqd126 Mie Prefectural Education Center 三重県総合教育センター'), (45633, 'https://ror.org/00rkxnb56', 'en', 1, 'https://ror.org/00rkxnb56 Building Engineering and Science Talent'), (45634, 'https://ror.org/00rm4jt38', 'no_lang_code', 1, 'https://ror.org/00rm4jt38 Clinacuity (United States)'), (45635, 'https://ror.org/00rm8v059', 'en', 1, 'https://ror.org/00rm8v059 Society for Technical Communication'), (45636, 'https://ror.org/00rmkq989', 'en', 1, 'https://ror.org/00rmkq989 American School for the Deaf'), (45637, 'https://ror.org/00rnnfh78', 'en', 1, 'https://ror.org/00rnnfh78 Ocean Exploration Trust'), (45638, 'https://ror.org/00rracm70', 'no_lang_code', 1, 'https://ror.org/00rracm70 BioKier (United States)'), (45639, 'https://ror.org/00rs5qv51', 'en', 1, 'https://ror.org/00rs5qv51 Institut de Recherche des Nations Unies pour le Développement Social United Nations Research Institute for Social Development'), (45640, 'https://ror.org/00rvgp591', 'no_lang_code', 1, 'https://ror.org/00rvgp591 Open Text (United Kingdom)'), (45641, 'https://ror.org/00rvyvv90', 'en', 1, 'https://ror.org/00rvyvv90 Zhejiang Party School 浙江省委党校'), (45642, 'https://ror.org/00rwqqw10', 'en', 1, 'https://ror.org/00rwqqw10 Leping Social Entrepreneur Foundation 北京乐平公益基金会'), (45643, 'https://ror.org/00rxj0v78', 'en', 1, 'https://ror.org/00rxj0v78 Institute of Brain and Blood Vessels 公益財団法人 脳血管研究所'), (45644, 'https://ror.org/00ryrev47', 'en', 1, 'https://ror.org/00ryrev47 Advanced Science, Technology & Management Research Institute of Kyoto 京都高度技術研究所'), (45645, 'https://ror.org/00rys1n84', 'en', 1, 'https://ror.org/00rys1n84 Lemon Grove School District'), (45646, 'https://ror.org/00rz19f75', 'en', 1, 'https://ror.org/00rz19f75 Sakura no Seibo Junior College 桜の聖母短期大学'), (45647, 'https://ror.org/00rzpns50', 'no_lang_code', 1, 'https://ror.org/00rzpns50 Hyundai Steel (South Korea) 현대제철'), (45648, 'https://ror.org/00rzr9371', 'es', 1, 'https://ror.org/00rzr9371 Asociación Universitaria Iberoamericana de Postgrado'), (45649, 'https://ror.org/00s18qt97', 'en', 1, 'https://ror.org/00s18qt97 Killeen Independent School District'), (45650, 'https://ror.org/00s2n7q75', 'en', 1, 'https://ror.org/00s2n7q75 Office de l''elevage et des pâturages Office of Livestock and Pasture'), (45651, 'https://ror.org/00s301684', 'en', 1, 'https://ror.org/00s301684 Nakakyusyu Junior College 中九州短期大学'), (45652, 'https://ror.org/00s34pf12', 'en', 1, 'https://ror.org/00s34pf12 Okinawa Prefecture Ohira Special School School 沖縄県立大平特別支援学校'), (45653, 'https://ror.org/00s4ph488', 'no_lang_code', 1, 'https://ror.org/00s4ph488 Integrated Sensors (United States)'), (45654, 'https://ror.org/00s5yp124', 'en', 1, 'https://ror.org/00s5yp124 Fraunhofer Institute for Integrated Circuits IIS, Division Engineering of Adaptive Systems EAS Fraunhofer-Institut für Integrierte Schaltungen IIS, Institutsteil Entwicklung Adaptiver Systeme EAS'), (45655, 'https://ror.org/00s72ct24', 'en', 1, 'https://ror.org/00s72ct24 Ichikawa Junior and Senior High School 市川中学校・高等学校'), (45656, 'https://ror.org/00s9pac36', 'en', 1, 'https://ror.org/00s9pac36 May Institute'), (45657, 'https://ror.org/00saqbg14', 'de', 1, 'https://ror.org/00saqbg14 Kunstmuseum Basel'), (45658, 'https://ror.org/00saznr62', 'en', 1, 'https://ror.org/00saznr62 Kumamoto Prefectural Museum of Art 熊本県立美術館'), (45659, 'https://ror.org/00sb1nr29', 'en', 1, 'https://ror.org/00sb1nr29 Islamic Azad University North Tehran Branch دانشگاه آزاد اسلامی, واحد تهران شمال'), (45660, 'https://ror.org/00sbe8213', 'en', 1, 'https://ror.org/00sbe8213 National Hospital Organization Hokkaido Medical Center 独立行政法人 国立病院機構 北海道医療センター'), (45661, 'https://ror.org/00sc3fz23', 'en', 1, 'https://ror.org/00sc3fz23 Tokushima Prefectural General Education Center 徳島県立総合教育センター'), (45662, 'https://ror.org/00se3rd97', 'en', 1, 'https://ror.org/00se3rd97 Yingkou Institute of Technology 营口理工学院'), (45663, 'https://ror.org/00sja8c39', 'no_lang_code', 1, 'https://ror.org/00sja8c39 Apeak (United States)'), (45664, 'https://ror.org/00sjbw709', 'no_lang_code', 1, 'https://ror.org/00sjbw709 CNH Industrial (Germany)'), (45665, 'https://ror.org/00sqyzq66', 'no_lang_code', 1, 'https://ror.org/00sqyzq66 NĒRx BioSciences (United States)'), (45666, 'https://ror.org/00srr1743', 'sv', 1, 'https://ror.org/00srr1743 Stiftelsen Bergteknisk Forskning'), (45667, 'https://ror.org/00srtbf93', 'en', 1, 'https://ror.org/00srtbf93 Kurume University Medical Center 久留米大学医療センター'), (45668, 'https://ror.org/00srxhm83', 'no_lang_code', 1, 'https://ror.org/00srxhm83 Zodiac Aerospace (United Kingdom)'), (45669, 'https://ror.org/00ss2b006', 'no_lang_code', 1, 'https://ror.org/00ss2b006 ClariTrac (United States)'), (45670, 'https://ror.org/00ssg0g07', 'en', 1, 'https://ror.org/00ssg0g07 Kawagoe Technical High School 埼玉県立川越工業高等学校'), (45671, 'https://ror.org/00ssh1q19', 'no_lang_code', 1, 'https://ror.org/00ssh1q19 Reden (Netherlands)'), (45672, 'https://ror.org/00st9jg49', 'en', 1, 'https://ror.org/00st9jg49 Cross Plains Public Library'), (45673, 'https://ror.org/00swrq011', 'pt', 1, 'https://ror.org/00swrq011 Instituto de Pesquisas Ecológicas'), (45674, 'https://ror.org/00sywr539', 'en', 1, 'https://ror.org/00sywr539 Okinawa Prefectural Yaeyama Hospital 沖縄県立八重山病院'), (45675, 'https://ror.org/00syxh370', 'en', 1, 'https://ror.org/00syxh370 American Welding Society'), (45676, 'https://ror.org/00szjvn19', 'en', 1, 'https://ror.org/00szjvn19 Poultry Research Institute 中国农业科学院家禽研究所'), (45677, 'https://ror.org/00t01zk24', 'en', 1, 'https://ror.org/00t01zk24 Meiwa High School 愛知県立明和高等学校'), (45678, 'https://ror.org/00t04tg27', 'en', 1, 'https://ror.org/00t04tg27 Executive Development Institute'), (45679, 'https://ror.org/00t4jm248', 'hi', 1, 'https://ror.org/00t4jm248 Bharatiya Vidya Bhavan'), (45680, 'https://ror.org/00t4wwd52', 'en', 1, 'https://ror.org/00t4wwd52 NorthEast Washington Educational Service District'), (45681, 'https://ror.org/00t6rqp97', 'en', 1, 'https://ror.org/00t6rqp97 Wildlife Conservation Society Democratic Republic of the Congo'), (45682, 'https://ror.org/00t6xza10', 'en', 1, 'https://ror.org/00t6xza10 Archiv Federal Svizzer Archives Fédérales Suisses Archivio Federale Svizzero Schweizerischen Bundesarchiv Swiss Federal Archives'), (45683, 'https://ror.org/00t7s3z39', 'en', 1, 'https://ror.org/00t7s3z39 Chea Sim University of Kamchaymear'), (45684, 'https://ror.org/00ta0g865', 'en', 1, 'https://ror.org/00ta0g865 Institute for Development and Research in Banking Technology'), (45685, 'https://ror.org/00ta62x83', 'no_lang_code', 1, 'https://ror.org/00ta62x83 Japan Aviation Electronics Industry (Taiwan)'), (45686, 'https://ror.org/00tbf0607', 'en', 1, 'https://ror.org/00tbf0607 Lions Clubs International'), (45687, 'https://ror.org/00tee0349', 'no_lang_code', 1, 'https://ror.org/00tee0349 Kodak (Japan)'), (45688, 'https://ror.org/00teeat87', 'pt', 1, 'https://ror.org/00teeat87 Hospital de Magalhães Lemos'), (45689, 'https://ror.org/00tg8vj44', 'en', 1, 'https://ror.org/00tg8vj44 KnowledgeWorks'), (45690, 'https://ror.org/00th7y414', 'en', 1, 'https://ror.org/00th7y414 Tokushima Prefectural Museum 徳島県立博物館'), (45691, 'https://ror.org/00thhss72', 'en', 1, 'https://ror.org/00thhss72 Botanic Gardens and Parks Authority'), (45692, 'https://ror.org/00tmt0k30', 'en', 1, 'https://ror.org/00tmt0k30 West Virginia Northern Community College'), (45693, 'https://ror.org/00tnfjj44', 'pt', 1, 'https://ror.org/00tnfjj44 Universidade Politecnica'), (45694, 'https://ror.org/00tqkj625', 'en', 1, 'https://ror.org/00tqkj625 Miyagi Prefecture Shibata Agriculture and Forestry High School 宮城県柴田農林高等学校'), (45695, 'https://ror.org/00tqpxw66', 'en', 1, 'https://ror.org/00tqpxw66 Bon Secours DePaul Medical Center'), (45696, 'https://ror.org/00tsc8d72', 'en', 1, 'https://ror.org/00tsc8d72 Akita Nutrition Junior College 秋田栄養短期大学'), (45697, 'https://ror.org/00ttq5z33', 'en', 1, 'https://ror.org/00ttq5z33 Toyama Industrial Technology Center 富山県工業技術センター'), (45698, 'https://ror.org/00v2ys705', 'en', 1, 'https://ror.org/00v2ys705 Hyogo Prefectural Institute of Technology 兵庫県立工業技術センター'), (45699, 'https://ror.org/00v53am25', 'en', 1, 'https://ror.org/00v53am25 Tokyo Metropolitan Bunkyo High School 東京都立文京高等学校'), (45700, 'https://ror.org/00v57z525', 'en', 1, 'https://ror.org/00v57z525 Bangladesh Livestock Research Institute'), (45701, 'https://ror.org/00v6yka12', 'en', 1, 'https://ror.org/00v6yka12 Admiral Theatre'), (45702, 'https://ror.org/00v71jq68', 'en', 1, 'https://ror.org/00v71jq68 Centre for Innovation in Regulatory Science'), (45703, 'https://ror.org/00va3ak07', 'en', 1, 'https://ror.org/00va3ak07 HealthRock'), (45704, 'https://ror.org/00vbd4626', 'en', 1, 'https://ror.org/00vbd4626 Health Systems Global'), (45705, 'https://ror.org/00vdgr656', 'no_lang_code', 1, 'https://ror.org/00vdgr656 QRxPharma (Australia)'), (45706, 'https://ror.org/00vdy5891', 'no_lang_code', 1, 'https://ror.org/00vdy5891 Meritor (Brazil)'), (45707, 'https://ror.org/00vexz648', 'no_lang_code', 1, 'https://ror.org/00vexz648 Mahindra Forgings (Germany)'), (45708, 'https://ror.org/00vfjs247', 'es', 1, 'https://ror.org/00vfjs247 Universidad Nueva San Salvador'), (45709, 'https://ror.org/00vfz8743', 'no_lang_code', 1, 'https://ror.org/00vfz8743 Honeywell (Germany)'), (45710, 'https://ror.org/00vg5ax74', 'no_lang_code', 1, 'https://ror.org/00vg5ax74 TECE (Germany)'), (45711, 'https://ror.org/00vgcn396', 'no_lang_code', 1, 'https://ror.org/00vgcn396 Quorn (United Kingdom)'), (45712, 'https://ror.org/00vgf5h37', 'en', 1, 'https://ror.org/00vgf5h37 Miwa Internal Medicine Clinic みわ内科クリニック'), (45713, 'https://ror.org/00vja3713', 'fr', 1, 'https://ror.org/00vja3713 Lebanese-French University of Technology and Applied Sciences Université de Technologie et de Sciences Appliquées Libano-Française جامعة التكنولوجيا والعلوم التطبيقية اللبنانية الفرنسية'), (45714, 'https://ror.org/00vjp0q55', 'no_lang_code', 1, 'https://ror.org/00vjp0q55 OptiFuel Technology (United States)'), (45715, 'https://ror.org/00vjsmz50', 'en', 1, 'https://ror.org/00vjsmz50 Smith Family'), (45716, 'https://ror.org/00vjxjf30', 'en', 1, 'https://ror.org/00vjxjf30 Kurume University Hospital 久留米大学病院'), (45717, 'https://ror.org/00vkafj46', 'no_lang_code', 1, 'https://ror.org/00vkafj46 Dŵr Cymru Welsh Water (United Kingdom)'), (45718, 'https://ror.org/00vn8ss79', 'no_lang_code', 1, 'https://ror.org/00vn8ss79 Universal Photonics (United States)'), (45719, 'https://ror.org/00vpqt786', 'no_lang_code', 1, 'https://ror.org/00vpqt786 Dyverga Energy (Canada)'), (45720, 'https://ror.org/00vs9ma76', 'no_lang_code', 1, 'https://ror.org/00vs9ma76 Raven Telemetry (Canada)'), (45721, 'https://ror.org/00vse3055', 'no_lang_code', 1, 'https://ror.org/00vse3055 NHK Spring (Japan) 日本発条株式会社'), (45722, 'https://ror.org/00vxbe865', 'en', 1, 'https://ror.org/00vxbe865 Northern Maine Community College'), (45723, 'https://ror.org/00vy7ed73', 'en', 1, 'https://ror.org/00vy7ed73 Turku Centre for Computer Science Turun tietotekniikan tutkimus- ja koulutuskeskus Åbo datatekniska forsknings- och utbildningscentrum'), (45724, 'https://ror.org/00w0c8s08', 'en', 1, 'https://ror.org/00w0c8s08 National Library of Namibia'), (45725, 'https://ror.org/00w2erz81', 'en', 1, 'https://ror.org/00w2erz81 Kyoto Architecture University 京都建築大学校'), (45726, 'https://ror.org/00w2tje25', 'en', 1, 'https://ror.org/00w2tje25 Mission Australia'), (45727, 'https://ror.org/00w32k615', 'no_lang_code', 1, 'https://ror.org/00w32k615 SunEdison (United States)'), (45728, 'https://ror.org/00w3p6078', 'no_lang_code', 1, 'https://ror.org/00w3p6078 BlueGreen Geophysics (United States)'), (45729, 'https://ror.org/00w56r274', 'en', 1, 'https://ror.org/00w56r274 IPAG Business School Institut de Préparation à l''Administration et à la Gestion'), (45730, 'https://ror.org/00w5rdf18', 'en', 1, 'https://ror.org/00w5rdf18 Society for the Promotion of Roman Studies'); INSERT INTO `rors` VALUES (45731, 'https://ror.org/00w7z4k38', 'no_lang_code', 1, 'https://ror.org/00w7z4k38 Vivonoetics (United States)'), (45732, 'https://ror.org/00w83n434', 'en', 1, 'https://ror.org/00w83n434 Kanagawa Prefectural Odawara Johoku Technical High School 神奈川県立小田原城北工業高等学校'), (45733, 'https://ror.org/00w8byr45', 'no_lang_code', 1, 'https://ror.org/00w8byr45 Integrated Oncology (United States)'), (45734, 'https://ror.org/00w8f3q52', 'no_lang_code', 1, 'https://ror.org/00w8f3q52 Vitec (Germany)'), (45735, 'https://ror.org/00w91z143', 'no_lang_code', 1, 'https://ror.org/00w91z143 JTEKT (Japan) 株式会社ジェイテクト'), (45736, 'https://ror.org/00wawdr98', 'en', 1, 'https://ror.org/00wawdr98 Kenya Agricultural and Livestock Research Organization'), (45737, 'https://ror.org/00wdfeq42', 'en', 1, 'https://ror.org/00wdfeq42 National Engineering Research Center for Compounding and Modification of Polymer Materials 国家复合改性聚合物材料工程技术研究中心'), (45738, 'https://ror.org/00wef3c21', 'en', 1, 'https://ror.org/00wef3c21 Fort Monroe Authority'), (45739, 'https://ror.org/00wf3sn74', 'en', 1, 'https://ror.org/00wf3sn74 Bundesamt für Verbraucherschutz und Lebensmittelsicherheit Federal Office of Consumer Protection and Food Safety'), (45740, 'https://ror.org/00wgk5w17', 'en', 1, 'https://ror.org/00wgk5w17 Changzhou Science and Technology Bureau 常州市科学技术局'), (45741, 'https://ror.org/00wgz8973', 'en', 1, 'https://ror.org/00wgz8973 Asahikawa, Hokkaido Nishi High School 北海道旭川西高等学校'), (45742, 'https://ror.org/00wj3fx08', 'en', 1, 'https://ror.org/00wj3fx08 Disability Rights New Jersey'), (45743, 'https://ror.org/00wj49d82', 'en', 1, 'https://ror.org/00wj49d82 Centre for Remote Sensing and Geographic Information Services'), (45744, 'https://ror.org/00wj54d12', 'en', 1, 'https://ror.org/00wj54d12 Funabashi Keimei High School 千葉県立船橋啓明高等学校'), (45745, 'https://ror.org/00wjam130', 'no_lang_code', 1, 'https://ror.org/00wjam130 Sequans Communications (United Kingdom)'), (45746, 'https://ror.org/00wmxv853', 'no_lang_code', 1, 'https://ror.org/00wmxv853 Hokuriku Gakuin University 北陸学院大学'), (45747, 'https://ror.org/00wnbwz45', 'no_lang_code', 1, 'https://ror.org/00wnbwz45 Fukushima Technology Centre (Japan) 福島県ハイテクプラザ'), (45748, 'https://ror.org/00wpxjs04', 'en', 1, 'https://ror.org/00wpxjs04 Santa Clara City Library'), (45749, 'https://ror.org/00wqcf653', 'en', 1, 'https://ror.org/00wqcf653 Kurashiki Archaeological Museum'), (45750, 'https://ror.org/00wvqmj08', 'no_lang_code', 1, 'https://ror.org/00wvqmj08 QT Ultrasound (United States)'), (45751, 'https://ror.org/00ww6xe24', 'no_lang_code', 1, 'https://ror.org/00ww6xe24 Mersen (United States)'), (45752, 'https://ror.org/00wwj8r66', 'en', 1, 'https://ror.org/00wwj8r66 Yamato University 大和大学'), (45753, 'https://ror.org/00wws3648', 'en', 1, 'https://ror.org/00wws3648 International Culture University'), (45754, 'https://ror.org/00wxsmn74', 'en', 1, 'https://ror.org/00wxsmn74 Canadian Library Association'), (45755, 'https://ror.org/00wy6bt78', 'en', 1, 'https://ror.org/00wy6bt78 LETO Maternity Hospital ΛΗΤΩ Μαιευτικό, Γυναικολογικό & Χειρουργικό Κέντρο'), (45756, 'https://ror.org/00wyj1j88', 'en', 1, 'https://ror.org/00wyj1j88 Poornaprajna Institute of Scientific Research'), (45757, 'https://ror.org/00x19rt58', 'en', 1, 'https://ror.org/00x19rt58 Jiyu Gakuen Girls School 自由学園明日館'), (45758, 'https://ror.org/00x1fdr51', 'no_lang_code', 1, 'https://ror.org/00x1fdr51 Rafik Hariri University مؤسسة رفيق الحريري'), (45759, 'https://ror.org/00x2kxt49', 'en', 1, 'https://ror.org/00x2kxt49 Institute for Futures Studies Institutet för Framtidsstudier'), (45760, 'https://ror.org/00x2mvg12', 'no_lang_code', 1, 'https://ror.org/00x2mvg12 Ozymes (Canada)'), (45761, 'https://ror.org/00x39dd97', 'no_lang_code', 1, 'https://ror.org/00x39dd97 Schneider Electric (United States)'), (45762, 'https://ror.org/00x3xqj53', 'en', 1, 'https://ror.org/00x3xqj53 Canadian University Music Society Société de musique des universités canadiennes'), (45763, 'https://ror.org/00x49t688', 'en', 1, 'https://ror.org/00x49t688 Fukui Prefectural Maruoka High School 福井県立丸岡高等学校'), (45764, 'https://ror.org/00x7ptd63', 'no_lang_code', 1, 'https://ror.org/00x7ptd63 Bio-Rad (Israel)'), (45765, 'https://ror.org/00x8gws85', 'no_lang_code', 1, 'https://ror.org/00x8gws85 BioTelemetry (United States)'), (45766, 'https://ror.org/00x8v4m40', 'en', 1, 'https://ror.org/00x8v4m40 Waukegan Public Library'), (45767, 'https://ror.org/00x8yzg78', 'en', 1, 'https://ror.org/00x8yzg78 Nara Prefectural Takada Senior High School 奈良県立高田高等学校'), (45768, 'https://ror.org/00x9ph686', 'en', 1, 'https://ror.org/00x9ph686 Jawaharlal Nehru Cancer Hospital and Research Centre'), (45769, 'https://ror.org/00xagtd33', 'en', 1, 'https://ror.org/00xagtd33 Kawasaki Univ Yato Elementary School 川崎市立大谷戸小学校'), (45770, 'https://ror.org/00xb58j90', 'en', 1, 'https://ror.org/00xb58j90 Bundesverband der Deutschen Industrie Federation of German Industries'), (45771, 'https://ror.org/00xefvv79', 'en', 1, 'https://ror.org/00xefvv79 National Institute of Technology, Kurume College 久留米工業高等専門学校'), (45772, 'https://ror.org/00xes3s90', 'no_lang_code', 1, 'https://ror.org/00xes3s90 Cempra Pharmaceuticals (United States)'), (45773, 'https://ror.org/00xf3s895', 'no_lang_code', 1, 'https://ror.org/00xf3s895 Vadient Optics (United States)'), (45774, 'https://ror.org/00xfdbb04', 'no_lang_code', 1, 'https://ror.org/00xfdbb04 Telefonica (Germany)'), (45775, 'https://ror.org/00xj0z482', 'no_lang_code', 1, 'https://ror.org/00xj0z482 Munro & Associates (United States)'), (45776, 'https://ror.org/00xk5y986', 'en', 1, 'https://ror.org/00xk5y986 Development Initiatives'), (45777, 'https://ror.org/00xk9wg94', 'no_lang_code', 1, 'https://ror.org/00xk9wg94 Himax (Taiwan) 奇景光電'), (45778, 'https://ror.org/00xkz3n79', 'no_lang_code', 1, 'https://ror.org/00xkz3n79 Trapeze (United States)'), (45779, 'https://ror.org/00xmngc47', 'no_lang_code', 1, 'https://ror.org/00xmngc47 Dow Chemical (South Korea)'), (45780, 'https://ror.org/00xnetf72', 'fr', 1, 'https://ror.org/00xnetf72 Brest''aim'), (45781, 'https://ror.org/00xphjh14', 'en', 1, 'https://ror.org/00xphjh14 Fujian Research Institute of Light Industry 福建省轻工业研究所'), (45782, 'https://ror.org/00xpxz171', 'no_lang_code', 1, 'https://ror.org/00xpxz171 Scientific Games (United Kingdom)'), (45783, 'https://ror.org/00xqcgm91', 'en', 1, 'https://ror.org/00xqcgm91 Travis Unified School District'), (45784, 'https://ror.org/00xqj7528', 'en', 1, 'https://ror.org/00xqj7528 British Nuclear Medicine Society'), (45785, 'https://ror.org/00xqjsc25', 'no_lang_code', 1, 'https://ror.org/00xqjsc25 Arkema (Germany)'), (45786, 'https://ror.org/00xsh4698', 'no_lang_code', 1, 'https://ror.org/00xsh4698 Assa Abloy (Australia)'), (45787, 'https://ror.org/00xttnp21', 'no_lang_code', 1, 'https://ror.org/00xttnp21 Flex (Mauritius)'), (45788, 'https://ror.org/00xvbmj91', 'no_lang_code', 1, 'https://ror.org/00xvbmj91 Fluidigm (Canada)'), (45789, 'https://ror.org/00xvrse39', 'en', 1, 'https://ror.org/00xvrse39 Association of Governing Boards of Universities and Colleges'), (45790, 'https://ror.org/00xx28w63', 'en', 1, 'https://ror.org/00xx28w63 Akita Prefectural Education Center 秋田県総合教育センター'), (45791, 'https://ror.org/00xx5qr89', 'en', 1, 'https://ror.org/00xx5qr89 Central State Medical Academy Центральная государственная медицинская академия'), (45792, 'https://ror.org/00xxnb467', 'en', 1, 'https://ror.org/00xxnb467 Hamilton County Department of Education'), (45793, 'https://ror.org/00xy95422', 'de', 1, 'https://ror.org/00xy95422 Archiv der Jugendkulturen'), (45794, 'https://ror.org/00xzhyb45', 'en', 1, 'https://ror.org/00xzhyb45 Wikimedia Australia'), (45795, 'https://ror.org/00y024m51', 'en', 1, 'https://ror.org/00y024m51 First Flight Venture Center'), (45796, 'https://ror.org/00y09zk14', 'no_lang_code', 1, 'https://ror.org/00y09zk14 Motorola (South Korea)'), (45797, 'https://ror.org/00y1a8425', 'en', 1, 'https://ror.org/00y1a8425 Zhukovsky Air Force Engineering Academy Военно-воздушная инженерная академия имени профессора Н. Е. Жуковского'), (45798, 'https://ror.org/00y1n0k33', 'no_lang_code', 1, 'https://ror.org/00y1n0k33 Stanley Black & Decker (United Kingdom)'), (45799, 'https://ror.org/00y2td026', 'en', 1, 'https://ror.org/00y2td026 Winston-Salem Chamber of Commerce'), (45800, 'https://ror.org/00y3fw422', 'en', 1, 'https://ror.org/00y3fw422 Boston Society of Architects'), (45801, 'https://ror.org/00y3z1g83', 'no_lang_code', 1, 'https://ror.org/00y3z1g83 Sangath'), (45802, 'https://ror.org/00y4qff92', 'en', 1, 'https://ror.org/00y4qff92 Kyoto College of Medical Science 京都医療科学大学'), (45803, 'https://ror.org/00y550t07', 'en', 1, 'https://ror.org/00y550t07 Kofi Annan Foundation'), (45804, 'https://ror.org/00y5p9m93', 'en', 1, 'https://ror.org/00y5p9m93 Ministry of the Interior and Administrative Reconstruction Υπουργείο Εσωτερικών και Διοικητικής Ανασυγκρότησης'), (45805, 'https://ror.org/00y6gpw41', 'en', 1, 'https://ror.org/00y6gpw41 Association for Library and Information Science Education'), (45806, 'https://ror.org/00y6k5y17', 'no_lang_code', 1, 'https://ror.org/00y6k5y17 Gweru Polytechnic Institute'), (45807, 'https://ror.org/00y728105', 'en', 1, 'https://ror.org/00y728105 Israel Brain Technologies'), (45808, 'https://ror.org/00y761129', 'no_lang_code', 1, 'https://ror.org/00y761129 Fincons Group (Italy)'), (45809, 'https://ror.org/00y852y62', 'en', 1, 'https://ror.org/00y852y62 Educational Service District 113'), (45810, 'https://ror.org/00ya1es69', 'no_lang_code', 1, 'https://ror.org/00ya1es69 MicroBio Engineering (United States)'), (45811, 'https://ror.org/00yck8s68', 'no_lang_code', 1, 'https://ror.org/00yck8s68 Mitsubishi Corporation (Germany)'), (45812, 'https://ror.org/00yckme16', 'en', 1, 'https://ror.org/00yckme16 Universal College of Healing Arts'), (45813, 'https://ror.org/00yewjk07', 'no_lang_code', 1, 'https://ror.org/00yewjk07 BAE Systems (Sweden)'), (45814, 'https://ror.org/00yfw2296', 'it', 1, 'https://ror.org/00yfw2296 Istituto Officina dei Materiali'), (45815, 'https://ror.org/00yg19172', 'en', 1, 'https://ror.org/00yg19172 Kitakyushu City Foundation For Promoting Arts And Culture 公益財団法人 北九州市芸術文化振興財団'), (45816, 'https://ror.org/00yj1g869', 'no_lang_code', 1, 'https://ror.org/00yj1g869 Subsurface Insights (United States)'), (45817, 'https://ror.org/00ym78a64', 'en', 1, 'https://ror.org/00ym78a64 EducationSuperHighway'), (45818, 'https://ror.org/00ymz7s10', 'no_lang_code', 1, 'https://ror.org/00ymz7s10 3v Geomatics (Canada)'), (45819, 'https://ror.org/00ynxc274', 'no_lang_code', 1, 'https://ror.org/00ynxc274 Kao Corporation (Germany)'), (45820, 'https://ror.org/00ynznf11', 'no_lang_code', 1, 'https://ror.org/00ynznf11 Knite (United States)'), (45821, 'https://ror.org/00yp0d371', 'en', 1, 'https://ror.org/00yp0d371 New Hampshire Department of Resources and Economic Development'), (45822, 'https://ror.org/00yp48s31', 'no_lang_code', 1, 'https://ror.org/00yp48s31 ReacTech (United States)'), (45823, 'https://ror.org/00ypw9w15', 'en', 1, 'https://ror.org/00ypw9w15 European Foundation Centre'), (45824, 'https://ror.org/00ypwtb83', 'no_lang_code', 1, 'https://ror.org/00ypwtb83 Svenska Cellulosa (United Kingdom) Svenska Cellulosa Aktiebolaget'), (45825, 'https://ror.org/00yq70636', 'no_lang_code', 1, 'https://ror.org/00yq70636 BioZyme (United States)'), (45826, 'https://ror.org/00yqk5t74', 'no_lang_code', 1, 'https://ror.org/00yqk5t74 Lonza (Germany)'), (45827, 'https://ror.org/00yt07t18', 'en', 1, 'https://ror.org/00yt07t18 Chapel Hill Breast Cancer Foundation'), (45828, 'https://ror.org/00ytjke60', 'en', 1, 'https://ror.org/00ytjke60 Nature Conservation Foundation'), (45829, 'https://ror.org/00ytwt138', 'en', 1, 'https://ror.org/00ytwt138 Public Law Library of King County'), (45830, 'https://ror.org/00ytxqz74', 'en', 1, 'https://ror.org/00ytxqz74 Addiction Switzerland Sucht Schweiz'), (45831, 'https://ror.org/00yv9a247', 'en', 1, 'https://ror.org/00yv9a247 Imperial Household Agency 宮内庁'), (45832, 'https://ror.org/00yxgk394', 'es', 1, 'https://ror.org/00yxgk394 ecOceánica'), (45833, 'https://ror.org/00yxnm167', 'en', 1, 'https://ror.org/00yxnm167 Eastern North American Region International Biometric Society'), (45834, 'https://ror.org/00yydfg09', 'id', 1, 'https://ror.org/00yydfg09 Universitas Pekalongan'), (45835, 'https://ror.org/00yzwhc72', 'no_lang_code', 1, 'https://ror.org/00yzwhc72 TEAC (Japan) ティアック株式会社'), (45836, 'https://ror.org/00z0c0y28', 'en', 1, 'https://ror.org/00z0c0y28 Islamic Azad University Mehriz دانشگاه آزاد اسلامی واحد مهریز'), (45837, 'https://ror.org/00z0j0d77', 'en', 1, 'https://ror.org/00z0j0d77 First Affiliated Hospital of Guangzhou Medical University 广州医科大学附属第一医院'), (45838, 'https://ror.org/00z1bwj17', 'no_lang_code', 1, 'https://ror.org/00z1bwj17 Street Contxt (Canada)'), (45839, 'https://ror.org/00z290809', 'no_lang_code', 1, 'https://ror.org/00z290809 Sandvik (Switzerland)'), (45840, 'https://ror.org/00z2xnx25', 'en', 1, 'https://ror.org/00z2xnx25 Niimi College 新見公立短期大学'), (45841, 'https://ror.org/00z471n15', 'no_lang_code', 1, 'https://ror.org/00z471n15 Smarter Alloys (Canada)'), (45842, 'https://ror.org/00z4gpq27', 'en', 1, 'https://ror.org/00z4gpq27 Association Canadienne de Chirurgie Thoracique, Canadian Association of Thoracic Surgeons'), (45843, 'https://ror.org/00z4w4f29', 'en', 1, 'https://ror.org/00z4w4f29 Oxford Research Group'), (45844, 'https://ror.org/00z50t224', 'en', 1, 'https://ror.org/00z50t224 Trinity School of Medicine'), (45845, 'https://ror.org/00z6n3z58', 'en', 1, 'https://ror.org/00z6n3z58 Maricopa Community Colleges - Glendale Community College'), (45846, 'https://ror.org/00z6t7t43', 'en', 1, 'https://ror.org/00z6t7t43 Harford County Government'), (45847, 'https://ror.org/00z7gjv76', 'en', 1, 'https://ror.org/00z7gjv76 Toyota Transportation Research Institute 公益財団法人豊田都市交通研究所'), (45848, 'https://ror.org/00z7vk025', 'no_lang_code', 1, 'https://ror.org/00z7vk025 Electronic Sensor Technology (United States)'), (45849, 'https://ror.org/00z8pd398', 'en', 1, 'https://ror.org/00z8pd398 Hamamatsu University Hospital 浜松大学 病院'), (45850, 'https://ror.org/00z8ws214', 'en', 1, 'https://ror.org/00z8ws214 Institute of Materials for Electronics and Magnetism'), (45851, 'https://ror.org/00z90jg93', 'no_lang_code', 1, 'https://ror.org/00z90jg93 PlanEnergi (Denmark)'), (45852, 'https://ror.org/00z9jj523', 'en', 1, 'https://ror.org/00z9jj523 Neyagawa City Board of Education 寝屋川市教育委員会'), (45853, 'https://ror.org/00zbfm731', 'en', 1, 'https://ror.org/00zbfm731 Tokyo College of Transport Studies 東京交通短期大学'), (45854, 'https://ror.org/00zda5q13', 'no_lang_code', 1, 'https://ror.org/00zda5q13 Misato Junshin General Hospital 三郷中央総合病院'), (45855, 'https://ror.org/00zdzyj46', 'no_lang_code', 1, 'https://ror.org/00zdzyj46 Citizen (Japan) シチズンホールディングス株式会社'), (45856, 'https://ror.org/00zevg885', 'en', 1, 'https://ror.org/00zevg885 International Bone Research Association'), (45857, 'https://ror.org/00zfe1b87', 'de', 1, 'https://ror.org/00zfe1b87 Zentralklinik Bad Berka'), (45858, 'https://ror.org/00zhmx351', 'en', 1, 'https://ror.org/00zhmx351 Brain Injury Association of New York State'), (45859, 'https://ror.org/00zj9hj84', 'no_lang_code', 1, 'https://ror.org/00zj9hj84 Minerva Light lab (Japan) ミネルバライトラボ'), (45860, 'https://ror.org/00zkszf91', 'pt', 1, 'https://ror.org/00zkszf91 Associação Brasileira de Planetários'), (45861, 'https://ror.org/00zm1cx92', 'en', 1, 'https://ror.org/00zm1cx92 Jamestowne Society'), (45862, 'https://ror.org/00zm4vy06', 'no_lang_code', 1, 'https://ror.org/00zm4vy06 Bellwether Education Partners (United States)'), (45863, 'https://ror.org/00znqyv98', 'it', 1, 'https://ror.org/00znqyv98 Museo Cantonale di Storia Naturale di Lugano'), (45864, 'https://ror.org/00znts755', 'no_lang_code', 1, 'https://ror.org/00znts755 Sonata (United States)'), (45865, 'https://ror.org/00zqddg96', 'no_lang_code', 1, 'https://ror.org/00zqddg96 Sanden (Japan) サンデン株式会社'), (45866, 'https://ror.org/00zrjgm10', 'en', 1, 'https://ror.org/00zrjgm10 State Intellectual Property Office 中华人民共和国国家知识产权局'), (45867, 'https://ror.org/00zrr9158', 'no_lang_code', 1, 'https://ror.org/00zrr9158 Tokyo Ohka Kogyo (Japan) 東京応化工業株式会社'), (45868, 'https://ror.org/00zs5ew10', 'no_lang_code', 1, 'https://ror.org/00zs5ew10 NGK Spark Plug (Japan) 日本特殊陶業株式会社'), (45869, 'https://ror.org/00zs99993', 'no_lang_code', 1, 'https://ror.org/00zs99993 Intelligent Software Solutions (United States)'), (45870, 'https://ror.org/00zst6w92', 'en', 1, 'https://ror.org/00zst6w92 Swedish Movement Disorder Society'), (45871, 'https://ror.org/00zt1nh73', 'no_lang_code', 1, 'https://ror.org/00zt1nh73 ProKyma Technologies (United Kingdom)'), (45872, 'https://ror.org/00ztcbk21', 'it', 1, 'https://ror.org/00ztcbk21 Ospedale S. Matteo degli Infermi, Ospedale di Spoleto'), (45873, 'https://ror.org/00zw8r556', 'no_lang_code', 1, 'https://ror.org/00zw8r556 Olympus (Germany)'), (45874, 'https://ror.org/00zxymv65', 'en', 1, 'https://ror.org/00zxymv65 National Institute of Integrative Medicine'), (45875, 'https://ror.org/00zy64e53', 'no_lang_code', 1, 'https://ror.org/00zy64e53 Radiation Detection Technologies (United States)'), (45876, 'https://ror.org/00zyc7969', 'en', 1, 'https://ror.org/00zyc7969 United States Coast Guard'), (45877, 'https://ror.org/01004y747', 'no_lang_code', 1, 'https://ror.org/01004y747 Arris (United Kingdom)'), (45878, 'https://ror.org/0100sjs71', 'en', 1, 'https://ror.org/0100sjs71 Nagaoka Institute of Design 長岡造形大学'), (45879, 'https://ror.org/0102ss455', 'no_lang_code', 1, 'https://ror.org/0102ss455 Round Rock Research (United States)'), (45880, 'https://ror.org/010356m81', 'en', 1, 'https://ror.org/010356m81 Miyagi Prefecture Natori High School 宮城県名取高等学校'), (45881, 'https://ror.org/0103wwz30', 'en', 1, 'https://ror.org/0103wwz30 Minami Kyushu Junior College 南九州短期大学'), (45882, 'https://ror.org/010594c48', 'no_lang_code', 1, 'https://ror.org/010594c48 Aquaneers (United States)'), (45883, 'https://ror.org/0105jwh54', 'no_lang_code', 1, 'https://ror.org/0105jwh54 Legrand (United Kingdom)'), (45884, 'https://ror.org/01067b760', 'en', 1, 'https://ror.org/01067b760 Tokyo Management College 東京経営短期大学'), (45885, 'https://ror.org/0107xy373', 'no_lang_code', 1, 'https://ror.org/0107xy373 Muzzy Lane Software (United States)'), (45886, 'https://ror.org/0109vaz13', 'en', 1, 'https://ror.org/0109vaz13 Afrivac'), (45887, 'https://ror.org/0109zs540', 'en', 1, 'https://ror.org/0109zs540 The Institute of Energy Economics, Japan エネルギー経済研究所'), (45888, 'https://ror.org/010b6ag76', 'en', 1, 'https://ror.org/010b6ag76 ARL – Academy for Territorial Development in the Leibniz Association ARL – Akademie für Raumentwicklung in der Leibniz-Gemeinschaft'), (45889, 'https://ror.org/010brrt54', 'no_lang_code', 1, 'https://ror.org/010brrt54 Faurecia (United States)'), (45890, 'https://ror.org/010fp8b41', 'no_lang_code', 1, 'https://ror.org/010fp8b41 Siliconware Precision Industries (Taiwan) 歡迎來到矽品'), (45891, 'https://ror.org/010ftx126', 'en', 1, 'https://ror.org/010ftx126 Institute of Thermal Physics Институт теплофизики УрО РАН'), (45892, 'https://ror.org/010fzp376', 'no_lang_code', 1, 'https://ror.org/010fzp376 Nanion (Germany)'), (45893, 'https://ror.org/010gkrj91', 'en', 1, 'https://ror.org/010gkrj91 Yamanashi Prefectural Fisheries Technology Center 水産技術センター'), (45894, 'https://ror.org/010gr2865', 'en', 1, 'https://ror.org/010gr2865 Wikimedia New York City'), (45895, 'https://ror.org/010j46531', 'en', 1, 'https://ror.org/010j46531 African Health Economics and Policy Association'), (45896, 'https://ror.org/010j4q354', 'no_lang_code', 1, 'https://ror.org/010j4q354 EXUS (United Kingdom)'), (45897, 'https://ror.org/010jmsy02', 'no_lang_code', 1, 'https://ror.org/010jmsy02 Kyoto Computer Gakuin 京都コンピュータ学院'), (45898, 'https://ror.org/010k7sz25', 'de', 1, 'https://ror.org/010k7sz25 Arbeitsgemeinschaft Dermatologische Forschung'), (45899, 'https://ror.org/010k8n340', 'no_lang_code', 1, 'https://ror.org/010k8n340 RCA (United States)'), (45900, 'https://ror.org/010m5yq44', 'no_lang_code', 1, 'https://ror.org/010m5yq44 Planwel'), (45901, 'https://ror.org/010nq4b05', 'en', 1, 'https://ror.org/010nq4b05 Illinois School Psychologists Association'), (45902, 'https://ror.org/010p06p68', 'pt', 1, 'https://ror.org/010p06p68 Associação Nacional de Política e Administração da Educação'), (45903, 'https://ror.org/010pns631', 'en', 1, 'https://ror.org/010pns631 Consortium for School Networking'), (45904, 'https://ror.org/010q5z761', 'en', 1, 'https://ror.org/010q5z761 Ishikawa Prefectural Museum of Art 石川県立美術館'), (45905, 'https://ror.org/010s5m858', 'no_lang_code', 1, 'https://ror.org/010s5m858 Olympus (United Kingdom)'), (45906, 'https://ror.org/010vp6v57', 'en', 1, 'https://ror.org/010vp6v57 Iwate Prefectural Shizukuishi High School 岩手県立雫石高等学校'), (45907, 'https://ror.org/010vv9h56', 'en', 1, 'https://ror.org/010vv9h56 London Studio Centre'), (45908, 'https://ror.org/010xx8472', 'no_lang_code', 1, 'https://ror.org/010xx8472 Scuba Probe Technologies (United states)'), (45909, 'https://ror.org/010y4ef75', 'en', 1, 'https://ror.org/010y4ef75 Kitakyushu Yahata Special Needs Schools 北九州市立八幡特別支援学校'), (45910, 'https://ror.org/010z8j306', 'en', 1, 'https://ror.org/010z8j306 Daqing City People''s Hospital'), (45911, 'https://ror.org/0110jzw27', 'en', 1, 'https://ror.org/0110jzw27 Osaka Municipal Toyosaki Junior High School 大阪市立豊崎中学校'), (45912, 'https://ror.org/0111gv970', 'no_lang_code', 1, 'https://ror.org/0111gv970 Phusis Therapeutics (United States)'), (45913, 'https://ror.org/0113nqq98', 'en', 1, 'https://ror.org/0113nqq98 Sapporo Science Center 札幌市青少年科学館'), (45914, 'https://ror.org/0113qg321', 'no_lang_code', 1, 'https://ror.org/0113qg321 Solar Ship (Canada)'), (45915, 'https://ror.org/01149dp52', 'no_lang_code', 1, 'https://ror.org/01149dp52 eBay (South Korea)'), (45916, 'https://ror.org/0114ckv42', 'no_lang_code', 1, 'https://ror.org/0114ckv42 Hyōgo Prefectural Museum of Art 兵庫県立美術館'), (45917, 'https://ror.org/01155gk87', 'no_lang_code', 1, 'https://ror.org/01155gk87 Keysight Technologies (Singapore)'), (45918, 'https://ror.org/01157qb85', 'fr', 1, 'https://ror.org/01157qb85 Groupe AFI'), (45919, 'https://ror.org/0117r4k15', 'en', 1, 'https://ror.org/0117r4k15 Okinawa Prefectural Board of Education 沖縄県教育委員会'), (45920, 'https://ror.org/0117wrn60', 'no_lang_code', 1, 'https://ror.org/0117wrn60 Flag Therapeutics (United States)'), (45921, 'https://ror.org/01195rc41', 'en', 1, 'https://ror.org/01195rc41 Tokyo Metropolitan Nerima High School 東京都立練馬高等学校'), (45922, 'https://ror.org/01197h425', 'en', 1, 'https://ror.org/01197h425 Police and Crime Commissioner for West Yorkshire'), (45923, 'https://ror.org/011bkgz47', 'pt', 1, 'https://ror.org/011bkgz47 Brazilian Institute of Technology for Leather, Footwear and Artifacts, Instituto Brasileiro de Tecnologia do Couro, Calçado e Artefatos'), (45924, 'https://ror.org/011cn9r82', 'en', 1, 'https://ror.org/011cn9r82 Institute for Community Leadership'), (45925, 'https://ror.org/011cyyg27', 'no_lang_code', 1, 'https://ror.org/011cyyg27 i2C Solutions (United States)'), (45926, 'https://ror.org/011ec6h17', 'en', 1, 'https://ror.org/011ec6h17 Hiroshima City Museum of Contemporary Art'), (45927, 'https://ror.org/011g79698', 'no_lang_code', 1, 'https://ror.org/011g79698 Imense (United Kingdom)'), (45928, 'https://ror.org/011gpzb03', 'en', 1, 'https://ror.org/011gpzb03 Institute of National Economy'), (45929, 'https://ror.org/011jv2x91', 'en', 1, 'https://ror.org/011jv2x91 Espam Formation University'), (45930, 'https://ror.org/011k1tq34', 'en', 1, 'https://ror.org/011k1tq34 Bucks County Free Library'), (45931, 'https://ror.org/011nyg256', 'no_lang_code', 1, 'https://ror.org/011nyg256 Eaton (Austria)'), (45932, 'https://ror.org/011qgx996', 'no_lang_code', 1, 'https://ror.org/011qgx996 Mitsubishi Chemical Group Science and Technology Research Center (Japan) 株式会社三菱化学科学技術研究センター'), (45933, 'https://ror.org/011sq9629', 'pt', 1, 'https://ror.org/011sq9629 Sociedade Brasileira de Biofísica'), (45934, 'https://ror.org/011ts7939', 'de', 1, 'https://ror.org/011ts7939 Berufsgenossenschaft Rohstoffe und chemische Industrie'), (45935, 'https://ror.org/011wm9695', 'en', 1, 'https://ror.org/011wm9695 Tottori Prefectural Museum 鳥取県立博物館'), (45936, 'https://ror.org/0120b7z43', 'no_lang_code', 1, 'https://ror.org/0120b7z43 Kokugakuin Junior College 國學院大學北海道短期大学部'), (45937, 'https://ror.org/0120w9t22', 'no_lang_code', 1, 'https://ror.org/0120w9t22 NanoSynTex (United States)'), (45938, 'https://ror.org/012151k32', 'en', 1, 'https://ror.org/012151k32 Indian River Central School District'), (45939, 'https://ror.org/012245h64', 'en', 1, 'https://ror.org/012245h64 Municipality of Medellín Municipio de Medellín'), (45940, 'https://ror.org/0123ma395', 'no_lang_code', 1, 'https://ror.org/0123ma395 Fujikura (Japan) 株式会社フジクラ'), (45941, 'https://ror.org/01243c877', 'en', 1, 'https://ror.org/01243c877 Fraunhofer Institute for Microelectronic Circuits and Systems Fraunhofer-Institut für Mikroelektronische Schaltungen und Systeme'), (45942, 'https://ror.org/0124nkn39', 'en', 1, 'https://ror.org/0124nkn39 Uwajima Fisheries High school 愛媛県立宇和島水産高等学校'), (45943, 'https://ror.org/0126q1y69', 'no_lang_code', 1, 'https://ror.org/0126q1y69 Plasan (Israel) פלסן'), (45944, 'https://ror.org/0127fwn18', 'en', 1, 'https://ror.org/0127fwn18 Institut für Bioinformatik und Systembiologie Institute of Bioinformatics and Systems Biology'), (45945, 'https://ror.org/0128ps453', 'en', 1, 'https://ror.org/0128ps453 Egyptian German Society of Zoology'), (45946, 'https://ror.org/012ghgg86', 'no_lang_code', 1, 'https://ror.org/012ghgg86 Matsui Universal Joint Corporation (Japan) 株式会社松井製作所'), (45947, 'https://ror.org/012gxwa15', 'no_lang_code', 1, 'https://ror.org/012gxwa15 Tokai Rika (Japan) 東海理化'), (45948, 'https://ror.org/012jgbk51', 'en', 1, 'https://ror.org/012jgbk51 Oriental University Восточный университет'), (45949, 'https://ror.org/012jxwf11', 'en', 1, 'https://ror.org/012jxwf11 Alberta Library'), (45950, 'https://ror.org/012ky5f74', 'no_lang_code', 1, 'https://ror.org/012ky5f74 EG Gilero (United States)'), (45951, 'https://ror.org/012msr517', 'en', 1, 'https://ror.org/012msr517 Hattori Botanical Laboratory 服部植物研究所'), (45952, 'https://ror.org/012mvxw17', 'no_lang_code', 1, 'https://ror.org/012mvxw17 Sendai City Tomizawa Site Museum 地底の森ミュージアム'), (45953, 'https://ror.org/012nfzy71', 'es', 1, 'https://ror.org/012nfzy71 Universidad Panamericana de El Salvador'), (45954, 'https://ror.org/012q68n89', 'en', 1, 'https://ror.org/012q68n89 National Centre for Compositional Characterisation of Materials'), (45955, 'https://ror.org/012set728', 'en', 1, 'https://ror.org/012set728 Kandilli Observatory and Earthquake Research Institute Kandilli Rasathanesi ve Deprem Araştırma Enstitüsü'), (45956, 'https://ror.org/012spbn33', 'en', 1, 'https://ror.org/012spbn33 National Museum of Western Art 国立西洋美術館'), (45957, 'https://ror.org/012wc2h72', 'en', 1, 'https://ror.org/012wc2h72 American Psychosomatic Society'), (45958, 'https://ror.org/012yjj245', 'no_lang_code', 1, 'https://ror.org/012yjj245 CritiTech (United States)'), (45959, 'https://ror.org/012zhga41', 'en', 1, 'https://ror.org/012zhga41 Shine'), (45960, 'https://ror.org/0131dra29', 'en', 1, 'https://ror.org/0131dra29 Fraunhofer Institute for Interfacial Engineering and Biotechnology Fraunhofer-Institut für Grenzflächen- und Bioverfahrenstechnik'), (45961, 'https://ror.org/0131hr478', 'no_lang_code', 1, 'https://ror.org/0131hr478 Johnson Matthey (Germany)'), (45962, 'https://ror.org/0133kas76', 'en', 1, 'https://ror.org/0133kas76 Haines Borough Public Library'), (45963, 'https://ror.org/0134cjh35', 'no_lang_code', 1, 'https://ror.org/0134cjh35 Gemalto (Israel)'), (45964, 'https://ror.org/01351nn19', 'en', 1, 'https://ror.org/01351nn19 Hunan Sports Bureau 湖南省体育局'), (45965, 'https://ror.org/0135jsc12', 'no_lang_code', 1, 'https://ror.org/0135jsc12 Actinobac Biomed (United States)'), (45966, 'https://ror.org/0136hcg09', 'en', 1, 'https://ror.org/0136hcg09 Immunotherapy Centre for Prevention of Repeated Miscarriages'), (45967, 'https://ror.org/0136tgd19', 'en', 1, 'https://ror.org/0136tgd19 Tokyo College of Welfare 東京福祉専門学校'), (45968, 'https://ror.org/013947m29', 'en', 1, 'https://ror.org/013947m29 Nagasaki Prefectural Education Center 長崎県教育センター'), (45969, 'https://ror.org/013ch2r08', 'en', 1, 'https://ror.org/013ch2r08 Fukushima Prefectural Asaka High School 福島県立安積高等学校'), (45970, 'https://ror.org/013dk1391', 'no_lang_code', 1, 'https://ror.org/013dk1391 Wikimedia District of Columbia'), (45971, 'https://ror.org/013egyr15', 'pt', 1, 'https://ror.org/013egyr15 Associação Nacional de Biossegurança'), (45972, 'https://ror.org/013gvjj93', 'no_lang_code', 1, 'https://ror.org/013gvjj93 Nufarm (Australia)'), (45973, 'https://ror.org/013kgb629', 'en', 1, 'https://ror.org/013kgb629 Machine Intelligence Research Labs'), (45974, 'https://ror.org/013m7z415', 'en', 1, 'https://ror.org/013m7z415 Digital Empowerment Foundation'), (45975, 'https://ror.org/013nc1m54', 'en', 1, 'https://ror.org/013nc1m54 Fort Bend County Libraries'), (45976, 'https://ror.org/013p9v583', 'no_lang_code', 1, 'https://ror.org/013p9v583 Daikin (Japan) ダイキン工業株式会社'), (45977, 'https://ror.org/013pzg015', 'fr', 1, 'https://ror.org/013pzg015 Association pour le Développement et l''Innovation en Chimie au Québec'), (45978, 'https://ror.org/013s0qy72', 'en', 1, 'https://ror.org/013s0qy72 FrameWorks Institute'), (45979, 'https://ror.org/013shsh75', 'en', 1, 'https://ror.org/013shsh75 Center for National University Finance and Management 国立大学財務・経営センター'), (45980, 'https://ror.org/0140bnh63', 'no_lang_code', 1, 'https://ror.org/0140bnh63 Ineos (Germany)'), (45981, 'https://ror.org/0140zan98', 'en', 1, 'https://ror.org/0140zan98 Gunma Prefectural Museum of History'), (45982, 'https://ror.org/01457ne20', 'en', 1, 'https://ror.org/01457ne20 Ministry of Agriculture Mechanisation and Irrigation Development'), (45983, 'https://ror.org/01459d894', 'en', 1, 'https://ror.org/01459d894 Virginia Intermont College'), (45984, 'https://ror.org/0147hmw17', 'en', 1, 'https://ror.org/0147hmw17 Yarmouk Private University جامعة اليرموك الخاصة'), (45985, 'https://ror.org/0148s8205', 'no_lang_code', 1, 'https://ror.org/0148s8205 Locus Pharmacy (United States)'), (45986, 'https://ror.org/014c6rd81', 'en', 1, 'https://ror.org/014c6rd81 Japanese Society of Nephrology 一般社団法人 日本腎臓学会'), (45987, 'https://ror.org/014crx992', 'en', 1, 'https://ror.org/014crx992 Kentucky Chamber of Commerce'), (45988, 'https://ror.org/014dtj905', 'es', 1, 'https://ror.org/014dtj905 Universidad Pedagógica de El Salvador'), (45989, 'https://ror.org/014f9c269', 'no_lang_code', 1, 'https://ror.org/014f9c269 Google (Switzerland)'), (45990, 'https://ror.org/014hy9c40', 'en', 1, 'https://ror.org/014hy9c40 Firoozgar General Hospital بیمارستان آموزشی و درمانی فیروزگر'), (45991, 'https://ror.org/014jsry89', 'no_lang_code', 1, 'https://ror.org/014jsry89 Modine (South Korea)'), (45992, 'https://ror.org/014kzp326', 'no_lang_code', 1, 'https://ror.org/014kzp326 Pioneer (Japan) パイオニア株式会社'), (45993, 'https://ror.org/014mdja61', 'en', 1, 'https://ror.org/014mdja61 Lilac Services for the Blind'), (45994, 'https://ror.org/014mq3e63', 'es', 1, 'https://ror.org/014mq3e63 Wikimedia México'), (45995, 'https://ror.org/014n3px33', 'en', 1, 'https://ror.org/014n3px33 South African Association of Women Graduates'), (45996, 'https://ror.org/014ngqg04', 'es', 1, 'https://ror.org/014ngqg04 Instituto Trabajo y Familia'), (45997, 'https://ror.org/014nsap67', 'en', 1, 'https://ror.org/014nsap67 People''s Liberation Army No. 150 Hospital'), (45998, 'https://ror.org/014p1by09', 'en', 1, 'https://ror.org/014p1by09 National Foundation for Australian Women'), (45999, 'https://ror.org/014pv7733', 'no_lang_code', 1, 'https://ror.org/014pv7733 BioNano Genomics (United States)'), (46000, 'https://ror.org/014rvs568', 'es', 1, 'https://ror.org/014rvs568 Ministerio de Desarrollo Agropecuario'), (46001, 'https://ror.org/014vqnj59', 'de', 1, 'https://ror.org/014vqnj59 Krankenhaus der Augustinerinnen'), (46002, 'https://ror.org/014wr0t03', 'en', 1, 'https://ror.org/014wr0t03 Friends of the Global Fight'), (46003, 'https://ror.org/014xpbn19', 'fr', 1, 'https://ror.org/014xpbn19 Entretiens de Rééducation et Réadaptation Fonctionnelles'), (46004, 'https://ror.org/014xsev03', 'en', 1, 'https://ror.org/014xsev03 Agro Business Park'), (46005, 'https://ror.org/014yket62', 'no_lang_code', 1, 'https://ror.org/014yket62 Opera Software (Ireland)'), (46006, 'https://ror.org/0150aaa23', 'no_lang_code', 1, 'https://ror.org/0150aaa23 Excelitas Technologies (Singapore)'), (46007, 'https://ror.org/0152hnc69', 'en', 1, 'https://ror.org/0152hnc69 Engineers Without Borders Canada Ingénieurs sans Frontières Canada'), (46008, 'https://ror.org/0154rgv60', 'no_lang_code', 1, 'https://ror.org/0154rgv60 Prima Alloy Steel Universal (Indonesia)'), (46009, 'https://ror.org/01561s686', 'en', 1, 'https://ror.org/01561s686 Creative Research'), (46010, 'https://ror.org/015b17453', 'en', 1, 'https://ror.org/015b17453 Kagoshima Prefectural Institute For Education Research 鹿児島県総合教育センター'), (46011, 'https://ror.org/015bg7p91', 'en', 1, 'https://ror.org/015bg7p91 International Pacific University Women''s College 環太平洋大学短期大学部'), (46012, 'https://ror.org/015c8af10', 'no_lang_code', 1, 'https://ror.org/015c8af10 Mitsubishi Chemical (Germany)'), (46013, 'https://ror.org/015cafh73', 'no_lang_code', 1, 'https://ror.org/015cafh73 Taisei (Japan) 大成建設株式会社'), (46014, 'https://ror.org/015chfs79', 'no_lang_code', 1, 'https://ror.org/015chfs79 ION Engineering (United States)'), (46015, 'https://ror.org/015eg4898', 'en', 1, 'https://ror.org/015eg4898 Moreland City Council'), (46016, 'https://ror.org/015gd1034', 'no_lang_code', 1, 'https://ror.org/015gd1034 Applied Research in Acoustics (United States)'), (46017, 'https://ror.org/015hjhv86', 'no_lang_code', 1, 'https://ror.org/015hjhv86 Tungsten Heavy Powder & Parts (United States)'), (46018, 'https://ror.org/015hz7767', 'en', 1, 'https://ror.org/015hz7767 Fraunhofer Italia Research'), (46019, 'https://ror.org/015j6pf88', 'en', 1, 'https://ror.org/015j6pf88 India Heritage Research Foundation'), (46020, 'https://ror.org/015kqsb22', 'en', 1, 'https://ror.org/015kqsb22 Fukuoka College of Agriculture 福岡県農業大学校'), (46021, 'https://ror.org/015ktc526', 'de', 1, 'https://ror.org/015ktc526 Forschungsgemeinschaft Werkzeuge und Werkstoffe'), (46022, 'https://ror.org/015kxhg94', 'en', 1, 'https://ror.org/015kxhg94 Niijima Gakuen Junior College 新島学園短期大学'), (46023, 'https://ror.org/015p0jm93', 'no_lang_code', 1, 'https://ror.org/015p0jm93 Aoyama Gakuin Kindergarten 青山学院幼稚園'), (46024, 'https://ror.org/015q1p728', 'pt', 1, 'https://ror.org/015q1p728 Fundação Museu do Homem Americano'), (46025, 'https://ror.org/015sncd69', 'en', 1, 'https://ror.org/015sncd69 Islamic Azad University of Mahabad دانشگاه آزاد اسلامی واحد مهاباد'), (46026, 'https://ror.org/015wmee04', 'en', 1, 'https://ror.org/015wmee04 Hollywood Graduate School Of Beauty Business 美容事業のハリウッド大学院'), (46027, 'https://ror.org/015y2tg27', 'en', 1, 'https://ror.org/015y2tg27 Directed Energy Professional Society'), (46028, 'https://ror.org/015yc3t03', 'no_lang_code', 1, 'https://ror.org/015yc3t03 SITAEL (Italy)'), (46029, 'https://ror.org/0162qed39', 'no_lang_code', 1, 'https://ror.org/0162qed39 Toyo Tire and Rubber (Japan) 東洋ゴム工業株式会社'), (46030, 'https://ror.org/0165gz615', 'en', 1, 'https://ror.org/0165gz615 Leibniz Institute for Psychology Leibniz-Institut für Psychologie'), (46031, 'https://ror.org/0166b9n36', 'id', 1, 'https://ror.org/0166b9n36 Universitas Amir Hamzah'), (46032, 'https://ror.org/016731f38', 'no_lang_code', 1, 'https://ror.org/016731f38 Zimmer Biomet (Germany)'), (46033, 'https://ror.org/0168qf015', 'en', 1, 'https://ror.org/0168qf015 Center for a New American Security'), (46034, 'https://ror.org/0168t8783', 'en', 1, 'https://ror.org/0168t8783 Bent Creek Institute'), (46035, 'https://ror.org/016cvn656', 'en', 1, 'https://ror.org/016cvn656 MassDevelopment'), (46036, 'https://ror.org/016cxyb17', 'en', 1, 'https://ror.org/016cxyb17 Education Resource Strategies'), (46037, 'https://ror.org/016e8pb27', 'no_lang_code', 1, 'https://ror.org/016e8pb27 CisThera (United States)'), (46038, 'https://ror.org/016ebj734', 'en', 1, 'https://ror.org/016ebj734 Tsuchiura City Museum 土浦市立博物館'), (46039, 'https://ror.org/016gd3115', 'en', 1, 'https://ror.org/016gd3115 Metro South Health'), (46040, 'https://ror.org/016j41127', 'en', 1, 'https://ror.org/016j41127 Changji University 昌吉学院'), (46041, 'https://ror.org/016kvft77', 'no_lang_code', 1, 'https://ror.org/016kvft77 Hyundai Motors (South Korea) 현대자동차'), (46042, 'https://ror.org/016mey390', 'no_lang_code', 1, 'https://ror.org/016mey390 Rafael Advanced Defense Systems (Israel) רפאל - מערכות לחימה מתקדמות בע"מ'), (46043, 'https://ror.org/016mfhr46', 'en', 1, 'https://ror.org/016mfhr46 Kobe Rokko Island High School 神戸市立六甲アイランド高等学校'), (46044, 'https://ror.org/016myq798', 'en', 1, 'https://ror.org/016myq798 American Committee for the Weizmann Institute of Science'), (46045, 'https://ror.org/016nx0z25', 'en', 1, 'https://ror.org/016nx0z25 Government Chemist Laboratory Agency'), (46046, 'https://ror.org/016pv1z16', 'en', 1, 'https://ror.org/016pv1z16 Video Pool Media Arts Centre'), (46047, 'https://ror.org/016qc0h19', 'en', 1, 'https://ror.org/016qc0h19 Shinshu Honan Junior College 信州豊南短期大学'), (46048, 'https://ror.org/016qrrn27', 'en', 1, 'https://ror.org/016qrrn27 Shizuoka Prefectural Science and Technology High School 静岡県立科学技術高等学校'), (46049, 'https://ror.org/016r17v86', 'en', 1, 'https://ror.org/016r17v86 Future Library'), (46050, 'https://ror.org/016rz1a24', 'no_lang_code', 1, 'https://ror.org/016rz1a24 Lockheed Martin (Australia)'), (46051, 'https://ror.org/016sgt720', 'no_lang_code', 1, 'https://ror.org/016sgt720 Morgan Advanced Materials (Germany)'), (46052, 'https://ror.org/016t76z82', 'no_lang_code', 1, 'https://ror.org/016t76z82 Mitsubishi Motors (Japan) 三菱自動車工業株式会社'), (46053, 'https://ror.org/016yfhd37', 'en', 1, 'https://ror.org/016yfhd37 Kawaguchi Junior College 川口短期大学'), (46054, 'https://ror.org/016zkbb25', 'en', 1, 'https://ror.org/016zkbb25 Royal Association for Deaf people'), (46055, 'https://ror.org/0171gx961', 'en', 1, 'https://ror.org/0171gx961 Chiba Museum of Science and Industry 千葉県立現代産業科学館'), (46056, 'https://ror.org/0172eea33', 'it', 1, 'https://ror.org/0172eea33 Studio Associato Gaia'), (46057, 'https://ror.org/0172njy07', 'en', 1, 'https://ror.org/0172njy07 Research Institute for Electromagnetic Materials 電磁材料研究所'), (46058, 'https://ror.org/01742jq13', 'en', 1, 'https://ror.org/01742jq13 Mount Sinai Beth Israel'), (46059, 'https://ror.org/01761e930', 'en', 1, 'https://ror.org/01761e930 Turku PET Centre'), (46060, 'https://ror.org/0176acm89', 'en', 1, 'https://ror.org/0176acm89 Cancer Research for the Ozarks'), (46061, 'https://ror.org/01784jw84', 'no_lang_code', 1, 'https://ror.org/01784jw84 AT&T (United Kingdom)'), (46062, 'https://ror.org/017a3va29', 'de', 1, 'https://ror.org/017a3va29 Elternverein für Leukämie- und Krebskranke Kinder Gießen'), (46063, 'https://ror.org/017bgge88', 'no_lang_code', 1, 'https://ror.org/017bgge88 Medosome Biotec (United States)'), (46064, 'https://ror.org/017bwjv47', 'es', 1, 'https://ror.org/017bwjv47 Instituto Boliviano de Ciencia y Tecnología Nuclear'), (46065, 'https://ror.org/017d0p023', 'en', 1, 'https://ror.org/017d0p023 Hiroshima Prefectural Museum of History 広島県立歴史博物館'), (46066, 'https://ror.org/017jh6627', 'en', 1, 'https://ror.org/017jh6627 Center for the Advancement of Natural Discoveries using Light Emission'), (46067, 'https://ror.org/017qkhg51', 'no_lang_code', 1, 'https://ror.org/017qkhg51 AES (United Kingdom)'), (46068, 'https://ror.org/017yqqp60', 'en', 1, 'https://ror.org/017yqqp60 Intersect'), (46069, 'https://ror.org/017z4ep79', 'no_lang_code', 1, 'https://ror.org/017z4ep79 Maxim Integrated (Germany)'), (46070, 'https://ror.org/017zkwz61', 'en', 1, 'https://ror.org/017zkwz61 University Centre Saint-Ignatius Antwerp'), (46071, 'https://ror.org/017zzp047', 'no_lang_code', 1, 'https://ror.org/017zzp047 Nordson (United Kingdom)'), (46072, 'https://ror.org/0183mt691', 'en', 1, 'https://ror.org/0183mt691 Hajera Taju University College'), (46073, 'https://ror.org/0186a0992', 'en', 1, 'https://ror.org/0186a0992 Kanazawa Municipal Kenrokuen Elementary School 金沢市立兼六小学校'), (46074, 'https://ror.org/0187t3494', 'en', 1, 'https://ror.org/0187t3494 Landesmuseum Swiss National Museum'), (46075, 'https://ror.org/01891yy30', 'no_lang_code', 1, 'https://ror.org/01891yy30 Arbressence (Canada)'), (46076, 'https://ror.org/018apx651', 'en', 1, 'https://ror.org/018apx651 North Central Catchment Management Authority'), (46077, 'https://ror.org/018bhgj90', 'no_lang_code', 1, 'https://ror.org/018bhgj90 Ichinomiya City Museum 一宮市博物館'), (46078, 'https://ror.org/018eag955', 'en', 1, 'https://ror.org/018eag955 American Society of Tropical Medicine and Hygiene'), (46079, 'https://ror.org/018ef1r58', 'en', 1, 'https://ror.org/018ef1r58 Economic Development Agency of the Principality of Asturias Instituto de Desarrollo Económico del Principado de Asturias'), (46080, 'https://ror.org/018f17m70', 'no_lang_code', 1, 'https://ror.org/018f17m70 Sveučilište Vitez Univerzitet Vitez'), (46081, 'https://ror.org/018fcax10', 'en', 1, 'https://ror.org/018fcax10 Kenya National Library Service'), (46082, 'https://ror.org/018ggen26', 'en', 1, 'https://ror.org/018ggen26 China Agricultural Museum'), (46083, 'https://ror.org/018ha0a04', 'en', 1, 'https://ror.org/018ha0a04 Tianjin Research Institute of Water Transport Engineering 天科院官方网站'), (46084, 'https://ror.org/018m4ac75', 'en', 1, 'https://ror.org/018m4ac75 Technology Partnership of Nagoya University'), (46085, 'https://ror.org/018mj7168', 'no_lang_code', 1, 'https://ror.org/018mj7168 Furukawa Electric (Germany)'), (46086, 'https://ror.org/018pwv131', 'no_lang_code', 1, 'https://ror.org/018pwv131 Zumtobel Group (Austria)'), (46087, 'https://ror.org/018qh7880', 'no_lang_code', 1, 'https://ror.org/018qh7880 Introspective Systems (United States)'), (46088, 'https://ror.org/018qpjf36', 'pt', 1, 'https://ror.org/018qpjf36 Minas Jr'), (46089, 'https://ror.org/018tpb721', 'en', 1, 'https://ror.org/018tpb721 Chesapeake Public Schools'), (46090, 'https://ror.org/018wrwp68', 'en', 1, 'https://ror.org/018wrwp68 Date City Institute of Funnkawann Culture'), (46091, 'https://ror.org/018ycpa16', 'en', 1, 'https://ror.org/018ycpa16 Ancient Orient Museum 古代オリエント博物館'), (46092, 'https://ror.org/018yv5e79', 'en', 1, 'https://ror.org/018yv5e79 Kochi Gakuen College 高知学園短期大学'), (46093, 'https://ror.org/018z3cr21', 'no_lang_code', 1, 'https://ror.org/018z3cr21 Dongbu HiTek (South Korea) 동부 하이텍'), (46094, 'https://ror.org/018z5vy82', 'no_lang_code', 1, 'https://ror.org/018z5vy82 Sage Science (United States)'), (46095, 'https://ror.org/018zgk904', 'no_lang_code', 1, 'https://ror.org/018zgk904 Ontario Drive & Gear (Canada)'), (46096, 'https://ror.org/018zm7341', 'en', 1, 'https://ror.org/018zm7341 Department of Environment and Natural Resources'), (46097, 'https://ror.org/0192j7z55', 'en', 1, 'https://ror.org/0192j7z55 Zhejiang Industry Polytechnic College 浙江工业职业技术学院'), (46098, 'https://ror.org/0192k3w92', 'es', 1, 'https://ror.org/0192k3w92 Centro Universitario Ciudad Vieja'), (46099, 'https://ror.org/0193wvd18', 'en', 1, 'https://ror.org/0193wvd18 Ilkley Coronation Hospital'), (46100, 'https://ror.org/019662654', 'en', 1, 'https://ror.org/019662654 Chinese Materials Research Society 中国材料研究学会'), (46101, 'https://ror.org/0196q0t51', 'no_lang_code', 1, 'https://ror.org/0196q0t51 Esri (Canada)'), (46102, 'https://ror.org/0197y4k63', 'no_lang_code', 1, 'https://ror.org/0197y4k63 MinebeaMitsumi (Germany)'), (46103, 'https://ror.org/019dkz313', 'en', 1, 'https://ror.org/019dkz313 Ningxia Academy of Agriculture and Forestry Sciences 农林科学院宁夏科学院'), (46104, 'https://ror.org/019e98t43', 'no_lang_code', 1, 'https://ror.org/019e98t43 Brother Industries (Japan) ブラザー工業株式会社'), (46105, 'https://ror.org/019nchk62', 'no_lang_code', 1, 'https://ror.org/019nchk62 Inversa Systems (Canada)'), (46106, 'https://ror.org/019njds38', 'en', 1, 'https://ror.org/019njds38 Universal Technical Institute'), (46107, 'https://ror.org/019pmpn80', 'no_lang_code', 1, 'https://ror.org/019pmpn80 Stryker (United Kingdom)'), (46108, 'https://ror.org/019pzpd68', 'no_lang_code', 1, 'https://ror.org/019pzpd68 Kodak (Israel)'), (46109, 'https://ror.org/019tpnt53', 'en', 1, 'https://ror.org/019tpnt53 National Museum of Art Osaka 国立国際美術館'), (46110, 'https://ror.org/019xk7v05', 'es', 1, 'https://ror.org/019xk7v05 Fundación para la Educación y el Desarrollo Social'), (46111, 'https://ror.org/019xzz882', 'no_lang_code', 1, 'https://ror.org/019xzz882 Deutsche Telekom (Singapore)'), (46112, 'https://ror.org/019znhj20', 'no_lang_code', 1, 'https://ror.org/019znhj20 Schneider Electric (Australia)'), (46113, 'https://ror.org/019zpgk48', 'en', 1, 'https://ror.org/019zpgk48 Medical Lake School District'), (46114, 'https://ror.org/01a00et54', 'en', 1, 'https://ror.org/01a00et54 Harry S Truman Coordinating Council'), (46115, 'https://ror.org/01a0fby34', 'en', 1, 'https://ror.org/01a0fby34 Advanced Machining Technology and Development Association 先端加工機械技術振興協会'), (46116, 'https://ror.org/01a2z2x66', 'en', 1, 'https://ror.org/01a2z2x66 Cologne Institute for Economic Research Institut der deutschen Wirtschaft Köln'), (46117, 'https://ror.org/01a3xr262', 'en', 1, 'https://ror.org/01a3xr262 Islamic Azad University Mobarakeh دانشگاه آزاد اسلامی واحد مبارکه'), (46118, 'https://ror.org/01a58zy03', 'de', 1, 'https://ror.org/01a58zy03 Blanke Meier Evers Rechtsanwälte in Partnerschaft'), (46119, 'https://ror.org/01ab8hq43', 'en', 1, 'https://ror.org/01ab8hq43 Open Evidence'), (46120, 'https://ror.org/01ab9mk90', 'en', 1, 'https://ror.org/01ab9mk90 Ritsumeikan Junior and Senior High School 立命館中学校・高等学校'), (46121, 'https://ror.org/01abqd782', 'no_lang_code', 1, 'https://ror.org/01abqd782 Echostar (Ukraine)'), (46122, 'https://ror.org/01ae4qf10', 'en', 1, 'https://ror.org/01ae4qf10 CPC Heilongjiang Provincial Committee Party School 中共黑龙江省委党校'), (46123, 'https://ror.org/01af58f81', 'no_lang_code', 1, 'https://ror.org/01af58f81 Stanley Electric (Japan) スタンレー電気株式会社'), (46124, 'https://ror.org/01afrat76', 'en', 1, 'https://ror.org/01afrat76 Oita Prefectural Hiji support school 大分県立日出支援学校'), (46125, 'https://ror.org/01aj50m26', 'en', 1, 'https://ror.org/01aj50m26 Copper Development Association'), (46126, 'https://ror.org/01ajbb580', 'en', 1, 'https://ror.org/01ajbb580 Watertown City School District'), (46127, 'https://ror.org/01ak24c12', 'en', 1, 'https://ror.org/01ak24c12 Fraunhofer Institute for Applied Information Technology Fraunhofer-Institut für Angewandte Informationstechnik'), (46128, 'https://ror.org/01an04p26', 'no_lang_code', 1, 'https://ror.org/01an04p26 Stryker (Israel)'), (46129, 'https://ror.org/01ank1e73', 'de', 1, 'https://ror.org/01ank1e73 Deutsches Kupferinstitut Berufsverband'), (46130, 'https://ror.org/01ar5kd02', 'en', 1, 'https://ror.org/01ar5kd02 Tochigi Prefectural Museum of Fine Arts 栃木県立美術館'), (46131, 'https://ror.org/01aspja26', 'en', 1, 'https://ror.org/01aspja26 University of the West Indies'), (46132, 'https://ror.org/01atcss13', 'en', 1, 'https://ror.org/01atcss13 American Association of Neurological Surgeons'), (46133, 'https://ror.org/01atqs537', 'no_lang_code', 1, 'https://ror.org/01atqs537 Wikimedia Ukraine Вікімедіа Україна'), (46134, 'https://ror.org/01azggh38', 'no_lang_code', 1, 'https://ror.org/01azggh38 Sumitomo Riko (Japan) 住友理工株式会社'), (46135, 'https://ror.org/01b021x78', 'en', 1, 'https://ror.org/01b021x78 Baltimore County Public Library'), (46136, 'https://ror.org/01b123706', 'en', 1, 'https://ror.org/01b123706 Miyagi Prefectural Ishinomaki Support School 宮城県立石巻支援学校'), (46137, 'https://ror.org/01b2hfd49', 'no_lang_code', 1, 'https://ror.org/01b2hfd49 Energy Sense Finance (United States)'); INSERT INTO `rors` VALUES (46138, 'https://ror.org/01b55ta41', 'pt', 1, 'https://ror.org/01b55ta41 Conselho Nacional de Pesquisa e Pós-graduação em Direito'), (46139, 'https://ror.org/01b606g91', 'no_lang_code', 1, 'https://ror.org/01b606g91 Miba (Austria)'), (46140, 'https://ror.org/01b6ear34', 'no_lang_code', 1, 'https://ror.org/01b6ear34 Sulzer (United Kingdom)'), (46141, 'https://ror.org/01b719a04', 'en', 1, 'https://ror.org/01b719a04 International Society for Vaccines'), (46142, 'https://ror.org/01b73x603', 'en', 1, 'https://ror.org/01b73x603 Institute of Ethnology and Folklore Studies with Ethnographic Museum Институтът за етнология и фолклористика с Етнографски музей при БАН'), (46143, 'https://ror.org/01b7car24', 'en', 1, 'https://ror.org/01b7car24 Pakistan Nuclear Regulatory Authority پاکستان نيؤكلر ريگيلرٹوى اثھارٹى'), (46144, 'https://ror.org/01b7dk816', 'no_lang_code', 1, 'https://ror.org/01b7dk816 Wikimedia Serbia Викимедија Србије'), (46145, 'https://ror.org/01b7ggh82', 'en', 1, 'https://ror.org/01b7ggh82 Kolej Universiti Islam Melaka University College of Islam Melaka'), (46146, 'https://ror.org/01b7rff52', 'en', 1, 'https://ror.org/01b7rff52 Yamaguchi Prefectural Shimonoseki Industrial School 山口県立下関工業高等学校'), (46147, 'https://ror.org/01b98w967', 'en', 1, 'https://ror.org/01b98w967 Main Roads Western Australia'), (46148, 'https://ror.org/01baw3d45', 'no_lang_code', 1, 'https://ror.org/01baw3d45 Shukutoku Junior College 淑徳短期大学'), (46149, 'https://ror.org/01bb7mj11', 'de', 1, 'https://ror.org/01bb7mj11 Ostalb-Klinikum Aalen'), (46150, 'https://ror.org/01bcadh60', 'no_lang_code', 1, 'https://ror.org/01bcadh60 Manroland (Germany)'), (46151, 'https://ror.org/01bdarh28', 'no_lang_code', 1, 'https://ror.org/01bdarh28 International Baby Food Action Network'), (46152, 'https://ror.org/01be2k939', 'no_lang_code', 1, 'https://ror.org/01be2k939 Dai Nippon Printing (Japan) 大日本印刷'), (46153, 'https://ror.org/01bggjn73', 'no_lang_code', 1, 'https://ror.org/01bggjn73 Macronix International (Taiwan)'), (46154, 'https://ror.org/01bgmsb44', 'en', 1, 'https://ror.org/01bgmsb44 Department for International Trade'), (46155, 'https://ror.org/01bjtb363', 'no_lang_code', 1, 'https://ror.org/01bjtb363 ProAmpac (United States)'), (46156, 'https://ror.org/01bnqfz49', 'en', 1, 'https://ror.org/01bnqfz49 Dawliffe Hall Education Foundation'), (46157, 'https://ror.org/01brtaa74', 'en', 1, 'https://ror.org/01brtaa74 Kani City Sunan Junior High School 蘇南中学校'), (46158, 'https://ror.org/01btqj997', 'de', 1, 'https://ror.org/01btqj997 Salomon Ludwig Steinheim-Institut'), (46159, 'https://ror.org/01bvpmp82', 'no_lang_code', 1, 'https://ror.org/01bvpmp82 Advantest (Japan) 株式会社アドバンテスト'), (46160, 'https://ror.org/01bvqg661', 'no_lang_code', 1, 'https://ror.org/01bvqg661 Nikon (Japan) 株式会社ニコン'), (46161, 'https://ror.org/01byxk048', 'en', 1, 'https://ror.org/01byxk048 National Hospital Organization Iobyoin 国立病院機構医王病院'), (46162, 'https://ror.org/01bzz5b22', 'en', 1, 'https://ror.org/01bzz5b22 Islamic Azad University Dehaghan دانشگاه آزاد دهاقان اسلامی'), (46163, 'https://ror.org/01c00xz18', 'no_lang_code', 1, 'https://ror.org/01c00xz18 Visiscience (United States)'), (46164, 'https://ror.org/01c3b5v35', 'en', 1, 'https://ror.org/01c3b5v35 International Institute of Advanced Islamic Studies'), (46165, 'https://ror.org/01c3enh80', 'en', 1, 'https://ror.org/01c3enh80 Northwest African American Museum'), (46166, 'https://ror.org/01c442234', 'it', 1, 'https://ror.org/01c442234 Istituzione delle Biblioteche di Roma'), (46167, 'https://ror.org/01c4r0z03', 'no_lang_code', 1, 'https://ror.org/01c4r0z03 Applied Materials (Singapore)'), (46168, 'https://ror.org/01c5khf59', 'en', 1, 'https://ror.org/01c5khf59 Tourism College of Zhejiang 浙江旅游职业学院'), (46169, 'https://ror.org/01c5ysq07', 'en', 1, 'https://ror.org/01c5ysq07 Forest Industry Research Institute Viện Nghiên cứu Công nghiệp rừng'), (46170, 'https://ror.org/01c697313', 'en', 1, 'https://ror.org/01c697313 National Institute of Technology, Kumamoto College 熊本高等専門学校'), (46171, 'https://ror.org/01c78gc17', 'no_lang_code', 1, 'https://ror.org/01c78gc17 Immunomic Therapeutics (United States)'), (46172, 'https://ror.org/01c7g8398', 'fi', 1, 'https://ror.org/01c7g8398 Wikimedia Suomi'), (46173, 'https://ror.org/01c7wjq44', 'en', 1, 'https://ror.org/01c7wjq44 Contra Costa County Library'), (46174, 'https://ror.org/01c9fx689', 'no_lang_code', 1, 'https://ror.org/01c9fx689 Tsutsujigaoka Elementary School 名張市つつじがおか小学校'), (46175, 'https://ror.org/01cc1db63', 'no_lang_code', 1, 'https://ror.org/01cc1db63 Carl Zeiss (Australia)'), (46176, 'https://ror.org/01chd1z63', 'no_lang_code', 1, 'https://ror.org/01chd1z63 Joyson Safety Systems (Germany)'), (46177, 'https://ror.org/01chj3z31', 'en', 1, 'https://ror.org/01chj3z31 Associação Médica Brasileira Brazilian Medical Association'), (46178, 'https://ror.org/01chnvp81', 'no_lang_code', 1, 'https://ror.org/01chnvp81 Flow International Corporation (Germany)'), (46179, 'https://ror.org/01chtz990', 'en', 1, 'https://ror.org/01chtz990 Foundation for Louisiana'), (46180, 'https://ror.org/01cjj0660', 'en', 1, 'https://ror.org/01cjj0660 Institute of Environment and Resource System 環境資源システム総合研究所'), (46181, 'https://ror.org/01ckbhd80', 'en', 1, 'https://ror.org/01ckbhd80 National Australia Bank'), (46182, 'https://ror.org/01cm06k44', 'en', 1, 'https://ror.org/01cm06k44 American University in London'), (46183, 'https://ror.org/01cm93p29', 'en', 1, 'https://ror.org/01cm93p29 Fukui Prefectural Dinosaur Museum 福井県立恐竜博物館'), (46184, 'https://ror.org/01cnyad13', 'en', 1, 'https://ror.org/01cnyad13 People''s Liberation Army 401 Hospital 中国人民解放军第401医院'), (46185, 'https://ror.org/01cnzjq23', 'en', 1, 'https://ror.org/01cnzjq23 Fujimoto Dental and Oral Surgery Clinic 藤本歯科口腔外科クリニック'), (46186, 'https://ror.org/01crbhp32', 'fi', 1, 'https://ror.org/01crbhp32 Lounais-Suomen Syöpäyhdistys'), (46187, 'https://ror.org/01crf4k59', 'en', 1, 'https://ror.org/01crf4k59 University of Modern Sciences جامعة العلوم الحديثة'), (46188, 'https://ror.org/01crm2177', 'en', 1, 'https://ror.org/01crm2177 Koshien Junior College 甲子園短期大学'), (46189, 'https://ror.org/01ctx9289', 'pt', 1, 'https://ror.org/01ctx9289 Fundação Jorge Duprat Figueiredo de Segurança e Medicina do Trabalho'), (46190, 'https://ror.org/01cwwvj38', 'no_lang_code', 1, 'https://ror.org/01cwwvj38 BOE Technology Group (China)'), (46191, 'https://ror.org/01cxpkg92', 'no_lang_code', 1, 'https://ror.org/01cxpkg92 Percuros (Netherlands)'), (46192, 'https://ror.org/01cywgd53', 'en', 1, 'https://ror.org/01cywgd53 American College of Radiology Imaging Network'), (46193, 'https://ror.org/01cyx8116', 'en', 1, 'https://ror.org/01cyx8116 West Georgia Technical College'), (46194, 'https://ror.org/01cyxvw51', 'en', 1, 'https://ror.org/01cyxvw51 Nuclear Institute for Agriculture and Biology'), (46195, 'https://ror.org/01cz0ts58', 'no_lang_code', 1, 'https://ror.org/01cz0ts58 Lucent Optics (United States)'), (46196, 'https://ror.org/01d08jk87', 'en', 1, 'https://ror.org/01d08jk87 BARKA Foundation'), (46197, 'https://ror.org/01d0tvs72', 'en', 1, 'https://ror.org/01d0tvs72 Mesothelioma Applied Research Foundation'), (46198, 'https://ror.org/01d186671', 'no_lang_code', 1, 'https://ror.org/01d186671 Tecnic (Italy)'), (46199, 'https://ror.org/01d36yb27', 'no_lang_code', 1, 'https://ror.org/01d36yb27 Kobe Steel (Japan) 株式会社神戸製鋼所'), (46200, 'https://ror.org/01d582b74', 'en', 1, 'https://ror.org/01d582b74 National Transportation Safety Board'), (46201, 'https://ror.org/01d6dvg07', 'en', 1, 'https://ror.org/01d6dvg07 North Dakota Protection and Advocacy Project'), (46202, 'https://ror.org/01d6jx411', 'en', 1, 'https://ror.org/01d6jx411 Children’s AIDS Fund International'), (46203, 'https://ror.org/01d71b291', 'no_lang_code', 1, 'https://ror.org/01d71b291 British American Tobacco (Canada)'), (46204, 'https://ror.org/01d809t39', 'es', 1, 'https://ror.org/01d809t39 Universidad de Sonsonate'), (46205, 'https://ror.org/01d9rtb50', 'en', 1, 'https://ror.org/01d9rtb50 Kumamoto Prefectural Board of Education 熊本県教育委員会'), (46206, 'https://ror.org/01dan7p53', 'en', 1, 'https://ror.org/01dan7p53 Guangzhou Vocational College of Science and Technology 广州科技职业技术学院'), (46207, 'https://ror.org/01dbckq22', 'en', 1, 'https://ror.org/01dbckq22 Krajská Hygienická Stanice Moravskoslezského Kraje Regional Public Health Authority of Moravian - Silesian Region'), (46208, 'https://ror.org/01dcaj468', 'no_lang_code', 1, 'https://ror.org/01dcaj468 Nokia (Ireland)'), (46209, 'https://ror.org/01dez6v88', 'en', 1, 'https://ror.org/01dez6v88 International Planned Parenthood Federation'), (46210, 'https://ror.org/01dfm1a30', 'en', 1, 'https://ror.org/01dfm1a30 National Institute of Education Sciences 中国教育科学研究院'), (46211, 'https://ror.org/01dfmhm16', 'en', 1, 'https://ror.org/01dfmhm16 British Blood Transfusion Society'), (46212, 'https://ror.org/01dgjdp93', 'en', 1, 'https://ror.org/01dgjdp93 Hanseatic Institute of Technology'), (46213, 'https://ror.org/01dmzah58', 'en', 1, 'https://ror.org/01dmzah58 Foundation for Environment Climate and Technology'), (46214, 'https://ror.org/01drtms03', 'pt', 1, 'https://ror.org/01drtms03 Instituto Federal de Educação, Ciência e Tecnologia do Sul de Minas, Instituto Federal do Sul de Minas'), (46215, 'https://ror.org/01dw3yn87', 'no_lang_code', 1, 'https://ror.org/01dw3yn87 IHS Markit (Australia)'), (46216, 'https://ror.org/01dwc1797', 'en', 1, 'https://ror.org/01dwc1797 Northern Ireland Hospice'), (46217, 'https://ror.org/01dwwtp07', 'en', 1, 'https://ror.org/01dwwtp07 Tokyo Metropolitan East High School 東京都立東高等学校'), (46218, 'https://ror.org/01dx0e286', 'en', 1, 'https://ror.org/01dx0e286 Osaka Prefectural Horticulture High School 大阪府立園芸高等学校'), (46219, 'https://ror.org/01dxqnh08', 'en', 1, 'https://ror.org/01dxqnh08 Mie Prefecture TatsuTsu Commercial High School 三重県立津商業高等学校'), (46220, 'https://ror.org/01dyx2092', 'no_lang_code', 1, 'https://ror.org/01dyx2092 Advanced Electrophoresis Solutions (Canada)'), (46221, 'https://ror.org/01e4dyg78', 'no_lang_code', 1, 'https://ror.org/01e4dyg78 Honeywell (Australia)'), (46222, 'https://ror.org/01e55bn36', 'no_lang_code', 1, 'https://ror.org/01e55bn36 Lutron Electronics (United States)'), (46223, 'https://ror.org/01e5f0y27', 'no_lang_code', 1, 'https://ror.org/01e5f0y27 Evernia (Czechia)'), (46224, 'https://ror.org/01e6m8g97', 'en', 1, 'https://ror.org/01e6m8g97 Fukui City Museum of Natural History'), (46225, 'https://ror.org/01e6tbq77', 'pt', 1, 'https://ror.org/01e6tbq77 Sociedade Latino Americana de Biomateriais e Órgãos Artificiais'), (46226, 'https://ror.org/01eagw932', 'tr', 1, 'https://ror.org/01eagw932 Çamlıca Erdem Hastahanesi'), (46227, 'https://ror.org/01ee8e975', 'no_lang_code', 1, 'https://ror.org/01ee8e975 Showagakuin Junior College 昭和学院短期大学'), (46228, 'https://ror.org/01efw7g62', 'en', 1, 'https://ror.org/01efw7g62 North Carolina Association for Biomedical Research'), (46229, 'https://ror.org/01efzmh71', 'en', 1, 'https://ror.org/01efzmh71 Manhattan Institute for Policy Research'), (46230, 'https://ror.org/01emdt307', 'fr', 1, 'https://ror.org/01emdt307 Université de Fianarantsoa'), (46231, 'https://ror.org/01en4s460', 'en', 1, 'https://ror.org/01en4s460 Twin Cities Orthopedics'), (46232, 'https://ror.org/01erb2j90', 'en', 1, 'https://ror.org/01erb2j90 Baku Business University Bakı Biznes Universiteti Бакинский Университет Бизнеса'), (46233, 'https://ror.org/01etfxm56', 'en', 1, 'https://ror.org/01etfxm56 China National Bamboo Research Center 国家林业局竹子研究开发中心'), (46234, 'https://ror.org/01etv2861', 'no_lang_code', 1, 'https://ror.org/01etv2861 Tokyo Metropolitan Musashigaoka High School 東京都立武蔵丘高等学校'), (46235, 'https://ror.org/01ew37b76', 'en', 1, 'https://ror.org/01ew37b76 Collaboration for Australian Weather and Climate Research'), (46236, 'https://ror.org/01exnz278', 'no_lang_code', 1, 'https://ror.org/01exnz278 GEM Tox Consultants & Labs (United States)'), (46237, 'https://ror.org/01eyenr26', 'no_lang_code', 1, 'https://ror.org/01eyenr26 Dolby (United States)'), (46238, 'https://ror.org/01ezmdv61', 'no_lang_code', 1, 'https://ror.org/01ezmdv61 BitCan (Canada)'), (46239, 'https://ror.org/01ezqah87', 'en', 1, 'https://ror.org/01ezqah87 Kitakyushu National College of Technology 北九州工業高等専門学校'), (46240, 'https://ror.org/01ezy0w74', 'no_lang_code', 1, 'https://ror.org/01ezy0w74 Bayer (New Zealand)'), (46241, 'https://ror.org/01f01fm15', 'fr', 1, 'https://ror.org/01f01fm15 NephroCare Tassin-Charcot'), (46242, 'https://ror.org/01f0mje62', 'en', 1, 'https://ror.org/01f0mje62 American Medical Women''s Association'), (46243, 'https://ror.org/01f0q1x96', 'no_lang_code', 1, 'https://ror.org/01f0q1x96 EVRAZ (Canada)'), (46244, 'https://ror.org/01f10xn48', 'no_lang_code', 1, 'https://ror.org/01f10xn48 NTN (Japan) NTN株式会社'), (46245, 'https://ror.org/01f18s848', 'no_lang_code', 1, 'https://ror.org/01f18s848 Mission Bio (United States)'), (46246, 'https://ror.org/01f3a0g74', 'en', 1, 'https://ror.org/01f3a0g74 Dayton Clinical Oncology Program'), (46247, 'https://ror.org/01f753h33', 'no_lang_code', 1, 'https://ror.org/01f753h33 Accucaps (Canada)'), (46248, 'https://ror.org/01f7hds15', 'en', 1, 'https://ror.org/01f7hds15 Kobe City Museum 神戸市立博物館'), (46249, 'https://ror.org/01f8c3y78', 'no_lang_code', 1, 'https://ror.org/01f8c3y78 STMicroelectronics (United States)'), (46250, 'https://ror.org/01f8j5z75', 'no_lang_code', 1, 'https://ror.org/01f8j5z75 Maidana Research (United States)'), (46251, 'https://ror.org/01f9db456', 'en', 1, 'https://ror.org/01f9db456 Nitobe Bunka College 新渡戸文化短期大学'), (46252, 'https://ror.org/01fbc7819', 'fr', 1, 'https://ror.org/01fbc7819 Centre Hospitalier de Lens'), (46253, 'https://ror.org/01fdhar48', 'en', 1, 'https://ror.org/01fdhar48 Ibaraki Nature Museum 茨城県自然博物館'), (46254, 'https://ror.org/01fejj311', 'en', 1, 'https://ror.org/01fejj311 International Planned Parenthood Federation'), (46255, 'https://ror.org/01ffhf815', 'no_lang_code', 1, 'https://ror.org/01ffhf815 Flex (Germany)'), (46256, 'https://ror.org/01ffrrm18', 'en', 1, 'https://ror.org/01ffrrm18 Tokushima Prefectural Police 徳島県警察本部'), (46257, 'https://ror.org/01fhp6n41', 'de', 1, 'https://ror.org/01fhp6n41 Forschungsinstitut für Logistik'), (46258, 'https://ror.org/01fht1s55', 'en', 1, 'https://ror.org/01fht1s55 Kyoto Prefectural Nishimaizuru High School 京都府立西舞鶴高等学校'), (46259, 'https://ror.org/01fjm5093', 'no_lang_code', 1, 'https://ror.org/01fjm5093 CM Technologies (United States)'), (46260, 'https://ror.org/01fjnma13', 'no_lang_code', 1, 'https://ror.org/01fjnma13 Advanced Materials Corporation (United States)'), (46261, 'https://ror.org/01fmd5559', 'en', 1, 'https://ror.org/01fmd5559 British Deer Society'), (46262, 'https://ror.org/01fp49n29', 'en', 1, 'https://ror.org/01fp49n29 Gakushuin Primary School 学習院初等科'), (46263, 'https://ror.org/01fp77380', 'no_lang_code', 1, 'https://ror.org/01fp77380 Nichia Corporation (Japan) 日亜化学工業株式会社'), (46264, 'https://ror.org/01fq4h057', 'no_lang_code', 1, 'https://ror.org/01fq4h057 NuVue Therapeutics (United States)'), (46265, 'https://ror.org/01fqm7b41', 'no_lang_code', 1, 'https://ror.org/01fqm7b41 SYNERGX Technologies (Canada)'), (46266, 'https://ror.org/01ftbyb35', 'no_lang_code', 1, 'https://ror.org/01ftbyb35 Johnson Controls (United Kingdom)'), (46267, 'https://ror.org/01ftq2j79', 'en', 1, 'https://ror.org/01ftq2j79 Liaoning Provincial Food and Drug Administration 辽宁省食品药品监督管理局'), (46268, 'https://ror.org/01fwca479', 'en', 1, 'https://ror.org/01fwca479 Consortium of European Research Libraries'), (46269, 'https://ror.org/01fy36683', 'no', 1, 'https://ror.org/01fy36683 Revmatismesykehuset'), (46270, 'https://ror.org/01fykd523', 'en', 1, 'https://ror.org/01fykd523 Queensland Rail'), (46271, 'https://ror.org/01fykt827', 'no_lang_code', 1, 'https://ror.org/01fykt827 Curtiss-Wright (United Kingdom)'), (46272, 'https://ror.org/01g2vd413', 'no_lang_code', 1, 'https://ror.org/01g2vd413 Hunan Mawangdui Hospital'), (46273, 'https://ror.org/01g3dya06', 'en', 1, 'https://ror.org/01g3dya06 Lancaster University Ghana'), (46274, 'https://ror.org/01g3szs55', 'no_lang_code', 1, 'https://ror.org/01g3szs55 Osaka Prefectural Shiroyama High School 大阪府立城山高等学校'), (46275, 'https://ror.org/01g46vk97', 'en', 1, 'https://ror.org/01g46vk97 Hokkaido Kitami Hokuto High School 北海道北見北斗高等学校'), (46276, 'https://ror.org/01g4z8x72', 'en', 1, 'https://ror.org/01g4z8x72 Gunma Industrial Technology Center 群馬県立産業技術センター'), (46277, 'https://ror.org/01g4ze844', 'no_lang_code', 1, 'https://ror.org/01g4ze844 TechnipFMC (Italy)'), (46278, 'https://ror.org/01g571893', 'no_lang_code', 1, 'https://ror.org/01g571893 LuK Lamellen und Kupplungsbau (Germany)'), (46279, 'https://ror.org/01g6f0r63', 'en', 1, 'https://ror.org/01g6f0r63 Nonproliferation Policy Education Center'), (46280, 'https://ror.org/01g6rdp79', 'en', 1, 'https://ror.org/01g6rdp79 Gunma Nikken Polytechnic College 群馬日建工科専門学校'), (46281, 'https://ror.org/01g8cdp94', 'en', 1, 'https://ror.org/01g8cdp94 Ningxia Hui Autonomous Region Peoples Hospital 宁夏回族自治区人民医院'), (46282, 'https://ror.org/01g8tqt55', 'es', 1, 'https://ror.org/01g8tqt55 Universidad del Sol'), (46283, 'https://ror.org/01ga17f59', 'no_lang_code', 1, 'https://ror.org/01ga17f59 Prime Behavior Testing Laboratories (United States)'), (46284, 'https://ror.org/01gb59s19', 'no_lang_code', 1, 'https://ror.org/01gb59s19 SGS (China)'), (46285, 'https://ror.org/01gdpc846', 'es', 1, 'https://ror.org/01gdpc846 Instituto Tecnológico de Apizaco'), (46286, 'https://ror.org/01ge2tp14', 'en', 1, 'https://ror.org/01ge2tp14 Fukui Prefecture Special Education Center 福井県特別支援教育センター'), (46287, 'https://ror.org/01ge62k30', 'en', 1, 'https://ror.org/01ge62k30 Ivory Coast Medical Relief Team'), (46288, 'https://ror.org/01gfjdb18', 'no_lang_code', 1, 'https://ror.org/01gfjdb18 Lenovo (Japan)'), (46289, 'https://ror.org/01gfr8917', 'no_lang_code', 1, 'https://ror.org/01gfr8917 Mahle (United Kingdom)'), (46290, 'https://ror.org/01ghaq010', 'en', 1, 'https://ror.org/01ghaq010 Funders Network on Population, Reproductive Health and Rights'), (46291, 'https://ror.org/01gjjxa05', 'no_lang_code', 1, 'https://ror.org/01gjjxa05 International Game Technology (Germany)'), (46292, 'https://ror.org/01gjxh181', 'en', 1, 'https://ror.org/01gjxh181 Tsu City College 三重短期大学'), (46293, 'https://ror.org/01gk2j051', 'no_lang_code', 1, 'https://ror.org/01gk2j051 Magna International (Germany)'), (46294, 'https://ror.org/01gq10q51', 'de', 1, 'https://ror.org/01gq10q51 Akademie für Technikfolgenabschätzung'), (46295, 'https://ror.org/01gqnz112', 'en', 1, 'https://ror.org/01gqnz112 Vinogradov Institute of Geochemistry Институт геохимии им. А.П. Виноградова СО РАН'), (46296, 'https://ror.org/01gr8nm68', 'no_lang_code', 1, 'https://ror.org/01gr8nm68 Rockwell Automation (Germany)'), (46297, 'https://ror.org/01grmf894', 'en', 1, 'https://ror.org/01grmf894 Smith Institute'), (46298, 'https://ror.org/01grxsm65', 'no_lang_code', 1, 'https://ror.org/01grxsm65 ExxonMobil (Norway)'), (46299, 'https://ror.org/01gtsa866', 'en', 1, 'https://ror.org/01gtsa866 Institute of Biosciences and Bioresources Istituto di Bioscienze e Biorisorse'), (46300, 'https://ror.org/01gtsvp41', 'en', 1, 'https://ror.org/01gtsvp41 Medical Corporation River Mizuma hospital ミズマ病院'), (46301, 'https://ror.org/01gw9ve49', 'no_lang_code', 1, 'https://ror.org/01gw9ve49 EagleBurgmann (Japan)'), (46302, 'https://ror.org/01gwe8p69', 'no_lang_code', 1, 'https://ror.org/01gwe8p69 T2 Systems (Canada)'), (46303, 'https://ror.org/01gyg7015', 'no_lang_code', 1, 'https://ror.org/01gyg7015 Mallinckrodt (Japan)'), (46304, 'https://ror.org/01gzye136', 'en', 1, 'https://ror.org/01gzye136 European Centre for Theoretical Studies in Nuclear Physics and Related Areas'), (46305, 'https://ror.org/01gzzmb44', 'no_lang_code', 1, 'https://ror.org/01gzzmb44 AMF Bakery Systems (United States)'), (46306, 'https://ror.org/01h0eq657', 'no_lang_code', 1, 'https://ror.org/01h0eq657 Henkel (United States)'), (46307, 'https://ror.org/01h18yg90', 'en', 1, 'https://ror.org/01h18yg90 Oita Prefectural Board of Education 大分県教育委員会'), (46308, 'https://ror.org/01h1v4623', 'en', 1, 'https://ror.org/01h1v4623 Association for the Severely Handicapped'), (46309, 'https://ror.org/01h3yks88', 'en', 1, 'https://ror.org/01h3yks88 New York Institute of Technology'), (46310, 'https://ror.org/01h43q230', 'es', 1, 'https://ror.org/01h43q230 Universidad Modular Abierta'), (46311, 'https://ror.org/01h4kpz66', 'en', 1, 'https://ror.org/01h4kpz66 Feza Gürsey Enstitüsü Feza Gürsey Institute'), (46312, 'https://ror.org/01h8yh819', 'pt', 1, 'https://ror.org/01h8yh819 Associação Brasileira de Relações Internacionais'), (46313, 'https://ror.org/01h9gbf83', 'en', 1, 'https://ror.org/01h9gbf83 Fukushima Prefectural Museum of Art 福島県立美術館'), (46314, 'https://ror.org/01hadm580', 'no_lang_code', 1, 'https://ror.org/01hadm580 Caterpillar (United Kingdom)'), (46315, 'https://ror.org/01hbm5940', 'en', 1, 'https://ror.org/01hbm5940 Jiangxi Maternal and Child Health Hospital 江西省妇幼保健院'), (46316, 'https://ror.org/01hbz8t53', 'no_lang_code', 1, 'https://ror.org/01hbz8t53 Wipro (Singapore)'), (46317, 'https://ror.org/01hcbtz52', 'no_lang_code', 1, 'https://ror.org/01hcbtz52 Dexin (Uruguay)'), (46318, 'https://ror.org/01hdj9e73', 'no_lang_code', 1, 'https://ror.org/01hdj9e73 Universal Filters (United States)'), (46319, 'https://ror.org/01hdqf863', 'no_lang_code', 1, 'https://ror.org/01hdqf863 ProTechSure Scientific (United States)'), (46320, 'https://ror.org/01hdz2136', 'en', 1, 'https://ror.org/01hdz2136 Okayama Prefectural Tsuyama High School 岡山県立津山中学校・高等学校'), (46321, 'https://ror.org/01hdzgr78', 'en', 1, 'https://ror.org/01hdzgr78 Education Pioneers'), (46322, 'https://ror.org/01he2y745', 'no_lang_code', 1, 'https://ror.org/01he2y745 Suzuki (Japan) スズキ株式会社'), (46323, 'https://ror.org/01hesjx24', 'en', 1, 'https://ror.org/01hesjx24 Osaka City Museum of Fine Arts 大阪市立美術館'), (46324, 'https://ror.org/01hf47s86', 'no_lang_code', 1, 'https://ror.org/01hf47s86 Turbo Power Systems (United Kingdom)'), (46325, 'https://ror.org/01hf9n917', 'no_lang_code', 1, 'https://ror.org/01hf9n917 International Game Technology (United States)'), (46326, 'https://ror.org/01hfc4a93', 'en', 1, 'https://ror.org/01hfc4a93 European Network for Smoking and Tobacco Prevention'), (46327, 'https://ror.org/01hght844', 'no_lang_code', 1, 'https://ror.org/01hght844 Lattice Semiconductor (United States)'), (46328, 'https://ror.org/01hjd1605', 'pt', 1, 'https://ror.org/01hjd1605 Escola Técnica de eletrônic'), (46329, 'https://ror.org/01hk6w656', 'en', 1, 'https://ror.org/01hk6w656 Vietnam Academy of Social Sciences Viện Hàn lâm Khoa học xã hội Việt Nam'), (46330, 'https://ror.org/01hm2rz97', 'no_lang_code', 1, 'https://ror.org/01hm2rz97 Cool Energy (United States)'), (46331, 'https://ror.org/01hmams76', 'de', 1, 'https://ror.org/01hmams76 Klinik Friedenweiler'), (46332, 'https://ror.org/01hn5j140', 'no_lang_code', 1, 'https://ror.org/01hn5j140 Atlas Copco (Austria)'), (46333, 'https://ror.org/01hsywd60', 'en', 1, 'https://ror.org/01hsywd60 Poquoson City Public Schools'), (46334, 'https://ror.org/01htmkd76', 'pt', 1, 'https://ror.org/01htmkd76 Célia Helena Centro de Artes e Educação'), (46335, 'https://ror.org/01htp6d30', 'no_lang_code', 1, 'https://ror.org/01htp6d30 Saint-Gobain (United Kingdom)'), (46336, 'https://ror.org/01hvjym56', 'en', 1, 'https://ror.org/01hvjym56 Shaoxing City Women and Children Hospital 绍兴市妇幼保健院'), (46337, 'https://ror.org/01hwrdv70', 'no_lang_code', 1, 'https://ror.org/01hwrdv70 Silence Therapeutics (Germany)'), (46338, 'https://ror.org/01hx09q43', 'en', 1, 'https://ror.org/01hx09q43 Alberta Medical Association'), (46339, 'https://ror.org/01j01kg74', 'no_lang_code', 1, 'https://ror.org/01j01kg74 Akita Innovation (United States)'), (46340, 'https://ror.org/01j2e9t73', 'en', 1, 'https://ror.org/01j2e9t73 People’s Hospital of Linqing 临清市人民医院'), (46341, 'https://ror.org/01j495q26', 'en', 1, 'https://ror.org/01j495q26 Central Institute for Research on Cattle'), (46342, 'https://ror.org/01j4vgr28', 'no_lang_code', 1, 'https://ror.org/01j4vgr28 Essilor (Germany)'), (46343, 'https://ror.org/01j5h7116', 'no_lang_code', 1, 'https://ror.org/01j5h7116 Bluewater Power Distribution (Canada)'), (46344, 'https://ror.org/01j6zr344', 'en', 1, 'https://ror.org/01j6zr344 Ministry of Environment'), (46345, 'https://ror.org/01j88m682', 'no_lang_code', 1, 'https://ror.org/01j88m682 Nifco (Japan) ニフコ'), (46346, 'https://ror.org/01j8dxy82', 'en', 1, 'https://ror.org/01j8dxy82 Global Science and Technology Forum'), (46347, 'https://ror.org/01jatd098', 'fr', 1, 'https://ror.org/01jatd098 Société Française de Médecine Vasculaire'), (46348, 'https://ror.org/01jb93665', 'en', 1, 'https://ror.org/01jb93665 Business-Higher Education Forum'), (46349, 'https://ror.org/01jcyrc18', 'en', 1, 'https://ror.org/01jcyrc18 Fukushima Prefectural Education Center 福島県教育センター'), (46350, 'https://ror.org/01jdqqg29', 'en', 1, 'https://ror.org/01jdqqg29 Indian Council for Research on International Economic Relations'), (46351, 'https://ror.org/01jfy6x14', 'no_lang_code', 1, 'https://ror.org/01jfy6x14 Canon Anelva (Japan) キヤノンアネルバ'), (46352, 'https://ror.org/01jmr1174', 'es', 1, 'https://ror.org/01jmr1174 Universidad Tecnológica de El Salvador'), (46353, 'https://ror.org/01jn7ba52', 'no_lang_code', 1, 'https://ror.org/01jn7ba52 Halliburton (United Kingdom)'), (46354, 'https://ror.org/01jqh6j63', 'no_lang_code', 1, 'https://ror.org/01jqh6j63 Finisar (United States)'), (46355, 'https://ror.org/01jse7033', 'en', 1, 'https://ror.org/01jse7033 Asbestos Diseases Research Institute'), (46356, 'https://ror.org/01jsrac29', 'no_lang_code', 1, 'https://ror.org/01jsrac29 Broadcom (Israel)'), (46357, 'https://ror.org/01jtx4m19', 'en', 1, 'https://ror.org/01jtx4m19 Central Society for Clinical and Translational Research'), (46358, 'https://ror.org/01jtz8t69', 'en', 1, 'https://ror.org/01jtz8t69 Gemsville Technical University'), (46359, 'https://ror.org/01jz2q474', 'no_lang_code', 1, 'https://ror.org/01jz2q474 bioMASON (United States)'), (46360, 'https://ror.org/01jzaah84', 'no_lang_code', 1, 'https://ror.org/01jzaah84 Asahide Gakuen 旭出学園'), (46361, 'https://ror.org/01k2et926', 'no_lang_code', 1, 'https://ror.org/01k2et926 Chemring Countermeasures (United Kingdom)'), (46362, 'https://ror.org/01k2z4866', 'no_lang_code', 1, 'https://ror.org/01k2z4866 Harman (China)'), (46363, 'https://ror.org/01k4g2w20', 'en', 1, 'https://ror.org/01k4g2w20 Japan Association for Development of Community Medicine 公益社団法人 地域医療振興協会'), (46364, 'https://ror.org/01k56kn83', 'en', 1, 'https://ror.org/01k56kn83 Guangxi Subtropical Crops Research Institute 广西亚热带作物研究所'), (46365, 'https://ror.org/01k789405', 'en', 1, 'https://ror.org/01k789405 Schweizerische Herzstiftung Swiss Heart Foundation'), (46366, 'https://ror.org/01k7bd990', 'en', 1, 'https://ror.org/01k7bd990 Nishigaoka Elementary School 津市立西が丘小学校'), (46367, 'https://ror.org/01k8jf979', 'no_lang_code', 1, 'https://ror.org/01k8jf979 Protec-Style (Canada)'), (46368, 'https://ror.org/01k8z5j70', 'es', 1, 'https://ror.org/01k8z5j70 Universidad Don Bosco'), (46369, 'https://ror.org/01kd5wn07', 'no_lang_code', 1, 'https://ror.org/01kd5wn07 Xperi (Ireland)'), (46370, 'https://ror.org/01kg4f866', 'no_lang_code', 1, 'https://ror.org/01kg4f866 EchoStar (United Kingdom)'), (46371, 'https://ror.org/01kgebd76', 'en', 1, 'https://ror.org/01kgebd76 Iwate Museum of Art 岩手県立美術館'), (46372, 'https://ror.org/01kgg9w93', 'en', 1, 'https://ror.org/01kgg9w93 Ibaraki Prefectural Ota second high school 茨城県立太田第二高等学校'), (46373, 'https://ror.org/01kkgy069', 'de', 1, 'https://ror.org/01kkgy069 Klinikum Itzehoe'), (46374, 'https://ror.org/01km14z09', 'en', 1, 'https://ror.org/01km14z09 Institute of Applied Physics Інститут прикладної фізики НАН України'), (46375, 'https://ror.org/01kmf8n06', 'no_lang_code', 1, 'https://ror.org/01kmf8n06 Conversant (Canada)'), (46376, 'https://ror.org/01kp4cp54', 'en', 1, 'https://ror.org/01kp4cp54 All Russia Research Institute of Automatics Науково-дослідний інститут автоматики та енергетики'), (46377, 'https://ror.org/01kp51d05', 'en', 1, 'https://ror.org/01kp51d05 Osaka Municipal Ikuno Technical High School 大阪市立生野工業高等学校'), (46378, 'https://ror.org/01kq4az79', 'no_lang_code', 1, 'https://ror.org/01kq4az79 Nitto (Japan) 日東電工株式会社'), (46379, 'https://ror.org/01kqfrx63', 'en', 1, 'https://ror.org/01kqfrx63 Miyagi Prefecture Furukawa dawn High School 宮城県古川黎明中学校'), (46380, 'https://ror.org/01kr38871', 'en', 1, 'https://ror.org/01kr38871 Niigata Prefectural Board of Education'), (46381, 'https://ror.org/01kr9ze74', 'en', 1, 'https://ror.org/01kr9ze74 The Third People''s Hospital of Dalian City 大连市第三人民医院'), (46382, 'https://ror.org/01ktf2g48', 'no_lang_code', 1, 'https://ror.org/01ktf2g48 Boréa (Sweden)'), (46383, 'https://ror.org/01ktvbq32', 'en', 1, 'https://ror.org/01ktvbq32 Cook Children''s Health Care System'), (46384, 'https://ror.org/01kv0ya56', 'es', 1, 'https://ror.org/01kv0ya56 Instituto Tecnológico de Chetumal'), (46385, 'https://ror.org/01kwwh635', 'es', 1, 'https://ror.org/01kwwh635 Instituto de Desarrollo Tecnológico para la Industria Química'), (46386, 'https://ror.org/01kys2h96', 'no_lang_code', 1, 'https://ror.org/01kys2h96 Quantum Technology Sciences (United States)'), (46387, 'https://ror.org/01m06ya33', 'en', 1, 'https://ror.org/01m06ya33 Shanxi Province Hospital of Traditional Chinese Medicine'), (46388, 'https://ror.org/01m2xfd77', 'en', 1, 'https://ror.org/01m2xfd77 Akita Research Institute for Food and Brewing 秋田県総合食品研究センター'), (46389, 'https://ror.org/01m41n304', 'en', 1, 'https://ror.org/01m41n304 Kanagawa Prefectural Atsugi Kiyoshiminami High School 神奈川県立厚木清南高校'), (46390, 'https://ror.org/01m4mdb95', 'en', 1, 'https://ror.org/01m4mdb95 Uzima University College'), (46391, 'https://ror.org/01m4zvx19', 'en', 1, 'https://ror.org/01m4zvx19 Gapminder Foundation Stiftelsen Gapminder'), (46392, 'https://ror.org/01m520d39', 'en', 1, 'https://ror.org/01m520d39 Shimane Museum of Ancient Izumo 島根県立古代出雲歴史博物館'), (46393, 'https://ror.org/01m5tj961', 'en', 1, 'https://ror.org/01m5tj961 Villa Maria College'), (46394, 'https://ror.org/01m6k8878', 'en', 1, 'https://ror.org/01m6k8878 Queen Elizabeth Hospital King''s Lynn NHS Foundation Trust'), (46395, 'https://ror.org/01mbtgx32', 'en', 1, 'https://ror.org/01mbtgx32 International Financial Cryptography Association'), (46396, 'https://ror.org/01mcc7007', 'no_lang_code', 1, 'https://ror.org/01mcc7007 Schlumberger (Ireland)'), (46397, 'https://ror.org/01mcq6w80', 'en', 1, 'https://ror.org/01mcq6w80 Society for Marine Mammalogy'), (46398, 'https://ror.org/01md05p94', 'en', 1, 'https://ror.org/01md05p94 National Heavy Snow Youth Exchange House 国立大雪青少年交流の家'), (46399, 'https://ror.org/01md3zk31', 'en', 1, 'https://ror.org/01md3zk31 National Academy of Sciences of the Republic of Kyrgyzstan Академии наук Кыргызстана'), (46400, 'https://ror.org/01mdbny50', 'en', 1, 'https://ror.org/01mdbny50 Access to Nutrition Foundation'), (46401, 'https://ror.org/01me2d674', 'en', 1, 'https://ror.org/01me2d674 Shenzhen Maternity and Child Healthcare Hospital 深圳市妇幼保健院'), (46402, 'https://ror.org/01me5n293', 'en', 1, 'https://ror.org/01me5n293 BTI Biotechnology Institute'), (46403, 'https://ror.org/01mfgkr43', 'no_lang_code', 1, 'https://ror.org/01mfgkr43 Amdocs (United Kingdom)'), (46404, 'https://ror.org/01mfqa039', 'es', 1, 'https://ror.org/01mfqa039 Fundación Pro Salud y Medio Ambiente'), (46405, 'https://ror.org/01mgfe132', 'no_lang_code', 1, 'https://ror.org/01mgfe132 H3D (United States)'), (46406, 'https://ror.org/01mjdf856', 'no_lang_code', 1, 'https://ror.org/01mjdf856 EarthTech International (United States)'), (46407, 'https://ror.org/01mre3x46', 'en', 1, 'https://ror.org/01mre3x46 Kanetsu Hospital 関越病院'), (46408, 'https://ror.org/01mx6gt82', 'no_lang_code', 1, 'https://ror.org/01mx6gt82 Knorr-Bremse (United States)'), (46409, 'https://ror.org/01mycfe72', 'no_lang_code', 1, 'https://ror.org/01mycfe72 AT&T (Israel)'), (46410, 'https://ror.org/01mzyze39', 'en', 1, 'https://ror.org/01mzyze39 British HIV Association'), (46411, 'https://ror.org/01n0ntp67', 'en', 1, 'https://ror.org/01n0ntp67 Toyo College of Food Technology 東洋食品工業短期大学'), (46412, 'https://ror.org/01n0t0752', 'no_lang_code', 1, 'https://ror.org/01n0t0752 Future Cities Catapult (United Kingdom)'), (46413, 'https://ror.org/01n1nc173', 'en', 1, 'https://ror.org/01n1nc173 California State Library'), (46414, 'https://ror.org/01n2j8127', 'en', 1, 'https://ror.org/01n2j8127 United Nations Institute for Training and Research'), (46415, 'https://ror.org/01n58gy81', 'en', 1, 'https://ror.org/01n58gy81 Benevolent Society'), (46416, 'https://ror.org/01nakaj54', 'en', 1, 'https://ror.org/01nakaj54 Florida Association of School Administrators'), (46417, 'https://ror.org/01nbpkh22', 'en', 1, 'https://ror.org/01nbpkh22 Guildford Hospital'), (46418, 'https://ror.org/01nbps758', 'en', 1, 'https://ror.org/01nbps758 International University of Cooperative Education Internationale Berufsakademie'), (46419, 'https://ror.org/01nbzrx85', 'en', 1, 'https://ror.org/01nbzrx85 Korea Nano Technology Research Society 나노기술연구협의회'), (46420, 'https://ror.org/01nnwyz44', 'en', 1, 'https://ror.org/01nnwyz44 Shanghai Public Health Clinical Center 公共卫生临床中心'), (46421, 'https://ror.org/01nqmht92', 'en', 1, 'https://ror.org/01nqmht92 Fraunhofer Institute for Transportation and Infrastructure Systems Fraunhofer-Institut für Verkehrs- und Infrastruktursysteme'), (46422, 'https://ror.org/01nqzp818', 'no_lang_code', 1, 'https://ror.org/01nqzp818 Global Health Strategies (United States)'), (46423, 'https://ror.org/01nrq5w30', 'en', 1, 'https://ror.org/01nrq5w30 Saudi Heart Association'), (46424, 'https://ror.org/01nvq0b44', 'no_lang_code', 1, 'https://ror.org/01nvq0b44 Cemex (Switzerland)'), (46425, 'https://ror.org/01nwqqg09', 'en', 1, 'https://ror.org/01nwqqg09 Egyptian Society of Chest Diseases and Tuberculosis'), (46426, 'https://ror.org/01nwsar36', 'en', 1, 'https://ror.org/01nwsar36 Dongguk University Ilsan Hospital'), (46427, 'https://ror.org/01p1sp487', 'en', 1, 'https://ror.org/01p1sp487 Department of Ocean Development'), (46428, 'https://ror.org/01p37tq51', 'no_lang_code', 1, 'https://ror.org/01p37tq51 Analytical Instrument Systems (United States)'), (46429, 'https://ror.org/01p3pd878', 'en', 1, 'https://ror.org/01p3pd878 Okazaki Womens University 岡崎女子大学'), (46430, 'https://ror.org/01p7ybj33', 'no_lang_code', 1, 'https://ror.org/01p7ybj33 Xelera Research (United States)'), (46431, 'https://ror.org/01p82h318', 'en', 1, 'https://ror.org/01p82h318 Fund for Educational Excellence'), (46432, 'https://ror.org/01p8wcy85', 'en', 1, 'https://ror.org/01p8wcy85 Institute of Economic Forecasting Институт народнохозяйственного прогнозирования Российской Академии Наук'), (46433, 'https://ror.org/01pbhqq24', 'no_lang_code', 1, 'https://ror.org/01pbhqq24 Kokusai Gakuin Saitama Junior College 国際学院埼玉短期大学'), (46434, 'https://ror.org/01pfz6k04', 'en', 1, 'https://ror.org/01pfz6k04 Royal Institute of Navigation'), (46435, 'https://ror.org/01ph4v684', 'en', 1, 'https://ror.org/01ph4v684 Institut d''Arquitectura Avançada de Catalunya Institute for Advanced Architecture of Catalonia'), (46436, 'https://ror.org/01pm5dp22', 'en', 1, 'https://ror.org/01pm5dp22 Ishikawa Prefectural Technical High School 石川県立工業高等学校'), (46437, 'https://ror.org/01pmhfw02', 'en', 1, 'https://ror.org/01pmhfw02 Asahi City Board of Education 旭市教育委員会'), (46438, 'https://ror.org/01pn0w676', 'en', 1, 'https://ror.org/01pn0w676 Clover Park School District'), (46439, 'https://ror.org/01pq7ec85', 'en', 1, 'https://ror.org/01pq7ec85 Association for the Advancement of Educational Research'), (46440, 'https://ror.org/01pq8wx80', 'en', 1, 'https://ror.org/01pq8wx80 Research and Production Complex Technological Centre федеральное государственное бюджетное учреждение Научно-производственный комплекс «Технологический центр'), (46441, 'https://ror.org/01pqwjq49', 'id', 1, 'https://ror.org/01pqwjq49 Universitas Merdeka Surabaya'), (46442, 'https://ror.org/01pr11k10', 'en', 1, 'https://ror.org/01pr11k10 Central Savannah River Area Regional Educational Service Agency'), (46443, 'https://ror.org/01prd6q96', 'en', 1, 'https://ror.org/01prd6q96 Kyoto City Zoo 京都市動物園'), (46444, 'https://ror.org/01psdst63', 'en', 1, 'https://ror.org/01psdst63 Xinjiang Academy of Agricultural and Reclamation Science 新疆农垦科学院'), (46445, 'https://ror.org/01ptjzx80', 'en', 1, 'https://ror.org/01ptjzx80 Birmingham Research Park'), (46446, 'https://ror.org/01pw09h14', 'en', 1, 'https://ror.org/01pw09h14 Mie Prefectural Yokkaichi Nishi High School 三重県立四日市西高等学校'), (46447, 'https://ror.org/01px8ca57', 'en', 1, 'https://ror.org/01px8ca57 Islamic Azad University of Varamin دانشگاه آزاد اسلامی واحد ورامین'), (46448, 'https://ror.org/01pycny91', 'de', 1, 'https://ror.org/01pycny91 Staatsunabhängige Theologische Hochschule Basel'), (46449, 'https://ror.org/01pyfb655', 'en', 1, 'https://ror.org/01pyfb655 Kochi Prefectural Education Center 高知県教育センター'), (46450, 'https://ror.org/01q1dy966', 'no_lang_code', 1, 'https://ror.org/01q1dy966 HeidelbergCement (Germany)'), (46451, 'https://ror.org/01q34dp24', 'en', 1, 'https://ror.org/01q34dp24 Povolzhsky Research Institute of Production and Processing of Meat and Dairy Products Поволжский НИИ производства и переработки мясомолочной продукции'), (46452, 'https://ror.org/01q5b3b88', 'no_lang_code', 1, 'https://ror.org/01q5b3b88 Shimano (Singapore)'), (46453, 'https://ror.org/01q62y884', 'en', 1, 'https://ror.org/01q62y884 Aomori Chuo Junior College 青森中央短期大学'), (46454, 'https://ror.org/01q7qty61', 'en', 1, 'https://ror.org/01q7qty61 Islamic Azad University Bandar Abbas ساختمان ادارى دانشگاه آزاد اسلامی بندرعباس'), (46455, 'https://ror.org/01q7tkf98', 'no_lang_code', 1, 'https://ror.org/01q7tkf98 KME (United States)'), (46456, 'https://ror.org/01q888968', 'en', 1, 'https://ror.org/01q888968 Takamatsu High School 香川県立高松高等学校'), (46457, 'https://ror.org/01qb47q59', 'en', 1, 'https://ror.org/01qb47q59 Saitama Prefectural Kodama High School 埼玉県児玉高校'), (46458, 'https://ror.org/01qb4qf02', 'en', 1, 'https://ror.org/01qb4qf02 Australian Centre for the Moving Image'), (46459, 'https://ror.org/01qc2w333', 'no_lang_code', 1, 'https://ror.org/01qc2w333 Matsudo Museum 松戸市立博物館'), (46460, 'https://ror.org/01qcwgw02', 'en', 1, 'https://ror.org/01qcwgw02 David H. Murdock Research Institute'), (46461, 'https://ror.org/01qecd649', 'en', 1, 'https://ror.org/01qecd649 Max Planck Unit for Structural Molecular Biology Max-Planck-Arbeitsgruppen für Strukturelle Molekularbiologie'), (46462, 'https://ror.org/01qfa5t68', 'no_lang_code', 1, 'https://ror.org/01qfa5t68 Hitachi Maxell (Japan) 日立マクセル株式会社'), (46463, 'https://ror.org/01qfhxr31', 'en', 1, 'https://ror.org/01qfhxr31 University of Kivu Université du Kivu'), (46464, 'https://ror.org/01qgd7x17', 'de', 1, 'https://ror.org/01qgd7x17 Deutsche Schmerzgesellschaft'), (46465, 'https://ror.org/01qgvp179', 'en', 1, 'https://ror.org/01qgvp179 Ezequiel Dias Foundation Fundação Ezequiel Dias'), (46466, 'https://ror.org/01qk1b565', 'no_lang_code', 1, 'https://ror.org/01qk1b565 Pure Protein (United States)'), (46467, 'https://ror.org/01qkmhj58', 'no_lang_code', 1, 'https://ror.org/01qkmhj58 Kao Corporation (United States)'), (46468, 'https://ror.org/01qksk953', 'no_lang_code', 1, 'https://ror.org/01qksk953 Paisano Labs (United States)'), (46469, 'https://ror.org/01qp6yw46', 'en', 1, 'https://ror.org/01qp6yw46 Mercury Optoelectronics Research Institute 墨克瑞光电子研究院'), (46470, 'https://ror.org/01qpg5w50', 'en', 1, 'https://ror.org/01qpg5w50 Tabaran Institute of Higher Education موسسه آموزش عالی تابران'), (46471, 'https://ror.org/01qqkqg60', 'en', 1, 'https://ror.org/01qqkqg60 Foundation Financial Officers Group'), (46472, 'https://ror.org/01qqwja70', 'en', 1, 'https://ror.org/01qqwja70 Netherlands Maritime Technology'), (46473, 'https://ror.org/01qskrs45', 'en', 1, 'https://ror.org/01qskrs45 Islamic Azad University of Khomeynishahr دانشگاه آزاد اسلامی واحد خمینی شهر'), (46474, 'https://ror.org/01qt3dj82', 'en', 1, 'https://ror.org/01qt3dj82 Institute of Immunology and Physiology Институт иммунологии и физиологии Уральского отделения РАН'), (46475, 'https://ror.org/01qwv9523', 'en', 1, 'https://ror.org/01qwv9523 Kanagawa Prefectural Museum of Natural History 神奈川県立生命の星'), (46476, 'https://ror.org/01qx14d89', 'en', 1, 'https://ror.org/01qx14d89 Komatsu College 小松短期大学'), (46477, 'https://ror.org/01qx5df26', 'no_lang_code', 1, 'https://ror.org/01qx5df26 Disco (japan) 株式会社ディスコ'), (46478, 'https://ror.org/01qxfbw14', 'en', 1, 'https://ror.org/01qxfbw14 Aichi Prefectural Okazaki School for the Deaf 愛知県立岡崎聾学校'), (46479, 'https://ror.org/01qysf282', 'no_lang_code', 1, 'https://ror.org/01qysf282 Ingredion (United Kingdom)'), (46480, 'https://ror.org/01qzftd85', 'en', 1, 'https://ror.org/01qzftd85 Silsoe Spray Application Unit'), (46481, 'https://ror.org/01qzrvf77', 'en', 1, 'https://ror.org/01qzrvf77 Fukuoka Prefectural Museum of Art 福岡県立美術館'), (46482, 'https://ror.org/01r0qpc06', 'en', 1, 'https://ror.org/01r0qpc06 Okayama Prefectural Okayama Technical High School 岡山県立岡山工業高等学校'), (46483, 'https://ror.org/01r10sk82', 'en', 1, 'https://ror.org/01r10sk82 China Academy of Printing Technology 中国印刷科学技术研究所'), (46484, 'https://ror.org/01r1v8s38', 'no_lang_code', 1, 'https://ror.org/01r1v8s38 Knorr-Bremse (Austria)'), (46485, 'https://ror.org/01r21e311', 'en', 1, 'https://ror.org/01r21e311 University of Cagayan Valley'), (46486, 'https://ror.org/01r3n4v41', 'en', 1, 'https://ror.org/01r3n4v41 Douglas Public Library'), (46487, 'https://ror.org/01r3q4477', 'en', 1, 'https://ror.org/01r3q4477 Society of American Gastrointestinal and Endoscopic Surgeons'), (46488, 'https://ror.org/01r43ed56', 'en', 1, 'https://ror.org/01r43ed56 Canadian Urological Association'), (46489, 'https://ror.org/01r4sa504', 'en', 1, 'https://ror.org/01r4sa504 Institut für Lebensmittel- und Umweltforschung Institute for Food and Environmental Research'), (46490, 'https://ror.org/01r4svf88', 'en', 1, 'https://ror.org/01r4svf88 Sadra Institute Of Higher Education دانشگاه صدرا'), (46491, 'https://ror.org/01r4xes76', 'en', 1, 'https://ror.org/01r4xes76 Museum of Modern Art 群馬県立近代美術館'), (46492, 'https://ror.org/01r5php15', 'en', 1, 'https://ror.org/01r5php15 The Institute of Buraku Problem 部落問題研究所'), (46493, 'https://ror.org/01r5syv12', 'no_lang_code', 1, 'https://ror.org/01r5syv12 Columbus McKinnon (United States)'), (46494, 'https://ror.org/01rab9670', 'no_lang_code', 1, 'https://ror.org/01rab9670 Bruker (Israel)'), (46495, 'https://ror.org/01raw4b12', 'en', 1, 'https://ror.org/01raw4b12 Hirosaki Central Hospital 弘前中央病院'), (46496, 'https://ror.org/01rd01t06', 'en', 1, 'https://ror.org/01rd01t06 Academy of Sciences and Humanities in Hamburg Akademie der Wissenschaften in Hamburg'), (46497, 'https://ror.org/01rfee362', 'no_lang_code', 1, 'https://ror.org/01rfee362 k-Space Associates (United States)'), (46498, 'https://ror.org/01rfr0p20', 'en', 1, 'https://ror.org/01rfr0p20 RKDF University'), (46499, 'https://ror.org/01rgzab50', 'no_lang_code', 1, 'https://ror.org/01rgzab50 Eaton (United Kingdom)'), (46500, 'https://ror.org/01rh00978', 'en', 1, 'https://ror.org/01rh00978 A. Alfred Taubman Health Care Center'), (46501, 'https://ror.org/01rhkah90', 'en', 1, 'https://ror.org/01rhkah90 Nagano City Museum 長野市立博物館'), (46502, 'https://ror.org/01rjrd067', 'en', 1, 'https://ror.org/01rjrd067 Yamaguchi Prefectural Museum 山口県立山口博物館'), (46503, 'https://ror.org/01rkxw296', 'en', 1, 'https://ror.org/01rkxw296 Aid for Aids'), (46504, 'https://ror.org/01rm2f249', 'en', 1, 'https://ror.org/01rm2f249 Junshin Junior College 純真短期大学'), (46505, 'https://ror.org/01rn1eg28', 'no_lang_code', 1, 'https://ror.org/01rn1eg28 Bankura University বাঁকুড়া বিশ্ববিদ্যালয়'), (46506, 'https://ror.org/01rn9qa20', 'no_lang_code', 1, 'https://ror.org/01rn9qa20 AutoNetworks Technologies (Japan) 株式会社オートネットワーク技術研究所'), (46507, 'https://ror.org/01rqxmc80', 'en', 1, 'https://ror.org/01rqxmc80 Aichi Medical College for Physical and Occupational Therapy 愛知医療学院短期大学'), (46508, 'https://ror.org/01rrjpm51', 'en', 1, 'https://ror.org/01rrjpm51 Miyazaki Prefecture Takanabe Agricultural High School 宮崎県立高鍋農業高等学校'), (46509, 'https://ror.org/01rsb5a88', 'en', 1, 'https://ror.org/01rsb5a88 Hiroshima Prefectural Archives 広島県庁県立文書館'), (46510, 'https://ror.org/01rtne307', 'en', 1, 'https://ror.org/01rtne307 Japan Monkey Centre 日本モンキーパーク'), (46511, 'https://ror.org/01rtzrs77', 'en', 1, 'https://ror.org/01rtzrs77 Saitama Prefectural Industrial Technology Center 埼玉県産業技術センター'), (46512, 'https://ror.org/01rvqha10', 'en', 1, 'https://ror.org/01rvqha10 Fraunhofer Institute for Manufacturing Engineering and Automation Fraunhofer-Institut für Produktionstechnik und Automatisierung'), (46513, 'https://ror.org/01rvqzw67', 'en', 1, 'https://ror.org/01rvqzw67 University of International Business Халықаралық бизнес университеті'), (46514, 'https://ror.org/01rvx9t49', 'en', 1, 'https://ror.org/01rvx9t49 Kanagawa Prefecture Policy Bureau 神奈川県政策局'), (46515, 'https://ror.org/01rw27z95', 'no_lang_code', 1, 'https://ror.org/01rw27z95 Microsoft (United Kingdom)'), (46516, 'https://ror.org/01rx4ed80', 'en', 1, 'https://ror.org/01rx4ed80 IEEE OES Japan Chapter'), (46517, 'https://ror.org/01s0p2f24', 'en', 1, 'https://ror.org/01s0p2f24 Michalski Huettermann and Partner Michalski Hüttermann & Partner Patentanwälte'), (46518, 'https://ror.org/01s3ybj54', 'en', 1, 'https://ror.org/01s3ybj54 Chess Mates Foundation'), (46519, 'https://ror.org/01s4t1s46', 'en', 1, 'https://ror.org/01s4t1s46 Carthage Central School District'), (46520, 'https://ror.org/01s8p3t36', 'no_lang_code', 1, 'https://ror.org/01s8p3t36 Trilogis (Italy)'), (46521, 'https://ror.org/01s8tz949', 'no_lang_code', 1, 'https://ror.org/01s8tz949 Japan Broadcasting Corporation (Japan) 日本放送協会'), (46522, 'https://ror.org/01sb82c82', 'en', 1, 'https://ror.org/01sb82c82 American Rhododendron Society'), (46523, 'https://ror.org/01scjps49', 'en', 1, 'https://ror.org/01scjps49 Arthroscopy Association of North America'), (46524, 'https://ror.org/01sd6hz84', 'en', 1, 'https://ror.org/01sd6hz84 Yelm Community Schools'), (46525, 'https://ror.org/01sengv47', 'en', 1, 'https://ror.org/01sengv47 Institute of Ethnology and Anthropology 中国社会科学院民族学与人类学研究所'), (46526, 'https://ror.org/01sggg367', 'no_lang_code', 1, 'https://ror.org/01sggg367 Kawasaki Heavy Industries (Japan) 川崎重工業株式会社'), (46527, 'https://ror.org/01sgjy251', 'en', 1, 'https://ror.org/01sgjy251 Wakayama City Culture and Sports Promotion Foundation 公益財団法人 和歌山市文化スポーツ振興財団'), (46528, 'https://ror.org/01sh98j38', 'en', 1, 'https://ror.org/01sh98j38 Mill Valley Public Library'), (46529, 'https://ror.org/01shbzz86', 'no_lang_code', 1, 'https://ror.org/01shbzz86 Wikimedia RU Викимедиа РУ'), (46530, 'https://ror.org/01skh6n03', 'en', 1, 'https://ror.org/01skh6n03 Sveriges Tandläkarförbund Swedish Dental Association'), (46531, 'https://ror.org/01sp6nj31', 'en', 1, 'https://ror.org/01sp6nj31 Chiba prefectural Matsudo international high school 松戸国際高等学校'), (46532, 'https://ror.org/01sqn6v38', 'en', 1, 'https://ror.org/01sqn6v38 Sault Area Hospital'), (46533, 'https://ror.org/01svrpv75', 'no_lang_code', 1, 'https://ror.org/01svrpv75 TE Connectivity (Denmark)'), (46534, 'https://ror.org/01sx4nq39', 'en', 1, 'https://ror.org/01sx4nq39 American Epilepsy Society'), (46535, 'https://ror.org/01sy8w588', 'en', 1, 'https://ror.org/01sy8w588 Shimane Prefectural Daito High School 島根県立大東高等学校'), (46536, 'https://ror.org/01szshg60', 'en', 1, 'https://ror.org/01szshg60 Proactive Molecular Research'); INSERT INTO `rors` VALUES (46537, 'https://ror.org/01t11z141', 'no_lang_code', 1, 'https://ror.org/01t11z141 Quigley and Watts (New Zealand)'), (46538, 'https://ror.org/01t12bz60', 'en', 1, 'https://ror.org/01t12bz60 Development Research and Projects Centre'), (46539, 'https://ror.org/01t36fb69', 'en', 1, 'https://ror.org/01t36fb69 Kobe Municipal Nishiwaki Elementary School'), (46540, 'https://ror.org/01t69t080', 'en', 1, 'https://ror.org/01t69t080 Instituto Oncologico Nacional National Oncologic Institute'), (46541, 'https://ror.org/01t6wa381', 'en', 1, 'https://ror.org/01t6wa381 State Research Institute of Organic Chemistry and Technology Федеральное государственное унитарное предприятие «Государственный научно-исследовательский институт органической химии и технологии»'), (46542, 'https://ror.org/01t703b81', 'en', 1, 'https://ror.org/01t703b81 Mathematical Assist Design Laboratory 株式会社数理設計研究所'), (46543, 'https://ror.org/01t763t34', 'no_lang_code', 1, 'https://ror.org/01t763t34 Brainlike (United States)'), (46544, 'https://ror.org/01t782854', 'no_lang_code', 1, 'https://ror.org/01t782854 Nippon Paint (Japan) 日本ペイントホールディングス株式会社'), (46545, 'https://ror.org/01t887w53', 'en', 1, 'https://ror.org/01t887w53 Morioka First High School 岩手県立盛岡第一高等学校'), (46546, 'https://ror.org/01t8f4d28', 'en', 1, 'https://ror.org/01t8f4d28 South African Heart Association'), (46547, 'https://ror.org/01tadt133', 'es', 1, 'https://ror.org/01tadt133 Fundación para el Desarrollo de la Ecología'), (46548, 'https://ror.org/01tck1990', 'en', 1, 'https://ror.org/01tck1990 Daejeon St. Mary''s Hospital 대전성모병원'), (46549, 'https://ror.org/01thczn33', 'en', 1, 'https://ror.org/01thczn33 Australian Society for Microbiology'), (46550, 'https://ror.org/01tk5k162', 'no_lang_code', 1, 'https://ror.org/01tk5k162 Trimble (Germany)'), (46551, 'https://ror.org/01tk70e68', 'en', 1, 'https://ror.org/01tk70e68 Kyoto Kacho University 京都華頂大学'), (46552, 'https://ror.org/01tkb3y54', 'en', 1, 'https://ror.org/01tkb3y54 GISMA Business School'), (46553, 'https://ror.org/01tp7kw13', 'no_lang_code', 1, 'https://ror.org/01tp7kw13 Advanced Animal Diagnostics (United States)'), (46554, 'https://ror.org/01tpxh023', 'no_lang_code', 1, 'https://ror.org/01tpxh023 Introhive (Canada)'), (46555, 'https://ror.org/01trdns33', 'de', 1, 'https://ror.org/01trdns33 Klinikum Magdeburg'), (46556, 'https://ror.org/01ttfq573', 'en', 1, 'https://ror.org/01ttfq573 Future Forum'), (46557, 'https://ror.org/01twdqv51', 'en', 1, 'https://ror.org/01twdqv51 Cumberland County Public Library and Information Center'), (46558, 'https://ror.org/01twzvd91', 'no_lang_code', 1, 'https://ror.org/01twzvd91 NasunokeHara Animal Clinic 那須野ヶ原アニマルクリニック'), (46559, 'https://ror.org/01txvbn74', 'en', 1, 'https://ror.org/01txvbn74 European Crowdfunding Network'), (46560, 'https://ror.org/01tyesb47', 'no_lang_code', 1, 'https://ror.org/01tyesb47 Fukuoka Jo Gakuin Nursing University 福岡女学院看護大学'), (46561, 'https://ror.org/01v0w5h80', 'no_lang_code', 1, 'https://ror.org/01v0w5h80 Prescient Weather (United states)'), (46562, 'https://ror.org/01v23xq73', 'no_lang_code', 1, 'https://ror.org/01v23xq73 Eaton (Taiwan)'), (46563, 'https://ror.org/01v3aym70', 'no_lang_code', 1, 'https://ror.org/01v3aym70 Foxconn (Taiwan) 鴻海科技集團'), (46564, 'https://ror.org/01v3xbm77', 'en', 1, 'https://ror.org/01v3xbm77 Museum of Kyoto'), (46565, 'https://ror.org/01v4fge94', 'no_lang_code', 1, 'https://ror.org/01v4fge94 Yamagata Prefectural Yonezawa Kojokan High School 山形県立米沢興譲館高等学校'), (46566, 'https://ror.org/01v5yyw18', 'en', 1, 'https://ror.org/01v5yyw18 Baker County Library District'), (46567, 'https://ror.org/01v7eqs04', 'en', 1, 'https://ror.org/01v7eqs04 Kyoto Prefecture Archaeological Research Center 京都府埋蔵文化財調査研究センター'), (46568, 'https://ror.org/01vaekj86', 'no_lang_code', 1, 'https://ror.org/01vaekj86 Agfa-Gevaert (Germany)'), (46569, 'https://ror.org/01vagq208', 'no_lang_code', 1, 'https://ror.org/01vagq208 Nagashima Hospital 医療法人長光会 長島病院'), (46570, 'https://ror.org/01ve76a89', 'en', 1, 'https://ror.org/01ve76a89 Middlemore Clinical Trials'), (46571, 'https://ror.org/01vek0a79', 'it', 1, 'https://ror.org/01vek0a79 Associazione Cristina Bassi Onlus'), (46572, 'https://ror.org/01vekj030', 'en', 1, 'https://ror.org/01vekj030 North Carolina Nursery and Landscape Association'), (46573, 'https://ror.org/01vex9c14', 'en', 1, 'https://ror.org/01vex9c14 Tobu College of Medical Technology 東武医学技術専門学校'), (46574, 'https://ror.org/01vf40t90', 'en', 1, 'https://ror.org/01vf40t90 San Francisco University High School'), (46575, 'https://ror.org/01vfj8s64', 'de', 1, 'https://ror.org/01vfj8s64 Arge Ökologie'), (46576, 'https://ror.org/01vfjxd24', 'no_lang_code', 1, 'https://ror.org/01vfjxd24 Ennetix (United States)'), (46577, 'https://ror.org/01vfzqe43', 'en', 1, 'https://ror.org/01vfzqe43 Korean Society of Neurogastroenterology and Motility 대한소화기기능성질환·운동학회'), (46578, 'https://ror.org/01vgda714', 'no_lang_code', 1, 'https://ror.org/01vgda714 Dorodnitsyn Computing Centre Вычислительный центр им. А. А. Дородницына РАН'), (46579, 'https://ror.org/01vj25w90', 'en', 1, 'https://ror.org/01vj25w90 Indian Institute of Metals'), (46580, 'https://ror.org/01vpcr438', 'en', 1, 'https://ror.org/01vpcr438 Chordoma Foundation'), (46581, 'https://ror.org/01vq6b190', 'en', 1, 'https://ror.org/01vq6b190 Professional Examination Service'), (46582, 'https://ror.org/01vq7jx45', 'en', 1, 'https://ror.org/01vq7jx45 Innovation and Economic Development Trois Rivières'), (46583, 'https://ror.org/01vqdnj79', 'en', 1, 'https://ror.org/01vqdnj79 National Institute of Special Education 独立行政法人 国立特別支援教育総合研究所'), (46584, 'https://ror.org/01vrr3d94', 'no_lang_code', 1, 'https://ror.org/01vrr3d94 Osaka Science Museum 大阪市立科学館'), (46585, 'https://ror.org/01vry7t57', 'no_lang_code', 1, 'https://ror.org/01vry7t57 Pacific Microchip (United States)'), (46586, 'https://ror.org/01vs14k74', 'no_lang_code', 1, 'https://ror.org/01vs14k74 Banner Life Sciences (United States)'), (46587, 'https://ror.org/01vs7pm87', 'no_lang_code', 1, 'https://ror.org/01vs7pm87 Teleflex (United States)'), (46588, 'https://ror.org/01vtgjs22', 'en', 1, 'https://ror.org/01vtgjs22 Chicago Public Library Foundation'), (46589, 'https://ror.org/01vtpxj52', 'de', 1, 'https://ror.org/01vtpxj52 Institut für Stadtforschung und Strukturpolitik'), (46590, 'https://ror.org/01vvcdt37', 'en', 1, 'https://ror.org/01vvcdt37 Colorado Library Consortium'), (46591, 'https://ror.org/01vvkvt81', 'no_lang_code', 1, 'https://ror.org/01vvkvt81 Sulzer (Germany)'), (46592, 'https://ror.org/01vvmvv13', 'en', 1, 'https://ror.org/01vvmvv13 Canadian Sport Centre Pacific'), (46593, 'https://ror.org/01vwnst03', 'en', 1, 'https://ror.org/01vwnst03 Toyama Prefectural Education Center 富山県総合教育センター'), (46594, 'https://ror.org/01vwvvq12', 'en', 1, 'https://ror.org/01vwvvq12 Zhejiang International Studies University 浙江外国语学院'), (46595, 'https://ror.org/01vxwy461', 'pt', 1, 'https://ror.org/01vxwy461 Universidade Estadual do Rio Grande do Sul'), (46596, 'https://ror.org/01vz3ga16', 'en', 1, 'https://ror.org/01vz3ga16 Seqwater'), (46597, 'https://ror.org/01vzn3w40', 'no_lang_code', 1, 'https://ror.org/01vzn3w40 H2Flow Equipment (Canada)'), (46598, 'https://ror.org/01w0j5472', 'en', 1, 'https://ror.org/01w0j5472 Schweizerische Gesellschaft für Radiologie Swiss Society of Radiology'), (46599, 'https://ror.org/01w4t8268', 'en', 1, 'https://ror.org/01w4t8268 Big Rapids Community Library'), (46600, 'https://ror.org/01w51pg70', 'no_lang_code', 1, 'https://ror.org/01w51pg70 Greenhouse Gas Industries (United States)'), (46601, 'https://ror.org/01w6k3w63', 'no_lang_code', 1, 'https://ror.org/01w6k3w63 Toyama College 富山短期大学'), (46602, 'https://ror.org/01w7zp119', 'en', 1, 'https://ror.org/01w7zp119 New York State Psychological Association'), (46603, 'https://ror.org/01w8svt05', 'en', 1, 'https://ror.org/01w8svt05 Tohoku History Museum 東北歴史博物館'), (46604, 'https://ror.org/01w9bsn12', 'no_lang_code', 1, 'https://ror.org/01w9bsn12 Instream Energy Systems (Canada)'), (46605, 'https://ror.org/01w9zcy30', 'no_lang_code', 1, 'https://ror.org/01w9zcy30 Canada Bread (Canada)'), (46606, 'https://ror.org/01wbz2121', 'no_lang_code', 1, 'https://ror.org/01wbz2121 Rieter (Germany)'), (46607, 'https://ror.org/01wcyhn95', 'en', 1, 'https://ror.org/01wcyhn95 NRAD Medical Associates'), (46608, 'https://ror.org/01wdqpj36', 'en', 1, 'https://ror.org/01wdqpj36 Drylands Research'), (46609, 'https://ror.org/01wegjf65', 'en', 1, 'https://ror.org/01wegjf65 Ogori City Board of Education 小郡市 教育委員会'), (46610, 'https://ror.org/01wf5jq34', 'en', 1, 'https://ror.org/01wf5jq34 Australian Institute of Business'), (46611, 'https://ror.org/01wpvrw40', 'no_lang_code', 1, 'https://ror.org/01wpvrw40 Boschman Technologies (Netherlands)'), (46612, 'https://ror.org/01wqc8n07', 'en', 1, 'https://ror.org/01wqc8n07 British Orthopaedic Association'), (46613, 'https://ror.org/01wqjvw03', 'en', 1, 'https://ror.org/01wqjvw03 Aomori Prefectural Police 青森県警察'), (46614, 'https://ror.org/01wqp7c62', 'no_lang_code', 1, 'https://ror.org/01wqp7c62 Hexagon (Switzerland)'), (46615, 'https://ror.org/01wrt1c44', 'en', 1, 'https://ror.org/01wrt1c44 National Democratic Institute'), (46616, 'https://ror.org/01wt6rn90', 'no_lang_code', 1, 'https://ror.org/01wt6rn90 Hewlett-Packard (Austria)'), (46617, 'https://ror.org/01wvk2989', 'de', 1, 'https://ror.org/01wvk2989 REFA Bundesverband, Reichsausschuß für Arbeitszeitermittlung'), (46618, 'https://ror.org/01wvy7k28', 'en', 1, 'https://ror.org/01wvy7k28 Nara Medical University Hospital 奈良県立医科大学附属病院'), (46619, 'https://ror.org/01wwqrh75', 'en', 1, 'https://ror.org/01wwqrh75 Arizona State Library, Archives and Public Records'), (46620, 'https://ror.org/01wzq5z79', 'en', 1, 'https://ror.org/01wzq5z79 Nigeria Agricultural Quarantine Service'), (46621, 'https://ror.org/01wzyqj69', 'no_lang_code', 1, 'https://ror.org/01wzyqj69 Kerkhoff Consulting (Germany)'), (46622, 'https://ror.org/01x1jk522', 'no_lang_code', 1, 'https://ror.org/01x1jk522 Tata Technologies (Singapore)'), (46623, 'https://ror.org/01x2j0a42', 'en', 1, 'https://ror.org/01x2j0a42 Huaihua Radio and Television University 怀化广播电视大学'), (46624, 'https://ror.org/01x3vfv57', 'en', 1, 'https://ror.org/01x3vfv57 Zhejiang Changzheng Vocational and Technical College 浙江长征职业技术学院'), (46625, 'https://ror.org/01x4fgp34', 'no_lang_code', 1, 'https://ror.org/01x4fgp34 Enviro Neptune (Canada)'), (46626, 'https://ror.org/01x6c3x12', 'en', 1, 'https://ror.org/01x6c3x12 Universal Therapeutic Massage Institute'), (46627, 'https://ror.org/01x6e4x77', 'en', 1, 'https://ror.org/01x6e4x77 American Orthopsychiatric Association'), (46628, 'https://ror.org/01xfcjr43', 'en', 1, 'https://ror.org/01xfcjr43 Sanyo-Onoda City University 山口東京理科大学'), (46629, 'https://ror.org/01xgsgn35', 'en', 1, 'https://ror.org/01xgsgn35 Luzerne County Libraries'), (46630, 'https://ror.org/01xjvwt10', 'no_lang_code', 1, 'https://ror.org/01xjvwt10 Electrolux (United Kingdom)'), (46631, 'https://ror.org/01xjydw85', 'en', 1, 'https://ror.org/01xjydw85 International HIV/AIDS Alliance'), (46632, 'https://ror.org/01xmeqq94', 'no_lang_code', 1, 'https://ror.org/01xmeqq94 Kowsar Hospital کوثر شیراز'), (46633, 'https://ror.org/01xnbtm64', 'en', 1, 'https://ror.org/01xnbtm64 State Research Institute for Chemistry and Technology of Organoelement Compounds Государственный научно-исследовательский институт химии и технологии элементоорганических соединений'), (46634, 'https://ror.org/01xpja968', 'en', 1, 'https://ror.org/01xpja968 Oita Prefectural Nascent Support School 大分県特別支援学校'), (46635, 'https://ror.org/01xq72953', 'en', 1, 'https://ror.org/01xq72953 Doshisha International Junior and Senior High School'), (46636, 'https://ror.org/01xqtc407', 'no_lang_code', 1, 'https://ror.org/01xqtc407 Nanocomp Technologies (United States)'), (46637, 'https://ror.org/01xs70477', 'no_lang_code', 1, 'https://ror.org/01xs70477 Corning (Israel)'), (46638, 'https://ror.org/01xx0px16', 'en', 1, 'https://ror.org/01xx0px16 ASEAN Foundation'), (46639, 'https://ror.org/01xyr7619', 'en', 1, 'https://ror.org/01xyr7619 National Society of Black Engineers'), (46640, 'https://ror.org/01xzb5e19', 'no_lang_code', 1, 'https://ror.org/01xzb5e19 Ultra Electronics 3 Phoenix (United States)'), (46641, 'https://ror.org/01xzqee24', 'en', 1, 'https://ror.org/01xzqee24 Aichi Prefectural Chiryu East Koto School 愛知県立知立東高等学校'), (46642, 'https://ror.org/01y01n005', 'en', 1, 'https://ror.org/01y01n005 Maricopa County Library District'), (46643, 'https://ror.org/01y16qn61', 'en', 1, 'https://ror.org/01y16qn61 Research Institute for Environmental Sciences and Public Health of Iwate Prefecture 岩手県環境保健研究センター'), (46644, 'https://ror.org/01y1mwf47', 'no_lang_code', 1, 'https://ror.org/01y1mwf47 Liquifer Systems Group (Austria)'), (46645, 'https://ror.org/01y2p0182', 'en', 1, 'https://ror.org/01y2p0182 Gay City Health Project'), (46646, 'https://ror.org/01y65bn93', 'no_lang_code', 1, 'https://ror.org/01y65bn93 Vital Access (United States)'), (46647, 'https://ror.org/01y6s7h62', 'no_lang_code', 1, 'https://ror.org/01y6s7h62 Mölnlycke Health Care (United Kingdom)'), (46648, 'https://ror.org/01y72yy43', 'no_lang_code', 1, 'https://ror.org/01y72yy43 MomsRising'), (46649, 'https://ror.org/01ye08k77', 'en', 1, 'https://ror.org/01ye08k77 The 180th Hospital of PLA 中国人民解放军第180医院'), (46650, 'https://ror.org/01ye7b264', 'no_lang_code', 1, 'https://ror.org/01ye7b264 Avaya (Bermuda)'), (46651, 'https://ror.org/01ye9d912', 'en', 1, 'https://ror.org/01ye9d912 Asian Growth Research Institute 公益財団法人アジア成長研究所'), (46652, 'https://ror.org/01yh1st73', 'no_lang_code', 1, 'https://ror.org/01yh1st73 Unparallel Innovation (Portugal)'), (46653, 'https://ror.org/01yhwa418', 'en', 1, 'https://ror.org/01yhwa418 Institute of Micro and Nanotechnology Instituto de Micro y Nanotecnología'), (46654, 'https://ror.org/01yj78e47', 'en', 1, 'https://ror.org/01yj78e47 Southeast Asia University มหาวิทยาลัยเอเชียตะวันออกเฉียงใต้'), (46655, 'https://ror.org/01yjxek63', 'no_lang_code', 1, 'https://ror.org/01yjxek63 Robert Bosch (Brazil)'), (46656, 'https://ror.org/01yk36x23', 'no_lang_code', 1, 'https://ror.org/01yk36x23 Nippon Soken (Japan) 日本総研'), (46657, 'https://ror.org/01ykg8t62', 'en', 1, 'https://ror.org/01ykg8t62 Kagoshima Prefectural Museum 鹿児島県立博物館'), (46658, 'https://ror.org/01ykj2t23', 'en', 1, 'https://ror.org/01ykj2t23 Fuzzy Systems Institute ファジィシステム研究所'), (46659, 'https://ror.org/01ym1qc81', 'de', 1, 'https://ror.org/01ym1qc81 Anton Proksch Institut'), (46660, 'https://ror.org/01yn5ft19', 'no_lang_code', 1, 'https://ror.org/01yn5ft19 SeQureNet (France)'), (46661, 'https://ror.org/01yp72g57', 'no_lang_code', 1, 'https://ror.org/01yp72g57 Sumco Corporation (Japan) 株式会社SUMCO'), (46662, 'https://ror.org/01ypty838', 'no_lang_code', 1, 'https://ror.org/01ypty838 Megara Resins (Greece)'), (46663, 'https://ror.org/01yrp7892', 'en', 1, 'https://ror.org/01yrp7892 Fraunhofer Information Center for Planning and Building Fraunhofer-Informationszentrum Raum und Bau'), (46664, 'https://ror.org/01yv6h358', 'pt', 1, 'https://ror.org/01yv6h358 Instituto de Tecnologia do Paraná'), (46665, 'https://ror.org/01yvg9s13', 'no_lang_code', 1, 'https://ror.org/01yvg9s13 DuPont (China)'), (46666, 'https://ror.org/01yyvd121', 'en', 1, 'https://ror.org/01yyvd121 Carnegie Foundation for the Advancement of Teaching'), (46667, 'https://ror.org/01z2g2m11', 'en', 1, 'https://ror.org/01z2g2m11 Miyazaki Gakuen Junior College 宮崎学園短期大学'), (46668, 'https://ror.org/01z2vqa26', 'en', 1, 'https://ror.org/01z2vqa26 Centre for Systems Philosophy'), (46669, 'https://ror.org/01z36py26', 'en', 1, 'https://ror.org/01z36py26 Associação Nacional dos Centros de Pós-Graduação em Economia Brazilian Association of Graduate Programs in Economic'), (46670, 'https://ror.org/01z3sws73', 'no_lang_code', 1, 'https://ror.org/01z3sws73 Shinjuku Yamabuki High School 東京都立新宿山吹高等学校'), (46671, 'https://ror.org/01z639x82', 'en', 1, 'https://ror.org/01z639x82 Yanagawa Rehabilitation Hospital 柳川リハビリテーション病院'), (46672, 'https://ror.org/01z7a2p83', 'no_lang_code', 1, 'https://ror.org/01z7a2p83 Accium Biosciences (United States)'), (46673, 'https://ror.org/01z7m4762', 'en', 1, 'https://ror.org/01z7m4762 VicRoads'), (46674, 'https://ror.org/01zarsr31', 'no_lang_code', 1, 'https://ror.org/01zarsr31 Temple Group (United Kingdom)'), (46675, 'https://ror.org/01zavst24', 'en', 1, 'https://ror.org/01zavst24 Inspired Practices in Early Education'), (46676, 'https://ror.org/01zbr4w52', 'no_lang_code', 1, 'https://ror.org/01zbr4w52 S2e Technologies (Canada)'), (46677, 'https://ror.org/01zbsrk34', 'es', 1, 'https://ror.org/01zbsrk34 Hospital General de Tomelloso'), (46678, 'https://ror.org/01zccfn45', 'en', 1, 'https://ror.org/01zccfn45 Yamaguchi Prefectural Asa High School 山口県立厚狭高等学校'), (46679, 'https://ror.org/01zcxfd31', 'no_lang_code', 1, 'https://ror.org/01zcxfd31 Eden Park Illumination (United States)'), (46680, 'https://ror.org/01ze6tn69', 'no_lang_code', 1, 'https://ror.org/01ze6tn69 Maharaj Nakorn Chiang Mai Hospital โรงพยาบาลมหาราชนครเชียงใหม่'), (46681, 'https://ror.org/01zfcnf37', 'no_lang_code', 1, 'https://ror.org/01zfcnf37 N.Bazigos (Greece)'), (46682, 'https://ror.org/01zfjxj34', 'es', 1, 'https://ror.org/01zfjxj34 Ministerio de Agricultura y Ganadería de Costa Rica'), (46683, 'https://ror.org/01zhpc307', 'no_lang_code', 1, 'https://ror.org/01zhpc307 Prodrive Technologies (Netherlands)'), (46684, 'https://ror.org/01zjf2224', 'en', 1, 'https://ror.org/01zjf2224 African Leaders Malaria Alliance'), (46685, 'https://ror.org/01zkeq752', 'no_lang_code', 1, 'https://ror.org/01zkeq752 Valeo (Germany)'), (46686, 'https://ror.org/01zmqmr49', 'no_lang_code', 1, 'https://ror.org/01zmqmr49 Integrated Dynamic Electron Solutions (United States)'), (46687, 'https://ror.org/01zp49f50', 'en', 1, 'https://ror.org/01zp49f50 Government Sadiq College Women University گورنمنٹ صادق کالج وؤمن یونیورسٹی بہاولپور'), (46688, 'https://ror.org/01zppzz18', 'en', 1, 'https://ror.org/01zppzz18 Centre for Theoretical Physics and Astrophysics Центр теоретической физики и астрофизики'), (46689, 'https://ror.org/01zqqhe44', 'en', 1, 'https://ror.org/01zqqhe44 Indian Institute of Business Management Patna'), (46690, 'https://ror.org/01zsbv887', 'no_lang_code', 1, 'https://ror.org/01zsbv887 Optosignal (United Kingdom)'), (46691, 'https://ror.org/01zswhd24', 'no_lang_code', 1, 'https://ror.org/01zswhd24 Husqvarna (United Kingdom)'), (46692, 'https://ror.org/01zv3yh12', 'no_lang_code', 1, 'https://ror.org/01zv3yh12 Hachinohe Gakuin Junior College 八戸学院短期大学'), (46693, 'https://ror.org/01zv98a09', 'en', 1, 'https://ror.org/01zv98a09 Aga Khan University Nairobi'), (46694, 'https://ror.org/01zwme063', 'en', 1, 'https://ror.org/01zwme063 Central Laboratory of the National Veterinary Sanitation Улсын Мал Эмнэлэг Ариун Цэврийн Төв Лаборатори.'), (46695, 'https://ror.org/01zxwpb57', 'en', 1, 'https://ror.org/01zxwpb57 Victoria International University'), (46696, 'https://ror.org/01zz9wh30', 'en', 1, 'https://ror.org/01zz9wh30 Institute of Structure of Matter Istituto di Struttura della Materia'), (46697, 'https://ror.org/0200tp285', 'en', 1, 'https://ror.org/0200tp285 Development Authority of the North Country'), (46698, 'https://ror.org/020209y40', 'no_lang_code', 1, 'https://ror.org/020209y40 Donawa Lifescience Consulting (Italy)'), (46699, 'https://ror.org/02031rv53', 'en', 1, 'https://ror.org/02031rv53 National Institute of Technology, Yonago College 国立米子工業高等専門学校'), (46700, 'https://ror.org/0205x2f04', 'de', 1, 'https://ror.org/0205x2f04 Allgemeines Krankenhaus Celle'), (46701, 'https://ror.org/020e8vq13', 'en', 1, 'https://ror.org/020e8vq13 V.V. Vinogradov Russian Language Institute Институт русского языка имени В. В. Виноградова РАН'), (46702, 'https://ror.org/020eyah39', 'no_lang_code', 1, 'https://ror.org/020eyah39 Przedsiębiorstwo Robót Elewacyjnych (Poland)'), (46703, 'https://ror.org/020h5rq76', 'no_lang_code', 1, 'https://ror.org/020h5rq76 Weatherford (United Kingdom)'), (46704, 'https://ror.org/020p6tc25', 'no_lang_code', 1, 'https://ror.org/020p6tc25 Karl Storz (Switzerland)'), (46705, 'https://ror.org/020r1b091', 'en', 1, 'https://ror.org/020r1b091 Hellenic Cardiological Society Ελληνική Καρδιολογική Εταιρεία'), (46706, 'https://ror.org/020rf1w57', 'no_lang_code', 1, 'https://ror.org/020rf1w57 CNH Industrial (Austria)'), (46707, 'https://ror.org/020tbzb21', 'en', 1, 'https://ror.org/020tbzb21 Egyptian College of Critical Care Physicians'), (46708, 'https://ror.org/020ttfd91', 'en', 1, 'https://ror.org/020ttfd91 Malaysian Cocoa Board'), (46709, 'https://ror.org/020x0c621', 'no_lang_code', 1, 'https://ror.org/020x0c621 Hewlett Packard Enterprise (United States)'), (46710, 'https://ror.org/020y0w788', 'en', 1, 'https://ror.org/020y0w788 Massachusetts Board of Library Commissioners'), (46711, 'https://ror.org/0210xhm07', 'en', 1, 'https://ror.org/0210xhm07 Izumi Junior College 和泉短期大学'), (46712, 'https://ror.org/0210ykj47', 'no_lang_code', 1, 'https://ror.org/0210ykj47 Contego Medical (United States)'), (46713, 'https://ror.org/0212pzf17', 'no_lang_code', 1, 'https://ror.org/0212pzf17 Ventix (Canada)'), (46714, 'https://ror.org/021367g17', 'cs', 1, 'https://ror.org/021367g17 Wikimedia Czech Republic'), (46715, 'https://ror.org/0214y7014', 'no_lang_code', 1, 'https://ror.org/0214y7014 Sony (Taiwan)'), (46716, 'https://ror.org/02168cw18', 'en', 1, 'https://ror.org/02168cw18 Institute of Industrial Ecology Институт промышленной экологии УрО РАН'), (46717, 'https://ror.org/02168y314', 'no_lang_code', 1, 'https://ror.org/02168y314 Rail Vision (United Kingdom)'), (46718, 'https://ror.org/0216x8g43', 'no_lang_code', 1, 'https://ror.org/0216x8g43 TeraSys Technologies (United States)'), (46719, 'https://ror.org/021817660', 'en', 1, 'https://ror.org/021817660 Iraq University College دانشگاه کالج عراق'), (46720, 'https://ror.org/021924r89', 'de', 1, 'https://ror.org/021924r89 Kinderkrebs-Zentrum Hamburg Research Institute Children’s Cancer Center'), (46721, 'https://ror.org/021appb64', 'en', 1, 'https://ror.org/021appb64 King County Library System'), (46722, 'https://ror.org/021gp0c72', 'no_lang_code', 1, 'https://ror.org/021gp0c72 Dirac Solutions (United States)'), (46723, 'https://ror.org/021gppz37', 'en', 1, 'https://ror.org/021gppz37 Kawasaki Municipal Science Museum 川崎市青少年科学館'), (46724, 'https://ror.org/021jj0v07', 'pl', 1, 'https://ror.org/021jj0v07 The School of Higher Education in Humanities of the Association for Adult Education Wyższa Szkoła Humanistyczna Towarzystwa Wiedzy Powszechnej'), (46725, 'https://ror.org/021mrbf63', 'id', 1, 'https://ror.org/021mrbf63 Pusat Penelitian dan Pengembangan Peternakan'), (46726, 'https://ror.org/021pdqz74', 'fr', 1, 'https://ror.org/021pdqz74 Wikimédia France'), (46727, 'https://ror.org/021r8rp50', 'en', 1, 'https://ror.org/021r8rp50 St. Margaret''s Junior College 立教女学院短期大学'), (46728, 'https://ror.org/021skqj79', 'no_lang_code', 1, 'https://ror.org/021skqj79 EpiCypher (United States)'), (46729, 'https://ror.org/021swj028', 'no_lang_code', 1, 'https://ror.org/021swj028 Atlas Elektronik (United Kingdom)'), (46730, 'https://ror.org/021tjzv82', 'en', 1, 'https://ror.org/021tjzv82 Christian Connections for International Health'), (46731, 'https://ror.org/021tpet02', 'en', 1, 'https://ror.org/021tpet02 Association for Unmanned Vehicle Systems International'), (46732, 'https://ror.org/021zy7t36', 'en', 1, 'https://ror.org/021zy7t36 State Special Communications Service of Ukraine Державна служба спеціального зв''язку та захисту інформації України'), (46733, 'https://ror.org/02229kd62', 'no_lang_code', 1, 'https://ror.org/02229kd62 Staples (Canada)'), (46734, 'https://ror.org/0222gjv49', 'en', 1, 'https://ror.org/0222gjv49 Kumamoto Prefectural Arao High School 熊本県立荒尾高等学校'), (46735, 'https://ror.org/022598c22', 'en', 1, 'https://ror.org/022598c22 University of Maryland University College Europe'), (46736, 'https://ror.org/0225zey96', 'en', 1, 'https://ror.org/0225zey96 Obihiro Otani Junior College 帯広大谷短期大学'), (46737, 'https://ror.org/0226q0843', 'no_lang_code', 1, 'https://ror.org/0226q0843 Horyuji Kokusai High School 奈良県立法隆寺国際高等学校'), (46738, 'https://ror.org/022733842', 'es', 1, 'https://ror.org/022733842 Biblioteca del Congreso de la Nación'), (46739, 'https://ror.org/0227dek49', 'en', 1, 'https://ror.org/0227dek49 Zhejiang Provincial Environmental Protection Scientific Research Institute 浙江省环境保护科学设计研究院'), (46740, 'https://ror.org/0228dbh09', 'en', 1, 'https://ror.org/0228dbh09 Observer Research Foundation'), (46741, 'https://ror.org/0228gqj17', 'no_lang_code', 1, 'https://ror.org/0228gqj17 Pitney Bowes (Germany)'), (46742, 'https://ror.org/0229a6d71', 'en', 1, 'https://ror.org/0229a6d71 Institut za javne financije Institute of Public Finance'), (46743, 'https://ror.org/022b5tw91', 'en', 1, 'https://ror.org/022b5tw91 Hans Böckler Foundation Hans-Böckler-Stiftung'), (46744, 'https://ror.org/022c5tm72', 'en', 1, 'https://ror.org/022c5tm72 American Association of Directors of Psychiatric Residency Training'), (46745, 'https://ror.org/022dg8423', 'no_lang_code', 1, 'https://ror.org/022dg8423 Danone (Morocco)'), (46746, 'https://ror.org/022ep0273', 'en', 1, 'https://ror.org/022ep0273 Herrick District Library'), (46747, 'https://ror.org/022gbr829', 'no_lang_code', 1, 'https://ror.org/022gbr829 Aerial BioPharma'), (46748, 'https://ror.org/022h9xz52', 'no_lang_code', 1, 'https://ror.org/022h9xz52 Fon (United Kingdom)'), (46749, 'https://ror.org/022hg5v70', 'en', 1, 'https://ror.org/022hg5v70 Chicago Neuropsychology Group'), (46750, 'https://ror.org/022kamm22', 'en', 1, 'https://ror.org/022kamm22 Al Mamon University College كلية المأمون الجامعة'), (46751, 'https://ror.org/022nyzy72', 'en', 1, 'https://ror.org/022nyzy72 Qinghai Institute for Endemic Diease Prevention and Control'), (46752, 'https://ror.org/022pvfm44', 'en', 1, 'https://ror.org/022pvfm44 Lawton Public Schools'), (46753, 'https://ror.org/022qq1986', 'en', 1, 'https://ror.org/022qq1986 Action on Smoking and Health'), (46754, 'https://ror.org/022rxf761', 'da', 1, 'https://ror.org/022rxf761 Parkinsonforeningen'), (46755, 'https://ror.org/022tpcx70', 'no_lang_code', 1, 'https://ror.org/022tpcx70 JVC Kenwood (Japan) 株式会社 JVCケンウッド'), (46756, 'https://ror.org/022tqjv17', 'en', 1, 'https://ror.org/022tqjv17 University of Yamanashi Hospital 山梨大学医学部附属病院'), (46757, 'https://ror.org/022wcve15', 'no_lang_code', 1, 'https://ror.org/022wcve15 De Beers (United Kingdom)'), (46758, 'https://ror.org/02306qr05', 'en', 1, 'https://ror.org/02306qr05 St. Mary''s College 名古屋柳城短期大学'), (46759, 'https://ror.org/0230wyg61', 'en', 1, 'https://ror.org/0230wyg61 Cardiovascular Innovation Institute'), (46760, 'https://ror.org/0231jxj79', 'en', 1, 'https://ror.org/0231jxj79 Associated Press'), (46761, 'https://ror.org/0232zwb84', 'fr', 1, 'https://ror.org/0232zwb84 CIRP, College International pour la Recherche en Productique'), (46762, 'https://ror.org/0233t5667', 'no_lang_code', 1, 'https://ror.org/0233t5667 Solution Spray Technologies (United states)'), (46763, 'https://ror.org/02357hp16', 'en', 1, 'https://ror.org/02357hp16 Gunma Museum of Natural History 群馬県立自然史博物館'), (46764, 'https://ror.org/0237ckc25', 'no_lang_code', 1, 'https://ror.org/0237ckc25 Kuehne + Nagel (Greece)'), (46765, 'https://ror.org/0237h9n51', 'en', 1, 'https://ror.org/0237h9n51 Kagawa Prefectural School for the Blind 香川県立盲学校'), (46766, 'https://ror.org/0238v4968', 'no_lang_code', 1, 'https://ror.org/0238v4968 NanoMedica (United States)'), (46767, 'https://ror.org/023af1t29', 'en', 1, 'https://ror.org/023af1t29 Gyeonggi College of Science and Technology 경기과학기술대학교'), (46768, 'https://ror.org/023bk1n32', 'no_lang_code', 1, 'https://ror.org/023bk1n32 Research Triangle Environmental Health Collaborative (United States)'), (46769, 'https://ror.org/023dp4p42', 'en', 1, 'https://ror.org/023dp4p42 Mesa Public Library'), (46770, 'https://ror.org/023e72x78', 'no_lang_code', 1, 'https://ror.org/023e72x78 Lishui Central Hospital 丽水市中心医院'), (46771, 'https://ror.org/023fas823', 'no_lang_code', 1, 'https://ror.org/023fas823 Motor Coach Industries (United States)'), (46772, 'https://ror.org/023gjks82', 'en', 1, 'https://ror.org/023gjks82 Aichi Arts Center 愛知芸術文化センタ'), (46773, 'https://ror.org/023jcww95', 'es', 1, 'https://ror.org/023jcww95 Centro de Excelencia en Procesos y Productos de Córdoba'), (46774, 'https://ror.org/023kbw492', 'en', 1, 'https://ror.org/023kbw492 Pittsburgh Psychoanalytic Center'), (46775, 'https://ror.org/023m9rp24', 'de', 1, 'https://ror.org/023m9rp24 Hautklinik Heidelberg'), (46776, 'https://ror.org/023n1np13', 'en', 1, 'https://ror.org/023n1np13 Arannayk Foundation'), (46777, 'https://ror.org/023nefd62', 'en', 1, 'https://ror.org/023nefd62 Museum of Modern Art 茨城県近代美術館'), (46778, 'https://ror.org/023pvcn20', 'no_lang_code', 1, 'https://ror.org/023pvcn20 Cadence Design Systems (United Kingdom)'), (46779, 'https://ror.org/023q20n38', 'en', 1, 'https://ror.org/023q20n38 Chinese Pharmaceutical Association 中国药学会'), (46780, 'https://ror.org/023q39239', 'no_lang_code', 1, 'https://ror.org/023q39239 Eijkelkamp SonicSampDrill (Netherlands)'), (46781, 'https://ror.org/023qkzz98', 'no_lang_code', 1, 'https://ror.org/023qkzz98 Gemalto (United Kingdom)'), (46782, 'https://ror.org/023qwjb45', 'no_lang_code', 1, 'https://ror.org/023qwjb45 Allergan (India)'), (46783, 'https://ror.org/023sa9n23', 'en', 1, 'https://ror.org/023sa9n23 Australian Society for Medical Research'), (46784, 'https://ror.org/023t7pn91', 'en', 1, 'https://ror.org/023t7pn91 Grantmakers for Education'), (46785, 'https://ror.org/023vnxa51', 'en', 1, 'https://ror.org/023vnxa51 National Consumer Affairs Center of Japan 国民生活センター'), (46786, 'https://ror.org/023x6j183', 'no_lang_code', 1, 'https://ror.org/023x6j183 Guardian Industries (United States)'), (46787, 'https://ror.org/023yn4412', 'en', 1, 'https://ror.org/023yn4412 Hekinan Technical High School 愛知県立碧南工業高等学校'), (46788, 'https://ror.org/023zkew37', 'es', 1, 'https://ror.org/023zkew37 Universidad Español'), (46789, 'https://ror.org/02401yq31', 'no_lang_code', 1, 'https://ror.org/02401yq31 Tartis (United States)'), (46790, 'https://ror.org/024285019', 'en', 1, 'https://ror.org/024285019 Shizuoka Prefecture Agricultural and Forestry Research Institute 静岡県/農林技術研究所'), (46791, 'https://ror.org/024596r45', 'en', 1, 'https://ror.org/024596r45 Euclid University'), (46792, 'https://ror.org/0246zee65', 'de', 1, 'https://ror.org/0246zee65 Hals- Nasen- und Ohrenklinik Gießen'), (46793, 'https://ror.org/0247c3d85', 'no_lang_code', 1, 'https://ror.org/0247c3d85 Siemens (Israel)'), (46794, 'https://ror.org/0248jkv14', 'en', 1, 'https://ror.org/0248jkv14 British Psychological Society'), (46795, 'https://ror.org/024972556', 'en', 1, 'https://ror.org/024972556 Hakodate City Museum 市立函館博物館'), (46796, 'https://ror.org/024acas24', 'en', 1, 'https://ror.org/024acas24 Research in Advanced Medical Informatics and Telematics'), (46797, 'https://ror.org/024ape423', 'en', 1, 'https://ror.org/024ape423 Fraunhofer Institute for Integrated Circuits Fraunhofer-Institut für Integrierte Schaltungen'), (46798, 'https://ror.org/024cb5849', 'de', 1, 'https://ror.org/024cb5849 Schweizerisches Idiotikon Swiss idioticon'), (46799, 'https://ror.org/024cft222', 'no_lang_code', 1, 'https://ror.org/024cft222 Wellington UniVentures (New Zealand)'), (46800, 'https://ror.org/024dzge57', 'no_lang_code', 1, 'https://ror.org/024dzge57 Sunstar (Germany)'), (46801, 'https://ror.org/024e28c54', 'no_lang_code', 1, 'https://ror.org/024e28c54 AbbVie (Bahamas)'), (46802, 'https://ror.org/024emee48', 'es', 1, 'https://ror.org/024emee48 Corporación Autónoma Regional de Los Valles del Sinu y del San Jorge'), (46803, 'https://ror.org/024j7f958', 'en', 1, 'https://ror.org/024j7f958 Southeast Clinical Oncology Research Consortium'), (46804, 'https://ror.org/024jp7r97', 'pt', 1, 'https://ror.org/024jp7r97 Associação Brasileira de Metalurgia, Materiais e Mineração'), (46805, 'https://ror.org/024nfx323', 'no_lang_code', 1, 'https://ror.org/024nfx323 Quzhou University 衢州学院'), (46806, 'https://ror.org/024ntr864', 'fr', 1, 'https://ror.org/024ntr864 Université Euro-Afrique'), (46807, 'https://ror.org/024p6aq98', 'en', 1, 'https://ror.org/024p6aq98 Fraunhofer Institute for Silicon Technology Fraunhofer-Institut für Siliziumtechnologie'), (46808, 'https://ror.org/024r2p353', 'en', 1, 'https://ror.org/024r2p353 National Guard Youth Foundation'), (46809, 'https://ror.org/024rpvq56', 'en', 1, 'https://ror.org/024rpvq56 Foundation Nerve Institute 公益財団法人神経研究所'), (46810, 'https://ror.org/024wr7x07', 'es', 1, 'https://ror.org/024wr7x07 Universidad Los Leones'), (46811, 'https://ror.org/02503sm81', 'no_lang_code', 1, 'https://ror.org/02503sm81 Cooke Aquaculture (Canada)'), (46812, 'https://ror.org/0250cw529', 'no_lang_code', 1, 'https://ror.org/0250cw529 Clearside Biomedical (United States)'), (46813, 'https://ror.org/0252kcx79', 'en', 1, 'https://ror.org/0252kcx79 Japan Color Research Institute 日本色彩研究所'), (46814, 'https://ror.org/02552gk22', 'en', 1, 'https://ror.org/02552gk22 Islamic University of Rotterdam Islamitische Universiteit Rotterdam'), (46815, 'https://ror.org/0255r2t12', 'no_lang_code', 1, 'https://ror.org/0255r2t12 Tronox (Australia)'), (46816, 'https://ror.org/02576fj66', 'en', 1, 'https://ror.org/02576fj66 Hokkaidō Museum of Literature'), (46817, 'https://ror.org/025a27r74', 'en', 1, 'https://ror.org/025a27r74 Hue University of Agriculture and Forestry Trường Đại học Nông Lâm – Đại học Huế'), (46818, 'https://ror.org/025b2hx26', 'en', 1, 'https://ror.org/025b2hx26 National Institute of Technology, Gifu College 岐阜工業高等専門学校'), (46819, 'https://ror.org/025ctym15', 'pt', 1, 'https://ror.org/025ctym15 Fundação Meridional de Apoio à Pesquisa Agropecuária'), (46820, 'https://ror.org/025eaap70', 'en', 1, 'https://ror.org/025eaap70 Hokkaido Science Education Center 北海道立理科教育センター'), (46821, 'https://ror.org/025ejqq45', 'en', 1, 'https://ror.org/025ejqq45 BirdLife International'), (46822, 'https://ror.org/025eq1v74', 'id', 1, 'https://ror.org/025eq1v74 Universitas Gajah Putih'), (46823, 'https://ror.org/025eq4061', 'no_lang_code', 1, 'https://ror.org/025eq4061 GSMA (United States)'), (46824, 'https://ror.org/025esa616', 'en', 1, 'https://ror.org/025esa616 Parks Victoria'), (46825, 'https://ror.org/025gshh98', 'en', 1, 'https://ror.org/025gshh98 NTI University'), (46826, 'https://ror.org/025h8ph98', 'en', 1, 'https://ror.org/025h8ph98 Fort Monmouth Economic Revitalization Authority'), (46827, 'https://ror.org/025hrq177', 'en', 1, 'https://ror.org/025hrq177 Zeta Phi Beta Sorority'), (46828, 'https://ror.org/025k5zj19', 'en', 1, 'https://ror.org/025k5zj19 Kumamoto Educational Center 熊本市教育センター'), (46829, 'https://ror.org/025kk0m42', 'en', 1, 'https://ror.org/025kk0m42 Dustin Michael Sekula Memorial Library'), (46830, 'https://ror.org/025pkgg38', 'en', 1, 'https://ror.org/025pkgg38 Fukui Prefectural Fujishima High School 福井県立藤島高等学校'), (46831, 'https://ror.org/025q49t60', 'pt', 1, 'https://ror.org/025q49t60 Prefeitura Municipal de Esteio'), (46832, 'https://ror.org/025qxh655', 'en', 1, 'https://ror.org/025qxh655 International Alliance for Biological Standardization'), (46833, 'https://ror.org/025v7m073', 'en', 1, 'https://ror.org/025v7m073 Hokkaido Ainu Culture Research Center 北海道庁北海道立アイヌ民族文化研究センター'), (46834, 'https://ror.org/025wz5n41', 'en', 1, 'https://ror.org/025wz5n41 Osaka Prefectural Kitano High School 大阪府立北野高等学校'), (46835, 'https://ror.org/025x0cj89', 'no_lang_code', 1, 'https://ror.org/025x0cj89 Kodak (Canada)'), (46836, 'https://ror.org/025xz1z61', 'en', 1, 'https://ror.org/025xz1z61 National Agricultural Research Institute'), (46837, 'https://ror.org/025y1g718', 'no_lang_code', 1, 'https://ror.org/025y1g718 Kyocera (Japan) 京セラ株式会社'), (46838, 'https://ror.org/0262wpz62', 'no_lang_code', 1, 'https://ror.org/0262wpz62 Education software (Japan) 教育ソフトウェア'), (46839, 'https://ror.org/0263gzc89', 'en', 1, 'https://ror.org/0263gzc89 Hara Eye Hospital 原眼科病院'), (46840, 'https://ror.org/0264dxb48', 'en', 1, 'https://ror.org/0264dxb48 Wellcome/MRC Institute of Metabolic Science'), (46841, 'https://ror.org/02652az59', 'en', 1, 'https://ror.org/02652az59 Control Union Academy'), (46842, 'https://ror.org/0266fhg96', 'no_lang_code', 1, 'https://ror.org/0266fhg96 iNano Medical (Canada)'), (46843, 'https://ror.org/026743317', 'en', 1, 'https://ror.org/026743317 Water and Land Resource Centre'), (46844, 'https://ror.org/0269xbr94', 'en', 1, 'https://ror.org/0269xbr94 Californians Dedicated to Education Foundation'), (46845, 'https://ror.org/026a4qe69', 'en', 1, 'https://ror.org/026a4qe69 Ichinomiya Municipal City Hospital 一宮市立市民病院'), (46846, 'https://ror.org/026bbbm26', 'en', 1, 'https://ror.org/026bbbm26 Museum of African American History'), (46847, 'https://ror.org/026csr892', 'en', 1, 'https://ror.org/026csr892 Indiana Office of Defense Development'), (46848, 'https://ror.org/026ghdj11', 'en', 1, 'https://ror.org/026ghdj11 Wikimedia Belgium Wikimédia Belgique'), (46849, 'https://ror.org/026k6bc31', 'en', 1, 'https://ror.org/026k6bc31 Mount Prospect Public Library'), (46850, 'https://ror.org/026kmj910', 'no_lang_code', 1, 'https://ror.org/026kmj910 ThyssenKrupp (Liechtenstein)'), (46851, 'https://ror.org/026m6ke87', 'en', 1, 'https://ror.org/026m6ke87 Brainerd Public Library'), (46852, 'https://ror.org/026mhhz95', 'no_lang_code', 1, 'https://ror.org/026mhhz95 Benchmark Education (United States)'), (46853, 'https://ror.org/026p0h140', 'en', 1, 'https://ror.org/026p0h140 Australian Society of Orthodontists'), (46854, 'https://ror.org/026pdc066', 'no_lang_code', 1, 'https://ror.org/026pdc066 Caterpillar (Germany)'), (46855, 'https://ror.org/026s3qz20', 'en', 1, 'https://ror.org/026s3qz20 Slovak Innovation and Energy Agency Slovenská inovačná a energetická agentúra'), (46856, 'https://ror.org/026s4j722', 'en', 1, 'https://ror.org/026s4j722 Russian Academy of Education России академия образования'), (46857, 'https://ror.org/026sfkz12', 'no_lang_code', 1, 'https://ror.org/026sfkz12 Mondelēz International (Singapore)'), (46858, 'https://ror.org/026t6sy78', 'no_lang_code', 1, 'https://ror.org/026t6sy78 GlaxoSmithKline (Croatia)'), (46859, 'https://ror.org/026tyse21', 'en', 1, 'https://ror.org/026tyse21 Anaheim Public Library'), (46860, 'https://ror.org/026vq2355', 'en', 1, 'https://ror.org/026vq2355 Niigata Prefectural Niigata Minami High School 新潟県立新潟南高等学校'), (46861, 'https://ror.org/026wdw115', 'no_lang_code', 1, 'https://ror.org/026wdw115 Spero Energy (United States)'), (46862, 'https://ror.org/026x09x35', 'no_lang_code', 1, 'https://ror.org/026x09x35 Deutsches Patent- und Markenamt German Patent and Trade Mark Office (Germany)'), (46863, 'https://ror.org/026yc8074', 'en', 1, 'https://ror.org/026yc8074 Hot Springs Research Institute of Kanagawa Prefecture 神奈川県温泉地学研究所'), (46864, 'https://ror.org/02704zf98', 'de', 1, 'https://ror.org/02704zf98 Analytische Laboratorium, Analytisches Laboratorium'), (46865, 'https://ror.org/02710jx66', 'no_lang_code', 1, 'https://ror.org/02710jx66 Izu Nirayama Onsen Hospital 伊豆韮山温泉病院'), (46866, 'https://ror.org/0271q3486', 'en', 1, 'https://ror.org/0271q3486 Foundation Diamond Aging Society Research Foundation ダイヤ高齢社会研究財団'), (46867, 'https://ror.org/0272aey45', 'no_lang_code', 1, 'https://ror.org/0272aey45 Glen Dimplex (Germany)'), (46868, 'https://ror.org/0272gsy54', 'no_lang_code', 1, 'https://ror.org/0272gsy54 BMT Group (United States)'), (46869, 'https://ror.org/0272m3153', 'no_lang_code', 1, 'https://ror.org/0272m3153 WestRock (Germany)'), (46870, 'https://ror.org/0273ga571', 'fr', 1, 'https://ror.org/0273ga571 Développement Economique Longueuil'), (46871, 'https://ror.org/0274wgp76', 'no_lang_code', 1, 'https://ror.org/0274wgp76 Gold Peak Industries (United Kingdom)'), (46872, 'https://ror.org/0275ehw53', 'en', 1, 'https://ror.org/0275ehw53 Bremen Overseas Research & Development Association'), (46873, 'https://ror.org/0276n9116', 'en', 1, 'https://ror.org/0276n9116 Yakub Kolas Central Scientific Library'), (46874, 'https://ror.org/027906p22', 'en', 1, 'https://ror.org/027906p22 Toyama Prefectural Namerikawa High School 富山県立滑川高等学校'), (46875, 'https://ror.org/0279ghc90', 'en', 1, 'https://ror.org/0279ghc90 Pohang SeMyeong Christianity Hospital'), (46876, 'https://ror.org/0279hpp97', 'no_lang_code', 1, 'https://ror.org/0279hpp97 Oakwood Laboratories (United States)'), (46877, 'https://ror.org/027acbb13', 'en', 1, 'https://ror.org/027acbb13 Government of the Czech Republic Vláda České republiky'), (46878, 'https://ror.org/027bhx472', 'no_lang_code', 1, 'https://ror.org/027bhx472 Univar (United States)'), (46879, 'https://ror.org/027e1a103', 'no_lang_code', 1, 'https://ror.org/027e1a103 Qisda (China)'), (46880, 'https://ror.org/027g0hb56', 'no_lang_code', 1, 'https://ror.org/027g0hb56 Hitachi (Germany)'), (46881, 'https://ror.org/027gdgv35', 'en', 1, 'https://ror.org/027gdgv35 Pike Place Market Foundation'), (46882, 'https://ror.org/027ge9s66', 'no_lang_code', 1, 'https://ror.org/027ge9s66 Shure Foods (United States)'), (46883, 'https://ror.org/027jcax02', 'no_lang_code', 1, 'https://ror.org/027jcax02 Ixion (Spain)'), (46884, 'https://ror.org/027k8ke79', 'en', 1, 'https://ror.org/027k8ke79 Show-Me Institute'), (46885, 'https://ror.org/027kpf759', 'no_lang_code', 1, 'https://ror.org/027kpf759 Mitsui Mining & Smelting (Japan) 三井金属鉱業株式会社'), (46886, 'https://ror.org/027n11q15', 'en', 1, 'https://ror.org/027n11q15 Lee County Library System'), (46887, 'https://ror.org/027pe7w88', 'no_lang_code', 1, 'https://ror.org/027pe7w88 MunEDA (Germany)'), (46888, 'https://ror.org/027q26r60', 'en', 1, 'https://ror.org/027q26r60 Kyoto Municipal Uzumasa Elementary School 京都市立太秦小学校'), (46889, 'https://ror.org/027q4m113', 'en', 1, 'https://ror.org/027q4m113 National Association for Armenian Studies and Research'), (46890, 'https://ror.org/027qdw603', 'no_lang_code', 1, 'https://ror.org/027qdw603 Cadence Design Systems (India)'), (46891, 'https://ror.org/027qqvd10', 'no_lang_code', 1, 'https://ror.org/027qqvd10 Obayashi (Japan) 株式会社大林組'), (46892, 'https://ror.org/027rx9762', 'en', 1, 'https://ror.org/027rx9762 United States Naval Sea Cadet Corps'), (46893, 'https://ror.org/027sr5070', 'no_lang_code', 1, 'https://ror.org/027sr5070 Hubbell (United States)'), (46894, 'https://ror.org/027t2s119', 'no_lang_code', 1, 'https://ror.org/027t2s119 Intel (Israel)'), (46895, 'https://ror.org/027tb8875', 'en', 1, 'https://ror.org/027tb8875 Marine Mammals of Maine'), (46896, 'https://ror.org/027tjrp79', 'en', 1, 'https://ror.org/027tjrp79 Africa Progress Panel'), (46897, 'https://ror.org/027w9yg20', 'en', 1, 'https://ror.org/027w9yg20 Society for Human Resource Management'), (46898, 'https://ror.org/027wewa02', 'en', 1, 'https://ror.org/027wewa02 Manufacturing Institute'), (46899, 'https://ror.org/027x43420', 'en', 1, 'https://ror.org/027x43420 Nihon Institute of Medical Science 日本医療科学大学'), (46900, 'https://ror.org/027y4yw29', 'no_lang_code', 1, 'https://ror.org/027y4yw29 Abiomed (Germany)'), (46901, 'https://ror.org/027y5ew45', 'en', 1, 'https://ror.org/027y5ew45 Research Institute of Environment, Agriculture and Fisheries, Osaka Prefecture 大阪府立環境農林水産総合研究所'), (46902, 'https://ror.org/027ynca27', 'no_lang_code', 1, 'https://ror.org/027ynca27 Formosa Plastics (Taiwan) 台灣塑膠公司'), (46903, 'https://ror.org/027zhhk28', 'en', 1, 'https://ror.org/027zhhk28 Meiwa Gakuen Junior College 明和学園短期大学'), (46904, 'https://ror.org/0282kvf82', 'en', 1, 'https://ror.org/0282kvf82 Fédération Internationale Pharmaceutique International Pharmaceutical Federation'), (46905, 'https://ror.org/0282p8n44', 'en', 1, 'https://ror.org/0282p8n44 Osaka Prefectural Education Center 大阪府教育センター'), (46906, 'https://ror.org/0282pkr46', 'en', 1, 'https://ror.org/0282pkr46 Fukuoka Junior College for Kindergarten Teachers 福岡こども短期大学'), (46907, 'https://ror.org/0282x2n68', 'no_lang_code', 1, 'https://ror.org/0282x2n68 Nidek (Japan) 株式会社ニデック'), (46908, 'https://ror.org/02846qn43', 'en', 1, 'https://ror.org/02846qn43 Japanese La Salle Academy ラ・サール中学校・高等学校'), (46909, 'https://ror.org/0284mr070', 'no_lang_code', 1, 'https://ror.org/0284mr070 Hiroshima Cosmopolitan University 広島都市学園大学'), (46910, 'https://ror.org/0285rch92', 'en', 1, 'https://ror.org/0285rch92 National Zoonoses and Food Hygiene Research Centre'), (46911, 'https://ror.org/0287ba124', 'ms', 1, 'https://ror.org/0287ba124 INFOFISH'), (46912, 'https://ror.org/0288c6p43', 'no_lang_code', 1, 'https://ror.org/0288c6p43 Dana (United States)'), (46913, 'https://ror.org/0289e7422', 'no_lang_code', 1, 'https://ror.org/0289e7422 JFE Holdings (Japan) ホールディングス株式会社'), (46914, 'https://ror.org/028a41k93', 'en', 1, 'https://ror.org/028a41k93 Global Health Corps'), (46915, 'https://ror.org/028b28438', 'es', 1, 'https://ror.org/028b28438 Fundacion Biodiversa Colombia'), (46916, 'https://ror.org/028bkpm63', 'no_lang_code', 1, 'https://ror.org/028bkpm63 Medella Health (Canada)'), (46917, 'https://ror.org/028ds0f65', 'en', 1, 'https://ror.org/028ds0f65 American Society of Heating, Refrigerating, and Air-Conditioning Engineers'), (46918, 'https://ror.org/028ewej26', 'en', 1, 'https://ror.org/028ewej26 Whiteville City Schools'), (46919, 'https://ror.org/028hbmh41', 'en', 1, 'https://ror.org/028hbmh41 Nashua Public Library'), (46920, 'https://ror.org/028kj2697', 'no_lang_code', 1, 'https://ror.org/028kj2697 ITT (Germany)'), (46921, 'https://ror.org/028m66c44', 'en', 1, 'https://ror.org/028m66c44 Donetsk Institute for Physics and Engineering named after O.O. Galkin Донецкий физико-технический институт им. А.А.Галкина'), (46922, 'https://ror.org/028m7n806', 'en', 1, 'https://ror.org/028m7n806 Aichi Prefectural Mitsu High School 愛知県立御津高等学校'), (46923, 'https://ror.org/028m8dj97', 'no_lang_code', 1, 'https://ror.org/028m8dj97 Kentucky imaging Technologies (United States)'), (46924, 'https://ror.org/028mbk641', 'no_lang_code', 1, 'https://ror.org/028mbk641 Transcend Engineering (United States)'), (46925, 'https://ror.org/028n6av57', 'no_lang_code', 1, 'https://ror.org/028n6av57 Dynacast (Canada)'), (46926, 'https://ror.org/028pp3w31', 'no_lang_code', 1, 'https://ror.org/028pp3w31 Foxlink (Taiwan) 正崴精密工业'), (46927, 'https://ror.org/028s4s402', 'en', 1, 'https://ror.org/028s4s402 Sri Aurobindo Institute of Technology'), (46928, 'https://ror.org/028t9cg70', 'en', 1, 'https://ror.org/028t9cg70 Baylor Institute for Rehabilitation'), (46929, 'https://ror.org/028tq4e31', 'en', 1, 'https://ror.org/028tq4e31 Newport Chemical Depot'), (46930, 'https://ror.org/028ttt579', 'de', 1, 'https://ror.org/028ttt579 Thüringer Landesanstalt für Landwirtschaft'), (46931, 'https://ror.org/028vbck82', 'en', 1, 'https://ror.org/028vbck82 Kanagawa Odawara Nursing School 神奈川県立小田原養護学校'), (46932, 'https://ror.org/028wmn587', 'en', 1, 'https://ror.org/028wmn587 Central Kentucky Educational Cooperative'), (46933, 'https://ror.org/028x0tg55', 'no_lang_code', 1, 'https://ror.org/028x0tg55 TE Connectivity (Austria)'), (46934, 'https://ror.org/028x16v34', 'no_lang_code', 1, 'https://ror.org/028x16v34 Biominas (Brazil)'), (46935, 'https://ror.org/028xn8h27', 'pt', 1, 'https://ror.org/028xn8h27 Associação Brasileira de Engenharia Agrícola'), (46936, 'https://ror.org/028zxrr95', 'en', 1, 'https://ror.org/028zxrr95 Thai Nguyen University of Agriculture and Forestry Trường Đại học Nông lâm, Đại học Thái Nguyên'), (46937, 'https://ror.org/029043079', 'en', 1, 'https://ror.org/029043079 Edogawa Girls'' Junior & Senior High School 江戸川女子中学校・高等学校'), (46938, 'https://ror.org/029051y19', 'en', 1, 'https://ror.org/029051y19 Jiangsu Provincial Seismological Bureau 江苏省地震局'), (46939, 'https://ror.org/029210p22', 'en', 1, 'https://ror.org/029210p22 Kanagawa Prefectural Youth Center 神奈川県立青少年センター'), (46940, 'https://ror.org/0292ff745', 'en', 1, 'https://ror.org/0292ff745 Council on Foundations'); INSERT INTO `rors` VALUES (46941, 'https://ror.org/0296rp189', 'no_lang_code', 1, 'https://ror.org/0296rp189 Genocea (United States)'), (46942, 'https://ror.org/0297wgk17', 'en', 1, 'https://ror.org/0297wgk17 Lifebox'), (46943, 'https://ror.org/029bg2w02', 'de', 1, 'https://ror.org/029bg2w02 Institut für Salutogenese'), (46944, 'https://ror.org/029bs9b57', 'pt', 1, 'https://ror.org/029bs9b57 Fundação Cearense de Meteorologia e Recursos Hídricos'), (46945, 'https://ror.org/029cnn998', 'en', 1, 'https://ror.org/029cnn998 Delaware Division of Libraries'), (46946, 'https://ror.org/029evds51', 'no_lang_code', 1, 'https://ror.org/029evds51 Infineum (United Kingdom)'), (46947, 'https://ror.org/029ha5706', 'no_lang_code', 1, 'https://ror.org/029ha5706 Gravity Bio (United States)'), (46948, 'https://ror.org/029m89a02', 'en', 1, 'https://ror.org/029m89a02 Saga Prefectural Imari Agriculture and Forestry High School 佐賀県立伊万里農林高等学校'), (46949, 'https://ror.org/029q31q54', 'en', 1, 'https://ror.org/029q31q54 Canadian Friends Of Tel-Aviv University'), (46950, 'https://ror.org/029qnmr64', 'en', 1, 'https://ror.org/029qnmr64 Kern County Library'), (46951, 'https://ror.org/029rcz204', 'no_lang_code', 1, 'https://ror.org/029rcz204 Nanya Technology (Taiwan) 南亞科技'), (46952, 'https://ror.org/029sfp345', 'en', 1, 'https://ror.org/029sfp345 North Carolina Biosciences Organization'), (46953, 'https://ror.org/029ve2p44', 'no_lang_code', 1, 'https://ror.org/029ve2p44 Johnson Matthey (France)'), (46954, 'https://ror.org/029vpma63', 'en', 1, 'https://ror.org/029vpma63 Bronllys Hospital'), (46955, 'https://ror.org/029wtm372', 'en', 1, 'https://ror.org/029wtm372 Stimson Center'), (46956, 'https://ror.org/029z3va66', 'en', 1, 'https://ror.org/029z3va66 Iowa Oncology Research Association'), (46957, 'https://ror.org/02a1tyz74', 'en', 1, 'https://ror.org/02a1tyz74 National Engineering Research Center for Wheat 国家小麦工程技术研究中心'), (46958, 'https://ror.org/02a3d3802', 'no_lang_code', 1, 'https://ror.org/02a3d3802 Netsil (United States)'), (46959, 'https://ror.org/02a5z7132', 'en', 1, 'https://ror.org/02a5z7132 Research Institute for Policies on Pension and Aging 年金と高齢化に関する政策研究所'), (46960, 'https://ror.org/02a7zgk95', 'en', 1, 'https://ror.org/02a7zgk95 Sapporo Medical University Hospital 札幌医科大学附属病院'), (46961, 'https://ror.org/02a8cr479', 'pt', 1, 'https://ror.org/02a8cr479 Sociedade de Anestesiologia do Rio Grande do Sul'), (46962, 'https://ror.org/02a8nk956', 'en', 1, 'https://ror.org/02a8nk956 Medical Teams International'), (46963, 'https://ror.org/02a8zpt37', 'no_lang_code', 1, 'https://ror.org/02a8zpt37 Essilor (France)'), (46964, 'https://ror.org/02abk3844', 'en', 1, 'https://ror.org/02abk3844 Ueda Womens Junior College 上田女子短期大学'), (46965, 'https://ror.org/02aexpx94', 'no_lang_code', 1, 'https://ror.org/02aexpx94 Alchemy (Canada)'), (46966, 'https://ror.org/02af7na82', 'no_lang_code', 1, 'https://ror.org/02af7na82 Durango Multimedia (United States)'), (46967, 'https://ror.org/02afhmq71', 'no_lang_code', 1, 'https://ror.org/02afhmq71 Nova Measuring Instruments (Israel)'), (46968, 'https://ror.org/02ag25v06', 'en', 1, 'https://ror.org/02ag25v06 Chinese Academy of Agricultural Engineering 中国农业科学院农业工程'), (46969, 'https://ror.org/02age0r06', 'no_lang_code', 1, 'https://ror.org/02age0r06 Sheeta (United states)'), (46970, 'https://ror.org/02akbc835', 'en', 1, 'https://ror.org/02akbc835 Chiba Prefectural Sawara High School 千葉県立佐原高等学校'), (46971, 'https://ror.org/02aneag19', 'no_lang_code', 1, 'https://ror.org/02aneag19 Alu Group (Spain)'), (46972, 'https://ror.org/02anmpm17', 'no_lang_code', 1, 'https://ror.org/02anmpm17 Varian Medical Systems (Germany)'), (46973, 'https://ror.org/02ar00159', 'no_lang_code', 1, 'https://ror.org/02ar00159 Myocardial Solutions (United States)'), (46974, 'https://ror.org/02asepr29', 'en', 1, 'https://ror.org/02asepr29 Priory Hospital Chelmsford'), (46975, 'https://ror.org/02av1as94', 'no_lang_code', 1, 'https://ror.org/02av1as94 Phoenix Contact (United States)'), (46976, 'https://ror.org/02avm0p22', 'en', 1, 'https://ror.org/02avm0p22 Aichi Prefectural Narumi High School 愛知県立鳴海高等学校'), (46977, 'https://ror.org/02avpen06', 'de', 1, 'https://ror.org/02avpen06 Deutsche AIDS-Stiftung'), (46978, 'https://ror.org/02ax1e863', 'no_lang_code', 1, 'https://ror.org/02ax1e863 525 Solutions (United States)'), (46979, 'https://ror.org/02axkyn34', 'no_lang_code', 1, 'https://ror.org/02axkyn34 SK Group (Japan)'), (46980, 'https://ror.org/02ay7p923', 'en', 1, 'https://ror.org/02ay7p923 Kyoto Municipal Fushimi Technical High School 京都市立伏見工業高等学校'), (46981, 'https://ror.org/02aybg366', 'en', 1, 'https://ror.org/02aybg366 Qingdao Institute of Marine Geology 中国地质调查局 青岛海洋地质研究所'), (46982, 'https://ror.org/02aywzc16', 'en', 1, 'https://ror.org/02aywzc16 State Treasurer of South Carolina'), (46983, 'https://ror.org/02azaez02', 'en', 1, 'https://ror.org/02azaez02 American Society for Surgery of the Hand'), (46984, 'https://ror.org/02b005b78', 'en', 1, 'https://ror.org/02b005b78 Niigata Prefectural Kamo Agriculture and Forestry High School 新潟県立加茂農林高等学校'), (46985, 'https://ror.org/02b00s810', 'no_lang_code', 1, 'https://ror.org/02b00s810 eBay (Ireland)'), (46986, 'https://ror.org/02b0cb113', 'no_lang_code', 1, 'https://ror.org/02b0cb113 Johnson Controls (Australia)'), (46987, 'https://ror.org/02b1n2z62', 'en', 1, 'https://ror.org/02b1n2z62 Australia Zoo'), (46988, 'https://ror.org/02b2fc027', 'en', 1, 'https://ror.org/02b2fc027 World Veterinary Poultry Association'), (46989, 'https://ror.org/02b40ew58', 'en', 1, 'https://ror.org/02b40ew58 League of United Latin American Citizens'), (46990, 'https://ror.org/02b5r6277', 'no_lang_code', 1, 'https://ror.org/02b5r6277 Manta Biofuel (United States)'), (46991, 'https://ror.org/02b8xb410', 'en', 1, 'https://ror.org/02b8xb410 National Food Technology Research Centre'), (46992, 'https://ror.org/02b9zqw68', 'en', 1, 'https://ror.org/02b9zqw68 Bình Dương University Đại học Bình Dương'), (46993, 'https://ror.org/02bcmhv69', 'no_lang_code', 1, 'https://ror.org/02bcmhv69 Electrovaya (Germany)'), (46994, 'https://ror.org/02bcp9s34', 'no_lang_code', 1, 'https://ror.org/02bcp9s34 Unilever (Germany)'), (46995, 'https://ror.org/02bcq9e02', 'en', 1, 'https://ror.org/02bcq9e02 Ehime Prefectural Matsuyama Technical High School 愛媛県立松山工業高等学校'), (46996, 'https://ror.org/02bdqac63', 'no_lang_code', 1, 'https://ror.org/02bdqac63 Princeton Power Systems (United states)'), (46997, 'https://ror.org/02bdqpa81', 'en', 1, 'https://ror.org/02bdqpa81 Hokkaido Orthopedic Surgery Memorial Hospital'), (46998, 'https://ror.org/02bep9h69', 'en', 1, 'https://ror.org/02bep9h69 eHealth Africa'), (46999, 'https://ror.org/02bf51786', 'no_lang_code', 1, 'https://ror.org/02bf51786 OncoTab (United States)'), (47000, 'https://ror.org/02bf6bf07', 'en', 1, 'https://ror.org/02bf6bf07 Nippon Dental University Hospital 日本歯科大学附属病院'), (47001, 'https://ror.org/02bgfav21', 'de', 1, 'https://ror.org/02bgfav21 Institut für angewandte Arbeitswissenschaft'), (47002, 'https://ror.org/02bgk4s52', 'en', 1, 'https://ror.org/02bgk4s52 Flower And Green Bank 花と緑の銀行'), (47003, 'https://ror.org/02bh88b91', 'en', 1, 'https://ror.org/02bh88b91 Concept Foundation'), (47004, 'https://ror.org/02bhxay29', 'no_lang_code', 1, 'https://ror.org/02bhxay29 Opti O2 (United States)'), (47005, 'https://ror.org/02bj0an55', 'en', 1, 'https://ror.org/02bj0an55 Fairbanks North Star Borough School District'), (47006, 'https://ror.org/02bjgf441', 'no_lang_code', 1, 'https://ror.org/02bjgf441 Aratana Therapeutics (United States)'), (47007, 'https://ror.org/02bknwg38', 'en', 1, 'https://ror.org/02bknwg38 Nagano Prefecture Forestry Research Center 長野県林業総合センター'), (47008, 'https://ror.org/02bm6mv56', 'no_lang_code', 1, 'https://ror.org/02bm6mv56 Woodruff Scientific (United States)'), (47009, 'https://ror.org/02bn2qg18', 'sv', 1, 'https://ror.org/02bn2qg18 Svensk Förening för Sömnforskning och Sömnmedicin'), (47010, 'https://ror.org/02brczk14', 'en', 1, 'https://ror.org/02brczk14 Orkhon University'), (47011, 'https://ror.org/02brzrx03', 'en', 1, 'https://ror.org/02brzrx03 Nagano Technical High School 長野工業高等学校'), (47012, 'https://ror.org/02bt6bb31', 'en', 1, 'https://ror.org/02bt6bb31 Zhejiang Institute of Metrology 计量浙江理工大学'), (47013, 'https://ror.org/02bwhc913', 'no_lang_code', 1, 'https://ror.org/02bwhc913 Carl Zeiss (Israel)'), (47014, 'https://ror.org/02bwx5h75', 'no_lang_code', 1, 'https://ror.org/02bwx5h75 Tau Science (United States)'), (47015, 'https://ror.org/02bz9f046', 'en', 1, 'https://ror.org/02bz9f046 Zaman University សាកលវិទ្យាល័យ ហ្សាម៉ាន់'), (47016, 'https://ror.org/02bzdv186', 'en', 1, 'https://ror.org/02bzdv186 Children''s Trust Foundation'), (47017, 'https://ror.org/02c13hn95', 'no_lang_code', 1, 'https://ror.org/02c13hn95 Quanterix (United States)'), (47018, 'https://ror.org/02c13m258', 'en', 1, 'https://ror.org/02c13m258 Institute of Animal Science and Pastures Instituto de Zootecnia'), (47019, 'https://ror.org/02c176857', 'en', 1, 'https://ror.org/02c176857 North Carolina Association of Community College Trustees'), (47020, 'https://ror.org/02c37sg63', 'no_lang_code', 1, 'https://ror.org/02c37sg63 Flexsurface (United States)'), (47021, 'https://ror.org/02c3f7x68', 'no_lang_code', 1, 'https://ror.org/02c3f7x68 Hoerbiger (Germany)'), (47022, 'https://ror.org/02c3wh872', 'en', 1, 'https://ror.org/02c3wh872 Ōita Prefectural Museum of History 大分県立歴史博物館'), (47023, 'https://ror.org/02c6c1603', 'no_lang_code', 1, 'https://ror.org/02c6c1603 Intellectual Ventures (Singapore)'), (47024, 'https://ror.org/02c6kb837', 'no_lang_code', 1, 'https://ror.org/02c6kb837 BorgWarner (United States)'), (47025, 'https://ror.org/02c7s7e67', 'en', 1, 'https://ror.org/02c7s7e67 Science Teachers Association of Nigeria'), (47026, 'https://ror.org/02c7s8b77', 'en', 1, 'https://ror.org/02c7s8b77 National Archives and Library of Ethiopia'), (47027, 'https://ror.org/02ca33r73', 'en', 1, 'https://ror.org/02ca33r73 International Institute for Advanced Studies 高等研究財団の国際研究所'), (47028, 'https://ror.org/02cac9f06', 'en', 1, 'https://ror.org/02cac9f06 Tokyo Metropolitan Musashi High School 東京都立武蔵高等学校'), (47029, 'https://ror.org/02cavkh05', 'en', 1, 'https://ror.org/02cavkh05 Live & Learn Environmental Education'), (47030, 'https://ror.org/02cbhvc53', 'no_lang_code', 1, 'https://ror.org/02cbhvc53 China National Chemical Corporation (China) 中国化工集团公司'), (47031, 'https://ror.org/02cbrh206', 'en', 1, 'https://ror.org/02cbrh206 American Pharmacists Association'), (47032, 'https://ror.org/02cc83x35', 'en', 1, 'https://ror.org/02cc83x35 Nimbkar Agricultural Research Institute'), (47033, 'https://ror.org/02cd6ga95', 'en', 1, 'https://ror.org/02cd6ga95 Nagano Prefecture Inariyama Nursing School 稲荷山養護学校'), (47034, 'https://ror.org/02cfy3z22', 'de', 1, 'https://ror.org/02cfy3z22 Open Knowledge Foundation Deutschland'), (47035, 'https://ror.org/02chfyt80', 'en', 1, 'https://ror.org/02chfyt80 Canadian Society for Vascular Surgery'), (47036, 'https://ror.org/02ckq3786', 'en', 1, 'https://ror.org/02ckq3786 New York Child Learning Institute'), (47037, 'https://ror.org/02cm5rg43', 'no_lang_code', 1, 'https://ror.org/02cm5rg43 Wikimedia Armenia Վիքիմեդիա Հայաստան'), (47038, 'https://ror.org/02cn5m820', 'en', 1, 'https://ror.org/02cn5m820 Madison City Schools'), (47039, 'https://ror.org/02cq3zx12', 'en', 1, 'https://ror.org/02cq3zx12 Višja prometna šola Maribor Vocational College of Traffic and Transport'), (47040, 'https://ror.org/02csfbx96', 'en', 1, 'https://ror.org/02csfbx96 Richland School District Two'), (47041, 'https://ror.org/02ctpf853', 'en', 1, 'https://ror.org/02ctpf853 Children''s Hospital of Oklahoma'), (47042, 'https://ror.org/02cwjwn07', 'no_lang_code', 1, 'https://ror.org/02cwjwn07 Emerson (China)'), (47043, 'https://ror.org/02cydx698', 'en', 1, 'https://ror.org/02cydx698 Jiaxing Vocational Technical College 嘉兴职业技术学院'), (47044, 'https://ror.org/02czd3h93', 'en', 1, 'https://ror.org/02czd3h93 The Jikei University Hospital 東京慈恵会医科大学附属病院'), (47045, 'https://ror.org/02d0esb25', 'no_lang_code', 1, 'https://ror.org/02d0esb25 Volvo (Canada)'), (47046, 'https://ror.org/02d2pe314', 'en', 1, 'https://ror.org/02d2pe314 Carolus Magnus University'), (47047, 'https://ror.org/02d3zqf38', 'en', 1, 'https://ror.org/02d3zqf38 Montana Cancer Consortium'), (47048, 'https://ror.org/02d6mdg29', 'en', 1, 'https://ror.org/02d6mdg29 Environment and Population Research Centre'), (47049, 'https://ror.org/02d868s45', 'en', 1, 'https://ror.org/02d868s45 Discovery Behavioral Healthcare'), (47050, 'https://ror.org/02d8geg10', 'no_lang_code', 1, 'https://ror.org/02d8geg10 Power Info (United States)'), (47051, 'https://ror.org/02d90d472', 'en', 1, 'https://ror.org/02d90d472 Osaka Municipal Nishi High School 大阪市立西高等学校'), (47052, 'https://ror.org/02d93xc63', 'en', 1, 'https://ror.org/02d93xc63 Keio Shiki Senior High School 慶應義塾志木高等学校'), (47053, 'https://ror.org/02d9c9c40', 'es', 1, 'https://ror.org/02d9c9c40 Instituto Universitario BIOS'), (47054, 'https://ror.org/02db4dt48', 'en', 1, 'https://ror.org/02db4dt48 Yuki Animal Hospital'), (47055, 'https://ror.org/02dc9q641', 'en', 1, 'https://ror.org/02dc9q641 DMC University Laboratories'), (47056, 'https://ror.org/02ddxrd36', 'no_lang_code', 1, 'https://ror.org/02ddxrd36 e-Therapeutics (United Kingdom)'), (47057, 'https://ror.org/02dezs485', 'en', 1, 'https://ror.org/02dezs485 Trường Đại học Hải Dương University of Hai Duong'), (47058, 'https://ror.org/02dfg5n73', 'en', 1, 'https://ror.org/02dfg5n73 Fraunhofer UK Research'), (47059, 'https://ror.org/02dhrxt58', 'no_lang_code', 1, 'https://ror.org/02dhrxt58 Teccampos (Brazil)'), (47060, 'https://ror.org/02djjwk37', 'en', 1, 'https://ror.org/02djjwk37 Inagakuen Public High School 埼玉県伊奈学園総合高校'), (47061, 'https://ror.org/02djvk664', 'en', 1, 'https://ror.org/02djvk664 Shaoxing No.6 People''s Hospital 绍兴市立医院'), (47062, 'https://ror.org/02dkdym27', 'en', 1, 'https://ror.org/02dkdym27 Kagoshima University Hospital 鹿児島大学病院'), (47063, 'https://ror.org/02dm76w35', 'en', 1, 'https://ror.org/02dm76w35 Minnesota Institute of Public Health'), (47064, 'https://ror.org/02dmkmd90', 'no_lang_code', 1, 'https://ror.org/02dmkmd90 LuK (United Kingdom)'), (47065, 'https://ror.org/02dmnrr28', 'en', 1, 'https://ror.org/02dmnrr28 Fachgruppe für Untertagbau Swiss Tunnelling Society'), (47066, 'https://ror.org/02dn7km29', 'no_lang_code', 1, 'https://ror.org/02dn7km29 Kashihara Insectarium 橿原市昆虫館'), (47067, 'https://ror.org/02dnedb80', 'en', 1, 'https://ror.org/02dnedb80 Kansai High School 関西高等学校'), (47068, 'https://ror.org/02dnvjf04', 'en', 1, 'https://ror.org/02dnvjf04 Netherlands Defence Academy'), (47069, 'https://ror.org/02dprvv32', 'en', 1, 'https://ror.org/02dprvv32 Association for Canadian Studies in Australia and New Zealand'), (47070, 'https://ror.org/02drbqt14', 'no_lang_code', 1, 'https://ror.org/02drbqt14 TE Connectivity (China)'), (47071, 'https://ror.org/02drfng73', 'en', 1, 'https://ror.org/02drfng73 Middle Tennessee Research Institute'), (47072, 'https://ror.org/02dry1b63', 'no_lang_code', 1, 'https://ror.org/02dry1b63 Trimeric (United States)'), (47073, 'https://ror.org/02dshg816', 'en', 1, 'https://ror.org/02dshg816 Nature Foundation SA'), (47074, 'https://ror.org/02dsnxe42', 'en', 1, 'https://ror.org/02dsnxe42 Farm Foundation'), (47075, 'https://ror.org/02dsr2x66', 'pt', 1, 'https://ror.org/02dsr2x66 Fundação Liberato'), (47076, 'https://ror.org/02dy2h219', 'en', 1, 'https://ror.org/02dy2h219 State Office for Nuclear Safety Státní Uřad pro Jadernou Bezpečnost'), (47077, 'https://ror.org/02dyqfb80', 'no_lang_code', 1, 'https://ror.org/02dyqfb80 Silicon Labs (United States)'), (47078, 'https://ror.org/02dzrb971', 'no_lang_code', 1, 'https://ror.org/02dzrb971 MSP Analytics (United States)'), (47079, 'https://ror.org/02e1g6m79', 'id', 1, 'https://ror.org/02e1g6m79 Universitas Panca Marga'), (47080, 'https://ror.org/02e2tgs60', 'en', 1, 'https://ror.org/02e2tgs60 Lamont-Doherty Earth Observatory'), (47081, 'https://ror.org/02e4cg183', 'en', 1, 'https://ror.org/02e4cg183 Chest Heart and Stroke Scotland'), (47082, 'https://ror.org/02e918x06', 'no_lang_code', 1, 'https://ror.org/02e918x06 Energy Driven Technologies (United States)'), (47083, 'https://ror.org/02ea4kj06', 'en', 1, 'https://ror.org/02ea4kj06 De Borda Institute'), (47084, 'https://ror.org/02ean8c72', 'it', 1, 'https://ror.org/02ean8c72 Associazione Italiana Di Oncologia Medica'), (47085, 'https://ror.org/02ec9na09', 'en', 1, 'https://ror.org/02ec9na09 Guang Fu Hospital 浙江金华广福医院'), (47086, 'https://ror.org/02edrwa65', 'en', 1, 'https://ror.org/02edrwa65 Shuko Junior College 修紅短期大学'), (47087, 'https://ror.org/02egn3136', 'en', 1, 'https://ror.org/02egn3136 NARI Group (China) 南京自动化研究所'), (47088, 'https://ror.org/02ejcvx87', 'en', 1, 'https://ror.org/02ejcvx87 Ipswich City Council'), (47089, 'https://ror.org/02ejpdc56', 'en', 1, 'https://ror.org/02ejpdc56 Agri-Futures Nova Scotia Association'), (47090, 'https://ror.org/02em2aa12', 'no_lang_code', 1, 'https://ror.org/02em2aa12 Frontier Agriculture (United Kingdom)'), (47091, 'https://ror.org/02emtct55', 'en', 1, 'https://ror.org/02emtct55 Takaishi High School 大阪府立高石高等学校'), (47092, 'https://ror.org/02eps3588', 'no_lang_code', 1, 'https://ror.org/02eps3588 Precision for Medicine (United States)'), (47093, 'https://ror.org/02eq7mb50', 'en', 1, 'https://ror.org/02eq7mb50 Sakai Women''s Junior College 堺女子短期大学'), (47094, 'https://ror.org/02eqd9a40', 'no_lang_code', 1, 'https://ror.org/02eqd9a40 Lite-On Technology Corporation (Taiwan) 建兴科技公司'), (47095, 'https://ror.org/02errs104', 'en', 1, 'https://ror.org/02errs104 Kyoto Municipal Junior College of Nursing 京都市立看護短期大学'), (47096, 'https://ror.org/02et0jb83', 'en', 1, 'https://ror.org/02et0jb83 Yamanashi Prefectural Museum 山梨県立博物館'), (47097, 'https://ror.org/02et85x78', 'sr', 1, 'https://ror.org/02et85x78 Sportska Akademija Beograd'), (47098, 'https://ror.org/02evdsh57', 'en', 1, 'https://ror.org/02evdsh57 Flint Hills Regional Council'), (47099, 'https://ror.org/02evj4e11', 'en', 1, 'https://ror.org/02evj4e11 Universal Technical Institute of Illinois'), (47100, 'https://ror.org/02evvbm94', 'en', 1, 'https://ror.org/02evvbm94 Emerge'), (47101, 'https://ror.org/02ew7cc18', 'en', 1, 'https://ror.org/02ew7cc18 Miyakoda Elementary School 都田小学校'), (47102, 'https://ror.org/02exbb429', 'en', 1, 'https://ror.org/02exbb429 Ministry of Agro Industry and Food Security'), (47103, 'https://ror.org/02exzyx31', 'en', 1, 'https://ror.org/02exzyx31 International Union of Immunological Societies'), (47104, 'https://ror.org/02ez6m968', 'es', 1, 'https://ror.org/02ez6m968 Instituto Nacional de Ciencias Agrícolas'), (47105, 'https://ror.org/02f053x13', 'en', 1, 'https://ror.org/02f053x13 Kagawa Prefectural Board of Education 香川県教育委員会'), (47106, 'https://ror.org/02f0r3n63', 'de', 1, 'https://ror.org/02f0r3n63 BUND Naturschutz'), (47107, 'https://ror.org/02f3pgg92', 'no_lang_code', 1, 'https://ror.org/02f3pgg92 Brooks Automation (Germany)'), (47108, 'https://ror.org/02f4p4v04', 'no_lang_code', 1, 'https://ror.org/02f4p4v04 Convergent Science (United States)'), (47109, 'https://ror.org/02f6v4t81', 'en', 1, 'https://ror.org/02f6v4t81 Xinjiang Institute of Water Resources and Hydropower Research 新疆水利水电科学研究院'), (47110, 'https://ror.org/02f7yzh91', 'no_lang_code', 1, 'https://ror.org/02f7yzh91 GlobalFoundries (Cayman Islands)'), (47111, 'https://ror.org/02f8xge10', 'en', 1, 'https://ror.org/02f8xge10 Global Alliance for Livestock Veterinary Medicines'), (47112, 'https://ror.org/02faq1w63', 'en', 1, 'https://ror.org/02faq1w63 Tokyo Metropolitan Nogyo High School'), (47113, 'https://ror.org/02fe5bq19', 'en', 1, 'https://ror.org/02fe5bq19 Japan Private School Education Research Institute 日本私学教育研究所'), (47114, 'https://ror.org/02ffb7k79', 'no_lang_code', 1, 'https://ror.org/02ffb7k79 Imabari Meitoku Junior College 今治明徳短期大学'), (47115, 'https://ror.org/02fkr9p25', 'no_lang_code', 1, 'https://ror.org/02fkr9p25 WFS Technologies (United Kingdom)'), (47116, 'https://ror.org/02fkw1114', 'en', 1, 'https://ror.org/02fkw1114 Consiglio Nazionale delle Ricerche - Istituto di Chimica dei Composti OrganoMetallici Institute for the Chemistry of OrganoMetallic Compounds'), (47117, 'https://ror.org/02fn9c498', 'de', 1, 'https://ror.org/02fn9c498 Deutsches Beratungszentrum für Hygiene'), (47118, 'https://ror.org/02fnvw217', 'en', 1, 'https://ror.org/02fnvw217 Kyoto Prefectural Sagano High School 嵯峨野高等学校'), (47119, 'https://ror.org/02fqdw168', 'en', 1, 'https://ror.org/02fqdw168 WaterNSW'), (47120, 'https://ror.org/02frad208', 'en', 1, 'https://ror.org/02frad208 International Initiative for Impact Evaluation'), (47121, 'https://ror.org/02frcze54', 'no_lang_code', 1, 'https://ror.org/02frcze54 Software Research Associates (Japan) えすあーるえー'), (47122, 'https://ror.org/02fs1zk32', 'no_lang_code', 1, 'https://ror.org/02fs1zk32 Farus (United States)'), (47123, 'https://ror.org/02ft82f02', 'tr', 1, 'https://ror.org/02ft82f02 Korgan Devlet Hastanesi'), (47124, 'https://ror.org/02fwcwt37', 'no_lang_code', 1, 'https://ror.org/02fwcwt37 Ametek (Germany)'), (47125, 'https://ror.org/02fxdpa68', 'no_lang_code', 1, 'https://ror.org/02fxdpa68 Afingen (United States)'), (47126, 'https://ror.org/02g1g7v23', 'no_lang_code', 1, 'https://ror.org/02g1g7v23 IDEX Corporation (Germany)'), (47127, 'https://ror.org/02g4qga81', 'en', 1, 'https://ror.org/02g4qga81 Western History Association'), (47128, 'https://ror.org/02g6as782', 'en', 1, 'https://ror.org/02g6as782 National Museum of Modern Art Tokyo 東京国立近代美術館'), (47129, 'https://ror.org/02g79nm61', 'no_lang_code', 1, 'https://ror.org/02g79nm61 Akonia Holographics (United States)'), (47130, 'https://ror.org/02g7va395', 'en', 1, 'https://ror.org/02g7va395 European Space Policy Institute Europäisches Institut für Weltraumpolitik'), (47131, 'https://ror.org/02gb9y346', 'fr', 1, 'https://ror.org/02gb9y346 École Nationale Supérieure d''Agriculture'), (47132, 'https://ror.org/02gbdr274', 'en', 1, 'https://ror.org/02gbdr274 Tateyama Elementary School 立山小学校'), (47133, 'https://ror.org/02gcdp811', 'pt', 1, 'https://ror.org/02gcdp811 Instituto de Pesca'), (47134, 'https://ror.org/02gcjrk43', 'en', 1, 'https://ror.org/02gcjrk43 Institute of Clinical Research'), (47135, 'https://ror.org/02gdcn153', 'en', 1, 'https://ror.org/02gdcn153 Institute of Informatics and Telematics Istituto di Informatica e Telematica'), (47136, 'https://ror.org/02gfzp482', 'en', 1, 'https://ror.org/02gfzp482 Federal Institute for Education Development Федеральное государственное автономное учреждение Федеральный институт развития образования'), (47137, 'https://ror.org/02gjwq161', 'no_lang_code', 1, 'https://ror.org/02gjwq161 Answare (Spain)'), (47138, 'https://ror.org/02gk9bd41', 'en', 1, 'https://ror.org/02gk9bd41 Nueta Hidatsa Sahnish College'), (47139, 'https://ror.org/02gn7j616', 'en', 1, 'https://ror.org/02gn7j616 African Virtual University'), (47140, 'https://ror.org/02gp35626', 'no_lang_code', 1, 'https://ror.org/02gp35626 Doka-Gene (Russia)'), (47141, 'https://ror.org/02gsh9561', 'es', 1, 'https://ror.org/02gsh9561 Universidad Metropolitana de Honduras'), (47142, 'https://ror.org/02gtar309', 'en', 1, 'https://ror.org/02gtar309 Association for the Advancement of Baltic Studies'), (47143, 'https://ror.org/02gvfm422', 'no_lang_code', 1, 'https://ror.org/02gvfm422 Ubiwhere (Portugal)'), (47144, 'https://ror.org/02gyh4f05', 'no_lang_code', 1, 'https://ror.org/02gyh4f05 FTL Labs (United States)'), (47145, 'https://ror.org/02gzgaq09', 'no_lang_code', 1, 'https://ror.org/02gzgaq09 Extend Biosciences (United States)'), (47146, 'https://ror.org/02gzmhs41', 'en', 1, 'https://ror.org/02gzmhs41 Russian Scientific Research Institute Microbe'), (47147, 'https://ror.org/02h2pj634', 'no_lang_code', 1, 'https://ror.org/02h2pj634 Seascape Consultants (United Kingdom)'), (47148, 'https://ror.org/02h376w15', 'no_lang_code', 1, 'https://ror.org/02h376w15 Lite-On Technology Corporation (China) 建兴科技公司'), (47149, 'https://ror.org/02h443151', 'en', 1, 'https://ror.org/02h443151 National Akagi of Youth Exchange House 国立赤城青少年交流の家'), (47150, 'https://ror.org/02h4myp42', 'no_lang_code', 1, 'https://ror.org/02h4myp42 Ricoh (Japan) 株式会社リコー'), (47151, 'https://ror.org/02h5eqb27', 'no_lang_code', 1, 'https://ror.org/02h5eqb27 Exciton Technologies (Canada)'), (47152, 'https://ror.org/02h5vx773', 'en', 1, 'https://ror.org/02h5vx773 Marine Advanced Technology Education'), (47153, 'https://ror.org/02h5yd368', 'en', 1, 'https://ror.org/02h5yd368 Sexual Medicine Society of North America'), (47154, 'https://ror.org/02h62y319', 'no_lang_code', 1, 'https://ror.org/02h62y319 Icy Waters (Canada)'), (47155, 'https://ror.org/02h6wcs88', 'en', 1, 'https://ror.org/02h6wcs88 Nara Prefectural Board of Education 奈良県教育委員会'), (47156, 'https://ror.org/02h7nc187', 'en', 1, 'https://ror.org/02h7nc187 Aichi Prefectural Tsurugi hill high school 愛知県立鶴城丘高等学校'), (47157, 'https://ror.org/02hcnd264', 'no_lang_code', 1, 'https://ror.org/02hcnd264 Irida Labs (Greece)'), (47158, 'https://ror.org/02hdqvp39', 'en', 1, 'https://ror.org/02hdqvp39 Institute for Systems and Technologies of Information, Control and Communication'), (47159, 'https://ror.org/02hdsjf18', 'en', 1, 'https://ror.org/02hdsjf18 Iwakuni Junior College 岩国短期大学'), (47160, 'https://ror.org/02hdxnq28', 'de', 1, 'https://ror.org/02hdxnq28 Deutsches Schiffahrtsmuseum German Maritime Museum'), (47161, 'https://ror.org/02he16z20', 'no_lang_code', 1, 'https://ror.org/02he16z20 NGK Insulators (Japan) 日本碍子株式会社'), (47162, 'https://ror.org/02hf7bd34', 'en', 1, 'https://ror.org/02hf7bd34 American Evaluation Association'), (47163, 'https://ror.org/02hfh3870', 'en', 1, 'https://ror.org/02hfh3870 Farm Journal Foundation'), (47164, 'https://ror.org/02hgkrr64', 'en', 1, 'https://ror.org/02hgkrr64 Japan Patent Office 特許庁'), (47165, 'https://ror.org/02hjcc687', 'no_lang_code', 1, 'https://ror.org/02hjcc687 Intelligent Fusion Technology (United States)'), (47166, 'https://ror.org/02hjgfh88', 'en', 1, 'https://ror.org/02hjgfh88 Niigata Prefectural Kashiwazaki Technical High School 新潟県立柏崎工業高等学校'), (47167, 'https://ror.org/02hm5m482', 'en', 1, 'https://ror.org/02hm5m482 Fraunhofer Research Institution for Microsystems and Solid State Technologies Fraunhofer-Einrichtung für Mikrosysteme und Festkörper-Technologien'), (47168, 'https://ror.org/02hp8vh60', 'en', 1, 'https://ror.org/02hp8vh60 Institute of Applied Physiology & Medicine'), (47169, 'https://ror.org/02hpe9z95', 'de', 1, 'https://ror.org/02hpe9z95 M.A.S - Alzheimerhilfe - Demenzservicestelle Bad Ischl, MAS Alzheimerhilfe'), (47170, 'https://ror.org/02hsmgc28', 'pt', 1, 'https://ror.org/02hsmgc28 Agende Guarulhos'), (47171, 'https://ror.org/02hsnr298', 'no_lang_code', 1, 'https://ror.org/02hsnr298 Feiro Marine Life Center'), (47172, 'https://ror.org/02ht8gz29', 'en', 1, 'https://ror.org/02ht8gz29 American College of Veterinary Internal Medicine'), (47173, 'https://ror.org/02hwbev49', 'en', 1, 'https://ror.org/02hwbev49 Erich Schmid Institut für Materialwissenschaft Erich Schmid Institute of Materials Science'), (47174, 'https://ror.org/02hwyte29', 'no_lang_code', 1, 'https://ror.org/02hwyte29 Albemarle (United States)'), (47175, 'https://ror.org/02hz8mm45', 'fr', 1, 'https://ror.org/02hz8mm45 Institut de Recherches Géologiques et Minières Institute of Geological and Mining Research'), (47176, 'https://ror.org/02hzfe323', 'no_lang_code', 1, 'https://ror.org/02hzfe323 Skyworks Solutions (Japan)'), (47177, 'https://ror.org/02hzmab58', 'en', 1, 'https://ror.org/02hzmab58 St. Mary''s University ቅድስት ማርያም ዩኒቨርስቲ'), (47178, 'https://ror.org/02j18km55', 'en', 1, 'https://ror.org/02j18km55 Independent Administrative Institution National Research Institute for Cultural Properties 文化財研究所'), (47179, 'https://ror.org/02j1xaz06', 'en', 1, 'https://ror.org/02j1xaz06 Hospital Agioi Anargyroi'), (47180, 'https://ror.org/02j2fpc69', 'en', 1, 'https://ror.org/02j2fpc69 Yamanashi Prefectural School for the Visually Impaired 山梨県立盲学校'), (47181, 'https://ror.org/02j2kkr61', 'en', 1, 'https://ror.org/02j2kkr61 Fukushima Prefectural Culture Center 福島県文化センター'), (47182, 'https://ror.org/02j2s7216', 'en', 1, 'https://ror.org/02j2s7216 American Association for Geriatric Psychiatry'), (47183, 'https://ror.org/02j4ss342', 'pt', 1, 'https://ror.org/02j4ss342 Secretaria de Estado de Educação do Distrito Federal'), (47184, 'https://ror.org/02j701e26', 'no_lang_code', 1, 'https://ror.org/02j701e26 RPX (United States)'), (47185, 'https://ror.org/02jcrd051', 'en', 1, 'https://ror.org/02jcrd051 Blue Cross Blue Shield Association'), (47186, 'https://ror.org/02jdjf497', 'en', 1, 'https://ror.org/02jdjf497 European Association of Environmental and Resource Economists'), (47187, 'https://ror.org/02jeqzx58', 'en', 1, 'https://ror.org/02jeqzx58 District of Columbia Public Education Fund'), (47188, 'https://ror.org/02jf0r135', 'en', 1, 'https://ror.org/02jf0r135 Miyazaki Prefectural Wood Utilization Research Center 宮崎県木材利用技術センター'), (47189, 'https://ror.org/02jg1ky29', 'no_lang_code', 1, 'https://ror.org/02jg1ky29 NanoXplore (Canada)'), (47190, 'https://ror.org/02jht7h37', 'no_lang_code', 1, 'https://ror.org/02jht7h37 Kohler (New Zealand)'), (47191, 'https://ror.org/02jhvve98', 'en', 1, 'https://ror.org/02jhvve98 Toorak College'), (47192, 'https://ror.org/02jj1fb93', 'en', 1, 'https://ror.org/02jj1fb93 Berlin Graduate School for Transnational Studies'), (47193, 'https://ror.org/02jkw2g13', 'en', 1, 'https://ror.org/02jkw2g13 Yamashina Institute for Ornithology 山階鳥類研究所'), (47194, 'https://ror.org/02jqsa674', 'no_lang_code', 1, 'https://ror.org/02jqsa674 Eni (United Kingdom)'), (47195, 'https://ror.org/02jr6ev43', 'en', 1, 'https://ror.org/02jr6ev43 PowerMyLearning'), (47196, 'https://ror.org/02js38076', 'de', 1, 'https://ror.org/02js38076 Frauenklinik Heidelberg'), (47197, 'https://ror.org/02jsn4551', 'en', 1, 'https://ror.org/02jsn4551 Foundation Learning Software Information Research Center 公益財団法人 学習ソフトウェア情報研究センター'), (47198, 'https://ror.org/02jsvfh24', 'en', 1, 'https://ror.org/02jsvfh24 Federal University Otuoke'), (47199, 'https://ror.org/02jszzb89', 'no_lang_code', 1, 'https://ror.org/02jszzb89 TDK (China) TDK株式会社'), (47200, 'https://ror.org/02jwcy839', 'no_lang_code', 1, 'https://ror.org/02jwcy839 Yazaki (United Kingdom)'), (47201, 'https://ror.org/02jymes45', 'no_lang_code', 1, 'https://ror.org/02jymes45 Skyworks Solutions (United States)'), (47202, 'https://ror.org/02k2mqt73', 'en', 1, 'https://ror.org/02k2mqt73 Family Court of Australia'), (47203, 'https://ror.org/02k37gc37', 'en', 1, 'https://ror.org/02k37gc37 Gunma Archaeological Research Foundation 公益財団法人 群馬県埋蔵文化財調査事業団'), (47204, 'https://ror.org/02k3f4s48', 'en', 1, 'https://ror.org/02k3f4s48 Georgia Chamber of Commerce'), (47205, 'https://ror.org/02k3rdd90', 'no_lang_code', 1, 'https://ror.org/02k3rdd90 Osaka Minami Medical Center 国立病院機構大阪南医療センター'), (47206, 'https://ror.org/02k46hk39', 'en', 1, 'https://ror.org/02k46hk39 Association of Clinical Research Professionals'), (47207, 'https://ror.org/02k55c210', 'en', 1, 'https://ror.org/02k55c210 Gifu Prefectural Board of Education 岐阜県教育委員会'), (47208, 'https://ror.org/02k5q6a71', 'es', 1, 'https://ror.org/02k5q6a71 Academia Politécnica Aeronáutica'), (47209, 'https://ror.org/02k5ra816', 'en', 1, 'https://ror.org/02k5ra816 Kyoto Prefectural Rakuhoku High School 京都府立洛北高等学校'), (47210, 'https://ror.org/02k6gb421', 'en', 1, 'https://ror.org/02k6gb421 National Trauma Institute'), (47211, 'https://ror.org/02k6ncv16', 'no_lang_code', 1, 'https://ror.org/02k6ncv16 Optina Diagnostics (Canada)'), (47212, 'https://ror.org/02k8pys83', 'de', 1, 'https://ror.org/02k8pys83 Christophorus Kliniken'), (47213, 'https://ror.org/02k91w896', 'en', 1, 'https://ror.org/02k91w896 Kentucky Commission on Military Affairs'), (47214, 'https://ror.org/02kb97560', 'en', 1, 'https://ror.org/02kb97560 University Hospitals Seidman Cancer Center'), (47215, 'https://ror.org/02kdt8437', 'no_lang_code', 1, 'https://ror.org/02kdt8437 Catalina Scientific (United States)'), (47216, 'https://ror.org/02ke6ab14', 'en', 1, 'https://ror.org/02ke6ab14 Koninklijke Nederlandse Voetbalbond Royal Dutch Football Association'), (47217, 'https://ror.org/02kedpm29', 'en', 1, 'https://ror.org/02kedpm29 Kyushu Otani Junior College 九州大谷短期大学'), (47218, 'https://ror.org/02kf1yd19', 'no_lang_code', 1, 'https://ror.org/02kf1yd19 Citrix (Switzerland)'), (47219, 'https://ror.org/02kk7cr85', 'en', 1, 'https://ror.org/02kk7cr85 Kawasaki City College of Nursing 川崎市立看護短期大学'), (47220, 'https://ror.org/02km5ae06', 'en', 1, 'https://ror.org/02km5ae06 Fort Vancouver Regional Library District'), (47221, 'https://ror.org/02km5mw71', 'pt', 1, 'https://ror.org/02km5mw71 Associação Brasileira de Química'), (47222, 'https://ror.org/02kmet255', 'en', 1, 'https://ror.org/02kmet255 Institute for Systems Analysis Институт ФГУ Федеральный научно-исследовательский центр научно-исследовательский системного анализа РАН'), (47223, 'https://ror.org/02knfsk89', 'no_lang_code', 1, 'https://ror.org/02knfsk89 Wistron (Taiwan) 緯創資通股份有限公司'), (47224, 'https://ror.org/02kr42612', 'no_lang_code', 1, 'https://ror.org/02kr42612 Nvidia (United Kingdom)'), (47225, 'https://ror.org/02kt78v62', 'en', 1, 'https://ror.org/02kt78v62 Yamanashi Prefectural Board of Education 山梨県教育委員会'), (47226, 'https://ror.org/02ktf7592', 'en', 1, 'https://ror.org/02ktf7592 City University College of Science and Technology'), (47227, 'https://ror.org/02kv9s375', 'no_lang_code', 1, 'https://ror.org/02kv9s375 KUKA (United States)'), (47228, 'https://ror.org/02kwn0g61', 'en', 1, 'https://ror.org/02kwn0g61 Zhoushan Institute of Calibration for Quality and Technology Supervision'), (47229, 'https://ror.org/02kx13m48', 'en', 1, 'https://ror.org/02kx13m48 Catholic Bishops Conference of India'), (47230, 'https://ror.org/02kx36h27', 'no_lang_code', 1, 'https://ror.org/02kx36h27 NovaRx (United States)'), (47231, 'https://ror.org/02kzqwr97', 'no_lang_code', 1, 'https://ror.org/02kzqwr97 Becton Dickinson (Germany)'), (47232, 'https://ror.org/02m3x8945', 'no_lang_code', 1, 'https://ror.org/02m3x8945 GlaxoSmithKline (Ireland)'), (47233, 'https://ror.org/02m5srn05', 'en', 1, 'https://ror.org/02m5srn05 Japan Research Institute 日本総研'), (47234, 'https://ror.org/02m5vr132', 'en', 1, 'https://ror.org/02m5vr132 Philips College'), (47235, 'https://ror.org/02m6x3q63', 'no_lang_code', 1, 'https://ror.org/02m6x3q63 ARC Resources (Canada)'), (47236, 'https://ror.org/02m9k9y84', 'en', 1, 'https://ror.org/02m9k9y84 TexAmericas Center'), (47237, 'https://ror.org/02m9vgw62', 'en', 1, 'https://ror.org/02m9vgw62 National Museum of Emerging Science and Innovation 日本科学未来館'), (47238, 'https://ror.org/02maem855', 'en', 1, 'https://ror.org/02maem855 Ocean Lakes High School'), (47239, 'https://ror.org/02masw633', 'no_lang_code', 1, 'https://ror.org/02masw633 Hartley McMaster (United Kingdom)'), (47240, 'https://ror.org/02mavrn48', 'no_lang_code', 1, 'https://ror.org/02mavrn48 Toshiba (South Korea) 株式会社東芝'), (47241, 'https://ror.org/02maxav80', 'en', 1, 'https://ror.org/02maxav80 Open University of China 国家开放大学'), (47242, 'https://ror.org/02mcad149', 'en', 1, 'https://ror.org/02mcad149 Florida Craniofacial Institute'), (47243, 'https://ror.org/02mda8974', 'en', 1, 'https://ror.org/02mda8974 Kyoto Prefectural Education Center 京都府総合教育センター'), (47244, 'https://ror.org/02mdwjj51', 'no_lang_code', 1, 'https://ror.org/02mdwjj51 Redlen Technologies (Canada)'), (47245, 'https://ror.org/02mejn521', 'en', 1, 'https://ror.org/02mejn521 Taft University System'), (47246, 'https://ror.org/02mfchx98', 'en', 1, 'https://ror.org/02mfchx98 Shiga Prefectural Education Center 滋賀県総合教育センター'), (47247, 'https://ror.org/02mktny84', 'en', 1, 'https://ror.org/02mktny84 Bayburt Devlet Hastanesi Bayburt State Hospital'), (47248, 'https://ror.org/02mmcvz81', 'en', 1, 'https://ror.org/02mmcvz81 Göteborg Medical Society Göteborgs Läkaresällskap'), (47249, 'https://ror.org/02mn1ft77', 'no_lang_code', 1, 'https://ror.org/02mn1ft77 Partow Technologies (United States)'), (47250, 'https://ror.org/02mn80m13', 'no_lang_code', 1, 'https://ror.org/02mn80m13 Universal Master Products (United Kingdom)'), (47251, 'https://ror.org/02mqxmc61', 'en', 1, 'https://ror.org/02mqxmc61 Kyoto City Youth Science Center 京都市青少年科学センター'), (47252, 'https://ror.org/02mrea437', 'en', 1, 'https://ror.org/02mrea437 Institute of Linguistics 中国社会科学院语言研究所'), (47253, 'https://ror.org/02ms1t188', 'en', 1, 'https://ror.org/02ms1t188 Hokkaido Education Research Institute 北海道立教育研究所'), (47254, 'https://ror.org/02mvc4m81', 'en', 1, 'https://ror.org/02mvc4m81 Aichi Prefectural Ichinomiya Nishi High School 愛知県立一宮西高等学校'), (47255, 'https://ror.org/02mx1ea71', 'en', 1, 'https://ror.org/02mx1ea71 Institute of Socio-Political Research Институт социально-политических исследований'), (47256, 'https://ror.org/02n1mtw77', 'no_lang_code', 1, 'https://ror.org/02n1mtw77 Murata Machinery (Japan) 村田機械株式会社'), (47257, 'https://ror.org/02n1tdp80', 'pt', 1, 'https://ror.org/02n1tdp80 Associação Brasileira do Alumínio Brazilian Aluminum Association'), (47258, 'https://ror.org/02n219t94', 'en', 1, 'https://ror.org/02n219t94 Association for Geographic Information'), (47259, 'https://ror.org/02n2ntt72', 'en', 1, 'https://ror.org/02n2ntt72 Zhejiang Environmental Monitoring Center 浙江省环境监测中心'), (47260, 'https://ror.org/02n2pxk31', 'no_lang_code', 1, 'https://ror.org/02n2pxk31 Aspire Solutions (United States)'), (47261, 'https://ror.org/02n3qcb27', 'es', 1, 'https://ror.org/02n3qcb27 Instituto de Cibernética Matemática y Física'), (47262, 'https://ror.org/02n4n5m80', 'en', 1, 'https://ror.org/02n4n5m80 Oceanwide Science Institute'), (47263, 'https://ror.org/02n64c681', 'pt', 1, 'https://ror.org/02n64c681 Fundação de Ciência e Tecnologia'), (47264, 'https://ror.org/02n72nx11', 'no_lang_code', 1, 'https://ror.org/02n72nx11 Danaher (China)'), (47265, 'https://ror.org/02nd88213', 'en', 1, 'https://ror.org/02nd88213 Raffles University Iskandar'), (47266, 'https://ror.org/02necds34', 'no_lang_code', 1, 'https://ror.org/02necds34 Huntsworth Health (United States)'), (47267, 'https://ror.org/02neh0644', 'en', 1, 'https://ror.org/02neh0644 Union School of Theology'), (47268, 'https://ror.org/02nfvrd33', 'no_lang_code', 1, 'https://ror.org/02nfvrd33 HTC (Taiwan) 宏達國際電子股份有限公司'), (47269, 'https://ror.org/02nfvtw87', 'es', 1, 'https://ror.org/02nfvtw87 Instituto de Ecologia y Sistemática'), (47270, 'https://ror.org/02njhsx22', 'no_lang_code', 1, 'https://ror.org/02njhsx22 Alps Electric (Japan) アルプス電気株式会社'), (47271, 'https://ror.org/02njsf937', 'en', 1, 'https://ror.org/02njsf937 New Zealand Plant Protection Society'), (47272, 'https://ror.org/02nka6g66', 'en', 1, 'https://ror.org/02nka6g66 Stone Soup Productions'), (47273, 'https://ror.org/02nkn4852', 'en', 1, 'https://ror.org/02nkn4852 Asossa University አሶሳ ዩኒቨርሲቲ'), (47274, 'https://ror.org/02nkqdh98', 'en', 1, 'https://ror.org/02nkqdh98 RP Fighting Blindness'), (47275, 'https://ror.org/02nma1c30', 'no_lang_code', 1, 'https://ror.org/02nma1c30 International Flavors & Fragrances (United States)'), (47276, 'https://ror.org/02nn9qb77', 'no_lang_code', 1, 'https://ror.org/02nn9qb77 Oberon (Netherlands)'), (47277, 'https://ror.org/02np7dp24', 'fr', 1, 'https://ror.org/02np7dp24 Institute Malgache De Recherches Appliquées'), (47278, 'https://ror.org/02npz4170', 'no_lang_code', 1, 'https://ror.org/02npz4170 Nikita Botanical Gardens Никитский ботанический сад'), (47279, 'https://ror.org/02nq6sy34', 'de', 1, 'https://ror.org/02nq6sy34 Akademie für Gesundheitsberufe'), (47280, 'https://ror.org/02nqcmv36', 'no_lang_code', 1, 'https://ror.org/02nqcmv36 DuPont (Finland)'), (47281, 'https://ror.org/02nrkxp47', 'en', 1, 'https://ror.org/02nrkxp47 Acapulco Institute of Technology Instituto Tecnológico de Acapulco'), (47282, 'https://ror.org/02ns3pe91', 'en', 1, 'https://ror.org/02ns3pe91 Engineering Advancement Association of Japan 般財団法人エンジニアリング協会'), (47283, 'https://ror.org/02nv4he32', 'en', 1, 'https://ror.org/02nv4he32 NIHR Academy'), (47284, 'https://ror.org/02nx94911', 'en', 1, 'https://ror.org/02nx94911 Southwest Educational Development Center'), (47285, 'https://ror.org/02nzhnj74', 'no_lang_code', 1, 'https://ror.org/02nzhnj74 Soleno (Canada)'), (47286, 'https://ror.org/02p3be630', 'en', 1, 'https://ror.org/02p3be630 ACCESS Health International'), (47287, 'https://ror.org/02p3csg43', 'it', 1, 'https://ror.org/02p3csg43 I.T.I. Lattanzio, Istituto di Istruzione Superiore I.T.C. Di Vittorio'), (47288, 'https://ror.org/02p49vj94', 'no_lang_code', 1, 'https://ror.org/02p49vj94 Primax Electronics (Taiwan)'), (47289, 'https://ror.org/02p4cdb03', 'no_lang_code', 1, 'https://ror.org/02p4cdb03 Arotech (Israel)'), (47290, 'https://ror.org/02p7qqb42', 'no_lang_code', 1, 'https://ror.org/02p7qqb42 Keystone Tower Systems (United States)'), (47291, 'https://ror.org/02p9evb60', 'en', 1, 'https://ror.org/02p9evb60 Clinical Solutions'), (47292, 'https://ror.org/02pap1668', 'no_lang_code', 1, 'https://ror.org/02pap1668 ZymoChem (United States)'), (47293, 'https://ror.org/02pbc3p47', 'en', 1, 'https://ror.org/02pbc3p47 Saitama Prefectural Tokorozawa Nishi High School 埼玉県立所沢西高等学校'), (47294, 'https://ror.org/02pbw9e07', 'no_lang_code', 1, 'https://ror.org/02pbw9e07 Nomad Bioscience (Germany)'), (47295, 'https://ror.org/02pdacs91', 'no_lang_code', 1, 'https://ror.org/02pdacs91 Becton Dickinson (Ireland)'), (47296, 'https://ror.org/02pehm937', 'en', 1, 'https://ror.org/02pehm937 Australian Physiotherapy Association'), (47297, 'https://ror.org/02pf53x18', 'en', 1, 'https://ror.org/02pf53x18 Association for Academic Surgery'), (47298, 'https://ror.org/02pfdh860', 'en', 1, 'https://ror.org/02pfdh860 Japan Small Animal Medical Center 日本小動物がんセンター'), (47299, 'https://ror.org/02phsd572', 'no_lang_code', 1, 'https://ror.org/02phsd572 Covance (Germany)'), (47300, 'https://ror.org/02pj4bp80', 'en', 1, 'https://ror.org/02pj4bp80 Faringdon Day Hospital'), (47301, 'https://ror.org/02pkcj269', 'no_lang_code', 1, 'https://ror.org/02pkcj269 Bailey Tool & Manufacturing (United States)'), (47302, 'https://ror.org/02ppzn363', 'no_lang_code', 1, 'https://ror.org/02ppzn363 Yamagata Prefectural Police 山形県警察'), (47303, 'https://ror.org/02prd1m09', 'no_lang_code', 1, 'https://ror.org/02prd1m09 Mi Corporation (United States)'), (47304, 'https://ror.org/02prq1a68', 'en', 1, 'https://ror.org/02prq1a68 Forschungsvereinigung Verbrennungskraftmaschinen Research Association for Combustion Engines'), (47305, 'https://ror.org/02prt3487', 'en', 1, 'https://ror.org/02prt3487 Congressional Coalition on Adoption Institute'), (47306, 'https://ror.org/02prth598', 'no_lang_code', 1, 'https://ror.org/02prth598 Nidec (Germany)'), (47307, 'https://ror.org/02psd9228', 'en', 1, 'https://ror.org/02psd9228 Addis Ababa Science and Technology University የአዲስ አበባ ሳይንስና ቴክኖሎጂ ዩኒቨርስቲ'), (47308, 'https://ror.org/02psd9a04', 'no_lang_code', 1, 'https://ror.org/02psd9a04 Advocates for Human Potential (United States)'), (47309, 'https://ror.org/02ptdjf52', 'en', 1, 'https://ror.org/02ptdjf52 Ministry OF City Planning and Water Supply நகரம் திட்டமிடல் மற்றும் நீர் வழங்கல் அமைச்சு නගරය සැලසුම් හා ජල සම්පාදන අමාත්යාංශය'), (47310, 'https://ror.org/02pthyn77', 'en', 1, 'https://ror.org/02pthyn77 New York University Florence'), (47311, 'https://ror.org/02pvszw76', 'no_lang_code', 1, 'https://ror.org/02pvszw76 Semikron (Germany)'), (47312, 'https://ror.org/02pwct569', 'no_lang_code', 1, 'https://ror.org/02pwct569 Juniper Networks (United States)'), (47313, 'https://ror.org/02pwxft54', 'en', 1, 'https://ror.org/02pwxft54 Mobile Infirmary'), (47314, 'https://ror.org/02py1vz39', 'en', 1, 'https://ror.org/02py1vz39 Okayama Prefectural Okayama Asahi High School 岡山県立岡山朝日高等学校'), (47315, 'https://ror.org/02pyz9n41', 'no_lang_code', 1, 'https://ror.org/02pyz9n41 AcuityBio (United States)'), (47316, 'https://ror.org/02pz14q94', 'no_lang_code', 1, 'https://ror.org/02pz14q94 Shinko Electric Industries (Japan) 新光電気工業'), (47317, 'https://ror.org/02pzhxb85', 'en', 1, 'https://ror.org/02pzhxb85 Vitamin D Society'), (47318, 'https://ror.org/02pzr0022', 'en', 1, 'https://ror.org/02pzr0022 National Center for Science and Technology Evaluation 国家中心的科学技术评价'), (47319, 'https://ror.org/02q11zr32', 'no_lang_code', 1, 'https://ror.org/02q11zr32 DMG Mori (Germany)'), (47320, 'https://ror.org/02q248z41', 'no_lang_code', 1, 'https://ror.org/02q248z41 Advisory Board Company (United States)'), (47321, 'https://ror.org/02q2axs78', 'en', 1, 'https://ror.org/02q2axs78 Kyoto Seizan College 京都西山短期大学'), (47322, 'https://ror.org/02q486a47', 'en', 1, 'https://ror.org/02q486a47 Japanese Association of University Women パトリシア信濃町テラス'), (47323, 'https://ror.org/02q5b9n70', 'no_lang_code', 1, 'https://ror.org/02q5b9n70 Transient Plasma Systems (United States)'), (47324, 'https://ror.org/02q83n633', 'no_lang_code', 1, 'https://ror.org/02q83n633 Vossloh (Germany)'), (47325, 'https://ror.org/02q8j7k72', 'en', 1, 'https://ror.org/02q8j7k72 Metropolitan Library System'), (47326, 'https://ror.org/02q911y28', 'no_lang_code', 1, 'https://ror.org/02q911y28 Lalema (Canada)'), (47327, 'https://ror.org/02q9dpj81', 'en', 1, 'https://ror.org/02q9dpj81 National Institute of Technology Okinawa College 沖縄工業高等専門学校'), (47328, 'https://ror.org/02qcpws31', 'en', 1, 'https://ror.org/02qcpws31 Ghana Wildlife Society'), (47329, 'https://ror.org/02qd2bv04', 'no_lang_code', 1, 'https://ror.org/02qd2bv04 Sony (China) 索尼'), (47330, 'https://ror.org/02qd46241', 'en', 1, 'https://ror.org/02qd46241 Institute for International Policy Studies 財団世界平和研究所'), (47331, 'https://ror.org/02qd93495', 'no_lang_code', 1, 'https://ror.org/02qd93495 MacGregor (Germany)'), (47332, 'https://ror.org/02qf65t43', 'en', 1, 'https://ror.org/02qf65t43 Food and Agricultural Research and Extension Institute'), (47333, 'https://ror.org/02qh3e530', 'en', 1, 'https://ror.org/02qh3e530 Hokkaido Pharmaceutical University 北海道薬科大学'), (47334, 'https://ror.org/02qhp8q93', 'tr', 1, 'https://ror.org/02qhp8q93 Gazi Hastanesi'), (47335, 'https://ror.org/02qhvwc15', 'en', 1, 'https://ror.org/02qhvwc15 Boulder Institute of Microfinance'), (47336, 'https://ror.org/02qqwxa87', 'en', 1, 'https://ror.org/02qqwxa87 Church World Service'), (47337, 'https://ror.org/02qr6qm80', 'en', 1, 'https://ror.org/02qr6qm80 North Carolina Center of Innovation Network'), (47338, 'https://ror.org/02qraea35', 'en', 1, 'https://ror.org/02qraea35 Ishikawa Prefectural Police 石川県警察本部'), (47339, 'https://ror.org/02qwkrw10', 'en', 1, 'https://ror.org/02qwkrw10 National Institute of Health ՀՀ ԱՆ Առողջապահության Ազգային Ինստիտուտ'), (47340, 'https://ror.org/02qwxva96', 'en', 1, 'https://ror.org/02qwxva96 Colorado Northwestern Community College'), (47341, 'https://ror.org/02qy0m851', 'en', 1, 'https://ror.org/02qy0m851 Aomori Prefectural Local Museum 青森県立郷土館'), (47342, 'https://ror.org/02r00ef35', 'en', 1, 'https://ror.org/02r00ef35 Jewish University in Moscow Высшая гуманитарная школа имени С. Дубнова'), (47343, 'https://ror.org/02r033j14', 'en', 1, 'https://ror.org/02r033j14 National College of Technology, Wakayama College 和歌山工業高等専門学校'), (47344, 'https://ror.org/02r1xnr27', 'en', 1, 'https://ror.org/02r1xnr27 Hillsborough Education Foundation'), (47345, 'https://ror.org/02r3gag23', 'en', 1, 'https://ror.org/02r3gag23 Japan Kinoko Research Center Foundation 日本きのこセンタ'), (47346, 'https://ror.org/02r4fh585', 'en', 1, 'https://ror.org/02r4fh585 Oita Prefectural School for the Blind 大分県立盲学校'), (47347, 'https://ror.org/02r5rm445', 'en', 1, 'https://ror.org/02r5rm445 Benesse Educational Research and Development Institute ベネッセ教育総合研究所'), (47348, 'https://ror.org/02r6wnk86', 'en', 1, 'https://ror.org/02r6wnk86 Okinawa Prefectural Education Center 沖縄県立総合教育センター'), (47349, 'https://ror.org/02r728f83', 'no_lang_code', 1, 'https://ror.org/02r728f83 ASV (United States)'); INSERT INTO `rors` VALUES (47350, 'https://ror.org/02r7rkw80', 'no_lang_code', 1, 'https://ror.org/02r7rkw80 Southall Environmental Associates (United States)'), (47351, 'https://ror.org/02r9ctp23', 'fr', 1, 'https://ror.org/02r9ctp23 Société Française d''Exportation des Ressources Éducatives'), (47352, 'https://ror.org/02r9ych18', 'pt', 1, 'https://ror.org/02r9ych18 Espregueira Mendes Clinic'), (47353, 'https://ror.org/02raw4k91', 'no_lang_code', 1, 'https://ror.org/02raw4k91 Coloplast (Germany)'), (47354, 'https://ror.org/02rbpte87', 'en', 1, 'https://ror.org/02rbpte87 African Women Education and Development Forum'), (47355, 'https://ror.org/02rcm3a66', 'en', 1, 'https://ror.org/02rcm3a66 National Aquatic Resources Research and Development Agency'), (47356, 'https://ror.org/02rcxmd71', 'en', 1, 'https://ror.org/02rcxmd71 Yukon Health and Social Services'), (47357, 'https://ror.org/02reep516', 'en', 1, 'https://ror.org/02reep516 Association of Military Surgeons of the United States'), (47358, 'https://ror.org/02rfh6m08', 'en', 1, 'https://ror.org/02rfh6m08 Fukushima Prefectural Police 福島県警察本部'), (47359, 'https://ror.org/02rggjh51', 'en', 1, 'https://ror.org/02rggjh51 Gov2u'), (47360, 'https://ror.org/02rgkd872', 'en', 1, 'https://ror.org/02rgkd872 Guangzhou Municipal Engineering Design and Research Institute 广州市政工程设计研究院'), (47361, 'https://ror.org/02rh64q44', 'en', 1, 'https://ror.org/02rh64q44 Massachusetts Business Alliance for Education'), (47362, 'https://ror.org/02rhb5h29', 'no_lang_code', 1, 'https://ror.org/02rhb5h29 Tokyo Metropolitan Archives 東京都公文書館'), (47363, 'https://ror.org/02rhs4t61', 'no_lang_code', 1, 'https://ror.org/02rhs4t61 Doug Bragg Enterprises (Canada)'), (47364, 'https://ror.org/02rhzx356', 'en', 1, 'https://ror.org/02rhzx356 Australasian Sleep Association'), (47365, 'https://ror.org/02rj7et34', 'en', 1, 'https://ror.org/02rj7et34 Educational Service District 123'), (47366, 'https://ror.org/02rqdr293', 'en', 1, 'https://ror.org/02rqdr293 Building Research Institute 筑波研究学園都市交流協議会'), (47367, 'https://ror.org/02rqp9j27', 'no_lang_code', 1, 'https://ror.org/02rqp9j27 Batavia Biosciences (Netherlands)'), (47368, 'https://ror.org/02rsbbb97', 'en', 1, 'https://ror.org/02rsbbb97 Al-Nasser University جامعة الناصر'), (47369, 'https://ror.org/02rtq1r98', 'en', 1, 'https://ror.org/02rtq1r98 Kunstmuseum Bern Museum of Fine Arts Bern'), (47370, 'https://ror.org/02rvaak51', 'pt', 1, 'https://ror.org/02rvaak51 Instituto By Brasil'), (47371, 'https://ror.org/02rzd6x38', 'en', 1, 'https://ror.org/02rzd6x38 National College'), (47372, 'https://ror.org/02rzte064', 'en', 1, 'https://ror.org/02rzte064 Zhejiang Science and Technology Information Institute 浙江省科技信息研究院'), (47373, 'https://ror.org/02rzzjk74', 'fr', 1, 'https://ror.org/02rzzjk74 École Nationale Supérieure des Mines de Nancy'), (47374, 'https://ror.org/02s0wcj29', 'no_lang_code', 1, 'https://ror.org/02s0wcj29 Taiwan Semiconductor Manufacturing Company (China) 台灣積體電路製造公司'), (47375, 'https://ror.org/02s39fg77', 'no_lang_code', 1, 'https://ror.org/02s39fg77 Autoliv (Japan)'), (47376, 'https://ror.org/02s3q5660', 'en', 1, 'https://ror.org/02s3q5660 Concordia Hospital'), (47377, 'https://ror.org/02s50ft61', 'no_lang_code', 1, 'https://ror.org/02s50ft61 Yeda Research and Development (Israel) ידע חברה למחקר ופתוח'), (47378, 'https://ror.org/02s52y897', 'de', 1, 'https://ror.org/02s52y897 Institut für Kulturforschung Graubünden'), (47379, 'https://ror.org/02s5hdd60', 'en', 1, 'https://ror.org/02s5hdd60 Cache Public Schools'), (47380, 'https://ror.org/02s6pzw53', 'no_lang_code', 1, 'https://ror.org/02s6pzw53 Cubidor (Switzerland)'), (47381, 'https://ror.org/02s6qa536', 'no_lang_code', 1, 'https://ror.org/02s6qa536 Onconome (United States)'), (47382, 'https://ror.org/02s6rdg38', 'no_lang_code', 1, 'https://ror.org/02s6rdg38 Novatek Microelectronics (Taiwan) 聯詠科技股份有限公司'), (47383, 'https://ror.org/02s7dzt19', 'en', 1, 'https://ror.org/02s7dzt19 Salford City Council'), (47384, 'https://ror.org/02s8x1148', 'en', 1, 'https://ror.org/02s8x1148 First Hospital of Shijiazhuang 石家庄市第一医院'), (47385, 'https://ror.org/02s95xt63', 'no_lang_code', 1, 'https://ror.org/02s95xt63 Canon (United Kingdom)'), (47386, 'https://ror.org/02sfkc120', 'en', 1, 'https://ror.org/02sfkc120 Emory Rehabilitation Hospital'), (47387, 'https://ror.org/02sjef319', 'en', 1, 'https://ror.org/02sjef319 Washington State University Tri-Cities'), (47388, 'https://ror.org/02sm4kj57', 'en', 1, 'https://ror.org/02sm4kj57 Fraunhofer Institute for Technological Trend Analysis Fraunhofer-Institut für Naturwissenschaftlich-Technische Trendanalysen'), (47389, 'https://ror.org/02smvmz76', 'en', 1, 'https://ror.org/02smvmz76 Research Institute for System Studies Федеральный научный центр Научно-исследовательский институт системных исследований Российской академии наук'), (47390, 'https://ror.org/02sqxcg48', 'en', 1, 'https://ror.org/02sqxcg48 Second People’s Hospital of Huai’an 淮安市第二人民医院'), (47391, 'https://ror.org/02srvrw14', 'no_lang_code', 1, 'https://ror.org/02srvrw14 Galapagos (Croatia)'), (47392, 'https://ror.org/02st2pm23', 'it', 1, 'https://ror.org/02st2pm23 Associazione Italiana Contro le Leucemie Linfomi e Mieloma'), (47393, 'https://ror.org/02st7b426', 'en', 1, 'https://ror.org/02st7b426 Dr Youth Clinic 박사 청소년 클리닉'), (47394, 'https://ror.org/02stn1573', 'no_lang_code', 1, 'https://ror.org/02stn1573 IHI Corporation (Germany)'), (47395, 'https://ror.org/02svp4q11', 'en', 1, 'https://ror.org/02svp4q11 Dementia UK'), (47396, 'https://ror.org/02sw73p72', 'en', 1, 'https://ror.org/02sw73p72 Technological University Mawlamyaing နည်းပညာ တက္ကသိုလ် (မော်လမြိုင်)'), (47397, 'https://ror.org/02sx09p05', 'en', 1, 'https://ror.org/02sx09p05 Hegang People''s Hospital 鹤岗市人民医院'), (47398, 'https://ror.org/02t2b1f58', 'no_lang_code', 1, 'https://ror.org/02t2b1f58 Wikimedia Israel ויקימדיה ישראל'), (47399, 'https://ror.org/02t2pyr24', 'no_lang_code', 1, 'https://ror.org/02t2pyr24 Procter & Gamble (Germany)'), (47400, 'https://ror.org/02t5fze90', 'en', 1, 'https://ror.org/02t5fze90 Japan Institute of Lifelong Learning 般財団法人 日本生涯学習総合研究所'), (47401, 'https://ror.org/02t6k0v08', 'en', 1, 'https://ror.org/02t6k0v08 Katanga Methodist University Université Méthodiste au Katanga'), (47402, 'https://ror.org/02t7xfd51', 'pt', 1, 'https://ror.org/02t7xfd51 Centro de Estudos e Sistemas Avançados do Recife'), (47403, 'https://ror.org/02t86cp18', 'es', 1, 'https://ror.org/02t86cp18 Universidad Bancaria de México'), (47404, 'https://ror.org/02tbkt967', 'en', 1, 'https://ror.org/02tbkt967 National Hospital Organization Takasaki Medical Center 国立病院機構高崎総合医療センター'), (47405, 'https://ror.org/02tcsd812', 'no_lang_code', 1, 'https://ror.org/02tcsd812 Faradion (United Kingdom)'), (47406, 'https://ror.org/02te08018', 'no_lang_code', 1, 'https://ror.org/02te08018 Wikimedia India'), (47407, 'https://ror.org/02tefzr61', 'en', 1, 'https://ror.org/02tefzr61 University of Tokyo Health Sciences 東京医療学院大学'), (47408, 'https://ror.org/02tg35219', 'no_lang_code', 1, 'https://ror.org/02tg35219 Ceres Nanosciences'), (47409, 'https://ror.org/02tg5n396', 'no_lang_code', 1, 'https://ror.org/02tg5n396 Emerson (Germany)'), (47410, 'https://ror.org/02tggea32', 'es', 1, 'https://ror.org/02tggea32 Universidad Indígena Boliviana Aymara Tupak Katari'), (47411, 'https://ror.org/02thzwy35', 'en', 1, 'https://ror.org/02thzwy35 Okayama Psychiatric Medical Center 岡山県精神医療センター'), (47412, 'https://ror.org/02tj98425', 'de', 1, 'https://ror.org/02tj98425 Aachener Institut für Bauschadensforschung und Angewandte Bauphysik'), (47413, 'https://ror.org/02tjrsf04', 'no_lang_code', 1, 'https://ror.org/02tjrsf04 Mikasa City Museum 三笠市立博物館'), (47414, 'https://ror.org/02tntw181', 'no_lang_code', 1, 'https://ror.org/02tntw181 Broala (United States)'), (47415, 'https://ror.org/02tqh0t89', 'en', 1, 'https://ror.org/02tqh0t89 International Institute of Rural Reconstruction'), (47416, 'https://ror.org/02tr89m76', 'en', 1, 'https://ror.org/02tr89m76 Flowminder Foundation Stiftelsen Flowminder'), (47417, 'https://ror.org/02tsn5q48', 'en', 1, 'https://ror.org/02tsn5q48 LEV Foundation'), (47418, 'https://ror.org/02tzqkh80', 'en', 1, 'https://ror.org/02tzqkh80 International University of Grand Bassam'), (47419, 'https://ror.org/02tztn617', 'no_lang_code', 1, 'https://ror.org/02tztn617 Wilex (Germany)'), (47420, 'https://ror.org/02v01cg08', 'es', 1, 'https://ror.org/02v01cg08 Unidad de Cirugía Artroscópica'), (47421, 'https://ror.org/02v2hb481', 'en', 1, 'https://ror.org/02v2hb481 Fukuoka Prefectural Board of Education 教育の福岡県事務所'), (47422, 'https://ror.org/02v3fc375', 'no_lang_code', 1, 'https://ror.org/02v3fc375 Auckland UniServices (New Zealand)'), (47423, 'https://ror.org/02v3q4f93', 'en', 1, 'https://ror.org/02v3q4f93 Center for Environmental and Geographic Information Services'), (47424, 'https://ror.org/02v4v1j69', 'en', 1, 'https://ror.org/02v4v1j69 Gastro Obeso Center'), (47425, 'https://ror.org/02v5bg165', 'en', 1, 'https://ror.org/02v5bg165 Lumina Foundation'), (47426, 'https://ror.org/02v5zjv47', 'sv', 1, 'https://ror.org/02v5zjv47 Wikimedia Sverige'), (47427, 'https://ror.org/02v62c509', 'en', 1, 'https://ror.org/02v62c509 Jacksonville Public Education Fund'), (47428, 'https://ror.org/02v953j25', 'en', 1, 'https://ror.org/02v953j25 National Muroto Youth Outdoor Learning Center 国立室戸青少年自然の家'), (47429, 'https://ror.org/02vd4tk35', 'no_lang_code', 1, 'https://ror.org/02vd4tk35 Mann+Hummel (United States)'), (47430, 'https://ror.org/02vdxz509', 'en', 1, 'https://ror.org/02vdxz509 Fukushima Iwaki Agricultural High School 福島県立磐城農業高等学校'), (47431, 'https://ror.org/02vft6f63', 'en', 1, 'https://ror.org/02vft6f63 Tokyo Metropolitan Hiroo High School 東京都立広尾高等学校'), (47432, 'https://ror.org/02vfzhm25', 'de', 1, 'https://ror.org/02vfzhm25 Barmherzige Schwestern vom heiligen Kreuz'), (47433, 'https://ror.org/02vg5vv12', 'en', 1, 'https://ror.org/02vg5vv12 Noguchi Institute 財団法人野口研究所'), (47434, 'https://ror.org/02vh58j74', 'en', 1, 'https://ror.org/02vh58j74 Krajowe Centrum Informatyki Kwantowej w Gdańsku National Quantum Information Centre in Gdansk'), (47435, 'https://ror.org/02vj2d285', 'en', 1, 'https://ror.org/02vj2d285 Minatogawa College 湊川短期大学'), (47436, 'https://ror.org/02vjb7q13', 'en', 1, 'https://ror.org/02vjb7q13 Kyoto Prefectural Suzaku High School 京都府立朱雀高等学校'), (47437, 'https://ror.org/02vjq2k16', 'en', 1, 'https://ror.org/02vjq2k16 BIO Ventures for Global Health'), (47438, 'https://ror.org/02vjw6237', 'en', 1, 'https://ror.org/02vjw6237 China Foundation'), (47439, 'https://ror.org/02vkk3485', 'no_lang_code', 1, 'https://ror.org/02vkk3485 Dover (Germany)'), (47440, 'https://ror.org/02vnf7178', 'en', 1, 'https://ror.org/02vnf7178 International Society for Equity in Health'), (47441, 'https://ror.org/02vnhrp96', 'en', 1, 'https://ror.org/02vnhrp96 IGAD Sheikh Technical Veterinary School and Reference Centre'), (47442, 'https://ror.org/02vq92e47', 'no_lang_code', 1, 'https://ror.org/02vq92e47 Nordson (United States)'), (47443, 'https://ror.org/02vr4se61', 'en', 1, 'https://ror.org/02vr4se61 Brownsville Public Library'), (47444, 'https://ror.org/02vrrwa37', 'en', 1, 'https://ror.org/02vrrwa37 Middle Eastern Culture Center in Japan 日本では中近東文化センター'), (47445, 'https://ror.org/02vszc135', 'no_lang_code', 1, 'https://ror.org/02vszc135 Semiconductor Energy Laboratory (Japan) 株式会社半導体エネルギー研究所'), (47446, 'https://ror.org/02vtn5444', 'en', 1, 'https://ror.org/02vtn5444 Saitama Junshin Junior College 埼玉純真短期大学'), (47447, 'https://ror.org/02vva9s75', 'no_lang_code', 1, 'https://ror.org/02vva9s75 EFD Induction (Germany)'), (47448, 'https://ror.org/02vvp2k82', 'en', 1, 'https://ror.org/02vvp2k82 National Institute of Technology, Sasebo College 技術総合研究所、佐世保カレッジ'), (47449, 'https://ror.org/02vvp3528', 'es', 1, 'https://ror.org/02vvp3528 Universidad de Matamoros'), (47450, 'https://ror.org/02vw0qn29', 'en', 1, 'https://ror.org/02vw0qn29 American Association of School Administrators'), (47451, 'https://ror.org/02vw9t771', 'en', 1, 'https://ror.org/02vw9t771 Akita Prefectural Akita High School 秋田県立秋田高等学校'), (47452, 'https://ror.org/02vx2hk50', 'en', 1, 'https://ror.org/02vx2hk50 Center for Integrated Smart Sensors'), (47453, 'https://ror.org/02vx5xr46', 'en', 1, 'https://ror.org/02vx5xr46 Osaka Prefectural Police Department 大阪府警察'), (47454, 'https://ror.org/02vxh1k29', 'no_lang_code', 1, 'https://ror.org/02vxh1k29 Aurobindo Pharma (United States)'), (47455, 'https://ror.org/02w0rjw17', 'es', 1, 'https://ror.org/02w0rjw17 Planta Piloto de Procesos Industriales Microbiológicos'), (47456, 'https://ror.org/02w528w58', 'no_lang_code', 1, 'https://ror.org/02w528w58 Fuji Xerox (Japan) 富士ゼロックス株式会社'), (47457, 'https://ror.org/02w6dpq08', 'en', 1, 'https://ror.org/02w6dpq08 Victorian Curriculum and Assessment Authority'), (47458, 'https://ror.org/02w72df16', 'de', 1, 'https://ror.org/02w72df16 Institut für Handelsforschung'), (47459, 'https://ror.org/02wb6zh81', 'no_lang_code', 1, 'https://ror.org/02wb6zh81 Graphic Packaging (United States)'), (47460, 'https://ror.org/02wbb9367', 'en', 1, 'https://ror.org/02wbb9367 European Regions Research and Innovation Network'), (47461, 'https://ror.org/02wec8948', 'no_lang_code', 1, 'https://ror.org/02wec8948 Medical Device Innovations (United Kingdom)'), (47462, 'https://ror.org/02wenm763', 'en', 1, 'https://ror.org/02wenm763 Islamic Azad University Shirvan Branch دانشگاه آزاد اسلامی واحد شیروان'), (47463, 'https://ror.org/02wg0x984', 'no_lang_code', 1, 'https://ror.org/02wg0x984 M-Changa'), (47464, 'https://ror.org/02wh2qn63', 'en', 1, 'https://ror.org/02wh2qn63 Association of Clinical Pathologists'), (47465, 'https://ror.org/02wjty955', 'en', 1, 'https://ror.org/02wjty955 Hokkaido Sapporo Shinkawa High School 北海道札幌新川高等学校'), (47466, 'https://ror.org/02wmqzm35', 'en', 1, 'https://ror.org/02wmqzm35 Hiroshima Minami High School 広島県立広島皆実高等学校'), (47467, 'https://ror.org/02wn17b67', 'no_lang_code', 1, 'https://ror.org/02wn17b67 Arkray (Japan) アークレイ株式会社'), (47468, 'https://ror.org/02wn33c27', 'pt', 1, 'https://ror.org/02wn33c27 Fundação de Apoio à Universidade de São Paulo'), (47469, 'https://ror.org/02wp0mx48', 'en', 1, 'https://ror.org/02wp0mx48 Gifu Prefectural Gifu Technical High School 岐阜県立岐阜工業高等学校'), (47470, 'https://ror.org/02wp70a18', 'no_lang_code', 1, 'https://ror.org/02wp70a18 Firebird Biomolecular Sciences (United States)'), (47471, 'https://ror.org/02wpc5d77', 'no_lang_code', 1, 'https://ror.org/02wpc5d77 Cypress Semiconductor Corporation (United States)'), (47472, 'https://ror.org/02wqahk61', 'no_lang_code', 1, 'https://ror.org/02wqahk61 CivaTech Oncology (United States)'), (47473, 'https://ror.org/02wqfz680', 'nl', 1, 'https://ror.org/02wqfz680 Maatschappij tot Redding van Drenkelingen'), (47474, 'https://ror.org/02wrg9q93', 'en', 1, 'https://ror.org/02wrg9q93 Zhejiang Museum of Natural History 浙江自然博物馆'), (47475, 'https://ror.org/02ws3jn37', 'en', 1, 'https://ror.org/02ws3jn37 National Lymphedema Network'), (47476, 'https://ror.org/02wt4jg41', 'en', 1, 'https://ror.org/02wt4jg41 Microbiology Institute of Shaanxi 陕西省微生物研究所'), (47477, 'https://ror.org/02wt5t905', 'en', 1, 'https://ror.org/02wt5t905 Zhejiang Marine Fisheries Research Institute 浙江省海洋水产研究所'), (47478, 'https://ror.org/02wt6gj97', 'en', 1, 'https://ror.org/02wt6gj97 Dollezhal Research and Development Institute of Power Engineering Научно-исследовательский и конструкторский институт энерготехники имени Н. А. Доллежаля'), (47479, 'https://ror.org/02wwbem66', 'en', 1, 'https://ror.org/02wwbem66 Aarhus Kommune Aarhus Municipality'), (47480, 'https://ror.org/02wwrgv75', 'no_lang_code', 1, 'https://ror.org/02wwrgv75 Pfeiffer Vacuum (Germany)'), (47481, 'https://ror.org/02wwz7n17', 'en', 1, 'https://ror.org/02wwz7n17 Georgia Public Library Service'), (47482, 'https://ror.org/02wxcdf69', 'en', 1, 'https://ror.org/02wxcdf69 National Maritime Research Institute 海上技術安全研究所は'), (47483, 'https://ror.org/02wxw4x45', 'it', 1, 'https://ror.org/02wxw4x45 Institute for Electromagnetic Sensing of the Environment Istituto per il Rilevamento Elettromagnetico dell''Ambiente'), (47484, 'https://ror.org/02x2gk324', 'no_lang_code', 1, 'https://ror.org/02x2gk324 Abbott (Germany) Abbott Deutschland'), (47485, 'https://ror.org/02x2x2y51', 'no_lang_code', 1, 'https://ror.org/02x2x2y51 Smolny University Смольный университет'), (47486, 'https://ror.org/02x41bc05', 'no_lang_code', 1, 'https://ror.org/02x41bc05 C4 Imaging (United States)'), (47487, 'https://ror.org/02x44xg10', 'no_lang_code', 1, 'https://ror.org/02x44xg10 Ragheb Esfahani Institute موسسه آموزش عالی راغب اصفهانی'), (47488, 'https://ror.org/02x4grb16', 'no_lang_code', 1, 'https://ror.org/02x4grb16 Sartorius (United States)'), (47489, 'https://ror.org/02x7eef92', 'en', 1, 'https://ror.org/02x7eef92 Okayama Prefectural Museum 岡山県立博物館'), (47490, 'https://ror.org/02x7x4c86', 'no_lang_code', 1, 'https://ror.org/02x7x4c86 DNA Medicine Institute (United States)'), (47491, 'https://ror.org/02x93ka62', 'en', 1, 'https://ror.org/02x93ka62 Trilogi University Universitas Trilogi'), (47492, 'https://ror.org/02x9b2s62', 'no_lang_code', 1, 'https://ror.org/02x9b2s62 Musashigaoka College 武蔵丘短期大学'), (47493, 'https://ror.org/02xata679', 'pt', 1, 'https://ror.org/02xata679 Sociedade Brasileira de Economia Administração e Sociologia Rural'), (47494, 'https://ror.org/02xc21a77', 'en', 1, 'https://ror.org/02xc21a77 Islamic Azad University South Tehran Branch دانشگاه آزاد اسلامی واحد تهران شمال'), (47495, 'https://ror.org/02xcsx289', 'en', 1, 'https://ror.org/02xcsx289 Chief Officers of State Library Agencies'), (47496, 'https://ror.org/02xdeet92', 'no_lang_code', 1, 'https://ror.org/02xdeet92 Handix Scientific (United States)'), (47497, 'https://ror.org/02xgrds91', 'de', 1, 'https://ror.org/02xgrds91 Amedes MVZ Hamburg'), (47498, 'https://ror.org/02xh6me94', 'no_lang_code', 1, 'https://ror.org/02xh6me94 Henriksson Salix (Sweden)'), (47499, 'https://ror.org/02xkqh785', 'en', 1, 'https://ror.org/02xkqh785 Nagoya Industrial Science Research Institute 名古屋産業科学研究所'), (47500, 'https://ror.org/02xm6sp43', 'en', 1, 'https://ror.org/02xm6sp43 National Institute of Technology, Kagoshima College 鹿児島工業高等専門学校'), (47501, 'https://ror.org/02xnck737', 'en', 1, 'https://ror.org/02xnck737 Ashurst Hospital'), (47502, 'https://ror.org/02xqwa087', 'en', 1, 'https://ror.org/02xqwa087 Institute of Applied Geophysics of the Academy of Sciences Федеральное Государственное Бюджетное Учреждение институт прикладной геофизики Академии наук'), (47503, 'https://ror.org/02xr9bp50', 'en', 1, 'https://ror.org/02xr9bp50 Lushan Botanical Garden 江西省中国科学院庐山植物园'), (47504, 'https://ror.org/02xrm8w90', 'en', 1, 'https://ror.org/02xrm8w90 Toho University Medical Center Sakura Hospital 東邦大学医療センター佐倉病院'), (47505, 'https://ror.org/02xs4zz34', 'en', 1, 'https://ror.org/02xs4zz34 Nature Uganda'), (47506, 'https://ror.org/02xwb7a71', 'en', 1, 'https://ror.org/02xwb7a71 Kanagawa Prefectural Miura Seaside High School 神奈川県立三浦臨海高等学校'), (47507, 'https://ror.org/02xwjjw58', 'de', 1, 'https://ror.org/02xwjjw58 Agaplesion Bethesda Krankenhaus'), (47508, 'https://ror.org/02xxmjs88', 'en', 1, 'https://ror.org/02xxmjs88 British Association for Slavonic and East European Studies'), (47509, 'https://ror.org/02xy0vm11', 'en', 1, 'https://ror.org/02xy0vm11 Arkansas State Library'), (47510, 'https://ror.org/02xymhw35', 'en', 1, 'https://ror.org/02xymhw35 Pikes Peak Area Council of Governments'), (47511, 'https://ror.org/02y05bg81', 'en', 1, 'https://ror.org/02y05bg81 Nigerian Institute For Oil Palm Reasearch'), (47512, 'https://ror.org/02y1ra305', 'en', 1, 'https://ror.org/02y1ra305 Association for Progressive Communications'), (47513, 'https://ror.org/02y286910', 'en', 1, 'https://ror.org/02y286910 Magic Johnson Foundation'), (47514, 'https://ror.org/02y2rfe31', 'no_lang_code', 1, 'https://ror.org/02y2rfe31 TGS (United Kingdom)'), (47515, 'https://ror.org/02y4x8722', 'no_lang_code', 1, 'https://ror.org/02y4x8722 Chrono Therapeutics (United States)'), (47516, 'https://ror.org/02y5ftz59', 'en', 1, 'https://ror.org/02y5ftz59 St. Cecilia Women''s Junior College 聖セシリア短期大学'), (47517, 'https://ror.org/02y5x0w05', 'no_lang_code', 1, 'https://ror.org/02y5x0w05 Kansai Paint (Japan) 関西ペイント株式会社'), (47518, 'https://ror.org/02y7h5c73', 'en', 1, 'https://ror.org/02y7h5c73 Centre National d''Applications des Recherches Pharmaceutiques National Application Center for Pharmaceutical Research'), (47519, 'https://ror.org/02y8hn179', 'de', 1, 'https://ror.org/02y8hn179 Klinikum St. Georg'), (47520, 'https://ror.org/02y8yb391', 'en', 1, 'https://ror.org/02y8yb391 New Paradigm for Education'), (47521, 'https://ror.org/02y910088', 'no_lang_code', 1, 'https://ror.org/02y910088 Medizinisches Laserzentrum Lübeck (Germany)'), (47522, 'https://ror.org/02y931541', 'en', 1, 'https://ror.org/02y931541 Semmelweis Museum Semmelweis Orvostörténeti Múzeum'), (47523, 'https://ror.org/02ybv1z63', 'no_lang_code', 1, 'https://ror.org/02ybv1z63 Pleiades Robotics (Canada)'), (47524, 'https://ror.org/02ybwq307', 'en', 1, 'https://ror.org/02ybwq307 British Association for Japanese Studies'), (47525, 'https://ror.org/02yd61q08', 'en', 1, 'https://ror.org/02yd61q08 Western New York Independent Living'), (47526, 'https://ror.org/02ye03m75', 'en', 1, 'https://ror.org/02ye03m75 Women Of Color Salon'), (47527, 'https://ror.org/02ye0v256', 'en', 1, 'https://ror.org/02ye0v256 Council of Michigan Foundations'), (47528, 'https://ror.org/02yh0k313', 'no_lang_code', 1, 'https://ror.org/02yh0k313 Advanced Micro Devices (Canada)'), (47529, 'https://ror.org/02yp1e416', 'es', 1, 'https://ror.org/02yp1e416 Hospital General Universitari de Castelló'), (47530, 'https://ror.org/02ypkn805', 'en', 1, 'https://ror.org/02ypkn805 Kanagawa Prefecture Natural Environment Conservation Center 神奈川県自然環境保全センター'), (47531, 'https://ror.org/02ypyf569', 'en', 1, 'https://ror.org/02ypyf569 Osaka Yukioka Medical University 大阪行岡医療大学'), (47532, 'https://ror.org/02yq51g52', 'no_lang_code', 1, 'https://ror.org/02yq51g52 Ottobock (United States)'), (47533, 'https://ror.org/02yr31a60', 'fr', 1, 'https://ror.org/02yr31a60 Association Belge Contre les Maladies Neuro-Musculaires'), (47534, 'https://ror.org/02yrvm198', 'pt', 1, 'https://ror.org/02yrvm198 Sociedade Brasileira de Anestesiologia'), (47535, 'https://ror.org/02ys6e350', 'no_lang_code', 1, 'https://ror.org/02ys6e350 Advanced Immune Therapeutics (United States)'), (47536, 'https://ror.org/02yt3kq50', 'en', 1, 'https://ror.org/02yt3kq50 Jobs Australia'), (47537, 'https://ror.org/02ythmp17', 'en', 1, 'https://ror.org/02ythmp17 Tampa–Hillsborough County Public Library System'), (47538, 'https://ror.org/02ytn4d59', 'en', 1, 'https://ror.org/02ytn4d59 Islamic Azad University Kazeron دانشگاه آزاد اسلامی، کازرون'), (47539, 'https://ror.org/02ytpcd02', 'en', 1, 'https://ror.org/02ytpcd02 Great Plains Industrial Park'), (47540, 'https://ror.org/02ywr7111', 'pt', 1, 'https://ror.org/02ywr7111 Prefeitura Municipal de Campos dos Goytacazes'), (47541, 'https://ror.org/02z0zbb37', 'en', 1, 'https://ror.org/02z0zbb37 Australian Rheumatology Association'), (47542, 'https://ror.org/02z1v6961', 'it', 1, 'https://ror.org/02z1v6961 Consorzio per il Centro Interuniversitario di Biologia Marina ed Ecologia Applicata G. Bacci'), (47543, 'https://ror.org/02z2rxb36', 'no_lang_code', 1, 'https://ror.org/02z2rxb36 Mold Dynamics (United States)'), (47544, 'https://ror.org/02z4s0665', 'pt', 1, 'https://ror.org/02z4s0665 Instituto de Controle do Espaço Aéreo'), (47545, 'https://ror.org/02z4s0f38', 'en', 1, 'https://ror.org/02z4s0f38 Otaru City General Museum 小樽市総合博物館'), (47546, 'https://ror.org/02z5rpx40', 'pt', 1, 'https://ror.org/02z5rpx40 Sociedade Brasileira de Geofísica'), (47547, 'https://ror.org/02z82e935', 'no_lang_code', 1, 'https://ror.org/02z82e935 Media Deals (France)'), (47548, 'https://ror.org/02zbepj77', 'es', 1, 'https://ror.org/02zbepj77 Universidad Técnica Federico Santa María'), (47549, 'https://ror.org/02zbycv67', 'no_lang_code', 1, 'https://ror.org/02zbycv67 Osaka Ibaraki High School 大阪府立茨木高等学校'), (47550, 'https://ror.org/02zd56905', 'no_lang_code', 1, 'https://ror.org/02zd56905 Tenneco (Germany)'), (47551, 'https://ror.org/02zd68c30', 'en', 1, 'https://ror.org/02zd68c30 East Lake Foundation'), (47552, 'https://ror.org/02zdjth29', 'fr', 1, 'https://ror.org/02zdjth29 African University of Technology and Management Université Africaine de Technologie et de Management'), (47553, 'https://ror.org/02zee8r13', 'no_lang_code', 1, 'https://ror.org/02zee8r13 E3Tec (United States)'), (47554, 'https://ror.org/02zfkey21', 'en', 1, 'https://ror.org/02zfkey21 Educational Policy Improvement Center'), (47555, 'https://ror.org/02zj9bw60', 'no_lang_code', 1, 'https://ror.org/02zj9bw60 Insplorion (Sweden)'), (47556, 'https://ror.org/02zjw6262', 'en', 1, 'https://ror.org/02zjw6262 International Development Law Organization'), (47557, 'https://ror.org/02zkwry50', 'no_lang_code', 1, 'https://ror.org/02zkwry50 Tektronix (Germany)'), (47558, 'https://ror.org/02zmaz789', 'es', 1, 'https://ror.org/02zmaz789 Universidad Particular de Iquitos'), (47559, 'https://ror.org/02zn32y15', 'it', 1, 'https://ror.org/02zn32y15 Associazione Italiana Lotta al Neuroblastoma'), (47560, 'https://ror.org/02zpzpz12', 'en', 1, 'https://ror.org/02zpzpz12 Access to Seeds Index'), (47561, 'https://ror.org/02zq3rg90', 'en', 1, 'https://ror.org/02zq3rg90 Saitama Prefectural Miyashiro High School 埼玉県宮代高等学校'), (47562, 'https://ror.org/02zq8hg49', 'en', 1, 'https://ror.org/02zq8hg49 Busan Women''s College 부산여자대학교'), (47563, 'https://ror.org/02zrb2v54', 'en', 1, 'https://ror.org/02zrb2v54 University Medical Center New Orleans'), (47564, 'https://ror.org/02zs45744', 'no_lang_code', 1, 'https://ror.org/02zs45744 Takenaka (Japan) 株式会社竹中工務店'), (47565, 'https://ror.org/02zsmpq40', 'en', 1, 'https://ror.org/02zsmpq40 Kyoto Prefectural Police 京都府警察'), (47566, 'https://ror.org/02zsz8156', 'en', 1, 'https://ror.org/02zsz8156 British Fashion Council'), (47567, 'https://ror.org/02ztkac83', 'no_lang_code', 1, 'https://ror.org/02ztkac83 Robert Bosch (Japan) ボッシュ(株)'), (47568, 'https://ror.org/02zvazz07', 'no_lang_code', 1, 'https://ror.org/02zvazz07 Scio Diamond Technology Corporation (United States)'), (47569, 'https://ror.org/02zvhxb95', 'en', 1, 'https://ror.org/02zvhxb95 Puer University 普洱学院'), (47570, 'https://ror.org/02zw4ef94', 'en', 1, 'https://ror.org/02zw4ef94 Sam Moyo African Institute for Agrarian Studies'), (47571, 'https://ror.org/02zwd6322', 'en', 1, 'https://ror.org/02zwd6322 Australian Acoustical Society'), (47572, 'https://ror.org/02zwv8f48', 'no_lang_code', 1, 'https://ror.org/02zwv8f48 SPX Corporation (United States)'), (47573, 'https://ror.org/02zy6fj64', 'en', 1, 'https://ror.org/02zy6fj64 Peac Institute of Multiscale Sciences 顶峰多尺度科学研究所'), (47574, 'https://ror.org/02zy9xx44', 'no_lang_code', 1, 'https://ror.org/02zy9xx44 Rieter (Switzerland)'), (47575, 'https://ror.org/0304d2a41', 'en', 1, 'https://ror.org/0304d2a41 Exponent Philanthropy'), (47576, 'https://ror.org/0306fdh09', 'en', 1, 'https://ror.org/0306fdh09 Tuberous Sclerosis Association'), (47577, 'https://ror.org/0306thw41', 'lt', 1, 'https://ror.org/0306thw41 Lietuvos nacionalinė Martyno Mažvydo biblioteka, Martynas Mažvydas National Library'), (47578, 'https://ror.org/0307qjf39', 'en', 1, 'https://ror.org/0307qjf39 Egyptian Society of Radiology and Nuclear Medicine'), (47579, 'https://ror.org/030bjny53', 'en', 1, 'https://ror.org/030bjny53 Arlington Public Library'), (47580, 'https://ror.org/030c4gr60', 'no_lang_code', 1, 'https://ror.org/030c4gr60 STMicroelectronics (Singapore)'), (47581, 'https://ror.org/030cpmq61', 'en', 1, 'https://ror.org/030cpmq61 Society for Surgery of the Alimentary Tract'), (47582, 'https://ror.org/030cs0206', 'no_lang_code', 1, 'https://ror.org/030cs0206 Asus (China) 華碩電腦股份有限公司'), (47583, 'https://ror.org/030d7rf51', 'en', 1, 'https://ror.org/030d7rf51 National Specialized Hospital for Active Treatment of Hematologic Diseases Национална специализирана болница за активно лечение на хематологични заболявания'), (47584, 'https://ror.org/030dc5p74', 'en', 1, 'https://ror.org/030dc5p74 Odawara Women''s Junior College 小田原女子短期大学'), (47585, 'https://ror.org/030de3d66', 'en', 1, 'https://ror.org/030de3d66 Merrell University of Beauty Arts and Science'), (47586, 'https://ror.org/030dxd692', 'en', 1, 'https://ror.org/030dxd692 Kumamoto Prefectural Matsubase High School 熊本県立松橋高等学校'), (47587, 'https://ror.org/030ewbq61', 'en', 1, 'https://ror.org/030ewbq61 Prehistoric Society'), (47588, 'https://ror.org/030f6nw85', 'en', 1, 'https://ror.org/030f6nw85 Education Leaders of Color'), (47589, 'https://ror.org/030g4zt91', 'en', 1, 'https://ror.org/030g4zt91 Waikato-Tainui College for Research and Development'), (47590, 'https://ror.org/030h9s280', 'en', 1, 'https://ror.org/030h9s280 St. Petersburg Department of Steklov Institute of Mathematics Санкт-Петербургское отделение Математического института им. В. А. Стеклова РАН, abbreviated ПОМИ'), (47591, 'https://ror.org/030j5vf66', 'en', 1, 'https://ror.org/030j5vf66 Statistics Austria Statistik Austria'), (47592, 'https://ror.org/030q2z289', 'en', 1, 'https://ror.org/030q2z289 GBCHealth'), (47593, 'https://ror.org/030r45j36', 'en', 1, 'https://ror.org/030r45j36 Neyagaya School for Special Needs Education 大阪府立寝屋川支援学校'), (47594, 'https://ror.org/030r87x36', 'en', 1, 'https://ror.org/030r87x36 New York State Council of School Superintendents'), (47595, 'https://ror.org/030rn8443', 'en', 1, 'https://ror.org/030rn8443 Alberta Conservation Association'), (47596, 'https://ror.org/030v79255', 'pt', 1, 'https://ror.org/030v79255 Secretaria de Estado de Segurança Pública'), (47597, 'https://ror.org/030v8r787', 'no_lang_code', 1, 'https://ror.org/030v8r787 Tecan (United States)'), (47598, 'https://ror.org/030xn5j74', 'en', 1, 'https://ror.org/030xn5j74 TCM-Intigrated Cancer Center of Southern Medical University 南方医科大学中西医结合医院'), (47599, 'https://ror.org/030xy3q54', 'no_lang_code', 1, 'https://ror.org/030xy3q54 Foxconn (United Kingdom)'), (47600, 'https://ror.org/0310dsa24', 'en', 1, 'https://ror.org/0310dsa24 Hangzhou Seventh Peoples Hospital 杭州市第七人民医院'), (47601, 'https://ror.org/03110kp08', 'no_lang_code', 1, 'https://ror.org/03110kp08 Universal Fibers (United States)'), (47602, 'https://ror.org/03111mv26', 'en', 1, 'https://ror.org/03111mv26 Yamanashi Prefecture Forestry and Forest Products Research Institute 山梨県森林総合研究所 森林保護科'), (47603, 'https://ror.org/03120tz42', 'en', 1, 'https://ror.org/03120tz42 Menasseh Ben Israel Institute'), (47604, 'https://ror.org/0313mbq66', 'de', 1, 'https://ror.org/0313mbq66 Sukkulenten-Sammlung Zürich'), (47605, 'https://ror.org/0313pb684', 'en', 1, 'https://ror.org/0313pb684 Institute of Scientific and Technical Research for Defense Instituto de Investigaciones Científicas y Técnicas para la Defensa'), (47606, 'https://ror.org/0317cq689', 'en', 1, 'https://ror.org/0317cq689 Doctors of the World'), (47607, 'https://ror.org/03187yj51', 'en', 1, 'https://ror.org/03187yj51 Islamic Azad University, Science and Research Branch دانشگاه آزاد اسلامی واحد علوم و تحقيقات'), (47608, 'https://ror.org/0318awh51', 'en', 1, 'https://ror.org/0318awh51 Ethiopian Environment Protection Authority'), (47609, 'https://ror.org/0318teb82', 'no_lang_code', 1, 'https://ror.org/0318teb82 Kimberly-Clark (Canada)'), (47610, 'https://ror.org/031aqk326', 'en', 1, 'https://ror.org/031aqk326 Fraunhofer Institute for Reliability and Microintegration Fraunhofer-Institut für Zuverlässigkeit und Mikrointegration'), (47611, 'https://ror.org/031b16827', 'no_lang_code', 1, 'https://ror.org/031b16827 ProjectEconomics (United states)'), (47612, 'https://ror.org/031b6ch69', 'no_lang_code', 1, 'https://ror.org/031b6ch69 Legrand (Germany)'), (47613, 'https://ror.org/031da7s82', 'en', 1, 'https://ror.org/031da7s82 Marquette Regional History Center'), (47614, 'https://ror.org/031fvch84', 'no_lang_code', 1, 'https://ror.org/031fvch84 Kirchhoff (Germany)'), (47615, 'https://ror.org/031gy6182', 'en', 1, 'https://ror.org/031gy6182 Office of Technology Transfer'), (47616, 'https://ror.org/031hb1d69', 'no_lang_code', 1, 'https://ror.org/031hb1d69 YKK (United Kingdom)'), (47617, 'https://ror.org/031jpet61', 'no_lang_code', 1, 'https://ror.org/031jpet61 Osaka Aoyama University 大阪青山大学'), (47618, 'https://ror.org/031jw0220', 'no_lang_code', 1, 'https://ror.org/031jw0220 Uji Hospital 宇治病院'), (47619, 'https://ror.org/031kj1n86', 'en', 1, 'https://ror.org/031kj1n86 National Association of the Deaf'), (47620, 'https://ror.org/031krgy72', 'en', 1, 'https://ror.org/031krgy72 Center for Advancing Health'), (47621, 'https://ror.org/031kyph18', 'de', 1, 'https://ror.org/031kyph18 Gottfried-Wilhelm-Leibniz-Gesellschaft'), (47622, 'https://ror.org/031negs69', 'no_lang_code', 1, 'https://ror.org/031negs69 CJ CGV (South Korea) 씨제이 씨지브이'), (47623, 'https://ror.org/031pw2y57', 'en', 1, 'https://ror.org/031pw2y57 Osaka Prefectural Hirakata High School 大阪府立枚方高等学校'), (47624, 'https://ror.org/031q06g37', 'en', 1, 'https://ror.org/031q06g37 Himeji University 姫路大学'), (47625, 'https://ror.org/031sgpn76', 'no_lang_code', 1, 'https://ror.org/031sgpn76 Valeo (Ireland)'), (47626, 'https://ror.org/031v2vc59', 'en', 1, 'https://ror.org/031v2vc59 American Association of Colleges of Pharmacy'), (47627, 'https://ror.org/031vs9z41', 'en', 1, 'https://ror.org/031vs9z41 Workforce Solutions Northeast Texas'), (47628, 'https://ror.org/031vt8c32', 'no_lang_code', 1, 'https://ror.org/031vt8c32 Ethos (United Kingdom)'), (47629, 'https://ror.org/031y5ny63', 'fr', 1, 'https://ror.org/031y5ny63 Laboratoire de Recherche et d’Analyses Médicales de la Fraternelle de la Gendarmerie Royale'), (47630, 'https://ror.org/031yk8297', 'es', 1, 'https://ror.org/031yk8297 Universidad Monseñor Oscar Arnulfo Romero'), (47631, 'https://ror.org/031zzq071', 'no_lang_code', 1, 'https://ror.org/031zzq071 Robert Bosch (United Kingdom)'), (47632, 'https://ror.org/0320ccm28', 'en', 1, 'https://ror.org/0320ccm28 National Council on Rehabilitation Education'), (47633, 'https://ror.org/0321nq926', 'en', 1, 'https://ror.org/0321nq926 Association of University Centers on Disabilities'), (47634, 'https://ror.org/0321v8618', 'en', 1, 'https://ror.org/0321v8618 Western Australia Police'), (47635, 'https://ror.org/03220m208', 'en', 1, 'https://ror.org/03220m208 German Informatics Society Gesellschaft für Informatik'), (47636, 'https://ror.org/0322q1246', 'en', 1, 'https://ror.org/0322q1246 Kyushu Historical Museum 九州歴史資料館'), (47637, 'https://ror.org/03245q673', 'no_lang_code', 1, 'https://ror.org/03245q673 Universal Biosensors (Australia)'), (47638, 'https://ror.org/03256ej17', 'no_lang_code', 1, 'https://ror.org/03256ej17 Energizer (United States)'), (47639, 'https://ror.org/0328rvw59', 'no_lang_code', 1, 'https://ror.org/0328rvw59 Cryptomathic (United Kingdom)'), (47640, 'https://ror.org/03296kr26', 'en', 1, 'https://ror.org/03296kr26 Nagasaki Women''s Junior College 長崎女子短期大学'), (47641, 'https://ror.org/032b04x09', 'en', 1, 'https://ror.org/032b04x09 Chalkboard Project'), (47642, 'https://ror.org/032dbm087', 'en', 1, 'https://ror.org/032dbm087 Clinical Oncological Society of Australia'), (47643, 'https://ror.org/032eg6t15', 'is', 1, 'https://ror.org/032eg6t15 Barnaspítali'), (47644, 'https://ror.org/032eh0k62', 'en', 1, 'https://ror.org/032eh0k62 International Society for Influenza and other Respiratory Virus Diseases'), (47645, 'https://ror.org/032hv5121', 'en', 1, 'https://ror.org/032hv5121 Association for the Study of Animal Behaviour'), (47646, 'https://ror.org/032hv6w38', 'en', 1, 'https://ror.org/032hv6w38 Agricultural Research & Education Organization'), (47647, 'https://ror.org/032jhh740', 'en', 1, 'https://ror.org/032jhh740 New Jersey Principals and Supervisors Association'), (47648, 'https://ror.org/032khhz22', 'no_lang_code', 1, 'https://ror.org/032khhz22 Exascale (United Kingdom)'), (47649, 'https://ror.org/032mkt145', 'en', 1, 'https://ror.org/032mkt145 Japan Securities Research Institute 公益財団法人 日本証券経済研究所'), (47650, 'https://ror.org/032mwpc05', 'no_lang_code', 1, 'https://ror.org/032mwpc05 Halogenated Solvents Industry Alliance (United States)'), (47651, 'https://ror.org/032qr1v70', 'en', 1, 'https://ror.org/032qr1v70 Daejeon Institute of Science and Technology 기술 대전 대학교'), (47652, 'https://ror.org/032sjsv10', 'no_lang_code', 1, 'https://ror.org/032sjsv10 Alphacore (United States)'), (47653, 'https://ror.org/032tjpd06', 'en', 1, 'https://ror.org/032tjpd06 Whale Center of New England'), (47654, 'https://ror.org/032trmw54', 'en', 1, 'https://ror.org/032trmw54 Saitama Prefectural Urawa first Girls'' High School 埼玉県立浦和第一女子高等学校'), (47655, 'https://ror.org/032wr9623', 'no_lang_code', 1, 'https://ror.org/032wr9623 Jain Irrigation Systems (Israel)'), (47656, 'https://ror.org/032z6n124', 'en', 1, 'https://ror.org/032z6n124 Coronado Unified School District'), (47657, 'https://ror.org/03305dv57', 'no_lang_code', 1, 'https://ror.org/03305dv57 Metrarc (United Kingdom)'), (47658, 'https://ror.org/033069651', 'en', 1, 'https://ror.org/033069651 Economic Opportunity Institute'), (47659, 'https://ror.org/033198s46', 'en', 1, 'https://ror.org/033198s46 Max Planck Institut für Innovation und Wettbewerb Max Planck Institute for Innovation and Competition'), (47660, 'https://ror.org/0332cpc55', 'en', 1, 'https://ror.org/0332cpc55 Yonezawa Technical High School 米沢工業高等学校'), (47661, 'https://ror.org/0334rzs32', 'no_lang_code', 1, 'https://ror.org/0334rzs32 Eaton (Switzerland)'), (47662, 'https://ror.org/0337vmn97', 'en', 1, 'https://ror.org/0337vmn97 Education Trust'), (47663, 'https://ror.org/0338wbp74', 'en', 1, 'https://ror.org/0338wbp74 Small Industries Development Organisation'), (47664, 'https://ror.org/033efjf10', 'no_lang_code', 1, 'https://ror.org/033efjf10 Stine Seed (United States)'), (47665, 'https://ror.org/033has646', 'pt', 1, 'https://ror.org/033has646 Instituto Marés'), (47666, 'https://ror.org/033hv9q38', 'en', 1, 'https://ror.org/033hv9q38 Australian Marine Sciences Association'), (47667, 'https://ror.org/033kk6r78', 'pt', 1, 'https://ror.org/033kk6r78 Instituto Rio Grandense do Arroz'), (47668, 'https://ror.org/033ncz059', 'en', 1, 'https://ror.org/033ncz059 Nara City Board of Education 奈良市教育委員会'), (47669, 'https://ror.org/033prtz11', 'en', 1, 'https://ror.org/033prtz11 Architectural Institute of Japan 日本建築学会'), (47670, 'https://ror.org/033qfx261', 'en', 1, 'https://ror.org/033qfx261 EADA Business School Escuela de Alta Dirección y Administración'), (47671, 'https://ror.org/033qmpy33', 'pt', 1, 'https://ror.org/033qmpy33 Instituto Federal do Piauí'), (47672, 'https://ror.org/033s2jy46', 'no_lang_code', 1, 'https://ror.org/033s2jy46 South East Water (Australia)'), (47673, 'https://ror.org/033sspj46', 'en', 1, 'https://ror.org/033sspj46 Kagawa University Hospital 香川大学医学部附属病院'), (47674, 'https://ror.org/033tqss18', 'en', 1, 'https://ror.org/033tqss18 Philatelic Museum 切手の博物館'), (47675, 'https://ror.org/033twts82', 'en', 1, 'https://ror.org/033twts82 Otaki Castle Museum'), (47676, 'https://ror.org/033wpmv83', 'en', 1, 'https://ror.org/033wpmv83 Water Security Agency'), (47677, 'https://ror.org/033xpbd73', 'no_lang_code', 1, 'https://ror.org/033xpbd73 IVDiagnostics (United States)'), (47678, 'https://ror.org/033y0yj09', 'no_lang_code', 1, 'https://ror.org/033y0yj09 Vivid Economics (United Kingdom)'), (47679, 'https://ror.org/033y39138', 'pt', 1, 'https://ror.org/033y39138 Fundação Estadual de Pesquisa Agropecuária'), (47680, 'https://ror.org/033zgjc96', 'no_lang_code', 1, 'https://ror.org/033zgjc96 Herman Miller (United Kingdom)'), (47681, 'https://ror.org/03425vk88', 'en', 1, 'https://ror.org/03425vk88 Salesian Polytechnic サレジオ高専 ホ'), (47682, 'https://ror.org/0342jc255', 'en', 1, 'https://ror.org/0342jc255 Volgograd Institute of Business Волгоградский институт бизнеса'), (47683, 'https://ror.org/0343mwx11', 'en', 1, 'https://ror.org/0343mwx11 Mexico International University'), (47684, 'https://ror.org/0344ry767', 'en', 1, 'https://ror.org/0344ry767 Chelsea District Library'), (47685, 'https://ror.org/0345bxe71', 'en', 1, 'https://ror.org/0345bxe71 Society of Critical Care Medicine'), (47686, 'https://ror.org/0346q5236', 'fr', 1, 'https://ror.org/0346q5236 Université Shalom de Bunia'), (47687, 'https://ror.org/0347g4065', 'en', 1, 'https://ror.org/0347g4065 Jinhua Municipal Science and Technology Bureau 金华市科技局'), (47688, 'https://ror.org/0347t4482', 'en', 1, 'https://ror.org/0347t4482 Avery County Schools'), (47689, 'https://ror.org/0347zf750', 'no_lang_code', 1, 'https://ror.org/0347zf750 Tamashima Hospital 公益財団法人 弘仁会 玉島病院'), (47690, 'https://ror.org/0348bpw87', 'no_lang_code', 1, 'https://ror.org/0348bpw87 STMicroelectronics (China)'), (47691, 'https://ror.org/0348j9j37', 'en', 1, 'https://ror.org/0348j9j37 Association for Research on Nonprofit Organizations and Voluntary Action'), (47692, 'https://ror.org/0349bdx32', 'pt', 1, 'https://ror.org/0349bdx32 Fundação Instituto de Pesca do Estado do Rio de Janeiro'), (47693, 'https://ror.org/034afnt37', 'en', 1, 'https://ror.org/034afnt37 Ospidéal Mhuire Our Lady''s Hospital'), (47694, 'https://ror.org/034batm51', 'en', 1, 'https://ror.org/034batm51 Nevus Outreach'), (47695, 'https://ror.org/034ca4k86', 'no_lang_code', 1, 'https://ror.org/034ca4k86 Johnson & Johnson (Australia)'), (47696, 'https://ror.org/034d9x869', 'en', 1, 'https://ror.org/034d9x869 Jintan People''s Hospital 金坛市人民医院'), (47697, 'https://ror.org/034ee3t09', 'en', 1, 'https://ror.org/034ee3t09 Synergy University Dubai جامعة التآزر'), (47698, 'https://ror.org/034epx078', 'no_lang_code', 1, 'https://ror.org/034epx078 Abengoa Bioenergy (United States)'), (47699, 'https://ror.org/034f1bj67', 'en', 1, 'https://ror.org/034f1bj67 Shizuoka Prefectural Kakegawanishi High School 静岡県立掛川西高等学校'), (47700, 'https://ror.org/034gcct62', 'no_lang_code', 1, 'https://ror.org/034gcct62 E-Motors Consulting (United States)'), (47701, 'https://ror.org/034gz9s88', 'no_lang_code', 1, 'https://ror.org/034gz9s88 J&J Solutions (United States)'), (47702, 'https://ror.org/034k5be35', 'en', 1, 'https://ror.org/034k5be35 Provata Health'), (47703, 'https://ror.org/034k6e791', 'ja', 1, 'https://ror.org/034k6e791 Hakodate Shirayuri Gakuen, 函館白百合学園中学高等学校'), (47704, 'https://ror.org/034r3x204', 'en', 1, 'https://ror.org/034r3x204 Pearl Science Laboratory 真珠科学研究所'), (47705, 'https://ror.org/034rmsp96', 'no_lang_code', 1, 'https://ror.org/034rmsp96 High Precision Devices (United States)'), (47706, 'https://ror.org/034s8ev31', 'es', 1, 'https://ror.org/034s8ev31 Instituto de Investigaciones en Ciencia y Tecnología de Materiales'), (47707, 'https://ror.org/034vkhg42', 'no_lang_code', 1, 'https://ror.org/034vkhg42 Nonagen Bioscience (United States)'), (47708, 'https://ror.org/034x19584', 'en', 1, 'https://ror.org/034x19584 Tokyo Metropolitan School Personnel in Service Training Center 東京都教職員研修センター'), (47709, 'https://ror.org/034x48g49', 'no_lang_code', 1, 'https://ror.org/034x48g49 Perrigo (Israel)'), (47710, 'https://ror.org/034xz1x91', 'en', 1, 'https://ror.org/034xz1x91 Okayama Prefectural Mizushima Technical High School 岡山県立水島工業高等学校'), (47711, 'https://ror.org/034ywkx67', 'en', 1, 'https://ror.org/034ywkx67 DigiLearn Digital Learning Institute'), (47712, 'https://ror.org/034zsq795', 'no_lang_code', 1, 'https://ror.org/034zsq795 Magna International (United States)'), (47713, 'https://ror.org/0351nrb64', 'en', 1, 'https://ror.org/0351nrb64 Grameen Foundation'), (47714, 'https://ror.org/0351th250', 'en', 1, 'https://ror.org/0351th250 Danish Lung Association Lungeforening'), (47715, 'https://ror.org/0351wfv37', 'en', 1, 'https://ror.org/0351wfv37 Association of Charitable Foundations'), (47716, 'https://ror.org/0353y3c48', 'en', 1, 'https://ror.org/0353y3c48 Kyoto Institute of Culture and Language 京都文化日本語学校'), (47717, 'https://ror.org/0354d3c43', 'no_lang_code', 1, 'https://ror.org/0354d3c43 Medomics (United States)'), (47718, 'https://ror.org/0354gw976', 'en', 1, 'https://ror.org/0354gw976 Osaka Prefecture Hannan Visual Support School 大阪府立大阪南視覚支援学校'), (47719, 'https://ror.org/0354jg349', 'en', 1, 'https://ror.org/0354jg349 Collective Leadership Institute'), (47720, 'https://ror.org/0355p2e87', 'no_lang_code', 1, 'https://ror.org/0355p2e87 Agilent Technologies (Germany)'), (47721, 'https://ror.org/035739v40', 'no_lang_code', 1, 'https://ror.org/035739v40 Chiba Keiai Junior College 千葉敬愛短期大学'), (47722, 'https://ror.org/0358jb366', 'en', 1, 'https://ror.org/0358jb366 Nara Saho College 奈良佐保短期大学'), (47723, 'https://ror.org/0359zqq03', 'en', 1, 'https://ror.org/0359zqq03 Osaka Prefectural Toyonaka Support School 大阪府立豊中支援学校'), (47724, 'https://ror.org/035b4az83', 'no_lang_code', 1, 'https://ror.org/035b4az83 Imagineering (Japan) イマジニアリング株式会社'), (47725, 'https://ror.org/035ect513', 'en', 1, 'https://ror.org/035ect513 Miami Heart Research Institute'), (47726, 'https://ror.org/035fxx726', 'no_lang_code', 1, 'https://ror.org/035fxx726 Nidec (United Kingdom)'), (47727, 'https://ror.org/035m9ft70', 'en', 1, 'https://ror.org/035m9ft70 Heart Rhythm Society'), (47728, 'https://ror.org/035mcxx74', 'en', 1, 'https://ror.org/035mcxx74 Kungl. Vetenskaps- och Vitterhets-samhället i Göteborg Royal Society of Sciences and Letters in Gothenburg'), (47729, 'https://ror.org/035t0dt07', 'no_lang_code', 1, 'https://ror.org/035t0dt07 TDK (Singapore)'), (47730, 'https://ror.org/035v0k921', 'en', 1, 'https://ror.org/035v0k921 Hemalata Hospitals and Research Centre'), (47731, 'https://ror.org/035va9t86', 'no_lang_code', 1, 'https://ror.org/035va9t86 Epiphany Biosciences (United States)'), (47732, 'https://ror.org/035vbre72', 'no_lang_code', 1, 'https://ror.org/035vbre72 Western Digital (China)'), (47733, 'https://ror.org/035vnjr65', 'no_lang_code', 1, 'https://ror.org/035vnjr65 Toshiba (Germany)'), (47734, 'https://ror.org/035xg4847', 'no_lang_code', 1, 'https://ror.org/035xg4847 Centrum Průmyslového Výzkumu Techlab (Czechia)'), (47735, 'https://ror.org/035xgy388', 'no_lang_code', 1, 'https://ror.org/035xgy388 dPoint Technologies (Canada)'), (47736, 'https://ror.org/0362f6990', 'en', 1, 'https://ror.org/0362f6990 Gifu International Academy of Horticulture 岐阜県立国際園芸アカデミー'), (47737, 'https://ror.org/03646q924', 'en', 1, 'https://ror.org/03646q924 The Ohio State University at Marion'), (47738, 'https://ror.org/0364wpq06', 'en', 1, 'https://ror.org/0364wpq06 Gordon College'), (47739, 'https://ror.org/0364yac91', 'no_lang_code', 1, 'https://ror.org/0364yac91 Tagworks Pharmaceuticals (Netherlands)'), (47740, 'https://ror.org/03656je58', 'en', 1, 'https://ror.org/03656je58 St. Augustine International University'), (47741, 'https://ror.org/0366k5v88', 'pt', 1, 'https://ror.org/0366k5v88 Instituto de Tecnologia de Pernambuco'), (47742, 'https://ror.org/0366tzh77', 'no_lang_code', 1, 'https://ror.org/0366tzh77 Biolitec (Malaysia)'), (47743, 'https://ror.org/0369xz580', 'no_lang_code', 1, 'https://ror.org/0369xz580 Amfissa General Hospital Γενικό Νοσοκομείο ''Αμφισσας'), (47744, 'https://ror.org/036b9em68', 'no_lang_code', 1, 'https://ror.org/036b9em68 Sonitu Pharmaceuticals (United States)'), (47745, 'https://ror.org/036bgh355', 'en', 1, 'https://ror.org/036bgh355 Yuma Elementary School District'), (47746, 'https://ror.org/036dq0x98', 'no_lang_code', 1, 'https://ror.org/036dq0x98 Perkinelmer (Singapore)'), (47747, 'https://ror.org/036eyqz05', 'en', 1, 'https://ror.org/036eyqz05 Islamic Hospital المستشفى الإسلامي'), (47748, 'https://ror.org/036fkkq18', 'en', 1, 'https://ror.org/036fkkq18 Fortune Institute of Technology 和春技術學院'), (47749, 'https://ror.org/036j6hv41', 'en', 1, 'https://ror.org/036j6hv41 Mexican Geological Survey Servicio Geológico Mexicano'), (47750, 'https://ror.org/036jhjy94', 'en', 1, 'https://ror.org/036jhjy94 Australasian Speech Science and Technology Association'), (47751, 'https://ror.org/036k4ae63', 'en', 1, 'https://ror.org/036k4ae63 Joan Ganz Cooney Center'); INSERT INTO `rors` VALUES (47752, 'https://ror.org/036kf9x78', 'no_lang_code', 1, 'https://ror.org/036kf9x78 Yazaki (Australia)'), (47753, 'https://ror.org/036krca38', 'no_lang_code', 1, 'https://ror.org/036krca38 Kubota (Japan) 株式会社クボタ'), (47754, 'https://ror.org/036metx20', 'en', 1, 'https://ror.org/036metx20 Chinese People''s Armed Police General Hospital 武警总医院'), (47755, 'https://ror.org/036n40n43', 'en', 1, 'https://ror.org/036n40n43 American Society of Naval Engineers'), (47756, 'https://ror.org/036rr6h87', 'en', 1, 'https://ror.org/036rr6h87 Saudi Chemical Society الجمعية الكيميائية السعودية'), (47757, 'https://ror.org/036tb1y26', 'no_lang_code', 1, 'https://ror.org/036tb1y26 NanoAl (United States)'), (47758, 'https://ror.org/036vbw294', 'no_lang_code', 1, 'https://ror.org/036vbw294 CarbonCure Technologies (Canada)'), (47759, 'https://ror.org/036vg8r71', 'en', 1, 'https://ror.org/036vg8r71 Colorado Cancer Research Program'), (47760, 'https://ror.org/036vt3264', 'en', 1, 'https://ror.org/036vt3264 Railway Technical Research Institute 鉄道総合技術研究所'), (47761, 'https://ror.org/036z8q506', 'pt', 1, 'https://ror.org/036z8q506 Sociedade Brasileira de Ensino de Biologia'), (47762, 'https://ror.org/037024349', 'en', 1, 'https://ror.org/037024349 Stand for Children'), (47763, 'https://ror.org/0370d1z23', 'no_lang_code', 1, 'https://ror.org/0370d1z23 Toyoda Gosei (Japan) 豊田合成'), (47764, 'https://ror.org/0371bqv47', 'en', 1, 'https://ror.org/0371bqv47 Institute of Glass Институт стекла'), (47765, 'https://ror.org/0371nm930', 'no_lang_code', 1, 'https://ror.org/0371nm930 Muse Research and Development (United States)'), (47766, 'https://ror.org/0375k5p31', 'en', 1, 'https://ror.org/0375k5p31 Mizunami Fossil Museum 瑞浪市化石博物館'), (47767, 'https://ror.org/03779e961', 'no_lang_code', 1, 'https://ror.org/03779e961 Promethean Particles (United Kingdom)'), (47768, 'https://ror.org/0377f6951', 'en', 1, 'https://ror.org/0377f6951 Foundation Center'), (47769, 'https://ror.org/0379ygx07', 'no_lang_code', 1, 'https://ror.org/0379ygx07 Bio-Rad (Canada)'), (47770, 'https://ror.org/037ar5g91', 'en', 1, 'https://ror.org/037ar5g91 American Cleft Palate-Craniofacial Association'), (47771, 'https://ror.org/037bvk594', 'en', 1, 'https://ror.org/037bvk594 Yonezawa Women''s Junior College 山形県立米沢女子短期大学'), (47772, 'https://ror.org/037bvs115', 'no_lang_code', 1, 'https://ror.org/037bvs115 Celula (United States)'), (47773, 'https://ror.org/037d89s09', 'no_lang_code', 1, 'https://ror.org/037d89s09 Precision Nanosystems (Canada)'), (47774, 'https://ror.org/037ddaj94', 'no_lang_code', 1, 'https://ror.org/037ddaj94 Los Alamos National Security (United States)'), (47775, 'https://ror.org/037dejx04', 'no_lang_code', 1, 'https://ror.org/037dejx04 Chiesi (United States)'), (47776, 'https://ror.org/037dn9q43', 'de', 1, 'https://ror.org/037dn9q43 Deutsche Gesellschaft für Urologie'), (47777, 'https://ror.org/037fqd482', 'no_lang_code', 1, 'https://ror.org/037fqd482 Danaher (Australia)'), (47778, 'https://ror.org/037hta489', 'en', 1, 'https://ror.org/037hta489 Deutsche Bank'), (47779, 'https://ror.org/037kbz526', 'en', 1, 'https://ror.org/037kbz526 National Institute of Technology, Oshima College 大島商船高等専門学校'), (47780, 'https://ror.org/037kffm93', 'no_lang_code', 1, 'https://ror.org/037kffm93 IDP Ingeniería y Arquitectura Iberia (Spain)'), (47781, 'https://ror.org/037mzh527', 'no_lang_code', 1, 'https://ror.org/037mzh527 Coloplast (United States)'), (47782, 'https://ror.org/037nf4x66', 'en', 1, 'https://ror.org/037nf4x66 Tokushima College of Technology 徳島工業短期大学'), (47783, 'https://ror.org/037ngs497', 'no_lang_code', 1, 'https://ror.org/037ngs497 Schauenburg (Germany)'), (47784, 'https://ror.org/037pq2a43', 'de', 1, 'https://ror.org/037pq2a43 Klinikum Dortmund'), (47785, 'https://ror.org/037q1ds38', 'en', 1, 'https://ror.org/037q1ds38 Fukushima Prefecture History Museum 福島県歴史資料館は'), (47786, 'https://ror.org/037qwc103', 'no_lang_code', 1, 'https://ror.org/037qwc103 Yaskawa Electric (Japan) 安川電機'), (47787, 'https://ror.org/037rrfx42', 'en', 1, 'https://ror.org/037rrfx42 Osaka Prefectural Board of Education 大阪府教育委員会'), (47788, 'https://ror.org/037tkh273', 'de', 1, 'https://ror.org/037tkh273 Universitätsklinik für Hals-, Nasen- und Ohrenheilkunde'), (47789, 'https://ror.org/037v0vj63', 'no_lang_code', 1, 'https://ror.org/037v0vj63 Coulometrics (United States)'), (47790, 'https://ror.org/037w0z757', 'es', 1, 'https://ror.org/037w0z757 Empresa Municipal de la Vivienda y Suelo de Madrid'), (47791, 'https://ror.org/037y5er63', 'no_lang_code', 1, 'https://ror.org/037y5er63 Ashima (Taiwan)'), (47792, 'https://ror.org/03819cc96', 'no_lang_code', 1, 'https://ror.org/03819cc96 Microsoft (Israel)'), (47793, 'https://ror.org/038231w93', 'en', 1, 'https://ror.org/038231w93 Stanground Academy'), (47794, 'https://ror.org/0382x3a11', 'no_lang_code', 1, 'https://ror.org/0382x3a11 Shiretoko Museum 斜里町立知床博物館'), (47795, 'https://ror.org/03880e418', 'no_lang_code', 1, 'https://ror.org/03880e418 Aadi (United States)'), (47796, 'https://ror.org/03888v687', 'pt', 1, 'https://ror.org/03888v687 Governo do Pará'), (47797, 'https://ror.org/038a0a037', 'en', 1, 'https://ror.org/038a0a037 Comprehensive Oncological Center – Veliko Turnovo Комплексен онкологичен център – Велико Търново'), (47798, 'https://ror.org/038ajj330', 'no_lang_code', 1, 'https://ror.org/038ajj330 TechnipFMC (United Kingdom)'), (47799, 'https://ror.org/038b1qn73', 'no_lang_code', 1, 'https://ror.org/038b1qn73 Hyundai Mobis (South Korea) 현대모비스 주식회사'), (47800, 'https://ror.org/038b5pt88', 'pt', 1, 'https://ror.org/038b5pt88 Instituto Superior Politécnico Metropolitano de Angola'), (47801, 'https://ror.org/038bzrc91', 'en', 1, 'https://ror.org/038bzrc91 Fraunhofer Austria'), (47802, 'https://ror.org/038dfxb83', 'en', 1, 'https://ror.org/038dfxb83 Traditional Chinese Medicine Hospital of Kunshan'), (47803, 'https://ror.org/038dg9e86', 'en', 1, 'https://ror.org/038dg9e86 Hiroshima University Hospital 広島大学病院'), (47804, 'https://ror.org/038ey9s70', 'no_lang_code', 1, 'https://ror.org/038ey9s70 Imam Reza Hospital'), (47805, 'https://ror.org/038fg0e88', 'es', 1, 'https://ror.org/038fg0e88 Centro Universitario Didaskalos'), (47806, 'https://ror.org/038gjp852', 'no_lang_code', 1, 'https://ror.org/038gjp852 Univera (United States)'), (47807, 'https://ror.org/038h4pp04', 'no_lang_code', 1, 'https://ror.org/038h4pp04 Thermal Gradient (United States)'), (47808, 'https://ror.org/038hdcm94', 'en', 1, 'https://ror.org/038hdcm94 Australian Dental Association'), (47809, 'https://ror.org/038htga59', 'en', 1, 'https://ror.org/038htga59 Australian Psychological Society'), (47810, 'https://ror.org/038jhf436', 'no_lang_code', 1, 'https://ror.org/038jhf436 Rivis (United States)'), (47811, 'https://ror.org/038km2573', 'no_lang_code', 1, 'https://ror.org/038km2573 Nokia (United States)'), (47812, 'https://ror.org/038n8fg68', 'en', 1, 'https://ror.org/038n8fg68 Bule Hora University'), (47813, 'https://ror.org/038p3gq39', 'no_lang_code', 1, 'https://ror.org/038p3gq39 Yahoo (United Kingdom)'), (47814, 'https://ror.org/038q1v497', 'en', 1, 'https://ror.org/038q1v497 Management Education & Research Consortium'), (47815, 'https://ror.org/038rjke75', 'no_lang_code', 1, 'https://ror.org/038rjke75 Athletigen (Canada)'), (47816, 'https://ror.org/038scr081', 'no_lang_code', 1, 'https://ror.org/038scr081 Nifco (China)'), (47817, 'https://ror.org/038t6jw47', 'en', 1, 'https://ror.org/038t6jw47 Association Canadienne des Études Asiatiques Canadian Asian Studies Association'), (47818, 'https://ror.org/038vb6915', 'en', 1, 'https://ror.org/038vb6915 Kyoto National Museum 京都国立博物館'), (47819, 'https://ror.org/03941w909', 'de', 1, 'https://ror.org/03941w909 Zentrum für Kinderheilkunde'), (47820, 'https://ror.org/0394aqe83', 'en', 1, 'https://ror.org/0394aqe83 KES International'), (47821, 'https://ror.org/0394z0v14', 'en', 1, 'https://ror.org/0394z0v14 Harborview Injury Prevention and Research Center'), (47822, 'https://ror.org/039573m03', 'sv', 1, 'https://ror.org/039573m03 ParkinsonFörbundet'), (47823, 'https://ror.org/0395cmt65', 'en', 1, 'https://ror.org/0395cmt65 Library System of Lancaster County'), (47824, 'https://ror.org/03967py46', 'no_lang_code', 1, 'https://ror.org/03967py46 Prysmian Group (Germany)'), (47825, 'https://ror.org/0398s5e82', 'no_lang_code', 1, 'https://ror.org/0398s5e82 Skeleton Technologies (Estonia)'), (47826, 'https://ror.org/039c24767', 'en', 1, 'https://ror.org/039c24767 International Confederation of Midwives'), (47827, 'https://ror.org/039chvj52', 'no_lang_code', 1, 'https://ror.org/039chvj52 Ardent Sound (United States)'), (47828, 'https://ror.org/039f8sh24', 'en', 1, 'https://ror.org/039f8sh24 Central Office of Measures Główny Urząd Miar'), (47829, 'https://ror.org/039hky346', 'en', 1, 'https://ror.org/039hky346 Asian University for Women Support Foundation'), (47830, 'https://ror.org/039hpv827', 'en', 1, 'https://ror.org/039hpv827 Institute of Forest Science Федеральное государственное бюджетное учреждение науки Институт лесоведения Российской академии наук'), (47831, 'https://ror.org/039jbwk85', 'en', 1, 'https://ror.org/039jbwk85 Ibaraki Prefecture Education Training Center 茨城県教育研修センター'), (47832, 'https://ror.org/039qfhr69', 'no_lang_code', 1, 'https://ror.org/039qfhr69 Polaroid (United States)'), (47833, 'https://ror.org/039rxdt76', 'en', 1, 'https://ror.org/039rxdt76 Institut de Recherche sur l''Asie du Sud-Est Contemporaine Research Institute on Contemporary Southeast Asia'), (47834, 'https://ror.org/039snsq89', 'no_lang_code', 1, 'https://ror.org/039snsq89 Chi Mei Communication Systems (Taiwan) 奇美通訊'), (47835, 'https://ror.org/039sp3459', 'en', 1, 'https://ror.org/039sp3459 Yamaguchi Junior College 山口短期大学'), (47836, 'https://ror.org/039t7ab07', 'no_lang_code', 1, 'https://ror.org/039t7ab07 Frequentis (Germany)'), (47837, 'https://ror.org/039t7kh95', 'id', 1, 'https://ror.org/039t7kh95 Universitas Victory Sorong'), (47838, 'https://ror.org/039tmw183', 'en', 1, 'https://ror.org/039tmw183 State Library of Kansas'), (47839, 'https://ror.org/039tpj237', 'en', 1, 'https://ror.org/039tpj237 ACT Herpetological Association'), (47840, 'https://ror.org/039twjn75', 'no_lang_code', 1, 'https://ror.org/039twjn75 WaterNet Trust'), (47841, 'https://ror.org/039v0g264', 'de', 1, 'https://ror.org/039v0g264 Zentrum für Psychotherapie Wiesbaden'), (47842, 'https://ror.org/039wcgm60', 'pt', 1, 'https://ror.org/039wcgm60 Prefeitura Municipal de Anapolis'), (47843, 'https://ror.org/03a08y513', 'no_lang_code', 1, 'https://ror.org/03a08y513 Fio Corporation (Canada)'), (47844, 'https://ror.org/03a10hv23', 'no_lang_code', 1, 'https://ror.org/03a10hv23 Nvigen (United States)'), (47845, 'https://ror.org/03a3w5708', 'no_lang_code', 1, 'https://ror.org/03a3w5708 Freestone Environmental Services (United States)'), (47846, 'https://ror.org/03a4te222', 'en', 1, 'https://ror.org/03a4te222 British Society for Middle Eastern Studies'), (47847, 'https://ror.org/03a5vm896', 'en', 1, 'https://ror.org/03a5vm896 All-Russia Thermal Engineering Institute Всероссийский Теплотехнический Институт'), (47848, 'https://ror.org/03a6v9745', 'en', 1, 'https://ror.org/03a6v9745 Ichikawa City Rehabilitation Hospital 市川市リハビリテーション病院'), (47849, 'https://ror.org/03a6vay74', 'en', 1, 'https://ror.org/03a6vay74 Japan Graduate School of Education University 日本教育大学院大学'), (47850, 'https://ror.org/03a8g0p38', 'en', 1, 'https://ror.org/03a8g0p38 Hangzhou Hospital of Traditional Chinese Medicine'), (47851, 'https://ror.org/03abgds10', 'en', 1, 'https://ror.org/03abgds10 Administrative Sciences Association of Canada, Association des sciences administratives du Canada'), (47852, 'https://ror.org/03acb7p04', 'no_lang_code', 1, 'https://ror.org/03acb7p04 Delta Electronics (Taiwan) 达电子'), (47853, 'https://ror.org/03ae5ty12', 'en', 1, 'https://ror.org/03ae5ty12 Inner Mongolia Institute of Hydraulic Research 内蒙古自治区水利科学研究院'), (47854, 'https://ror.org/03aefdx31', 'en', 1, 'https://ror.org/03aefdx31 Beijing Institute of Education 北京教育学院'), (47855, 'https://ror.org/03aervg81', 'de', 1, 'https://ror.org/03aervg81 Klinik für Psychosomatik'), (47856, 'https://ror.org/03aewyp97', 'en', 1, 'https://ror.org/03aewyp97 Association of Danish Physiotherapists Danske Fysioterapeuter'), (47857, 'https://ror.org/03afety63', 'no_lang_code', 1, 'https://ror.org/03afety63 Neurio Technology (Canada)'), (47858, 'https://ror.org/03afg5j45', 'no_lang_code', 1, 'https://ror.org/03afg5j45 Kalinga University'), (47859, 'https://ror.org/03ag1d748', 'en', 1, 'https://ror.org/03ag1d748 Fédération Internationale de Gynécologie et d''Obstétrique International Federation of Gynaecology and Obstetrics'), (47860, 'https://ror.org/03ag30k63', 'en', 1, 'https://ror.org/03ag30k63 Fukuoka City Archaeological Center 福岡市埋蔵文化財センター'), (47861, 'https://ror.org/03agmyp46', 'pt', 1, 'https://ror.org/03agmyp46 Instituto Federal de Educação, Ciência e Tecnologia do Amapá, Instituto Federal do Amapá'), (47862, 'https://ror.org/03ajfdb10', 'no_lang_code', 1, 'https://ror.org/03ajfdb10 Meyer Burger Technology (Germany)'), (47863, 'https://ror.org/03ajjdx52', 'no_lang_code', 1, 'https://ror.org/03ajjdx52 ASM International (Belgium)'), (47864, 'https://ror.org/03akq4247', 'no_lang_code', 1, 'https://ror.org/03akq4247 Dassault Systèmes (United Kingdom)'), (47865, 'https://ror.org/03am9qa36', 'no_lang_code', 1, 'https://ror.org/03am9qa36 American Ecotech (United States)'), (47866, 'https://ror.org/03amcs261', 'no_lang_code', 1, 'https://ror.org/03amcs261 Qorvo (United States)'), (47867, 'https://ror.org/03amme506', 'no_lang_code', 1, 'https://ror.org/03amme506 Kohler (China) 科勒'), (47868, 'https://ror.org/03aq6c412', 'en', 1, 'https://ror.org/03aq6c412 Australian Association for Academic Primary Care'), (47869, 'https://ror.org/03argrj65', 'en', 1, 'https://ror.org/03argrj65 Royal Dublin Society'), (47870, 'https://ror.org/03as2w117', 'en', 1, 'https://ror.org/03as2w117 Columbia St. Mary''s Hospital'), (47871, 'https://ror.org/03asafg21', 'en', 1, 'https://ror.org/03asafg21 Summer Advantage USA'), (47872, 'https://ror.org/03asas176', 'es', 1, 'https://ror.org/03asas176 Universidad Regional Miguel Hidalgo'), (47873, 'https://ror.org/03asesc74', 'en', 1, 'https://ror.org/03asesc74 International Association of Engineers'), (47874, 'https://ror.org/03atav620', 'en', 1, 'https://ror.org/03atav620 Canadian Association of University Teachers'), (47875, 'https://ror.org/03av5bg62', 'en', 1, 'https://ror.org/03av5bg62 Sunrise University'), (47876, 'https://ror.org/03awvgn34', 'en', 1, 'https://ror.org/03awvgn34 Society for Endocrinology, Metabolism and Diabetes of South Africa'), (47877, 'https://ror.org/03axjke18', 'en', 1, 'https://ror.org/03axjke18 Fondazione per la ricerca e la cura dei linfomi Foundation for the Research and Cure of Lymphoma in Ticino'), (47878, 'https://ror.org/03ayjfd71', 'en', 1, 'https://ror.org/03ayjfd71 Marie Curie Hospice'), (47879, 'https://ror.org/03azq1a86', 'en', 1, 'https://ror.org/03azq1a86 Mie prefectural Matsusaka Technical High School 三重県立松阪工業高等学校'), (47880, 'https://ror.org/03azxbd85', 'en', 1, 'https://ror.org/03azxbd85 Kyushu Ryukoku Junior College 九州龍谷短期大学'), (47881, 'https://ror.org/03b00jm70', 'en', 1, 'https://ror.org/03b00jm70 Fukuoka Prefectural Kokura High School 福岡県立小倉高等学校'), (47882, 'https://ror.org/03b14n703', 'en', 1, 'https://ror.org/03b14n703 Cascade Mental Healthcare'), (47883, 'https://ror.org/03b1cg663', 'en', 1, 'https://ror.org/03b1cg663 National Mapping and Resource Information Authority Pambansang Pangasiwaan sa Pagmamapa at Impormasyon sa Yaman'), (47884, 'https://ror.org/03b1v3160', 'en', 1, 'https://ror.org/03b1v3160 Zavaritsky Institute of Geology and Geochemistry Института геологии и геохимии им. академика А.Н. Заварицкого'), (47885, 'https://ror.org/03b209z39', 'pt', 1, 'https://ror.org/03b209z39 Instituto Brasileiro de Museus'), (47886, 'https://ror.org/03b242h08', 'en', 1, 'https://ror.org/03b242h08 Library Foundation of Los Angeles'), (47887, 'https://ror.org/03b2q2q16', 'en', 1, 'https://ror.org/03b2q2q16 Memorial Общество Мемориал'), (47888, 'https://ror.org/03b44vb62', 'en', 1, 'https://ror.org/03b44vb62 Regional Studies Association'), (47889, 'https://ror.org/03b6kz105', 'en', 1, 'https://ror.org/03b6kz105 Integrative Medicine Institute'), (47890, 'https://ror.org/03b9b5x92', 'en', 1, 'https://ror.org/03b9b5x92 Foundation Wakasa Wan Energy Research Center 公益財団法人 若狭湾エネルギー研究センター'), (47891, 'https://ror.org/03bexps94', 'es', 1, 'https://ror.org/03bexps94 Universidad Pedagógica de Durango'), (47892, 'https://ror.org/03bf0mp03', 'en', 1, 'https://ror.org/03bf0mp03 Kitakyushu Museum of Natural History and Human History 北九州市立いのちのたび博物館[自然史・歴史博物館'), (47893, 'https://ror.org/03bfapt22', 'no_lang_code', 1, 'https://ror.org/03bfapt22 International Game Technology (United Kingdom)'), (47894, 'https://ror.org/03bfwzz10', 'no_lang_code', 1, 'https://ror.org/03bfwzz10 Gavin and Doherty Geosolutions (Ireland)'), (47895, 'https://ror.org/03bks0n32', 'en', 1, 'https://ror.org/03bks0n32 Greater Austin Hispanic Chamber of Commerce'), (47896, 'https://ror.org/03bm3h723', 'no_lang_code', 1, 'https://ror.org/03bm3h723 Bristol Laboratories (United Kingdom)'), (47897, 'https://ror.org/03bm7y961', 'en', 1, 'https://ror.org/03bm7y961 Association of Medical Research Charities'), (47898, 'https://ror.org/03bm9hd03', 'en', 1, 'https://ror.org/03bm9hd03 Global Burn Care and Reconstructive Institute'), (47899, 'https://ror.org/03bmyaj71', 'en', 1, 'https://ror.org/03bmyaj71 Japan Transport Research Institute 一般財団法人 運輸総合研究所'), (47900, 'https://ror.org/03bpsvx03', 'en', 1, 'https://ror.org/03bpsvx03 Institute of Forest Genetics and Tree Breeding'), (47901, 'https://ror.org/03bpwzr21', 'no_lang_code', 1, 'https://ror.org/03bpwzr21 Valley Partnership (United States)'), (47902, 'https://ror.org/03bq9hz14', 'no_lang_code', 1, 'https://ror.org/03bq9hz14 Federal Mogul (Germany)'), (47903, 'https://ror.org/03brafa64', 'no_lang_code', 1, 'https://ror.org/03brafa64 Solid (South Korea) 주식회사 쏠리테크 설립'), (47904, 'https://ror.org/03btcby75', 'en', 1, 'https://ror.org/03btcby75 Hokkaido Board of Education 北海道教育委員会'), (47905, 'https://ror.org/03bvw9k90', 'no_lang_code', 1, 'https://ror.org/03bvw9k90 Autoliv (Germany)'), (47906, 'https://ror.org/03bvwa633', 'en', 1, 'https://ror.org/03bvwa633 Ibaraki National College of Technology 茨城工業高等専門学校'), (47907, 'https://ror.org/03bwmrt76', 'no_lang_code', 1, 'https://ror.org/03bwmrt76 Nemaska Lithium (Canada)'), (47908, 'https://ror.org/03bxq3a59', 'no_lang_code', 1, 'https://ror.org/03bxq3a59 Semiconductor Manufacturing International (Italy)'), (47909, 'https://ror.org/03c39qe40', 'en', 1, 'https://ror.org/03c39qe40 Canadian Astronomical Society Société Canadienne d’Astronomie'), (47910, 'https://ror.org/03c50g186', 'en', 1, 'https://ror.org/03c50g186 Linyi City Chinese Medicine Hospital'), (47911, 'https://ror.org/03c8pv287', 'es', 1, 'https://ror.org/03c8pv287 Centro Cultural Universitario de Ciudad Juarez'), (47912, 'https://ror.org/03cb8f280', 'no_lang_code', 1, 'https://ror.org/03cb8f280 Philips (Israel)'), (47913, 'https://ror.org/03cbf2j49', 'no_lang_code', 1, 'https://ror.org/03cbf2j49 Danfoss (Germany)'), (47914, 'https://ror.org/03cbkmv71', 'no_lang_code', 1, 'https://ror.org/03cbkmv71 TDK-EPC (Germany)'), (47915, 'https://ror.org/03ceqgg02', 'no_lang_code', 1, 'https://ror.org/03ceqgg02 Agfa-Gevaert (United States)'), (47916, 'https://ror.org/03cg5ap92', 'en', 1, 'https://ror.org/03cg5ap92 Luoyang Central Hospital Affiliated to Zhengzhou University'), (47917, 'https://ror.org/03ck0bq92', 'en', 1, 'https://ror.org/03ck0bq92 AIDS Vaccine Advocacy Coalition'), (47918, 'https://ror.org/03ckxvj81', 'no_lang_code', 1, 'https://ror.org/03ckxvj81 MACOM (United Kingdom)'), (47919, 'https://ror.org/03cm5j964', 'en', 1, 'https://ror.org/03cm5j964 Cambridge in America'), (47920, 'https://ror.org/03cq0qg50', 'en', 1, 'https://ror.org/03cq0qg50 Zhejiang Ocean Development Institute 浙江省海洋开发研究院'), (47921, 'https://ror.org/03cxbpn31', 'no_lang_code', 1, 'https://ror.org/03cxbpn31 Lumisyn (United States)'), (47922, 'https://ror.org/03cxf6q40', 'no_lang_code', 1, 'https://ror.org/03cxf6q40 Jain PharmaBiotech (Switzerland)'), (47923, 'https://ror.org/03cxjvr57', 'en', 1, 'https://ror.org/03cxjvr57 كلية الجبيل الجامعية Jubail University College'), (47924, 'https://ror.org/03cxpxg17', 'en', 1, 'https://ror.org/03cxpxg17 Fundação CERTI Reference Center Foundation for Innovative Technologies'), (47925, 'https://ror.org/03cxxc369', 'en', 1, 'https://ror.org/03cxxc369 Torino e-district'), (47926, 'https://ror.org/03d0cjn27', 'no_lang_code', 1, 'https://ror.org/03d0cjn27 Alectos (Canada)'), (47927, 'https://ror.org/03d1vm044', 'no_lang_code', 1, 'https://ror.org/03d1vm044 TE Connectivity (Brazil)'), (47928, 'https://ror.org/03d5a9t15', 'en', 1, 'https://ror.org/03d5a9t15 Department of Medical Sciences กรมวิทยาศาสตร์การแพทย์'), (47929, 'https://ror.org/03d6stm02', 'en', 1, 'https://ror.org/03d6stm02 National Hospital Organization Hanamaki Hospital 国立病院機構花巻病院'), (47930, 'https://ror.org/03d6z8b09', 'no_lang_code', 1, 'https://ror.org/03d6z8b09 Diageo (United Kingdom)'), (47931, 'https://ror.org/03d7d0579', 'en', 1, 'https://ror.org/03d7d0579 NIHR Evaluation Trials and Studies Coordinating Centre'), (47932, 'https://ror.org/03d8jqg89', 'en', 1, 'https://ror.org/03d8jqg89 United Nations University Institute for Water, Environment, and Health'), (47933, 'https://ror.org/03dcjsm04', 'en', 1, 'https://ror.org/03dcjsm04 Jaamacada Soomaaliya University of Somalia جامعة الصومال'), (47934, 'https://ror.org/03de5n431', 'no_lang_code', 1, 'https://ror.org/03de5n431 Scientific Games (United States)'), (47935, 'https://ror.org/03dhqyc75', 'en', 1, 'https://ror.org/03dhqyc75 Islamic Azad University, Lahijan Branch دانشگاه آزاد اسلامي واحد لاهيجان'), (47936, 'https://ror.org/03dm2vs08', 'en', 1, 'https://ror.org/03dm2vs08 Kacho College 華頂短期大学'), (47937, 'https://ror.org/03dn3wf28', 'en', 1, 'https://ror.org/03dn3wf28 Coimbatore Medical College and Hospital'), (47938, 'https://ror.org/03dnd4369', 'pt', 1, 'https://ror.org/03dnd4369 Fundação de Economia e Estatística Siegfried Emanuel Heuser'), (47939, 'https://ror.org/03dr35a85', 'pt', 1, 'https://ror.org/03dr35a85 Fundação Apolônio Salles de Desenvolvimento Educacional'), (47940, 'https://ror.org/03dxy2v98', 'en', 1, 'https://ror.org/03dxy2v98 Jamaica Library Service'), (47941, 'https://ror.org/03dywws23', 'en', 1, 'https://ror.org/03dywws23 Wakayama Prefectural Tanabe High School 和歌山県立 田辺高等学校'), (47942, 'https://ror.org/03e0eqg93', 'en', 1, 'https://ror.org/03e0eqg93 Austin Public Library'), (47943, 'https://ror.org/03e0ttw56', 'en', 1, 'https://ror.org/03e0ttw56 Aomori Prefectural Industrial Technology Center 青森県産業技術センター'), (47944, 'https://ror.org/03e0zx788', 'en', 1, 'https://ror.org/03e0zx788 Fukuoka Institute of Technology Junior College 福岡工業大学短期大学部'), (47945, 'https://ror.org/03e1t0653', 'no_lang_code', 1, 'https://ror.org/03e1t0653 Sendai Seiyo Gakuin College 仙台青葉学院短期大学'), (47946, 'https://ror.org/03e27sm64', 'en', 1, 'https://ror.org/03e27sm64 Tokyo Metropolitan Kuramae Technical High School 東京都立蔵前工業高等学校'), (47947, 'https://ror.org/03e5aw094', 'en', 1, 'https://ror.org/03e5aw094 Association for the Study of Higher Education'), (47948, 'https://ror.org/03e7zen21', 'no_lang_code', 1, 'https://ror.org/03e7zen21 Volvo (United States)'), (47949, 'https://ror.org/03e84bp78', 'en', 1, 'https://ror.org/03e84bp78 China Chamber of Commerce for Import and Export of Medicines and Health Products 中国医药保健品进出口商会'), (47950, 'https://ror.org/03e8zd719', 'en', 1, 'https://ror.org/03e8zd719 Sh''or Yoshuv Institute'), (47951, 'https://ror.org/03e9gte70', 'de', 1, 'https://ror.org/03e9gte70 Wikimedia Deutschland'), (47952, 'https://ror.org/03ea8hp29', 'fr', 1, 'https://ror.org/03ea8hp29 Université d''Agriculture de Kétou'), (47953, 'https://ror.org/03edh2b12', 'en', 1, 'https://ror.org/03edh2b12 Matsudo City Board of Education 松戸市教育委員会'), (47954, 'https://ror.org/03efa9j76', 'en', 1, 'https://ror.org/03efa9j76 Solid State Physics Laboratory ठोसावस्था भौतिकी प्रयोगशाला'), (47955, 'https://ror.org/03egady98', 'no_lang_code', 1, 'https://ror.org/03egady98 eSenso (Canada)'), (47956, 'https://ror.org/03egh3k54', 'en', 1, 'https://ror.org/03egh3k54 Miyagi Prefectural Fisheries High School 宮城県水産高等学校'), (47957, 'https://ror.org/03egy0233', 'en', 1, 'https://ror.org/03egy0233 Institut za Društvena Istraživanja Sveučilišta u Zagrebu Institute for Social Research'), (47958, 'https://ror.org/03ejhx730', 'pt', 1, 'https://ror.org/03ejhx730 Sociedade Brasileira de Recursos Genéticos'), (47959, 'https://ror.org/03ek4e159', 'no_lang_code', 1, 'https://ror.org/03ek4e159 Assa Abloy (New Zealand)'), (47960, 'https://ror.org/03eq6a532', 'en', 1, 'https://ror.org/03eq6a532 Turkish Society of Nephrology Türk Nefroloji Derneği'), (47961, 'https://ror.org/03erscp63', 'no_lang_code', 1, 'https://ror.org/03erscp63 Heidelberg Printing Machines AG Heidelberger Druckmaschinen (Germany)'), (47962, 'https://ror.org/03et3bc78', 'en', 1, 'https://ror.org/03et3bc78 Hachinohe Technical High School 青森県立八戸工業高等学校'), (47963, 'https://ror.org/03ete9c40', 'no_lang_code', 1, 'https://ror.org/03ete9c40 EchoStar (India)'), (47964, 'https://ror.org/03ev7vc82', 'en', 1, 'https://ror.org/03ev7vc82 Glide Foundation'), (47965, 'https://ror.org/03evg0379', 'en', 1, 'https://ror.org/03evg0379 Higher Institute of Technologies and Applied Sciences Instituto Superior de Tecnologías y Ciencias Aplicadas'), (47966, 'https://ror.org/03ewmqz06', 'no_lang_code', 1, 'https://ror.org/03ewmqz06 Ekodenge (Turkey)'), (47967, 'https://ror.org/03ext6r62', 'en', 1, 'https://ror.org/03ext6r62 All-Russian Research Institute for Oil Refining Всероссийский научно-исследовательский институт по переработке нефти'), (47968, 'https://ror.org/03ey3qt70', 'no_lang_code', 1, 'https://ror.org/03ey3qt70 Corcept Therapeutics (United States)'), (47969, 'https://ror.org/03ez0jn38', 'en', 1, 'https://ror.org/03ez0jn38 National Museum of Modern Art Kyoto 京都国立近代美術館'), (47970, 'https://ror.org/03ezg7602', 'en', 1, 'https://ror.org/03ezg7602 Association for Women Geoscientists'), (47971, 'https://ror.org/03f0m8k49', 'en', 1, 'https://ror.org/03f0m8k49 British Association for Cancer Research'), (47972, 'https://ror.org/03f1f6f50', 'no_lang_code', 1, 'https://ror.org/03f1f6f50 Makita Corporation (Japan) 株式会社マキタ'), (47973, 'https://ror.org/03f1m2f12', 'no_lang_code', 1, 'https://ror.org/03f1m2f12 Dräger (United Kingdom)'), (47974, 'https://ror.org/03f1myq16', 'en', 1, 'https://ror.org/03f1myq16 Gulf Regional Planning Commission'), (47975, 'https://ror.org/03f1pm042', 'en', 1, 'https://ror.org/03f1pm042 Ragnar Söderberg Foundation'), (47976, 'https://ror.org/03f5vkk69', 'no_lang_code', 1, 'https://ror.org/03f5vkk69 Scientific Games (Australia)'), (47977, 'https://ror.org/03f915n15', 'fr', 1, 'https://ror.org/03f915n15 Institut National Polytechnique Félix Houphouët-Boigny'), (47978, 'https://ror.org/03fa8j757', 'en', 1, 'https://ror.org/03fa8j757 Parks and Recreation Foundation 般財団法人 公園財団'), (47979, 'https://ror.org/03fd82c91', 'no_lang_code', 1, 'https://ror.org/03fd82c91 Rohm (Germany)'), (47980, 'https://ror.org/03fevzd03', 'no_lang_code', 1, 'https://ror.org/03fevzd03 Topcon (Japan) 株式会社トプコン'), (47981, 'https://ror.org/03feyjt47', 'en', 1, 'https://ror.org/03feyjt47 Saudi Ophthalmological Society الجمعية السعودية لطب العيون'), (47982, 'https://ror.org/03fj5w909', 'en', 1, 'https://ror.org/03fj5w909 International Laboratory of High Magnetic Fields and Low Temperatures Międzynarodowego Laboratorium Silnych Pól Magnetycznych i Niskich Temperatur'), (47983, 'https://ror.org/03fjbw519', 'no_lang_code', 1, 'https://ror.org/03fjbw519 Apple (Germany)'), (47984, 'https://ror.org/03fjgt095', 'en', 1, 'https://ror.org/03fjgt095 Goulburn Broken Catchment Management Authority'), (47985, 'https://ror.org/03fjjmv72', 'en', 1, 'https://ror.org/03fjjmv72 Association for Surgical Education'), (47986, 'https://ror.org/03fjn6n75', 'en', 1, 'https://ror.org/03fjn6n75 Australian Publishers Association'), (47987, 'https://ror.org/03fkb6t85', 'en', 1, 'https://ror.org/03fkb6t85 GrAT - Center for Appropriate Technology Gruppe zur Förderung der Angepasste Technologie'), (47988, 'https://ror.org/03fkqty89', 'en', 1, 'https://ror.org/03fkqty89 Japanese Society of Clinical Neuropsychopharmacology 日本臨床精神神経薬理学会'), (47989, 'https://ror.org/03fm7wh60', 'en', 1, 'https://ror.org/03fm7wh60 Durham Technical Community College'), (47990, 'https://ror.org/03fpgta87', 'en', 1, 'https://ror.org/03fpgta87 Service Science Society of Taiwan 台灣服務科學學會'), (47991, 'https://ror.org/03ftb9350', 'en', 1, 'https://ror.org/03ftb9350 Government of Japan'), (47992, 'https://ror.org/03ftwc024', 'en', 1, 'https://ror.org/03ftwc024 Marienhospital Arnsberg'), (47993, 'https://ror.org/03fy1q357', 'en', 1, 'https://ror.org/03fy1q357 Center for European Policy Analysis'), (47994, 'https://ror.org/03fyf9c76', 'no_lang_code', 1, 'https://ror.org/03fyf9c76 McKinsey & Company (Germany)'), (47995, 'https://ror.org/03fz8dh89', 'en', 1, 'https://ror.org/03fz8dh89 Japanese Society of Medical Oncology 腫瘍内科学会'), (47996, 'https://ror.org/03g38jf25', 'en', 1, 'https://ror.org/03g38jf25 All-Russian Research Institute for Optical and Physical Measurements Всероссийский научно-исследовательский институт оптико-физических измерений'), (47997, 'https://ror.org/03g57y740', 'en', 1, 'https://ror.org/03g57y740 Kochi Rehabilitation Institute 高知リハビリテーション学院'), (47998, 'https://ror.org/03g58rv06', 'en', 1, 'https://ror.org/03g58rv06 Donald Beasley Institute'), (47999, 'https://ror.org/03g5wg622', 'no_lang_code', 1, 'https://ror.org/03g5wg622 YIT (Germany)'), (48000, 'https://ror.org/03g6saz93', 'en', 1, 'https://ror.org/03g6saz93 Nara Prefectural Nara High School 奈良県立奈良北高等学校'), (48001, 'https://ror.org/03g7x9g28', 'no_lang_code', 1, 'https://ror.org/03g7x9g28 Signosis (United States)'), (48002, 'https://ror.org/03g9yn034', 'en', 1, 'https://ror.org/03g9yn034 York County School Division'), (48003, 'https://ror.org/03ga2w460', 'en', 1, 'https://ror.org/03ga2w460 Cancer Care Nova Scotia'), (48004, 'https://ror.org/03gbnem78', 'en', 1, 'https://ror.org/03gbnem78 Shimane Prefectural Matsue Technical High School 島根県立松江工業高等学校'), (48005, 'https://ror.org/03gbx5482', 'en', 1, 'https://ror.org/03gbx5482 Ministry of Urban Development,Housing and Construction'), (48006, 'https://ror.org/03gbxs308', 'no_lang_code', 1, 'https://ror.org/03gbxs308 Funai Electric (Japan) 船井電機株式会社'), (48007, 'https://ror.org/03gck1m55', 'fr', 1, 'https://ror.org/03gck1m55 Société Française de Dermatologie et de Pathologie Sexuellement Transmissible'), (48008, 'https://ror.org/03gd0xf29', 'en', 1, 'https://ror.org/03gd0xf29 Gifu Prefectural Yaotsu High School 岐阜県立八百津高等学校'), (48009, 'https://ror.org/03gf10a58', 'no_lang_code', 1, 'https://ror.org/03gf10a58 Applied Physical Sciences (United States)'), (48010, 'https://ror.org/03gf7q691', 'pt', 1, 'https://ror.org/03gf7q691 Faculdade Única'), (48011, 'https://ror.org/03gfc4s78', 'no_lang_code', 1, 'https://ror.org/03gfc4s78 SMC Corporation (Japan) SMC 株式会社'), (48012, 'https://ror.org/03gffcv79', 'en', 1, 'https://ror.org/03gffcv79 Society of Hong Kong Scholars'), (48013, 'https://ror.org/03gjpvv92', 'en', 1, 'https://ror.org/03gjpvv92 Halle Institute for Economic Research Leibniz-Institut für Wirtschaftsforschung Halle'), (48014, 'https://ror.org/03gmm4776', 'no_lang_code', 1, 'https://ror.org/03gmm4776 Semi Conductor Devices (Israel)'), (48015, 'https://ror.org/03gpasn37', 'en', 1, 'https://ror.org/03gpasn37 Walkergate Park Hospital'), (48016, 'https://ror.org/03gqy2z96', 'no_lang_code', 1, 'https://ror.org/03gqy2z96 National Oilwell Varco (United Kingdom)'), (48017, 'https://ror.org/03grvh841', 'no_lang_code', 1, 'https://ror.org/03grvh841 Intermolecular (United States)'), (48018, 'https://ror.org/03gsjv132', 'no_lang_code', 1, 'https://ror.org/03gsjv132 Sandvik (Germany)'), (48019, 'https://ror.org/03gtr6m06', 'en', 1, 'https://ror.org/03gtr6m06 University of Telecommunications and Post Висше училище по телекомуникации и пощи'), (48020, 'https://ror.org/03gwmtg18', 'no_lang_code', 1, 'https://ror.org/03gwmtg18 Gleason (Germany)'), (48021, 'https://ror.org/03gx8w417', 'no_lang_code', 1, 'https://ror.org/03gx8w417 Bridgepoint (United States)'), (48022, 'https://ror.org/03gxw2643', 'en', 1, 'https://ror.org/03gxw2643 Niigata Prefectural Niigata High School 新潟県立新潟高等学校'), (48023, 'https://ror.org/03gz1ev12', 'en', 1, 'https://ror.org/03gz1ev12 Worldwatch Institute'), (48024, 'https://ror.org/03gzy4429', 'en', 1, 'https://ror.org/03gzy4429 British Society of Periodontology'), (48025, 'https://ror.org/03h2dv749', 'en', 1, 'https://ror.org/03h2dv749 Hokkaido Museum of Northern Peoples 北海道立北方民族博物館'), (48026, 'https://ror.org/03hacry86', 'en', 1, 'https://ror.org/03hacry86 Tokyo Metropolitan Saginomiya High School 東京都立鷺宮高等学校'), (48027, 'https://ror.org/03hc02072', 'no_lang_code', 1, 'https://ror.org/03hc02072 QuantuMDx (United Kingdom)'), (48028, 'https://ror.org/03hdkcc29', 'en', 1, 'https://ror.org/03hdkcc29 Kameda College of Health Sciences 亀田医療大学'), (48029, 'https://ror.org/03hf07k85', 'en', 1, 'https://ror.org/03hf07k85 Low Income Housing Institute'), (48030, 'https://ror.org/03hgh1k95', 'fr', 1, 'https://ror.org/03hgh1k95 Collège de Physique et de Philosophie'), (48031, 'https://ror.org/03hm0sm79', 'en', 1, 'https://ror.org/03hm0sm79 National Council of Applied Economic Research'), (48032, 'https://ror.org/03hm7k454', 'en', 1, 'https://ror.org/03hm7k454 Twelfth Guangzhou City People''s Hospital 广州市第十二人民医院'), (48033, 'https://ror.org/03hpv0z23', 'en', 1, 'https://ror.org/03hpv0z23 Institute for Research and Reform in Education'), (48034, 'https://ror.org/03hq2ba30', 'en', 1, 'https://ror.org/03hq2ba30 Kyoto Bunkyo Junior College 京都文教短期大学'), (48035, 'https://ror.org/03hsaqw61', 'en', 1, 'https://ror.org/03hsaqw61 Wellspring University'), (48036, 'https://ror.org/03hsqcd26', 'no_lang_code', 1, 'https://ror.org/03hsqcd26 Ab Låsfabriken-Lukkotehdas Oy Abloy (Finland)'), (48037, 'https://ror.org/03hv95d67', 'es', 1, 'https://ror.org/03hv95d67 Chilean Nuclear Energy Commission Comisión Chilena de Energía Nuclear'), (48038, 'https://ror.org/03hw0dp08', 'en', 1, 'https://ror.org/03hw0dp08 Internacionalni univerzitet Travnik International University of Travnik'), (48039, 'https://ror.org/03hy1zg87', 'no_lang_code', 1, 'https://ror.org/03hy1zg87 Western Digital (Israel)'), (48040, 'https://ror.org/03hy63170', 'en', 1, 'https://ror.org/03hy63170 Kappa Kappa Gamma'), (48041, 'https://ror.org/03j0njm34', 'no_lang_code', 1, 'https://ror.org/03j0njm34 British American Tobacco (Japan) ブリティッシュ・アメリカン・タバコ'), (48042, 'https://ror.org/03j2b0f13', 'no_lang_code', 1, 'https://ror.org/03j2b0f13 SphingoGene (United States)'), (48043, 'https://ror.org/03j5mnr69', 'en', 1, 'https://ror.org/03j5mnr69 Niigata City Kohshi Secondary School 新潟市立高志中等教育学校'), (48044, 'https://ror.org/03j79f182', 'no_lang_code', 1, 'https://ror.org/03j79f182 Balfour Beatty (Germany)'), (48045, 'https://ror.org/03j8e1479', 'en', 1, 'https://ror.org/03j8e1479 Gansu Provincial Hospital of TCM 甘肃省中医院'), (48046, 'https://ror.org/03jewb194', 'fr', 1, 'https://ror.org/03jewb194 Université Kofi Annan de Guinée'), (48047, 'https://ror.org/03jgdxs56', 'en', 1, 'https://ror.org/03jgdxs56 Hokkaido Dental Technical College 北海道歯科技術専門学校'), (48048, 'https://ror.org/03jgff472', 'en', 1, 'https://ror.org/03jgff472 Takayama College of Car Technology 高山自動車短期大学'), (48049, 'https://ror.org/03jj2t466', 'en', 1, 'https://ror.org/03jj2t466 Ancient Egypt Research Associates'), (48050, 'https://ror.org/03jjkbg74', 'en', 1, 'https://ror.org/03jjkbg74 American Society for Public Administration'), (48051, 'https://ror.org/03jjm4b17', 'en', 1, 'https://ror.org/03jjm4b17 Hangzhou Vocational and Technical College 杭州职业技术学院'), (48052, 'https://ror.org/03jjvt296', 'en', 1, 'https://ror.org/03jjvt296 Wakayama Prefectural Board of Education 和歌山県教育委員会'), (48053, 'https://ror.org/03jp6rr57', 'en', 1, 'https://ror.org/03jp6rr57 LaConner Regional Library'), (48054, 'https://ror.org/03jqm3125', 'no_lang_code', 1, 'https://ror.org/03jqm3125 Quaternion Aerospace (Canada)'), (48055, 'https://ror.org/03jr65e79', 'en', 1, 'https://ror.org/03jr65e79 African Capacity Building Foundation'), (48056, 'https://ror.org/03jrxdc53', 'en', 1, 'https://ror.org/03jrxdc53 Japanese Urological Association 日本泌尿器科学会'), (48057, 'https://ror.org/03jtajd40', 'fr', 1, 'https://ror.org/03jtajd40 Programme PAC-CI'), (48058, 'https://ror.org/03jty5027', 'no_lang_code', 1, 'https://ror.org/03jty5027 Brocade (United States)'), (48059, 'https://ror.org/03jyqk712', 'no_lang_code', 1, 'https://ror.org/03jyqk712 Huawei Technologies (United States)'), (48060, 'https://ror.org/03jzay846', 'no_lang_code', 1, 'https://ror.org/03jzay846 Honda (Japan) 本田技研工業株式会社'), (48061, 'https://ror.org/03jzc4108', 'no_lang_code', 1, 'https://ror.org/03jzc4108 PLUX - Wireless Biosignals (Portugal)'), (48062, 'https://ror.org/03jzczt57', 'en', 1, 'https://ror.org/03jzczt57 International Institute for Strategic Studies'), (48063, 'https://ror.org/03jzx6k15', 'tr', 1, 'https://ror.org/03jzx6k15 Manisa Celal Bayar Üniversitesi Hafsa Sultan Hastanesi'), (48064, 'https://ror.org/03k08vb24', 'en', 1, 'https://ror.org/03k08vb24 Breast Cancer Over Time'), (48065, 'https://ror.org/03k1ymh78', 'no_lang_code', 1, 'https://ror.org/03k1ymh78 Samsung (Israel)'), (48066, 'https://ror.org/03k4vk194', 'no_lang_code', 1, 'https://ror.org/03k4vk194 Grace (United States)'), (48067, 'https://ror.org/03k6h6357', 'en', 1, 'https://ror.org/03k6h6357 Museum of Malawi'), (48068, 'https://ror.org/03k7fv950', 'en', 1, 'https://ror.org/03k7fv950 Yawata Medical Center 加賀八幡温泉病院'), (48069, 'https://ror.org/03kbkcf70', 'en', 1, 'https://ror.org/03kbkcf70 Episcopal School of Dallas'), (48070, 'https://ror.org/03ke6ew70', 'en', 1, 'https://ror.org/03ke6ew70 Department of Fisheries'), (48071, 'https://ror.org/03kgj1y58', 'no_lang_code', 1, 'https://ror.org/03kgj1y58 Takada Junior College 高田短期大学'), (48072, 'https://ror.org/03kjve460', 'en', 1, 'https://ror.org/03kjve460 Nagasaki Prefectural Tsushima Museum of History and Folklore 長崎県立対馬歴史民俗史料館'), (48073, 'https://ror.org/03kky3p48', 'en', 1, 'https://ror.org/03kky3p48 Wikimedia Argentina'), (48074, 'https://ror.org/03kmyta64', 'en', 1, 'https://ror.org/03kmyta64 Naha City Hospital 那覇市立病院'), (48075, 'https://ror.org/03kp88547', 'pt', 1, 'https://ror.org/03kp88547 Associação Nacional de Entidades Promotoras de Empreendimentos de Tecnologias Avançadas Brazilian Association of Science Parks and Business Incubators'), (48076, 'https://ror.org/03kryfe63', 'en', 1, 'https://ror.org/03kryfe63 Suzuka City Library 鈴鹿市立図書館'), (48077, 'https://ror.org/03ksx7604', 'en', 1, 'https://ror.org/03ksx7604 Association of Academic Physiatrists'), (48078, 'https://ror.org/03kt5ya77', 'en', 1, 'https://ror.org/03kt5ya77 Wakayama Prefectural Museum of Natural History 和歌山県立自然博物館'), (48079, 'https://ror.org/03kx92c42', 'en', 1, 'https://ror.org/03kx92c42 Industrial Technology Center of SAGA 佐賀県産業技術センター'), (48080, 'https://ror.org/03kx9nw13', 'no_lang_code', 1, 'https://ror.org/03kx9nw13 Valeo (Brazil)'), (48081, 'https://ror.org/03m02qa07', 'en', 1, 'https://ror.org/03m02qa07 Aoyama Gakuin Women''s Junior College 青山学院女子短期大学'), (48082, 'https://ror.org/03m13r221', 'en', 1, 'https://ror.org/03m13r221 Port of Morrow'), (48083, 'https://ror.org/03m1q4162', 'no_lang_code', 1, 'https://ror.org/03m1q4162 Nordson (Germany)'), (48084, 'https://ror.org/03m2n7z62', 'en', 1, 'https://ror.org/03m2n7z62 Shoei Junior College 頌栄短期大学'), (48085, 'https://ror.org/03m4ve365', 'pt', 1, 'https://ror.org/03m4ve365 Instituto Florestal'), (48086, 'https://ror.org/03m4xpg98', 'en', 1, 'https://ror.org/03m4xpg98 Hellenic Society for the Study of Bone Metabolism Ελληνική Εταιρεία Μελέτης Μεταβολισμού των Οστών'), (48087, 'https://ror.org/03m71gb52', 'en', 1, 'https://ror.org/03m71gb52 Bangladesh Sericulture Research and Training Institute'), (48088, 'https://ror.org/03m80tg69', 'en', 1, 'https://ror.org/03m80tg69 International Parkinson and Movement Disorder Society'), (48089, 'https://ror.org/03m823837', 'no_lang_code', 1, 'https://ror.org/03m823837 Magnezit (Russia) Магнезита'), (48090, 'https://ror.org/03m8km719', 'en', 1, 'https://ror.org/03m8km719 Environmental Protection Agency'), (48091, 'https://ror.org/03m8w6896', 'en', 1, 'https://ror.org/03m8w6896 Quantum Chemistry Research Institute 特定非営利活動法人 量子化学研究協会研究所'), (48092, 'https://ror.org/03mazta23', 'en', 1, 'https://ror.org/03mazta23 Ministry of Culture of the Republic of Latvia'), (48093, 'https://ror.org/03mc1nw82', 'no_lang_code', 1, 'https://ror.org/03mc1nw82 Aristocrat (Australia)'), (48094, 'https://ror.org/03mdyrb51', 'no_lang_code', 1, 'https://ror.org/03mdyrb51 Hillrom (Singapore)'), (48095, 'https://ror.org/03mf7fw42', 'en', 1, 'https://ror.org/03mf7fw42 Tiffin University Prague'), (48096, 'https://ror.org/03mfwnv44', 'no_lang_code', 1, 'https://ror.org/03mfwnv44 Yamamura Gakuen College 山村学園短期大学'), (48097, 'https://ror.org/03mj2g711', 'en', 1, 'https://ror.org/03mj2g711 Chiba City Museum of Art 千葉市美術館'), (48098, 'https://ror.org/03mkjvs49', 'en', 1, 'https://ror.org/03mkjvs49 Jesuit Service Cambodia'), (48099, 'https://ror.org/03mmka096', 'en', 1, 'https://ror.org/03mmka096 Qinghai Tibetan Hospital 青海省藏医院'), (48100, 'https://ror.org/03mmx9g76', 'pt', 1, 'https://ror.org/03mmx9g76 Sociedade Brasileira de História da Matemática'), (48101, 'https://ror.org/03mp9xr25', 'no_lang_code', 1, 'https://ror.org/03mp9xr25 SmartSkim (United States)'), (48102, 'https://ror.org/03mqek204', 'en', 1, 'https://ror.org/03mqek204 European Parliamentary Forum on Population & Development'), (48103, 'https://ror.org/03mrh9y60', 'en', 1, 'https://ror.org/03mrh9y60 Japan Snake Institute 日本スネーク研究所'), (48104, 'https://ror.org/03ms3yr93', 'en', 1, 'https://ror.org/03ms3yr93 Institute for Altitude Medicine'), (48105, 'https://ror.org/03mvhz334', 'no_lang_code', 1, 'https://ror.org/03mvhz334 SolMateS (Netherlands)'), (48106, 'https://ror.org/03mxb1d84', 'en', 1, 'https://ror.org/03mxb1d84 Ogaki Women''s College 大垣女子短期大学'), (48107, 'https://ror.org/03mxqcg82', 'en', 1, 'https://ror.org/03mxqcg82 Flughafen Leipzig/Halle Leipzig/Halle Airport'), (48108, 'https://ror.org/03mxwtc74', 'en', 1, 'https://ror.org/03mxwtc74 Hosen College of Childhood Education こども教育宝仙大学'), (48109, 'https://ror.org/03mxz9a62', 'en', 1, 'https://ror.org/03mxz9a62 Akita Museum of Art 秋田県立美術館'), (48110, 'https://ror.org/03myafa32', 'en', 1, 'https://ror.org/03myafa32 Oxford Centre for Diabetes, Endocrinology and Metabolism'), (48111, 'https://ror.org/03mza7j54', 'no_lang_code', 1, 'https://ror.org/03mza7j54 Cascade Thermal Solutions (United States)'), (48112, 'https://ror.org/03n1gcz29', 'no_lang_code', 1, 'https://ror.org/03n1gcz29 Chiba Prefectural Sekiyado-jo Museum'), (48113, 'https://ror.org/03n2emr48', 'no_lang_code', 1, 'https://ror.org/03n2emr48 Kohler (United States)'), (48114, 'https://ror.org/03n4s8g35', 'en', 1, 'https://ror.org/03n4s8g35 Hokkaido Sapporo Kita High School 北海道札幌北高等学校'), (48115, 'https://ror.org/03n4y8m86', 'no_lang_code', 1, 'https://ror.org/03n4y8m86 Lite-On Technology Corporation (Singapore)'), (48116, 'https://ror.org/03n7n4r41', 'en', 1, 'https://ror.org/03n7n4r41 Kanto Junior College 関東短期大学'), (48117, 'https://ror.org/03n7xzj51', 'en', 1, 'https://ror.org/03n7xzj51 Shridhar University'), (48118, 'https://ror.org/03n8fxy07', 'no_lang_code', 1, 'https://ror.org/03n8fxy07 Engie (United States)'), (48119, 'https://ror.org/03n8qgc13', 'hu', 1, 'https://ror.org/03n8qgc13 Bajai Obszervatórium, Bács-Kiskun Megyei Csillagvizsgáló Intézet'), (48120, 'https://ror.org/03n8qhg02', 'no_lang_code', 1, 'https://ror.org/03n8qhg02 Fontis (Czechia)'), (48121, 'https://ror.org/03n9dk271', 'en', 1, 'https://ror.org/03n9dk271 Glen Carbon Centennial Library'), (48122, 'https://ror.org/03natzt93', 'no_lang_code', 1, 'https://ror.org/03natzt93 Apex Tool Group (Taiwan)'), (48123, 'https://ror.org/03nbg4460', 'en', 1, 'https://ror.org/03nbg4460 Center for Environmental Science in Saitama 埼玉県環境科学国際センター'), (48124, 'https://ror.org/03nbky582', 'en', 1, 'https://ror.org/03nbky582 University-National Oceanographic Laboratory System'), (48125, 'https://ror.org/03ncs3316', 'no_lang_code', 1, 'https://ror.org/03ncs3316 Red Hat (United States)'), (48126, 'https://ror.org/03nd8bd86', 'es', 1, 'https://ror.org/03nd8bd86 Conferencia Episcopal Boliviana'), (48127, 'https://ror.org/03nf8te12', 'en', 1, 'https://ror.org/03nf8te12 Reading Public Library'), (48128, 'https://ror.org/03nkrqs25', 'no_lang_code', 1, 'https://ror.org/03nkrqs25 OSI Systems (Germany)'), (48129, 'https://ror.org/03npsbw04', 'en', 1, 'https://ror.org/03npsbw04 Zhejiang Entry-Exit Inspection and Quarantine Bureau 杭州出入境检验检疫局'), (48130, 'https://ror.org/03nsa4h03', 'en', 1, 'https://ror.org/03nsa4h03 Sakai City Education Center 堺市教育センター'), (48131, 'https://ror.org/03nsmq393', 'no_lang_code', 1, 'https://ror.org/03nsmq393 Seco Warwick (United States)'), (48132, 'https://ror.org/03nss1434', 'en', 1, 'https://ror.org/03nss1434 Live Oak Public Libraries'), (48133, 'https://ror.org/03ntfkn26', 'en', 1, 'https://ror.org/03ntfkn26 Ames Free Library'), (48134, 'https://ror.org/03nw6pt28', 'no_lang_code', 1, 'https://ror.org/03nw6pt28 ON Semiconductor (United States)'), (48135, 'https://ror.org/03nwf3f39', 'en', 1, 'https://ror.org/03nwf3f39 Highland Community College - Kansas'), (48136, 'https://ror.org/03nwpr620', 'no_lang_code', 1, 'https://ror.org/03nwpr620 Brunswick (United States)'), (48137, 'https://ror.org/03nxnp058', 'pt', 1, 'https://ror.org/03nxnp058 Museu da Amazonia'), (48138, 'https://ror.org/03p186h82', 'en', 1, 'https://ror.org/03p186h82 Delaware County Libraries'), (48139, 'https://ror.org/03p1xd909', 'no_lang_code', 1, 'https://ror.org/03p1xd909 ATG Europe (Netherlands)'), (48140, 'https://ror.org/03p26k524', 'en', 1, 'https://ror.org/03p26k524 Animals and Society Institute'), (48141, 'https://ror.org/03p5evc41', 'no_lang_code', 1, 'https://ror.org/03p5evc41 Mitsubishi Materials (Japan) 三菱マテリアル株式会社'), (48142, 'https://ror.org/03p5hcj07', 'pt', 1, 'https://ror.org/03p5hcj07 Instituto Federal de Educação, Ciência e Tecnologia do Tocantins, Instituto Federal do Tocantins'), (48143, 'https://ror.org/03p5s8507', 'en', 1, 'https://ror.org/03p5s8507 Niihama City Sumino Elementary School 新居浜市立角野小学校'), (48144, 'https://ror.org/03p5v7r13', 'no_lang_code', 1, 'https://ror.org/03p5v7r13 Newron Pharmaceuticals (United States)'), (48145, 'https://ror.org/03p706b71', 'es', 1, 'https://ror.org/03p706b71 Universidad Mesoamericana Oaxaca'), (48146, 'https://ror.org/03paakw30', 'en', 1, 'https://ror.org/03paakw30 Jiseikai Welfare Kyusyu Hospital 福祉 九州 病院'), (48147, 'https://ror.org/03pdvnb13', 'en', 1, 'https://ror.org/03pdvnb13 Okayama Prefectural Katsumata High School 岡山県立勝間田高等学校'), (48148, 'https://ror.org/03pjj5012', 'en', 1, 'https://ror.org/03pjj5012 National Association of Broadcasters'), (48149, 'https://ror.org/03pjs1y45', 'en', 1, 'https://ror.org/03pjs1y45 Forskningsrådet för Miljö, Areella Näringar och Samhällsbyggande Swedish Research Council for Environment Agricultural Sciences and Spatial Planning'), (48150, 'https://ror.org/03pjzs448', 'no_lang_code', 1, 'https://ror.org/03pjzs448 Luxmux Technology (Canada)'), (48151, 'https://ror.org/03pmbr594', 'no_lang_code', 1, 'https://ror.org/03pmbr594 Mitsuwadai General Hospital みつわ台総合病院'), (48152, 'https://ror.org/03pmzch07', 'en', 1, 'https://ror.org/03pmzch07 National Institute for Public Policy'), (48153, 'https://ror.org/03pngf508', 'en', 1, 'https://ror.org/03pngf508 National Institute of Technology, Suzuka College 鈴鹿工業高等専門学校'); INSERT INTO `rors` VALUES (48154, 'https://ror.org/03pp1bs03', 'en', 1, 'https://ror.org/03pp1bs03 Saga Prefectural Regional Industry Support Center 公益財団法人 佐賀県地域産業支援センター'), (48155, 'https://ror.org/03ppgxn28', 'en', 1, 'https://ror.org/03ppgxn28 Aichi Prefectural Jishukan Senior High School 愛知県立時習館高等学校'), (48156, 'https://ror.org/03pqjm879', 'no_lang_code', 1, 'https://ror.org/03pqjm879 Alcoa (Australia)'), (48157, 'https://ror.org/03pr7r585', 'en', 1, 'https://ror.org/03pr7r585 Disaster Reduction and Human Renovation Institution 阪神・淡路大震災記念 人と防災未来センター'), (48158, 'https://ror.org/03ptyn747', 'en', 1, 'https://ror.org/03ptyn747 Alabama Department of Commerce'), (48159, 'https://ror.org/03pwtnm85', 'en', 1, 'https://ror.org/03pwtnm85 Mie Prefectural Police 三重県警察'), (48160, 'https://ror.org/03pwzr890', 'no_lang_code', 1, 'https://ror.org/03pwzr890 Westinghouse Electric (Germany)'), (48161, 'https://ror.org/03px70152', 'en', 1, 'https://ror.org/03px70152 Government of Prince Edward Island'), (48162, 'https://ror.org/03q0a5512', 'en', 1, 'https://ror.org/03q0a5512 Association du Barreau Canadien Canadian Bar Association'), (48163, 'https://ror.org/03q170s02', 'it', 1, 'https://ror.org/03q170s02 Associazione Malattie Autoimmuni Mario Rossi'), (48164, 'https://ror.org/03q1pf281', 'no_lang_code', 1, 'https://ror.org/03q1pf281 Central Glass (Japan) セントラル硝子株式会社'), (48165, 'https://ror.org/03q2wez45', 'fr', 1, 'https://ror.org/03q2wez45 Instituts Français de Recherche à L''Étranger'), (48166, 'https://ror.org/03q6yg517', 'en', 1, 'https://ror.org/03q6yg517 Ibaraki Prefectural Mito First High School 茨城県立水戸第一高等学校'), (48167, 'https://ror.org/03q8m4c63', 'en', 1, 'https://ror.org/03q8m4c63 Hiroshima Prefectural Education Center 広島県立教育センター'), (48168, 'https://ror.org/03q8prw02', 'no_lang_code', 1, 'https://ror.org/03q8prw02 Mitsui Bunko 公益財団法人 三井文庫'), (48169, 'https://ror.org/03q8xbd64', 'no_lang_code', 1, 'https://ror.org/03q8xbd64 EntoGenetics (United States)'), (48170, 'https://ror.org/03qe98b42', 'en', 1, 'https://ror.org/03qe98b42 Victorian Institute of Teaching'), (48171, 'https://ror.org/03qfcr435', 'en', 1, 'https://ror.org/03qfcr435 Education Writers Association'), (48172, 'https://ror.org/03qjf8t17', 'en', 1, 'https://ror.org/03qjf8t17 Calvert Foundation'), (48173, 'https://ror.org/03qks6h28', 'en', 1, 'https://ror.org/03qks6h28 Syusaku Endo Literature Museum 遠藤周作文学館'), (48174, 'https://ror.org/03qmn8977', 'en', 1, 'https://ror.org/03qmn8977 Operation Wallacea Trust'), (48175, 'https://ror.org/03qnbmn78', 'es', 1, 'https://ror.org/03qnbmn78 Centro Universitario de Educación Física'), (48176, 'https://ror.org/03qnn2831', 'no_lang_code', 1, 'https://ror.org/03qnn2831 APS Technology (United States)'), (48177, 'https://ror.org/03qqt7x47', 'en', 1, 'https://ror.org/03qqt7x47 Art Gallery of New South Wales'), (48178, 'https://ror.org/03qx6b307', 'en', 1, 'https://ror.org/03qx6b307 Maputo Central Hospital'), (48179, 'https://ror.org/03qxptw71', 'en', 1, 'https://ror.org/03qxptw71 Cancer Research UK Clinical Trials Unit'), (48180, 'https://ror.org/03qyehc05', 'en', 1, 'https://ror.org/03qyehc05 Ikenobo Junior College 池坊短期大学'), (48181, 'https://ror.org/03r0qzh12', 'fr', 1, 'https://ror.org/03r0qzh12 Université Jean Price Mars'), (48182, 'https://ror.org/03r33km95', 'no_lang_code', 1, 'https://ror.org/03r33km95 Eaton (Germany)'), (48183, 'https://ror.org/03r35e117', 'no_lang_code', 1, 'https://ror.org/03r35e117 Chiba Hospital'), (48184, 'https://ror.org/03r46a684', 'no_lang_code', 1, 'https://ror.org/03r46a684 Inventec (Taiwan) 英業達公司'), (48185, 'https://ror.org/03r5mvm76', 'en', 1, 'https://ror.org/03r5mvm76 Iwate Prefectural Morioka Agricultural High School 岩手県立盛岡農業高等学校'), (48186, 'https://ror.org/03r5svt24', 'en', 1, 'https://ror.org/03r5svt24 Ethel L. Whipple Memorial Library'), (48187, 'https://ror.org/03r6s6r63', 'en', 1, 'https://ror.org/03r6s6r63 Nagaoka Municipal Science Museum'), (48188, 'https://ror.org/03r6vc108', 'en', 1, 'https://ror.org/03r6vc108 National Maritime Foundation'), (48189, 'https://ror.org/03r8vy816', 'en', 1, 'https://ror.org/03r8vy816 Austin Voices for Education and Youth'), (48190, 'https://ror.org/03raj9g82', 'en', 1, 'https://ror.org/03raj9g82 Asahikawa Museum of Sculpture 中原悌二郎記念旭川市彫刻美術館'), (48191, 'https://ror.org/03rb4a416', 'en', 1, 'https://ror.org/03rb4a416 George W. Bush Presidential Center'), (48192, 'https://ror.org/03rgkeg55', 'no_lang_code', 1, 'https://ror.org/03rgkeg55 Ayar Labs (United States)'), (48193, 'https://ror.org/03rh4dk07', 'en', 1, 'https://ror.org/03rh4dk07 Lifelong AIDS Alliance'), (48194, 'https://ror.org/03rjhat65', 'en', 1, 'https://ror.org/03rjhat65 Consortium of Florida Education Foundations'), (48195, 'https://ror.org/03rn1m191', 'en', 1, 'https://ror.org/03rn1m191 Mid-Continent University'), (48196, 'https://ror.org/03rnthv34', 'en', 1, 'https://ror.org/03rnthv34 Japan Underwater Robot Network 日本水中ロボネット'), (48197, 'https://ror.org/03rqtbt42', 'en', 1, 'https://ror.org/03rqtbt42 Sule Lamido University'), (48198, 'https://ror.org/03rrpvb29', 'en', 1, 'https://ror.org/03rrpvb29 Digital Public Library of America'), (48199, 'https://ror.org/03rx9np38', 'no_lang_code', 1, 'https://ror.org/03rx9np38 BlackBerry (United Kingdom)'), (48200, 'https://ror.org/03rxmnz72', 'no_lang_code', 1, 'https://ror.org/03rxmnz72 PrimeNano (united States)'), (48201, 'https://ror.org/03ryarw12', 'en', 1, 'https://ror.org/03ryarw12 American India Foundation'), (48202, 'https://ror.org/03rzr6095', 'no_lang_code', 1, 'https://ror.org/03rzr6095 Oxonica (United States)'), (48203, 'https://ror.org/03s28ec08', 'en', 1, 'https://ror.org/03s28ec08 Institute of Precision Mechanics and Control Федеральное государственное бюджетное учреждение науки Институт проблем точной механики и управления'), (48204, 'https://ror.org/03s603381', 'en', 1, 'https://ror.org/03s603381 Pennyrile Area Development District'), (48205, 'https://ror.org/03sct1f35', 'no_lang_code', 1, 'https://ror.org/03sct1f35 Aluminum Corporation of China (China) 中国铝业公司'), (48206, 'https://ror.org/03sear378', 'fr', 1, 'https://ror.org/03sear378 Fondation Travail-Université'), (48207, 'https://ror.org/03sgtgn54', 'no_lang_code', 1, 'https://ror.org/03sgtgn54 KanEnergi (Sweden)'), (48208, 'https://ror.org/03shw7f84', 'en', 1, 'https://ror.org/03shw7f84 Aicihi Prefectural Kariya High School 愛知県立刈谷高等学校'), (48209, 'https://ror.org/03sk50y83', 'no_lang_code', 1, 'https://ror.org/03sk50y83 Dart NeuroScience (United States)'), (48210, 'https://ror.org/03skd0235', 'en', 1, 'https://ror.org/03skd0235 Charities Aid Foundation'), (48211, 'https://ror.org/03smpvb86', 'en', 1, 'https://ror.org/03smpvb86 Yamaguchi Education Support Center やまぐち総合教育支援センター'), (48212, 'https://ror.org/03sn26h43', 'en', 1, 'https://ror.org/03sn26h43 Institute of Population and Labor Economics 中国社会科学院人口与劳动经济研究所'), (48213, 'https://ror.org/03snppx81', 'en', 1, 'https://ror.org/03snppx81 California Women Lawyers'), (48214, 'https://ror.org/03sqx5r23', 'en', 1, 'https://ror.org/03sqx5r23 Nishi-Nippon Junior College 西日本短期大学'), (48215, 'https://ror.org/03ssr0e93', 'en', 1, 'https://ror.org/03ssr0e93 Kyoto Prefectural Tanabe High School 京都府立田辺高等学校'), (48216, 'https://ror.org/03sv0ep05', 'en', 1, 'https://ror.org/03sv0ep05 Heilongjiang Academy of Land Reclamation Sciences 黑龙江农林科技大学'), (48217, 'https://ror.org/03syafb36', 'no_lang_code', 1, 'https://ror.org/03syafb36 Kaio Therapy (United States)'), (48218, 'https://ror.org/03sygh166', 'en', 1, 'https://ror.org/03sygh166 Trust Management Institut'), (48219, 'https://ror.org/03t1q5m92', 'no_lang_code', 1, 'https://ror.org/03t1q5m92 PixArt (Taiwan) 原相成像公司'), (48220, 'https://ror.org/03t25y916', 'en', 1, 'https://ror.org/03t25y916 Open International University for Alternative Medicines'), (48221, 'https://ror.org/03t2d8h32', 'en', 1, 'https://ror.org/03t2d8h32 Tokyo Metropolitan Shakujii High School 東京都立石神井高等学校'), (48222, 'https://ror.org/03t47sr41', 'en', 1, 'https://ror.org/03t47sr41 Xinjiang Uygur Autonomous Region Uygur Medicine Hospital 新疆维吾尔自治区维吾尔医医院'), (48223, 'https://ror.org/03t4z6b53', 'en', 1, 'https://ror.org/03t4z6b53 Oita Prefectural Oita Technical High School 大分県立大分工業高等学校'), (48224, 'https://ror.org/03t5zv452', 'no_lang_code', 1, 'https://ror.org/03t5zv452 Presage Biosciences (United States)'), (48225, 'https://ror.org/03t627237', 'no_lang_code', 1, 'https://ror.org/03t627237 TerraVerdae BioWorks (Canada)'), (48226, 'https://ror.org/03t67hw32', 'no_lang_code', 1, 'https://ror.org/03t67hw32 American Superconductor (Austria)'), (48227, 'https://ror.org/03t94kt09', 'no_lang_code', 1, 'https://ror.org/03t94kt09 Diebold Nixdorf (United States)'), (48228, 'https://ror.org/03t9ags07', 'en', 1, 'https://ror.org/03t9ags07 Central Savannah River Area Regional Commission'), (48229, 'https://ror.org/03ta8v762', 'en', 1, 'https://ror.org/03ta8v762 Saitama Prefectural Omiya High School 埼玉県立大宮高等学校'), (48230, 'https://ror.org/03tam1j96', 'no_lang_code', 1, 'https://ror.org/03tam1j96 Adidas (United States)'), (48231, 'https://ror.org/03tasb223', 'no_lang_code', 1, 'https://ror.org/03tasb223 Collingwood Environmental Planning (United Kingdom)'), (48232, 'https://ror.org/03tavcq25', 'no_lang_code', 1, 'https://ror.org/03tavcq25 Eboo Pharmaceuticals (United States)'), (48233, 'https://ror.org/03tb2xj87', 'no_lang_code', 1, 'https://ror.org/03tb2xj87 Mantex (Sweden)'), (48234, 'https://ror.org/03tb78t08', 'en', 1, 'https://ror.org/03tb78t08 Nara Prefectural Institute for Educational Research 奈良県立教育研究所'), (48235, 'https://ror.org/03tebsy12', 'en', 1, 'https://ror.org/03tebsy12 Zhejiang Academy of Medical Sciences 浙江省医学科学院'), (48236, 'https://ror.org/03tf9y485', 'no_lang_code', 1, 'https://ror.org/03tf9y485 Semiconductor Manufacturing International (China) 中芯国际集成电路制造有限公司'), (48237, 'https://ror.org/03thg1m49', 'no_lang_code', 1, 'https://ror.org/03thg1m49 Electrolux (Germany)'), (48238, 'https://ror.org/03tk15k72', 'en', 1, 'https://ror.org/03tk15k72 Ministry of Natural Resources'), (48239, 'https://ror.org/03tkypj50', 'en', 1, 'https://ror.org/03tkypj50 Gyeongsan Science High School 경산과학고등학교'), (48240, 'https://ror.org/03tmsgc53', 'en', 1, 'https://ror.org/03tmsgc53 Amarillo Area Foundation'), (48241, 'https://ror.org/03tre1g84', 'en', 1, 'https://ror.org/03tre1g84 Arbeitsgruppe Friedensforschung und Europäische Sicherheitspolitik Peace Research and European Security Studies'), (48242, 'https://ror.org/03tv2a598', 'en', 1, 'https://ror.org/03tv2a598 Green Infrastructure Center'), (48243, 'https://ror.org/03tvrj437', 'no_lang_code', 1, 'https://ror.org/03tvrj437 Amresco (United States)'), (48244, 'https://ror.org/03tw6b878', 'no_lang_code', 1, 'https://ror.org/03tw6b878 D-Tech (United States)'), (48245, 'https://ror.org/03twzfb97', 'en', 1, 'https://ror.org/03twzfb97 National Institute of Technology, Kushiro College 釧路工業高等専門学校'), (48246, 'https://ror.org/03tx9ed22', 'en', 1, 'https://ror.org/03tx9ed22 Institute of Pomology 果树研究所'), (48247, 'https://ror.org/03tx9vd35', 'no_lang_code', 1, 'https://ror.org/03tx9vd35 EntryPoint (United States)'), (48248, 'https://ror.org/03tz3ps07', 'en', 1, 'https://ror.org/03tz3ps07 Japan Economic Research Institute'), (48249, 'https://ror.org/03v1bhv69', 'no_lang_code', 1, 'https://ror.org/03v1bhv69 LSIS (South Korea) 산전'), (48250, 'https://ror.org/03v1z6488', 'en', 1, 'https://ror.org/03v1z6488 Inter Tribal Council of Arizona'), (48251, 'https://ror.org/03v2aht94', 'de', 1, 'https://ror.org/03v2aht94 Franziskushospital Aachen'), (48252, 'https://ror.org/03v48ps49', 'en', 1, 'https://ror.org/03v48ps49 O.Ya. Usikov Institute for Radiophysics and Electronics Інститут радіофізики та електроніки ім. О. Я Усикова НАН України'), (48253, 'https://ror.org/03v7d3233', 'de', 1, 'https://ror.org/03v7d3233 Tumor- und Brustzentrum ZeTuP Silberturm'), (48254, 'https://ror.org/03v9g5m88', 'en', 1, 'https://ror.org/03v9g5m88 Seibi High School 大阪府立成美高等学校'), (48255, 'https://ror.org/03vb8st39', 'en', 1, 'https://ror.org/03vb8st39 Australian Human Rights Commission'), (48256, 'https://ror.org/03vbj6030', 'no_lang_code', 1, 'https://ror.org/03vbj6030 Whitaker House'), (48257, 'https://ror.org/03vc23h03', 'no_lang_code', 1, 'https://ror.org/03vc23h03 Wireilla Scientific Publications (Australia)'), (48258, 'https://ror.org/03vezy923', 'en', 1, 'https://ror.org/03vezy923 American Society for Theatre Research'), (48259, 'https://ror.org/03vg6va04', 'en', 1, 'https://ror.org/03vg6va04 Health Strategy and Delivery Foundation'), (48260, 'https://ror.org/03vg8tm37', 'en', 1, 'https://ror.org/03vg8tm37 Akita Industrial Technology Center 秋田県産業技術センター'), (48261, 'https://ror.org/03vj25186', 'no_lang_code', 1, 'https://ror.org/03vj25186 Sumitomo Precision Products (Canada) 住友精密工業株式会社'), (48262, 'https://ror.org/03vj6qh87', 'en', 1, 'https://ror.org/03vj6qh87 Carbondale Public Library'), (48263, 'https://ror.org/03vjb5959', 'no_lang_code', 1, 'https://ror.org/03vjb5959 Cypress Semiconductor Corporation (Israel)'), (48264, 'https://ror.org/03vkb9g96', 'en', 1, 'https://ror.org/03vkb9g96 Farm Africa'), (48265, 'https://ror.org/03vn74a89', 'en', 1, 'https://ror.org/03vn74a89 Takarazuka University of Medical and Health Care 宝塚医療大学'), (48266, 'https://ror.org/03vp7ry06', 'es', 1, 'https://ror.org/03vp7ry06 Instituto de Neurociencia Biomédica'), (48267, 'https://ror.org/03vqp1c86', 'fr', 1, 'https://ror.org/03vqp1c86 Société Française de Cardiologie'), (48268, 'https://ror.org/03vr02c19', 'en', 1, 'https://ror.org/03vr02c19 Kanagawa Prefecture Education Center 神奈川県立総合教育センター'), (48269, 'https://ror.org/03vrane61', 'no_lang_code', 1, 'https://ror.org/03vrane61 Museum of Modern Art Kamakura and Hayama 神奈川県立近代美術館葉山'), (48270, 'https://ror.org/03vs1ak92', 'en', 1, 'https://ror.org/03vs1ak92 ABM University College'), (48271, 'https://ror.org/03vvewn46', 'en', 1, 'https://ror.org/03vvewn46 Fraunhofer Institute for Organic Electronics, Electron Beam and Plasma Technology Fraunhofer-Institut für Organische Elektronik, Elektronenstrahl- und Plasmatechnik'), (48272, 'https://ror.org/03vyd8n59', 'en', 1, 'https://ror.org/03vyd8n59 Pontifical Academy of Sciences Pontificia Academia Scientiarum Pontificia accademia delle scienze'), (48273, 'https://ror.org/03vzakk34', 'no_lang_code', 1, 'https://ror.org/03vzakk34 TE Connectivity (South Korea)'), (48274, 'https://ror.org/03w09vt43', 'en', 1, 'https://ror.org/03w09vt43 Minabe Senior High School 和歌山県立南部高等学校'), (48275, 'https://ror.org/03w0bbr97', 'en', 1, 'https://ror.org/03w0bbr97 Fraunhofer Institute for Applied and Integrated Security Fraunhofer-Institut für Angewandte und Integrierte Sicherheit'), (48276, 'https://ror.org/03w3b4f85', 'no_lang_code', 1, 'https://ror.org/03w3b4f85 ThyssenKrupp (United Kingdom)'), (48277, 'https://ror.org/03w3k6x10', 'de', 1, 'https://ror.org/03w3k6x10 Österreichische Gesellschaft für Hämatologie & Medizinische Onkologie'), (48278, 'https://ror.org/03w8f2q69', 'no_lang_code', 1, 'https://ror.org/03w8f2q69 Danone (United Kingdom)'), (48279, 'https://ror.org/03w9z9x42', 'en', 1, 'https://ror.org/03w9z9x42 Ashland Community and Technical College'), (48280, 'https://ror.org/03wa5t726', 'en', 1, 'https://ror.org/03wa5t726 Kansas Grain Sorghum Commission and Producers Association'), (48281, 'https://ror.org/03whnfd14', 'no_lang_code', 1, 'https://ror.org/03whnfd14 GlobalFoundries (Singapore)'), (48282, 'https://ror.org/03wjq7x76', 'de', 1, 'https://ror.org/03wjq7x76 Deutsche Ophthalmologische Gesellschaft'), (48283, 'https://ror.org/03wkb8h74', 'es', 1, 'https://ror.org/03wkb8h74 Universidad Albert Einstein'), (48284, 'https://ror.org/03wkeky45', 'en', 1, 'https://ror.org/03wkeky45 Australian Society of Anaesthetists'), (48285, 'https://ror.org/03wkqfb95', 'no_lang_code', 1, 'https://ror.org/03wkqfb95 Shimano (Japan) 株式会社シマノ'), (48286, 'https://ror.org/03wm7z656', 'en', 1, 'https://ror.org/03wm7z656 Commission géologique du Canada Geological Survey of Canada'), (48287, 'https://ror.org/03wnay029', 'no_lang_code', 1, 'https://ror.org/03wnay029 Abbott (United Kingdom)'), (48288, 'https://ror.org/03wny3351', 'no_lang_code', 1, 'https://ror.org/03wny3351 Bluegrass Advanced Materials (United States)'), (48289, 'https://ror.org/03wq67h32', 'en', 1, 'https://ror.org/03wq67h32 Fraunhofer Institute for Nondestructive Testing Fraunhofer-Institut für Zerstörungsfreie Prüfverfahren'), (48290, 'https://ror.org/03wqdw813', 'no_lang_code', 1, 'https://ror.org/03wqdw813 Mind Matters Research (United States)'), (48291, 'https://ror.org/03wsdn138', 'no_lang_code', 1, 'https://ror.org/03wsdn138 OmniVision Technologies (China)'), (48292, 'https://ror.org/03wsgwc11', 'en', 1, 'https://ror.org/03wsgwc11 Scleroderma and Raynaud''s UK'), (48293, 'https://ror.org/03wtdg769', 'en', 1, 'https://ror.org/03wtdg769 Liaoning Jianzhu Vocational University 辽宁信息职业技术学院'), (48294, 'https://ror.org/03wvnx995', 'no_lang_code', 1, 'https://ror.org/03wvnx995 Broadcom (Spain)'), (48295, 'https://ror.org/03wyfav89', 'no_lang_code', 1, 'https://ror.org/03wyfav89 Datapixel (Spain)'), (48296, 'https://ror.org/03wz9xk91', 'en', 1, 'https://ror.org/03wz9xk91 Leibniz-Centre General Linguistics Leibniz-Zentrum Allgemeine Sprachwissenschaft'), (48297, 'https://ror.org/03wzg8933', 'en', 1, 'https://ror.org/03wzg8933 GAIA Vaccine Foundation'), (48298, 'https://ror.org/03x159f63', 'en', 1, 'https://ror.org/03x159f63 Ehime Prefectural Education Center 愛媛県総合教育センター'), (48299, 'https://ror.org/03x212m64', 'no_lang_code', 1, 'https://ror.org/03x212m64 Eles (Slovenia)'), (48300, 'https://ror.org/03x43h020', 'en', 1, 'https://ror.org/03x43h020 Changchun Children''s Hospital 长春市儿童医院'), (48301, 'https://ror.org/03x705365', 'no_lang_code', 1, 'https://ror.org/03x705365 Cook Medical (United States)'), (48302, 'https://ror.org/03x7xkr71', 'en', 1, 'https://ror.org/03x7xkr71 Institute of Sciences of Food Production Istituto di Scienze delle Produzioni Alimentari'), (48303, 'https://ror.org/03xajsx66', 'no_lang_code', 1, 'https://ror.org/03xajsx66 Acer (Taiwan) 宏碁'), (48304, 'https://ror.org/03xbe8838', 'en', 1, 'https://ror.org/03xbe8838 Tianjin Fourth Hospital 天津市第四医院'), (48305, 'https://ror.org/03xbgnq70', 'en', 1, 'https://ror.org/03xbgnq70 Bethany University'), (48306, 'https://ror.org/03xee0x32', 'en', 1, 'https://ror.org/03xee0x32 Nagoya Management Junior College 名古屋経営短期大学'), (48307, 'https://ror.org/03xg0ta66', 'en', 1, 'https://ror.org/03xg0ta66 Wikimedia UK'), (48308, 'https://ror.org/03xg8x064', 'no_lang_code', 1, 'https://ror.org/03xg8x064 3D Systems (Israel)'), (48309, 'https://ror.org/03xhjng91', 'no_lang_code', 1, 'https://ror.org/03xhjng91 Tomakomai Art Museum 苫小牧市美術博物館'), (48310, 'https://ror.org/03xj60w92', 'en', 1, 'https://ror.org/03xj60w92 St Michael’s Hospital'), (48311, 'https://ror.org/03xkdb465', 'es', 1, 'https://ror.org/03xkdb465 Consejo Estatal Del Azucar'), (48312, 'https://ror.org/03xm57x75', 'pt', 1, 'https://ror.org/03xm57x75 Instituto de Saúde'), (48313, 'https://ror.org/03xn6hx74', 'en', 1, 'https://ror.org/03xn6hx74 Institute for Resource Analysis and Policy'), (48314, 'https://ror.org/03xp8p672', 'no_lang_code', 1, 'https://ror.org/03xp8p672 Jahrom University دانشگاه جهرم'), (48315, 'https://ror.org/03xqv3p85', 'no_lang_code', 1, 'https://ror.org/03xqv3p85 Takeda (Germany)'), (48316, 'https://ror.org/03xr77151', 'en', 1, 'https://ror.org/03xr77151 Myanmar Timber Enterprise'), (48317, 'https://ror.org/03xrabt76', 'en', 1, 'https://ror.org/03xrabt76 Emirates Diplomatic Academy'), (48318, 'https://ror.org/03xtkzq16', 'no_lang_code', 1, 'https://ror.org/03xtkzq16 Beppu Mizobe Gakuen College 別府溝部学園短期大学'), (48319, 'https://ror.org/03xvcy884', 'pt', 1, 'https://ror.org/03xvcy884 Sociedade Portuguesa de Nefrologia'), (48320, 'https://ror.org/03xxbcc33', 'en', 1, 'https://ror.org/03xxbcc33 Essex Disabled People''s Association'), (48321, 'https://ror.org/03y00r958', 'en', 1, 'https://ror.org/03y00r958 Arab Foundations Forum ملتقى المؤسسات العربية الداعمة'), (48322, 'https://ror.org/03y07wm59', 'pt', 1, 'https://ror.org/03y07wm59 Associação Nacional de Pesquisadores e Professores de História das Américas'), (48323, 'https://ror.org/03y203366', 'no_lang_code', 1, 'https://ror.org/03y203366 Engineering Mechanics Corporation of Columbus (United States)'), (48324, 'https://ror.org/03ybwam46', 'no_lang_code', 1, 'https://ror.org/03ybwam46 Integra LifeSciences (Ireland)'), (48325, 'https://ror.org/03yca1933', 'no_lang_code', 1, 'https://ror.org/03yca1933 Fairchild Semiconductor (United States)'), (48326, 'https://ror.org/03yg7hz06', 'en', 1, 'https://ror.org/03yg7hz06 Centre for Cancer Biology'), (48327, 'https://ror.org/03ygwqt20', 'en', 1, 'https://ror.org/03ygwqt20 Toita Women''s College 戸板女子短期大学'), (48328, 'https://ror.org/03yh3e798', 'en', 1, 'https://ror.org/03yh3e798 Zhejiang Business Technology Institute 浙江工商职业技术学院'), (48329, 'https://ror.org/03ym6nw09', 'en', 1, 'https://ror.org/03ym6nw09 Tsuruoka Technical High School 山形県立鶴岡工業高等学校'), (48330, 'https://ror.org/03yq5aa85', 'no_lang_code', 1, 'https://ror.org/03yq5aa85 Medtronic (Italy)'), (48331, 'https://ror.org/03yqqb498', 'no_lang_code', 1, 'https://ror.org/03yqqb498 Attodyne (Canada)'), (48332, 'https://ror.org/03yrr7p29', 'en', 1, 'https://ror.org/03yrr7p29 Aichi Prefectural Education Center 愛知県総合教育センター'), (48333, 'https://ror.org/03ys00e11', 'en', 1, 'https://ror.org/03ys00e11 Tokyo High School 東京高等学校'), (48334, 'https://ror.org/03yskk486', 'no_lang_code', 1, 'https://ror.org/03yskk486 Sumitomo Heavy Industries (Japan) 住友重機械工業株式会社'), (48335, 'https://ror.org/03yvav120', 'no_lang_code', 1, 'https://ror.org/03yvav120 Nikki-Universal (Japan) 日揮ユニバーサル株式会社は'), (48336, 'https://ror.org/03yw95n57', 'no_lang_code', 1, 'https://ror.org/03yw95n57 Amdocs (Philippines)'), (48337, 'https://ror.org/03yzv2h28', 'en', 1, 'https://ror.org/03yzv2h28 Fresno County Office of Education'), (48338, 'https://ror.org/03z19e593', 'no_lang_code', 1, 'https://ror.org/03z19e593 Schenck Process (Germany)'), (48339, 'https://ror.org/03z1phr67', 'en', 1, 'https://ror.org/03z1phr67 Charisma University'), (48340, 'https://ror.org/03z3d5x54', 'no_lang_code', 1, 'https://ror.org/03z3d5x54 Valeo (Japan)'), (48341, 'https://ror.org/03z4zm883', 'en', 1, 'https://ror.org/03z4zm883 Speech Pathology Australia'), (48342, 'https://ror.org/03z5xry11', 'no_lang_code', 1, 'https://ror.org/03z5xry11 HannStar Display (Taiwan) 瀚宇彩晶股份有限公司'), (48343, 'https://ror.org/03z6tkz58', 'no_lang_code', 1, 'https://ror.org/03z6tkz58 Element Six (United States)'), (48344, 'https://ror.org/03z8jm198', 'en', 1, 'https://ror.org/03z8jm198 Herzberg Institute of Astrophysics'), (48345, 'https://ror.org/03zan4871', 'en', 1, 'https://ror.org/03zan4871 Collaborative Centre for Applied Nanotechnology'), (48346, 'https://ror.org/03zet0z83', 'en', 1, 'https://ror.org/03zet0z83 Norin High School 山梨県立農林高等学校'), (48347, 'https://ror.org/03zfg1z12', 'no_lang_code', 1, 'https://ror.org/03zfg1z12 Airex Industries (Canada)'), (48348, 'https://ror.org/03zhmtk18', 'no_lang_code', 1, 'https://ror.org/03zhmtk18 Material Change (United KIngdom)'), (48349, 'https://ror.org/03zhn2w96', 'no_lang_code', 1, 'https://ror.org/03zhn2w96 MAAX Bath (Canada)'), (48350, 'https://ror.org/03zkbs573', 'en', 1, 'https://ror.org/03zkbs573 Seismological Society of America'), (48351, 'https://ror.org/03zkxdc34', 'en', 1, 'https://ror.org/03zkxdc34 Shizuoka Prefectural Central Library 静岡県立中央図書館'), (48352, 'https://ror.org/03zm7w502', 'no_lang_code', 1, 'https://ror.org/03zm7w502 Concept Life Sciences (United Kingdom)'), (48353, 'https://ror.org/03zm9c356', 'no_lang_code', 1, 'https://ror.org/03zm9c356 Vesmír (Czechia)'), (48354, 'https://ror.org/03zn1fw73', 'en', 1, 'https://ror.org/03zn1fw73 Tokyo Institute for Municipal Research 市営研究東京工業大学'), (48355, 'https://ror.org/03zn2pc63', 'en', 1, 'https://ror.org/03zn2pc63 Yamanashi Prefectural Museum of Archaeology 山梨県立考古博物館'), (48356, 'https://ror.org/03zn93s35', 'en', 1, 'https://ror.org/03zn93s35 Swiss Museum of Transport Verkehrshaus der Schweiz'), (48357, 'https://ror.org/03zn9xn73', 'en', 1, 'https://ror.org/03zn9xn73 Society of Actuaries'), (48358, 'https://ror.org/03zna3e03', 'no_lang_code', 1, 'https://ror.org/03zna3e03 Oerlikon (Germany)'), (48359, 'https://ror.org/03znyqq54', 'en', 1, 'https://ror.org/03znyqq54 Ichinohe High School 岩手県立一戸高等学校'), (48360, 'https://ror.org/03zqxr976', 'en', 1, 'https://ror.org/03zqxr976 Jiangsu Provincial Institute of Geological Survey 江苏省地质调查研究院'), (48361, 'https://ror.org/03zr6cm28', 'no_lang_code', 1, 'https://ror.org/03zr6cm28 Shizuoka Prefectural Gotemba Minami High School 静岡県立御殿場南高等学校'), (48362, 'https://ror.org/03zrj3m15', 'en', 1, 'https://ror.org/03zrj3m15 Riverside Hospital of Guangxi Zhuang Autonomous Region 广西壮族自治区江滨医院'), (48363, 'https://ror.org/03zta3k64', 'da', 1, 'https://ror.org/03zta3k64 Nyreforeningen'), (48364, 'https://ror.org/03zta4r50', 'en', 1, 'https://ror.org/03zta4r50 Bangladesh University বাংলাদেশ বিশ্ববিদ্যালয়'), (48365, 'https://ror.org/03zvyfv67', 'no_lang_code', 1, 'https://ror.org/03zvyfv67 Broadcom (Singapore)'), (48366, 'https://ror.org/03zwb3g19', 'en', 1, 'https://ror.org/03zwb3g19 East Central Wisconsin Regional Planning Commission'), (48367, 'https://ror.org/03zxkth58', 'en', 1, 'https://ror.org/03zxkth58 Montgomery County Memorial Library System'), (48368, 'https://ror.org/03zxsvn45', 'no_lang_code', 1, 'https://ror.org/03zxsvn45 Dover (Canada)'), (48369, 'https://ror.org/03zy2nt21', 'en', 1, 'https://ror.org/03zy2nt21 National Institute of Urban Affairs'), (48370, 'https://ror.org/03zyyep49', 'en', 1, 'https://ror.org/03zyyep49 Kanagawa Prefectural Zushi High School 神奈川県立逗子高等学校'), (48371, 'https://ror.org/0400cp237', 'en', 1, 'https://ror.org/0400cp237 Saga Prefectural Education Center 佐賀県教育センター'), (48372, 'https://ror.org/0400j8512', 'en', 1, 'https://ror.org/0400j8512 Eye Bank Association of America'), (48373, 'https://ror.org/0400tr590', 'no_lang_code', 1, 'https://ror.org/0400tr590 BioAxis DNA Research Centre (India)'), (48374, 'https://ror.org/0402q0384', 'no_lang_code', 1, 'https://ror.org/0402q0384 Osaka Shin-ai College 大阪信愛女学院短期大学'), (48375, 'https://ror.org/0403wct47', 'en', 1, 'https://ror.org/0403wct47 AllAfrica Foundation'), (48376, 'https://ror.org/040aqvh16', 'en', 1, 'https://ror.org/040aqvh16 United Nations University Universität der Vereinten Nationen'), (48377, 'https://ror.org/040b3ts84', 'de', 1, 'https://ror.org/040b3ts84 Institut für Medien- und Kommunikationspolitik'), (48378, 'https://ror.org/040c53642', 'en', 1, 'https://ror.org/040c53642 Guizhou Provincial Meteorological Bureau 贵州气象在线'), (48379, 'https://ror.org/040cv5a57', 'no_lang_code', 1, 'https://ror.org/040cv5a57 Imbio (United States)'), (48380, 'https://ror.org/040dkzz12', 'no_lang_code', 1, 'https://ror.org/040dkzz12 Yahoo (United States)'), (48381, 'https://ror.org/040ejvh72', 'en', 1, 'https://ror.org/040ejvh72 General Organization For Teaching Hospitals and Institutes الهيئة العامة للمستشفيات والمعاهد التعليمية'), (48382, 'https://ror.org/040g6sv55', 'en', 1, 'https://ror.org/040g6sv55 Fukushima Prefectural Aizu Technical High School 福島県立会津工業高等学校'), (48383, 'https://ror.org/040gj5g64', 'es', 1, 'https://ror.org/040gj5g64 Universidad Politécnica de El Salvador'), (48384, 'https://ror.org/040gyce73', 'en', 1, 'https://ror.org/040gyce73 Aman Foundation'), (48385, 'https://ror.org/040hkct30', 'no_lang_code', 1, 'https://ror.org/040hkct30 Applied Academics (United States)'), (48386, 'https://ror.org/040k8g838', 'en', 1, 'https://ror.org/040k8g838 Institute for Advanced Journalism Studies'), (48387, 'https://ror.org/040kgfc87', 'no_lang_code', 1, 'https://ror.org/040kgfc87 Lightwave Photonics (United States)'), (48388, 'https://ror.org/040mta007', 'en', 1, 'https://ror.org/040mta007 National Institute of Technology, Oyama College 小山工業高等専門学校'), (48389, 'https://ror.org/040nt5929', 'en', 1, 'https://ror.org/040nt5929 Abramson Center for Jewish Life'), (48390, 'https://ror.org/040ps8760', 'en', 1, 'https://ror.org/040ps8760 Insurance Claims Auditing and Professional Services'), (48391, 'https://ror.org/040rkxg67', 'en', 1, 'https://ror.org/040rkxg67 Kanagawa prefectural Kanagawa Technical High School 神奈川県立神奈川工業高等学校'), (48392, 'https://ror.org/040vema78', 'en', 1, 'https://ror.org/040vema78 Japan Society of Chemotherapy 化学療法学会'), (48393, 'https://ror.org/040vg0k95', 'no_lang_code', 1, 'https://ror.org/040vg0k95 CNH Industrial (United States)'), (48394, 'https://ror.org/040wknf84', 'en', 1, 'https://ror.org/040wknf84 Technological University Kyaing Tong နည်းပညာတက္ကသိုလ်(ကျိုင်းတုံ)'), (48395, 'https://ror.org/040wmvn07', 'no_lang_code', 1, 'https://ror.org/040wmvn07 Ping (United States)'), (48396, 'https://ror.org/040wrjh41', 'en', 1, 'https://ror.org/040wrjh41 Al-Buraimi University College كلية جامعة البريمي'), (48397, 'https://ror.org/040y3df60', 'no_lang_code', 1, 'https://ror.org/040y3df60 Ipsen (Ireland)'), (48398, 'https://ror.org/040y74d88', 'pt', 1, 'https://ror.org/040y74d88 Associação Fundo de Incentivo à Pesquisa'), (48399, 'https://ror.org/040yw9w41', 'mg', 1, 'https://ror.org/040yw9w41 Madagasikara Voakajy'), (48400, 'https://ror.org/040yzn427', 'no_lang_code', 1, 'https://ror.org/040yzn427 Wang NMR (United States)'), (48401, 'https://ror.org/040zdhw11', 'en', 1, 'https://ror.org/040zdhw11 Global Business School Network'), (48402, 'https://ror.org/041021r97', 'en', 1, 'https://ror.org/041021r97 Rotary Club of Emerald City'), (48403, 'https://ror.org/0412jyn76', 'no_lang_code', 1, 'https://ror.org/0412jyn76 Prodevelop (Spain)'), (48404, 'https://ror.org/04134ed78', 'en', 1, 'https://ror.org/04134ed78 Okayama Prefectural Police 岡山県警察'), (48405, 'https://ror.org/0413wb785', 'fr', 1, 'https://ror.org/0413wb785 Réseau MARP'), (48406, 'https://ror.org/0414hra82', 'no_lang_code', 1, 'https://ror.org/0414hra82 Capcom (Japan) 株式会社カプコン'), (48407, 'https://ror.org/041728v85', 'no_lang_code', 1, 'https://ror.org/041728v85 SiILion (United states)'), (48408, 'https://ror.org/041746v50', 'en', 1, 'https://ror.org/041746v50 Catholic Health Association of India'), (48409, 'https://ror.org/04185av43', 'no_lang_code', 1, 'https://ror.org/04185av43 IHI Corporation (United States)'), (48410, 'https://ror.org/04199wj76', 'en', 1, 'https://ror.org/04199wj76 Entry Exit Inspection and Quarantine Bureau 广东出入境检验检疫局'), (48411, 'https://ror.org/041bad643', 'en', 1, 'https://ror.org/041bad643 Gunma Prefectural Board of Education 群馬県教育委員会ホ'), (48412, 'https://ror.org/041bes686', 'en', 1, 'https://ror.org/041bes686 The Kagawa Museum 香川県立ミュージアム'), (48413, 'https://ror.org/041f2j414', 'no_lang_code', 1, 'https://ror.org/041f2j414 InnoCit (United States)'), (48414, 'https://ror.org/041f67531', 'en', 1, 'https://ror.org/041f67531 American Psychoanalytic Association'), (48415, 'https://ror.org/041h6pr97', 'no_lang_code', 1, 'https://ror.org/041h6pr97 Voith (Germany)'), (48416, 'https://ror.org/041jbqr21', 'no_lang_code', 1, 'https://ror.org/041jbqr21 Stillwater (Canada)'), (48417, 'https://ror.org/041jyes35', 'en', 1, 'https://ror.org/041jyes35 Obstetric Anaesthetists'' Association'), (48418, 'https://ror.org/041q3q398', 'en', 1, 'https://ror.org/041q3q398 Nnamdi Azikiwe University Teaching Hospital'), (48419, 'https://ror.org/041s2fp12', 'no_lang_code', 1, 'https://ror.org/041s2fp12 Inventec (China) 英業達'), (48420, 'https://ror.org/041s9g982', 'en', 1, 'https://ror.org/041s9g982 Inland Northwest Community Foundation'), (48421, 'https://ror.org/041t5sq72', 'no_lang_code', 1, 'https://ror.org/041t5sq72 JTEKT (United States)'), (48422, 'https://ror.org/041w1ke73', 'en', 1, 'https://ror.org/041w1ke73 Centre Interdisciplinaire de Développement en Cartographie des Océans The Interdisciplinary Centre for the Development of Ocean Mapping'), (48423, 'https://ror.org/041wrj753', 'no_lang_code', 1, 'https://ror.org/041wrj753 Aero Corporation (United States)'), (48424, 'https://ror.org/041yd4786', 'en', 1, 'https://ror.org/041yd4786 Great Lakes Aquarium'), (48425, 'https://ror.org/041zaaf26', 'es', 1, 'https://ror.org/041zaaf26 Universidad Braulio Carrillo'), (48426, 'https://ror.org/041zrej81', 'no_lang_code', 1, 'https://ror.org/041zrej81 AccessTR'), (48427, 'https://ror.org/042302r81', 'no_lang_code', 1, 'https://ror.org/042302r81 Anzai (Japan) 株式会社安西製作所'), (48428, 'https://ror.org/0424hh766', 'pt', 1, 'https://ror.org/0424hh766 Fundação de Estudos e Pesquisas Aquáticas'), (48429, 'https://ror.org/0425vqx89', 'en', 1, 'https://ror.org/0425vqx89 Cumann Lúthchleas Gael Gaelic Athletic Association'), (48430, 'https://ror.org/042662w35', 'es', 1, 'https://ror.org/042662w35 Instituto Nicaragüense de Estudios Territoriales'), (48431, 'https://ror.org/0427k1a73', 'no_lang_code', 1, 'https://ror.org/0427k1a73 Bose (United States)'), (48432, 'https://ror.org/0427t6n75', 'en', 1, 'https://ror.org/0427t6n75 Ittihad Private University جامعة الاتحاد الخاصة'), (48433, 'https://ror.org/0428qxx32', 'no_lang_code', 1, 'https://ror.org/0428qxx32 Akikusa Gakuen Junior College 秋草学園短期大学'), (48434, 'https://ror.org/042arhp84', 'en', 1, 'https://ror.org/042arhp84 Hartford Public Library'), (48435, 'https://ror.org/042b06z11', 'no_lang_code', 1, 'https://ror.org/042b06z11 Veolia (Australia)'), (48436, 'https://ror.org/042ep7486', 'es', 1, 'https://ror.org/042ep7486 Universidad Motolinía del Pedregal'), (48437, 'https://ror.org/042g4wn73', 'no_lang_code', 1, 'https://ror.org/042g4wn73 CIVIDEC Instrumentation (Austria)'), (48438, 'https://ror.org/042gfy005', 'en', 1, 'https://ror.org/042gfy005 Geospatial Information Authority of Japan 国土地理院'), (48439, 'https://ror.org/042hp4645', 'no_lang_code', 1, 'https://ror.org/042hp4645 Stratasys (Israel)'), (48440, 'https://ror.org/042jb2v70', 'de', 1, 'https://ror.org/042jb2v70 IOT Labs'), (48441, 'https://ror.org/042jprk80', 'no_lang_code', 1, 'https://ror.org/042jprk80 Chelyabinskiy Gosudarstvennyy Institut Lazernoy Khirurgii Челябинский государственный институт лазерной хирургии'), (48442, 'https://ror.org/042k4ts27', 'no_lang_code', 1, 'https://ror.org/042k4ts27 Matamec Explorations (Canada)'), (48443, 'https://ror.org/042mxcp03', 'no_lang_code', 1, 'https://ror.org/042mxcp03 Quadriga Biosciences (United States)'), (48444, 'https://ror.org/042n1zz26', 'no_lang_code', 1, 'https://ror.org/042n1zz26 Seiko Holdings (Japan) セイコーホールディングス株式会社'), (48445, 'https://ror.org/042newy54', 'en', 1, 'https://ror.org/042newy54 Kokusai Junior College 国際短期大学'), (48446, 'https://ror.org/042nxhq59', 'no_lang_code', 1, 'https://ror.org/042nxhq59 Alpha and Omega Semiconductor (Bermuda)'), (48447, 'https://ror.org/042p4aa24', 'en', 1, 'https://ror.org/042p4aa24 Chartered Institute of Library and Information Professionals'), (48448, 'https://ror.org/042q91e23', 'no_lang_code', 1, 'https://ror.org/042q91e23 Kaiam Corporation (United Kingdom)'), (48449, 'https://ror.org/042qa5g53', 'en', 1, 'https://ror.org/042qa5g53 Health and Global Policy Institute'), (48450, 'https://ror.org/042qt7z37', 'en', 1, 'https://ror.org/042qt7z37 Chiyoda-ku Board of Education'), (48451, 'https://ror.org/042rb3y95', 'no_lang_code', 1, 'https://ror.org/042rb3y95 B.A.T Cigarettenfabriken British American Tobacco (Germany)'), (48452, 'https://ror.org/042syqv10', 'en', 1, 'https://ror.org/042syqv10 Dryden Road Clinic'), (48453, 'https://ror.org/042tf0p61', 'no_lang_code', 1, 'https://ror.org/042tf0p61 Sosei Group (Japan)'), (48454, 'https://ror.org/042v20e14', 'en', 1, 'https://ror.org/042v20e14 Gifu Prefectural Research Institute for Forests 岐阜県森林研究所'), (48455, 'https://ror.org/042v7vy56', 'en', 1, 'https://ror.org/042v7vy56 Shanghai Institute of Landscape Gardening 上海市园林科学规划研究院'), (48456, 'https://ror.org/042ww8n14', 'en', 1, 'https://ror.org/042ww8n14 Center for Speech Pathology and Neurorehabilitation Центр паталогии речи и нейрореабилитации. Разработка сайта'), (48457, 'https://ror.org/042xrxv40', 'en', 1, 'https://ror.org/042xrxv40 Turin Polytechnic University Туринский политехнический университет'), (48458, 'https://ror.org/04310tc15', 'fr', 1, 'https://ror.org/04310tc15 Laboratoire de Cristallographie et Sciences des Matériaux'), (48459, 'https://ror.org/0432ndm25', 'no_lang_code', 1, 'https://ror.org/0432ndm25 Porto Digital (Brazil)'), (48460, 'https://ror.org/04343ty25', 'no_lang_code', 1, 'https://ror.org/04343ty25 Ibiden (Japan) イビデン株式会社'), (48461, 'https://ror.org/0436bye53', 'no_lang_code', 1, 'https://ror.org/0436bye53 MineSense Technologies (Canada)'), (48462, 'https://ror.org/0438tby89', 'pt', 1, 'https://ror.org/0438tby89 Sociedade Brasileira de Cardiologia'), (48463, 'https://ror.org/043bqfp86', 'de', 1, 'https://ror.org/043bqfp86 Centre Marc Bloch'), (48464, 'https://ror.org/043cb6104', 'en', 1, 'https://ror.org/043cb6104 Oklahoma Biological Survey'), (48465, 'https://ror.org/043epsf53', 'no_lang_code', 1, 'https://ror.org/043epsf53 Arris (United States)'), (48466, 'https://ror.org/043frz513', 'no_lang_code', 1, 'https://ror.org/043frz513 Nexans (United Kingdom)'), (48467, 'https://ror.org/043hk8147', 'en', 1, 'https://ror.org/043hk8147 Tokyo Metropolitan Police Department 警視庁'), (48468, 'https://ror.org/043k84p27', 'en', 1, 'https://ror.org/043k84p27 Queensland Department of Education'), (48469, 'https://ror.org/043m3hn34', 'no_lang_code', 1, 'https://ror.org/043m3hn34 Vivekananda Parvatiya Krishi Anusandhan Sansthan'), (48470, 'https://ror.org/043nq9007', 'pt', 1, 'https://ror.org/043nq9007 Instituto Federal de Educação, Ciência e Tecnologia do Acre, Instituto Federal do Acre'), (48471, 'https://ror.org/043nr7w50', 'en', 1, 'https://ror.org/043nr7w50 Saitama Board of Education 埼玉県教育委員会'), (48472, 'https://ror.org/043nrmc14', 'en', 1, 'https://ror.org/043nrmc14 Oral Facial Surgery Institution'), (48473, 'https://ror.org/043r5t677', 'en', 1, 'https://ror.org/043r5t677 Institute for Sustainable Development'), (48474, 'https://ror.org/043td6439', 'en', 1, 'https://ror.org/043td6439 American Association of University Professors'), (48475, 'https://ror.org/043tqah33', 'no_lang_code', 1, 'https://ror.org/043tqah33 Mitsubishi Heavy Industries (Germany)'), (48476, 'https://ror.org/043vzcd66', 'en', 1, 'https://ror.org/043vzcd66 Miyagi Advanced Dental Hygienist College 宮城高等歯科衛生士学院'), (48477, 'https://ror.org/043wc6127', 'no_lang_code', 1, 'https://ror.org/043wc6127 Northrop Grumman (Germany)'), (48478, 'https://ror.org/043xksz40', 'en', 1, 'https://ror.org/043xksz40 International Christian University Universidad Cristiana Internacional'), (48479, 'https://ror.org/04409v947', 'no_lang_code', 1, 'https://ror.org/04409v947 RG Biopharma (United States)'), (48480, 'https://ror.org/0440sme52', 'en', 1, 'https://ror.org/0440sme52 GlobalGiving'), (48481, 'https://ror.org/0441wpd13', 'en', 1, 'https://ror.org/0441wpd13 Tokushima Municipal High School 徳島市立高等学校'), (48482, 'https://ror.org/0442gxc81', 'en', 1, 'https://ror.org/0442gxc81 Fukuoka Prefecture Education Center 福岡県教育センター'), (48483, 'https://ror.org/0442ypy80', 'no_lang_code', 1, 'https://ror.org/0442ypy80 Zodiac Aerospace (Germany)'), (48484, 'https://ror.org/0446n1b44', 'de', 1, 'https://ror.org/0446n1b44 Schwarzwald-Baar Klinikum'), (48485, 'https://ror.org/0446skw42', 'en', 1, 'https://ror.org/0446skw42 Miyagi Prefecture Furukawa Technical High School 宮城県古川工業高等学校'), (48486, 'https://ror.org/044ahzg50', 'no_lang_code', 1, 'https://ror.org/044ahzg50 Gazprom (Germany)'), (48487, 'https://ror.org/044b8e138', 'en', 1, 'https://ror.org/044b8e138 Davenport Public Library'), (48488, 'https://ror.org/044bxz342', 'en', 1, 'https://ror.org/044bxz342 National Institute for Land and Infrastructure Management 国土交通省国土技術政策総合研究所'), (48489, 'https://ror.org/044gxyt48', 'en', 1, 'https://ror.org/044gxyt48 InterAmerican Heart Foundation'), (48490, 'https://ror.org/044jx8018', 'en', 1, 'https://ror.org/044jx8018 Islamic Azad University of Malard دانشگاه آزاد اسلامي واحد ملارد'), (48491, 'https://ror.org/044r0st32', 'no_lang_code', 1, 'https://ror.org/044r0st32 EchoStar (United States)'), (48492, 'https://ror.org/044rmp068', 'en', 1, 'https://ror.org/044rmp068 Choju Medical Institute 長寿医学研究所'), (48493, 'https://ror.org/044xq3s49', 'pt', 1, 'https://ror.org/044xq3s49 Instituto Nacional de Investigação Pesqueira'), (48494, 'https://ror.org/044ytah36', 'en', 1, 'https://ror.org/044ytah36 Waterloo Institute for Disaster Management'), (48495, 'https://ror.org/045100v05', 'no_lang_code', 1, 'https://ror.org/045100v05 Winbond (Taiwan) 華邦電子公司'), (48496, 'https://ror.org/0451fwt31', 'en', 1, 'https://ror.org/0451fwt31 Doshisha Kaori Junior and Senior High School'), (48497, 'https://ror.org/0451xrg20', 'en', 1, 'https://ror.org/0451xrg20 Research, Design and Technology Institute Cable аучно-исследовательский, проектно-конструкторский и технологический кабельный институт'), (48498, 'https://ror.org/0452qzk74', 'no_lang_code', 1, 'https://ror.org/0452qzk74 Desma (Germany)'), (48499, 'https://ror.org/0452rtt80', 'fr', 1, 'https://ror.org/0452rtt80 Laboratoire de Neurobiologie Cellulaire et Moléculaire'), (48500, 'https://ror.org/0453fgm48', 'no_lang_code', 1, 'https://ror.org/0453fgm48 Kensei Hospital 健生病院'), (48501, 'https://ror.org/0454arg59', 'en', 1, 'https://ror.org/0454arg59 International Institute for Digital Humanities 一般財団法人 人文情報学研究所'), (48502, 'https://ror.org/04574vv96', 'en', 1, 'https://ror.org/04574vv96 Gifu City Museum of History 岐阜市歴史博物館'), (48503, 'https://ror.org/0458ehh05', 'no_lang_code', 1, 'https://ror.org/0458ehh05 Free Form Fibers (United States)'), (48504, 'https://ror.org/045ay0h26', 'no_lang_code', 1, 'https://ror.org/045ay0h26 LumaMed (United States)'), (48505, 'https://ror.org/045bds194', 'no_lang_code', 1, 'https://ror.org/045bds194 KRA (United States)'), (48506, 'https://ror.org/045bzwt16', 'en', 1, 'https://ror.org/045bzwt16 University School of Milwaukee'), (48507, 'https://ror.org/045c2a851', 'en', 1, 'https://ror.org/045c2a851 ZheJiang Institute For Food and Drug Control 浙江省食品药品检验所'), (48508, 'https://ror.org/045cwwz56', 'no_lang_code', 1, 'https://ror.org/045cwwz56 Giatec Scientific (Canada)'), (48509, 'https://ror.org/045d0h266', 'no_lang_code', 1, 'https://ror.org/045d0h266 OSRAM (United States)'), (48510, 'https://ror.org/045eg9c12', 'en', 1, 'https://ror.org/045eg9c12 Fraunhofer Institute for Production Systems and Design Technology Fraunhofer-Institut für Produktionsanlagen und Konstruktionstechnik'), (48511, 'https://ror.org/045hp3b72', 'en', 1, 'https://ror.org/045hp3b72 Research Institute for Bioscience and Biotechnology'), (48512, 'https://ror.org/045k6ff56', 'en', 1, 'https://ror.org/045k6ff56 Ikuei Junior College 育英短期大学'), (48513, 'https://ror.org/045kkxp77', 'no_lang_code', 1, 'https://ror.org/045kkxp77 Inland Technologies (Canada)'), (48514, 'https://ror.org/045mf8339', 'en', 1, 'https://ror.org/045mf8339 Southwestern Christian College'), (48515, 'https://ror.org/045mrxn03', 'en', 1, 'https://ror.org/045mrxn03 Wakayama Shin-Ai Women''s Junior College 和歌山信愛女子短期大学'), (48516, 'https://ror.org/045nchz19', 'en', 1, 'https://ror.org/045nchz19 Asia Center for Air Pollution Research アジア大気汚染研究センター'), (48517, 'https://ror.org/045nr1z96', 'en', 1, 'https://ror.org/045nr1z96 Fukui Prefectural Museum of Cultural History 福井県立歴史博物館'), (48518, 'https://ror.org/045ns6h78', 'no_lang_code', 1, 'https://ror.org/045ns6h78 Woodward (Germany)'), (48519, 'https://ror.org/045nsn047', 'pt', 1, 'https://ror.org/045nsn047 Instituto Federal de Educação, Ciência e Tecnologia do Amazonas, Instituto Federal do Amazonas'), (48520, 'https://ror.org/045pkp007', 'en', 1, 'https://ror.org/045pkp007 United States Chamber of Commerce'), (48521, 'https://ror.org/045rgx026', 'no_lang_code', 1, 'https://ror.org/045rgx026 Saab (Switzerland)'), (48522, 'https://ror.org/045rh7r61', 'fr', 1, 'https://ror.org/045rh7r61 Centre d''Étude et de Recherche de Djibouti'), (48523, 'https://ror.org/045s0p143', 'no_lang_code', 1, 'https://ror.org/045s0p143 Salgomed (United States)'), (48524, 'https://ror.org/045skzd42', 'en', 1, 'https://ror.org/045skzd42 Fujian Provincial Administration of Press, Publication, Radio, Film and Television 福建省新闻出版广电'), (48525, 'https://ror.org/045smbc57', 'en', 1, 'https://ror.org/045smbc57 Ministerstvo pro místní rozvoj České republiky Ministry of Regional Development'), (48526, 'https://ror.org/045sskv83', 'en', 1, 'https://ror.org/045sskv83 Nagasaki Junior College 長崎短期大学'), (48527, 'https://ror.org/046228582', 'en', 1, 'https://ror.org/046228582 Innovative Medicines for Tuberculosis Foundation'), (48528, 'https://ror.org/0463sg992', 'en', 1, 'https://ror.org/0463sg992 Wichita Falls Independent School District'), (48529, 'https://ror.org/0465gqs65', 'no_lang_code', 1, 'https://ror.org/0465gqs65 Legrand (Australia)'), (48530, 'https://ror.org/0465np396', 'en', 1, 'https://ror.org/0465np396 Fukuoka Technical High School 福岡県立福岡工業高等学校'), (48531, 'https://ror.org/046601y55', 'pt', 1, 'https://ror.org/046601y55 Centro Internacional de Semiótica e Comunicação'), (48532, 'https://ror.org/0466m2m47', 'no_lang_code', 1, 'https://ror.org/0466m2m47 MetaOptima Technology (Canada)'), (48533, 'https://ror.org/0467sym95', 'en', 1, 'https://ror.org/0467sym95 Thanlyin Technological University နည်းပညာ တက္ကသိုလ် (သန်လျင်)'), (48534, 'https://ror.org/0468j5v73', 'en', 1, 'https://ror.org/0468j5v73 Shinjuku Ward Shinjuku Historical Museum 新宿歴史博物館'), (48535, 'https://ror.org/046a7j408', 'en', 1, 'https://ror.org/046a7j408 Osaka College of Social Health and Welfare 大阪健康福祉短期大学'), (48536, 'https://ror.org/046as2g47', 'no_lang_code', 1, 'https://ror.org/046as2g47 Robert Bosch (Taiwan)'), (48537, 'https://ror.org/046crbt05', 'nl', 1, 'https://ror.org/046crbt05 Wikimedia Nederland'), (48538, 'https://ror.org/046ct7v62', 'no_lang_code', 1, 'https://ror.org/046ct7v62 STATS ChipPAC (Singapore)'), (48539, 'https://ror.org/046dqma84', 'en', 1, 'https://ror.org/046dqma84 King County Library System Foundation'), (48540, 'https://ror.org/046esz437', 'no_lang_code', 1, 'https://ror.org/046esz437 Colt International (United States)'), (48541, 'https://ror.org/046fb4113', 'en', 1, 'https://ror.org/046fb4113 ZheJiang Economic and Trade Polytechnic 浙江经贸职业技术学院'), (48542, 'https://ror.org/046jx2h22', 'en', 1, 'https://ror.org/046jx2h22 National Institute of Technology, Tokuyama College 徳山工業高等専門学校'), (48543, 'https://ror.org/046ka3r30', 'es', 1, 'https://ror.org/046ka3r30 Instituto Mexicano de Tecnología del Agua'), (48544, 'https://ror.org/046m94028', 'it', 1, 'https://ror.org/046m94028 Associazione Italiana Arbitri'), (48545, 'https://ror.org/046qf2m29', 'no_lang_code', 1, 'https://ror.org/046qf2m29 RadiaSoft (United States)'), (48546, 'https://ror.org/046ra6g36', 'en', 1, 'https://ror.org/046ra6g36 Japan Automobile Research Institute 日本自動車研究所'), (48547, 'https://ror.org/046ry7m83', 'no_lang_code', 1, 'https://ror.org/046ry7m83 Alere (Germany)'), (48548, 'https://ror.org/046s04e65', 'en', 1, 'https://ror.org/046s04e65 National University الجامعة الوطنية'), (48549, 'https://ror.org/046sp4t54', 'en', 1, 'https://ror.org/046sp4t54 Institute for Community Inclusion'), (48550, 'https://ror.org/046vxey93', 'no_lang_code', 1, 'https://ror.org/046vxey93 AmyCard (Russia)'), (48551, 'https://ror.org/046xcaf86', 'no_lang_code', 1, 'https://ror.org/046xcaf86 FIH Mobile (China)'), (48552, 'https://ror.org/046ybeq88', 'no_lang_code', 1, 'https://ror.org/046ybeq88 Proprs (United Kingdom)'), (48553, 'https://ror.org/046zfzv81', 'en', 1, 'https://ror.org/046zfzv81 Museum of Modern Art 滋賀県立近代美術館'), (48554, 'https://ror.org/0470vq398', 'no_lang_code', 1, 'https://ror.org/0470vq398 Saratoga Energy Research Partners (United States)'), (48555, 'https://ror.org/0471j8634', 'en', 1, 'https://ror.org/0471j8634 Almishkat Centre for Research مركز المشكاة للبحث'); INSERT INTO `rors` VALUES (48556, 'https://ror.org/047226562', 'no_lang_code', 1, 'https://ror.org/047226562 TechnoRem (Canada)'), (48557, 'https://ror.org/0472ajt73', 'en', 1, 'https://ror.org/0472ajt73 Warnborough College'), (48558, 'https://ror.org/0472sp635', 'en', 1, 'https://ror.org/0472sp635 Ballsbridge University'), (48559, 'https://ror.org/047456960', 'en', 1, 'https://ror.org/047456960 Broome County Health Department'), (48560, 'https://ror.org/0474tc765', 'en', 1, 'https://ror.org/0474tc765 International Prague University'), (48561, 'https://ror.org/0475amg73', 'en', 1, 'https://ror.org/0475amg73 Ventura County Transportation Commission'), (48562, 'https://ror.org/0477qq163', 'en', 1, 'https://ror.org/0477qq163 Civil Engineering Research Institute for Cold Region 寒地土木研究所'), (48563, 'https://ror.org/04785as38', 'en', 1, 'https://ror.org/04785as38 Christian County Public Schools'), (48564, 'https://ror.org/047dpbp86', 'no_lang_code', 1, 'https://ror.org/047dpbp86 Umano Medical (Canada)'), (48565, 'https://ror.org/047f7tv05', 'en', 1, 'https://ror.org/047f7tv05 Wildlife Conservation Society Laos'), (48566, 'https://ror.org/047fe4v13', 'en', 1, 'https://ror.org/047fe4v13 Board of Education Mino Education Office'), (48567, 'https://ror.org/047gams58', 'no_lang_code', 1, 'https://ror.org/047gams58 CNH Industrial (Italy)'), (48568, 'https://ror.org/047gkb024', 'en', 1, 'https://ror.org/047gkb024 Okinaka Memorial Adult Disease Research Institute 冲中記念成人病研究所'), (48569, 'https://ror.org/047hbb113', 'en', 1, 'https://ror.org/047hbb113 Jinhua Polytechnic 金华职业技术学院'), (48570, 'https://ror.org/047hjdt67', 'en', 1, 'https://ror.org/047hjdt67 Michigan Virtual University'), (48571, 'https://ror.org/047mk7b09', 'no_lang_code', 1, 'https://ror.org/047mk7b09 Sensient Technologies (United States)'), (48572, 'https://ror.org/047mpyh13', 'no_lang_code', 1, 'https://ror.org/047mpyh13 ChemCentre'), (48573, 'https://ror.org/047q85d05', 'no_lang_code', 1, 'https://ror.org/047q85d05 First Data (United States)'), (48574, 'https://ror.org/047qhbs69', 'no_lang_code', 1, 'https://ror.org/047qhbs69 Rockwell Automation (Singapore)'), (48575, 'https://ror.org/047thv031', 'fr', 1, 'https://ror.org/047thv031 Université Épiscopale d''Haiti'), (48576, 'https://ror.org/047vw5609', 'en', 1, 'https://ror.org/047vw5609 National Assembly of Zambia'), (48577, 'https://ror.org/047wdpf58', 'no_lang_code', 1, 'https://ror.org/047wdpf58 Solid Power (United States)'), (48578, 'https://ror.org/047ywjc69', 'es', 1, 'https://ror.org/047ywjc69 Centro Cooperativista Uruguayo'), (48579, 'https://ror.org/04800nb63', 'es', 1, 'https://ror.org/04800nb63 Universidad del Pacífico de Chiapas'), (48580, 'https://ror.org/0480zh114', 'en', 1, 'https://ror.org/0480zh114 Japan External Trade Organization 日本貿易振興機構'), (48581, 'https://ror.org/0481b2b62', 'no_lang_code', 1, 'https://ror.org/0481b2b62 Brainport (Netherlands)'), (48582, 'https://ror.org/048301432', 'en', 1, 'https://ror.org/048301432 Sendai Municipal Sendai Commercial High School 仙台商業高等学校'), (48583, 'https://ror.org/0483xzg81', 'no_lang_code', 1, 'https://ror.org/0483xzg81 Paion (United States)'), (48584, 'https://ror.org/0486ne794', 'en', 1, 'https://ror.org/0486ne794 Cambodia Development Resource Institute'), (48585, 'https://ror.org/0486xr381', 'en', 1, 'https://ror.org/0486xr381 Filson Historical Society'), (48586, 'https://ror.org/04871sq53', 'en', 1, 'https://ror.org/04871sq53 Takayanagi Dental Clinic 高柳歯科病院'), (48587, 'https://ror.org/0487bnx60', 'no_lang_code', 1, 'https://ror.org/0487bnx60 Doosan Machine Tools (United States)'), (48588, 'https://ror.org/0487grk59', 'no_lang_code', 1, 'https://ror.org/0487grk59 Salzgitter Group (Singapore)'), (48589, 'https://ror.org/048a7w867', 'en', 1, 'https://ror.org/048a7w867 Tokyo Metropolitan Komaba High School 東京都立駒場高等学校'), (48590, 'https://ror.org/048b7d518', 'en', 1, 'https://ror.org/048b7d518 Academy of Sciences and Arts of Bosnia and Herzegovina Akademija nauka i umjetnosti Bosne i Hercegovine Академија наука и умјетности Босне и Херцеговине'), (48591, 'https://ror.org/048bwmz37', 'no_lang_code', 1, 'https://ror.org/048bwmz37 Fortive (United States)'), (48592, 'https://ror.org/048f8az88', 'en', 1, 'https://ror.org/048f8az88 American Association for Thoracic Surgery'), (48593, 'https://ror.org/048fx3n07', 'en', 1, 'https://ror.org/048fx3n07 Fukushima Medical University Hospital 福島県立医科大学附属病院'), (48594, 'https://ror.org/048gksa87', 'no_lang_code', 1, 'https://ror.org/048gksa87 Kajima Corporation (Japan) 鹿島建設株式会社'), (48595, 'https://ror.org/048hq4x94', 'no_lang_code', 1, 'https://ror.org/048hq4x94 Forge Nano (United States)'), (48596, 'https://ror.org/048k12m08', 'en', 1, 'https://ror.org/048k12m08 Spinal Cord Injury Association'), (48597, 'https://ror.org/048mspf89', 'no_lang_code', 1, 'https://ror.org/048mspf89 Utsunomiya Museum of Art'), (48598, 'https://ror.org/048n7pq28', 'no_lang_code', 1, 'https://ror.org/048n7pq28 Oji Holdings (Japan) 王子ホールディングス株式会社'), (48599, 'https://ror.org/048n8ck62', 'en', 1, 'https://ror.org/048n8ck62 Plateau Medical Center'), (48600, 'https://ror.org/048ndxt24', 'no_lang_code', 1, 'https://ror.org/048ndxt24 Himeji Hinomoto College 姫路日ノ本短期大学'), (48601, 'https://ror.org/048nk6m17', 'en', 1, 'https://ror.org/048nk6m17 Sydney Olympic Park Authority'), (48602, 'https://ror.org/048psdj82', 'en', 1, 'https://ror.org/048psdj82 Accounting and Finance Association of Australia and New Zealand'), (48603, 'https://ror.org/048saf111', 'en', 1, 'https://ror.org/048saf111 California Library Association'), (48604, 'https://ror.org/048seqj96', 'en', 1, 'https://ror.org/048seqj96 Zhejiang Provincial Health Information Center 浙江省卫生信息中心'), (48605, 'https://ror.org/048ss3773', 'no_lang_code', 1, 'https://ror.org/048ss3773 Krüger (Germany)'), (48606, 'https://ror.org/048t6pr69', 'en', 1, 'https://ror.org/048t6pr69 Patuxent Partnership'), (48607, 'https://ror.org/048tnm037', 'en', 1, 'https://ror.org/048tnm037 Institute of Biochemical Physics NM Emanuel Институт биохимической физики РАН'), (48608, 'https://ror.org/048vnmk34', 'no_lang_code', 1, 'https://ror.org/048vnmk34 Ceracomp (South Korea)'), (48609, 'https://ror.org/048y1qb68', 'en', 1, 'https://ror.org/048y1qb68 Independence Public Library'), (48610, 'https://ror.org/048z4gn84', 'en', 1, 'https://ror.org/048z4gn84 Idaho Business for Education'), (48611, 'https://ror.org/0490fjq98', 'sv', 1, 'https://ror.org/0490fjq98 Svenska Jägareförbundet'), (48612, 'https://ror.org/04912ew08', 'en', 1, 'https://ror.org/04912ew08 Iwate Agricultural Junior College 岩手県立農業大学校'), (48613, 'https://ror.org/04916g222', 'en', 1, 'https://ror.org/04916g222 Lackland Independent School District'), (48614, 'https://ror.org/0492b0q60', 'en', 1, 'https://ror.org/0492b0q60 HJF Medical Research International'), (48615, 'https://ror.org/0492k9x16', 'en', 1, 'https://ror.org/0492k9x16 Centre for Social Sciences Társadalomtudományi Kutatóközpont'), (48616, 'https://ror.org/0492z4191', 'en', 1, 'https://ror.org/0492z4191 Saitama Prefectural Museum of Natural History 自然史の埼玉県立美術館'), (48617, 'https://ror.org/0495n4t52', 'en', 1, 'https://ror.org/0495n4t52 Hakuho Women''s College 白鳳女子短期大学'), (48618, 'https://ror.org/0496gtv62', 'no_lang_code', 1, 'https://ror.org/0496gtv62 TetraVue (United States)'), (48619, 'https://ror.org/049ae8f38', 'en', 1, 'https://ror.org/049ae8f38 Hearing, Speech & Deaf Center'), (48620, 'https://ror.org/049e4we54', 'en', 1, 'https://ror.org/049e4we54 Acoustical Society of America'), (48621, 'https://ror.org/049ebw417', 'it', 1, 'https://ror.org/049ebw417 Istituto di Fotonica e Nanotecnologie'), (48622, 'https://ror.org/049en1e86', 'en', 1, 'https://ror.org/049en1e86 Fujian Institute of Subtropical Botany 福建省亚热带植物研究所'), (48623, 'https://ror.org/049evaf90', 'en', 1, 'https://ror.org/049evaf90 Access Computer College'), (48624, 'https://ror.org/049exe397', 'no_lang_code', 1, 'https://ror.org/049exe397 Distributed Infinity (United States)'), (48625, 'https://ror.org/049g0jw79', 'no_lang_code', 1, 'https://ror.org/049g0jw79 Agile RF (United States)'), (48626, 'https://ror.org/049hp7d95', 'no_lang_code', 1, 'https://ror.org/049hp7d95 Durham Foods (United Kingdom)'), (48627, 'https://ror.org/049jgef55', 'no_lang_code', 1, 'https://ror.org/049jgef55 Danfoss (United States)'), (48628, 'https://ror.org/049mrbr98', 'no_lang_code', 1, 'https://ror.org/049mrbr98 Intuit (United States)'), (48629, 'https://ror.org/049ncrn81', 'no_lang_code', 1, 'https://ror.org/049ncrn81 Bausch Health (Germany)'), (48630, 'https://ror.org/049nhvm53', 'no_lang_code', 1, 'https://ror.org/049nhvm53 ImmunoChemistry Technologies (United States)'), (48631, 'https://ror.org/049pb5632', 'no_lang_code', 1, 'https://ror.org/049pb5632 AbbVie (Bermuda)'), (48632, 'https://ror.org/049ps3c72', 'es', 1, 'https://ror.org/049ps3c72 Instituto Tecnológico de Cerro Azul'), (48633, 'https://ror.org/049pz8m51', 'en', 1, 'https://ror.org/049pz8m51 Chongqing Academy of Chinese Materia Medica 重庆市中药研究院'), (48634, 'https://ror.org/049rjvf68', 'en', 1, 'https://ror.org/049rjvf68 Nakanihon Automotive College 中日本自動車短期大学'), (48635, 'https://ror.org/049s4f968', 'en', 1, 'https://ror.org/049s4f968 Baltic Development Forum'), (48636, 'https://ror.org/049sr1d03', 'en', 1, 'https://ror.org/049sr1d03 Velindre Cancer Centre'), (48637, 'https://ror.org/049vpfq31', 'no_lang_code', 1, 'https://ror.org/049vpfq31 Hoya (Japan) Hoya株式会社'), (48638, 'https://ror.org/049x12g57', 'no_lang_code', 1, 'https://ror.org/049x12g57 American BioOptics (United States)'), (48639, 'https://ror.org/049y0k629', 'en', 1, 'https://ror.org/049y0k629 Miyagi Seishin Junior College 宮城誠真短期大学'), (48640, 'https://ror.org/049zex268', 'en', 1, 'https://ror.org/049zex268 Ministry of Culture, Министерство на културата'), (48641, 'https://ror.org/04a0gnr15', 'no_lang_code', 1, 'https://ror.org/04a0gnr15 Alacris (Germany)'), (48642, 'https://ror.org/04a0vqv69', 'no_lang_code', 1, 'https://ror.org/04a0vqv69 Dow Chemical (Brasil)'), (48643, 'https://ror.org/04a20na41', 'fr', 1, 'https://ror.org/04a20na41 Centre de Géomatique du Québec'), (48644, 'https://ror.org/04a2v9v66', 'en', 1, 'https://ror.org/04a2v9v66 Osaka Municipal Museum of Oriental Ceramics'), (48645, 'https://ror.org/04a3psa27', 'en', 1, 'https://ror.org/04a3psa27 Saudi Society of Dermatology and Dermatologic Surgery الجمعية السعودية لأمراض وجراحة الجلد'), (48646, 'https://ror.org/04a3v4a69', 'no_lang_code', 1, 'https://ror.org/04a3v4a69 Multivariate Software (United States)'), (48647, 'https://ror.org/04a467s88', 'en', 1, 'https://ror.org/04a467s88 Ibaraki Prefectural Museum of History ナチュラル茨城県立歴史館'), (48648, 'https://ror.org/04a496k07', 'en', 1, 'https://ror.org/04a496k07 GIG Cymru National Health Service Wales'), (48649, 'https://ror.org/04a58ge54', 'no_lang_code', 1, 'https://ror.org/04a58ge54 Yokosuka City Museum 横須賀市自然・人文博物館'), (48650, 'https://ror.org/04a5h3b47', 'en', 1, 'https://ror.org/04a5h3b47 Eastern Gateway Community College'), (48651, 'https://ror.org/04a6tk632', 'en', 1, 'https://ror.org/04a6tk632 Memphis Library Foundation'), (48652, 'https://ror.org/04a7gbp98', 'en', 1, 'https://ror.org/04a7gbp98 British Geological Survey'), (48653, 'https://ror.org/04abdh096', 'en', 1, 'https://ror.org/04abdh096 Research Institutue of Evolutionary Biology 進化生物学研究所'), (48654, 'https://ror.org/04achrx04', 'no_lang_code', 1, 'https://ror.org/04achrx04 AkzoNobel (Germany)'), (48655, 'https://ror.org/04ad7pn51', 'en', 1, 'https://ror.org/04ad7pn51 Pancreatic Cancer UK'), (48656, 'https://ror.org/04aenjr55', 'en', 1, 'https://ror.org/04aenjr55 DAV University'), (48657, 'https://ror.org/04aetd961', 'en', 1, 'https://ror.org/04aetd961 Development Bank of Japan 日本政策投資銀行'), (48658, 'https://ror.org/04aj97045', 'en', 1, 'https://ror.org/04aj97045 Watauga County Office of Economic Development'), (48659, 'https://ror.org/04am9s171', 'no_lang_code', 1, 'https://ror.org/04am9s171 Cimetrix Solutions (Canada)'), (48660, 'https://ror.org/04an3vm72', 'en', 1, 'https://ror.org/04an3vm72 Sparta Area School District'), (48661, 'https://ror.org/04apy5543', 'no_lang_code', 1, 'https://ror.org/04apy5543 Luye Pharma (China) 绿叶制药'), (48662, 'https://ror.org/04aq7nt90', 'en', 1, 'https://ror.org/04aq7nt90 North Central Educational Service District'), (48663, 'https://ror.org/04aqqcm29', 'en', 1, 'https://ror.org/04aqqcm29 Miyagi Prefectural visual support school 宮城県立視覚支援学校'), (48664, 'https://ror.org/04ar6mt14', 'en', 1, 'https://ror.org/04ar6mt14 Saitama Cultural Deposits Research Corporation 公益財団法人 埼玉県埋蔵文化財調査事業団'), (48665, 'https://ror.org/04ars9107', 'en', 1, 'https://ror.org/04ars9107 Gunma Prefectural Fisheries Experimental Station 群馬県 - 水産試験場'), (48666, 'https://ror.org/04asmh688', 'no_lang_code', 1, 'https://ror.org/04asmh688 Corning (South Korea)'), (48667, 'https://ror.org/04avd7t96', 'no_lang_code', 1, 'https://ror.org/04avd7t96 Medgene Labs (United States)'), (48668, 'https://ror.org/04azs9g49', 'en', 1, 'https://ror.org/04azs9g49 Loyola Medicine'), (48669, 'https://ror.org/04b0q3m21', 'no_lang_code', 1, 'https://ror.org/04b0q3m21 Victor (Japan) 日本ビクター株式会社'), (48670, 'https://ror.org/04b268v54', 'en', 1, 'https://ror.org/04b268v54 SUPERA Park of Innovation and Technology of Ribeirão Preto Supera Parque de Inovação e Tecnologia de Ribeirão Preto'), (48671, 'https://ror.org/04b30m009', 'no_lang_code', 1, 'https://ror.org/04b30m009 Integrated Nonclinical Development Solutions (United States)'), (48672, 'https://ror.org/04b33sw26', 'no_lang_code', 1, 'https://ror.org/04b33sw26 Northern Powergrid (United Kingdom)'), (48673, 'https://ror.org/04b3f3k27', 'en', 1, 'https://ror.org/04b3f3k27 Global Viral'), (48674, 'https://ror.org/04b47hp24', 'no_lang_code', 1, 'https://ror.org/04b47hp24 Temper (United States)'), (48675, 'https://ror.org/04b5t6e20', 'en', 1, 'https://ror.org/04b5t6e20 Niigata Prefectural Niigata MidoriKo High School 新潟県立新潟翠江高等学校'), (48676, 'https://ror.org/04bam1s60', 'en', 1, 'https://ror.org/04bam1s60 Illinois Ornithological Society'), (48677, 'https://ror.org/04bb3h146', 'en', 1, 'https://ror.org/04bb3h146 Changchun 208 Hospital 吉林长春208医院'), (48678, 'https://ror.org/04bcz8b84', 'en', 1, 'https://ror.org/04bcz8b84 Osaka City Cultural Properties Association 大阪文化財研究所'), (48679, 'https://ror.org/04bda4853', 'en', 1, 'https://ror.org/04bda4853 Wildlife Preservation Society of Australia'), (48680, 'https://ror.org/04bdqfw32', 'no_lang_code', 1, 'https://ror.org/04bdqfw32 ZincNyx Energy Solutions (Canada)'), (48681, 'https://ror.org/04bdy7914', 'no_lang_code', 1, 'https://ror.org/04bdy7914 Yokogawa Electric (Japan) 横河電機株式会社'), (48682, 'https://ror.org/04bg5zd67', 'no_lang_code', 1, 'https://ror.org/04bg5zd67 Sandvik (South Africa)'), (48683, 'https://ror.org/04bh4bw24', 'es', 1, 'https://ror.org/04bh4bw24 Wikimedia Uruguay'), (48684, 'https://ror.org/04bkq2x49', 'no_lang_code', 1, 'https://ror.org/04bkq2x49 Clinical Sensors (United States)'), (48685, 'https://ror.org/04bq84m08', 'en', 1, 'https://ror.org/04bq84m08 Foundation Wakayama Prefecture Cultural Property Center 公益財団法人和歌山県文化財センター'), (48686, 'https://ror.org/04brc3a25', 'id', 1, 'https://ror.org/04brc3a25 Universitas Indonesia Timur'), (48687, 'https://ror.org/04brn2y58', 'en', 1, 'https://ror.org/04brn2y58 World Water and Climate Foundation'), (48688, 'https://ror.org/04bstw291', 'en', 1, 'https://ror.org/04bstw291 Austrian Society of Dermatology and Venereology Österreichischen Gesellschaft für Dermatologie und Venerologie'), (48689, 'https://ror.org/04btxqd09', 'en', 1, 'https://ror.org/04btxqd09 Institute for the Advanced Study of Black Family Life and Culture'), (48690, 'https://ror.org/04bvdz568', 'en', 1, 'https://ror.org/04bvdz568 Union der deutschen Akademien der Wissenschaften Union of the German Academies of Sciences and Humanities'), (48691, 'https://ror.org/04bwh4h90', 'fr', 1, 'https://ror.org/04bwh4h90 Bretagne Développement Innovation'), (48692, 'https://ror.org/04bx2zy40', 'no_lang_code', 1, 'https://ror.org/04bx2zy40 Otsuka (United Kingdom)'), (48693, 'https://ror.org/04c14yn55', 'en', 1, 'https://ror.org/04c14yn55 Chuxiong Normal University 楚雄师范学院'), (48694, 'https://ror.org/04c154n61', 'en', 1, 'https://ror.org/04c154n61 Ningbo Polytechnic 宁波职业技术学院'), (48695, 'https://ror.org/04c2j1p40', 'en', 1, 'https://ror.org/04c2j1p40 Dabney S Lancaster Community College'), (48696, 'https://ror.org/04c2m5174', 'no_lang_code', 1, 'https://ror.org/04c2m5174 Systems, Applications & Products in Data Processing (Australia)'), (48697, 'https://ror.org/04c466w42', 'en', 1, 'https://ror.org/04c466w42 Mpala Research Center and Wildlife Foundation'), (48698, 'https://ror.org/04c4nem69', 'no_lang_code', 1, 'https://ror.org/04c4nem69 QuantumWise (Denmark)'), (48699, 'https://ror.org/04c5amq59', 'en', 1, 'https://ror.org/04c5amq59 Association of Surgeons of Great Britain and Ireland'), (48700, 'https://ror.org/04c6jsb22', 'no_lang_code', 1, 'https://ror.org/04c6jsb22 Leo Pharma (Ireland)'), (48701, 'https://ror.org/04c772e80', 'en', 1, 'https://ror.org/04c772e80 Soil Association'), (48702, 'https://ror.org/04c97mw67', 'en', 1, 'https://ror.org/04c97mw67 Modus Health'), (48703, 'https://ror.org/04c9j2485', 'en', 1, 'https://ror.org/04c9j2485 Iida City Museum of Art 飯田市美術博物館'), (48704, 'https://ror.org/04cadt597', 'en', 1, 'https://ror.org/04cadt597 Heisei College of Health Sciences 平成医療短期大学'), (48705, 'https://ror.org/04cafpa45', 'en', 1, 'https://ror.org/04cafpa45 Okinawa Womens Junior College 沖縄女子短期大学'), (48706, 'https://ror.org/04ccqwj03', 'no_lang_code', 1, 'https://ror.org/04ccqwj03 Mitsubishi Electric (Germany)'), (48707, 'https://ror.org/04cdebn34', 'no_lang_code', 1, 'https://ror.org/04cdebn34 ProCure (United States)'), (48708, 'https://ror.org/04cdm5380', 'de', 1, 'https://ror.org/04cdm5380 Mediacult'), (48709, 'https://ror.org/04cf91p66', 'en', 1, 'https://ror.org/04cf91p66 Our Lady Academy of Sakura 私立桜の聖母学院高校'), (48710, 'https://ror.org/04cfzks03', 'pt', 1, 'https://ror.org/04cfzks03 Escola de Comando e Estado-Maior do Exército'), (48711, 'https://ror.org/04ch3q361', 'en', 1, 'https://ror.org/04ch3q361 Centre for Economic and Social Studies'), (48712, 'https://ror.org/04cnffe38', 'en', 1, 'https://ror.org/04cnffe38 Pioneer International University'), (48713, 'https://ror.org/04cnkg888', 'en', 1, 'https://ror.org/04cnkg888 Museum of Japanese Art Yamato Bunkakan 大和文華館'), (48714, 'https://ror.org/04cp1fw87', 'en', 1, 'https://ror.org/04cp1fw87 Consortium for Educational Change'), (48715, 'https://ror.org/04cqva373', 'en', 1, 'https://ror.org/04cqva373 Yamagata Prefectural Sagae High School 山形県立寒河江高等学校'), (48716, 'https://ror.org/04cqvnd54', 'no_lang_code', 1, 'https://ror.org/04cqvnd54 Wikimedia Taiwan 中華民國維基媒體協會'), (48717, 'https://ror.org/04cr8d113', 'no_lang_code', 1, 'https://ror.org/04cr8d113 Lawrenceville Plasma Physics (United States)'), (48718, 'https://ror.org/04csbgr97', 'en', 1, 'https://ror.org/04csbgr97 Musashi Junior and Senior High School 武蔵高等学校 中学校'), (48719, 'https://ror.org/04csh5447', 'en', 1, 'https://ror.org/04csh5447 Mass Insight Education'), (48720, 'https://ror.org/04cx2cg45', 'no_lang_code', 1, 'https://ror.org/04cx2cg45 Neoanalysis (Greece) ΝΕΟΑΝΑΛΥΣΙΣ'), (48721, 'https://ror.org/04cx9ny42', 'en', 1, 'https://ror.org/04cx9ny42 Ehime Prefectural College of Agriculture 愛媛県立農業大学校'), (48722, 'https://ror.org/04cxnv425', 'it', 1, 'https://ror.org/04cxnv425 Pro Grigioni Italiano'), (48723, 'https://ror.org/04cycke44', 'en', 1, 'https://ror.org/04cycke44 Center on Budget and Policy Priorities'), (48724, 'https://ror.org/04d32wy52', 'en', 1, 'https://ror.org/04d32wy52 Hokkaido Musashi Women''s Junior College 北海道武蔵女子短期大学'), (48725, 'https://ror.org/04d38yh91', 'en', 1, 'https://ror.org/04d38yh91 Tokyo School for the Deaf'), (48726, 'https://ror.org/04d3djg48', 'no_lang_code', 1, 'https://ror.org/04d3djg48 Qualcomm (United Kingdom)'), (48727, 'https://ror.org/04d3s7k24', 'en', 1, 'https://ror.org/04d3s7k24 Association of African Business Schools'), (48728, 'https://ror.org/04d5b0c86', 'no_lang_code', 1, 'https://ror.org/04d5b0c86 Nommon Solutions and Technologies (Spain)'), (48729, 'https://ror.org/04d83ph96', 'en', 1, 'https://ror.org/04d83ph96 City Clinical Hospital No 31 Городская клиническая больница № 31 (Санкт-Петербург)'), (48730, 'https://ror.org/04d951341', 'en', 1, 'https://ror.org/04d951341 International Cosmetology College Starptautiskā Kosmetoloģijas koledža'), (48731, 'https://ror.org/04d9trb33', 'es', 1, 'https://ror.org/04d9trb33 Corporación para el Desarrollo Sostenible del Urabá'), (48732, 'https://ror.org/04dd9eh65', 'no_lang_code', 1, 'https://ror.org/04dd9eh65 Solvay (China)'), (48733, 'https://ror.org/04dercs88', 'pt', 1, 'https://ror.org/04dercs88 Instituto Nacional do Semiárido'), (48734, 'https://ror.org/04dfxm579', 'id', 1, 'https://ror.org/04dfxm579 Universitas Nahdlatul Wathan Mataram'), (48735, 'https://ror.org/04dgpsg75', 'no_lang_code', 1, 'https://ror.org/04dgpsg75 Yazaki (Japan) 矢崎総業株式会社'), (48736, 'https://ror.org/04dk3f152', 'fr', 1, 'https://ror.org/04dk3f152 Fondation pour la Santé Reproductrice et l''Education Familiale'), (48737, 'https://ror.org/04dmzp333', 'en', 1, 'https://ror.org/04dmzp333 The Duchy Hospital'), (48738, 'https://ror.org/04dn01t72', 'en', 1, 'https://ror.org/04dn01t72 Field Crops Research Institute'), (48739, 'https://ror.org/04dpcyn69', 'en', 1, 'https://ror.org/04dpcyn69 Kanagawa Prefectural Museum of Cultural History 神奈川県立歴史博物館'), (48740, 'https://ror.org/04dqhen73', 'en', 1, 'https://ror.org/04dqhen73 Arab Open University الجامعة العربية المفتوحة'), (48741, 'https://ror.org/04dvebt78', 'no_lang_code', 1, 'https://ror.org/04dvebt78 ResMed (Australia)'), (48742, 'https://ror.org/04dxh1n93', 'no_lang_code', 1, 'https://ror.org/04dxh1n93 Arup Group (Canada)'), (48743, 'https://ror.org/04dyk5z88', 'no_lang_code', 1, 'https://ror.org/04dyk5z88 Advantest (Singapore)'), (48744, 'https://ror.org/04dynqd30', 'en', 1, 'https://ror.org/04dynqd30 Alhamd Islamic University'), (48745, 'https://ror.org/04dz7pm02', 'sv', 1, 'https://ror.org/04dz7pm02 Djurkliniken Roslagstull'), (48746, 'https://ror.org/04dzjva98', 'no_lang_code', 1, 'https://ror.org/04dzjva98 TCL (China) TCL科技集团'), (48747, 'https://ror.org/04e080j72', 'pt', 1, 'https://ror.org/04e080j72 Fundação Hemopa'), (48748, 'https://ror.org/04e08ga15', 'en', 1, 'https://ror.org/04e08ga15 Fontes Foundation'), (48749, 'https://ror.org/04e0thc04', 'no_lang_code', 1, 'https://ror.org/04e0thc04 BioTheryX (United States)'), (48750, 'https://ror.org/04e1eb965', 'en', 1, 'https://ror.org/04e1eb965 Fiorello H. LaGuardia Foundation'), (48751, 'https://ror.org/04e2byh18', 'no_lang_code', 1, 'https://ror.org/04e2byh18 Them (United States)'), (48752, 'https://ror.org/04e3bjn48', 'no_lang_code', 1, 'https://ror.org/04e3bjn48 Magneto-Inertial Fusion Technologies (United States)'), (48753, 'https://ror.org/04e4g6t41', 'no_lang_code', 1, 'https://ror.org/04e4g6t41 Cook Medical (Ireland)'), (48754, 'https://ror.org/04e4q3922', 'en', 1, 'https://ror.org/04e4q3922 Hyogo Prefectural Hyogo Agricultural University 兵庫県立農業大学'), (48755, 'https://ror.org/04e5cyn06', 'en', 1, 'https://ror.org/04e5cyn06 Agricultural & Applied Economics Association'), (48756, 'https://ror.org/04e5hj993', 'no_lang_code', 1, 'https://ror.org/04e5hj993 Packet Digital (United States)'), (48757, 'https://ror.org/04e5zt867', 'no_lang_code', 1, 'https://ror.org/04e5zt867 Amer Sports (France)'), (48758, 'https://ror.org/04e67g822', 'en', 1, 'https://ror.org/04e67g822 Uttar Pradesh Council of sugarcane research'), (48759, 'https://ror.org/04e6gmj90', 'en', 1, 'https://ror.org/04e6gmj90 British Thoracic Society'), (48760, 'https://ror.org/04e9gsd78', 'no_lang_code', 1, 'https://ror.org/04e9gsd78 United Shield (United Kingdom)'), (48761, 'https://ror.org/04eaf5c83', 'no_lang_code', 1, 'https://ror.org/04eaf5c83 Katan Kitchens (Canada)'), (48762, 'https://ror.org/04eca0d23', 'en', 1, 'https://ror.org/04eca0d23 Academic Swiss Caucasus Net'), (48763, 'https://ror.org/04ecrg623', 'no_lang_code', 1, 'https://ror.org/04ecrg623 Nippon Sheet Glass (Japan) 日本板硝子株式会社'), (48764, 'https://ror.org/04ecxrz19', 'en', 1, 'https://ror.org/04ecxrz19 Japan Chemical Analysis Center 日本分析センター'), (48765, 'https://ror.org/04ed8jn07', 'en', 1, 'https://ror.org/04ed8jn07 Zhenjiang City Fourth People''s Hospital 镇江市第四人民医院'), (48766, 'https://ror.org/04efpm434', 'en', 1, 'https://ror.org/04efpm434 Research Institute for Peace and Security 一般財団法人平和・安全保障研究所'), (48767, 'https://ror.org/04egre837', 'no_lang_code', 1, 'https://ror.org/04egre837 AlphaSIP (Spain)'), (48768, 'https://ror.org/04eh5he50', 'en', 1, 'https://ror.org/04eh5he50 Banque Nationale du Canada National Bank of Canada'), (48769, 'https://ror.org/04ehjr030', 'no_lang_code', 1, 'https://ror.org/04ehjr030 Apple (Israel)'), (48770, 'https://ror.org/04ekfdy38', 'en', 1, 'https://ror.org/04ekfdy38 Galveston Island Research Community Research Advisory Committee'), (48771, 'https://ror.org/04ekh4959', 'no_lang_code', 1, 'https://ror.org/04ekh4959 Xergy (United States)'), (48772, 'https://ror.org/04em0br16', 'en', 1, 'https://ror.org/04em0br16 Department of Agricultural Research & Technical Services'), (48773, 'https://ror.org/04em49j63', 'en', 1, 'https://ror.org/04em49j63 Kyoto Human Rights Research Institute 公益財団法人 世界人権問題研究センター'), (48774, 'https://ror.org/04emkcs40', 'en', 1, 'https://ror.org/04emkcs40 Radford University College'), (48775, 'https://ror.org/04emz6k48', 'en', 1, 'https://ror.org/04emz6k48 Chicago International Charter School'), (48776, 'https://ror.org/04epxrt89', 'en', 1, 'https://ror.org/04epxrt89 Japanese Physical Therapy Association 日本理学療法士協会'), (48777, 'https://ror.org/04etfv811', 'en', 1, 'https://ror.org/04etfv811 Indian Institute of Management Shillong भारतीय प्रबंधन संस्थान, शिलांग'), (48778, 'https://ror.org/04etxjg38', 'en', 1, 'https://ror.org/04etxjg38 Kanagawa Prefectural Ayase High School 神奈川県立綾瀬高等学校'), (48779, 'https://ror.org/04ev1v417', 'en', 1, 'https://ror.org/04ev1v417 Seirei Women''s Junior College 聖霊女子短期大学'), (48780, 'https://ror.org/04ewj8026', 'en', 1, 'https://ror.org/04ewj8026 Advanced Center for Orthopedics'), (48781, 'https://ror.org/04ewyef80', 'no_lang_code', 1, 'https://ror.org/04ewyef80 Saint-Gobain (Canada)'), (48782, 'https://ror.org/04ewyy141', 'no_lang_code', 1, 'https://ror.org/04ewyy141 Teldio (Canada)'), (48783, 'https://ror.org/04ex78q47', 'en', 1, 'https://ror.org/04ex78q47 Harney Education Service District'), (48784, 'https://ror.org/04exf1753', 'no_lang_code', 1, 'https://ror.org/04exf1753 ASM Terni (Italy)'), (48785, 'https://ror.org/04exgek62', 'en', 1, 'https://ror.org/04exgek62 International Training Centre of the ILO'), (48786, 'https://ror.org/04ey06332', 'en', 1, 'https://ror.org/04ey06332 Research Institute of Animal Husbandry'), (48787, 'https://ror.org/04eynnv65', 'en', 1, 'https://ror.org/04eynnv65 Tochigi Prefectural Utsunomiya Commercial and Business High School 栃木県立宇都宮商業高等学校'), (48788, 'https://ror.org/04eytv118', 'en', 1, 'https://ror.org/04eytv118 Shenandoah Astronomical Society'), (48789, 'https://ror.org/04ez8hs93', 'en', 1, 'https://ror.org/04ez8hs93 Qingdao Municipal Center for Disease Control and Prevention 青岛市疾病预防控制中心'), (48790, 'https://ror.org/04f1r9295', 'no_lang_code', 1, 'https://ror.org/04f1r9295 Dow Chemical (China)'), (48791, 'https://ror.org/04f2nz275', 'en', 1, 'https://ror.org/04f2nz275 Eurovacc Foundation'), (48792, 'https://ror.org/04f4hdq71', 'en', 1, 'https://ror.org/04f4hdq71 Pan African Christian University College'), (48793, 'https://ror.org/04f4ybw82', 'en', 1, 'https://ror.org/04f4ybw82 Schlow Centre Region Library'), (48794, 'https://ror.org/04f71fj29', 'no_lang_code', 1, 'https://ror.org/04f71fj29 Nirvana Sciences (United States)'), (48795, 'https://ror.org/04f89zf73', 'no_lang_code', 1, 'https://ror.org/04f89zf73 Johnson & Johnson (Brazil)'), (48796, 'https://ror.org/04fc53j27', 'no_lang_code', 1, 'https://ror.org/04fc53j27 Nippon Koei (Japan) 日本工営'), (48797, 'https://ror.org/04fcd0528', 'no_lang_code', 1, 'https://ror.org/04fcd0528 Geotechnical Consulting Group (United Kingdom)'), (48798, 'https://ror.org/04fctr677', 'en', 1, 'https://ror.org/04fctr677 Phillips University'), (48799, 'https://ror.org/04fdy3s84', 'en', 1, 'https://ror.org/04fdy3s84 Nishinomiya Municipal Takagi Elementary School 西宮市立高木小学校'), (48800, 'https://ror.org/04fh21g11', 'fr', 1, 'https://ror.org/04fh21g11 Association Française pour l''Etude du Foie'), (48801, 'https://ror.org/04fhkjd96', 'no_lang_code', 1, 'https://ror.org/04fhkjd96 Arizona Cancer Therapeutics (United States)'), (48802, 'https://ror.org/04fjdwh53', 'de', 1, 'https://ror.org/04fjdwh53 Institut für Krankenhaushygiene & Infektionsprävention'), (48803, 'https://ror.org/04fjvna30', 'en', 1, 'https://ror.org/04fjvna30 Association of Fundraising Professionals Advancement Northwest'), (48804, 'https://ror.org/04fkrbf60', 'en', 1, 'https://ror.org/04fkrbf60 Dutch University Institute for Art History Istituto Universitario Olandese di Storia dell’Arte'), (48805, 'https://ror.org/04fm2yw69', 'no_lang_code', 1, 'https://ror.org/04fm2yw69 GKN (United States)'), (48806, 'https://ror.org/04fnymv42', 'en', 1, 'https://ror.org/04fnymv42 Catalysis Foundation for Health'), (48807, 'https://ror.org/04fqe7r22', 'en', 1, 'https://ror.org/04fqe7r22 CHIME Institute'), (48808, 'https://ror.org/04fqtzv33', 'en', 1, 'https://ror.org/04fqtzv33 American Association of Law Libraries'), (48809, 'https://ror.org/04fr3ga66', 'en', 1, 'https://ror.org/04fr3ga66 Japanese Red Cross Hiroshima College of Nursing 日本赤十字広島看護大学'), (48810, 'https://ror.org/04frnf283', 'en', 1, 'https://ror.org/04frnf283 Sanyo Women''s College 山陽女子短期大学'), (48811, 'https://ror.org/04fs6r254', 'en', 1, 'https://ror.org/04fs6r254 Montana State Library'), (48812, 'https://ror.org/04fs8gp50', 'en', 1, 'https://ror.org/04fs8gp50 Mitsubishi Economic Research Institute 三菱経済研究所'), (48813, 'https://ror.org/04ft0an39', 'no_lang_code', 1, 'https://ror.org/04ft0an39 Ergon Energy (Australia)'), (48814, 'https://ror.org/04ftb9f20', 'no_lang_code', 1, 'https://ror.org/04ftb9f20 YKK (Japan) 吉田工業株式会社'), (48815, 'https://ror.org/04ftr6m30', 'en', 1, 'https://ror.org/04ftr6m30 Center for Independent Living'), (48816, 'https://ror.org/04fwdjg04', 'es', 1, 'https://ror.org/04fwdjg04 Instituto Tecnológico de Matamoros'), (48817, 'https://ror.org/04fwk7718', 'en', 1, 'https://ror.org/04fwk7718 Association of Community College Trustees'), (48818, 'https://ror.org/04fx38p98', 'en', 1, 'https://ror.org/04fx38p98 Max Planck Research Unit for Neurogenetics Max-Planck-Forschungsstelle für Neurogenetik'), (48819, 'https://ror.org/04fzah020', 'no_lang_code', 1, 'https://ror.org/04fzah020 Steris (United Kingdom)'), (48820, 'https://ror.org/04fzpsa91', 'en', 1, 'https://ror.org/04fzpsa91 Ventura County Library'), (48821, 'https://ror.org/04g2bja88', 'no_lang_code', 1, 'https://ror.org/04g2bja88 DirecTV (United States)'), (48822, 'https://ror.org/04g3bhm14', 'no_lang_code', 1, 'https://ror.org/04g3bhm14 Russell Biotech (United States)'), (48823, 'https://ror.org/04g3vmk47', 'en', 1, 'https://ror.org/04g3vmk47 Kaysinger Basin Regional Planning Commission'), (48824, 'https://ror.org/04g3x6p88', 'en', 1, 'https://ror.org/04g3x6p88 Ibaraki Prefectural Police 茨城県警察本部'), (48825, 'https://ror.org/04g4dtf59', 'no_lang_code', 1, 'https://ror.org/04g4dtf59 Panduit (United States)'), (48826, 'https://ror.org/04g918p03', 'no_lang_code', 1, 'https://ror.org/04g918p03 Oerlikon (United States)'), (48827, 'https://ror.org/04g9b5w11', 'en', 1, 'https://ror.org/04g9b5w11 Seismological Bureau of Shanghai 上海市地震局'), (48828, 'https://ror.org/04gacp295', 'en', 1, 'https://ror.org/04gacp295 Municipality of Anchorage'), (48829, 'https://ror.org/04gazgk64', 'en', 1, 'https://ror.org/04gazgk64 Foundations for Farming'), (48830, 'https://ror.org/04gc7ef93', 'no_lang_code', 1, 'https://ror.org/04gc7ef93 Novateur Research Solutions (United States)'), (48831, 'https://ror.org/04ggfw624', 'en', 1, 'https://ror.org/04ggfw624 Institute of Chemistry, Komi Science Center Коми научный центр УрО РАН'), (48832, 'https://ror.org/04ggpbw68', 'no_lang_code', 1, 'https://ror.org/04ggpbw68 Nuance Communications (Austria)'), (48833, 'https://ror.org/04ghh8334', 'en', 1, 'https://ror.org/04ghh8334 Central Sericultural Research and Training Institute केंद्रीय रेशम उत्पादन अनुसंधान एवं प्रशिक्षण संस्थान'), (48834, 'https://ror.org/04ghyw285', 'no_lang_code', 1, 'https://ror.org/04ghyw285 Marel (United Kingdom)'), (48835, 'https://ror.org/04gkxrj12', 'no_lang_code', 1, 'https://ror.org/04gkxrj12 MinebeaMitsumi (Japan) ミネベアミツミ株式会社'), (48836, 'https://ror.org/04gm8dp50', 'no_lang_code', 1, 'https://ror.org/04gm8dp50 MoJo Labs (United States)'), (48837, 'https://ror.org/04gmcat66', 'no_lang_code', 1, 'https://ror.org/04gmcat66 BioTez (Germany)'), (48838, 'https://ror.org/04gmk9p10', 'en', 1, 'https://ror.org/04gmk9p10 Ibaraki Prefecture Joso City Sugawara Elementary School 常総市立菅原小学校'), (48839, 'https://ror.org/04gp0yb49', 'en', 1, 'https://ror.org/04gp0yb49 Fraunhofer Institute for Digital Media Technology Fraunhofer-Institut für Digitale Medientechnologie'), (48840, 'https://ror.org/04gp75d48', 'en', 1, 'https://ror.org/04gp75d48 Nawroz University جامعة نوروز زانکۆی نەورۆز'), (48841, 'https://ror.org/04gpgk389', 'fr', 1, 'https://ror.org/04gpgk389 Centre Jacques Berque pour le Développement des Sciences Humaines et Sociales'), (48842, 'https://ror.org/04gqc0005', 'en', 1, 'https://ror.org/04gqc0005 Universal Barber College'), (48843, 'https://ror.org/04gs2jh51', 'no_lang_code', 1, 'https://ror.org/04gs2jh51 Mavi Innovations (Canada)'), (48844, 'https://ror.org/04gv4zs18', 'en', 1, 'https://ror.org/04gv4zs18 Anglo-Israel Association'), (48845, 'https://ror.org/04gz66q85', 'en', 1, 'https://ror.org/04gz66q85 Benton Foundation'), (48846, 'https://ror.org/04h081c37', 'en', 1, 'https://ror.org/04h081c37 Okayama Prefectural Kurashiki Technical High School 岡山県立倉敷工業高等学校'), (48847, 'https://ror.org/04h0h7852', 'en', 1, 'https://ror.org/04h0h7852 Aquila Theatre'), (48848, 'https://ror.org/04h7bb169', 'en', 1, 'https://ror.org/04h7bb169 Hong Kong Health Care Association'), (48849, 'https://ror.org/04h7w4h73', 'en', 1, 'https://ror.org/04h7w4h73 Pskov State University'), (48850, 'https://ror.org/04h9tqm30', 'en', 1, 'https://ror.org/04h9tqm30 Center for Education Reform'), (48851, 'https://ror.org/04hb57v11', 'en', 1, 'https://ror.org/04hb57v11 Iowa City Public Library'), (48852, 'https://ror.org/04hbev594', 'no_lang_code', 1, 'https://ror.org/04hbev594 Infineon Technologies (Canada)'), (48853, 'https://ror.org/04hbnm423', 'en', 1, 'https://ror.org/04hbnm423 MUFG Union Bank'), (48854, 'https://ror.org/04hcr0j14', 'en', 1, 'https://ror.org/04hcr0j14 Nebraska Bankers Association'), (48855, 'https://ror.org/04hd8bd67', 'no_lang_code', 1, 'https://ror.org/04hd8bd67 Murata (Japan) 株式会社村田製作所'), (48856, 'https://ror.org/04hdh0n29', 'en', 1, 'https://ror.org/04hdh0n29 Sveriges Läkarförbund Swedish Medical Association'), (48857, 'https://ror.org/04hezxr66', 'en', 1, 'https://ror.org/04hezxr66 IFMR Finance Foundation'), (48858, 'https://ror.org/04hg19818', 'en', 1, 'https://ror.org/04hg19818 Shimane Institute for Industrial Technology 島根県産業技術センター'), (48859, 'https://ror.org/04hjyd403', 'en', 1, 'https://ror.org/04hjyd403 Prince George''s County Memorial Library System'), (48860, 'https://ror.org/04hm9pd03', 'en', 1, 'https://ror.org/04hm9pd03 Association of Anaesthetists of Great Britain and Ireland'), (48861, 'https://ror.org/04hnkx132', 'en', 1, 'https://ror.org/04hnkx132 Innovation Plasturgie Composites Pôle Européen de Plasturgie'), (48862, 'https://ror.org/04hnxg730', 'en', 1, 'https://ror.org/04hnxg730 Chiba Prefectural Education Center 千葉県総合教育センター'), (48863, 'https://ror.org/04hpj9w50', 'no_lang_code', 1, 'https://ror.org/04hpj9w50 Palette (Canada)'), (48864, 'https://ror.org/04hpp8k10', 'no_lang_code', 1, 'https://ror.org/04hpp8k10 Dana (United Kingdom)'), (48865, 'https://ror.org/04hqsgm68', 'en', 1, 'https://ror.org/04hqsgm68 China Banking Regulatory Commission 中国银行业监督管理委员会'), (48866, 'https://ror.org/04hqvm002', 'no_lang_code', 1, 'https://ror.org/04hqvm002 ZF Friedrichshafen (Japan)'), (48867, 'https://ror.org/04hr38d13', 'en', 1, 'https://ror.org/04hr38d13 Toyama Prefectural Sakurai High School 富山県立桜井高等学校'), (48868, 'https://ror.org/04hrrvw77', 'en', 1, 'https://ror.org/04hrrvw77 American Society of Maxillofacial Surgeons'), (48869, 'https://ror.org/04hs3m603', 'en', 1, 'https://ror.org/04hs3m603 Isogo Technical High School 神奈川県立磯子工業高等学校'), (48870, 'https://ror.org/04hsa3c95', 'en', 1, 'https://ror.org/04hsa3c95 Bureau of Hydrology Tibet 西藏自治区水文水资源勘测局'), (48871, 'https://ror.org/04htqgq60', 'no_lang_code', 1, 'https://ror.org/04htqgq60 Heidenhain (Germany)'), (48872, 'https://ror.org/04hv0jm68', 'no_lang_code', 1, 'https://ror.org/04hv0jm68 OLEDWorks (United States)'), (48873, 'https://ror.org/04hw1e986', 'no_lang_code', 1, 'https://ror.org/04hw1e986 BaseTrace (United States)'), (48874, 'https://ror.org/04hyg4h58', 'no_lang_code', 1, 'https://ror.org/04hyg4h58 Qiagen (United Kingdom)'), (48875, 'https://ror.org/04hyzjc82', 'en', 1, 'https://ror.org/04hyzjc82 Miyagi Prefectural General Education Center 宮城県総合教育センター'), (48876, 'https://ror.org/04j0ryd72', 'es', 1, 'https://ror.org/04j0ryd72 Universidad Franciscana de México'), (48877, 'https://ror.org/04j0s0m53', 'en', 1, 'https://ror.org/04j0s0m53 American Society of Primatologists'), (48878, 'https://ror.org/04j4pme17', 'en', 1, 'https://ror.org/04j4pme17 Institute of Systems, Information Technologies and Nanotechnologies 九州先端科学技術研究所'), (48879, 'https://ror.org/04j55bg94', 'de', 1, 'https://ror.org/04j55bg94 Bibliothek des Wissenschaftsparks Albert Einstein'), (48880, 'https://ror.org/04j5m9426', 'no_lang_code', 1, 'https://ror.org/04j5m9426 Tokyo Seiei College 東京聖栄大学'), (48881, 'https://ror.org/04j6f8w41', 'en', 1, 'https://ror.org/04j6f8w41 Kanagawa Prefectural Kanagawa Comprehensive Industry High School 神奈川県立神奈川総合産業高等学校'), (48882, 'https://ror.org/04j7hdv70', 'en', 1, 'https://ror.org/04j7hdv70 Society for the Advancement of Scandinavian Study'), (48883, 'https://ror.org/04j7qp352', 'es', 1, 'https://ror.org/04j7qp352 Foundation for Integral Development Pacific Fundación para el Desarrollo Integral del Pacífico'), (48884, 'https://ror.org/04j80nh06', 'no_lang_code', 1, 'https://ror.org/04j80nh06 RUAG (Germany)'), (48885, 'https://ror.org/04j820197', 'pt', 1, 'https://ror.org/04j820197 Fundação de Amparo à Pesquisa e Extensão Universitária'), (48886, 'https://ror.org/04jc92q85', 'en', 1, 'https://ror.org/04jc92q85 Academy of Marketing Science'), (48887, 'https://ror.org/04jehxx70', 'en', 1, 'https://ror.org/04jehxx70 Yokohama City Furusato History Foundation 横浜市ふるさと歴史財団'), (48888, 'https://ror.org/04jf29r27', 'en', 1, 'https://ror.org/04jf29r27 Iwate Prefectural Mizusawa Agricultural High School'), (48889, 'https://ror.org/04jfns044', 'en', 1, 'https://ror.org/04jfns044 Vietnam Atomic Energy Instiute Viện Năng lượng nguyên tử Việt Nam'), (48890, 'https://ror.org/04jfp7737', 'no_lang_code', 1, 'https://ror.org/04jfp7737 Ringful Health (United States)'), (48891, 'https://ror.org/04jg63q12', 'en', 1, 'https://ror.org/04jg63q12 Northwest Vista College'), (48892, 'https://ror.org/04jjswc10', 'es', 1, 'https://ror.org/04jjswc10 Universidad Yachay Tech, Universidad de Investigación de Tecnología Experimental YACHAY'), (48893, 'https://ror.org/04jm5sq24', 'en', 1, 'https://ror.org/04jm5sq24 Cambridge Memorial Hospital'), (48894, 'https://ror.org/04jm9wm67', 'en', 1, 'https://ror.org/04jm9wm67 MBN Research Center'), (48895, 'https://ror.org/04jmk7329', 'no_lang_code', 1, 'https://ror.org/04jmk7329 Covaris (United States)'), (48896, 'https://ror.org/04jmyrr44', 'no_lang_code', 1, 'https://ror.org/04jmyrr44 Acceleware (Canada)'), (48897, 'https://ror.org/04jmysw33', 'en', 1, 'https://ror.org/04jmysw33 Wenzhou City People''s Hospital 温州市人民医院'), (48898, 'https://ror.org/04jr71r83', 'en', 1, 'https://ror.org/04jr71r83 Institute of Mathematics Viện Toán học'), (48899, 'https://ror.org/04jrd4q87', 'no_lang_code', 1, 'https://ror.org/04jrd4q87 Expro (United States)'), (48900, 'https://ror.org/04jry6p54', 'pt', 1, 'https://ror.org/04jry6p54 Prefeitura Municipal de Rio das Ostras'), (48901, 'https://ror.org/04js6xx21', 'en', 1, 'https://ror.org/04js6xx21 McGowan Institute for Regenerative Medicine'), (48902, 'https://ror.org/04jtwax81', 'no_lang_code', 1, 'https://ror.org/04jtwax81 Liquidia Technologies (United States)'), (48903, 'https://ror.org/04jy08y75', 'no_lang_code', 1, 'https://ror.org/04jy08y75 Qisda (Taiwan) 佳世达公司'), (48904, 'https://ror.org/04jyt7608', 'en', 1, 'https://ror.org/04jyt7608 Taizhou First People''s Hospital 台州市第一人民医院'), (48905, 'https://ror.org/04jzeda60', 'en', 1, 'https://ror.org/04jzeda60 Wakayama Prefectural Educational Center 和歌山県教育センター学びの丘'), (48906, 'https://ror.org/04k296d46', 'en', 1, 'https://ror.org/04k296d46 Vancouver Native Health Society'), (48907, 'https://ror.org/04k2gzh89', 'en', 1, 'https://ror.org/04k2gzh89 Australia and New Zealand School of Government'), (48908, 'https://ror.org/04k456e23', 'no_lang_code', 1, 'https://ror.org/04k456e23 Anne Arundel Economic Development (United States)'), (48909, 'https://ror.org/04k59vn11', 'no_lang_code', 1, 'https://ror.org/04k59vn11 Sasol (Germany)'), (48910, 'https://ror.org/04k5dj193', 'en', 1, 'https://ror.org/04k5dj193 Russian State Geological Prospecting University Российский государственный геологоразведочный университет'), (48911, 'https://ror.org/04k620071', 'en', 1, 'https://ror.org/04k620071 American Society for Quality'), (48912, 'https://ror.org/04k7d8776', 'en', 1, 'https://ror.org/04k7d8776 Tsukuba Municipal Azuma Elementary School つくば市立吾妻小学校'), (48913, 'https://ror.org/04k7gbj45', 'en', 1, 'https://ror.org/04k7gbj45 Center for Career and Community Research'), (48914, 'https://ror.org/04k7ny084', 'no_lang_code', 1, 'https://ror.org/04k7ny084 New Technology (Israel)'), (48915, 'https://ror.org/04kd9rb82', 'en', 1, 'https://ror.org/04kd9rb82 European Conference for AeroSpace Sciences'), (48916, 'https://ror.org/04kfb1d31', 'es', 1, 'https://ror.org/04kfb1d31 Universidad Angelópolis'), (48917, 'https://ror.org/04kfhcd40', 'no_lang_code', 1, 'https://ror.org/04kfhcd40 Aspen Professional Services (United States)'), (48918, 'https://ror.org/04kgngk14', 'en', 1, 'https://ror.org/04kgngk14 State Mining Administration Český báňský úřad'), (48919, 'https://ror.org/04khqse59', 'en', 1, 'https://ror.org/04khqse59 Pediatric Oncology Group'), (48920, 'https://ror.org/04kp61y04', 'en', 1, 'https://ror.org/04kp61y04 Association for Tertiary Education Management'), (48921, 'https://ror.org/04kq9kz72', 'no_lang_code', 1, 'https://ror.org/04kq9kz72 Cellectar Biosciences (United States)'), (48922, 'https://ror.org/04kre2459', 'en', 1, 'https://ror.org/04kre2459 Lee Countys Department of Public Safety'), (48923, 'https://ror.org/04krkan79', 'es', 1, 'https://ror.org/04krkan79 Fundación Miguel Lillo'), (48924, 'https://ror.org/04kvhgz56', 'no_lang_code', 1, 'https://ror.org/04kvhgz56 Future Access (Canada)'), (48925, 'https://ror.org/04kw5s604', 'no_lang_code', 1, 'https://ror.org/04kw5s604 Tektronix (United States)'), (48926, 'https://ror.org/04kw81y04', 'no_lang_code', 1, 'https://ror.org/04kw81y04 Sandia Research (United States)'), (48927, 'https://ror.org/04kwz3444', 'no_lang_code', 1, 'https://ror.org/04kwz3444 Schindler (Switzerland)'), (48928, 'https://ror.org/04kx60c47', 'en', 1, 'https://ror.org/04kx60c47 Hawaii State Public Library System'), (48929, 'https://ror.org/04kz0fx24', 'no_lang_code', 1, 'https://ror.org/04kz0fx24 Innospec (United States)'), (48930, 'https://ror.org/04kz8hh27', 'no_lang_code', 1, 'https://ror.org/04kz8hh27 Albemarle (Germany)'), (48931, 'https://ror.org/04kze4f18', 'en', 1, 'https://ror.org/04kze4f18 Miyagi Prefectural Police Forensic Science Laboratory 宮城県警察 科学捜査研究所'), (48932, 'https://ror.org/04kzeme37', 'en', 1, 'https://ror.org/04kzeme37 Hartebeesthoek Radio Astronomy Observatory'), (48933, 'https://ror.org/04kzfg204', 'en', 1, 'https://ror.org/04kzfg204 Apollon Hochschule der Gesundheitswirtschaft University of Applied Sciences Appollon'), (48934, 'https://ror.org/04kznw408', 'pt', 1, 'https://ror.org/04kznw408 Associação Brasileira de Rorschach e Métodos Projetivos'), (48935, 'https://ror.org/04m0nsn08', 'en', 1, 'https://ror.org/04m0nsn08 Indiana Commission for Higher Education'), (48936, 'https://ror.org/04m0rsq98', 'no_lang_code', 1, 'https://ror.org/04m0rsq98 Lexitek (United States)'), (48937, 'https://ror.org/04m2v6546', 'no_lang_code', 1, 'https://ror.org/04m2v6546 Extensible Energy (United States)'), (48938, 'https://ror.org/04m2xd811', 'en', 1, 'https://ror.org/04m2xd811 Bryn Mawr Skin & Cancer Institute'), (48939, 'https://ror.org/04m2ybb32', 'en', 1, 'https://ror.org/04m2ybb32 Nagoya City Science Museum 名古屋市科学館'), (48940, 'https://ror.org/04m3hsp39', 'en', 1, 'https://ror.org/04m3hsp39 Institute for Competitive Recruiting'), (48941, 'https://ror.org/04m3kny75', 'no_lang_code', 1, 'https://ror.org/04m3kny75 GRi Simulations (Canada)'), (48942, 'https://ror.org/04m5wpy84', 'no_lang_code', 1, 'https://ror.org/04m5wpy84 Maxar Technologies (United States)'), (48943, 'https://ror.org/04m7w1g19', 'en', 1, 'https://ror.org/04m7w1g19 Ehime Prefecture Iyo Agricultural High School 愛媛県立伊予農業高等学校'), (48944, 'https://ror.org/04m877p68', 'en', 1, 'https://ror.org/04m877p68 Cherie Blair Foundation for Women'), (48945, 'https://ror.org/04m8v6x07', 'no_lang_code', 1, 'https://ror.org/04m8v6x07 Nojiri Naumanni Museum'), (48946, 'https://ror.org/04mag9a17', 'no_lang_code', 1, 'https://ror.org/04mag9a17 SafeRay Spine (United States)'), (48947, 'https://ror.org/04max0939', 'no_lang_code', 1, 'https://ror.org/04max0939 Fujitsu (Germany) 富士通株式会社'), (48948, 'https://ror.org/04mc0ma12', 'no_lang_code', 1, 'https://ror.org/04mc0ma12 Almen Laboratories (United States)'), (48949, 'https://ror.org/04mcker87', 'en', 1, 'https://ror.org/04mcker87 Global Alliance for Improved Nutrition'), (48950, 'https://ror.org/04mdy6t91', 'no_lang_code', 1, 'https://ror.org/04mdy6t91 OAO VNIPIneft (Russia) Научно-исследовательский и проектный институт нефтеперерабатывающей и нефтехимической промышленности ОАО "ВНИПИнефть"'), (48951, 'https://ror.org/04mf33p23', 'no_lang_code', 1, 'https://ror.org/04mf33p23 Tucker Innovations (United States)'), (48952, 'https://ror.org/04mfben02', 'no_lang_code', 1, 'https://ror.org/04mfben02 Eomap (Germany)'), (48953, 'https://ror.org/04mfd9b91', 'id', 1, 'https://ror.org/04mfd9b91 Universitas Teknologi Nusantara'), (48954, 'https://ror.org/04mgmjj66', 'en', 1, 'https://ror.org/04mgmjj66 Centre for Advocacy and Research'), (48955, 'https://ror.org/04mhtp952', 'en', 1, 'https://ror.org/04mhtp952 Japanese Red Cross Akita College of Nursing 日本赤十字秋田看護大学'), (48956, 'https://ror.org/04mjv5x61', 'de', 1, 'https://ror.org/04mjv5x61 Oberlandesgericht Stuttgart'), (48957, 'https://ror.org/04mnaqe33', 'no_lang_code', 1, 'https://ror.org/04mnaqe33 Arquimea (Spain)'), (48958, 'https://ror.org/04mrer463', 'en', 1, 'https://ror.org/04mrer463 Aomori High School 青森県立青森高等学校'), (48959, 'https://ror.org/04msp8175', 'no_lang_code', 1, 'https://ror.org/04msp8175 Mission Management Information Systems (Canada)'), (48960, 'https://ror.org/04mtyr016', 'en', 1, 'https://ror.org/04mtyr016 Schiller International University'), (48961, 'https://ror.org/04mv68k05', 'en', 1, 'https://ror.org/04mv68k05 Karelian State Pedagogical Academy Карельская государственная педагогическая академия'), (48962, 'https://ror.org/04mvq4v36', 'en', 1, 'https://ror.org/04mvq4v36 Malaria No More'), (48963, 'https://ror.org/04mwphf10', 'en', 1, 'https://ror.org/04mwphf10 Australian Water Quality Centre'), (48964, 'https://ror.org/04my8ty22', 'no_lang_code', 1, 'https://ror.org/04my8ty22 Robert Bosch (India)'), (48965, 'https://ror.org/04myfn622', 'no_lang_code', 1, 'https://ror.org/04myfn622 Rubicon Labs (United States)'), (48966, 'https://ror.org/04n36vx38', 'no_lang_code', 1, 'https://ror.org/04n36vx38 Visteon (Japan)'); INSERT INTO `rors` VALUES (48967, 'https://ror.org/04n6ytd45', 'en', 1, 'https://ror.org/04n6ytd45 Pharmatech (United States)'), (48968, 'https://ror.org/04n820n80', 'en', 1, 'https://ror.org/04n820n80 Niigata Medical Technology Specialist School 新潟医療技術専門学校'), (48969, 'https://ror.org/04n8wkx34', 'en', 1, 'https://ror.org/04n8wkx34 Miyagi Prefectural Hearing Support School 宮城県立聴覚支援学校'), (48970, 'https://ror.org/04n9gs185', 'en', 1, 'https://ror.org/04n9gs185 Royal Australian Chemical Institute'), (48971, 'https://ror.org/04ndp2k28', 'en', 1, 'https://ror.org/04ndp2k28 Alaka`ina Foundation'), (48972, 'https://ror.org/04ngq3k29', 'en', 1, 'https://ror.org/04ngq3k29 Escambia County School District'), (48973, 'https://ror.org/04ngqe873', 'en', 1, 'https://ror.org/04ngqe873 Center for Effective Philanthropy'), (48974, 'https://ror.org/04ngzd740', 'en', 1, 'https://ror.org/04ngzd740 Australian Association of Gerontology'), (48975, 'https://ror.org/04nhss420', 'en', 1, 'https://ror.org/04nhss420 Dr. H. Bliss Murphy Cancer Centre'), (48976, 'https://ror.org/04nmxj606', 'en', 1, 'https://ror.org/04nmxj606 Niigata Agricultural Research Institute 新潟県園芸研究センター'), (48977, 'https://ror.org/04np5cf89', 'en', 1, 'https://ror.org/04np5cf89 Tompkins County Public Library'), (48978, 'https://ror.org/04nrgxn63', 'en', 1, 'https://ror.org/04nrgxn63 Round Rock Public Library'), (48979, 'https://ror.org/04nvdwx07', 'no_lang_code', 1, 'https://ror.org/04nvdwx07 Galaxy Diagnostics (United States)'), (48980, 'https://ror.org/04nvyq536', 'en', 1, 'https://ror.org/04nvyq536 California State Library Foundation'), (48981, 'https://ror.org/04nw8d167', 'en', 1, 'https://ror.org/04nw8d167 KIPP Foundation'), (48982, 'https://ror.org/04ny33f60', 'en', 1, 'https://ror.org/04ny33f60 Shiga Junior College 滋賀短期大学'), (48983, 'https://ror.org/04ny3af67', 'en', 1, 'https://ror.org/04ny3af67 Central Manchester Clinical Commissioning Group'), (48984, 'https://ror.org/04nz98c29', 'fr', 1, 'https://ror.org/04nz98c29 Université d''Oran 2'), (48985, 'https://ror.org/04nz9a261', 'en', 1, 'https://ror.org/04nz9a261 Mushroom Council'), (48986, 'https://ror.org/04nzat794', 'no_lang_code', 1, 'https://ror.org/04nzat794 Arizona Optical Systems (United States)'), (48987, 'https://ror.org/04p0kmp94', 'no_lang_code', 1, 'https://ror.org/04p0kmp94 Diagnologix (United States)'), (48988, 'https://ror.org/04p102g25', 'en', 1, 'https://ror.org/04p102g25 Mental Health Foundation'), (48989, 'https://ror.org/04p1gbs34', 'no_lang_code', 1, 'https://ror.org/04p1gbs34 Sydor Technologies (United States)'), (48990, 'https://ror.org/04p1vet95', 'en', 1, 'https://ror.org/04p1vet95 Institute for Future Engineering 未来工学研究所'), (48991, 'https://ror.org/04p280284', 'pt', 1, 'https://ror.org/04p280284 Departamento de Ciência e Tecnologia'), (48992, 'https://ror.org/04p43ja26', 'no_lang_code', 1, 'https://ror.org/04p43ja26 ResMed (Germany)'), (48993, 'https://ror.org/04p4abm19', 'en', 1, 'https://ror.org/04p4abm19 National Cereals Research Institute'), (48994, 'https://ror.org/04p4ra235', 'en', 1, 'https://ror.org/04p4ra235 Zhejiang Tongji Vocational College of Science and Technology 科技的同济大学浙江职业技术学院'), (48995, 'https://ror.org/04p4ws960', 'en', 1, 'https://ror.org/04p4ws960 Asian Development Bank Institute アジア開発銀行研究所'), (48996, 'https://ror.org/04p57n726', 'en', 1, 'https://ror.org/04p57n726 Research Institute of Ceramics НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ КЕРАМИКИ'), (48997, 'https://ror.org/04p5eag18', 'no_lang_code', 1, 'https://ror.org/04p5eag18 Brembo (Italy)'), (48998, 'https://ror.org/04p62ev47', 'no_lang_code', 1, 'https://ror.org/04p62ev47 Eppin Pharma (United States)'), (48999, 'https://ror.org/04p74nw72', 'en', 1, 'https://ror.org/04p74nw72 Queensland Police Service'), (49000, 'https://ror.org/04pb25098', 'en', 1, 'https://ror.org/04pb25098 Progressive Osseous Heteroplasia Association'), (49001, 'https://ror.org/04pe8fr02', 'no_lang_code', 1, 'https://ror.org/04pe8fr02 Leviton (United States)'), (49002, 'https://ror.org/04pg77a15', 'no_lang_code', 1, 'https://ror.org/04pg77a15 Boise Cascade (Canada)'), (49003, 'https://ror.org/04pk2pv78', 'en', 1, 'https://ror.org/04pk2pv78 Educational Service District 105'), (49004, 'https://ror.org/04pk33v91', 'en', 1, 'https://ror.org/04pk33v91 Brazilian Computer Society Sociedade Brasileira de Computação'), (49005, 'https://ror.org/04pnp9s43', 'no_lang_code', 1, 'https://ror.org/04pnp9s43 Hikone Central Hospital 彦根中央病院'), (49006, 'https://ror.org/04pnyb473', 'en', 1, 'https://ror.org/04pnyb473 Uganda National Health Research Organisation'), (49007, 'https://ror.org/04pp5k026', 'en', 1, 'https://ror.org/04pp5k026 Mie Prefectural Yokkaichi Technical High School 三重県立四日市工業高等学校'), (49008, 'https://ror.org/04ppv2c95', 'en', 1, 'https://ror.org/04ppv2c95 Shenzhen Pingle Orthopedic Hospital 深圳平乐骨伤科医院'), (49009, 'https://ror.org/04pr1tr38', 'en', 1, 'https://ror.org/04pr1tr38 International Food Protection Training Institute'), (49010, 'https://ror.org/04prhfn63', 'no_lang_code', 1, 'https://ror.org/04prhfn63 Samsung (Switzerland)'), (49011, 'https://ror.org/04psa8d07', 'en', 1, 'https://ror.org/04psa8d07 Geary County Schools USD 475'), (49012, 'https://ror.org/04ptztc75', 'en', 1, 'https://ror.org/04ptztc75 Opinion Leader Research'), (49013, 'https://ror.org/04pv7qx83', 'en', 1, 'https://ror.org/04pv7qx83 Battle Creek Public Schools'), (49014, 'https://ror.org/04q23dw35', 'en', 1, 'https://ror.org/04q23dw35 Arkansas Department of Higher Education'), (49015, 'https://ror.org/04q26a018', 'en', 1, 'https://ror.org/04q26a018 Common Heritage Foundation'), (49016, 'https://ror.org/04q2tvr21', 'no_lang_code', 1, 'https://ror.org/04q2tvr21 Seastar Chemicals (Canada)'), (49017, 'https://ror.org/04q4ktw86', 'no_lang_code', 1, 'https://ror.org/04q4ktw86 Faurecia (Canada)'), (49018, 'https://ror.org/04q5ghr47', 'no_lang_code', 1, 'https://ror.org/04q5ghr47 Osaka Yuhigaoka Gakuen Junior College 大阪夕陽丘学園短期大学'), (49019, 'https://ror.org/04q5rka56', 'en', 1, 'https://ror.org/04q5rka56 Fraunhofer Institute for Integrated Systems and Device Technology Fraunhofer-Institut für Integrierte Systeme und Bauelementetechnologie'), (49020, 'https://ror.org/04q7e9e16', 'en', 1, 'https://ror.org/04q7e9e16 Islamic Azad University Maybod دانشگاه آزاد اسلامی واحد میبد یزد'), (49021, 'https://ror.org/04q7kwp74', 'en', 1, 'https://ror.org/04q7kwp74 College Success Foundation'), (49022, 'https://ror.org/04q90d498', 'en', 1, 'https://ror.org/04q90d498 Augusta-Richmond County Public Library System'), (49023, 'https://ror.org/04qa3rn14', 'no_lang_code', 1, 'https://ror.org/04qa3rn14 Wakayama City Museum 和歌山市立博物館'), (49024, 'https://ror.org/04qbzaj86', 'en', 1, 'https://ror.org/04qbzaj86 Hakodate Junior College 函館短期大学'), (49025, 'https://ror.org/04qca6973', 'no_lang_code', 1, 'https://ror.org/04qca6973 Chemical Semantics (United States)'), (49026, 'https://ror.org/04qchsx62', 'de', 1, 'https://ror.org/04qchsx62 IGES Institut, Institut für Gesundheits- und Sozialforschung'), (49027, 'https://ror.org/04qfaak15', 'en', 1, 'https://ror.org/04qfaak15 Fraunhofer Institute for Factory Operation and Automation Fraunhofer-Institut für Fabrikbetrieb und -automatisierung'), (49028, 'https://ror.org/04qfsp079', 'en', 1, 'https://ror.org/04qfsp079 Universal Management Services'), (49029, 'https://ror.org/04qg98577', 'no_lang_code', 1, 'https://ror.org/04qg98577 Federal Mogul (United Kingdom)'), (49030, 'https://ror.org/04qg9ew14', 'no_lang_code', 1, 'https://ror.org/04qg9ew14 Produce Investments (United Kingdom)'), (49031, 'https://ror.org/04qj89w85', 'en', 1, 'https://ror.org/04qj89w85 Danish Agency for Culture and Palaces'), (49032, 'https://ror.org/04qnjas92', 'en', 1, 'https://ror.org/04qnjas92 Ministry of Agriculture and Forestry and Food'), (49033, 'https://ror.org/04qnjqh32', 'en', 1, 'https://ror.org/04qnjqh32 Idaho Association of School Administrators'), (49034, 'https://ror.org/04qrdn471', 'no_lang_code', 1, 'https://ror.org/04qrdn471 Lintec Corporation (Japan) リンテック'), (49035, 'https://ror.org/04qsp9f77', 'en', 1, 'https://ror.org/04qsp9f77 Catholic University Institute of Buea'), (49036, 'https://ror.org/04qtyk830', 'no_lang_code', 1, 'https://ror.org/04qtyk830 Sendai Tateyama Tanaka School 仙台市立山田中学校'), (49037, 'https://ror.org/04qva2v49', 'de', 1, 'https://ror.org/04qva2v49 LVR-Klinik für Orthopädie Viersen'), (49038, 'https://ror.org/04qvxeh20', 'no_lang_code', 1, 'https://ror.org/04qvxeh20 Air Squared (United States)'), (49039, 'https://ror.org/04qw2v147', 'en', 1, 'https://ror.org/04qw2v147 Spokane Falls Community College'), (49040, 'https://ror.org/04qxh5x87', 'no_lang_code', 1, 'https://ror.org/04qxh5x87 Unicharm (Japan) ユニ·チャーム株式会社'), (49041, 'https://ror.org/04qy22d94', 'no_lang_code', 1, 'https://ror.org/04qy22d94 Trimble (United States)'), (49042, 'https://ror.org/04qy3pa58', 'en', 1, 'https://ror.org/04qy3pa58 Florida College System'), (49043, 'https://ror.org/04qz58m35', 'en', 1, 'https://ror.org/04qz58m35 Riverbank Local Redevelopment Authority'), (49044, 'https://ror.org/04qzk5f10', 'en', 1, 'https://ror.org/04qzk5f10 Osaka Prefectural Makino high school 大阪府立牧野高等学校'), (49045, 'https://ror.org/04qzp1e08', 'en', 1, 'https://ror.org/04qzp1e08 Miyagi Prefecture Sendai Higashi High School 宮城県仙台東高等学校'), (49046, 'https://ror.org/04r0px617', 'no_lang_code', 1, 'https://ror.org/04r0px617 Central City Brewers and Distillers (Canada)'), (49047, 'https://ror.org/04r13k538', 'en', 1, 'https://ror.org/04r13k538 Most Sacred Heart of Jesus Cardiology and Valvular Institute'), (49048, 'https://ror.org/04r1zyg39', 'en', 1, 'https://ror.org/04r1zyg39 Denenchofu Lutheran Kindergarten'), (49049, 'https://ror.org/04r3js259', 'en', 1, 'https://ror.org/04r3js259 Asian Transportation Research Society'), (49050, 'https://ror.org/04r56x957', 'en', 1, 'https://ror.org/04r56x957 Freedom Writers Foundation'), (49051, 'https://ror.org/04r5br045', 'no_lang_code', 1, 'https://ror.org/04r5br045 Imation (United States)'), (49052, 'https://ror.org/04r6h9t04', 'no_lang_code', 1, 'https://ror.org/04r6h9t04 TE Connectivity (Germany)'), (49053, 'https://ror.org/04r92nh16', 'en', 1, 'https://ror.org/04r92nh16 International Community Health Services'), (49054, 'https://ror.org/04ra3cs69', 'no_lang_code', 1, 'https://ror.org/04ra3cs69 Saudi Arabia Basic Industries (Netherlands)'), (49055, 'https://ror.org/04raysj94', 'en', 1, 'https://ror.org/04raysj94 Kagoshima Women''s Junior College 鹿児島女子短期大学'), (49056, 'https://ror.org/04rb4b520', 'no_lang_code', 1, 'https://ror.org/04rb4b520 Tetra Laval (Switzerland)'), (49057, 'https://ror.org/04rbcv404', 'en', 1, 'https://ror.org/04rbcv404 Supply Chain Competence Center (Germany)'), (49058, 'https://ror.org/04rcfgv74', 'en', 1, 'https://ror.org/04rcfgv74 Ministry of Agriculture Forestry and Fisheries ក្រសួងកសិកម្ម រុក្ខាប្រមាញ់ និងនេសាទ'), (49059, 'https://ror.org/04rdyj788', 'en', 1, 'https://ror.org/04rdyj788 Sakai Technology High School 大阪府立堺工科高等学校'), (49060, 'https://ror.org/04rfpd926', 'no_lang_code', 1, 'https://ror.org/04rfpd926 Aichi Gakusen College 愛知学泉短期大学'), (49061, 'https://ror.org/04rfpye28', 'no_lang_code', 1, 'https://ror.org/04rfpye28 Applied Sciences Laboratory (United States)'), (49062, 'https://ror.org/04rgfzt17', 'no_lang_code', 1, 'https://ror.org/04rgfzt17 Advanced Semiconductor Engineering (Taiwan) 日月光集团'), (49063, 'https://ror.org/04rgq7p67', 'no_lang_code', 1, 'https://ror.org/04rgq7p67 Foremost (Canada)'), (49064, 'https://ror.org/04rn6qc33', 'en', 1, 'https://ror.org/04rn6qc33 Okinawa Prefectural Museum 沖縄県立博物館・美術館'), (49065, 'https://ror.org/04rqf3930', 'en', 1, 'https://ror.org/04rqf3930 Yamanashi Prefectural Education Center 山梨県総合教育センター'), (49066, 'https://ror.org/04rszyv41', 'en', 1, 'https://ror.org/04rszyv41 Australian Library and Information Association'), (49067, 'https://ror.org/04rtn5y32', 'en', 1, 'https://ror.org/04rtn5y32 Forschungsinstitut für Kraftfahrwesen und Fahrzeugmotoren Stuttgart Research Institute of Automotive Engineering and Vehicle Engines Stuttgart'), (49068, 'https://ror.org/04rvh3240', 'en', 1, 'https://ror.org/04rvh3240 Al-Mustafa Open University المصطفی دانشگاه آزاد'), (49069, 'https://ror.org/04rwyne07', 'en', 1, 'https://ror.org/04rwyne07 Saving Tiny Hearts Society'), (49070, 'https://ror.org/04rzhfa50', 'no_lang_code', 1, 'https://ror.org/04rzhfa50 Fresenius Kabi (United States)'), (49071, 'https://ror.org/04s0zae50', 'en', 1, 'https://ror.org/04s0zae50 American Association of Critical-Care Nurses'), (49072, 'https://ror.org/04s147q83', 'en', 1, 'https://ror.org/04s147q83 Dawkins Dermatology'), (49073, 'https://ror.org/04s1pd637', 'no_lang_code', 1, 'https://ror.org/04s1pd637 Element Six (South Africa)'), (49074, 'https://ror.org/04s3xvj56', 'no_lang_code', 1, 'https://ror.org/04s3xvj56 Petroleum Geo-Services (United Kingdom)'), (49075, 'https://ror.org/04s5gc466', 'en', 1, 'https://ror.org/04s5gc466 Mongolian Nature and Environment Consortium'), (49076, 'https://ror.org/04s5wwh39', 'en', 1, 'https://ror.org/04s5wwh39 Anshan Normal University 鞍山师范学院'), (49077, 'https://ror.org/04s6age96', 'en', 1, 'https://ror.org/04s6age96 Aichi Bunkyo Women''s College 愛知文教女子短期大学'), (49078, 'https://ror.org/04s6bs470', 'no_lang_code', 1, 'https://ror.org/04s6bs470 Prysmian Group (United States)'), (49079, 'https://ror.org/04s8pbj86', 'no_lang_code', 1, 'https://ror.org/04s8pbj86 SciKon Innovation (United States)'), (49080, 'https://ror.org/04s9bdj81', 'en', 1, 'https://ror.org/04s9bdj81 Danish Energy Association Dansk Energi'), (49081, 'https://ror.org/04s9pf004', 'en', 1, 'https://ror.org/04s9pf004 Zhejiang Pharmaceutical College 浙江医药高等专科学校'), (49082, 'https://ror.org/04saf2403', 'en', 1, 'https://ror.org/04saf2403 Asian Academy of Film and Television'), (49083, 'https://ror.org/04safzk84', 'no_lang_code', 1, 'https://ror.org/04safzk84 Dynea (Austria)'), (49084, 'https://ror.org/04sbhjg04', 'no_lang_code', 1, 'https://ror.org/04sbhjg04 Zhejiang Chem-tech Group (China) 浙江化工科技集团有限公司精细化工厂'), (49085, 'https://ror.org/04sedwh45', 'en', 1, 'https://ror.org/04sedwh45 American Parkinson Disease Association'), (49086, 'https://ror.org/04sfv4t11', 'no_lang_code', 1, 'https://ror.org/04sfv4t11 FPoliSolutions (United States)'), (49087, 'https://ror.org/04sg12k28', 'no_lang_code', 1, 'https://ror.org/04sg12k28 Powerlink Queensland (Australia)'), (49088, 'https://ror.org/04sg72471', 'en', 1, 'https://ror.org/04sg72471 University of Battambang'), (49089, 'https://ror.org/04sggj290', 'en', 1, 'https://ror.org/04sggj290 Mental Health Association of Westchester County'), (49090, 'https://ror.org/04sgkrh50', 'en', 1, 'https://ror.org/04sgkrh50 Shizuoka Prefectural Board of Education 静岡県教育委員会'), (49091, 'https://ror.org/04sj13f52', 'no_lang_code', 1, 'https://ror.org/04sj13f52 Avery Dennison (United States)'), (49092, 'https://ror.org/04skm6d44', 'en', 1, 'https://ror.org/04skm6d44 Japan University Accreditation Association 公益財団法人 大学基準協会'), (49093, 'https://ror.org/04sksc249', 'en', 1, 'https://ror.org/04sksc249 Society of Instrument and Control Engineers 計測自動制御学会'), (49094, 'https://ror.org/04sm16305', 'no_lang_code', 1, 'https://ror.org/04sm16305 Mitsui Engineering and Shipbuilding (Japan) 三井造船'), (49095, 'https://ror.org/04sn6y446', 'en', 1, 'https://ror.org/04sn6y446 Udupi Shri Admar Mutt Education Council'), (49096, 'https://ror.org/04sq30h86', 'en', 1, 'https://ror.org/04sq30h86 Fukuoka College of Health Sciences 福岡医療短期大学'), (49097, 'https://ror.org/04srze519', 'en', 1, 'https://ror.org/04srze519 Mitutoyo Association for Science and Technology 公益財団法人 三豊科学技術振興協会'), (49098, 'https://ror.org/04sssnv16', 'en', 1, 'https://ror.org/04sssnv16 Islamic Azad University Pharmaceutical Sciences Branch دانشگاه آزاد اسلامی واحد علوم دارویی'), (49099, 'https://ror.org/04st9j994', 'fr', 1, 'https://ror.org/04st9j994 Université de Maradi'), (49100, 'https://ror.org/04stsnh03', 'no_lang_code', 1, 'https://ror.org/04stsnh03 Photolitec (United States)'), (49101, 'https://ror.org/04sw4z761', 'en', 1, 'https://ror.org/04sw4z761 Moscow Technological Institute'), (49102, 'https://ror.org/04syjc425', 'en', 1, 'https://ror.org/04syjc425 Danish Defence Acquisition and Logistics Organization Forsvarets Materiel- og Indkøbsstyrelse'), (49103, 'https://ror.org/04szen554', 'de', 1, 'https://ror.org/04szen554 Marie Meierhofer Institut für das Kind'), (49104, 'https://ror.org/04t3acx61', 'en', 1, 'https://ror.org/04t3acx61 Kitsap Mental Health Services'), (49105, 'https://ror.org/04t3phk92', 'no_lang_code', 1, 'https://ror.org/04t3phk92 Agilent Technologies (Australia)'), (49106, 'https://ror.org/04t53ag79', 'en', 1, 'https://ror.org/04t53ag79 Niigata Prefectural Naoetsu Secondary School 新潟県立直江津高等学校'), (49107, 'https://ror.org/04t69kx04', 'no_lang_code', 1, 'https://ror.org/04t69kx04 Insero E-Mobility (Denmark)'), (49108, 'https://ror.org/04t760j73', 'en', 1, 'https://ror.org/04t760j73 Kanazawa Municipal Technical High School 金沢市立工業高等学校'), (49109, 'https://ror.org/04t7ypr69', 'no_lang_code', 1, 'https://ror.org/04t7ypr69 Elekta (United Kingdom)'), (49110, 'https://ror.org/04t8h6g06', 'en', 1, 'https://ror.org/04t8h6g06 Kochi Technical High School 高知県立高知工業高等学校'), (49111, 'https://ror.org/04t8w3r40', 'es', 1, 'https://ror.org/04t8w3r40 Servicio Geológico Minero Argentino'), (49112, 'https://ror.org/04taj5290', 'no_lang_code', 1, 'https://ror.org/04taj5290 Moulton Bulb (United Kingdom)'), (49113, 'https://ror.org/04tans503', 'en', 1, 'https://ror.org/04tans503 Shenzhen Blood Center 深圳市血液中心'), (49114, 'https://ror.org/04tatke33', 'no_lang_code', 1, 'https://ror.org/04tatke33 Spyryx Biosciences (United States)'), (49115, 'https://ror.org/04tc04306', 'en', 1, 'https://ror.org/04tc04306 Islamic Azad University Quchan دانشگاه آزاد اسلامی واحد قوچان'), (49116, 'https://ror.org/04tdwrj58', 'it', 1, 'https://ror.org/04tdwrj58 Wikimedia Italia'), (49117, 'https://ror.org/04te90b83', 'en', 1, 'https://ror.org/04te90b83 Cascade Bicycle Club Education Foundation'), (49118, 'https://ror.org/04tenkb98', 'en', 1, 'https://ror.org/04tenkb98 German Graduate School of Management and Law'), (49119, 'https://ror.org/04tg4wv11', 'pt', 1, 'https://ror.org/04tg4wv11 Wikimedia Portugal'), (49120, 'https://ror.org/04tn8zp39', 'en', 1, 'https://ror.org/04tn8zp39 Centre for Remote Health'), (49121, 'https://ror.org/04tqjn232', 'fr', 1, 'https://ror.org/04tqjn232 Association des Médecins Vétérinaires du Québec'), (49122, 'https://ror.org/04tqxjj42', 'en', 1, 'https://ror.org/04tqxjj42 Tottori Prefectural Yonago High School 鳥取県立米子高等学校'), (49123, 'https://ror.org/04tr5bk94', 'en', 1, 'https://ror.org/04tr5bk94 Tokyo Metropolitan Tachikawa High School 東京都立立川高等学校'), (49124, 'https://ror.org/04trbvb35', 'no_lang_code', 1, 'https://ror.org/04trbvb35 Bridgestone (Japan) 株式会社ブリヂストン'), (49125, 'https://ror.org/04tshhm50', 'en', 1, 'https://ror.org/04tshhm50 Shanxi Academy of Medical Sciences 医学科学研究院山西'), (49126, 'https://ror.org/04tv07n86', 'en', 1, 'https://ror.org/04tv07n86 Methodology Centre for Environment Assessment'), (49127, 'https://ror.org/04tv6t942', 'en', 1, 'https://ror.org/04tv6t942 Niswonger Foundation'), (49128, 'https://ror.org/04tw81938', 'no_lang_code', 1, 'https://ror.org/04tw81938 Transtria (United States)'), (49129, 'https://ror.org/04v0npt58', 'en', 1, 'https://ror.org/04v0npt58 Toyonaka City Board of Education 教育委員会 豊中市'), (49130, 'https://ror.org/04v65wy58', 'en', 1, 'https://ror.org/04v65wy58 Saitama Prefectural Toyooka High School 埼玉県立豊岡高等学校'), (49131, 'https://ror.org/04v68r337', 'en', 1, 'https://ror.org/04v68r337 Child Health Foundation'), (49132, 'https://ror.org/04v71zy84', 'no_lang_code', 1, 'https://ror.org/04v71zy84 Toyoda Gosei (Germany)'), (49133, 'https://ror.org/04v7gxe28', 'no_lang_code', 1, 'https://ror.org/04v7gxe28 Tektronix (Japan)'), (49134, 'https://ror.org/04v84qq53', 'tr', 1, 'https://ror.org/04v84qq53 Aydın Adnan Menderes Üniversitesi Uygulama ve Araştırma Hastanesi'), (49135, 'https://ror.org/04v9jks60', 'en', 1, 'https://ror.org/04v9jks60 Boston Center for Independent Living'), (49136, 'https://ror.org/04vbmne73', 'en', 1, 'https://ror.org/04vbmne73 Sakura Walnut Kindergarten'), (49137, 'https://ror.org/04vc08p32', 'en', 1, 'https://ror.org/04vc08p32 National Defence College Kenya'), (49138, 'https://ror.org/04vdcpp96', 'en', 1, 'https://ror.org/04vdcpp96 Academy of Sciences of the Republic of Bashkortostan Академия Наук Республики Башкортостан'), (49139, 'https://ror.org/04vfs5h36', 'en', 1, 'https://ror.org/04vfs5h36 Washington State University Spokane'), (49140, 'https://ror.org/04vg6xp73', 'en', 1, 'https://ror.org/04vg6xp73 Hiroshima Prefectural Rehabilitation Center 広島県立障害者リハビリテーションセンター'), (49141, 'https://ror.org/04vgjs034', 'en', 1, 'https://ror.org/04vgjs034 London Hydro'), (49142, 'https://ror.org/04vn6x894', 'en', 1, 'https://ror.org/04vn6x894 International Centre for Sustainable Development of Energy, Water and Environment Systems'), (49143, 'https://ror.org/04vp8pb02', 'no_lang_code', 1, 'https://ror.org/04vp8pb02 West Pharmaceuticals (Germany)'), (49144, 'https://ror.org/04vp9r166', 'en', 1, 'https://ror.org/04vp9r166 Excelencia in Education'), (49145, 'https://ror.org/04vpecq51', 'en', 1, 'https://ror.org/04vpecq51 Bharti Hospital'), (49146, 'https://ror.org/04vpw9274', 'en', 1, 'https://ror.org/04vpw9274 Björneborgs universitetscenter Porin yliopistokeskus University Consortium of Pori'), (49147, 'https://ror.org/04vq3zr60', 'no_lang_code', 1, 'https://ror.org/04vq3zr60 Machfu (United States)'), (49148, 'https://ror.org/04vqpq732', 'en', 1, 'https://ror.org/04vqpq732 Institute for Research on Household Economics 家計経済研究所'), (49149, 'https://ror.org/04vqws538', 'no_lang_code', 1, 'https://ror.org/04vqws538 Mirexus (Canada)'), (49150, 'https://ror.org/04vr3n661', 'en', 1, 'https://ror.org/04vr3n661 Shizuoka Prefectural Police 静岡県警察'), (49151, 'https://ror.org/04vs0xj88', 'en', 1, 'https://ror.org/04vs0xj88 International Business College - Indianapolis'), (49152, 'https://ror.org/04vttb719', 'en', 1, 'https://ror.org/04vttb719 Ministeri y''Ibikorwaremezo Ministry of Infrastructure Ministère des Infrastructures'), (49153, 'https://ror.org/04vtzbx16', 'en', 1, 'https://ror.org/04vtzbx16 Qinghai Provincial Peoples Hospital 青海省人民医院'), (49154, 'https://ror.org/04vxve916', 'en', 1, 'https://ror.org/04vxve916 British Society for Oral and Dental Research'), (49155, 'https://ror.org/04vxxnr42', 'no_lang_code', 1, 'https://ror.org/04vxxnr42 General Electric (Argentina)'), (49156, 'https://ror.org/04vz9vy80', 'no_lang_code', 1, 'https://ror.org/04vz9vy80 Japan Display (Japan) 株式会社ジャパンディスプレイ'), (49157, 'https://ror.org/04w3fk764', 'en', 1, 'https://ror.org/04w3fk764 Clayton Christensen Institute'), (49158, 'https://ror.org/04w491k66', 'en', 1, 'https://ror.org/04w491k66 Desmond and Leah Tutu Legacy Foundation'), (49159, 'https://ror.org/04w68ym71', 'en', 1, 'https://ror.org/04w68ym71 University Association for Research in Fundamental Psychopathology'), (49160, 'https://ror.org/04w6n5s59', 'no_lang_code', 1, 'https://ror.org/04w6n5s59 Medtronic (Israel)'), (49161, 'https://ror.org/04w6x9t25', 'no_lang_code', 1, 'https://ror.org/04w6x9t25 Zumtobel Group (Germany)'), (49162, 'https://ror.org/04w8dt298', 'en', 1, 'https://ror.org/04w8dt298 Quest International University Perak'), (49163, 'https://ror.org/04wa64s85', 'no_lang_code', 1, 'https://ror.org/04wa64s85 Nagoya College 名古屋短期大学'), (49164, 'https://ror.org/04wb86f41', 'en', 1, 'https://ror.org/04wb86f41 Industrial Plankton'), (49165, 'https://ror.org/04wbz7w60', 'en', 1, 'https://ror.org/04wbz7w60 Institute of History of Material Culture Институт истории материальной культуры РАН [править | править вики-текст]'), (49166, 'https://ror.org/04wezhr50', 'en', 1, 'https://ror.org/04wezhr50 International Institute for the Study of Religions 国際宗教研究所財団'), (49167, 'https://ror.org/04wfh0972', 'en', 1, 'https://ror.org/04wfh0972 Tokyo Rissho Junior College 東京立正短期大学'), (49168, 'https://ror.org/04wghbv83', 'en', 1, 'https://ror.org/04wghbv83 NewTech Network'), (49169, 'https://ror.org/04wh4y985', 'en', 1, 'https://ror.org/04wh4y985 St Clements University Higher Education School'), (49170, 'https://ror.org/04whk3274', 'no_lang_code', 1, 'https://ror.org/04whk3274 New Britain Palm Oil (Papua New Guinea)'), (49171, 'https://ror.org/04wjkw450', 'en', 1, 'https://ror.org/04wjkw450 Institute of Endemic Disease Control in Shandong Province 山东省地方病防治研究所'), (49172, 'https://ror.org/04wka5f51', 'no_lang_code', 1, 'https://ror.org/04wka5f51 Citrine Informatics (United States)'), (49173, 'https://ror.org/04wnc5n11', 'no_lang_code', 1, 'https://ror.org/04wnc5n11 Envergex (United States)'), (49174, 'https://ror.org/04wsndj47', 'en', 1, 'https://ror.org/04wsndj47 Okayama City Ishii Elementary School 岡山市立石井小学校'), (49175, 'https://ror.org/04wts6j28', 'no_lang_code', 1, 'https://ror.org/04wts6j28 Empire Genomics (United States)'), (49176, 'https://ror.org/04wvr3489', 'en', 1, 'https://ror.org/04wvr3489 Australian Federation of University Women – South Australia'), (49177, 'https://ror.org/04wxd9348', 'en', 1, 'https://ror.org/04wxd9348 Center for Teaching Quality'), (49178, 'https://ror.org/04wyk9691', 'en', 1, 'https://ror.org/04wyk9691 Cascades Volcano Observatory'), (49179, 'https://ror.org/04wyn7z78', 'en', 1, 'https://ror.org/04wyn7z78 Idaho Commission for Libraries'), (49180, 'https://ror.org/04wyrwx07', 'en', 1, 'https://ror.org/04wyrwx07 Chiba Prefectural Kimitsu Aoba High School 千葉県立君津青葉高等学校'), (49181, 'https://ror.org/04wyxrk96', 'no_lang_code', 1, 'https://ror.org/04wyxrk96 Orica (Singapore)'), (49182, 'https://ror.org/04x12dp53', 'no_lang_code', 1, 'https://ror.org/04x12dp53 Motility (United States)'), (49183, 'https://ror.org/04x3svs29', 'en', 1, 'https://ror.org/04x3svs29 Educational Results Partnership'), (49184, 'https://ror.org/04x5anb81', 'en', 1, 'https://ror.org/04x5anb81 China Academy of Traditional Chinese Medicine Hospital of Ophthalmology 中国中医科学院眼科医院'), (49185, 'https://ror.org/04xatxv47', 'en', 1, 'https://ror.org/04xatxv47 Aichi Prefectural Xincheng East High School 愛知県立新城東高等学校'), (49186, 'https://ror.org/04xbz3316', 'en', 1, 'https://ror.org/04xbz3316 Miyazaki Prefectural Museum of Nature and History 宮崎県総合博物館'), (49187, 'https://ror.org/04xcafs23', 'en', 1, 'https://ror.org/04xcafs23 Wichita-Sedgwick County Historical Museum'), (49188, 'https://ror.org/04xegkb78', 'no_lang_code', 1, 'https://ror.org/04xegkb78 Sphaera Pharma (Singapore)'), (49189, 'https://ror.org/04xf9hg85', 'no_lang_code', 1, 'https://ror.org/04xf9hg85 Spectral Labs (United States)'), (49190, 'https://ror.org/04xfwhf17', 'en', 1, 'https://ror.org/04xfwhf17 National Institute of Technology, Kagawa College 香川高等専門学校'), (49191, 'https://ror.org/04xh6km87', 'en', 1, 'https://ror.org/04xh6km87 Toyoshina High School 豊科高等学校'), (49192, 'https://ror.org/04xjcj004', 'no_lang_code', 1, 'https://ror.org/04xjcj004 Woodmere Nursery (Canada)'), (49193, 'https://ror.org/04xjxdt77', 'no_lang_code', 1, 'https://ror.org/04xjxdt77 Universal Beauty Products (United States)'), (49194, 'https://ror.org/04xkkx196', 'en', 1, 'https://ror.org/04xkkx196 Medic One Foundation'), (49195, 'https://ror.org/04xrvke88', 'no_lang_code', 1, 'https://ror.org/04xrvke88 Optimisa Research (United Kingdom)'), (49196, 'https://ror.org/04xt43068', 'no_lang_code', 1, 'https://ror.org/04xt43068 Hokkaido Museum 北海道博物館'), (49197, 'https://ror.org/04xvx5n85', 'no_lang_code', 1, 'https://ror.org/04xvx5n85 Samraksh (United States)'), (49198, 'https://ror.org/04xw60528', 'en', 1, 'https://ror.org/04xw60528 Marine Royale Canadienne Royal Canadian Navy'), (49199, 'https://ror.org/04xw8f995', 'no_lang_code', 1, 'https://ror.org/04xw8f995 Atlas Copco (United States)'), (49200, 'https://ror.org/04xwm9403', 'no_lang_code', 1, 'https://ror.org/04xwm9403 VoltServer (United States)'), (49201, 'https://ror.org/04y1c3h69', 'no_lang_code', 1, 'https://ror.org/04y1c3h69 Sigray (United States)'), (49202, 'https://ror.org/04y2bnd24', 'no_lang_code', 1, 'https://ror.org/04y2bnd24 Lincoln Electric (United States)'), (49203, 'https://ror.org/04y2hja28', 'en', 1, 'https://ror.org/04y2hja28 International Center for Not-for-Profit Law'), (49204, 'https://ror.org/04y2tt160', 'en', 1, 'https://ror.org/04y2tt160 Tri-County Council for Southern Maryland'), (49205, 'https://ror.org/04y4mb158', 'en', 1, 'https://ror.org/04y4mb158 Tokyo Union Theological Seminary 東京神学大学'), (49206, 'https://ror.org/04y72kg92', 'no_lang_code', 1, 'https://ror.org/04y72kg92 BioChain Institute (United States)'), (49207, 'https://ror.org/04y8cm806', 'en', 1, 'https://ror.org/04y8cm806 Japanese Circulation Society 日本循環器学会'), (49208, 'https://ror.org/04y8p0f91', 'en', 1, 'https://ror.org/04y8p0f91 Fraunhofer Institute for Building Physics Fraunhofer-Institut für Bauphysik'), (49209, 'https://ror.org/04y96wg46', 'en', 1, 'https://ror.org/04y96wg46 Imperial College of Toronto'), (49210, 'https://ror.org/04yaf9a96', 'no_lang_code', 1, 'https://ror.org/04yaf9a96 Accenture (Luxembourg)'), (49211, 'https://ror.org/04yagfz71', 'en', 1, 'https://ror.org/04yagfz71 Center on Education Policy'), (49212, 'https://ror.org/04ye8xg90', 'en', 1, 'https://ror.org/04ye8xg90 Central Florida Regional Planning Council'), (49213, 'https://ror.org/04ymjyh53', 'en', 1, 'https://ror.org/04ymjyh53 Foetal Alcohol Spectrum Disorders Clinic'), (49214, 'https://ror.org/04yppq721', 'en', 1, 'https://ror.org/04yppq721 Australasian Institute of Mining and Metallurgy'), (49215, 'https://ror.org/04yrcjm56', 'en', 1, 'https://ror.org/04yrcjm56 Second Affiliated Hospital of Xuzhou Medical College 徐州医学院第二附属医院'), (49216, 'https://ror.org/04ys0ah18', 'en', 1, 'https://ror.org/04ys0ah18 Max Planck Institute Luxemburg for International, European and Regulatory Procedural Law'), (49217, 'https://ror.org/04yw9eb05', 'en', 1, 'https://ror.org/04yw9eb05 British Society for Antimicrobial Chemotherapy'), (49218, 'https://ror.org/04z1e3n06', 'en', 1, 'https://ror.org/04z1e3n06 Livestock & Meat Commission'), (49219, 'https://ror.org/04z1myv13', 'es', 1, 'https://ror.org/04z1myv13 Comfenalco Technological University Foundation Fundación Universitaria Tecnológico Comfenalco Cartagena'), (49220, 'https://ror.org/04z2tt918', 'en', 1, 'https://ror.org/04z2tt918 Walker County Red Cross Hospital 获嘉县红十字医院'), (49221, 'https://ror.org/04z2vav77', 'en', 1, 'https://ror.org/04z2vav77 Jacaranda Health'), (49222, 'https://ror.org/04z5zh552', 'en', 1, 'https://ror.org/04z5zh552 Foundation For The Carolinas'), (49223, 'https://ror.org/04z6j1174', 'no_lang_code', 1, 'https://ror.org/04z6j1174 Rambus (United Kingdom)'), (49224, 'https://ror.org/04z6q9z55', 'fr', 1, 'https://ror.org/04z6q9z55 Sidaction'), (49225, 'https://ror.org/04z8qf553', 'en', 1, 'https://ror.org/04z8qf553 HPO Research Group'), (49226, 'https://ror.org/04zddqw39', 'no_lang_code', 1, 'https://ror.org/04zddqw39 TeleConsult Austria (Austria)'), (49227, 'https://ror.org/04zdhre16', 'no_lang_code', 1, 'https://ror.org/04zdhre16 Alcoa (Germany)'), (49228, 'https://ror.org/04zh6m791', 'es', 1, 'https://ror.org/04zh6m791 Universidad José Vasconcelos'), (49229, 'https://ror.org/04zj17j36', 'en', 1, 'https://ror.org/04zj17j36 British Society for Plant Pathology'), (49230, 'https://ror.org/04zj2qc05', 'en', 1, 'https://ror.org/04zj2qc05 Asia Network for Sustainable Agriculture and Bioresources'), (49231, 'https://ror.org/04zp7ch64', 'en', 1, 'https://ror.org/04zp7ch64 Global Child Nutrition Foundation'), (49232, 'https://ror.org/04zp8dw64', 'no_lang_code', 1, 'https://ror.org/04zp8dw64 Nippon Sheet Glass (United States)'), (49233, 'https://ror.org/04zpf5j19', 'en', 1, 'https://ror.org/04zpf5j19 Ministry of Agriculture and Livestock'), (49234, 'https://ror.org/04zq68n70', 'no_lang_code', 1, 'https://ror.org/04zq68n70 EnerSys (Switzerland)'), (49235, 'https://ror.org/04zq76066', 'en', 1, 'https://ror.org/04zq76066 San Diego Association of Governments'), (49236, 'https://ror.org/04zrrk968', 'en', 1, 'https://ror.org/04zrrk968 Anhui Provincial Meteorological Bureau 安徽省气象局'), (49237, 'https://ror.org/04zseas36', 'pt', 1, 'https://ror.org/04zseas36 Associação Brasileira de Terapia Celular'), (49238, 'https://ror.org/04zt5qa54', 'en', 1, 'https://ror.org/04zt5qa54 Kyoto Prefectural Institute of Public Health and Environment 京都府保健環境研究所'), (49239, 'https://ror.org/04ztf2c56', 'en', 1, 'https://ror.org/04ztf2c56 Sanjo Municipal Tsukioka Elementary School 三条市立月岡小学校'), (49240, 'https://ror.org/04zv7sm47', 'en', 1, 'https://ror.org/04zv7sm47 Osaka Prefectural Sano Polytechnic High School 大阪府立佐野工科高等学校'), (49241, 'https://ror.org/04zws1j77', 'no_lang_code', 1, 'https://ror.org/04zws1j77 Fabmatics (Germany)'), (49242, 'https://ror.org/0500gae26', 'en', 1, 'https://ror.org/0500gae26 La Société géographique royale du Canada Royal Canadian Geographical Society'), (49243, 'https://ror.org/0500yaj74', 'en', 1, 'https://ror.org/0500yaj74 Victoria Police'), (49244, 'https://ror.org/05011pz46', 'no_lang_code', 1, 'https://ror.org/05011pz46 Commvault (United States)'), (49245, 'https://ror.org/050332k40', 'no_lang_code', 1, 'https://ror.org/050332k40 Johnson Controls (Canada)'), (49246, 'https://ror.org/0503rt987', 'no_lang_code', 1, 'https://ror.org/0503rt987 Oki Electric Industry (Japan) 沖電気工業株式会社'), (49247, 'https://ror.org/0503v4y98', 'no_lang_code', 1, 'https://ror.org/0503v4y98 Toyota Industries (Japan) 株式会社豊田自動織機,'), (49248, 'https://ror.org/0504zvt24', 'en', 1, 'https://ror.org/0504zvt24 American Society of News Editors'), (49249, 'https://ror.org/05062q345', 'pt', 1, 'https://ror.org/05062q345 Sociedade Brasileira de Educação Matemática'), (49250, 'https://ror.org/050a0jp38', 'no_lang_code', 1, 'https://ror.org/050a0jp38 Helbio (Greece)'), (49251, 'https://ror.org/050b8h122', 'en', 1, 'https://ror.org/050b8h122 Parkinson''s Clinic of Eastern Toronto & Movement Disorders Centre'), (49252, 'https://ror.org/050bkqc56', 'no_lang_code', 1, 'https://ror.org/050bkqc56 Meguro Parasitological Museum 目黒寄生虫館'), (49253, 'https://ror.org/050btbx23', 'no_lang_code', 1, 'https://ror.org/050btbx23 Hubbell (United Kingdom)'), (49254, 'https://ror.org/050bz3844', 'en', 1, 'https://ror.org/050bz3844 Archaeological Institute of Kashihara 奈良県立橿原考古学研究所'), (49255, 'https://ror.org/050d1hk46', 'no_lang_code', 1, 'https://ror.org/050d1hk46 SunEdison (Singapore)'), (49256, 'https://ror.org/050e1z365', 'no_lang_code', 1, 'https://ror.org/050e1z365 XG Sciences (United States)'), (49257, 'https://ror.org/050f4mc80', 'en', 1, 'https://ror.org/050f4mc80 Carinthian Economic Promotion Fund Kärntner Wirtschaftsförderungs Fonds'), (49258, 'https://ror.org/050f9s475', 'en', 1, 'https://ror.org/050f9s475 NM Sadguru Water and Development Foundation'), (49259, 'https://ror.org/050hkx325', 'en', 1, 'https://ror.org/050hkx325 Tokyo National Museum 東京国立博物館'), (49260, 'https://ror.org/050j82f52', 'no_lang_code', 1, 'https://ror.org/050j82f52 TE Connectivity (United Kingdom)'), (49261, 'https://ror.org/050m4ps22', 'en', 1, 'https://ror.org/050m4ps22 Sri Dharmasthala Manjunatheshwara Educational Society ಎಸ್.ಡಿ.ಎಂ ಶೈಕ್ಷಣಿಕ ಸಂಸ್ಥೆ'), (49262, 'https://ror.org/050nvag51', 'en', 1, 'https://ror.org/050nvag51 Committee for Economic Development'), (49263, 'https://ror.org/050pkwa79', 'no_lang_code', 1, 'https://ror.org/050pkwa79 Tobu Ryoiku Center 東京都立東部療育センター'), (49264, 'https://ror.org/050qk7w58', 'no_lang_code', 1, 'https://ror.org/050qk7w58 Garrett Technologies (United States)'), (49265, 'https://ror.org/050raka84', 'pt', 1, 'https://ror.org/050raka84 Fundação Planetário da Cidade do Rio de Janeiro'), (49266, 'https://ror.org/050tayp70', 'en', 1, 'https://ror.org/050tayp70 Breastopia Namba Hospital'), (49267, 'https://ror.org/050zd7q22', 'en', 1, 'https://ror.org/050zd7q22 African Comprehensive HIV/AIDS Partnerships'), (49268, 'https://ror.org/05118ff02', 'en', 1, 'https://ror.org/05118ff02 East Asia Research'), (49269, 'https://ror.org/0513ngw03', 'en', 1, 'https://ror.org/0513ngw03 Matsumoto Meat Hygienic Inspection Center of Nagano Prefecture 長野県松本食肉衛生検査所'), (49270, 'https://ror.org/0514gnk26', 'no_lang_code', 1, 'https://ror.org/0514gnk26 Panacea Solution (United States)'), (49271, 'https://ror.org/0515mqy80', 'no_lang_code', 1, 'https://ror.org/0515mqy80 Nortek (United Kingdom)'), (49272, 'https://ror.org/051anhc42', 'pl', 1, 'https://ror.org/051anhc42 Samodzielny Publiczny Wojewódzki Szpital Zespolony im. Marii Skłodowskiej – Curie'), (49273, 'https://ror.org/051bey794', 'en', 1, 'https://ror.org/051bey794 Kanagawa Prefectural Shonan High School 神奈川県立湘南高等学校'), (49274, 'https://ror.org/051bxj583', 'en', 1, 'https://ror.org/051bxj583 Constitutional Rights Foundation'), (49275, 'https://ror.org/051c1fs51', 'es', 1, 'https://ror.org/051c1fs51 Fundación Oikos'), (49276, 'https://ror.org/051gaae98', 'no_lang_code', 1, 'https://ror.org/051gaae98 Tellabs (Canada)'), (49277, 'https://ror.org/051gpmw62', 'no_lang_code', 1, 'https://ror.org/051gpmw62 Trading Technologies (United States)'), (49278, 'https://ror.org/051j85s07', 'en', 1, 'https://ror.org/051j85s07 Climate Foundation'), (49279, 'https://ror.org/051jdqz70', 'en', 1, 'https://ror.org/051jdqz70 Hakodate National Hospital 国立病院機構函館病院'), (49280, 'https://ror.org/051jh8373', 'no_lang_code', 1, 'https://ror.org/051jh8373 Piovan (Canada)'), (49281, 'https://ror.org/051k56n75', 'no_lang_code', 1, 'https://ror.org/051k56n75 CiVentiChem (United States)'), (49282, 'https://ror.org/051k6dd41', 'no_lang_code', 1, 'https://ror.org/051k6dd41 Shimadzu (United Kingdom)'), (49283, 'https://ror.org/051mdt953', 'no_lang_code', 1, 'https://ror.org/051mdt953 Montana Emergent Technologies (United States)'), (49284, 'https://ror.org/051mryw61', 'en', 1, 'https://ror.org/051mryw61 Entomological Society of Canada Société d’Entomologie du Canada'), (49285, 'https://ror.org/051n1ac86', 'no_lang_code', 1, 'https://ror.org/051n1ac86 BioFortis (United States)'), (49286, 'https://ror.org/051q2fd34', 'en', 1, 'https://ror.org/051q2fd34 Maisha Meds'), (49287, 'https://ror.org/051q6p014', 'en', 1, 'https://ror.org/051q6p014 Ishikawa Prefecture Archaeological Center 石川県埋蔵文化財センタ'), (49288, 'https://ror.org/051rtfe77', 'de', 1, 'https://ror.org/051rtfe77 Schweizer Hochschule für Logopädie Rorschach'), (49289, 'https://ror.org/051scxa97', 'en', 1, 'https://ror.org/051scxa97 Makino Botanical Garden 高知県立牧野植物園'), (49290, 'https://ror.org/051t3nd40', 'en', 1, 'https://ror.org/051t3nd40 Islamic Azad University Bostanabad دانشگاه آزاد اسلامی، بستان آباد'), (49291, 'https://ror.org/051v3pe92', 'no_lang_code', 1, 'https://ror.org/051v3pe92 Mando Corporation (South Korea) 만도'), (49292, 'https://ror.org/051vnys61', 'no_lang_code', 1, 'https://ror.org/051vnys61 Meritor (United Kingdom)'), (49293, 'https://ror.org/051vpgk97', 'no_lang_code', 1, 'https://ror.org/051vpgk97 Toshiba (United States)'), (49294, 'https://ror.org/051x4a456', 'en', 1, 'https://ror.org/051x4a456 Institute of Theoretical and Applied Electrodynamics Институт теоретической и прикладной электродинамики РАН'), (49295, 'https://ror.org/051xcjm78', 'en', 1, 'https://ror.org/051xcjm78 Pharmacy Guild of Australia'), (49296, 'https://ror.org/051ywtd91', 'en', 1, 'https://ror.org/051ywtd91 Institute of Applied Energy 一般財団法人エネルギー総合工学研究所'), (49297, 'https://ror.org/051yxm544', 'no_lang_code', 1, 'https://ror.org/051yxm544 PNO Consultants (Netherlands)'), (49298, 'https://ror.org/05213zp13', 'en', 1, 'https://ror.org/05213zp13 Indigenous Language Institute'), (49299, 'https://ror.org/0521h8v35', 'en', 1, 'https://ror.org/0521h8v35 Fort Leavenworth Unified School District 207'), (49300, 'https://ror.org/05236ad29', 'en', 1, 'https://ror.org/05236ad29 Sagamihara City Museum 相模原市立博物館'), (49301, 'https://ror.org/05240d030', 'no_lang_code', 1, 'https://ror.org/05240d030 Mara Renewables (Canada)'), (49302, 'https://ror.org/0524n4e69', 'en', 1, 'https://ror.org/0524n4e69 Kagawa Buried Cultural Property Center 香川県埋蔵文化財センター'), (49303, 'https://ror.org/05257ys56', 'en', 1, 'https://ror.org/05257ys56 British Transplantation Society'), (49304, 'https://ror.org/0525gz420', 'en', 1, 'https://ror.org/0525gz420 Fraunhofer Center for Maritime Logistics and Services Fraunhofer-Center für Maritime Logistik und Dienstleistungen'), (49305, 'https://ror.org/0525kzq59', 'en', 1, 'https://ror.org/0525kzq59 Kyoto Prefectural Board of Education'), (49306, 'https://ror.org/0526yv239', 'en', 1, 'https://ror.org/0526yv239 Beeches Hospital'), (49307, 'https://ror.org/052a20h63', 'no_lang_code', 1, 'https://ror.org/052a20h63 Samsung (Brazil)'), (49308, 'https://ror.org/052ay7p78', 'en', 1, 'https://ror.org/052ay7p78 Bệnh viện Phổi HàNội Hanoi Lung Hospital'), (49309, 'https://ror.org/052dn5m53', 'no_lang_code', 1, 'https://ror.org/052dn5m53 ArcticDx (Canada)'), (49310, 'https://ror.org/052ec8m16', 'no_lang_code', 1, 'https://ror.org/052ec8m16 Charmworks (United States)'), (49311, 'https://ror.org/052fbwe76', 'en', 1, 'https://ror.org/052fbwe76 Center for Study of Science Technology and Policy'), (49312, 'https://ror.org/052fvq722', 'en', 1, 'https://ror.org/052fvq722 Kanagawa Industrial Technology Center 神奈川県産業技術センター'), (49313, 'https://ror.org/052h22p40', 'en', 1, 'https://ror.org/052h22p40 Singing River Health System'), (49314, 'https://ror.org/052mh6j19', 'no_lang_code', 1, 'https://ror.org/052mh6j19 DenseLight Semiconductors (Singapore)'), (49315, 'https://ror.org/052mwhp79', 'en', 1, 'https://ror.org/052mwhp79 Plunkett Foundation'), (49316, 'https://ror.org/052q3p191', 'en', 1, 'https://ror.org/052q3p191 Shakarim State University Of Semey Государственный университет имени Шакарима города Семей'), (49317, 'https://ror.org/052q58629', 'en', 1, 'https://ror.org/052q58629 Institute for Advanced Energy Technologies Istituto di Tecnologie Avanzate per l''Energia "Nicola Giordano"'), (49318, 'https://ror.org/052qrf856', 'en', 1, 'https://ror.org/052qrf856 Dr Vijay Kumar Foundation'), (49319, 'https://ror.org/052qwkx28', 'de', 1, 'https://ror.org/052qwkx28 Institut für Mikroökologie'), (49320, 'https://ror.org/052sehq92', 'no_lang_code', 1, 'https://ror.org/052sehq92 Teleflex (Germany)'), (49321, 'https://ror.org/052tbr029', 'en', 1, 'https://ror.org/052tbr029 Institute of Slavic Studies Instytut Slawistyki PAN'), (49322, 'https://ror.org/052tv0w45', 'en', 1, 'https://ror.org/052tv0w45 Almond Board of California'), (49323, 'https://ror.org/052wab383', 'no_lang_code', 1, 'https://ror.org/052wab383 Baxter (Switzerland)'), (49324, 'https://ror.org/052zcxp76', 'en', 1, 'https://ror.org/052zcxp76 Seika Women''s Junior College 精華女子短期大学'), (49325, 'https://ror.org/05309p384', 'en', 1, 'https://ror.org/05309p384 Montgomery Museum & Lewis Miller Regional Art Center'), (49326, 'https://ror.org/0531qh590', 'en', 1, 'https://ror.org/0531qh590 Ministerstvo spravedlnosti České republiky Ministry of Justice'), (49327, 'https://ror.org/0532w7m55', 'es', 1, 'https://ror.org/0532w7m55 Universidad Técnica Latinoamericana'), (49328, 'https://ror.org/05333yg23', 'no_lang_code', 1, 'https://ror.org/05333yg23 Hitachi Engineering (Japan) 株式会社 日立エンジニアリング'), (49329, 'https://ror.org/05338hh70', 'no_lang_code', 1, 'https://ror.org/05338hh70 Prozomix (United Kingdom)'), (49330, 'https://ror.org/0534wbh79', 'no_lang_code', 1, 'https://ror.org/0534wbh79 Geomechanica (Canada)'), (49331, 'https://ror.org/0535mbq53', 'no_lang_code', 1, 'https://ror.org/0535mbq53 Wikimedia Bangladesh উইকিমিডিয়া বাংলাদেশ'), (49332, 'https://ror.org/0536ew874', 'no_lang_code', 1, 'https://ror.org/0536ew874 3M (Israel)'), (49333, 'https://ror.org/053ae3r23', 'en', 1, 'https://ror.org/053ae3r23 Schweizerischer Versicherungsverband Swiss Insurance Association'), (49334, 'https://ror.org/053bn9w04', 'no_lang_code', 1, 'https://ror.org/053bn9w04 PROTO Manufacturing (Canada)'), (49335, 'https://ror.org/053cetp63', 'no_lang_code', 1, 'https://ror.org/053cetp63 Autoliv (United Kingdom)'), (49336, 'https://ror.org/053cvy840', 'no_lang_code', 1, 'https://ror.org/053cvy840 SimPlan (Germany)'), (49337, 'https://ror.org/053gd5s23', 'en', 1, 'https://ror.org/053gd5s23 Willow Breast and Hereditary Cancer Support'), (49338, 'https://ror.org/053hax662', 'en', 1, 'https://ror.org/053hax662 Padres Contra El Cáncer'), (49339, 'https://ror.org/053pkd137', 'pt', 1, 'https://ror.org/053pkd137 Instituto Kairós'), (49340, 'https://ror.org/053qvcb25', 'no_lang_code', 1, 'https://ror.org/053qvcb25 Helios-NRG (United States)'), (49341, 'https://ror.org/053rqrs18', 'en', 1, 'https://ror.org/053rqrs18 Narashino Municipal Narashino High School 習志野市立習志野高等学校'), (49342, 'https://ror.org/053sbg434', 'en', 1, 'https://ror.org/053sbg434 Aomori Prefectural Mito High School 青森県立三戸高等学校'), (49343, 'https://ror.org/053se7r61', 'en', 1, 'https://ror.org/053se7r61 Natural History Museum and Institute 千葉県立中央博物館'), (49344, 'https://ror.org/053t12b24', 'no_lang_code', 1, 'https://ror.org/053t12b24 STMicroelectronics (Malta)'), (49345, 'https://ror.org/053t9n332', 'no_lang_code', 1, 'https://ror.org/053t9n332 Xfibra (United States)'), (49346, 'https://ror.org/053ttas14', 'en', 1, 'https://ror.org/053ttas14 HealthforAnimals'), (49347, 'https://ror.org/053y02f02', 'no_lang_code', 1, 'https://ror.org/053y02f02 ITT (United Kingdom)'), (49348, 'https://ror.org/053y5dz28', 'no_lang_code', 1, 'https://ror.org/053y5dz28 GD Goenka University'), (49349, 'https://ror.org/053y7p194', 'en', 1, 'https://ror.org/053y7p194 Health & Development International'), (49350, 'https://ror.org/054021a91', 'pt', 1, 'https://ror.org/054021a91 Associação Brasileira de Recursos Hídricos'), (49351, 'https://ror.org/0540dg488', 'en', 1, 'https://ror.org/0540dg488 Aichi Prefectural Higashiura High School 愛知県立東浦高等学校'), (49352, 'https://ror.org/0542g3d58', 'en', 1, 'https://ror.org/0542g3d58 Royal Historical Society'), (49353, 'https://ror.org/0543g9v76', 'en', 1, 'https://ror.org/0543g9v76 Centre for Regional and International STI Studies and Support'), (49354, 'https://ror.org/0543j1d77', 'en', 1, 'https://ror.org/0543j1d77 Fujita Animal Hospital 藤田動物病院'), (49355, 'https://ror.org/0546xmt86', 'en', 1, 'https://ror.org/0546xmt86 Edo Tokyo Museum 江戸東京博物館'), (49356, 'https://ror.org/054aj1x19', 'no_lang_code', 1, 'https://ror.org/054aj1x19 Nihon Dempa Kogyo (Japan) 日本電波工業株式会社'), (49357, 'https://ror.org/054awkm93', 'en', 1, 'https://ror.org/054awkm93 Achievement Rewards for College Scientists Foundation'), (49358, 'https://ror.org/054bpg497', 'no_lang_code', 1, 'https://ror.org/054bpg497 GlobalFoundries (United Kingdom)'), (49359, 'https://ror.org/054fc6480', 'no_lang_code', 1, 'https://ror.org/054fc6480 NXP (United States)'), (49360, 'https://ror.org/054fysp39', 'en', 1, 'https://ror.org/054fysp39 Guangdong Open University 广东开放大学'), (49361, 'https://ror.org/054h1gp83', 'fr', 1, 'https://ror.org/054h1gp83 Institut Suisse de Spéléologie et de Karstologie'), (49362, 'https://ror.org/054h41036', 'en', 1, 'https://ror.org/054h41036 Santa Rosa Memorial Hospital'), (49363, 'https://ror.org/054jsj779', 'en', 1, 'https://ror.org/054jsj779 East Bay Educational Collaborative'), (49364, 'https://ror.org/054maaz15', 'no_lang_code', 1, 'https://ror.org/054maaz15 Jozjan university دانشگاه جوزجان'), (49365, 'https://ror.org/054mxgp74', 'fr', 1, 'https://ror.org/054mxgp74 Association pour la recherche sur la Sclérose Latérale Amyotrophique'), (49366, 'https://ror.org/054n9aa03', 'en', 1, 'https://ror.org/054n9aa03 Arab League Educational, Cultural and Scientific Organization المنظمة العربية للتربية والثقافة والعلوم'), (49367, 'https://ror.org/054qw7j13', 'en', 1, 'https://ror.org/054qw7j13 Wildlife Conservation Society India'), (49368, 'https://ror.org/054r35483', 'en', 1, 'https://ror.org/054r35483 Institute of Law 中国法学网'), (49369, 'https://ror.org/054rm1829', 'en', 1, 'https://ror.org/054rm1829 Albert Wisner Public Library'), (49370, 'https://ror.org/054wjrx44', 'en', 1, 'https://ror.org/054wjrx44 Edvance Foundation'), (49371, 'https://ror.org/054yya609', 'en', 1, 'https://ror.org/054yya609 Okazaki Senior High School 愛知県立岡崎高等学校'), (49372, 'https://ror.org/054z92k23', 'en', 1, 'https://ror.org/054z92k23 Suzuka Junior College 鈴鹿短期大学'); INSERT INTO `rors` VALUES (49373, 'https://ror.org/05515rj28', 'en', 1, 'https://ror.org/05515rj28 C.Yu.Yunusov Nomidagi O’simlik Moddalari Kimyosi Instituti Yunusov Institute of the Chemistry of Plant Substances Институт химии растительных веществ им. акад. С.Ю. Юнусова Академии Наук Республики Узбекистан'), (49374, 'https://ror.org/055277280', 'en', 1, 'https://ror.org/055277280 Kumamoto Industrial Research Institute 熊本県産業技術センター'), (49375, 'https://ror.org/0553df340', 'no_lang_code', 1, 'https://ror.org/0553df340 S. P. Korolev Rocket and Space Corporation Energia (Russia) Ракетно-космическая корпорация «Энергия» им. С. П. Королёва'), (49376, 'https://ror.org/0554hqk85', 'no_lang_code', 1, 'https://ror.org/0554hqk85 Singulus (Germany)'), (49377, 'https://ror.org/055b7qp37', 'en', 1, 'https://ror.org/055b7qp37 Lowy Institute for International Policy'), (49378, 'https://ror.org/055c4qx71', 'no_lang_code', 1, 'https://ror.org/055c4qx71 Bühler (United Kingdom)'), (49379, 'https://ror.org/055gyn525', 'en', 1, 'https://ror.org/055gyn525 Zhejiang Institute of Mechanical and Electrical Engineering 浙江机电职业技术学院'), (49380, 'https://ror.org/055j23398', 'en', 1, 'https://ror.org/055j23398 Gersevanov Research Institute of Bases and Underground Structures Научно-исследовательский, проектно-изыскательский и конструкторско-технологический институт оснований и подземных сооружений'), (49381, 'https://ror.org/055knhp38', 'no_lang_code', 1, 'https://ror.org/055knhp38 Bionix Development (United States)'), (49382, 'https://ror.org/055mvz558', 'no_lang_code', 1, 'https://ror.org/055mvz558 Sumitomo Precision Products (Japan) 住友精密工業株式会社'), (49383, 'https://ror.org/055s23s22', 'no_lang_code', 1, 'https://ror.org/055s23s22 Electrolux (Australia)'), (49384, 'https://ror.org/055s4d850', 'no_lang_code', 1, 'https://ror.org/055s4d850 Eureka Lighting (Canada)'), (49385, 'https://ror.org/055sxys40', 'no_lang_code', 1, 'https://ror.org/055sxys40 General Engineering and Research (United States)'), (49386, 'https://ror.org/055t9t204', 'et', 1, 'https://ror.org/055t9t204 Informaatika ja Arvutustehnika Instituut Институт информатики и вычислительной техники'), (49387, 'https://ror.org/055v9fh02', 'pt', 1, 'https://ror.org/055v9fh02 Laboratório Nacional de Astrofísica National Astrophysics Laboratory'), (49388, 'https://ror.org/055wab717', 'en', 1, 'https://ror.org/055wab717 Hunt Institute'), (49389, 'https://ror.org/055xjpt87', 'no_lang_code', 1, 'https://ror.org/055xjpt87 Universal Trim Supply (Taiwan)'), (49390, 'https://ror.org/055z45c63', 'de', 1, 'https://ror.org/055z45c63 Immanuel Krankenhaus'), (49391, 'https://ror.org/055z8n243', 'no_lang_code', 1, 'https://ror.org/055z8n243 Marinvent (Canada)'), (49392, 'https://ror.org/0561ky130', 'no_lang_code', 1, 'https://ror.org/0561ky130 Cypress Semiconductor Corporation (Japan)'), (49393, 'https://ror.org/0561tpp86', 'en', 1, 'https://ror.org/0561tpp86 Alzheimer''s Association of Israel'), (49394, 'https://ror.org/05629zc23', 'no_lang_code', 1, 'https://ror.org/05629zc23 Xdot Engineering and Analysis (United States)'), (49395, 'https://ror.org/0562m6y05', 'en', 1, 'https://ror.org/0562m6y05 Esperanza International'), (49396, 'https://ror.org/0563dqj82', 'no_lang_code', 1, 'https://ror.org/0563dqj82 Landesgewerbeanstalt Bayern (Germany)'), (49397, 'https://ror.org/0564jxa35', 'no_lang_code', 1, 'https://ror.org/0564jxa35 Ottobock (Austria)'), (49398, 'https://ror.org/0564zte48', 'no_lang_code', 1, 'https://ror.org/0564zte48 Science City York (United Kingdom)'), (49399, 'https://ror.org/0565tgh20', 'en', 1, 'https://ror.org/0565tgh20 Ministry of Agriculture and Forests'), (49400, 'https://ror.org/0566s9y93', 'no_lang_code', 1, 'https://ror.org/0566s9y93 Voith (United States)'), (49401, 'https://ror.org/056701b75', 'no_lang_code', 1, 'https://ror.org/056701b75 Fuji Electric (Japan) 富士電機株式会社'), (49402, 'https://ror.org/0567nxn66', 'no_lang_code', 1, 'https://ror.org/0567nxn66 Toyama Prefectural Takaoka High School 富山県立高岡高等学校'), (49403, 'https://ror.org/056b3q733', 'no_lang_code', 1, 'https://ror.org/056b3q733 Wikimedia ZA'), (49404, 'https://ror.org/056c72797', 'en', 1, 'https://ror.org/056c72797 Air Force Institute of Aviation Medicine Affiliated Hospital 航空医学研究所附属医院'), (49405, 'https://ror.org/056c8b450', 'no_lang_code', 1, 'https://ror.org/056c8b450 Maxim Integrated (United States)'), (49406, 'https://ror.org/056dke471', 'en', 1, 'https://ror.org/056dke471 Tokyo Metropolitan Fuchu High School 東京都立府中高等学校'), (49407, 'https://ror.org/056dwm086', 'no_lang_code', 1, 'https://ror.org/056dwm086 Universal Biologics (United States)'), (49408, 'https://ror.org/056fzpe56', 'no_lang_code', 1, 'https://ror.org/056fzpe56 Dymenso (United States)'), (49409, 'https://ror.org/056j33p55', 'en', 1, 'https://ror.org/056j33p55 Forestry Tasmania'), (49410, 'https://ror.org/056jghs88', 'en', 1, 'https://ror.org/056jghs88 Cyprus Pedagogical Institute ΠΑΙΔΑΓΩΓΙΚΟ ΙΝΣΤΙΤΟΥΤΟ ΚΥΠΡΟΥ'), (49411, 'https://ror.org/056kzfb80', 'en', 1, 'https://ror.org/056kzfb80 Guangdong Provincial Family Planning Hospital 广东省计划生育科学技术研究所'), (49412, 'https://ror.org/056mctw68', 'fr', 1, 'https://ror.org/056mctw68 Université Constantine 2'), (49413, 'https://ror.org/056mhwf75', 'no_lang_code', 1, 'https://ror.org/056mhwf75 Genus Oncology (United States)'), (49414, 'https://ror.org/056qtgk16', 'no_lang_code', 1, 'https://ror.org/056qtgk16 PureTech (United States)'), (49415, 'https://ror.org/056xbkp48', 'no_lang_code', 1, 'https://ror.org/056xbkp48 Assa Abloy (United Kingdom)'), (49416, 'https://ror.org/056ypt721', 'en', 1, 'https://ror.org/056ypt721 Nagano Prefecural Nagano Senior High School 長野県長野高等学校'), (49417, 'https://ror.org/0570s7p64', 'sv', 1, 'https://ror.org/0570s7p64 Göteborgs Tandläkare Sällskap'), (49418, 'https://ror.org/0572qa274', 'no_lang_code', 1, 'https://ror.org/0572qa274 Ecolab (Germany)'), (49419, 'https://ror.org/0573nm953', 'en', 1, 'https://ror.org/0573nm953 Ukrainian Research Institute of Refractories named after A.S. Berezhnoy Український науково-дослідний інститут вогнетривів'), (49420, 'https://ror.org/0574he388', 'en', 1, 'https://ror.org/0574he388 Jumeira University جامعة جميرا'), (49421, 'https://ror.org/05758j740', 'no_lang_code', 1, 'https://ror.org/05758j740 Stihl (Japan) スチール'), (49422, 'https://ror.org/0576n6b98', 'en', 1, 'https://ror.org/0576n6b98 Niigata Prefectural Niigata Central High School 新潟県立新潟中央高等学校'), (49423, 'https://ror.org/0579a8137', 'en', 1, 'https://ror.org/0579a8137 National Institute for the Psychotherapies'), (49424, 'https://ror.org/057as5086', 'en', 1, 'https://ror.org/057as5086 Institute of Marine Geology and Geophysics Viện Địa chất và Địa vật lý biển'), (49425, 'https://ror.org/057b93w27', 'no_lang_code', 1, 'https://ror.org/057b93w27 Scientific Games (Austria)'), (49426, 'https://ror.org/057cchs06', 'en', 1, 'https://ror.org/057cchs06 Isles International University Isles Ollscoil Idirnáisiúnta'), (49427, 'https://ror.org/057cmsp85', 'no_lang_code', 1, 'https://ror.org/057cmsp85 Dana (Canada)'), (49428, 'https://ror.org/057devs37', 'no_lang_code', 1, 'https://ror.org/057devs37 Gentherm (Germany)'), (49429, 'https://ror.org/057f4mk30', 'en', 1, 'https://ror.org/057f4mk30 Islamic Azad University Janah اسلامی یانا دانشگاه آزاد'), (49430, 'https://ror.org/057gq2q80', 'en', 1, 'https://ror.org/057gq2q80 Mississippi Youth Wheelchair League'), (49431, 'https://ror.org/057gzv333', 'en', 1, 'https://ror.org/057gzv333 Sophia School of Social Welfare 社会福祉のソフィア・スクール'), (49432, 'https://ror.org/057kfzw97', 'no_lang_code', 1, 'https://ror.org/057kfzw97 Tottori College 鳥取短期大学'), (49433, 'https://ror.org/057m2mx12', 'no_lang_code', 1, 'https://ror.org/057m2mx12 Protec Laboratories (United States)'), (49434, 'https://ror.org/057mcc411', 'no_lang_code', 1, 'https://ror.org/057mcc411 Universal Alloy (United States)'), (49435, 'https://ror.org/057nzpd74', 'no_lang_code', 1, 'https://ror.org/057nzpd74 Imerys (Austria)'), (49436, 'https://ror.org/057p9rb14', 'no_lang_code', 1, 'https://ror.org/057p9rb14 Solid Cell (United States)'), (49437, 'https://ror.org/057q9nn35', 'en', 1, 'https://ror.org/057q9nn35 Alpha Omega Alpha Medical Honor Society'), (49438, 'https://ror.org/057tp6a49', 'pt', 1, 'https://ror.org/057tp6a49 Fundação Estadual de Proteção Ambiental Henrique Luiz Roessler'), (49439, 'https://ror.org/057vt6455', 'no_lang_code', 1, 'https://ror.org/057vt6455 Ball (United Kingdom)'), (49440, 'https://ror.org/057w2sx61', 'en', 1, 'https://ror.org/057w2sx61 Geological Society of London'), (49441, 'https://ror.org/057zb9291', 'no_lang_code', 1, 'https://ror.org/057zb9291 ViVitro Labs (Canada)'), (49442, 'https://ror.org/05807ba92', 'en', 1, 'https://ror.org/05807ba92 National Institutes for Cultural Heritage 独立行政法人国立文化財'), (49443, 'https://ror.org/0580qje17', 'no_lang_code', 1, 'https://ror.org/0580qje17 United Microelectronics (Taiwan) 聯華電子'), (49444, 'https://ror.org/0582szf05', 'en', 1, 'https://ror.org/0582szf05 International Institute for Child Rights and Development'), (49445, 'https://ror.org/0584q3n03', 'en', 1, 'https://ror.org/0584q3n03 Nagasaki Prefectural Nagasaki Technical High School 長崎県立長崎工業高等学校'), (49446, 'https://ror.org/058720m75', 'no_lang_code', 1, 'https://ror.org/058720m75 Agri-Neo (Canada)'), (49447, 'https://ror.org/05879ed43', 'no_lang_code', 1, 'https://ror.org/05879ed43 Fastman (United States)'), (49448, 'https://ror.org/058a1xy10', 'da', 1, 'https://ror.org/058a1xy10 Wikimedia Danmark'), (49449, 'https://ror.org/058b8r373', 'pt', 1, 'https://ror.org/058b8r373 Prefeitura Municipal de Sapiranga'), (49450, 'https://ror.org/058bdpk86', 'en', 1, 'https://ror.org/058bdpk86 Breastscreen Victoria'), (49451, 'https://ror.org/058d8a952', 'no_lang_code', 1, 'https://ror.org/058d8a952 Power Integrations (United States)'), (49452, 'https://ror.org/058dmkn21', 'en', 1, 'https://ror.org/058dmkn21 Chinese Academy of International Trade and Economic Cooperation 商务部国际贸易经济合作研究院'), (49453, 'https://ror.org/058kjq542', 'en', 1, 'https://ror.org/058kjq542 Fraunhofer Institute for Software and Systems Engineering Fraunhofer-Institut für Software- und Systemtechnik'), (49454, 'https://ror.org/058np3c43', 'en', 1, 'https://ror.org/058np3c43 Islamic Azad University Ardabil دانشگاه آزاد اسلامی واحد اردبیل'), (49455, 'https://ror.org/058pb5559', 'en', 1, 'https://ror.org/058pb5559 Association for Public Policy Analysis and Management'), (49456, 'https://ror.org/058ryjm64', 'no_lang_code', 1, 'https://ror.org/058ryjm64 Hoerbiger (Austria)'), (49457, 'https://ror.org/058sh5428', 'en', 1, 'https://ror.org/058sh5428 BCS — The Chartered Institute for IT'), (49458, 'https://ror.org/058t5en44', 'en', 1, 'https://ror.org/058t5en44 American Society For Nanomedicine'), (49459, 'https://ror.org/058w9hg07', 'no_lang_code', 1, 'https://ror.org/058w9hg07 Andritz (Germany)'), (49460, 'https://ror.org/058whx905', 'en', 1, 'https://ror.org/058whx905 Global Libraries - Bulgaria Foundation'), (49461, 'https://ror.org/058xxya53', 'no_lang_code', 1, 'https://ror.org/058xxya53 NanoCytomics (United States)'), (49462, 'https://ror.org/058yzcs11', 'en', 1, 'https://ror.org/058yzcs11 Tamil Nadu Forest Plantation (India)'), (49463, 'https://ror.org/0592g7p42', 'en', 1, 'https://ror.org/0592g7p42 Academy of Osseointegration'), (49464, 'https://ror.org/0594b3f07', 'no_lang_code', 1, 'https://ror.org/0594b3f07 Promoscience (Italy)'), (49465, 'https://ror.org/0596amb15', 'en', 1, 'https://ror.org/0596amb15 Fort Worth Library'), (49466, 'https://ror.org/059771278', 'en', 1, 'https://ror.org/059771278 Provision Healthcare'), (49467, 'https://ror.org/0597htz45', 'no_lang_code', 1, 'https://ror.org/0597htz45 Tateyama Caldera Sabo Museum 立山カルデラ砂防博物館'), (49468, 'https://ror.org/059a51570', 'en', 1, 'https://ror.org/059a51570 U.S. Global Leadership Coalition'), (49469, 'https://ror.org/059c7sp21', 'en', 1, 'https://ror.org/059c7sp21 Brazilian College of Animal Reproduction Colégio Brasileiro de Reprodução Animal'), (49470, 'https://ror.org/059dvm679', 'en', 1, 'https://ror.org/059dvm679 East, Central and Southern Africa Health Community'), (49471, 'https://ror.org/059g2r627', 'no_lang_code', 1, 'https://ror.org/059g2r627 Mars Space (United Kingdom)'), (49472, 'https://ror.org/059gejz39', 'no_lang_code', 1, 'https://ror.org/059gejz39 CellMosaic (United States)'), (49473, 'https://ror.org/059jkdx17', 'nl', 1, 'https://ror.org/059jkdx17 Helen Dowling Instituut'), (49474, 'https://ror.org/059kt3178', 'en', 1, 'https://ror.org/059kt3178 Rubber Research Institute of Sri Lanka'), (49475, 'https://ror.org/059ne1773', 'no_lang_code', 1, 'https://ror.org/059ne1773 Hyperv Technologies (United States)'), (49476, 'https://ror.org/059q0y753', 'no_lang_code', 1, 'https://ror.org/059q0y753 Beijing Seismological Bureau 北京市地震局'), (49477, 'https://ror.org/059rfxn59', 'no_lang_code', 1, 'https://ror.org/059rfxn59 Colby Pharmaceutical (United States)'), (49478, 'https://ror.org/059tqws22', 'no_lang_code', 1, 'https://ror.org/059tqws22 Cypress Semiconductor Corporation (Belgium)'), (49479, 'https://ror.org/059yvz347', 'en', 1, 'https://ror.org/059yvz347 Drammen Hospital Drammen Sykehus'), (49480, 'https://ror.org/059zcg682', 'no_lang_code', 1, 'https://ror.org/059zcg682 BASF (United Kingdom)'), (49481, 'https://ror.org/05a0cfq84', 'no_lang_code', 1, 'https://ror.org/05a0cfq84 Monodraught (United Kingdom)'), (49482, 'https://ror.org/05a33r812', 'en', 1, 'https://ror.org/05a33r812 Market Economy Institute Институ́т пробле́м ры́нка Российской Академии наук'), (49483, 'https://ror.org/05a5w4v67', 'no_lang_code', 1, 'https://ror.org/05a5w4v67 Foton Motors (China) 北汽福田'), (49484, 'https://ror.org/05a68bd15', 'en', 1, 'https://ror.org/05a68bd15 National Hospital Organization Takamatsu Medical Center 国立病院機構高松医療センター'), (49485, 'https://ror.org/05a8c4g41', 'en', 1, 'https://ror.org/05a8c4g41 American Nephrology Nurses Association'), (49486, 'https://ror.org/05ab85w40', 'es', 1, 'https://ror.org/05ab85w40 Instituto de Investigaciones Avícolas'), (49487, 'https://ror.org/05acd7q77', 'no_lang_code', 1, 'https://ror.org/05acd7q77 Attollo Engineering (United States)'), (49488, 'https://ror.org/05ad3wk38', 'en', 1, 'https://ror.org/05ad3wk38 State Research Institute for Restoration Государственный научно-исследовательский институт реставрации'), (49489, 'https://ror.org/05adg0580', 'en', 1, 'https://ror.org/05adg0580 Saitama Prefectural Urawa High School 埼玉県立浦和高校'), (49490, 'https://ror.org/05agrj919', 'en', 1, 'https://ror.org/05agrj919 Nara National Research Institute for Cultural Properties 奈良文化財研究所'), (49491, 'https://ror.org/05akw7810', 'es', 1, 'https://ror.org/05akw7810 Universidad de Lambayeque'), (49492, 'https://ror.org/05ancaf73', 'en', 1, 'https://ror.org/05ancaf73 American Association of Family and Consumer Sciences'), (49493, 'https://ror.org/05at4m627', 'en', 1, 'https://ror.org/05at4m627 Craven County Schools'), (49494, 'https://ror.org/05avt0b71', 'en', 1, 'https://ror.org/05avt0b71 Sanya City Women and Children Hospital'), (49495, 'https://ror.org/05awdmd14', 'no_lang_code', 1, 'https://ror.org/05awdmd14 Engenuics (Canada)'), (49496, 'https://ror.org/05ax69r91', 'en', 1, 'https://ror.org/05ax69r91 Okayama Prefecture Education Center 岡山県総合教育センター'), (49497, 'https://ror.org/05axsx403', 'en', 1, 'https://ror.org/05axsx403 Institute of Water and Sanitation Development'), (49498, 'https://ror.org/05az4xw46', 'en', 1, 'https://ror.org/05az4xw46 Bibliographical Society'), (49499, 'https://ror.org/05b4rrz69', 'en', 1, 'https://ror.org/05b4rrz69 Niigata Prefectural Ojiya Nishi High School 新潟県立小千谷西高等学校'), (49500, 'https://ror.org/05b8n5j15', 'en', 1, 'https://ror.org/05b8n5j15 Nordic Centre for Welfare and Social Issues Nordic Centre for Welfare ja sosiaaliset kysymykset'), (49501, 'https://ror.org/05b9xma73', 'de', 1, 'https://ror.org/05b9xma73 Bergmann und Partner Rechtsanwälte'), (49502, 'https://ror.org/05ba5xv93', 'no_lang_code', 1, 'https://ror.org/05ba5xv93 Karachaevo-Cherkessk State University Карачаево-Черкесский государственный университет'), (49503, 'https://ror.org/05bc06n36', 'en', 1, 'https://ror.org/05bc06n36 North Orange County Community College District'), (49504, 'https://ror.org/05bc46c94', 'en', 1, 'https://ror.org/05bc46c94 New Zealand Educational Administration and Leadership Society'), (49505, 'https://ror.org/05be7rs83', 'en', 1, 'https://ror.org/05be7rs83 California County Superintendents Educational Services Association'), (49506, 'https://ror.org/05bendy20', 'en', 1, 'https://ror.org/05bendy20 Wikimedia Österreich'), (49507, 'https://ror.org/05bg37315', 'en', 1, 'https://ror.org/05bg37315 Yamaguchi Prefecture Archives 山口県文書館'), (49508, 'https://ror.org/05bgj7h65', 'en', 1, 'https://ror.org/05bgj7h65 Center for Business Studies'), (49509, 'https://ror.org/05bh8tx73', 'es', 1, 'https://ror.org/05bh8tx73 Universidad Tecnológica de Nezahualcóyotl'), (49510, 'https://ror.org/05bj5cn41', 'en', 1, 'https://ror.org/05bj5cn41 Belgrade Community Library'), (49511, 'https://ror.org/05bpym449', 'no_lang_code', 1, 'https://ror.org/05bpym449 Medical Cyberworlds (United States)'), (49512, 'https://ror.org/05bqd9t64', 'no_lang_code', 1, 'https://ror.org/05bqd9t64 Microchip Technology (Germany)'), (49513, 'https://ror.org/05br7cm44', 'en', 1, 'https://ror.org/05br7cm44 Luoyang Orthopedic-Traumatological Hospital of Henan Province 河南省洛阳正骨医院'), (49514, 'https://ror.org/05bs9ys68', 'no_lang_code', 1, 'https://ror.org/05bs9ys68 SimulTel (United States)'), (49515, 'https://ror.org/05bt5dg04', 'en', 1, 'https://ror.org/05bt5dg04 Institute for Family Development'), (49516, 'https://ror.org/05btymt05', 'no_lang_code', 1, 'https://ror.org/05btymt05 TravelAI (United Kingdom)'), (49517, 'https://ror.org/05bw3yd74', 'en', 1, 'https://ror.org/05bw3yd74 Canadian Urology Research Consortium'), (49518, 'https://ror.org/05bw7y144', 'no_lang_code', 1, 'https://ror.org/05bw7y144 Whakauae Research (New Zealand)'), (49519, 'https://ror.org/05bxvt155', 'no_lang_code', 1, 'https://ror.org/05bxvt155 Perma Works (United States)'), (49520, 'https://ror.org/05byphg89', 'no_lang_code', 1, 'https://ror.org/05byphg89 Michelin (Switzerland)'), (49521, 'https://ror.org/05c1vn851', 'en', 1, 'https://ror.org/05c1vn851 Rhode Island Commerce Corporation'), (49522, 'https://ror.org/05c21mq03', 'en', 1, 'https://ror.org/05c21mq03 Kurashiki City College 倉敷市立短期大学'), (49523, 'https://ror.org/05c5a2504', 'no_lang_code', 1, 'https://ror.org/05c5a2504 Radar (United States)'), (49524, 'https://ror.org/05c5cxq41', 'no_lang_code', 1, 'https://ror.org/05c5cxq41 Husky Injection Molding Systems (Canada)'), (49525, 'https://ror.org/05c9p5b07', 'no_lang_code', 1, 'https://ror.org/05c9p5b07 East Institute Refractories (Russia) Восточный институт огнеупоров'), (49526, 'https://ror.org/05caes925', 'no_lang_code', 1, 'https://ror.org/05caes925 Kitamurayama Hospital 北村山公立病院'), (49527, 'https://ror.org/05car4c24', 'no_lang_code', 1, 'https://ror.org/05car4c24 Terramera (Canada)'), (49528, 'https://ror.org/05cb0k428', 'en', 1, 'https://ror.org/05cb0k428 Institut de recherches de l''industrie sucrière de Maurice Mauritius Sugarcane Industry Research Institute'), (49529, 'https://ror.org/05cbzw944', 'en', 1, 'https://ror.org/05cbzw944 Tokyo Metropolitan Aoyama High School 東京都立青山高等学校'), (49530, 'https://ror.org/05ccsp315', 'en', 1, 'https://ror.org/05ccsp315 Nagano Prefectural Agricultural University 農業大学に長野県'), (49531, 'https://ror.org/05cd0vn93', 'en', 1, 'https://ror.org/05cd0vn93 Dairy Farming Promotion Organization'), (49532, 'https://ror.org/05cew4a83', 'en', 1, 'https://ror.org/05cew4a83 Chicago Zoological Society'), (49533, 'https://ror.org/05cfz8m13', 'en', 1, 'https://ror.org/05cfz8m13 L.V. Pisarzhevskii Institute of Physical Chemistry ІНСТИТУТ ФІЗИЧНОЇ ХІМІЇ ІМЕНІ Л. В. ПИСАРЖЕВСЬКОГО НАЦІОНАЛЬНОЇ АКАДЕМІЇ НАУК УКРАЇНИ'), (49534, 'https://ror.org/05chjmv84', 'en', 1, 'https://ror.org/05chjmv84 Nigerian Stored Products Research Institute'), (49535, 'https://ror.org/05ckpfd66', 'no_lang_code', 1, 'https://ror.org/05ckpfd66 Hewlett-Packard (Israel)'), (49536, 'https://ror.org/05cnabr44', 'no_lang_code', 1, 'https://ror.org/05cnabr44 eBay (United States)'), (49537, 'https://ror.org/05cpzfy77', 'en', 1, 'https://ror.org/05cpzfy77 Ishikawa Prefectural Nursing School 石川県立総合看護専門学校'), (49538, 'https://ror.org/05cttts62', 'no_lang_code', 1, 'https://ror.org/05cttts62 Tokugawa Reimeikai Foundation 徳川黎明会'), (49539, 'https://ror.org/05cxtem33', 'es', 1, 'https://ror.org/05cxtem33 Wikimedia Venezuela'), (49540, 'https://ror.org/05d088255', 'en', 1, 'https://ror.org/05d088255 Fundacion Instituto de Investigacion Innaxis Innaxis Foundation & Research Institute'), (49541, 'https://ror.org/05d2rrs40', 'no_lang_code', 1, 'https://ror.org/05d2rrs40 Lam Research (Austria)'), (49542, 'https://ror.org/05d3x0w27', 'no_lang_code', 1, 'https://ror.org/05d3x0w27 Brunswick International Freight Terminal (United Kingdom)'), (49543, 'https://ror.org/05d5nhn14', 'en', 1, 'https://ror.org/05d5nhn14 Shaanxi Institute of Zoology 陕西省动物研究所'), (49544, 'https://ror.org/05d6n5j65', 'no_lang_code', 1, 'https://ror.org/05d6n5j65 Parker Hannifin (Germany)'), (49545, 'https://ror.org/05d78p162', 'en', 1, 'https://ror.org/05d78p162 Foundation of Global Life Learning Center 一般財団法人 生涯学習開発財団 事務局'), (49546, 'https://ror.org/05daj2k82', 'no_lang_code', 1, 'https://ror.org/05daj2k82 Mann+Hummel (Germany)'), (49547, 'https://ror.org/05db98w21', 'en', 1, 'https://ror.org/05db98w21 World Association of Zoos and Aquariums'), (49548, 'https://ror.org/05dbe0v79', 'pt', 1, 'https://ror.org/05dbe0v79 Comissão Executiva do Plano da Lavoura Cacaueira'), (49549, 'https://ror.org/05dbjwr50', 'no_lang_code', 1, 'https://ror.org/05dbjwr50 VLNComm (United States)'), (49550, 'https://ror.org/05dbk3t51', 'en', 1, 'https://ror.org/05dbk3t51 Center for Law and Social Policy'), (49551, 'https://ror.org/05dd1f546', 'en', 1, 'https://ror.org/05dd1f546 Daqing Normal University 大庆师范学院'), (49552, 'https://ror.org/05debqe13', 'en', 1, 'https://ror.org/05debqe13 Kumamoto Prefectural Police 熊本県警察'), (49553, 'https://ror.org/05df6vn84', 'no_lang_code', 1, 'https://ror.org/05df6vn84 Atkins (United States)'), (49554, 'https://ror.org/05dhb9591', 'no_lang_code', 1, 'https://ror.org/05dhb9591 Saurer (Germany)'), (49555, 'https://ror.org/05dhf4z39', 'pt', 1, 'https://ror.org/05dhf4z39 Associação Brasileira de Literatura Comparada'), (49556, 'https://ror.org/05dj5ck11', 'en', 1, 'https://ror.org/05dj5ck11 Niigata College of Technology 新潟工業短期大学'), (49557, 'https://ror.org/05dmz1027', 'en', 1, 'https://ror.org/05dmz1027 Institute of Politics and Economy 公益財団法人 政治経済研究所'), (49558, 'https://ror.org/05dsfsy10', 'en', 1, 'https://ror.org/05dsfsy10 DSST Public Schools'), (49559, 'https://ror.org/05dvgp237', 'no_lang_code', 1, 'https://ror.org/05dvgp237 Siemens (Australia)'), (49560, 'https://ror.org/05dw9gn95', 'en', 1, 'https://ror.org/05dw9gn95 Friends of the Seattle Public Library'), (49561, 'https://ror.org/05dwa3c44', 'no_lang_code', 1, 'https://ror.org/05dwa3c44 Becton Dickinson (United Kingdom)'), (49562, 'https://ror.org/05dwcwc36', 'no_lang_code', 1, 'https://ror.org/05dwcwc36 Toshiba Machine (Japan) 東芝機械'), (49563, 'https://ror.org/05dx4dz53', 'en', 1, 'https://ror.org/05dx4dz53 Foundation for Healthy Generations'), (49564, 'https://ror.org/05dxj6c66', 'no_lang_code', 1, 'https://ror.org/05dxj6c66 Toho Gakuen'), (49565, 'https://ror.org/05dz1qg23', 'de', 1, 'https://ror.org/05dz1qg23 Internationales Institut für Wald und Holz'), (49566, 'https://ror.org/05dzk6h94', 'en', 1, 'https://ror.org/05dzk6h94 Maritsa Vegetable Crops Research Institute'), (49567, 'https://ror.org/05e0get33', 'en', 1, 'https://ror.org/05e0get33 Alameda County Library'), (49568, 'https://ror.org/05e2svc96', 'en', 1, 'https://ror.org/05e2svc96 Connecticut Department of Rehabilitation Services'), (49569, 'https://ror.org/05e3dgn19', 'no_lang_code', 1, 'https://ror.org/05e3dgn19 Confluence Life Sciences (United States)'), (49570, 'https://ror.org/05e48yb54', 'en', 1, 'https://ror.org/05e48yb54 Alliance for Education'), (49571, 'https://ror.org/05e521308', 'en', 1, 'https://ror.org/05e521308 Central United States Earthquake Consortium'), (49572, 'https://ror.org/05e58gr55', 'en', 1, 'https://ror.org/05e58gr55 Osaka Center For Cultural Heritage 大阪府文化財センター'), (49573, 'https://ror.org/05e5cnc30', 'pt', 1, 'https://ror.org/05e5cnc30 Prefeitura Municipal de Tauá'), (49574, 'https://ror.org/05e5m0q38', 'es', 1, 'https://ror.org/05e5m0q38 Instituto de Geofísica y Astronomía'), (49575, 'https://ror.org/05e6atz65', 'no_lang_code', 1, 'https://ror.org/05e6atz65 TRUMPF (Austria)'), (49576, 'https://ror.org/05e7jqk20', 'en', 1, 'https://ror.org/05e7jqk20 Institute of Materials, Minerals and Mining'), (49577, 'https://ror.org/05e7vgz71', 'no_lang_code', 1, 'https://ror.org/05e7vgz71 Integrated Technologies & Services International (United States)'), (49578, 'https://ror.org/05e84tj20', 'en', 1, 'https://ror.org/05e84tj20 International Biodeterioration Biodegradation Society'), (49579, 'https://ror.org/05eb16411', 'en', 1, 'https://ror.org/05eb16411 Friends of the New York State Library'), (49580, 'https://ror.org/05ebwnx39', 'no_lang_code', 1, 'https://ror.org/05ebwnx39 Ceragon (Israel)'), (49581, 'https://ror.org/05ec38531', 'no_lang_code', 1, 'https://ror.org/05ec38531 Element Six (Germany)'), (49582, 'https://ror.org/05ed6fr34', 'en', 1, 'https://ror.org/05ed6fr34 Peter White Public Library'), (49583, 'https://ror.org/05een9q80', 'en', 1, 'https://ror.org/05een9q80 National Livestock Breeding Center 独立行政法人 家畜改良センター'), (49584, 'https://ror.org/05ehpsf23', 'no_lang_code', 1, 'https://ror.org/05ehpsf23 Universal Woods (United States)'), (49585, 'https://ror.org/05ejn6a41', 'en', 1, 'https://ror.org/05ejn6a41 Center for Collaborative Education'), (49586, 'https://ror.org/05embt267', 'no_lang_code', 1, 'https://ror.org/05embt267 Archarithms (United States)'), (49587, 'https://ror.org/05enr0y39', 'en', 1, 'https://ror.org/05enr0y39 Asian Counseling and Referral Service'), (49588, 'https://ror.org/05ensw577', 'no_lang_code', 1, 'https://ror.org/05ensw577 Polymer Source (Canada)'), (49589, 'https://ror.org/05eq10h32', 'en', 1, 'https://ror.org/05eq10h32 Zhejiang Mariculture Research Institute 浙江省海洋水产养殖研究所'), (49590, 'https://ror.org/05evsnd79', 'no_lang_code', 1, 'https://ror.org/05evsnd79 Intellectual Ventures (United States)'), (49591, 'https://ror.org/05ewch819', 'no_lang_code', 1, 'https://ror.org/05ewch819 XLV Diagnostics (Canada)'), (49592, 'https://ror.org/05ex0md65', 'en', 1, 'https://ror.org/05ex0md65 Sweet Potato Research Institute'), (49593, 'https://ror.org/05exqw945', 'en', 1, 'https://ror.org/05exqw945 Fukuoka City Hospital 福岡市民病院'), (49594, 'https://ror.org/05ezak240', 'en', 1, 'https://ror.org/05ezak240 Society for Theatre Research'), (49595, 'https://ror.org/05f12dd47', 'no_lang_code', 1, 'https://ror.org/05f12dd47 Protemics (Germany)'), (49596, 'https://ror.org/05f2ewd15', 'no_lang_code', 1, 'https://ror.org/05f2ewd15 Nokia (Australia)'), (49597, 'https://ror.org/05f4fbs05', 'no_lang_code', 1, 'https://ror.org/05f4fbs05 Western Digital (Netherlands)'), (49598, 'https://ror.org/05f56wm94', 'pt', 1, 'https://ror.org/05f56wm94 Fundação Parque Tecnológico da Paraíba'), (49599, 'https://ror.org/05f5r6b93', 'no_lang_code', 1, 'https://ror.org/05f5r6b93 Covestro (Japan)'), (49600, 'https://ror.org/05f5ss468', 'no_lang_code', 1, 'https://ror.org/05f5ss468 Excelitas Technologies (Germany)'), (49601, 'https://ror.org/05f6fhp31', 'no_lang_code', 1, 'https://ror.org/05f6fhp31 Micron (Singapore)'), (49602, 'https://ror.org/05f6tgb27', 'en', 1, 'https://ror.org/05f6tgb27 Nagano City Board of Education 長野市教育委員会'), (49603, 'https://ror.org/05f6vr294', 'no_lang_code', 1, 'https://ror.org/05f6vr294 Seoyon E-Hwa (South Korea)'), (49604, 'https://ror.org/05f73a827', 'en', 1, 'https://ror.org/05f73a827 Canadian Pain Society'), (49605, 'https://ror.org/05f7jtw75', 'en', 1, 'https://ror.org/05f7jtw75 Eisenhower Foundation'), (49606, 'https://ror.org/05fbj2448', 'en', 1, 'https://ror.org/05fbj2448 Florida Chamber of Commerce'), (49607, 'https://ror.org/05fcp6f07', 'en', 1, 'https://ror.org/05fcp6f07 Impact India'), (49608, 'https://ror.org/05fdzaf62', 'en', 1, 'https://ror.org/05fdzaf62 Statistical Information Institute for Consulting Analysis 統計情報研究開発センター'), (49609, 'https://ror.org/05fe3fx56', 'de', 1, 'https://ror.org/05fe3fx56 Chirurgische Universitätsklinik Heidelberg'), (49610, 'https://ror.org/05femq986', 'no_lang_code', 1, 'https://ror.org/05femq986 Laserax (Canada)'), (49611, 'https://ror.org/05fesrm20', 'no_lang_code', 1, 'https://ror.org/05fesrm20 Heraeus (United States)'), (49612, 'https://ror.org/05fg21x21', 'en', 1, 'https://ror.org/05fg21x21 Karma Healthcare'), (49613, 'https://ror.org/05fgx1m39', 'no_lang_code', 1, 'https://ror.org/05fgx1m39 Orient Capital (China)'), (49614, 'https://ror.org/05fh5ny91', 'no_lang_code', 1, 'https://ror.org/05fh5ny91 Comar (United States)'), (49615, 'https://ror.org/05fj7ar22', 'en', 1, 'https://ror.org/05fj7ar22 NIHR Clinical Research Network'), (49616, 'https://ror.org/05fkrca82', 'en', 1, 'https://ror.org/05fkrca82 Gifu Prefectural Toki Commercial High School 岐阜県立土岐商業高等学校'), (49617, 'https://ror.org/05fktbs03', 'en', 1, 'https://ror.org/05fktbs03 Jin-ai Women''s College 仁愛女子短期大学'), (49618, 'https://ror.org/05fky2779', 'en', 1, 'https://ror.org/05fky2779 Dream Builders Foundation'), (49619, 'https://ror.org/05fm1bt30', 'en', 1, 'https://ror.org/05fm1bt30 S.P. Timoshenko Institute of Mechanics'), (49620, 'https://ror.org/05fner397', 'no_lang_code', 1, 'https://ror.org/05fner397 Broadcom (United Kingdom)'), (49621, 'https://ror.org/05fp1z527', 'en', 1, 'https://ror.org/05fp1z527 Association of Zoo Veterinary Technicians'), (49622, 'https://ror.org/05fqfbj82', 'no_lang_code', 1, 'https://ror.org/05fqfbj82 Tōyō Bunko 東洋文庫'), (49623, 'https://ror.org/05fsqxg82', 'no_lang_code', 1, 'https://ror.org/05fsqxg82 Exide Technologies (Germany)'), (49624, 'https://ror.org/05fss0456', 'no_lang_code', 1, 'https://ror.org/05fss0456 National Security Technologies (United States)'), (49625, 'https://ror.org/05fvmm618', 'en', 1, 'https://ror.org/05fvmm618 Queensland Curriculum and Assessment Authority'), (49626, 'https://ror.org/05fw3y914', 'en', 1, 'https://ror.org/05fw3y914 Global Institute for Quality Education'), (49627, 'https://ror.org/05fzcfb55', 'no_lang_code', 1, 'https://ror.org/05fzcfb55 Harman (United Kingdom)'), (49628, 'https://ror.org/05fzz0q30', 'no_lang_code', 1, 'https://ror.org/05fzz0q30 Komet Group (Germany)'), (49629, 'https://ror.org/05g27td62', 'no_lang_code', 1, 'https://ror.org/05g27td62 Ecovia Renewables (United States)'), (49630, 'https://ror.org/05g2nyp02', 'no_lang_code', 1, 'https://ror.org/05g2nyp02 Sony (Spain)'), (49631, 'https://ror.org/05g6qd913', 'no_lang_code', 1, 'https://ror.org/05g6qd913 Knorr-Bremse (United Kingdom)'), (49632, 'https://ror.org/05g7tqd64', 'no_lang_code', 1, 'https://ror.org/05g7tqd64 Wikimedia Hungary Wikimédia Magyarország Egyesület'), (49633, 'https://ror.org/05g95ne77', 'no_lang_code', 1, 'https://ror.org/05g95ne77 Kestrel Technology (United States)'), (49634, 'https://ror.org/05gabw081', 'de', 1, 'https://ror.org/05gabw081 Immunologie-Zentrum Zürich'), (49635, 'https://ror.org/05gaya574', 'en', 1, 'https://ror.org/05gaya574 Okazaki Womens Junior College 岡崎女子短期大学'), (49636, 'https://ror.org/05gd1j786', 'en', 1, 'https://ror.org/05gd1j786 Prince George County Public Schools'), (49637, 'https://ror.org/05ge30g62', 'en', 1, 'https://ror.org/05ge30g62 International Institute for Childrens Literature Osaka 大阪府立国際児童文学館'), (49638, 'https://ror.org/05ge5q197', 'en', 1, 'https://ror.org/05ge5q197 International East-European University Международный Восточно-Европейский университет'), (49639, 'https://ror.org/05gg0gh87', 'no_lang_code', 1, 'https://ror.org/05gg0gh87 Canon (Japan) キヤノン株式会社'), (49640, 'https://ror.org/05gk8hj18', 'no_lang_code', 1, 'https://ror.org/05gk8hj18 Genetec (Canada)'), (49641, 'https://ror.org/05gmez332', 'en', 1, 'https://ror.org/05gmez332 Human Rights Campaign'), (49642, 'https://ror.org/05gq4r458', 'en', 1, 'https://ror.org/05gq4r458 Ibaraki Prefectural Board of Education 茨城県教育委員会'), (49643, 'https://ror.org/05gqx9q10', 'no_lang_code', 1, 'https://ror.org/05gqx9q10 Award Rubber & Plastic Industries (Canada)'), (49644, 'https://ror.org/05gqyvx42', 'en', 1, 'https://ror.org/05gqyvx42 Tokyo Metropolitan Koishikawa Secondary Education School 東京都立小石川中等教育学校'), (49645, 'https://ror.org/05gv30q64', 'pt', 1, 'https://ror.org/05gv30q64 Instituto Geológico'), (49646, 'https://ror.org/05gvz8164', 'en', 1, 'https://ror.org/05gvz8164 Chiba Prefectural Museum of Art'), (49647, 'https://ror.org/05gx9az59', 'no_lang_code', 1, 'https://ror.org/05gx9az59 Gumma Paz College 群馬パース大学'), (49648, 'https://ror.org/05gxhfq53', 'de', 1, 'https://ror.org/05gxhfq53 Hochschule der Polizei Rheinland Pfalz'), (49649, 'https://ror.org/05gxk4854', 'no_lang_code', 1, 'https://ror.org/05gxk4854 nanoPrecision Products (United States)'), (49650, 'https://ror.org/05gy4kr80', 'en', 1, 'https://ror.org/05gy4kr80 V. G. Khlopin Radium Institute Радиевый институт имени В. Г. Хлопина'), (49651, 'https://ror.org/05gzqyx59', 'en', 1, 'https://ror.org/05gzqyx59 Harbor Branch Oceanographic Institute'), (49652, 'https://ror.org/05h0qwt23', 'en', 1, 'https://ror.org/05h0qwt23 Art Libraries Society'), (49653, 'https://ror.org/05h0yhm60', 'en', 1, 'https://ror.org/05h0yhm60 China Friendship Foundation for Peace and Development'), (49654, 'https://ror.org/05h3txc33', 'es', 1, 'https://ror.org/05h3txc33 Universidad La Concordia'), (49655, 'https://ror.org/05h3y9565', 'es', 1, 'https://ror.org/05h3y9565 Instituto Colombiano Agropecuario'), (49656, 'https://ror.org/05h40ds73', 'no_lang_code', 1, 'https://ror.org/05h40ds73 Westinghouse Electric (Japan)'), (49657, 'https://ror.org/05h5q2539', 'en', 1, 'https://ror.org/05h5q2539 British Grassland Society'), (49658, 'https://ror.org/05h5w5t42', 'en', 1, 'https://ror.org/05h5w5t42 Kawasaki Municipal Kawasaki Science High School 川崎市立川崎総合科学高等学校'), (49659, 'https://ror.org/05h6j7923', 'en', 1, 'https://ror.org/05h6j7923 Society for Mental Health Research'), (49660, 'https://ror.org/05h8amp43', 'en', 1, 'https://ror.org/05h8amp43 Japan China Medical Association 日本中国医学協会'), (49661, 'https://ror.org/05hawnt37', 'no_lang_code', 1, 'https://ror.org/05hawnt37 Universal Instruments (United States)'), (49662, 'https://ror.org/05hb6w248', 'en', 1, 'https://ror.org/05hb6w248 Foreign Service Institute'), (49663, 'https://ror.org/05hcvd668', 'en', 1, 'https://ror.org/05hcvd668 Randolph Field Independent School District'), (49664, 'https://ror.org/05hdv6b03', 'no_lang_code', 1, 'https://ror.org/05hdv6b03 Forge Life Science (United States)'), (49665, 'https://ror.org/05he96s21', 'de', 1, 'https://ror.org/05he96s21 Malteser Zentrale'), (49666, 'https://ror.org/05hfhh611', 'en', 1, 'https://ror.org/05hfhh611 Kalamazoo Public Library'), (49667, 'https://ror.org/05hfnvf25', 'en', 1, 'https://ror.org/05hfnvf25 High Institute For Computers and Management Information Systems'), (49668, 'https://ror.org/05hh7s019', 'no_lang_code', 1, 'https://ror.org/05hh7s019 STMicroelectronics (Germany)'), (49669, 'https://ror.org/05hhgm593', 'no_lang_code', 1, 'https://ror.org/05hhgm593 Sigma Energy Storage (Canada)'), (49670, 'https://ror.org/05hhwah43', 'no_lang_code', 1, 'https://ror.org/05hhwah43 CytImmune (United States)'), (49671, 'https://ror.org/05hjgch06', 'no_lang_code', 1, 'https://ror.org/05hjgch06 Synthomics (United States)'), (49672, 'https://ror.org/05hjnjp60', 'en', 1, 'https://ror.org/05hjnjp60 Ashikaga Junior College 足利短期大学'), (49673, 'https://ror.org/05hk0hn26', 'en', 1, 'https://ror.org/05hk0hn26 European Hematology Association'), (49674, 'https://ror.org/05hk1wv51', 'no_lang_code', 1, 'https://ror.org/05hk1wv51 Mazda Motor Corporation (Japan) マツダ株式会社'), (49675, 'https://ror.org/05hk7qq56', 'en', 1, 'https://ror.org/05hk7qq56 Tibetan Traditional Medical College 西藏传统医学院'), (49676, 'https://ror.org/05hm2f981', 'no_lang_code', 1, 'https://ror.org/05hm2f981 EcoSynthetix (United States)'), (49677, 'https://ror.org/05hpj2e91', 'no_lang_code', 1, 'https://ror.org/05hpj2e91 Moai Technologies (United States)'), (49678, 'https://ror.org/05hs77045', 'pt', 1, 'https://ror.org/05hs77045 Instituto Capixaba de Pesquisa, Assistência Técnica e Extensão Rural'), (49679, 'https://ror.org/05hsdzk10', 'en', 1, 'https://ror.org/05hsdzk10 AIDS Society of India'), (49680, 'https://ror.org/05hx26488', 'pt', 1, 'https://ror.org/05hx26488 Universidade Lusíada de Angola'), (49681, 'https://ror.org/05hxss661', 'no_lang_code', 1, 'https://ror.org/05hxss661 NEC (Germany) 日本電気株式会社'), (49682, 'https://ror.org/05j02vt11', 'en', 1, 'https://ror.org/05j02vt11 Yamagata Prefectural Mamurogawa High School 山形県立新庄神室産業高等学校真室川校'), (49683, 'https://ror.org/05j1xsk75', 'no_lang_code', 1, 'https://ror.org/05j1xsk75 SC Johnson (United States)'), (49684, 'https://ror.org/05j4xxv23', 'no_lang_code', 1, 'https://ror.org/05j4xxv23 KRONOS (Germany)'), (49685, 'https://ror.org/05j53fm28', 'en', 1, 'https://ror.org/05j53fm28 Tokyo Sport Benefits Corporation 公益財団法人 東京都スポーツ文化事業団'), (49686, 'https://ror.org/05j8wgh30', 'en', 1, 'https://ror.org/05j8wgh30 Wenzhou Institute of Industrial Science 温州市工业科学研究院'), (49687, 'https://ror.org/05ja7s884', 'no_lang_code', 1, 'https://ror.org/05ja7s884 Lucerno Dynamics (United States)'), (49688, 'https://ror.org/05jahqa08', 'en', 1, 'https://ror.org/05jahqa08 Global Virus Network'), (49689, 'https://ror.org/05jamyt63', 'en', 1, 'https://ror.org/05jamyt63 Institute for Women''s Policy Research'), (49690, 'https://ror.org/05jd9bf81', 'en', 1, 'https://ror.org/05jd9bf81 Canadian Association of Radiation Oncology'), (49691, 'https://ror.org/05jfw1444', 'en', 1, 'https://ror.org/05jfw1444 Jilin Provincial Academy of Forestry Science 吉林省林业科学研究院'), (49692, 'https://ror.org/05jgtkc28', 'no_lang_code', 1, 'https://ror.org/05jgtkc28 Baxter (Germany)'), (49693, 'https://ror.org/05jja7t55', 'en', 1, 'https://ror.org/05jja7t55 Iwate Prefectural Taneichi High School 岩手県立種市高等学校'), (49694, 'https://ror.org/05jjd1m66', 'no_lang_code', 1, 'https://ror.org/05jjd1m66 Benson Hill Biosystems (United States)'), (49695, 'https://ror.org/05jna2v15', 'en', 1, 'https://ror.org/05jna2v15 Yabe Junior High School 矢部中学校'), (49696, 'https://ror.org/05jqkvb96', 'no_lang_code', 1, 'https://ror.org/05jqkvb96 Vuronyx Technologies (United States)'), (49697, 'https://ror.org/05jreb977', 'en', 1, 'https://ror.org/05jreb977 Shikoku Medical Center for Children and Adults 四国こどもとおとなの医療センター'), (49698, 'https://ror.org/05jrmm111', 'no_lang_code', 1, 'https://ror.org/05jrmm111 Hexagon (Germany)'), (49699, 'https://ror.org/05jrxre70', 'no_lang_code', 1, 'https://ror.org/05jrxre70 Wikov (United Kingdom)'), (49700, 'https://ror.org/05k27r045', 'no_lang_code', 1, 'https://ror.org/05k27r045 Wikimedia Hong Kong 香港維基媒體協會'), (49701, 'https://ror.org/05k3mgz26', 'en', 1, 'https://ror.org/05k3mgz26 All-Russian Research Institute of Genetics and Farm Animal Breeding Федеральное государственное бюджетное научное учреждение Всероссийский научно-исследовательский институт генетики и разведения сельскохозяйственных животных'), (49702, 'https://ror.org/05k53z571', 'en', 1, 'https://ror.org/05k53z571 Knox County Public Library'), (49703, 'https://ror.org/05k6zrs81', 'no_lang_code', 1, 'https://ror.org/05k6zrs81 Metallurgical Corporation of China (China) 中国冶金科工股份有限公司'), (49704, 'https://ror.org/05k833b90', 'en', 1, 'https://ror.org/05k833b90 Avenir Health'), (49705, 'https://ror.org/05ka6xc26', 'en', 1, 'https://ror.org/05ka6xc26 Government of the District of Columbia'), (49706, 'https://ror.org/05kc3f351', 'en', 1, 'https://ror.org/05kc3f351 INCLEN Trust International'), (49707, 'https://ror.org/05kdv3094', 'en', 1, 'https://ror.org/05kdv3094 British Royal University الجامعة الملكية البريطانية'), (49708, 'https://ror.org/05ke4zy29', 'es', 1, 'https://ror.org/05ke4zy29 Universidad Dr. Andrés Bello'), (49709, 'https://ror.org/05ke8x342', 'it', 1, 'https://ror.org/05ke8x342 Institut international pour l''unification du droit privé UNIDROIT'), (49710, 'https://ror.org/05kefp559', 'en', 1, 'https://ror.org/05kefp559 Niagara Health System'), (49711, 'https://ror.org/05kgcmp18', 'en', 1, 'https://ror.org/05kgcmp18 Gunma Chuo Hospital 群馬中央病院'), (49712, 'https://ror.org/05kgg0s20', 'en', 1, 'https://ror.org/05kgg0s20 Cancer Research UK Oxford Centre'), (49713, 'https://ror.org/05khe3282', 'en', 1, 'https://ror.org/05khe3282 Chongqing Dazu District People''s Hospital 大足区人民医院'), (49714, 'https://ror.org/05khvz726', 'no_lang_code', 1, 'https://ror.org/05khvz726 EirGrid (Ireland)'), (49715, 'https://ror.org/05kjrhq19', 'no_lang_code', 1, 'https://ror.org/05kjrhq19 BAH Enterprises (Canada)'), (49716, 'https://ror.org/05kjy5h23', 'no_lang_code', 1, 'https://ror.org/05kjy5h23 Neyagawa High School 大阪府立寝屋川高等学校'), (49717, 'https://ror.org/05km15e85', 'et', 1, 'https://ror.org/05km15e85 Wikimedia Eesti'), (49718, 'https://ror.org/05km1vk92', 'no_lang_code', 1, 'https://ror.org/05km1vk92 Kuraray (Japan) 株式会社クラレ'), (49719, 'https://ror.org/05kmekg24', 'en', 1, 'https://ror.org/05kmekg24 Urumqi Vocational University'), (49720, 'https://ror.org/05kmqsg27', 'en', 1, 'https://ror.org/05kmqsg27 Edward Charles Foundation'), (49721, 'https://ror.org/05kncqf21', 'no_lang_code', 1, 'https://ror.org/05kncqf21 Adheren (United States)'), (49722, 'https://ror.org/05knq2v25', 'no_lang_code', 1, 'https://ror.org/05knq2v25 Francotyp Postalia (Germany)'), (49723, 'https://ror.org/05knyt645', 'en', 1, 'https://ror.org/05knyt645 China Federation of Supply and Marketing Cooperatives 中华全国供销合作总社'), (49724, 'https://ror.org/05kpyvj64', 'no_lang_code', 1, 'https://ror.org/05kpyvj64 Stanley Black & Decker (Taiwan)'), (49725, 'https://ror.org/05kqvrr98', 'en', 1, 'https://ror.org/05kqvrr98 Central Geological Survey, MOEA 經濟部中央地質調查所'), (49726, 'https://ror.org/05kr4wg26', 'de', 1, 'https://ror.org/05kr4wg26 Wikimedia CH'), (49727, 'https://ror.org/05ksc2940', 'en', 1, 'https://ror.org/05ksc2940 Mayor''s Office for Policing and Crime'), (49728, 'https://ror.org/05ksj8h20', 'no_lang_code', 1, 'https://ror.org/05ksj8h20 Infraestruturas de Portugal (Portugal)'), (49729, 'https://ror.org/05kt82m30', 'no_lang_code', 1, 'https://ror.org/05kt82m30 Isra Vision (Germany)'), (49730, 'https://ror.org/05kv9m582', 'no_lang_code', 1, 'https://ror.org/05kv9m582 Exmoor Plastics (United Kingdom)'), (49731, 'https://ror.org/05kvypp26', 'de', 1, 'https://ror.org/05kvypp26 Medias Klinikum'), (49732, 'https://ror.org/05kyej320', 'en', 1, 'https://ror.org/05kyej320 Hokkaido Archaeological Center 北海道埋蔵文化財センター'), (49733, 'https://ror.org/05kykca56', 'en', 1, 'https://ror.org/05kykca56 Ohtsuki City College 大月短期大学'), (49734, 'https://ror.org/05kz93b69', 'no_lang_code', 1, 'https://ror.org/05kz93b69 Boulder Environmental Sciences and Technology (United States)'), (49735, 'https://ror.org/05kznsx33', 'no_lang_code', 1, 'https://ror.org/05kznsx33 Antibiotic (Bulgaria)'), (49736, 'https://ror.org/05m0wv206', 'en', 1, 'https://ror.org/05m0wv206 Zhejiang Taizhou Hospital 浙江省台州医院'), (49737, 'https://ror.org/05m5wey82', 'en', 1, 'https://ror.org/05m5wey82 Islamic Azad University Dental Branch of Tehran دانشگاه آزاد اسلامی واحد دندانپزشکی تهران'), (49738, 'https://ror.org/05m762g98', 'en', 1, 'https://ror.org/05m762g98 Lishui Academy of Forestry 丽水市林业科学研究院'), (49739, 'https://ror.org/05m794j93', 'en', 1, 'https://ror.org/05m794j93 Fujisawa Institute of Technology High School 神奈川県立藤沢工科高等学校'), (49740, 'https://ror.org/05makdb23', 'en', 1, 'https://ror.org/05makdb23 Gifu Prefecture General Education Center 岐阜県総合教育センター'), (49741, 'https://ror.org/05man5y22', 'no_lang_code', 1, 'https://ror.org/05man5y22 Nhu Energy (United States)'), (49742, 'https://ror.org/05mdg9603', 'en', 1, 'https://ror.org/05mdg9603 Confederation of Oregon School Administrators'), (49743, 'https://ror.org/05mh3sg80', 'no_lang_code', 1, 'https://ror.org/05mh3sg80 Leuco (United States)'), (49744, 'https://ror.org/05mhg5n73', 'en', 1, 'https://ror.org/05mhg5n73 AlzeCure Foundation'), (49745, 'https://ror.org/05mj57325', 'en', 1, 'https://ror.org/05mj57325 Nara Prefectural Unebi Senior High School 奈良県立畝傍高等学校'), (49746, 'https://ror.org/05mmjqp23', 'en', 1, 'https://ror.org/05mmjqp23 Shandong Academy of Chinese Medicine 山东省中医药研究院'), (49747, 'https://ror.org/05mmkpa90', 'en', 1, 'https://ror.org/05mmkpa90 Schiller International University'), (49748, 'https://ror.org/05mmp2p33', 'no_lang_code', 1, 'https://ror.org/05mmp2p33 Stryker (Germany)'), (49749, 'https://ror.org/05mmvmh32', 'no_lang_code', 1, 'https://ror.org/05mmvmh32 Thermo Fisher Scientific (Israel)'), (49750, 'https://ror.org/05mpm3k87', 'en', 1, 'https://ror.org/05mpm3k87 Ontario Forest Research Institute'), (49751, 'https://ror.org/05mrd3w41', 'en', 1, 'https://ror.org/05mrd3w41 Central Kitsap School District'), (49752, 'https://ror.org/05ms7st28', 'en', 1, 'https://ror.org/05ms7st28 Ministerio de Cultura Ministry of Culture'), (49753, 'https://ror.org/05mvc7n02', 'en', 1, 'https://ror.org/05mvc7n02 Gunma Prefectural Isesaki Koyokotogakko 群馬県立伊勢崎興陽高等学校'), (49754, 'https://ror.org/05n2mzp75', 'en', 1, 'https://ror.org/05n2mzp75 Keystone Foundation'), (49755, 'https://ror.org/05n3bsa65', 'en', 1, 'https://ror.org/05n3bsa65 Tokyo Metropolitan Koganei Industrial High School 東京都立小金井工業高等学校'), (49756, 'https://ror.org/05n3ezj46', 'en', 1, 'https://ror.org/05n3ezj46 Annapurna Neurological Institute and Allied Sciences अन्नपूर्ण न्यूरोलोजिकल ईन्स्टीच्युट एण्ड एलाईड साईन्सेस'), (49757, 'https://ror.org/05n4fyj34', 'en', 1, 'https://ror.org/05n4fyj34 Pi Gamma Mu'), (49758, 'https://ror.org/05n4r9n98', 'en', 1, 'https://ror.org/05n4r9n98 St. Louis American Parkinson Disease Association'), (49759, 'https://ror.org/05n6b2q68', 'no_lang_code', 1, 'https://ror.org/05n6b2q68 Postnova Analytics (Germany)'), (49760, 'https://ror.org/05n7s3931', 'en', 1, 'https://ror.org/05n7s3931 Institute for Research and Innovation in Irrigated Agriculture'), (49761, 'https://ror.org/05n8e2826', 'en', 1, 'https://ror.org/05n8e2826 National Power Training Institute राष्ट्रीय विधुत प्रशिक्षण प्रतिष्ठान'), (49762, 'https://ror.org/05nabdh22', 'no_lang_code', 1, 'https://ror.org/05nabdh22 Mastercard (United Kingdom)'), (49763, 'https://ror.org/05naf8y09', 'fr', 1, 'https://ror.org/05naf8y09 Université Libre du Congo'), (49764, 'https://ror.org/05ncabx60', 'no_lang_code', 1, 'https://ror.org/05ncabx60 Adroit Materials (United States)'), (49765, 'https://ror.org/05nccdy26', 'en', 1, 'https://ror.org/05nccdy26 Kanagawa prefectural Atsugi high school 神奈川県立厚木高等学校'), (49766, 'https://ror.org/05nf0wq34', 'en', 1, 'https://ror.org/05nf0wq34 Saitama Prefectural Education Center 埼玉県立総合教育センター'), (49767, 'https://ror.org/05nf5cj96', 'no_lang_code', 1, 'https://ror.org/05nf5cj96 Xcision Medical Systems (United States)'), (49768, 'https://ror.org/05ngke848', 'en', 1, 'https://ror.org/05ngke848 Assumption Parish Public Library'), (49769, 'https://ror.org/05nkabx50', 'no_lang_code', 1, 'https://ror.org/05nkabx50 Advanced Composite Products (United States)'), (49770, 'https://ror.org/05nm21507', 'en', 1, 'https://ror.org/05nm21507 Ohda High School 島根県立大田高等学校'), (49771, 'https://ror.org/05nm3qe34', 'no_lang_code', 1, 'https://ror.org/05nm3qe34 NSK (Japan) 日本精工株式会社'), (49772, 'https://ror.org/05nm40v04', 'en', 1, 'https://ror.org/05nm40v04 Academy of Military Transportation 军事交通学院'); INSERT INTO `rors` VALUES (49773, 'https://ror.org/05nn0gw40', 'en', 1, 'https://ror.org/05nn0gw40 Fraunhofer Institute for Communication, Information Processing and Ergonomics Fraunhofer-Institut für Kommunikation, Informationsverarbeitung und Ergonomie'), (49774, 'https://ror.org/05nnsck87', 'en', 1, 'https://ror.org/05nnsck87 Mie Prefectural Hisai High School 三重県立久居高等学校'), (49775, 'https://ror.org/05nptd037', 'en', 1, 'https://ror.org/05nptd037 Meirin College 明倫短期大学'), (49776, 'https://ror.org/05nq3xc14', 'en', 1, 'https://ror.org/05nq3xc14 Fraunhofer USA Center for Manufacturing Innovation'), (49777, 'https://ror.org/05nqd9f14', 'no_lang_code', 1, 'https://ror.org/05nqd9f14 Valeo (South Korea)'), (49778, 'https://ror.org/05ns6w738', 'en', 1, 'https://ror.org/05ns6w738 Hakodate Otani College 函館大谷短期大学'), (49779, 'https://ror.org/05nsenn51', 'en', 1, 'https://ror.org/05nsenn51 National Traffic Safety and Environment Laboratory 交通安全環境研究所'), (49780, 'https://ror.org/05nsw7t82', 'en', 1, 'https://ror.org/05nsw7t82 Colorado River Indian Tribes Library'), (49781, 'https://ror.org/05nt41p53', 'no_lang_code', 1, 'https://ror.org/05nt41p53 Akita Prefectural Museum 秋田県立博物館'), (49782, 'https://ror.org/05ntkws66', 'en', 1, 'https://ror.org/05ntkws66 Bahamas Marine Mammal Research Organisation'), (49783, 'https://ror.org/05nts6117', 'en', 1, 'https://ror.org/05nts6117 Saitama Women''s Junior College 埼玉女子短期大学'), (49784, 'https://ror.org/05nvxe113', 'no_lang_code', 1, 'https://ror.org/05nvxe113 Mondelēz International (Canada)'), (49785, 'https://ror.org/05nw0ka87', 'en', 1, 'https://ror.org/05nw0ka87 Vienna Centre for Societal Security Wiener Zentrum für sozialwissenschaftliche Sicherheitsforschung'), (49786, 'https://ror.org/05nwzgq67', 'en', 1, 'https://ror.org/05nwzgq67 Nagano Prefectural Comprehensive Education Center 長野県総合教育センター'), (49787, 'https://ror.org/05nxk4667', 'no_lang_code', 1, 'https://ror.org/05nxk4667 Medicure (United States)'), (49788, 'https://ror.org/05nyr7981', 'en', 1, 'https://ror.org/05nyr7981 Institute of General and Experimental Biology Институт общей и экспериментальной биологии СО РАН'), (49789, 'https://ror.org/05nz1qp55', 'en', 1, 'https://ror.org/05nz1qp55 Aomori Akenohoshi Junior College 青森明の星短期大学'), (49790, 'https://ror.org/05nz79105', 'no_lang_code', 1, 'https://ror.org/05nz79105 MBDA (Germany)'), (49791, 'https://ror.org/05p1cse56', 'en', 1, 'https://ror.org/05p1cse56 Kanagawa Prefectural Yokohama Hiranuma High School 神奈川県立横浜平沼高等学校'), (49792, 'https://ror.org/05p2fn050', 'no_lang_code', 1, 'https://ror.org/05p2fn050 Bishop Water Technologies (Canada)'), (49793, 'https://ror.org/05p2fxt77', 'en', 1, 'https://ror.org/05p2fxt77 Lishui Vocational and Technical College 丽水职业技术学院'), (49794, 'https://ror.org/05p4w7d36', 'en', 1, 'https://ror.org/05p4w7d36 Meridian Institute'), (49795, 'https://ror.org/05pawpb90', 'no_lang_code', 1, 'https://ror.org/05pawpb90 Light Prescriptions Innovators (United States)'), (49796, 'https://ror.org/05pecte80', 'en', 1, 'https://ror.org/05pecte80 Jersey Shore University Medical Center'), (49797, 'https://ror.org/05pggr453', 'no_lang_code', 1, 'https://ror.org/05pggr453 DCS Computing (Austria)'), (49798, 'https://ror.org/05pjhbt17', 'en', 1, 'https://ror.org/05pjhbt17 Montana Department of Environmental Quality'), (49799, 'https://ror.org/05pnsh228', 'en', 1, 'https://ror.org/05pnsh228 Russian Scientific Center of Surgery Российский Научный Центр Хирургии им. акад. Б.В. Петровского'), (49800, 'https://ror.org/05ppep808', 'en', 1, 'https://ror.org/05ppep808 Avenue Day Hospital'), (49801, 'https://ror.org/05pps5s98', 'en', 1, 'https://ror.org/05pps5s98 Saudi Pharmaceutical Society'), (49802, 'https://ror.org/05pqwek81', 'no_lang_code', 1, 'https://ror.org/05pqwek81 Alliance Protein Laboratories (United States)'), (49803, 'https://ror.org/05prsqx18', 'no_lang_code', 1, 'https://ror.org/05prsqx18 Bohn Stafleu van Loghum (Netherlands)'), (49804, 'https://ror.org/05pt0p091', 'en', 1, 'https://ror.org/05pt0p091 Taizhou Vocational and Technical College 台州职业技术学院'), (49805, 'https://ror.org/05ptgb204', 'en', 1, 'https://ror.org/05ptgb204 Mining Institute of the Ural Branch of the Russian Academy of Sciences Горный институт Уральского отделения РАН'), (49806, 'https://ror.org/05q3m8e94', 'no_lang_code', 1, 'https://ror.org/05q3m8e94 Fuchu Hospital 府中病院'), (49807, 'https://ror.org/05q4caq61', 'en', 1, 'https://ror.org/05q4caq61 General Education Center of Iwate 岩手県立総合教育センター'), (49808, 'https://ror.org/05q609a17', 'no_lang_code', 1, 'https://ror.org/05q609a17 Texas Instruments (Ireland)'), (49809, 'https://ror.org/05q90cj61', 'en', 1, 'https://ror.org/05q90cj61 Health PEI'), (49810, 'https://ror.org/05q9b8948', 'en', 1, 'https://ror.org/05q9b8948 Ishikawa Prefectural Institute for Educational Research and In-Service Training 石川県教育センター'), (49811, 'https://ror.org/05q9cvq57', 'en', 1, 'https://ror.org/05q9cvq57 Ichinoseki Daiichi Senior High School 岩手県立一関第一高等学校・附属中学校'), (49812, 'https://ror.org/05qcw4d59', 'no_lang_code', 1, 'https://ror.org/05qcw4d59 Älvdalens Fastbränsleteknik Aktiebolag (Sweden)'), (49813, 'https://ror.org/05qer3y84', 'en', 1, 'https://ror.org/05qer3y84 Research Institute in Oncology and Hematology'), (49814, 'https://ror.org/05qessq62', 'en', 1, 'https://ror.org/05qessq62 Kyoto Municipal Saikyokotogakko-Junior High School'), (49815, 'https://ror.org/05qfkt964', 'de', 1, 'https://ror.org/05qfkt964 Fördergemeinschaft Deutsche Kinderherzzentren'), (49816, 'https://ror.org/05qgdbc96', 'en', 1, 'https://ror.org/05qgdbc96 Education Cities'), (49817, 'https://ror.org/05qgm9a33', 'en', 1, 'https://ror.org/05qgm9a33 New World University'), (49818, 'https://ror.org/05qgvn881', 'fr', 1, 'https://ror.org/05qgvn881 Institut Bouisson Bertrand'), (49819, 'https://ror.org/05qh0gq94', 'en', 1, 'https://ror.org/05qh0gq94 Windsor University School of Medicine'), (49820, 'https://ror.org/05qhw9x92', 'en', 1, 'https://ror.org/05qhw9x92 Biblioteca Centrală Universitară Central University Library'), (49821, 'https://ror.org/05qjhbz81', 'en', 1, 'https://ror.org/05qjhbz81 Sugayadai Elementary School 菅谷台小学校'), (49822, 'https://ror.org/05qjkt447', 'en', 1, 'https://ror.org/05qjkt447 Economic History Society'), (49823, 'https://ror.org/05qpyc807', 'no_lang_code', 1, 'https://ror.org/05qpyc807 ZF Screens (Netherlands)'), (49824, 'https://ror.org/05qqbm455', 'pt', 1, 'https://ror.org/05qqbm455 Associação Brasileira de Ensaios não Destrutivos e Inspeção'), (49825, 'https://ror.org/05qr8a694', 'en', 1, 'https://ror.org/05qr8a694 Grameen Research'), (49826, 'https://ror.org/05qraqp26', 'en', 1, 'https://ror.org/05qraqp26 Lietuvos Respublikos kultūros ministerija Ministry of Culture'), (49827, 'https://ror.org/05qszhe91', 'en', 1, 'https://ror.org/05qszhe91 Museum of Nature and Human Activities Hyogo 自然の博物館と人間活動兵庫'), (49828, 'https://ror.org/05qv2mm32', 'en', 1, 'https://ror.org/05qv2mm32 Wikimedia Macedonia Викимедија Македонија'), (49829, 'https://ror.org/05qwc0640', 'en', 1, 'https://ror.org/05qwc0640 Lowcountry Council of Governments'), (49830, 'https://ror.org/05qxfse94', 'en', 1, 'https://ror.org/05qxfse94 Ibaraki Womens Junior College 茨城女子短期大学'), (49831, 'https://ror.org/05qxm2f34', 'en', 1, 'https://ror.org/05qxm2f34 Foundation for Excellence in Education'), (49832, 'https://ror.org/05qzegn43', 'no_lang_code', 1, 'https://ror.org/05qzegn43 Wellspring Biosciences (United States)'), (49833, 'https://ror.org/05qzw2346', 'fr', 1, 'https://ror.org/05qzw2346 Wikimedia Canada'), (49834, 'https://ror.org/05r261n31', 'pt', 1, 'https://ror.org/05r261n31 Centro de Direito Internacional'), (49835, 'https://ror.org/05r26zf79', 'en', 1, 'https://ror.org/05r26zf79 Port and Airport Research Institute 港湾空港技術研究所'), (49836, 'https://ror.org/05r2e5c27', 'pt', 1, 'https://ror.org/05r2e5c27 Sociedade Brasileira de Pesquisa Operacional'), (49837, 'https://ror.org/05r7r4y77', 'en', 1, 'https://ror.org/05r7r4y77 Gateway to College National Network'), (49838, 'https://ror.org/05rcgef49', 'en', 1, 'https://ror.org/05rcgef49 Institute for Complex Systems Istituto dei Sistemi Complessi'), (49839, 'https://ror.org/05rdf3493', 'es', 1, 'https://ror.org/05rdf3493 Universidad Abierta y a Distancia'), (49840, 'https://ror.org/05rdhpk34', 'en', 1, 'https://ror.org/05rdhpk34 Tokyo Hygiene Gakuen College 東京衛生学園専門学校'), (49841, 'https://ror.org/05rm1p636', 'pt', 1, 'https://ror.org/05rm1p636 Instituto Federal de Educação, Ciência e Tecnologia do Maranhão, Instituto Federal do Maranhão'), (49842, 'https://ror.org/05rnyty77', 'en', 1, 'https://ror.org/05rnyty77 Institute of Archaeology 中国社会科学院考古研究所是'), (49843, 'https://ror.org/05rp1xt91', 'en', 1, 'https://ror.org/05rp1xt91 League For Innovation in the Community College'), (49844, 'https://ror.org/05rv8ev82', 'no_lang_code', 1, 'https://ror.org/05rv8ev82 Kia Motors (South Korea) 기아자동차'), (49845, 'https://ror.org/05rvq9153', 'no_lang_code', 1, 'https://ror.org/05rvq9153 EYDAP (Greece) Εταιρεία Ύδρευσης και Αποχέτευσης Πρωτεύουσας'), (49846, 'https://ror.org/05rwf2d02', 'en', 1, 'https://ror.org/05rwf2d02 Ryogoku High School 東京都立両国高等学校・附属中学校'), (49847, 'https://ror.org/05rxz3g75', 'en', 1, 'https://ror.org/05rxz3g75 Harris County Public Library'), (49848, 'https://ror.org/05ryaaw10', 'en', 1, 'https://ror.org/05ryaaw10 College of Healthcare Management 保健医療経営大学'), (49849, 'https://ror.org/05ryccv79', 'pt', 1, 'https://ror.org/05ryccv79 Escola Superior Dom Helder Câmara'), (49850, 'https://ror.org/05s0mht63', 'en', 1, 'https://ror.org/05s0mht63 Tokyo Metropolitan Board of Education 東京都教育事務所'), (49851, 'https://ror.org/05s18kz11', 'de', 1, 'https://ror.org/05s18kz11 Fachklinik Hornheide'), (49852, 'https://ror.org/05s252336', 'no_lang_code', 1, 'https://ror.org/05s252336 Carbon Engineering (Canada)'), (49853, 'https://ror.org/05s2dce75', 'no_lang_code', 1, 'https://ror.org/05s2dce75 Center for Information and Numerical Data Analysis and Synthesis (United States)'), (49854, 'https://ror.org/05s3b4196', 'en', 1, 'https://ror.org/05s3b4196 Hirosaki University Hospital 弘前大学医学部附属病院'), (49855, 'https://ror.org/05s3gkw93', 'en', 1, 'https://ror.org/05s3gkw93 International University for Graduate Studies'), (49856, 'https://ror.org/05s3r6j75', 'en', 1, 'https://ror.org/05s3r6j75 Southwestern Community College - Iowa'), (49857, 'https://ror.org/05s44bn67', 'en', 1, 'https://ror.org/05s44bn67 Cook County Sheriff''s Office'), (49858, 'https://ror.org/05s4ea934', 'en', 1, 'https://ror.org/05s4ea934 Central Visayan Institute Foundation'), (49859, 'https://ror.org/05s5g6369', 'no_lang_code', 1, 'https://ror.org/05s5g6369 Tokushima Hospital 国立病院機構徳島病院'), (49860, 'https://ror.org/05s5rh151', 'it', 1, 'https://ror.org/05s5rh151 Agenzia Regionale per la Tecnologia e l''Innovazione'), (49861, 'https://ror.org/05s7fvh27', 'no_lang_code', 1, 'https://ror.org/05s7fvh27 Yamaha (Japan) ヤマハ株式会社'), (49862, 'https://ror.org/05s8mns17', 'en', 1, 'https://ror.org/05s8mns17 Association for Clinical Biochemistry and Laboratory Medicine'), (49863, 'https://ror.org/05s9h0j72', 'en', 1, 'https://ror.org/05s9h0j72 Kungliga Gustav Adolfs Akademien Royal Gustavus Adolphus Academy'), (49864, 'https://ror.org/05sa4da38', 'en', 1, 'https://ror.org/05sa4da38 Tokyo Metropolitan Industrial Technology Research Institute 東京都立産業技術研究センター'), (49865, 'https://ror.org/05saknr96', 'en', 1, 'https://ror.org/05saknr96 Takezono Higashi Elementary School つくば市立竹園東小学校'), (49866, 'https://ror.org/05sam1g35', 'no_lang_code', 1, 'https://ror.org/05sam1g35 Hovione (China)'), (49867, 'https://ror.org/05sb2p455', 'en', 1, 'https://ror.org/05sb2p455 Tottori Prefectural Chizu Agriculture and Forestry High School 鳥取県立智頭農林高等学校'), (49868, 'https://ror.org/05scqcm44', 'no_lang_code', 1, 'https://ror.org/05scqcm44 Solers (United States)'), (49869, 'https://ror.org/05se67h97', 'en', 1, 'https://ror.org/05se67h97 North Central Texas Council of Governments'), (49870, 'https://ror.org/05sehyt57', 'en', 1, 'https://ror.org/05sehyt57 Islamic Azad University of Kermanshah دانشگاه آزاد اسلامی واحد کرمانشاه'), (49871, 'https://ror.org/05sfq4m04', 'no_lang_code', 1, 'https://ror.org/05sfq4m04 Draxis Environmental Technologies (Greece) ΔΡΑΞΙΣ ΤΕΧΝΟΛΟΓΙΕΣ ΠΕΡΙΒΑΛΛΟΝΤΟΣ'), (49872, 'https://ror.org/05sgy1v64', 'en', 1, 'https://ror.org/05sgy1v64 Brussels Office of Helmholtz Association'), (49873, 'https://ror.org/05sgyt558', 'en', 1, 'https://ror.org/05sgyt558 Gunma Prefectural Institute of Agriculture and Forestry 群馬県立農林大学校'), (49874, 'https://ror.org/05skcvs70', 'no_lang_code', 1, 'https://ror.org/05skcvs70 Recyc PHP (Canada)'), (49875, 'https://ror.org/05skghf24', 'en', 1, 'https://ror.org/05skghf24 Institute of Geology Ufa Scientific Center Институт геологии Уфимского научного центра РАН'), (49876, 'https://ror.org/05sm0qs27', 'en', 1, 'https://ror.org/05sm0qs27 Saitama Prefectural Museum of History and Folklore 埼玉県立歴史と民俗の博物館'), (49877, 'https://ror.org/05sm4gx39', 'no_lang_code', 1, 'https://ror.org/05sm4gx39 Red Hat (United Kingdom)'), (49878, 'https://ror.org/05sm9st23', 'en', 1, 'https://ror.org/05sm9st23 Chartered Accountants Australia and New Zealand'), (49879, 'https://ror.org/05sqx9s36', 'no_lang_code', 1, 'https://ror.org/05sqx9s36 Acushnet (United States)'), (49880, 'https://ror.org/05stxd180', 'en', 1, 'https://ror.org/05stxd180 Atlanta Research and Education Foundation'), (49881, 'https://ror.org/05svcq088', 'en', 1, 'https://ror.org/05svcq088 Engineering and Science University Magnet School'), (49882, 'https://ror.org/05sve0f84', 'en', 1, 'https://ror.org/05sve0f84 Fundacion Hondureña de Investigación Agricola Honduras Foundation for Agricultural Research'), (49883, 'https://ror.org/05sw6n724', 'no_lang_code', 1, 'https://ror.org/05sw6n724 Right Way (Germany)'), (49884, 'https://ror.org/05swp8738', 'en', 1, 'https://ror.org/05swp8738 Sakai City Board of Education 教育委員会 - 堺市'), (49885, 'https://ror.org/05sy11p04', 'no_lang_code', 1, 'https://ror.org/05sy11p04 Roche (Israel) רוש ישראל'), (49886, 'https://ror.org/05syhdw25', 'no_lang_code', 1, 'https://ror.org/05syhdw25 Visa (United Kingdom)'), (49887, 'https://ror.org/05syq9r31', 'de', 1, 'https://ror.org/05syq9r31 Forschungsvereinigung für Luft- und Trocknungstechnik'), (49888, 'https://ror.org/05sz2wg38', 'no_lang_code', 1, 'https://ror.org/05sz2wg38 Technical Solutions (United States)'), (49889, 'https://ror.org/05szks045', 'en', 1, 'https://ror.org/05szks045 Norfolk Public Schools'), (49890, 'https://ror.org/05t0zzz08', 'no_lang_code', 1, 'https://ror.org/05t0zzz08 Stryker (Canada)'), (49891, 'https://ror.org/05t5znx80', 'no_lang_code', 1, 'https://ror.org/05t5znx80 Biosettia (United States)'), (49892, 'https://ror.org/05t77d857', 'en', 1, 'https://ror.org/05t77d857 Institute of Biomedical Science'), (49893, 'https://ror.org/05t96az61', 'no_lang_code', 1, 'https://ror.org/05t96az61 Cirrus Logic (United States)'), (49894, 'https://ror.org/05t9zpz97', 'no_lang_code', 1, 'https://ror.org/05t9zpz97 Cook Medical (Australia)'), (49895, 'https://ror.org/05tawrz57', 'no_lang_code', 1, 'https://ror.org/05tawrz57 Megger (Germany)'), (49896, 'https://ror.org/05tc61k56', 'en', 1, 'https://ror.org/05tc61k56 Pushchino State Institute of Natural Sciences Пущинский Государственный Университет'), (49897, 'https://ror.org/05tcdh256', 'en', 1, 'https://ror.org/05tcdh256 Division of Parasitic Diseases and Malaria'), (49898, 'https://ror.org/05tcf2c75', 'en', 1, 'https://ror.org/05tcf2c75 International Peace Institute'), (49899, 'https://ror.org/05td6db49', 'no_lang_code', 1, 'https://ror.org/05td6db49 Smart Component Technologies (United Kingdom)'), (49900, 'https://ror.org/05td9wm36', 'en', 1, 'https://ror.org/05td9wm36 Royal United Services Institute'), (49901, 'https://ror.org/05tdqzj08', 'no_lang_code', 1, 'https://ror.org/05tdqzj08 New Horizons Diagnostics (United States)'), (49902, 'https://ror.org/05tdzsq49', 'no_lang_code', 1, 'https://ror.org/05tdzsq49 Nortek (United States)'), (49903, 'https://ror.org/05tee1f44', 'en', 1, 'https://ror.org/05tee1f44 Shizuoka Prefectural Education Center 静岡県総合教育センター'), (49904, 'https://ror.org/05tew7y65', 'en', 1, 'https://ror.org/05tew7y65 Center for Research on Political Economy'), (49905, 'https://ror.org/05tgc6914', 'en', 1, 'https://ror.org/05tgc6914 Kawasaki College of Allied Health Professions 川崎医療短期大学'), (49906, 'https://ror.org/05tgg8n11', 'no_lang_code', 1, 'https://ror.org/05tgg8n11 NovaTech (United States)'), (49907, 'https://ror.org/05tgpyh43', 'en', 1, 'https://ror.org/05tgpyh43 Oita Industrial Research Institute 大分県産業科学技術センター'), (49908, 'https://ror.org/05tj5za17', 'no_lang_code', 1, 'https://ror.org/05tj5za17 General Electric (Switzerland)'), (49909, 'https://ror.org/05tjmvm75', 'no_lang_code', 1, 'https://ror.org/05tjmvm75 InnoSepra (United States)'), (49910, 'https://ror.org/05tk7d923', 'en', 1, 'https://ror.org/05tk7d923 Sumter County Planning Department'), (49911, 'https://ror.org/05tkntq54', 'en', 1, 'https://ror.org/05tkntq54 Colorado Springs School District 11'), (49912, 'https://ror.org/05tmzdb63', 'no_lang_code', 1, 'https://ror.org/05tmzdb63 T3D Therapeutics (United States)'), (49913, 'https://ror.org/05tp4xj78', 'en', 1, 'https://ror.org/05tp4xj78 State Optical Institute named after SI Vavilov Государственный оптический институт имени С.И. Вавилова'), (49914, 'https://ror.org/05tq4a167', 'no_lang_code', 1, 'https://ror.org/05tq4a167 ShinEtsu Chemical (Japan) 信越化学工業株式会社'), (49915, 'https://ror.org/05trpty44', 'fr', 1, 'https://ror.org/05trpty44 Clinique Saint Jean Languedoc'), (49916, 'https://ror.org/05tsb3a74', 'en', 1, 'https://ror.org/05tsb3a74 Ministry of Urban Development सहरी विकास मन्त्रालय | निजामती सेवाको सपना'), (49917, 'https://ror.org/05tt0as29', 'en', 1, 'https://ror.org/05tt0as29 Tohto College of Health Sciences 東都医療大学'), (49918, 'https://ror.org/05ttfy022', 'no_lang_code', 1, 'https://ror.org/05ttfy022 Tsubakimoto Chain (Japan) 株式会社椿本チエイン'), (49919, 'https://ror.org/05ttsqg93', 'no_lang_code', 1, 'https://ror.org/05ttsqg93 Medtronic (Germany)'), (49920, 'https://ror.org/05ttt5a28', 'no_lang_code', 1, 'https://ror.org/05ttt5a28 Intersil (United States)'), (49921, 'https://ror.org/05tw0wf88', 'no_lang_code', 1, 'https://ror.org/05tw0wf88 Airbus (India)'), (49922, 'https://ror.org/05tx5hy52', 'no_lang_code', 1, 'https://ror.org/05tx5hy52 Tech4Imaging (United States)'), (49923, 'https://ror.org/05txbz736', 'no_lang_code', 1, 'https://ror.org/05txbz736 Saint-Gobain (Germany)'), (49924, 'https://ror.org/05tycwb10', 'en', 1, 'https://ror.org/05tycwb10 Niigata Prefectural Nagaoka High School 新潟県立長岡高等学校'), (49925, 'https://ror.org/05tyzry72', 'de', 1, 'https://ror.org/05tyzry72 Werner-Wicker-Klinik'), (49926, 'https://ror.org/05tzak412', 'en', 1, 'https://ror.org/05tzak412 Life Sciences Discovery Fund'), (49927, 'https://ror.org/05tztfw60', 'en', 1, 'https://ror.org/05tztfw60 Hydro Tasmania'), (49928, 'https://ror.org/05v1ag808', 'no_lang_code', 1, 'https://ror.org/05v1ag808 Altranex (Canada)'), (49929, 'https://ror.org/05v258z19', 'en', 1, 'https://ror.org/05v258z19 Office of the South Australian Chief Entrepreneur'), (49930, 'https://ror.org/05v3gb133', 'no_lang_code', 1, 'https://ror.org/05v3gb133 Stanley Black & Decker (Israel)'), (49931, 'https://ror.org/05v40eh15', 'no_lang_code', 1, 'https://ror.org/05v40eh15 Spinologics (Canada)'), (49932, 'https://ror.org/05v424314', 'no_lang_code', 1, 'https://ror.org/05v424314 Oregon Physics (United States)'), (49933, 'https://ror.org/05v508890', 'en', 1, 'https://ror.org/05v508890 McCallum Theatre'), (49934, 'https://ror.org/05v74eq93', 'en', 1, 'https://ror.org/05v74eq93 Gaston Day School'), (49935, 'https://ror.org/05v7khz67', 'en', 1, 'https://ror.org/05v7khz67 Bakhtar University پوهنتون باختر'), (49936, 'https://ror.org/05v965x44', 'no_lang_code', 1, 'https://ror.org/05v965x44 C4i (Canada)'), (49937, 'https://ror.org/05vhh0619', 'en', 1, 'https://ror.org/05vhh0619 Trinity Valley Community College'), (49938, 'https://ror.org/05vjf0e82', 'en', 1, 'https://ror.org/05vjf0e82 Georgia Tech Tools for Life'), (49939, 'https://ror.org/05vp7sn46', 'en', 1, 'https://ror.org/05vp7sn46 Shiminkatsudou Information Center'), (49940, 'https://ror.org/05vppxx21', 'en', 1, 'https://ror.org/05vppxx21 African Agricultural Technology Foundation'), (49941, 'https://ror.org/05vqnxk73', 'de', 1, 'https://ror.org/05vqnxk73 Battelle'), (49942, 'https://ror.org/05vtekv74', 'en', 1, 'https://ror.org/05vtekv74 Montgomery City County Public Library'), (49943, 'https://ror.org/05vtsp510', 'en', 1, 'https://ror.org/05vtsp510 Australian Respiratory and Sleep Medicine Institute'), (49944, 'https://ror.org/05vvdqy91', 'pt', 1, 'https://ror.org/05vvdqy91 Associação Brasileira de Águas Subterrâneas'), (49945, 'https://ror.org/05w1vm756', 'en', 1, 'https://ror.org/05w1vm756 Yonezawa Chuo Senior High School 米沢中央高等学校'), (49946, 'https://ror.org/05w1x0w37', 'en', 1, 'https://ror.org/05w1x0w37 Polar Scientific'), (49947, 'https://ror.org/05w2g7m94', 'no_lang_code', 1, 'https://ror.org/05w2g7m94 Coare Biotechnology (United States)'), (49948, 'https://ror.org/05w362f32', 'no_lang_code', 1, 'https://ror.org/05w362f32 BorgWarner (Germany)'), (49949, 'https://ror.org/05w3e2p73', 'en', 1, 'https://ror.org/05w3e2p73 Manuscript Society'), (49950, 'https://ror.org/05w5shm69', 'no_lang_code', 1, 'https://ror.org/05w5shm69 Chevron Phillips Chemical (United States)'), (49951, 'https://ror.org/05w6rx357', 'en', 1, 'https://ror.org/05w6rx357 Council for Aid to Education'), (49952, 'https://ror.org/05w7zhb08', 'en', 1, 'https://ror.org/05w7zhb08 County of Los Angeles Public Library'), (49953, 'https://ror.org/05wba8r86', 'en', 1, 'https://ror.org/05wba8r86 Institute of Crystallography Istituto di Cristallografia'), (49954, 'https://ror.org/05wbh2085', 'en', 1, 'https://ror.org/05wbh2085 Department of Food Technology and Quality Control'), (49955, 'https://ror.org/05wcj6f33', 'en', 1, 'https://ror.org/05wcj6f33 Denise Louie Education Center'), (49956, 'https://ror.org/05wcr1b38', 'en', 1, 'https://ror.org/05wcr1b38 Centre for Inflammation Research'), (49957, 'https://ror.org/05wcy9v93', 'en', 1, 'https://ror.org/05wcy9v93 Japan Society for Occupational Health 日本産業衛生学会'), (49958, 'https://ror.org/05wdedb75', 'no_lang_code', 1, 'https://ror.org/05wdedb75 Aisin (United States) アイシン精機株式会社'), (49959, 'https://ror.org/05we5kc38', 'da', 1, 'https://ror.org/05we5kc38 Tandlægeforeningen'), (49960, 'https://ror.org/05wfxya04', 'no_lang_code', 1, 'https://ror.org/05wfxya04 Invivo Sciences (United States)'), (49961, 'https://ror.org/05wn4sm75', 'en', 1, 'https://ror.org/05wn4sm75 Leadership Florida'), (49962, 'https://ror.org/05wn9p486', 'en', 1, 'https://ror.org/05wn9p486 Rayat Institute of Engineering & Information Technology रयात अभियांत्रिकी एवं सूचना प्रौद्योगिकी संस्थान'), (49963, 'https://ror.org/05wq09n36', 'en', 1, 'https://ror.org/05wq09n36 Okayama Prefectural Kurashiki Chuo High School 岡山県立倉敷中央高等学校'), (49964, 'https://ror.org/05wqk8p58', 'no_lang_code', 1, 'https://ror.org/05wqk8p58 MACOM (Japan)'), (49965, 'https://ror.org/05wstjm18', 'es', 1, 'https://ror.org/05wstjm18 Academia Nacional de Ciencias de Bolivia'), (49966, 'https://ror.org/05wstmm20', 'no_lang_code', 1, 'https://ror.org/05wstmm20 Horiba (Germany)'), (49967, 'https://ror.org/05wt8ay40', 'en', 1, 'https://ror.org/05wt8ay40 Canadian Society of Petroleum Geologists'), (49968, 'https://ror.org/05wvdt748', 'en', 1, 'https://ror.org/05wvdt748 Association of universities in the Netherlands Vereniging van Samenwerkende Nederlandse Universiteiten'), (49969, 'https://ror.org/05wybg642', 'no_lang_code', 1, 'https://ror.org/05wybg642 Eyeball (Canada)'), (49970, 'https://ror.org/05x01yd17', 'en', 1, 'https://ror.org/05x01yd17 Ability Development Training Center 能力開発研修センター'), (49971, 'https://ror.org/05x0zqa09', 'en', 1, 'https://ror.org/05x0zqa09 Northeast Community College'), (49972, 'https://ror.org/05x1ffr83', 'no_lang_code', 1, 'https://ror.org/05x1ffr83 Realtek (Taiwan) 瑞昱半導體股份有限公司'), (49973, 'https://ror.org/05x3qxg97', 'en', 1, 'https://ror.org/05x3qxg97 Chinese Society for Tropical Crops 中国热带作物学会'), (49974, 'https://ror.org/05x7wqc91', 'no_lang_code', 1, 'https://ror.org/05x7wqc91 Valeo (United States)'), (49975, 'https://ror.org/05x7wz523', 'en', 1, 'https://ror.org/05x7wz523 Statistics Sweden Statistiska Centralbyrån'), (49976, 'https://ror.org/05xck0p20', 'no_lang_code', 1, 'https://ror.org/05xck0p20 Jordan Valley Semiconductors (Israel)'), (49977, 'https://ror.org/05xdpay59', 'en', 1, 'https://ror.org/05xdpay59 Climate Resilience Infrastructure Development Facility'), (49978, 'https://ror.org/05xfayp21', 'en', 1, 'https://ror.org/05xfayp21 Higashi Chikushi Junior College 東筑紫短期大学'), (49979, 'https://ror.org/05xke1111', 'en', 1, 'https://ror.org/05xke1111 Foundation for the Mid South'), (49980, 'https://ror.org/05xkpwf58', 'en', 1, 'https://ror.org/05xkpwf58 Sierra Leone Agricultural Research Institute'), (49981, 'https://ror.org/05xmzbk80', 'no_lang_code', 1, 'https://ror.org/05xmzbk80 Nidec (Japan) 日本電産株式会社'), (49982, 'https://ror.org/05xqh8n76', 'no_lang_code', 1, 'https://ror.org/05xqh8n76 UFI Filters (Italy)'), (49983, 'https://ror.org/05xr89294', 'en', 1, 'https://ror.org/05xr89294 American Physician Scientists Association'), (49984, 'https://ror.org/05xwnaa24', 'en', 1, 'https://ror.org/05xwnaa24 Ohara Memorial Institute for Science of Labour 大原記念労働科学研究所'), (49985, 'https://ror.org/05xx3wf87', 'en', 1, 'https://ror.org/05xx3wf87 Institute of Mathematics and Mathematical Modeling'), (49986, 'https://ror.org/05y09nm31', 'no_lang_code', 1, 'https://ror.org/05y09nm31 Engineered Coatings (United States)'), (49987, 'https://ror.org/05y6mfn19', 'en', 1, 'https://ror.org/05y6mfn19 Envision Education'), (49988, 'https://ror.org/05y846g09', 'en', 1, 'https://ror.org/05y846g09 Chiba Prefectural Government 千叶县政府'), (49989, 'https://ror.org/05y88cx07', 'en', 1, 'https://ror.org/05y88cx07 Sydney Orthopaedic Research Institute'), (49990, 'https://ror.org/05y8c9413', 'no_lang_code', 1, 'https://ror.org/05y8c9413 SK Communications (South Korea) 에스케이커뮤니케이션즈'), (49991, 'https://ror.org/05ybwtt56', 'en', 1, 'https://ror.org/05ybwtt56 Hinton Area Foundation'), (49992, 'https://ror.org/05yca4657', 'en', 1, 'https://ror.org/05yca4657 Tokyo Metropolitan Art Museum 東京都美術館'), (49993, 'https://ror.org/05yd3zv45', 'en', 1, 'https://ror.org/05yd3zv45 Clock View Hospital'), (49994, 'https://ror.org/05ye2w436', 'en', 1, 'https://ror.org/05ye2w436 Oita Junior College 大分短期大学'), (49995, 'https://ror.org/05ygj1d20', 'no_lang_code', 1, 'https://ror.org/05ygj1d20 Gaertner (United States)'), (49996, 'https://ror.org/05yhf9c86', 'no_lang_code', 1, 'https://ror.org/05yhf9c86 Gabriel Entertainment (United States)'), (49997, 'https://ror.org/05yk66715', 'en', 1, 'https://ror.org/05yk66715 World Phenomenology Institute'), (49998, 'https://ror.org/05ym5q463', 'en', 1, 'https://ror.org/05ym5q463 Industrial Research Institute of Shizuoka Prefecture 静岡県工業技術研究所'), (49999, 'https://ror.org/05yp26r95', 'no_lang_code', 1, 'https://ror.org/05yp26r95 Kerecis (Iceland)'), (50000, 'https://ror.org/05yps4z32', 'pt', 1, 'https://ror.org/05yps4z32 Inesc P&D Brasil'), (50001, 'https://ror.org/0000v4966', 'en', 1, 'https://ror.org/0000v4966 Innovation Center Denmark'), (50002, 'https://ror.org/00015af83', 'no_lang_code', 1, 'https://ror.org/00015af83 Mediolanum Farmaceutici (Italy)'), (50003, 'https://ror.org/0001sz110', 'en', 1, 'https://ror.org/0001sz110 National Writing Project'), (50004, 'https://ror.org/0005s7205', 'no_lang_code', 1, 'https://ror.org/0005s7205 Team Production (Denmark)'), (50005, 'https://ror.org/0008sqa62', 'en', 1, 'https://ror.org/0008sqa62 Virginia Beach Public Library'), (50006, 'https://ror.org/00093wj72', 'en', 1, 'https://ror.org/00093wj72 Dean Witter Foundation'), (50007, 'https://ror.org/00099v123', 'no_lang_code', 1, 'https://ror.org/00099v123 CCL Industries (United States)'), (50008, 'https://ror.org/0009v8r26', 'no_lang_code', 1, 'https://ror.org/0009v8r26 Inflamax Research (Canada)'), (50009, 'https://ror.org/000d7gn07', 'en', 1, 'https://ror.org/000d7gn07 United Way of Spokane County'), (50010, 'https://ror.org/000dkwx88', 'en', 1, 'https://ror.org/000dkwx88 British Society of Gerontology'), (50011, 'https://ror.org/000fzkp10', 'no_lang_code', 1, 'https://ror.org/000fzkp10 Leavitt Partners (United States)'), (50012, 'https://ror.org/000gayj94', 'en', 1, 'https://ror.org/000gayj94 Alaska Conservation Foundation'), (50013, 'https://ror.org/000kq2q47', 'en', 1, 'https://ror.org/000kq2q47 John Tracy Clinic'), (50014, 'https://ror.org/000m3hy37', 'no_lang_code', 1, 'https://ror.org/000m3hy37 Dr. August Wolff (Germany)'), (50015, 'https://ror.org/000nb0t51', 'no_lang_code', 1, 'https://ror.org/000nb0t51 VaxTrac'), (50016, 'https://ror.org/000nk9m43', 'no_lang_code', 1, 'https://ror.org/000nk9m43 Montavit (Austria)'), (50017, 'https://ror.org/000qf7469', 'en', 1, 'https://ror.org/000qf7469 American Hungarian Foundation'), (50018, 'https://ror.org/000qx0g86', 'en', 1, 'https://ror.org/000qx0g86 Psychiatric Medicine Associates'), (50019, 'https://ror.org/000qysg46', 'en', 1, 'https://ror.org/000qysg46 Yinchuan First People''s Hospital 银川第一人民医院'), (50020, 'https://ror.org/000r83295', 'en', 1, 'https://ror.org/000r83295 Family Allergy and Asthma Research Institute'), (50021, 'https://ror.org/000sx5h02', 'en', 1, 'https://ror.org/000sx5h02 YES Prep Public Schools'), (50022, 'https://ror.org/000tce348', 'en', 1, 'https://ror.org/000tce348 National Critical Care and Trauma Response Centre'), (50023, 'https://ror.org/000tfh447', 'en', 1, 'https://ror.org/000tfh447 Dali Traditional Chinese Medicine Hospital 大理白族自治州中医医院'), (50024, 'https://ror.org/000wnz761', 'en', 1, 'https://ror.org/000wnz761 Moscow Clinical Scientific Center Москва Центра клинических исследований'), (50025, 'https://ror.org/000x1tr98', 'en', 1, 'https://ror.org/000x1tr98 Orlando Clinical Research Center'), (50026, 'https://ror.org/000y6m766', 'en', 1, 'https://ror.org/000y6m766 European Society for Paediatric Endocrinology'), (50027, 'https://ror.org/000ydq217', 'no_lang_code', 1, 'https://ror.org/000ydq217 Vectura (United Kingdom)'), (50028, 'https://ror.org/00146wx41', 'no_lang_code', 1, 'https://ror.org/00146wx41 Japan Steel Works (Japan) 株式会社日本製鋼所'), (50029, 'https://ror.org/0014n6t23', 'fr', 1, 'https://ror.org/0014n6t23 Centre Hospitalier de Roubaix, Hospital Center De Roubaix'), (50030, 'https://ror.org/0017mh436', 'en', 1, 'https://ror.org/0017mh436 Pain Relief Foundation'), (50031, 'https://ror.org/0018m2960', 'pt', 1, 'https://ror.org/0018m2960 Alergo Dermatologia Integrada'), (50032, 'https://ror.org/0018xw886', 'it', 1, 'https://ror.org/0018xw886 Azienda Unita'' Sanitaria Locale Di Modena'), (50033, 'https://ror.org/001crv456', 'nl', 1, 'https://ror.org/001crv456 Werkgroep Immunotherapie Nederland voor Oncologie'), (50034, 'https://ror.org/001fpn257', 'en', 1, 'https://ror.org/001fpn257 Nineveh Charitable Trust'), (50035, 'https://ror.org/001g1zs59', 'en', 1, 'https://ror.org/001g1zs59 Wuhan Dongxihu District People Hospital 东西湖区人民医院'), (50036, 'https://ror.org/001m1z350', 'en', 1, 'https://ror.org/001m1z350 Community Foundation of South Puget Sound'), (50037, 'https://ror.org/001pmf274', 'no_lang_code', 1, 'https://ror.org/001pmf274 Sentinext Therapeutics (Malaysia)'), (50038, 'https://ror.org/001q2kp78', 'en', 1, 'https://ror.org/001q2kp78 Orange Coast Memorial Medical Center'), (50039, 'https://ror.org/001rkmw77', 'en', 1, 'https://ror.org/001rkmw77 Morgan Family Foundation'), (50040, 'https://ror.org/001shd435', 'en', 1, 'https://ror.org/001shd435 Shuozhou Central Hospital 朔州中心医院'), (50041, 'https://ror.org/001tx6p24', 'no_lang_code', 1, 'https://ror.org/001tx6p24 Wacom (Japan) 株式会社ワコム'), (50042, 'https://ror.org/001x5ea44', 'no_lang_code', 1, 'https://ror.org/001x5ea44 Halozyme Therapeutics (United States)'), (50043, 'https://ror.org/001z8d956', 'en', 1, 'https://ror.org/001z8d956 Rocky Mountain PBS'), (50044, 'https://ror.org/0020ts240', 'en', 1, 'https://ror.org/0020ts240 Coastal Carolina Research Center'), (50045, 'https://ror.org/0021t7t04', 'en', 1, 'https://ror.org/0021t7t04 SeaView Research'), (50046, 'https://ror.org/00222m642', 'no_lang_code', 1, 'https://ror.org/00222m642 Profile Pharma (United Kingdom)'), (50047, 'https://ror.org/0023ccp69', 'no_lang_code', 1, 'https://ror.org/0023ccp69 Sintetica (Switzerland)'), (50048, 'https://ror.org/002861396', 'en', 1, 'https://ror.org/002861396 Australian Prime Ministers Centre'), (50049, 'https://ror.org/0029x1m59', 'no_lang_code', 1, 'https://ror.org/0029x1m59 Jegs (United States)'), (50050, 'https://ror.org/002beej94', 'en', 1, 'https://ror.org/002beej94 Washington Health Foundation'), (50051, 'https://ror.org/002chp112', 'de', 1, 'https://ror.org/002chp112 Stiftung Endoprothetik'), (50052, 'https://ror.org/002h1n354', 'en', 1, 'https://ror.org/002h1n354 Partners HealthCare Connected Health'), (50053, 'https://ror.org/002h3mc90', 'no_lang_code', 1, 'https://ror.org/002h3mc90 Ingredion (United States)'), (50054, 'https://ror.org/002jn2544', 'en', 1, 'https://ror.org/002jn2544 Meadowlark Hills'), (50055, 'https://ror.org/002kv3e70', 'en', 1, 'https://ror.org/002kv3e70 Douglas B. Marshall Jr. Family Foundation'), (50056, 'https://ror.org/002m9xv20', 'en', 1, 'https://ror.org/002m9xv20 Educurious'), (50057, 'https://ror.org/002nx7j40', 'en', 1, 'https://ror.org/002nx7j40 Lea''s Foundation for Leukemia Research'), (50058, 'https://ror.org/002petj21', 'en', 1, 'https://ror.org/002petj21 Dan Jansen Foundation'), (50059, 'https://ror.org/002qb7v30', 'en', 1, 'https://ror.org/002qb7v30 Citizen Schools'), (50060, 'https://ror.org/002s05q87', 'en', 1, 'https://ror.org/002s05q87 Grekin Skin Institute'), (50061, 'https://ror.org/002sqnt54', 'en', 1, 'https://ror.org/002sqnt54 Saint Joseph Medical Center Joliet'), (50062, 'https://ror.org/002tmnt12', 'no_lang_code', 1, 'https://ror.org/002tmnt12 Thinkcerca.com (United States)'), (50063, 'https://ror.org/002tpp543', 'en', 1, 'https://ror.org/002tpp543 Center for Clinical and Cosmetic Research'), (50064, 'https://ror.org/002vm7324', 'no_lang_code', 1, 'https://ror.org/002vm7324 Cupron (United States)'), (50065, 'https://ror.org/002yb3q28', 'da', 1, 'https://ror.org/002yb3q28 Moesgaard Museum'), (50066, 'https://ror.org/00323r369', 'en', 1, 'https://ror.org/00323r369 Myocarditis Foundation'), (50067, 'https://ror.org/0033hgk30', 'no_lang_code', 1, 'https://ror.org/0033hgk30 Oasmia Pharmaceutical (Sweden)'), (50068, 'https://ror.org/0034wvw32', 'en', 1, 'https://ror.org/0034wvw32 Chesapeake Research Group'), (50069, 'https://ror.org/0036cks17', 'no_lang_code', 1, 'https://ror.org/0036cks17 Kathrein (Germany)'), (50070, 'https://ror.org/0036dh995', 'en', 1, 'https://ror.org/0036dh995 Brentwood Hospital'), (50071, 'https://ror.org/003ajzy34', 'no_lang_code', 1, 'https://ror.org/003ajzy34 ERG Holding Company (United States)'), (50072, 'https://ror.org/003atmt97', 'en', 1, 'https://ror.org/003atmt97 Marbrook Foundation'), (50073, 'https://ror.org/003d0m863', 'no_lang_code', 1, 'https://ror.org/003d0m863 Stabilus (Germany)'), (50074, 'https://ror.org/003dkgb76', 'en', 1, 'https://ror.org/003dkgb76 Kresge Eye Institute'), (50075, 'https://ror.org/003dm8f88', 'no_lang_code', 1, 'https://ror.org/003dm8f88 Sensor Development Corporation (United States)'), (50076, 'https://ror.org/003f4j224', 'en', 1, 'https://ror.org/003f4j224 Henderson Behavioral Health'), (50077, 'https://ror.org/003fgkq55', 'en', 1, 'https://ror.org/003fgkq55 Quest Research Institute'), (50078, 'https://ror.org/003g5qe79', 'no_lang_code', 1, 'https://ror.org/003g5qe79 Circassia Pharmaceuticals (United Kingdom)'), (50079, 'https://ror.org/003h57f17', 'sv', 1, 'https://ror.org/003h57f17 Diabetesfonden'), (50080, 'https://ror.org/003h6ex14', 'en', 1, 'https://ror.org/003h6ex14 Barra Foundation'), (50081, 'https://ror.org/003jx1781', 'en', 1, 'https://ror.org/003jx1781 Oklahoma State University Medical Center'), (50082, 'https://ror.org/003n19b22', 'en', 1, 'https://ror.org/003n19b22 International Society for Science and Religion'), (50083, 'https://ror.org/003np7j89', 'en', 1, 'https://ror.org/003np7j89 American Medical Research'), (50084, 'https://ror.org/003sq5971', 'en', 1, 'https://ror.org/003sq5971 Tacoma Housing Authority'), (50085, 'https://ror.org/003thv661', 'en', 1, 'https://ror.org/003thv661 Jack Kent Cooke Foundation'), (50086, 'https://ror.org/003za3q32', 'en', 1, 'https://ror.org/003za3q32 Vatican Observatory Foundation'), (50087, 'https://ror.org/0040jv435', 'en', 1, 'https://ror.org/0040jv435 George A. and Eliza Gardner Howard Foundation'), (50088, 'https://ror.org/0042h7v22', 'en', 1, 'https://ror.org/0042h7v22 California State Beekeepers Association'), (50089, 'https://ror.org/0044d9958', 'no_lang_code', 1, 'https://ror.org/0044d9958 Tècniques de Gestió de la Informació'), (50090, 'https://ror.org/004514720', 'en', 1, 'https://ror.org/004514720 World University Service of Canada'), (50091, 'https://ror.org/0047hnk39', 'en', 1, 'https://ror.org/0047hnk39 Alfred Friendly Press Partners'), (50092, 'https://ror.org/00496yk95', 'en', 1, 'https://ror.org/00496yk95 Atlanta Public Schools'), (50093, 'https://ror.org/0049td969', 'en', 1, 'https://ror.org/0049td969 National Association for the Advancement of Colored People'), (50094, 'https://ror.org/004ahbh03', 'en', 1, 'https://ror.org/004ahbh03 National Library of South Africa'), (50095, 'https://ror.org/004aq9x60', 'no_lang_code', 1, 'https://ror.org/004aq9x60 Glycotope (Germany)'), (50096, 'https://ror.org/004b7qy98', 'en', 1, 'https://ror.org/004b7qy98 Friends of the National Library of Medicine'), (50097, 'https://ror.org/004ca1d83', 'en', 1, 'https://ror.org/004ca1d83 Access Behavioral Health'), (50098, 'https://ror.org/004cdc714', 'en', 1, 'https://ror.org/004cdc714 Xian Central Hospital 西安市中心医院'), (50099, 'https://ror.org/004f2pf04', 'en', 1, 'https://ror.org/004f2pf04 California Retina Consultants'), (50100, 'https://ror.org/004f9my84', 'en', 1, 'https://ror.org/004f9my84 European Peacebuilding Liaison Office'), (50101, 'https://ror.org/004jq0d46', 'no', 1, 'https://ror.org/004jq0d46 Norsk Gastrointestinal Cancer Gruppe'), (50102, 'https://ror.org/004n4vj97', 'en', 1, 'https://ror.org/004n4vj97 Northwest Medical Rehabilitation'), (50103, 'https://ror.org/004nf4f47', 'en', 1, 'https://ror.org/004nf4f47 Georgia Budget & Policy Institute'), (50104, 'https://ror.org/004p2dk70', 'es', 1, 'https://ror.org/004p2dk70 Instituto Tecnológico PET'), (50105, 'https://ror.org/004p54v36', 'en', 1, 'https://ror.org/004p54v36 Jinzhou Central Hospital'), (50106, 'https://ror.org/004p5vv59', 'en', 1, 'https://ror.org/004p5vv59 American Academy for Jewish Research'), (50107, 'https://ror.org/004qa4525', 'en', 1, 'https://ror.org/004qa4525 Endocrinology Northwest'), (50108, 'https://ror.org/004qka625', 'en', 1, 'https://ror.org/004qka625 Society for Research on Educational Effectiveness'), (50109, 'https://ror.org/004rtk039', 'en', 1, 'https://ror.org/004rtk039 Japan Agency for Medical Research and Development 日本医療研究開発機構'), (50110, 'https://ror.org/004sqrr27', 'en', 1, 'https://ror.org/004sqrr27 National Newspaper Publishers Association'), (50111, 'https://ror.org/004v35q61', 'en', 1, 'https://ror.org/004v35q61 Nordic Society of Gynecologic Oncology'), (50112, 'https://ror.org/004vnpm81', 'sv', 1, 'https://ror.org/004vnpm81 Hässleholms Sjukhus'), (50113, 'https://ror.org/004xcq641', 'en', 1, 'https://ror.org/004xcq641 Personal Enhancement Center'), (50114, 'https://ror.org/004z1yb80', 'en', 1, 'https://ror.org/004z1yb80 Dishler Laser Institute'), (50115, 'https://ror.org/0050qc271', 'no_lang_code', 1, 'https://ror.org/0050qc271 IAC Group (United States)'), (50116, 'https://ror.org/0053w7h52', 'en', 1, 'https://ror.org/0053w7h52 Society of Gynaecology and Obstetrics of Nigeria'), (50117, 'https://ror.org/0055m7z56', 'en', 1, 'https://ror.org/0055m7z56 Institute for Environmental Solutions Institūts Vides risinājumu'), (50118, 'https://ror.org/0055r4662', 'en', 1, 'https://ror.org/0055r4662 Houston Foot and Ankle Care'), (50119, 'https://ror.org/00575xh39', 'en', 1, 'https://ror.org/00575xh39 Charles and Lynn Schusterman Family Foundation'), (50120, 'https://ror.org/0058p8h34', 'no_lang_code', 1, 'https://ror.org/0058p8h34 Korea Gas Corporation (South Korea)'), (50121, 'https://ror.org/0058tc217', 'en', 1, 'https://ror.org/0058tc217 Eye Institute of West Florida'), (50122, 'https://ror.org/005aqed95', 'en', 1, 'https://ror.org/005aqed95 DKT International'), (50123, 'https://ror.org/005bs1v61', 'en', 1, 'https://ror.org/005bs1v61 Yukon Department of Education'), (50124, 'https://ror.org/005cnxk39', 'no_lang_code', 1, 'https://ror.org/005cnxk39 AGA (Sweden)'), (50125, 'https://ror.org/005cqv449', 'it', 1, 'https://ror.org/005cqv449 Associazione Bianca Garavaglia Onlus'), (50126, 'https://ror.org/005f7f960', 'en', 1, 'https://ror.org/005f7f960 Chest Wall and Spine Deformity Research Foundation'), (50127, 'https://ror.org/005fa0265', 'en', 1, 'https://ror.org/005fa0265 James Jones Literary Society'), (50128, 'https://ror.org/005gf6j43', 'en', 1, 'https://ror.org/005gf6j43 Tanta University Hospital'), (50129, 'https://ror.org/005hary16', 'en', 1, 'https://ror.org/005hary16 New India Foundation'), (50130, 'https://ror.org/005js1714', 'en', 1, 'https://ror.org/005js1714 Archival Education and Research Institute'), (50131, 'https://ror.org/005mj6e76', 'no_lang_code', 1, 'https://ror.org/005mj6e76 Autifony Therapeutics (United Kingdom)'), (50132, 'https://ror.org/005nnp672', 'no_lang_code', 1, 'https://ror.org/005nnp672 Smith & Nephew (Germany)'), (50133, 'https://ror.org/005p42z69', 'en', 1, 'https://ror.org/005p42z69 Panyu Hospital of Chinese Medicine 番禺中医院'), (50134, 'https://ror.org/005pe6g50', 'en', 1, 'https://ror.org/005pe6g50 Phoenix Public Library'), (50135, 'https://ror.org/005s1m246', 'en', 1, 'https://ror.org/005s1m246 Alfred Benzon Foundation'), (50136, 'https://ror.org/005sbaa41', 'no_lang_code', 1, 'https://ror.org/005sbaa41 Align Technology (United States)'), (50137, 'https://ror.org/005t7ny15', 'en', 1, 'https://ror.org/005t7ny15 Kiwanis Club of Rockford'), (50138, 'https://ror.org/005vegy94', 'en', 1, 'https://ror.org/005vegy94 International Essential Tremor Foundation'), (50139, 'https://ror.org/005vs4q67', 'en', 1, 'https://ror.org/005vs4q67 International Telecommunication Union Union Internationale des Télécommunications'), (50140, 'https://ror.org/005xmvj53', 'en', 1, 'https://ror.org/005xmvj53 Rapid Medical Research'), (50141, 'https://ror.org/005z6d626', 'en', 1, 'https://ror.org/005z6d626 Catalyst for Payment Reform'), (50142, 'https://ror.org/00602dv83', 'en', 1, 'https://ror.org/00602dv83 AuDA Foundation'), (50143, 'https://ror.org/0063dbm34', 'en', 1, 'https://ror.org/0063dbm34 Sheffield Children''s University'), (50144, 'https://ror.org/00647p549', 'no_lang_code', 1, 'https://ror.org/00647p549 Reckitt Benckiser (Netherlands)'), (50145, 'https://ror.org/0064m4q05', 'en', 1, 'https://ror.org/0064m4q05 Huntington''s Disease Society of America'), (50146, 'https://ror.org/0065dxb90', 'en', 1, 'https://ror.org/0065dxb90 Fairfield Behavioral Health Services'), (50147, 'https://ror.org/0065eer68', 'en', 1, 'https://ror.org/0065eer68 Municipal League Foundatio'), (50148, 'https://ror.org/00662td74', 'no_lang_code', 1, 'https://ror.org/00662td74 Bruno Farmaceutici (Italy)'), (50149, 'https://ror.org/0066y7e75', 'en', 1, 'https://ror.org/0066y7e75 Bay and Paul Foundations'), (50150, 'https://ror.org/0066zj839', 'en', 1, 'https://ror.org/0066zj839 Tidewater Kidney Specialists'), (50151, 'https://ror.org/00686cm81', 'no_lang_code', 1, 'https://ror.org/00686cm81 Eagle Industry (Japan) イーグル工業'), (50152, 'https://ror.org/0068vc522', 'en', 1, 'https://ror.org/0068vc522 Televisa Foundation'), (50153, 'https://ror.org/00699y503', 'no_lang_code', 1, 'https://ror.org/00699y503 Infirst Healthcare (United Kingdom)'), (50154, 'https://ror.org/006be7t88', 'pl', 1, 'https://ror.org/006be7t88 Centrum Kopernika Badań Interdyscyplinarnych'), (50155, 'https://ror.org/006cf4249', 'no_lang_code', 1, 'https://ror.org/006cf4249 Grieshaber (Germany)'), (50156, 'https://ror.org/006drmf77', 'en', 1, 'https://ror.org/006drmf77 Great Schools Partnership'), (50157, 'https://ror.org/006enzj37', 'en', 1, 'https://ror.org/006enzj37 Finnish Diabetes Association Suomen Diabetesliitto'), (50158, 'https://ror.org/006evjj22', 'en', 1, 'https://ror.org/006evjj22 Indian Rheumatology Association'), (50159, 'https://ror.org/006fbpy17', 'no_lang_code', 1, 'https://ror.org/006fbpy17 Nexus (Italy)'), (50160, 'https://ror.org/006fcvv63', 'en', 1, 'https://ror.org/006fcvv63 Montreal Economic Institute'), (50161, 'https://ror.org/006fqar19', 'en', 1, 'https://ror.org/006fqar19 BrightSpark Foundation'), (50162, 'https://ror.org/006hwbx79', 'no_lang_code', 1, 'https://ror.org/006hwbx79 Clariant (United Kingdom)'), (50163, 'https://ror.org/006kypj04', 'en', 1, 'https://ror.org/006kypj04 Funeral Service Foundation'), (50164, 'https://ror.org/006nbgx47', 'es', 1, 'https://ror.org/006nbgx47 Grup d''Investigació i Divulgació Oncológica'), (50165, 'https://ror.org/006psag97', 'no_lang_code', 1, 'https://ror.org/006psag97 Onxeo (Denmark)'), (50166, 'https://ror.org/006recc61', 'en', 1, 'https://ror.org/006recc61 British Herpetological Society'), (50167, 'https://ror.org/006rga838', 'nl', 1, 'https://ror.org/006rga838 Koninklijke Nederlandse Maatschappij voor Diergeneeskunde'), (50168, 'https://ror.org/006rnrs64', 'en', 1, 'https://ror.org/006rnrs64 Community Foundation of Northern Illinois'), (50169, 'https://ror.org/006xpqa22', 'no_lang_code', 1, 'https://ror.org/006xpqa22 Noorik Biopharmaceuticals (Switzerland)'), (50170, 'https://ror.org/006ymvg95', 'no_lang_code', 1, 'https://ror.org/006ymvg95 Wenzhou Hospital of Traditional Chinese Medicine 温州市中医院'), (50171, 'https://ror.org/0072czt29', 'en', 1, 'https://ror.org/0072czt29 International Association for K-12 Online Learning'), (50172, 'https://ror.org/0073n0s52', 'fr', 1, 'https://ror.org/0073n0s52 Amis de l''Institut Bordet'), (50173, 'https://ror.org/00746dd63', 'en', 1, 'https://ror.org/00746dd63 North American Membrane Society'), (50174, 'https://ror.org/007476v46', 'en', 1, 'https://ror.org/007476v46 Qualis Health'), (50175, 'https://ror.org/0074nwx25', 'en', 1, 'https://ror.org/0074nwx25 Gruppo Oncologico dell''Italia Meridionale Oncology Group of Southern Italy'), (50176, 'https://ror.org/0074y3h33', 'no_lang_code', 1, 'https://ror.org/0074y3h33 MetrioPharm (Germany)'), (50177, 'https://ror.org/0075xfx31', 'en', 1, 'https://ror.org/0075xfx31 State Library of Iowa'), (50178, 'https://ror.org/007bwhe79', 'en', 1, 'https://ror.org/007bwhe79 Institut für Kunst- und Musikhistorische Forschungen Institute of History of Art and Musicology'), (50179, 'https://ror.org/007dajt61', 'en', 1, 'https://ror.org/007dajt61 Louis-Jeantet Foundation'), (50180, 'https://ror.org/007e7q878', 'en', 1, 'https://ror.org/007e7q878 RK Evaluation and Strategies'), (50181, 'https://ror.org/007k75451', 'no_lang_code', 1, 'https://ror.org/007k75451 Clinuvel Pharmaceuticals (Switzerland)'), (50182, 'https://ror.org/007kc7128', 'en', 1, 'https://ror.org/007kc7128 Auction of Washington Wines'), (50183, 'https://ror.org/007m1j423', 'en', 1, 'https://ror.org/007m1j423 Money, Crime, and Health Policy Initiative'), (50184, 'https://ror.org/007mxym10', 'en', 1, 'https://ror.org/007mxym10 National Association of State Budget Officers'), (50185, 'https://ror.org/007nj9n76', 'en', 1, 'https://ror.org/007nj9n76 BRAC USA'), (50186, 'https://ror.org/007p8sj29', 'no_lang_code', 1, 'https://ror.org/007p8sj29 Mayoly Spindler (France)'), (50187, 'https://ror.org/007pp1604', 'en', 1, 'https://ror.org/007pp1604 Harbin Clinic'), (50188, 'https://ror.org/007q7fd56', 'en', 1, 'https://ror.org/007q7fd56 AADC Research Trust'), (50189, 'https://ror.org/007qm1691', 'no_lang_code', 1, 'https://ror.org/007qm1691 Boston Scientific (Barbados)'), (50190, 'https://ror.org/007r33g58', 'en', 1, 'https://ror.org/007r33g58 American Association of Zoo Veterinarians'), (50191, 'https://ror.org/007r3zy44', 'nl', 1, 'https://ror.org/007r3zy44 Pancreatitis Werkgroep Nederland'), (50192, 'https://ror.org/007vd5q36', 'no_lang_code', 1, 'https://ror.org/007vd5q36 TETEC Tissue Engineering Technologies (Germany)'), (50193, 'https://ror.org/007vhjq80', 'en', 1, 'https://ror.org/007vhjq80 Maternal and Child Health Hospital of Xinjiang Uygur Autonomous Region 新疆维吾尔自治区妇幼保健院'), (50194, 'https://ror.org/007vmjm88', 'no_lang_code', 1, 'https://ror.org/007vmjm88 Seoul Semiconductor (South Korea)'); INSERT INTO `rors` VALUES (50195, 'https://ror.org/007w9h140', 'en', 1, 'https://ror.org/007w9h140 People ''s Liberation Army 451 Hospital 解放军451医院'), (50196, 'https://ror.org/007y18z84', 'no_lang_code', 1, 'https://ror.org/007y18z84 BioMarin (Netherlands)'), (50197, 'https://ror.org/007yvyg13', 'en', 1, 'https://ror.org/007yvyg13 Reproductive Science Center'), (50198, 'https://ror.org/007ztdc30', 'de', 1, 'https://ror.org/007ztdc30 Schön Klinik Roseneck'), (50199, 'https://ror.org/0082xft54', 'en', 1, 'https://ror.org/0082xft54 PDK International'), (50200, 'https://ror.org/0083mb767', 'no_lang_code', 1, 'https://ror.org/0083mb767 Delenex (Switzerland)'), (50201, 'https://ror.org/0084hyx75', 'en', 1, 'https://ror.org/0084hyx75 North Valley Eye Medical Group'), (50202, 'https://ror.org/00865qa43', 'en', 1, 'https://ror.org/00865qa43 Jewish Healthcare Foundation'), (50203, 'https://ror.org/00888a070', 'en', 1, 'https://ror.org/00888a070 Carolina Neurosurgery and Spine Associates'), (50204, 'https://ror.org/0089j2p79', 'en', 1, 'https://ror.org/0089j2p79 Vance Thompson Vision'), (50205, 'https://ror.org/008bb6z37', 'en', 1, 'https://ror.org/008bb6z37 Nizhny Novgorod Regional Clinical Oncology Center Нижний Новгород областной онкологический диспансер'), (50206, 'https://ror.org/008bt9x41', 'no_lang_code', 1, 'https://ror.org/008bt9x41 Regenex Pharmaceuticals (China) 广州朗圣药业有限公司 版权所有'), (50207, 'https://ror.org/008cjv429', 'en', 1, 'https://ror.org/008cjv429 Squaxin Island Tribe Museum Library and Research Center'), (50208, 'https://ror.org/008e34j77', 'no_lang_code', 1, 'https://ror.org/008e34j77 NetHope'), (50209, 'https://ror.org/008ebwt42', 'en', 1, 'https://ror.org/008ebwt42 American Vineyard Foundation'), (50210, 'https://ror.org/008h32s22', 'en', 1, 'https://ror.org/008h32s22 Cosmopolitan International'), (50211, 'https://ror.org/008hj7c61', 'no_lang_code', 1, 'https://ror.org/008hj7c61 Kayaba Industry (Japan) カヤバ工業株式会社'), (50212, 'https://ror.org/008hvd197', 'da', 1, 'https://ror.org/008hvd197 Aage V. Jensens Fonde'), (50213, 'https://ror.org/008qxfr30', 'no_lang_code', 1, 'https://ror.org/008qxfr30 Chervon (Hongkong)'), (50214, 'https://ror.org/008rsmw46', 'en', 1, 'https://ror.org/008rsmw46 Lawson Foundation'), (50215, 'https://ror.org/008s3gd19', 'en', 1, 'https://ror.org/008s3gd19 Childrens Liver Disease Foundation'), (50216, 'https://ror.org/008t3fy21', 'en', 1, 'https://ror.org/008t3fy21 Fibrolamellar Cancer Foundation'), (50217, 'https://ror.org/008vra347', 'de', 1, 'https://ror.org/008vra347 DIAKO'), (50218, 'https://ror.org/008wd8726', 'en', 1, 'https://ror.org/008wd8726 Endowment for Health'), (50219, 'https://ror.org/008wwms76', 'en', 1, 'https://ror.org/008wwms76 Friends United'), (50220, 'https://ror.org/008x3rf43', 'en', 1, 'https://ror.org/008x3rf43 Raleigh Neurology Associates'), (50221, 'https://ror.org/008xb1b94', 'de', 1, 'https://ror.org/008xb1b94 Elisabeth-Krankenhaus Essen'), (50222, 'https://ror.org/008y09k71', 'en', 1, 'https://ror.org/008y09k71 Massachusetts Senior Care Foundation'), (50223, 'https://ror.org/008y0j428', 'en', 1, 'https://ror.org/008y0j428 Three Bird Swan Consulting Group'), (50224, 'https://ror.org/008yah456', 'no_lang_code', 1, 'https://ror.org/008yah456 TARH (Portugal) Terra, Ambiente e Recursos Hídricos foi constituída'), (50225, 'https://ror.org/0090hd978', 'en', 1, 'https://ror.org/0090hd978 American Academy of Sleep Medicine'), (50226, 'https://ror.org/00910ay07', 'en', 1, 'https://ror.org/00910ay07 International Union of Biochemistry and Molecular Biology'), (50227, 'https://ror.org/0091d4119', 'no_lang_code', 1, 'https://ror.org/0091d4119 Chemotecnica (Argentina)'), (50228, 'https://ror.org/00939wg75', 'en', 1, 'https://ror.org/00939wg75 LIMR Chemical Genomics Center'), (50229, 'https://ror.org/00982nx75', 'no_lang_code', 1, 'https://ror.org/00982nx75 Romark (United States)'), (50230, 'https://ror.org/0098ca762', 'en', 1, 'https://ror.org/0098ca762 Bolyai Foundation'), (50231, 'https://ror.org/009cpej84', 'en', 1, 'https://ror.org/009cpej84 Dallas Surgical Group'), (50232, 'https://ror.org/009heah97', 'en', 1, 'https://ror.org/009heah97 Defense Human Resources Activity'), (50233, 'https://ror.org/009j61e89', 'en', 1, 'https://ror.org/009j61e89 Foundation for Women’s Wellness'), (50234, 'https://ror.org/009jvch84', 'en', 1, 'https://ror.org/009jvch84 Woburn & North Andover Pediatric Associates'), (50235, 'https://ror.org/009nzt148', 'en', 1, 'https://ror.org/009nzt148 Marion Community Foundation'), (50236, 'https://ror.org/009p3gr97', 'fr', 1, 'https://ror.org/009p3gr97 Clinique Paro Excellence'), (50237, 'https://ror.org/009p94737', 'en', 1, 'https://ror.org/009p94737 Frank Hadley Ginn and Cornelia Root Ginn Charitable Trust'), (50238, 'https://ror.org/009prea33', 'en', 1, 'https://ror.org/009prea33 Sterling Research Group'), (50239, 'https://ror.org/009qarj13', 'en', 1, 'https://ror.org/009qarj13 Day1'), (50240, 'https://ror.org/009rtx153', 'en', 1, 'https://ror.org/009rtx153 Danish Centre for Marine Research'), (50241, 'https://ror.org/009svts64', 'en', 1, 'https://ror.org/009svts64 Azrieli Foundation'), (50242, 'https://ror.org/009syct46', 'en', 1, 'https://ror.org/009syct46 Institut für Interdisziplinäre Gebirgsforschung Institute for Interdisciplinary Mountain Research'), (50243, 'https://ror.org/009vxf979', 'en', 1, 'https://ror.org/009vxf979 China Foundation for Poverty Alleviation 中国扶贫基金会'), (50244, 'https://ror.org/009w2dq98', 'en', 1, 'https://ror.org/009w2dq98 Urology of Virginia'), (50245, 'https://ror.org/009w8mm15', 'fr', 1, 'https://ror.org/009w8mm15 Clinique Saint Pierre'), (50246, 'https://ror.org/009ywjj88', 'en', 1, 'https://ror.org/009ywjj88 Clinical Research Institute'), (50247, 'https://ror.org/009yyqs39', 'en', 1, 'https://ror.org/009yyqs39 Virginia Oncology Associates'), (50248, 'https://ror.org/009za8t17', 'no_lang_code', 1, 'https://ror.org/009za8t17 Delta Faucet (United States)'), (50249, 'https://ror.org/00a181f87', 'no_lang_code', 1, 'https://ror.org/00a181f87 Bluebird Bio (France)'), (50250, 'https://ror.org/00a1cc659', 'de', 1, 'https://ror.org/00a1cc659 Asklepios Fachklinikum Brandenburg'), (50251, 'https://ror.org/00a4k5f23', 'no_lang_code', 1, 'https://ror.org/00a4k5f23 hVIVO (United Kingdom)'), (50252, 'https://ror.org/00a4nkb16', 'en', 1, 'https://ror.org/00a4nkb16 Kindred Hospital Rancho'), (50253, 'https://ror.org/00a59ax11', 'da', 1, 'https://ror.org/00a59ax11 Arvid Nilssons Fond'), (50254, 'https://ror.org/00a8d7d55', 'no_lang_code', 1, 'https://ror.org/00a8d7d55 Shield Therapeutics (Switzerland)'), (50255, 'https://ror.org/00a933p49', 'en', 1, 'https://ror.org/00a933p49 Noyce Foundation'), (50256, 'https://ror.org/00acq4045', 'no_lang_code', 1, 'https://ror.org/00acq4045 Norgine (Germany)'), (50257, 'https://ror.org/00ae36v16', 'no_lang_code', 1, 'https://ror.org/00ae36v16 Genticel (France)'), (50258, 'https://ror.org/00aestp76', 'en', 1, 'https://ror.org/00aestp76 Compass Research'), (50259, 'https://ror.org/00ajqtx13', 'en', 1, 'https://ror.org/00ajqtx13 Margaret A. Cargill Philanthropies'), (50260, 'https://ror.org/00amxre65', 'en', 1, 'https://ror.org/00amxre65 Edward E. Ford Foundation'), (50261, 'https://ror.org/00apva622', 'no_lang_code', 1, 'https://ror.org/00apva622 Arno Therapeutics (United States)'), (50262, 'https://ror.org/00aq1tf09', 'en', 1, 'https://ror.org/00aq1tf09 Albert G. and Olive H. Schlink Foundation'), (50263, 'https://ror.org/00arbsy46', 'no_lang_code', 1, 'https://ror.org/00arbsy46 Reckitt Benckiser (Germany)'), (50264, 'https://ror.org/00argmn34', 'en', 1, 'https://ror.org/00argmn34 California Education Partners'), (50265, 'https://ror.org/00at2pp81', 'no_lang_code', 1, 'https://ror.org/00at2pp81 Gender Studies'), (50266, 'https://ror.org/00atbfb07', 'en', 1, 'https://ror.org/00atbfb07 Perio Health Professionals'), (50267, 'https://ror.org/00atq5220', 'no_lang_code', 1, 'https://ror.org/00atq5220 American Axle & Manufacturing (United States)'), (50268, 'https://ror.org/00avbpp35', 'en', 1, 'https://ror.org/00avbpp35 San Fernando Valley Urological Associates'), (50269, 'https://ror.org/00axr9h76', 'en', 1, 'https://ror.org/00axr9h76 Center for Public Justice'), (50270, 'https://ror.org/00ay00v02', 'sv', 1, 'https://ror.org/00ay00v02 Petrus och Augusta Hedlunds Stiftelse'), (50271, 'https://ror.org/00b2bst16', 'no_lang_code', 1, 'https://ror.org/00b2bst16 Adocia (France)'), (50272, 'https://ror.org/00b2ft029', 'no_lang_code', 1, 'https://ror.org/00b2ft029 Rommelag (Switzerland)'), (50273, 'https://ror.org/00b325j77', 'en', 1, 'https://ror.org/00b325j77 Character Counts Mid Shore'), (50274, 'https://ror.org/00b46ya17', 'en', 1, 'https://ror.org/00b46ya17 Suncoast Clinical Research'), (50275, 'https://ror.org/00b4wbs75', 'no_lang_code', 1, 'https://ror.org/00b4wbs75 Maruho (United Kingdom)'), (50276, 'https://ror.org/00b66ah84', 'fr', 1, 'https://ror.org/00b66ah84 Centre Hospitalier de Redon'), (50277, 'https://ror.org/00b75tt95', 'no_lang_code', 1, 'https://ror.org/00b75tt95 Roper Technologies (United States)'), (50278, 'https://ror.org/00b9tqm17', 'en', 1, 'https://ror.org/00b9tqm17 Bryan Area Foundation'), (50279, 'https://ror.org/00bam3792', 'en', 1, 'https://ror.org/00bam3792 Community-Minded Enterprises'), (50280, 'https://ror.org/00baqjm67', 'en', 1, 'https://ror.org/00baqjm67 Foundation for End of Life Care'), (50281, 'https://ror.org/00bb3dz25', 'en', 1, 'https://ror.org/00bb3dz25 Beveridge Family Foundation'), (50282, 'https://ror.org/00bbk4z43', 'en', 1, 'https://ror.org/00bbk4z43 Second People ''s Hospital of Jinzhong 晋中市第二人民医院'), (50283, 'https://ror.org/00bbs5d96', 'en', 1, 'https://ror.org/00bbs5d96 SightLife'), (50284, 'https://ror.org/00bbs6n73', 'en', 1, 'https://ror.org/00bbs6n73 World Trade Club'), (50285, 'https://ror.org/00bbwap73', 'en', 1, 'https://ror.org/00bbwap73 Smallholders Foundation'), (50286, 'https://ror.org/00bf4k663', 'en', 1, 'https://ror.org/00bf4k663 World Cocoa Foundation'), (50287, 'https://ror.org/00bgmja34', 'en', 1, 'https://ror.org/00bgmja34 Burke Pharmaceutical Research'), (50288, 'https://ror.org/00bhn1w49', 'en', 1, 'https://ror.org/00bhn1w49 Institute for Humane Studies'), (50289, 'https://ror.org/00bkazd74', 'en', 1, 'https://ror.org/00bkazd74 Michigan Center for Skin Care Research'), (50290, 'https://ror.org/00bm25r07', 'en', 1, 'https://ror.org/00bm25r07 Clinical Physiology Associates'), (50291, 'https://ror.org/00bqgv517', 'no_lang_code', 1, 'https://ror.org/00bqgv517 PregLem (Switzerland)'), (50292, 'https://ror.org/00bs1j039', 'en', 1, 'https://ror.org/00bs1j039 Captain Planet Foundation'), (50293, 'https://ror.org/00bsjtn43', 'en', 1, 'https://ror.org/00bsjtn43 Bioscience Research'), (50294, 'https://ror.org/00bsqq263', 'no_lang_code', 1, 'https://ror.org/00bsqq263 AgBiome (United States)'), (50295, 'https://ror.org/00bss3g65', 'no_lang_code', 1, 'https://ror.org/00bss3g65 Diurnal (United Kingdom)'), (50296, 'https://ror.org/00btvqy64', 'no_lang_code', 1, 'https://ror.org/00btvqy64 Pohang Iron and Steel (South Korea) 포항종합제철 주식회사'), (50297, 'https://ror.org/00btywz65', 'no_lang_code', 1, 'https://ror.org/00btywz65 Kolon Industries (South Korea)'), (50298, 'https://ror.org/00bvby867', 'en', 1, 'https://ror.org/00bvby867 East Valley Hematology & Oncology'), (50299, 'https://ror.org/00bz0ap63', 'en', 1, 'https://ror.org/00bz0ap63 Kurosawa Hospital 黒澤病院'), (50300, 'https://ror.org/00bzkg452', 'no_lang_code', 1, 'https://ror.org/00bzkg452 Savara (Denmark)'), (50301, 'https://ror.org/00c1f7q63', 'en', 1, 'https://ror.org/00c1f7q63 Field Neurosciences Institute'), (50302, 'https://ror.org/00c2b9157', 'en', 1, 'https://ror.org/00c2b9157 Otho S. A. Sprague Memorial Institute'), (50303, 'https://ror.org/00c2wmm70', 'en', 1, 'https://ror.org/00c2wmm70 South Africa Development Fund'), (50304, 'https://ror.org/00c3eq612', 'en', 1, 'https://ror.org/00c3eq612 Maryland Brain, Spine + Pain'), (50305, 'https://ror.org/00c3pmw05', 'en', 1, 'https://ror.org/00c3pmw05 Advanced Pharma'), (50306, 'https://ror.org/00c3qdc78', 'en', 1, 'https://ror.org/00c3qdc78 Marietta Community Foundation'), (50307, 'https://ror.org/00c409n44', 'en', 1, 'https://ror.org/00c409n44 Community and Parents for Public Schools'), (50308, 'https://ror.org/00c4hg173', 'en', 1, 'https://ror.org/00c4hg173 Business Roundtable'), (50309, 'https://ror.org/00c4nt602', 'en', 1, 'https://ror.org/00c4nt602 Orthopedic Center'), (50310, 'https://ror.org/00c4ykh56', 'fr', 1, 'https://ror.org/00c4ykh56 Fondation Denis Guichard'), (50311, 'https://ror.org/00c4zcv51', 'no_lang_code', 1, 'https://ror.org/00c4zcv51 WiLAN (United States)'), (50312, 'https://ror.org/00c9bhj04', 'en', 1, 'https://ror.org/00c9bhj04 Alborada Trust'), (50313, 'https://ror.org/00ca6qk95', 'en', 1, 'https://ror.org/00ca6qk95 American Public Power Association'), (50314, 'https://ror.org/00cfk7y53', 'it', 1, 'https://ror.org/00cfk7y53 Fondazione Cassa Di Risparmio Di Cento'), (50315, 'https://ror.org/00cj4by30', 'en', 1, 'https://ror.org/00cj4by30 CIRI Foundation'), (50316, 'https://ror.org/00cjay913', 'en', 1, 'https://ror.org/00cjay913 Dirk Nowitzki Foundation'), (50317, 'https://ror.org/00ck87g56', 'en', 1, 'https://ror.org/00ck87g56 Norcliffe Foundation'), (50318, 'https://ror.org/00ckatm30', 'en', 1, 'https://ror.org/00ckatm30 Black Sea Energy Cluster ЧЕРНОМОРСКИ ЕНЕРГИЕН КЛЪСТЕР'), (50319, 'https://ror.org/00cmdkk79', 'en', 1, 'https://ror.org/00cmdkk79 Private Sector Health Alliance of Nigeria'), (50320, 'https://ror.org/00cn8g609', 'en', 1, 'https://ror.org/00cn8g609 Dedalus Foundation'), (50321, 'https://ror.org/00cq73k33', 'en', 1, 'https://ror.org/00cq73k33 Buzau County Museum Muzeul Județean Buzău'), (50322, 'https://ror.org/00cv4ff80', 'en', 1, 'https://ror.org/00cv4ff80 Mama Mare Breast Cancer Foundation'), (50323, 'https://ror.org/00cwgs379', 'en', 1, 'https://ror.org/00cwgs379 United Way of the Columbia-Willamette'), (50324, 'https://ror.org/00cy4ga64', 'en', 1, 'https://ror.org/00cy4ga64 Calvert K Collins Family Foundation'), (50325, 'https://ror.org/00czwhy51', 'no_lang_code', 1, 'https://ror.org/00czwhy51 Immunocore (United States)'), (50326, 'https://ror.org/00d07mn45', 'en', 1, 'https://ror.org/00d07mn45 National Alopecia Areata Foundation'), (50327, 'https://ror.org/00d0kf681', 'en', 1, 'https://ror.org/00d0kf681 Serfenta Association'), (50328, 'https://ror.org/00d2v8j14', 'ro', 1, 'https://ror.org/00d2v8j14 Spitalului Clinic de Urgență pentru Copii Maria Sklodowska Curie'), (50329, 'https://ror.org/00d3w5v70', 'en', 1, 'https://ror.org/00d3w5v70 Prairie Education and Research Cooperative'), (50330, 'https://ror.org/00d43qx15', 'en', 1, 'https://ror.org/00d43qx15 Roztoczański Park Narodowy Roztocze National Park'), (50331, 'https://ror.org/00d4d4985', 'en', 1, 'https://ror.org/00d4d4985 Charles Edison Fund'), (50332, 'https://ror.org/00d8znk88', 'no_lang_code', 1, 'https://ror.org/00d8znk88 Sun Chemical (United States)'), (50333, 'https://ror.org/00dadc735', 'en', 1, 'https://ror.org/00dadc735 Clinical Research Consulting'), (50334, 'https://ror.org/00daeq584', 'no_lang_code', 1, 'https://ror.org/00daeq584 Vifor Pharma (Germany)'), (50335, 'https://ror.org/00daeq875', 'no_lang_code', 1, 'https://ror.org/00daeq875 LTS Lohmann Therapie-Systeme (Germany)'), (50336, 'https://ror.org/00dbv2839', 'en', 1, 'https://ror.org/00dbv2839 Ophthalmology Consultants'), (50337, 'https://ror.org/00dcbjx19', 'en', 1, 'https://ror.org/00dcbjx19 Mortimer Surgery'), (50338, 'https://ror.org/00dd2yg30', 'en', 1, 'https://ror.org/00dd2yg30 Tower Urology Medical Group'), (50339, 'https://ror.org/00ddfwx17', 'no_lang_code', 1, 'https://ror.org/00ddfwx17 BioVirtus (Poland)'), (50340, 'https://ror.org/00ddrmz97', 'en', 1, 'https://ror.org/00ddrmz97 Olympic Educational Service District'), (50341, 'https://ror.org/00deg7n09', 'fr', 1, 'https://ror.org/00deg7n09 Centre de Radiothérapie Bayard'), (50342, 'https://ror.org/00dfm5737', 'en', 1, 'https://ror.org/00dfm5737 Apraxia KIDS'), (50343, 'https://ror.org/00dfmn753', 'de', 1, 'https://ror.org/00dfmn753 Internationale Bodensee-Hochschule'), (50344, 'https://ror.org/00dg01x60', 'en', 1, 'https://ror.org/00dg01x60 Junior Achievement of Delaware'), (50345, 'https://ror.org/00dk21g34', 'en', 1, 'https://ror.org/00dk21g34 Media Trust'), (50346, 'https://ror.org/00dm6q577', 'en', 1, 'https://ror.org/00dm6q577 Water & Sanitation for the Urban Poor'), (50347, 'https://ror.org/00drb8647', 'en', 1, 'https://ror.org/00drb8647 Patel Hospital'), (50348, 'https://ror.org/00drv2g38', 'no_lang_code', 1, 'https://ror.org/00drv2g38 Better People (United States)'), (50349, 'https://ror.org/00dtg9r68', 'en', 1, 'https://ror.org/00dtg9r68 Financial Services Authority'), (50350, 'https://ror.org/00dv4bv22', 'no_lang_code', 1, 'https://ror.org/00dv4bv22 Presurgy (Spain)'), (50351, 'https://ror.org/00dw5zk55', 'en', 1, 'https://ror.org/00dw5zk55 Institut für Technikfolgen-Abschätzung Institute of Technology Assessment'), (50352, 'https://ror.org/00dzzp321', 'it', 1, 'https://ror.org/00dzzp321 Gruppo Italiano di Oncologia Geriatrica'), (50353, 'https://ror.org/00e03sj10', 'de', 1, 'https://ror.org/00e03sj10 Rheumazentrum Ruhrgebiet'), (50354, 'https://ror.org/00e0qzz35', 'en', 1, 'https://ror.org/00e0qzz35 Dean Health Plan'), (50355, 'https://ror.org/00e58tv26', 'no_lang_code', 1, 'https://ror.org/00e58tv26 Janicki Bioenergy (United States)'), (50356, 'https://ror.org/00e65d634', 'no_lang_code', 1, 'https://ror.org/00e65d634 Roche (Belgium)'), (50357, 'https://ror.org/00e6hp348', 'en', 1, 'https://ror.org/00e6hp348 Bailey Family Foundation'), (50358, 'https://ror.org/00e82pm13', 'en', 1, 'https://ror.org/00e82pm13 Foundation for Angelman Syndrome Therapeutics'), (50359, 'https://ror.org/00e8cky09', 'no_lang_code', 1, 'https://ror.org/00e8cky09 AC Immune (Switzerland)'), (50360, 'https://ror.org/00e99dd12', 'en', 1, 'https://ror.org/00e99dd12 University Physicians Group'), (50361, 'https://ror.org/00eah7161', 'en', 1, 'https://ror.org/00eah7161 Central Coast Nephrology'), (50362, 'https://ror.org/00ecgnd18', 'en', 1, 'https://ror.org/00ecgnd18 Greater Kansas City Community Foundation'), (50363, 'https://ror.org/00eeg9444', 'en', 1, 'https://ror.org/00eeg9444 Kenya Muslim Youth Alliance'), (50364, 'https://ror.org/00eftnw67', 'no_lang_code', 1, 'https://ror.org/00eftnw67 Timex (United States)'), (50365, 'https://ror.org/00eh6xk55', 'de', 1, 'https://ror.org/00eh6xk55 Klinikum Altenburger Land'), (50366, 'https://ror.org/00ej3ta37', 'en', 1, 'https://ror.org/00ej3ta37 Columbia Orthopaedic Group'), (50367, 'https://ror.org/00en8sz04', 'no_lang_code', 1, 'https://ror.org/00en8sz04 Vectura (Germany)'), (50368, 'https://ror.org/00er4d216', 'en', 1, 'https://ror.org/00er4d216 Liuzhou General Hospital 柳州市人民医院'), (50369, 'https://ror.org/00esqty25', 'en', 1, 'https://ror.org/00esqty25 Borean Innovation'), (50370, 'https://ror.org/00et47318', 'en', 1, 'https://ror.org/00et47318 Clinical Research of South Florida'), (50371, 'https://ror.org/00ev3n257', 'en', 1, 'https://ror.org/00ev3n257 Ohio Academy of Family Physicians'), (50372, 'https://ror.org/00ey8bm24', 'en', 1, 'https://ror.org/00ey8bm24 Al-Saeed Foundation for Science and Culture مؤسسة السعيد للعلوم والثقافة'), (50373, 'https://ror.org/00ez4mt38', 'en', 1, 'https://ror.org/00ez4mt38 Central Ohio Radiation Oncology'), (50374, 'https://ror.org/00f202q63', 'en', 1, 'https://ror.org/00f202q63 Philadelphia Foundation'), (50375, 'https://ror.org/00f48mn63', 'en', 1, 'https://ror.org/00f48mn63 Heritage Fund'), (50376, 'https://ror.org/00f5kpb16', 'no_lang_code', 1, 'https://ror.org/00f5kpb16 Oostrotex (Belgium)'), (50377, 'https://ror.org/00f7cza09', 'en', 1, 'https://ror.org/00f7cza09 Clinical Investigation Specialists'), (50378, 'https://ror.org/00f7nwk73', 'en', 1, 'https://ror.org/00f7nwk73 Hermansky Pudlak Syndrome Network'), (50379, 'https://ror.org/00f9hhp33', 'en', 1, 'https://ror.org/00f9hhp33 Postsecondary National Policy Institute'), (50380, 'https://ror.org/00fayv870', 'en', 1, 'https://ror.org/00fayv870 Carolina Women''s Research and Wellness Center'), (50381, 'https://ror.org/00fbwv278', 'en', 1, 'https://ror.org/00fbwv278 Liuzhou Maternal and Child Health Hospital 柳州市妇幼保健院'), (50382, 'https://ror.org/00fff9d21', 'en', 1, 'https://ror.org/00fff9d21 Urology San Antonio'), (50383, 'https://ror.org/00fg07796', 'en', 1, 'https://ror.org/00fg07796 Behavioral Medical Research'), (50384, 'https://ror.org/00fhnng33', 'en', 1, 'https://ror.org/00fhnng33 Medical Society of the State of New York'), (50385, 'https://ror.org/00fk7s812', 'en', 1, 'https://ror.org/00fk7s812 Wilton Park'), (50386, 'https://ror.org/00fkys966', 'en', 1, 'https://ror.org/00fkys966 World Neighbors'), (50387, 'https://ror.org/00fnw5m57', 'en', 1, 'https://ror.org/00fnw5m57 Anaheim Clinical Trials'), (50388, 'https://ror.org/00fpb6b80', 'no_lang_code', 1, 'https://ror.org/00fpb6b80 Maple Syrup Urine Disease Family Support Group'), (50389, 'https://ror.org/00fpmwa05', 'no_lang_code', 1, 'https://ror.org/00fpmwa05 VaxTrials (Panama)'), (50390, 'https://ror.org/00ftqkj90', 'no_lang_code', 1, 'https://ror.org/00ftqkj90 COFRA (Switzerland)'), (50391, 'https://ror.org/00fymps95', 'en', 1, 'https://ror.org/00fymps95 Saint Francis Hospital'), (50392, 'https://ror.org/00fz5gq57', 'en', 1, 'https://ror.org/00fz5gq57 Georgia Clinical Research'), (50393, 'https://ror.org/00fz6qg20', 'no_lang_code', 1, 'https://ror.org/00fz6qg20 HLL Lifecare (India)'), (50394, 'https://ror.org/00g01fs73', 'de', 1, 'https://ror.org/00g01fs73 Ebnet Stiftung'), (50395, 'https://ror.org/00g07kf08', 'en', 1, 'https://ror.org/00g07kf08 Seattle Education Access'), (50396, 'https://ror.org/00g0x9d29', 'it', 1, 'https://ror.org/00g0x9d29 Ospedali Riuniti di Foggia'), (50397, 'https://ror.org/00g156b94', 'en', 1, 'https://ror.org/00g156b94 Center for Theology and the Natural Sciences'), (50398, 'https://ror.org/00g200v31', 'en', 1, 'https://ror.org/00g200v31 Brentwood Foundation'), (50399, 'https://ror.org/00g2cf802', 'no_lang_code', 1, 'https://ror.org/00g2cf802 Melaka Manipal Medical College'), (50400, 'https://ror.org/00g427679', 'en', 1, 'https://ror.org/00g427679 Richmond Vascular Center'), (50401, 'https://ror.org/00g42k788', 'en', 1, 'https://ror.org/00g42k788 Blumenthal Foundation'), (50402, 'https://ror.org/00g51ew42', 'no_lang_code', 1, 'https://ror.org/00g51ew42 Sanofi (Spain)'), (50403, 'https://ror.org/00g5kqg81', 'en', 1, 'https://ror.org/00g5kqg81 Sickle Cell Cure Foundation'), (50404, 'https://ror.org/00g652k45', 'en', 1, 'https://ror.org/00g652k45 Orthopaedic Associates of Michigan'), (50405, 'https://ror.org/00g6mre77', 'en', 1, 'https://ror.org/00g6mre77 American Astronautical Society'), (50406, 'https://ror.org/00g845z88', 'en', 1, 'https://ror.org/00g845z88 Parent Trust for Washington Children'), (50407, 'https://ror.org/00g8q6r39', 'en', 1, 'https://ror.org/00g8q6r39 Herb Society of America'), (50408, 'https://ror.org/00g9je304', 'no_lang_code', 1, 'https://ror.org/00g9je304 Apogenix (Germany)'), (50409, 'https://ror.org/00gb2qm43', 'en', 1, 'https://ror.org/00gb2qm43 Andover Eye Associates'), (50410, 'https://ror.org/00gdp2d15', 'no_lang_code', 1, 'https://ror.org/00gdp2d15 Eram Scientific Solutions (India)'), (50411, 'https://ror.org/00geaen61', 'no_lang_code', 1, 'https://ror.org/00geaen61 Global Strategy Group'), (50412, 'https://ror.org/00gf51y12', 'en', 1, 'https://ror.org/00gf51y12 Institut für Kulturgeschichte der Antike Institute for the Study of Ancient Culture'), (50413, 'https://ror.org/00gknkr97', 'en', 1, 'https://ror.org/00gknkr97 Cullen Foundation'), (50414, 'https://ror.org/00gpt9p27', 'en', 1, 'https://ror.org/00gpt9p27 Korea Institute of Sport Science 한국스포츠개발원'), (50415, 'https://ror.org/00gqhzy82', 'en', 1, 'https://ror.org/00gqhzy82 Alphawood Foundation'), (50416, 'https://ror.org/00gt7fk38', 'no_lang_code', 1, 'https://ror.org/00gt7fk38 Hunter Douglas (United States)'), (50417, 'https://ror.org/00gxry525', 'en', 1, 'https://ror.org/00gxry525 Bolder Giving'), (50418, 'https://ror.org/00gytj534', 'en', 1, 'https://ror.org/00gytj534 Arkansas Cardiology'), (50419, 'https://ror.org/00gz3wv72', 'en', 1, 'https://ror.org/00gz3wv72 Eden Hall Foundation'), (50420, 'https://ror.org/00h4cdy24', 'en', 1, 'https://ror.org/00h4cdy24 Heart Foundation'), (50421, 'https://ror.org/00h4xd076', 'en', 1, 'https://ror.org/00h4xd076 Bogliasco Foundation'), (50422, 'https://ror.org/00h4y2a67', 'en', 1, 'https://ror.org/00h4y2a67 White Ribbon Alliance'), (50423, 'https://ror.org/00h5rtk23', 'en', 1, 'https://ror.org/00h5rtk23 Retina Associates of Kentucky'), (50424, 'https://ror.org/00h656961', 'en', 1, 'https://ror.org/00h656961 Lyme Disease Association'), (50425, 'https://ror.org/00h7ccj27', 'en', 1, 'https://ror.org/00h7ccj27 Agora Foundation'), (50426, 'https://ror.org/00hgjqa61', 'en', 1, 'https://ror.org/00hgjqa61 Australian Orchid Foundation'), (50427, 'https://ror.org/00hj21c17', 'en', 1, 'https://ror.org/00hj21c17 Pediatric Brain Tumor Consortium'), (50428, 'https://ror.org/00hj7mt57', 'en', 1, 'https://ror.org/00hj7mt57 Migration Policy Institute'), (50429, 'https://ror.org/00hm6j694', 'en', 1, 'https://ror.org/00hm6j694 Nova Scotia Research and Innovation Trust'), (50430, 'https://ror.org/00hq18w20', 'en', 1, 'https://ror.org/00hq18w20 Coeur d Alene Arthritis Clinic'), (50431, 'https://ror.org/00hrner53', 'fr', 1, 'https://ror.org/00hrner53 Le Petit Monde'), (50432, 'https://ror.org/00hsyyp29', 'en', 1, 'https://ror.org/00hsyyp29 Battle Creek Community Foundation'), (50433, 'https://ror.org/00ht04y43', 'no_lang_code', 1, 'https://ror.org/00ht04y43 Lanxess (United States)'), (50434, 'https://ror.org/00hw04726', 'no_lang_code', 1, 'https://ror.org/00hw04726 International Council of Ophthalmology'), (50435, 'https://ror.org/00hzbxp35', 'da', 1, 'https://ror.org/00hzbxp35 Marselisborgcentret'), (50436, 'https://ror.org/00j0wh784', 'no_lang_code', 1, 'https://ror.org/00j0wh784 IPPMed (Germany) Institut für Pharmakologie und Präventive Medizin'), (50437, 'https://ror.org/00j3qdn40', 'no_lang_code', 1, 'https://ror.org/00j3qdn40 SeqOmics Biotechnology (Hungary)'), (50438, 'https://ror.org/00j68ke40', 'no_lang_code', 1, 'https://ror.org/00j68ke40 Kamenori Foundation かめのり財団'), (50439, 'https://ror.org/00j7nqv87', 'en', 1, 'https://ror.org/00j7nqv87 Parkinson Research Foundation'), (50440, 'https://ror.org/00j82ct10', 'en', 1, 'https://ror.org/00j82ct10 Perspectives Charter School'), (50441, 'https://ror.org/00jb20j87', 'en', 1, 'https://ror.org/00jb20j87 Impact Fund'), (50442, 'https://ror.org/00jbrtf50', 'no_lang_code', 1, 'https://ror.org/00jbrtf50 Premise Data (United States)'), (50443, 'https://ror.org/00jc5v027', 'en', 1, 'https://ror.org/00jc5v027 Research for Action'), (50444, 'https://ror.org/00jfvgs31', 'en', 1, 'https://ror.org/00jfvgs31 Medical Center Ophthalmology Associates'), (50445, 'https://ror.org/00jgjtc40', 'en', 1, 'https://ror.org/00jgjtc40 Capita Foundation'), (50446, 'https://ror.org/00jhzb822', 'no_lang_code', 1, 'https://ror.org/00jhzb822 Acuitus (United States)'), (50447, 'https://ror.org/00jjd3f53', 'no_lang_code', 1, 'https://ror.org/00jjd3f53 Comtech Telecommunications (United States)'), (50448, 'https://ror.org/00jk42n91', 'en', 1, 'https://ror.org/00jk42n91 Kaibara Morikazu Medical Science Promotion Foundation 海原盛和医学振興財団'), (50449, 'https://ror.org/00jkq3860', 'en', 1, 'https://ror.org/00jkq3860 Jackson Foundation'), (50450, 'https://ror.org/00jkvq232', 'en', 1, 'https://ror.org/00jkvq232 Jon Bon Jovi Soul Foundation'), (50451, 'https://ror.org/00jkvrs61', 'en', 1, 'https://ror.org/00jkvrs61 American Orthopaedic Foot and Ankle Society'), (50452, 'https://ror.org/00jnyfv56', 'en', 1, 'https://ror.org/00jnyfv56 American Association of Avian Pathologists'), (50453, 'https://ror.org/00jprdp28', 'no_lang_code', 1, 'https://ror.org/00jprdp28 GfK (United States)'), (50454, 'https://ror.org/00jq6bk95', 'en', 1, 'https://ror.org/00jq6bk95 Free To Breathe'), (50455, 'https://ror.org/00jrs9d94', 'no_lang_code', 1, 'https://ror.org/00jrs9d94 Selskabet til Forskning i Arbejderbevægelsens Historie Sfah (Denmark)'), (50456, 'https://ror.org/00jtd2k84', 'en', 1, 'https://ror.org/00jtd2k84 Central Texas Neurology Consultants'), (50457, 'https://ror.org/00jtq6z81', 'fr', 1, 'https://ror.org/00jtq6z81 Hopitaux Civils de Colmar'), (50458, 'https://ror.org/00jw0jd04', 'en', 1, 'https://ror.org/00jw0jd04 California Cancer Associates for Research and Excellence'), (50459, 'https://ror.org/00jw6m528', 'en', 1, 'https://ror.org/00jw6m528 NALEO Educational Fund'), (50460, 'https://ror.org/00jxjg186', 'ro', 1, 'https://ror.org/00jxjg186 Spitalul Clinic C.F. Iasi'), (50461, 'https://ror.org/00jy1b467', 'en', 1, 'https://ror.org/00jy1b467 Busara Center for Behavioral Economics'), (50462, 'https://ror.org/00jz5wn21', 'no_lang_code', 1, 'https://ror.org/00jz5wn21 Harras Pharma (Germany)'), (50463, 'https://ror.org/00k39ax32', 'no_lang_code', 1, 'https://ror.org/00k39ax32 Ziopharm Oncology (United States)'), (50464, 'https://ror.org/00k4jsr16', 'en', 1, 'https://ror.org/00k4jsr16 Australian Liver Foundation'), (50465, 'https://ror.org/00k5pj069', 'es', 1, 'https://ror.org/00k5pj069 Hospital General Nuestra Señora del Prado'), (50466, 'https://ror.org/00k81wv70', 'en', 1, 'https://ror.org/00k81wv70 International Society for Peritoneal Dialysis'), (50467, 'https://ror.org/00k85q565', 'en', 1, 'https://ror.org/00k85q565 Mitte Foundation'), (50468, 'https://ror.org/00k85zk31', 'en', 1, 'https://ror.org/00k85zk31 Clark and Watson Family Dental Practice'), (50469, 'https://ror.org/00k9xmb90', 'no_lang_code', 1, 'https://ror.org/00k9xmb90 LearnZillion (United States)'), (50470, 'https://ror.org/00ka90s24', 'en', 1, 'https://ror.org/00ka90s24 Death Valley Natural History Association'), (50471, 'https://ror.org/00kan3777', 'en', 1, 'https://ror.org/00kan3777 Dutch Blood Transfusion Society Nederlandse Vereniging voor Bloedtransfusie'), (50472, 'https://ror.org/00kaqnj29', 'da', 1, 'https://ror.org/00kaqnj29 Karen Elise Jensens Fond'), (50473, 'https://ror.org/00kmgnh57', 'en', 1, 'https://ror.org/00kmgnh57 Australian Flora Foundation'), (50474, 'https://ror.org/00kncat42', 'en', 1, 'https://ror.org/00kncat42 Grazute Regional Park'), (50475, 'https://ror.org/00kpb0908', 'en', 1, 'https://ror.org/00kpb0908 Global Down Syndrome Foundation'), (50476, 'https://ror.org/00ksjkj95', 'en', 1, 'https://ror.org/00ksjkj95 Osteosynthesis and Trauma Care Foundation'), (50477, 'https://ror.org/00kt5rm23', 'no_lang_code', 1, 'https://ror.org/00kt5rm23 TC Biopharm (United Kingdom)'), (50478, 'https://ror.org/00kty7w06', 'en', 1, 'https://ror.org/00kty7w06 National Housing Endowment'), (50479, 'https://ror.org/00kvc5j94', 'en', 1, 'https://ror.org/00kvc5j94 Gulfcoast Clinical Research Center'), (50480, 'https://ror.org/00kz26j88', 'de', 1, 'https://ror.org/00kz26j88 Praxiszentrum Orthopädie Unfallchirurgie Nordrhein'), (50481, 'https://ror.org/00m06j627', 'en', 1, 'https://ror.org/00m06j627 Inlaks Shivdasani Foundation'), (50482, 'https://ror.org/00m0ms985', 'en', 1, 'https://ror.org/00m0ms985 Rainier Clinical Research Center'), (50483, 'https://ror.org/00m2e6n43', 'en', 1, 'https://ror.org/00m2e6n43 National Retail Federation'), (50484, 'https://ror.org/00m3bfx83', 'hu', 1, 'https://ror.org/00m3bfx83 Pozitron-Diagnosztika Kft'), (50485, 'https://ror.org/00m3qn560', 'en', 1, 'https://ror.org/00m3qn560 Harold Mitchell Foundation'), (50486, 'https://ror.org/00m42nc03', 'no_lang_code', 1, 'https://ror.org/00m42nc03 Zelmic (Sweden)'), (50487, 'https://ror.org/00m4t9795', 'en', 1, 'https://ror.org/00m4t9795 Hunter''s Hope Foundation'), (50488, 'https://ror.org/00m61y124', 'en', 1, 'https://ror.org/00m61y124 International Waldenstrom''s Macroglobulinemia Foundation'), (50489, 'https://ror.org/00m63h757', 'en', 1, 'https://ror.org/00m63h757 Parkinson''s Australia'), (50490, 'https://ror.org/00m8atr56', 'en', 1, 'https://ror.org/00m8atr56 Canandaigua VA Medical Center'), (50491, 'https://ror.org/00m8w3m39', 'no_lang_code', 1, 'https://ror.org/00m8w3m39 Pfizer (Germany)'), (50492, 'https://ror.org/00maafh77', 'en', 1, 'https://ror.org/00maafh77 Texas Tribune'), (50493, 'https://ror.org/00mb5nt47', 'en', 1, 'https://ror.org/00mb5nt47 Darrell Gwynn Foundation'), (50494, 'https://ror.org/00mfkwp51', 'en', 1, 'https://ror.org/00mfkwp51 Manitoba Medical Service Foundation'), (50495, 'https://ror.org/00mgk5c15', 'en', 1, 'https://ror.org/00mgk5c15 VentureWell'), (50496, 'https://ror.org/00mjcdm77', 'en', 1, 'https://ror.org/00mjcdm77 Past Global Changes'), (50497, 'https://ror.org/00mjj2d85', 'no_lang_code', 1, 'https://ror.org/00mjj2d85 Coherus BioSciences (United States)'), (50498, 'https://ror.org/00mjpb940', 'en', 1, 'https://ror.org/00mjpb940 Lown Cardiovascular Group'), (50499, 'https://ror.org/00mjrb616', 'no_lang_code', 1, 'https://ror.org/00mjrb616 Kostal (Germany)'), (50500, 'https://ror.org/00mmhc695', 'en', 1, 'https://ror.org/00mmhc695 Leopold Schepp Foundation'), (50501, 'https://ror.org/00mms0j12', 'en', 1, 'https://ror.org/00mms0j12 Alliance for Cancer Gene Therapy'), (50502, 'https://ror.org/00mnrxf72', 'no_lang_code', 1, 'https://ror.org/00mnrxf72 Alibaba Group (Cayman Islands)'), (50503, 'https://ror.org/00mpw9279', 'en', 1, 'https://ror.org/00mpw9279 Anxiety and Depression Association of America'), (50504, 'https://ror.org/00mqhay86', 'en', 1, 'https://ror.org/00mqhay86 Yakima Valley Community Foundation'), (50505, 'https://ror.org/00mr0nz89', 'en', 1, 'https://ror.org/00mr0nz89 North Valley Community Foundation'), (50506, 'https://ror.org/00mra6j45', 'en', 1, 'https://ror.org/00mra6j45 MedaPhase'), (50507, 'https://ror.org/00mrtvk90', 'en', 1, 'https://ror.org/00mrtvk90 John Merck Fund'), (50508, 'https://ror.org/00msnjb96', 'no_lang_code', 1, 'https://ror.org/00msnjb96 Essa Pharma (United States)'), (50509, 'https://ror.org/00mt5kz64', 'en', 1, 'https://ror.org/00mt5kz64 Accumed Research Associates'), (50510, 'https://ror.org/00mxhk994', 'en', 1, 'https://ror.org/00mxhk994 Institute of the Republic of Slovenia for Nature Conservation Zavod republike Slovenije za varstvo narave'), (50511, 'https://ror.org/00my48t58', 'fr', 1, 'https://ror.org/00my48t58 Fondation Marie et Alain Philippson'), (50512, 'https://ror.org/00my66392', 'en', 1, 'https://ror.org/00my66392 Brookdale Foundation Group'), (50513, 'https://ror.org/00mzdyq43', 'en', 1, 'https://ror.org/00mzdyq43 Zhejiang Provincial Hospital of TCM 浙江省中医院'), (50514, 'https://ror.org/00mzhs720', 'en', 1, 'https://ror.org/00mzhs720 Big Picture Learning'), (50515, 'https://ror.org/00mzpva76', 'no_lang_code', 1, 'https://ror.org/00mzpva76 PrEP Biopharm (United Kingdom)'), (50516, 'https://ror.org/00n0zsa28', 'en', 1, 'https://ror.org/00n0zsa28 Institut für Europäisches Schadenersatzrecht Institute for European Tort Law'), (50517, 'https://ror.org/00n1s5967', 'en', 1, 'https://ror.org/00n1s5967 Philadelphia Institute of Dermatology'), (50518, 'https://ror.org/00n22rm50', 'no_lang_code', 1, 'https://ror.org/00n22rm50 United States Gypsum (United States)'), (50519, 'https://ror.org/00n2q2t03', 'en', 1, 'https://ror.org/00n2q2t03 Jewish Women''s Foundation of New York'), (50520, 'https://ror.org/00n478750', 'en', 1, 'https://ror.org/00n478750 New Hope Clinical Research'), (50521, 'https://ror.org/00n562475', 'en', 1, 'https://ror.org/00n562475 Romanian Intelligence Service Serviciul Român de Informații'), (50522, 'https://ror.org/00n5w1596', 'en', 1, 'https://ror.org/00n5w1596 People ''s Hospital of Jilin Province 吉林省人民医院'), (50523, 'https://ror.org/00n60x364', 'en', 1, 'https://ror.org/00n60x364 King Faisal Foundation'), (50524, 'https://ror.org/00n6phm26', 'no_lang_code', 1, 'https://ror.org/00n6phm26 J C Bamford Excavators (United Kingdom)'), (50525, 'https://ror.org/00n789a42', 'en', 1, 'https://ror.org/00n789a42 International Association for the Evaluation of Educational Achievement'), (50526, 'https://ror.org/00n7ybs24', 'no_lang_code', 1, 'https://ror.org/00n7ybs24 LVMH (France)'), (50527, 'https://ror.org/00n7z7b94', 'no_lang_code', 1, 'https://ror.org/00n7z7b94 KNG Health Consulting (United States)'), (50528, 'https://ror.org/00n8szr38', 'en', 1, 'https://ror.org/00n8szr38 Mott Childrens Health Center'), (50529, 'https://ror.org/00n9n8692', 'en', 1, 'https://ror.org/00n9n8692 Washington Global Health Alliance'), (50530, 'https://ror.org/00n9y1b67', 'no_lang_code', 1, 'https://ror.org/00n9y1b67 Revalesio (United states)'), (50531, 'https://ror.org/00nds2e18', 'en', 1, 'https://ror.org/00nds2e18 Indiana State University Foundation'), (50532, 'https://ror.org/00ndtrg66', 'en', 1, 'https://ror.org/00ndtrg66 Chicago Society for Coatings Technology'), (50533, 'https://ror.org/00ne52m93', 'en', 1, 'https://ror.org/00ne52m93 Bhare Foundation'), (50534, 'https://ror.org/00nhrdk04', 'en', 1, 'https://ror.org/00nhrdk04 Lucas Research'), (50535, 'https://ror.org/00nhwe772', 'en', 1, 'https://ror.org/00nhwe772 American Thyroid Association'), (50536, 'https://ror.org/00nkfq279', 'en', 1, 'https://ror.org/00nkfq279 Greenwall Foundation'), (50537, 'https://ror.org/00nm3xj95', 'en', 1, 'https://ror.org/00nm3xj95 Junior Achievement'), (50538, 'https://ror.org/00np3zt84', 'en', 1, 'https://ror.org/00np3zt84 Tulalip Foundation'), (50539, 'https://ror.org/00npama54', 'en', 1, 'https://ror.org/00npama54 Rabbit Free Australia'), (50540, 'https://ror.org/00npcd820', 'en', 1, 'https://ror.org/00npcd820 Cosmos Club Foundation'), (50541, 'https://ror.org/00nqjkj48', 'no_lang_code', 1, 'https://ror.org/00nqjkj48 NCR (United States)'), (50542, 'https://ror.org/00nt3sg33', 'en', 1, 'https://ror.org/00nt3sg33 International Extranodal Lymphoma Study Group'), (50543, 'https://ror.org/00nx3fr64', 'en', 1, 'https://ror.org/00nx3fr64 New Schools for New Orleans'), (50544, 'https://ror.org/00nx5ke65', 'en', 1, 'https://ror.org/00nx5ke65 Edward Lowe Foundation'), (50545, 'https://ror.org/00nx60023', 'en', 1, 'https://ror.org/00nx60023 Brooke Charter Schools'), (50546, 'https://ror.org/00nx74059', 'en', 1, 'https://ror.org/00nx74059 Schools, Health & Libraries Broadband'), (50547, 'https://ror.org/00nxf7t46', 'no_lang_code', 1, 'https://ror.org/00nxf7t46 Pulmagen Therapeutics (United Kingdom)'), (50548, 'https://ror.org/00nxzrk14', 'no_lang_code', 1, 'https://ror.org/00nxzrk14 Debiopharm (Switzerland)'), (50549, 'https://ror.org/00p37gt26', 'en', 1, 'https://ror.org/00p37gt26 China International Center for Economic and Technical Exchanges 中国国际经济技术交流中心'), (50550, 'https://ror.org/00p3g3670', 'no_lang_code', 1, 'https://ror.org/00p3g3670 OSE Immunotherapeutics (France)'), (50551, 'https://ror.org/00p52as68', 'en', 1, 'https://ror.org/00p52as68 Leapfrog Group'), (50552, 'https://ror.org/00p52yk09', 'en', 1, 'https://ror.org/00p52yk09 Breast Cancer and Womens Health Institute'), (50553, 'https://ror.org/00p8vgm81', 'es', 1, 'https://ror.org/00p8vgm81 Hospital Quirónsalud Sagrado Corazón'), (50554, 'https://ror.org/00pdgpe23', 'en', 1, 'https://ror.org/00pdgpe23 Match Education'), (50555, 'https://ror.org/00pdsc246', 'en', 1, 'https://ror.org/00pdsc246 Center for Autisme'), (50556, 'https://ror.org/00pex3x41', 'no_lang_code', 1, 'https://ror.org/00pex3x41 Celanese (United States)'), (50557, 'https://ror.org/00pgqb537', 'no_lang_code', 1, 'https://ror.org/00pgqb537 Sanofi (Netherlands)'), (50558, 'https://ror.org/00pgxjc21', 'no_lang_code', 1, 'https://ror.org/00pgxjc21 Adenovir Pharma (Sweden)'), (50559, 'https://ror.org/00phamx97', 'no_lang_code', 1, 'https://ror.org/00phamx97 Haber Dermatology and Cosmetic Surgery (United States)'), (50560, 'https://ror.org/00pjapa16', 'en', 1, 'https://ror.org/00pjapa16 Greater Milwaukee Foundation'), (50561, 'https://ror.org/00pjede26', 'de', 1, 'https://ror.org/00pjede26 Friede Springer Stiftung'), (50562, 'https://ror.org/00pk4q491', 'en', 1, 'https://ror.org/00pk4q491 Prism Eye Institute'), (50563, 'https://ror.org/00pkb6h65', 'en', 1, 'https://ror.org/00pkb6h65 Bath and North East Somerset Clinical Commissioning Group'), (50564, 'https://ror.org/00pmgar68', 'en', 1, 'https://ror.org/00pmgar68 Sacco Eye Group'), (50565, 'https://ror.org/00pn3e170', 'no_lang_code', 1, 'https://ror.org/00pn3e170 Galmed Pharmaceuticals (Israel)'), (50566, 'https://ror.org/00pnhex46', 'en', 1, 'https://ror.org/00pnhex46 General Directorate for Environmental Protection Generalny Dyrektor Ochrony Środowiska'), (50567, 'https://ror.org/00ps0j197', 'en', 1, 'https://ror.org/00ps0j197 Osteopathic Heritage Foundation'), (50568, 'https://ror.org/00ptcn250', 'no_lang_code', 1, 'https://ror.org/00ptcn250 STV Production (Denmark)'), (50569, 'https://ror.org/00ptj8t60', 'en', 1, 'https://ror.org/00ptj8t60 Provision Center for Proton Therapy'), (50570, 'https://ror.org/00pw4ps28', 'en', 1, 'https://ror.org/00pw4ps28 Korea Foundation for International Healthcare'), (50571, 'https://ror.org/00px51556', 'en', 1, 'https://ror.org/00px51556 Center for Aesthetic Dermatology & Laser Surgery'), (50572, 'https://ror.org/00py0b751', 'en', 1, 'https://ror.org/00py0b751 Retina Specialists'), (50573, 'https://ror.org/00pyc4352', 'it', 1, 'https://ror.org/00pyc4352 Associazione Nazionale Medici Cardiologi Ospedalieri'), (50574, 'https://ror.org/00pzxxx15', 'en', 1, 'https://ror.org/00pzxxx15 India Diabetes Research Foundation'), (50575, 'https://ror.org/00q0pf015', 'de', 1, 'https://ror.org/00q0pf015 Krankenhaus vom Roten Kreuz Red Cross Hospital'), (50576, 'https://ror.org/00q2zja93', 'en', 1, 'https://ror.org/00q2zja93 United Heart and Vascular Clinic'), (50577, 'https://ror.org/00q3tc787', 'en', 1, 'https://ror.org/00q3tc787 Sustainability Institute'), (50578, 'https://ror.org/00q5r1k84', 'en', 1, 'https://ror.org/00q5r1k84 Learning Games Network'), (50579, 'https://ror.org/00q5sq874', 'fr', 1, 'https://ror.org/00q5sq874 Centre de Réadaptation Cardiaque Les Grands Prés'), (50580, 'https://ror.org/00q8djh14', 'en', 1, 'https://ror.org/00q8djh14 Jewell Plastic Surgery Center'), (50581, 'https://ror.org/00q8tg479', 'en', 1, 'https://ror.org/00q8tg479 Brainclinics'), (50582, 'https://ror.org/00q9sa398', 'es', 1, 'https://ror.org/00q9sa398 Instituto Argentino de Diagnóstico y Tratamiento'), (50583, 'https://ror.org/00qa1af27', 'en', 1, 'https://ror.org/00qa1af27 St. Bernard Parish School District'), (50584, 'https://ror.org/00qb7b998', 'en', 1, 'https://ror.org/00qb7b998 Aesthetic Surgery Education and Research Foundation'), (50585, 'https://ror.org/00qcb6787', 'en', 1, 'https://ror.org/00qcb6787 Cerebral Palsy Foundation'), (50586, 'https://ror.org/00qcdw388', 'en', 1, 'https://ror.org/00qcdw388 International Foundation for Research in Experimental Economics'), (50587, 'https://ror.org/00qcpjx94', 'no_lang_code', 1, 'https://ror.org/00qcpjx94 Green Cross (United States)'), (50588, 'https://ror.org/00qd7n243', 'en', 1, 'https://ror.org/00qd7n243 Owensboro Dermatology Associates'), (50589, 'https://ror.org/00qe9vp10', 'en', 1, 'https://ror.org/00qe9vp10 National Association of Television Program Executives Educational Foundation'), (50590, 'https://ror.org/00qee0597', 'no_lang_code', 1, 'https://ror.org/00qee0597 Invacare (United States)'), (50591, 'https://ror.org/00qep8v04', 'en', 1, 'https://ror.org/00qep8v04 Tavis Smiley Foundation'), (50592, 'https://ror.org/00qesdp23', 'en', 1, 'https://ror.org/00qesdp23 Future Foundation'), (50593, 'https://ror.org/00qfp3s59', 'no_lang_code', 1, 'https://ror.org/00qfp3s59 Happich (Germany)'), (50594, 'https://ror.org/00qfsn733', 'en', 1, 'https://ror.org/00qfsn733 CurePSP'), (50595, 'https://ror.org/00qftst12', 'en', 1, 'https://ror.org/00qftst12 Shenzhen Sixth People''s Hospital 深圳市第六人民医院'), (50596, 'https://ror.org/00qhfds50', 'no_lang_code', 1, 'https://ror.org/00qhfds50 SanPaTong Hospital โรงพยาบาลสันป่าตอง'), (50597, 'https://ror.org/00qhvya11', 'en', 1, 'https://ror.org/00qhvya11 Massage Therapy Foundation'), (50598, 'https://ror.org/00qjn5x82', 'en', 1, 'https://ror.org/00qjn5x82 Institute for Excellence and Ethics'), (50599, 'https://ror.org/00qjysb56', 'en', 1, 'https://ror.org/00qjysb56 RE Today Services'), (50600, 'https://ror.org/00qk41v79', 'en', 1, 'https://ror.org/00qk41v79 Petroleum Conservation Research Association'), (50601, 'https://ror.org/00qm2x081', 'en', 1, 'https://ror.org/00qm2x081 Preston Healthcare Consulting'), (50602, 'https://ror.org/00qmxzb41', 'no_lang_code', 1, 'https://ror.org/00qmxzb41 Rehau (Germany)'), (50603, 'https://ror.org/00qnrkz57', 'en', 1, 'https://ror.org/00qnrkz57 Alpine Clinical Research Center'), (50604, 'https://ror.org/00qs4g887', 'en', 1, 'https://ror.org/00qs4g887 Library Network'), (50605, 'https://ror.org/00qs7xz30', 'en', 1, 'https://ror.org/00qs7xz30 IGO Medical Group'), (50606, 'https://ror.org/00qsa8295', 'en', 1, 'https://ror.org/00qsa8295 Truman Center for National Policy'), (50607, 'https://ror.org/00qverm02', 'no_lang_code', 1, 'https://ror.org/00qverm02 Orphazyme (Denmark)'), (50608, 'https://ror.org/00qyppx03', 'en', 1, 'https://ror.org/00qyppx03 World Affairs Council'), (50609, 'https://ror.org/00qyrn735', 'en', 1, 'https://ror.org/00qyrn735 Diabetes Care and Research Foundation'), (50610, 'https://ror.org/00r0rhj09', 'en', 1, 'https://ror.org/00r0rhj09 Southern Sports Leagues'), (50611, 'https://ror.org/00r1ta077', 'en', 1, 'https://ror.org/00r1ta077 Housing Development Consortium'), (50612, 'https://ror.org/00r34jt90', 'en', 1, 'https://ror.org/00r34jt90 Adam Taliaferro Foundation'), (50613, 'https://ror.org/00r5xfb70', 'en', 1, 'https://ror.org/00r5xfb70 Appalachian Stewardship Foundation'), (50614, 'https://ror.org/00r68rb43', 'no_lang_code', 1, 'https://ror.org/00r68rb43 ebm-papst'), (50615, 'https://ror.org/00r91xh65', 'en', 1, 'https://ror.org/00r91xh65 Information and Communication Technology Agency'), (50616, 'https://ror.org/00rcvgx40', 'en', 1, 'https://ror.org/00rcvgx40 Rutgers Sexual and Reproductive Health and Rights'), (50617, 'https://ror.org/00rd36p16', 'no_lang_code', 1, 'https://ror.org/00rd36p16 Biogen (United Kingdom)'), (50618, 'https://ror.org/00rdsnk65', 'en', 1, 'https://ror.org/00rdsnk65 Argosy Foundation'), (50619, 'https://ror.org/00rgs1167', 'en', 1, 'https://ror.org/00rgs1167 Benjamin Franklin Tercentenary'), (50620, 'https://ror.org/00rmtxk95', 'en', 1, 'https://ror.org/00rmtxk95 National Partnership for Women & Families'), (50621, 'https://ror.org/00rncr141', 'en', 1, 'https://ror.org/00rncr141 Opportunity Institute'), (50622, 'https://ror.org/00rp38085', 'no_lang_code', 1, 'https://ror.org/00rp38085 Continental Emitec (Germany)'), (50623, 'https://ror.org/00rp4mp63', 'en', 1, 'https://ror.org/00rp4mp63 Chonburi Cancer Hospital โรงพยาบาลมะเร็งชลบุรี'), (50624, 'https://ror.org/00rs28409', 'en', 1, 'https://ror.org/00rs28409 Duke Endowment'), (50625, 'https://ror.org/00rsvkm93', 'en', 1, 'https://ror.org/00rsvkm93 Dr. Scholl Foundation'), (50626, 'https://ror.org/00rsvp932', 'en', 1, 'https://ror.org/00rsvp932 Health Tech Strategies'), (50627, 'https://ror.org/00rye6n28', 'en', 1, 'https://ror.org/00rye6n28 ASIS Foundation'), (50628, 'https://ror.org/00rz24q78', 'en', 1, 'https://ror.org/00rz24q78 British Mycological Society'), (50629, 'https://ror.org/00s163867', 'en', 1, 'https://ror.org/00s163867 British Society for the Philosophy of Science'), (50630, 'https://ror.org/00s1p1c80', 'no_lang_code', 1, 'https://ror.org/00s1p1c80 Verisfield (Greece)'), (50631, 'https://ror.org/00s20y756', 'en', 1, 'https://ror.org/00s20y756 Jewish Family Service of Seattle'), (50632, 'https://ror.org/00s22ed86', 'en', 1, 'https://ror.org/00s22ed86 American Society of Interior Designers Foundation'), (50633, 'https://ror.org/00s28hv45', 'no_lang_code', 1, 'https://ror.org/00s28hv45 Acerde (France)'), (50634, 'https://ror.org/00s2bzt61', 'en', 1, 'https://ror.org/00s2bzt61 Alpha Omega Foundation'), (50635, 'https://ror.org/00s2t1783', 'en', 1, 'https://ror.org/00s2t1783 American Islamic Congress'), (50636, 'https://ror.org/00s2xkh70', 'en', 1, 'https://ror.org/00s2xkh70 Peking University Stomatological Hospital'), (50637, 'https://ror.org/00s37na25', 'it', 1, 'https://ror.org/00s37na25 Fondazione Carical - Cassa di Risparmio di Calabria e di Lucania'), (50638, 'https://ror.org/00s3cdx23', 'en', 1, 'https://ror.org/00s3cdx23 James Pantyfedwen Foundation'), (50639, 'https://ror.org/00s4b3898', 'no_lang_code', 1, 'https://ror.org/00s4b3898 TetraGenetics (United States)'), (50640, 'https://ror.org/00s5mwe59', 'no_lang_code', 1, 'https://ror.org/00s5mwe59 Smetumet'), (50641, 'https://ror.org/00s61s029', 'en', 1, 'https://ror.org/00s61s029 VA New England Healthcare System'), (50642, 'https://ror.org/00s6tyh07', 'it', 1, 'https://ror.org/00s6tyh07 Fondazione Neureca Onlus'), (50643, 'https://ror.org/00s784a62', 'no_lang_code', 1, 'https://ror.org/00s784a62 Acino International (Germany)'), (50644, 'https://ror.org/00s7mhw17', 'pt', 1, 'https://ror.org/00s7mhw17 Hospital Leforte'), (50645, 'https://ror.org/00s8fj384', 'en', 1, 'https://ror.org/00s8fj384 Life Quality Resources'), (50646, 'https://ror.org/00s8ypq23', 'en', 1, 'https://ror.org/00s8ypq23 Nicholas and Elizabeth Slezak Super Center'), (50647, 'https://ror.org/00s9d5e28', 'en', 1, 'https://ror.org/00s9d5e28 Global Alliance for Rabies Control'), (50648, 'https://ror.org/00s9kz870', 'no_lang_code', 1, 'https://ror.org/00s9kz870 Versartis (United States)'), (50649, 'https://ror.org/00sax7541', 'en', 1, 'https://ror.org/00sax7541 AO North America'), (50650, 'https://ror.org/00sb42p15', 'en', 1, 'https://ror.org/00sb42p15 Western Health and Social Care Trust'), (50651, 'https://ror.org/00sbgwz10', 'de', 1, 'https://ror.org/00sbgwz10 OPO-Stiftung'), (50652, 'https://ror.org/00sby6b11', 'no_lang_code', 1, 'https://ror.org/00sby6b11 Oncocare (Switzerland)'), (50653, 'https://ror.org/00scfzf83', 'es', 1, 'https://ror.org/00scfzf83 Hospital Universitario Dexeus'), (50654, 'https://ror.org/00scrzf80', 'no_lang_code', 1, 'https://ror.org/00scrzf80 Kamada (Israel)'), (50655, 'https://ror.org/00shmqe23', 'en', 1, 'https://ror.org/00shmqe23 Restless Development'), (50656, 'https://ror.org/00sj6r545', 'en', 1, 'https://ror.org/00sj6r545 Health Services Research Association of Australia & New Zealand'); INSERT INTO `rors` VALUES (50657, 'https://ror.org/00sjwg368', 'en', 1, 'https://ror.org/00sjwg368 PICO National Network'), (50658, 'https://ror.org/00spg6x06', 'en', 1, 'https://ror.org/00spg6x06 Bharti Foundation'), (50659, 'https://ror.org/00sq30w29', 'en', 1, 'https://ror.org/00sq30w29 Autism & Developmental Medicine Institute'), (50660, 'https://ror.org/00ssgfx80', 'en', 1, 'https://ror.org/00ssgfx80 Autism Research Foundation'), (50661, 'https://ror.org/00sv7ks13', 'no_lang_code', 1, 'https://ror.org/00sv7ks13 Unilabs (Norway)'), (50662, 'https://ror.org/00swcah48', 'en', 1, 'https://ror.org/00swcah48 Gift of Hope Organ and Tissue Donor Network'), (50663, 'https://ror.org/00swxwg31', 'es', 1, 'https://ror.org/00swxwg31 Hospital Laboral Solimat'), (50664, 'https://ror.org/00sxgd769', 'en', 1, 'https://ror.org/00sxgd769 Hear and Say'), (50665, 'https://ror.org/00sxheh72', 'it', 1, 'https://ror.org/00sxheh72 Consorzio Oncotech'), (50666, 'https://ror.org/00t0abb25', 'en', 1, 'https://ror.org/00t0abb25 Orthopaedic Center of Vero Beach'), (50667, 'https://ror.org/00t19cz85', 'no_lang_code', 1, 'https://ror.org/00t19cz85 NATSO'), (50668, 'https://ror.org/00t1wrw35', 'no_lang_code', 1, 'https://ror.org/00t1wrw35 Danaher (Germany)'), (50669, 'https://ror.org/00t2pza55', 'en', 1, 'https://ror.org/00t2pza55 Stuart C Dodd Institute for Social Innovation'), (50670, 'https://ror.org/00t2vyc14', 'it', 1, 'https://ror.org/00t2vyc14 Università a Vicenza'), (50671, 'https://ror.org/00t2yvm83', 'en', 1, 'https://ror.org/00t2yvm83 Hope Research Institute'), (50672, 'https://ror.org/00t60x856', 'en', 1, 'https://ror.org/00t60x856 Minnesota Orthopedic Sports Medicine Institute'), (50673, 'https://ror.org/00t6sz979', 'no_lang_code', 1, 'https://ror.org/00t6sz979 MedSIR (Spain)'), (50674, 'https://ror.org/00tb8hf64', 'en', 1, 'https://ror.org/00tb8hf64 National Court Reporters Association'), (50675, 'https://ror.org/00tbnyh02', 'en', 1, 'https://ror.org/00tbnyh02 Hermitage Medicentres'), (50676, 'https://ror.org/00tbqb195', 'en', 1, 'https://ror.org/00tbqb195 Florida Immigrant Coalition'), (50677, 'https://ror.org/00tc0tf65', 'en', 1, 'https://ror.org/00tc0tf65 Batten Disease Family Association'), (50678, 'https://ror.org/00td0dz58', 'en', 1, 'https://ror.org/00td0dz58 Linnean Society of London'), (50679, 'https://ror.org/00tdt9a76', 'no_lang_code', 1, 'https://ror.org/00tdt9a76 Vivus Heart Hospital'), (50680, 'https://ror.org/00tf7ep30', 'en', 1, 'https://ror.org/00tf7ep30 March of Dimes Canada'), (50681, 'https://ror.org/00thwk687', 'en', 1, 'https://ror.org/00thwk687 Western Research Institute'), (50682, 'https://ror.org/00tjx8277', 'es', 1, 'https://ror.org/00tjx8277 Instituto de Investigaciones del Sueño'), (50683, 'https://ror.org/00tka3t28', 'no_lang_code', 1, 'https://ror.org/00tka3t28 ProDSP Technologies (Hungary)'), (50684, 'https://ror.org/00tmwkm13', 'en', 1, 'https://ror.org/00tmwkm13 American Fibromyalgia Syndrome Association'), (50685, 'https://ror.org/00tq5he37', 'en', 1, 'https://ror.org/00tq5he37 Building and Social Housing Foundation'), (50686, 'https://ror.org/00tsrhc80', 'en', 1, 'https://ror.org/00tsrhc80 Belgian Society of Medical Oncology'), (50687, 'https://ror.org/00ttbk338', 'en', 1, 'https://ror.org/00ttbk338 Brinson Foundation'), (50688, 'https://ror.org/00tvbb869', 'en', 1, 'https://ror.org/00tvbb869 Episcopal Church Foundation'), (50689, 'https://ror.org/00tw68s06', 'en', 1, 'https://ror.org/00tw68s06 Riverside County Office of Education'), (50690, 'https://ror.org/00tx8br33', 'no_lang_code', 1, 'https://ror.org/00tx8br33 Sanofi (Finland)'), (50691, 'https://ror.org/00txma197', 'no_lang_code', 1, 'https://ror.org/00txma197 Themis Bioscience (Austria)'), (50692, 'https://ror.org/00txq6g47', 'en', 1, 'https://ror.org/00txq6g47 State Innovation Exchange'), (50693, 'https://ror.org/00tz3zt92', 'en', 1, 'https://ror.org/00tz3zt92 Jiren Charity Foundation'), (50694, 'https://ror.org/00tzd7r06', 'en', 1, 'https://ror.org/00tzd7r06 Lighthouse Guild'), (50695, 'https://ror.org/00v0mde29', 'en', 1, 'https://ror.org/00v0mde29 British Microcirculation Society'), (50696, 'https://ror.org/00v119x08', 'no_lang_code', 1, 'https://ror.org/00v119x08 StelaGenomics (United States)'), (50697, 'https://ror.org/00v1e3m57', 'no_lang_code', 1, 'https://ror.org/00v1e3m57 Futaba clinic 双葉クリニック'), (50698, 'https://ror.org/00v3epe08', 'en', 1, 'https://ror.org/00v3epe08 Arizona Cotton Research and Protection Council'), (50699, 'https://ror.org/00v5bx942', 'en', 1, 'https://ror.org/00v5bx942 Nahda College كلية النهضة'), (50700, 'https://ror.org/00v70n302', 'no_lang_code', 1, 'https://ror.org/00v70n302 Isofol (Sweden)'), (50701, 'https://ror.org/00vba1e97', 'en', 1, 'https://ror.org/00vba1e97 Barker Welfare Foundation'), (50702, 'https://ror.org/00vbtek25', 'no_lang_code', 1, 'https://ror.org/00vbtek25 scPharmaceuticals (United States)'), (50703, 'https://ror.org/00veetk09', 'no_lang_code', 1, 'https://ror.org/00veetk09 R-Pharm (Russia)'), (50704, 'https://ror.org/00vhctc31', 'fr', 1, 'https://ror.org/00vhctc31 Centre Hospitalier de Vitré'), (50705, 'https://ror.org/00vj5dr06', 'en', 1, 'https://ror.org/00vj5dr06 Illinois Childrens Healthcare Foundation'), (50706, 'https://ror.org/00vjrcd64', 'en', 1, 'https://ror.org/00vjrcd64 Public Utilities Office'), (50707, 'https://ror.org/00vn5mx63', 'en', 1, 'https://ror.org/00vn5mx63 Parenting Matters Foundation'), (50708, 'https://ror.org/00vne6e91', 'no_lang_code', 1, 'https://ror.org/00vne6e91 NuStats (United States)'), (50709, 'https://ror.org/00vp43e16', 'en', 1, 'https://ror.org/00vp43e16 Therapeutics Clinical Research'), (50710, 'https://ror.org/00vp48839', 'en', 1, 'https://ror.org/00vp48839 Harriet H. Samuelsson Foundation'), (50711, 'https://ror.org/00vp6sp78', 'en', 1, 'https://ror.org/00vp6sp78 Anthony Rothe Memorial Trust'), (50712, 'https://ror.org/00vr1yg49', 'en', 1, 'https://ror.org/00vr1yg49 Christian Family Service Centre'), (50713, 'https://ror.org/00vsf1v04', 'en', 1, 'https://ror.org/00vsf1v04 McKnight Brain Research Foundation'), (50714, 'https://ror.org/00vsgwy54', 'en', 1, 'https://ror.org/00vsgwy54 Delta Electronics Foundation'), (50715, 'https://ror.org/00vt3q262', 'en', 1, 'https://ror.org/00vt3q262 Union Carnegie Library'), (50716, 'https://ror.org/00vtz6t93', 'no_lang_code', 1, 'https://ror.org/00vtz6t93 Enviroinvest Environmental and Biotechnological Corp'), (50717, 'https://ror.org/00vvx9s89', 'no_lang_code', 1, 'https://ror.org/00vvx9s89 Liminal BioSciences (United Kingdom)'), (50718, 'https://ror.org/00vw9nm15', 'en', 1, 'https://ror.org/00vw9nm15 Koch Foundation'), (50719, 'https://ror.org/00vx8b766', 'en', 1, 'https://ror.org/00vx8b766 Queens Medical Associates'), (50720, 'https://ror.org/00vxeha61', 'en', 1, 'https://ror.org/00vxeha61 Harry Frank Guggenheim Foundation'), (50721, 'https://ror.org/00vxrsr56', 'no_lang_code', 1, 'https://ror.org/00vxrsr56 Clinvest (United States)'), (50722, 'https://ror.org/00vxscp81', 'de', 1, 'https://ror.org/00vxscp81 HOPE-Kapstadt-Stiftung'), (50723, 'https://ror.org/00vzdn947', 'en', 1, 'https://ror.org/00vzdn947 Civic Builders'), (50724, 'https://ror.org/00vzkm750', 'en', 1, 'https://ror.org/00vzkm750 Oregon Weight Loss Surgery'), (50725, 'https://ror.org/00w035z87', 'en', 1, 'https://ror.org/00w035z87 Oregon State Library'), (50726, 'https://ror.org/00w0xq836', 'en', 1, 'https://ror.org/00w0xq836 Bernard Osher Foundation'), (50727, 'https://ror.org/00w17sc55', 'no_lang_code', 1, 'https://ror.org/00w17sc55 SOM Biotech (Spain)'), (50728, 'https://ror.org/00w1gss13', 'no_lang_code', 1, 'https://ror.org/00w1gss13 Haier (United States)'), (50729, 'https://ror.org/00w1mdq38', 'no_lang_code', 1, 'https://ror.org/00w1mdq38 VL-Medi Oy (Finland)'), (50730, 'https://ror.org/00w1tz996', 'no_lang_code', 1, 'https://ror.org/00w1tz996 Apprise Bio (United States)'), (50731, 'https://ror.org/00w3qd893', 'en', 1, 'https://ror.org/00w3qd893 Jessie Ball duPont Fund'), (50732, 'https://ror.org/00w4ej470', 'en', 1, 'https://ror.org/00w4ej470 Japan Foundation Sydney'), (50733, 'https://ror.org/00w4ztw65', 'en', 1, 'https://ror.org/00w4ztw65 New Haven Public Schools'), (50734, 'https://ror.org/00w69q520', 'no_lang_code', 1, 'https://ror.org/00w69q520 KaVo Dental (Germany)'), (50735, 'https://ror.org/00w6s5b11', 'de', 1, 'https://ror.org/00w6s5b11 Karl und Veronica Carstens-Stiftung'), (50736, 'https://ror.org/00w877a33', 'en', 1, 'https://ror.org/00w877a33 Little Company of Mary Hospital'), (50737, 'https://ror.org/00w9t4e98', 'no_lang_code', 1, 'https://ror.org/00w9t4e98 Elpen Pharmaceutical (Greece)'), (50738, 'https://ror.org/00wc5ck66', 'en', 1, 'https://ror.org/00wc5ck66 Australian Society of Plant Scientists'), (50739, 'https://ror.org/00wch0204', 'en', 1, 'https://ror.org/00wch0204 The Char and Chuck Fowler Family Foundation'), (50740, 'https://ror.org/00wcrma30', 'en', 1, 'https://ror.org/00wcrma30 Capalaba Medical Centre'), (50741, 'https://ror.org/00wct8y22', 'en', 1, 'https://ror.org/00wct8y22 Frank H and Eva B Buck Foundation'), (50742, 'https://ror.org/00wdmd464', 'en', 1, 'https://ror.org/00wdmd464 Southwest Georgia Regional Educational Service Agency'), (50743, 'https://ror.org/00weey343', 'sv', 1, 'https://ror.org/00weey343 Arvid Carlsson Fonden'), (50744, 'https://ror.org/00wfjvd95', 'no_lang_code', 1, 'https://ror.org/00wfjvd95 Preh (Germany)'), (50745, 'https://ror.org/00whc6223', 'en', 1, 'https://ror.org/00whc6223 Team Pennsylvania Foundation'), (50746, 'https://ror.org/00wjmg834', 'no_lang_code', 1, 'https://ror.org/00wjmg834 Octapharma (United Kingdom)'), (50747, 'https://ror.org/00wjx1428', 'no_lang_code', 1, 'https://ror.org/00wjx1428 Ambulance Care (Sweden) Ambulanssjukvården i Storstockholm'), (50748, 'https://ror.org/00wk91c97', 'en', 1, 'https://ror.org/00wk91c97 Cranberry Institute'), (50749, 'https://ror.org/00wkx1h43', 'no_lang_code', 1, 'https://ror.org/00wkx1h43 Croma Pharma (Austria)'), (50750, 'https://ror.org/00wkx7s25', 'it', 1, 'https://ror.org/00wkx7s25 Fondazione Ricerca Traslazionale'), (50751, 'https://ror.org/00wpy1p28', 'es', 1, 'https://ror.org/00wpy1p28 Grupo Español de Investigación en Neurooncología'), (50752, 'https://ror.org/00wq4bj48', 'en', 1, 'https://ror.org/00wq4bj48 successful practices network'), (50753, 'https://ror.org/00wqe7q58', 'en', 1, 'https://ror.org/00wqe7q58 Palmetto Clinical Trial Services'), (50754, 'https://ror.org/00wry3a77', 'en', 1, 'https://ror.org/00wry3a77 Physiotherapy New Zealand'), (50755, 'https://ror.org/00wt4b458', 'en', 1, 'https://ror.org/00wt4b458 ImagineNations'), (50756, 'https://ror.org/00wth1s13', 'no_lang_code', 1, 'https://ror.org/00wth1s13 Arcady Group (United States)'), (50757, 'https://ror.org/00x01fm48', 'es', 1, 'https://ror.org/00x01fm48 Instituto de Radiomedicina'), (50758, 'https://ror.org/00x2gme77', 'en', 1, 'https://ror.org/00x2gme77 1199SEIU Funds'), (50759, 'https://ror.org/00x3xjq33', 'en', 1, 'https://ror.org/00x3xjq33 Mesa Fire and Medical Department'), (50760, 'https://ror.org/00x62g077', 'en', 1, 'https://ror.org/00x62g077 Rodel Foundation of Delaware'), (50761, 'https://ror.org/00x72gm71', 'fr', 1, 'https://ror.org/00x72gm71 Maternité Port Royal'), (50762, 'https://ror.org/00x8qhz86', 'en', 1, 'https://ror.org/00x8qhz86 Corina Higginson Trust'), (50763, 'https://ror.org/00xabh388', 'en', 1, 'https://ror.org/00xabh388 Hubei Provincial Hospital of Traditional Chinese Medicine 湖北省中醫院'), (50764, 'https://ror.org/00xax6856', 'en', 1, 'https://ror.org/00xax6856 Shanghai Changning Maternity and Infant Health Hospital 上海长宁区妇幼保健院'), (50765, 'https://ror.org/00xbpvv44', 'es', 1, 'https://ror.org/00xbpvv44 Asociación para el Progreso de la Mujer en el Mundo Rural'), (50766, 'https://ror.org/00xdn6374', 'en', 1, 'https://ror.org/00xdn6374 Arthur Vining Davis Foundations'), (50767, 'https://ror.org/00xe15p12', 'en', 1, 'https://ror.org/00xe15p12 Emerald Cities Collaborative'), (50768, 'https://ror.org/00xege567', 'en', 1, 'https://ror.org/00xege567 Amon G. Carter Foundation'), (50769, 'https://ror.org/00xewv188', 'de', 1, 'https://ror.org/00xewv188 Dialysezentrum Potsdam'), (50770, 'https://ror.org/00xfkcx46', 'no_lang_code', 1, 'https://ror.org/00xfkcx46 Ability Pharmaceuticals (Spain)'), (50771, 'https://ror.org/00xgry947', 'no_lang_code', 1, 'https://ror.org/00xgry947 FinMark Trust'), (50772, 'https://ror.org/00xn3j339', 'no_lang_code', 1, 'https://ror.org/00xn3j339 Masco (United States)'), (50773, 'https://ror.org/00xnr4415', 'en', 1, 'https://ror.org/00xnr4415 British Society for Eighteenth-Century Studies'), (50774, 'https://ror.org/00xny7d86', 'en', 1, 'https://ror.org/00xny7d86 Australian National Kennel Council'), (50775, 'https://ror.org/00xp3qv26', 'en', 1, 'https://ror.org/00xp3qv26 Jordan Valley Dermatology'), (50776, 'https://ror.org/00xpfw690', 'en', 1, 'https://ror.org/00xpfw690 Huaian First People’s Hospital 淮安市第一人民医院'), (50777, 'https://ror.org/00xqbkk65', 'no_lang_code', 1, 'https://ror.org/00xqbkk65 AMT (United States)'), (50778, 'https://ror.org/00xsach43', 'en', 1, 'https://ror.org/00xsach43 Samaritan Healthcare'), (50779, 'https://ror.org/00xvwyc81', 'nl', 1, 'https://ror.org/00xvwyc81 Oranje Fonds'), (50780, 'https://ror.org/00xxqd436', 'en', 1, 'https://ror.org/00xxqd436 Midwest Fertility Specialists'), (50781, 'https://ror.org/00xysp757', 'no_lang_code', 1, 'https://ror.org/00xysp757 Yanmar (Japan) ヤンマー株式会社'), (50782, 'https://ror.org/00y105102', 'en', 1, 'https://ror.org/00y105102 John P. Murphy Foundation'), (50783, 'https://ror.org/00y21a678', 'en', 1, 'https://ror.org/00y21a678 Metroplex Clinical Research Center'), (50784, 'https://ror.org/00y30az25', 'en', 1, 'https://ror.org/00y30az25 Sparrow Health System'), (50785, 'https://ror.org/00y6n9757', 'en', 1, 'https://ror.org/00y6n9757 Hematology Oncology Associates of Central New York'), (50786, 'https://ror.org/00y7rmj88', 'en', 1, 'https://ror.org/00y7rmj88 Policy Cures'), (50787, 'https://ror.org/00y7zxb51', 'en', 1, 'https://ror.org/00y7zxb51 Manna Research'), (50788, 'https://ror.org/00ybf1536', 'en', 1, 'https://ror.org/00ybf1536 Camp Fire Inland Northwest'), (50789, 'https://ror.org/00ycncb81', 'no_lang_code', 1, 'https://ror.org/00ycncb81 Takeda (Netherlands)'), (50790, 'https://ror.org/00yd0be35', 'no_lang_code', 1, 'https://ror.org/00yd0be35 Frauenshuh Cancer Center'), (50791, 'https://ror.org/00yfa2884', 'en', 1, 'https://ror.org/00yfa2884 Christopher D. Smithers Foundation'), (50792, 'https://ror.org/00yfsan48', 'en', 1, 'https://ror.org/00yfsan48 Institute for Literature Институтът за литература'), (50793, 'https://ror.org/00yfxzd27', 'en', 1, 'https://ror.org/00yfxzd27 Houston Area Urban League'), (50794, 'https://ror.org/00yh95e48', 'no_lang_code', 1, 'https://ror.org/00yh95e48 Jefferson Education Accelerator (United States)'), (50795, 'https://ror.org/00yjmmj69', 'en', 1, 'https://ror.org/00yjmmj69 Milbank Foundation'), (50796, 'https://ror.org/00ykac431', 'en', 1, 'https://ror.org/00ykac431 Institute of Chemical Technology'), (50797, 'https://ror.org/00ymd9k36', 'en', 1, 'https://ror.org/00ymd9k36 Third Affiliated Hospital of Inner Mongolia Medical College'), (50798, 'https://ror.org/00yp23m74', 'en', 1, 'https://ror.org/00yp23m74 Centre for Budget and Governance Accountability'), (50799, 'https://ror.org/00yqy0q42', 'en', 1, 'https://ror.org/00yqy0q42 Diagnostic Services Manitoba'), (50800, 'https://ror.org/00yredq82', 'no_lang_code', 1, 'https://ror.org/00yredq82 AntibioTx (Denmark)'), (50801, 'https://ror.org/00z165e40', 'no_lang_code', 1, 'https://ror.org/00z165e40 Alma Sana'), (50802, 'https://ror.org/00z1emh11', 'en', 1, 'https://ror.org/00z1emh11 Suburban Psychiatric Associates'), (50803, 'https://ror.org/00z1h3j87', 'no_lang_code', 1, 'https://ror.org/00z1h3j87 GlaxoSmithKline (France)'), (50804, 'https://ror.org/00z2kr668', 'en', 1, 'https://ror.org/00z2kr668 British Association for Irish Studies'), (50805, 'https://ror.org/00z517q71', 'en', 1, 'https://ror.org/00z517q71 Seattle Central College Foundation'), (50806, 'https://ror.org/00z7r8y22', 'en', 1, 'https://ror.org/00z7r8y22 Ambulance Victoria'), (50807, 'https://ror.org/00z8zhe66', 'en', 1, 'https://ror.org/00z8zhe66 Clinical Research Center for Hair and Skin Science'), (50808, 'https://ror.org/00z9bse70', 'en', 1, 'https://ror.org/00z9bse70 Deaconess Clinic'), (50809, 'https://ror.org/00zbvt830', 'no_lang_code', 1, 'https://ror.org/00zbvt830 FightSMA'), (50810, 'https://ror.org/00ze01782', 'en', 1, 'https://ror.org/00ze01782 Denver Public Health'), (50811, 'https://ror.org/00zh4qk67', 'es', 1, 'https://ror.org/00zh4qk67 Hospital Universitario de Santander'), (50812, 'https://ror.org/00zhbtn94', 'en', 1, 'https://ror.org/00zhbtn94 Seton Education Partners'), (50813, 'https://ror.org/00zj09521', 'en', 1, 'https://ror.org/00zj09521 E. Matilda Ziegler Foundation for the Blind'), (50814, 'https://ror.org/00zkk0e65', 'en', 1, 'https://ror.org/00zkk0e65 Cushman Foundation for Foraminiferal Research'), (50815, 'https://ror.org/00zn1ak77', 'ro', 1, 'https://ror.org/00zn1ak77 Spitalul Clinic CF Cluj-Napoca'), (50816, 'https://ror.org/00zn76q59', 'en', 1, 'https://ror.org/00zn76q59 The Philanthropic Initiative'), (50817, 'https://ror.org/00zpmdm60', 'en', 1, 'https://ror.org/00zpmdm60 American Otological Society'), (50818, 'https://ror.org/00zq17y52', 'es', 1, 'https://ror.org/00zq17y52 Hospital Universitario del Tajo, Hospital del Tajo'), (50819, 'https://ror.org/00zs5nz08', 'no_lang_code', 1, 'https://ror.org/00zs5nz08 Oras (Germany)'), (50820, 'https://ror.org/00zv7v764', 'en', 1, 'https://ror.org/00zv7v764 Northern California Research'), (50821, 'https://ror.org/00zxygw58', 'en', 1, 'https://ror.org/00zxygw58 National Foundation for Fertility Research'), (50822, 'https://ror.org/00zz3cs83', 'no_lang_code', 1, 'https://ror.org/00zz3cs83 Momentive (United States)'), (50823, 'https://ror.org/00zzrkp92', 'en', 1, 'https://ror.org/00zzrkp92 Central People''s Hospital of Zhanjiang 湛江中心人民医院'), (50824, 'https://ror.org/010201t38', 'en', 1, 'https://ror.org/010201t38 Harry W. Bass, Jr. Foundation'), (50825, 'https://ror.org/0103q2z38', 'no_lang_code', 1, 'https://ror.org/0103q2z38 BioMarin (United Kingdom)'), (50826, 'https://ror.org/0103zr797', 'en', 1, 'https://ror.org/0103zr797 Center for Educational Leadership and Technology'), (50827, 'https://ror.org/0105knf85', 'en', 1, 'https://ror.org/0105knf85 Dart Foundation'), (50828, 'https://ror.org/0106bmv40', 'no_lang_code', 1, 'https://ror.org/0106bmv40 Empros Pharma (Sweden)'), (50829, 'https://ror.org/0106er609', 'en', 1, 'https://ror.org/0106er609 Brady Education Foundation'), (50830, 'https://ror.org/0106twe82', 'en', 1, 'https://ror.org/0106twe82 Korean Society of Echocardiography 한국심초음파학회'), (50831, 'https://ror.org/0106w8k14', 'en', 1, 'https://ror.org/0106w8k14 Amelia Peabody Charitable Fund'), (50832, 'https://ror.org/0108v8438', 'no_lang_code', 1, 'https://ror.org/0108v8438 Santen (United States)'), (50833, 'https://ror.org/0109e8m16', 'en', 1, 'https://ror.org/0109e8m16 Rainforest Alliance'), (50834, 'https://ror.org/010a50125', 'en', 1, 'https://ror.org/010a50125 American Research Institute for Policy Development'), (50835, 'https://ror.org/010ar1g07', 'en', 1, 'https://ror.org/010ar1g07 Museum of History Iskra Исторически музей Искра'), (50836, 'https://ror.org/010brsj79', 'en', 1, 'https://ror.org/010brsj79 Quantitative BioSciences'), (50837, 'https://ror.org/010ern194', 'en', 1, 'https://ror.org/010ern194 Beijing Geriatric Hospital 北京老年医院'), (50838, 'https://ror.org/010fjvp93', 'no_lang_code', 1, 'https://ror.org/010fjvp93 Tenneco (United States)'), (50839, 'https://ror.org/010g5w962', 'no_lang_code', 1, 'https://ror.org/010g5w962 Mitsubishi Paper Mills (Japan) 三菱製紙株式会社'), (50840, 'https://ror.org/010htkn64', 'en', 1, 'https://ror.org/010htkn64 Dermatology Institute of Victoria'), (50841, 'https://ror.org/010k3rm26', 'en', 1, 'https://ror.org/010k3rm26 Global Social Observatory'), (50842, 'https://ror.org/010kzff55', 'en', 1, 'https://ror.org/010kzff55 Edward F. Albee Foundation'), (50843, 'https://ror.org/010m3p429', 'en', 1, 'https://ror.org/010m3p429 Colorado Health Foundation'), (50844, 'https://ror.org/010rhqv43', 'en', 1, 'https://ror.org/010rhqv43 Albany House Medical Centre'), (50845, 'https://ror.org/010t6g940', 'no_lang_code', 1, 'https://ror.org/010t6g940 Rosenberger (Germany)'), (50846, 'https://ror.org/010taq202', 'en', 1, 'https://ror.org/010taq202 Cellmark Forensic Services'), (50847, 'https://ror.org/010tbvz48', 'en', 1, 'https://ror.org/010tbvz48 Anandamahidol foundation'), (50848, 'https://ror.org/010thjh79', 'no_lang_code', 1, 'https://ror.org/010thjh79 Bone Therapeutics'), (50849, 'https://ror.org/010vz1m70', 'en', 1, 'https://ror.org/010vz1m70 Jiangning District of Nanjing Chinese Medicine Hospital 江宁区中医院'), (50850, 'https://ror.org/010w8tb22', 'en', 1, 'https://ror.org/010w8tb22 Aims2Cure'), (50851, 'https://ror.org/010xk1v64', 'de', 1, 'https://ror.org/010xk1v64 Klinik Schongau'), (50852, 'https://ror.org/010yke988', 'en', 1, 'https://ror.org/010yke988 Parent Project Onlus'), (50853, 'https://ror.org/010z5cj53', 'en', 1, 'https://ror.org/010z5cj53 ASHP Research and Education Foundation'), (50854, 'https://ror.org/010z5qj64', 'en', 1, 'https://ror.org/010z5qj64 Virginia Spine Research Institute'), (50855, 'https://ror.org/010zvgy46', 'en', 1, 'https://ror.org/010zvgy46 Encore'), (50856, 'https://ror.org/011155x24', 'en', 1, 'https://ror.org/011155x24 Community Foundation of Greater Memphis'), (50857, 'https://ror.org/0111f4y49', 'it', 1, 'https://ror.org/0111f4y49 Fondazione Pierfranco e Luisa Mariani'), (50858, 'https://ror.org/0113y3s69', 'en', 1, 'https://ror.org/0113y3s69 Kitty M. Perkins Foundation'), (50859, 'https://ror.org/0114d3n76', 'no_lang_code', 1, 'https://ror.org/0114d3n76 ImunomedicA (Czechia)'), (50860, 'https://ror.org/0115kmj57', 'en', 1, 'https://ror.org/0115kmj57 Corrective Eye Center'), (50861, 'https://ror.org/0116d7s79', 'no_lang_code', 1, 'https://ror.org/0116d7s79 Cyclacel Pharmaceuticals (United States)'), (50862, 'https://ror.org/0116j4g69', 'da', 1, 'https://ror.org/0116j4g69 Det Grønlandske Selskab'), (50863, 'https://ror.org/0117m7141', 'fr', 1, 'https://ror.org/0117m7141 Association France Ekbom'), (50864, 'https://ror.org/011bbtj34', 'en', 1, 'https://ror.org/011bbtj34 Emergency University'), (50865, 'https://ror.org/011bmks03', 'en', 1, 'https://ror.org/011bmks03 Community for Youth'), (50866, 'https://ror.org/011bmz187', 'en', 1, 'https://ror.org/011bmz187 Prism Clinical Research'), (50867, 'https://ror.org/011e1t803', 'en', 1, 'https://ror.org/011e1t803 Hartley Film Foundation'), (50868, 'https://ror.org/011erhx85', 'en', 1, 'https://ror.org/011erhx85 Glaucoma Associates of New York'), (50869, 'https://ror.org/011fhys37', 'no_lang_code', 1, 'https://ror.org/011fhys37 Claas (Germany)'), (50870, 'https://ror.org/011ftwx20', 'en', 1, 'https://ror.org/011ftwx20 Adessium Foundation'), (50871, 'https://ror.org/011gmw939', 'no_lang_code', 1, 'https://ror.org/011gmw939 Pharma Patent (Hungary)'), (50872, 'https://ror.org/011gwd889', 'en', 1, 'https://ror.org/011gwd889 Tennessee Orthopaedic Alliance'), (50873, 'https://ror.org/011jgpb07', 'fr', 1, 'https://ror.org/011jgpb07 Centre Hospitalier de Bretagne Sud'), (50874, 'https://ror.org/011kr2t58', 'en', 1, 'https://ror.org/011kr2t58 Department of Housing and Community Development'), (50875, 'https://ror.org/011nx7d79', 'en', 1, 'https://ror.org/011nx7d79 Ruth M. Rothstein CORE Center'), (50876, 'https://ror.org/011nxrw51', 'no_lang_code', 1, 'https://ror.org/011nxrw51 Marquardt (Germany)'), (50877, 'https://ror.org/011pcrd91', 'no_lang_code', 1, 'https://ror.org/011pcrd91 PARI (Germany)'), (50878, 'https://ror.org/011pq1q02', 'no_lang_code', 1, 'https://ror.org/011pq1q02 Greenwald & Associates (United States)'), (50879, 'https://ror.org/011ptxp32', 'en', 1, 'https://ror.org/011ptxp32 Donald W. Reynolds Foundation'), (50880, 'https://ror.org/011r26y04', 'en', 1, 'https://ror.org/011r26y04 Polish Dance Theatre Polski Teatr Tańca'), (50881, 'https://ror.org/011s5bv71', 'en', 1, 'https://ror.org/011s5bv71 Aerosan'), (50882, 'https://ror.org/011t5nk62', 'en', 1, 'https://ror.org/011t5nk62 American Pharmacists Association Foundation'), (50883, 'https://ror.org/011v1tv66', 'no_lang_code', 1, 'https://ror.org/011v1tv66 Serumwerk Bernburg (Germany)'), (50884, 'https://ror.org/011w2bv40', 'en', 1, 'https://ror.org/011w2bv40 Museum of Flight'), (50885, 'https://ror.org/011w7ja64', 'en', 1, 'https://ror.org/011w7ja64 Piedmont Cancer Institute'), (50886, 'https://ror.org/011xj1a65', 'en', 1, 'https://ror.org/011xj1a65 Achelis and Bodman Foundation'), (50887, 'https://ror.org/011z3ff80', 'en', 1, 'https://ror.org/011z3ff80 Ministero dello Sviluppo Economico Ministry of Economic Development'), (50888, 'https://ror.org/01239b432', 'es', 1, 'https://ror.org/01239b432 Consorci Sanitari de Terrassa'), (50889, 'https://ror.org/01243va86', 'en', 1, 'https://ror.org/01243va86 Moritani Scholarship Foundation 般財団法人 守谷育英会'), (50890, 'https://ror.org/0124s1j61', 'de', 1, 'https://ror.org/0124s1j61 Evangelisches Krankenhaus Kalk'), (50891, 'https://ror.org/0125syc65', 'en', 1, 'https://ror.org/0125syc65 International Union of Basic and Clinical Pharmacology'), (50892, 'https://ror.org/0126fd303', 'en', 1, 'https://ror.org/0126fd303 Midwest Therapeutic Endoscopy'), (50893, 'https://ror.org/0129d8h54', 'en', 1, 'https://ror.org/0129d8h54 Ear Consultants of Georgia'), (50894, 'https://ror.org/012a8y118', 'no_lang_code', 1, 'https://ror.org/012a8y118 Cloud Tiger Media (United States)'), (50895, 'https://ror.org/012cc0c94', 'no_lang_code', 1, 'https://ror.org/012cc0c94 Core Competence'), (50896, 'https://ror.org/012cyrk91', 'en', 1, 'https://ror.org/012cyrk91 Michigan CardioVascular Institute'), (50897, 'https://ror.org/012ddpd05', 'no_lang_code', 1, 'https://ror.org/012ddpd05 Givaudan (Switzerland)'), (50898, 'https://ror.org/012ebbs45', 'en', 1, 'https://ror.org/012ebbs45 Marion E. Kenworthy-Sarah H. Swift Foundation'), (50899, 'https://ror.org/012fxzb58', 'en', 1, 'https://ror.org/012fxzb58 Regional History Museum Gabrovo Регионален исторически музей, Габрово'), (50900, 'https://ror.org/012h3vy49', 'no_lang_code', 1, 'https://ror.org/012h3vy49 Viking Therapeutics (United States)'), (50901, 'https://ror.org/012jedj89', 'no_lang_code', 1, 'https://ror.org/012jedj89 African Water Association'), (50902, 'https://ror.org/012jvtn24', 'no_lang_code', 1, 'https://ror.org/012jvtn24 E Ink (United States)'), (50903, 'https://ror.org/012jwf593', 'en', 1, 'https://ror.org/012jwf593 Catalyst Foundation'), (50904, 'https://ror.org/012kq8z96', 'en', 1, 'https://ror.org/012kq8z96 Windsor Clinical Research'), (50905, 'https://ror.org/012nyn049', 'en', 1, 'https://ror.org/012nyn049 Duluth Superior Area Community Foundation'), (50906, 'https://ror.org/012rw7q64', 'no_lang_code', 1, 'https://ror.org/012rw7q64 Bioinova (Czechia)'), (50907, 'https://ror.org/012sh1702', 'en', 1, 'https://ror.org/012sh1702 Danish Ministry of Climate, Energy and Utilities Energi-, Forsynings- og Klimaministeriet'), (50908, 'https://ror.org/012v13k49', 'en', 1, 'https://ror.org/012v13k49 International Cancer Imaging Society'), (50909, 'https://ror.org/012y0vf21', 'en', 1, 'https://ror.org/012y0vf21 Fidelity Foundation'), (50910, 'https://ror.org/012z5s763', 'ca', 1, 'https://ror.org/012z5s763 Pius Hospital de Valls'), (50911, 'https://ror.org/0130ebz28', 'no_lang_code', 1, 'https://ror.org/0130ebz28 Repha (Germany)'), (50912, 'https://ror.org/0130y5530', 'en', 1, 'https://ror.org/0130y5530 Nonprofit Quarterly'), (50913, 'https://ror.org/01320a653', 'en', 1, 'https://ror.org/01320a653 Lucy Daniels Foundation'), (50914, 'https://ror.org/0134cxd58', 'no_lang_code', 1, 'https://ror.org/0134cxd58 Temptime (United States)'), (50915, 'https://ror.org/013ambk20', 'no_lang_code', 1, 'https://ror.org/013ambk20 Apogepha Arzneimittel (Germany)'), (50916, 'https://ror.org/013b0rk29', 'no_lang_code', 1, 'https://ror.org/013b0rk29 American Standard (United States)'), (50917, 'https://ror.org/013bnca37', 'da', 1, 'https://ror.org/013bnca37 Kirsten og Freddy Johansens Fond'), (50918, 'https://ror.org/013d6jy96', 'en', 1, 'https://ror.org/013d6jy96 Buhl Foundation'), (50919, 'https://ror.org/013dfdf36', 'de', 1, 'https://ror.org/013dfdf36 Carl Friedrich von Siemens Stiftung'), (50920, 'https://ror.org/013eqx116', 'en', 1, 'https://ror.org/013eqx116 School for Ethical Education'), (50921, 'https://ror.org/013h8cr97', 'en', 1, 'https://ror.org/013h8cr97 Haemophilia Foundation Australia'), (50922, 'https://ror.org/013k6aa84', 'en', 1, 'https://ror.org/013k6aa84 Innovative Research of West Florida'), (50923, 'https://ror.org/013nhfk37', 'en', 1, 'https://ror.org/013nhfk37 Measured Progress'), (50924, 'https://ror.org/013p55530', 'en', 1, 'https://ror.org/013p55530 J. F Maddox Foundation'), (50925, 'https://ror.org/013rqb250', 'en', 1, 'https://ror.org/013rqb250 St. David’s HealthCare'), (50926, 'https://ror.org/013sb0f58', 'en', 1, 'https://ror.org/013sb0f58 Claghorn Lesem Research Clinic'), (50927, 'https://ror.org/013t78522', 'en', 1, 'https://ror.org/013t78522 Memory Enhancement Center of America'), (50928, 'https://ror.org/013v7fk41', 'en', 1, 'https://ror.org/013v7fk41 University Hospital and Clinics'), (50929, 'https://ror.org/013wcmm63', 'en', 1, 'https://ror.org/013wcmm63 Zygon Center for Religion and Science'), (50930, 'https://ror.org/013x77c65', 'no_lang_code', 1, 'https://ror.org/013x77c65 Txcell (France)'), (50931, 'https://ror.org/013y0vx58', 'no_lang_code', 1, 'https://ror.org/013y0vx58 Widex (Denmark)'), (50932, 'https://ror.org/013yrxa12', 'no_lang_code', 1, 'https://ror.org/013yrxa12 Arsenal Medical (United States)'), (50933, 'https://ror.org/013z34d39', 'en', 1, 'https://ror.org/013z34d39 Employment Development Department'), (50934, 'https://ror.org/013zhzc32', 'no_lang_code', 1, 'https://ror.org/013zhzc32 Northwestern Mutual Life Insurance (United States)'), (50935, 'https://ror.org/0140zhz75', 'en', 1, 'https://ror.org/0140zhz75 Durrie Vision'), (50936, 'https://ror.org/01424zf60', 'en', 1, 'https://ror.org/01424zf60 Hope Through Healing Hands'), (50937, 'https://ror.org/01427p774', 'en', 1, 'https://ror.org/01427p774 Plan International'), (50938, 'https://ror.org/0142j8045', 'en', 1, 'https://ror.org/0142j8045 National Association of Community Health Centers'), (50939, 'https://ror.org/01431mg04', 'en', 1, 'https://ror.org/01431mg04 Act One'), (50940, 'https://ror.org/014335v20', 'en', 1, 'https://ror.org/014335v20 174th hospital of the People''s Liberation Army 解放军第174医院'), (50941, 'https://ror.org/014353m06', 'no_lang_code', 1, 'https://ror.org/014353m06 Idee e Prodotti (Italy)'), (50942, 'https://ror.org/01485c733', 'en', 1, 'https://ror.org/01485c733 AchieveMpls'), (50943, 'https://ror.org/014903n70', 'no_lang_code', 1, 'https://ror.org/014903n70 Getinge (Germany)'), (50944, 'https://ror.org/0149k7n03', 'en', 1, 'https://ror.org/0149k7n03 Abell-Hanger Foundation'), (50945, 'https://ror.org/0149pmh27', 'en', 1, 'https://ror.org/0149pmh27 Yue Bei People''s Hospital 粤北人民医院'), (50946, 'https://ror.org/0149t5h43', 'es', 1, 'https://ror.org/0149t5h43 Hospital General Dr Aurelio Valdivieso'), (50947, 'https://ror.org/0149ywf06', 'no_lang_code', 1, 'https://ror.org/0149ywf06 Citospin (Spain)'), (50948, 'https://ror.org/014bxpd82', 'en', 1, 'https://ror.org/014bxpd82 Jal Seva Charitable Foundation'), (50949, 'https://ror.org/014dvgf17', 'en', 1, 'https://ror.org/014dvgf17 BASilar artery International Cooperation Study'), (50950, 'https://ror.org/014efpg78', 'en', 1, 'https://ror.org/014efpg78 Christopher Columbus Fellowship Foundation'), (50951, 'https://ror.org/014hdch66', 'no_lang_code', 1, 'https://ror.org/014hdch66 Dextech Medical (Sweden)'), (50952, 'https://ror.org/014jxbx13', 'es', 1, 'https://ror.org/014jxbx13 Probigua'), (50953, 'https://ror.org/014kn1567', 'en', 1, 'https://ror.org/014kn1567 Cameron Brooks Foundation'), (50954, 'https://ror.org/014kvbx03', 'en', 1, 'https://ror.org/014kvbx03 Allegheny Intermediate Unit'), (50955, 'https://ror.org/014kx9f10', 'en', 1, 'https://ror.org/014kx9f10 Plexus Institute'), (50956, 'https://ror.org/014m8ss57', 'no_lang_code', 1, 'https://ror.org/014m8ss57 Skis Rossignol (France)'), (50957, 'https://ror.org/014rfma52', 'no_lang_code', 1, 'https://ror.org/014rfma52 Biogen (Germany)'), (50958, 'https://ror.org/014s07b95', 'no_lang_code', 1, 'https://ror.org/014s07b95 Shenyang Anorectal Hospital 沉阳肛门医院'), (50959, 'https://ror.org/014ssmn05', 'en', 1, 'https://ror.org/014ssmn05 California Dairy Research Foundation'), (50960, 'https://ror.org/014tc2d37', 'no_lang_code', 1, 'https://ror.org/014tc2d37 Erydel (Italy)'), (50961, 'https://ror.org/014twjs44', 'en', 1, 'https://ror.org/014twjs44 Foundation for Community Association Research'), (50962, 'https://ror.org/014vaxq24', 'it', 1, 'https://ror.org/014vaxq24 Fondazione Michelangelo'), (50963, 'https://ror.org/014vy5515', 'en', 1, 'https://ror.org/014vy5515 Treehouse'), (50964, 'https://ror.org/014wq8057', 'en', 1, 'https://ror.org/014wq8057 European Society for Blood and Marrow Transplantation'), (50965, 'https://ror.org/014xkfq18', 'en', 1, 'https://ror.org/014xkfq18 Collaborative Spine Research Foundation'), (50966, 'https://ror.org/014y8kr12', 'en', 1, 'https://ror.org/014y8kr12 Massachusetts Institute for a New Commonwealth'), (50967, 'https://ror.org/0150nnh74', 'en', 1, 'https://ror.org/0150nnh74 Great Valley Center'), (50968, 'https://ror.org/01523aj77', 'no_lang_code', 1, 'https://ror.org/01523aj77 Sig Holding (Switzerland) Societa Industriale Svizzera Société Industrielle Suisse'), (50969, 'https://ror.org/01527h266', 'en', 1, 'https://ror.org/01527h266 Enhancing Financial Innovation & Access'), (50970, 'https://ror.org/0152qkr29', 'en', 1, 'https://ror.org/0152qkr29 Arkansas State University System'), (50971, 'https://ror.org/01545ep47', 'no_lang_code', 1, 'https://ror.org/01545ep47 Covestro (United States)'), (50972, 'https://ror.org/0155cq303', 'en', 1, 'https://ror.org/0155cq303 West Virginia Library Commission'), (50973, 'https://ror.org/0155jx986', 'en', 1, 'https://ror.org/0155jx986 Connect Denmark'), (50974, 'https://ror.org/0155km815', 'en', 1, 'https://ror.org/0155km815 South Florida Medical Research'), (50975, 'https://ror.org/0156j5s68', 'en', 1, 'https://ror.org/0156j5s68 Cancer Hospital Lopburi โรงพยาบาลมะเร็งลพบุรี'), (50976, 'https://ror.org/015b5md70', 'no_lang_code', 1, 'https://ror.org/015b5md70 Therabel (Belgium)'), (50977, 'https://ror.org/015bgb355', 'no_lang_code', 1, 'https://ror.org/015bgb355 Lynn Chase Designs (United States)'), (50978, 'https://ror.org/015brpm77', 'en', 1, 'https://ror.org/015brpm77 MNJ Institute Of Oncology and Regional Cancer Centre'), (50979, 'https://ror.org/015gtxf45', 'no_lang_code', 1, 'https://ror.org/015gtxf45 Leifheit (Germany)'), (50980, 'https://ror.org/015hpqr35', 'en', 1, 'https://ror.org/015hpqr35 Gabrail Cancer Center'), (50981, 'https://ror.org/015m9wz56', 'en', 1, 'https://ror.org/015m9wz56 Youth Today'), (50982, 'https://ror.org/015np5014', 'en', 1, 'https://ror.org/015np5014 College Spark Washington'), (50983, 'https://ror.org/015q7hw55', 'en', 1, 'https://ror.org/015q7hw55 Saint-Petersburg Medico-Social Institute Санкт-Петербургский государственный институт Медико'), (50984, 'https://ror.org/015vfna03', 'no_lang_code', 1, 'https://ror.org/015vfna03 Achillion Pharmaceuticals (United States)'), (50985, 'https://ror.org/015vn2982', 'en', 1, 'https://ror.org/015vn2982 Infectious Disease Consultants'), (50986, 'https://ror.org/015w09177', 'en', 1, 'https://ror.org/015w09177 National Coalition for Cancer Survivorship'), (50987, 'https://ror.org/015x46y72', 'no_lang_code', 1, 'https://ror.org/015x46y72 CMC Contrast (Sweden)'), (50988, 'https://ror.org/015xc6321', 'es', 1, 'https://ror.org/015xc6321 Grupo Español de Trasplante Hematopoyético y Terapia Celular'), (50989, 'https://ror.org/015ygpt53', 'en', 1, 'https://ror.org/015ygpt53 H.W. Durham Foundation'), (50990, 'https://ror.org/015z1nq23', 'en', 1, 'https://ror.org/015z1nq23 Elisabeth Severance Prentiss Foundation'), (50991, 'https://ror.org/0161df093', 'en', 1, 'https://ror.org/0161df093 PharmaTrain Federation'), (50992, 'https://ror.org/0161x1106', 'en', 1, 'https://ror.org/0161x1106 National Sculpture Society'), (50993, 'https://ror.org/0162q7t90', 'no_lang_code', 1, 'https://ror.org/0162q7t90 Gliknik (United States)'), (50994, 'https://ror.org/0163v7e17', 'en', 1, 'https://ror.org/0163v7e17 Max Bell Foundation'), (50995, 'https://ror.org/0164x1171', 'en', 1, 'https://ror.org/0164x1171 Living Stones Foundation Charitable Trust'), (50996, 'https://ror.org/0165xkg98', 'en', 1, 'https://ror.org/0165xkg98 Lynde Centre for Dermatology'), (50997, 'https://ror.org/0166ek496', 'en', 1, 'https://ror.org/0166ek496 American Head & Neck Society'), (50998, 'https://ror.org/0166vvj90', 'en', 1, 'https://ror.org/0166vvj90 El Paso Community Foundation'), (50999, 'https://ror.org/0168sna55', 'en', 1, 'https://ror.org/0168sna55 Clinical Insights'), (51000, 'https://ror.org/016babj91', 'en', 1, 'https://ror.org/016babj91 Blakemore Foundation'), (51001, 'https://ror.org/016d0n234', 'en', 1, 'https://ror.org/016d0n234 Institut für Sozialanthropologie Institute for Social Anthropology'), (51002, 'https://ror.org/016dcgm68', 'en', 1, 'https://ror.org/016dcgm68 Foundation and Footings Society'), (51003, 'https://ror.org/016jadm77', 'no_lang_code', 1, 'https://ror.org/016jadm77 PayPal (United States)'), (51004, 'https://ror.org/016jygy11', 'en', 1, 'https://ror.org/016jygy11 Ningbo Municipal Education Bureau 宁波市教育局'), (51005, 'https://ror.org/016mvkv35', 'no_lang_code', 1, 'https://ror.org/016mvkv35 Kiekert (Germany)'), (51006, 'https://ror.org/016n28m75', 'pl', 1, 'https://ror.org/016n28m75 NZOZ Dom Sue Ryder'), (51007, 'https://ror.org/016p98704', 'no_lang_code', 1, 'https://ror.org/016p98704 Seventh Sense Biosystems (United States)'), (51008, 'https://ror.org/016pabg12', 'en', 1, 'https://ror.org/016pabg12 Council of Accountable Physician Practices'), (51009, 'https://ror.org/016pjbx35', 'en', 1, 'https://ror.org/016pjbx35 Asian Association for Dynamic Osteosynthesis'), (51010, 'https://ror.org/016t73h24', 'en', 1, 'https://ror.org/016t73h24 Equipment Leasing & Finance Foundation'), (51011, 'https://ror.org/016vanb16', 'en', 1, 'https://ror.org/016vanb16 Suburban Research Associates'), (51012, 'https://ror.org/016vmf460', 'en', 1, 'https://ror.org/016vmf460 AXIS Clinical Trials'), (51013, 'https://ror.org/016vrvb82', 'no_lang_code', 1, 'https://ror.org/016vrvb82 Zagaya'), (51014, 'https://ror.org/016wktf60', 'en', 1, 'https://ror.org/016wktf60 Community Foundation of Greater New Britain'), (51015, 'https://ror.org/016zb6379', 'en', 1, 'https://ror.org/016zb6379 ReadWorks'), (51016, 'https://ror.org/0171xqb77', 'en', 1, 'https://ror.org/0171xqb77 Mercy Hospital'), (51017, 'https://ror.org/01748j177', 'en', 1, 'https://ror.org/01748j177 Collaborative Africa Budget Reform Initiative'), (51018, 'https://ror.org/01757ay04', 'en', 1, 'https://ror.org/01757ay04 Community Foundation for Greater Atlanta'), (51019, 'https://ror.org/017704360', 'en', 1, 'https://ror.org/017704360 Ridgeview Medical Center'), (51020, 'https://ror.org/017778n40', 'en', 1, 'https://ror.org/017778n40 Herbert W. Hoover Foundation'), (51021, 'https://ror.org/0179s0197', 'en', 1, 'https://ror.org/0179s0197 Cancer Center of Kansas'), (51022, 'https://ror.org/017ax4r20', 'no_lang_code', 1, 'https://ror.org/017ax4r20 Nabriva Therapeutics (Austria)'), (51023, 'https://ror.org/017e31734', 'en', 1, 'https://ror.org/017e31734 Horizon Blue Cross Blue Shield of New Jersey'), (51024, 'https://ror.org/017f12b13', 'no_lang_code', 1, 'https://ror.org/017f12b13 Otsuka (France)'), (51025, 'https://ror.org/017fd6822', 'en', 1, 'https://ror.org/017fd6822 Gastroenterology Associates Of Western Michigan'), (51026, 'https://ror.org/017fwpp88', 'en', 1, 'https://ror.org/017fwpp88 Ecclesfield GP'), (51027, 'https://ror.org/017hh7b56', 'no_lang_code', 1, 'https://ror.org/017hh7b56 Kyowa Kirin International (United Kingdom)'), (51028, 'https://ror.org/017j43x24', 'no_lang_code', 1, 'https://ror.org/017j43x24 Anges MG (United Kingdom)'), (51029, 'https://ror.org/017n0wf28', 'no_lang_code', 1, 'https://ror.org/017n0wf28 Triumph Learning (United States)'), (51030, 'https://ror.org/017n5p421', 'en', 1, 'https://ror.org/017n5p421 Myotonic Dystrophy Foundation'), (51031, 'https://ror.org/017qdky13', 'en', 1, 'https://ror.org/017qdky13 Cynthia and George Mitchell Foundation'), (51032, 'https://ror.org/017qqw141', 'no_lang_code', 1, 'https://ror.org/017qqw141 Singer (United States)'), (51033, 'https://ror.org/017r9vm74', 'no_lang_code', 1, 'https://ror.org/017r9vm74 Masco (Germany)'), (51034, 'https://ror.org/017rhck27', 'en', 1, 'https://ror.org/017rhck27 Physicians for Human Rights'), (51035, 'https://ror.org/017rmsx09', 'it', 1, 'https://ror.org/017rmsx09 Fondazione Sandro Pitigliani'), (51036, 'https://ror.org/017s69y81', 'no_lang_code', 1, 'https://ror.org/017s69y81 Fermentia (Hungary)'), (51037, 'https://ror.org/017trqn73', 'en', 1, 'https://ror.org/017trqn73 AAA Foundation for Traffic Safety'), (51038, 'https://ror.org/017vhek94', 'de', 1, 'https://ror.org/017vhek94 Gebauer Stiftung'), (51039, 'https://ror.org/017vjfp21', 'en', 1, 'https://ror.org/017vjfp21 Clinical Trials of Texas'), (51040, 'https://ror.org/017wcz935', 'en', 1, 'https://ror.org/017wcz935 Elizabeth Taylor AIDS Foundation'), (51041, 'https://ror.org/017xs2h64', 'en', 1, 'https://ror.org/017xs2h64 John T. Reid Charitable Trusts'), (51042, 'https://ror.org/0180raj05', 'no_lang_code', 1, 'https://ror.org/0180raj05 Scandinavian Sarcoma Group (Sweden)'), (51043, 'https://ror.org/0181ptd26', 'en', 1, 'https://ror.org/0181ptd26 National Headache Foundation'), (51044, 'https://ror.org/0181qem25', 'en', 1, 'https://ror.org/0181qem25 Capital Nephrology Associates'), (51045, 'https://ror.org/018225234', 'en', 1, 'https://ror.org/018225234 Edna McConnell Clark Foundation'), (51046, 'https://ror.org/0183pqm13', 'en', 1, 'https://ror.org/0183pqm13 Orthopaedic Research Society'), (51047, 'https://ror.org/0184nmh41', 'en', 1, 'https://ror.org/0184nmh41 International Health Economics Association'), (51048, 'https://ror.org/0185yec04', 'no_lang_code', 1, 'https://ror.org/0185yec04 Benchmark Research (United States)'), (51049, 'https://ror.org/018611e81', 'en', 1, 'https://ror.org/018611e81 Kansas Masonic Foundation'), (51050, 'https://ror.org/0186zbx36', 'en', 1, 'https://ror.org/0186zbx36 Innovating Worthy Projects Foundation'), (51051, 'https://ror.org/01878vm76', 'en', 1, 'https://ror.org/01878vm76 GreatNonprofits'), (51052, 'https://ror.org/0187qyr62', 'en', 1, 'https://ror.org/0187qyr62 Michelson Prize and Grants'), (51053, 'https://ror.org/0188nfw25', 'en', 1, 'https://ror.org/0188nfw25 Friends of Children of Walla Walla'), (51054, 'https://ror.org/01899q369', 'no_lang_code', 1, 'https://ror.org/01899q369 Kinik (Taiwan)'), (51055, 'https://ror.org/018atqy04', 'cs', 1, 'https://ror.org/018atqy04 Občanské sdružení Ametyst'), (51056, 'https://ror.org/018fqb741', 'no_lang_code', 1, 'https://ror.org/018fqb741 Mundipharma (Sweden)'), (51057, 'https://ror.org/018g1zw27', 'sv', 1, 'https://ror.org/018g1zw27 Marie-Claire Cronstedts Stiftelse'), (51058, 'https://ror.org/018mdm506', 'no_lang_code', 1, 'https://ror.org/018mdm506 Ford Motor Company (France)'), (51059, 'https://ror.org/018pfae44', 'no_lang_code', 1, 'https://ror.org/018pfae44 Axcelis Technologies (United States)'), (51060, 'https://ror.org/018r79a04', 'en', 1, 'https://ror.org/018r79a04 Burke Foundation'), (51061, 'https://ror.org/018sdr586', 'en', 1, 'https://ror.org/018sdr586 Kalam Research and Media'), (51062, 'https://ror.org/018tky159', 'no_lang_code', 1, 'https://ror.org/018tky159 Green Beat (Austria) Green Beat - Institut für Nährstoff-Forschung und Sporternährung'), (51063, 'https://ror.org/018ze1919', 'it', 1, 'https://ror.org/018ze1919 Associazione Sammarinese per la Lotta contro le Leucemie e Emopatie Maligne'), (51064, 'https://ror.org/018znve60', 'en', 1, 'https://ror.org/018znve60 Central New York Community Foundation'), (51065, 'https://ror.org/0192aem33', 'da', 1, 'https://ror.org/0192aem33 Dansk Historisk Fællesforening'), (51066, 'https://ror.org/01930sy39', 'en', 1, 'https://ror.org/01930sy39 J. Marion Sims Foundation'), (51067, 'https://ror.org/0193yj888', 'en', 1, 'https://ror.org/0193yj888 Timberland Regional Library'), (51068, 'https://ror.org/01954vf31', 'en', 1, 'https://ror.org/01954vf31 Wake Research'), (51069, 'https://ror.org/0197yr043', 'en', 1, 'https://ror.org/0197yr043 Netherland-America Foundation'), (51070, 'https://ror.org/01981pe95', 'en', 1, 'https://ror.org/01981pe95 International Rescue Committee'), (51071, 'https://ror.org/019950a73', 'en', 1, 'https://ror.org/019950a73 Copenhagen Zoo København Zoo'), (51072, 'https://ror.org/0199q6v22', 'en', 1, 'https://ror.org/0199q6v22 Barry Community Foundation'), (51073, 'https://ror.org/019a8hm16', 'de', 1, 'https://ror.org/019a8hm16 Hanns R. Neumann Stiftung'), (51074, 'https://ror.org/019bgst25', 'en', 1, 'https://ror.org/019bgst25 Columbus Foundation'), (51075, 'https://ror.org/019cqhg34', 'en', 1, 'https://ror.org/019cqhg34 Palmetto Hematology Oncology'), (51076, 'https://ror.org/019fz9b71', 'no_lang_code', 1, 'https://ror.org/019fz9b71 Neurophyxia (Netherlands)'), (51077, 'https://ror.org/019g16n05', 'no_lang_code', 1, 'https://ror.org/019g16n05 PsiOxus Therapeutics (United Kingdom)'), (51078, 'https://ror.org/019hjez96', 'es', 1, 'https://ror.org/019hjez96 Fundación Reina Isabel'), (51079, 'https://ror.org/019kycv16', 'en', 1, 'https://ror.org/019kycv16 Foundation for Teaching Economics'), (51080, 'https://ror.org/019m52y27', 'en', 1, 'https://ror.org/019m52y27 São Camilo Hospital'), (51081, 'https://ror.org/019mbhm70', 'en', 1, 'https://ror.org/019mbhm70 Miyakawa Memorial Research Foundation 宮川庚子記念研究財団'), (51082, 'https://ror.org/019qdfq91', 'no_lang_code', 1, 'https://ror.org/019qdfq91 Borealis (Finland)'), (51083, 'https://ror.org/019qn3016', 'en', 1, 'https://ror.org/019qn3016 Carolina Eyecare Physicians'), (51084, 'https://ror.org/019qtj676', 'en', 1, 'https://ror.org/019qtj676 Cardiac And Vascular Research Center Of Northern Michigan'), (51085, 'https://ror.org/019s3m535', 'no_lang_code', 1, 'https://ror.org/019s3m535 EagleDream Health'), (51086, 'https://ror.org/019se1k35', 'en', 1, 'https://ror.org/019se1k35 Iowa Orthopaedic Center'), (51087, 'https://ror.org/019w9ty29', 'en', 1, 'https://ror.org/019w9ty29 American Association of Endocrine Surgeons'), (51088, 'https://ror.org/019zp9n35', 'no_lang_code', 1, 'https://ror.org/019zp9n35 Polaris Group (United States)'), (51089, 'https://ror.org/01a0byg64', 'en', 1, 'https://ror.org/01a0byg64 Obici Healthcare Foundation'), (51090, 'https://ror.org/01a100t94', 'en', 1, 'https://ror.org/01a100t94 Mike Utley Foundation'), (51091, 'https://ror.org/01a2yyy59', 'en', 1, 'https://ror.org/01a2yyy59 North Central Cancer Treatment Group'), (51092, 'https://ror.org/01a84bt29', 'en', 1, 'https://ror.org/01a84bt29 Centre International De Reference Chantal Biya'), (51093, 'https://ror.org/01a904q54', 'no_lang_code', 1, 'https://ror.org/01a904q54 United Therapeutics (United Kingdom)'), (51094, 'https://ror.org/01a91k946', 'nl', 1, 'https://ror.org/01a91k946 St.Jans Gasthuis Weert'), (51095, 'https://ror.org/01aaa2z14', 'en', 1, 'https://ror.org/01aaa2z14 Neuroscience Nursing Foundation'), (51096, 'https://ror.org/01aagdf71', 'en', 1, 'https://ror.org/01aagdf71 GI Care for Kids'), (51097, 'https://ror.org/01aazm409', 'en', 1, 'https://ror.org/01aazm409 NCMIC Foundation'), (51098, 'https://ror.org/01ab2jm55', 'en', 1, 'https://ror.org/01ab2jm55 East-West Management Institute'), (51099, 'https://ror.org/01abmka80', 'en', 1, 'https://ror.org/01abmka80 Zhongshan City Second People''s Hospital 中山市第二人民医院'), (51100, 'https://ror.org/01abnzn91', 'en', 1, 'https://ror.org/01abnzn91 Association of Educational Publishers'), (51101, 'https://ror.org/01abr9t53', 'en', 1, 'https://ror.org/01abr9t53 New Mexico Business Roundtable'), (51102, 'https://ror.org/01acje871', 'en', 1, 'https://ror.org/01acje871 Cooper Foundation'), (51103, 'https://ror.org/01adg4754', 'no_lang_code', 1, 'https://ror.org/01adg4754 ConvergeOne (United States)'), (51104, 'https://ror.org/01ah9ym33', 'de', 1, 'https://ror.org/01ah9ym33 Krankenhaus St. Elisabeth und St. Barbara'), (51105, 'https://ror.org/01ahesd15', 'en', 1, 'https://ror.org/01ahesd15 Center for Prevention and Treatment of Infections'), (51106, 'https://ror.org/01ajd9545', 'en', 1, 'https://ror.org/01ajd9545 Common Ground Research Networks'), (51107, 'https://ror.org/01ajpw658', 'en', 1, 'https://ror.org/01ajpw658 Mucolipidosis IV Foundation'), (51108, 'https://ror.org/01ajr8702', 'no_lang_code', 1, 'https://ror.org/01ajr8702 Total (United States)'), (51109, 'https://ror.org/01am05n73', 'en', 1, 'https://ror.org/01am05n73 Associated Oregon Loggers'), (51110, 'https://ror.org/01ar3e651', 'en', 1, 'https://ror.org/01ar3e651 Reproductive & Genetic Hospital CITIC-Xiangya 中信湘雅生殖与遗传专科医院有限公司'), (51111, 'https://ror.org/01arayx28', 'de', 1, 'https://ror.org/01arayx28 Alzheimer Forschung Initiative'), (51112, 'https://ror.org/01at8r832', 'en', 1, 'https://ror.org/01at8r832 Whitsett Vision Group'), (51113, 'https://ror.org/01avc0g69', 'en', 1, 'https://ror.org/01avc0g69 Association for the Study of Medical Education'), (51114, 'https://ror.org/01aw01n16', 'en', 1, 'https://ror.org/01aw01n16 Association for Regional Development and Mental Health'), (51115, 'https://ror.org/01axv9229', 'no_lang_code', 1, 'https://ror.org/01axv9229 ImmunoCellular Therapeutics (United States)'), (51116, 'https://ror.org/01aye5y64', 'en', 1, 'https://ror.org/01aye5y64 Gateshead Health NHS Foundation Trust'), (51117, 'https://ror.org/01azwtt17', 'no_lang_code', 1, 'https://ror.org/01azwtt17 Revant (Netherlands)'), (51118, 'https://ror.org/01b242q75', 'en', 1, 'https://ror.org/01b242q75 Jacob and Valeria Langeloth Foundation'); INSERT INTO `rors` VALUES (51119, 'https://ror.org/01b2pxy75', 'de', 1, 'https://ror.org/01b2pxy75 Institut für Psychogerontologie'), (51120, 'https://ror.org/01b51qe92', 'no_lang_code', 1, 'https://ror.org/01b51qe92 Trevi Therapeutics (United States)'), (51121, 'https://ror.org/01b5j6r07', 'en', 1, 'https://ror.org/01b5j6r07 Nash County Health Department'), (51122, 'https://ror.org/01b658f62', 'en', 1, 'https://ror.org/01b658f62 ENT and Allergy'), (51123, 'https://ror.org/01b7m6y64', 'en', 1, 'https://ror.org/01b7m6y64 Citizens Budget Commission'), (51124, 'https://ror.org/01bb2y691', 'nl', 1, 'https://ror.org/01bb2y691 Dutch Network for Cardiovascular Research Werkgroep Cardiologische centra Nederland'), (51125, 'https://ror.org/01bby7n46', 'en', 1, 'https://ror.org/01bby7n46 I. A. O''Shaughnessy Foundation'), (51126, 'https://ror.org/01bc16f62', 'en', 1, 'https://ror.org/01bc16f62 Mebane Charitable Foundation'), (51127, 'https://ror.org/01bcmwk98', 'en', 1, 'https://ror.org/01bcmwk98 Brain Canada Foundation'), (51128, 'https://ror.org/01bd1z477', 'en', 1, 'https://ror.org/01bd1z477 Leeds, Grenville & Lanark District Health Unit'), (51129, 'https://ror.org/01bdnnp71', 'fr', 1, 'https://ror.org/01bdnnp71 Groupe d''Étude Thérapeutique des Affections Inflammatoires du Tube Digestif'), (51130, 'https://ror.org/01bhf4h93', 'no_lang_code', 1, 'https://ror.org/01bhf4h93 EdSurge (United States)'), (51131, 'https://ror.org/01bky8445', 'en', 1, 'https://ror.org/01bky8445 Community Foundation of Snohomish County'), (51132, 'https://ror.org/01bpe5t14', 'en', 1, 'https://ror.org/01bpe5t14 iMentor'), (51133, 'https://ror.org/01bq78n56', 'en', 1, 'https://ror.org/01bq78n56 Horsley Medical Practice'), (51134, 'https://ror.org/01bsbwm24', 'en', 1, 'https://ror.org/01bsbwm24 Palmetto Retina Center'), (51135, 'https://ror.org/01bwxpz44', 'no_lang_code', 1, 'https://ror.org/01bwxpz44 Milacron (Canada)'), (51136, 'https://ror.org/01bxyrf83', 'en', 1, 'https://ror.org/01bxyrf83 Highlander Institute'), (51137, 'https://ror.org/01bygr704', 'no_lang_code', 1, 'https://ror.org/01bygr704 Grunberger Diabetes Institute'), (51138, 'https://ror.org/01bzak852', 'en', 1, 'https://ror.org/01bzak852 UnityPoint Health Meriter'), (51139, 'https://ror.org/01c15bz20', 'en', 1, 'https://ror.org/01c15bz20 Cancer Care Northwest'), (51140, 'https://ror.org/01c25r859', 'no_lang_code', 1, 'https://ror.org/01c25r859 Allergan (United Kingdom)'), (51141, 'https://ror.org/01c2mxq14', 'en', 1, 'https://ror.org/01c2mxq14 Estonian Union for Child Welfare'), (51142, 'https://ror.org/01c35h421', 'en', 1, 'https://ror.org/01c35h421 Hellenic Oceanographers Association Σύλλογος Ελλήνων Ωκεανογράφων'), (51143, 'https://ror.org/01c5c8162', 'en', 1, 'https://ror.org/01c5c8162 Institute for the Study of Knowledge Management in Education'), (51144, 'https://ror.org/01c5nz376', 'en', 1, 'https://ror.org/01c5nz376 Association Canadienne de la Maladie Coeliaque Canadian Celiac Association'), (51145, 'https://ror.org/01c5q0c82', 'en', 1, 'https://ror.org/01c5q0c82 Yunnan Maternal and Child Health 云南省妇幼保健院'), (51146, 'https://ror.org/01c6n0g60', 'no_lang_code', 1, 'https://ror.org/01c6n0g60 Bionomics (Australia)'), (51147, 'https://ror.org/01c95r073', 'en', 1, 'https://ror.org/01c95r073 Pennsylvania Health Law Project'), (51148, 'https://ror.org/01cajaf96', 'da', 1, 'https://ror.org/01cajaf96 Dansk Sprognævn'), (51149, 'https://ror.org/01cb82b28', 'en', 1, 'https://ror.org/01cb82b28 Lungs for Life'), (51150, 'https://ror.org/01cd7k542', 'no_lang_code', 1, 'https://ror.org/01cd7k542 CureTech (Israel)'), (51151, 'https://ror.org/01cgf9k20', 'en', 1, 'https://ror.org/01cgf9k20 New Schools for Chicago'), (51152, 'https://ror.org/01chgch18', 'en', 1, 'https://ror.org/01chgch18 Community Clinical Research'), (51153, 'https://ror.org/01ckvny60', 'en', 1, 'https://ror.org/01ckvny60 Rivkin Center for Ovarian Cancer'), (51154, 'https://ror.org/01cq1x027', 'hu', 1, 'https://ror.org/01cq1x027 Borsod-Abaúj-Zemplén Megyei Kórház és Egyetemi Oktató Kórház'), (51155, 'https://ror.org/01cqrth30', 'fr', 1, 'https://ror.org/01cqrth30 Fondation Arthritis'), (51156, 'https://ror.org/01cr00p51', 'it', 1, 'https://ror.org/01cr00p51 Fondazione di Piacenza e Vigevano'), (51157, 'https://ror.org/01crnny41', 'no_lang_code', 1, 'https://ror.org/01crnny41 Smart Sparrow (United States)'), (51158, 'https://ror.org/01cttmp41', 'en', 1, 'https://ror.org/01cttmp41 Coastal Community Foundation'), (51159, 'https://ror.org/01cwc3t60', 'no_lang_code', 1, 'https://ror.org/01cwc3t60 CenturyLink (United States)'), (51160, 'https://ror.org/01cxrg686', 'en', 1, 'https://ror.org/01cxrg686 National Medical Fellowships'), (51161, 'https://ror.org/01cz1wg22', 'no_lang_code', 1, 'https://ror.org/01cz1wg22 AFT Pharmaceuticals (New Zealand)'), (51162, 'https://ror.org/01d0re264', 'en', 1, 'https://ror.org/01d0re264 Fund for Public Schools'), (51163, 'https://ror.org/01d16dr57', 'de', 1, 'https://ror.org/01d16dr57 PHV Dialysezentrum, Patienten-Heimversorgung'), (51164, 'https://ror.org/01d1x1659', 'en', 1, 'https://ror.org/01d1x1659 Joan Rothenberg Family Foundation'), (51165, 'https://ror.org/01d3smq07', 'no_lang_code', 1, 'https://ror.org/01d3smq07 Aflac (United States)'), (51166, 'https://ror.org/01d4h2244', 'en', 1, 'https://ror.org/01d4h2244 Patient Priority Clinical Sites'), (51167, 'https://ror.org/01d4wwv56', 'fr', 1, 'https://ror.org/01d4wwv56 Fondation Roger de Spoelberch'), (51168, 'https://ror.org/01d8jjd81', 'no_lang_code', 1, 'https://ror.org/01d8jjd81 Nautilus (United States)'), (51169, 'https://ror.org/01da6p430', 'no_lang_code', 1, 'https://ror.org/01da6p430 Ewopharma (Slovakia)'), (51170, 'https://ror.org/01dax5b49', 'en', 1, 'https://ror.org/01dax5b49 Narodowy Instytut Dziedzictwa National Heritage Board of Poland'), (51171, 'https://ror.org/01dbfn577', 'en', 1, 'https://ror.org/01dbfn577 Feeding America'), (51172, 'https://ror.org/01de6ns85', 'no_lang_code', 1, 'https://ror.org/01de6ns85 Neelan Tiruchelvam Trust'), (51173, 'https://ror.org/01dgc6x67', 'en', 1, 'https://ror.org/01dgc6x67 Philippine American Educational Foundation'), (51174, 'https://ror.org/01dj1q121', 'en', 1, 'https://ror.org/01dj1q121 Solar Electric Light Fund'), (51175, 'https://ror.org/01dm0yq38', 'no_lang_code', 1, 'https://ror.org/01dm0yq38 Benesse Holdings (Japan) 株式会社ベネッセホールディングス'), (51176, 'https://ror.org/01dmefb22', 'no_lang_code', 1, 'https://ror.org/01dmefb22 Chromasens (Germany)'), (51177, 'https://ror.org/01dn4wg45', 'no_lang_code', 1, 'https://ror.org/01dn4wg45 Dr. Reddy''s Laboratories (Netherlands)'), (51178, 'https://ror.org/01dnhtm59', 'en', 1, 'https://ror.org/01dnhtm59 Rare Genomics Institute'), (51179, 'https://ror.org/01dnrcm75', 'en', 1, 'https://ror.org/01dnrcm75 Gladys Krieble Delmas Foundation'), (51180, 'https://ror.org/01dpkyq75', 'en', 1, 'https://ror.org/01dpkyq75 Cancer Trials Ireland'), (51181, 'https://ror.org/01dvc8750', 'en', 1, 'https://ror.org/01dvc8750 Foundation for Agronomic Research'), (51182, 'https://ror.org/01e00z659', 'no_lang_code', 1, 'https://ror.org/01e00z659 Joyson Safety Systems (United States)'), (51183, 'https://ror.org/01e0gx490', 'no', 1, 'https://ror.org/01e0gx490 Aust-Agder Utviklings- og Kompetansefond'), (51184, 'https://ror.org/01e2spe61', 'no_lang_code', 1, 'https://ror.org/01e2spe61 Inmunotek (Spain)'), (51185, 'https://ror.org/01e310919', 'en', 1, 'https://ror.org/01e310919 Monash Alfred Psychiatry Research centre'), (51186, 'https://ror.org/01e3cnp62', 'en', 1, 'https://ror.org/01e3cnp62 A.P. Giannini Foundation'), (51187, 'https://ror.org/01e3h1850', 'no_lang_code', 1, 'https://ror.org/01e3h1850 Campagnolo (Italy)'), (51188, 'https://ror.org/01e3kxx79', 'en', 1, 'https://ror.org/01e3kxx79 Brain Foundation'), (51189, 'https://ror.org/01e8zab89', 'en', 1, 'https://ror.org/01e8zab89 National Association of College and University Business Officers'), (51190, 'https://ror.org/01eagnx62', 'no_lang_code', 1, 'https://ror.org/01eagnx62 Zebra Media (Denmark)'), (51191, 'https://ror.org/01efj0y81', 'en', 1, 'https://ror.org/01efj0y81 Intensive Care Foundation'), (51192, 'https://ror.org/01egnsq83', 'fr', 1, 'https://ror.org/01egnsq83 Centre Hospitalier de Saint-Brieuc'), (51193, 'https://ror.org/01ehdwj93', 'en', 1, 'https://ror.org/01ehdwj93 United Nations Capital Development Fund'), (51194, 'https://ror.org/01ekr8r30', 'en', 1, 'https://ror.org/01ekr8r30 American Association of Teachers of Korean'), (51195, 'https://ror.org/01embmm80', 'no_lang_code', 1, 'https://ror.org/01embmm80 Tikomed (Sweden)'), (51196, 'https://ror.org/01enbtr31', 'en', 1, 'https://ror.org/01enbtr31 Okawa Foundation for Information and Telecommunications 公益財団法人 大川情報通信基金'), (51197, 'https://ror.org/01eqh1e45', 'en', 1, 'https://ror.org/01eqh1e45 Swedish CLL group'), (51198, 'https://ror.org/01eqy8607', 'no_lang_code', 1, 'https://ror.org/01eqy8607 Genkyotex (France)'), (51199, 'https://ror.org/01era2c76', 'en', 1, 'https://ror.org/01era2c76 P.E.F. Israel Endowment Funds'), (51200, 'https://ror.org/01erkrz38', 'en', 1, 'https://ror.org/01erkrz38 Yenişehir Hospital Özel Yenişehir Hastanesi'), (51201, 'https://ror.org/01estnb82', 'no_lang_code', 1, 'https://ror.org/01estnb82 Nippon Soda (Japan) 日本曹達株式会社'), (51202, 'https://ror.org/01etk5d84', 'en', 1, 'https://ror.org/01etk5d84 America Abroad Media'), (51203, 'https://ror.org/01exnk557', 'no_lang_code', 1, 'https://ror.org/01exnk557 Cosmo Pharmaceuticals (Ireland)'), (51204, 'https://ror.org/01exwxt34', 'no_lang_code', 1, 'https://ror.org/01exwxt34 Guaranteach (United States)'), (51205, 'https://ror.org/01f08b586', 'no_lang_code', 1, 'https://ror.org/01f08b586 Oxalosis and Hyperoxaluria Foundation'), (51206, 'https://ror.org/01f0hzg70', 'en', 1, 'https://ror.org/01f0hzg70 Glaser Progress Foundation'), (51207, 'https://ror.org/01f1gbh69', 'en', 1, 'https://ror.org/01f1gbh69 Graham Foundation'), (51208, 'https://ror.org/01f2as093', 'en', 1, 'https://ror.org/01f2as093 Pioneer Library System'), (51209, 'https://ror.org/01f2n9041', 'en', 1, 'https://ror.org/01f2n9041 Crohn''s and Colitis Canada'), (51210, 'https://ror.org/01f5hts17', 'en', 1, 'https://ror.org/01f5hts17 Atlanta Women’s Foundation'), (51211, 'https://ror.org/01f7bfe52', 'en', 1, 'https://ror.org/01f7bfe52 American Association of Bovine Practitioners'), (51212, 'https://ror.org/01f8b5v57', 'en', 1, 'https://ror.org/01f8b5v57 National Foundation for Ectodermal Dysplasias'), (51213, 'https://ror.org/01f9py957', 'en', 1, 'https://ror.org/01f9py957 Illustrative Mathematics'), (51214, 'https://ror.org/01fadbq53', 'en', 1, 'https://ror.org/01fadbq53 Northwest Minnesota Foundation'), (51215, 'https://ror.org/01fb0df08', 'en', 1, 'https://ror.org/01fb0df08 Marine Corps Warfighting Laboratory'), (51216, 'https://ror.org/01fc2rf40', 'no_lang_code', 1, 'https://ror.org/01fc2rf40 Dorma (Germany)'), (51217, 'https://ror.org/01fd98w69', 'en', 1, 'https://ror.org/01fd98w69 Perinatal Associates of New Mexico'), (51218, 'https://ror.org/01fec5y16', 'no_lang_code', 1, 'https://ror.org/01fec5y16 Aesculapius Farmaceutici (Italy)'), (51219, 'https://ror.org/01fesvd20', 'nl', 1, 'https://ror.org/01fesvd20 Nederlandse Vereniging voor Trombose en Hemostase'), (51220, 'https://ror.org/01ff05746', 'es', 1, 'https://ror.org/01ff05746 Hospital Doctor José Molina Orosa'), (51221, 'https://ror.org/01ffek432', 'en', 1, 'https://ror.org/01ffek432 First Affiliated Hospital of Hunan University of Traditional Chinese Medicine 湖南中医药大学第一附属医院'), (51222, 'https://ror.org/01fgdhp95', 'en', 1, 'https://ror.org/01fgdhp95 Community Foundation for Greater Buffalo'), (51223, 'https://ror.org/01fhbm930', 'en', 1, 'https://ror.org/01fhbm930 Flinders Medical Centre Foundation'), (51224, 'https://ror.org/01fhkcd72', 'no_lang_code', 1, 'https://ror.org/01fhkcd72 Ustar Biotechnologies (China)'), (51225, 'https://ror.org/01fhn3166', 'no_lang_code', 1, 'https://ror.org/01fhn3166 Vsolvit (United States)'), (51226, 'https://ror.org/01fjgwc49', 'en', 1, 'https://ror.org/01fjgwc49 Kitsap Community Foundation'), (51227, 'https://ror.org/01fjz5q85', 'en', 1, 'https://ror.org/01fjz5q85 Washington State Department of Early Learning'), (51228, 'https://ror.org/01fkfc673', 'en', 1, 'https://ror.org/01fkfc673 Daughters of Charity Foundation of Saint Louis'), (51229, 'https://ror.org/01fn9d687', 'en', 1, 'https://ror.org/01fn9d687 American Society of Genealogists'), (51230, 'https://ror.org/01fpzaj30', 'en', 1, 'https://ror.org/01fpzaj30 Colorado Retina Center'), (51231, 'https://ror.org/01frfsg35', 'en', 1, 'https://ror.org/01frfsg35 Gruppo Oncologico Italiano di Ricerca Clinica Italian Oncology Group of Clinical Research'), (51232, 'https://ror.org/01frg4p28', 'en', 1, 'https://ror.org/01frg4p28 Environmental Research and Education Foundation'), (51233, 'https://ror.org/01ft76595', 'en', 1, 'https://ror.org/01ft76595 Hejian People''s Hospital 河间市人民医院'), (51234, 'https://ror.org/01ft7jz29', 'no_lang_code', 1, 'https://ror.org/01ft7jz29 OptiNose (United States)'), (51235, 'https://ror.org/01fv33324', 'en', 1, 'https://ror.org/01fv33324 International Longevity Centre'), (51236, 'https://ror.org/01fvs9743', 'no_lang_code', 1, 'https://ror.org/01fvs9743 Extreme Networks (United States)'), (51237, 'https://ror.org/01g2p9a25', 'no_lang_code', 1, 'https://ror.org/01g2p9a25 Rhize'), (51238, 'https://ror.org/01g35pk06', 'no_lang_code', 1, 'https://ror.org/01g35pk06 Monday Media (Denmark)'), (51239, 'https://ror.org/01g67g962', 'de', 1, 'https://ror.org/01g67g962 Dr. med. Arthur und Estella Hirzel-Callegari Stiftung'), (51240, 'https://ror.org/01gc9jt13', 'no_lang_code', 1, 'https://ror.org/01gc9jt13 Sanochemia Pharmazeutika (Austria)'), (51241, 'https://ror.org/01gcg9888', 'no_lang_code', 1, 'https://ror.org/01gcg9888 Roche (Netherlands)'), (51242, 'https://ror.org/01gfcex64', 'es', 1, 'https://ror.org/01gfcex64 Instituto de Ciencia y Medicina Genómica'), (51243, 'https://ror.org/01ggj0577', 'en', 1, 'https://ror.org/01ggj0577 Braitmayer Foundation'), (51244, 'https://ror.org/01gkfdp08', 'vi', 1, 'https://ror.org/01gkfdp08 Văn phòng ban chỉ đạo 33'), (51245, 'https://ror.org/01gnpsq58', 'en', 1, 'https://ror.org/01gnpsq58 Canadian Society of Pharmacology and Therapeutics'), (51246, 'https://ror.org/01gp9ja19', 'en', 1, 'https://ror.org/01gp9ja19 Emory Johns Creek Hospital'), (51247, 'https://ror.org/01gpk9263', 'en', 1, 'https://ror.org/01gpk9263 New England Foundation for the Arts'), (51248, 'https://ror.org/01gptg397', 'en', 1, 'https://ror.org/01gptg397 Robert Cizik Eye Clinic'), (51249, 'https://ror.org/01grxkt41', 'en', 1, 'https://ror.org/01grxkt41 American Society of Plant Taxonomists'), (51250, 'https://ror.org/01gtvsc36', 'no_lang_code', 1, 'https://ror.org/01gtvsc36 Celerion (United States)'), (51251, 'https://ror.org/01gxb7577', 'en', 1, 'https://ror.org/01gxb7577 Glówny Urzad Geodezji i Kartografii Head Office of Geodesy and Cartography'), (51252, 'https://ror.org/01gxbnj52', 'en', 1, 'https://ror.org/01gxbnj52 Internews'), (51253, 'https://ror.org/01gydgw38', 'en', 1, 'https://ror.org/01gydgw38 Trust for Vaccines & Immunization'), (51254, 'https://ror.org/01gyggx34', 'no_lang_code', 1, 'https://ror.org/01gyggx34 Fukuoka Kinen Hospital 福岡記念病院'), (51255, 'https://ror.org/01gz25n41', 'en', 1, 'https://ror.org/01gz25n41 Conservation, Food and Health Foundation'), (51256, 'https://ror.org/01h1rba19', 'en', 1, 'https://ror.org/01h1rba19 Science Friday Initiative'), (51257, 'https://ror.org/01h2nq698', 'no_lang_code', 1, 'https://ror.org/01h2nq698 Clementia Pharmaceuticals (France)'), (51258, 'https://ror.org/01h43vb07', 'en', 1, 'https://ror.org/01h43vb07 North American Strawberry Growers Association'), (51259, 'https://ror.org/01h44fm97', 'en', 1, 'https://ror.org/01h44fm97 Jewish United Fund of Metropolitan Chicago'), (51260, 'https://ror.org/01h44t071', 'de', 1, 'https://ror.org/01h44t071 Therapeutische Drug Monitoring Kinder-und Jugendpsychiatrie'), (51261, 'https://ror.org/01h5bb625', 'en', 1, 'https://ror.org/01h5bb625 Doctors @ Carindale Mall'), (51262, 'https://ror.org/01h5ykb44', 'nl', 1, 'https://ror.org/01h5ykb44 AZ Sint-Lucas'), (51263, 'https://ror.org/01h84at96', 'no_lang_code', 1, 'https://ror.org/01h84at96 Perstorp (Sweden)'), (51264, 'https://ror.org/01h8fgw60', 'en', 1, 'https://ror.org/01h8fgw60 Tianjin Infectious Diseases Hospital 天津市传染病医院'), (51265, 'https://ror.org/01h98yw98', 'no_lang_code', 1, 'https://ror.org/01h98yw98 Serviceplan (Germany) Serviceplan Gruppe für innovative Kommunikation GmbH & Co. KG'), (51266, 'https://ror.org/01h9c4672', 'en', 1, 'https://ror.org/01h9c4672 American Society for Gastrointestinal Endoscopy'), (51267, 'https://ror.org/01h9fv209', 'en', 1, 'https://ror.org/01h9fv209 Greater Cincinnati Foundation'), (51268, 'https://ror.org/01h9x6t73', 'no_lang_code', 1, 'https://ror.org/01h9x6t73 ROSA'), (51269, 'https://ror.org/01haca926', 'en', 1, 'https://ror.org/01haca926 California Psychological Association'), (51270, 'https://ror.org/01hbg9816', 'en', 1, 'https://ror.org/01hbg9816 YouthBuild'), (51271, 'https://ror.org/01hbyc103', 'en', 1, 'https://ror.org/01hbyc103 Institut für Mittelalterforschung Institute for Medieval Research'), (51272, 'https://ror.org/01hbz7518', 'no_lang_code', 1, 'https://ror.org/01hbz7518 Alexion Pharmaceuticals (France)'), (51273, 'https://ror.org/01hd54v98', 'en', 1, 'https://ror.org/01hd54v98 Sleep Management Institute'), (51274, 'https://ror.org/01hd95j60', 'en', 1, 'https://ror.org/01hd95j60 Bohemian Foundation'), (51275, 'https://ror.org/01heq7e91', 'en', 1, 'https://ror.org/01heq7e91 Rotary Club of Seattle'), (51276, 'https://ror.org/01hfdsp13', 'no_lang_code', 1, 'https://ror.org/01hfdsp13 Vifor Pharma (United Kingdom)'), (51277, 'https://ror.org/01hfykw48', 'no_lang_code', 1, 'https://ror.org/01hfykw48 Acucela (United States)'), (51278, 'https://ror.org/01hg94g33', 'en', 1, 'https://ror.org/01hg94g33 George and Mary Josephine Hamman Foundation'), (51279, 'https://ror.org/01hgje476', 'en', 1, 'https://ror.org/01hgje476 Children Youth and Family Collaborative'), (51280, 'https://ror.org/01hhamj32', 'en', 1, 'https://ror.org/01hhamj32 Wildlife Society Alauda'), (51281, 'https://ror.org/01hhs1p93', 'fr', 1, 'https://ror.org/01hhs1p93 Saint Laurent Polyclinique'), (51282, 'https://ror.org/01hjfcg50', 'en', 1, 'https://ror.org/01hjfcg50 Ondo State Primary Health Care Development Board'), (51283, 'https://ror.org/01hp17k95', 'no_lang_code', 1, 'https://ror.org/01hp17k95 BioKinetic Europe (United Kingdom)'), (51284, 'https://ror.org/01hp3n521', 'en', 1, 'https://ror.org/01hp3n521 Passport Health'), (51285, 'https://ror.org/01hppyk14', 'en', 1, 'https://ror.org/01hppyk14 New Philanthropy Capital'), (51286, 'https://ror.org/01hshyz77', 'en', 1, 'https://ror.org/01hshyz77 Campbell Institute'), (51287, 'https://ror.org/01ht0p351', 'en', 1, 'https://ror.org/01ht0p351 Agricultural Technology Adoption Initiative'), (51288, 'https://ror.org/01htgmk28', 'en', 1, 'https://ror.org/01htgmk28 NeuroDevelopment Center'), (51289, 'https://ror.org/01htyqs73', 'en', 1, 'https://ror.org/01htyqs73 Institute for Research on Unlimited Love'), (51290, 'https://ror.org/01hvxhn04', 'en', 1, 'https://ror.org/01hvxhn04 American Society of Naturalist'), (51291, 'https://ror.org/01hzj3v30', 'no_lang_code', 1, 'https://ror.org/01hzj3v30 NeuroDerm (Israel)'), (51292, 'https://ror.org/01j1w4v71', 'it', 1, 'https://ror.org/01j1w4v71 Azienda Unità Sanitaria Locale Piacenza'), (51293, 'https://ror.org/01j36ak87', 'en', 1, 'https://ror.org/01j36ak87 Mansfield Orthopaedics'), (51294, 'https://ror.org/01j4pjp70', 'en', 1, 'https://ror.org/01j4pjp70 Ophthalmic Consultants of Long Island'), (51295, 'https://ror.org/01j5mtg86', 'en', 1, 'https://ror.org/01j5mtg86 Coleman Associates'), (51296, 'https://ror.org/01j5zmq23', 'en', 1, 'https://ror.org/01j5zmq23 Initial Teaching Alphabet Foundation'), (51297, 'https://ror.org/01j7m8515', 'no_lang_code', 1, 'https://ror.org/01j7m8515 Spragens and Associates (United States)'), (51298, 'https://ror.org/01j7rg942', 'en', 1, 'https://ror.org/01j7rg942 Urology Associates of North Texas'), (51299, 'https://ror.org/01j7stt33', 'it', 1, 'https://ror.org/01j7stt33 Network Italiano Per la Bioterapia Dei Tumori'), (51300, 'https://ror.org/01j8qgg43', 'de', 1, 'https://ror.org/01j8qgg43 Joachim Herz Stiftung'), (51301, 'https://ror.org/01jaz1w65', 'no_lang_code', 1, 'https://ror.org/01jaz1w65 Fabio Perini (Italy)'), (51302, 'https://ror.org/01jcaat98', 'no_lang_code', 1, 'https://ror.org/01jcaat98 Crown Holdings (United States)'), (51303, 'https://ror.org/01jce8981', 'no_lang_code', 1, 'https://ror.org/01jce8981 Mitsubishi Corporation (United States)'), (51304, 'https://ror.org/01jdhsq12', 'de', 1, 'https://ror.org/01jdhsq12 AGO Research GmbH'), (51305, 'https://ror.org/01jetvm74', 'no_lang_code', 1, 'https://ror.org/01jetvm74 Windmill Health Technologies (India)'), (51306, 'https://ror.org/01jfwp053', 'no_lang_code', 1, 'https://ror.org/01jfwp053 Aviragen Therapeutics (Australia)'), (51307, 'https://ror.org/01jk08v54', 'no_lang_code', 1, 'https://ror.org/01jk08v54 Grohe (Germany)'), (51308, 'https://ror.org/01jmrmv15', 'no_lang_code', 1, 'https://ror.org/01jmrmv15 Swiss Cardio Technologies (Switzerland)'), (51309, 'https://ror.org/01jmtnr89', 'en', 1, 'https://ror.org/01jmtnr89 Passano Foundation'), (51310, 'https://ror.org/01jr5xr29', 'en', 1, 'https://ror.org/01jr5xr29 Preeclampsia Foundation'), (51311, 'https://ror.org/01jrkry66', 'no_lang_code', 1, 'https://ror.org/01jrkry66 OpenText (Luxembourg)'), (51312, 'https://ror.org/01jrqwn31', 'no_lang_code', 1, 'https://ror.org/01jrqwn31 GC Corporation (Japan)'), (51313, 'https://ror.org/01jxvhp27', 'no_lang_code', 1, 'https://ror.org/01jxvhp27 Hisamitsu Pharmaceutical (Japan) 久光製薬株式会社'), (51314, 'https://ror.org/01jya0847', 'no_lang_code', 1, 'https://ror.org/01jya0847 Vtesse (United States)'), (51315, 'https://ror.org/01jz68c66', 'en', 1, 'https://ror.org/01jz68c66 Joe Andruzzi Foundation'), (51316, 'https://ror.org/01k02wt67', 'en', 1, 'https://ror.org/01k02wt67 Society of Health and Physical Educators'), (51317, 'https://ror.org/01k15w004', 'en', 1, 'https://ror.org/01k15w004 Sarcoma Oncology Center'), (51318, 'https://ror.org/01k931w67', 'en', 1, 'https://ror.org/01k931w67 Goldsmith Family Foundation'), (51319, 'https://ror.org/01karna91', 'en', 1, 'https://ror.org/01karna91 Health Research Foundation'), (51320, 'https://ror.org/01kc20959', 'en', 1, 'https://ror.org/01kc20959 Urological Society of Australia and New Zealand'), (51321, 'https://ror.org/01ke5wn61', 'en', 1, 'https://ror.org/01ke5wn61 Podřipská Hospital and Polyclinic'), (51322, 'https://ror.org/01kenqt68', 'no_lang_code', 1, 'https://ror.org/01kenqt68 Kyorin Holdings (Japan)'), (51323, 'https://ror.org/01kfs3w30', 'en', 1, 'https://ror.org/01kfs3w30 RESULTS and RESULTS Educational Fund'), (51324, 'https://ror.org/01kg37d11', 'no_lang_code', 1, 'https://ror.org/01kg37d11 Deutz (Germany)'), (51325, 'https://ror.org/01kgb3c72', 'en', 1, 'https://ror.org/01kgb3c72 Kennedys Disease Association'), (51326, 'https://ror.org/01kk6dc84', 'en', 1, 'https://ror.org/01kk6dc84 Zemaitija National Park Žemaitijos Nacionalinio Parko'), (51327, 'https://ror.org/01kk89q14', 'en', 1, 'https://ror.org/01kk89q14 Fund For New Jersey'), (51328, 'https://ror.org/01kkt1z73', 'en', 1, 'https://ror.org/01kkt1z73 Windrider Institute'), (51329, 'https://ror.org/01km88n73', 'tr', 1, 'https://ror.org/01km88n73 Marmara Üniversitesi Eğitim ve Araştırma Hastanesi'), (51330, 'https://ror.org/01kntxs33', 'no_lang_code', 1, 'https://ror.org/01kntxs33 Enviu (Netherlands)'), (51331, 'https://ror.org/01kqg4m05', 'en', 1, 'https://ror.org/01kqg4m05 American International Health Alliance'), (51332, 'https://ror.org/01ksb8987', 'en', 1, 'https://ror.org/01ksb8987 LibForAll Foundation'), (51333, 'https://ror.org/01ksbcg70', 'no_lang_code', 1, 'https://ror.org/01ksbcg70 Endress Hauser Messtechnik (Germany)'), (51334, 'https://ror.org/01kv2k333', 'en', 1, 'https://ror.org/01kv2k333 Harvard-Yenching Institute'), (51335, 'https://ror.org/01kvepn75', 'es', 1, 'https://ror.org/01kvepn75 Instituto Palacios'), (51336, 'https://ror.org/01kvftm17', 'en', 1, 'https://ror.org/01kvftm17 Aga Khan Foundation'), (51337, 'https://ror.org/01kvsqe61', 'no_lang_code', 1, 'https://ror.org/01kvsqe61 CarboTech (Germany)'), (51338, 'https://ror.org/01kxr3c26', 'en', 1, 'https://ror.org/01kxr3c26 Parkinson''s NSW'), (51339, 'https://ror.org/01ky9zs74', 'en', 1, 'https://ror.org/01ky9zs74 Pritzker Traubert Family Foundation'), (51340, 'https://ror.org/01kypm263', 'en', 1, 'https://ror.org/01kypm263 Kyungpook National University Medical Center'), (51341, 'https://ror.org/01kzmqh11', 'en', 1, 'https://ror.org/01kzmqh11 Proteus Digital Health'), (51342, 'https://ror.org/01m08pe77', 'en', 1, 'https://ror.org/01m08pe77 Central Kentucky Research Associates'), (51343, 'https://ror.org/01m1n7283', 'en', 1, 'https://ror.org/01m1n7283 Jim Joseph Foundation'), (51344, 'https://ror.org/01m1p2k59', 'no_lang_code', 1, 'https://ror.org/01m1p2k59 MetaMetrics (United States)'), (51345, 'https://ror.org/01m1se903', 'en', 1, 'https://ror.org/01m1se903 Abney Foundation'), (51346, 'https://ror.org/01m2t4z13', 'en', 1, 'https://ror.org/01m2t4z13 Clinical Research Solutions'), (51347, 'https://ror.org/01m3ea752', 'no_lang_code', 1, 'https://ror.org/01m3ea752 Boehringer Ingelheim (Latvia)'), (51348, 'https://ror.org/01m3zmc09', 'en', 1, 'https://ror.org/01m3zmc09 What Kids Can Do'), (51349, 'https://ror.org/01m423d85', 'no_lang_code', 1, 'https://ror.org/01m423d85 Buddhachinaraj Hospital'), (51350, 'https://ror.org/01m665265', 'en', 1, 'https://ror.org/01m665265 Mindwires Consulting'), (51351, 'https://ror.org/01m74as88', 'en', 1, 'https://ror.org/01m74as88 Third People ''s Hospital of Liaoyang'), (51352, 'https://ror.org/01m9bsg74', 'en', 1, 'https://ror.org/01m9bsg74 Four Seasons'), (51353, 'https://ror.org/01m9jhr72', 'en', 1, 'https://ror.org/01m9jhr72 Finnish Lung Health Association'), (51354, 'https://ror.org/01mahh263', 'en', 1, 'https://ror.org/01mahh263 Huntington Society of Canada'), (51355, 'https://ror.org/01md9rj25', 'en', 1, 'https://ror.org/01md9rj25 Cave Research Foundation'), (51356, 'https://ror.org/01me3x819', 'en', 1, 'https://ror.org/01me3x819 Everychild Foundation'), (51357, 'https://ror.org/01mejbd78', 'en', 1, 'https://ror.org/01mejbd78 Venice Family Clinic'), (51358, 'https://ror.org/01mf0t386', 'no_lang_code', 1, 'https://ror.org/01mf0t386 Upsher-Smith Laboratories (United Kingdom)'), (51359, 'https://ror.org/01mfcg760', 'no_lang_code', 1, 'https://ror.org/01mfcg760 Quantum Experimental (Spain)'), (51360, 'https://ror.org/01mfkhd73', 'en', 1, 'https://ror.org/01mfkhd73 Japan ICU Foundation'), (51361, 'https://ror.org/01mhzrb93', 'it', 1, 'https://ror.org/01mhzrb93 Fondazione Ricerca Molinette'), (51362, 'https://ror.org/01mj4k378', 'en', 1, 'https://ror.org/01mj4k378 Medicort Sports & Orthopedic Care'), (51363, 'https://ror.org/01mk7gk80', 'en', 1, 'https://ror.org/01mk7gk80 International Justice Mission'), (51364, 'https://ror.org/01mmm4p44', 'en', 1, 'https://ror.org/01mmm4p44 Hospital 463 People''s Liberation Army 解放军四六三医院'), (51365, 'https://ror.org/01mmnen89', 'en', 1, 'https://ror.org/01mmnen89 Charles and Mildred Schnurmacher Foundation'), (51366, 'https://ror.org/01mmsh574', 'en', 1, 'https://ror.org/01mmsh574 Moody Foundation'), (51367, 'https://ror.org/01mprm944', 'en', 1, 'https://ror.org/01mprm944 Foundation for Global Scholars'), (51368, 'https://ror.org/01mrh1227', 'no_lang_code', 1, 'https://ror.org/01mrh1227 Koenig & Bauer (Germany)'), (51369, 'https://ror.org/01mrvqn21', 'en', 1, 'https://ror.org/01mrvqn21 EuroQol Research Foundation'), (51370, 'https://ror.org/01msnnq69', 'no_lang_code', 1, 'https://ror.org/01msnnq69 Novartis (Sweden)'), (51371, 'https://ror.org/01mvx0t15', 'en', 1, 'https://ror.org/01mvx0t15 Lake OB/GYN Associates of Mid-Florida'), (51372, 'https://ror.org/01mx76n22', 'en', 1, 'https://ror.org/01mx76n22 Department of Trade, Industry and Competition'), (51373, 'https://ror.org/01myvh111', 'en', 1, 'https://ror.org/01myvh111 Lambda Therapeutic Research'), (51374, 'https://ror.org/01mzeb713', 'en', 1, 'https://ror.org/01mzeb713 Cosmetic Laser Dermatology'), (51375, 'https://ror.org/01mzxrp73', 'en', 1, 'https://ror.org/01mzxrp73 Cancer and Polio Research Fund'), (51376, 'https://ror.org/01n03de84', 'en', 1, 'https://ror.org/01n03de84 Jack Miller Center'), (51377, 'https://ror.org/01n0cq521', 'en', 1, 'https://ror.org/01n0cq521 Pasteur Foundation'), (51378, 'https://ror.org/01n4dr964', 'en', 1, 'https://ror.org/01n4dr964 Latino/a Educational Achievement Project'), (51379, 'https://ror.org/01n6xvd93', 'en', 1, 'https://ror.org/01n6xvd93 Rheumatology Theraputics Medical Center'), (51380, 'https://ror.org/01na6q190', 'no_lang_code', 1, 'https://ror.org/01na6q190 Wavin (Netherlands)'), (51381, 'https://ror.org/01naky322', 'no_lang_code', 1, 'https://ror.org/01naky322 Pinnacle Trials (United States)'), (51382, 'https://ror.org/01nbe0380', 'en', 1, 'https://ror.org/01nbe0380 National Public Education Support Fund'), (51383, 'https://ror.org/01nc0cp29', 'no_lang_code', 1, 'https://ror.org/01nc0cp29 United Parcel Service (United States)'), (51384, 'https://ror.org/01nd4v777', 'en', 1, 'https://ror.org/01nd4v777 Children Now'), (51385, 'https://ror.org/01ne4aa08', 'en', 1, 'https://ror.org/01ne4aa08 British Occupational Health Research Foundation'), (51386, 'https://ror.org/01nehjf29', 'no_lang_code', 1, 'https://ror.org/01nehjf29 Microsoft (Finland)'), (51387, 'https://ror.org/01nfaax03', 'en', 1, 'https://ror.org/01nfaax03 Fryderyk Chopin Institute Narodowy Instytut Fryderyka Chopina'), (51388, 'https://ror.org/01nhcgj20', 'it', 1, 'https://ror.org/01nhcgj20 Ospedali Riuniti Marche Nord'), (51389, 'https://ror.org/01nhct278', 'en', 1, 'https://ror.org/01nhct278 International Transplant Nurses Society'), (51390, 'https://ror.org/01nj1bs84', 'no_lang_code', 1, 'https://ror.org/01nj1bs84 AdminiTrust'), (51391, 'https://ror.org/01nm8ww36', 'en', 1, 'https://ror.org/01nm8ww36 South Dakota Department Of Education'), (51392, 'https://ror.org/01nmscb33', 'en', 1, 'https://ror.org/01nmscb33 American Society of Pediatric Otolaryngology'), (51393, 'https://ror.org/01nn90r09', 'en', 1, 'https://ror.org/01nn90r09 British Association for American Studies'), (51394, 'https://ror.org/01nnbvh24', 'en', 1, 'https://ror.org/01nnbvh24 Potlatch Fund'), (51395, 'https://ror.org/01nndby33', 'no_lang_code', 1, 'https://ror.org/01nndby33 Rittal (Germany)'), (51396, 'https://ror.org/01npzgy86', 'en', 1, 'https://ror.org/01npzgy86 Lutheran Medical Group'), (51397, 'https://ror.org/01ntjaz71', 'en', 1, 'https://ror.org/01ntjaz71 Blanche Davis Moore Foundation'), (51398, 'https://ror.org/01nxwmg26', 'en', 1, 'https://ror.org/01nxwmg26 Georgia Urology'), (51399, 'https://ror.org/01ny43313', 'no_lang_code', 1, 'https://ror.org/01ny43313 Orion Corporation (United Kingdom)'), (51400, 'https://ror.org/01ny4we05', 'en', 1, 'https://ror.org/01ny4we05 Generation Foundation'), (51401, 'https://ror.org/01nygqt57', 'en', 1, 'https://ror.org/01nygqt57 Wegene Ethiopian Foundation'), (51402, 'https://ror.org/01p0fnz19', 'en', 1, 'https://ror.org/01p0fnz19 Fletcher Jones Foundation'), (51403, 'https://ror.org/01p0hfz77', 'en', 1, 'https://ror.org/01p0hfz77 ACVO Vision for Animals Foundation'), (51404, 'https://ror.org/01p0nd878', 'no_lang_code', 1, 'https://ror.org/01p0nd878 Biogen (Netherlands)'), (51405, 'https://ror.org/01p0x0j97', 'en', 1, 'https://ror.org/01p0x0j97 United Way of King County'), (51406, 'https://ror.org/01p21bq81', 'no_lang_code', 1, 'https://ror.org/01p21bq81 Shima Seiki (Japan) 島精機製作所'), (51407, 'https://ror.org/01p231980', 'en', 1, 'https://ror.org/01p231980 Mike O''Callaghan Federal Medical Center'), (51408, 'https://ror.org/01p35qm90', 'de', 1, 'https://ror.org/01p35qm90 HNO-Praxis'), (51409, 'https://ror.org/01p3zwg66', 'no_lang_code', 1, 'https://ror.org/01p3zwg66 Richard Wolf (Germany)'), (51410, 'https://ror.org/01p4rdh72', 'no_lang_code', 1, 'https://ror.org/01p4rdh72 Forum 50%'), (51411, 'https://ror.org/01p7bsb42', 'en', 1, 'https://ror.org/01p7bsb42 St. Vladimir Children''s Moscow Clinical Hospital Свято-Владимирский Детская клиническая больница Москва'), (51412, 'https://ror.org/01p7hf548', 'en', 1, 'https://ror.org/01p7hf548 Kato Foundation for Promotion of Science 公益財団法人 加藤科学振興会'), (51413, 'https://ror.org/01p87k189', 'en', 1, 'https://ror.org/01p87k189 American Heart Institute'), (51414, 'https://ror.org/01pb0m710', 'el', 1, 'https://ror.org/01pb0m710 SciFY'), (51415, 'https://ror.org/01pdc9z31', 'en', 1, 'https://ror.org/01pdc9z31 InterAction'), (51416, 'https://ror.org/01pfv2y33', 'en', 1, 'https://ror.org/01pfv2y33 Amyloidosis Foundation'), (51417, 'https://ror.org/01pg9bv14', 'pt', 1, 'https://ror.org/01pg9bv14 Hospital Haroldo Juaçaba'), (51418, 'https://ror.org/01pgbc160', 'en', 1, 'https://ror.org/01pgbc160 Japan Foundation Manila'), (51419, 'https://ror.org/01pgead21', 'no_lang_code', 1, 'https://ror.org/01pgead21 Apotex (Canada)'), (51420, 'https://ror.org/01pgn1y88', 'en', 1, 'https://ror.org/01pgn1y88 ActionAid'), (51421, 'https://ror.org/01pgw9p53', 'en', 1, 'https://ror.org/01pgw9p53 Grantsmanship Center'), (51422, 'https://ror.org/01ph20k51', 'no_lang_code', 1, 'https://ror.org/01ph20k51 Visterra (United States)'), (51423, 'https://ror.org/01phxzc94', 'en', 1, 'https://ror.org/01phxzc94 Grantmakers Concerned with Immigrants and Refugees'), (51424, 'https://ror.org/01pjqkg29', 'en', 1, 'https://ror.org/01pjqkg29 Fats and Proteins Research Foundation'), (51425, 'https://ror.org/01pmtzj45', 'en', 1, 'https://ror.org/01pmtzj45 Ellipsis'), (51426, 'https://ror.org/01pp7xa52', 'en', 1, 'https://ror.org/01pp7xa52 Crohn''s & Colitis Australia'), (51427, 'https://ror.org/01ppj1b82', 'en', 1, 'https://ror.org/01ppj1b82 Rippel Foundation'), (51428, 'https://ror.org/01ppn7a90', 'no_lang_code', 1, 'https://ror.org/01ppn7a90 Nisshinbo Holdings (Japan) 日清紡ホールディングス株式会社'), (51429, 'https://ror.org/01prhq989', 'en', 1, 'https://ror.org/01prhq989 Corporation for Public Broadcasting'), (51430, 'https://ror.org/01ps1fe93', 'en', 1, 'https://ror.org/01ps1fe93 Dr V Seshiah Diabetes Research Institute'), (51431, 'https://ror.org/01psax922', 'en', 1, 'https://ror.org/01psax922 Association of American Railroads'), (51432, 'https://ror.org/01psm3828', 'no_lang_code', 1, 'https://ror.org/01psm3828 Novartis (Israel)'), (51433, 'https://ror.org/01pvzsz53', 'no_lang_code', 1, 'https://ror.org/01pvzsz53 Mölnlycke Health Care (Sweden)'), (51434, 'https://ror.org/01pw21703', 'en', 1, 'https://ror.org/01pw21703 Danish Cattle Research Centre Danmarks Kvægforskningscenter'), (51435, 'https://ror.org/01pxgad11', 'en', 1, 'https://ror.org/01pxgad11 Advanced Dermatology & Cosmetic Surgery'), (51436, 'https://ror.org/01pxm4a45', 'en', 1, 'https://ror.org/01pxm4a45 Kozlovsky Delay & Winter Eye Consultants'), (51437, 'https://ror.org/01pxwcd09', 'en', 1, 'https://ror.org/01pxwcd09 Ralph C. Wilson, Jr. Foundation'), (51438, 'https://ror.org/01pys9003', 'pl', 1, 'https://ror.org/01pys9003 Hospicjum im. Ks. Eugeniusza Dutkiewicza SAC'), (51439, 'https://ror.org/01q2gd226', 'no_lang_code', 1, 'https://ror.org/01q2gd226 Nordmark (Germany)'), (51440, 'https://ror.org/01q3qfk61', 'en', 1, 'https://ror.org/01q3qfk61 Southbay Pharma Research'), (51441, 'https://ror.org/01q8dxj28', 'en', 1, 'https://ror.org/01q8dxj28 American Fidelity Foundation'), (51442, 'https://ror.org/01q9r6465', 'en', 1, 'https://ror.org/01q9r6465 Geraldine R. Dodge Foundation'), (51443, 'https://ror.org/01qa22e60', 'en', 1, 'https://ror.org/01qa22e60 Marguerite Casey Foundation'), (51444, 'https://ror.org/01qa8mn55', 'en', 1, 'https://ror.org/01qa8mn55 Taiyuan Maternity and Child Care Hospital 太原市妇幼保健院'), (51445, 'https://ror.org/01qb3tn52', 'en', 1, 'https://ror.org/01qb3tn52 Surge Institute'), (51446, 'https://ror.org/01qbvd385', 'en', 1, 'https://ror.org/01qbvd385 Cervical Spine Research Society'), (51447, 'https://ror.org/01qcg7857', 'en', 1, 'https://ror.org/01qcg7857 New Teacher Center'), (51448, 'https://ror.org/01qeds693', 'en', 1, 'https://ror.org/01qeds693 Columbia Foundation'), (51449, 'https://ror.org/01qfen484', 'en', 1, 'https://ror.org/01qfen484 Association of Management Development Institutions in South Asia'), (51450, 'https://ror.org/01qfkht77', 'en', 1, 'https://ror.org/01qfkht77 Independent Social Research Foundation'), (51451, 'https://ror.org/01qgvfw88', 'en', 1, 'https://ror.org/01qgvfw88 Kettering Family Foundation'), (51452, 'https://ror.org/01qgzjd70', 'en', 1, 'https://ror.org/01qgzjd70 Indonesia Toray Science Foundation'), (51453, 'https://ror.org/01qh4s373', 'en', 1, 'https://ror.org/01qh4s373 South Carolina Oncology Associates'), (51454, 'https://ror.org/01qk32r63', 'en', 1, 'https://ror.org/01qk32r63 National Aids Control Council'), (51455, 'https://ror.org/01qk6rn93', 'en', 1, 'https://ror.org/01qk6rn93 Center for Digestive and Liver Diseases'), (51456, 'https://ror.org/01qnb0r37', 'en', 1, 'https://ror.org/01qnb0r37 Greater Tacoma Community Foundation'), (51457, 'https://ror.org/01qq0qd43', 'en', 1, 'https://ror.org/01qq0qd43 Shunyi Hospital of Beijing Traditional Chinese Medicine Hospital 北京中医医院顺义医院'), (51458, 'https://ror.org/01qwj0517', 'no_lang_code', 1, 'https://ror.org/01qwj0517 Chaparral Energy (United States)'), (51459, 'https://ror.org/01qzsn924', 'no_lang_code', 1, 'https://ror.org/01qzsn924 İlkogen (Turkey)'), (51460, 'https://ror.org/01r2r9d33', 'en', 1, 'https://ror.org/01r2r9d33 AMCR Institute'), (51461, 'https://ror.org/01r2x3m69', 'no_lang_code', 1, 'https://ror.org/01r2x3m69 Paul Wurth (Luxembourg)'), (51462, 'https://ror.org/01r4jg965', 'en', 1, 'https://ror.org/01r4jg965 Virginia Clinical Research'), (51463, 'https://ror.org/01r55tz35', 'en', 1, 'https://ror.org/01r55tz35 TrustAfrica'), (51464, 'https://ror.org/01r89aa81', 'no_lang_code', 1, 'https://ror.org/01r89aa81 CME Group (United States)'), (51465, 'https://ror.org/01r9fcy75', 'en', 1, 'https://ror.org/01r9fcy75 Alpha Omicron Pi Foundation'), (51466, 'https://ror.org/01rc1wg41', 'en', 1, 'https://ror.org/01rc1wg41 National Council on Teacher Quality'), (51467, 'https://ror.org/01rdg4502', 'en', 1, 'https://ror.org/01rdg4502 Museum of Vertebrate Zoology'), (51468, 'https://ror.org/01rh2et08', 'en', 1, 'https://ror.org/01rh2et08 Dermatology, Laser & Vein Specialists of the Carolinas'), (51469, 'https://ror.org/01rhff309', 'en', 1, 'https://ror.org/01rhff309 British Antarctic Survey'), (51470, 'https://ror.org/01rk2ws36', 'no_lang_code', 1, 'https://ror.org/01rk2ws36 Maschinenfabrik Reinhausen (Germany)'), (51471, 'https://ror.org/01rkhv978', 'en', 1, 'https://ror.org/01rkhv978 Development Fund Utviklingsfondet'), (51472, 'https://ror.org/01rkjnh80', 'en', 1, 'https://ror.org/01rkjnh80 Samatvam Endocrinology Diabetes Centre'), (51473, 'https://ror.org/01rpp5211', 'en', 1, 'https://ror.org/01rpp5211 New York Community Trust'), (51474, 'https://ror.org/01rq5xv52', 'no_lang_code', 1, 'https://ror.org/01rq5xv52 Avery Design Systems (United States)'), (51475, 'https://ror.org/01rqq3d62', 'it', 1, 'https://ror.org/01rqq3d62 Azienda Unità Sanitaria Locale Della Romagna'), (51476, 'https://ror.org/01rra6s55', 'en', 1, 'https://ror.org/01rra6s55 Opportunity International'), (51477, 'https://ror.org/01rt6cd77', 'en', 1, 'https://ror.org/01rt6cd77 Keiki O Ka ‘ Āina Family Learning Centers'), (51478, 'https://ror.org/01rv0fx88', 'en', 1, 'https://ror.org/01rv0fx88 Chief Inspectorate of Environmental Protection'), (51479, 'https://ror.org/01rxe9p77', 'en', 1, 'https://ror.org/01rxe9p77 Child Neurology Foundation'), (51480, 'https://ror.org/01s09ha26', 'en', 1, 'https://ror.org/01s09ha26 Synergy Research Centers'), (51481, 'https://ror.org/01s0z9h22', 'en', 1, 'https://ror.org/01s0z9h22 British Society for Cell Biology'), (51482, 'https://ror.org/01s1pcz40', 'en', 1, 'https://ror.org/01s1pcz40 Pittsburgh Promise Foundation'), (51483, 'https://ror.org/01s24yr42', 'en', 1, 'https://ror.org/01s24yr42 Korean Society of Critical Care Medicine 대한중환자의학회'), (51484, 'https://ror.org/01s33dn56', 'no_lang_code', 1, 'https://ror.org/01s33dn56 Oncotherapeutics (United States)'), (51485, 'https://ror.org/01s33rn67', 'no_lang_code', 1, 'https://ror.org/01s33rn67 Next Dimension Technologies (United States)'), (51486, 'https://ror.org/01s3w8y48', 'de', 1, 'https://ror.org/01s3w8y48 Städtisches Klinikum Solingen'), (51487, 'https://ror.org/01s45wz62', 'en', 1, 'https://ror.org/01s45wz62 Lucas Foundation'), (51488, 'https://ror.org/01s49js04', 'no_lang_code', 1, 'https://ror.org/01s49js04 Kraft Heinz (United States)'), (51489, 'https://ror.org/01s4ady16', 'no_lang_code', 1, 'https://ror.org/01s4ady16 Arafarma Group (Spain)'), (51490, 'https://ror.org/01s5m6w98', 'no_lang_code', 1, 'https://ror.org/01s5m6w98 DyStar (Germany)'), (51491, 'https://ror.org/01s649n52', 'en', 1, 'https://ror.org/01s649n52 Nautilus Ventures'), (51492, 'https://ror.org/01s722583', 'en', 1, 'https://ror.org/01s722583 Clinical Study Center of Asheville'), (51493, 'https://ror.org/01s73wp90', 'no_lang_code', 1, 'https://ror.org/01s73wp90 Scheck & Siress (United States)'), (51494, 'https://ror.org/01s7ds279', 'no_lang_code', 1, 'https://ror.org/01s7ds279 Ishida Seisakusho (Japan) 石田製作所'), (51495, 'https://ror.org/01s7t9a67', 'en', 1, 'https://ror.org/01s7t9a67 CINTAS Foundation'), (51496, 'https://ror.org/01sa13326', 'en', 1, 'https://ror.org/01sa13326 Specialized Dentistry of New York'), (51497, 'https://ror.org/01satjx84', 'en', 1, 'https://ror.org/01satjx84 Vital Pakistan Trust'), (51498, 'https://ror.org/01sbybp86', 'no_lang_code', 1, 'https://ror.org/01sbybp86 Wilson Therapeutics (United States)'), (51499, 'https://ror.org/01scs7915', 'en', 1, 'https://ror.org/01scs7915 South Texas Accelerated Research Therapeutics'), (51500, 'https://ror.org/01sdha619', 'no_lang_code', 1, 'https://ror.org/01sdha619 Ono Pharmaceutical (United Kingdom)'), (51501, 'https://ror.org/01sdk1n29', 'en', 1, 'https://ror.org/01sdk1n29 Fuji Foundation for Protein Research ファウジータンパク質研究財団'), (51502, 'https://ror.org/01se4qt95', 'no_lang_code', 1, 'https://ror.org/01se4qt95 Amada (Japan) 株式会社アマダ'), (51503, 'https://ror.org/01seepq35', 'en', 1, 'https://ror.org/01seepq35 American Research Center in Sofia Foundation'), (51504, 'https://ror.org/01smjaq87', 'no_lang_code', 1, 'https://ror.org/01smjaq87 Pierre Fabre (United Kingdom)'), (51505, 'https://ror.org/01smtb607', 'es', 1, 'https://ror.org/01smtb607 Hospital Clínica Benidorm'), (51506, 'https://ror.org/01spdgx23', 'en', 1, 'https://ror.org/01spdgx23 Retina Associates of Western New York'), (51507, 'https://ror.org/01spess76', 'no_lang_code', 1, 'https://ror.org/01spess76 Neoleukin Therapeutics (United Kingdom)'), (51508, 'https://ror.org/01spkt797', 'de', 1, 'https://ror.org/01spkt797 Ihre-Radiologen'), (51509, 'https://ror.org/01spqna17', 'en', 1, 'https://ror.org/01spqna17 Multicultural Center Prague Multikulturní centrum Praha'), (51510, 'https://ror.org/01sr0yp41', 'en', 1, 'https://ror.org/01sr0yp41 New York Oncology Hematology'), (51511, 'https://ror.org/01srvtz98', 'en', 1, 'https://ror.org/01srvtz98 Donor Network West'), (51512, 'https://ror.org/01ss9zs84', 'no_lang_code', 1, 'https://ror.org/01ss9zs84 Acuity Brands (United states)'), (51513, 'https://ror.org/01stze803', 'da', 1, 'https://ror.org/01stze803 Familien Hede Nielsens Fond'), (51514, 'https://ror.org/01swtxv06', 'en', 1, 'https://ror.org/01swtxv06 Jerusalem Fund'), (51515, 'https://ror.org/01swy6e53', 'en', 1, 'https://ror.org/01swy6e53 AIMS Education Foundation'), (51516, 'https://ror.org/01sxaaw11', 'en', 1, 'https://ror.org/01sxaaw11 Florida Center for Gastroenterology'), (51517, 'https://ror.org/01t1aqm70', 'no_lang_code', 1, 'https://ror.org/01t1aqm70 Spectrum Brands (United States)'), (51518, 'https://ror.org/01t2k3r89', 'no_lang_code', 1, 'https://ror.org/01t2k3r89 Aptevo Therapeutics (United Kingdom)'), (51519, 'https://ror.org/01t418a56', 'pt', 1, 'https://ror.org/01t418a56 Fundação de Apoio ao Desenvolvimento da Computação Científica'), (51520, 'https://ror.org/01t5r7875', 'en', 1, 'https://ror.org/01t5r7875 McCarthy Family Foundation'), (51521, 'https://ror.org/01t731k54', 'en', 1, 'https://ror.org/01t731k54 Gamma Mu Foundation'), (51522, 'https://ror.org/01t7m8f35', 'en', 1, 'https://ror.org/01t7m8f35 Heed Ophthalmic Foundation'), (51523, 'https://ror.org/01t7x8s02', 'en', 1, 'https://ror.org/01t7x8s02 Boston Educational Development Foundation'), (51524, 'https://ror.org/01t8ny673', 'no_lang_code', 1, 'https://ror.org/01t8ny673 Rehrig Pacific (United States)'), (51525, 'https://ror.org/01t8wyd82', 'no_lang_code', 1, 'https://ror.org/01t8wyd82 SciencePharma (Poland)'), (51526, 'https://ror.org/01tb3cd08', 'en', 1, 'https://ror.org/01tb3cd08 Pahara Institute'), (51527, 'https://ror.org/01tbzkx87', 'en', 1, 'https://ror.org/01tbzkx87 Crime Prevention Center'), (51528, 'https://ror.org/01tcwz823', 'en', 1, 'https://ror.org/01tcwz823 Oklahoma Department of Libraries'), (51529, 'https://ror.org/01tf2gj84', 'en', 1, 'https://ror.org/01tf2gj84 Communities Foundation of Texas'), (51530, 'https://ror.org/01tf5aq62', 'en', 1, 'https://ror.org/01tf5aq62 Ludwig Boltzmann Institute for COPD And Respiratory Epidemiology'), (51531, 'https://ror.org/01tg0gj74', 'en', 1, 'https://ror.org/01tg0gj74 Justice in Aging'), (51532, 'https://ror.org/01th7t610', 'en', 1, 'https://ror.org/01th7t610 Mental Health Research UK'), (51533, 'https://ror.org/01tpcjr87', 'en', 1, 'https://ror.org/01tpcjr87 Innovative Clinical Research'), (51534, 'https://ror.org/01tqjep44', 'no_lang_code', 1, 'https://ror.org/01tqjep44 Novasep (Germany)'), (51535, 'https://ror.org/01tqqpv03', 'es', 1, 'https://ror.org/01tqqpv03 Sociedad Española de Farmacología Clínica'), (51536, 'https://ror.org/01trfwv98', 'en', 1, 'https://ror.org/01trfwv98 Boys and Girls Clubs'), (51537, 'https://ror.org/01tshah34', 'no_lang_code', 1, 'https://ror.org/01tshah34 Roehm (Germany)'), (51538, 'https://ror.org/01ttrzd54', 'en', 1, 'https://ror.org/01ttrzd54 Association for Historical Dialogue and Research'), (51539, 'https://ror.org/01ttwsg70', 'de', 1, 'https://ror.org/01ttwsg70 Union postale universelle, Universal Postal Union'), (51540, 'https://ror.org/01tvtt303', 'no_lang_code', 1, 'https://ror.org/01tvtt303 Addmedica (France)'), (51541, 'https://ror.org/01twdvx49', 'da', 1, 'https://ror.org/01twdvx49 Danmarks Radio'), (51542, 'https://ror.org/01tyb6p93', 'no_lang_code', 1, 'https://ror.org/01tyb6p93 Laboratorio De Aplicaciones Farmacodinamicas (Spain)'), (51543, 'https://ror.org/01tzg3s04', 'no_lang_code', 1, 'https://ror.org/01tzg3s04 Celyad (Belgium)'), (51544, 'https://ror.org/01v1fj170', 'en', 1, 'https://ror.org/01v1fj170 Infusion Associates'), (51545, 'https://ror.org/01v1rey73', 'no_lang_code', 1, 'https://ror.org/01v1rey73 Pierian Biosciences (United States)'), (51546, 'https://ror.org/01v2r3788', 'en', 1, 'https://ror.org/01v2r3788 National Institute of Public Cooperation and Child Development'), (51547, 'https://ror.org/01v37t224', 'no_lang_code', 1, 'https://ror.org/01v37t224 Sherwin Williams (United States)'), (51548, 'https://ror.org/01v3wjv31', 'en', 1, 'https://ror.org/01v3wjv31 Literacy Design Collaborative'), (51549, 'https://ror.org/01v7k9n65', 'no_lang_code', 1, 'https://ror.org/01v7k9n65 Eli Lilly (Switzerland)'), (51550, 'https://ror.org/01va8tm89', 'en', 1, 'https://ror.org/01va8tm89 Consortium for DEWATS Dissemination Society'), (51551, 'https://ror.org/01vb1qg25', 'en', 1, 'https://ror.org/01vb1qg25 Center For Balanced Living'), (51552, 'https://ror.org/01vc16c74', 'en', 1, 'https://ror.org/01vc16c74 Physiology Society of Southern Africa'), (51553, 'https://ror.org/01vdmgn40', 'en', 1, 'https://ror.org/01vdmgn40 National Foundation for India'), (51554, 'https://ror.org/01ve6sd67', 'en', 1, 'https://ror.org/01ve6sd67 Vital Voices'), (51555, 'https://ror.org/01vec3g34', 'en', 1, 'https://ror.org/01vec3g34 Nashville Medical Research Institute'), (51556, 'https://ror.org/01vf6nv75', 'en', 1, 'https://ror.org/01vf6nv75 Professional Assistance for Development Action'), (51557, 'https://ror.org/01vkhxt72', 'en', 1, 'https://ror.org/01vkhxt72 Cummings Foundation'), (51558, 'https://ror.org/01vnr7x82', 'de', 1, 'https://ror.org/01vnr7x82 Diabetes-Zentrum Quakenbrück'), (51559, 'https://ror.org/01vpnjr66', 'en', 1, 'https://ror.org/01vpnjr66 Swiss Philanthropy Foundation'), (51560, 'https://ror.org/01vpve811', 'en', 1, 'https://ror.org/01vpve811 District of Columbia College Access Program'), (51561, 'https://ror.org/01vqcjq29', 'no_lang_code', 1, 'https://ror.org/01vqcjq29 Evestra (Germany)'), (51562, 'https://ror.org/01vsrwr43', 'en', 1, 'https://ror.org/01vsrwr43 Drum Foundation'), (51563, 'https://ror.org/01vst1n89', 'no_lang_code', 1, 'https://ror.org/01vst1n89 Diacon Hospital'), (51564, 'https://ror.org/01vvfz714', 'en', 1, 'https://ror.org/01vvfz714 McLaren Northern Michigan'), (51565, 'https://ror.org/01vvgpy65', 'en', 1, 'https://ror.org/01vvgpy65 Maryland Dermatology Laser Skin and Vein Institute'), (51566, 'https://ror.org/01vwgk497', 'en', 1, 'https://ror.org/01vwgk497 CityBridge Education'), (51567, 'https://ror.org/01vwv8r87', 'en', 1, 'https://ror.org/01vwv8r87 Joshua Frase Foundation'), (51568, 'https://ror.org/01vwxyv67', 'en', 1, 'https://ror.org/01vwxyv67 Lynn Sage Cancer Research Foundation'), (51569, 'https://ror.org/01w1k0456', 'no_lang_code', 1, 'https://ror.org/01w1k0456 Combat Medical (Spain)'), (51570, 'https://ror.org/01w2zpd04', 'no_lang_code', 1, 'https://ror.org/01w2zpd04 T-Mobile (United States)'), (51571, 'https://ror.org/01w3gev13', 'en', 1, 'https://ror.org/01w3gev13 American Public Human Services Association'), (51572, 'https://ror.org/01w45kn29', 'no_lang_code', 1, 'https://ror.org/01w45kn29 Piramal (Germany)'), (51573, 'https://ror.org/01w5nhx84', 'en', 1, 'https://ror.org/01w5nhx84 IVI Valencia Clinic'), (51574, 'https://ror.org/01w63rj87', 'en', 1, 'https://ror.org/01w63rj87 Institute for Health Policy Solutions'); INSERT INTO `rors` VALUES (51575, 'https://ror.org/01w6chh80', 'no_lang_code', 1, 'https://ror.org/01w6chh80 Kreussler (Germany)'), (51576, 'https://ror.org/01w6hrf59', 'pt', 1, 'https://ror.org/01w6hrf59 Hospital Regional de São José Dr. Homero de Miranda Gomes'), (51577, 'https://ror.org/01w78qg15', 'no_lang_code', 1, 'https://ror.org/01w78qg15 Daicel (Japan) 株式会社ダイセル'), (51578, 'https://ror.org/01w7qtj07', 'en', 1, 'https://ror.org/01w7qtj07 Center for Strengthening the Teaching Profession'), (51579, 'https://ror.org/01w7vwe52', 'en', 1, 'https://ror.org/01w7vwe52 Australasian Blistering Diseases Foundation'), (51580, 'https://ror.org/01w8m1867', 'no_lang_code', 1, 'https://ror.org/01w8m1867 Novartis (Australia)'), (51581, 'https://ror.org/01wa16j27', 'en', 1, 'https://ror.org/01wa16j27 Italian Sarcoma Group'), (51582, 'https://ror.org/01wayad04', 'en', 1, 'https://ror.org/01wayad04 Centennial Medical Group'), (51583, 'https://ror.org/01wb8d948', 'sv', 1, 'https://ror.org/01wb8d948 Hans Bang Stiftelsen'), (51584, 'https://ror.org/01wew9097', 'en', 1, 'https://ror.org/01wew9097 Crown Property Bureau'), (51585, 'https://ror.org/01wh3fp78', 'no_lang_code', 1, 'https://ror.org/01wh3fp78 Initiatives (Denmark)'), (51586, 'https://ror.org/01wkath48', 'en', 1, 'https://ror.org/01wkath48 Fourth Hospital of Changsha 长沙市第四医院'), (51587, 'https://ror.org/01wknzm08', 'en', 1, 'https://ror.org/01wknzm08 National Community Pharmacists Association'), (51588, 'https://ror.org/01wkpqc56', 'en', 1, 'https://ror.org/01wkpqc56 Northwest Clinical Trials'), (51589, 'https://ror.org/01wm6dg61', 'no_lang_code', 1, 'https://ror.org/01wm6dg61 Pivot Bio (United States)'), (51590, 'https://ror.org/01wm82e23', 'en', 1, 'https://ror.org/01wm82e23 Medical Advanced Pain Specialists'), (51591, 'https://ror.org/01wp6nz35', 'en', 1, 'https://ror.org/01wp6nz35 Kurt Gödel Society Kurt-Gödel-Gesellschaft'), (51592, 'https://ror.org/01wpwah91', 'en', 1, 'https://ror.org/01wpwah91 FSG'), (51593, 'https://ror.org/01wpwpn91', 'en', 1, 'https://ror.org/01wpwpn91 Therapeutic Health Services'), (51594, 'https://ror.org/01wq69e31', 'pl', 1, 'https://ror.org/01wq69e31 Kostrzyca Forest Gene Bank'), (51595, 'https://ror.org/01wsqv937', 'it', 1, 'https://ror.org/01wsqv937 Azienda Sanitaria Locale Viterbo'), (51596, 'https://ror.org/01wsvqq22', 'en', 1, 'https://ror.org/01wsvqq22 Memorial Hermann The Woodlands Hospital'), (51597, 'https://ror.org/01wwv4x50', 'en', 1, 'https://ror.org/01wwv4x50 Mount Vernon Cancer Centre'), (51598, 'https://ror.org/01wx4a722', 'en', 1, 'https://ror.org/01wx4a722 WaterAid America'), (51599, 'https://ror.org/01wx55d31', 'en', 1, 'https://ror.org/01wx55d31 Pulmonary and Allergy Associates'), (51600, 'https://ror.org/01wyyby64', 'no_lang_code', 1, 'https://ror.org/01wyyby64 Oxurion (Ireland)'), (51601, 'https://ror.org/01x5csq95', 'en', 1, 'https://ror.org/01x5csq95 Coalition to Transform Advanced Care'), (51602, 'https://ror.org/01x5dfh38', 'en', 1, 'https://ror.org/01x5dfh38 Zhongshan People''s Hospital 中山市人民医院'), (51603, 'https://ror.org/01x5ppp27', 'en', 1, 'https://ror.org/01x5ppp27 Partnership for Drug-Free Kids'), (51604, 'https://ror.org/01x65sg43', 'en', 1, 'https://ror.org/01x65sg43 Muttart Foundation'), (51605, 'https://ror.org/01x6s1m65', 'no_lang_code', 1, 'https://ror.org/01x6s1m65 Accord (United Kingdom)'), (51606, 'https://ror.org/01x8qsj42', 'en', 1, 'https://ror.org/01x8qsj42 Chapman Foundations'), (51607, 'https://ror.org/01xbg8m54', 'en', 1, 'https://ror.org/01xbg8m54 Youth Development Labs'), (51608, 'https://ror.org/01xcva522', 'en', 1, 'https://ror.org/01xcva522 Petco Foundation'), (51609, 'https://ror.org/01xd82d18', 'en', 1, 'https://ror.org/01xd82d18 PAST Foundation'), (51610, 'https://ror.org/01xe96535', 'no_lang_code', 1, 'https://ror.org/01xe96535 Wonderland Nurserygoods (Taiwan)'), (51611, 'https://ror.org/01xgsxb78', 'no_lang_code', 1, 'https://ror.org/01xgsxb78 Dushtha Shasthya Kendra'), (51612, 'https://ror.org/01xh0ac86', 'en', 1, 'https://ror.org/01xh0ac86 San Diego County Library'), (51613, 'https://ror.org/01xpmpn11', 'en', 1, 'https://ror.org/01xpmpn11 Atlantic Street Center'), (51614, 'https://ror.org/01xrqp957', 'en', 1, 'https://ror.org/01xrqp957 Georgia Health Foundation'), (51615, 'https://ror.org/01xvnnv03', 'en', 1, 'https://ror.org/01xvnnv03 Omni Eye Services'), (51616, 'https://ror.org/01xxn5f34', 'en', 1, 'https://ror.org/01xxn5f34 Angelman Syndrome Foundation'), (51617, 'https://ror.org/01xyac661', 'en', 1, 'https://ror.org/01xyac661 Colorado Joint Replacement'), (51618, 'https://ror.org/01y2xw046', 'en', 1, 'https://ror.org/01y2xw046 Central Indiana Gastroenterology Group'), (51619, 'https://ror.org/01y3pph13', 'fr', 1, 'https://ror.org/01y3pph13 Fondation Motrice'), (51620, 'https://ror.org/01y4ngt02', 'en', 1, 'https://ror.org/01y4ngt02 Dimbleby Cancer Care'), (51621, 'https://ror.org/01y63b286', 'en', 1, 'https://ror.org/01y63b286 National Centre for Advanced Studies in Humanities and Social Sciences'), (51622, 'https://ror.org/01y6fbx98', 'no_lang_code', 1, 'https://ror.org/01y6fbx98 Apeel Sciences (United States)'), (51623, 'https://ror.org/01y6tr744', 'en', 1, 'https://ror.org/01y6tr744 New Mexico State Library'), (51624, 'https://ror.org/01y7b2q33', 'no_lang_code', 1, 'https://ror.org/01y7b2q33 Aava Medical Centre'), (51625, 'https://ror.org/01y7ny159', 'no_lang_code', 1, 'https://ror.org/01y7ny159 Mitel (Canada)'), (51626, 'https://ror.org/01y7px869', 'no_lang_code', 1, 'https://ror.org/01y7px869 Med Center'), (51627, 'https://ror.org/01y8cpr39', 'en', 1, 'https://ror.org/01y8cpr39 Binzhou People''s Hospital 滨州人民医院'), (51628, 'https://ror.org/01y8eh752', 'no_lang_code', 1, 'https://ror.org/01y8eh752 Strathmann (Germany)'), (51629, 'https://ror.org/01y8wa902', 'en', 1, 'https://ror.org/01y8wa902 Panzi Foundation'), (51630, 'https://ror.org/01y94yj57', 'no_lang_code', 1, 'https://ror.org/01y94yj57 Can-Fite BioPharma (Israel)'), (51631, 'https://ror.org/01ya52t91', 'en', 1, 'https://ror.org/01ya52t91 National Center on Addiction and Substance Abuse at Columbia University'), (51632, 'https://ror.org/01yb0qj30', 'en', 1, 'https://ror.org/01yb0qj30 National Endowment for Financial Education'), (51633, 'https://ror.org/01ydxj048', 'en', 1, 'https://ror.org/01ydxj048 Rice Institute'), (51634, 'https://ror.org/01yfxhp89', 'en', 1, 'https://ror.org/01yfxhp89 Ogród Zoologiczny we Wrocławiu Wrocław Zoo'), (51635, 'https://ror.org/01yhac426', 'no_lang_code', 1, 'https://ror.org/01yhac426 Memjet (Ireland)'), (51636, 'https://ror.org/01yjpd768', 'en', 1, 'https://ror.org/01yjpd768 International Order of Alhambra'), (51637, 'https://ror.org/01yp0ar11', 'en', 1, 'https://ror.org/01yp0ar11 Biologos Foundation'), (51638, 'https://ror.org/01ypd6q38', 'en', 1, 'https://ror.org/01ypd6q38 North American Menopause Society'), (51639, 'https://ror.org/01ypfvm35', 'nl', 1, 'https://ror.org/01ypfvm35 Dr Kolbach Kliniek'), (51640, 'https://ror.org/01ypy9x82', 'en', 1, 'https://ror.org/01ypy9x82 Georgia Center for Women'), (51641, 'https://ror.org/01yqat764', 'no_lang_code', 1, 'https://ror.org/01yqat764 CommScope (United States)'), (51642, 'https://ror.org/01yqkfx81', 'en', 1, 'https://ror.org/01yqkfx81 Translational Research in Oncology'), (51643, 'https://ror.org/01yr4dd89', 'da', 1, 'https://ror.org/01yr4dd89 Hesteafgiftsfondens'), (51644, 'https://ror.org/01yr7qe95', 'en', 1, 'https://ror.org/01yr7qe95 Empire Eye Physicians'), (51645, 'https://ror.org/01yra0v32', 'sv', 1, 'https://ror.org/01yra0v32 Njurfonden'), (51646, 'https://ror.org/01yrkpa05', 'no_lang_code', 1, 'https://ror.org/01yrkpa05 Geze (Germany)'), (51647, 'https://ror.org/01yrv0w88', 'no_lang_code', 1, 'https://ror.org/01yrv0w88 Mineralbrunnen Überkingen Teinach Beteiligungs'), (51648, 'https://ror.org/01yvdtg58', 'en', 1, 'https://ror.org/01yvdtg58 Simha Foundation'), (51649, 'https://ror.org/01ywtay82', 'en', 1, 'https://ror.org/01ywtay82 Education & Research Foundation'), (51650, 'https://ror.org/01yx62742', 'fr', 1, 'https://ror.org/01yx62742 Adolphe Merkle Institute'), (51651, 'https://ror.org/01yyz9v67', 'en', 1, 'https://ror.org/01yyz9v67 Care-for-Rare Foundation Care-for-Rare-Stiftung'), (51652, 'https://ror.org/01z0axe47', 'en', 1, 'https://ror.org/01z0axe47 Slocum Center for Orthopedics and Sports Medicine'), (51653, 'https://ror.org/01z0efz13', 'en', 1, 'https://ror.org/01z0efz13 Aichi Science & Technology Foundation 公益財団法人科学技術交流財団'), (51654, 'https://ror.org/01z1y5p14', 'en', 1, 'https://ror.org/01z1y5p14 Action in the Community Environment'), (51655, 'https://ror.org/01z28x230', 'en', 1, 'https://ror.org/01z28x230 Medicare Rights Center'), (51656, 'https://ror.org/01z2dd859', 'en', 1, 'https://ror.org/01z2dd859 National Hispanic Medical Association'), (51657, 'https://ror.org/01z37rs75', 'en', 1, 'https://ror.org/01z37rs75 Centers for Behavioral Health'), (51658, 'https://ror.org/01z40a451', 'no_lang_code', 1, 'https://ror.org/01z40a451 Synexus (Germany)'), (51659, 'https://ror.org/01z4kwe65', 'ca', 1, 'https://ror.org/01z4kwe65 Associació per la Recerca Oncològica'), (51660, 'https://ror.org/01z531p41', 'en', 1, 'https://ror.org/01z531p41 Ogawa Science and Technology Foundation 公益財団法人 小川科学技術財団'), (51661, 'https://ror.org/01z6cw088', 'en', 1, 'https://ror.org/01z6cw088 Chinese Academy of Medical Sciences Dermatology Hospital'), (51662, 'https://ror.org/01z6wpz16', 'no_lang_code', 1, 'https://ror.org/01z6wpz16 Merck Serono (Italy)'), (51663, 'https://ror.org/01z7cky43', 'en', 1, 'https://ror.org/01z7cky43 Cancer Research Wales'), (51664, 'https://ror.org/01za0ff56', 'no_lang_code', 1, 'https://ror.org/01za0ff56 CellAct Pharma (Germany)'), (51665, 'https://ror.org/01zas4j60', 'en', 1, 'https://ror.org/01zas4j60 MTV Staying Alive'), (51666, 'https://ror.org/01zccn017', 'en', 1, 'https://ror.org/01zccn017 GameDesk'), (51667, 'https://ror.org/01zk1vt68', 'no_lang_code', 1, 'https://ror.org/01zk1vt68 Pfizer (Belgium)'), (51668, 'https://ror.org/01zkd3118', 'en', 1, 'https://ror.org/01zkd3118 Nomis Foundation'), (51669, 'https://ror.org/01zkyek34', 'no_lang_code', 1, 'https://ror.org/01zkyek34 Probelte Pharma (Spain)'), (51670, 'https://ror.org/01zm5rz38', 'en', 1, 'https://ror.org/01zm5rz38 National Council for Tertiary Education'), (51671, 'https://ror.org/01zm9va38', 'en', 1, 'https://ror.org/01zm9va38 Greater Kanawha Valley Foundation'), (51672, 'https://ror.org/01znfak46', 'en', 1, 'https://ror.org/01znfak46 Cumberland Medical Center'), (51673, 'https://ror.org/01znn6097', 'en', 1, 'https://ror.org/01znn6097 San Juan Oncology Associates'), (51674, 'https://ror.org/01zqyhk59', 'en', 1, 'https://ror.org/01zqyhk59 Defense Technical Information Center'), (51675, 'https://ror.org/01zr3vr20', 'en', 1, 'https://ror.org/01zr3vr20 Association of Washington School Principals'), (51676, 'https://ror.org/01zrgk985', 'en', 1, 'https://ror.org/01zrgk985 ChiangRai Prachanukroh Hospital โรงพยาบาล เชียงรายประชานุเคราะห์'), (51677, 'https://ror.org/01zs69903', 'no_lang_code', 1, 'https://ror.org/01zs69903 Brembo (United Kingdom)'), (51678, 'https://ror.org/01zs6bp63', 'nl', 1, 'https://ror.org/01zs6bp63 Stichting Kinderoncologie Nederland'), (51679, 'https://ror.org/01zsmba62', 'en', 1, 'https://ror.org/01zsmba62 Harvey L. Neiman Health Policy Institute'), (51680, 'https://ror.org/01zwas239', 'en', 1, 'https://ror.org/01zwas239 Springfield Neurology Clinical Trials'), (51681, 'https://ror.org/01zx7tr29', 'en', 1, 'https://ror.org/01zx7tr29 Barlow Medical Centre'), (51682, 'https://ror.org/01zxxbs36', 'no_lang_code', 1, 'https://ror.org/01zxxbs36 Manatt, Phelps & Phillips (United States)'), (51683, 'https://ror.org/01zyn4z03', 'en', 1, 'https://ror.org/01zyn4z03 Beijing Luhe Hospital Affiliated to Capital Medical University 首都医科大学附属北京潞河医院'), (51684, 'https://ror.org/0200vq221', 'no_lang_code', 1, 'https://ror.org/0200vq221 Bamrasnaradura Infectious Diseases Institute'), (51685, 'https://ror.org/0200x2j16', 'sv', 1, 'https://ror.org/0200x2j16 Praktikertjänst'), (51686, 'https://ror.org/0202k4b21', 'no_lang_code', 1, 'https://ror.org/0202k4b21 TiGenix (Spain)'), (51687, 'https://ror.org/0202qvf63', 'no_lang_code', 1, 'https://ror.org/0202qvf63 Kunstgreb (Denmark)'), (51688, 'https://ror.org/02043dc11', 'en', 1, 'https://ror.org/02043dc11 Segal Institute for Clinical Research'), (51689, 'https://ror.org/0204daw86', 'en', 1, 'https://ror.org/0204daw86 National Office for Sanitation of Senegal'), (51690, 'https://ror.org/0204m7391', 'en', 1, 'https://ror.org/0204m7391 Drs. Quinn, Foster & Associates'), (51691, 'https://ror.org/0205d0r45', 'en', 1, 'https://ror.org/0205d0r45 Avera Heart Hospital'), (51692, 'https://ror.org/0205s4214', 'en', 1, 'https://ror.org/0205s4214 Minnesota Ovarian Cancer Alliance'), (51693, 'https://ror.org/0206abf41', 'en', 1, 'https://ror.org/0206abf41 Learning Forward'), (51694, 'https://ror.org/0207wsg03', 'en', 1, 'https://ror.org/0207wsg03 LankellyChase Foundation'), (51695, 'https://ror.org/020ba9354', 'en', 1, 'https://ror.org/020ba9354 Alpha Phi Foundation'), (51696, 'https://ror.org/020dbrn58', 'no_lang_code', 1, 'https://ror.org/020dbrn58 Lundbeck (Spain)'), (51697, 'https://ror.org/020ea8709', 'no_lang_code', 1, 'https://ror.org/020ea8709 Premier Clinical Research (United States)'), (51698, 'https://ror.org/020fcst87', 'no_lang_code', 1, 'https://ror.org/020fcst87 Hewlett-Packard (Netherlands)'), (51699, 'https://ror.org/020fqx327', 'en', 1, 'https://ror.org/020fqx327 Achievement School District'), (51700, 'https://ror.org/020ggem82', 'en', 1, 'https://ror.org/020ggem82 Ball Brothers Foundation'), (51701, 'https://ror.org/020gqp277', 'en', 1, 'https://ror.org/020gqp277 British Columbia Environmental and Occupational Health Research Network'), (51702, 'https://ror.org/020jwmq86', 'no_lang_code', 1, 'https://ror.org/020jwmq86 Johnson & Johnson (Sweden)'), (51703, 'https://ror.org/020k2cq76', 'en', 1, 'https://ror.org/020k2cq76 Barakat Trust'), (51704, 'https://ror.org/020mag653', 'en', 1, 'https://ror.org/020mag653 Latvian Centre for Contemporary Art'), (51705, 'https://ror.org/020mmns30', 'en', 1, 'https://ror.org/020mmns30 Chi Omega Foundation'), (51706, 'https://ror.org/020my6q50', 'no_lang_code', 1, 'https://ror.org/020my6q50 Dr. Kade Pharmazeutische Fabrik (Germany)'), (51707, 'https://ror.org/020pyx735', 'no_lang_code', 1, 'https://ror.org/020pyx735 Danieli (Italy)'), (51708, 'https://ror.org/020qgqz48', 'no_lang_code', 1, 'https://ror.org/020qgqz48 Berry (India)'), (51709, 'https://ror.org/020r55g68', 'da', 1, 'https://ror.org/020r55g68 Regionshospitalet Silkeborg'), (51710, 'https://ror.org/020sa1y42', 'no_lang_code', 1, 'https://ror.org/020sa1y42 Sager Pharma (Hungary)'), (51711, 'https://ror.org/020vyhe78', 'en', 1, 'https://ror.org/020vyhe78 Ohnishi Neurological Center 大西脳神経外科病院'), (51712, 'https://ror.org/020x80477', 'no_lang_code', 1, 'https://ror.org/020x80477 Jianan Mental Hospital'), (51713, 'https://ror.org/020xw1f06', 'en', 1, 'https://ror.org/020xw1f06 Italian Scientists and Scholars in North America Foundation'), (51714, 'https://ror.org/020y1sx51', 'en', 1, 'https://ror.org/020y1sx51 Vellore Christian Medical College Foundation'), (51715, 'https://ror.org/020yp9q46', 'no_lang_code', 1, 'https://ror.org/020yp9q46 Bionorica (Germany)'), (51716, 'https://ror.org/0213kt015', 'en', 1, 'https://ror.org/0213kt015 Faith in Public Life'), (51717, 'https://ror.org/0215cks11', 'en', 1, 'https://ror.org/0215cks11 Cooper Trewin Memorial SUDC Research Fund'), (51718, 'https://ror.org/0216n6706', 'en', 1, 'https://ror.org/0216n6706 Women Moving Millions'), (51719, 'https://ror.org/0216taa64', 'en', 1, 'https://ror.org/0216taa64 Mcnulty Foundation'), (51720, 'https://ror.org/0217khz32', 'en', 1, 'https://ror.org/0217khz32 Binational Industrial Research and Development Foundation'), (51721, 'https://ror.org/021820f58', 'no_lang_code', 1, 'https://ror.org/021820f58 Xenikos (Netherlands)'), (51722, 'https://ror.org/0219f2672', 'no_lang_code', 1, 'https://ror.org/0219f2672 Abbott (Netherlands)'), (51723, 'https://ror.org/0219m0g06', 'no_lang_code', 1, 'https://ror.org/0219m0g06 Eberspächer (Germany)'), (51724, 'https://ror.org/021bdxd25', 'no_lang_code', 1, 'https://ror.org/021bdxd25 Clinical Inquest Center (United States)'), (51725, 'https://ror.org/021e5n641', 'en', 1, 'https://ror.org/021e5n641 Creative Capital Foundation'), (51726, 'https://ror.org/021ejmk29', 'en', 1, 'https://ror.org/021ejmk29 Compliant Clinical Research'), (51727, 'https://ror.org/021et8d97', 'en', 1, 'https://ror.org/021et8d97 World Health Partners'), (51728, 'https://ror.org/021h1av98', 'en', 1, 'https://ror.org/021h1av98 Heart Hospital Baylor Plano'), (51729, 'https://ror.org/021hndv62', 'en', 1, 'https://ror.org/021hndv62 JGW Patterson Foundation'), (51730, 'https://ror.org/021jz4j66', 'no_lang_code', 1, 'https://ror.org/021jz4j66 Ipsen (Spain)'), (51731, 'https://ror.org/021kyjw72', 'en', 1, 'https://ror.org/021kyjw72 Ann Arbor Area Community Foundation'), (51732, 'https://ror.org/021mpp443', 'en', 1, 'https://ror.org/021mpp443 Qihe People''s Hospital 齐河人民医院'), (51733, 'https://ror.org/021n09h20', 'en', 1, 'https://ror.org/021n09h20 Guthy-Jackson Charitable Foundation'), (51734, 'https://ror.org/021pcgg80', 'en', 1, 'https://ror.org/021pcgg80 Temple Lung Center'), (51735, 'https://ror.org/021pjrd95', 'no_lang_code', 1, 'https://ror.org/021pjrd95 AMEN'), (51736, 'https://ror.org/021qqv739', 'en', 1, 'https://ror.org/021qqv739 Beacon Center of Tennessee'), (51737, 'https://ror.org/021rkpk21', 'en', 1, 'https://ror.org/021rkpk21 Australian Geographic Society'), (51738, 'https://ror.org/021s9ae49', 'en', 1, 'https://ror.org/021s9ae49 Worldwide Documentaries'), (51739, 'https://ror.org/021tea790', 'no_lang_code', 1, 'https://ror.org/021tea790 TÜV SÜD (Singapore)'), (51740, 'https://ror.org/021tmn508', 'no_lang_code', 1, 'https://ror.org/021tmn508 AstraZeneca (Netherlands)'), (51741, 'https://ror.org/021wdzv30', 'en', 1, 'https://ror.org/021wdzv30 ARCH Development Corporation'), (51742, 'https://ror.org/021wm2t34', 'en', 1, 'https://ror.org/021wm2t34 Seattle Parks Foundation'), (51743, 'https://ror.org/021yan307', 'en', 1, 'https://ror.org/021yan307 Market Matters'), (51744, 'https://ror.org/021yx2896', 'en', 1, 'https://ror.org/021yx2896 Retina Institute of Hawaii'), (51745, 'https://ror.org/02229an29', 'en', 1, 'https://ror.org/02229an29 Con Alma Health Foundation'), (51746, 'https://ror.org/0222bz953', 'en', 1, 'https://ror.org/0222bz953 Cannon Foundation'), (51747, 'https://ror.org/0224dwf10', 'no_lang_code', 1, 'https://ror.org/0224dwf10 Osmotica Pharmaceutical (United States)'), (51748, 'https://ror.org/0224wbx43', 'da', 1, 'https://ror.org/0224wbx43 Kongeriget Danmarks Hesteforsikring'), (51749, 'https://ror.org/02250w954', 'en', 1, 'https://ror.org/02250w954 Philanthropy Ohio'), (51750, 'https://ror.org/0226kx453', 'en', 1, 'https://ror.org/0226kx453 Riverside County Library System'), (51751, 'https://ror.org/02282f973', 'no_lang_code', 1, 'https://ror.org/02282f973 Spot On Sciences (United States)'), (51752, 'https://ror.org/022ag4q91', 'it', 1, 'https://ror.org/022ag4q91 Fondazioni Casali'), (51753, 'https://ror.org/022bzg803', 'en', 1, 'https://ror.org/022bzg803 Landbruks- og matdepartementet Ministry of Agriculture and Food'), (51754, 'https://ror.org/022h0yw65', 'en', 1, 'https://ror.org/022h0yw65 Korle Bu Neuroscience Foundation'), (51755, 'https://ror.org/022k50n33', 'no_lang_code', 1, 'https://ror.org/022k50n33 Octapharma (Austria)'), (51756, 'https://ror.org/022m5tt98', 'no_lang_code', 1, 'https://ror.org/022m5tt98 Kudelski (Switzerland)'), (51757, 'https://ror.org/022nvf535', 'en', 1, 'https://ror.org/022nvf535 People''s Hospital of Kaizhou District 重庆开县人民医院'), (51758, 'https://ror.org/022nw7x84', 'en', 1, 'https://ror.org/022nw7x84 Ambrose Monell Foundation'), (51759, 'https://ror.org/022p4vd20', 'en', 1, 'https://ror.org/022p4vd20 Orange County Community Foundation'), (51760, 'https://ror.org/022pen470', 'en', 1, 'https://ror.org/022pen470 New York City Police Foundation'), (51761, 'https://ror.org/022pga911', 'it', 1, 'https://ror.org/022pga911 Fondazione Monte dei Paschi di Siena'), (51762, 'https://ror.org/022phs473', 'en', 1, 'https://ror.org/022phs473 Vienna Institute for Research in Ocular Surgery'), (51763, 'https://ror.org/022q8ez38', 'en', 1, 'https://ror.org/022q8ez38 Altoona Center for Clinical Research'), (51764, 'https://ror.org/022qrkq94', 'en', 1, 'https://ror.org/022qrkq94 Colcom Foundation'), (51765, 'https://ror.org/022rqag31', 'en', 1, 'https://ror.org/022rqag31 Albuquerque Public Schools'), (51766, 'https://ror.org/022sa6t23', 'en', 1, 'https://ror.org/022sa6t23 Family Care International'), (51767, 'https://ror.org/022w6gv64', 'en', 1, 'https://ror.org/022w6gv64 Topolovgrad Municipality Община Тополовград'), (51768, 'https://ror.org/022wqqm54', 'en', 1, 'https://ror.org/022wqqm54 AlphaNet'), (51769, 'https://ror.org/022ww2d20', 'en', 1, 'https://ror.org/022ww2d20 Charles D. Jacobus Family Foundation'), (51770, 'https://ror.org/022xccz03', 'en', 1, 'https://ror.org/022xccz03 Foundation for Arable Research'), (51771, 'https://ror.org/0231rt128', 'no_lang_code', 1, 'https://ror.org/0231rt128 GS Yuasa (Japan) 株式会社ジーエス・ユアサ コーポレーション'), (51772, 'https://ror.org/0233s3730', 'no_lang_code', 1, 'https://ror.org/0233s3730 Pharming Group (Netherlands)'), (51773, 'https://ror.org/02349x007', 'en', 1, 'https://ror.org/02349x007 IDEA Public Schools'), (51774, 'https://ror.org/0234w4k48', 'en', 1, 'https://ror.org/0234w4k48 Forsyth County Schools'), (51775, 'https://ror.org/0235ad950', 'en', 1, 'https://ror.org/0235ad950 Innovations for Poverty Action'), (51776, 'https://ror.org/0236xjz69', 'en', 1, 'https://ror.org/0236xjz69 Physician Care Clinical Research'), (51777, 'https://ror.org/02383bz17', 'no_lang_code', 1, 'https://ror.org/02383bz17 Micron Biomedical (United States)'), (51778, 'https://ror.org/02384d823', 'no_lang_code', 1, 'https://ror.org/02384d823 Metalsa (Germany)'), (51779, 'https://ror.org/0238xm951', 'en', 1, 'https://ror.org/0238xm951 Mind Science Foundation'), (51780, 'https://ror.org/023907v80', 'en', 1, 'https://ror.org/023907v80 Gill Bergska Foundation'), (51781, 'https://ror.org/023j15x08', 'en', 1, 'https://ror.org/023j15x08 Eastern Association for the Surgery of Trauma'), (51782, 'https://ror.org/023jg3g40', 'en', 1, 'https://ror.org/023jg3g40 Jewett Orthopaedic Clinic'), (51783, 'https://ror.org/023m03q03', 'en', 1, 'https://ror.org/023m03q03 American Floral Endowment'), (51784, 'https://ror.org/023pmtm07', 'en', 1, 'https://ror.org/023pmtm07 Healthcentric Advisors'), (51785, 'https://ror.org/023qwbz75', 'en', 1, 'https://ror.org/023qwbz75 Advanced Neurology Specialists'), (51786, 'https://ror.org/023r70v40', 'fr', 1, 'https://ror.org/023r70v40 Clinique Charcot'), (51787, 'https://ror.org/023ryx304', 'en', 1, 'https://ror.org/023ryx304 Byblos Bank'), (51788, 'https://ror.org/023ssda55', 'en', 1, 'https://ror.org/023ssda55 Fukuda Foundation for Medical Technology 財団法人福田記念医療技術振興財団は'), (51789, 'https://ror.org/023t48c08', 'en', 1, 'https://ror.org/023t48c08 American Wildlife Conservation Foundation'), (51790, 'https://ror.org/023t5f665', 'en', 1, 'https://ror.org/023t5f665 Humana Foundation'), (51791, 'https://ror.org/023thvq22', 'en', 1, 'https://ror.org/023thvq22 United Federation of Teachers'), (51792, 'https://ror.org/023w2cy02', 'no_lang_code', 1, 'https://ror.org/023w2cy02 Delcath Systems (United States)'), (51793, 'https://ror.org/023zt9146', 'en', 1, 'https://ror.org/023zt9146 British Dietetic Association'), (51794, 'https://ror.org/0240vc720', 'nl', 1, 'https://ror.org/0240vc720 Havenziekenhuis Rotterdam'), (51795, 'https://ror.org/0241y7z93', 'en', 1, 'https://ror.org/0241y7z93 Surveying and Mapping Authority of the Republic of Slovenia'), (51796, 'https://ror.org/0243wgp76', 'en', 1, 'https://ror.org/0243wgp76 Foundation for Health in Aging'), (51797, 'https://ror.org/024465936', 'en', 1, 'https://ror.org/024465936 Diabetes Zentrum Mergentheim German Diabetes Center Mergentheim'), (51798, 'https://ror.org/02448mh91', 'en', 1, 'https://ror.org/02448mh91 Help For Children'), (51799, 'https://ror.org/02455y304', 'en', 1, 'https://ror.org/02455y304 Institute for Global Engagement'), (51800, 'https://ror.org/0246qdk84', 'en', 1, 'https://ror.org/0246qdk84 Innovation Center Denmark'), (51801, 'https://ror.org/0246w5s24', 'no_lang_code', 1, 'https://ror.org/0246w5s24 Skin Specialty Dermatology (United States)'), (51802, 'https://ror.org/02473g334', 'no_lang_code', 1, 'https://ror.org/02473g334 Bulgarian Ports Infrastructure (Bulgaria) ДЪРЖАВНО ПРЕДПРИЯТИЕ ПРИСТАНИЩНА ИНФРАСТРУКТУРА'), (51803, 'https://ror.org/0247aft91', 'en', 1, 'https://ror.org/0247aft91 The Herbert H. and Grace A. Dow Foundation'), (51804, 'https://ror.org/0247xav12', 'en', 1, 'https://ror.org/0247xav12 TEDA International Cardiovascular Hospital 泰达国际心血管病医院'), (51805, 'https://ror.org/02495av31', 'da', 1, 'https://ror.org/02495av31 Selskabet for Skole- og Uddannelseshistorie'), (51806, 'https://ror.org/024a5cr96', 'en', 1, 'https://ror.org/024a5cr96 Education and Research Foundation for Nuclear Medicine and Molecular Imaging'), (51807, 'https://ror.org/024eg5z54', 'no_lang_code', 1, 'https://ror.org/024eg5z54 Asacpharma (Spain)'), (51808, 'https://ror.org/024f0th47', 'no_lang_code', 1, 'https://ror.org/024f0th47 Regenmedtx (United States)'), (51809, 'https://ror.org/024f1d020', 'en', 1, 'https://ror.org/024f1d020 Consultants in Neurology'), (51810, 'https://ror.org/024g0n729', 'ms', 1, 'https://ror.org/024g0n729 Hospital Pulau Pinang'), (51811, 'https://ror.org/024hrna66', 'en', 1, 'https://ror.org/024hrna66 As You Sow'), (51812, 'https://ror.org/024jbvq59', 'en', 1, 'https://ror.org/024jbvq59 Japan Foundation London'), (51813, 'https://ror.org/024mpmb63', 'no_lang_code', 1, 'https://ror.org/024mpmb63 Joled (Japan)'), (51814, 'https://ror.org/024njzv49', 'no_lang_code', 1, 'https://ror.org/024njzv49 Chiesi (France)'), (51815, 'https://ror.org/024rmzz69', 'no_lang_code', 1, 'https://ror.org/024rmzz69 Nestlé (Sweden)'), (51816, 'https://ror.org/024s32d89', 'no_lang_code', 1, 'https://ror.org/024s32d89 Glenmark Pharmaceuticals (Switzerland)'), (51817, 'https://ror.org/024vd1y77', 'en', 1, 'https://ror.org/024vd1y77 Heartland Research Associates'), (51818, 'https://ror.org/024w2fr05', 'pt', 1, 'https://ror.org/024w2fr05 Grupo Santa Casa de Belo Horizonte'), (51819, 'https://ror.org/024w8hz81', 'en', 1, 'https://ror.org/024w8hz81 Cornea Associates of Texas'), (51820, 'https://ror.org/024wgaf87', 'en', 1, 'https://ror.org/024wgaf87 Mood Disorders Association of British Columbia'), (51821, 'https://ror.org/024zaz802', 'pl', 1, 'https://ror.org/024zaz802 Podlaska Regionalna Organizacja Turystyczna'), (51822, 'https://ror.org/024zgsn52', 'en', 1, 'https://ror.org/024zgsn52 Essex Cardiothoracic Centre'), (51823, 'https://ror.org/025260c90', 'en', 1, 'https://ror.org/025260c90 Innovation Center Denmark'), (51824, 'https://ror.org/0252chk84', 'en', 1, 'https://ror.org/0252chk84 Thomas B. Fordham Institute'), (51825, 'https://ror.org/0254sjn21', 'en', 1, 'https://ror.org/0254sjn21 National Hispanic Health Foundation'), (51826, 'https://ror.org/025883808', 'it', 1, 'https://ror.org/025883808 Gruppo Italiano per lo Studio dei Carcinomi dell’Apparato Digerente'), (51827, 'https://ror.org/0258v0346', 'en', 1, 'https://ror.org/0258v0346 Matthew Larson Foundation'), (51828, 'https://ror.org/0259b0q13', 'no_lang_code', 1, 'https://ror.org/0259b0q13 Gene PreDiT (Portugal)'), (51829, 'https://ror.org/025cyvq34', 'no_lang_code', 1, 'https://ror.org/025cyvq34 Athena Infonomics (India)'), (51830, 'https://ror.org/025dm5t28', 'en', 1, 'https://ror.org/025dm5t28 Donnell-Kay Foundation'), (51831, 'https://ror.org/025dpe082', 'en', 1, 'https://ror.org/025dpe082 Foundation for Health Leadership & Innovation'), (51832, 'https://ror.org/025fgft18', 'en', 1, 'https://ror.org/025fgft18 Morris Stulsaft Foundation'), (51833, 'https://ror.org/025frct77', 'en', 1, 'https://ror.org/025frct77 Jewish Community Foundation of Greater Kansas City'), (51834, 'https://ror.org/025ghhr15', 'no_lang_code', 1, 'https://ror.org/025ghhr15 NeuroVive Pharmaceutical (Sweden)'), (51835, 'https://ror.org/025jctj87', 'no_lang_code', 1, 'https://ror.org/025jctj87 Celimmune (United States)'), (51836, 'https://ror.org/025jyy333', 'en', 1, 'https://ror.org/025jyy333 National Center for Higher Education Management Systems'), (51837, 'https://ror.org/025kcyv21', 'no_lang_code', 1, 'https://ror.org/025kcyv21 Cummins Allison (United States)'), (51838, 'https://ror.org/025mwe555', 'en', 1, 'https://ror.org/025mwe555 Culinary Trust'), (51839, 'https://ror.org/025q5k762', 'no_lang_code', 1, 'https://ror.org/025q5k762 DonorsTrust'), (51840, 'https://ror.org/025s5m774', 'en', 1, 'https://ror.org/025s5m774 Cristo Rey Network'), (51841, 'https://ror.org/025sg0039', 'en', 1, 'https://ror.org/025sg0039 Regional Center for Prevention and Control of AIDS and Infectious Diseases Областной медицинский центр по борьбе с инфекционными заболеваниями'), (51842, 'https://ror.org/025srm412', 'en', 1, 'https://ror.org/025srm412 Sutter Roseville Medical Center'), (51843, 'https://ror.org/025xp7q94', 'en', 1, 'https://ror.org/025xp7q94 Pinnacle Orthopedics'), (51844, 'https://ror.org/025zfqq91', 'no_lang_code', 1, 'https://ror.org/025zfqq91 Baader Food Processing Machinery (Germany)'), (51845, 'https://ror.org/025zwvh44', 'no_lang_code', 1, 'https://ror.org/025zwvh44 AbCellera (Canada)'), (51846, 'https://ror.org/02624hr86', 'en', 1, 'https://ror.org/02624hr86 Center for Land Use Interpretation'), (51847, 'https://ror.org/0262v8w25', 'en', 1, 'https://ror.org/0262v8w25 Global Risk Institute in Financial Services'), (51848, 'https://ror.org/0263g5487', 'da', 1, 'https://ror.org/0263g5487 Frimodt-Heineke Fonden'), (51849, 'https://ror.org/02653sm42', 'en', 1, 'https://ror.org/02653sm42 Upper Grand Family Health Team'), (51850, 'https://ror.org/0269fty31', 'en', 1, 'https://ror.org/0269fty31 Shaoxing Second Hospital 绍兴市第二医院'), (51851, 'https://ror.org/026cvv862', 'lv', 1, 'https://ror.org/026cvv862 Balteneko'), (51852, 'https://ror.org/026d1tb50', 'no_lang_code', 1, 'https://ror.org/026d1tb50 Inno-Water (Hungary)'), (51853, 'https://ror.org/026h3kw78', 'en', 1, 'https://ror.org/026h3kw78 Australian Dental Industry Association'), (51854, 'https://ror.org/026jg0516', 'no_lang_code', 1, 'https://ror.org/026jg0516 Johnson Controls (Japan)'), (51855, 'https://ror.org/026jmga48', 'no_lang_code', 1, 'https://ror.org/026jmga48 Ipsen (Netherlands)'), (51856, 'https://ror.org/026m9rg85', 'en', 1, 'https://ror.org/026m9rg85 Brazilian Society of Tropical Medicine Sociedade Brasileira de Medicina Tropical'), (51857, 'https://ror.org/026qe1m81', 'fr', 1, 'https://ror.org/026qe1m81 Hôpital de Morges'), (51858, 'https://ror.org/026s76z34', 'no_lang_code', 1, 'https://ror.org/026s76z34 Consumer Product Testing Company (United States)'), (51859, 'https://ror.org/026ssdh77', 'en', 1, 'https://ror.org/026ssdh77 Canadian Allergy, Asthma and Immunology Foundation Fondation Canadienne d''Allergie, d''Asthme et d''Immunologie'), (51860, 'https://ror.org/026t0qb38', 'en', 1, 'https://ror.org/026t0qb38 Clinical Research Associates of Tidewater'), (51861, 'https://ror.org/026t1zr39', 'en', 1, 'https://ror.org/026t1zr39 Neuroendocrine Tumor Research Foundation'), (51862, 'https://ror.org/026tcwf27', 'en', 1, 'https://ror.org/026tcwf27 National Consumer Voice for Quality Long-Term Care'), (51863, 'https://ror.org/026w1gw23', 'no_lang_code', 1, 'https://ror.org/026w1gw23 Biotest (Austria)'), (51864, 'https://ror.org/026wbfy45', 'en', 1, 'https://ror.org/026wbfy45 Bush Foundation'), (51865, 'https://ror.org/026wnn461', 'en', 1, 'https://ror.org/026wnn461 Mediroyal Prevenciós Központ Mediroyal Prevention Center'), (51866, 'https://ror.org/026xkpb31', 'es', 1, 'https://ror.org/026xkpb31 Sociedad Andaluza de Trasplantes de Órganos y Tejidos'), (51867, 'https://ror.org/0270h7d11', 'en', 1, 'https://ror.org/0270h7d11 All Hands Raised'), (51868, 'https://ror.org/027184q35', 'no_lang_code', 1, 'https://ror.org/027184q35 Sotio (Czechia)'), (51869, 'https://ror.org/0271ynv65', 'en', 1, 'https://ror.org/0271ynv65 Buffalo Bills Foundation'), (51870, 'https://ror.org/02752ac98', 'no_lang_code', 1, 'https://ror.org/02752ac98 Topivert (United Kingdom)'), (51871, 'https://ror.org/02765fh44', 'no_lang_code', 1, 'https://ror.org/02765fh44 Uponor (Sweden)'), (51872, 'https://ror.org/0277dxs53', 'no_lang_code', 1, 'https://ror.org/0277dxs53 Clinipace (Italy)'), (51873, 'https://ror.org/0277pn602', 'en', 1, 'https://ror.org/0277pn602 Boettcher Foundation'), (51874, 'https://ror.org/027ahsj69', 'en', 1, 'https://ror.org/027ahsj69 Alzheimer''s Australia Dementia Research Foundation'), (51875, 'https://ror.org/027by3f41', 'en', 1, 'https://ror.org/027by3f41 Landesa Rural Development Institute'), (51876, 'https://ror.org/027e6vw02', 'en', 1, 'https://ror.org/027e6vw02 African Evaluation Association'), (51877, 'https://ror.org/027ey5735', 'sv', 1, 'https://ror.org/027ey5735 Alzheimerfonden'), (51878, 'https://ror.org/027f4r073', 'no_lang_code', 1, 'https://ror.org/027f4r073 Novartis (Denmark)'), (51879, 'https://ror.org/027f56t09', 'en', 1, 'https://ror.org/027f56t09 Jining Traditional Chinese Medicine Hospital 济宁市中医院'), (51880, 'https://ror.org/027frsq63', 'en', 1, 'https://ror.org/027frsq63 American Tinnitus Association'), (51881, 'https://ror.org/027gpeb78', 'en', 1, 'https://ror.org/027gpeb78 Dr. Josef Steiner Cancer Foundation'), (51882, 'https://ror.org/027gy9h20', 'no_lang_code', 1, 'https://ror.org/027gy9h20 Seahorse Scientific Services (United Kingdom)'), (51883, 'https://ror.org/027hqk105', 'en', 1, 'https://ror.org/027hqk105 People''s Hospital of Cangzhou 沧州人民医院'), (51884, 'https://ror.org/027hs4a27', 'en', 1, 'https://ror.org/027hs4a27 Heartland Clinical Research'), (51885, 'https://ror.org/027hx7576', 'en', 1, 'https://ror.org/027hx7576 HHV-6 Foundation'), (51886, 'https://ror.org/027j3y306', 'en', 1, 'https://ror.org/027j3y306 James H. Hall Eye Center'), (51887, 'https://ror.org/027jx1333', 'no_lang_code', 1, 'https://ror.org/027jx1333 Gerolsteiner Brunnen (Germany)'), (51888, 'https://ror.org/027kczr92', 'no_lang_code', 1, 'https://ror.org/027kczr92 Asahi Glass (Belgium)'), (51889, 'https://ror.org/027n0md32', 'no_lang_code', 1, 'https://ror.org/027n0md32 Faure Equipements (France)'), (51890, 'https://ror.org/027q1fw25', 'no_lang_code', 1, 'https://ror.org/027q1fw25 Herantis Pharma (Finland)'), (51891, 'https://ror.org/027sxqf09', 'fr', 1, 'https://ror.org/027sxqf09 Clinique Saint-Joseph'), (51892, 'https://ror.org/027vfdt14', 'en', 1, 'https://ror.org/027vfdt14 Arizona Community Foundation'), (51893, 'https://ror.org/027xxcs87', 'en', 1, 'https://ror.org/027xxcs87 Nordic Lymphoma Group'), (51894, 'https://ror.org/027yebm63', 'no_lang_code', 1, 'https://ror.org/027yebm63 Chilton Medical Center'), (51895, 'https://ror.org/0280mwm89', 'en', 1, 'https://ror.org/0280mwm89 Molokai Community Health Center'), (51896, 'https://ror.org/0280q1024', 'en', 1, 'https://ror.org/0280q1024 Kaiser Permanente Roseville Medical Center'), (51897, 'https://ror.org/0281fad83', 'en', 1, 'https://ror.org/0281fad83 Parenteral Drug Association'), (51898, 'https://ror.org/0283crx61', 'no_lang_code', 1, 'https://ror.org/0283crx61 Zytoprotec (Austria)'), (51899, 'https://ror.org/0284jzx23', 'en', 1, 'https://ror.org/0284jzx23 Xingtai People''s Hospital 邢台市人民医院'), (51900, 'https://ror.org/0285bze92', 'en', 1, 'https://ror.org/0285bze92 ME Association'), (51901, 'https://ror.org/02864sx65', 'no_lang_code', 1, 'https://ror.org/02864sx65 Wanzl (Germany)'), (51902, 'https://ror.org/0286bey81', 'en', 1, 'https://ror.org/0286bey81 Bently Foundation'), (51903, 'https://ror.org/0288f6787', 'no_lang_code', 1, 'https://ror.org/0288f6787 Toda Kogyo (Japan) 戸田工業株式会社'), (51904, 'https://ror.org/0288he568', 'en', 1, 'https://ror.org/0288he568 South Shore Eye Care'), (51905, 'https://ror.org/028a0c712', 'no_lang_code', 1, 'https://ror.org/028a0c712 Blue Planet Innovation (Denmark)'), (51906, 'https://ror.org/028a34j67', 'en', 1, 'https://ror.org/028a34j67 Calvary Health Care Bethlehem'), (51907, 'https://ror.org/028bsh698', 'en', 1, 'https://ror.org/028bsh698 Austrian Centre for Digital Humanities and Cultural Heritage'), (51908, 'https://ror.org/028e15a50', 'es', 1, 'https://ror.org/028e15a50 Clínica Subiza'), (51909, 'https://ror.org/028ev0325', 'it', 1, 'https://ror.org/028ev0325 Allegria'), (51910, 'https://ror.org/028ew8k17', 'en', 1, 'https://ror.org/028ew8k17 Mukoviszidose - Bundesverband Cystische Fibrose The Cystic Fibrosis Institute'), (51911, 'https://ror.org/028fg3r55', 'en', 1, 'https://ror.org/028fg3r55 Rowden Medical Partnership'), (51912, 'https://ror.org/028fqdc34', 'no_lang_code', 1, 'https://ror.org/028fqdc34 Roxall (Germany)'), (51913, 'https://ror.org/028h3z429', 'en', 1, 'https://ror.org/028h3z429 Seattle International Foundation'), (51914, 'https://ror.org/028ka4p86', 'en', 1, 'https://ror.org/028ka4p86 International Association of Fire Fighters Charitable Foundation'), (51915, 'https://ror.org/028kbne62', 'en', 1, 'https://ror.org/028kbne62 Alberta Emerald Foundation'), (51916, 'https://ror.org/028myba47', 'en', 1, 'https://ror.org/028myba47 Mensa Education and Research Foundation'), (51917, 'https://ror.org/028r46717', 'en', 1, 'https://ror.org/028r46717 Ferree Foundation'), (51918, 'https://ror.org/028r7gw60', 'en', 1, 'https://ror.org/028r7gw60 Bobath memorial hospital 보바스기념병원'), (51919, 'https://ror.org/028tezs28', 'en', 1, 'https://ror.org/028tezs28 Henry Ford Allegiance Health'), (51920, 'https://ror.org/028w1rx89', 'it', 1, 'https://ror.org/028w1rx89 Associazione Angela Serra per la Ricerca sul Cancro'), (51921, 'https://ror.org/02900by63', 'en', 1, 'https://ror.org/02900by63 Japanese Society of Clinical Pharmacology and Therapeutics'), (51922, 'https://ror.org/02904nv16', 'en', 1, 'https://ror.org/02904nv16 Maas Clinic'), (51923, 'https://ror.org/0290pyd61', 'en', 1, 'https://ror.org/0290pyd61 Oregon Dermatology & Research Center'), (51924, 'https://ror.org/029235h09', 'en', 1, 'https://ror.org/029235h09 Prevent Child Abuse America'), (51925, 'https://ror.org/0292f6736', 'en', 1, 'https://ror.org/0292f6736 Community Initiatives'), (51926, 'https://ror.org/0293d8d10', 'en', 1, 'https://ror.org/0293d8d10 Japan Foundation for Applied Enzymology 公益財団法人 日本応用酵素協会'), (51927, 'https://ror.org/0293tde40', 'en', 1, 'https://ror.org/0293tde40 Heckscher Foundation for Children'), (51928, 'https://ror.org/0296xkk95', 'no_lang_code', 1, 'https://ror.org/0296xkk95 Edumetrics (United States)'), (51929, 'https://ror.org/0298vzs36', 'en', 1, 'https://ror.org/0298vzs36 Medical Park Gaziantep Hospital'), (51930, 'https://ror.org/0299hbx29', 'en', 1, 'https://ror.org/0299hbx29 Francis Family Foundation'), (51931, 'https://ror.org/029a46s62', 'no_lang_code', 1, 'https://ror.org/029a46s62 Chaipattana Foundation มูลนิธิชัยพัฒนา'), (51932, 'https://ror.org/029aqdy80', 'en', 1, 'https://ror.org/029aqdy80 Foundation for Promotion of Cancer Research がん研究振興財団'), (51933, 'https://ror.org/029b1vn53', 'no_lang_code', 1, 'https://ror.org/029b1vn53 Aspirus'), (51934, 'https://ror.org/029bhft53', 'no_lang_code', 1, 'https://ror.org/029bhft53 Kitov Pharmaceuticals (Israel)'), (51935, 'https://ror.org/029c2eq23', 'en', 1, 'https://ror.org/029c2eq23 Syracuse Orthopedic Specialists'), (51936, 'https://ror.org/029c9pv49', 'no_lang_code', 1, 'https://ror.org/029c9pv49 Mitsubishi Pencil (Japan) 三菱鉛筆株式会社'), (51937, 'https://ror.org/029f7bn57', 'no_lang_code', 1, 'https://ror.org/029f7bn57 Xiaomi (China)'), (51938, 'https://ror.org/029fwbw29', 'en', 1, 'https://ror.org/029fwbw29 Sofia Municipality Столична община'), (51939, 'https://ror.org/029gjrw67', 'no_lang_code', 1, 'https://ror.org/029gjrw67 Robugen (Germany)'), (51940, 'https://ror.org/029qr2j63', 'en', 1, 'https://ror.org/029qr2j63 Ardmore Foundation'), (51941, 'https://ror.org/029tvtf63', 'no_lang_code', 1, 'https://ror.org/029tvtf63 Nuvo Pharmaceuticals (Germany)'), (51942, 'https://ror.org/029v6mm06', 'en', 1, 'https://ror.org/029v6mm06 Chongqing Three Gorges Central Hospital 三峡中心医院'), (51943, 'https://ror.org/029x73965', 'fr', 1, 'https://ror.org/029x73965 Fondation Acteria'), (51944, 'https://ror.org/029y72c12', 'en', 1, 'https://ror.org/029y72c12 Juvenile Bipolar Research Foundation'), (51945, 'https://ror.org/029yrp127', 'da', 1, 'https://ror.org/029yrp127 Hudklinikken'), (51946, 'https://ror.org/029z6rp26', 'en', 1, 'https://ror.org/029z6rp26 DermDox Dermatology Centers'), (51947, 'https://ror.org/029z9sm32', 'en', 1, 'https://ror.org/029z9sm32 Municipality of Kardzhali Община Кърджали'), (51948, 'https://ror.org/02a1g6f69', 'no_lang_code', 1, 'https://ror.org/02a1g6f69 Khondrion (Netherlands)'), (51949, 'https://ror.org/02a207p76', 'en', 1, 'https://ror.org/02a207p76 American Concrete Institute'), (51950, 'https://ror.org/02a723v03', 'en', 1, 'https://ror.org/02a723v03 Cogito Foundation'), (51951, 'https://ror.org/02a8gj019', 'no_lang_code', 1, 'https://ror.org/02a8gj019 Kärcher (Germany)'), (51952, 'https://ror.org/02ad3sg26', 'en', 1, 'https://ror.org/02ad3sg26 Population Matters'), (51953, 'https://ror.org/02ah6fj31', 'en', 1, 'https://ror.org/02ah6fj31 Burrell Behavioral Health'), (51954, 'https://ror.org/02ajkzj32', 'no_lang_code', 1, 'https://ror.org/02ajkzj32 Social Science Research Solutions (United States)'), (51955, 'https://ror.org/02akdz045', 'en', 1, 'https://ror.org/02akdz045 Maryland Ornithological Society'), (51956, 'https://ror.org/02akzdv37', 'en', 1, 'https://ror.org/02akzdv37 Mech-Sense'), (51957, 'https://ror.org/02an18w50', 'hu', 1, 'https://ror.org/02an18w50 Affektív Pszichológia Tanszék'), (51958, 'https://ror.org/02apk8p19', 'en', 1, 'https://ror.org/02apk8p19 Sundance Institute'), (51959, 'https://ror.org/02aqe0j14', 'en', 1, 'https://ror.org/02aqe0j14 Childhood Brain Tumor Foundation'), (51960, 'https://ror.org/02awk5v34', 'en', 1, 'https://ror.org/02awk5v34 Synergos Institute'), (51961, 'https://ror.org/02ay1ht66', 'en', 1, 'https://ror.org/02ay1ht66 Biophics'), (51962, 'https://ror.org/02b00gr50', 'no_lang_code', 1, 'https://ror.org/02b00gr50 Teradyne (United States)'), (51963, 'https://ror.org/02b082r98', 'no_lang_code', 1, 'https://ror.org/02b082r98 DS Biopharma (Ireland)'), (51964, 'https://ror.org/02b1krb80', 'en', 1, 'https://ror.org/02b1krb80 North Carolina Pork Council'), (51965, 'https://ror.org/02b4by704', 'no_lang_code', 1, 'https://ror.org/02b4by704 Electrolux (United States)'), (51966, 'https://ror.org/02b6r2g85', 'en', 1, 'https://ror.org/02b6r2g85 Winston Churchill Foundation'), (51967, 'https://ror.org/02b773808', 'en', 1, 'https://ror.org/02b773808 James H. Cummings Foundation'), (51968, 'https://ror.org/02bayf457', 'en', 1, 'https://ror.org/02bayf457 Antara Foundation'), (51969, 'https://ror.org/02bb4dw78', 'no_lang_code', 1, 'https://ror.org/02bb4dw78 CJ CheilJedang (South Korea) 씨제이제일제당 주식회사'), (51970, 'https://ror.org/02bgv4w08', 'no_lang_code', 1, 'https://ror.org/02bgv4w08 Iscar (Israel)'), (51971, 'https://ror.org/02bjdhn90', 'it', 1, 'https://ror.org/02bjdhn90 Azienda Unita'' Sanitaria Locale di Parma'), (51972, 'https://ror.org/02bkyhj18', 'en', 1, 'https://ror.org/02bkyhj18 Danish Myeloma Study Group'), (51973, 'https://ror.org/02bmq1p14', 'no_lang_code', 1, 'https://ror.org/02bmq1p14 Weleda (Germany)'), (51974, 'https://ror.org/02bn96467', 'da', 1, 'https://ror.org/02bn96467 Naturvidenskabernes Hus'), (51975, 'https://ror.org/02bns0488', 'en', 1, 'https://ror.org/02bns0488 Child Health and Development Institute'), (51976, 'https://ror.org/02bsg4a02', 'en', 1, 'https://ror.org/02bsg4a02 Alternatives Research & Development Foundation'), (51977, 'https://ror.org/02bsxzz91', 'no_lang_code', 1, 'https://ror.org/02bsxzz91 Sozopol Municipality Община Созопол'), (51978, 'https://ror.org/02bxsvn11', 'no_lang_code', 1, 'https://ror.org/02bxsvn11 Hellenic Cooperative Oncology Group'), (51979, 'https://ror.org/02by3t490', 'en', 1, 'https://ror.org/02by3t490 International Foundation for Ethical Research'), (51980, 'https://ror.org/02byms354', 'fr', 1, 'https://ror.org/02byms354 Centre Hospitalier privé Saint Grégoire'), (51981, 'https://ror.org/02c00bp33', 'no_lang_code', 1, 'https://ror.org/02c00bp33 Ernst & Young (United States)'), (51982, 'https://ror.org/02c01q628', 'no_lang_code', 1, 'https://ror.org/02c01q628 Teva Pharmaceuticals (France)'), (51983, 'https://ror.org/02c0nbh41', 'en', 1, 'https://ror.org/02c0nbh41 Grace J. Fippinger Foundation'), (51984, 'https://ror.org/02c54xs52', 'en', 1, 'https://ror.org/02c54xs52 FreedomWorks'), (51985, 'https://ror.org/02c6wz078', 'en', 1, 'https://ror.org/02c6wz078 University of Zimbabwe-University of California San Francisco'), (51986, 'https://ror.org/02c8ysx60', 'en', 1, 'https://ror.org/02c8ysx60 Centre County Community Foundation'), (51987, 'https://ror.org/02c9yny10', 'no_lang_code', 1, 'https://ror.org/02c9yny10 Pfizer (France)'), (51988, 'https://ror.org/02caz1263', 'en', 1, 'https://ror.org/02caz1263 Third People ''s Hospital of Chongqing 重庆市第三人民医院'), (51989, 'https://ror.org/02ch6a529', 'en', 1, 'https://ror.org/02ch6a529 American Autoimmune Related Diseases Association'), (51990, 'https://ror.org/02cj88v79', 'en', 1, 'https://ror.org/02cj88v79 Orlando Immunology Center'), (51991, 'https://ror.org/02ck8g804', 'en', 1, 'https://ror.org/02ck8g804 Fremont Bank'), (51992, 'https://ror.org/02cksrc59', 'en', 1, 'https://ror.org/02cksrc59 International Interfaith Peace Corps'), (51993, 'https://ror.org/02cmdcv60', 'en', 1, 'https://ror.org/02cmdcv60 Bamberg County Hospital'), (51994, 'https://ror.org/02csg2e67', 'en', 1, 'https://ror.org/02csg2e67 Aurora Periodontics and Implant Dentistry'), (51995, 'https://ror.org/02cthxa95', 'no_lang_code', 1, 'https://ror.org/02cthxa95 Pliva (Croatia)'), (51996, 'https://ror.org/02cwd3273', 'en', 1, 'https://ror.org/02cwd3273 Rocketship Education'), (51997, 'https://ror.org/02cwjh447', 'en', 1, 'https://ror.org/02cwjh447 Juravinski Cancer Centre'), (51998, 'https://ror.org/02cx07c73', 'no_lang_code', 1, 'https://ror.org/02cx07c73 Cerenis Therapeutics (France)'), (51999, 'https://ror.org/02cx4j151', 'en', 1, 'https://ror.org/02cx4j151 Marin Community Foundation'), (52000, 'https://ror.org/02cx5b758', 'en', 1, 'https://ror.org/02cx5b758 Laura Moore Cunningham Foundation'), (52001, 'https://ror.org/02d0gmv36', 'no_lang_code', 1, 'https://ror.org/02d0gmv36 Kingmed Diagnostics'), (52002, 'https://ror.org/02d1ek591', 'en', 1, 'https://ror.org/02d1ek591 Phil Hardin Foundation'), (52003, 'https://ror.org/02d3g7b39', 'no_lang_code', 1, 'https://ror.org/02d3g7b39 CytoTools (Germany)'), (52004, 'https://ror.org/02d5day94', 'en', 1, 'https://ror.org/02d5day94 IPEC-Americas'), (52005, 'https://ror.org/02d5jz365', 'no_lang_code', 1, 'https://ror.org/02d5jz365 Open Invention Network (United States)'), (52006, 'https://ror.org/02d814r78', 'no_lang_code', 1, 'https://ror.org/02d814r78 Huntsman (United States)'), (52007, 'https://ror.org/02d8jq034', 'en', 1, 'https://ror.org/02d8jq034 ALS Hope Foundation'), (52008, 'https://ror.org/02d8ytq61', 'en', 1, 'https://ror.org/02d8ytq61 Dew Foundation'), (52009, 'https://ror.org/02dahen38', 'no_lang_code', 1, 'https://ror.org/02dahen38 Aso Group (Japan)'), (52010, 'https://ror.org/02db9yt31', 'en', 1, 'https://ror.org/02db9yt31 Cure Brain Cancer Foundation'), (52011, 'https://ror.org/02dc2hx33', 'no_lang_code', 1, 'https://ror.org/02dc2hx33 Pre-Seed Innovation (Denmark)'), (52012, 'https://ror.org/02ddg5t47', 'en', 1, 'https://ror.org/02ddg5t47 Koby Mandell Foundation'), (52013, 'https://ror.org/02decpv84', 'no_lang_code', 1, 'https://ror.org/02decpv84 Crown Holdings (United Kingdom)'), (52014, 'https://ror.org/02dezpk37', 'en', 1, 'https://ror.org/02dezpk37 Patricia Cronin Foundation'), (52015, 'https://ror.org/02dh6fs53', 'en', 1, 'https://ror.org/02dh6fs53 Andrea Mennen Family Foundation'), (52016, 'https://ror.org/02dm9bj37', 'en', 1, 'https://ror.org/02dm9bj37 Blaustein Philanthropic Group'), (52017, 'https://ror.org/02dpn8j41', 'en', 1, 'https://ror.org/02dpn8j41 St. Luke''s Hospital'), (52018, 'https://ror.org/02dq5ds52', 'en', 1, 'https://ror.org/02dq5ds52 Los Angeles Rubber Group'), (52019, 'https://ror.org/02dqxsj77', 'en', 1, 'https://ror.org/02dqxsj77 Health Protection and Research Organisation'), (52020, 'https://ror.org/02dte5569', 'no_lang_code', 1, 'https://ror.org/02dte5569 LyondellBasell (Italy)'), (52021, 'https://ror.org/02dvdxr58', 'no_lang_code', 1, 'https://ror.org/02dvdxr58 Mithra Pharmaceuticals (Belgium)'), (52022, 'https://ror.org/02dvymp17', 'en', 1, 'https://ror.org/02dvymp17 Bonutti Clinic'), (52023, 'https://ror.org/02dvzgw27', 'en', 1, 'https://ror.org/02dvzgw27 VillageReach'), (52024, 'https://ror.org/02dw1n083', 'en', 1, 'https://ror.org/02dw1n083 Bangladesh Fisheries Research Institute বাংলাদেশ মৎস্য গবেষণা ইনস্টিটিউট'), (52025, 'https://ror.org/02dwv3218', 'no_lang_code', 1, 'https://ror.org/02dwv3218 Danaher (Singapore)'), (52026, 'https://ror.org/02dxby369', 'no_lang_code', 1, 'https://ror.org/02dxby369 JUKI株式会社 Juki (Japan)'), (52027, 'https://ror.org/02dxhv267', 'no_lang_code', 1, 'https://ror.org/02dxhv267 Humanitarian OpenStreetMap Team'), (52028, 'https://ror.org/02dynm054', 'en', 1, 'https://ror.org/02dynm054 Carolina Ear, Nose and Throat Clinic'), (52029, 'https://ror.org/02e0wrh48', 'no_lang_code', 1, 'https://ror.org/02e0wrh48 Universal Electronics (United States)'), (52030, 'https://ror.org/02e1ztj03', 'en', 1, 'https://ror.org/02e1ztj03 Greater Boston Council on Alcoholism'), (52031, 'https://ror.org/02e385c51', 'no_lang_code', 1, 'https://ror.org/02e385c51 Amec Foster Wheeler (United States)'); INSERT INTO `rors` VALUES (52032, 'https://ror.org/02e3qt588', 'en', 1, 'https://ror.org/02e3qt588 Roosevelt Hospital'), (52033, 'https://ror.org/02e518y78', 'en', 1, 'https://ror.org/02e518y78 New York Laser and Skin Care'), (52034, 'https://ror.org/02e60zs41', 'no_lang_code', 1, 'https://ror.org/02e60zs41 Ipsen (Germany)'), (52035, 'https://ror.org/02e97hq31', 'de', 1, 'https://ror.org/02e97hq31 Krankenhaus Meran'), (52036, 'https://ror.org/02eatcc42', 'no_lang_code', 1, 'https://ror.org/02eatcc42 AGCO (United States)'), (52037, 'https://ror.org/02ebbk435', 'it', 1, 'https://ror.org/02ebbk435 Società Italiana di Cardiologia Interventistica, Società Italiana di Cardiologia Invasiva'), (52038, 'https://ror.org/02ebbs344', 'en', 1, 'https://ror.org/02ebbs344 Dermatology Surgery & Laser Center'), (52039, 'https://ror.org/02ebjnx89', 'en', 1, 'https://ror.org/02ebjnx89 Diabetes & Endocrine Associates'), (52040, 'https://ror.org/02edgqh74', 'en', 1, 'https://ror.org/02edgqh74 Community Foundation for Muskegon County'), (52041, 'https://ror.org/02edrgs08', 'en', 1, 'https://ror.org/02edrgs08 Lester Fund'), (52042, 'https://ror.org/02eed7j13', 'no_lang_code', 1, 'https://ror.org/02eed7j13 Vasopharm (Germany)'), (52043, 'https://ror.org/02efnsc68', 'en', 1, 'https://ror.org/02efnsc68 Koret Foundation'), (52044, 'https://ror.org/02egwd952', 'en', 1, 'https://ror.org/02egwd952 Natural Resource Governance Institute'), (52045, 'https://ror.org/02ehvej48', 'no_lang_code', 1, 'https://ror.org/02ehvej48 Rational (Germany)'), (52046, 'https://ror.org/02ej1by07', 'en', 1, 'https://ror.org/02ej1by07 Intermedia Arts'), (52047, 'https://ror.org/02ejxt329', 'en', 1, 'https://ror.org/02ejxt329 College Summit'), (52048, 'https://ror.org/02ek94012', 'en', 1, 'https://ror.org/02ek94012 Institute for Advanced Medical Research'), (52049, 'https://ror.org/02ekmp576', 'en', 1, 'https://ror.org/02ekmp576 Rebound Orthopedics and Neurosurgery'), (52050, 'https://ror.org/02enpyw90', 'en', 1, 'https://ror.org/02enpyw90 Century Health'), (52051, 'https://ror.org/02epenp91', 'en', 1, 'https://ror.org/02epenp91 Cricket Island Foundation'), (52052, 'https://ror.org/02eq6ye19', 'de', 1, 'https://ror.org/02eq6ye19 B. Braun Stiftung'), (52053, 'https://ror.org/02eqphf30', 'en', 1, 'https://ror.org/02eqphf30 St. Mary Medical Center'), (52054, 'https://ror.org/02evptr34', 'no_lang_code', 1, 'https://ror.org/02evptr34 Blue Earth Diagnostics (United Kingdom)'), (52055, 'https://ror.org/02ex0xe53', 'no_lang_code', 1, 'https://ror.org/02ex0xe53 THK (Japan) ティエチケー'), (52056, 'https://ror.org/02eya7c23', 'da', 1, 'https://ror.org/02eya7c23 Ny Carlsberg Glyptotek'), (52057, 'https://ror.org/02eyhcx07', 'en', 1, 'https://ror.org/02eyhcx07 Otto Bremer Trust'), (52058, 'https://ror.org/02ezpab79', 'en', 1, 'https://ror.org/02ezpab79 Fund for Transforming Education in Kentucky'), (52059, 'https://ror.org/02f086s27', 'es', 1, 'https://ror.org/02f086s27 Instituto Bernabeu'), (52060, 'https://ror.org/02f1cca66', 'en', 1, 'https://ror.org/02f1cca66 Center for Reform of School Systems'), (52061, 'https://ror.org/02f2t0y11', 'en', 1, 'https://ror.org/02f2t0y11 Shanghai Institutes for International Studies 上海国际问题研究院'), (52062, 'https://ror.org/02f6zxv37', 'no_lang_code', 1, 'https://ror.org/02f6zxv37 EMS (Switzerland)'), (52063, 'https://ror.org/02f83ba58', 'no_lang_code', 1, 'https://ror.org/02f83ba58 JazzDanmark (Denmark)'), (52064, 'https://ror.org/02f9cz450', 'en', 1, 'https://ror.org/02f9cz450 Brian Mercer Charitable Trust'), (52065, 'https://ror.org/02fbng346', 'en', 1, 'https://ror.org/02fbng346 Foundation for Personality and Social Psychology'), (52066, 'https://ror.org/02fbwdh31', 'no_lang_code', 1, 'https://ror.org/02fbwdh31 Servier (United Kingdom)'), (52067, 'https://ror.org/02fceca45', 'en', 1, 'https://ror.org/02fceca45 Macular Disease Foundation Australia'), (52068, 'https://ror.org/02fcj1h44', 'no_lang_code', 1, 'https://ror.org/02fcj1h44 Logistimo (India)'), (52069, 'https://ror.org/02fdpqp39', 'en', 1, 'https://ror.org/02fdpqp39 Belgian Brain Tumor Support'), (52070, 'https://ror.org/02fe4a734', 'en', 1, 'https://ror.org/02fe4a734 Troy Gastroenterology'), (52071, 'https://ror.org/02fg6xr77', 'en', 1, 'https://ror.org/02fg6xr77 Cedar Tree Foundation'), (52072, 'https://ror.org/02fh40r38', 'en', 1, 'https://ror.org/02fh40r38 Peripheral Vascular Associates'), (52073, 'https://ror.org/02fhy7n13', 'en', 1, 'https://ror.org/02fhy7n13 Alliance for Health Reform'), (52074, 'https://ror.org/02fhzax24', 'no_lang_code', 1, 'https://ror.org/02fhzax24 Advanced Biological Laboratories (Luxembourg)'), (52075, 'https://ror.org/02fk8h266', 'en', 1, 'https://ror.org/02fk8h266 Youth Venture'), (52076, 'https://ror.org/02fkyk293', 'en', 1, 'https://ror.org/02fkyk293 The Century Foundation'), (52077, 'https://ror.org/02fnpq925', 'en', 1, 'https://ror.org/02fnpq925 National Summer Learning Association'), (52078, 'https://ror.org/02fnsp050', 'en', 1, 'https://ror.org/02fnsp050 National Cancer Coalition'), (52079, 'https://ror.org/02fpqgd92', 'no_lang_code', 1, 'https://ror.org/02fpqgd92 Conair (United States)'), (52080, 'https://ror.org/02fpvdy69', 'en', 1, 'https://ror.org/02fpvdy69 SKS Foundation'), (52081, 'https://ror.org/02fpvzy87', 'no_lang_code', 1, 'https://ror.org/02fpvzy87 UAVision (Portugal)'), (52082, 'https://ror.org/02fsqn104', 'no_lang_code', 1, 'https://ror.org/02fsqn104 Wieden+Kennedy (United States)'), (52083, 'https://ror.org/02fstqr33', 'en', 1, 'https://ror.org/02fstqr33 Ankang City Central Hospital 安康市中心医院'), (52084, 'https://ror.org/02fvevm64', 'en', 1, 'https://ror.org/02fvevm64 Taizhou People''s Hospital'), (52085, 'https://ror.org/02fvjnz56', 'en', 1, 'https://ror.org/02fvjnz56 Japan United States Friendship Commission'), (52086, 'https://ror.org/02fwc3866', 'en', 1, 'https://ror.org/02fwc3866 Gwinnett Dermatology'), (52087, 'https://ror.org/02fyrxr51', 'nl', 1, 'https://ror.org/02fyrxr51 Streeklab Haarlem'), (52088, 'https://ror.org/02fz2j917', 'en', 1, 'https://ror.org/02fz2j917 YWCA USA'), (52089, 'https://ror.org/02g0ran52', 'en', 1, 'https://ror.org/02g0ran52 Hille Foundation'), (52090, 'https://ror.org/02g1cct97', 'no_lang_code', 1, 'https://ror.org/02g1cct97 Sunonwealth Electric Machine Industry (Taiwan)'), (52091, 'https://ror.org/02g21hc40', 'no_lang_code', 1, 'https://ror.org/02g21hc40 Art Innovation (Netherlands)'), (52092, 'https://ror.org/02g3w4r36', 'en', 1, 'https://ror.org/02g3w4r36 Actuarial Foundation'), (52093, 'https://ror.org/02g8xhs57', 'en', 1, 'https://ror.org/02g8xhs57 Getty Foundation'), (52094, 'https://ror.org/02gae5p70', 'en', 1, 'https://ror.org/02gae5p70 International Association of Hydrological Sciences'), (52095, 'https://ror.org/02gbgwz87', 'en', 1, 'https://ror.org/02gbgwz87 Allan Wilson Centre'), (52096, 'https://ror.org/02gcdg805', 'en', 1, 'https://ror.org/02gcdg805 Fashion Group International'), (52097, 'https://ror.org/02gcfcp23', 'en', 1, 'https://ror.org/02gcfcp23 Irish Youth Justice Service'), (52098, 'https://ror.org/02gdc0c96', 'no_lang_code', 1, 'https://ror.org/02gdc0c96 OmniVision Technologies (Germany)'), (52099, 'https://ror.org/02ge5fs96', 'en', 1, 'https://ror.org/02ge5fs96 American Youth Policy Forum'), (52100, 'https://ror.org/02getev82', 'en', 1, 'https://ror.org/02getev82 El Camino Urology Medical Group'), (52101, 'https://ror.org/02gfq0f62', 'da', 1, 'https://ror.org/02gfq0f62 Axel Muusfeldts Fond'), (52102, 'https://ror.org/02ggyp989', 'en', 1, 'https://ror.org/02ggyp989 Central Policy Unit 中央政策組'), (52103, 'https://ror.org/02gh3wa58', 'no_lang_code', 1, 'https://ror.org/02gh3wa58 Auris Medical (United States)'), (52104, 'https://ror.org/02gpmmz25', 'es', 1, 'https://ror.org/02gpmmz25 Navarra de Infraestructuras Locales'), (52105, 'https://ror.org/02gr42472', 'en', 1, 'https://ror.org/02gr42472 First Affiliated Hospital of Guangdong Pharmaceutical University 广东药学院第一附属医院'), (52106, 'https://ror.org/02grbwy50', 'en', 1, 'https://ror.org/02grbwy50 Dynamed Clinical Research'), (52107, 'https://ror.org/02gvvc992', 'no_lang_code', 1, 'https://ror.org/02gvvc992 Amgen (United Kingdom)'), (52108, 'https://ror.org/02gwwga82', 'no_lang_code', 1, 'https://ror.org/02gwwga82 Sennheiser (Germany)'), (52109, 'https://ror.org/02gx57r28', 'en', 1, 'https://ror.org/02gx57r28 Atlanta Center for Medical Research'), (52110, 'https://ror.org/02gxz9934', 'en', 1, 'https://ror.org/02gxz9934 McPherson County Community Foundation'), (52111, 'https://ror.org/02gye8637', 'no_lang_code', 1, 'https://ror.org/02gye8637 ProSocial (United States)'), (52112, 'https://ror.org/02h04v153', 'no_lang_code', 1, 'https://ror.org/02h04v153 VKR Holding (Denmark)'), (52113, 'https://ror.org/02h0asf07', 'en', 1, 'https://ror.org/02h0asf07 Solano County Library'), (52114, 'https://ror.org/02h144281', 'en', 1, 'https://ror.org/02h144281 Charles Lee Powell Foundation'), (52115, 'https://ror.org/02h39wj34', 'no_lang_code', 1, 'https://ror.org/02h39wj34 Showa Corporation 株式会社ショーワ'), (52116, 'https://ror.org/02h5xm343', 'en', 1, 'https://ror.org/02h5xm343 King County Department of Community and Human Services'), (52117, 'https://ror.org/02h67zw08', 'en', 1, 'https://ror.org/02h67zw08 Breast Center'), (52118, 'https://ror.org/02h6aq665', 'en', 1, 'https://ror.org/02h6aq665 El Centro de la Raza'), (52119, 'https://ror.org/02h7t2a16', 'en', 1, 'https://ror.org/02h7t2a16 Irene W. and C.B. Pennington Foundation'), (52120, 'https://ror.org/02h8mhp51', 'en', 1, 'https://ror.org/02h8mhp51 Pittsburgh Ear Associates'), (52121, 'https://ror.org/02h8p6f28', 'en', 1, 'https://ror.org/02h8p6f28 Courage360'), (52122, 'https://ror.org/02ha36g10', 'en', 1, 'https://ror.org/02ha36g10 Environmental Protection Administration 行政院環境保護署'), (52123, 'https://ror.org/02hce7r59', 'en', 1, 'https://ror.org/02hce7r59 8020 Promotion Foundation 8020推進財団'), (52124, 'https://ror.org/02hdbjg52', 'en', 1, 'https://ror.org/02hdbjg52 Network for Excellence in Health Innovation'), (52125, 'https://ror.org/02he67h29', 'en', 1, 'https://ror.org/02he67h29 Australian Centre for HIV and Hepatitis Virology Research'), (52126, 'https://ror.org/02hef5r03', 'no_lang_code', 1, 'https://ror.org/02hef5r03 Osaka Nishi Clinic 大阪西クリニッ'), (52127, 'https://ror.org/02hejje45', 'en', 1, 'https://ror.org/02hejje45 Oxford Optronix'), (52128, 'https://ror.org/02heszr58', 'en', 1, 'https://ror.org/02heszr58 Rockefeller Archive Center'), (52129, 'https://ror.org/02hfdv863', 'en', 1, 'https://ror.org/02hfdv863 National Academy Foundation'), (52130, 'https://ror.org/02hg8mx81', 'en', 1, 'https://ror.org/02hg8mx81 Centro Comunitario Juan Diego'), (52131, 'https://ror.org/02hhch541', 'no_lang_code', 1, 'https://ror.org/02hhch541 Trèves (France)'), (52132, 'https://ror.org/02hk69q89', 'en', 1, 'https://ror.org/02hk69q89 Gerald R. Ford Presidential Foundation'), (52133, 'https://ror.org/02hkdst29', 'en', 1, 'https://ror.org/02hkdst29 Arlington Dermatology'), (52134, 'https://ror.org/02hppaj03', 'en', 1, 'https://ror.org/02hppaj03 Three Rivers Community Foundation'), (52135, 'https://ror.org/02ht7jy02', 'en', 1, 'https://ror.org/02ht7jy02 State Protected Areas Service Valstybine Saugomu Teritoriju Tarnyba'), (52136, 'https://ror.org/02hv1r057', 'en', 1, 'https://ror.org/02hv1r057 Blue Mountain Community Foundation'), (52137, 'https://ror.org/02hxjys58', 'no_lang_code', 1, 'https://ror.org/02hxjys58 Novelion (United Kingdom)'), (52138, 'https://ror.org/02hy2v836', 'no_lang_code', 1, 'https://ror.org/02hy2v836 Amphenol (United States)'), (52139, 'https://ror.org/02hze6e47', 'no_lang_code', 1, 'https://ror.org/02hze6e47 Laitram (United States)'), (52140, 'https://ror.org/02j479041', 'en', 1, 'https://ror.org/02j479041 Oklahoma Heart Hospital'), (52141, 'https://ror.org/02j553a92', 'fr', 1, 'https://ror.org/02j553a92 Fondation Nanosciences'), (52142, 'https://ror.org/02j6fbg68', 'en', 1, 'https://ror.org/02j6fbg68 Juvenile Diabetes Research Foundation'), (52143, 'https://ror.org/02j73r478', 'no_lang_code', 1, 'https://ror.org/02j73r478 Roto Frank (Germany)'), (52144, 'https://ror.org/02j9g7j58', 'en', 1, 'https://ror.org/02j9g7j58 G. Unger Vetlesen Foundation'), (52145, 'https://ror.org/02jacnm89', 'no_lang_code', 1, 'https://ror.org/02jacnm89 Mundipharma (Netherlands)'), (52146, 'https://ror.org/02jcef994', 'en', 1, 'https://ror.org/02jcef994 South African Tuberculosis Vaccine Initiative'), (52147, 'https://ror.org/02jep5960', 'no_lang_code', 1, 'https://ror.org/02jep5960 CanSino (China)'), (52148, 'https://ror.org/02jf3v234', 'no_lang_code', 1, 'https://ror.org/02jf3v234 Protalix BioTherapeutics (Israel)'), (52149, 'https://ror.org/02jg1vm67', 'en', 1, 'https://ror.org/02jg1vm67 Diabetes Care & Hormone Clinic'), (52150, 'https://ror.org/02jht8768', 'en', 1, 'https://ror.org/02jht8768 Hyams Foundation'), (52151, 'https://ror.org/02jkvf915', 'en', 1, 'https://ror.org/02jkvf915 Academic and Community Cancer Research United'), (52152, 'https://ror.org/02jn85w30', 'en', 1, 'https://ror.org/02jn85w30 British Association for Chinese Studies'), (52153, 'https://ror.org/02jp56b40', 'en', 1, 'https://ror.org/02jp56b40 PRN of Kansas'), (52154, 'https://ror.org/02jpw5905', 'en', 1, 'https://ror.org/02jpw5905 Covenant Foundation'), (52155, 'https://ror.org/02jqk1764', 'en', 1, 'https://ror.org/02jqk1764 Desert Regional Medical Center'), (52156, 'https://ror.org/02jrfr034', 'en', 1, 'https://ror.org/02jrfr034 Northwest Eye Surgeons'), (52157, 'https://ror.org/02js8j925', 'en', 1, 'https://ror.org/02js8j925 Cade Museum'), (52158, 'https://ror.org/02jsxnc12', 'de', 1, 'https://ror.org/02jsxnc12 Klinikum Arnsberg'), (52159, 'https://ror.org/02jv4t428', 'en', 1, 'https://ror.org/02jv4t428 Paul & Carol David Foundation'), (52160, 'https://ror.org/02jx0eg57', 'en', 1, 'https://ror.org/02jx0eg57 South Texas Blood and Tissue Center'), (52161, 'https://ror.org/02jxgq335', 'en', 1, 'https://ror.org/02jxgq335 New Horizons Foundation'), (52162, 'https://ror.org/02jyvnx70', 'no_lang_code', 1, 'https://ror.org/02jyvnx70 UniQure (Netherlands)'), (52163, 'https://ror.org/02k13dd86', 'en', 1, 'https://ror.org/02k13dd86 Landscape Architecture Foundation'), (52164, 'https://ror.org/02k57sp27', 'no_lang_code', 1, 'https://ror.org/02k57sp27 Sirenas (United States)'), (52165, 'https://ror.org/02k5aap11', 'en', 1, 'https://ror.org/02k5aap11 Centre for Prevention and Control of AIDS and Infectious Diseases Центр по профилактике и борьбе со СПИДом и инфекционными заболеваниями,'), (52166, 'https://ror.org/02k5eqb88', 'no_lang_code', 1, 'https://ror.org/02k5eqb88 Vyne Therapeutics (United States)'), (52167, 'https://ror.org/02k8cz130', 'no_lang_code', 1, 'https://ror.org/02k8cz130 Umande Trust'), (52168, 'https://ror.org/02kahb572', 'en', 1, 'https://ror.org/02kahb572 Texan Eye'), (52169, 'https://ror.org/02kb3q578', 'no_lang_code', 1, 'https://ror.org/02kb3q578 Dolby (Netherlands)'), (52170, 'https://ror.org/02kd7tq69', 'en', 1, 'https://ror.org/02kd7tq69 Harbage Consulting'), (52171, 'https://ror.org/02kd8pg21', 'en', 1, 'https://ror.org/02kd8pg21 Claneil Foundation'), (52172, 'https://ror.org/02kddrj80', 'en', 1, 'https://ror.org/02kddrj80 Lowe Syndrome Association'), (52173, 'https://ror.org/02keq9g57', 'en', 1, 'https://ror.org/02keq9g57 Armstrong McDonald Foundation'), (52174, 'https://ror.org/02kerk826', 'en', 1, 'https://ror.org/02kerk826 FINRA Investor Education Foundation'), (52175, 'https://ror.org/02ketev28', 'en', 1, 'https://ror.org/02ketev28 Texas Oncology'), (52176, 'https://ror.org/02kgj4n82', 'en', 1, 'https://ror.org/02kgj4n82 Foundation for Child Development'), (52177, 'https://ror.org/02kh04593', 'de', 1, 'https://ror.org/02kh04593 Arbeitsgemeinschaft medikamentöse Tumortherapie'), (52178, 'https://ror.org/02khx6d29', 'en', 1, 'https://ror.org/02khx6d29 Battelle For Kids'), (52179, 'https://ror.org/02kj8k530', 'en', 1, 'https://ror.org/02kj8k530 North Dakota Community Foundation'), (52180, 'https://ror.org/02kjpfv20', 'en', 1, 'https://ror.org/02kjpfv20 Peninsula Research'), (52181, 'https://ror.org/02kmr3f22', 'en', 1, 'https://ror.org/02kmr3f22 Science Theatre Videnskabsteatret'), (52182, 'https://ror.org/02kmtme09', 'en', 1, 'https://ror.org/02kmtme09 Diabetes & Endocrinology Specialists'), (52183, 'https://ror.org/02kpyrm37', 'no_lang_code', 1, 'https://ror.org/02kpyrm37 Ippokrateio General Hospital of Thessaloniki ΙΠΠΟΚΡΑΤΕΙΟ ΠΕΡΙΦΕΡΕΙΑΚΟ ΓΕΝΙΚΟ ΝΟΣΟΚΟΜΕΙΟ ΘΕΣΣΑΛΟΝΙΚΗΣ'), (52184, 'https://ror.org/02kqrq831', 'en', 1, 'https://ror.org/02kqrq831 Comprehensive Urology'), (52185, 'https://ror.org/02kqzrt08', 'nl', 1, 'https://ror.org/02kqzrt08 Tandartspraktijk Bocht Oosterdiep'), (52186, 'https://ror.org/02kra6808', 'en', 1, 'https://ror.org/02kra6808 Jiangmen Wuyi Traditional Chinese Medicine Hospital 五邑中医院'), (52187, 'https://ror.org/02krh4254', 'en', 1, 'https://ror.org/02krh4254 Sadick Dermatology'), (52188, 'https://ror.org/02kv8z446', 'en', 1, 'https://ror.org/02kv8z446 Berth of Kantzows Stiftelse Berth von Kantzows Foundation'), (52189, 'https://ror.org/02kvdh980', 'no_lang_code', 1, 'https://ror.org/02kvdh980 Faron Pharmaceutical (Finland)'), (52190, 'https://ror.org/02kvr5932', 'en', 1, 'https://ror.org/02kvr5932 Masonic Foundation of Utah'), (52191, 'https://ror.org/02kwy3g61', 'no_lang_code', 1, 'https://ror.org/02kwy3g61 Cutest Systems (United Kingdom)'), (52192, 'https://ror.org/02kx9dq14', 'en', 1, 'https://ror.org/02kx9dq14 Asia New Zealand Foundation'), (52193, 'https://ror.org/02kz19x38', 'no_lang_code', 1, 'https://ror.org/02kz19x38 Archigen Biotech (United Kingdom)'), (52194, 'https://ror.org/02m0a5h24', 'en', 1, 'https://ror.org/02m0a5h24 LuMind Research Down Syndrome Foundation'), (52195, 'https://ror.org/02m0qsq54', 'it', 1, 'https://ror.org/02m0qsq54 Fondazione Europea Ricerca Biomedica'), (52196, 'https://ror.org/02m34vd28', 'en', 1, 'https://ror.org/02m34vd28 American Veterinary Medical Foundation'), (52197, 'https://ror.org/02m3rg114', 'en', 1, 'https://ror.org/02m3rg114 Brooks Rehabilitation Clinical Research Center'), (52198, 'https://ror.org/02m5ztg20', 'en', 1, 'https://ror.org/02m5ztg20 Communities in School'), (52199, 'https://ror.org/02m8dvs65', 'en', 1, 'https://ror.org/02m8dvs65 Dorothea Haus Ross Foundation'), (52200, 'https://ror.org/02m9pjv04', 'en', 1, 'https://ror.org/02m9pjv04 National Speech and Debate Association'), (52201, 'https://ror.org/02mabf754', 'no_lang_code', 1, 'https://ror.org/02mabf754 Bissell (United States)'), (52202, 'https://ror.org/02mfxyv79', 'en', 1, 'https://ror.org/02mfxyv79 Michigan Cancer Research Consortium'), (52203, 'https://ror.org/02mg13n04', 'en', 1, 'https://ror.org/02mg13n04 Memphis Urban League'), (52204, 'https://ror.org/02mgz7255', 'en', 1, 'https://ror.org/02mgz7255 Pacific Clinical Research'), (52205, 'https://ror.org/02mkdtg06', 'en', 1, 'https://ror.org/02mkdtg06 Davis Foundations'), (52206, 'https://ror.org/02mmxnk73', 'en', 1, 'https://ror.org/02mmxnk73 Coleman Foundation'), (52207, 'https://ror.org/02mnmm768', 'no_lang_code', 1, 'https://ror.org/02mnmm768 Sanofi (Italy)'), (52208, 'https://ror.org/02mpf8x78', 'no_lang_code', 1, 'https://ror.org/02mpf8x78 Tideline (United States)'), (52209, 'https://ror.org/02mphet60', 'en', 1, 'https://ror.org/02mphet60 North East Ambulance Service NHS Foundation Trust'), (52210, 'https://ror.org/02mzaks39', 'en', 1, 'https://ror.org/02mzaks39 Clallam County YMCA'), (52211, 'https://ror.org/02mzdpf71', 'en', 1, 'https://ror.org/02mzdpf71 Garden Club of Honolulu'), (52212, 'https://ror.org/02mzerg05', 'no_lang_code', 1, 'https://ror.org/02mzerg05 Ribbon Communications (United States)'), (52213, 'https://ror.org/02n130h25', 'en', 1, 'https://ror.org/02n130h25 Nitsch Foundation'), (52214, 'https://ror.org/02n1k3w22', 'en', 1, 'https://ror.org/02n1k3w22 Digital Learning Department'), (52215, 'https://ror.org/02n211843', 'no_lang_code', 1, 'https://ror.org/02n211843 Owens Corning (United States)'), (52216, 'https://ror.org/02n478665', 'en', 1, 'https://ror.org/02n478665 Frontiers Foundation'), (52217, 'https://ror.org/02n4r0h83', 'no_lang_code', 1, 'https://ror.org/02n4r0h83 CoLucid Pharmaceuticals (United States)'), (52218, 'https://ror.org/02n4r4429', 'en', 1, 'https://ror.org/02n4r4429 Minnesota Gastroenterology'), (52219, 'https://ror.org/02n7fx037', 'en', 1, 'https://ror.org/02n7fx037 National Foundation for Infectious Diseases'), (52220, 'https://ror.org/02n9j0y25', 'en', 1, 'https://ror.org/02n9j0y25 Meghan Rose Bradley Foundation'), (52221, 'https://ror.org/02nc8ke31', 'no_lang_code', 1, 'https://ror.org/02nc8ke31 GlaxoSmithKline (Poland)'), (52222, 'https://ror.org/02ncjrc71', 'no_lang_code', 1, 'https://ror.org/02ncjrc71 Lukács és Társa (Hungary)'), (52223, 'https://ror.org/02nd1ya78', 'no_lang_code', 1, 'https://ror.org/02nd1ya78 Wetlands Work (Cambodia)'), (52224, 'https://ror.org/02ndgm578', 'en', 1, 'https://ror.org/02ndgm578 Noah Worcester Dermatological Society'), (52225, 'https://ror.org/02neda623', 'en', 1, 'https://ror.org/02neda623 Asan Institute for Policy Studies 아산정책연구원'), (52226, 'https://ror.org/02nfebn65', 'en', 1, 'https://ror.org/02nfebn65 Jawaharlal Nehru Memorial Fund'), (52227, 'https://ror.org/02nfn6153', 'en', 1, 'https://ror.org/02nfn6153 Maine Research Associates'), (52228, 'https://ror.org/02nfsws34', 'no_lang_code', 1, 'https://ror.org/02nfsws34 Innolytics (United States)'), (52229, 'https://ror.org/02ng6yf94', 'en', 1, 'https://ror.org/02ng6yf94 Allard Foundation'), (52230, 'https://ror.org/02nhthp75', 'it', 1, 'https://ror.org/02nhthp75 Gruppo Oncologico del Nord Ovest'), (52231, 'https://ror.org/02nkqtg17', 'en', 1, 'https://ror.org/02nkqtg17 Coborn Cancer Center'), (52232, 'https://ror.org/02nptez24', 'en', 1, 'https://ror.org/02nptez24 Pudong Medical Center 上海市浦东医院'), (52233, 'https://ror.org/02nsw7d06', 'en', 1, 'https://ror.org/02nsw7d06 IVI Murcia Clinic'), (52234, 'https://ror.org/02nwxch96', 'en', 1, 'https://ror.org/02nwxch96 Asheville Cardiology Associates'), (52235, 'https://ror.org/02nxm3e56', 'no_lang_code', 1, 'https://ror.org/02nxm3e56 Electrolux (Belgium)'), (52236, 'https://ror.org/02nykv047', 'en', 1, 'https://ror.org/02nykv047 Margaret S. Mahler Child Development Foundation'), (52237, 'https://ror.org/02p19t276', 'en', 1, 'https://ror.org/02p19t276 Institute for American Values'), (52238, 'https://ror.org/02p1ne648', 'en', 1, 'https://ror.org/02p1ne648 Hillcrest Clinical Research'), (52239, 'https://ror.org/02p1wqy15', 'de', 1, 'https://ror.org/02p1wqy15 Nephrologisches Zentrum Goettingen'), (52240, 'https://ror.org/02p2egt14', 'en', 1, 'https://ror.org/02p2egt14 McCord Hospital'), (52241, 'https://ror.org/02p32hv70', 'en', 1, 'https://ror.org/02p32hv70 Gallipoli Medical Research Foundation'), (52242, 'https://ror.org/02p3abx23', 'fr', 1, 'https://ror.org/02p3abx23 Fondation Bettencourt Schueller'), (52243, 'https://ror.org/02p5kxa09', 'no_lang_code', 1, 'https://ror.org/02p5kxa09 Tomy (Japan) 株式会社タカラトミー'), (52244, 'https://ror.org/02p5tsd26', 'en', 1, 'https://ror.org/02p5tsd26 Honjo International Scholarship Foundation'), (52245, 'https://ror.org/02p6vdy49', 'en', 1, 'https://ror.org/02p6vdy49 Buffalo Spine Surgery'), (52246, 'https://ror.org/02p8p2r04', 'en', 1, 'https://ror.org/02p8p2r04 Dimmer Family Foundation'), (52247, 'https://ror.org/02p92eb51', 'en', 1, 'https://ror.org/02p92eb51 Benign Essential Blepharospasm Research Foundation'), (52248, 'https://ror.org/02p9ey581', 'it', 1, 'https://ror.org/02p9ey581 Azienda Ospedaliera Universitaria Università degli Studi della Campania Luigi Vanvitelli'), (52249, 'https://ror.org/02paapn48', 'no_lang_code', 1, 'https://ror.org/02paapn48 Air Liquide (United Kingdom)'), (52250, 'https://ror.org/02pbe9j32', 'en', 1, 'https://ror.org/02pbe9j32 Japan Society of Ultrasonics in Medicine 公益社団法人日本超音波医学会'), (52251, 'https://ror.org/02pcrrj33', 'en', 1, 'https://ror.org/02pcrrj33 Peters Medical Research'), (52252, 'https://ror.org/02pcvrc50', 'fr', 1, 'https://ror.org/02pcvrc50 Centre Hospitalier de Cornouaille'), (52253, 'https://ror.org/02pdqrx22', 'en', 1, 'https://ror.org/02pdqrx22 Center for Assessment'), (52254, 'https://ror.org/02pevq096', 'en', 1, 'https://ror.org/02pevq096 Multiple Sclerosis Center Of Northeastern New York'), (52255, 'https://ror.org/02pfe8s32', 'en', 1, 'https://ror.org/02pfe8s32 Council for Economic Education'), (52256, 'https://ror.org/02pfr9428', 'nl', 1, 'https://ror.org/02pfr9428 Waterlandziekenhuis'), (52257, 'https://ror.org/02pg6kr38', 'en', 1, 'https://ror.org/02pg6kr38 George Gund Foundation'), (52258, 'https://ror.org/02pgmm462', 'en', 1, 'https://ror.org/02pgmm462 Tianjin Tanggu Women and Child Health 塘沽区妇幼保健院'), (52259, 'https://ror.org/02ph01924', 'no_lang_code', 1, 'https://ror.org/02ph01924 Lampang Hospital'), (52260, 'https://ror.org/02pj41y46', 'en', 1, 'https://ror.org/02pj41y46 Character'), (52261, 'https://ror.org/02pje8j21', 'en', 1, 'https://ror.org/02pje8j21 Tanzania Women Research Foundation'), (52262, 'https://ror.org/02pjmtb58', 'en', 1, 'https://ror.org/02pjmtb58 Ute Mountain Ute Tribe''s Environmental Programs Department'), (52263, 'https://ror.org/02pkecv52', 'en', 1, 'https://ror.org/02pkecv52 Comprehensive Eye Care'), (52264, 'https://ror.org/02pp6z931', 'en', 1, 'https://ror.org/02pp6z931 Bailit Health'), (52265, 'https://ror.org/02pvtxb60', 'en', 1, 'https://ror.org/02pvtxb60 ASTRA National Museum Complex Complexul Naţional Muzeal "ASTRA"'), (52266, 'https://ror.org/02pxbb382', 'no_lang_code', 1, 'https://ror.org/02pxbb382 Free to Choose Network (United States)'), (52267, 'https://ror.org/02pxgg741', 'en', 1, 'https://ror.org/02pxgg741 Bradshaw Knight Foundation'), (52268, 'https://ror.org/02q2xaq91', 'en', 1, 'https://ror.org/02q2xaq91 Christopher Reynolds Foundation'), (52269, 'https://ror.org/02q3n2241', 'no_lang_code', 1, 'https://ror.org/02q3n2241 CureVac (Germany)'), (52270, 'https://ror.org/02q44wp02', 'en', 1, 'https://ror.org/02q44wp02 Highmark Blue Cross Blue Shield'), (52271, 'https://ror.org/02q4zyb28', 'de', 1, 'https://ror.org/02q4zyb28 Stadtkrankenhaus Schwabach'), (52272, 'https://ror.org/02q7qcb13', 'fr', 1, 'https://ror.org/02q7qcb13 Fédération Francophone de Cancérologie Digestive'), (52273, 'https://ror.org/02q8b8t22', 'en', 1, 'https://ror.org/02q8b8t22 Battery Park'), (52274, 'https://ror.org/02q8k0k97', 'fr', 1, 'https://ror.org/02q8k0k97 Fondation Centaure'), (52275, 'https://ror.org/02qae1c67', 'it', 1, 'https://ror.org/02qae1c67 Società Italiana di Nefrologia'), (52276, 'https://ror.org/02qar5136', 'en', 1, 'https://ror.org/02qar5136 Respiratory Clinical Trials'), (52277, 'https://ror.org/02qbt0637', 'en', 1, 'https://ror.org/02qbt0637 Oxford Policy Management'), (52278, 'https://ror.org/02qc1es24', 'fr', 1, 'https://ror.org/02qc1es24 Association du Syndrome de Lowe'), (52279, 'https://ror.org/02qd0cv38', 'en', 1, 'https://ror.org/02qd0cv38 Danish Institute for Human Rights Institut for Menneskerettigheder'), (52280, 'https://ror.org/02qfkky73', 'en', 1, 'https://ror.org/02qfkky73 COPD Foundation'), (52281, 'https://ror.org/02qjq5342', 'en', 1, 'https://ror.org/02qjq5342 Kobayashi Foundation for Cancer Research 小林がん研究財団'), (52282, 'https://ror.org/02qjsrb04', 'en', 1, 'https://ror.org/02qjsrb04 Progressive Policy Institute'), (52283, 'https://ror.org/02qk1yb72', 'en', 1, 'https://ror.org/02qk1yb72 Health Intervention and Technology Assessment Program โครงการประเมินเทคโนโลยีและนโยบายด้านสุขภาพ'), (52284, 'https://ror.org/02qkdss21', 'en', 1, 'https://ror.org/02qkdss21 Cardiovascular Institute of Philadelphia'), (52285, 'https://ror.org/02qkndm86', 'no_lang_code', 1, 'https://ror.org/02qkndm86 AcelRx Pharmaceuticals (United States)'), (52286, 'https://ror.org/02qm2nb52', 'en', 1, 'https://ror.org/02qm2nb52 Arktisk Institut Danish Arctic Institute'), (52287, 'https://ror.org/02qtztk24', 'en', 1, 'https://ror.org/02qtztk24 Abnoba (Germany)'), (52288, 'https://ror.org/02qvmv657', 'en', 1, 'https://ror.org/02qvmv657 University Child Development School'), (52289, 'https://ror.org/02qw2fp57', 'en', 1, 'https://ror.org/02qw2fp57 MedVadis Research'), (52290, 'https://ror.org/02qxa1v47', 'fr', 1, 'https://ror.org/02qxa1v47 Centre Hospitalier Esquirol de Limoges'), (52291, 'https://ror.org/02qyc0r76', 'en', 1, 'https://ror.org/02qyc0r76 American Pain Foundation'), (52292, 'https://ror.org/02qyk0j27', 'en', 1, 'https://ror.org/02qyk0j27 Xintai People''s Hospital 新泰市人民医院'), (52293, 'https://ror.org/02qzgf733', 'en', 1, 'https://ror.org/02qzgf733 PAHO Foundation'), (52294, 'https://ror.org/02qzvv903', 'en', 1, 'https://ror.org/02qzvv903 Nashville Public Education Foundation'), (52295, 'https://ror.org/02r06e757', 'en', 1, 'https://ror.org/02r06e757 Women''s Prison Association'), (52296, 'https://ror.org/02r0vmn14', 'no_lang_code', 1, 'https://ror.org/02r0vmn14 Kamineni Hospitals'), (52297, 'https://ror.org/02r3fkw61', 'no_lang_code', 1, 'https://ror.org/02r3fkw61 Tesaro (United States)'), (52298, 'https://ror.org/02r3ht216', 'no_lang_code', 1, 'https://ror.org/02r3ht216 Quadient (France)'), (52299, 'https://ror.org/02r408872', 'en', 1, 'https://ror.org/02r408872 Middle Country Endocrinology'), (52300, 'https://ror.org/02r41bx44', 'en', 1, 'https://ror.org/02r41bx44 Character Scotland'), (52301, 'https://ror.org/02r5ax782', 'en', 1, 'https://ror.org/02r5ax782 Connecticut Community Foundation'), (52302, 'https://ror.org/02r990937', 'no_lang_code', 1, 'https://ror.org/02r990937 PannonPharma (Hungary)'), (52303, 'https://ror.org/02raaag15', 'no_lang_code', 1, 'https://ror.org/02raaag15 Apodemus (Sweden)'), (52304, 'https://ror.org/02rb2sh19', 'en', 1, 'https://ror.org/02rb2sh19 Chemotherapy Foundation'), (52305, 'https://ror.org/02rc7rz93', 'no_lang_code', 1, 'https://ror.org/02rc7rz93 Autoliv (United States)'), (52306, 'https://ror.org/02rcj7e91', 'en', 1, 'https://ror.org/02rcj7e91 Worcester Public Schools'), (52307, 'https://ror.org/02rd6g006', 'en', 1, 'https://ror.org/02rd6g006 Federation of Infectious Diseases Societies of Southern Africa'), (52308, 'https://ror.org/02rdgsh90', 'en', 1, 'https://ror.org/02rdgsh90 Lincoln County Health Department'), (52309, 'https://ror.org/02rfhxh40', 'en', 1, 'https://ror.org/02rfhxh40 Westbourne Centre'), (52310, 'https://ror.org/02rgsra75', 'en', 1, 'https://ror.org/02rgsra75 Associated Eyecare'), (52311, 'https://ror.org/02rhsjm93', 'en', 1, 'https://ror.org/02rhsjm93 South African Institute for Distance Education'), (52312, 'https://ror.org/02rhv6v27', 'no_lang_code', 1, 'https://ror.org/02rhv6v27 Strathspey Crown (United States)'), (52313, 'https://ror.org/02rn5zx43', 'de', 1, 'https://ror.org/02rn5zx43 Berufsverband Niedergelassener Gynäkologischer Onkologen'), (52314, 'https://ror.org/02rqv6723', 'en', 1, 'https://ror.org/02rqv6723 Circulation Foundation'), (52315, 'https://ror.org/02rsqhk75', 'en', 1, 'https://ror.org/02rsqhk75 Glens Falls Foundation'), (52316, 'https://ror.org/02rt6g223', 'it', 1, 'https://ror.org/02rt6g223 Fondazione per la Ricerca sulla Fibrosi Cistica'), (52317, 'https://ror.org/02rvfjx92', 'no_lang_code', 1, 'https://ror.org/02rvfjx92 Taiwan Semiconductor Manufacturing Company (United States)'), (52318, 'https://ror.org/02rw3e427', 'en', 1, 'https://ror.org/02rw3e427 Nebraska Press Association'), (52319, 'https://ror.org/02rw47d25', 'no_lang_code', 1, 'https://ror.org/02rw47d25 Galena Biopharma (United States)'), (52320, 'https://ror.org/02rzhqp10', 'no_lang_code', 1, 'https://ror.org/02rzhqp10 ReadCoor (United States)'), (52321, 'https://ror.org/02s1afg98', 'en', 1, 'https://ror.org/02s1afg98 Chromosome 18 Registry & Research Society'), (52322, 'https://ror.org/02s1hnn22', 'en', 1, 'https://ror.org/02s1hnn22 Mellam Family Foundation'), (52323, 'https://ror.org/02s2qzh96', 'fr', 1, 'https://ror.org/02s2qzh96 Centre Jean Bernard'), (52324, 'https://ror.org/02s2v2m89', 'no_lang_code', 1, 'https://ror.org/02s2v2m89 Mucos Pharma (Germany)'), (52325, 'https://ror.org/02s4dmy28', 'en', 1, 'https://ror.org/02s4dmy28 Landscape Alberta Nursery Trades Association'), (52326, 'https://ror.org/02s4p5q31', 'en', 1, 'https://ror.org/02s4p5q31 Hesperian Health Guides'), (52327, 'https://ror.org/02s59jv58', 'en', 1, 'https://ror.org/02s59jv58 Arizona Cotton Growers Association'), (52328, 'https://ror.org/02s62y466', 'en', 1, 'https://ror.org/02s62y466 American Academy of Otolaryngic Allergy'), (52329, 'https://ror.org/02s67hm68', 'de', 1, 'https://ror.org/02s67hm68 Hamburgische Wissenschaftliche Stiftung'), (52330, 'https://ror.org/02s7h4e59', 'no_lang_code', 1, 'https://ror.org/02s7h4e59 Bonus'), (52331, 'https://ror.org/02sg1hf43', 'en', 1, 'https://ror.org/02sg1hf43 Victoria Park'), (52332, 'https://ror.org/02shz5w36', 'no_lang_code', 1, 'https://ror.org/02shz5w36 Julius Blum (Austria)'), (52333, 'https://ror.org/02smbds60', 'en', 1, 'https://ror.org/02smbds60 Texas Association of Community Colleges'), (52334, 'https://ror.org/02smc8550', 'en', 1, 'https://ror.org/02smc8550 Pacific Coast Imaging'), (52335, 'https://ror.org/02sp9pn28', 'en', 1, 'https://ror.org/02sp9pn28 Washington Area Women’s Foundation'), (52336, 'https://ror.org/02sq1ad32', 'no_lang_code', 1, 'https://ror.org/02sq1ad32 Unitika (Japan) ユニチカ株式会社'), (52337, 'https://ror.org/02sq6xd17', 'no_lang_code', 1, 'https://ror.org/02sq6xd17 GenSight Biologics (France)'), (52338, 'https://ror.org/02sqp6x70', 'no_lang_code', 1, 'https://ror.org/02sqp6x70 Hisamitsu Pharmaceutical (United States)'), (52339, 'https://ror.org/02ssxad66', 'en', 1, 'https://ror.org/02ssxad66 Canadian Anesthesia Research Foundation'), (52340, 'https://ror.org/02stt7r85', 'no_lang_code', 1, 'https://ror.org/02stt7r85 Weidmüller (Germany)'), (52341, 'https://ror.org/02swf6979', 'de', 1, 'https://ror.org/02swf6979 Solothurner Spitäler'), (52342, 'https://ror.org/02sxt3315', 'no_lang_code', 1, 'https://ror.org/02sxt3315 Peptcell (United Kingdom)'), (52343, 'https://ror.org/02syszr02', 'en', 1, 'https://ror.org/02syszr02 Drug Trials America'), (52344, 'https://ror.org/02t00tj02', 'en', 1, 'https://ror.org/02t00tj02 California Cherry Board'), (52345, 'https://ror.org/02t2ah669', 'de', 1, 'https://ror.org/02t2ah669 Dietmar Hopp Stiftung'), (52346, 'https://ror.org/02t2fta32', 'en', 1, 'https://ror.org/02t2fta32 Cancer Foundation of India'), (52347, 'https://ror.org/02t449189', 'en', 1, 'https://ror.org/02t449189 Summit Institute'), (52348, 'https://ror.org/02t57sv80', 'no_lang_code', 1, 'https://ror.org/02t57sv80 Atomo Diagnostics'), (52349, 'https://ror.org/02t5f1s27', 'no_lang_code', 1, 'https://ror.org/02t5f1s27 TiVo (United States)'), (52350, 'https://ror.org/02t5mzr26', 'en', 1, 'https://ror.org/02t5mzr26 AIM at Melanoma Foundation'), (52351, 'https://ror.org/02t8gzn69', 'en', 1, 'https://ror.org/02t8gzn69 DMA Health Strategies'), (52352, 'https://ror.org/02t9aa070', 'en', 1, 'https://ror.org/02t9aa070 Excel Diagnostics Imaging'), (52353, 'https://ror.org/02t9yy051', 'en', 1, 'https://ror.org/02t9yy051 Future Search Trials'), (52354, 'https://ror.org/02taaxx56', 'en', 1, 'https://ror.org/02taaxx56 Maternal and Child Health Hospital of Sichuan Province 四川省妇幼保健院'), (52355, 'https://ror.org/02tagtf93', 'no_lang_code', 1, 'https://ror.org/02tagtf93 Plastipak Holdings (United States)'), (52356, 'https://ror.org/02tbbcr43', 'no_lang_code', 1, 'https://ror.org/02tbbcr43 PellePharm (United States)'), (52357, 'https://ror.org/02tbtsz30', 'no_lang_code', 1, 'https://ror.org/02tbtsz30 Synexus (United States)'), (52358, 'https://ror.org/02tczp334', 'en', 1, 'https://ror.org/02tczp334 National College Access Network'), (52359, 'https://ror.org/02td35639', 'en', 1, 'https://ror.org/02td35639 Foundation for Advancement in Cancer Therapy'), (52360, 'https://ror.org/02tfves91', 'en', 1, 'https://ror.org/02tfves91 ITP Foundation'), (52361, 'https://ror.org/02tjbt313', 'en', 1, 'https://ror.org/02tjbt313 American Psychiatric Association Publishing'), (52362, 'https://ror.org/02tjrkg92', 'en', 1, 'https://ror.org/02tjrkg92 Dr. Robert C. and Veronica Atkins Foundation'), (52363, 'https://ror.org/02tjy3316', 'en', 1, 'https://ror.org/02tjy3316 Rivergate Dermatology Clinical Research Center'), (52364, 'https://ror.org/02tm1f187', 'en', 1, 'https://ror.org/02tm1f187 Downtown Women''s Health Care'), (52365, 'https://ror.org/02tmbkx36', 'en', 1, 'https://ror.org/02tmbkx36 Pro Carpathia'), (52366, 'https://ror.org/02tmyej90', 'no_lang_code', 1, 'https://ror.org/02tmyej90 NLT Technologies (Japan)'), (52367, 'https://ror.org/02tsmws33', 'en', 1, 'https://ror.org/02tsmws33 Editorial Projects in Education'), (52368, 'https://ror.org/02tstf772', 'it', 1, 'https://ror.org/02tstf772 Fondazione Alazio'), (52369, 'https://ror.org/02tx5s423', 'en', 1, 'https://ror.org/02tx5s423 Manhattan Medical Research'), (52370, 'https://ror.org/02ty1mz57', 'no_lang_code', 1, 'https://ror.org/02ty1mz57 Nippon Electric Glass (Japan) 日本電気硝子株式会社'), (52371, 'https://ror.org/02v0n2r32', 'en', 1, 'https://ror.org/02v0n2r32 Central Florida Eye Institute'), (52372, 'https://ror.org/02v1bmg02', 'en', 1, 'https://ror.org/02v1bmg02 Harrison County Community Foundation'), (52373, 'https://ror.org/02v1ywf39', 'no_lang_code', 1, 'https://ror.org/02v1ywf39 MIB (Germany)'), (52374, 'https://ror.org/02v3jvj44', 'en', 1, 'https://ror.org/02v3jvj44 Parish Dermatology'), (52375, 'https://ror.org/02v4fpg03', 'de', 1, 'https://ror.org/02v4fpg03 Asklepios Fachkliniken München-Gauting'), (52376, 'https://ror.org/02v54dp66', 'en', 1, 'https://ror.org/02v54dp66 Valdosta Psychiatric Associates'), (52377, 'https://ror.org/02v71kg05', 'en', 1, 'https://ror.org/02v71kg05 Princeton Survey Research Associates International'), (52378, 'https://ror.org/02va37h22', 'no_lang_code', 1, 'https://ror.org/02va37h22 Chugoku Electric Power (Japan) 中国電力株式会社'), (52379, 'https://ror.org/02vawgn43', 'en', 1, 'https://ror.org/02vawgn43 Dr. John T. Macdonald Foundation'), (52380, 'https://ror.org/02vbakk15', 'en', 1, 'https://ror.org/02vbakk15 Public Agenda'), (52381, 'https://ror.org/02vbg8350', 'no_lang_code', 1, 'https://ror.org/02vbg8350 Primetals Technologies (Austria)'), (52382, 'https://ror.org/02vdgjm20', 'en', 1, 'https://ror.org/02vdgjm20 Emily Davie and Joseph S. Kornfeld Foundation'), (52383, 'https://ror.org/02ve0bg52', 'no_lang_code', 1, 'https://ror.org/02ve0bg52 Eli Lilly (Netherlands)'), (52384, 'https://ror.org/02veq9058', 'en', 1, 'https://ror.org/02veq9058 Beaver Medical Group'), (52385, 'https://ror.org/02vfcrx76', 'en', 1, 'https://ror.org/02vfcrx76 American Association of Nurse Assessment Coordination'), (52386, 'https://ror.org/02vg0t417', 'it', 1, 'https://ror.org/02vg0t417 Associazione Italiana per lo Studio del Fegato'), (52387, 'https://ror.org/02vhx9606', 'en', 1, 'https://ror.org/02vhx9606 Metro-Minnesota Community Oncology Research Consortium'), (52388, 'https://ror.org/02vjc4d72', 'en', 1, 'https://ror.org/02vjc4d72 Women’s Health Care'), (52389, 'https://ror.org/02vjgtj13', 'en', 1, 'https://ror.org/02vjgtj13 American Society of Composers, Authors and Publishers'), (52390, 'https://ror.org/02vjn2106', 'en', 1, 'https://ror.org/02vjn2106 Sioux Falls VA Health Care System'), (52391, 'https://ror.org/02vjwa047', 'en', 1, 'https://ror.org/02vjwa047 Adhesive and Sealant Council'), (52392, 'https://ror.org/02vr5rk77', 'en', 1, 'https://ror.org/02vr5rk77 Southern California Desert Retina Consultants'), (52393, 'https://ror.org/02vrfjw73', 'no_lang_code', 1, 'https://ror.org/02vrfjw73 Flamel (Ireland)'), (52394, 'https://ror.org/02vtxt818', 'no_lang_code', 1, 'https://ror.org/02vtxt818 Bucher Emhart Glass (United States)'), (52395, 'https://ror.org/02vwk0k38', 'no_lang_code', 1, 'https://ror.org/02vwk0k38 Molins (United Kingdom)'), (52396, 'https://ror.org/02vyhmv78', 'en', 1, 'https://ror.org/02vyhmv78 Council of the Great City Schools'), (52397, 'https://ror.org/02vypmx38', 'da', 1, 'https://ror.org/02vypmx38 Psykiatrien i Region Syddanmark'), (52398, 'https://ror.org/02w3k0k28', 'no_lang_code', 1, 'https://ror.org/02w3k0k28 Sopharma (Bulgaria)'), (52399, 'https://ror.org/02w3v2343', 'pt', 1, 'https://ror.org/02w3v2343 Santa Casa de Votuporanga'), (52400, 'https://ror.org/02w4nb893', 'no_lang_code', 1, 'https://ror.org/02w4nb893 Mortensen Film (Denmark)'), (52401, 'https://ror.org/02w58t546', 'en', 1, 'https://ror.org/02w58t546 Albani Fonden Albani Foundation'), (52402, 'https://ror.org/02w5edg95', 'en', 1, 'https://ror.org/02w5edg95 Community Foundation of Will County'), (52403, 'https://ror.org/02w70xk53', 'en', 1, 'https://ror.org/02w70xk53 Fred L Emerson Foundation'), (52404, 'https://ror.org/02w915f84', 'no_lang_code', 1, 'https://ror.org/02w915f84 King-Maceyko Dermatology Associates'), (52405, 'https://ror.org/02wad9j32', 'en', 1, 'https://ror.org/02wad9j32 National Center on Time & Learning'), (52406, 'https://ror.org/02wat9q45', 'sv', 1, 'https://ror.org/02wat9q45 Norrbacka Eugeniastiftelsen'), (52407, 'https://ror.org/02wcsvn48', 'en', 1, 'https://ror.org/02wcsvn48 Charter School Growth Fund'), (52408, 'https://ror.org/02wctfj77', 'en', 1, 'https://ror.org/02wctfj77 Danny Fund'), (52409, 'https://ror.org/02wgt4y52', 'en', 1, 'https://ror.org/02wgt4y52 New England Organ Bank'), (52410, 'https://ror.org/02wgzvx44', 'en', 1, 'https://ror.org/02wgzvx44 National Press Foundation'), (52411, 'https://ror.org/02whcyg17', 'en', 1, 'https://ror.org/02whcyg17 Orthopaedic Innovation Centre'), (52412, 'https://ror.org/02wkb0b78', 'en', 1, 'https://ror.org/02wkb0b78 Compton Foundation'), (52413, 'https://ror.org/02wm1tc29', 'en', 1, 'https://ror.org/02wm1tc29 Massachusetts Health Data Consortium'), (52414, 'https://ror.org/02wm6n026', 'en', 1, 'https://ror.org/02wm6n026 Uganda Chartered Health Net'), (52415, 'https://ror.org/02wmkbh90', 'no_lang_code', 1, 'https://ror.org/02wmkbh90 Rütgers (Germany)'), (52416, 'https://ror.org/02wnfx958', 'en', 1, 'https://ror.org/02wnfx958 Child Cancer Foundation'), (52417, 'https://ror.org/02wnz8673', 'no_lang_code', 1, 'https://ror.org/02wnz8673 Sanofi (Belgium)'), (52418, 'https://ror.org/02wp64j63', 'en', 1, 'https://ror.org/02wp64j63 University of Iowa Health Alliance'), (52419, 'https://ror.org/02wpw4f97', 'en', 1, 'https://ror.org/02wpw4f97 Schoolzilla'), (52420, 'https://ror.org/02wqsek53', 'en', 1, 'https://ror.org/02wqsek53 Achieving the Dream'), (52421, 'https://ror.org/02wvbzy96', 'en', 1, 'https://ror.org/02wvbzy96 GSA Research'), (52422, 'https://ror.org/02wvemr05', 'no_lang_code', 1, 'https://ror.org/02wvemr05 Leo Pharma (France)'), (52423, 'https://ror.org/02wxwcd04', 'en', 1, 'https://ror.org/02wxwcd04 Charlottesville Medical Research'), (52424, 'https://ror.org/02wy7f107', 'en', 1, 'https://ror.org/02wy7f107 East Wellington Family Health Team'), (52425, 'https://ror.org/02wzwfh06', 'en', 1, 'https://ror.org/02wzwfh06 Oregon Center for Clinical Investigation'), (52426, 'https://ror.org/02x1h6095', 'en', 1, 'https://ror.org/02x1h6095 Kinetic Foundation'), (52427, 'https://ror.org/02x25m361', 'en', 1, 'https://ror.org/02x25m361 Academic Dermatology Associates'), (52428, 'https://ror.org/02x2h0d07', 'no_lang_code', 1, 'https://ror.org/02x2h0d07 Assa Abloy (Sweden)'), (52429, 'https://ror.org/02x2v5f35', 'en', 1, 'https://ror.org/02x2v5f35 Institut für die Erforschung der Habsburgermonarchie und des Balkanraumes Institute for Habsburg and Balkan Studies'), (52430, 'https://ror.org/02x3ev322', 'no_lang_code', 1, 'https://ror.org/02x3ev322 MUC Research (Germany)'), (52431, 'https://ror.org/02x94ka94', 'fr', 1, 'https://ror.org/02x94ka94 Intergroupe Francophone du Myélome'), (52432, 'https://ror.org/02x9c0555', 'en', 1, 'https://ror.org/02x9c0555 Child Development Associate'), (52433, 'https://ror.org/02xa0er70', 'no_lang_code', 1, 'https://ror.org/02xa0er70 21st Century Oncology (United States)'), (52434, 'https://ror.org/02xbjar17', 'es', 1, 'https://ror.org/02xbjar17 Centro Oftalmológico Moreiras'), (52435, 'https://ror.org/02xbx2821', 'no_lang_code', 1, 'https://ror.org/02xbx2821 Pascoe (Germany)'), (52436, 'https://ror.org/02xc9kn92', 'no_lang_code', 1, 'https://ror.org/02xc9kn92 Novadip (Belgium)'), (52437, 'https://ror.org/02xcf7b11', 'en', 1, 'https://ror.org/02xcf7b11 Neami National'), (52438, 'https://ror.org/02xdmdz74', 'en', 1, 'https://ror.org/02xdmdz74 Shasta County Office of Education'), (52439, 'https://ror.org/02xe1qe66', 'no_lang_code', 1, 'https://ror.org/02xe1qe66 Usui (Japan)'), (52440, 'https://ror.org/02xe8f033', 'no_lang_code', 1, 'https://ror.org/02xe8f033 ApniCure (United States)'), (52441, 'https://ror.org/02xeb0g66', 'en', 1, 'https://ror.org/02xeb0g66 Abell Foundation'), (52442, 'https://ror.org/02xes6w96', 'pt', 1, 'https://ror.org/02xes6w96 Instituo CUF Porto'), (52443, 'https://ror.org/02xfyax20', 'en', 1, 'https://ror.org/02xfyax20 Tokeidai Memorial Hospital'), (52444, 'https://ror.org/02xgxxy58', 'en', 1, 'https://ror.org/02xgxxy58 Community Foundation of Jackson Hole'), (52445, 'https://ror.org/02xhgjz70', 'en', 1, 'https://ror.org/02xhgjz70 Hubei Zhongshan Hospital 湖北省中山医院'), (52446, 'https://ror.org/02xna2753', 'no_lang_code', 1, 'https://ror.org/02xna2753 Extendicare (Canada)'), (52447, 'https://ror.org/02xq7zd76', 'de', 1, 'https://ror.org/02xq7zd76 Heidehof Stiftung, Stiftung für Bildung und Behindertenförderung'), (52448, 'https://ror.org/02xw5vd84', 'en', 1, 'https://ror.org/02xw5vd84 Keep A Breast Foundation'), (52449, 'https://ror.org/02xwnsz55', 'en', 1, 'https://ror.org/02xwnsz55 National Indian Education Association'), (52450, 'https://ror.org/02xyyna25', 'en', 1, 'https://ror.org/02xyyna25 International Society for Quality in Health Care'), (52451, 'https://ror.org/02y06nn11', 'en', 1, 'https://ror.org/02y06nn11 Legler Benbough Foundation'), (52452, 'https://ror.org/02y2gbd65', 'en', 1, 'https://ror.org/02y2gbd65 Red Hook Public Library'), (52453, 'https://ror.org/02y2mwn89', 'en', 1, 'https://ror.org/02y2mwn89 British Association of Endocrine and Thyroid Surgeons'), (52454, 'https://ror.org/02y3vvj84', 'ro', 1, 'https://ror.org/02y3vvj84 Spitalul Clinic Judetean de Urgenta Târgu Mureş'), (52455, 'https://ror.org/02y447m55', 'no_lang_code', 1, 'https://ror.org/02y447m55 Sirtex (Germany)'), (52456, 'https://ror.org/02y5beg61', 'fr', 1, 'https://ror.org/02y5beg61 Institut Louis Bachelier'), (52457, 'https://ror.org/02y6vkj44', 'no_lang_code', 1, 'https://ror.org/02y6vkj44 Chicago Cornea Consultants (United States)'), (52458, 'https://ror.org/02y70wg25', 'en', 1, 'https://ror.org/02y70wg25 Colorado Children''s Campaign'), (52459, 'https://ror.org/02y92d036', 'fr', 1, 'https://ror.org/02y92d036 Centre Hospitalier du Rouvray'), (52460, 'https://ror.org/02y95ae87', 'en', 1, 'https://ror.org/02y95ae87 John Wayne Cancer Foundation'), (52461, 'https://ror.org/02y9z4d43', 'en', 1, 'https://ror.org/02y9z4d43 Alliance for Aging Research'), (52462, 'https://ror.org/02yb4t415', 'no_lang_code', 1, 'https://ror.org/02yb4t415 Sidel (France)'), (52463, 'https://ror.org/02ycbp592', 'pt', 1, 'https://ror.org/02ycbp592 Hospital Central da Polícia Militar'), (52464, 'https://ror.org/02ycc8g77', 'en', 1, 'https://ror.org/02ycc8g77 Hyogo Prefecture Health Foundation 公益財団法人 兵庫県健康財団'), (52465, 'https://ror.org/02ye6d240', 'en', 1, 'https://ror.org/02ye6d240 Agriculture, Forestry and Fisheries Research Council 農林水産技術会議'), (52466, 'https://ror.org/02yf6ha74', 'en', 1, 'https://ror.org/02yf6ha74 Institut für Vergleichende Medien und Kommunikationsforschung Institute for Comparative Media and Communication Studies'), (52467, 'https://ror.org/02yfxbq86', 'en', 1, 'https://ror.org/02yfxbq86 Chiesi Foundation'), (52468, 'https://ror.org/02yhzgr66', 'no_lang_code', 1, 'https://ror.org/02yhzgr66 Starkey Hearing Technologies (United States)'), (52469, 'https://ror.org/02yjqcm66', 'en', 1, 'https://ror.org/02yjqcm66 Forest Research Institute Институт за гората'), (52470, 'https://ror.org/02ykjqt50', 'no_lang_code', 1, 'https://ror.org/02ykjqt50 Philips (Sweden)'), (52471, 'https://ror.org/02yknqp61', 'en', 1, 'https://ror.org/02yknqp61 British Small Animal Veterinary Association'), (52472, 'https://ror.org/02ykq8x89', 'en', 1, 'https://ror.org/02ykq8x89 Small Business Majority'), (52473, 'https://ror.org/02ym95m10', 'no_lang_code', 1, 'https://ror.org/02ym95m10 Hospital e Maternidade Celso Pierro'), (52474, 'https://ror.org/02ymhq538', 'nl', 1, 'https://ror.org/02ymhq538 Instituut Verbeeten'), (52475, 'https://ror.org/02yn0z735', 'en', 1, 'https://ror.org/02yn0z735 Association for Iron & Steel Technology'), (52476, 'https://ror.org/02ypwf602', 'no_lang_code', 1, 'https://ror.org/02ypwf602 Sierra BioMedical (United States)'), (52477, 'https://ror.org/02ys95c13', 'en', 1, 'https://ror.org/02ys95c13 Fons Vitae'), (52478, 'https://ror.org/02yt6gx28', 'en', 1, 'https://ror.org/02yt6gx28 Pasadena Child Health Foundation'), (52479, 'https://ror.org/02ytjmy25', 'en', 1, 'https://ror.org/02ytjmy25 Asian Americans Advancing Justice'), (52480, 'https://ror.org/02yxc8q04', 'en', 1, 'https://ror.org/02yxc8q04 New York Foundation'), (52481, 'https://ror.org/02yxsn987', 'no_lang_code', 1, 'https://ror.org/02yxsn987 ALK-Abelló (Germany)'), (52482, 'https://ror.org/02yyt7186', 'no_lang_code', 1, 'https://ror.org/02yyt7186 Burton D. Morgan Foundation'), (52483, 'https://ror.org/02z02qt46', 'da', 1, 'https://ror.org/02z02qt46 Gangstedfonden'), (52484, 'https://ror.org/02z1p6e80', 'en', 1, 'https://ror.org/02z1p6e80 Denver Public Schools'), (52485, 'https://ror.org/02z24na70', 'fr', 1, 'https://ror.org/02z24na70 Fondation Medic'), (52486, 'https://ror.org/02z2a8376', 'en', 1, 'https://ror.org/02z2a8376 Washington State Grange'), (52487, 'https://ror.org/02z2bdj68', 'es', 1, 'https://ror.org/02z2bdj68 Fundació ACE'), (52488, 'https://ror.org/02z2kxd64', 'en', 1, 'https://ror.org/02z2kxd64 Premiere Research Institute'), (52489, 'https://ror.org/02z2z4m14', 'no_lang_code', 1, 'https://ror.org/02z2z4m14 Access Energy (United Kingdom)'), (52490, 'https://ror.org/02z3hd077', 'en', 1, 'https://ror.org/02z3hd077 Leo S. Guthman Fund'), (52491, 'https://ror.org/02z43nn16', 'no_lang_code', 1, 'https://ror.org/02z43nn16 Taiho Oncology (United States)'); INSERT INTO `rors` VALUES (52492, 'https://ror.org/02z4gce56', 'en', 1, 'https://ror.org/02z4gce56 Riverhills Healthcare'), (52493, 'https://ror.org/02z5k8341', 'en', 1, 'https://ror.org/02z5k8341 Anna Needs Neuroblastoma Answers'), (52494, 'https://ror.org/02z602v88', 'no_lang_code', 1, 'https://ror.org/02z602v88 Daewoo Electronics (South Korea)'), (52495, 'https://ror.org/02z9ybv55', 'pt', 1, 'https://ror.org/02z9ybv55 Instituto de Cardiologia de Santa Catarina'), (52496, 'https://ror.org/02za90e47', 'no_lang_code', 1, 'https://ror.org/02za90e47 Strekin (Switzerland)'), (52497, 'https://ror.org/02zaaft58', 'en', 1, 'https://ror.org/02zaaft58 Nordic Culture Fund'), (52498, 'https://ror.org/02zb85s41', 'en', 1, 'https://ror.org/02zb85s41 Southern Area Library'), (52499, 'https://ror.org/02zbdpx12', 'en', 1, 'https://ror.org/02zbdpx12 Electri International'), (52500, 'https://ror.org/02zdf9k07', 'en', 1, 'https://ror.org/02zdf9k07 Price Vision Group'), (52501, 'https://ror.org/02zgxrw23', 'en', 1, 'https://ror.org/02zgxrw23 Pine River Public Library District'), (52502, 'https://ror.org/02zhsgx35', 'no_lang_code', 1, 'https://ror.org/02zhsgx35 Sonoco (United States)'), (52503, 'https://ror.org/02zm2n135', 'en', 1, 'https://ror.org/02zm2n135 Association of Clinicians for the Underserved'), (52504, 'https://ror.org/02znpxw74', 'en', 1, 'https://ror.org/02znpxw74 Oklahoma Health Care Authority'), (52505, 'https://ror.org/02zqt3j23', 'en', 1, 'https://ror.org/02zqt3j23 Cradle of Liberty Council Boy Scouts of America'), (52506, 'https://ror.org/02zqy5k53', 'en', 1, 'https://ror.org/02zqy5k53 Common Sense Media'), (52507, 'https://ror.org/02ztnzj53', 'en', 1, 'https://ror.org/02ztnzj53 Beacon Clinical Research'), (52508, 'https://ror.org/02zttjj06', 'no_lang_code', 1, 'https://ror.org/02zttjj06 Capnova (Denmark)'), (52509, 'https://ror.org/02zvde082', 'en', 1, 'https://ror.org/02zvde082 Buena Vista Eye Care'), (52510, 'https://ror.org/02zxf2242', 'no_lang_code', 1, 'https://ror.org/02zxf2242 Allergan (Finland)'), (52511, 'https://ror.org/02zyvys51', 'en', 1, 'https://ror.org/02zyvys51 City Clinical Hospital Городская Клиническая больница № 57'), (52512, 'https://ror.org/02zzsnz14', 'en', 1, 'https://ror.org/02zzsnz14 Kellner Family Foundation'), (52513, 'https://ror.org/0300wre24', 'en', 1, 'https://ror.org/0300wre24 Swedish Parkinson’s Disease Association'), (52514, 'https://ror.org/03037e419', 'en', 1, 'https://ror.org/03037e419 Ninth Hospital of Nanchang 南昌市第九医院官方网站'), (52515, 'https://ror.org/03037gf85', 'no_lang_code', 1, 'https://ror.org/03037gf85 Licentia IT (Germany)'), (52516, 'https://ror.org/0305r3866', 'en', 1, 'https://ror.org/0305r3866 CSY China-International Hepatitis Research Foundation'), (52517, 'https://ror.org/0306e5z24', 'en', 1, 'https://ror.org/0306e5z24 Multiple Sclerosis Center of Atlanta'), (52518, 'https://ror.org/030893n97', 'no_lang_code', 1, 'https://ror.org/030893n97 Reckitt Benckiser (United States)'), (52519, 'https://ror.org/0309ddb28', 'en', 1, 'https://ror.org/0309ddb28 See Forever Foundation'), (52520, 'https://ror.org/030ajjm26', 'no_lang_code', 1, 'https://ror.org/030ajjm26 Absa Bank (South Africa)'), (52521, 'https://ror.org/030cbnq98', 'en', 1, 'https://ror.org/030cbnq98 Beneficial Bank'), (52522, 'https://ror.org/030d18955', 'no_lang_code', 1, 'https://ror.org/030d18955 SmartPractice (United States)'), (52523, 'https://ror.org/030d3xr95', 'de', 1, 'https://ror.org/030d3xr95 Deutsche Dystonie Gesellschaft'), (52524, 'https://ror.org/030e7hb13', 'en', 1, 'https://ror.org/030e7hb13 Kindering'), (52525, 'https://ror.org/030fcrp07', 'es', 1, 'https://ror.org/030fcrp07 Clinica Chicamocha'), (52526, 'https://ror.org/030hgrs40', 'en', 1, 'https://ror.org/030hgrs40 Skin Surgery Medical Group'), (52527, 'https://ror.org/030hv2833', 'no_lang_code', 1, 'https://ror.org/030hv2833 Laguna Pharmaceuticals (United States)'), (52528, 'https://ror.org/030m3jr74', 'en', 1, 'https://ror.org/030m3jr74 Center for Children & Youth Justice'), (52529, 'https://ror.org/030ph1y13', 'no_lang_code', 1, 'https://ror.org/030ph1y13 Synexus (United Kingdom)'), (52530, 'https://ror.org/030q46522', 'en', 1, 'https://ror.org/030q46522 Lanzhou Science and Technology Bureau 兰州市科学技术局'), (52531, 'https://ror.org/030q7x253', 'en', 1, 'https://ror.org/030q7x253 Acorn'), (52532, 'https://ror.org/030qmj755', 'no_lang_code', 1, 'https://ror.org/030qmj755 Higashi Takarazuka Satoh Hospital'), (52533, 'https://ror.org/030qsdn71', 'no_lang_code', 1, 'https://ror.org/030qsdn71 Federal Mogul (United States)'), (52534, 'https://ror.org/030r2wp80', 'en', 1, 'https://ror.org/030r2wp80 Nature Healing Nature'), (52535, 'https://ror.org/030s71c06', 'en', 1, 'https://ror.org/030s71c06 C. Louis Meyer Family Foundation'), (52536, 'https://ror.org/030sgj832', 'no_lang_code', 1, 'https://ror.org/030sgj832 GlaxoSmithKline (Sri Lanka)'), (52537, 'https://ror.org/030t8f239', 'no_lang_code', 1, 'https://ror.org/030t8f239 Ran Naor Institute'), (52538, 'https://ror.org/030tsts40', 'en', 1, 'https://ror.org/030tsts40 Jewish community Brno'), (52539, 'https://ror.org/030vz3726', 'no_lang_code', 1, 'https://ror.org/030vz3726 LFB (United States)'), (52540, 'https://ror.org/030xn9908', 'en', 1, 'https://ror.org/030xn9908 Tyton Partners'), (52541, 'https://ror.org/030y53541', 'en', 1, 'https://ror.org/030y53541 Augustinus Fonden Augustinus Foundation'), (52542, 'https://ror.org/030z2cx33', 'no_lang_code', 1, 'https://ror.org/030z2cx33 Cera Engineering (France)'), (52543, 'https://ror.org/0312ka630', 'en', 1, 'https://ror.org/0312ka630 Clinical Trials New Zealand'), (52544, 'https://ror.org/031337c36', 'en', 1, 'https://ror.org/031337c36 MetroPlus Health Plan'), (52545, 'https://ror.org/0313yw666', 'no_lang_code', 1, 'https://ror.org/0313yw666 Liya Kebede Foundation'), (52546, 'https://ror.org/0314qvz14', 'en', 1, 'https://ror.org/0314qvz14 Foellinger Foundation'), (52547, 'https://ror.org/03174hp70', 'en', 1, 'https://ror.org/03174hp70 Jerome Foundation'), (52548, 'https://ror.org/0319b3z70', 'no_lang_code', 1, 'https://ror.org/0319b3z70 Mensia (France)'), (52549, 'https://ror.org/031a73r17', 'nl', 1, 'https://ror.org/031a73r17 Tolbrug Specialistische Revalidatie'), (52550, 'https://ror.org/031czmc73', 'en', 1, 'https://ror.org/031czmc73 Asian American Federation'), (52551, 'https://ror.org/031d0t341', 'fr', 1, 'https://ror.org/031d0t341 Interaction Université Économie'), (52552, 'https://ror.org/031fh2e54', 'en', 1, 'https://ror.org/031fh2e54 Fulbright Canada'), (52553, 'https://ror.org/031fyj528', 'no_lang_code', 1, 'https://ror.org/031fyj528 Insmed (United Kingdom)'), (52554, 'https://ror.org/031kkyn50', 'no_lang_code', 1, 'https://ror.org/031kkyn50 Solenne (Netherlands)'), (52555, 'https://ror.org/031kwjn35', 'en', 1, 'https://ror.org/031kwjn35 Bozeman Urgent Care Center'), (52556, 'https://ror.org/031pc9z34', 'en', 1, 'https://ror.org/031pc9z34 Koch Cultural Trust'), (52557, 'https://ror.org/031rs9d30', 'en', 1, 'https://ror.org/031rs9d30 Asia Pacific Foundation of Canada'), (52558, 'https://ror.org/031rwv086', 'en', 1, 'https://ror.org/031rwv086 Diagnostics Research Group'), (52559, 'https://ror.org/031t42b47', 'no_lang_code', 1, 'https://ror.org/031t42b47 URSAPHARM (Germany)'), (52560, 'https://ror.org/031tdwf58', 'en', 1, 'https://ror.org/031tdwf58 Texas Diabetes Institute'), (52561, 'https://ror.org/031tkkf47', 'en', 1, 'https://ror.org/031tkkf47 Adam Smith Institute'), (52562, 'https://ror.org/031tq8403', 'no_lang_code', 1, 'https://ror.org/031tq8403 Synaptics (United States)'), (52563, 'https://ror.org/031tw3m13', 'en', 1, 'https://ror.org/031tw3m13 Global Development Analytics'), (52564, 'https://ror.org/031y85330', 'no_lang_code', 1, 'https://ror.org/031y85330 MediaTek (Singapore)'), (52565, 'https://ror.org/031z7rc44', 'en', 1, 'https://ror.org/031z7rc44 John F. Kennedy Presidential Library and Museum'), (52566, 'https://ror.org/0321tae61', 'fr', 1, 'https://ror.org/0321tae61 Fondation Ernst et Lucie Schmidheiny'), (52567, 'https://ror.org/03245e858', 'no_lang_code', 1, 'https://ror.org/03245e858 Gebro Pharma (Austria)'), (52568, 'https://ror.org/0324an637', 'en', 1, 'https://ror.org/0324an637 St. Gregory the Theologian Charity Foundation Благотворительный фонд имени святителя Григория Богослова'), (52569, 'https://ror.org/0324red69', 'no_lang_code', 1, 'https://ror.org/0324red69 Boehringer Ingelheim (Belgium)'), (52570, 'https://ror.org/0324x0m97', 'en', 1, 'https://ror.org/0324x0m97 World Council of Credit Unions'), (52571, 'https://ror.org/0328e2d50', 'no_lang_code', 1, 'https://ror.org/0328e2d50 Bruschettini (Italy)'), (52572, 'https://ror.org/032a2g603', 'no_lang_code', 1, 'https://ror.org/032a2g603 Menicon (Japan)'), (52573, 'https://ror.org/032a9fh96', 'de', 1, 'https://ror.org/032a9fh96 Friedrich Baur Stiftung'), (52574, 'https://ror.org/032apyw09', 'en', 1, 'https://ror.org/032apyw09 Asthma and Respiratory Foundation New Zealand'), (52575, 'https://ror.org/032bmj362', 'en', 1, 'https://ror.org/032bmj362 Demos'), (52576, 'https://ror.org/032cjpr90', 'en', 1, 'https://ror.org/032cjpr90 Naples Anesthesia & Physician Associates'), (52577, 'https://ror.org/032e62r85', 'en', 1, 'https://ror.org/032e62r85 Hamzavi Dermatology'), (52578, 'https://ror.org/032hncp64', 'no_lang_code', 1, 'https://ror.org/032hncp64 Plasser and Theurer (Austria)'), (52579, 'https://ror.org/032m10r53', 'fr', 1, 'https://ror.org/032m10r53 Centre Hospitalier Lannion Trestel'), (52580, 'https://ror.org/032n1sw23', 'en', 1, 'https://ror.org/032n1sw23 Anne and Harry Zarrow Foundation'), (52581, 'https://ror.org/032pnr897', 'en', 1, 'https://ror.org/032pnr897 Cardiology Associates of Savannah'), (52582, 'https://ror.org/032qryz87', 'no_lang_code', 1, 'https://ror.org/032qryz87 Anritsu (Japan) アンリツ株式会社'), (52583, 'https://ror.org/032s01b40', 'en', 1, 'https://ror.org/032s01b40 Czech Christian Academy Česká Křesťanská Akademie'), (52584, 'https://ror.org/032s45981', 'en', 1, 'https://ror.org/032s45981 Health Care Foundation of Greater Kansas City'), (52585, 'https://ror.org/032s9p188', 'en', 1, 'https://ror.org/032s9p188 Anesthesia Patient Safety Foundation'), (52586, 'https://ror.org/032wd7d36', 'en', 1, 'https://ror.org/032wd7d36 Det Obelske Familiefond Obel Family Foundation'), (52587, 'https://ror.org/032wt0096', 'en', 1, 'https://ror.org/032wt0096 Alport Syndrome Foundation'), (52588, 'https://ror.org/032x2te45', 'en', 1, 'https://ror.org/032x2te45 Parkes Foundation'), (52589, 'https://ror.org/032xegc37', 'en', 1, 'https://ror.org/032xegc37 Colorado Parks and Wildlife'), (52590, 'https://ror.org/032z1nw74', 'no_lang_code', 1, 'https://ror.org/032z1nw74 Hosiden (Japan) ホシデン株式会社'), (52591, 'https://ror.org/032zwwa29', 'en', 1, 'https://ror.org/032zwwa29 Austin Community Foundation'), (52592, 'https://ror.org/0332rf080', 'no_lang_code', 1, 'https://ror.org/0332rf080 FF Pharma (Netherlands)'), (52593, 'https://ror.org/0332rjs08', 'en', 1, 'https://ror.org/0332rjs08 Brewster Place'), (52594, 'https://ror.org/0333r3995', 'en', 1, 'https://ror.org/0333r3995 Technet Foundation'), (52595, 'https://ror.org/03362cn11', 'en', 1, 'https://ror.org/03362cn11 Doctors Community Hospital'), (52596, 'https://ror.org/0339ge880', 'tr', 1, 'https://ror.org/0339ge880 Gözde Hastanesi Malatya'), (52597, 'https://ror.org/033bgzt54', 'en', 1, 'https://ror.org/033bgzt54 Neurology Associates'), (52598, 'https://ror.org/033c8zt46', 'no_lang_code', 1, 'https://ror.org/033c8zt46 Pharmanest (Sweden)'), (52599, 'https://ror.org/033esc660', 'en', 1, 'https://ror.org/033esc660 International Foundation for Electoral Systems'), (52600, 'https://ror.org/033fkmm82', 'pl', 1, 'https://ror.org/033fkmm82 Warsztat Innowacji Społecznych Workshop for Social Innovation'), (52601, 'https://ror.org/033gqt621', 'en', 1, 'https://ror.org/033gqt621 Innovation Center Denmark'), (52602, 'https://ror.org/033ha7p77', 'en', 1, 'https://ror.org/033ha7p77 Buoniconti Fund'), (52603, 'https://ror.org/033hnyq61', 'en', 1, 'https://ror.org/033hnyq61 Leon Levy Foundation'), (52604, 'https://ror.org/033hx2k10', 'en', 1, 'https://ror.org/033hx2k10 Women''s World Banking'), (52605, 'https://ror.org/033m0d088', 'no_lang_code', 1, 'https://ror.org/033m0d088 Mesa Biotech (United States)'), (52606, 'https://ror.org/033mx0906', 'en', 1, 'https://ror.org/033mx0906 St Andrew’s Hospital'), (52607, 'https://ror.org/033myqh37', 'en', 1, 'https://ror.org/033myqh37 Forbes Funds'), (52608, 'https://ror.org/033ngjs02', 'de', 1, 'https://ror.org/033ngjs02 Migräne Klinik Königstein'), (52609, 'https://ror.org/033q3j448', 'no_lang_code', 1, 'https://ror.org/033q3j448 Targovax (Finland)'), (52610, 'https://ror.org/033q83c72', 'en', 1, 'https://ror.org/033q83c72 Bangalore Diabetes Centre'), (52611, 'https://ror.org/033t60e64', 'en', 1, 'https://ror.org/033t60e64 Val Verde County Library'), (52612, 'https://ror.org/033vxj623', 'en', 1, 'https://ror.org/033vxj623 New York Lawyers for the Public Interest'), (52613, 'https://ror.org/033wsx172', 'no_lang_code', 1, 'https://ror.org/033wsx172 Siesta Group (Austria)'), (52614, 'https://ror.org/033x8r647', 'en', 1, 'https://ror.org/033x8r647 Utah Department of Heritage and Arts'), (52615, 'https://ror.org/033z8qs97', 'no_lang_code', 1, 'https://ror.org/033z8qs97 Hunter Douglas (Netherlands)'), (52616, 'https://ror.org/033zztb05', 'en', 1, 'https://ror.org/033zztb05 Southeastern Fertility Center'), (52617, 'https://ror.org/034118041', 'en', 1, 'https://ror.org/034118041 Grantmakers In Aging'), (52618, 'https://ror.org/0341xp563', 'en', 1, 'https://ror.org/0341xp563 Global Scientific Innovations'), (52619, 'https://ror.org/03430ny40', 'no_lang_code', 1, 'https://ror.org/03430ny40 Perpetual (Australia)'), (52620, 'https://ror.org/0343e3s97', 'no_lang_code', 1, 'https://ror.org/0343e3s97 Epic Imaging (United States)'), (52621, 'https://ror.org/0344snf66', 'en', 1, 'https://ror.org/0344snf66 Harold Whitworth Pierce Charitable Trust'), (52622, 'https://ror.org/0347nf139', 'en', 1, 'https://ror.org/0347nf139 Patron Saints Foundation'), (52623, 'https://ror.org/0348n4f40', 'en', 1, 'https://ror.org/0348n4f40 INMED Partnerships for Children'), (52624, 'https://ror.org/0349geh35', 'en', 1, 'https://ror.org/0349geh35 University Bank'), (52625, 'https://ror.org/034a8v770', 'en', 1, 'https://ror.org/034a8v770 Collaborative Neuroscience Network'), (52626, 'https://ror.org/034bxq716', 'en', 1, 'https://ror.org/034bxq716 Emergency Nurses Association'), (52627, 'https://ror.org/034cagk98', 'en', 1, 'https://ror.org/034cagk98 Copenhagen Institute for Futures Studies Instituttet for Fremtidsforskning'), (52628, 'https://ror.org/034cs5236', 'no_lang_code', 1, 'https://ror.org/034cs5236 Only For Children Pharmaceuticals (France)'), (52629, 'https://ror.org/034cxfp17', 'en', 1, 'https://ror.org/034cxfp17 Texas Diabetes & Endocrinology'), (52630, 'https://ror.org/034eeph55', 'no_lang_code', 1, 'https://ror.org/034eeph55 Just Biotherapeutics (United States)'), (52631, 'https://ror.org/034f25535', 'en', 1, 'https://ror.org/034f25535 Ashoka'), (52632, 'https://ror.org/034f3ys32', 'en', 1, 'https://ror.org/034f3ys32 New Mexico Hospital Association'), (52633, 'https://ror.org/034g3td21', 'en', 1, 'https://ror.org/034g3td21 Cure HHT'), (52634, 'https://ror.org/034j0b057', 'en', 1, 'https://ror.org/034j0b057 Childrens Cardiomyopathy Foundation'), (52635, 'https://ror.org/034mtjq62', 'en', 1, 'https://ror.org/034mtjq62 Nova Scotia Cancer Centre'), (52636, 'https://ror.org/034rzmm61', 'en', 1, 'https://ror.org/034rzmm61 Youth Service America'), (52637, 'https://ror.org/034skjj26', 'en', 1, 'https://ror.org/034skjj26 National Council on Interpreting in Health Care'), (52638, 'https://ror.org/034srtc18', 'en', 1, 'https://ror.org/034srtc18 Johnson Center for Child Health and Development'), (52639, 'https://ror.org/034xn0k91', 'fr', 1, 'https://ror.org/034xn0k91 Fondation Hans Wilsdorf'), (52640, 'https://ror.org/034yqx295', 'en', 1, 'https://ror.org/034yqx295 Hellenic Oncology Research Group'), (52641, 'https://ror.org/034ze3r60', 'en', 1, 'https://ror.org/034ze3r60 West Florida Public Libraries'), (52642, 'https://ror.org/035017f20', 'no_lang_code', 1, 'https://ror.org/035017f20 Omya (Switzerland)'), (52643, 'https://ror.org/0351vqb61', 'en', 1, 'https://ror.org/0351vqb61 Inoue Foundation for Science 井上科学振興財団'), (52644, 'https://ror.org/03526b919', 'en', 1, 'https://ror.org/03526b919 Boston Children''s Health Physicians'), (52645, 'https://ror.org/0355jzb94', 'en', 1, 'https://ror.org/0355jzb94 Cohoes Savings Foundation'), (52646, 'https://ror.org/0356gcm38', 'de', 1, 'https://ror.org/0356gcm38 Krankenhaus Brixen'), (52647, 'https://ror.org/0359v5r48', 'no_lang_code', 1, 'https://ror.org/0359v5r48 Nini Hospital'), (52648, 'https://ror.org/035ab9z58', 'en', 1, 'https://ror.org/035ab9z58 New Classrooms Innovation Partners'), (52649, 'https://ror.org/035b1yw16', 'en', 1, 'https://ror.org/035b1yw16 Critical Review Foundation'), (52650, 'https://ror.org/035d9vx83', 'no_lang_code', 1, 'https://ror.org/035d9vx83 MagnaChip (South Korea)'), (52651, 'https://ror.org/035dcj063', 'en', 1, 'https://ror.org/035dcj063 East Morgan County Hospital'), (52652, 'https://ror.org/035e8e276', 'no_lang_code', 1, 'https://ror.org/035e8e276 Thriasio General Hospital of Elefsina Θριάσιο Νοσοκομείο'), (52653, 'https://ror.org/035gh0k19', 'en', 1, 'https://ror.org/035gh0k19 Molly Towell Perinatal Research Foundation'), (52654, 'https://ror.org/035gpdd16', 'en', 1, 'https://ror.org/035gpdd16 Palouse Discovery Science Center'), (52655, 'https://ror.org/035gx5q08', 'en', 1, 'https://ror.org/035gx5q08 Institut für Orientalische und Europäische Archäologie Institute for Oriental and European Archaeology'), (52656, 'https://ror.org/035jrer59', 'it', 1, 'https://ror.org/035jrer59 Humanitas Gavazzeni'), (52657, 'https://ror.org/035k1cb93', 'en', 1, 'https://ror.org/035k1cb93 Children''s Neuroblastoma Cancer Foundation'), (52658, 'https://ror.org/035k7dd86', 'en', 1, 'https://ror.org/035k7dd86 New Mexico State University Grants'), (52659, 'https://ror.org/035m97n77', 'no_lang_code', 1, 'https://ror.org/035m97n77 Crolll (Germany)'), (52660, 'https://ror.org/035pepv51', 'no_lang_code', 1, 'https://ror.org/035pepv51 Ophthotech (United States)'), (52661, 'https://ror.org/035scsv55', 'no_lang_code', 1, 'https://ror.org/035scsv55 Sandberg Development (Sweden)'), (52662, 'https://ror.org/035svq226', 'no_lang_code', 1, 'https://ror.org/035svq226 CogBooks (United Kingdom)'), (52663, 'https://ror.org/035vrvw61', 'no_lang_code', 1, 'https://ror.org/035vrvw61 Prysmian Group (Netherlands)'), (52664, 'https://ror.org/035w8ak98', 'en', 1, 'https://ror.org/035w8ak98 Global Network of People Living with HIV/AIDS'), (52665, 'https://ror.org/035yn3c54', 'en', 1, 'https://ror.org/035yn3c54 Northeast Medical Research Associates'), (52666, 'https://ror.org/0360x1161', 'no_lang_code', 1, 'https://ror.org/0360x1161 BRCR Global (United States)'), (52667, 'https://ror.org/0363m9h89', 'no_lang_code', 1, 'https://ror.org/0363m9h89 Rheacell (Germany)'), (52668, 'https://ror.org/0363rx482', 'en', 1, 'https://ror.org/0363rx482 Parkinson''s Association of Ireland'), (52669, 'https://ror.org/0363ync48', 'en', 1, 'https://ror.org/0363ync48 Deer Lodge Centre'), (52670, 'https://ror.org/0368cn166', 'en', 1, 'https://ror.org/0368cn166 Southwest Seattle Youth & Family Services'), (52671, 'https://ror.org/0369ff310', 'en', 1, 'https://ror.org/0369ff310 Dominic Barker Trust'), (52672, 'https://ror.org/036ezxy46', 'no_lang_code', 1, 'https://ror.org/036ezxy46 Dr. Franz Köhler Chemie (Germany)'), (52673, 'https://ror.org/036fajn26', 'en', 1, 'https://ror.org/036fajn26 Czech Society for Butterfly and Moth Conservation'), (52674, 'https://ror.org/036g5z675', 'it', 1, 'https://ror.org/036g5z675 Azienda Sanitaria Locale CN2'), (52675, 'https://ror.org/036hktk48', 'no_lang_code', 1, 'https://ror.org/036hktk48 Babes in Arms (Canada)'), (52676, 'https://ror.org/036hs6h32', 'en', 1, 'https://ror.org/036hs6h32 Coffs Harbour City Council'), (52677, 'https://ror.org/036jkzq95', 'en', 1, 'https://ror.org/036jkzq95 European Society of Cataract and Refractive Surgeons'), (52678, 'https://ror.org/036jq7b41', 'en', 1, 'https://ror.org/036jq7b41 Allen Foundation'), (52679, 'https://ror.org/036jr6x18', 'en', 1, 'https://ror.org/036jr6x18 Save the Children'), (52680, 'https://ror.org/036jvr704', 'en', 1, 'https://ror.org/036jvr704 Kappa Alpha Theta Foundation'), (52681, 'https://ror.org/036nywx06', 'en', 1, 'https://ror.org/036nywx06 Dr. Herbert & Nicole Wertheim Family Foundation'), (52682, 'https://ror.org/036qaf130', 'en', 1, 'https://ror.org/036qaf130 Karen Brown Scleroderma Foundation'), (52683, 'https://ror.org/036qeyz83', 'en', 1, 'https://ror.org/036qeyz83 Stuart Oncology Associates'), (52684, 'https://ror.org/036rgb954', 'de', 1, 'https://ror.org/036rgb954 RoMed Kliniken'), (52685, 'https://ror.org/036v92s32', 'en', 1, 'https://ror.org/036v92s32 Aurora Medical Center'), (52686, 'https://ror.org/036xjse96', 'en', 1, 'https://ror.org/036xjse96 E. Rhodes and Leona B. Carpenter Foundation'), (52687, 'https://ror.org/0372e3p95', 'no_lang_code', 1, 'https://ror.org/0372e3p95 Tanita (Japan) 株式会社タニタ'), (52688, 'https://ror.org/0372zyg05', 'no_lang_code', 1, 'https://ror.org/0372zyg05 Huisman (Netherlands)'), (52689, 'https://ror.org/0376x2274', 'en', 1, 'https://ror.org/0376x2274 European Society of Endocrinology'), (52690, 'https://ror.org/0377kgt41', 'en', 1, 'https://ror.org/0377kgt41 Communities United'), (52691, 'https://ror.org/0379rbe49', 'en', 1, 'https://ror.org/0379rbe49 Eye Surgeons of Indiana'), (52692, 'https://ror.org/037b6bp42', 'es', 1, 'https://ror.org/037b6bp42 Alianza Española de Familias de Von Hippel Lindau'), (52693, 'https://ror.org/037bjx704', 'en', 1, 'https://ror.org/037bjx704 Cancer Care South East'), (52694, 'https://ror.org/037bmav86', 'no_lang_code', 1, 'https://ror.org/037bmav86 Haberdashers (United Kingdom)'), (52695, 'https://ror.org/037bzzg07', 'en', 1, 'https://ror.org/037bzzg07 Sasaki Associates'), (52696, 'https://ror.org/037d2wg57', 'en', 1, 'https://ror.org/037d2wg57 Johnson Foundation'), (52697, 'https://ror.org/037ds2k79', 'en', 1, 'https://ror.org/037ds2k79 Virginia Research Institute'), (52698, 'https://ror.org/037g47a86', 'no_lang_code', 1, 'https://ror.org/037g47a86 Arthur Asirvatham Hospital'), (52699, 'https://ror.org/037gt0k77', 'no_lang_code', 1, 'https://ror.org/037gt0k77 Univar (United Kingdom)'), (52700, 'https://ror.org/037jcf003', 'en', 1, 'https://ror.org/037jcf003 Horowitz Foundation for Social Policy'), (52701, 'https://ror.org/037my6387', 'en', 1, 'https://ror.org/037my6387 Sleep Therapy and Research Center'), (52702, 'https://ror.org/037ny3p81', 'en', 1, 'https://ror.org/037ny3p81 Frances P. Bunnelle Foundation'), (52703, 'https://ror.org/037pyxf85', 'en', 1, 'https://ror.org/037pyxf85 H. L. Snyder Medical Foundation'), (52704, 'https://ror.org/037rewq44', 'en', 1, 'https://ror.org/037rewq44 CNS Healthcare'), (52705, 'https://ror.org/037svw098', 'en', 1, 'https://ror.org/037svw098 Krembil Foundation'), (52706, 'https://ror.org/037sy5j20', 'en', 1, 'https://ror.org/037sy5j20 KNI Southwest Michigan Imaging Center'), (52707, 'https://ror.org/037wy0p68', 'en', 1, 'https://ror.org/037wy0p68 Children''s Oncology Group'), (52708, 'https://ror.org/037yq7995', 'en', 1, 'https://ror.org/037yq7995 Hunting Retriever Club'), (52709, 'https://ror.org/038160315', 'en', 1, 'https://ror.org/038160315 Orthopaedic Institute of Henderson'), (52710, 'https://ror.org/0381dt953', 'en', 1, 'https://ror.org/0381dt953 CMH Lahore Medical College and Institute of Dentistry'), (52711, 'https://ror.org/0382cxx18', 'en', 1, 'https://ror.org/0382cxx18 Section of Transfusion Medicine Capital Region Blood Bank & Department of Clinical Immunology'), (52712, 'https://ror.org/0382s8112', 'en', 1, 'https://ror.org/0382s8112 Carrick Institute'), (52713, 'https://ror.org/038372j15', 'en', 1, 'https://ror.org/038372j15 Cadillac Area Community Foundation'), (52714, 'https://ror.org/0384v4x96', 'en', 1, 'https://ror.org/0384v4x96 Shearwater Health'), (52715, 'https://ror.org/0385nz751', 'en', 1, 'https://ror.org/0385nz751 Uongozi Institute'), (52716, 'https://ror.org/038628g29', 'en', 1, 'https://ror.org/038628g29 American Academy of Periodontology Foundation'), (52717, 'https://ror.org/0386zd719', 'no_lang_code', 1, 'https://ror.org/0386zd719 Bionor (Denmark)'), (52718, 'https://ror.org/038854471', 'en', 1, 'https://ror.org/038854471 Dupar Foundation'), (52719, 'https://ror.org/0388avt91', 'en', 1, 'https://ror.org/0388avt91 Allergy Associates of the Palm Beaches'), (52720, 'https://ror.org/0388s3j86', 'en', 1, 'https://ror.org/0388s3j86 FISA Foundation'), (52721, 'https://ror.org/038b3qv22', 'en', 1, 'https://ror.org/038b3qv22 Middle Georgia Regional Library'), (52722, 'https://ror.org/038ez8t98', 'en', 1, 'https://ror.org/038ez8t98 Buckeye Career Center Foundation'), (52723, 'https://ror.org/038gm9q58', 'en', 1, 'https://ror.org/038gm9q58 Hamdard National Foundation'), (52724, 'https://ror.org/038gt6e80', 'en', 1, 'https://ror.org/038gt6e80 OASIS Clinic'), (52725, 'https://ror.org/038gt8318', 'no_lang_code', 1, 'https://ror.org/038gt8318 KiloCoach (Austria)'), (52726, 'https://ror.org/038h40c12', 'en', 1, 'https://ror.org/038h40c12 Veritas Forum'), (52727, 'https://ror.org/038kcjb09', 'no_lang_code', 1, 'https://ror.org/038kcjb09 Santen (United Kingdom) 参天製薬株式会社'), (52728, 'https://ror.org/038mpcy29', 'en', 1, 'https://ror.org/038mpcy29 Science Museerne Science Museums'), (52729, 'https://ror.org/038rdj441', 'ro', 1, 'https://ror.org/038rdj441 Tehimpuls'), (52730, 'https://ror.org/038rnrm61', 'en', 1, 'https://ror.org/038rnrm61 Witter Bynner Foundation for Poetry'), (52731, 'https://ror.org/038shek77', 'en', 1, 'https://ror.org/038shek77 ASPEA - Portuguese Association for Environmental Education'), (52732, 'https://ror.org/038v5jv72', 'de', 1, 'https://ror.org/038v5jv72 Asklepios Klinik Sankt Augustin'), (52733, 'https://ror.org/038xm7148', 'no_lang_code', 1, 'https://ror.org/038xm7148 Microsemi (Canada)'), (52734, 'https://ror.org/038y3ce09', 'en', 1, 'https://ror.org/038y3ce09 Urology Bay of Plenty'), (52735, 'https://ror.org/039293a32', 'en', 1, 'https://ror.org/039293a32 Florida Fertility Institute'), (52736, 'https://ror.org/0392c7938', 'no_lang_code', 1, 'https://ror.org/0392c7938 Roche (Greece)'), (52737, 'https://ror.org/0393e5v03', 'en', 1, 'https://ror.org/0393e5v03 Fonds Sluyterman van Loo Sluyterman van Loo Foundation'), (52738, 'https://ror.org/03945ew66', 'en', 1, 'https://ror.org/03945ew66 PA Research Foundation'), (52739, 'https://ror.org/0396rhp27', 'no_lang_code', 1, 'https://ror.org/0396rhp27 Danaher (Canada)'), (52740, 'https://ror.org/0397kcw92', 'en', 1, 'https://ror.org/0397kcw92 Design without Borders'), (52741, 'https://ror.org/0398jdj48', 'no_lang_code', 1, 'https://ror.org/0398jdj48 Develco Pharma (Switzerland)'), (52742, 'https://ror.org/0398nv697', 'no_lang_code', 1, 'https://ror.org/0398nv697 Coxswain Social Investment Plus (Tunisia)'), (52743, 'https://ror.org/039945b55', 'no_lang_code', 1, 'https://ror.org/039945b55 Eiger Biopharmaceuticals (United States)'), (52744, 'https://ror.org/0399w1j22', 'en', 1, 'https://ror.org/0399w1j22 Direction Générale Santé et sécurité alimentaire Directorate-General for Health and Food Safety Generaldirektion der Gesundheit und Lebensmittelsicherheit'), (52745, 'https://ror.org/0399x8k58', 'en', 1, 'https://ror.org/0399x8k58 Advanced Dialysis Center'), (52746, 'https://ror.org/039b19p38', 'en', 1, 'https://ror.org/039b19p38 International Franchise Association'), (52747, 'https://ror.org/039baqv34', 'no_lang_code', 1, 'https://ror.org/039baqv34 Valneva (United States)'), (52748, 'https://ror.org/039d85044', 'no_lang_code', 1, 'https://ror.org/039d85044 IDEO (United States)'), (52749, 'https://ror.org/039frc380', 'no_lang_code', 1, 'https://ror.org/039frc380 Well Pharma Medical Research (United States)'), (52750, 'https://ror.org/039j5gk75', 'pt', 1, 'https://ror.org/039j5gk75 Instituto de Medicina Avançada'), (52751, 'https://ror.org/039jj6r78', 'en', 1, 'https://ror.org/039jj6r78 Nuhr Medical Center'), (52752, 'https://ror.org/039jsjq26', 'no_lang_code', 1, 'https://ror.org/039jsjq26 Metabolistics (Canada)'), (52753, 'https://ror.org/039k05z19', 'en', 1, 'https://ror.org/039k05z19 Jovid Foundation'), (52754, 'https://ror.org/039md3f50', 'en', 1, 'https://ror.org/039md3f50 Cianna Medical'), (52755, 'https://ror.org/039r7y922', 'en', 1, 'https://ror.org/039r7y922 International Dragonfly Fund'), (52756, 'https://ror.org/039sz0x75', 'en', 1, 'https://ror.org/039sz0x75 Change the Equation'), (52757, 'https://ror.org/039w99793', 'en', 1, 'https://ror.org/039w99793 Alberta Science and Technology Leadership Foundation'), (52758, 'https://ror.org/03a01dc42', 'no_lang_code', 1, 'https://ror.org/03a01dc42 E.O. Wilson Biodiversity Foundation'), (52759, 'https://ror.org/03a0cx640', 'en', 1, 'https://ror.org/03a0cx640 Epidermolysis Bullosa Medical Research Foundation'), (52760, 'https://ror.org/03a1cp978', 'en', 1, 'https://ror.org/03a1cp978 Henry P Kendall Foundation'), (52761, 'https://ror.org/03a20x849', 'no_lang_code', 1, 'https://ror.org/03a20x849 Medice (Germany)'), (52762, 'https://ror.org/03a2cf734', 'en', 1, 'https://ror.org/03a2cf734 Bridgespan Group'), (52763, 'https://ror.org/03a2jdp82', 'en', 1, 'https://ror.org/03a2jdp82 Relief International'), (52764, 'https://ror.org/03a2xf890', 'en', 1, 'https://ror.org/03a2xf890 Radiology Associates of Albuquerque'), (52765, 'https://ror.org/03a3aw155', 'en', 1, 'https://ror.org/03a3aw155 Boomer Esiason Foundation'), (52766, 'https://ror.org/03a3n5193', 'nl', 1, 'https://ror.org/03a3n5193 Nederlandse Vereniging van Artsen voor Longziekten en Tuberculose'), (52767, 'https://ror.org/03a8x4b06', 'en', 1, 'https://ror.org/03a8x4b06 Eppley Foundation for Research'), (52768, 'https://ror.org/03a9cwm95', 'en', 1, 'https://ror.org/03a9cwm95 Innovative Structural Materials Association'), (52769, 'https://ror.org/03a9s6161', 'en', 1, 'https://ror.org/03a9s6161 Bernard van Leer Foundation'), (52770, 'https://ror.org/03acj9296', 'en', 1, 'https://ror.org/03acj9296 Berkshire Taconic Community Foundation'), (52771, 'https://ror.org/03adra252', 'en', 1, 'https://ror.org/03adra252 Indiana Clinical Trials Center'), (52772, 'https://ror.org/03aene214', 'en', 1, 'https://ror.org/03aene214 California Medical Clinic for Headache'), (52773, 'https://ror.org/03aewna27', 'no_lang_code', 1, 'https://ror.org/03aewna27 Tanaka Holdings (Japan) 田中貴金属グループ'), (52774, 'https://ror.org/03af7p216', 'no_lang_code', 1, 'https://ror.org/03af7p216 Cosmo Oil (Japan) コスモ石油株式会社'), (52775, 'https://ror.org/03afa2q29', 'en', 1, 'https://ror.org/03afa2q29 ASAE Foundation'), (52776, 'https://ror.org/03afz7q27', 'en', 1, 'https://ror.org/03afz7q27 RML Specialty Hospital'), (52777, 'https://ror.org/03aj3re16', 'no_lang_code', 1, 'https://ror.org/03aj3re16 Resverlogix (Canada)'), (52778, 'https://ror.org/03ak14x38', 'en', 1, 'https://ror.org/03ak14x38 International Association for Counterterrorism and Security Professionals'), (52779, 'https://ror.org/03ak9g490', 'en', 1, 'https://ror.org/03ak9g490 Association of Migraine Disorders'), (52780, 'https://ror.org/03am9bm91', 'en', 1, 'https://ror.org/03am9bm91 Bateman Horne Center'), (52781, 'https://ror.org/03aqkyr95', 'en', 1, 'https://ror.org/03aqkyr95 Kidneeds'), (52782, 'https://ror.org/03aqtjw04', 'en', 1, 'https://ror.org/03aqtjw04 Dalian Maternal and Child Health Hospital 大连市妇产医院'), (52783, 'https://ror.org/03armk630', 'en', 1, 'https://ror.org/03armk630 United Way of Benton and Franklin Counties'), (52784, 'https://ror.org/03asba969', 'en', 1, 'https://ror.org/03asba969 Hairy Cell Leukemia Foundation'), (52785, 'https://ror.org/03ashfw15', 'en', 1, 'https://ror.org/03ashfw15 Communities in Schools of Renton'), (52786, 'https://ror.org/03at4pf87', 'no_lang_code', 1, 'https://ror.org/03at4pf87 Sivantos (Singapore)'), (52787, 'https://ror.org/03at8gw73', 'en', 1, 'https://ror.org/03at8gw73 Gift of the Givers Foundation'), (52788, 'https://ror.org/03av58010', 'en', 1, 'https://ror.org/03av58010 Joint Center for Political and Economic Studies'), (52789, 'https://ror.org/03avbdx23', 'en', 1, 'https://ror.org/03avbdx23 Pius Hospital Oldenburg'), (52790, 'https://ror.org/03aw15z34', 'no_lang_code', 1, 'https://ror.org/03aw15z34 AlterG (United States)'), (52791, 'https://ror.org/03aw9bj44', 'en', 1, 'https://ror.org/03aw9bj44 Fistula Foundation'), (52792, 'https://ror.org/03awnwb78', 'en', 1, 'https://ror.org/03awnwb78 Nurture Foundation for Reproductive Research'), (52793, 'https://ror.org/03axz0166', 'en', 1, 'https://ror.org/03axz0166 Healthcare Foundation of New Jersey'), (52794, 'https://ror.org/03axzfm24', 'en', 1, 'https://ror.org/03axzfm24 Community Foundation of Monroe County'), (52795, 'https://ror.org/03ay0gt39', 'no_lang_code', 1, 'https://ror.org/03ay0gt39 ALK-Abelló (Spain)'), (52796, 'https://ror.org/03ay6m507', 'en', 1, 'https://ror.org/03ay6m507 Meadows Foundation'), (52797, 'https://ror.org/03ayy2w09', 'en', 1, 'https://ror.org/03ayy2w09 Hirshberg Foundation for Pancreatic Cancer Research'), (52798, 'https://ror.org/03b0a6729', 'sl', 1, 'https://ror.org/03b0a6729 Društvo Ključ'), (52799, 'https://ror.org/03b0x6m16', 'no_lang_code', 1, 'https://ror.org/03b0x6m16 Gretsch-Unitas (France)'), (52800, 'https://ror.org/03b6j7b16', 'en', 1, 'https://ror.org/03b6j7b16 Palm Beach Research Center'), (52801, 'https://ror.org/03b6zzt23', 'no_lang_code', 1, 'https://ror.org/03b6zzt23 Futaba (Japan) 双葉電子工業株式会社'), (52802, 'https://ror.org/03b7ffd73', 'en', 1, 'https://ror.org/03b7ffd73 Ministry of Environmental Protection and Regional Development'), (52803, 'https://ror.org/03b855a97', 'no_lang_code', 1, 'https://ror.org/03b855a97 Sorbisense (Denmark)'), (52804, 'https://ror.org/03b8ttp75', 'en', 1, 'https://ror.org/03b8ttp75 Assisi Foundation of Memphis'), (52805, 'https://ror.org/03ba3bk23', 'en', 1, 'https://ror.org/03ba3bk23 Fondation des Fondateurs Foundation of the Founders'), (52806, 'https://ror.org/03ba3e568', 'en', 1, 'https://ror.org/03ba3e568 Psych Recovery'), (52807, 'https://ror.org/03bbe8e53', 'nl', 1, 'https://ror.org/03bbe8e53 Kempenhaeghe'), (52808, 'https://ror.org/03bbek688', 'en', 1, 'https://ror.org/03bbek688 Blue Ridge Physical Therapy'), (52809, 'https://ror.org/03bdhq605', 'en', 1, 'https://ror.org/03bdhq605 National Academy of Engineering'), (52810, 'https://ror.org/03bea3609', 'en', 1, 'https://ror.org/03bea3609 International Urogynecological Association'), (52811, 'https://ror.org/03befa582', 'fr', 1, 'https://ror.org/03befa582 Centre Hospitalier Gabriel-Martin'), (52812, 'https://ror.org/03beyfa67', 'no_lang_code', 1, 'https://ror.org/03beyfa67 Labster (Denmark)'), (52813, 'https://ror.org/03bfa4276', 'en', 1, 'https://ror.org/03bfa4276 Funders Together to End Homelessness'), (52814, 'https://ror.org/03bh5kx55', 'no_lang_code', 1, 'https://ror.org/03bh5kx55 Camber Collective (United States)'), (52815, 'https://ror.org/03bhb2h72', 'no_lang_code', 1, 'https://ror.org/03bhb2h72 Maruho (United States)'), (52816, 'https://ror.org/03bjgk257', 'no_lang_code', 1, 'https://ror.org/03bjgk257 OncoGenex Pharmaceuticals (United States)'), (52817, 'https://ror.org/03bkemf09', 'en', 1, 'https://ror.org/03bkemf09 Armed Forces Communications and Electronics Association'), (52818, 'https://ror.org/03bknpx96', 'no_lang_code', 1, 'https://ror.org/03bknpx96 Epsilon Therapeutics (United States)'), (52819, 'https://ror.org/03bmavr12', 'no_lang_code', 1, 'https://ror.org/03bmavr12 Stiebel Eltron (Germany)'), (52820, 'https://ror.org/03bp35d04', 'en', 1, 'https://ror.org/03bp35d04 Santa Ana Public Library'), (52821, 'https://ror.org/03bpjrg09', 'en', 1, 'https://ror.org/03bpjrg09 CUTS International'), (52822, 'https://ror.org/03bqns596', 'en', 1, 'https://ror.org/03bqns596 Osceola Regional Medical Center'), (52823, 'https://ror.org/03br5r234', 'es', 1, 'https://ror.org/03br5r234 Mexfam'), (52824, 'https://ror.org/03bsswy66', 'no_lang_code', 1, 'https://ror.org/03bsswy66 Takeda (Denmark)'), (52825, 'https://ror.org/03btm4d84', 'en', 1, 'https://ror.org/03btm4d84 Elias Foundation'), (52826, 'https://ror.org/03bvrvh83', 'en', 1, 'https://ror.org/03bvrvh83 Association of Theological Schools'), (52827, 'https://ror.org/03bw33m14', 'en', 1, 'https://ror.org/03bw33m14 Hunter''s Dream for a Cure'), (52828, 'https://ror.org/03bwyr571', 'en', 1, 'https://ror.org/03bwyr571 Mental Illness Fellowship'), (52829, 'https://ror.org/03bxbhm47', 'no_lang_code', 1, 'https://ror.org/03bxbhm47 Videnskab (Denmark)'), (52830, 'https://ror.org/03c09ma81', 'no_lang_code', 1, 'https://ror.org/03c09ma81 Bristol-Myers Squibb (Belgium)'), (52831, 'https://ror.org/03c174c49', 'en', 1, 'https://ror.org/03c174c49 Validia Kuntoutus Validia Rehabilitation'), (52832, 'https://ror.org/03c34x898', 'en', 1, 'https://ror.org/03c34x898 Colon and Rectal Surgery Associates'), (52833, 'https://ror.org/03c467w37', 'en', 1, 'https://ror.org/03c467w37 Pinellas Public Library Cooperative'), (52834, 'https://ror.org/03c5mbz49', 'en', 1, 'https://ror.org/03c5mbz49 Pinyon Foundation'), (52835, 'https://ror.org/03c79xe68', 'it', 1, 'https://ror.org/03c79xe68 Fondazione Cassa di Risparmio di Genova e Imperia'), (52836, 'https://ror.org/03c9x5k98', 'en', 1, 'https://ror.org/03c9x5k98 Tulsa Public Schools'), (52837, 'https://ror.org/03ca9sh23', 'no_lang_code', 1, 'https://ror.org/03ca9sh23 Windmoeller & Hoelscher (Germany)'), (52838, 'https://ror.org/03cac6636', 'no_lang_code', 1, 'https://ror.org/03cac6636 Research Corporation Technologies (United States)'), (52839, 'https://ror.org/03cc5yw72', 'no_lang_code', 1, 'https://ror.org/03cc5yw72 Health Awareness (United States)'), (52840, 'https://ror.org/03ccwth61', 'es', 1, 'https://ror.org/03ccwth61 Sociedad Espaola de retina y Vtreo'), (52841, 'https://ror.org/03cd01b85', 'no_lang_code', 1, 'https://ror.org/03cd01b85 Navistar International (United States)'), (52842, 'https://ror.org/03cd21s10', 'en', 1, 'https://ror.org/03cd21s10 Horn of Africa Services'), (52843, 'https://ror.org/03cdy5015', 'en', 1, 'https://ror.org/03cdy5015 Carolina Retina Center'), (52844, 'https://ror.org/03ceh9q73', 'en', 1, 'https://ror.org/03ceh9q73 N.N. Alexandrov National Cancer Centre'), (52845, 'https://ror.org/03cezf402', 'en', 1, 'https://ror.org/03cezf402 First Candle'), (52846, 'https://ror.org/03cfq1g41', 'en', 1, 'https://ror.org/03cfq1g41 Cheyenne Regional Medical Center'), (52847, 'https://ror.org/03ckgn780', 'sv', 1, 'https://ror.org/03ckgn780 Svettmottagningen'), (52848, 'https://ror.org/03cmxf662', 'no_lang_code', 1, 'https://ror.org/03cmxf662 Solina Group (Nigeria)'), (52849, 'https://ror.org/03cp7he26', 'en', 1, 'https://ror.org/03cp7he26 World Savings and Retail Banking Institute'), (52850, 'https://ror.org/03cpd9n92', 'en', 1, 'https://ror.org/03cpd9n92 California Wellness Foundation'), (52851, 'https://ror.org/03cpssz74', 'en', 1, 'https://ror.org/03cpssz74 Macula Vision Research Foundation'), (52852, 'https://ror.org/03cq1m515', 'en', 1, 'https://ror.org/03cq1m515 Bulgarian Society for the Protection of Birds'), (52853, 'https://ror.org/03cq51m79', 'en', 1, 'https://ror.org/03cq51m79 Live Love and Laugh Foundation'), (52854, 'https://ror.org/03cqs6978', 'no_lang_code', 1, 'https://ror.org/03cqs6978 Clinlogix (Germany)'), (52855, 'https://ror.org/03crx5092', 'no_lang_code', 1, 'https://ror.org/03crx5092 Nexus Clinical Research (Canada)'), (52856, 'https://ror.org/03csf6r15', 'en', 1, 'https://ror.org/03csf6r15 California Urological Association'), (52857, 'https://ror.org/03cvgyy64', 'en', 1, 'https://ror.org/03cvgyy64 Center for Excellence in Eye Care'), (52858, 'https://ror.org/03cvjvq49', 'no_lang_code', 1, 'https://ror.org/03cvjvq49 Texas Instruments (Germany)'), (52859, 'https://ror.org/03cwbzb16', 'no_lang_code', 1, 'https://ror.org/03cwbzb16 Roche (Austria)'), (52860, 'https://ror.org/03cy8qt72', 'en', 1, 'https://ror.org/03cy8qt72 Heze Municipal Hospital'), (52861, 'https://ror.org/03czrhg80', 'en', 1, 'https://ror.org/03czrhg80 Community Foundation of Central Wisconsin'), (52862, 'https://ror.org/03d1hk111', 'en', 1, 'https://ror.org/03d1hk111 Marubun Research Promotion Foundation 一般財団法人 丸文財団'), (52863, 'https://ror.org/03d4kwm92', 'en', 1, 'https://ror.org/03d4kwm92 Charles Pankow Foundation'), (52864, 'https://ror.org/03d4rbm41', 'en', 1, 'https://ror.org/03d4rbm41 National Liberty Museum'), (52865, 'https://ror.org/03d4wwv68', 'en', 1, 'https://ror.org/03d4wwv68 Kobayashi International Scholarship Foundation 小林国際奨学財団'), (52866, 'https://ror.org/03d8m2k26', 'no_lang_code', 1, 'https://ror.org/03d8m2k26 SymbioPharm (Germany)'), (52867, 'https://ror.org/03d9hbe08', 'en', 1, 'https://ror.org/03d9hbe08 Harvard Eye Associates'), (52868, 'https://ror.org/03d9qgb20', 'no_lang_code', 1, 'https://ror.org/03d9qgb20 Plazmaferezis'), (52869, 'https://ror.org/03da78945', 'en', 1, 'https://ror.org/03da78945 Pat Graney'), (52870, 'https://ror.org/03dbk9e81', 'en', 1, 'https://ror.org/03dbk9e81 Maria Eleonora Hospital'), (52871, 'https://ror.org/03dc3t652', 'en', 1, 'https://ror.org/03dc3t652 Community Foundation of Greater Des Moine'), (52872, 'https://ror.org/03dc9sa37', 'no_lang_code', 1, 'https://ror.org/03dc9sa37 Hospitals Contribution Fund (Australia)'), (52873, 'https://ror.org/03dcb4x23', 'no_lang_code', 1, 'https://ror.org/03dcb4x23 Modus Therapeutics (Sweden)'), (52874, 'https://ror.org/03ddkvp86', 'en', 1, 'https://ror.org/03ddkvp86 National Clinical Research'), (52875, 'https://ror.org/03deam493', 'fr', 1, 'https://ror.org/03deam493 Centre Hospitalier Annecy Genevois'), (52876, 'https://ror.org/03df8yt27', 'en', 1, 'https://ror.org/03df8yt27 Dorothy Russell Havemeyer Foundation'), (52877, 'https://ror.org/03dfszw81', 'en', 1, 'https://ror.org/03dfszw81 Tennessee College Access and Success Network'), (52878, 'https://ror.org/03dg7tc87', 'en', 1, 'https://ror.org/03dg7tc87 International Foundation for Functional Gastrointestinal Disorders'), (52879, 'https://ror.org/03dhc8a95', 'en', 1, 'https://ror.org/03dhc8a95 Lothian Sexual Health'), (52880, 'https://ror.org/03djjj187', 'en', 1, 'https://ror.org/03djjj187 Villa Pineta Hospital'), (52881, 'https://ror.org/03dkej307', 'no_lang_code', 1, 'https://ror.org/03dkej307 Xellia (Croatia)'), (52882, 'https://ror.org/03dm2p854', 'en', 1, 'https://ror.org/03dm2p854 Apex Medical Technologies (United States)'), (52883, 'https://ror.org/03dma0w34', 'no_lang_code', 1, 'https://ror.org/03dma0w34 Stem Cell Technology (Taiwan)'), (52884, 'https://ror.org/03dmmqc37', 'en', 1, 'https://ror.org/03dmmqc37 Moundview Memorial Hospital and Clinics'), (52885, 'https://ror.org/03dndb570', 'en', 1, 'https://ror.org/03dndb570 Carl M. Freeman Foundation'), (52886, 'https://ror.org/03dnfcb20', 'en', 1, 'https://ror.org/03dnfcb20 Center for Community Change'), (52887, 'https://ror.org/03dqxnz40', 'es', 1, 'https://ror.org/03dqxnz40 Asociación Galega de Investigación na Enfermidade Inflamatoria Intestinal'), (52888, 'https://ror.org/03dr9am58', 'no_lang_code', 1, 'https://ror.org/03dr9am58 Eduserv'), (52889, 'https://ror.org/03dre3v93', 'en', 1, 'https://ror.org/03dre3v93 Institute of Leadership & Institutional Development'), (52890, 'https://ror.org/03dryc986', 'en', 1, 'https://ror.org/03dryc986 California Consumer Protection Foundation'), (52891, 'https://ror.org/03ds72003', 'en', 1, 'https://ror.org/03ds72003 Mitchell Institute'), (52892, 'https://ror.org/03dt97p60', 'en', 1, 'https://ror.org/03dt97p60 United Way of Central Washington'), (52893, 'https://ror.org/03dtz2q77', 'en', 1, 'https://ror.org/03dtz2q77 Osburn Public Library'), (52894, 'https://ror.org/03dvqmv75', 'en', 1, 'https://ror.org/03dvqmv75 Pact'), (52895, 'https://ror.org/03dykc861', 'it', 1, 'https://ror.org/03dykc861 Fondazione Istituto G. Giglio di Cefalù'), (52896, 'https://ror.org/03dzmr959', 'en', 1, 'https://ror.org/03dzmr959 Stedman Clinical Trials'), (52897, 'https://ror.org/03e1yhr47', 'en', 1, 'https://ror.org/03e1yhr47 Advanced Research Institute'), (52898, 'https://ror.org/03e2b2m72', 'en', 1, 'https://ror.org/03e2b2m72 CardioVasculäres Centrum Frankfurt Cardiovascular Center Frankfurt'), (52899, 'https://ror.org/03e2dbn45', 'en', 1, 'https://ror.org/03e2dbn45 Childrens Heart Foundation'), (52900, 'https://ror.org/03e3sv174', 'en', 1, 'https://ror.org/03e3sv174 Bull City Learning'), (52901, 'https://ror.org/03e3wrh22', 'no_lang_code', 1, 'https://ror.org/03e3wrh22 Intermed Pharmaceutical Laboratories (Greece)'), (52902, 'https://ror.org/03e4f7x92', 'no_lang_code', 1, 'https://ror.org/03e4f7x92 Groz Beckert (Germany)'), (52903, 'https://ror.org/03e6y4k28', 'no_lang_code', 1, 'https://ror.org/03e6y4k28 Meditop (Hungary)'), (52904, 'https://ror.org/03e7jm741', 'no_lang_code', 1, 'https://ror.org/03e7jm741 Valmet Automotive (Finland)'), (52905, 'https://ror.org/03e9cqh27', 'en', 1, 'https://ror.org/03e9cqh27 Young Invincibles'), (52906, 'https://ror.org/03e9etc12', 'en', 1, 'https://ror.org/03e9etc12 Arab American Pharmacist Association'), (52907, 'https://ror.org/03eagt651', 'no_lang_code', 1, 'https://ror.org/03eagt651 Coastal Connecticut Research (United States)'), (52908, 'https://ror.org/03ebabq41', 'no_lang_code', 1, 'https://ror.org/03ebabq41 Clinilabs (United States)'), (52909, 'https://ror.org/03ebpm503', 'no_lang_code', 1, 'https://ror.org/03ebpm503 ACCO Brands (United States)'), (52910, 'https://ror.org/03edm8e08', 'fr', 1, 'https://ror.org/03edm8e08 Centre Azuréen de Cancérologie'), (52911, 'https://ror.org/03eeky579', 'en', 1, 'https://ror.org/03eeky579 Horizons Clinical Research Center'), (52912, 'https://ror.org/03efvsk51', 'no_lang_code', 1, 'https://ror.org/03efvsk51 Zemun Hospital'), (52913, 'https://ror.org/03egjxh21', 'en', 1, 'https://ror.org/03egjxh21 FXM Research'), (52914, 'https://ror.org/03egnwz74', 'de', 1, 'https://ror.org/03egnwz74 Krankenhaus Reinbek - Startseite'), (52915, 'https://ror.org/03ejprz16', 'no_lang_code', 1, 'https://ror.org/03ejprz16 Sherwood Services (United States)'), (52916, 'https://ror.org/03ekprg18', 'no_lang_code', 1, 'https://ror.org/03ekprg18 Recordati (Italy)'), (52917, 'https://ror.org/03emy9w83', 'en', 1, 'https://ror.org/03emy9w83 Clinical Research Center of Nevada'), (52918, 'https://ror.org/03epmm839', 'no_lang_code', 1, 'https://ror.org/03epmm839 Tachi S (Japan)'), (52919, 'https://ror.org/03eqf0810', 'en', 1, 'https://ror.org/03eqf0810 Educational Foundation of America'), (52920, 'https://ror.org/03exer738', 'en', 1, 'https://ror.org/03exer738 Children’s Foundation'), (52921, 'https://ror.org/03eys0150', 'en', 1, 'https://ror.org/03eys0150 Center for Curriculum Redesign'), (52922, 'https://ror.org/03f1zxe06', 'en', 1, 'https://ror.org/03f1zxe06 KidsOhio'), (52923, 'https://ror.org/03f2dkv17', 'en', 1, 'https://ror.org/03f2dkv17 Profil Institute for Clinical Research'), (52924, 'https://ror.org/03f4jx570', 'no_lang_code', 1, 'https://ror.org/03f4jx570 Immungenetics (Germany)'), (52925, 'https://ror.org/03f4kqa81', 'en', 1, 'https://ror.org/03f4kqa81 State Higher Education Executive Officers'), (52926, 'https://ror.org/03farsx25', 'en', 1, 'https://ror.org/03farsx25 Indian Academy of Neurosciences'), (52927, 'https://ror.org/03fcec566', 'en', 1, 'https://ror.org/03fcec566 Sylvana Research'), (52928, 'https://ror.org/03fcfn607', 'de', 1, 'https://ror.org/03fcfn607 Leibniz Publik'), (52929, 'https://ror.org/03ffpww43', 'no_lang_code', 1, 'https://ror.org/03ffpww43 Danone (Canada)'), (52930, 'https://ror.org/03fhcmz08', 'no_lang_code', 1, 'https://ror.org/03fhcmz08 Dr Ritsert Pharma (Germany)'), (52931, 'https://ror.org/03fhpab87', 'en', 1, 'https://ror.org/03fhpab87 BirdLife Australia'), (52932, 'https://ror.org/03fjqhb83', 'en', 1, 'https://ror.org/03fjqhb83 Boston Center for Memory'), (52933, 'https://ror.org/03fjrbp76', 'no_lang_code', 1, 'https://ror.org/03fjrbp76 Loowatt (United Kingdom)'), (52934, 'https://ror.org/03fk4sm92', 'en', 1, 'https://ror.org/03fk4sm92 Southeastern Council of Foundations'), (52935, 'https://ror.org/03fnbmw07', 'nl', 1, 'https://ror.org/03fnbmw07 AZ Turnhout'), (52936, 'https://ror.org/03fnkr060', 'no_lang_code', 1, 'https://ror.org/03fnkr060 Endocrine Research Solutions (United States)'), (52937, 'https://ror.org/03fpx5n61', 'en', 1, 'https://ror.org/03fpx5n61 Defense Equal Opportunity Management Institute'), (52938, 'https://ror.org/03fqnpd94', 'en', 1, 'https://ror.org/03fqnpd94 Chicago Council on Global Affairs'), (52939, 'https://ror.org/03fqsyt94', 'es', 1, 'https://ror.org/03fqsyt94 Hospital la Serena'), (52940, 'https://ror.org/03frk0780', 'no_lang_code', 1, 'https://ror.org/03frk0780 Recordati (France)'), (52941, 'https://ror.org/03fs5jd74', 'no_lang_code', 1, 'https://ror.org/03fs5jd74 Vertex Pharmaceuticals (United Kingdom)'), (52942, 'https://ror.org/03ftrgs19', 'en', 1, 'https://ror.org/03ftrgs19 Oklahoma Otolaryngology Associates'), (52943, 'https://ror.org/03fzdex20', 'en', 1, 'https://ror.org/03fzdex20 Netherlands Leprosy Relief'), (52944, 'https://ror.org/03g3g6c84', 'en', 1, 'https://ror.org/03g3g6c84 Foundation for National Parks and Wildlife'), (52945, 'https://ror.org/03g3tcm95', 'it', 1, 'https://ror.org/03g3tcm95 Policlinico Abano Terme'), (52946, 'https://ror.org/03g3xrr94', 'no_lang_code', 1, 'https://ror.org/03g3xrr94 SEW Eurodrive (Germany)'), (52947, 'https://ror.org/03g5saw48', 'en', 1, 'https://ror.org/03g5saw48 100 Black Men of America'), (52948, 'https://ror.org/03g7xph38', 'en', 1, 'https://ror.org/03g7xph38 Park Nicollet Foundation'), (52949, 'https://ror.org/03g850905', 'en', 1, 'https://ror.org/03g850905 Carl Gellert and Celia Berta Gellert Foundation'), (52950, 'https://ror.org/03gd0yp09', 'en', 1, 'https://ror.org/03gd0yp09 Catapult Design'), (52951, 'https://ror.org/03gdsp770', 'en', 1, 'https://ror.org/03gdsp770 American Institute of Research'), (52952, 'https://ror.org/03gf3fw83', 'no_lang_code', 1, 'https://ror.org/03gf3fw83 Sure Chill (United Kingdom)'), (52953, 'https://ror.org/03gg5y009', 'en', 1, 'https://ror.org/03gg5y009 Clinical Research of West Florida'), (52954, 'https://ror.org/03gjwrd32', 'en', 1, 'https://ror.org/03gjwrd32 Peter Michael Foundation'); INSERT INTO `rors` VALUES (52955, 'https://ror.org/03gjxr006', 'en', 1, 'https://ror.org/03gjxr006 Northwest Behavioral Medicine'), (52956, 'https://ror.org/03gn06b62', 'en', 1, 'https://ror.org/03gn06b62 Nonprofit Assistance Center'), (52957, 'https://ror.org/03gn6hs29', 'da', 1, 'https://ror.org/03gn6hs29 Ringsted Sygehus'), (52958, 'https://ror.org/03gnb8h10', 'no_lang_code', 1, 'https://ror.org/03gnb8h10 Mabion (Poland)'), (52959, 'https://ror.org/03gnqg065', 'en', 1, 'https://ror.org/03gnqg065 BioFuelNet Canada'), (52960, 'https://ror.org/03gpgkw08', 'en', 1, 'https://ror.org/03gpgkw08 Policy Exchange'), (52961, 'https://ror.org/03gr42p24', 'en', 1, 'https://ror.org/03gr42p24 Vittorio Tison Association'), (52962, 'https://ror.org/03gr95p90', 'no_lang_code', 1, 'https://ror.org/03gr95p90 Solvay (Austria)'), (52963, 'https://ror.org/03gsdfk97', 'en', 1, 'https://ror.org/03gsdfk97 Eastside Comprehensive Medical Center'), (52964, 'https://ror.org/03gstka59', 'en', 1, 'https://ror.org/03gstka59 Center for Orthopaedics'), (52965, 'https://ror.org/03gsy3007', 'no_lang_code', 1, 'https://ror.org/03gsy3007 PledPharma (Sweden)'), (52966, 'https://ror.org/03gx95q66', 'en', 1, 'https://ror.org/03gx95q66 Persephone Productions'), (52967, 'https://ror.org/03gyv3q15', 'en', 1, 'https://ror.org/03gyv3q15 Park Avenue Dermatology'), (52968, 'https://ror.org/03h07zp96', 'de', 1, 'https://ror.org/03h07zp96 Evangelisches Krankenhaus Alsterdorf'), (52969, 'https://ror.org/03h143w08', 'pl', 1, 'https://ror.org/03h143w08 NZOZ Centrum Alergologii'), (52970, 'https://ror.org/03h18h913', 'en', 1, 'https://ror.org/03h18h913 North Jersey Endocrine Consultants'), (52971, 'https://ror.org/03h1vde20', 'en', 1, 'https://ror.org/03h1vde20 Cosmedica'), (52972, 'https://ror.org/03h22gm35', 'en', 1, 'https://ror.org/03h22gm35 Edward P. Evans Foundation'), (52973, 'https://ror.org/03h2cp518', 'en', 1, 'https://ror.org/03h2cp518 Tinker Air Force Base'), (52974, 'https://ror.org/03h2qaw95', 'ro', 1, 'https://ror.org/03h2qaw95 Spitalul Universitar de Urgenţă Militar Central Dr. Carol Davila'), (52975, 'https://ror.org/03h32st80', 'en', 1, 'https://ror.org/03h32st80 Good Samaritan Foundation'), (52976, 'https://ror.org/03h3wjd71', 'no_lang_code', 1, 'https://ror.org/03h3wjd71 Pharmathen (Greece)'), (52977, 'https://ror.org/03h68p024', 'en', 1, 'https://ror.org/03h68p024 Dorothy Rider Pool Health Care Trust'), (52978, 'https://ror.org/03h7v3958', 'en', 1, 'https://ror.org/03h7v3958 Model Clinical Research'), (52979, 'https://ror.org/03h7zc707', 'no_lang_code', 1, 'https://ror.org/03h7zc707 National Oilwell Varco (United States)'), (52980, 'https://ror.org/03h9hv091', 'en', 1, 'https://ror.org/03h9hv091 Central Dermatology'), (52981, 'https://ror.org/03hbkyh21', 'en', 1, 'https://ror.org/03hbkyh21 St. Louis Medical Clinic'), (52982, 'https://ror.org/03hgnab62', 'en', 1, 'https://ror.org/03hgnab62 Meridian Clinical Research'), (52983, 'https://ror.org/03hh2p523', 'en', 1, 'https://ror.org/03hh2p523 New Zealand Breast Cancer Foundation'), (52984, 'https://ror.org/03hjbw580', 'en', 1, 'https://ror.org/03hjbw580 KIPP Chicago Schools'), (52985, 'https://ror.org/03hjfdx24', 'no_lang_code', 1, 'https://ror.org/03hjfdx24 Quotient Clinical (United Kingdom)'), (52986, 'https://ror.org/03hjzks69', 'en', 1, 'https://ror.org/03hjzks69 New Schools Venture Fund'), (52987, 'https://ror.org/03hnyzp26', 'no_lang_code', 1, 'https://ror.org/03hnyzp26 Fortune Brands Home and Security (United States)'), (52988, 'https://ror.org/03hr73p06', 'en', 1, 'https://ror.org/03hr73p06 Lymphoma Foundation'), (52989, 'https://ror.org/03hrrt833', 'en', 1, 'https://ror.org/03hrrt833 Parkland Center For Clinical Innovation'), (52990, 'https://ror.org/03hsngx15', 'es', 1, 'https://ror.org/03hsngx15 Oxfam Intermón'), (52991, 'https://ror.org/03hta7474', 'no_lang_code', 1, 'https://ror.org/03hta7474 Tracto-Technik (Germany)'), (52992, 'https://ror.org/03htwyn40', 'en', 1, 'https://ror.org/03htwyn40 Meath Foundation'), (52993, 'https://ror.org/03hv05g61', 'no_lang_code', 1, 'https://ror.org/03hv05g61 Cooley’s Anemia Foundation'), (52994, 'https://ror.org/03hva1f89', 'en', 1, 'https://ror.org/03hva1f89 Odense Bys Museer Odense City Museums'), (52995, 'https://ror.org/03hwa6484', 'en', 1, 'https://ror.org/03hwa6484 Second Peoples Hospital of Shaanxi Province 陕西省第二人民医院'), (52996, 'https://ror.org/03hxb5v03', 'en', 1, 'https://ror.org/03hxb5v03 Georgia Institute for Plastic Surgery'), (52997, 'https://ror.org/03hxzb342', 'en', 1, 'https://ror.org/03hxzb342 Awesome Foundation'), (52998, 'https://ror.org/03hy9zy10', 'en', 1, 'https://ror.org/03hy9zy10 Suzhou Traditional Chinese Medicine Hospital 苏州中医医院'), (52999, 'https://ror.org/03j077d81', 'en', 1, 'https://ror.org/03j077d81 Meyer Foundation'), (53000, 'https://ror.org/03j0xs842', 'no_lang_code', 1, 'https://ror.org/03j0xs842 Dialog Semiconductor (Germany)'), (53001, 'https://ror.org/03j249425', 'en', 1, 'https://ror.org/03j249425 Mount Medical Centre'), (53002, 'https://ror.org/03j2e8162', 'ro', 1, 'https://ror.org/03j2e8162 Spitalul Clinic de Urgență pentru Copii Cluj-Napoca'), (53003, 'https://ror.org/03j44yq97', 'en', 1, 'https://ror.org/03j44yq97 Community Youth Services'), (53004, 'https://ror.org/03j4bwb64', 'en', 1, 'https://ror.org/03j4bwb64 Hendricks County Community Foundation'), (53005, 'https://ror.org/03j4y6x14', 'en', 1, 'https://ror.org/03j4y6x14 Diablo Clinical Research'), (53006, 'https://ror.org/03j57tp52', 'en', 1, 'https://ror.org/03j57tp52 Loyola Foundation'), (53007, 'https://ror.org/03j5af397', 'no_lang_code', 1, 'https://ror.org/03j5af397 Iomedico (Germany)'), (53008, 'https://ror.org/03j6gjn98', 'no_lang_code', 1, 'https://ror.org/03j6gjn98 Daiichi Kogyo Seiyaku (Japan) 第一工業製薬株式会社'), (53009, 'https://ror.org/03j8jd231', 'en', 1, 'https://ror.org/03j8jd231 Japan Cassis Association 日本カシス協会'), (53010, 'https://ror.org/03j9fjx10', 'no_lang_code', 1, 'https://ror.org/03j9fjx10 Peptonic Medical (Sweden)'), (53011, 'https://ror.org/03j9nh870', 'en', 1, 'https://ror.org/03j9nh870 Pikes Peak Library District'), (53012, 'https://ror.org/03ja4pz98', 'en', 1, 'https://ror.org/03ja4pz98 Chrest Foundation'), (53013, 'https://ror.org/03jaff633', 'no_lang_code', 1, 'https://ror.org/03jaff633 Denka (Japan) 電気化学工業株式会社'), (53014, 'https://ror.org/03jat0y07', 'no_lang_code', 1, 'https://ror.org/03jat0y07 Promethera Biosciences (Belgium)'), (53015, 'https://ror.org/03jb89v85', 'no_lang_code', 1, 'https://ror.org/03jb89v85 W. L. Gore & Associates (Germany)'), (53016, 'https://ror.org/03jbf2g44', 'no_lang_code', 1, 'https://ror.org/03jbf2g44 SMB (Belgium)'), (53017, 'https://ror.org/03jbz0t39', 'fr', 1, 'https://ror.org/03jbz0t39 Groupe SEB'), (53018, 'https://ror.org/03jbzvm84', 'en', 1, 'https://ror.org/03jbzvm84 Progressive Clinical Research'), (53019, 'https://ror.org/03je57g85', 'en', 1, 'https://ror.org/03je57g85 Desmoid Tumor Research Foundation'), (53020, 'https://ror.org/03jf78g10', 'fr', 1, 'https://ror.org/03jf78g10 Fondation Thierry Latran'), (53021, 'https://ror.org/03jh7ct92', 'en', 1, 'https://ror.org/03jh7ct92 Center for Cancers and Blood Disorders'), (53022, 'https://ror.org/03jjxq260', 'en', 1, 'https://ror.org/03jjxq260 Baltimore Community Foundation'), (53023, 'https://ror.org/03jma7k75', 'en', 1, 'https://ror.org/03jma7k75 Aristocrat Plastic Surgery & MedAesthetics'), (53024, 'https://ror.org/03jmq3a29', 'no_lang_code', 1, 'https://ror.org/03jmq3a29 Excell Research (United States)'), (53025, 'https://ror.org/03jngpv21', 'no_lang_code', 1, 'https://ror.org/03jngpv21 Theracos (United States)'), (53026, 'https://ror.org/03jsy7y79', 'en', 1, 'https://ror.org/03jsy7y79 Ministry of Women and Child Development'), (53027, 'https://ror.org/03jvfq589', 'de', 1, 'https://ror.org/03jvfq589 Deutsche Bundesbank German Federal Bank'), (53028, 'https://ror.org/03jvjps27', 'no_lang_code', 1, 'https://ror.org/03jvjps27 Keihin (Japan) 株式会社ケーヒン'), (53029, 'https://ror.org/03jvmdp91', 'en', 1, 'https://ror.org/03jvmdp91 America''s Promise Alliance'), (53030, 'https://ror.org/03jwxc595', 'en', 1, 'https://ror.org/03jwxc595 Second Affiliated Hospital of Hunan University of Traditional Chinese Medicine'), (53031, 'https://ror.org/03jwxk796', 'no_lang_code', 1, 'https://ror.org/03jwxk796 Clinvet'), (53032, 'https://ror.org/03jy7fq30', 'en', 1, 'https://ror.org/03jy7fq30 Association of Perioperative Registered Nurses'), (53033, 'https://ror.org/03k3h8z07', 'en', 1, 'https://ror.org/03k3h8z07 Oromiyaa Regional Health Bureau'), (53034, 'https://ror.org/03k3w8z68', 'no_lang_code', 1, 'https://ror.org/03k3w8z68 Sumitomo Osaka Cement (Japan) 住友大阪セメント'), (53035, 'https://ror.org/03k6w4998', 'no_lang_code', 1, 'https://ror.org/03k6w4998 Vanak Eye Center'), (53036, 'https://ror.org/03k747n30', 'en', 1, 'https://ror.org/03k747n30 Page Public Library'), (53037, 'https://ror.org/03k77k104', 'en', 1, 'https://ror.org/03k77k104 Houston Endowment'), (53038, 'https://ror.org/03k879d12', 'no_lang_code', 1, 'https://ror.org/03k879d12 Seqirus (United States)'), (53039, 'https://ror.org/03kb0fc56', 'no_lang_code', 1, 'https://ror.org/03kb0fc56 Transport Corporation of India (India)'), (53040, 'https://ror.org/03kecdv70', 'en', 1, 'https://ror.org/03kecdv70 International Clinical Research Institute'), (53041, 'https://ror.org/03ketea85', 'en', 1, 'https://ror.org/03ketea85 New England Biolabs Foundation'), (53042, 'https://ror.org/03kgyz465', 'de', 1, 'https://ror.org/03kgyz465 Diabetes-Akademie'), (53043, 'https://ror.org/03khjkh72', 'no_lang_code', 1, 'https://ror.org/03khjkh72 Wolverine Worldwide (United States)'), (53044, 'https://ror.org/03kkp9n92', 'no_lang_code', 1, 'https://ror.org/03kkp9n92 BYD (China) 比亚迪股份有限公司'), (53045, 'https://ror.org/03kmp0p37', 'en', 1, 'https://ror.org/03kmp0p37 MedSol Clinical Research Center'), (53046, 'https://ror.org/03kpaty54', 'it', 1, 'https://ror.org/03kpaty54 Agenzia Regionale Parchi'), (53047, 'https://ror.org/03kr69786', 'no_lang_code', 1, 'https://ror.org/03kr69786 Asklepion Pharmaceuticals (United States)'), (53048, 'https://ror.org/03krr1869', 'it', 1, 'https://ror.org/03krr1869 Fondazione Cassa di Risparmio di Foligno'), (53049, 'https://ror.org/03ks7ew17', 'en', 1, 'https://ror.org/03ks7ew17 OrthoMaryland'), (53050, 'https://ror.org/03ksg3960', 'en', 1, 'https://ror.org/03ksg3960 The Affiliated Hospital to Changchun University of Chinese Medicine 长春中医药大学附属医院'), (53051, 'https://ror.org/03ktkqh12', 'en', 1, 'https://ror.org/03ktkqh12 Barcelona IVI Clinic Clinica IVI Barcelona'), (53052, 'https://ror.org/03kxek255', 'en', 1, 'https://ror.org/03kxek255 Metcalf Foundation'), (53053, 'https://ror.org/03kz2rg33', 'en', 1, 'https://ror.org/03kz2rg33 F. M. Kirby Foundation'), (53054, 'https://ror.org/03kzc9a65', 'en', 1, 'https://ror.org/03kzc9a65 Lotus Clinical Research'), (53055, 'https://ror.org/03m027021', 'en', 1, 'https://ror.org/03m027021 Oregon Medical Research Center'), (53056, 'https://ror.org/03m0mkk67', 'no_lang_code', 1, 'https://ror.org/03m0mkk67 Gates (United States)'), (53057, 'https://ror.org/03m1g2s55', 'en', 1, 'https://ror.org/03m1g2s55 Sanford Burnham Prebys Medical Discovery Institute'), (53058, 'https://ror.org/03m2d4v09', 'en', 1, 'https://ror.org/03m2d4v09 Hudson Dermatology'), (53059, 'https://ror.org/03m2gb193', 'en', 1, 'https://ror.org/03m2gb193 Food Allergy Research and Education'), (53060, 'https://ror.org/03m52qe71', 'no_lang_code', 1, 'https://ror.org/03m52qe71 Truetzschler (Germany) Trützschler'), (53061, 'https://ror.org/03m58p983', 'en', 1, 'https://ror.org/03m58p983 Community Foundation of the Ozarks'), (53062, 'https://ror.org/03m5z5h02', 'en', 1, 'https://ror.org/03m5z5h02 Windsor Dermatology'), (53063, 'https://ror.org/03m6mkf15', 'fr', 1, 'https://ror.org/03m6mkf15 Centre de Haute Energie'), (53064, 'https://ror.org/03m6vhh37', 'no_lang_code', 1, 'https://ror.org/03m6vhh37 EurActiv (Belgium)'), (53065, 'https://ror.org/03mbtad86', 'en', 1, 'https://ror.org/03mbtad86 National Organization for Hearing Research Foundation'), (53066, 'https://ror.org/03mekzy91', 'en', 1, 'https://ror.org/03mekzy91 Contraception Research and Development'), (53067, 'https://ror.org/03mgygf96', 'it', 1, 'https://ror.org/03mgygf96 ASST Melegnano e della Martesana'), (53068, 'https://ror.org/03mh6bp35', 'en', 1, 'https://ror.org/03mh6bp35 Dr. Kovil''s Diabetes Care Centre'), (53069, 'https://ror.org/03mm8gj84', 'en', 1, 'https://ror.org/03mm8gj84 Svensk Onkologisk Förening Swedish Society of Oncology'), (53070, 'https://ror.org/03mmkx794', 'en', 1, 'https://ror.org/03mmkx794 Judith Rothschild Foundation'), (53071, 'https://ror.org/03mn32794', 'en', 1, 'https://ror.org/03mn32794 Skin Wellness Center'), (53072, 'https://ror.org/03mn44j95', 'en', 1, 'https://ror.org/03mn44j95 Diamond Blackfan Anemia Foundation'), (53073, 'https://ror.org/03mn6vd03', 'en', 1, 'https://ror.org/03mn6vd03 Vicente Ferrer Foundation'), (53074, 'https://ror.org/03mr1bw41', 'en', 1, 'https://ror.org/03mr1bw41 Peninsula Orthopedic Associates'), (53075, 'https://ror.org/03msk5846', 'en', 1, 'https://ror.org/03msk5846 Museum of the American Revolution'), (53076, 'https://ror.org/03mspgn17', 'no_lang_code', 1, 'https://ror.org/03mspgn17 Klosterfrau Healthcare Group (Germany)'), (53077, 'https://ror.org/03mvv8049', 'en', 1, 'https://ror.org/03mvv8049 Karl Bremer Hospital'), (53078, 'https://ror.org/03mwbkd48', 'en', 1, 'https://ror.org/03mwbkd48 Promundo'), (53079, 'https://ror.org/03my72535', 'no_lang_code', 1, 'https://ror.org/03my72535 Merck (Spain)'), (53080, 'https://ror.org/03myc4w31', 'en', 1, 'https://ror.org/03myc4w31 American Rhinologic Society'), (53081, 'https://ror.org/03mymmj42', 'en', 1, 'https://ror.org/03mymmj42 Collins Foundation'), (53082, 'https://ror.org/03myshd20', 'en', 1, 'https://ror.org/03myshd20 Margaret Clark Morgan Foundation'), (53083, 'https://ror.org/03mz4b890', 'en', 1, 'https://ror.org/03mz4b890 Hillsborough County Public Schools'), (53084, 'https://ror.org/03mzxvt76', 'fr', 1, 'https://ror.org/03mzxvt76 Arcagy Gineco'), (53085, 'https://ror.org/03n07ce29', 'en', 1, 'https://ror.org/03n07ce29 Pacific Heart Institute'), (53086, 'https://ror.org/03n09s827', 'en', 1, 'https://ror.org/03n09s827 Planned Parenthood'), (53087, 'https://ror.org/03n0et212', 'en', 1, 'https://ror.org/03n0et212 Bonfils-Stanton Foundation'), (53088, 'https://ror.org/03n0q0765', 'de', 1, 'https://ror.org/03n0q0765 Landesklinikum Korneuburg'), (53089, 'https://ror.org/03n0sad24', 'en', 1, 'https://ror.org/03n0sad24 Vera Institute of Justice'), (53090, 'https://ror.org/03n2fp057', 'no_lang_code', 1, 'https://ror.org/03n2fp057 Jacobs Douwe Egberts (Netherlands)'), (53091, 'https://ror.org/03n3c3r21', 'no_lang_code', 1, 'https://ror.org/03n3c3r21 Fiat Chrysler Automobiles (Germany)'), (53092, 'https://ror.org/03n3dtw64', 'en', 1, 'https://ror.org/03n3dtw64 Neighborcare Health'), (53093, 'https://ror.org/03n3k9q60', 'en', 1, 'https://ror.org/03n3k9q60 Statistical Assessment Service'), (53094, 'https://ror.org/03n4yr938', 'no_lang_code', 1, 'https://ror.org/03n4yr938 FormFactor (United States)'), (53095, 'https://ror.org/03n6hmg93', 'en', 1, 'https://ror.org/03n6hmg93 Ovarian Cancer Research Foundation'), (53096, 'https://ror.org/03n9e5p29', 'no_lang_code', 1, 'https://ror.org/03n9e5p29 Epi-Q (United States)'), (53097, 'https://ror.org/03n9mb487', 'no_lang_code', 1, 'https://ror.org/03n9mb487 Bempu'), (53098, 'https://ror.org/03nbkg471', 'en', 1, 'https://ror.org/03nbkg471 Danish Head and Neck Cancer Group'), (53099, 'https://ror.org/03neavy72', 'no_lang_code', 1, 'https://ror.org/03neavy72 Phi Gamma Delta'), (53100, 'https://ror.org/03nf7rc81', 'no_lang_code', 1, 'https://ror.org/03nf7rc81 Canbex Therapeutics (United Kingdom)'), (53101, 'https://ror.org/03nfnpg30', 'en', 1, 'https://ror.org/03nfnpg30 North Central Organized Regionally For Total Health'), (53102, 'https://ror.org/03ng4kg22', 'en', 1, 'https://ror.org/03ng4kg22 Carl Zeiss Foundation Carl-Zeiss-Stiftung'), (53103, 'https://ror.org/03nj49q02', 'no_lang_code', 1, 'https://ror.org/03nj49q02 Techtronic Industries (United States)'), (53104, 'https://ror.org/03nk3j490', 'pt', 1, 'https://ror.org/03nk3j490 Hospital Vila Franca de Xira'), (53105, 'https://ror.org/03nkwrm72', 'fr', 1, 'https://ror.org/03nkwrm72 Centre Hospitalier de Fougères'), (53106, 'https://ror.org/03nmfve22', 'en', 1, 'https://ror.org/03nmfve22 Caribou Digital'), (53107, 'https://ror.org/03nmw6653', 'en', 1, 'https://ror.org/03nmw6653 European Neuroendocrine Association'), (53108, 'https://ror.org/03np5z244', 'no_lang_code', 1, 'https://ror.org/03np5z244 DermResearch (United States)'), (53109, 'https://ror.org/03nrsfd64', 'en', 1, 'https://ror.org/03nrsfd64 BrickStreet Foundation'), (53110, 'https://ror.org/03ns7pw86', 'en', 1, 'https://ror.org/03ns7pw86 Dermatrials Research'), (53111, 'https://ror.org/03nvr8032', 'no_lang_code', 1, 'https://ror.org/03nvr8032 Tokai Pharmaceuticals (United States)'), (53112, 'https://ror.org/03p0xnn24', 'en', 1, 'https://ror.org/03p0xnn24 Mind Australia'), (53113, 'https://ror.org/03p1cbx82', 'no_lang_code', 1, 'https://ror.org/03p1cbx82 Nektar Therapeutics (United States)'), (53114, 'https://ror.org/03p3t4h85', 'no_lang_code', 1, 'https://ror.org/03p3t4h85 Zymenex (Denmark)'), (53115, 'https://ror.org/03p5g0c78', 'en', 1, 'https://ror.org/03p5g0c78 Peace Stone Foundation'), (53116, 'https://ror.org/03p5taw69', 'en', 1, 'https://ror.org/03p5taw69 Foundation for Middle East Peace'), (53117, 'https://ror.org/03p5vh095', 'en', 1, 'https://ror.org/03p5vh095 Complete College America'), (53118, 'https://ror.org/03p8km392', 'en', 1, 'https://ror.org/03p8km392 Canadian Bee Research Fund'), (53119, 'https://ror.org/03p9f9307', 'en', 1, 'https://ror.org/03p9f9307 Graphic Arts Education and Research Foundation'), (53120, 'https://ror.org/03paq3x39', 'no_lang_code', 1, 'https://ror.org/03paq3x39 Celerion (United Kingdom)'), (53121, 'https://ror.org/03pfkgd48', 'no_lang_code', 1, 'https://ror.org/03pfkgd48 Toyo Seikan (Japan) 東洋製罐グループホールディングス株式会社'), (53122, 'https://ror.org/03phzkx10', 'en', 1, 'https://ror.org/03phzkx10 Institut für Kulturwissenschaften und Theatergeschichte Institute of Culture Studies and Theatre History'), (53123, 'https://ror.org/03pjeq484', 'en', 1, 'https://ror.org/03pjeq484 St. Helena Public Library'), (53124, 'https://ror.org/03pkewe16', 'en', 1, 'https://ror.org/03pkewe16 Manpei Suzuki Diabetes Foundation'), (53125, 'https://ror.org/03pnd3r37', 'en', 1, 'https://ror.org/03pnd3r37 Andy Warhol Foundation for the Visual Arts'), (53126, 'https://ror.org/03pp6kd13', 'en', 1, 'https://ror.org/03pp6kd13 American Hand Therapy Foundation'), (53127, 'https://ror.org/03pptej51', 'it', 1, 'https://ror.org/03pptej51 Fondazione Guido Berlucchi'), (53128, 'https://ror.org/03pr9qp97', 'en', 1, 'https://ror.org/03pr9qp97 Stanislaus County Library'), (53129, 'https://ror.org/03ps62e58', 'en', 1, 'https://ror.org/03ps62e58 Grantmakers In Health'), (53130, 'https://ror.org/03pvvgr46', 'en', 1, 'https://ror.org/03pvvgr46 Seattle Academy of Arts and Sciences'), (53131, 'https://ror.org/03pwpr214', 'no_lang_code', 1, 'https://ror.org/03pwpr214 Hitachi (United States)'), (53132, 'https://ror.org/03pxm0s08', 'en', 1, 'https://ror.org/03pxm0s08 Centennial Heart Cardiovascular Consultants'), (53133, 'https://ror.org/03pxvf904', 'it', 1, 'https://ror.org/03pxvf904 Clinica Mediterranea'), (53134, 'https://ror.org/03pyjhg42', 'no_lang_code', 1, 'https://ror.org/03pyjhg42 Syddansk Innovation (Denmark)'), (53135, 'https://ror.org/03pzdmy91', 'de', 1, 'https://ror.org/03pzdmy91 Konrad Adenauer Foundation Konrad-Adenauer-Stiftung'), (53136, 'https://ror.org/03q02hd35', 'en', 1, 'https://ror.org/03q02hd35 Fighting Infectious Diseases in Emerging Countries'), (53137, 'https://ror.org/03q2pyf14', 'de', 1, 'https://ror.org/03q2pyf14 Herzstiftung Olten'), (53138, 'https://ror.org/03q37xb84', 'en', 1, 'https://ror.org/03q37xb84 Wenatchee Valley Hospital & Clinics'), (53139, 'https://ror.org/03q4j4z17', 'no_lang_code', 1, 'https://ror.org/03q4j4z17 Damvad (Denmark)'), (53140, 'https://ror.org/03q6gdh15', 'no_lang_code', 1, 'https://ror.org/03q6gdh15 ImmuPharma (France)'), (53141, 'https://ror.org/03q7jt003', 'no_lang_code', 1, 'https://ror.org/03q7jt003 Flex (United States)'), (53142, 'https://ror.org/03qcf9t82', 'no_lang_code', 1, 'https://ror.org/03qcf9t82 Dicerna Pharmaceuticals (United States)'), (53143, 'https://ror.org/03qezq212', 'da', 1, 'https://ror.org/03qezq212 Kai Lange og Gunhild Kai Langes Fond'), (53144, 'https://ror.org/03qj95z98', 'en', 1, 'https://ror.org/03qj95z98 Tony Blair Africa Governance Initiative'), (53145, 'https://ror.org/03qjaaq62', 'en', 1, 'https://ror.org/03qjaaq62 Institute Of Perinatology Obstetrics And Gynaecology ՀՀ ԱՆ պերինատոլոգիայի, մանկաբարձության եւ գինեկոլոգիայի'), (53146, 'https://ror.org/03qjmyd44', 'en', 1, 'https://ror.org/03qjmyd44 Jean Brown Research'), (53147, 'https://ror.org/03qngpc73', 'no_lang_code', 1, 'https://ror.org/03qngpc73 Mitsuba (Japan) 株式会社ミツバ'), (53148, 'https://ror.org/03qpq8w95', 'en', 1, 'https://ror.org/03qpq8w95 Family Beginnings'), (53149, 'https://ror.org/03qq7fj62', 'en', 1, 'https://ror.org/03qq7fj62 Maple Leaf Medical Clinic'), (53150, 'https://ror.org/03qqxfy51', 'en', 1, 'https://ror.org/03qqxfy51 Crawford Heritage Community Foundation'), (53151, 'https://ror.org/03qvxfj12', 'en', 1, 'https://ror.org/03qvxfj12 Morton Cure Paralysis Fund'), (53152, 'https://ror.org/03qyben73', 'en', 1, 'https://ror.org/03qyben73 MetroWest Health Foundation'), (53153, 'https://ror.org/03qzp5f03', 'en', 1, 'https://ror.org/03qzp5f03 Lawrence Foundation'), (53154, 'https://ror.org/03r0s9m45', 'en', 1, 'https://ror.org/03r0s9m45 Population Action International'), (53155, 'https://ror.org/03r1cgk81', 'no_lang_code', 1, 'https://ror.org/03r1cgk81 Webasto (Germany)'), (53156, 'https://ror.org/03r24gp64', 'de', 1, 'https://ror.org/03r24gp64 Sterreichisches Akromegalie Register'), (53157, 'https://ror.org/03r3bgz24', 'en', 1, 'https://ror.org/03r3bgz24 Children''s Advocacy Center'), (53158, 'https://ror.org/03r6kns77', 'fr', 1, 'https://ror.org/03r6kns77 Centre Hospitalier de Rochefort, Rochefort General Hospital'), (53159, 'https://ror.org/03r72d818', 'no_lang_code', 1, 'https://ror.org/03r72d818 Hokuto (Japan) ホクト株式会社'), (53160, 'https://ror.org/03r7rdz71', 'en', 1, 'https://ror.org/03r7rdz71 European Thoracic Oncology Platform'), (53161, 'https://ror.org/03rb22t72', 'en', 1, 'https://ror.org/03rb22t72 Bidwell Memorial Presbyterian Church'), (53162, 'https://ror.org/03rbf8960', 'no_lang_code', 1, 'https://ror.org/03rbf8960 LyondellBasell (United States)'), (53163, 'https://ror.org/03rhhf773', 'en', 1, 'https://ror.org/03rhhf773 International Planned Parenthood Federation'), (53164, 'https://ror.org/03rhyyh86', 'no_lang_code', 1, 'https://ror.org/03rhyyh86 Diagram (Netherlands)'), (53165, 'https://ror.org/03rkybp63', 'no_lang_code', 1, 'https://ror.org/03rkybp63 Heel (Germany)'), (53166, 'https://ror.org/03rkzne32', 'it', 1, 'https://ror.org/03rkzne32 Abiogen Pharma (Italy)'), (53167, 'https://ror.org/03rmfck35', 'no_lang_code', 1, 'https://ror.org/03rmfck35 Itad (United Kingdom)'), (53168, 'https://ror.org/03rr5wf56', 'no_lang_code', 1, 'https://ror.org/03rr5wf56 Sophiris (United States)'), (53169, 'https://ror.org/03rrqwf50', 'no_lang_code', 1, 'https://ror.org/03rrqwf50 PAREXEL International (United Kingdom)'), (53170, 'https://ror.org/03rx2ty86', 'en', 1, 'https://ror.org/03rx2ty86 Ministerie van Buitenlandse Zaken Ministry of Foreign Affairs'), (53171, 'https://ror.org/03rxcr397', 'no_lang_code', 1, 'https://ror.org/03rxcr397 O&O Alpan (United States)'), (53172, 'https://ror.org/03rybz620', 'en', 1, 'https://ror.org/03rybz620 Health Center'), (53173, 'https://ror.org/03s0ywz76', 'en', 1, 'https://ror.org/03s0ywz76 California Dental Association Foundation'), (53174, 'https://ror.org/03s182269', 'no_lang_code', 1, 'https://ror.org/03s182269 Valspar (United States)'), (53175, 'https://ror.org/03s235554', 'en', 1, 'https://ror.org/03s235554 Atlanta Gastroenterology Associates'), (53176, 'https://ror.org/03s2yrh28', 'en', 1, 'https://ror.org/03s2yrh28 Little Rock Family Practice Clinic'), (53177, 'https://ror.org/03s3fx919', 'en', 1, 'https://ror.org/03s3fx919 Carl Marshall and Mildred Almen Reeves Foundation'), (53178, 'https://ror.org/03s3qsz11', 'en', 1, 'https://ror.org/03s3qsz11 EduInnovation'), (53179, 'https://ror.org/03s410108', 'en', 1, 'https://ror.org/03s410108 OrthoVirginia'), (53180, 'https://ror.org/03s4rnj35', 'it', 1, 'https://ror.org/03s4rnj35 Fondazione Audiologica Varese'), (53181, 'https://ror.org/03s68nt92', 'no_lang_code', 1, 'https://ror.org/03s68nt92 Somfy (France)'), (53182, 'https://ror.org/03s6cj295', 'no_lang_code', 1, 'https://ror.org/03s6cj295 Osaka Gas (Japan) 大阪瓦斯株式会社'), (53183, 'https://ror.org/03s9tpa06', 'en', 1, 'https://ror.org/03s9tpa06 Chain of Love Foundation'), (53184, 'https://ror.org/03samhn24', 'no_lang_code', 1, 'https://ror.org/03samhn24 Gamida Cell (Israel)'), (53185, 'https://ror.org/03sbjcp06', 'no_lang_code', 1, 'https://ror.org/03sbjcp06 Bobst (Switzerland)'), (53186, 'https://ror.org/03sf3vq45', 'en', 1, 'https://ror.org/03sf3vq45 NDSU Research Foundation'), (53187, 'https://ror.org/03sf80053', 'it', 1, 'https://ror.org/03sf80053 Pavia nel Cuore'), (53188, 'https://ror.org/03sh4z743', 'no_lang_code', 1, 'https://ror.org/03sh4z743 Sunovion (United Kingdom)'), (53189, 'https://ror.org/03sj0r759', 'no_lang_code', 1, 'https://ror.org/03sj0r759 Pratham'), (53190, 'https://ror.org/03sje1a87', 'en', 1, 'https://ror.org/03sje1a87 Lindsay Unified School District'), (53191, 'https://ror.org/03snkjj14', 'en', 1, 'https://ror.org/03snkjj14 Don Monti Memorial Research Foundation'), (53192, 'https://ror.org/03sqkgx87', 'en', 1, 'https://ror.org/03sqkgx87 Mali Health'), (53193, 'https://ror.org/03srt3k91', 'en', 1, 'https://ror.org/03srt3k91 Regional Urology'), (53194, 'https://ror.org/03ss9xg24', 'en', 1, 'https://ror.org/03ss9xg24 Coalition for Pulmonary Fibrosis'), (53195, 'https://ror.org/03svt6w35', 'en', 1, 'https://ror.org/03svt6w35 Prince Edward Island Library Service'), (53196, 'https://ror.org/03svtz920', 'no_lang_code', 1, 'https://ror.org/03svtz920 Tekwani Vision Center'), (53197, 'https://ror.org/03swh5660', 'no_lang_code', 1, 'https://ror.org/03swh5660 Perrigo (Sweden)'), (53198, 'https://ror.org/03swpf442', 'en', 1, 'https://ror.org/03swpf442 Health Foundation of South Florida'), (53199, 'https://ror.org/03sxyq954', 'en', 1, 'https://ror.org/03sxyq954 CapitalCare Foundation'), (53200, 'https://ror.org/03symcd56', 'en', 1, 'https://ror.org/03symcd56 Bay State Clinical Trials'), (53201, 'https://ror.org/03sys9n92', 'en', 1, 'https://ror.org/03sys9n92 Virginia Eye Consultants'), (53202, 'https://ror.org/03sz0jr25', 'en', 1, 'https://ror.org/03sz0jr25 Why Foundation'), (53203, 'https://ror.org/03szkq031', 'en', 1, 'https://ror.org/03szkq031 Environment and Health Fund הקרן לבריאות הסביבה'), (53204, 'https://ror.org/03t174c88', 'en', 1, 'https://ror.org/03t174c88 Boston Foundation'), (53205, 'https://ror.org/03t18wf38', 'en', 1, 'https://ror.org/03t18wf38 Illinois Department of Healthcare and Family Services'), (53206, 'https://ror.org/03t1kp138', 'en', 1, 'https://ror.org/03t1kp138 Impact on Education'), (53207, 'https://ror.org/03t39g890', 'en', 1, 'https://ror.org/03t39g890 National Council for the Social Studies'), (53208, 'https://ror.org/03t66w580', 'no_lang_code', 1, 'https://ror.org/03t66w580 VFO (United States)'), (53209, 'https://ror.org/03t78j106', 'en', 1, 'https://ror.org/03t78j106 Sister Cities International'), (53210, 'https://ror.org/03t7vt528', 'no_lang_code', 1, 'https://ror.org/03t7vt528 Navitas Life Sciences (Germany)'), (53211, 'https://ror.org/03t8z4688', 'no_lang_code', 1, 'https://ror.org/03t8z4688 HCM Strategists (United States)'), (53212, 'https://ror.org/03tah6c23', 'no_lang_code', 1, 'https://ror.org/03tah6c23 Ferro (United States)'), (53213, 'https://ror.org/03tb7cf45', 'en', 1, 'https://ror.org/03tb7cf45 Firstline Schools'), (53214, 'https://ror.org/03tbpfn25', 'en', 1, 'https://ror.org/03tbpfn25 Global Call to Action Against Poverty'), (53215, 'https://ror.org/03tcxr084', 'en', 1, 'https://ror.org/03tcxr084 Student Achievement Partners'), (53216, 'https://ror.org/03td08d28', 'no_lang_code', 1, 'https://ror.org/03td08d28 TechnipFMC (United States)'), (53217, 'https://ror.org/03td98h13', 'en', 1, 'https://ror.org/03td98h13 Long Term Care Community Coalition'), (53218, 'https://ror.org/03tfkdy19', 'en', 1, 'https://ror.org/03tfkdy19 Greater New Orleans Foundation'), (53219, 'https://ror.org/03th0y014', 'en', 1, 'https://ror.org/03th0y014 Nordic Myeloma Study Group'), (53220, 'https://ror.org/03tjh0z04', 'en', 1, 'https://ror.org/03tjh0z04 Northwest Association For Biomedical Research'), (53221, 'https://ror.org/03tk1ps71', 'en', 1, 'https://ror.org/03tk1ps71 McGraw Foundation'), (53222, 'https://ror.org/03tkh8741', 'en', 1, 'https://ror.org/03tkh8741 Alzheimer''s Foundation of America'), (53223, 'https://ror.org/03tknt305', 'en', 1, 'https://ror.org/03tknt305 Explorers Club'), (53224, 'https://ror.org/03tkv5n25', 'en', 1, 'https://ror.org/03tkv5n25 Państwowe Muzeum Archeologiczne State Archaeological Museum'), (53225, 'https://ror.org/03tm7cr19', 'en', 1, 'https://ror.org/03tm7cr19 Phoenix Medical Research'), (53226, 'https://ror.org/03tp9c748', 'no_lang_code', 1, 'https://ror.org/03tp9c748 Belden (United States)'), (53227, 'https://ror.org/03tpee522', 'en', 1, 'https://ror.org/03tpee522 Every Mother Counts'), (53228, 'https://ror.org/03tq2kc64', 'en', 1, 'https://ror.org/03tq2kc64 Shanxi Dayi Hospital 山西大医院'), (53229, 'https://ror.org/03tqbe189', 'en', 1, 'https://ror.org/03tqbe189 State Educational Technology Directors Association'), (53230, 'https://ror.org/03tqsvs90', 'en', 1, 'https://ror.org/03tqsvs90 FSH Society'), (53231, 'https://ror.org/03ts5k304', 'no_lang_code', 1, 'https://ror.org/03ts5k304 Focke & Co (Germany)'), (53232, 'https://ror.org/03tsamb44', 'en', 1, 'https://ror.org/03tsamb44 New River Valley Research Institute'), (53233, 'https://ror.org/03tst3378', 'en', 1, 'https://ror.org/03tst3378 Eye Care Associates'), (53234, 'https://ror.org/03tv67y51', 'en', 1, 'https://ror.org/03tv67y51 Illinois Critical Access Hospital Network'), (53235, 'https://ror.org/03tvt3c62', 'no_lang_code', 1, 'https://ror.org/03tvt3c62 Goodyear (United Kingdom)'), (53236, 'https://ror.org/03tx8dq56', 'en', 1, 'https://ror.org/03tx8dq56 Boehringer Ingelheim Foundation Boehringer Ingelheim Stiftung'), (53237, 'https://ror.org/03tzcqp14', 'no_lang_code', 1, 'https://ror.org/03tzcqp14 Reos Production (Romania)'), (53238, 'https://ror.org/03tzsnk49', 'en', 1, 'https://ror.org/03tzsnk49 Pacific Pioneer Fund'), (53239, 'https://ror.org/03v0txq34', 'no_lang_code', 1, 'https://ror.org/03v0txq34 Aeterna Zentaris (Germany)'), (53240, 'https://ror.org/03v0zfc19', 'en', 1, 'https://ror.org/03v0zfc19 Quality Research'), (53241, 'https://ror.org/03v1s7b70', 'no_lang_code', 1, 'https://ror.org/03v1s7b70 Pfizer (South Korea)'), (53242, 'https://ror.org/03v3gdy33', 'en', 1, 'https://ror.org/03v3gdy33 Clinical Investigations of Texas'), (53243, 'https://ror.org/03v4mhk58', 'en', 1, 'https://ror.org/03v4mhk58 World Health Organization - Nigeria'), (53244, 'https://ror.org/03v4wzh43', 'en', 1, 'https://ror.org/03v4wzh43 Viva Hispanic Foundation NW'), (53245, 'https://ror.org/03v7w7232', 'en', 1, 'https://ror.org/03v7w7232 Manitoba Beekeepers'' Association'), (53246, 'https://ror.org/03v9c4d77', 'no_lang_code', 1, 'https://ror.org/03v9c4d77 MTN (Uganda)'), (53247, 'https://ror.org/03vag5z12', 'en', 1, 'https://ror.org/03vag5z12 Mustard Seed Foundation'), (53248, 'https://ror.org/03vjk0w59', 'en', 1, 'https://ror.org/03vjk0w59 Hemophilia Association of New York'), (53249, 'https://ror.org/03vma5j11', 'en', 1, 'https://ror.org/03vma5j11 Staploe Medical Centre'), (53250, 'https://ror.org/03vmxwa84', 'en', 1, 'https://ror.org/03vmxwa84 Arai Science and Technology Promotion Foundation 新井科学技術振興財団'), (53251, 'https://ror.org/03vpa9q11', 'en', 1, 'https://ror.org/03vpa9q11 Weihai Municipal Hospital 威海市立医院'), (53252, 'https://ror.org/03vqj9f54', 'en', 1, 'https://ror.org/03vqj9f54 Interleukin Foundation'), (53253, 'https://ror.org/03vt3fq09', 'en', 1, 'https://ror.org/03vt3fq09 Affiliated Hospital of Liaoning University of Traditional Chinese Medicine 辽宁省中医院'), (53254, 'https://ror.org/03vtebn72', 'no_lang_code', 1, 'https://ror.org/03vtebn72 Biofrontera (Germany)'), (53255, 'https://ror.org/03vxt1186', 'en', 1, 'https://ror.org/03vxt1186 Water Services Trust Fund'), (53256, 'https://ror.org/03vy22q83', 'no_lang_code', 1, 'https://ror.org/03vy22q83 Accord Healthcare (Poland)'), (53257, 'https://ror.org/03vy5fy74', 'no_lang_code', 1, 'https://ror.org/03vy5fy74 Emotional Brain (Netherlands)'), (53258, 'https://ror.org/03vyp3w30', 'en', 1, 'https://ror.org/03vyp3w30 Canadian Thoracic Society'), (53259, 'https://ror.org/03vyqpz72', 'no_lang_code', 1, 'https://ror.org/03vyqpz72 Solvotrin Innovations (Ireland)'), (53260, 'https://ror.org/03w0y1q19', 'no_lang_code', 1, 'https://ror.org/03w0y1q19 Haruv Institute מכון חרוב'), (53261, 'https://ror.org/03w27w166', 'en', 1, 'https://ror.org/03w27w166 Akron Community Foundation'), (53262, 'https://ror.org/03w32n732', 'en', 1, 'https://ror.org/03w32n732 American Brain Tumor Association'), (53263, 'https://ror.org/03w4sj937', 'en', 1, 'https://ror.org/03w4sj937 Treatment Action Group'), (53264, 'https://ror.org/03w5sqz30', 'en', 1, 'https://ror.org/03w5sqz30 Davidson County Health Department'), (53265, 'https://ror.org/03w6ejj57', 'no_lang_code', 1, 'https://ror.org/03w6ejj57 Azellon (United Kingdom)'), (53266, 'https://ror.org/03w76df53', 'de', 1, 'https://ror.org/03w76df53 Ernst-Abbe-Stiftung'), (53267, 'https://ror.org/03w77n817', 'no_lang_code', 1, 'https://ror.org/03w77n817 Turnitin (United States)'), (53268, 'https://ror.org/03w7jg970', 'no_lang_code', 1, 'https://ror.org/03w7jg970 Allergan (France)'), (53269, 'https://ror.org/03wbpnx68', 'en', 1, 'https://ror.org/03wbpnx68 Nargis Dutt Memorial Cancer Hospital'), (53270, 'https://ror.org/03wcc3744', 'en', 1, 'https://ror.org/03wcc3744 Forest Research'), (53271, 'https://ror.org/03wcw7y06', 'en', 1, 'https://ror.org/03wcw7y06 Arkansas Research Alliance'), (53272, 'https://ror.org/03we40d69', 'en', 1, 'https://ror.org/03we40d69 Dermatology Treatment & Research Center'), (53273, 'https://ror.org/03wewq802', 'tr', 1, 'https://ror.org/03wewq802 Arnavutköy Devlet Hastanesi'), (53274, 'https://ror.org/03wgdcb95', 'en', 1, 'https://ror.org/03wgdcb95 Atkinson Foundation'), (53275, 'https://ror.org/03wgek846', 'de', 1, 'https://ror.org/03wgek846 Praxis für Hämatologie und Onkologie'), (53276, 'https://ror.org/03wj3v998', 'no_lang_code', 1, 'https://ror.org/03wj3v998 Fluidda (Belgium)'), (53277, 'https://ror.org/03wjwyj98', 'no_lang_code', 1, 'https://ror.org/03wjwyj98 Eppendorf (Germany)'), (53278, 'https://ror.org/03wkr6054', 'en', 1, 'https://ror.org/03wkr6054 DSF Charitable Foundation'), (53279, 'https://ror.org/03wm27n21', 'no_lang_code', 1, 'https://ror.org/03wm27n21 Shenyang 242 Hospital 沈阳二四二医院'), (53280, 'https://ror.org/03wmnrc91', 'no_lang_code', 1, 'https://ror.org/03wmnrc91 Yakult Honsha (Japan) ヤクルト'), (53281, 'https://ror.org/03wnrr374', 'en', 1, 'https://ror.org/03wnrr374 New Life International'), (53282, 'https://ror.org/03wtqwa04', 'en', 1, 'https://ror.org/03wtqwa04 Westmead Institute'), (53283, 'https://ror.org/03wxagd20', 'en', 1, 'https://ror.org/03wxagd20 McGill-Toolen Catholic High School'), (53284, 'https://ror.org/03wxy1684', 'en', 1, 'https://ror.org/03wxy1684 Australian Society of Periodontology'), (53285, 'https://ror.org/03wy7t706', 'en', 1, 'https://ror.org/03wy7t706 KLS Foundation'), (53286, 'https://ror.org/03wztvy18', 'en', 1, 'https://ror.org/03wztvy18 Paul Hamlyn Foundation'), (53287, 'https://ror.org/03x06d381', 'no_lang_code', 1, 'https://ror.org/03x06d381 Precise Consult International (Ethiopia)'), (53288, 'https://ror.org/03x0a1z16', 'no_lang_code', 1, 'https://ror.org/03x0a1z16 Asia Vital Components (Taiwan) 亚洲生命科技有限公司'), (53289, 'https://ror.org/03x1gs961', 'en', 1, 'https://ror.org/03x1gs961 Jessamine County Schools'), (53290, 'https://ror.org/03x1kdq06', 'no_lang_code', 1, 'https://ror.org/03x1kdq06 Acacia Pharma (United Kingdom)'), (53291, 'https://ror.org/03x3bwz43', 'en', 1, 'https://ror.org/03x3bwz43 Ohio News Media Association'), (53292, 'https://ror.org/03x49ea82', 'no_lang_code', 1, 'https://ror.org/03x49ea82 Renapharma (Sweden)'), (53293, 'https://ror.org/03x4mf659', 'en', 1, 'https://ror.org/03x4mf659 Lietuvos laisvosios rinkos institutas Lithuanian Free Market Institute'), (53294, 'https://ror.org/03x6bc282', 'en', 1, 'https://ror.org/03x6bc282 American Medical Student Association'), (53295, 'https://ror.org/03xa4xh46', 'no_lang_code', 1, 'https://ror.org/03xa4xh46 Teva Pharmaceuticals (Germany)'), (53296, 'https://ror.org/03xerja39', 'no_lang_code', 1, 'https://ror.org/03xerja39 Great Lakes Research Group (United States)'), (53297, 'https://ror.org/03xgnmf38', 'en', 1, 'https://ror.org/03xgnmf38 Gallmann Memorial Foundation'), (53298, 'https://ror.org/03xjd7698', 'no', 1, 'https://ror.org/03xjd7698 Aleris Rosenborgklinikken'), (53299, 'https://ror.org/03xjfns22', 'no_lang_code', 1, 'https://ror.org/03xjfns22 Teva Pharmaceuticals (Hungary)'), (53300, 'https://ror.org/03xm1q050', 'en', 1, 'https://ror.org/03xm1q050 Global Development Incubator'), (53301, 'https://ror.org/03xpmjk25', 'en', 1, 'https://ror.org/03xpmjk25 Ittleson Foundation'), (53302, 'https://ror.org/03xt5tw33', 'en', 1, 'https://ror.org/03xt5tw33 Wyoming State Library'), (53303, 'https://ror.org/03xvgfq55', 'en', 1, 'https://ror.org/03xvgfq55 de Beaumont Foundation'), (53304, 'https://ror.org/03xxf5287', 'en', 1, 'https://ror.org/03xxf5287 Actors Fund of America'), (53305, 'https://ror.org/03xxrrp43', 'en', 1, 'https://ror.org/03xxrrp43 Nexleaf Analytics'), (53306, 'https://ror.org/03xzdzp97', 'en', 1, 'https://ror.org/03xzdzp97 Corneal Consultants of Colorado'), (53307, 'https://ror.org/03xzjcd71', 'en', 1, 'https://ror.org/03xzjcd71 Intellectual Virtues Academy'), (53308, 'https://ror.org/03y0paf51', 'en', 1, 'https://ror.org/03y0paf51 Spaulding Hospital'), (53309, 'https://ror.org/03y0tb128', 'it', 1, 'https://ror.org/03y0tb128 Azienda USL della Valle d’Aosta'), (53310, 'https://ror.org/03y18ef49', 'no_lang_code', 1, 'https://ror.org/03y18ef49 Intec Pharma (Israel)'), (53311, 'https://ror.org/03y18zz18', 'en', 1, 'https://ror.org/03y18zz18 Revenue Watch Institute'), (53312, 'https://ror.org/03y50tm06', 'en', 1, 'https://ror.org/03y50tm06 Korean Dermatological Association 대한피부과학회'), (53313, 'https://ror.org/03y6jbv18', 'no_lang_code', 1, 'https://ror.org/03y6jbv18 AUS (United States)'), (53314, 'https://ror.org/03y7nkj09', 'no_lang_code', 1, 'https://ror.org/03y7nkj09 Matrizyme (Canada)'), (53315, 'https://ror.org/03y82c084', 'no_lang_code', 1, 'https://ror.org/03y82c084 Immodulon Therapeutics (United Kingdom)'), (53316, 'https://ror.org/03y8emt10', 'en', 1, 'https://ror.org/03y8emt10 Lyndhurst Gynecologic Associates'), (53317, 'https://ror.org/03y8pzx74', 'en', 1, 'https://ror.org/03y8pzx74 Washington Center for Weight Management and Research'), (53318, 'https://ror.org/03y932z67', 'en', 1, 'https://ror.org/03y932z67 Foothill Family Clinic'), (53319, 'https://ror.org/03y9haj77', 'en', 1, 'https://ror.org/03y9haj77 Colorado Trust'), (53320, 'https://ror.org/03yanpe89', 'en', 1, 'https://ror.org/03yanpe89 A. E. Finley Foundation'), (53321, 'https://ror.org/03ybnsp25', 'no_lang_code', 1, 'https://ror.org/03ybnsp25 Valhi (United States)'), (53322, 'https://ror.org/03yd12021', 'en', 1, 'https://ror.org/03yd12021 Yueyang Hospital 上海中医药大学附属岳阳中西医结合医院'), (53323, 'https://ror.org/03yd2ta47', 'en', 1, 'https://ror.org/03yd2ta47 Private Hospital & Heart Center Varde'), (53324, 'https://ror.org/03ye15z82', 'nl', 1, 'https://ror.org/03ye15z82 ODAS Stichting'), (53325, 'https://ror.org/03ye20z12', 'no_lang_code', 1, 'https://ror.org/03ye20z12 HolsboerMaschmeyer NeuroChemie (Germany)'), (53326, 'https://ror.org/03yg75p21', 'no_lang_code', 1, 'https://ror.org/03yg75p21 Lely (Netherlands)'), (53327, 'https://ror.org/03yjg7e55', 'en', 1, 'https://ror.org/03yjg7e55 King County Sexual Assault Resource Center'), (53328, 'https://ror.org/03yjna842', 'no_lang_code', 1, 'https://ror.org/03yjna842 Tecumseh Products (United States)'), (53329, 'https://ror.org/03ynhs115', 'en', 1, 'https://ror.org/03ynhs115 Rocky Mountain Cancer Centers'), (53330, 'https://ror.org/03yqk8w89', 'en', 1, 'https://ror.org/03yqk8w89 Houston Eye Associates'), (53331, 'https://ror.org/03yrpzn89', 'no_lang_code', 1, 'https://ror.org/03yrpzn89 Q2 (United States)'), (53332, 'https://ror.org/03ys3np07', 'en', 1, 'https://ror.org/03ys3np07 California Teachers Association'), (53333, 'https://ror.org/03ytpa045', 'fr', 1, 'https://ror.org/03ytpa045 Centre Hospitalier Henri Laborit'), (53334, 'https://ror.org/03ytq5m12', 'en', 1, 'https://ror.org/03ytq5m12 Microfinance Information Exchange'), (53335, 'https://ror.org/03yxqvr87', 'it', 1, 'https://ror.org/03yxqvr87 Villa Melitta'), (53336, 'https://ror.org/03z0fs548', 'en', 1, 'https://ror.org/03z0fs548 Regional Clinical Research'), (53337, 'https://ror.org/03z222993', 'en', 1, 'https://ror.org/03z222993 Clinic of Hope Clinique de l''Espérance'), (53338, 'https://ror.org/03z28c516', 'no_lang_code', 1, 'https://ror.org/03z28c516 Rio Tinto (Australia)'), (53339, 'https://ror.org/03z3ntn64', 'en', 1, 'https://ror.org/03z3ntn64 Ohio Association of Community Colleges'), (53340, 'https://ror.org/03z462w78', 'no_lang_code', 1, 'https://ror.org/03z462w78 Heckler and Koch (Germany)'), (53341, 'https://ror.org/03z6emt78', 'no_lang_code', 1, 'https://ror.org/03z6emt78 NanoBio (United States)'), (53342, 'https://ror.org/03z7ba880', 'da', 1, 'https://ror.org/03z7ba880 Universitets-Jubilæets Danske Samfund'), (53343, 'https://ror.org/03z8jr008', 'en', 1, 'https://ror.org/03z8jr008 Myelin Project'), (53344, 'https://ror.org/03z8wtt58', 'en', 1, 'https://ror.org/03z8wtt58 Women''s Policy'), (53345, 'https://ror.org/03z9zz970', 'no_lang_code', 1, 'https://ror.org/03z9zz970 Philip Morris International (Switzerland)'), (53346, 'https://ror.org/03zawah80', 'en', 1, 'https://ror.org/03zawah80 Maloney Vision Institute'), (53347, 'https://ror.org/03zb78d54', 'no_lang_code', 1, 'https://ror.org/03zb78d54 Johnson & Johnson (Italy)'), (53348, 'https://ror.org/03zbdkx15', 'en', 1, 'https://ror.org/03zbdkx15 Achievement First'), (53349, 'https://ror.org/03ze5hn40', 'de', 1, 'https://ror.org/03ze5hn40 Bernische Krebsliga'), (53350, 'https://ror.org/03zh2yp19', 'no_lang_code', 1, 'https://ror.org/03zh2yp19 Dexcel Pharma (United Kingdom)'), (53351, 'https://ror.org/03zmx7q49', 'en', 1, 'https://ror.org/03zmx7q49 Dingo Discovery and Research Centre'), (53352, 'https://ror.org/03zmzx398', 'en', 1, 'https://ror.org/03zmzx398 Community Foundation of Elmira Corning and the Finger Lakes'), (53353, 'https://ror.org/03znz6n75', 'no_lang_code', 1, 'https://ror.org/03znz6n75 Jungheinrich (Germany)'), (53354, 'https://ror.org/03zp31h16', 'en', 1, 'https://ror.org/03zp31h16 Acton Institute'), (53355, 'https://ror.org/03zp5py62', 'no_lang_code', 1, 'https://ror.org/03zp5py62 Kion Group (Germany)'), (53356, 'https://ror.org/03zsnc040', 'en', 1, 'https://ror.org/03zsnc040 Khan Academy'), (53357, 'https://ror.org/03ztade89', 'no_lang_code', 1, 'https://ror.org/03ztade89 Patara Pharma (United States)'), (53358, 'https://ror.org/03ztjdh45', 'en', 1, 'https://ror.org/03ztjdh45 Technology Access Foundation'), (53359, 'https://ror.org/03ztzyx54', 'no_lang_code', 1, 'https://ror.org/03ztzyx54 Chiari & Syringomyelia Foundation'), (53360, 'https://ror.org/03zxtf807', 'en', 1, 'https://ror.org/03zxtf807 Andrea and Charles Bronfman Philanthropies'), (53361, 'https://ror.org/03zye6r08', 'no_lang_code', 1, 'https://ror.org/03zye6r08 ORASIS Pharmaceuticals (Israel)'), (53362, 'https://ror.org/03zzhz546', 'en', 1, 'https://ror.org/03zzhz546 Eye Centers Of Florida'), (53363, 'https://ror.org/0400j3f74', 'no_lang_code', 1, 'https://ror.org/0400j3f74 GTx (United States)'), (53364, 'https://ror.org/0401nzk46', 'en', 1, 'https://ror.org/0401nzk46 Nokia Foundation'), (53365, 'https://ror.org/04026h439', 'no_lang_code', 1, 'https://ror.org/04026h439 FluoroPharma Medical (United States)'), (53366, 'https://ror.org/04041s104', 'de', 1, 'https://ror.org/04041s104 Katholisches Klinikum Ruhrgebiet Nord GmbH'), (53367, 'https://ror.org/04058yw12', 'en', 1, 'https://ror.org/04058yw12 Advanced Sleep Medicine Services'), (53368, 'https://ror.org/0405b3553', 'nl', 1, 'https://ror.org/0405b3553 Westfriesgasthuis'), (53369, 'https://ror.org/0405pme07', 'no_lang_code', 1, 'https://ror.org/0405pme07 Quackenworth (United States)'), (53370, 'https://ror.org/04061j496', 'no_lang_code', 1, 'https://ror.org/04061j496 CTS Forex (Canada)'), (53371, 'https://ror.org/04066xx95', 'no_lang_code', 1, 'https://ror.org/04066xx95 ORYX (Germany)'), (53372, 'https://ror.org/040aeyr98', 'no_lang_code', 1, 'https://ror.org/040aeyr98 Dance Biopharm (United States)'), (53373, 'https://ror.org/040apef74', 'no_lang_code', 1, 'https://ror.org/040apef74 Mundipharma (Germany)'), (53374, 'https://ror.org/040at4140', 'en', 1, 'https://ror.org/040at4140 International Federation of Red Cross and Red Crescent Societies'), (53375, 'https://ror.org/040ekv640', 'en', 1, 'https://ror.org/040ekv640 Partnership for Child Health'), (53376, 'https://ror.org/040eybd64', 'en', 1, 'https://ror.org/040eybd64 Movember Foundation'), (53377, 'https://ror.org/040f4cr30', 'de', 1, 'https://ror.org/040f4cr30 Asklepios Klinik Weißenfels'), (53378, 'https://ror.org/040g11437', 'en', 1, 'https://ror.org/040g11437 McGregor Foundation'), (53379, 'https://ror.org/040g15c17', 'pl', 1, 'https://ror.org/040g15c17 Szpital Kliniczny Dzieciątka Jezus'), (53380, 'https://ror.org/040gykh71', 'es', 1, 'https://ror.org/040gykh71 Universidad de Ingeniería y Tecnología University of Engineering & Technology'), (53381, 'https://ror.org/040h02z76', 'no_lang_code', 1, 'https://ror.org/040h02z76 Sanofi (Japan) サノフィ'), (53382, 'https://ror.org/040hddc75', 'en', 1, 'https://ror.org/040hddc75 American Orchid Society'), (53383, 'https://ror.org/040hkyv45', 'no_lang_code', 1, 'https://ror.org/040hkyv45 Hannover Clinical Trial Center (Germany)'), (53384, 'https://ror.org/040j6t342', 'en', 1, 'https://ror.org/040j6t342 Southern Africa Trust'), (53385, 'https://ror.org/040pjdm93', 'no_lang_code', 1, 'https://ror.org/040pjdm93 Creative Technology (Singapore)'), (53386, 'https://ror.org/040q4s353', 'en', 1, 'https://ror.org/040q4s353 Share Our Strength'), (53387, 'https://ror.org/040qqw382', 'en', 1, 'https://ror.org/040qqw382 John Rex Endowment'), (53388, 'https://ror.org/040rmmq69', 'en', 1, 'https://ror.org/040rmmq69 Beyond Batten Disease Foundation'), (53389, 'https://ror.org/040rp5672', 'en', 1, 'https://ror.org/040rp5672 York County Libraries'), (53390, 'https://ror.org/040tqga17', 'no_lang_code', 1, 'https://ror.org/040tqga17 GOAL'), (53391, 'https://ror.org/040w48218', 'en', 1, 'https://ror.org/040w48218 Prichard Committee for Academic Excellence'), (53392, 'https://ror.org/040x3fx63', 'en', 1, 'https://ror.org/040x3fx63 Emergency Medicine Foundation'), (53393, 'https://ror.org/040xe3q33', 'en', 1, 'https://ror.org/040xe3q33 Melville Charitable Trust'), (53394, 'https://ror.org/040xqfw27', 'en', 1, 'https://ror.org/040xqfw27 Community Foundation of Middlesex County'), (53395, 'https://ror.org/040ya8k73', 'sv', 1, 'https://ror.org/040ya8k73 Magnus Bergvalls Stiftelse'), (53396, 'https://ror.org/040ypnf94', 'en', 1, 'https://ror.org/040ypnf94 Westdeutsche Studiengruppe Women‘s Healthcare Group'), (53397, 'https://ror.org/040ysda03', 'en', 1, 'https://ror.org/040ysda03 British Scoliosis Research Foundation'), (53398, 'https://ror.org/040z8fc91', 'en', 1, 'https://ror.org/040z8fc91 Consortium of Christian Relief and Development Associations'), (53399, 'https://ror.org/040zwh478', 'en', 1, 'https://ror.org/040zwh478 European Brain and Behaviour Society'), (53400, 'https://ror.org/04120ay35', 'no_lang_code', 1, 'https://ror.org/04120ay35 eSpark Learning (United States)'), (53401, 'https://ror.org/04121g745', 'en', 1, 'https://ror.org/04121g745 FACE Foundation'), (53402, 'https://ror.org/04134r903', 'en', 1, 'https://ror.org/04134r903 Connected Nation'), (53403, 'https://ror.org/041475e22', 'en', 1, 'https://ror.org/041475e22 Mclean Foundation'), (53404, 'https://ror.org/041567670', 'en', 1, 'https://ror.org/041567670 TRIA Orthopaedic Center'), (53405, 'https://ror.org/0415kd025', 'en', 1, 'https://ror.org/0415kd025 ZanaAfrica Group'), (53406, 'https://ror.org/0415kjx40', 'en', 1, 'https://ror.org/0415kjx40 Fund for the Environment & Urban Life'), (53407, 'https://ror.org/041710805', 'no_lang_code', 1, 'https://ror.org/041710805 Pierre Fabre (Germany)'), (53408, 'https://ror.org/0417n8r23', 'en', 1, 'https://ror.org/0417n8r23 Casio Science Promotion Foundation カシオ科学振興財団'), (53409, 'https://ror.org/0418ezk85', 'no_lang_code', 1, 'https://ror.org/0418ezk85 Cardiorentis (Switzerland)'), (53410, 'https://ror.org/04198sg47', 'en', 1, 'https://ror.org/04198sg47 Akiyama Life Science Foundation 秋山記念生命科学振興財団'), (53411, 'https://ror.org/0419jw418', 'en', 1, 'https://ror.org/0419jw418 Greater Pittsburgh Orthopaedic Associates'), (53412, 'https://ror.org/041an6061', 'pl', 1, 'https://ror.org/041an6061 Uroczysko'), (53413, 'https://ror.org/041bkd737', 'en', 1, 'https://ror.org/041bkd737 Huai''an City Fourth People''s Hospital 淮安市第四人民医院'), (53414, 'https://ror.org/041dwme31', 'no_lang_code', 1, 'https://ror.org/041dwme31 Shop Vac (United States)'), (53415, 'https://ror.org/041fvw351', 'en', 1, 'https://ror.org/041fvw351 John Randolph Foundation'), (53416, 'https://ror.org/041g1ry61', 'eu', 1, 'https://ror.org/041g1ry61 Onkologikoa'), (53417, 'https://ror.org/041g7jm83', 'it', 1, 'https://ror.org/041g7jm83 Fondazione Umberto Veronesi'); INSERT INTO `rors` VALUES (53418, 'https://ror.org/041g86f21', 'en', 1, 'https://ror.org/041g86f21 Ziauddin Hospital'), (53419, 'https://ror.org/041ktbj76', 'en', 1, 'https://ror.org/041ktbj76 Ural Institute of Cardiology Уральский институт кардиологии'), (53420, 'https://ror.org/041pqtq45', 'no_lang_code', 1, 'https://ror.org/041pqtq45 E.G.O (Germany)'), (53421, 'https://ror.org/041ps8g15', 'en', 1, 'https://ror.org/041ps8g15 Doug Flutie. Jr Foundation for Autism'), (53422, 'https://ror.org/041qfnf56', 'en', 1, 'https://ror.org/041qfnf56 Jacob Randall Foundation for Morquio'), (53423, 'https://ror.org/041r3e346', 'no_lang_code', 1, 'https://ror.org/041r3e346 Accenture (Switzerland)'), (53424, 'https://ror.org/041rv6v55', 'no_lang_code', 1, 'https://ror.org/041rv6v55 Shanghai Chengtou (China)'), (53425, 'https://ror.org/041xgzk22', 'no_lang_code', 1, 'https://ror.org/041xgzk22 DK4'), (53426, 'https://ror.org/041zy7b93', 'en', 1, 'https://ror.org/041zy7b93 American College of Healthcare'), (53427, 'https://ror.org/0421v9x53', 'en', 1, 'https://ror.org/0421v9x53 Median Research Centre'), (53428, 'https://ror.org/04221f920', 'en', 1, 'https://ror.org/04221f920 Gateway for Cancer Research'), (53429, 'https://ror.org/0426jn037', 'en', 1, 'https://ror.org/0426jn037 Education Reform Now'), (53430, 'https://ror.org/04279xj48', 'no_lang_code', 1, 'https://ror.org/04279xj48 Forward Pharma (Germany)'), (53431, 'https://ror.org/0427p8e67', 'en', 1, 'https://ror.org/0427p8e67 Green Lane Research and Educational Fund'), (53432, 'https://ror.org/0427w5y14', 'no_lang_code', 1, 'https://ror.org/0427w5y14 Weber and Weber (Germany)'), (53433, 'https://ror.org/0428xa486', 'en', 1, 'https://ror.org/0428xa486 Tennessee Business Roundtable'), (53434, 'https://ror.org/0428xen39', 'no_lang_code', 1, 'https://ror.org/0428xen39 Astute Medical (United States)'), (53435, 'https://ror.org/042bavh06', 'en', 1, 'https://ror.org/042bavh06 Meridien Research'), (53436, 'https://ror.org/042d2nx10', 'en', 1, 'https://ror.org/042d2nx10 John Cain Foundation'), (53437, 'https://ror.org/042fam363', 'en', 1, 'https://ror.org/042fam363 Innovations for Poverty Action'), (53438, 'https://ror.org/042fgte34', 'en', 1, 'https://ror.org/042fgte34 Arkansas Community Foundation'), (53439, 'https://ror.org/042h3mz57', 'en', 1, 'https://ror.org/042h3mz57 Danish Youth Association of Science Ungdommens Naturvidenskabelige Forening'), (53440, 'https://ror.org/042hsjs98', 'en', 1, 'https://ror.org/042hsjs98 Buffalo Psychiatric Center'), (53441, 'https://ror.org/042p27957', 'en', 1, 'https://ror.org/042p27957 Korean American Scholarship Foundation'), (53442, 'https://ror.org/042p3e123', 'en', 1, 'https://ror.org/042p3e123 Society for International Development'), (53443, 'https://ror.org/042p8f284', 'en', 1, 'https://ror.org/042p8f284 Volusia County Public Library'), (53444, 'https://ror.org/042q4th73', 'en', 1, 'https://ror.org/042q4th73 Safe Crossings Foundation'), (53445, 'https://ror.org/042qmp147', 'fr', 1, 'https://ror.org/042qmp147 Agir Pour les Maladies Chroniques'), (53446, 'https://ror.org/042tmw509', 'no_lang_code', 1, 'https://ror.org/042tmw509 NRR Hospital'), (53447, 'https://ror.org/042x0hf72', 'en', 1, 'https://ror.org/042x0hf72 Arkansas State Highway and Transportation Department'), (53448, 'https://ror.org/042xj9h52', 'no_lang_code', 1, 'https://ror.org/042xj9h52 AB2 Bio (Switzerland)'), (53449, 'https://ror.org/042y59x42', 'en', 1, 'https://ror.org/042y59x42 Fertility Care Multan'), (53450, 'https://ror.org/042ywnb68', 'en', 1, 'https://ror.org/042ywnb68 Penda Health'), (53451, 'https://ror.org/0431ax083', 'it', 1, 'https://ror.org/0431ax083 Associazione Italiana Ematologia Oncologia Pediatrica'), (53452, 'https://ror.org/0433rew55', 'de', 1, 'https://ror.org/0433rew55 Doctors at the Skin and Laser Centre Haut- und Lasercentrum Potsdam'), (53453, 'https://ror.org/0435am872', 'en', 1, 'https://ror.org/0435am872 St. Monica Catholic School'), (53454, 'https://ror.org/0435hmt48', 'en', 1, 'https://ror.org/0435hmt48 Hope Happens for Neurological Disorders'), (53455, 'https://ror.org/0436njg64', 'no_lang_code', 1, 'https://ror.org/0436njg64 Politico (United States)'), (53456, 'https://ror.org/043a43z64', 'en', 1, 'https://ror.org/043a43z64 Liuyang City Maternal and Child Health Hospital 浏阳市妇幼保健院'), (53457, 'https://ror.org/043a53k35', 'no_lang_code', 1, 'https://ror.org/043a53k35 Trend Micro (Japan) トレンドマイクロ株式会社'), (53458, 'https://ror.org/043ae3f44', 'en', 1, 'https://ror.org/043ae3f44 Hospital Research Foundation'), (53459, 'https://ror.org/043bb8m89', 'en', 1, 'https://ror.org/043bb8m89 Nephcure Foundation'), (53460, 'https://ror.org/043c07w57', 'en', 1, 'https://ror.org/043c07w57 Kidney Foundation of Central Pennsylvania'), (53461, 'https://ror.org/043d34r22', 'en', 1, 'https://ror.org/043d34r22 Fleming Island Center For Clinical Research'), (53462, 'https://ror.org/043dcpa79', 'en', 1, 'https://ror.org/043dcpa79 Mary E Bivins Foundation'), (53463, 'https://ror.org/043ewr774', 'en', 1, 'https://ror.org/043ewr774 National Eczema Association'), (53464, 'https://ror.org/043kam464', 'no_lang_code', 1, 'https://ror.org/043kam464 Servier (Spain)'), (53465, 'https://ror.org/043rrkc78', 'no_lang_code', 1, 'https://ror.org/043rrkc78 Dr Willmar Schwabe (Germany)'), (53466, 'https://ror.org/043s56e87', 'en', 1, 'https://ror.org/043s56e87 North Carolina Community Foundation'), (53467, 'https://ror.org/043sz6670', 'en', 1, 'https://ror.org/043sz6670 Sinclair Dermatology'), (53468, 'https://ror.org/043t12z55', 'en', 1, 'https://ror.org/043t12z55 National Tay-Sachs and Allied Diseases Association'), (53469, 'https://ror.org/043tgy268', 'en', 1, 'https://ror.org/043tgy268 Campbell Foundation'), (53470, 'https://ror.org/043ttpn32', 'en', 1, 'https://ror.org/043ttpn32 Kresge Foundation'), (53471, 'https://ror.org/043xrn095', 'en', 1, 'https://ror.org/043xrn095 National Equity Project'), (53472, 'https://ror.org/043zrma75', 'en', 1, 'https://ror.org/043zrma75 Richard H. Weisler M.D P.A. and Associates'), (53473, 'https://ror.org/04407hd58', 'no_lang_code', 1, 'https://ror.org/04407hd58 Wabco (Germany)'), (53474, 'https://ror.org/04416zz40', 'en', 1, 'https://ror.org/04416zz40 Scalabrini International Migration Network'), (53475, 'https://ror.org/0442t6705', 'fr', 1, 'https://ror.org/0442t6705 Centre Intégré de Santé et de Services Sociaux des Laurentides'), (53476, 'https://ror.org/0444hc919', 'en', 1, 'https://ror.org/0444hc919 Let it Ripple'), (53477, 'https://ror.org/0446mfw72', 'fr', 1, 'https://ror.org/0446mfw72 Centre Hospitalier de La Rochelle'), (53478, 'https://ror.org/0446qd735', 'en', 1, 'https://ror.org/0446qd735 Jothydev''s Diabetes and Research Center'), (53479, 'https://ror.org/0446qvp04', 'en', 1, 'https://ror.org/0446qvp04 St. Joseph''s Care Group'), (53480, 'https://ror.org/0446x4v61', 'no_lang_code', 1, 'https://ror.org/0446x4v61 Farmalder (Spain)'), (53481, 'https://ror.org/0447s2m06', 'no_lang_code', 1, 'https://ror.org/0447s2m06 Hartmann Group (Germany)'), (53482, 'https://ror.org/0448rch47', 'en', 1, 'https://ror.org/0448rch47 Human Network International'), (53483, 'https://ror.org/044bng944', 'en', 1, 'https://ror.org/044bng944 Nevada Department of Wildlife'), (53484, 'https://ror.org/044dy9v88', 'en', 1, 'https://ror.org/044dy9v88 National Center on Education and the Economy'), (53485, 'https://ror.org/044eeh010', 'no_lang_code', 1, 'https://ror.org/044eeh010 BSH Home Appliances (United States)'), (53486, 'https://ror.org/044fagb96', 'en', 1, 'https://ror.org/044fagb96 Dental Foundation of Oregon'), (53487, 'https://ror.org/044g62j84', 'en', 1, 'https://ror.org/044g62j84 Westover Heights Clinic'), (53488, 'https://ror.org/044j14864', 'en', 1, 'https://ror.org/044j14864 St. Johns Center for Clinical Research'), (53489, 'https://ror.org/044ja2q14', 'en', 1, 'https://ror.org/044ja2q14 Northwest Osteopathic Medical Foundation'), (53490, 'https://ror.org/044k3m707', 'en', 1, 'https://ror.org/044k3m707 Riksförbundet för sexuell upplysning Swedish Association for Sexuality Education'), (53491, 'https://ror.org/044nb3d45', 'en', 1, 'https://ror.org/044nb3d45 National Genealogical Society'), (53492, 'https://ror.org/044pnsw08', 'no_lang_code', 1, 'https://ror.org/044pnsw08 Cidara Therapeutics (United States)'), (53493, 'https://ror.org/044pwvv43', 'en', 1, 'https://ror.org/044pwvv43 American Society of Pediatric Nephrology'), (53494, 'https://ror.org/044qh7c61', 'en', 1, 'https://ror.org/044qh7c61 Good Samaritan Regional Medical Center'), (53495, 'https://ror.org/044qnzq83', 'en', 1, 'https://ror.org/044qnzq83 Czech Womens Lobby Česká ženská lobby'), (53496, 'https://ror.org/044r8mj16', 'en', 1, 'https://ror.org/044r8mj16 Myer Foundation'), (53497, 'https://ror.org/044v7sq39', 'en', 1, 'https://ror.org/044v7sq39 NEA Foundation'), (53498, 'https://ror.org/044xgn791', 'en', 1, 'https://ror.org/044xgn791 Lupina Foundation'), (53499, 'https://ror.org/044ynya14', 'en', 1, 'https://ror.org/044ynya14 Grant Healthcare Foundation'), (53500, 'https://ror.org/04517sd05', 'es', 1, 'https://ror.org/04517sd05 Hospital General Universitario Los Arcos del Mar Menor'), (53501, 'https://ror.org/0451cv982', 'en', 1, 'https://ror.org/0451cv982 Delta Dental Plans Association'), (53502, 'https://ror.org/0451ek747', 'de', 1, 'https://ror.org/0451ek747 Deutsche Homöopathie-Union'), (53503, 'https://ror.org/04541bn34', 'en', 1, 'https://ror.org/04541bn34 Nova Scotia Provincial Library'), (53504, 'https://ror.org/0454qd124', 'no_lang_code', 1, 'https://ror.org/0454qd124 Kanzaki (Japan)'), (53505, 'https://ror.org/0456zgq34', 'en', 1, 'https://ror.org/0456zgq34 Reprogenetics'), (53506, 'https://ror.org/0457mvc71', 'en', 1, 'https://ror.org/0457mvc71 Children''s Hospital of Illinois'), (53507, 'https://ror.org/045952971', 'en', 1, 'https://ror.org/045952971 Rajiv Gandhi Charitable Trust'), (53508, 'https://ror.org/045bk1a41', 'fr', 1, 'https://ror.org/045bk1a41 Fondation du CHUM'), (53509, 'https://ror.org/045czd036', 'en', 1, 'https://ror.org/045czd036 Horizon Foundation'), (53510, 'https://ror.org/045d26a95', 'no_lang_code', 1, 'https://ror.org/045d26a95 Candofilm (Denmark)'), (53511, 'https://ror.org/045e0dn59', 'en', 1, 'https://ror.org/045e0dn59 Migraine Research Foundation'), (53512, 'https://ror.org/045ekgn88', 'en', 1, 'https://ror.org/045ekgn88 Retina Health Center'), (53513, 'https://ror.org/045frfm13', 'no_lang_code', 1, 'https://ror.org/045frfm13 Stealth BioTherapeutics (United States)'), (53514, 'https://ror.org/045ggm846', 'en', 1, 'https://ror.org/045ggm846 Cystinosis Research Foundation'), (53515, 'https://ror.org/045gvx431', 'en', 1, 'https://ror.org/045gvx431 Huisking Foundation'), (53516, 'https://ror.org/045hr9t97', 'en', 1, 'https://ror.org/045hr9t97 American Occupational Therapy Foundation'), (53517, 'https://ror.org/045jy5f81', 'no_lang_code', 1, 'https://ror.org/045jy5f81 Littelfuse (United States)'), (53518, 'https://ror.org/045kh6832', 'no_lang_code', 1, 'https://ror.org/045kh6832 Ogeda (Belgium)'), (53519, 'https://ror.org/045ns1x37', 'en', 1, 'https://ror.org/045ns1x37 Cancer Treatment Centers of America'), (53520, 'https://ror.org/045rc6f24', 'it', 1, 'https://ror.org/045rc6f24 Fondazione Antonio Carlo Monzino'), (53521, 'https://ror.org/045rsk983', 'no_lang_code', 1, 'https://ror.org/045rsk983 Karl Mayer (Germany)'), (53522, 'https://ror.org/045wjte67', 'no_lang_code', 1, 'https://ror.org/045wjte67 Amgen (Switzerland)'), (53523, 'https://ror.org/045x9vk13', 'no_lang_code', 1, 'https://ror.org/045x9vk13 Anergis (Switzerland)'), (53524, 'https://ror.org/045xnj057', 'no_lang_code', 1, 'https://ror.org/045xnj057 J&S Studies'), (53525, 'https://ror.org/045zhv531', 'en', 1, 'https://ror.org/045zhv531 Summit Research Network'), (53526, 'https://ror.org/04606tc02', 'en', 1, 'https://ror.org/04606tc02 IVI Madrid Clinic'), (53527, 'https://ror.org/0460qsp30', 'fr', 1, 'https://ror.org/0460qsp30 Fondation Max van Berchem'), (53528, 'https://ror.org/046185q66', 'en', 1, 'https://ror.org/046185q66 Center for the Study of Technology and Society'), (53529, 'https://ror.org/04631ba92', 'en', 1, 'https://ror.org/04631ba92 Garrett B Smith Foundation'), (53530, 'https://ror.org/0463yr287', 'en', 1, 'https://ror.org/0463yr287 Annie E. Casey Foundation'), (53531, 'https://ror.org/04663jx74', 'en', 1, 'https://ror.org/04663jx74 College Station Medical Center'), (53532, 'https://ror.org/0466fze31', 'en', 1, 'https://ror.org/0466fze31 Real Impact Analytics'), (53533, 'https://ror.org/0466zjn24', 'en', 1, 'https://ror.org/0466zjn24 Lawrence T. & Janet T. Dee Foundation'), (53534, 'https://ror.org/04676kj64', 'no_lang_code', 1, 'https://ror.org/04676kj64 Providence Service Corporation (United States)'), (53535, 'https://ror.org/0468zt688', 'es', 1, 'https://ror.org/0468zt688 Unidad de Cirugía Cardiovascular de Guatemala'), (53536, 'https://ror.org/046a53p69', 'en', 1, 'https://ror.org/046a53p69 Alexia Foundation'), (53537, 'https://ror.org/046aqw930', 'en', 1, 'https://ror.org/046aqw930 Pakistan Institute of Learning and Living'), (53538, 'https://ror.org/046d56591', 'en', 1, 'https://ror.org/046d56591 Carolina Clinical Research Services'), (53539, 'https://ror.org/046epvs68', 'en', 1, 'https://ror.org/046epvs68 Direction Générale Justice et Consommateurs Directorate-General for Justice and Consumers Generaldirektion Justiz und Verbraucher'), (53540, 'https://ror.org/046f99n88', 'es', 1, 'https://ror.org/046f99n88 Fundación Kovacs'), (53541, 'https://ror.org/046jw6530', 'en', 1, 'https://ror.org/046jw6530 Green Dot Public Schools'), (53542, 'https://ror.org/046keqp87', 'en', 1, 'https://ror.org/046keqp87 Jacques and Gloria Gossweiler Foundation Jacques und Gloria Gossweiler - Stiftung'), (53543, 'https://ror.org/046mfxt70', 'en', 1, 'https://ror.org/046mfxt70 Global Foundation for Peroxisomal Disorders'), (53544, 'https://ror.org/046pxzs49', 'en', 1, 'https://ror.org/046pxzs49 Outward Bound'), (53545, 'https://ror.org/046syc687', 'en', 1, 'https://ror.org/046syc687 Rockwood Clinic'), (53546, 'https://ror.org/046vm5p14', 'en', 1, 'https://ror.org/046vm5p14 Oncology Specialists'), (53547, 'https://ror.org/046vzvy73', 'it', 1, 'https://ror.org/046vzvy73 Trials Italiani in Oncologia Medica'), (53548, 'https://ror.org/046wx6811', 'en', 1, 'https://ror.org/046wx6811 International Education Research Foundation'), (53549, 'https://ror.org/046xmah45', 'no_lang_code', 1, 'https://ror.org/046xmah45 Plastic Omnium (Belgium)'), (53550, 'https://ror.org/046xvb515', 'pl', 1, 'https://ror.org/046xvb515 Białowieski Park Narodowy, Białowieża National Park'), (53551, 'https://ror.org/046xy0k58', 'en', 1, 'https://ror.org/046xy0k58 NIHR Wellcome Trust Southampton Clinical Research Facility'), (53552, 'https://ror.org/046ybfk04', 'en', 1, 'https://ror.org/046ybfk04 Pennsylvania Partnerships for Children'), (53553, 'https://ror.org/046z18h28', 'en', 1, 'https://ror.org/046z18h28 Mount Carmel East'), (53554, 'https://ror.org/046zf8j85', 'en', 1, 'https://ror.org/046zf8j85 Skin Care and Laser Physicians of Beverly Hills'), (53555, 'https://ror.org/046zgtw08', 'no_lang_code', 1, 'https://ror.org/046zgtw08 Norgine (United Kingdom)'), (53556, 'https://ror.org/0470nty22', 'en', 1, 'https://ror.org/0470nty22 Albert and Margaret Alkek Foundation'), (53557, 'https://ror.org/04724jg08', 'no_lang_code', 1, 'https://ror.org/04724jg08 Leggett and Platt (United States)'), (53558, 'https://ror.org/0472fnh69', 'sv', 1, 'https://ror.org/0472fnh69 Mora lasarett'), (53559, 'https://ror.org/0472hmc50', 'en', 1, 'https://ror.org/0472hmc50 CLL Global Research Foundation'), (53560, 'https://ror.org/0473gwd77', 'no_lang_code', 1, 'https://ror.org/0473gwd77 Ensinger Mineral-Heilquellen (Germany)'), (53561, 'https://ror.org/0473srk52', 'no_lang_code', 1, 'https://ror.org/0473srk52 Ifm electronic (Germany)'), (53562, 'https://ror.org/0476a5k06', 'en', 1, 'https://ror.org/0476a5k06 CliniRx Tangent Research'), (53563, 'https://ror.org/04777gb96', 'no_lang_code', 1, 'https://ror.org/04777gb96 Avraham Pharmaceuticals (Israel)'), (53564, 'https://ror.org/0479btw97', 'no_lang_code', 1, 'https://ror.org/0479btw97 Zambon (Spain)'), (53565, 'https://ror.org/0479hmr04', 'en', 1, 'https://ror.org/0479hmr04 Pennsylvania Chamber of Business and Industry'), (53566, 'https://ror.org/047a10n20', 'en', 1, 'https://ror.org/047a10n20 Muskingum County Community Foundation'), (53567, 'https://ror.org/047bhz389', 'no_lang_code', 1, 'https://ror.org/047bhz389 MDS Associates (United States)'), (53568, 'https://ror.org/047bn1w15', 'en', 1, 'https://ror.org/047bn1w15 World Health Organization - Pakistan'), (53569, 'https://ror.org/047c69t88', 'en', 1, 'https://ror.org/047c69t88 Texas ENT and Allergy'), (53570, 'https://ror.org/047drby29', 'no_lang_code', 1, 'https://ror.org/047drby29 AfricaBio'), (53571, 'https://ror.org/047dt4g31', 'no_lang_code', 1, 'https://ror.org/047dt4g31 Meidensha (Japan) 明電舎株式会社'), (53572, 'https://ror.org/047dw3k85', 'en', 1, 'https://ror.org/047dw3k85 Dermatology Associates of Seattle'), (53573, 'https://ror.org/047h3xn06', 'no_lang_code', 1, 'https://ror.org/047h3xn06 Datastat'), (53574, 'https://ror.org/047kfm164', 'no_lang_code', 1, 'https://ror.org/047kfm164 Dräxlmaier (Germany)'), (53575, 'https://ror.org/047masv79', 'en', 1, 'https://ror.org/047masv79 Georgia Forestry Association'), (53576, 'https://ror.org/047n17w18', 'nl', 1, 'https://ror.org/047n17w18 Vredeseilanden'), (53577, 'https://ror.org/047qggy27', 'no_lang_code', 1, 'https://ror.org/047qggy27 Sacmi (Italy)'), (53578, 'https://ror.org/047sc8865', 'en', 1, 'https://ror.org/047sc8865 Memorial Foundation for Jewish Culture'), (53579, 'https://ror.org/047svmk39', 'no_lang_code', 1, 'https://ror.org/047svmk39 Trio Medicines (United Kingdom)'), (53580, 'https://ror.org/047tmvg79', 'en', 1, 'https://ror.org/047tmvg79 American Association of Equine Practitioners'), (53581, 'https://ror.org/047v0da79', 'en', 1, 'https://ror.org/047v0da79 Denver Arthritis Clinic'), (53582, 'https://ror.org/047vk1j69', 'en', 1, 'https://ror.org/047vk1j69 Microfinance Opportunities'), (53583, 'https://ror.org/047vwpj87', 'en', 1, 'https://ror.org/047vwpj87 Third Way'), (53584, 'https://ror.org/047wq3n50', 'fr', 1, 'https://ror.org/047wq3n50 Clinique Ambroise Paré'), (53585, 'https://ror.org/047y7vc85', 'fr', 1, 'https://ror.org/047y7vc85 Centre de Recherche Dermatologique du Québec Métropolitain'), (53586, 'https://ror.org/047y84421', 'en', 1, 'https://ror.org/047y84421 Medex Healthcare Research'), (53587, 'https://ror.org/047yek725', 'en', 1, 'https://ror.org/047yek725 Dermatology Specialists'), (53588, 'https://ror.org/047z1nr02', 'no_lang_code', 1, 'https://ror.org/047z1nr02 Mesoestetic Pharma (Spain)'), (53589, 'https://ror.org/047z1sn15', 'en', 1, 'https://ror.org/047z1sn15 National Association of Charter School Authorizers'), (53590, 'https://ror.org/0480rd080', 'it', 1, 'https://ror.org/0480rd080 Azienda Unità Sanitaria Locale Rimini'), (53591, 'https://ror.org/04815fk53', 'no_lang_code', 1, 'https://ror.org/04815fk53 Motif BioSciences (United States)'), (53592, 'https://ror.org/04824wb15', 'en', 1, 'https://ror.org/04824wb15 Picker Institute Europe'), (53593, 'https://ror.org/0482m7054', 'en', 1, 'https://ror.org/0482m7054 Esther B. Kahn Charitable Foundation'), (53594, 'https://ror.org/0483shy91', 'en', 1, 'https://ror.org/0483shy91 Bruner Foundation'), (53595, 'https://ror.org/0486db050', 'no_lang_code', 1, 'https://ror.org/0486db050 Innovaderm (Canada)'), (53596, 'https://ror.org/04873vb58', 'en', 1, 'https://ror.org/04873vb58 Lynch Foundation'), (53597, 'https://ror.org/0487pzw37', 'en', 1, 'https://ror.org/0487pzw37 Butz Foundation'), (53598, 'https://ror.org/048830f73', 'no_lang_code', 1, 'https://ror.org/048830f73 Tetraphase Pharmaceuticals (United States)'), (53599, 'https://ror.org/048as6j09', 'en', 1, 'https://ror.org/048as6j09 Urology Team'), (53600, 'https://ror.org/048b5rj23', 'en', 1, 'https://ror.org/048b5rj23 Sacramento Public Library'), (53601, 'https://ror.org/048g79687', 'en', 1, 'https://ror.org/048g79687 Wild Sheep Foundation'), (53602, 'https://ror.org/048gafz17', 'en', 1, 'https://ror.org/048gafz17 Ear Medical Group'), (53603, 'https://ror.org/048gjaw83', 'no_lang_code', 1, 'https://ror.org/048gjaw83 Craft Technologies (United States)'), (53604, 'https://ror.org/048h18548', 'en', 1, 'https://ror.org/048h18548 Gheens Foundation'), (53605, 'https://ror.org/048htbx03', 'no_lang_code', 1, 'https://ror.org/048htbx03 Sandvik (Finland)'), (53606, 'https://ror.org/048jha534', 'en', 1, 'https://ror.org/048jha534 Hillcrest Family Practice'), (53607, 'https://ror.org/048ndg477', 'no_lang_code', 1, 'https://ror.org/048ndg477 Khanyisa Projects'), (53608, 'https://ror.org/048qnxy85', 'en', 1, 'https://ror.org/048qnxy85 Pulmonary Associates'), (53609, 'https://ror.org/048ty4d76', 'en', 1, 'https://ror.org/048ty4d76 Christie''s Place'), (53610, 'https://ror.org/048vh5r70', 'en', 1, 'https://ror.org/048vh5r70 Civil Society Legislative Advocacy Centre'), (53611, 'https://ror.org/048w9nb20', 'en', 1, 'https://ror.org/048w9nb20 BlueCross BlueShield of South Carolina Foundation'), (53612, 'https://ror.org/048yb3886', 'en', 1, 'https://ror.org/048yb3886 Iris & B. Gerald Cantor Foundation'), (53613, 'https://ror.org/0491edy94', 'no_lang_code', 1, 'https://ror.org/0491edy94 Asarina Pharma (Sweden)'), (53614, 'https://ror.org/04929g954', 'en', 1, 'https://ror.org/04929g954 Minnesota Colon and Rectal Foundation'), (53615, 'https://ror.org/0495w3f17', 'en', 1, 'https://ror.org/0495w3f17 Dabas aizsardzības pārvalde Nature Conservation Agency'), (53616, 'https://ror.org/0496g2a89', 'en', 1, 'https://ror.org/0496g2a89 America’s Job Center of California'), (53617, 'https://ror.org/0497n8p79', 'en', 1, 'https://ror.org/0497n8p79 Acrobatiq'), (53618, 'https://ror.org/0498rx510', 'fr', 1, 'https://ror.org/0498rx510 Clinique Les Fontaines'), (53619, 'https://ror.org/0499qpt59', 'en', 1, 'https://ror.org/0499qpt59 Joyce Foundation'), (53620, 'https://ror.org/049a8xm46', 'no_lang_code', 1, 'https://ror.org/049a8xm46 Takeda (Belgium)'), (53621, 'https://ror.org/049ag6g97', 'no_lang_code', 1, 'https://ror.org/049ag6g97 GWT-TUD (Germany)'), (53622, 'https://ror.org/049c2z606', 'en', 1, 'https://ror.org/049c2z606 National Center for State Courts'), (53623, 'https://ror.org/049d1sc04', 'en', 1, 'https://ror.org/049d1sc04 Express TV Production'), (53624, 'https://ror.org/049f4wb20', 'no_lang_code', 1, 'https://ror.org/049f4wb20 Boiron (France)'), (53625, 'https://ror.org/049fdpz48', 'no_lang_code', 1, 'https://ror.org/049fdpz48 Betagenon (Sweden)'), (53626, 'https://ror.org/049fh2r80', 'en', 1, 'https://ror.org/049fh2r80 Multiple Sclerosis Foundation'), (53627, 'https://ror.org/049fn9384', 'en', 1, 'https://ror.org/049fn9384 Brad Kamisky Foundation'), (53628, 'https://ror.org/049h4jd15', 'no_lang_code', 1, 'https://ror.org/049h4jd15 Biocon (Switzerland)'), (53629, 'https://ror.org/049kdc638', 'no_lang_code', 1, 'https://ror.org/049kdc638 MaxLinear (United States)'), (53630, 'https://ror.org/049nmq981', 'no_lang_code', 1, 'https://ror.org/049nmq981 Ziarco (United Kingdom)'), (53631, 'https://ror.org/049pr8275', 'no_lang_code', 1, 'https://ror.org/049pr8275 AZAD Pharma (Switzerland)'), (53632, 'https://ror.org/049q63233', 'en', 1, 'https://ror.org/049q63233 Goldman Philanthropic Partnerships'), (53633, 'https://ror.org/049q7ka57', 'en', 1, 'https://ror.org/049q7ka57 Institute for College Access and Success'), (53634, 'https://ror.org/049r37a68', 'en', 1, 'https://ror.org/049r37a68 Center for Financial Services Innovation'), (53635, 'https://ror.org/049rcsq44', 'no_lang_code', 1, 'https://ror.org/049rcsq44 JNC (Japan)'), (53636, 'https://ror.org/049seyn76', 'en', 1, 'https://ror.org/049seyn76 Pan-Mass Challenge'), (53637, 'https://ror.org/049tdwn96', 'en', 1, 'https://ror.org/049tdwn96 Beijing NGO Association for International Exchanges 北京市民间组织国际交流协会'), (53638, 'https://ror.org/049zk2110', 'es', 1, 'https://ror.org/049zk2110 Centro de Retina Médica y Quirúrgica'), (53639, 'https://ror.org/049zxm836', 'sv', 1, 'https://ror.org/049zxm836 IngaBritt och Arne Lundbergs Forskningsstiftelse'), (53640, 'https://ror.org/04a1a4n63', 'en', 1, 'https://ror.org/04a1a4n63 Alfried Krupp Hospital Alfried Krupp Krankenhaus'), (53641, 'https://ror.org/04a2ksf56', 'en', 1, 'https://ror.org/04a2ksf56 New England Institute for Neurology and Headache'), (53642, 'https://ror.org/04a2qqf85', 'no_lang_code', 1, 'https://ror.org/04a2qqf85 Bird Technologies (United States)'), (53643, 'https://ror.org/04a307s36', 'no_lang_code', 1, 'https://ror.org/04a307s36 Kobelco Construction Machinery (Japan)'), (53644, 'https://ror.org/04a6f9g28', 'en', 1, 'https://ror.org/04a6f9g28 Comanis Foundation'), (53645, 'https://ror.org/04a8xgx67', 'en', 1, 'https://ror.org/04a8xgx67 Mercy Corps'), (53646, 'https://ror.org/04ad3ke38', 'de', 1, 'https://ror.org/04ad3ke38 Fazit-Stiftung'), (53647, 'https://ror.org/04ad8nm85', 'en', 1, 'https://ror.org/04ad8nm85 Davis Phinney Foundation'), (53648, 'https://ror.org/04af3ta68', 'en', 1, 'https://ror.org/04af3ta68 Executive Environment Agency'), (53649, 'https://ror.org/04agh5288', 'de', 1, 'https://ror.org/04agh5288 Unfallkrankenhaus Salzburg'), (53650, 'https://ror.org/04agzm654', 'en', 1, 'https://ror.org/04agzm654 Oyster Point Family Health Center'), (53651, 'https://ror.org/04ak1xq87', 'en', 1, 'https://ror.org/04ak1xq87 Kent Richard Hofmann Foundation'), (53652, 'https://ror.org/04ak25x77', 'en', 1, 'https://ror.org/04ak25x77 ChadTough Foundation'), (53653, 'https://ror.org/04amy1e98', 'en', 1, 'https://ror.org/04amy1e98 Northwest Territories Public Library Services'), (53654, 'https://ror.org/04aphzs78', 'en', 1, 'https://ror.org/04aphzs78 Fellowship Fund Inc'), (53655, 'https://ror.org/04ax0gn06', 'no_lang_code', 1, 'https://ror.org/04ax0gn06 ARaymond (France)'), (53656, 'https://ror.org/04ay6am55', 'en', 1, 'https://ror.org/04ay6am55 Human Rights Foundation'), (53657, 'https://ror.org/04aydb922', 'en', 1, 'https://ror.org/04aydb922 Oikos – Cooperation and Development Oikos – Cooperação e Desenvolvimento'), (53658, 'https://ror.org/04ayhcb48', 'en', 1, 'https://ror.org/04ayhcb48 World Federation of Public Health Associations'), (53659, 'https://ror.org/04aztm043', 'en', 1, 'https://ror.org/04aztm043 Wyndhurst Counseling Center'), (53660, 'https://ror.org/04b0her22', 'nl', 1, 'https://ror.org/04b0her22 AZ Delta'), (53661, 'https://ror.org/04b3sca92', 'en', 1, 'https://ror.org/04b3sca92 American Society of Health Economists'), (53662, 'https://ror.org/04b3xdy64', 'en', 1, 'https://ror.org/04b3xdy64 Redwood Family Dermatology'), (53663, 'https://ror.org/04b5h9x78', 'no_lang_code', 1, 'https://ror.org/04b5h9x78 AMO Pharma (United Kingdom)'), (53664, 'https://ror.org/04b6a1666', 'en', 1, 'https://ror.org/04b6a1666 Fionia Fond'), (53665, 'https://ror.org/04b6ed127', 'en', 1, 'https://ror.org/04b6ed127 National Association for the Education of Young Children'), (53666, 'https://ror.org/04b8vmp10', 'en', 1, 'https://ror.org/04b8vmp10 Jæren District Psychiatric Centre Jæren distriktspsykiatriske senter'), (53667, 'https://ror.org/04b8zcj45', 'no_lang_code', 1, 'https://ror.org/04b8zcj45 Roche (Spain)'), (53668, 'https://ror.org/04ba8k254', 'no_lang_code', 1, 'https://ror.org/04ba8k254 Viessmann (Germany)'), (53669, 'https://ror.org/04bbmzr50', 'en', 1, 'https://ror.org/04bbmzr50 International Development Enterprises'), (53670, 'https://ror.org/04bc0kj52', 'en', 1, 'https://ror.org/04bc0kj52 Fujiwara Natural History Foundation 藤原自然歴史財団'), (53671, 'https://ror.org/04bda0170', 'en', 1, 'https://ror.org/04bda0170 Chinese People ''s Liberation Army No. 85 Hospital 第85医院'), (53672, 'https://ror.org/04bdk6464', 'no_lang_code', 1, 'https://ror.org/04bdk6464 Astellas Pharma (Germany)'), (53673, 'https://ror.org/04befzh73', 'no_lang_code', 1, 'https://ror.org/04befzh73 African Fertilizer and Agribusiness Partnership'), (53674, 'https://ror.org/04bekvf09', 'en', 1, 'https://ror.org/04bekvf09 Community Research Initiative'), (53675, 'https://ror.org/04bfv0919', 'en', 1, 'https://ror.org/04bfv0919 Tower Cancer Research Foundation'), (53676, 'https://ror.org/04bjtaq20', 'en', 1, 'https://ror.org/04bjtaq20 British Society For Parasitology'), (53677, 'https://ror.org/04bkwvr55', 'en', 1, 'https://ror.org/04bkwvr55 National Foundation for the Deaf'), (53678, 'https://ror.org/04bkyn088', 'en', 1, 'https://ror.org/04bkyn088 Imaging the World'), (53679, 'https://ror.org/04bn2q369', 'no_lang_code', 1, 'https://ror.org/04bn2q369 Smiths Group (United States)'), (53680, 'https://ror.org/04bp98c14', 'no_lang_code', 1, 'https://ror.org/04bp98c14 Oncopeptides (Sweden)'), (53681, 'https://ror.org/04bpt8p43', 'en', 1, 'https://ror.org/04bpt8p43 Shenzhen Luohu People''s Hospital 深圳罗湖区人民医院'), (53682, 'https://ror.org/04bpvbv63', 'en', 1, 'https://ror.org/04bpvbv63 First Fruit'), (53683, 'https://ror.org/04br7va83', 'en', 1, 'https://ror.org/04br7va83 KIPP LA Schools'), (53684, 'https://ror.org/04bre5f76', 'en', 1, 'https://ror.org/04bre5f76 Invergowrie Foundation'), (53685, 'https://ror.org/04btcdy83', 'en', 1, 'https://ror.org/04btcdy83 American Association of Plastic Surgeons'), (53686, 'https://ror.org/04btebx51', 'pl', 1, 'https://ror.org/04btebx51 Centrum Aktywności Społecznej Pryzmat'), (53687, 'https://ror.org/04bv91s44', 'no_lang_code', 1, 'https://ror.org/04bv91s44 Alfa Wassermann (Poland)'), (53688, 'https://ror.org/04bvnf226', 'pl', 1, 'https://ror.org/04bvnf226 Samodzielny Publiczny Zakład Opieki Zdrowotnej w Lubartowie'), (53689, 'https://ror.org/04bx5yd89', 'en', 1, 'https://ror.org/04bx5yd89 Water Sanitation and Hygiene Institute'), (53690, 'https://ror.org/04bxj6908', 'no_lang_code', 1, 'https://ror.org/04bxj6908 SleepMed'), (53691, 'https://ror.org/04bxnbd97', 'en', 1, 'https://ror.org/04bxnbd97 IVI Sevilla Clinic'), (53692, 'https://ror.org/04byqhw79', 'no_lang_code', 1, 'https://ror.org/04byqhw79 Kuros Biosciences (Switzerland)'), (53693, 'https://ror.org/04c3fxx05', 'en', 1, 'https://ror.org/04c3fxx05 Christopher Ricardo Cystic Fibrosis Foundation'), (53694, 'https://ror.org/04c3ke011', 'en', 1, 'https://ror.org/04c3ke011 Youth Leadership Institute'), (53695, 'https://ror.org/04c4s9b25', 'en', 1, 'https://ror.org/04c4s9b25 Seattle Center Foundation'), (53696, 'https://ror.org/04c5m1z45', 'no_lang_code', 1, 'https://ror.org/04c5m1z45 Diomed (United Kingdom)'), (53697, 'https://ror.org/04c8t3f61', 'en', 1, 'https://ror.org/04c8t3f61 Foundation Milena Carvajal - Pro-Kartagener'), (53698, 'https://ror.org/04c9vvv38', 'en', 1, 'https://ror.org/04c9vvv38 Collins Medical Trust'), (53699, 'https://ror.org/04caf4057', 'no_lang_code', 1, 'https://ror.org/04caf4057 Frontier Environmental Technology (United States)'), (53700, 'https://ror.org/04cb0cm64', 'pl', 1, 'https://ror.org/04cb0cm64 Wojewódzki Szpital Obserwacyjno-Zakaźny im. Tadeusza Browicza w Bydgoszczy'), (53701, 'https://ror.org/04cc1bd73', 'en', 1, 'https://ror.org/04cc1bd73 Jeffrey Modell Foundation'), (53702, 'https://ror.org/04ccc4h18', 'en', 1, 'https://ror.org/04ccc4h18 Wajir County Government'), (53703, 'https://ror.org/04cext840', 'en', 1, 'https://ror.org/04cext840 Arizona Heart Hospital'), (53704, 'https://ror.org/04cf6r544', 'en', 1, 'https://ror.org/04cf6r544 Mayday Fund'), (53705, 'https://ror.org/04cg7vv67', 'en', 1, 'https://ror.org/04cg7vv67 Innovation Center Denmark'), (53706, 'https://ror.org/04cjdmd14', 'de', 1, 'https://ror.org/04cjdmd14 Grachtenhaus-Apotheke'), (53707, 'https://ror.org/04ck29617', 'no_lang_code', 1, 'https://ror.org/04ck29617 GN Store Nord (Denmark)'), (53708, 'https://ror.org/04cne0906', 'en', 1, 'https://ror.org/04cne0906 Sacramento County Office of Education'), (53709, 'https://ror.org/04cnxht64', 'en', 1, 'https://ror.org/04cnxht64 Grass Foundation'), (53710, 'https://ror.org/04cnyg561', 'en', 1, 'https://ror.org/04cnyg561 Adult Anxiety Clinic of Temple'), (53711, 'https://ror.org/04cpe0x97', 'en', 1, 'https://ror.org/04cpe0x97 BMI Foundation'), (53712, 'https://ror.org/04cqcf577', 'en', 1, 'https://ror.org/04cqcf577 Small Enterprise Education and Promotion Network'), (53713, 'https://ror.org/04cr37s66', 'nl', 1, 'https://ror.org/04cr37s66 Borstkanker Onderzoek Groep'), (53714, 'https://ror.org/04ct6nr93', 'en', 1, 'https://ror.org/04ct6nr93 Innovations for Poverty Action'), (53715, 'https://ror.org/04cv1dy58', 'no_lang_code', 1, 'https://ror.org/04cv1dy58 Maire Tecnimont (Netherlands)'), (53716, 'https://ror.org/04cy3qv12', 'en', 1, 'https://ror.org/04cy3qv12 Connecticut Health Foundation'), (53717, 'https://ror.org/04cypcj54', 'en', 1, 'https://ror.org/04cypcj54 Red Cross Society of China 中国红十字会'), (53718, 'https://ror.org/04d00t593', 'en', 1, 'https://ror.org/04d00t593 Irish Hospice Foundation'), (53719, 'https://ror.org/04d1vhw60', 'en', 1, 'https://ror.org/04d1vhw60 Rongcheng City People''s Hospital 荣成人民医院'), (53720, 'https://ror.org/04d29kk52', 'en', 1, 'https://ror.org/04d29kk52 Academy of Architecture for Health Foundation'), (53721, 'https://ror.org/04d4fer41', 'en', 1, 'https://ror.org/04d4fer41 Parkinson''s Queensland'), (53722, 'https://ror.org/04d8ddk13', 'no_lang_code', 1, 'https://ror.org/04d8ddk13 ProMOS Technologies (Taiwan)'), (53723, 'https://ror.org/04d9k7p50', 'en', 1, 'https://ror.org/04d9k7p50 Genesis HealthCare'), (53724, 'https://ror.org/04dagjw98', 'en', 1, 'https://ror.org/04dagjw98 Felix Scholarship'), (53725, 'https://ror.org/04db0ec72', 'fr', 1, 'https://ror.org/04db0ec72 Groupe Francophone des Myélodysplasies'), (53726, 'https://ror.org/04dbf1y97', 'en', 1, 'https://ror.org/04dbf1y97 Bratya Daskalovi Municipality Община Братя Даскалови'), (53727, 'https://ror.org/04dbfz605', 'en', 1, 'https://ror.org/04dbfz605 Educational Foundation for Women in Accounting'), (53728, 'https://ror.org/04dchsd96', 'en', 1, 'https://ror.org/04dchsd96 Institutul Român de Ştiinţă şi Tehnologie Romanian Institute of Science and Technology'), (53729, 'https://ror.org/04ddjg212', 'en', 1, 'https://ror.org/04ddjg212 Jewish Child & Family Services'), (53730, 'https://ror.org/04dm2wt12', 'en', 1, 'https://ror.org/04dm2wt12 Northwest Parkinson’s Foundation'), (53731, 'https://ror.org/04dneqm75', 'de', 1, 'https://ror.org/04dneqm75 Augenklinik Universitätsallee'), (53732, 'https://ror.org/04dqbhd05', 'en', 1, 'https://ror.org/04dqbhd05 Oprah''s Angel Network'), (53733, 'https://ror.org/04dr1y470', 'no_lang_code', 1, 'https://ror.org/04dr1y470 Welch Allyn (United States)'), (53734, 'https://ror.org/04dyest60', 'no_lang_code', 1, 'https://ror.org/04dyest60 Moulinex (France)'), (53735, 'https://ror.org/04dywym46', 'es', 1, 'https://ror.org/04dywym46 Fundación Hospital Provincial de Castellón'), (53736, 'https://ror.org/04dzaw261', 'pt', 1, 'https://ror.org/04dzaw261 Hospital do Coração'), (53737, 'https://ror.org/04dzfqx38', 'en', 1, 'https://ror.org/04dzfqx38 Internet Society'), (53738, 'https://ror.org/04dzm3847', 'nl', 1, 'https://ror.org/04dzm3847 Stichting Kind en Groei'), (53739, 'https://ror.org/04e29rd57', 'no_lang_code', 1, 'https://ror.org/04e29rd57 Exalenz Bioscience (Israel)'), (53740, 'https://ror.org/04e2pep48', 'en', 1, 'https://ror.org/04e2pep48 Henry County Community Foundation'), (53741, 'https://ror.org/04e4db319', 'no_lang_code', 1, 'https://ror.org/04e4db319 Infineon Technologies (United States)'), (53742, 'https://ror.org/04e4r2k23', 'en', 1, 'https://ror.org/04e4r2k23 Professional Educator Standards Board'), (53743, 'https://ror.org/04e5eq320', 'en', 1, 'https://ror.org/04e5eq320 Professional Education and Research Institute'), (53744, 'https://ror.org/04e61md13', 'no_lang_code', 1, 'https://ror.org/04e61md13 Tokuda Hospital Токуда Болница София'), (53745, 'https://ror.org/04e6qgn10', 'no_lang_code', 1, 'https://ror.org/04e6qgn10 AstraZeneca (Italy)'), (53746, 'https://ror.org/04e7afm38', 'en', 1, 'https://ror.org/04e7afm38 Gainesville Obstetrics & Gynecology'), (53747, 'https://ror.org/04e8gf053', 'no_lang_code', 1, 'https://ror.org/04e8gf053 Amphenol (Germany)'), (53748, 'https://ror.org/04e8m0166', 'pt', 1, 'https://ror.org/04e8m0166 Sport Club Corinthians Paulista'), (53749, 'https://ror.org/04e9jh270', 'no_lang_code', 1, 'https://ror.org/04e9jh270 Sanol (Germany)'), (53750, 'https://ror.org/04eb71689', 'no_lang_code', 1, 'https://ror.org/04eb71689 PathAI (United States)'), (53751, 'https://ror.org/04eba0590', 'en', 1, 'https://ror.org/04eba0590 Veracity Clinical Research'), (53752, 'https://ror.org/04edq9h05', 'en', 1, 'https://ror.org/04edq9h05 Cure Starts Now Foundation'), (53753, 'https://ror.org/04edz9p52', 'no_lang_code', 1, 'https://ror.org/04edz9p52 Thea (France)'), (53754, 'https://ror.org/04efaep75', 'en', 1, 'https://ror.org/04efaep75 Bergen Research Foundation Bergens Forskningsstiftelse'), (53755, 'https://ror.org/04eh49149', 'en', 1, 'https://ror.org/04eh49149 Optimed Eye and Laser Clinic'), (53756, 'https://ror.org/04eh92011', 'en', 1, 'https://ror.org/04eh92011 IMB Bank'), (53757, 'https://ror.org/04emgh024', 'en', 1, 'https://ror.org/04emgh024 Seattle Indian Health Board'), (53758, 'https://ror.org/04en42k10', 'en', 1, 'https://ror.org/04en42k10 Somdet Chaopraya Institute of Psychiatry สมเด็จสถาบันจิตเวชศาสตร์'), (53759, 'https://ror.org/04es60x64', 'en', 1, 'https://ror.org/04es60x64 Cure Kids'), (53760, 'https://ror.org/04ewjy824', 'en', 1, 'https://ror.org/04ewjy824 Biomass Controls'), (53761, 'https://ror.org/04exar519', 'en', 1, 'https://ror.org/04exar519 Moss Memorial Health Clinic'), (53762, 'https://ror.org/04eyqwn57', 'no_lang_code', 1, 'https://ror.org/04eyqwn57 Ethypharm (France)'), (53763, 'https://ror.org/04f09q842', 'en', 1, 'https://ror.org/04f09q842 Norske Kvinners Sanitetsforening Norwegian Womens Public Health Association'), (53764, 'https://ror.org/04f10rk67', 'en', 1, 'https://ror.org/04f10rk67 Virology Education'), (53765, 'https://ror.org/04f13zs55', 'en', 1, 'https://ror.org/04f13zs55 National Association of Medicaid Directors'), (53766, 'https://ror.org/04f142133', 'en', 1, 'https://ror.org/04f142133 North Shore Diabetes and Endocrine Associates'), (53767, 'https://ror.org/04f195d63', 'de', 1, 'https://ror.org/04f195d63 Fritz Bender Stiftung'), (53768, 'https://ror.org/04f45q833', 'en', 1, 'https://ror.org/04f45q833 American Society of Consultant Pharmacists'), (53769, 'https://ror.org/04f4qr343', 'en', 1, 'https://ror.org/04f4qr343 Cleft Palate Foundation'), (53770, 'https://ror.org/04f5h5n26', 'en', 1, 'https://ror.org/04f5h5n26 Universal Health Care Action Network'), (53771, 'https://ror.org/04f62cx68', 'en', 1, 'https://ror.org/04f62cx68 Carmel Mountain Vision Care'), (53772, 'https://ror.org/04f8tsk17', 'en', 1, 'https://ror.org/04f8tsk17 Canavan Research Foundation'), (53773, 'https://ror.org/04fafj987', 'en', 1, 'https://ror.org/04fafj987 Adenoid Cystic Carcinoma Research Foundation'), (53774, 'https://ror.org/04fbzr589', 'no_lang_code', 1, 'https://ror.org/04fbzr589 Canon (Germany)'), (53775, 'https://ror.org/04fdcba46', 'en', 1, 'https://ror.org/04fdcba46 National Institute for Staff and Organizational Development'), (53776, 'https://ror.org/04febt404', 'en', 1, 'https://ror.org/04febt404 Fahs-Beck Fund for Research and Experimentation'), (53777, 'https://ror.org/04ffexa42', 'en', 1, 'https://ror.org/04ffexa42 Family Care Foundation'), (53778, 'https://ror.org/04fgnxn93', 'no_lang_code', 1, 'https://ror.org/04fgnxn93 Innothera (France)'), (53779, 'https://ror.org/04fh73803', 'no_lang_code', 1, 'https://ror.org/04fh73803 Alio Medica (Poland)'), (53780, 'https://ror.org/04fhq1b19', 'en', 1, 'https://ror.org/04fhq1b19 St. Cloud Orthopedic Associates'), (53781, 'https://ror.org/04fhtk651', 'no_lang_code', 1, 'https://ror.org/04fhtk651 Hettich (Germany)'), (53782, 'https://ror.org/04fjdpx11', 'en', 1, 'https://ror.org/04fjdpx11 Mahila Abhivruddhi Society, Andhra Pradesh'), (53783, 'https://ror.org/04fjhg511', 'en', 1, 'https://ror.org/04fjhg511 Goizueta Foundation'), (53784, 'https://ror.org/04fkd7w53', 'it', 1, 'https://ror.org/04fkd7w53 Fondazione Cariparma'), (53785, 'https://ror.org/04fkf6297', 'en', 1, 'https://ror.org/04fkf6297 Autism CRC'), (53786, 'https://ror.org/04fqvjv52', 'no_lang_code', 1, 'https://ror.org/04fqvjv52 Roivant Sciences (United States)'), (53787, 'https://ror.org/04fr3hk40', 'no_lang_code', 1, 'https://ror.org/04fr3hk40 KGK Synergize (Canada)'), (53788, 'https://ror.org/04frvr969', 'en', 1, 'https://ror.org/04frvr969 Colossian Forum'), (53789, 'https://ror.org/04fvvze29', 'no_lang_code', 1, 'https://ror.org/04fvvze29 Besins Healthcare (Belgium)'), (53790, 'https://ror.org/04fvydq80', 'no_lang_code', 1, 'https://ror.org/04fvydq80 RadioMedic (Czechia)'), (53791, 'https://ror.org/04fwr3777', 'en', 1, 'https://ror.org/04fwr3777 International Dermatology Research'), (53792, 'https://ror.org/04fy00g66', 'en', 1, 'https://ror.org/04fy00g66 Dawes Fretzin Clinical Research Group'), (53793, 'https://ror.org/04fzmt155', 'no_lang_code', 1, 'https://ror.org/04fzmt155 Renovo (United Kingdom)'), (53794, 'https://ror.org/04fzt5y42', 'en', 1, 'https://ror.org/04fzt5y42 Crystal Clinic Orthopedic Center'), (53795, 'https://ror.org/04g0t7770', 'no_lang_code', 1, 'https://ror.org/04g0t7770 InfectoPharm (Germany)'), (53796, 'https://ror.org/04g18y077', 'no_lang_code', 1, 'https://ror.org/04g18y077 Inwatech (Hungary) Inwatech Környezetvédelmi Kft'), (53797, 'https://ror.org/04g219d41', 'en', 1, 'https://ror.org/04g219d41 Advanced Neurosciences Institute'), (53798, 'https://ror.org/04g2fst78', 'pl', 1, 'https://ror.org/04g2fst78 InterLab Poznan'), (53799, 'https://ror.org/04g2zk759', 'no_lang_code', 1, 'https://ror.org/04g2zk759 Pharmalink (Sweden)'), (53800, 'https://ror.org/04g380834', 'sv', 1, 'https://ror.org/04g380834 Beroendecentrum Stockholm'), (53801, 'https://ror.org/04g3rsw26', 'no_lang_code', 1, 'https://ror.org/04g3rsw26 Getrag (Germany)'), (53802, 'https://ror.org/04g43tp09', 'no_lang_code', 1, 'https://ror.org/04g43tp09 Well Told Story (Kenya)'), (53803, 'https://ror.org/04g59q124', 'en', 1, 'https://ror.org/04g59q124 Skillpoint Alliance'), (53804, 'https://ror.org/04g5yrp52', 'en', 1, 'https://ror.org/04g5yrp52 A-T Children''s Project'), (53805, 'https://ror.org/04g7j1r38', 'en', 1, 'https://ror.org/04g7j1r38 Medical Research Associates'), (53806, 'https://ror.org/04gec5v25', 'it', 1, 'https://ror.org/04gec5v25 Associazione Italiana Rett'), (53807, 'https://ror.org/04gfxtm83', 'en', 1, 'https://ror.org/04gfxtm83 Mount Zion Health Fund'), (53808, 'https://ror.org/04gfzba65', 'en', 1, 'https://ror.org/04gfzba65 British Society for the History of Science'), (53809, 'https://ror.org/04gg2hw16', 'en', 1, 'https://ror.org/04gg2hw16 International Game Developers Association Foundation'), (53810, 'https://ror.org/04gh6x779', 'de', 1, 'https://ror.org/04gh6x779 Caritas-Krankenhaus Bad Mergentheim'), (53811, 'https://ror.org/04gka5c82', 'pt', 1, 'https://ror.org/04gka5c82 Hospital Fernandes Távora'), (53812, 'https://ror.org/04gp21q48', 'en', 1, 'https://ror.org/04gp21q48 Slovinski National Park Słowiński Park Narodowy'), (53813, 'https://ror.org/04gpj0s68', 'no_lang_code', 1, 'https://ror.org/04gpj0s68 Dimension Therapeutics (United States)'), (53814, 'https://ror.org/04grfq760', 'en', 1, 'https://ror.org/04grfq760 TDX Construction'), (53815, 'https://ror.org/04gte0y44', 'no_lang_code', 1, 'https://ror.org/04gte0y44 Ahlstrom-Munksjö (Finland)'), (53816, 'https://ror.org/04gvvdd93', 'no_lang_code', 1, 'https://ror.org/04gvvdd93 Advicenne Pharma (France)'), (53817, 'https://ror.org/04gw71m56', 'en', 1, 'https://ror.org/04gw71m56 Law Foundation of Nova Scotia'), (53818, 'https://ror.org/04gx6f055', 'en', 1, 'https://ror.org/04gx6f055 Good Samaritan Society'), (53819, 'https://ror.org/04gxyj147', 'en', 1, 'https://ror.org/04gxyj147 M S Ramaiah Memorial Hospital ರಾಮಯ್ಯ ಸ್ಮಾರಕ ಆಸ್ಪತ್ರೆ'), (53820, 'https://ror.org/04h0zjx60', 'en', 1, 'https://ror.org/04h0zjx60 George Institute for Global Health'), (53821, 'https://ror.org/04h1j6452', 'no_lang_code', 1, 'https://ror.org/04h1j6452 Keilir Academy'), (53822, 'https://ror.org/04h288p25', 'en', 1, 'https://ror.org/04h288p25 Poynter Institute for Media Studies'), (53823, 'https://ror.org/04h2hh388', 'no_lang_code', 1, 'https://ror.org/04h2hh388 Rockwool (Denmark)'), (53824, 'https://ror.org/04h7fev25', 'fr', 1, 'https://ror.org/04h7fev25 Fondation Bertarelli'), (53825, 'https://ror.org/04h7h2h10', 'no_lang_code', 1, 'https://ror.org/04h7h2h10 Conatus Pharmaceuticals (United States)'), (53826, 'https://ror.org/04h7jac65', 'en', 1, 'https://ror.org/04h7jac65 ScienceSites'), (53827, 'https://ror.org/04h97jj05', 'en', 1, 'https://ror.org/04h97jj05 Blue Shield of California Foundation'), (53828, 'https://ror.org/04h9m9r06', 'no_lang_code', 1, 'https://ror.org/04h9m9r06 Ergomed Clinical Research (United Kingdom)'), (53829, 'https://ror.org/04habne08', 'no_lang_code', 1, 'https://ror.org/04habne08 Applied Medical Resources (United States)'), (53830, 'https://ror.org/04hb59q25', 'en', 1, 'https://ror.org/04hb59q25 Cancer Aid and Research Fund'), (53831, 'https://ror.org/04hb8c581', 'no_lang_code', 1, 'https://ror.org/04hb8c581 CTI BioPharma (Italy)'), (53832, 'https://ror.org/04hbteb59', 'en', 1, 'https://ror.org/04hbteb59 Camargo Foundation'), (53833, 'https://ror.org/04hfyyk07', 'en', 1, 'https://ror.org/04hfyyk07 Canadian Foundation for AIDS Research Fondation Canadienne de Recherche sur le Sida'), (53834, 'https://ror.org/04hg0hr43', 'en', 1, 'https://ror.org/04hg0hr43 Danish Breast Cancer Cooperative Group'), (53835, 'https://ror.org/04hh34543', 'no_lang_code', 1, 'https://ror.org/04hh34543 Doosan (United States)'), (53836, 'https://ror.org/04hm6wz53', 'en', 1, 'https://ror.org/04hm6wz53 San Diego Cardiac Center'), (53837, 'https://ror.org/04hmpdq89', 'en', 1, 'https://ror.org/04hmpdq89 Eye Disease Foundation Fondation des maladies de l''oeil'), (53838, 'https://ror.org/04hnnkw05', 'en', 1, 'https://ror.org/04hnnkw05 Interstitial Cystitis Association'), (53839, 'https://ror.org/04hrzse50', 'en', 1, 'https://ror.org/04hrzse50 Myers Street Family Medical Practice'), (53840, 'https://ror.org/04hsgm631', 'en', 1, 'https://ror.org/04hsgm631 Beaver County Foundation'), (53841, 'https://ror.org/04hw5vb27', 'en', 1, 'https://ror.org/04hw5vb27 Omega Medical Research'), (53842, 'https://ror.org/04hzpm856', 'en', 1, 'https://ror.org/04hzpm856 Community Foundation of North Central Washington'), (53843, 'https://ror.org/04j0gge90', 'no_lang_code', 1, 'https://ror.org/04j0gge90 Walmart (United States)'), (53844, 'https://ror.org/04j0zpz40', 'en', 1, 'https://ror.org/04j0zpz40 Dalberg Global Development Advisors'), (53845, 'https://ror.org/04j18qv50', 'en', 1, 'https://ror.org/04j18qv50 Association for Academic Surgery Foundation'), (53846, 'https://ror.org/04j24r737', 'no_lang_code', 1, 'https://ror.org/04j24r737 Huf Hülsbeck & Fürst (Germany)'), (53847, 'https://ror.org/04j2fjp47', 'no_lang_code', 1, 'https://ror.org/04j2fjp47 Clovis Oncology (United Kingdom)'), (53848, 'https://ror.org/04j2hyd53', 'en', 1, 'https://ror.org/04j2hyd53 eHealth Initiative'), (53849, 'https://ror.org/04j485w94', 'en', 1, 'https://ror.org/04j485w94 Allergy Associates Research Center'), (53850, 'https://ror.org/04j4csk75', 'en', 1, 'https://ror.org/04j4csk75 Canadian Nurses Foundation La Fondation des Infirmières et Infirmiers du Canada'), (53851, 'https://ror.org/04j8wah18', 'fr', 1, 'https://ror.org/04j8wah18 Fondation Charcot'), (53852, 'https://ror.org/04j9je195', 'en', 1, 'https://ror.org/04j9je195 Berks County Community Foundation'), (53853, 'https://ror.org/04j9kx436', 'en', 1, 'https://ror.org/04j9kx436 Chrysalis'), (53854, 'https://ror.org/04ja5n810', 'en', 1, 'https://ror.org/04ja5n810 Global Association of Risk Professionals'), (53855, 'https://ror.org/04jaxp997', 'en', 1, 'https://ror.org/04jaxp997 Austrian Economics Center'), (53856, 'https://ror.org/04jcfjz75', 'en', 1, 'https://ror.org/04jcfjz75 Epilepsy Foundation'), (53857, 'https://ror.org/04jck5r17', 'en', 1, 'https://ror.org/04jck5r17 Elsass Fonden Elsass Foundation'), (53858, 'https://ror.org/04jd9ff79', 'en', 1, 'https://ror.org/04jd9ff79 Acoustics Research Institute Institut für Schallforschung'), (53859, 'https://ror.org/04jftwm50', 'en', 1, 'https://ror.org/04jftwm50 Free the Slaves'), (53860, 'https://ror.org/04jg41g64', 'fr', 1, 'https://ror.org/04jg41g64 Clinique Clémentville'), (53861, 'https://ror.org/04jh85880', 'en', 1, 'https://ror.org/04jh85880 National League for Nursing'), (53862, 'https://ror.org/04jjbpq08', 'en', 1, 'https://ror.org/04jjbpq08 Cares Foundation'), (53863, 'https://ror.org/04jjqdb31', 'en', 1, 'https://ror.org/04jjqdb31 Durfee Foundation'), (53864, 'https://ror.org/04jnrz567', 'no_lang_code', 1, 'https://ror.org/04jnrz567 Siegenia (Germany)'), (53865, 'https://ror.org/04jpbn971', 'no_lang_code', 1, 'https://ror.org/04jpbn971 Strix (Isle of Man)'), (53866, 'https://ror.org/04jpe7h32', 'en', 1, 'https://ror.org/04jpe7h32 National Endowment for Democracy'), (53867, 'https://ror.org/04jpf9990', 'en', 1, 'https://ror.org/04jpf9990 Kowa Life Science Foundation 公益財団法人 興和生命科学振興財団'), (53868, 'https://ror.org/04jq8gw64', 'en', 1, 'https://ror.org/04jq8gw64 Beckman Coulter Foundation'), (53869, 'https://ror.org/04jrb3091', 'en', 1, 'https://ror.org/04jrb3091 Institute for Aegean Prehistory'), (53870, 'https://ror.org/04jv11d86', 'en', 1, 'https://ror.org/04jv11d86 Australasian Centre for Italian Studies'), (53871, 'https://ror.org/04jvsvx56', 'en', 1, 'https://ror.org/04jvsvx56 St. Francis Community Hospital'), (53872, 'https://ror.org/04jw6ed22', 'en', 1, 'https://ror.org/04jw6ed22 S.L. Raheja Hospital'), (53873, 'https://ror.org/04jwn5v63', 'en', 1, 'https://ror.org/04jwn5v63 Clinical Research Associates'), (53874, 'https://ror.org/04jz7er86', 'en', 1, 'https://ror.org/04jz7er86 Greater Greenbrier Valley Community Foundation'), (53875, 'https://ror.org/04jzqkn30', 'en', 1, 'https://ror.org/04jzqkn30 Ursuline Academy of Dallas'), (53876, 'https://ror.org/04k1aq759', 'no_lang_code', 1, 'https://ror.org/04k1aq759 Univercells (Belgium)'), (53877, 'https://ror.org/04k1gqg30', 'en', 1, 'https://ror.org/04k1gqg30 Shalby Hospitals'), (53878, 'https://ror.org/04k2v7662', 'no_lang_code', 1, 'https://ror.org/04k2v7662 Acorda Therapeutics (Switzerland)'); INSERT INTO `rors` VALUES (53879, 'https://ror.org/04k3g6751', 'en', 1, 'https://ror.org/04k3g6751 Northeastern Eye Institute'), (53880, 'https://ror.org/04k3g6v88', 'en', 1, 'https://ror.org/04k3g6v88 Ear Institute of Chicago'), (53881, 'https://ror.org/04k3tc204', 'en', 1, 'https://ror.org/04k3tc204 European Uro Oncology Group'), (53882, 'https://ror.org/04k47ec04', 'en', 1, 'https://ror.org/04k47ec04 Yantai Laiyang Central Hospital 烟台莱阳中心医院'), (53883, 'https://ror.org/04k4knw56', 'en', 1, 'https://ror.org/04k4knw56 LifeWorks Northwest'), (53884, 'https://ror.org/04k8pqm06', 'no_lang_code', 1, 'https://ror.org/04k8pqm06 Lycera (United States)'), (53885, 'https://ror.org/04k8z2c06', 'en', 1, 'https://ror.org/04k8z2c06 Daviess County Public Schools'), (53886, 'https://ror.org/04kanse05', 'en', 1, 'https://ror.org/04kanse05 Clinical Trial Network'), (53887, 'https://ror.org/04kd6fb74', 'no_lang_code', 1, 'https://ror.org/04kd6fb74 TrichoCare (United Kingdom)'), (53888, 'https://ror.org/04kdz8318', 'no_lang_code', 1, 'https://ror.org/04kdz8318 Koncentra (Sweden)'), (53889, 'https://ror.org/04ke50w30', 'no_lang_code', 1, 'https://ror.org/04ke50w30 ViiV Healthcare (Spain)'), (53890, 'https://ror.org/04kf79x57', 'en', 1, 'https://ror.org/04kf79x57 John E. Fogarty Foundation'), (53891, 'https://ror.org/04kfydn45', 'en', 1, 'https://ror.org/04kfydn45 Cato Institute'), (53892, 'https://ror.org/04kgp1379', 'it', 1, 'https://ror.org/04kgp1379 Azienda-Unita'' Sanitaria Locale Di Cesena'), (53893, 'https://ror.org/04kmayk86', 'no_lang_code', 1, 'https://ror.org/04kmayk86 Von Ardenne (Germany)'), (53894, 'https://ror.org/04knmzc94', 'no_lang_code', 1, 'https://ror.org/04knmzc94 Faro Technologies (United States)'), (53895, 'https://ror.org/04kp8j175', 'en', 1, 'https://ror.org/04kp8j175 Washington News Council'), (53896, 'https://ror.org/04kq54507', 'no_lang_code', 1, 'https://ror.org/04kq54507 Fujikin (Japan)'), (53897, 'https://ror.org/04kqbrq68', 'no_lang_code', 1, 'https://ror.org/04kqbrq68 Novartis (Hungary)'), (53898, 'https://ror.org/04krn2974', 'en', 1, 'https://ror.org/04krn2974 American Hellenic Educational Progressive Association'), (53899, 'https://ror.org/04kywek22', 'en', 1, 'https://ror.org/04kywek22 Grays Harbor Community Foundation'), (53900, 'https://ror.org/04kyz2p97', 'no_lang_code', 1, 'https://ror.org/04kyz2p97 NeRRe Therapeutics (United Kingdom)'), (53901, 'https://ror.org/04kzqr274', 'en', 1, 'https://ror.org/04kzqr274 Ulyanovsk Regional Oncology Center Региональный клинический онкологический диспансер'), (53902, 'https://ror.org/04m136694', 'en', 1, 'https://ror.org/04m136694 PUC Schools'), (53903, 'https://ror.org/04m1bn674', 'fr', 1, 'https://ror.org/04m1bn674 Association pour la Recherche de Thérapeutiques Innovantes en Cancérologie'), (53904, 'https://ror.org/04m1pcy54', 'en', 1, 'https://ror.org/04m1pcy54 Carl Wilson Foundation'), (53905, 'https://ror.org/04m1zdk85', 'en', 1, 'https://ror.org/04m1zdk85 Greater Houston Community Foundation'), (53906, 'https://ror.org/04m20gp14', 'no_lang_code', 1, 'https://ror.org/04m20gp14 Walter Reist Holding (Switzerland)'), (53907, 'https://ror.org/04m25zw74', 'no_lang_code', 1, 'https://ror.org/04m25zw74 Kalliopeia Foundation'), (53908, 'https://ror.org/04m3t9183', 'en', 1, 'https://ror.org/04m3t9183 Hasler Foundation Hasler Stiftung'), (53909, 'https://ror.org/04m492h23', 'no_lang_code', 1, 'https://ror.org/04m492h23 BOS (Germany)'), (53910, 'https://ror.org/04m4mvs85', 'en', 1, 'https://ror.org/04m4mvs85 Southern Eye Associates'), (53911, 'https://ror.org/04m4td435', 'en', 1, 'https://ror.org/04m4td435 Christie''s'), (53912, 'https://ror.org/04m6sw526', 'en', 1, 'https://ror.org/04m6sw526 Australian Society of Exploration Geophysicists'), (53913, 'https://ror.org/04m8gzf13', 'en', 1, 'https://ror.org/04m8gzf13 Berks County Public Libraries'), (53914, 'https://ror.org/04m8me169', 'en', 1, 'https://ror.org/04m8me169 ARISE The Scoliosis Research Trust'), (53915, 'https://ror.org/04m8yw794', 'en', 1, 'https://ror.org/04m8yw794 DaVita Clinical Research (United States)'), (53916, 'https://ror.org/04m9zwa74', 'de', 1, 'https://ror.org/04m9zwa74 Claussen Simon Stiftung'), (53917, 'https://ror.org/04ma89d43', 'no_lang_code', 1, 'https://ror.org/04ma89d43 Socionext (Japan) 株式会社ソシオネクスト'), (53918, 'https://ror.org/04mc1sw92', 'en', 1, 'https://ror.org/04mc1sw92 Summit Health Institute for Research and Education'), (53919, 'https://ror.org/04mchsp40', 'en', 1, 'https://ror.org/04mchsp40 Ralph M. Parsons Foundation'), (53920, 'https://ror.org/04mcweq87', 'no_lang_code', 1, 'https://ror.org/04mcweq87 Nasdaq (United States)'), (53921, 'https://ror.org/04md70c70', 'en', 1, 'https://ror.org/04md70c70 Field Foundation'), (53922, 'https://ror.org/04mem9m40', 'en', 1, 'https://ror.org/04mem9m40 Diabetes Technology Society'), (53923, 'https://ror.org/04mg0we30', 'no_lang_code', 1, 'https://ror.org/04mg0we30 Inmunal (Spain)'), (53924, 'https://ror.org/04mjn9f12', 'en', 1, 'https://ror.org/04mjn9f12 Japan North America Medical Exchange Foundation 国際交流基金 日米センター'), (53925, 'https://ror.org/04mjnb932', 'it', 1, 'https://ror.org/04mjnb932 Fondazione Cassa di Risparmio Civitavecchia'), (53926, 'https://ror.org/04mkp1z42', 'en', 1, 'https://ror.org/04mkp1z42 Netcare Unitas Hospital'), (53927, 'https://ror.org/04mm7fj57', 'no_lang_code', 1, 'https://ror.org/04mm7fj57 Szuro Trade (Hungary)'), (53928, 'https://ror.org/04mm94t86', 'no_lang_code', 1, 'https://ror.org/04mm94t86 Isomark (United States)'), (53929, 'https://ror.org/04mmzs792', 'no_lang_code', 1, 'https://ror.org/04mmzs792 Oncolab (Romania)'), (53930, 'https://ror.org/04mnke839', 'en', 1, 'https://ror.org/04mnke839 Ministerial Standing Committee on Scientific and Technological Cooperation of the Organization of Islamic Cooperation'), (53931, 'https://ror.org/04mp5ms85', 'en', 1, 'https://ror.org/04mp5ms85 Saskatchewan Library Association'), (53932, 'https://ror.org/04mq3gn83', 'en', 1, 'https://ror.org/04mq3gn83 Midwest Institute for Clinical Research'), (53933, 'https://ror.org/04mqtjh57', 'no_lang_code', 1, 'https://ror.org/04mqtjh57 Biogen (Italy)'), (53934, 'https://ror.org/04mrbz859', 'no_lang_code', 1, 'https://ror.org/04mrbz859 Walker Digital (United States)'), (53935, 'https://ror.org/04mtb9h21', 'en', 1, 'https://ror.org/04mtb9h21 Finca International'), (53936, 'https://ror.org/04mxckc46', 'en', 1, 'https://ror.org/04mxckc46 National Women''s Law Center'), (53937, 'https://ror.org/04mxvyg40', 'en', 1, 'https://ror.org/04mxvyg40 Melbourne Clinic'), (53938, 'https://ror.org/04mxyy281', 'en', 1, 'https://ror.org/04mxyy281 Center for Pastor Theologians'), (53939, 'https://ror.org/04n0rkn80', 'en', 1, 'https://ror.org/04n0rkn80 Parent Institute for Quality Education'), (53940, 'https://ror.org/04n10rx26', 'en', 1, 'https://ror.org/04n10rx26 United Way of Snohomish County'), (53941, 'https://ror.org/04n11b617', 'en', 1, 'https://ror.org/04n11b617 Izumi Foundation'), (53942, 'https://ror.org/04n2kg767', 'en', 1, 'https://ror.org/04n2kg767 Healthy Minds Canada'), (53943, 'https://ror.org/04n3h0p93', 'en', 1, 'https://ror.org/04n3h0p93 Central Hospital of Zibo 淄博市中心医院'), (53944, 'https://ror.org/04n7nyv64', 'en', 1, 'https://ror.org/04n7nyv64 Australian Institute of Family Studies'), (53945, 'https://ror.org/04n7vez34', 'no_lang_code', 1, 'https://ror.org/04n7vez34 AgroFresh (United States)'), (53946, 'https://ror.org/04n89je52', 'en', 1, 'https://ror.org/04n89je52 NASSCOM Foundation'), (53947, 'https://ror.org/04n8zn025', 'en', 1, 'https://ror.org/04n8zn025 Liberty Laser Eye Center'), (53948, 'https://ror.org/04nae0247', 'nl', 1, 'https://ror.org/04nae0247 Libra Revalidatie & Audiologie'), (53949, 'https://ror.org/04ncnj403', 'de', 1, 'https://ror.org/04ncnj403 HELIOS Albert-Schweitzer-Klinik Northeim'), (53950, 'https://ror.org/04nf3ck23', 'en', 1, 'https://ror.org/04nf3ck23 New Visions for Public Schools'), (53951, 'https://ror.org/04nfmyz64', 'en', 1, 'https://ror.org/04nfmyz64 Parker Foundation'), (53952, 'https://ror.org/04nfzd686', 'no_lang_code', 1, 'https://ror.org/04nfzd686 Lumen Learning (United States)'), (53953, 'https://ror.org/04nkk7415', 'en', 1, 'https://ror.org/04nkk7415 Southeastern Retina Associates'), (53954, 'https://ror.org/04nm4bw06', 'no_lang_code', 1, 'https://ror.org/04nm4bw06 Lumentum (United States)'), (53955, 'https://ror.org/04nnjw512', 'no_lang_code', 1, 'https://ror.org/04nnjw512 Apeptico (Austria)'), (53956, 'https://ror.org/04nqdt167', 'en', 1, 'https://ror.org/04nqdt167 NATA Research and Education Foundation'), (53957, 'https://ror.org/04nqwsb31', 'en', 1, 'https://ror.org/04nqwsb31 Dysautonomia Foundation'), (53958, 'https://ror.org/04nvswg42', 'en', 1, 'https://ror.org/04nvswg42 Eau Claire Community Foundation'), (53959, 'https://ror.org/04nwcm011', 'no_lang_code', 1, 'https://ror.org/04nwcm011 NVision Eye Centers (United States)'), (53960, 'https://ror.org/04nwd2p56', 'en', 1, 'https://ror.org/04nwd2p56 Central Hospital of Putuo District 普陀区中心医院'), (53961, 'https://ror.org/04p16dr10', 'en', 1, 'https://ror.org/04p16dr10 Diabetes Thyroid Hormone Research Institute'), (53962, 'https://ror.org/04p1m3617', 'en', 1, 'https://ror.org/04p1m3617 Neurospine Institute Medical Group'), (53963, 'https://ror.org/04p1z3290', 'en', 1, 'https://ror.org/04p1z3290 Rigpe Dorje Foundation'), (53964, 'https://ror.org/04p2v2s43', 'en', 1, 'https://ror.org/04p2v2s43 XPRIZE Foundation'), (53965, 'https://ror.org/04p365m25', 'no_lang_code', 1, 'https://ror.org/04p365m25 Thrombotargets (Spain)'), (53966, 'https://ror.org/04p54bb05', 'no_lang_code', 1, 'https://ror.org/04p54bb05 Zambart'), (53967, 'https://ror.org/04p59xr47', 'en', 1, 'https://ror.org/04p59xr47 Compal Electronics (Taiwan) 仁宝电脑工业股份有限公司'), (53968, 'https://ror.org/04p6dqe59', 'no_lang_code', 1, 'https://ror.org/04p6dqe59 AbbVie (Spain)'), (53969, 'https://ror.org/04p6n2e03', 'en', 1, 'https://ror.org/04p6n2e03 Premier Research Group'), (53970, 'https://ror.org/04p6z8d41', 'no_lang_code', 1, 'https://ror.org/04p6z8d41 Victaulic (United States)'), (53971, 'https://ror.org/04p70wa05', 'en', 1, 'https://ror.org/04p70wa05 St Stephen’s AIDS Trust'), (53972, 'https://ror.org/04p7c7m47', 'en', 1, 'https://ror.org/04p7c7m47 Cades Schutte'), (53973, 'https://ror.org/04p7ema57', 'en', 1, 'https://ror.org/04p7ema57 National Infrastructure for Microbiological Resources 国家微生物资源基础设施'), (53974, 'https://ror.org/04p9zhq85', 'en', 1, 'https://ror.org/04p9zhq85 The New Teacher Project'), (53975, 'https://ror.org/04pa38t98', 'no_lang_code', 1, 'https://ror.org/04pa38t98 Anthera Pharmaceuticals (United States)'), (53976, 'https://ror.org/04pbh9679', 'en', 1, 'https://ror.org/04pbh9679 Hohhot First Hospital 呼和浩特第一医院'), (53977, 'https://ror.org/04pc51341', 'en', 1, 'https://ror.org/04pc51341 International Furnishings and Design Association'), (53978, 'https://ror.org/04pc85e11', 'no_lang_code', 1, 'https://ror.org/04pc85e11 Dynavax Technologies (Germany)'), (53979, 'https://ror.org/04pcdsm76', 'en', 1, 'https://ror.org/04pcdsm76 Interdisciplinary University of Paris Université interdisciplinaire de Paris'), (53980, 'https://ror.org/04pd4jr17', 'en', 1, 'https://ror.org/04pd4jr17 Barbara Bush Children’s Hospital'), (53981, 'https://ror.org/04pejqy21', 'en', 1, 'https://ror.org/04pejqy21 National Research and Development Institute on Occupational Safety'), (53982, 'https://ror.org/04pfhbg73', 'en', 1, 'https://ror.org/04pfhbg73 Oregon Department of Education'), (53983, 'https://ror.org/04pfs0x85', 'en', 1, 'https://ror.org/04pfs0x85 Krzysztof Kluk Museum of Agriculture Muzeum Rolnictwa im. ks. Krzysztofa Kluka'), (53984, 'https://ror.org/04ph8tc17', 'no_lang_code', 1, 'https://ror.org/04ph8tc17 Finnair (Finland)'), (53985, 'https://ror.org/04phvdn03', 'en', 1, 'https://ror.org/04phvdn03 Network For Teaching Entrepreneurship'), (53986, 'https://ror.org/04pm22969', 'en', 1, 'https://ror.org/04pm22969 Organic Farming Research Foundation'), (53987, 'https://ror.org/04ps05k54', 'en', 1, 'https://ror.org/04ps05k54 American Association of Clinical Endocrinologists'), (53988, 'https://ror.org/04ps1h446', 'no_lang_code', 1, 'https://ror.org/04ps1h446 Vital Therapies (United States)'), (53989, 'https://ror.org/04pvmvv24', 'en', 1, 'https://ror.org/04pvmvv24 Barrett Bateman Foundation'), (53990, 'https://ror.org/04pyp4405', 'en', 1, 'https://ror.org/04pyp4405 Kortney Rose Foundation'), (53991, 'https://ror.org/04pza9565', 'en', 1, 'https://ror.org/04pza9565 Albert J. Ryan Foundation'), (53992, 'https://ror.org/04pzgj087', 'en', 1, 'https://ror.org/04pzgj087 Dystrophic Epidermolysis Bullosa Research Association of America'), (53993, 'https://ror.org/04q1vk257', 'en', 1, 'https://ror.org/04q1vk257 DuPage Mental Health Services'), (53994, 'https://ror.org/04q3cbc35', 'en', 1, 'https://ror.org/04q3cbc35 Midwestern Higher Education Compact'), (53995, 'https://ror.org/04q421571', 'no_lang_code', 1, 'https://ror.org/04q421571 PT Bio Farma (Indonesia)'), (53996, 'https://ror.org/04q5vxz02', 'no_lang_code', 1, 'https://ror.org/04q5vxz02 RSPR Pharma (Sweden)'), (53997, 'https://ror.org/04q6mrp48', 'es', 1, 'https://ror.org/04q6mrp48 Ocumed Clinica Oftalmologica'), (53998, 'https://ror.org/04q84b570', 'en', 1, 'https://ror.org/04q84b570 World Health Organization - Lyon Office'), (53999, 'https://ror.org/04qajcj06', 'en', 1, 'https://ror.org/04qajcj06 Bodossaki Foundation Ίδρυμα Μποδοσάκη'), (54000, 'https://ror.org/04qbxyj42', 'pt', 1, 'https://ror.org/04qbxyj42 Hospital de Base'), (54001, 'https://ror.org/04qdq0b46', 'en', 1, 'https://ror.org/04qdq0b46 Danish Dairy Research Foundation'), (54002, 'https://ror.org/04qh5fy32', 'no_lang_code', 1, 'https://ror.org/04qh5fy32 Abbott (Sweden)'), (54003, 'https://ror.org/04qhpra63', 'no_lang_code', 1, 'https://ror.org/04qhpra63 Novartis (Norway)'), (54004, 'https://ror.org/04qm2hz97', 'no_lang_code', 1, 'https://ror.org/04qm2hz97 Accelovance (United States)'), (54005, 'https://ror.org/04qn6k859', 'en', 1, 'https://ror.org/04qn6k859 CJ Foundation for SIDS'), (54006, 'https://ror.org/04qq88e08', 'en', 1, 'https://ror.org/04qq88e08 International Headache Society'), (54007, 'https://ror.org/04qsqk067', 'en', 1, 'https://ror.org/04qsqk067 Kinsman Foundation'), (54008, 'https://ror.org/04qtw4d33', 'en', 1, 'https://ror.org/04qtw4d33 Canadian Foundation for Dietetic Research Fondation Canadienne de la Recherche en Diététique'), (54009, 'https://ror.org/04qv76523', 'en', 1, 'https://ror.org/04qv76523 United Way of Southern Cameron County'), (54010, 'https://ror.org/04qyzam39', 'fr', 1, 'https://ror.org/04qyzam39 Hôpital Privé Jacques Cartier'), (54011, 'https://ror.org/04r000b45', 'no_lang_code', 1, 'https://ror.org/04r000b45 Zambon (Belgium)'), (54012, 'https://ror.org/04r0bh641', 'no_lang_code', 1, 'https://ror.org/04r0bh641 Neoleukin Therapeutics (United States)'), (54013, 'https://ror.org/04r0gp612', 'en', 1, 'https://ror.org/04r0gp612 Neurological Surgery'), (54014, 'https://ror.org/04r1bef65', 'en', 1, 'https://ror.org/04r1bef65 State Collaborative on Reforming Education'), (54015, 'https://ror.org/04r1rka16', 'en', 1, 'https://ror.org/04r1rka16 Metro Urology'), (54016, 'https://ror.org/04r1y3g77', 'en', 1, 'https://ror.org/04r1y3g77 Lice Solutions Resource Network'), (54017, 'https://ror.org/04r25nk19', 'de', 1, 'https://ror.org/04r25nk19 Gottfried und Julia Bangerter-Rhyner-Stiftung'), (54018, 'https://ror.org/04r4d0m68', 'no_lang_code', 1, 'https://ror.org/04r4d0m68 MAX Automation (Germany)'), (54019, 'https://ror.org/04r5g1376', 'en', 1, 'https://ror.org/04r5g1376 Local Initiatives Support Corporation'), (54020, 'https://ror.org/04r67yj20', 'en', 1, 'https://ror.org/04r67yj20 WellSpan York Hospital'), (54021, 'https://ror.org/04r6zpr83', 'no_lang_code', 1, 'https://ror.org/04r6zpr83 Amarantus Bioscience (United States)'), (54022, 'https://ror.org/04r7ys083', 'en', 1, 'https://ror.org/04r7ys083 Washington Women''s Foundation'), (54023, 'https://ror.org/04ra2hd78', 'en', 1, 'https://ror.org/04ra2hd78 American Music Therapy Association'), (54024, 'https://ror.org/04rbew275', 'no_lang_code', 1, 'https://ror.org/04rbew275 Zipline International (United States)'), (54025, 'https://ror.org/04rbxbn93', 'no_lang_code', 1, 'https://ror.org/04rbxbn93 PIQUR Therapeutics (Switzerland)'), (54026, 'https://ror.org/04rdnb978', 'de', 1, 'https://ror.org/04rdnb978 Deutsche Kinderkrebsstiftung'), (54027, 'https://ror.org/04rfs1719', 'de', 1, 'https://ror.org/04rfs1719 Spital Uster'), (54028, 'https://ror.org/04rgsag55', 'en', 1, 'https://ror.org/04rgsag55 Main Line Health'), (54029, 'https://ror.org/04rgxfp73', 'no_lang_code', 1, 'https://ror.org/04rgxfp73 Pharma Stulln (Germany)'), (54030, 'https://ror.org/04rk31t56', 'en', 1, 'https://ror.org/04rk31t56 Community Foundation of Northeast Alabama'), (54031, 'https://ror.org/04rn24t38', 'en', 1, 'https://ror.org/04rn24t38 Martin Diagnostic Clinic'), (54032, 'https://ror.org/04rn5ad82', 'en', 1, 'https://ror.org/04rn5ad82 Axiom Clinical Research of Florida'), (54033, 'https://ror.org/04rn6m357', 'de', 1, 'https://ror.org/04rn6m357 Maria Hilf Krankenhaus'), (54034, 'https://ror.org/04rpnrw35', 'en', 1, 'https://ror.org/04rpnrw35 Cambridge Muslim College'), (54035, 'https://ror.org/04rqj7157', 'en', 1, 'https://ror.org/04rqj7157 Global Communities'), (54036, 'https://ror.org/04rr9rb04', 'en', 1, 'https://ror.org/04rr9rb04 Atherton Family Foundation'), (54037, 'https://ror.org/04rreza77', 'no_lang_code', 1, 'https://ror.org/04rreza77 Bombastus-Werke (Germany)'), (54038, 'https://ror.org/04rrtdm25', 'en', 1, 'https://ror.org/04rrtdm25 Lynne Cohen Foundation'), (54039, 'https://ror.org/04rtaxr13', 'en', 1, 'https://ror.org/04rtaxr13 Center for Rheumatology'), (54040, 'https://ror.org/04rxwqr66', 'en', 1, 'https://ror.org/04rxwqr66 OneBlood'), (54041, 'https://ror.org/04rznx125', 'en', 1, 'https://ror.org/04rznx125 Johnson Group Consulting'), (54042, 'https://ror.org/04s361q55', 'no_lang_code', 1, 'https://ror.org/04s361q55 Cognitive Research (United States)'), (54043, 'https://ror.org/04s3cew51', 'en', 1, 'https://ror.org/04s3cew51 Milbank Memorial Fund'), (54044, 'https://ror.org/04s47k519', 'no_lang_code', 1, 'https://ror.org/04s47k519 SIT Pharmaceutical (Italy)'), (54045, 'https://ror.org/04s4qhr84', 'de', 1, 'https://ror.org/04s4qhr84 Dr. Walter und Luise Freundlich Stiftung'), (54046, 'https://ror.org/04s8ek474', 'en', 1, 'https://ror.org/04s8ek474 Workforce Snohomish'), (54047, 'https://ror.org/04sab3g34', 'no_lang_code', 1, 'https://ror.org/04sab3g34 Bucher Industries (France)'), (54048, 'https://ror.org/04sc4fe33', 'en', 1, 'https://ror.org/04sc4fe33 Avail Clinical Research'), (54049, 'https://ror.org/04sc6v830', 'no_lang_code', 1, 'https://ror.org/04sc6v830 Seagull BioSolutions (India)'), (54050, 'https://ror.org/04scvbh77', 'no_lang_code', 1, 'https://ror.org/04scvbh77 AZTherapies (United States)'), (54051, 'https://ror.org/04sdnbk30', 'en', 1, 'https://ror.org/04sdnbk30 Universal Biopharma Research Institute'), (54052, 'https://ror.org/04se5nn61', 'en', 1, 'https://ror.org/04se5nn61 Canadian Physiotherapy Association'), (54053, 'https://ror.org/04seaqh41', 'no_lang_code', 1, 'https://ror.org/04seaqh41 Roche (Denmark)'), (54054, 'https://ror.org/04sg26g73', 'en', 1, 'https://ror.org/04sg26g73 National Philanthropic Trust'), (54055, 'https://ror.org/04sjpwm55', 'en', 1, 'https://ror.org/04sjpwm55 Columbia Legal Services'), (54056, 'https://ror.org/04sjz5865', 'en', 1, 'https://ror.org/04sjz5865 North Carolina Clinical Research'), (54057, 'https://ror.org/04sk5kz08', 'en', 1, 'https://ror.org/04sk5kz08 University Diabetes and Endocrine Consultants'), (54058, 'https://ror.org/04sky4s35', 'en', 1, 'https://ror.org/04sky4s35 Institut Penyelidikan dan Kemajuan Pertanian Malaysia Malaysian Agricultural Research and Development Institute'), (54059, 'https://ror.org/04smbh054', 'en', 1, 'https://ror.org/04smbh054 New England Center for Clinical Research'), (54060, 'https://ror.org/04smkn993', 'en', 1, 'https://ror.org/04smkn993 Sundance Clinical Research'), (54061, 'https://ror.org/04spfxf63', 'no_lang_code', 1, 'https://ror.org/04spfxf63 Argenx (Belgium)'), (54062, 'https://ror.org/04sq2be74', 'en', 1, 'https://ror.org/04sq2be74 Westside Center for Clinical Research'), (54063, 'https://ror.org/04sr97002', 'en', 1, 'https://ror.org/04sr97002 Indian Land Tenure Foundation'), (54064, 'https://ror.org/04srvjp38', 'en', 1, 'https://ror.org/04srvjp38 Institute for National Strategic Studies'), (54065, 'https://ror.org/04ssk5v02', 'en', 1, 'https://ror.org/04ssk5v02 OrthoGeorgia'), (54066, 'https://ror.org/04sza0p48', 'en', 1, 'https://ror.org/04sza0p48 Garfield Foundation'), (54067, 'https://ror.org/04t180b28', 'en', 1, 'https://ror.org/04t180b28 Indiana Spine Group'), (54068, 'https://ror.org/04t1dgs65', 'en', 1, 'https://ror.org/04t1dgs65 Shepherds Care Foundation'), (54069, 'https://ror.org/04t1pp919', 'da', 1, 'https://ror.org/04t1pp919 Lida og Oskar Nielsens Fond'), (54070, 'https://ror.org/04t4b2612', 'en', 1, 'https://ror.org/04t4b2612 Puget Sound Educational Service District'), (54071, 'https://ror.org/04t534v40', 'no_lang_code', 1, 'https://ror.org/04t534v40 Cyathus Exquirere (Austria)'), (54072, 'https://ror.org/04t947081', 'en', 1, 'https://ror.org/04t947081 Financial Sector Deepening Trust'), (54073, 'https://ror.org/04t98p806', 'it', 1, 'https://ror.org/04t98p806 Associazione Italiana Pneumologi Ospedalieri'), (54074, 'https://ror.org/04tbrah05', 'en', 1, 'https://ror.org/04tbrah05 Broad Center'), (54075, 'https://ror.org/04tcsrf14', 'de', 1, 'https://ror.org/04tcsrf14 Schmerzklinik Kiel'), (54076, 'https://ror.org/04td3h857', 'en', 1, 'https://ror.org/04td3h857 Institute on Religion and Public Life'), (54077, 'https://ror.org/04tnbfn25', 'no_lang_code', 1, 'https://ror.org/04tnbfn25 AbbVie (United Kingdom)'), (54078, 'https://ror.org/04tnf8c76', 'en', 1, 'https://ror.org/04tnf8c76 ISEF Foundation'), (54079, 'https://ror.org/04tpen147', 'en', 1, 'https://ror.org/04tpen147 Pflugerville Independent School District'), (54080, 'https://ror.org/04tprf655', 'en', 1, 'https://ror.org/04tprf655 Conversation Africa'), (54081, 'https://ror.org/04tqd7s80', 'no_lang_code', 1, 'https://ror.org/04tqd7s80 Otsuka Pharmaceutical (Spain)'), (54082, 'https://ror.org/04tr0pv18', 'no', 1, 'https://ror.org/04tr0pv18 CIVITA'), (54083, 'https://ror.org/04trz4q34', 'no_lang_code', 1, 'https://ror.org/04trz4q34 Synthetic Biologics (United States)'), (54084, 'https://ror.org/04ts2vz32', 'en', 1, 'https://ror.org/04ts2vz32 JM Foundation'), (54085, 'https://ror.org/04ts8g112', 'no_lang_code', 1, 'https://ror.org/04ts8g112 MediWound (Germany)'), (54086, 'https://ror.org/04tsv5127', 'de', 1, 'https://ror.org/04tsv5127 DIAKO'), (54087, 'https://ror.org/04ttatz50', 'en', 1, 'https://ror.org/04ttatz50 Mount Farm Surgery'), (54088, 'https://ror.org/04ttgxj90', 'en', 1, 'https://ror.org/04ttgxj90 Esping Family Foundation'), (54089, 'https://ror.org/04tv4vz10', 'en', 1, 'https://ror.org/04tv4vz10 Pacific Vision Foundation'), (54090, 'https://ror.org/04txr4v68', 'en', 1, 'https://ror.org/04txr4v68 North American Spine Society'), (54091, 'https://ror.org/04tzcp182', 'en', 1, 'https://ror.org/04tzcp182 Child Health Foundation'), (54092, 'https://ror.org/04tzr7454', 'de', 1, 'https://ror.org/04tzr7454 Therapiezentrum Burgau'), (54093, 'https://ror.org/04v0nw239', 'en', 1, 'https://ror.org/04v0nw239 Hellenic Society of Medical Education ΕΛΛΗΝΙΚΗ ΕΤΑΙΡΕΙΑ ΙΑΤΡΙΚΗΣ ΕΚΠΑΙΔΕΥΣΗΣ'), (54094, 'https://ror.org/04v26et66', 'en', 1, 'https://ror.org/04v26et66 Trust for Advancement of Agricultural Sciences'), (54095, 'https://ror.org/04v3pva14', 'no_lang_code', 1, 'https://ror.org/04v3pva14 Almirall (Germany)'), (54096, 'https://ror.org/04v43ea29', 'fr', 1, 'https://ror.org/04v43ea29 Institut Hospitalier Franco Britannique'), (54097, 'https://ror.org/04v5wp242', 'en', 1, 'https://ror.org/04v5wp242 New West Sports Medicine and Orthopedic Surgery'), (54098, 'https://ror.org/04v7rn512', 'en', 1, 'https://ror.org/04v7rn512 Sleep Center of Greater Pittsburgh'), (54099, 'https://ror.org/04vb0yp97', 'no_lang_code', 1, 'https://ror.org/04vb0yp97 Mitsui Chemicals (Germany)'), (54100, 'https://ror.org/04vbp2w76', 'en', 1, 'https://ror.org/04vbp2w76 Mobilize'), (54101, 'https://ror.org/04vdd6t03', 'en', 1, 'https://ror.org/04vdd6t03 Honorable Tina Brozman Foundation'), (54102, 'https://ror.org/04vdxde73', 'no_lang_code', 1, 'https://ror.org/04vdxde73 National Grid (United States)'), (54103, 'https://ror.org/04vepqv68', 'no_lang_code', 1, 'https://ror.org/04vepqv68 DAV (France)'), (54104, 'https://ror.org/04vfkg585', 'en', 1, 'https://ror.org/04vfkg585 Tech Foundation'), (54105, 'https://ror.org/04vh36p08', 'da', 1, 'https://ror.org/04vh36p08 AIDS Fondet'), (54106, 'https://ror.org/04vjpxa50', 'en', 1, 'https://ror.org/04vjpxa50 Sprim Advanced Life Sciences'), (54107, 'https://ror.org/04vkepj11', 'pl', 1, 'https://ror.org/04vkepj11 NZOZ Medi-Spatz'), (54108, 'https://ror.org/04vkkat38', 'no_lang_code', 1, 'https://ror.org/04vkkat38 Teradata (United States)'), (54109, 'https://ror.org/04vn4r534', 'en', 1, 'https://ror.org/04vn4r534 Little Giraffe Foundation'), (54110, 'https://ror.org/04vq36g59', 'no_lang_code', 1, 'https://ror.org/04vq36g59 Apocare Pharma (Germany)'), (54111, 'https://ror.org/04vs74923', 'en', 1, 'https://ror.org/04vs74923 Gratiot County Community Foundation'), (54112, 'https://ror.org/04vsvp708', 'no_lang_code', 1, 'https://ror.org/04vsvp708 ObsEva (Switzerland)'), (54113, 'https://ror.org/04vwh8s73', 'en', 1, 'https://ror.org/04vwh8s73 National Student Clearinghouse'), (54114, 'https://ror.org/04vwp4t32', 'hu', 1, 'https://ror.org/04vwp4t32 Fourmed Kft Gyógyház'), (54115, 'https://ror.org/04vz87118', 'en', 1, 'https://ror.org/04vz87118 Gift of Life Michigan'), (54116, 'https://ror.org/04w0jj406', 'no_lang_code', 1, 'https://ror.org/04w0jj406 Hevert Arzneimittel (Germany)'), (54117, 'https://ror.org/04w1pz213', 'en', 1, 'https://ror.org/04w1pz213 Japan Dental Association 日本歯科医師会'), (54118, 'https://ror.org/04w23ys68', 'en', 1, 'https://ror.org/04w23ys68 Brain Tumour Foundation of Canada'), (54119, 'https://ror.org/04w2t4465', 'en', 1, 'https://ror.org/04w2t4465 American Healthcare Professionals and Friends for Medicine in Israel'), (54120, 'https://ror.org/04w315h57', 'en', 1, 'https://ror.org/04w315h57 British Biophysical Society'), (54121, 'https://ror.org/04w3qme09', 'en', 1, 'https://ror.org/04w3qme09 Third Hospital of Changsha'), (54122, 'https://ror.org/04wdp9936', 'no_lang_code', 1, 'https://ror.org/04wdp9936 Kura Oncology (United States)'), (54123, 'https://ror.org/04wgq9742', 'en', 1, 'https://ror.org/04wgq9742 Oakland Public Education Fund'), (54124, 'https://ror.org/04wk9pg33', 'en', 1, 'https://ror.org/04wk9pg33 Points of Light'), (54125, 'https://ror.org/04wkyys07', 'it', 1, 'https://ror.org/04wkyys07 Fondazione Cariverona'), (54126, 'https://ror.org/04wn5rx73', 'en', 1, 'https://ror.org/04wn5rx73 Getwell Hospital and Research Institute'), (54127, 'https://ror.org/04wnzzd87', 'es', 1, 'https://ror.org/04wnzzd87 Clínica Foscal, Foscal Hospital'), (54128, 'https://ror.org/04wp26z07', 'en', 1, 'https://ror.org/04wp26z07 Fred J Brotherton Charitable Foundation'), (54129, 'https://ror.org/04wpxrf64', 'en', 1, 'https://ror.org/04wpxrf64 Blazeman Foundation for ALS'), (54130, 'https://ror.org/04wq6zc77', 'en', 1, 'https://ror.org/04wq6zc77 American Health Network'), (54131, 'https://ror.org/04wqw2206', 'en', 1, 'https://ror.org/04wqw2206 Digital Promise'), (54132, 'https://ror.org/04wr5bw31', 'en', 1, 'https://ror.org/04wr5bw31 Colorado Orthopedic Consultants'), (54133, 'https://ror.org/04wxajv83', 'en', 1, 'https://ror.org/04wxajv83 South Carolina State Library'), (54134, 'https://ror.org/04wxywd96', 'no_lang_code', 1, 'https://ror.org/04wxywd96 Praekelt Foundation'), (54135, 'https://ror.org/04wyb0a08', 'en', 1, 'https://ror.org/04wyb0a08 AdventHealth Daytona Beach'), (54136, 'https://ror.org/04x0f8p22', 'no_lang_code', 1, 'https://ror.org/04x0f8p22 Immunomedics (Germany)'), (54137, 'https://ror.org/04x1eer44', 'en', 1, 'https://ror.org/04x1eer44 Strive Preparatory Schools'), (54138, 'https://ror.org/04x21zc26', 'en', 1, 'https://ror.org/04x21zc26 Kelley Foundation'), (54139, 'https://ror.org/04x2wfk77', 'en', 1, 'https://ror.org/04x2wfk77 Downie Harper and Shanks Dental Practice'), (54140, 'https://ror.org/04x3eb318', 'no_lang_code', 1, 'https://ror.org/04x3eb318 Brandtone (Ireland)'), (54141, 'https://ror.org/04xayvx70', 'en', 1, 'https://ror.org/04xayvx70 Down Syndrome Research Foundation'), (54142, 'https://ror.org/04xehp049', 'en', 1, 'https://ror.org/04xehp049 Rocky Mountain Orthopedics'), (54143, 'https://ror.org/04xep6d57', 'no_lang_code', 1, 'https://ror.org/04xep6d57 Jazz Pharmaceuticals (France)'), (54144, 'https://ror.org/04xfjgw45', 'no_lang_code', 1, 'https://ror.org/04xfjgw45 Shanxi Fenyang Hospital 山西省汾阳医院'), (54145, 'https://ror.org/04xk91k82', 'en', 1, 'https://ror.org/04xk91k82 Pepose Vision Institute'), (54146, 'https://ror.org/04xn42d49', 'en', 1, 'https://ror.org/04xn42d49 Mt. Pleasant Area Commuity Foundation'), (54147, 'https://ror.org/04xpcky34', 'no_lang_code', 1, 'https://ror.org/04xpcky34 Fischer (Germany)'), (54148, 'https://ror.org/04xpyh310', 'en', 1, 'https://ror.org/04xpyh310 Social Venture Partners'), (54149, 'https://ror.org/04xqqa618', 'en', 1, 'https://ror.org/04xqqa618 AMC Neurology Group Clinical Research Center'), (54150, 'https://ror.org/04xxdqj96', 'no_lang_code', 1, 'https://ror.org/04xxdqj96 Koch Industries (Switzerland)'), (54151, 'https://ror.org/04xxv0d51', 'en', 1, 'https://ror.org/04xxv0d51 Advanced Breast Care'), (54152, 'https://ror.org/04xz21s03', 'no_lang_code', 1, 'https://ror.org/04xz21s03 Futura Medical (United Kingdom)'), (54153, 'https://ror.org/04xzqfk28', 'it', 1, 'https://ror.org/04xzqfk28 Fondazione Internazionale Menarini'), (54154, 'https://ror.org/04y3sb167', 'no_lang_code', 1, 'https://ror.org/04y3sb167 Clarus Therapeutics (United States)'), (54155, 'https://ror.org/04y3z0p88', 'en', 1, 'https://ror.org/04y3z0p88 New Hampshire Bar Foundation'), (54156, 'https://ror.org/04y4x5p83', 'no_lang_code', 1, 'https://ror.org/04y4x5p83 Kymab (United Kingdom)'), (54157, 'https://ror.org/04y55ke86', 'en', 1, 'https://ror.org/04y55ke86 Falck Foundation'), (54158, 'https://ror.org/04y672n69', 'en', 1, 'https://ror.org/04y672n69 Lymphoma Study Association'), (54159, 'https://ror.org/04y6gmk90', 'no_lang_code', 1, 'https://ror.org/04y6gmk90 Iltoo Pharma (France)'), (54160, 'https://ror.org/04y6vvb85', 'en', 1, 'https://ror.org/04y6vvb85 Australian Women and Children''s Research Foundation'), (54161, 'https://ror.org/04y7r1x60', 'en', 1, 'https://ror.org/04y7r1x60 GreatSchools'), (54162, 'https://ror.org/04y8mfg39', 'no_lang_code', 1, 'https://ror.org/04y8mfg39 Indukern (Spain)'), (54163, 'https://ror.org/04ya12x69', 'en', 1, 'https://ror.org/04ya12x69 North Carolina GlaxoSmithKline Foundation'), (54164, 'https://ror.org/04yc0k443', 'en', 1, 'https://ror.org/04yc0k443 Japan Foundation for Aging and Health 高齢化と健康のための国際交流基金'), (54165, 'https://ror.org/04ycden15', 'en', 1, 'https://ror.org/04ycden15 Institut für Demographie Vienna Institute of Demography'), (54166, 'https://ror.org/04yf1p931', 'en', 1, 'https://ror.org/04yf1p931 Elmina B. Sewall Foundation'), (54167, 'https://ror.org/04ygvt366', 'en', 1, 'https://ror.org/04ygvt366 Fleishhacker Foundation'), (54168, 'https://ror.org/04ymgh706', 'en', 1, 'https://ror.org/04ymgh706 Parkinson''s Association'), (54169, 'https://ror.org/04yq9bg08', 'no_lang_code', 1, 'https://ror.org/04yq9bg08 Muller Martini (Switzerland)'), (54170, 'https://ror.org/04yqmzq68', 'en', 1, 'https://ror.org/04yqmzq68 Memphis Health Center'), (54171, 'https://ror.org/04ysex633', 'en', 1, 'https://ror.org/04ysex633 S3 Clinical Research Centers'), (54172, 'https://ror.org/04ysnaw75', 'no_lang_code', 1, 'https://ror.org/04ysnaw75 C4Pain (Denmark)'), (54173, 'https://ror.org/04ytwdt71', 'no_lang_code', 1, 'https://ror.org/04ytwdt71 Afa Jcdecaux (Denmark)'), (54174, 'https://ror.org/04ywsnb39', 'en', 1, 'https://ror.org/04ywsnb39 Alexander Foundation for Orthodontic Research and Education'), (54175, 'https://ror.org/04yxm6j91', 'en', 1, 'https://ror.org/04yxm6j91 Population Foundation of India'), (54176, 'https://ror.org/04yzcyv37', 'en', 1, 'https://ror.org/04yzcyv37 Howard Gilman Foundation'), (54177, 'https://ror.org/04z0j1529', 'en', 1, 'https://ror.org/04z0j1529 Pact Atlanta'), (54178, 'https://ror.org/04z1kv059', 'no_lang_code', 1, 'https://ror.org/04z1kv059 Paradis (Denmark)'), (54179, 'https://ror.org/04z209n06', 'no_lang_code', 1, 'https://ror.org/04z209n06 Body Surface Translations (United States)'), (54180, 'https://ror.org/04z2f8y70', 'en', 1, 'https://ror.org/04z2f8y70 Cataract and Refractive Institute of Florida'), (54181, 'https://ror.org/04z32jy09', 'en', 1, 'https://ror.org/04z32jy09 European Network on Debt and Development'), (54182, 'https://ror.org/04z3s3f96', 'en', 1, 'https://ror.org/04z3s3f96 Thomson Foundation'), (54183, 'https://ror.org/04z5kb841', 'en', 1, 'https://ror.org/04z5kb841 Right Question Institute'), (54184, 'https://ror.org/04z7s6c33', 'en', 1, 'https://ror.org/04z7s6c33 Iowa Policy Project'), (54185, 'https://ror.org/04zamhr10', 'no_lang_code', 1, 'https://ror.org/04zamhr10 Actinium Pharmaceuticals (United States)'), (54186, 'https://ror.org/04zde3c02', 'no_lang_code', 1, 'https://ror.org/04zde3c02 Enclude (United States)'), (54187, 'https://ror.org/04zf2bt80', 'de', 1, 'https://ror.org/04zf2bt80 Diakonie-Klinikum Stuttgart'), (54188, 'https://ror.org/04zj4k586', 'no_lang_code', 1, 'https://ror.org/04zj4k586 Tokuyama (Japan) 株式会社トクヤマ'), (54189, 'https://ror.org/04zkdev66', 'no_lang_code', 1, 'https://ror.org/04zkdev66 TS Tech (Japan)'), (54190, 'https://ror.org/04zmnq951', 'no_lang_code', 1, 'https://ror.org/04zmnq951 Immutep (Germany)'), (54191, 'https://ror.org/04zq6dz45', 'en', 1, 'https://ror.org/04zq6dz45 National Association of Chain Drug Stores'), (54192, 'https://ror.org/04zqh4p27', 'en', 1, 'https://ror.org/04zqh4p27 Canary Foundation'), (54193, 'https://ror.org/04zt79h83', 'no_lang_code', 1, 'https://ror.org/04zt79h83 Roche (Portugal)'), (54194, 'https://ror.org/04zvyjw73', 'no_lang_code', 1, 'https://ror.org/04zvyjw73 Apceth Biopharma (Germany)'), (54195, 'https://ror.org/04zw0mb93', 'en', 1, 'https://ror.org/04zw0mb93 American Dental Hygienists'' Association'), (54196, 'https://ror.org/04zwbbf36', 'en', 1, 'https://ror.org/04zwbbf36 Hamilton Dermatology'), (54197, 'https://ror.org/04zypt071', 'en', 1, 'https://ror.org/04zypt071 Rocky Mountain Diabetes and Osteoporosis Center'), (54198, 'https://ror.org/04zyw0g92', 'en', 1, 'https://ror.org/04zyw0g92 Therafirst Medical Center'), (54199, 'https://ror.org/04zz2b246', 'it', 1, 'https://ror.org/04zz2b246 Fondazione ART per la Ricerca sui Trapianti'), (54200, 'https://ror.org/04zzq8d03', 'no_lang_code', 1, 'https://ror.org/04zzq8d03 Zambon (Italy)'), (54201, 'https://ror.org/0502q3c66', 'en', 1, 'https://ror.org/0502q3c66 Hindustan Latex Family Planning Promotion Trust'), (54202, 'https://ror.org/0504sxa76', 'no_lang_code', 1, 'https://ror.org/0504sxa76 Guerbet (France)'), (54203, 'https://ror.org/0506ech85', 'en', 1, 'https://ror.org/0506ech85 Longview Foundation'), (54204, 'https://ror.org/0509rvg03', 'en', 1, 'https://ror.org/0509rvg03 American College of Veterinary Surgeons'), (54205, 'https://ror.org/050apvm78', 'en', 1, 'https://ror.org/050apvm78 Fraxa Research Foundation'), (54206, 'https://ror.org/050bms902', 'en', 1, 'https://ror.org/050bms902 United Nations Department of Economic and Social Affairs'), (54207, 'https://ror.org/050cw6514', 'en', 1, 'https://ror.org/050cw6514 National Alliance to End Homelessness'), (54208, 'https://ror.org/050d0fq97', 'en', 1, 'https://ror.org/050d0fq97 Affiliated Hospital of Jiangxi University of Traditional Chinese Medicine 江西省中医院'), (54209, 'https://ror.org/050e5fp23', 'en', 1, 'https://ror.org/050e5fp23 Salt Lake County Library Services'), (54210, 'https://ror.org/050g0hk79', 'en', 1, 'https://ror.org/050g0hk79 Volgograd Regional Clinical Oncology Center Волгоградский областной клинический онкологический диспансер № 1'), (54211, 'https://ror.org/050gw5147', 'en', 1, 'https://ror.org/050gw5147 Kobe College Corporation and Japan Education Exchange'), (54212, 'https://ror.org/050gzab21', 'en', 1, 'https://ror.org/050gzab21 Inner Mongolia Maternal and Child Health 内蒙古妇幼保健'), (54213, 'https://ror.org/050k26q88', 'no_lang_code', 1, 'https://ror.org/050k26q88 Deutsche Post (Germany)'), (54214, 'https://ror.org/050n29947', 'en', 1, 'https://ror.org/050n29947 Ecological Foundation Green Action Fundacja Ekologiczna "Zielona Akcja"'), (54215, 'https://ror.org/050nbnj29', 'en', 1, 'https://ror.org/050nbnj29 New Leaders'), (54216, 'https://ror.org/050nv5191', 'en', 1, 'https://ror.org/050nv5191 Rajiv Gandhi Foundation'), (54217, 'https://ror.org/050qgwx77', 'en', 1, 'https://ror.org/050qgwx77 Telethon Foundation'), (54218, 'https://ror.org/050r4h987', 'en', 1, 'https://ror.org/050r4h987 Blue Cross and Blue Shield of Florida Foundation'), (54219, 'https://ror.org/050r7j211', 'en', 1, 'https://ror.org/050r7j211 National Pork Producers Council'), (54220, 'https://ror.org/050txbd07', 'no_lang_code', 1, 'https://ror.org/050txbd07 Rite-Hite (United States)'), (54221, 'https://ror.org/050xscb48', 'en', 1, 'https://ror.org/050xscb48 TropIQ Health Sciences'), (54222, 'https://ror.org/050y98g56', 'en', 1, 'https://ror.org/050y98g56 Alcorso Foundation'), (54223, 'https://ror.org/050zqsm78', 'en', 1, 'https://ror.org/050zqsm78 Direction Générale Coopération internationale et développement Directorate-General for International Cooperation and Development Generaldirektion Internationale Zusammenarbeit und Entwicklung'), (54224, 'https://ror.org/0510bgz94', 'no_lang_code', 1, 'https://ror.org/0510bgz94 Mitsubishi Plastics (Japan) 三菱樹脂株式会社'), (54225, 'https://ror.org/0511edk83', 'en', 1, 'https://ror.org/0511edk83 Foundation for the Advancement in Research in Medicine'), (54226, 'https://ror.org/0513bka31', 'en', 1, 'https://ror.org/0513bka31 Fertility Center of San Antonio'), (54227, 'https://ror.org/05144hn20', 'no_lang_code', 1, 'https://ror.org/05144hn20 ASIT Biotech (Belgium)'), (54228, 'https://ror.org/0514ew608', 'no_lang_code', 1, 'https://ror.org/0514ew608 Publicis Groupe (United States)'), (54229, 'https://ror.org/0516vxk09', 'en', 1, 'https://ror.org/0516vxk09 Jilin Maternity and Child Health Care Hospital 吉林市妇幼保健院'), (54230, 'https://ror.org/0517a1s55', 'en', 1, 'https://ror.org/0517a1s55 Associates in Neurology'), (54231, 'https://ror.org/0518f9g13', 'pl', 1, 'https://ror.org/0518f9g13 Wojewódzki Inspektorat Ochrony Środowiska w Warszawie'), (54232, 'https://ror.org/0518jvn15', 'no_lang_code', 1, 'https://ror.org/0518jvn15 Genera (Croatia)'), (54233, 'https://ror.org/051bbf974', 'en', 1, 'https://ror.org/051bbf974 Drug Studies America'), (54234, 'https://ror.org/051bx8r16', 'en', 1, 'https://ror.org/051bx8r16 National Research Development Corporation'), (54235, 'https://ror.org/051f3s362', 'it', 1, 'https://ror.org/051f3s362 Fondazione Pezcoller'), (54236, 'https://ror.org/051gnwf77', 'en', 1, 'https://ror.org/051gnwf77 Retina Specialists of Michigan'), (54237, 'https://ror.org/051h7x990', 'de', 1, 'https://ror.org/051h7x990 Reha Rheinfelden'), (54238, 'https://ror.org/051jd1s66', 'en', 1, 'https://ror.org/051jd1s66 Washington State Institute for Public Policy'), (54239, 'https://ror.org/051k8ns77', 'en', 1, 'https://ror.org/051k8ns77 Center for Energy Workforce Development'), (54240, 'https://ror.org/051mdb162', 'en', 1, 'https://ror.org/051mdb162 Heartbeat Trust'), (54241, 'https://ror.org/051mth390', 'no_lang_code', 1, 'https://ror.org/051mth390 BIC (France)'), (54242, 'https://ror.org/051nc1562', 'en', 1, 'https://ror.org/051nc1562 Orthopedic One'), (54243, 'https://ror.org/051nxta34', 'de', 1, 'https://ror.org/051nxta34 Landesfachhochschule für Gesundheitsberufe Claudiana'), (54244, 'https://ror.org/051pbge72', 'no_lang_code', 1, 'https://ror.org/051pbge72 WiLAN (Canada)'), (54245, 'https://ror.org/051s40g85', 'en', 1, 'https://ror.org/051s40g85 Farm Concern International'), (54246, 'https://ror.org/051s9pp55', 'no_lang_code', 1, 'https://ror.org/051s9pp55 Hirose Electric (Japan) ヒロセ電機株式会社'), (54247, 'https://ror.org/051sqq958', 'en', 1, 'https://ror.org/051sqq958 Vermont State House'), (54248, 'https://ror.org/051ss5t53', 'en', 1, 'https://ror.org/051ss5t53 Cardiac Study Center'), (54249, 'https://ror.org/051t33546', 'en', 1, 'https://ror.org/051t33546 Asian Disaster Preparedness Center'), (54250, 'https://ror.org/051tj3a26', 'no_lang_code', 1, 'https://ror.org/051tj3a26 IBSA Institut Biochimique (Switzerland)'), (54251, 'https://ror.org/051tmqm80', 'en', 1, 'https://ror.org/051tmqm80 JEHT Foundation'), (54252, 'https://ror.org/051vpna32', 'no_lang_code', 1, 'https://ror.org/051vpna32 Siemens (Singapore)'), (54253, 'https://ror.org/051vsps84', 'en', 1, 'https://ror.org/051vsps84 Retina Partners'), (54254, 'https://ror.org/051w9x193', 'en', 1, 'https://ror.org/051w9x193 Phipps Houses'), (54255, 'https://ror.org/051xfzj96', 'en', 1, 'https://ror.org/051xfzj96 Cleveland Eye Clinic'), (54256, 'https://ror.org/051xm8t15', 'en', 1, 'https://ror.org/051xm8t15 Riverside Clinical Research'), (54257, 'https://ror.org/051yr1559', 'en', 1, 'https://ror.org/051yr1559 DeGregorio Family Foundation'), (54258, 'https://ror.org/0520qph23', 'en', 1, 'https://ror.org/0520qph23 Muzeum Narodowe w Gdańsku National Museum in Gdansk'), (54259, 'https://ror.org/0521k5n17', 'no_lang_code', 1, 'https://ror.org/0521k5n17 Western Digital (Japan)'), (54260, 'https://ror.org/05225cn18', 'no_lang_code', 1, 'https://ror.org/05225cn18 InDex Pharmaceuticals (Sweden)'), (54261, 'https://ror.org/0523s0t06', 'no_lang_code', 1, 'https://ror.org/0523s0t06 Gerot Lannach (Austria)'), (54262, 'https://ror.org/052595073', 'de', 1, 'https://ror.org/052595073 Erich Und Gertrud Roggenbuck Stiftung'), (54263, 'https://ror.org/0527hjt81', 'en', 1, 'https://ror.org/0527hjt81 Clinical Science Institute'), (54264, 'https://ror.org/0527w1g58', 'sv', 1, 'https://ror.org/0527w1g58'), (54265, 'https://ror.org/052a0g260', 'en', 1, 'https://ror.org/052a0g260 Arab British Chamber of Commerce غرفة التجارة العربية البريطانية'), (54266, 'https://ror.org/052bk9j85', 'no_lang_code', 1, 'https://ror.org/052bk9j85 PHARM (Italy)'), (54267, 'https://ror.org/052c7a780', 'en', 1, 'https://ror.org/052c7a780 Australia Bioinformatics Resource'), (54268, 'https://ror.org/052cecc97', 'en', 1, 'https://ror.org/052cecc97 London Clinic'), (54269, 'https://ror.org/052ckfz09', 'en', 1, 'https://ror.org/052ckfz09 Pediatric Brain Tumor Foundation'), (54270, 'https://ror.org/052d5f872', 'no_lang_code', 1, 'https://ror.org/052d5f872 Indena (Italy)'), (54271, 'https://ror.org/052dytr59', 'pt', 1, 'https://ror.org/052dytr59 Centro de Pesquisas Oncológicas'), (54272, 'https://ror.org/052fbzq52', 'en', 1, 'https://ror.org/052fbzq52 DAISY Foundation'), (54273, 'https://ror.org/052gr6m21', 'no_lang_code', 1, 'https://ror.org/052gr6m21 Konami (Japan) コナミホールディングス株式会社'), (54274, 'https://ror.org/052jep661', 'en', 1, 'https://ror.org/052jep661 Klaus Tschira Foundation'), (54275, 'https://ror.org/052krvf25', 'de', 1, 'https://ror.org/052krvf25 Winghofer Medicum'), (54276, 'https://ror.org/052nngb38', 'en', 1, 'https://ror.org/052nngb38 Cancer Research Foundation'), (54277, 'https://ror.org/052pyty42', 'en', 1, 'https://ror.org/052pyty42 Donner Canadian Foundation Fondation canadienne Donner'), (54278, 'https://ror.org/052q26725', 'en', 1, 'https://ror.org/052q26725 Affiliated Hospital of Shandong University of Traditional Chinese Medicine 山东中医药大学附属医院'), (54279, 'https://ror.org/052qtc529', 'en', 1, 'https://ror.org/052qtc529 Bernice E Holland Foundation'), (54280, 'https://ror.org/052rprq10', 'en', 1, 'https://ror.org/052rprq10 Childrens Brittle Bone Foundation'), (54281, 'https://ror.org/052s8wv93', 'en', 1, 'https://ror.org/052s8wv93 An Roinn Leanaí agus Gnóthaí Óige Department of Children and Youth Affairs'), (54282, 'https://ror.org/052t3p256', 'fr', 1, 'https://ror.org/052t3p256 Hôpital Joseph-Ducuing'), (54283, 'https://ror.org/052v10q58', 'no_lang_code', 1, 'https://ror.org/052v10q58 VDO (Germany)'), (54284, 'https://ror.org/052xee859', 'en', 1, 'https://ror.org/052xee859 Clayton Eye Center'), (54285, 'https://ror.org/052z64z26', 'en', 1, 'https://ror.org/052z64z26 Danish Chiropractors’ Association Dansk Kiropraktor Forening'), (54286, 'https://ror.org/052zm4082', 'en', 1, 'https://ror.org/052zm4082 Discover Vision Centers'), (54287, 'https://ror.org/0530jqt13', 'en', 1, 'https://ror.org/0530jqt13 John Thomas Schroeder Foundation'), (54288, 'https://ror.org/0530vbv92', 'fr', 1, 'https://ror.org/0530vbv92 Oxfam Solidarité'), (54289, 'https://ror.org/0530w9m46', 'no_lang_code', 1, 'https://ror.org/0530w9m46 Oculis (Iceland)'), (54290, 'https://ror.org/0530z0775', 'en', 1, 'https://ror.org/0530z0775 Meadows Dental Clinic'), (54291, 'https://ror.org/0531chw57', 'en', 1, 'https://ror.org/0531chw57 Center For Medicare Advocacy'), (54292, 'https://ror.org/05323zs40', 'en', 1, 'https://ror.org/05323zs40 Foundation for Economic Education'), (54293, 'https://ror.org/0536g5z46', 'en', 1, 'https://ror.org/0536g5z46 International Network of Health Promoting Hospitals & Health Services'), (54294, 'https://ror.org/0539m8k84', 'fr', 1, 'https://ror.org/0539m8k84 Fondation Tuck'), (54295, 'https://ror.org/0539z1e56', 'no_lang_code', 1, 'https://ror.org/0539z1e56 Neoperl (Germany)'), (54296, 'https://ror.org/053aytr73', 'en', 1, 'https://ror.org/053aytr73 Accion International'), (54297, 'https://ror.org/053bhq168', 'en', 1, 'https://ror.org/053bhq168 Community Foundation Grand Forks East Grand Forks and Region'), (54298, 'https://ror.org/053dw0508', 'en', 1, 'https://ror.org/053dw0508 Columbus Eye Surgery Center'), (54299, 'https://ror.org/053fdhz60', 'en', 1, 'https://ror.org/053fdhz60 San Diego Fertility Center'), (54300, 'https://ror.org/053g1y030', 'en', 1, 'https://ror.org/053g1y030 Foundation for Vaccine Research'), (54301, 'https://ror.org/053gvz184', 'en', 1, 'https://ror.org/053gvz184 Barr Foundation'), (54302, 'https://ror.org/053jgsp62', 'en', 1, 'https://ror.org/053jgsp62 Institut für Iranistik Institute of Iranian Studies'), (54303, 'https://ror.org/053khm112', 'en', 1, 'https://ror.org/053khm112 Frankel Family Foundation'), (54304, 'https://ror.org/053kmxx33', 'en', 1, 'https://ror.org/053kmxx33 Casa Latina'), (54305, 'https://ror.org/053kxry22', 'no_lang_code', 1, 'https://ror.org/053kxry22 Sahyadri Hospital'), (54306, 'https://ror.org/053mjqy14', 'no_lang_code', 1, 'https://ror.org/053mjqy14 Natural Synergies (United Kingdom)'), (54307, 'https://ror.org/053nqm606', 'en', 1, 'https://ror.org/053nqm606 Fiatal Képzőművészek Stúdiója Studio of Young Artists Association'), (54308, 'https://ror.org/053ppg430', 'en', 1, 'https://ror.org/053ppg430 First Tee of Greater Seattle'), (54309, 'https://ror.org/053qbaa96', 'en', 1, 'https://ror.org/053qbaa96 Park Foundation'), (54310, 'https://ror.org/053qr8q83', 'en', 1, 'https://ror.org/053qr8q83 Jonathan Powell Hope Foundation'), (54311, 'https://ror.org/053s4c885', 'en', 1, 'https://ror.org/053s4c885 New Brunswick Public Library Service'), (54312, 'https://ror.org/053sgn987', 'en', 1, 'https://ror.org/053sgn987 TOTALL Diabetes Hormone Institute'), (54313, 'https://ror.org/053w93n68', 'en', 1, 'https://ror.org/053w93n68 FSHD Global Research Foundation'), (54314, 'https://ror.org/053wha491', 'en', 1, 'https://ror.org/053wha491 Bon Secours Mary Immaculate Hospital'), (54315, 'https://ror.org/053xq8k96', 'no_lang_code', 1, 'https://ror.org/053xq8k96 Actelion (Netherlands)'), (54316, 'https://ror.org/053xt2a19', 'en', 1, 'https://ror.org/053xt2a19 London International Development Centre'), (54317, 'https://ror.org/053ynnf14', 'en', 1, 'https://ror.org/053ynnf14 Native American Youth and Family Center'), (54318, 'https://ror.org/053yw1360', 'en', 1, 'https://ror.org/053yw1360 Nanxi Mountain Hospital 广西纳西山医院'), (54319, 'https://ror.org/053yw9t96', 'en', 1, 'https://ror.org/053yw9t96 Canadian Intensive Care Foundation'), (54320, 'https://ror.org/053z5p960', 'no_lang_code', 1, 'https://ror.org/053z5p960 Mobile Assay (United States)'), (54321, 'https://ror.org/053zny898', 'de', 1, 'https://ror.org/053zny898 SAPHIR Radiochirurgie'), (54322, 'https://ror.org/054162a80', 'no_lang_code', 1, 'https://ror.org/054162a80 Universal Court Reporting (United States)'), (54323, 'https://ror.org/05420w677', 'no_lang_code', 1, 'https://ror.org/05420w677 Light Sciences Oncology (United States)'), (54324, 'https://ror.org/0543wxy83', 'en', 1, 'https://ror.org/0543wxy83 Dermatology Research Center'), (54325, 'https://ror.org/0549zep27', 'en', 1, 'https://ror.org/0549zep27 Association for Glycogen Storage Disease'), (54326, 'https://ror.org/054ak8145', 'en', 1, 'https://ror.org/054ak8145 European Scientific Working group on Influenza'), (54327, 'https://ror.org/054bqdz45', 'en', 1, 'https://ror.org/054bqdz45 Leukaemia and Blood Cancer New Zealand'), (54328, 'https://ror.org/054d9v685', 'en', 1, 'https://ror.org/054d9v685 National Foundation for Medical Research and Innovation'), (54329, 'https://ror.org/054e5vv45', 'en', 1, 'https://ror.org/054e5vv45 Girard Foundation'), (54330, 'https://ror.org/054jwp491', 'en', 1, 'https://ror.org/054jwp491 Arkay Foundation'), (54331, 'https://ror.org/054k1z757', 'no_lang_code', 1, 'https://ror.org/054k1z757 GALENpharma (Germany)'), (54332, 'https://ror.org/054kfq324', 'en', 1, 'https://ror.org/054kfq324 American Society for Radiation Oncology'), (54333, 'https://ror.org/054nv4a88', 'en', 1, 'https://ror.org/054nv4a88 Ford Family Foundation'), (54334, 'https://ror.org/054qagt04', 'no_lang_code', 1, 'https://ror.org/054qagt04 Assembly Biosciences (United States)'), (54335, 'https://ror.org/054qhne75', 'en', 1, 'https://ror.org/054qhne75 Edcamp Foundation'); INSERT INTO `rors` VALUES (54336, 'https://ror.org/054r1pe06', 'en', 1, 'https://ror.org/054r1pe06 New York City Charter School Center'), (54337, 'https://ror.org/054r3wx31', 'no_lang_code', 1, 'https://ror.org/054r3wx31 Hill Top Research (United States)'), (54338, 'https://ror.org/054r7w343', 'en', 1, 'https://ror.org/054r7w343 John-Kenyon'), (54339, 'https://ror.org/054rttv92', 'en', 1, 'https://ror.org/054rttv92 Gesellschaft für Pädiatrische Onkologie und Hämatologie Society of Paediatric Oncology and Haematology'), (54340, 'https://ror.org/054t0kh70', 'no_lang_code', 1, 'https://ror.org/054t0kh70 Yueqing People''s Hospital 乐清人民医院'), (54341, 'https://ror.org/054xkse79', 'en', 1, 'https://ror.org/054xkse79 American Academy of Implant Dentistry'), (54342, 'https://ror.org/054ztez58', 'en', 1, 'https://ror.org/054ztez58 Institute for Female Pelvic Medicine and Reconstructive Surgery'), (54343, 'https://ror.org/05501m963', 'en', 1, 'https://ror.org/05501m963 Obayashi Foundation 大林財団'), (54344, 'https://ror.org/0551a9d91', 'en', 1, 'https://ror.org/0551a9d91 Insight Therapeutics'), (54345, 'https://ror.org/05525qx48', 'en', 1, 'https://ror.org/05525qx48 Tauber Eye Center'), (54346, 'https://ror.org/0552rpn97', 'en', 1, 'https://ror.org/0552rpn97 Midwest Eye Center'), (54347, 'https://ror.org/05539he75', 'no_lang_code', 1, 'https://ror.org/05539he75 Brose Fahrzeugteile (Germany)'), (54348, 'https://ror.org/0553bq478', 'no_lang_code', 1, 'https://ror.org/0553bq478 Axcella Health (United States)'), (54349, 'https://ror.org/0554nwf36', 'en', 1, 'https://ror.org/0554nwf36 Arab Federation for Libraries & Information الإتحاد العربي للمكتبات والمعلومات - اعلم'), (54350, 'https://ror.org/05551pd32', 'da', 1, 'https://ror.org/05551pd32 Albertslund Kommune'), (54351, 'https://ror.org/05556yk85', 'en', 1, 'https://ror.org/05556yk85 Colorado Kidney Care'), (54352, 'https://ror.org/0555br587', 'en', 1, 'https://ror.org/0555br587 Employee Assistance Research Foundation'), (54353, 'https://ror.org/0556dev32', 'en', 1, 'https://ror.org/0556dev32 Korea Foundation for Advanced Studies'), (54354, 'https://ror.org/0556xc623', 'en', 1, 'https://ror.org/0556xc623 Children''s Home Society of Washington'), (54355, 'https://ror.org/05574b264', 'en', 1, 'https://ror.org/05574b264 Washington State Budget and Policy Center'), (54356, 'https://ror.org/0559b0w16', 'en', 1, 'https://ror.org/0559b0w16 Hydrogen Education Foundation'), (54357, 'https://ror.org/055b77k30', 'no_lang_code', 1, 'https://ror.org/055b77k30 Wabtec (United States)'), (54358, 'https://ror.org/055bddn28', 'en', 1, 'https://ror.org/055bddn28 Lake County Schools'), (54359, 'https://ror.org/055cmzr24', 'en', 1, 'https://ror.org/055cmzr24 MaxCure Hospitals'), (54360, 'https://ror.org/055dxk232', 'en', 1, 'https://ror.org/055dxk232 Western Maryland Health System'), (54361, 'https://ror.org/055e82g34', 'en', 1, 'https://ror.org/055e82g34 Foundation for Iranian Studies'), (54362, 'https://ror.org/055fn0a35', 'de', 1, 'https://ror.org/055fn0a35 Spital Zollikerberg'), (54363, 'https://ror.org/055jart15', 'en', 1, 'https://ror.org/055jart15 PolicyLink'), (54364, 'https://ror.org/055pzrx21', 'en', 1, 'https://ror.org/055pzrx21 O. J. Noer Research Foundation'), (54365, 'https://ror.org/055vygt66', 'en', 1, 'https://ror.org/055vygt66 Engineering Information Foundation'), (54366, 'https://ror.org/055wmq758', 'no_lang_code', 1, 'https://ror.org/055wmq758 Auris Medical (Switzerland)'), (54367, 'https://ror.org/055xdas15', 'no_lang_code', 1, 'https://ror.org/055xdas15 AIM Group (Tanzania)'), (54368, 'https://ror.org/055xh0h60', 'no_lang_code', 1, 'https://ror.org/055xh0h60 Nordic Pharma (Czechia)'), (54369, 'https://ror.org/055y3af70', 'en', 1, 'https://ror.org/055y3af70 Daniel Heumann Fund for Spinal Cord Research'), (54370, 'https://ror.org/055ybk671', 'en', 1, 'https://ror.org/055ybk671 Japan Breast Cancer Research Group 日本乳癌研究グループ'), (54371, 'https://ror.org/0560cwj87', 'en', 1, 'https://ror.org/0560cwj87 Musella Foundation For Brain Tumor Research and Information'), (54372, 'https://ror.org/0560gb543', 'no_lang_code', 1, 'https://ror.org/0560gb543 Bausch Health (United Kingdom)'), (54373, 'https://ror.org/0563hxx86', 'en', 1, 'https://ror.org/0563hxx86 National Kidney Foundation of South Africa'), (54374, 'https://ror.org/0563mqb36', 'no_lang_code', 1, 'https://ror.org/0563mqb36 Photonamic (Germany)'), (54375, 'https://ror.org/0564n1z40', 'en', 1, 'https://ror.org/0564n1z40 Asthma Foundation of Tasmania'), (54376, 'https://ror.org/0564r0810', 'no_lang_code', 1, 'https://ror.org/0564r0810 AU Optronics (Taiwan)'), (54377, 'https://ror.org/0567cdq47', 'en', 1, 'https://ror.org/0567cdq47 Project Everyone'), (54378, 'https://ror.org/056a5c150', 'en', 1, 'https://ror.org/056a5c150 Hampton Roads Community Foundation'), (54379, 'https://ror.org/056b3tw70', 'en', 1, 'https://ror.org/056b3tw70 Center Orthopedic & Neurosurgical Care & Research'), (54380, 'https://ror.org/056brkm80', 'en', 1, 'https://ror.org/056brkm80 Hospitalsenhed Midt Regional Hospital Central Jutland'), (54381, 'https://ror.org/056egm241', 'no_lang_code', 1, 'https://ror.org/056egm241 Siemens (Switzerland)'), (54382, 'https://ror.org/056ezdx45', 'en', 1, 'https://ror.org/056ezdx45 Surin Hospital โรงพยาบาลสุรินทร์'), (54383, 'https://ror.org/056f6wa50', 'sv', 1, 'https://ror.org/056f6wa50 Barndiabetesfondens'), (54384, 'https://ror.org/056gcnh74', 'en', 1, 'https://ror.org/056gcnh74 Nancy Owens Memorial Foundation'), (54385, 'https://ror.org/056hgyx35', 'en', 1, 'https://ror.org/056hgyx35 University Prep'), (54386, 'https://ror.org/056kpdx27', 'nl', 1, 'https://ror.org/056kpdx27 HOVON – the Haemato Oncology Foundation for Adults in the Netherlands Hemato-Oncologie voor Volwassenen Nederland, Hovon'), (54387, 'https://ror.org/056q5pg38', 'en', 1, 'https://ror.org/056q5pg38 National Association of Student Financial Aid Administrators'), (54388, 'https://ror.org/056q6cq39', 'en', 1, 'https://ror.org/056q6cq39 Developing Countries Vaccine Manufactures Network'), (54389, 'https://ror.org/056rb6h71', 'en', 1, 'https://ror.org/056rb6h71 Draper Richards Kaplan Foundation'), (54390, 'https://ror.org/056sccp51', 'en', 1, 'https://ror.org/056sccp51 Ministry of Labour, Family, Social Affairs and Equal Opportunities'), (54391, 'https://ror.org/056serj42', 'ms', 1, 'https://ror.org/056serj42 KPJ Ampang Puteri Specialist Hospital'), (54392, 'https://ror.org/056t5vv75', 'en', 1, 'https://ror.org/056t5vv75 King Mongkut Memorial Hospital โรงพยาบาลพระจอมเกล้าจังหวัดเพชรบุรี'), (54393, 'https://ror.org/056t7dy19', 'en', 1, 'https://ror.org/056t7dy19 National Health Law Program'), (54394, 'https://ror.org/056tjaa40', 'en', 1, 'https://ror.org/056tjaa40 Foundation for Psychocultural Research'), (54395, 'https://ror.org/056tx3q55', 'en', 1, 'https://ror.org/056tx3q55 Kraff Eye Institute'), (54396, 'https://ror.org/056v5p787', 'fr', 1, 'https://ror.org/056v5p787 Centre Hospitalier Saint-Nazaire'), (54397, 'https://ror.org/056wwjf73', 'en', 1, 'https://ror.org/056wwjf73 Baltic Studies Centre'), (54398, 'https://ror.org/056zfc440', 'no_lang_code', 1, 'https://ror.org/056zfc440 Visteon (South Korea)'), (54399, 'https://ror.org/056zmsz35', 'en', 1, 'https://ror.org/056zmsz35 Northeast Baptist Hospital'), (54400, 'https://ror.org/0570b1p95', 'en', 1, 'https://ror.org/0570b1p95 Christianity Today'), (54401, 'https://ror.org/0572j1008', 'en', 1, 'https://ror.org/0572j1008 Missouri Heart Center'), (54402, 'https://ror.org/05735qy63', 'no_lang_code', 1, 'https://ror.org/05735qy63 Polichem (Switzerland)'), (54403, 'https://ror.org/0574d2g06', 'no_lang_code', 1, 'https://ror.org/0574d2g06 LETI Pharma (Germany)'), (54404, 'https://ror.org/0574ytm77', 'en', 1, 'https://ror.org/0574ytm77 Atsumi International Scholarship Foundation 渥美国際交流財団'), (54405, 'https://ror.org/057766n30', 'no_lang_code', 1, 'https://ror.org/057766n30 Evoqua Water Technologies (United States)'), (54406, 'https://ror.org/0577zeb92', 'no_lang_code', 1, 'https://ror.org/0577zeb92 Cytovac (Denmark)'), (54407, 'https://ror.org/0578kzx16', 'en', 1, 'https://ror.org/0578kzx16 Complete Eye Care of Medina'), (54408, 'https://ror.org/05797ak83', 'no_lang_code', 1, 'https://ror.org/05797ak83 Regulon (Greece)'), (54409, 'https://ror.org/057a67e20', 'en', 1, 'https://ror.org/057a67e20 Setshaba Research Centre'), (54410, 'https://ror.org/057b7mv80', 'en', 1, 'https://ror.org/057b7mv80 Los Alamitos Medical Center'), (54411, 'https://ror.org/057bn5g61', 'sv', 1, 'https://ror.org/057bn5g61 Lindesbergs lasarett'), (54412, 'https://ror.org/057c61d28', 'en', 1, 'https://ror.org/057c61d28 Georgia Cancer Specialists'), (54413, 'https://ror.org/057dcw631', 'en', 1, 'https://ror.org/057dcw631 Innovation Center for U.S. Dairy'), (54414, 'https://ror.org/057k33642', 'en', 1, 'https://ror.org/057k33642 New York eHealth Collaborative'), (54415, 'https://ror.org/057p4eb38', 'no_lang_code', 1, 'https://ror.org/057p4eb38 Bioibérica (Spain)'), (54416, 'https://ror.org/057pe1087', 'no_lang_code', 1, 'https://ror.org/057pe1087 Genmab (Denmark)'), (54417, 'https://ror.org/057q2wg27', 'no_lang_code', 1, 'https://ror.org/057q2wg27 Chilbal Film (Denmark)'), (54418, 'https://ror.org/057r3sk04', 'no_lang_code', 1, 'https://ror.org/057r3sk04 Bioven (United Kingdom)'), (54419, 'https://ror.org/057rcgy56', 'en', 1, 'https://ror.org/057rcgy56 Bharti Centre for Communication'), (54420, 'https://ror.org/057skcn66', 'en', 1, 'https://ror.org/057skcn66 Chongqing Jiulongpo People''s Hospital'), (54421, 'https://ror.org/057tdah35', 'es', 1, 'https://ror.org/057tdah35 Grupo Español Multidisciplinar de Melanoma'), (54422, 'https://ror.org/057tjtc32', 'en', 1, 'https://ror.org/057tjtc32 Geological Society of Australia'), (54423, 'https://ror.org/057vhsp23', 'no_lang_code', 1, 'https://ror.org/057vhsp23 Nuctech (China) 威视股份'), (54424, 'https://ror.org/057xq2p09', 'en', 1, 'https://ror.org/057xq2p09 Frey Foundation'), (54425, 'https://ror.org/057yjva61', 'en', 1, 'https://ror.org/057yjva61 Triad Clinical Trials'), (54426, 'https://ror.org/0584p3034', 'no_lang_code', 1, 'https://ror.org/0584p3034 Sealed Air (United States)'), (54427, 'https://ror.org/0584zca10', 'no_lang_code', 1, 'https://ror.org/0584zca10 Oquirr Marketing Institute (United States)'), (54428, 'https://ror.org/0585zpm44', 'en', 1, 'https://ror.org/0585zpm44 West Coast Retina'), (54429, 'https://ror.org/0586ax657', 'en', 1, 'https://ror.org/0586ax657 Dermatology Associates of Tallahassee'), (54430, 'https://ror.org/0587cd856', 'en', 1, 'https://ror.org/0587cd856 Grigg Lewis Foundation'), (54431, 'https://ror.org/0587jcv93', 'en', 1, 'https://ror.org/0587jcv93 Foundation To Eradicate Duchenne'), (54432, 'https://ror.org/0587zpn52', 'en', 1, 'https://ror.org/0587zpn52 Grieg Foundation'), (54433, 'https://ror.org/058djb788', 'en', 1, 'https://ror.org/058djb788 Cairo University hospitals مستشفيات جامعة القاهرة'), (54434, 'https://ror.org/058dp8a10', 'en', 1, 'https://ror.org/058dp8a10 Karl Kirchgessner Foundation'), (54435, 'https://ror.org/058f84k27', 'it', 1, 'https://ror.org/058f84k27 Fondazione Italiana di Ricerca per la Sclerosi Laterale Amiotrofica Italian research Foundation for ALS'), (54436, 'https://ror.org/058fjhm66', 'de', 1, 'https://ror.org/058fjhm66 Baugarten Zürich Stiftung'), (54437, 'https://ror.org/058h4cw85', 'en', 1, 'https://ror.org/058h4cw85 The Spine & Nerve Centers of the Virginias'), (54438, 'https://ror.org/058j98r16', 'de', 1, 'https://ror.org/058j98r16 Berthold Leibinger Stiftung'), (54439, 'https://ror.org/058ns4d40', 'en', 1, 'https://ror.org/058ns4d40 Hoglund Foundation'), (54440, 'https://ror.org/058p87465', 'en', 1, 'https://ror.org/058p87465 Rhode Island Blood Center'), (54441, 'https://ror.org/058pt1z69', 'no_lang_code', 1, 'https://ror.org/058pt1z69 Luzitin (Portugal)'), (54442, 'https://ror.org/058qcpv96', 'no_lang_code', 1, 'https://ror.org/058qcpv96 Electrolux (Sweden)'), (54443, 'https://ror.org/058rchw45', 'en', 1, 'https://ror.org/058rchw45 American Society of Mammalogists'), (54444, 'https://ror.org/058rdjg17', 'no_lang_code', 1, 'https://ror.org/058rdjg17 DEKA (United States)'), (54445, 'https://ror.org/058rrg706', 'no_lang_code', 1, 'https://ror.org/058rrg706 Carroll & Meynell Transformers (United Kingdom)'), (54446, 'https://ror.org/058st1g82', 'no_lang_code', 1, 'https://ror.org/058st1g82 DeLaval (Sweden)'), (54447, 'https://ror.org/058xgwf08', 'en', 1, 'https://ror.org/058xgwf08 Carcinoid Cancer Foundation'), (54448, 'https://ror.org/058y7jv19', 'en', 1, 'https://ror.org/058y7jv19 German Marshall Fund of the United States'), (54449, 'https://ror.org/059030y69', 'no_lang_code', 1, 'https://ror.org/059030y69 Codon (Germany)'), (54450, 'https://ror.org/05938c493', 'pl', 1, 'https://ror.org/05938c493 Specjalistyczny Szpital im.E.Szczeklika w Tarnowie'), (54451, 'https://ror.org/0594ske86', 'en', 1, 'https://ror.org/0594ske86 VA Nebraska Western Iowa Health Care System'), (54452, 'https://ror.org/0597jrb38', 'en', 1, 'https://ror.org/0597jrb38 Grable Foundation'), (54453, 'https://ror.org/0597vc250', 'en', 1, 'https://ror.org/0597vc250 British Society of Audiology'), (54454, 'https://ror.org/0597vhv77', 'no_lang_code', 1, 'https://ror.org/0597vhv77 Noritsu (Japan) ノーリツ鋼機株式会社'), (54455, 'https://ror.org/05980d896', 'en', 1, 'https://ror.org/05980d896 Angioma Alliance'), (54456, 'https://ror.org/05983pc92', 'en', 1, 'https://ror.org/05983pc92 Malaysia Toray Science Foundation'), (54457, 'https://ror.org/059a53184', 'no_lang_code', 1, 'https://ror.org/059a53184 TauRx (United Kingdom)'), (54458, 'https://ror.org/059b87n81', 'fr', 1, 'https://ror.org/059b87n81 Infirmerie Protestante'), (54459, 'https://ror.org/059c9vn90', 'en', 1, 'https://ror.org/059c9vn90 First Affiliated Hospital of Henan University of Traditional Chinese Medicine 河南中医学院第一医院'), (54460, 'https://ror.org/059fmxd48', 'fr', 1, 'https://ror.org/059fmxd48 Clinique Mutualiste Chirurgicale'), (54461, 'https://ror.org/059gb3r46', 'en', 1, 'https://ror.org/059gb3r46 TKL Research'), (54462, 'https://ror.org/059hdm253', 'da', 1, 'https://ror.org/059hdm253 Harboefonden'), (54463, 'https://ror.org/059j2zt82', 'en', 1, 'https://ror.org/059j2zt82 Mobility Outreach International'), (54464, 'https://ror.org/059ja6e58', 'en', 1, 'https://ror.org/059ja6e58 Defense Technology Security Administration'), (54465, 'https://ror.org/059mdcg68', 'no_lang_code', 1, 'https://ror.org/059mdcg68 Bavarian Nordic (United States)'), (54466, 'https://ror.org/059mm1v54', 'no_lang_code', 1, 'https://ror.org/059mm1v54 Wirtgen (Germany)'), (54467, 'https://ror.org/059nnvm90', 'en', 1, 'https://ror.org/059nnvm90 Connecticut Office of the Governor'), (54468, 'https://ror.org/059psfa96', 'en', 1, 'https://ror.org/059psfa96 Ben and Maytee Fisch Foundation'), (54469, 'https://ror.org/059q6am89', 'en', 1, 'https://ror.org/059q6am89 EB House Austria'), (54470, 'https://ror.org/059rngg59', 'en', 1, 'https://ror.org/059rngg59 American Friends of Laniado Hospital'), (54471, 'https://ror.org/059s09c28', 'no_lang_code', 1, 'https://ror.org/059s09c28 Cook Medical (Denmark)'), (54472, 'https://ror.org/059sg9z95', 'no_lang_code', 1, 'https://ror.org/059sg9z95 Kaytee Avian Foundation'), (54473, 'https://ror.org/059sh8413', 'en', 1, 'https://ror.org/059sh8413 Office of the State Inspector General'), (54474, 'https://ror.org/059w6nf94', 'en', 1, 'https://ror.org/059w6nf94 International Centre for Art and New Technologies Mezinárodní Centrum Pro Umění a Nové Technologie'), (54475, 'https://ror.org/059wqqf58', 'en', 1, 'https://ror.org/059wqqf58 Wuzhou Red Cross Hospital 梧州市红十字会医院'), (54476, 'https://ror.org/059xg9f68', 'en', 1, 'https://ror.org/059xg9f68 Alliance for Epilepsy Research'), (54477, 'https://ror.org/05a0f0y47', 'en', 1, 'https://ror.org/05a0f0y47 Irvine Health Foundation'), (54478, 'https://ror.org/05a10ec77', 'no_lang_code', 1, 'https://ror.org/05a10ec77 Newmont Mining (United States)'), (54479, 'https://ror.org/05a1nps39', 'no_lang_code', 1, 'https://ror.org/05a1nps39 New Life Scientific (United States)'), (54480, 'https://ror.org/05a1nta88', 'no_lang_code', 1, 'https://ror.org/05a1nta88 Rosetta Stone (United States)'), (54481, 'https://ror.org/05a2x2n50', 'en', 1, 'https://ror.org/05a2x2n50 Administrația Națională Apele Române Romanian Waters National Administration'), (54482, 'https://ror.org/05a48y547', 'en', 1, 'https://ror.org/05a48y547 Nordic MDS Group'), (54483, 'https://ror.org/05a4wc005', 'en', 1, 'https://ror.org/05a4wc005 Nargis Dutt Memorial Foundation'), (54484, 'https://ror.org/05a5zgn96', 'en', 1, 'https://ror.org/05a5zgn96 Bader Philanthropies'), (54485, 'https://ror.org/05a6zqv42', 'en', 1, 'https://ror.org/05a6zqv42 United Nations Association of the United States of America'), (54486, 'https://ror.org/05a94k872', 'en', 1, 'https://ror.org/05a94k872 Johann Radon Institut für Angewandte Mathematik Johann Radon Institute for Computational and Applied Mathematics'), (54487, 'https://ror.org/05a9nb826', 'no_lang_code', 1, 'https://ror.org/05a9nb826 CNS Research (United States)'), (54488, 'https://ror.org/05aar4096', 'de', 1, 'https://ror.org/05aar4096 Krankenhaus Porz am Rhein'), (54489, 'https://ror.org/05aawzp88', 'en', 1, 'https://ror.org/05aawzp88 Great Minds'), (54490, 'https://ror.org/05ab5m237', 'no_lang_code', 1, 'https://ror.org/05ab5m237 Mannesmann (Germany)'), (54491, 'https://ror.org/05ac1r749', 'en', 1, 'https://ror.org/05ac1r749 Kilo Diabetes and Vascular Research Foundation'), (54492, 'https://ror.org/05af1hn65', 'en', 1, 'https://ror.org/05af1hn65 British Thyroid Foundation'), (54493, 'https://ror.org/05afz7j54', 'en', 1, 'https://ror.org/05afz7j54 University Foot & Ankle Institute'), (54494, 'https://ror.org/05ahejj17', 'it', 1, 'https://ror.org/05ahejj17 Fondazione Cassa di Risparmio di Pistoia e Pescia'), (54495, 'https://ror.org/05ahn7y97', 'no_lang_code', 1, 'https://ror.org/05ahn7y97 Rexgenero (United Kingdom)'), (54496, 'https://ror.org/05akbpx97', 'en', 1, 'https://ror.org/05akbpx97 RTOG Foundation'), (54497, 'https://ror.org/05ansvf21', 'no_lang_code', 1, 'https://ror.org/05ansvf21 Rohto Pharmaceutical (United Kingdom)'), (54498, 'https://ror.org/05as9mv70', 'en', 1, 'https://ror.org/05as9mv70 National Laboratory for Education Transformation'), (54499, 'https://ror.org/05avn2m80', 'no_lang_code', 1, 'https://ror.org/05avn2m80 Edwards (United Kingdom)'), (54500, 'https://ror.org/05aw6p704', 'en', 1, 'https://ror.org/05aw6p704 West German Heart and Vascular Center Essen Westdeutsche Herz- und Gefäßzentrum Essen'), (54501, 'https://ror.org/05ay13t70', 'fr', 1, 'https://ror.org/05ay13t70 Terre des Hommes'), (54502, 'https://ror.org/05azmnk92', 'en', 1, 'https://ror.org/05azmnk92 Noble Network of Charter Schools'), (54503, 'https://ror.org/05b05qq44', 'en', 1, 'https://ror.org/05b05qq44 Eye Center of Southern Connecticut'), (54504, 'https://ror.org/05b32w766', 'en', 1, 'https://ror.org/05b32w766 Institute for Jewish Spirituality'), (54505, 'https://ror.org/05b6k3g41', 'no_lang_code', 1, 'https://ror.org/05b6k3g41 Evgen Pharma (United Kingdom)'), (54506, 'https://ror.org/05b820q66', 'en', 1, 'https://ror.org/05b820q66 Sky Ridge Medical Center'), (54507, 'https://ror.org/05b9vxh94', 'es', 1, 'https://ror.org/05b9vxh94 Hospital Universitari de Vic'), (54508, 'https://ror.org/05ba0x014', 'en', 1, 'https://ror.org/05ba0x014 Seattle Housing Authority'), (54509, 'https://ror.org/05ba87b21', 'en', 1, 'https://ror.org/05ba87b21 Jewish Association Serving the Aging'), (54510, 'https://ror.org/05bby3d90', 'en', 1, 'https://ror.org/05bby3d90 Glaucoma Associates of Texas'), (54511, 'https://ror.org/05bc1rm89', 'en', 1, 'https://ror.org/05bc1rm89 Wellesley Centers for Women'), (54512, 'https://ror.org/05bdc8539', 'en', 1, 'https://ror.org/05bdc8539 Clayton Sleep Institute'), (54513, 'https://ror.org/05bevn213', 'en', 1, 'https://ror.org/05bevn213 East Bay Community Foundation'), (54514, 'https://ror.org/05bf2vj98', 'no_lang_code', 1, 'https://ror.org/05bf2vj98 Sanofi (United Kingdom)'), (54515, 'https://ror.org/05bhnz872', 'no_lang_code', 1, 'https://ror.org/05bhnz872 Sanofi (Hungary)'), (54516, 'https://ror.org/05bhs6b69', 'en', 1, 'https://ror.org/05bhs6b69 Tampa Bay Medical Research'), (54517, 'https://ror.org/05bntm267', 'no_lang_code', 1, 'https://ror.org/05bntm267 Lear (United States)'), (54518, 'https://ror.org/05bnw2b86', 'en', 1, 'https://ror.org/05bnw2b86 Hand Foundation'), (54519, 'https://ror.org/05bpx8696', 'en', 1, 'https://ror.org/05bpx8696 Monterey Institute for Technology and Education'), (54520, 'https://ror.org/05bqezz06', 'en', 1, 'https://ror.org/05bqezz06 Norwich University Applied Research Institute'), (54521, 'https://ror.org/05bqz6909', 'en', 1, 'https://ror.org/05bqz6909 Hazel K. Goddess Fund for Stroke Research in Women'), (54522, 'https://ror.org/05bv6q633', 'en', 1, 'https://ror.org/05bv6q633 Katzen Eye Care & Laser Center'), (54523, 'https://ror.org/05bxbrn63', 'en', 1, 'https://ror.org/05bxbrn63 Inner Mongolia Autonomous Region Hospital of Traditional Chinese Medicine 内蒙古自治区中医医院'), (54524, 'https://ror.org/05bywz149', 'en', 1, 'https://ror.org/05bywz149 Center for Dermatology, Cosmetic & Laser Surgery'), (54525, 'https://ror.org/05bzd1d42', 'en', 1, 'https://ror.org/05bzd1d42 Executive Forests Agency'), (54526, 'https://ror.org/05c1g2f47', 'no_lang_code', 1, 'https://ror.org/05c1g2f47 Xcovery (United States)'), (54527, 'https://ror.org/05c3vdm18', 'no_lang_code', 1, 'https://ror.org/05c3vdm18 Bucher Emhart Glass (Switzerland)'), (54528, 'https://ror.org/05c5ac029', 'en', 1, 'https://ror.org/05c5ac029 New South Wales Nurses and Midwives Association'), (54529, 'https://ror.org/05c5x8342', 'en', 1, 'https://ror.org/05c5x8342 Kwanjeong Educational Foundation'), (54530, 'https://ror.org/05c7rv794', 'en', 1, 'https://ror.org/05c7rv794 Futaba Electronics Memorial Foundation 公益財団法人 双葉電子記念財団'), (54531, 'https://ror.org/05c96b989', 'en', 1, 'https://ror.org/05c96b989 Balboa Nephrology Medical Group'), (54532, 'https://ror.org/05cb8xv31', 'en', 1, 'https://ror.org/05cb8xv31 United General Hospital'), (54533, 'https://ror.org/05cbsfm97', 'no_lang_code', 1, 'https://ror.org/05cbsfm97 Inventprise (United States)'), (54534, 'https://ror.org/05cejc480', 'en', 1, 'https://ror.org/05cejc480 American Italian Cancer Foundation'), (54535, 'https://ror.org/05cfb4981', 'no_lang_code', 1, 'https://ror.org/05cfb4981 Winkhaus (Germany)'), (54536, 'https://ror.org/05cfkkr16', 'no_lang_code', 1, 'https://ror.org/05cfkkr16 Institut für Biomedizinische Analytik und NMR Imaging (Germany)'), (54537, 'https://ror.org/05ch0a064', 'en', 1, 'https://ror.org/05ch0a064 Doctors Cancer Foundation'), (54538, 'https://ror.org/05cm6kv55', 'no_lang_code', 1, 'https://ror.org/05cm6kv55 Cipla (Belgium)'), (54539, 'https://ror.org/05crdkd52', 'en', 1, 'https://ror.org/05crdkd52 Sheepcot Medical Centre'), (54540, 'https://ror.org/05csfs312', 'ca', 1, 'https://ror.org/05csfs312 Hospital Sant Jaume de Calella'), (54541, 'https://ror.org/05csn7t20', 'en', 1, 'https://ror.org/05csn7t20 Fairfield Hospital'), (54542, 'https://ror.org/05cszw148', 'en', 1, 'https://ror.org/05cszw148 Kempe Foundation Kempestiftelserna'), (54543, 'https://ror.org/05cw31648', 'de', 1, 'https://ror.org/05cw31648 Heimer Stiftung'), (54544, 'https://ror.org/05cwwq597', 'no_lang_code', 1, 'https://ror.org/05cwwq597 Johnson Electric (Switzerland)'), (54545, 'https://ror.org/05cy1th84', 'no_lang_code', 1, 'https://ror.org/05cy1th84 Amazonen-Werke (Germany)'), (54546, 'https://ror.org/05cyn4y81', 'no_lang_code', 1, 'https://ror.org/05cyn4y81 Medical Developments (United Kingdom)'), (54547, 'https://ror.org/05czgp859', 'en', 1, 'https://ror.org/05czgp859 Myasthenia Gravis Foundation of America'), (54548, 'https://ror.org/05d088546', 'no_lang_code', 1, 'https://ror.org/05d088546 Baxter (Netherlands)'), (54549, 'https://ror.org/05d14hv12', 'en', 1, 'https://ror.org/05d14hv12 Beez Foundation'), (54550, 'https://ror.org/05d46q131', 'en', 1, 'https://ror.org/05d46q131 Australian College of Critical Care Nurses'), (54551, 'https://ror.org/05d53xd56', 'en', 1, 'https://ror.org/05d53xd56 Rata Foundation'), (54552, 'https://ror.org/05d56bw89', 'en', 1, 'https://ror.org/05d56bw89 Ian''s Friends Foundation'), (54553, 'https://ror.org/05d89kr76', 'de', 1, 'https://ror.org/05d89kr76 Johannes Wesling Klinikum Minden'), (54554, 'https://ror.org/05d9syz50', 'no_lang_code', 1, 'https://ror.org/05d9syz50 Unitus Labs'), (54555, 'https://ror.org/05dank931', 'no_lang_code', 1, 'https://ror.org/05dank931 Mauna Kea Technologies (United States)'), (54556, 'https://ror.org/05dayh150', 'en', 1, 'https://ror.org/05dayh150 Baumann Cosmetic Dermatology'), (54557, 'https://ror.org/05db0d889', 'en', 1, 'https://ror.org/05db0d889 Fondazione Grigioni per il Morbo di Parkinson Grigioni Foundation for Parkinson''s disease'), (54558, 'https://ror.org/05dbdfg95', 'en', 1, 'https://ror.org/05dbdfg95 International Transactional Analysis Association'), (54559, 'https://ror.org/05dbj3194', 'en', 1, 'https://ror.org/05dbj3194 St. Bernards Clopton Clinic'), (54560, 'https://ror.org/05dcttj85', 'en', 1, 'https://ror.org/05dcttj85 Center for Evaluation Innovation'), (54561, 'https://ror.org/05dehe044', 'en', 1, 'https://ror.org/05dehe044 Guenther Dermatology Research Centre'), (54562, 'https://ror.org/05dezr114', 'en', 1, 'https://ror.org/05dezr114 Institute of Mental Hygiene'), (54563, 'https://ror.org/05dhebt29', 'en', 1, 'https://ror.org/05dhebt29 Gabba Dermatology'), (54564, 'https://ror.org/05dj4bc96', 'en', 1, 'https://ror.org/05dj4bc96 Sall Research Medical Center'), (54565, 'https://ror.org/05dmnc009', 'no_lang_code', 1, 'https://ror.org/05dmnc009 Ab Analitica (Italy)'), (54566, 'https://ror.org/05dq3dn18', 'no_lang_code', 1, 'https://ror.org/05dq3dn18 Hori Sciences and Arts Foundation 堀科学芸術振興財団'), (54567, 'https://ror.org/05dq78k50', 'no_lang_code', 1, 'https://ror.org/05dq78k50 BrainScope (United States)'), (54568, 'https://ror.org/05dqak117', 'en', 1, 'https://ror.org/05dqak117 Santa Cruz County Office of Education'), (54569, 'https://ror.org/05ds19c85', 'en', 1, 'https://ror.org/05ds19c85 Hayao Nakayama Foundation for Science & Technology and Culture 公益財団法人中山隼雄科学技術文化財団'), (54570, 'https://ror.org/05ds5y270', 'en', 1, 'https://ror.org/05ds5y270 IDinsight'), (54571, 'https://ror.org/05dvmag14', 'no_lang_code', 1, 'https://ror.org/05dvmag14 JST Mfg(Japan)'), (54572, 'https://ror.org/05dzdeq86', 'es', 1, 'https://ror.org/05dzdeq86 Centro Médico Recoletas Paracelso'), (54573, 'https://ror.org/05dzndt41', 'en', 1, 'https://ror.org/05dzndt41 Metropolitan Asian Family Services'), (54574, 'https://ror.org/05e12c976', 'en', 1, 'https://ror.org/05e12c976 School for Ethics and Global Leadership'), (54575, 'https://ror.org/05e497m36', 'en', 1, 'https://ror.org/05e497m36 Medicines Evaluation Unit'), (54576, 'https://ror.org/05e536w67', 'en', 1, 'https://ror.org/05e536w67 Institute of Molecular Medicine and Biomedical Research Ινστιτούτο Μοριακής Ιατρικής και Βιοϊατρικής Έρευνας'), (54577, 'https://ror.org/05e56c835', 'en', 1, 'https://ror.org/05e56c835 Medical Research Network'), (54578, 'https://ror.org/05e7wc386', 'no_lang_code', 1, 'https://ror.org/05e7wc386 Livvon (United States)'), (54579, 'https://ror.org/05eaa2738', 'en', 1, 'https://ror.org/05eaa2738 Community Foundation of Louisville'), (54580, 'https://ror.org/05eat3g39', 'no_lang_code', 1, 'https://ror.org/05eat3g39 Borealis (Austria)'), (54581, 'https://ror.org/05eb21k90', 'en', 1, 'https://ror.org/05eb21k90 Clinical Research Consortium'), (54582, 'https://ror.org/05ebvq193', 'no_lang_code', 1, 'https://ror.org/05ebvq193 AXON Neuroscience (Slovakia)'), (54583, 'https://ror.org/05ef6s903', 'en', 1, 'https://ror.org/05ef6s903 Alzheimer Society of Manitoba'), (54584, 'https://ror.org/05egn8t81', 'fr', 1, 'https://ror.org/05egn8t81 Cliniques du Sud Luxembourg'), (54585, 'https://ror.org/05ehe8t08', 'en', 1, 'https://ror.org/05ehe8t08 UC Davis Children''s Hospital'), (54586, 'https://ror.org/05ej58m83', 'en', 1, 'https://ror.org/05ej58m83 Dougherty Foundation'), (54587, 'https://ror.org/05ek20966', 'en', 1, 'https://ror.org/05ek20966 National Peace Corps Association'), (54588, 'https://ror.org/05emg8z25', 'en', 1, 'https://ror.org/05emg8z25 Landsteiner Foundation for Blood Transfusion Research Landsteiner Stichting voor Bloedtransfusieresearch'), (54589, 'https://ror.org/05end5z77', 'en', 1, 'https://ror.org/05end5z77 Memorial Orthopaedic Surgical Group'), (54590, 'https://ror.org/05ep59t88', 'no_lang_code', 1, 'https://ror.org/05ep59t88 Radio One (United States)'), (54591, 'https://ror.org/05epqd940', 'fr', 1, 'https://ror.org/05epqd940 Centre Hospitalier Départemental Vendée'), (54592, 'https://ror.org/05er00a75', 'no_lang_code', 1, 'https://ror.org/05er00a75 Linde (United States)'), (54593, 'https://ror.org/05erkbf97', 'en', 1, 'https://ror.org/05erkbf97 Lietuvos ornitologų draugija Lithuanian Ornithological Society'), (54594, 'https://ror.org/05esvmf28', 'en', 1, 'https://ror.org/05esvmf28 Providence Clinical Research'), (54595, 'https://ror.org/05esvpz79', 'en', 1, 'https://ror.org/05esvpz79 Celma Mastry Ovarian Cancer Foundation'), (54596, 'https://ror.org/05exe6d14', 'nl', 1, 'https://ror.org/05exe6d14 Franciscus Vlietland'), (54597, 'https://ror.org/05eysk957', 'en', 1, 'https://ror.org/05eysk957 Knox County Schools'), (54598, 'https://ror.org/05ezdye14', 'en', 1, 'https://ror.org/05ezdye14 CHOC Foundation'), (54599, 'https://ror.org/05ezss241', 'en', 1, 'https://ror.org/05ezss241 Gift of Life Foundation'), (54600, 'https://ror.org/05f0w5759', 'en', 1, 'https://ror.org/05f0w5759 Norman Regional Health System'), (54601, 'https://ror.org/05f157f34', 'no_lang_code', 1, 'https://ror.org/05f157f34 Chemo (France)'), (54602, 'https://ror.org/05f1j8s33', 'en', 1, 'https://ror.org/05f1j8s33 American Academy of Audiology'), (54603, 'https://ror.org/05f2dw604', 'en', 1, 'https://ror.org/05f2dw604 Somerset Skin Centre'), (54604, 'https://ror.org/05f676n58', 'en', 1, 'https://ror.org/05f676n58 Goldhirsh Foundation'), (54605, 'https://ror.org/05f6qyf30', 'en', 1, 'https://ror.org/05f6qyf30 Spanish Oncology Genitourinary Group'), (54606, 'https://ror.org/05f6w6d75', 'en', 1, 'https://ror.org/05f6w6d75 American Asthma Foundation'), (54607, 'https://ror.org/05f7htr55', 'nl', 1, 'https://ror.org/05f7htr55 Radiotherapeutisch Instituut Friesland'), (54608, 'https://ror.org/05f8ejd38', 'de', 1, 'https://ror.org/05f8ejd38 Asklepios Kliniken Hamburg'), (54609, 'https://ror.org/05fa63r36', 'no_lang_code', 1, 'https://ror.org/05fa63r36 Daido Steel (Japan) 大同特殊鋼'), (54610, 'https://ror.org/05fbx4s48', 'de', 1, 'https://ror.org/05fbx4s48 Allergiezentrum Wien West'), (54611, 'https://ror.org/05fcw6535', 'en', 1, 'https://ror.org/05fcw6535 Lasker Foundation'), (54612, 'https://ror.org/05fddma93', 'en', 1, 'https://ror.org/05fddma93 Partnership for Public Service'), (54613, 'https://ror.org/05fexbp32', 'en', 1, 'https://ror.org/05fexbp32 Milken Family Foundation'), (54614, 'https://ror.org/05fg52t30', 'en', 1, 'https://ror.org/05fg52t30 Bullitt Foundation'), (54615, 'https://ror.org/05fgbny35', 'en', 1, 'https://ror.org/05fgbny35 Matthew''s Friends'), (54616, 'https://ror.org/05fgpk863', 'no_lang_code', 1, 'https://ror.org/05fgpk863 Atlantic Clinical Research Collaborative (United States)'), (54617, 'https://ror.org/05fhw8710', 'en', 1, 'https://ror.org/05fhw8710 Durbar Mahila Samanwaya Committee দুর্বার মহিলা সমন্বয় সমিতি'), (54618, 'https://ror.org/05fktwr23', 'en', 1, 'https://ror.org/05fktwr23 Gardiner Foundation'), (54619, 'https://ror.org/05fnzzk18', 'no_lang_code', 1, 'https://ror.org/05fnzzk18 Center for Clinical Research (United States)'), (54620, 'https://ror.org/05fp2yk16', 'en', 1, 'https://ror.org/05fp2yk16 Liquid Interactive'), (54621, 'https://ror.org/05frb5d17', 'en', 1, 'https://ror.org/05frb5d17 Ethnic Arts Council of Los Angeles'), (54622, 'https://ror.org/05fssfa53', 'en', 1, 'https://ror.org/05fssfa53 Warren County Public Schools'), (54623, 'https://ror.org/05ftdq537', 'en', 1, 'https://ror.org/05ftdq537 Northwest Resource Associates'), (54624, 'https://ror.org/05ftn7r26', 'no_lang_code', 1, 'https://ror.org/05ftn7r26 Avillion (United Kingdom)'), (54625, 'https://ror.org/05fvbww60', 'no_lang_code', 1, 'https://ror.org/05fvbww60 Grifols (United States)'), (54626, 'https://ror.org/05fw76c12', 'no_lang_code', 1, 'https://ror.org/05fw76c12 Principia Biopharma (United States)'), (54627, 'https://ror.org/05fy0j332', 'en', 1, 'https://ror.org/05fy0j332 Japan Ecology Foundation 般財団法人日本環境財団'), (54628, 'https://ror.org/05fz6ex02', 'no_lang_code', 1, 'https://ror.org/05fz6ex02 Alphafilm and Kommunikation (Denmark)'), (54629, 'https://ror.org/05g0ds378', 'no_lang_code', 1, 'https://ror.org/05g0ds378 Dainichiseika (Japan) 大日精化工'), (54630, 'https://ror.org/05g1jvk52', 'en', 1, 'https://ror.org/05g1jvk52 Irish Heart Foundation'), (54631, 'https://ror.org/05g427r55', 'en', 1, 'https://ror.org/05g427r55 Deupree Family Foundation'), (54632, 'https://ror.org/05g452t43', 'et', 1, 'https://ror.org/05g452t43 Association of Estonian Open Youth Centres, Eesti Avatud Noortekeskuste Ühendus'), (54633, 'https://ror.org/05g4hh326', 'en', 1, 'https://ror.org/05g4hh326 Baylor Scott & White All Saints Medical Center'), (54634, 'https://ror.org/05g6yjw88', 'en', 1, 'https://ror.org/05g6yjw88 King Center Charter School'), (54635, 'https://ror.org/05g777x71', 'no_lang_code', 1, 'https://ror.org/05g777x71 Synthon (Czechia)'), (54636, 'https://ror.org/05g96wy68', 'en', 1, 'https://ror.org/05g96wy68 Parents United for Responsible Education'), (54637, 'https://ror.org/05gcc9f60', 'no_lang_code', 1, 'https://ror.org/05gcc9f60 Endress+Hauser (Switzerland)'), (54638, 'https://ror.org/05gdcn753', 'en', 1, 'https://ror.org/05gdcn753 Or Yarok Association אור ירוק'), (54639, 'https://ror.org/05gg6a906', 'no_lang_code', 1, 'https://ror.org/05gg6a906 advanceCOR (Germany)'), (54640, 'https://ror.org/05ggszr08', 'en', 1, 'https://ror.org/05ggszr08 Emily Dorfman Foundation for Children'), (54641, 'https://ror.org/05gh2jr89', 'no_lang_code', 1, 'https://ror.org/05gh2jr89 NewEnergy'), (54642, 'https://ror.org/05gh45115', 'no_lang_code', 1, 'https://ror.org/05gh45115 Rhythm (United states)'), (54643, 'https://ror.org/05gj3bd07', 'en', 1, 'https://ror.org/05gj3bd07 Sevenzo'), (54644, 'https://ror.org/05gj4md48', 'en', 1, 'https://ror.org/05gj4md48 Euvaldo Lodi Institute Instituto Euvaldo Lodi'), (54645, 'https://ror.org/05gm4wq37', 'en', 1, 'https://ror.org/05gm4wq37 American Respiratory Care Foundation'), (54646, 'https://ror.org/05gmffx67', 'no_lang_code', 1, 'https://ror.org/05gmffx67 Sucampo (Switzerland)'), (54647, 'https://ror.org/05gn4rx69', 'no_lang_code', 1, 'https://ror.org/05gn4rx69 Dado Medical'), (54648, 'https://ror.org/05gnax159', 'en', 1, 'https://ror.org/05gnax159 Childrens Leukemia Foundation of Michigan'), (54649, 'https://ror.org/05gp08a36', 'en', 1, 'https://ror.org/05gp08a36 Acumen'), (54650, 'https://ror.org/05gpmjj80', 'no_lang_code', 1, 'https://ror.org/05gpmjj80 Stelic (Japan)'), (54651, 'https://ror.org/05gqz0k77', 'en', 1, 'https://ror.org/05gqz0k77 African Development Bank Group'), (54652, 'https://ror.org/05grp4x11', 'no_lang_code', 1, 'https://ror.org/05grp4x11 Grunenthal (Spain)'), (54653, 'https://ror.org/05gtwra97', 'de', 1, 'https://ror.org/05gtwra97 Universitäts HNO Klinik Mannheim'), (54654, 'https://ror.org/05gtx2j83', 'no_lang_code', 1, 'https://ror.org/05gtx2j83 Fives (France)'), (54655, 'https://ror.org/05gv5sv44', 'en', 1, 'https://ror.org/05gv5sv44 International Association of Sedimentologists'), (54656, 'https://ror.org/05gyvs118', 'no_lang_code', 1, 'https://ror.org/05gyvs118 Newell Brands (United States)'), (54657, 'https://ror.org/05h10sf50', 'en', 1, 'https://ror.org/05h10sf50 Brain Resource Center'), (54658, 'https://ror.org/05h13e956', 'no_lang_code', 1, 'https://ror.org/05h13e956 Enceladus Pharmaceuticals (Netherlands)'), (54659, 'https://ror.org/05h1fqv07', 'en', 1, 'https://ror.org/05h1fqv07 Aicardi Syndrome Foundation'), (54660, 'https://ror.org/05h202h75', 'no_lang_code', 1, 'https://ror.org/05h202h75 Accenture (United Kingdom)'), (54661, 'https://ror.org/05h2pj652', 'no_lang_code', 1, 'https://ror.org/05h2pj652 Myelo Therapeutics (Germany)'), (54662, 'https://ror.org/05h3vs194', 'en', 1, 'https://ror.org/05h3vs194 National Jewish Center for Learning and Leadership'), (54663, 'https://ror.org/05h4evm65', 'no_lang_code', 1, 'https://ror.org/05h4evm65 TerraFrame (United States)'), (54664, 'https://ror.org/05h4g6p05', 'en', 1, 'https://ror.org/05h4g6p05 World Affairs Council of Northern California'), (54665, 'https://ror.org/05h4kax84', 'es', 1, 'https://ror.org/05h4kax84 Grupo de Tratamiento de los Tumores Digestivos'), (54666, 'https://ror.org/05h4v5m71', 'en', 1, 'https://ror.org/05h4v5m71 Smith Clinic'), (54667, 'https://ror.org/05h6f8c16', 'en', 1, 'https://ror.org/05h6f8c16 National Paideia Center'), (54668, 'https://ror.org/05h8tj134', 'en', 1, 'https://ror.org/05h8tj134 Blanca Paloma Hospital'), (54669, 'https://ror.org/05ha8e826', 'no_lang_code', 1, 'https://ror.org/05ha8e826 Technicolor (United States)'), (54670, 'https://ror.org/05habh343', 'es', 1, 'https://ror.org/05habh343 Hospital de Palamós'), (54671, 'https://ror.org/05haf2k11', 'en', 1, 'https://ror.org/05haf2k11 Veterans of Foreign Wars'), (54672, 'https://ror.org/05hb97k72', 'en', 1, 'https://ror.org/05hb97k72 Statistics Estonia Statistikaamet'), (54673, 'https://ror.org/05hdea206', 'en', 1, 'https://ror.org/05hdea206 United Indians of All Tribes'), (54674, 'https://ror.org/05he4e720', 'no_lang_code', 1, 'https://ror.org/05he4e720 Novartis (Belgium)'), (54675, 'https://ror.org/05hevnw21', 'en', 1, 'https://ror.org/05hevnw21 MARS Memory-Health Network'), (54676, 'https://ror.org/05hfds782', 'no_lang_code', 1, 'https://ror.org/05hfds782 Nacey Maggioncalda Foundation'), (54677, 'https://ror.org/05hgrv414', 'en', 1, 'https://ror.org/05hgrv414 Kampala Capital City Authority'), (54678, 'https://ror.org/05hmy6316', 'en', 1, 'https://ror.org/05hmy6316 Bastian Voice Institute'), (54679, 'https://ror.org/05hpdph39', 'en', 1, 'https://ror.org/05hpdph39 Pacific Business Group on Health'), (54680, 'https://ror.org/05hq42c91', 'en', 1, 'https://ror.org/05hq42c91 Mennonite Economic Development Associates'), (54681, 'https://ror.org/05hqtjm11', 'no_lang_code', 1, 'https://ror.org/05hqtjm11 Amgen (Netherlands)'), (54682, 'https://ror.org/05hrjak95', 'en', 1, 'https://ror.org/05hrjak95 City West Water'), (54683, 'https://ror.org/05htb0v42', 'en', 1, 'https://ror.org/05htb0v42 Nuffield Trust'), (54684, 'https://ror.org/05htz0h33', 'en', 1, 'https://ror.org/05htz0h33 Tanzania Social Action Fund'), (54685, 'https://ror.org/05hvrsg85', 'en', 1, 'https://ror.org/05hvrsg85 Food and Drug Administration'), (54686, 'https://ror.org/05hw2m351', 'no_lang_code', 1, 'https://ror.org/05hw2m351 Shield Therapeutics (United Kingdom)'), (54687, 'https://ror.org/05hwr2c31', 'en', 1, 'https://ror.org/05hwr2c31 Arlington Center for Dermatology'), (54688, 'https://ror.org/05hy0av13', 'no_lang_code', 1, 'https://ror.org/05hy0av13 Otsuka (Germany)'), (54689, 'https://ror.org/05j02j274', 'no_lang_code', 1, 'https://ror.org/05j02j274 Homviora (Germany)'), (54690, 'https://ror.org/05j2yt510', 'en', 1, 'https://ror.org/05j2yt510 Fourth People''s Hospital of Taiyuan 太原市第四人民医院_百度百科'), (54691, 'https://ror.org/05j492n53', 'en', 1, 'https://ror.org/05j492n53 Daiichi Sankyo Foundation of Life Science'), (54692, 'https://ror.org/05j70af50', 'no_lang_code', 1, 'https://ror.org/05j70af50 Toro (United States)'), (54693, 'https://ror.org/05j79r106', 'no_lang_code', 1, 'https://ror.org/05j79r106 Société Nationale des Télécommunications du Senegal Sonatel (Senegal)'), (54694, 'https://ror.org/05j7q4z53', 'en', 1, 'https://ror.org/05j7q4z53 Dearborn Orthopedics and Sports Medicine'), (54695, 'https://ror.org/05j9tdb35', 'no_lang_code', 1, 'https://ror.org/05j9tdb35 Clarke (United States)'), (54696, 'https://ror.org/05jawdm29', 'en', 1, 'https://ror.org/05jawdm29 Foundation for a Healthy Kentucky'), (54697, 'https://ror.org/05jb62w23', 'en', 1, 'https://ror.org/05jb62w23 Houston Perinatal Associates'), (54698, 'https://ror.org/05jbdx649', 'en', 1, 'https://ror.org/05jbdx649 Cerego'), (54699, 'https://ror.org/05jbhfv03', 'en', 1, 'https://ror.org/05jbhfv03 Ophthalmology Associates (United States)'), (54700, 'https://ror.org/05je2ma32', 'en', 1, 'https://ror.org/05je2ma32 Minnesota Lions Eye Bank'), (54701, 'https://ror.org/05jff7p65', 'no_lang_code', 1, 'https://ror.org/05jff7p65 Imerys (United Kingdom)'), (54702, 'https://ror.org/05jh56b79', 'pt', 1, 'https://ror.org/05jh56b79 Coris Medicina Avançada'), (54703, 'https://ror.org/05jh9p159', 'en', 1, 'https://ror.org/05jh9p159 Ubonratchathani Cancer Hospital โรงพยาบาลมะเร็งอุบลราชธานี'), (54704, 'https://ror.org/05jhnab13', 'it', 1, 'https://ror.org/05jhnab13 Fondazione Pisa'), (54705, 'https://ror.org/05jhy3d94', 'en', 1, 'https://ror.org/05jhy3d94 Lotex Foundation Lotex Stiftung'), (54706, 'https://ror.org/05jj8cx84', 'en', 1, 'https://ror.org/05jj8cx84 John R. Oishei Foundation'), (54707, 'https://ror.org/05jjnzh70', 'en', 1, 'https://ror.org/05jjnzh70 Children''s Defense Fund'), (54708, 'https://ror.org/05jjs9s55', 'no_lang_code', 1, 'https://ror.org/05jjs9s55 Chiesi (United Kingdom)'), (54709, 'https://ror.org/05jjyhn41', 'no_lang_code', 1, 'https://ror.org/05jjyhn41 Sicpa (Switzerland)'), (54710, 'https://ror.org/05jke7315', 'no_lang_code', 1, 'https://ror.org/05jke7315 Pioneer (United States)'), (54711, 'https://ror.org/05jndc687', 'en', 1, 'https://ror.org/05jndc687 Attention Deficit Disorder Treatment Center'), (54712, 'https://ror.org/05jpj2w31', 'en', 1, 'https://ror.org/05jpj2w31 Udon Thani Hospital'), (54713, 'https://ror.org/05jr8e497', 'en', 1, 'https://ror.org/05jr8e497 Willamette Valley Cancer Institute and Research Center'), (54714, 'https://ror.org/05jsaxg97', 'en', 1, 'https://ror.org/05jsaxg97 Tennessee Clinical Research Center'), (54715, 'https://ror.org/05jv9e497', 'en', 1, 'https://ror.org/05jv9e497 Johnson Family Foundation'), (54716, 'https://ror.org/05jvxpr06', 'no_lang_code', 1, 'https://ror.org/05jvxpr06 Adienne (Switzerland)'), (54717, 'https://ror.org/05jwkar19', 'en', 1, 'https://ror.org/05jwkar19 Nakornping Hospital โรงพยาบาลนครพิงค์ จังหวัดเชียงใหม่'), (54718, 'https://ror.org/05jwmx239', 'no_lang_code', 1, 'https://ror.org/05jwmx239 Vista Therapeutics (United States)'), (54719, 'https://ror.org/05jwr0z51', 'no_lang_code', 1, 'https://ror.org/05jwr0z51 Consort Medical (United Kingdom)'), (54720, 'https://ror.org/05jxf9x26', 'no_lang_code', 1, 'https://ror.org/05jxf9x26 Vedantra Pharmaceuticals (United States)'), (54721, 'https://ror.org/05jyk8r28', 'en', 1, 'https://ror.org/05jyk8r28 Japan Securities Scholarship Foundation 日本証券奨学財団'), (54722, 'https://ror.org/05jzx9n24', 'no_lang_code', 1, 'https://ror.org/05jzx9n24 Georg Fischer (Switzerland)'), (54723, 'https://ror.org/05k1t9f54', 'no_lang_code', 1, 'https://ror.org/05k1t9f54 Avizorex Pharma (Spain)'), (54724, 'https://ror.org/05k22fj16', 'en', 1, 'https://ror.org/05k22fj16 Hammoud Hospital University Medical Center مستشفى حمود'), (54725, 'https://ror.org/05k3n9k87', 'no', 1, 'https://ror.org/05k3n9k87 Smerteklinikken'), (54726, 'https://ror.org/05k4g0902', 'de', 1, 'https://ror.org/05k4g0902 Gerhard C. Starck Stiftung'), (54727, 'https://ror.org/05k7n6k09', 'no_lang_code', 1, 'https://ror.org/05k7n6k09 Vaxon Biotech (France)'), (54728, 'https://ror.org/05k7zsn51', 'en', 1, 'https://ror.org/05k7zsn51 MPN Research Foundation'), (54729, 'https://ror.org/05k812a28', 'en', 1, 'https://ror.org/05k812a28 Hebei Science and Technology Department'), (54730, 'https://ror.org/05k8zfb28', 'no_lang_code', 1, 'https://ror.org/05k8zfb28 Kurita Water Industries (Japan) 栗田工業株式会社'), (54731, 'https://ror.org/05k9hyx80', 'en', 1, 'https://ror.org/05k9hyx80 NOK Foundation'), (54732, 'https://ror.org/05kd6q218', 'en', 1, 'https://ror.org/05kd6q218 Colorado Medical Research Center'), (54733, 'https://ror.org/05kd99h55', 'no_lang_code', 1, 'https://ror.org/05kd99h55 Mologen (Germany)'), (54734, 'https://ror.org/05kdjqf72', 'en', 1, 'https://ror.org/05kdjqf72 Stefan Meyer Institute for Subatomic Physics Stefan-Meyer-Institut'), (54735, 'https://ror.org/05ke3c359', 'en', 1, 'https://ror.org/05ke3c359 SEED Foundation'), (54736, 'https://ror.org/05kgjg660', 'en', 1, 'https://ror.org/05kgjg660 Navajo Nation Library'), (54737, 'https://ror.org/05kjf3v93', 'en', 1, 'https://ror.org/05kjf3v93 Research Institute of Dallas'), (54738, 'https://ror.org/05kqvjw80', 'en', 1, 'https://ror.org/05kqvjw80 Campaign for College Opportunity'), (54739, 'https://ror.org/05kqxme91', 'en', 1, 'https://ror.org/05kqxme91 Michael Reese Health Trust'), (54740, 'https://ror.org/05krhrc62', 'en', 1, 'https://ror.org/05krhrc62 Nathans Battle Foundation'), (54741, 'https://ror.org/05kw0cb16', 'en', 1, 'https://ror.org/05kw0cb16 Sadick Research Group'), (54742, 'https://ror.org/05kw4cv96', 'no_lang_code', 1, 'https://ror.org/05kw4cv96 Buckman Laboratories (United States)'), (54743, 'https://ror.org/05kx6e976', 'en', 1, 'https://ror.org/05kx6e976 Efficacy Institute'), (54744, 'https://ror.org/05ky92r72', 'en', 1, 'https://ror.org/05ky92r72 Dannon Institute'), (54745, 'https://ror.org/05kyj3g94', 'en', 1, 'https://ror.org/05kyj3g94 Oral and Maxillofacial Surgery Foundation'), (54746, 'https://ror.org/05kymnn64', 'no_lang_code', 1, 'https://ror.org/05kymnn64 Swedish Orphan Biovitrum (Switzerland)'), (54747, 'https://ror.org/05kythm61', 'en', 1, 'https://ror.org/05kythm61 Appraisers Research Foundation'), (54748, 'https://ror.org/05m0yja37', 'no_lang_code', 1, 'https://ror.org/05m0yja37 OxThera (Sweden)'), (54749, 'https://ror.org/05m1qxf57', 'no_lang_code', 1, 'https://ror.org/05m1qxf57 Nestlé (France)'), (54750, 'https://ror.org/05m4bht81', 'en', 1, 'https://ror.org/05m4bht81 Childrens Fund for Glycogen Storage Disease Research'), (54751, 'https://ror.org/05mazqk05', 'en', 1, 'https://ror.org/05mazqk05 Partnership for Learning'), (54752, 'https://ror.org/05mbknd79', 'no_lang_code', 1, 'https://ror.org/05mbknd79 Synphora (Sweden)'), (54753, 'https://ror.org/05mcj1v39', 'en', 1, 'https://ror.org/05mcj1v39 Alka Wildlife'), (54754, 'https://ror.org/05md3zv31', 'en', 1, 'https://ror.org/05md3zv31 Korean Academy of Medical Sciences'), (54755, 'https://ror.org/05me5c114', 'no_lang_code', 1, 'https://ror.org/05me5c114 Promore Pharma (Sweden)'), (54756, 'https://ror.org/05mezvj34', 'en', 1, 'https://ror.org/05mezvj34 Comprehensive Clinical Research'), (54757, 'https://ror.org/05mhdah91', 'en', 1, 'https://ror.org/05mhdah91 Washington Association of School Administrators'), (54758, 'https://ror.org/05mj8hk83', 'fr', 1, 'https://ror.org/05mj8hk83 Agence de développement de l''Oriental, Agence de l''Oriental'), (54759, 'https://ror.org/05mjtfk75', 'no_lang_code', 1, 'https://ror.org/05mjtfk75 Echo Pharmaceuticals (Netherlands)'), (54760, 'https://ror.org/05mkxvs25', 'no_lang_code', 1, 'https://ror.org/05mkxvs25 Vector Oncology (United States)'), (54761, 'https://ror.org/05mkyt616', 'en', 1, 'https://ror.org/05mkyt616 Tiger Woods Foundation'), (54762, 'https://ror.org/05mmamd82', 'en', 1, 'https://ror.org/05mmamd82 Malone Family Foundation'), (54763, 'https://ror.org/05mnth393', 'en', 1, 'https://ror.org/05mnth393 Laidlaw Foundation'), (54764, 'https://ror.org/05mny8609', 'it', 1, 'https://ror.org/05mny8609 Gruppo Italiano per il Trapianto di Midollo Osseo'), (54765, 'https://ror.org/05mnyyy56', 'en', 1, 'https://ror.org/05mnyyy56 Marie Stopes International'), (54766, 'https://ror.org/05mq03431', 'en', 1, 'https://ror.org/05mq03431 New York University Paris'), (54767, 'https://ror.org/05mrvzj62', 'no_lang_code', 1, 'https://ror.org/05mrvzj62 Hennig Arzneimittel (Germany)'), (54768, 'https://ror.org/05mrw0a87', 'no_lang_code', 1, 'https://ror.org/05mrw0a87 Whirlpool (Brazil)'), (54769, 'https://ror.org/05mtmsa61', 'en', 1, 'https://ror.org/05mtmsa61 Diane and Bruce Halle Foundation'), (54770, 'https://ror.org/05mwhee50', 'no_lang_code', 1, 'https://ror.org/05mwhee50 Bradenton Neurology'), (54771, 'https://ror.org/05mxy6748', 'en', 1, 'https://ror.org/05mxy6748 J. E. and L. E. Mabee Foundation'), (54772, 'https://ror.org/05n0m2q32', 'sv', 1, 'https://ror.org/05n0m2q32 O. E. och Edla Johanssons Vetenskapliga Stiftelse'), (54773, 'https://ror.org/05n2x7017', 'en', 1, 'https://ror.org/05n2x7017 Oxford Fertility'), (54774, 'https://ror.org/05n3kty68', 'no_lang_code', 1, 'https://ror.org/05n3kty68 Aflofarm (Poland)'), (54775, 'https://ror.org/05n451y37', 'no_lang_code', 1, 'https://ror.org/05n451y37 Amicus Therapeutics (United Kingdom)'), (54776, 'https://ror.org/05n4eqf04', 'en', 1, 'https://ror.org/05n4eqf04 Cystinosis Foundation'), (54777, 'https://ror.org/05ncfp318', 'en', 1, 'https://ror.org/05ncfp318 Brain Tumor Funders Collaborative'), (54778, 'https://ror.org/05nd26619', 'en', 1, 'https://ror.org/05nd26619 Emirates Foundation'), (54779, 'https://ror.org/05nds5y03', 'no_lang_code', 1, 'https://ror.org/05nds5y03 Johnson County Clin-Trials (United States)'), (54780, 'https://ror.org/05ne0gd95', 'en', 1, 'https://ror.org/05ne0gd95 Neurology, Inc'), (54781, 'https://ror.org/05nepfp92', 'no_lang_code', 1, 'https://ror.org/05nepfp92 Wintek (Taiwan)'), (54782, 'https://ror.org/05nfdhr48', 'en', 1, 'https://ror.org/05nfdhr48 Maternal and Child Health Hospital of Xuzhou 徐州市妇幼保健院'), (54783, 'https://ror.org/05nn94a79', 'en', 1, 'https://ror.org/05nn94a79 Uplift Education'), (54784, 'https://ror.org/05nnhd665', 'en', 1, 'https://ror.org/05nnhd665 CH Foundation'), (54785, 'https://ror.org/05ntnbc55', 'en', 1, 'https://ror.org/05ntnbc55 Association Horizons'), (54786, 'https://ror.org/05nx1dj46', 'en', 1, 'https://ror.org/05nx1dj46 Media Impact Funders'); INSERT INTO `rors` VALUES (54787, 'https://ror.org/05nx4j589', 'no_lang_code', 1, 'https://ror.org/05nx4j589 Sterna Biologicals (Germany)'), (54788, 'https://ror.org/05nxn2s72', 'it', 1, 'https://ror.org/05nxn2s72 Fondazione Melanoma Onlus'), (54789, 'https://ror.org/05nxvxm15', 'en', 1, 'https://ror.org/05nxvxm15 Fourth Hospital of Inner Mongolia 内蒙古第四医院'), (54790, 'https://ror.org/05nyeaz86', 'en', 1, 'https://ror.org/05nyeaz86 American Society of Pharmacognosy'), (54791, 'https://ror.org/05nyyav28', 'en', 1, 'https://ror.org/05nyyav28 BirdLife Cyprus Πτηνολογικός Σύνδεσμος'), (54792, 'https://ror.org/05nz14y12', 'da', 1, 'https://ror.org/05nz14y12 Aarhus Stadsarkiv'), (54793, 'https://ror.org/05nzc3h14', 'en', 1, 'https://ror.org/05nzc3h14 Always Dream Foundation'), (54794, 'https://ror.org/05nzh9f89', 'de', 1, 'https://ror.org/05nzh9f89 Evonik Stiftung'), (54795, 'https://ror.org/05p07c550', 'en', 1, 'https://ror.org/05p07c550 Brewers Association of Australia and New Zealand'), (54796, 'https://ror.org/05p1sde72', 'en', 1, 'https://ror.org/05p1sde72 St. Bonifatius Hospital'), (54797, 'https://ror.org/05p2mb588', 'nl', 1, 'https://ror.org/05p2mb588 GGZ Oost Brabant'), (54798, 'https://ror.org/05p2qs698', 'en', 1, 'https://ror.org/05p2qs698 KickStart International'), (54799, 'https://ror.org/05p2st278', 'en', 1, 'https://ror.org/05p2st278 Davidorf Eye Group'), (54800, 'https://ror.org/05p3n0372', 'en', 1, 'https://ror.org/05p3n0372 Signature Healthcare Brockton Hospital'), (54801, 'https://ror.org/05p51cz50', 'en', 1, 'https://ror.org/05p51cz50 Asthma Australia'), (54802, 'https://ror.org/05p5gkr73', 'en', 1, 'https://ror.org/05p5gkr73 Texas Public Policy Foundation'), (54803, 'https://ror.org/05p6aq981', 'no_lang_code', 1, 'https://ror.org/05p6aq981 Dermapharm (Germany)'), (54804, 'https://ror.org/05pe87g24', 'en', 1, 'https://ror.org/05pe87g24 Concern Worldwide US'), (54805, 'https://ror.org/05pefgb78', 'en', 1, 'https://ror.org/05pefgb78 Carl & Emily Fuchs Foundation'), (54806, 'https://ror.org/05phbdr70', 'en', 1, 'https://ror.org/05phbdr70 Weippe Public Library'), (54807, 'https://ror.org/05pjfxx59', 'en', 1, 'https://ror.org/05pjfxx59 Illinois Bone and Joint Institute'), (54808, 'https://ror.org/05pjyf321', 'en', 1, 'https://ror.org/05pjyf321 EMDR Research Foundation'), (54809, 'https://ror.org/05pkpss54', 'no_lang_code', 1, 'https://ror.org/05pkpss54 Logitech (Switzerland)'), (54810, 'https://ror.org/05ppfa149', 'en', 1, 'https://ror.org/05ppfa149 National Student Clearinghouse Research Center'), (54811, 'https://ror.org/05pqpm243', 'en', 1, 'https://ror.org/05pqpm243 Junior Achievement'), (54812, 'https://ror.org/05prtzk88', 'no_lang_code', 1, 'https://ror.org/05prtzk88 Bouty (Italy)'), (54813, 'https://ror.org/05psy1s28', 'en', 1, 'https://ror.org/05psy1s28 Remington-Davis Clinical Research'), (54814, 'https://ror.org/05ptrtc51', 'en', 1, 'https://ror.org/05ptrtc51 Gaozhou People''s Hospital 高州人民医院'), (54815, 'https://ror.org/05pv1tb51', 'en', 1, 'https://ror.org/05pv1tb51 Taustine Eye Center'), (54816, 'https://ror.org/05pvg9741', 'no_lang_code', 1, 'https://ror.org/05pvg9741 ImCyse (Belgium)'), (54817, 'https://ror.org/05pvwrn10', 'no_lang_code', 1, 'https://ror.org/05pvwrn10 Xenetic Biosciences (United States)'), (54818, 'https://ror.org/05pwxq352', 'no_lang_code', 1, 'https://ror.org/05pwxq352 Newron Pharmaceuticals (Italy)'), (54819, 'https://ror.org/05pz1ah39', 'en', 1, 'https://ror.org/05pz1ah39 Aspire Public Schools'), (54820, 'https://ror.org/05pzjj739', 'no_lang_code', 1, 'https://ror.org/05pzjj739 Hervana (Israel)'), (54821, 'https://ror.org/05pzjjy67', 'en', 1, 'https://ror.org/05pzjjy67 Arab Science and Technology Foundation المؤسسة العربية للعلوم والتكنولوجيا'), (54822, 'https://ror.org/05q058270', 'en', 1, 'https://ror.org/05q058270 American Osteopathic Foundation'), (54823, 'https://ror.org/05q0c4c66', 'sv', 1, 'https://ror.org/05q0c4c66 Akademikliniken'), (54824, 'https://ror.org/05q0mws16', 'en', 1, 'https://ror.org/05q0mws16 Community Foundation of Broward'), (54825, 'https://ror.org/05q12yf11', 'no_lang_code', 1, 'https://ror.org/05q12yf11 Klabzuba (United States)'), (54826, 'https://ror.org/05q2bhv13', 'en', 1, 'https://ror.org/05q2bhv13 Association for Prevention Teaching and Research'), (54827, 'https://ror.org/05q31e892', 'es', 1, 'https://ror.org/05q31e892 Fundación In Terris'), (54828, 'https://ror.org/05q623n42', 'en', 1, 'https://ror.org/05q623n42 American Association for the Surgery of Trauma'), (54829, 'https://ror.org/05q633c04', 'en', 1, 'https://ror.org/05q633c04 Danish Movement Disorder Society Dansk Selskab For Bevægeforstyrrelser'), (54830, 'https://ror.org/05q8csa40', 'fr', 1, 'https://ror.org/05q8csa40 Fondation Rose et Jean Hoguet'), (54831, 'https://ror.org/05qe9cy98', 'en', 1, 'https://ror.org/05qe9cy98 Wolstan & Goldberg Eye Associates'), (54832, 'https://ror.org/05qg1kx57', 'en', 1, 'https://ror.org/05qg1kx57 Hellenic Cardiovascular Research Society'), (54833, 'https://ror.org/05qgf0573', 'no_lang_code', 1, 'https://ror.org/05qgf0573 Neovacs (France)'), (54834, 'https://ror.org/05qjv1f51', 'no_lang_code', 1, 'https://ror.org/05qjv1f51 Erbe Elektromedizin (Germany)'), (54835, 'https://ror.org/05qm7bg11', 'en', 1, 'https://ror.org/05qm7bg11 Apple University Consortium'), (54836, 'https://ror.org/05qpsmp07', 'en', 1, 'https://ror.org/05qpsmp07 Center for Anxiety and Depression'), (54837, 'https://ror.org/05qqrnb63', 'no_lang_code', 1, 'https://ror.org/05qqrnb63 AstraZeneca (Spain)'), (54838, 'https://ror.org/05qwgjd68', 'en', 1, 'https://ror.org/05qwgjd68 Hefei First People''s Hospital 合肥第一人民医院'), (54839, 'https://ror.org/05qwxaq58', 'en', 1, 'https://ror.org/05qwxaq58 Lampang Cancer Hospital'), (54840, 'https://ror.org/05qy4jt44', 'en', 1, 'https://ror.org/05qy4jt44 Moscow City Oncology Hospital №62'), (54841, 'https://ror.org/05qyyb850', 'id', 1, 'https://ror.org/05qyyb850 Rumah Sakit Jantung Binawaluya'), (54842, 'https://ror.org/05r023w67', 'en', 1, 'https://ror.org/05r023w67 Nancy Lurie Marks Family Foundation'), (54843, 'https://ror.org/05r04rp73', 'en', 1, 'https://ror.org/05r04rp73 Comprehensive Clinical Trials'), (54844, 'https://ror.org/05r0csf60', 'no_lang_code', 1, 'https://ror.org/05r0csf60 HRA Pharma (United Kingdom)'), (54845, 'https://ror.org/05r0sm904', 'en', 1, 'https://ror.org/05r0sm904 Nightingale Hospital'), (54846, 'https://ror.org/05r5a0r20', 'es', 1, 'https://ror.org/05r5a0r20 Clínica CES'), (54847, 'https://ror.org/05r5sgs28', 'en', 1, 'https://ror.org/05r5sgs28 Washington Student Achievement Council'), (54848, 'https://ror.org/05r5v7643', 'en', 1, 'https://ror.org/05r5v7643 CURE Childhood Cancer'), (54849, 'https://ror.org/05r7xc820', 'no_lang_code', 1, 'https://ror.org/05r7xc820 Owens-Illinois (United States)'), (54850, 'https://ror.org/05r8wy666', 'no_lang_code', 1, 'https://ror.org/05r8wy666 Actuant (United States)'), (54851, 'https://ror.org/05r91hj80', 'en', 1, 'https://ror.org/05r91hj80 EyeSight Foundation of Alabama'), (54852, 'https://ror.org/05r9h2p80', 'en', 1, 'https://ror.org/05r9h2p80 Community Broadcasting Foundation'), (54853, 'https://ror.org/05r9qv072', 'en', 1, 'https://ror.org/05r9qv072 Lake Research Partners'), (54854, 'https://ror.org/05r9zr616', 'en', 1, 'https://ror.org/05r9zr616 Way Back Inn'), (54855, 'https://ror.org/05rbt5y67', 'it', 1, 'https://ror.org/05rbt5y67 Fondazione CON IL SUD'), (54856, 'https://ror.org/05rcqmt52', 'en', 1, 'https://ror.org/05rcqmt52 Injury Care Medical Center'), (54857, 'https://ror.org/05rdne793', 'no_lang_code', 1, 'https://ror.org/05rdne793 Lipotek (Australia)'), (54858, 'https://ror.org/05reaew23', 'no_lang_code', 1, 'https://ror.org/05reaew23 RDD Pharma (Israel)'), (54859, 'https://ror.org/05rfjs622', 'no_lang_code', 1, 'https://ror.org/05rfjs622 Briggs & Stratton (United States)'), (54860, 'https://ror.org/05rka3d36', 'no_lang_code', 1, 'https://ror.org/05rka3d36 BioMarin (Ireland)'), (54861, 'https://ror.org/05rkr5a10', 'en', 1, 'https://ror.org/05rkr5a10 M.V. Hospital for Diabetes and Diabetes Research Centre'), (54862, 'https://ror.org/05rpr2102', 'en', 1, 'https://ror.org/05rpr2102 Jehangir Clinical development Centre'), (54863, 'https://ror.org/05rr9na10', 'en', 1, 'https://ror.org/05rr9na10 Rwanda Zambia HIV Research Group'), (54864, 'https://ror.org/05rtjs149', 'no_lang_code', 1, 'https://ror.org/05rtjs149 Goss (United States)'), (54865, 'https://ror.org/05rtqvx30', 'en', 1, 'https://ror.org/05rtqvx30 American Public Media'), (54866, 'https://ror.org/05rv54a27', 'en', 1, 'https://ror.org/05rv54a27 Massachusetts Health Quality Partners'), (54867, 'https://ror.org/05rvwze02', 'en', 1, 'https://ror.org/05rvwze02 Jewish Women’s Foundation of Metropolitan Detroit'), (54868, 'https://ror.org/05rx0pb87', 'en', 1, 'https://ror.org/05rx0pb87 Young Women''s Leadership Network'), (54869, 'https://ror.org/05rzyfd75', 'no_lang_code', 1, 'https://ror.org/05rzyfd75 ProNAi Therapeutics (United States)'), (54870, 'https://ror.org/05s2r4461', 'en', 1, 'https://ror.org/05s2r4461 Federalist Society'), (54871, 'https://ror.org/05s3njy52', 'fr', 1, 'https://ror.org/05s3njy52 Agence de l''Eau Seine Normandie'), (54872, 'https://ror.org/05s4sa025', 'no_lang_code', 1, 'https://ror.org/05s4sa025 Antisense Therapeutics (Australia)'), (54873, 'https://ror.org/05s8da439', 'en', 1, 'https://ror.org/05s8da439 NAMM Foundation'), (54874, 'https://ror.org/05s8w9t64', 'en', 1, 'https://ror.org/05s8w9t64 Warren County Health Department'), (54875, 'https://ror.org/05s9v7453', 'en', 1, 'https://ror.org/05s9v7453 Henry Ford Learning Institute'), (54876, 'https://ror.org/05sb4hv45', 'en', 1, 'https://ror.org/05sb4hv45 Lawrence General Hospital'), (54877, 'https://ror.org/05sbk8w28', 'fr', 1, 'https://ror.org/05sbk8w28 Clinique Jules Verne'), (54878, 'https://ror.org/05sgg2765', 'en', 1, 'https://ror.org/05sgg2765 Australian Spinal Research Foundation'), (54879, 'https://ror.org/05sj5yq92', 'en', 1, 'https://ror.org/05sj5yq92 Ideas42'), (54880, 'https://ror.org/05sjnvv07', 'en', 1, 'https://ror.org/05sjnvv07 Elsa U. Pardee Foundation'), (54881, 'https://ror.org/05skbsx24', 'no_lang_code', 1, 'https://ror.org/05skbsx24 OneAmerica'), (54882, 'https://ror.org/05sqjfk96', 'en', 1, 'https://ror.org/05sqjfk96 Northern California DX Foundation'), (54883, 'https://ror.org/05ss6ff26', 'en', 1, 'https://ror.org/05ss6ff26 State Budget Institution of Health St. Petersburg Clinical Research Center Specialized Types of Medical Care Государственное бюджетное учреждение здравоохранения «Санкт-Петербургский клинический научно-практический центр специализированных видов медицинской помощи (онкологический)»'), (54884, 'https://ror.org/05ssfqx86', 'en', 1, 'https://ror.org/05ssfqx86 Adult and Pediatric Dermatology'), (54885, 'https://ror.org/05svfda47', 'en', 1, 'https://ror.org/05svfda47 Community Foundation of Greene County'), (54886, 'https://ror.org/05svfe466', 'en', 1, 'https://ror.org/05svfe466 Mount Vernon Clinical Research'), (54887, 'https://ror.org/05sw5bk43', 'en', 1, 'https://ror.org/05sw5bk43 Austrian Breast & Colorectal Cancer Study Group'), (54888, 'https://ror.org/05sw8nz16', 'en', 1, 'https://ror.org/05sw8nz16 Sanford Heart Hospital'), (54889, 'https://ror.org/05syrg433', 'en', 1, 'https://ror.org/05syrg433 Nashville Oncology Associates'), (54890, 'https://ror.org/05t1hxr21', 'en', 1, 'https://ror.org/05t1hxr21 George Alexander Foundation'), (54891, 'https://ror.org/05t1jkc79', 'no_lang_code', 1, 'https://ror.org/05t1jkc79 Adyton (Czechia)'), (54892, 'https://ror.org/05t2zwp43', 'no_lang_code', 1, 'https://ror.org/05t2zwp43 Evolva (Switzerland)'), (54893, 'https://ror.org/05t3ctn72', 'de', 1, 'https://ror.org/05t3ctn72 Hans Eggenberger Stiftung'), (54894, 'https://ror.org/05t5jk040', 'en', 1, 'https://ror.org/05t5jk040 PIE Network'), (54895, 'https://ror.org/05t727p43', 'no_lang_code', 1, 'https://ror.org/05t727p43 Allergan (Belgium)'), (54896, 'https://ror.org/05t92nq65', 'en', 1, 'https://ror.org/05t92nq65 Hannah''s Heroes Foundation'), (54897, 'https://ror.org/05t93wr04', 'en', 1, 'https://ror.org/05t93wr04 Liz Claiborne and Art Ortenberg Foundation'), (54898, 'https://ror.org/05taycr33', 'en', 1, 'https://ror.org/05taycr33 Long Island Skin Cancer and Dermatologic Surgery'), (54899, 'https://ror.org/05tbc3h08', 'de', 1, 'https://ror.org/05tbc3h08 Homann-Stiftung'), (54900, 'https://ror.org/05tdr7z74', 'en', 1, 'https://ror.org/05tdr7z74 Innovation Center Denmark'), (54901, 'https://ror.org/05tewmz75', 'en', 1, 'https://ror.org/05tewmz75 Pride Foundation'), (54902, 'https://ror.org/05thfh396', 'en', 1, 'https://ror.org/05thfh396 Seventh People''s Hospital of Dalian 大连市第七人民医院'), (54903, 'https://ror.org/05thwst63', 'en', 1, 'https://ror.org/05thwst63 United States Student Association'), (54904, 'https://ror.org/05tm31061', 'en', 1, 'https://ror.org/05tm31061 Australian Football League'), (54905, 'https://ror.org/05tp8q545', 'en', 1, 'https://ror.org/05tp8q545 Environment and Conservation Fund 環境及自然保育基金'), (54906, 'https://ror.org/05tq1bh21', 'no_lang_code', 1, 'https://ror.org/05tq1bh21 Hospital Bandeirantes'), (54907, 'https://ror.org/05tr58t76', 'no_lang_code', 1, 'https://ror.org/05tr58t76 Cogentix Medical (United States)'), (54908, 'https://ror.org/05tta9x45', 'no_lang_code', 1, 'https://ror.org/05tta9x45 MicroSave'), (54909, 'https://ror.org/05twfsj71', 'en', 1, 'https://ror.org/05twfsj71 Orenburg Regional Clinical Hospital №2'), (54910, 'https://ror.org/05twvb204', 'en', 1, 'https://ror.org/05twvb204 Advanced Dermatology'), (54911, 'https://ror.org/05tya7346', 'en', 1, 'https://ror.org/05tya7346 Joshua Tree National Park Association'), (54912, 'https://ror.org/05tzxyk04', 'en', 1, 'https://ror.org/05tzxyk04 National Agency for the Control of AIDS'), (54913, 'https://ror.org/05v16nd64', 'it', 1, 'https://ror.org/05v16nd64 Agenzia Sanitaria Regionale Abruzzo'), (54914, 'https://ror.org/05v2cwf20', 'en', 1, 'https://ror.org/05v2cwf20 Childrens Cancer Foundation'), (54915, 'https://ror.org/05v2tzz35', 'en', 1, 'https://ror.org/05v2tzz35 Training Programs in Epidemiology and Public Health Interventions Network'), (54916, 'https://ror.org/05v5yjs39', 'en', 1, 'https://ror.org/05v5yjs39 Palaeontological Association'), (54917, 'https://ror.org/05v86fk30', 'no_lang_code', 1, 'https://ror.org/05v86fk30 Ironwood Pharmaceuticals (United States)'), (54918, 'https://ror.org/05v88aw62', 'no_lang_code', 1, 'https://ror.org/05v88aw62 TE Connectivity (Belgium)'), (54919, 'https://ror.org/05vdj2825', 'no_lang_code', 1, 'https://ror.org/05vdj2825 Nihon Kohden (Japan) 日本光電工業株式会社'), (54920, 'https://ror.org/05vdpyw24', 'no_lang_code', 1, 'https://ror.org/05vdpyw24 Auxilium Engineering Services (United Kingdom)'), (54921, 'https://ror.org/05ve11g92', 'en', 1, 'https://ror.org/05ve11g92 Whatcom Community Foundation'), (54922, 'https://ror.org/05vet6f27', 'en', 1, 'https://ror.org/05vet6f27 Pacific Charter School Development'), (54923, 'https://ror.org/05vhwqa91', 'en', 1, 'https://ror.org/05vhwqa91 Independent Sector'), (54924, 'https://ror.org/05vk29a32', 'en', 1, 'https://ror.org/05vk29a32 Sambodhi Research and Communications'), (54925, 'https://ror.org/05vk9vy20', 'en', 1, 'https://ror.org/05vk9vy20 Carolina Urologic Research Center'), (54926, 'https://ror.org/05vnb7y75', 'en', 1, 'https://ror.org/05vnb7y75 New Mexico Cancer Care Alliance'), (54927, 'https://ror.org/05vpv9927', 'en', 1, 'https://ror.org/05vpv9927 Boston Schools Fund'), (54928, 'https://ror.org/05vsxz108', 'en', 1, 'https://ror.org/05vsxz108 National Association of Secondary School Principals'), (54929, 'https://ror.org/05vtsq996', 'en', 1, 'https://ror.org/05vtsq996 KIPP Bay Area Schools'), (54930, 'https://ror.org/05vvw9r90', 'en', 1, 'https://ror.org/05vvw9r90 Office of Adolescent Health'), (54931, 'https://ror.org/05vwr6z89', 'en', 1, 'https://ror.org/05vwr6z89 Mercy Angiography Unit'), (54932, 'https://ror.org/05vwvtg56', 'no_lang_code', 1, 'https://ror.org/05vwvtg56 Context Network (United States)'), (54933, 'https://ror.org/05vz9rv92', 'en', 1, 'https://ror.org/05vz9rv92 Campus Compact'), (54934, 'https://ror.org/05w2bg876', 'en', 1, 'https://ror.org/05w2bg876 South Eastern Health and Social Care Trust'), (54935, 'https://ror.org/05w425588', 'no_lang_code', 1, 'https://ror.org/05w425588 Ciena (United States)'), (54936, 'https://ror.org/05w6jca21', 'en', 1, 'https://ror.org/05w6jca21 HealthCare Chaplaincy Network'), (54937, 'https://ror.org/05w7s8q62', 'en', 1, 'https://ror.org/05w7s8q62 British International Studies Association'), (54938, 'https://ror.org/05w8taj68', 'en', 1, 'https://ror.org/05w8taj68 Dyslexia Foundation'), (54939, 'https://ror.org/05w8zmy08', 'no_lang_code', 1, 'https://ror.org/05w8zmy08 Abivax (France)'), (54940, 'https://ror.org/05wcj0w85', 'en', 1, 'https://ror.org/05wcj0w85 Richland Library'), (54941, 'https://ror.org/05wcp5302', 'en', 1, 'https://ror.org/05wcp5302 Anna-Monika-Foundation'), (54942, 'https://ror.org/05wdyxj97', 'no_lang_code', 1, 'https://ror.org/05wdyxj97 Kyocera (United States)'), (54943, 'https://ror.org/05wf9r455', 'no_lang_code', 1, 'https://ror.org/05wf9r455 Clinipace (United Kingdom)'), (54944, 'https://ror.org/05wg45912', 'no_lang_code', 1, 'https://ror.org/05wg45912 Meritor (France)'), (54945, 'https://ror.org/05wjbkr22', 'en', 1, 'https://ror.org/05wjbkr22 Blowitz-Ridgeway Foundation'), (54946, 'https://ror.org/05wm3vw64', 'en', 1, 'https://ror.org/05wm3vw64 World Economic Forum'), (54947, 'https://ror.org/05wng8211', 'en', 1, 'https://ror.org/05wng8211 Becket Fund for Religious Liberty'), (54948, 'https://ror.org/05wq5t373', 'en', 1, 'https://ror.org/05wq5t373 Australian Association of Social Workers'), (54949, 'https://ror.org/05wqa9613', 'en', 1, 'https://ror.org/05wqa9613 Ang Mo Kio Thye Hua Kwan Hospital'), (54950, 'https://ror.org/05wqwpj81', 'en', 1, 'https://ror.org/05wqwpj81 University Cancer and Blood Center'), (54951, 'https://ror.org/05ws0rr53', 'en', 1, 'https://ror.org/05ws0rr53 Hoopes Vision'), (54952, 'https://ror.org/05wv0yn79', 'en', 1, 'https://ror.org/05wv0yn79 Overseas Press Club Foundation'), (54953, 'https://ror.org/05wx81c53', 'en', 1, 'https://ror.org/05wx81c53 Clarence E. Heller Charitable Foundation'), (54954, 'https://ror.org/05x1ct167', 'en', 1, 'https://ror.org/05x1ct167 Valley Retina Institute'), (54955, 'https://ror.org/05x1syy12', 'en', 1, 'https://ror.org/05x1syy12 Hope Foundation for Research on Ageing'), (54956, 'https://ror.org/05x1xqk69', 'en', 1, 'https://ror.org/05x1xqk69 Center for Inspired Teaching'), (54957, 'https://ror.org/05x23jh68', 'en', 1, 'https://ror.org/05x23jh68 Volunteer Research Group and New Orleans Center for Clinical Research'), (54958, 'https://ror.org/05x26aj56', 'en', 1, 'https://ror.org/05x26aj56 Carol M. Baldwin Breast Cancer Research Fund'), (54959, 'https://ror.org/05x3hz149', 'en', 1, 'https://ror.org/05x3hz149 Financial Markets Foundation for Children'), (54960, 'https://ror.org/05x3ned27', 'en', 1, 'https://ror.org/05x3ned27 Mid Illinois Hematology and Oncology Associates'), (54961, 'https://ror.org/05x3zk779', 'no_lang_code', 1, 'https://ror.org/05x3zk779 Vaxxas (Australia)'), (54962, 'https://ror.org/05x4pgd18', 'en', 1, 'https://ror.org/05x4pgd18 Alaska Heart and Vascular Institute'), (54963, 'https://ror.org/05x8ty706', 'en', 1, 'https://ror.org/05x8ty706 Columbia Global Center'), (54964, 'https://ror.org/05x8wa071', 'en', 1, 'https://ror.org/05x8wa071 Office of Superintendent of Public Instruction'), (54965, 'https://ror.org/05x9xcd23', 'en', 1, 'https://ror.org/05x9xcd23 Midwest Business Group on Health'), (54966, 'https://ror.org/05xbyr893', 'no_lang_code', 1, 'https://ror.org/05xbyr893 Southco (United States)'), (54967, 'https://ror.org/05xcjrc42', 'en', 1, 'https://ror.org/05xcjrc42 Association for the Study of the Middle East and Africa'), (54968, 'https://ror.org/05xckek43', 'en', 1, 'https://ror.org/05xckek43 Boston IVF'), (54969, 'https://ror.org/05xe9t676', 'en', 1, 'https://ror.org/05xe9t676 Banting Research Foundation'), (54970, 'https://ror.org/05xf13p94', 'no_lang_code', 1, 'https://ror.org/05xf13p94 InnoLux (Taiwan) 群創光電股份有限公司'), (54971, 'https://ror.org/05xhay874', 'en', 1, 'https://ror.org/05xhay874 Santa Rosa County Library System'), (54972, 'https://ror.org/05xm6n608', 'en', 1, 'https://ror.org/05xm6n608 Dermatology Clinical Research Center of San Antonio'), (54973, 'https://ror.org/05xp52m23', 'no_lang_code', 1, 'https://ror.org/05xp52m23 Intelligent Decision Systems (Spain)'), (54974, 'https://ror.org/05xph5761', 'en', 1, 'https://ror.org/05xph5761 Harvard Travellers Club'), (54975, 'https://ror.org/05xprgr51', 'no_lang_code', 1, 'https://ror.org/05xprgr51 Veritas (United States)'), (54976, 'https://ror.org/05xq0hs14', 'en', 1, 'https://ror.org/05xq0hs14 World Health Partners'), (54977, 'https://ror.org/05xrwhp03', 'no_lang_code', 1, 'https://ror.org/05xrwhp03 Eisai (Italy)'), (54978, 'https://ror.org/05xs24h03', 'en', 1, 'https://ror.org/05xs24h03 Joseph P. Kennedy Jr. Foundation'), (54979, 'https://ror.org/05xtwn084', 'da', 1, 'https://ror.org/05xtwn084 Knud og Dagny Gad Andresens Fond'), (54980, 'https://ror.org/05xwakr27', 'no_lang_code', 1, 'https://ror.org/05xwakr27 Cellex Cell Professionals (Germany)'), (54981, 'https://ror.org/05xyjr468', 'de', 1, 'https://ror.org/05xyjr468 Klinikum Wilhelmshaven'), (54982, 'https://ror.org/05y09kt11', 'en', 1, 'https://ror.org/05y09kt11 Altoona Arthritis and Osteoporosis Center'), (54983, 'https://ror.org/05y0mgv66', 'en', 1, 'https://ror.org/05y0mgv66 PMG Research'), (54984, 'https://ror.org/05y345c41', 'es', 1, 'https://ror.org/05y345c41 Hospital Jerez Puerta del Sur'), (54985, 'https://ror.org/05y3s9y81', 'en', 1, 'https://ror.org/05y3s9y81 Hyde Family Foundations'), (54986, 'https://ror.org/05y4zkz43', 'de', 1, 'https://ror.org/05y4zkz43 Freiwilligen Akademischen Gesellschaft'), (54987, 'https://ror.org/05y55b611', 'no_lang_code', 1, 'https://ror.org/05y55b611 CSL (Russia)'), (54988, 'https://ror.org/05y73pq15', 'no_lang_code', 1, 'https://ror.org/05y73pq15 Laves-Arzneimittel (Germany)'), (54989, 'https://ror.org/05ya80s18', 'en', 1, 'https://ror.org/05ya80s18 Fred and Mary Koch Foundation'), (54990, 'https://ror.org/05yay9903', 'en', 1, 'https://ror.org/05yay9903 American Dysautonomia Institute'), (54991, 'https://ror.org/05ybghm69', 'en', 1, 'https://ror.org/05ybghm69 Canadian Association for Health Services and Policy Research, l''Association canadienne pur la recherche sur les services et les politiques de la santé'), (54992, 'https://ror.org/05ycax488', 'en', 1, 'https://ror.org/05ycax488 Bradley Foundation'), (54993, 'https://ror.org/05ydgps70', 'en', 1, 'https://ror.org/05ydgps70 North Toronto Eye Care'), (54994, 'https://ror.org/05ydk8712', 'en', 1, 'https://ror.org/05ydk8712 Scottish National Blood Transfusion Service'), (54995, 'https://ror.org/05yezgz95', 'no_lang_code', 1, 'https://ror.org/05yezgz95 Dolorgiet (Germany)'), (54996, 'https://ror.org/05yh0gb04', 'no_lang_code', 1, 'https://ror.org/05yh0gb04 Advenio TecnoSys (India)'), (54997, 'https://ror.org/05yjdg022', 'no_lang_code', 1, 'https://ror.org/05yjdg022 BBB Therapeutics (Netherlands)'), (54998, 'https://ror.org/05ykzvv97', 'da', 1, 'https://ror.org/05ykzvv97 Jascha Fonden'), (54999, 'https://ror.org/05ympyt63', 'en', 1, 'https://ror.org/05ympyt63 E3 Alliance'), (55000, 'https://ror.org/05ymxrx78', 'en', 1, 'https://ror.org/05ymxrx78 NYSUT Education and Learning Trust'), (55001, 'https://ror.org/00002d369', 'no_lang_code', 1, 'https://ror.org/00002d369 Azacycles (Czechia)'), (55002, 'https://ror.org/00029be75', 'en', 1, 'https://ror.org/00029be75 Institute of Biology of Komi Scientific Centre Института биологии Коми НЦ УрО РАН'), (55003, 'https://ror.org/0002exf56', 'nl', 1, 'https://ror.org/0002exf56 Wetenschappelijk Onderzoek- en Documentatiecentrum'), (55004, 'https://ror.org/0003kpv33', 'en', 1, 'https://ror.org/0003kpv33 Biobanking and BioMolecular resources Research Infrastructure The Netherlands'), (55005, 'https://ror.org/0003yay73', 'no_lang_code', 1, 'https://ror.org/0003yay73 SEE Laborde JP (France)'), (55006, 'https://ror.org/00048gf56', 'no_lang_code', 1, 'https://ror.org/00048gf56 Metron (Switzerland)'), (55007, 'https://ror.org/0004a4056', 'en', 1, 'https://ror.org/0004a4056 Alabama Department of Senior Services'), (55008, 'https://ror.org/0007v1468', 'no_lang_code', 1, 'https://ror.org/0007v1468 Amtek (Czechia)'), (55009, 'https://ror.org/0008w9y84', 'no_lang_code', 1, 'https://ror.org/0008w9y84 Jinpo Plus (Czechia)'), (55010, 'https://ror.org/0009bne42', 'en', 1, 'https://ror.org/0009bne42 Immigration and Ethnic History Society'), (55011, 'https://ror.org/0009jge67', 'en', 1, 'https://ror.org/0009jge67 Thoracic Surgery Foundation'), (55012, 'https://ror.org/000bcd992', 'it', 1, 'https://ror.org/000bcd992 Pontificio Istituto di Archeologia Cristiana'), (55013, 'https://ror.org/000bmd472', 'no_lang_code', 1, 'https://ror.org/000bmd472 Kuraray (United States)'), (55014, 'https://ror.org/000dk5152', 'en', 1, 'https://ror.org/000dk5152 New Hampshire State Office of the Governor'), (55015, 'https://ror.org/000ew5688', 'en', 1, 'https://ror.org/000ew5688 Swiss Conference of Cantonal Ministers of Education'), (55016, 'https://ror.org/000gzpv52', 'no_lang_code', 1, 'https://ror.org/000gzpv52 Arcadis (Switzerland)'), (55017, 'https://ror.org/000jc2g50', 'no_lang_code', 1, 'https://ror.org/000jc2g50 Stratacor (United States)'), (55018, 'https://ror.org/000kjq947', 'en', 1, 'https://ror.org/000kjq947 Department of Space'), (55019, 'https://ror.org/000kmds53', 'no_lang_code', 1, 'https://ror.org/000kmds53 Chryso (United States)'), (55020, 'https://ror.org/000kv2m87', 'no_lang_code', 1, 'https://ror.org/000kv2m87 Ostroj (Czechia)'), (55021, 'https://ror.org/000nqjq74', 'no_lang_code', 1, 'https://ror.org/000nqjq74 ASM (Japan)'), (55022, 'https://ror.org/000pgrd37', 'no_lang_code', 1, 'https://ror.org/000pgrd37 Kairosys (United States)'), (55023, 'https://ror.org/000qcd088', 'no_lang_code', 1, 'https://ror.org/000qcd088 L.E.T. Optomechanika (Czechia)'), (55024, 'https://ror.org/000r42360', 'no_lang_code', 1, 'https://ror.org/000r42360 M Plus (Czechia)'), (55025, 'https://ror.org/000s52h07', 'en', 1, 'https://ror.org/000s52h07 Sierra Club'), (55026, 'https://ror.org/000sg8a95', 'de', 1, 'https://ror.org/000sg8a95 Vereinigung der Walliser Museen'), (55027, 'https://ror.org/000x0ym82', 'no_lang_code', 1, 'https://ror.org/000x0ym82 Länsförsäkringar (Sweden)'), (55028, 'https://ror.org/000x56e42', 'de', 1, 'https://ror.org/000x56e42 Kantonsschule Zug'), (55029, 'https://ror.org/000y6ah26', 'es', 1, 'https://ror.org/000y6ah26 CIUDAD'), (55030, 'https://ror.org/000yxte11', 'en', 1, 'https://ror.org/000yxte11 Southern Historical Association'), (55031, 'https://ror.org/000yyt861', 'de', 1, 'https://ror.org/000yyt861 Cardiovascular Medicine at Klinik Im Park Herzgefäss Medizin Klinik Im Park'), (55032, 'https://ror.org/000zqbq25', 'no_lang_code', 1, 'https://ror.org/000zqbq25 Ivitas (Czechia)'), (55033, 'https://ror.org/0010jkx06', 'en', 1, 'https://ror.org/0010jkx06 Indira Gandhi Institute of Technology ଇନ୍ଦିରା ଗାନ୍ଧୀ ବୈଷୟିକ ମହାବିଦ୍ୟାଳୟ)'), (55034, 'https://ror.org/0012b2h06', 'no_lang_code', 1, 'https://ror.org/0012b2h06 ON Semiconductor (Japan)'), (55035, 'https://ror.org/00138a023', 'no_lang_code', 1, 'https://ror.org/00138a023 E4t Electronics for Transportation (Czechia)'), (55036, 'https://ror.org/0014agb17', 'no_lang_code', 1, 'https://ror.org/0014agb17 Stago (France)'), (55037, 'https://ror.org/0014hfa49', 'fr', 1, 'https://ror.org/0014hfa49 Institut Clinident'), (55038, 'https://ror.org/0015kev18', 'no_lang_code', 1, 'https://ror.org/0015kev18 Juki (United States)'), (55039, 'https://ror.org/0016gwv87', 'no_lang_code', 1, 'https://ror.org/0016gwv87 PositronLabs (Czechia)'), (55040, 'https://ror.org/0016qk189', 'en', 1, 'https://ror.org/0016qk189 Gifford Foundation'), (55041, 'https://ror.org/00187xa56', 'no_lang_code', 1, 'https://ror.org/00187xa56 Crossject (France)'), (55042, 'https://ror.org/0018kxj28', 'no_lang_code', 1, 'https://ror.org/0018kxj28 Heat Transfer Systems (Czechia)'), (55043, 'https://ror.org/0018whg19', 'no_lang_code', 1, 'https://ror.org/0018whg19 Texas Instruments (France)'), (55044, 'https://ror.org/0019h1k84', 'en', 1, 'https://ror.org/0019h1k84 Joint European Torus'), (55045, 'https://ror.org/001ctpj73', 'en', 1, 'https://ror.org/001ctpj73 Voice Foundation'), (55046, 'https://ror.org/001dcya02', 'no_lang_code', 1, 'https://ror.org/001dcya02 Hillex (Czechia)'), (55047, 'https://ror.org/001esq883', 'en', 1, 'https://ror.org/001esq883 Czech Fishing Union Český rybářský svaz'), (55048, 'https://ror.org/001f5k487', 'no_lang_code', 1, 'https://ror.org/001f5k487 Precilens (France)'), (55049, 'https://ror.org/001fdsm10', 'cs', 1, 'https://ror.org/001fdsm10 Vyšší Odborná Škola Pedagogická a Sociální Střední Odborná Škola Pedagogická a Gymnázium Praha 6'), (55050, 'https://ror.org/001p94d66', 'no_lang_code', 1, 'https://ror.org/001p94d66 Aveflor (Czechia)'), (55051, 'https://ror.org/001qc6h12', 'no_lang_code', 1, 'https://ror.org/001qc6h12 Precisa Gravimetrics (Switzerland)'), (55052, 'https://ror.org/001rkbe13', 'en', 1, 'https://ror.org/001rkbe13 National Institute of Biomedical Innovation, Health and Nutrition 国立研究開発法人 医薬基盤 健康 栄養研究所'), (55053, 'https://ror.org/001rxm869', 'en', 1, 'https://ror.org/001rxm869 Rosalinde and Arthur Gilbert Foundation'), (55054, 'https://ror.org/001s4x714', 'fr', 1, 'https://ror.org/001s4x714 Institut Supérieur des Matériaux du Mans'), (55055, 'https://ror.org/001tk4253', 'no_lang_code', 1, 'https://ror.org/001tk4253 Philips (China)'), (55056, 'https://ror.org/001tn6x38', 'en', 1, 'https://ror.org/001tn6x38 Institut für Kommunikation & Führung Institute for Communication and Leadership'), (55057, 'https://ror.org/001w3p255', 'de', 1, 'https://ror.org/001w3p255 Pflege-und Adoptivkinder Schweiz'), (55058, 'https://ror.org/001wmc692', 'fi', 1, 'https://ror.org/001wmc692 Lastentautien Tutkimussäätiö'), (55059, 'https://ror.org/001xe7y71', 'en', 1, 'https://ror.org/001xe7y71 Waikato Medical Research Foundation'), (55060, 'https://ror.org/001ydhs21', 'de', 1, 'https://ror.org/001ydhs21 Amt für Umwelt'), (55061, 'https://ror.org/001yjew72', 'en', 1, 'https://ror.org/001yjew72 Kumagai Foundation for Science and Technology 熊谷科学技術振興財団'), (55062, 'https://ror.org/001z7yr93', 'no_lang_code', 1, 'https://ror.org/001z7yr93 Imagination Technologies (United States)'), (55063, 'https://ror.org/001zd1d95', 'no_lang_code', 1, 'https://ror.org/001zd1d95 Alliance Pharmaceuticals (United Kingdom)'), (55064, 'https://ror.org/00212dq27', 'no_lang_code', 1, 'https://ror.org/00212dq27 Elekta (Switzerland)'), (55065, 'https://ror.org/0021qzn44', 'cs', 1, 'https://ror.org/0021qzn44 Ústav Sportovní Medicíny'), (55066, 'https://ror.org/0021ty105', 'cs', 1, 'https://ror.org/0021ty105 Rybářství Mariánské Lázně'), (55067, 'https://ror.org/00227mf78', 'no_lang_code', 1, 'https://ror.org/00227mf78 AG Medical (France)'), (55068, 'https://ror.org/00269pf69', 'no_lang_code', 1, 'https://ror.org/00269pf69 Pramacom-Ht (Czechia)'), (55069, 'https://ror.org/00270m654', 'no_lang_code', 1, 'https://ror.org/00270m654 Wiesner Hager (Czechia)'), (55070, 'https://ror.org/002750k58', 'fr', 1, 'https://ror.org/002750k58 Fondation Suisse pour les Téléthèses'), (55071, 'https://ror.org/0027ecy34', 'cs', 1, 'https://ror.org/0027ecy34 Společnost pro Trvale Udržitelný Život'), (55072, 'https://ror.org/00280kv44', 'no_lang_code', 1, 'https://ror.org/00280kv44 Micromun'), (55073, 'https://ror.org/0028a6m81', 'no_lang_code', 1, 'https://ror.org/0028a6m81 Koutný (Czechia)'), (55074, 'https://ror.org/002ah4568', 'no_lang_code', 1, 'https://ror.org/002ah4568 3Dim Laboratory (Czechia)'), (55075, 'https://ror.org/002dtc250', 'no_lang_code', 1, 'https://ror.org/002dtc250 Syndicom (Switzerland)'), (55076, 'https://ror.org/002e5rj75', 'en', 1, 'https://ror.org/002e5rj75 International Union of Food Science and Technology'), (55077, 'https://ror.org/002ek1q97', 'no_lang_code', 1, 'https://ror.org/002ek1q97 Elisa Development (Czechia)'), (55078, 'https://ror.org/002j9py90', 'no_lang_code', 1, 'https://ror.org/002j9py90 Harry Winston (Switzerland)'), (55079, 'https://ror.org/002jh6a02', 'no_lang_code', 1, 'https://ror.org/002jh6a02 P and L (Czechia)'), (55080, 'https://ror.org/002mxea17', 'no_lang_code', 1, 'https://ror.org/002mxea17 Dean Foods (United States)'), (55081, 'https://ror.org/002ssx495', 'en', 1, 'https://ror.org/002ssx495 Parc National Suisse Parc Naziunal Svizzer Parco Nazionale Svizzero Schweizerischer Nationalpark Swiss National Park'), (55082, 'https://ror.org/002tnjb86', 'de', 1, 'https://ror.org/002tnjb86 Abteilung Bildungsplanung und Evaluation'), (55083, 'https://ror.org/0030qrq56', 'no_lang_code', 1, 'https://ror.org/0030qrq56 Anopress IT (Czechia)'), (55084, 'https://ror.org/003148c04', 'de', 1, 'https://ror.org/003148c04 Textile Research Institute Thuringia-Vogtland Textilforschungsinstitut Thüringen-Vogtland'), (55085, 'https://ror.org/0032wbe47', 'no_lang_code', 1, 'https://ror.org/0032wbe47 Exosome Diagnostics (United States)'), (55086, 'https://ror.org/00336ng80', 'de', 1, 'https://ror.org/00336ng80 Museum Appenzell'), (55087, 'https://ror.org/0037kdt92', 'no_lang_code', 1, 'https://ror.org/0037kdt92 Aptimmune Biologics (United States)'), (55088, 'https://ror.org/0037rj917', 'en', 1, 'https://ror.org/0037rj917 Institute of Mechanics of Metal-Polymer Systems Институт механики металлополимерных систем им. В.А. Белого'), (55089, 'https://ror.org/00396dy63', 'no_lang_code', 1, 'https://ror.org/00396dy63 Vodní Zdroje Ekomonitor (Czechia)'), (55090, 'https://ror.org/003a1f534', 'no_lang_code', 1, 'https://ror.org/003a1f534 Central European Media Enterprises (Czechia)'), (55091, 'https://ror.org/003b2vh96', 'no_lang_code', 1, 'https://ror.org/003b2vh96 Stavební Geologie - Geoprůzkum České Budějovice (Czechia)'), (55092, 'https://ror.org/003bz8x96', 'de', 1, 'https://ror.org/003bz8x96 Wiederkäuerklinik'), (55093, 'https://ror.org/003c3rv52', 'no_lang_code', 1, 'https://ror.org/003c3rv52 KŠ Prefa (Czechia)'), (55094, 'https://ror.org/003dpyf77', 'en', 1, 'https://ror.org/003dpyf77 Swiss Continence Foundation'), (55095, 'https://ror.org/003dv1r84', 'no_lang_code', 1, 'https://ror.org/003dv1r84 Hostýnské Papírny (Czechia)'), (55096, 'https://ror.org/003fbkt80', 'en', 1, 'https://ror.org/003fbkt80 Czech Association of Development Agencies Česká asociace rozvojových agentur'), (55097, 'https://ror.org/003g8w998', 'de', 1, 'https://ror.org/003g8w998 Amt für Hochbauten'), (55098, 'https://ror.org/003g9mh98', 'en', 1, 'https://ror.org/003g9mh98 International Center for Agribusiness Research and Education'), (55099, 'https://ror.org/003garz92', 'no_lang_code', 1, 'https://ror.org/003garz92 Techem (Czechia)'), (55100, 'https://ror.org/003ghjh61', 'no_lang_code', 1, 'https://ror.org/003ghjh61 Pragoprojekt (Czechia)'), (55101, 'https://ror.org/003h15w42', 'no_lang_code', 1, 'https://ror.org/003h15w42 Galaxy Advanced Engineering (United States)'), (55102, 'https://ror.org/003hsj034', 'de', 1, 'https://ror.org/003hsj034 Pro Familia Schweiz'), (55103, 'https://ror.org/003kp3v47', 'no_lang_code', 1, 'https://ror.org/003kp3v47 Dräger (Netherlands)'), (55104, 'https://ror.org/003m2d425', 'no_lang_code', 1, 'https://ror.org/003m2d425 United BioSource Corporation (United Kingdom)'), (55105, 'https://ror.org/003mh1m57', 'de', 1, 'https://ror.org/003mh1m57 Zürcher RehaZentrum Davos'), (55106, 'https://ror.org/003n34405', 'no_lang_code', 1, 'https://ror.org/003n34405 Horphag Research (Switzerland)'), (55107, 'https://ror.org/003nd8341', 'no_lang_code', 1, 'https://ror.org/003nd8341 Medicoat (Switzerland)'), (55108, 'https://ror.org/003p0bk22', 'no_lang_code', 1, 'https://ror.org/003p0bk22 INFICON (Germany)'), (55109, 'https://ror.org/003prxb56', 'cs', 1, 'https://ror.org/003prxb56 Muzeum Cheb'), (55110, 'https://ror.org/003r4c219', 'fr', 1, 'https://ror.org/003r4c219 Service de Santé de la Jeunesse'), (55111, 'https://ror.org/003rrdh33', 'no_lang_code', 1, 'https://ror.org/003rrdh33 Tomst (Czechia)'), (55112, 'https://ror.org/003vk8x91', 'cs', 1, 'https://ror.org/003vk8x91 Selekta Pacov'), (55113, 'https://ror.org/003w4a433', 'en', 1, 'https://ror.org/003w4a433 Corpus Vitrearum International Recherche Internationale sur le Vitrail'), (55114, 'https://ror.org/003z52m74', 'no_lang_code', 1, 'https://ror.org/003z52m74 CCS (Czechia)'), (55115, 'https://ror.org/003zwxt43', 'no_lang_code', 1, 'https://ror.org/003zwxt43 Total Security Installations (United Kingdom)'), (55116, 'https://ror.org/00413jh46', 'no_lang_code', 1, 'https://ror.org/00413jh46 Agrio (Czechia)'), (55117, 'https://ror.org/0042d3p02', 'no_lang_code', 1, 'https://ror.org/0042d3p02 MZ Liberec (Czechia)'), (55118, 'https://ror.org/00438z572', 'en', 1, 'https://ror.org/00438z572 Schweizerisches Sozialarchiv Swiss Social Archives'), (55119, 'https://ror.org/0044gqz05', 'no_lang_code', 1, 'https://ror.org/0044gqz05 Perrigo (Czechia)'), (55120, 'https://ror.org/004542426', 'cs', 1, 'https://ror.org/004542426 Ústav T. G. Masaryka'), (55121, 'https://ror.org/00467td76', 'no_lang_code', 1, 'https://ror.org/00467td76 Mallinckrodt (Ireland)'), (55122, 'https://ror.org/00476rc02', 'no_lang_code', 1, 'https://ror.org/00476rc02 Kone (Switzerland)'), (55123, 'https://ror.org/00479t136', 'en', 1, 'https://ror.org/00479t136 Guangzhou Education Bureau 广州市教育局'), (55124, 'https://ror.org/0047q0m13', 'no_lang_code', 1, 'https://ror.org/0047q0m13 Ecosens (Switzerland)'), (55125, 'https://ror.org/0049pvf34', 'no_lang_code', 1, 'https://ror.org/0049pvf34 Strojírny Olšovec (Czechia)'), (55126, 'https://ror.org/0049tkm42', 'no_lang_code', 1, 'https://ror.org/0049tkm42 Intemac Solutions (Czechia)'), (55127, 'https://ror.org/0049whg19', 'en', 1, 'https://ror.org/0049whg19 Rothschild Caesarea Foundation'), (55128, 'https://ror.org/004cqq657', 'no_lang_code', 1, 'https://ror.org/004cqq657 Bemagro (Czechia)'), (55129, 'https://ror.org/004ea6c05', 'no_lang_code', 1, 'https://ror.org/004ea6c05 Bioanalytica (Switzerland)'), (55130, 'https://ror.org/004ef5a73', 'no_lang_code', 1, 'https://ror.org/004ef5a73 AGC Flat Glass Czech (Czechia)'), (55131, 'https://ror.org/004hdwp61', 'no_lang_code', 1, 'https://ror.org/004hdwp61 Resonance Health (Australia)'), (55132, 'https://ror.org/004j18068', 'no_lang_code', 1, 'https://ror.org/004j18068 ILC Dover (United States)'), (55133, 'https://ror.org/004s1x176', 'no_lang_code', 1, 'https://ror.org/004s1x176 JaP Jacina (Czechia)'), (55134, 'https://ror.org/004sjsc98', 'en', 1, 'https://ror.org/004sjsc98 Students Supporting Brain Tumor Research'), (55135, 'https://ror.org/004vx2m26', 'en', 1, 'https://ror.org/004vx2m26 Vision of Children Foundation'), (55136, 'https://ror.org/00518yz61', 'no_lang_code', 1, 'https://ror.org/00518yz61 Straub Medical (Switzerland)'), (55137, 'https://ror.org/0053tww73', 'no_lang_code', 1, 'https://ror.org/0053tww73 Web Vision Centers (United States)'), (55138, 'https://ror.org/00555bk04', 'no_lang_code', 1, 'https://ror.org/00555bk04 Cultech (United Kingdom)'), (55139, 'https://ror.org/00588h422', 'en', 1, 'https://ror.org/00588h422 Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry ԳԱԱ Օրգանական և դեղագործական քիմիայի գիտատեխնոլոգիական կենտրոն'), (55140, 'https://ror.org/0059c0s27', 'no_lang_code', 1, 'https://ror.org/0059c0s27 Newton Technologies (Czechia)'), (55141, 'https://ror.org/0059sp540', 'en', 1, 'https://ror.org/0059sp540 Ryan Licht Sang Bipolar Foundation'), (55142, 'https://ror.org/005a9av86', 'no_lang_code', 1, 'https://ror.org/005a9av86 STS Prachatice (Czechia)'), (55143, 'https://ror.org/005ag3f48', 'no_lang_code', 1, 'https://ror.org/005ag3f48 Batrec (Switzerland)'), (55144, 'https://ror.org/005f11v91', 'no_lang_code', 1, 'https://ror.org/005f11v91 EndoSphere (United States)'), (55145, 'https://ror.org/005ft2876', 'no_lang_code', 1, 'https://ror.org/005ft2876 Ardeapharma (Czechia)'), (55146, 'https://ror.org/005gp3d85', 'en', 1, 'https://ror.org/005gp3d85 Korea National Park Service'), (55147, 'https://ror.org/005jnhy27', 'cs', 1, 'https://ror.org/005jnhy27 Svaz Výrobců Cementu'), (55148, 'https://ror.org/005k2pp84', 'en', 1, 'https://ror.org/005k2pp84 Innovascience Laboratoire Innovascience'), (55149, 'https://ror.org/005n1mk70', 'no_lang_code', 1, 'https://ror.org/005n1mk70 Cardinal Health (Switzerland)'), (55150, 'https://ror.org/005q35q21', 'no_lang_code', 1, 'https://ror.org/005q35q21 AMT (Czechia)'), (55151, 'https://ror.org/005s3t219', 'en', 1, 'https://ror.org/005s3t219 Boys and Girls Clubs of Metro Los Angeles'), (55152, 'https://ror.org/005t0n560', 'en', 1, 'https://ror.org/005t0n560 Russian Science Support Foundation Региональный общественный Фонд содействия отечественной науке'), (55153, 'https://ror.org/005tenx48', 'no_lang_code', 1, 'https://ror.org/005tenx48 Geodrill (Czechia)'), (55154, 'https://ror.org/005tr1q75', 'no_lang_code', 1, 'https://ror.org/005tr1q75 Alpiq Generation (Czechia)'), (55155, 'https://ror.org/005tvtr96', 'en', 1, 'https://ror.org/005tvtr96 Youthprise'), (55156, 'https://ror.org/005w8dd04', 'en', 1, 'https://ror.org/005w8dd04 IBM Research - Almaden'), (55157, 'https://ror.org/005wff754', 'no_lang_code', 1, 'https://ror.org/005wff754 Focam (Czechia)'), (55158, 'https://ror.org/005wspd72', 'no_lang_code', 1, 'https://ror.org/005wspd72 Compumedics (Australia)'), (55159, 'https://ror.org/005yk2x17', 'no_lang_code', 1, 'https://ror.org/005yk2x17 OneFit Medical (France)'), (55160, 'https://ror.org/005yrpm30', 'en', 1, 'https://ror.org/005yrpm30 Pediatric Cancer Research Foundation'), (55161, 'https://ror.org/005yxzz69', 'en', 1, 'https://ror.org/005yxzz69 Society of Canadian Ornithologists Société des Ornithologistes du Canada'), (55162, 'https://ror.org/005yyvy03', 'no_lang_code', 1, 'https://ror.org/005yyvy03 Lena Chemical (Czechia)'), (55163, 'https://ror.org/005zs1640', 'cs', 1, 'https://ror.org/005zs1640 Asociace Pro Mládež Vědu a Techniku'), (55164, 'https://ror.org/005zvr630', 'de', 1, 'https://ror.org/005zvr630 Forschungsinstitut für Anorganische Werkstoffe -Glas/Keramik'), (55165, 'https://ror.org/00609hp35', 'no_lang_code', 1, 'https://ror.org/00609hp35 Netcope Technologies (Czechia)'), (55166, 'https://ror.org/00610tn07', 'no_lang_code', 1, 'https://ror.org/00610tn07 Medicalex (France)'), (55167, 'https://ror.org/0063kr105', 'cs', 1, 'https://ror.org/0063kr105 Dětské Krizové Centrum'), (55168, 'https://ror.org/0064vct34', 'no_lang_code', 1, 'https://ror.org/0064vct34 Brněnské Vodárny a Kanalizace (Czechia)'), (55169, 'https://ror.org/0065zvt37', 'en', 1, 'https://ror.org/0065zvt37 Central District Health Department'), (55170, 'https://ror.org/00662k397', 'en', 1, 'https://ror.org/00662k397 Scientific-Research Institute of Electric Power Transmission НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ ПОСТОЯННОГО ТОКА'), (55171, 'https://ror.org/0066s0r72', 'en', 1, 'https://ror.org/0066s0r72 Ulla Tuominen Foundation Ulla Tuomisen Säätiö'), (55172, 'https://ror.org/00671p325', 'en', 1, 'https://ror.org/00671p325 Honey Bee Research Institute and Nature Center'), (55173, 'https://ror.org/0067hwx77', 'en', 1, 'https://ror.org/0067hwx77 Nanjing Health and Health Commission 南京市卫生局'), (55174, 'https://ror.org/0068cft64', 'no_lang_code', 1, 'https://ror.org/0068cft64 Kornet (Czechia)'), (55175, 'https://ror.org/0068ff141', 'en', 1, 'https://ror.org/0068ff141 Méditerranée Infection Foundation'), (55176, 'https://ror.org/006ag2j20', 'no_lang_code', 1, 'https://ror.org/006ag2j20 Progres Ekotech (Czechia)'), (55177, 'https://ror.org/006atkg72', 'no_lang_code', 1, 'https://ror.org/006atkg72 Wolfsberg Letecká Továrna (Czechia)'), (55178, 'https://ror.org/006c4xb83', 'en', 1, 'https://ror.org/006c4xb83 Foundation for Agricultural and Rural Resource Management and Sustainability'), (55179, 'https://ror.org/006cer819', 'en', 1, 'https://ror.org/006cer819 Developmental Studies Hybridoma Bank'), (55180, 'https://ror.org/006cjkj15', 'en', 1, 'https://ror.org/006cjkj15 Institute for the Humanities and Information Technologies Институт гуманитарного образования и информационных технологий'), (55181, 'https://ror.org/006fm3q16', 'no_lang_code', 1, 'https://ror.org/006fm3q16 Isomed (France)'), (55182, 'https://ror.org/006hbj696', 'en', 1, 'https://ror.org/006hbj696 Radium Hemmets Research Funds Radiumhemmets forskningsfonder'), (55183, 'https://ror.org/006j60y94', 'no_lang_code', 1, 'https://ror.org/006j60y94 GeoControl Systems (United States)'), (55184, 'https://ror.org/006jv7t09', 'no_lang_code', 1, 'https://ror.org/006jv7t09 TSI System (Czechia)'), (55185, 'https://ror.org/006kf9d11', 'en', 1, 'https://ror.org/006kf9d11 Kyiv School of Economics Київська школа економіки'), (55186, 'https://ror.org/006knrb30', 'en', 1, 'https://ror.org/006knrb30 International Society for Military Law and the Law of War Société Internationale de Droit Militaire et de Droit de la Guerre'), (55187, 'https://ror.org/006qdp021', 'no_lang_code', 1, 'https://ror.org/006qdp021 Scot Young Research (United Kingdom)'), (55188, 'https://ror.org/006rtrx18', 'no_lang_code', 1, 'https://ror.org/006rtrx18 Komerční Železniční Výzkum (Czechia)'), (55189, 'https://ror.org/006sx7h90', 'es', 1, 'https://ror.org/006sx7h90 Fundación Sandra Ibarra de Solidaridad Frente al Cáncer'), (55190, 'https://ror.org/006t5z227', 'no_lang_code', 1, 'https://ror.org/006t5z227 OP Financial Group (Finland)'), (55191, 'https://ror.org/006v2ze46', 'no_lang_code', 1, 'https://ror.org/006v2ze46 Prokop (Czechia)'), (55192, 'https://ror.org/006x9vy35', 'no_lang_code', 1, 'https://ror.org/006x9vy35 Air Jihlava Service (Czechia)'), (55193, 'https://ror.org/0070hxd21', 'no_lang_code', 1, 'https://ror.org/0070hxd21 Sunhai Bioadhesive Technologies (United States)'), (55194, 'https://ror.org/00716cx46', 'no_lang_code', 1, 'https://ror.org/00716cx46 VMK (Czechia)'), (55195, 'https://ror.org/0073d8m13', 'no_lang_code', 1, 'https://ror.org/0073d8m13 Velvana (Czechia)'), (55196, 'https://ror.org/0074rcv14', 'en', 1, 'https://ror.org/0074rcv14 Institute for Soil Science and Agrochemistry Research Інститут ґрунтознавства та агрохімії імені О.Н. Соколовського'), (55197, 'https://ror.org/0074vna73', 'en', 1, 'https://ror.org/0074vna73 Ontario Institute for Regenerative Medicine'), (55198, 'https://ror.org/0078wde10', 'no_lang_code', 1, 'https://ror.org/0078wde10 IKP Consulting Engineers (Czechia)'), (55199, 'https://ror.org/007cmf111', 'en', 1, 'https://ror.org/007cmf111 Eastern Research Institute of Coal Chemistry Восточный научно-исследовательский углехимический институт'), (55200, 'https://ror.org/007e93p80', 'no_lang_code', 1, 'https://ror.org/007e93p80 Radon vos (Czechia)'), (55201, 'https://ror.org/007f41232', 'en', 1, 'https://ror.org/007f41232 Scripps Korea Antibody Institute 스크립스코리아항체연구원'), (55202, 'https://ror.org/007fdqr82', 'no_lang_code', 1, 'https://ror.org/007fdqr82 Kemira (Germany)'), (55203, 'https://ror.org/007gnnh23', 'no_lang_code', 1, 'https://ror.org/007gnnh23 Welltest (Czechia)'), (55204, 'https://ror.org/007h7ca29', 'no_lang_code', 1, 'https://ror.org/007h7ca29 KMC Group (Czechia)'), (55205, 'https://ror.org/007jkh405', 'no_lang_code', 1, 'https://ror.org/007jkh405 Brothier (France)'), (55206, 'https://ror.org/007kemd69', 'no_lang_code', 1, 'https://ror.org/007kemd69 Debiotech (Switzerland)'), (55207, 'https://ror.org/007medz62', 'en', 1, 'https://ror.org/007medz62 Shenyang Science and Technology Bureau 沈阳市科学技术局'), (55208, 'https://ror.org/007q1v885', 'no_lang_code', 1, 'https://ror.org/007q1v885 Schneider Electric (Denmark)'), (55209, 'https://ror.org/007t9rq67', 'no_lang_code', 1, 'https://ror.org/007t9rq67 Aqua Procon (Czechia)'), (55210, 'https://ror.org/007vffa52', 'no_lang_code', 1, 'https://ror.org/007vffa52 Foodlink'), (55211, 'https://ror.org/007wcet58', 'no_lang_code', 1, 'https://ror.org/007wcet58 GTW Bearings (Czechia)'), (55212, 'https://ror.org/007x2j456', 'no_lang_code', 1, 'https://ror.org/007x2j456 Batumi Botanical Garden ბათუმის ბოტანიკური ბაღი'), (55213, 'https://ror.org/007zhvp17', 'no_lang_code', 1, 'https://ror.org/007zhvp17 Williams (United States)'), (55214, 'https://ror.org/008226x45', 'no_lang_code', 1, 'https://ror.org/008226x45 EM Brno (Czechia)'), (55215, 'https://ror.org/00826gz80', 'de', 1, 'https://ror.org/00826gz80 Deutsche José Carreras Leukämie-Stiftung'), (55216, 'https://ror.org/0086yq776', 'no_lang_code', 1, 'https://ror.org/0086yq776 SEEIF Ceramic (Czechia)'), (55217, 'https://ror.org/008798434', 'en', 1, 'https://ror.org/008798434 West Central Initiative'), (55218, 'https://ror.org/0089a0566', 'de', 1, 'https://ror.org/0089a0566 Robert Walser-Zentrum'), (55219, 'https://ror.org/0089bg420', 'en', 1, 'https://ror.org/0089bg420 Daresbury Laboratory'), (55220, 'https://ror.org/0089p6r11', 'no_lang_code', 1, 'https://ror.org/0089p6r11 Hobl & Pech (Czechia)'), (55221, 'https://ror.org/0089t7988', 'en', 1, 'https://ror.org/0089t7988 Rosa Luxemburg Foundation Rosa-Luxemburg-Stiftung'), (55222, 'https://ror.org/008bxhv54', 'en', 1, 'https://ror.org/008bxhv54 Jilin Zixin Pharmaceutical Industrial 吉林紫鑫药业股份有限公司官方网站'), (55223, 'https://ror.org/008c6se98', 'en', 1, 'https://ror.org/008c6se98 Unity Through Knowledge Fund'), (55224, 'https://ror.org/008c8w304', 'no_lang_code', 1, 'https://ror.org/008c8w304 BotaniPharm (United States)'); INSERT INTO `rors` VALUES (55225, 'https://ror.org/008cftc05', 'en', 1, 'https://ror.org/008cftc05 Regional Center for Poison Control and Prevention'), (55226, 'https://ror.org/008cqbc52', 'en', 1, 'https://ror.org/008cqbc52 Next Generation Infrastructures Stichting Next Generation Infrastructures'), (55227, 'https://ror.org/008gfyt86', 'fr', 1, 'https://ror.org/008gfyt86 Groupe ICV, Institut coopératif du vin'), (55228, 'https://ror.org/008h3f304', 'no_lang_code', 1, 'https://ror.org/008h3f304 Portmann Instruments (Switzerland)'), (55229, 'https://ror.org/008jcqh21', 'no_lang_code', 1, 'https://ror.org/008jcqh21 CS-Beton (Czechia)'), (55230, 'https://ror.org/008je7023', 'no_lang_code', 1, 'https://ror.org/008je7023 E therm TZ (Czechia)'), (55231, 'https://ror.org/008jjpw82', 'no_lang_code', 1, 'https://ror.org/008jjpw82 ITA Intertact (Czechia)'), (55232, 'https://ror.org/008kw6k79', 'no_lang_code', 1, 'https://ror.org/008kw6k79 Ecoprogress (Czechia)'), (55233, 'https://ror.org/008p7sp64', 'no_lang_code', 1, 'https://ror.org/008p7sp64 Millar (New Zealand)'), (55234, 'https://ror.org/008r0bg49', 'en', 1, 'https://ror.org/008r0bg49 Footwear & Recreation Technology Research Institute'), (55235, 'https://ror.org/008rnfn31', 'no_lang_code', 1, 'https://ror.org/008rnfn31 TTS Group (Czechia)'), (55236, 'https://ror.org/008rrb089', 'en', 1, 'https://ror.org/008rrb089 Vyatka State University of Humanities Вятский государственный гуманитарный университет'), (55237, 'https://ror.org/008rtq165', 'en', 1, 'https://ror.org/008rtq165 Society for the Study of Social Problems'), (55238, 'https://ror.org/008sh5980', 'no_lang_code', 1, 'https://ror.org/008sh5980 Midas Mediscience (United Kingdom)'), (55239, 'https://ror.org/008trbj46', 'no_lang_code', 1, 'https://ror.org/008trbj46 Aging Community Coordinated Enterprises and Supportive Services (United States)'), (55240, 'https://ror.org/008v8ay36', 'en', 1, 'https://ror.org/008v8ay36 Thorsten and Elsa Segerfalk Foundation Torsten och Elsa Segerfalks stiftelse'), (55241, 'https://ror.org/008yk9930', 'de', 1, 'https://ror.org/008yk9930 Römisches Institut der Görres-Gesellschaft'), (55242, 'https://ror.org/00902kb83', 'no_lang_code', 1, 'https://ror.org/00902kb83 Kell (Czechia)'), (55243, 'https://ror.org/0091az632', 'no_lang_code', 1, 'https://ror.org/0091az632 Dynamic Future (Czechia)'), (55244, 'https://ror.org/0091pmq63', 'en', 1, 'https://ror.org/0091pmq63 DermaCare Neuroscience Institute'), (55245, 'https://ror.org/00927ty10', 'no_lang_code', 1, 'https://ror.org/00927ty10 Cayman Chemical (United States)'), (55246, 'https://ror.org/0092af185', 'no_lang_code', 1, 'https://ror.org/0092af185 PNM Resources (United States)'), (55247, 'https://ror.org/0092jp739', 'en', 1, 'https://ror.org/0092jp739 Thundermist Health Center'), (55248, 'https://ror.org/0095dm157', 'no_lang_code', 1, 'https://ror.org/0095dm157 Tsumura Research Institute (Japan) 津村総合研究所'), (55249, 'https://ror.org/00964b496', 'en', 1, 'https://ror.org/00964b496 Young Men''s Christian Association Of Greater Grand Rapids'), (55250, 'https://ror.org/009759b62', 'no_lang_code', 1, 'https://ror.org/009759b62 ZetrOZ Systems (United States)'), (55251, 'https://ror.org/00996ck84', 'no_lang_code', 1, 'https://ror.org/00996ck84 Médical Innovation Développement (France)'), (55252, 'https://ror.org/0099z8h13', 'en', 1, 'https://ror.org/0099z8h13 Deutsch-Israelische Zusammenarbeit German-Israeli Cooperation'), (55253, 'https://ror.org/009bet131', 'sv', 1, 'https://ror.org/009bet131 Göranssonska Stiftelserna'), (55254, 'https://ror.org/009d05f16', 'no_lang_code', 1, 'https://ror.org/009d05f16 Top - Modern (Czechia)'), (55255, 'https://ror.org/009erme80', 'en', 1, 'https://ror.org/009erme80 Tbilisi State Academy of Arts თბილისის სახელმწიფო სამხატვრო აკადემია'), (55256, 'https://ror.org/009g2k883', 'no_lang_code', 1, 'https://ror.org/009g2k883 Cleantex (Czechia)'), (55257, 'https://ror.org/009gady73', 'no_lang_code', 1, 'https://ror.org/009gady73 Prokop Rail (Czechia)'), (55258, 'https://ror.org/009j8n021', 'no_lang_code', 1, 'https://ror.org/009j8n021 Polynomics (Switzerland)'), (55259, 'https://ror.org/009n12s59', 'en', 1, 'https://ror.org/009n12s59 Institute for Sustainable Communication'), (55260, 'https://ror.org/009nd6m74', 'de', 1, 'https://ror.org/009nd6m74 Pro Helvetia'), (55261, 'https://ror.org/009pahg55', 'en', 1, 'https://ror.org/009pahg55 Mahatma Gandhi Institute for Rural Industrialization'), (55262, 'https://ror.org/009qbz979', 'no_lang_code', 1, 'https://ror.org/009qbz979 Lintech (Czechia)'), (55263, 'https://ror.org/009qg7s70', 'en', 1, 'https://ror.org/009qg7s70 Parkinson’s Disease Foundation of India'), (55264, 'https://ror.org/009vp0837', 'fi', 1, 'https://ror.org/009vp0837 Paavo Nurmen Säätiö'), (55265, 'https://ror.org/009vrtv70', 'no_lang_code', 1, 'https://ror.org/009vrtv70 Aptar (Germany)'), (55266, 'https://ror.org/009xea408', 'no_lang_code', 1, 'https://ror.org/009xea408 Aeronautical and General Instruments'), (55267, 'https://ror.org/009xyca19', 'no_lang_code', 1, 'https://ror.org/009xyca19 Heltos (Czechia)'), (55268, 'https://ror.org/00a1fpp20', 'en', 1, 'https://ror.org/00a1fpp20 HSC Health Care System'), (55269, 'https://ror.org/00a2crp77', 'no_lang_code', 1, 'https://ror.org/00a2crp77 ViDiS (Czechia)'), (55270, 'https://ror.org/00a7jbz14', 'es', 1, 'https://ror.org/00a7jbz14 Fundación Caja Navarra'), (55271, 'https://ror.org/00a99dg75', 'de', 1, 'https://ror.org/00a99dg75 Medienboard Berlin-Brandenburg'), (55272, 'https://ror.org/00a9saw63', 'cs', 1, 'https://ror.org/00a9saw63 Zkušebna Kamene a Kameniva'), (55273, 'https://ror.org/00a9x6k20', 'no_lang_code', 1, 'https://ror.org/00a9x6k20 Exact Control System (Czechia)'), (55274, 'https://ror.org/00aa64v88', 'fr', 1, 'https://ror.org/00aa64v88 Laboratoire Romand de Dendrochronologie'), (55275, 'https://ror.org/00aa7ab77', 'en', 1, 'https://ror.org/00aa7ab77 Scientific Research Institute of Organic Intermediates and Dyes ФГУП «Государственный научный центр „НИОПИК“'), (55276, 'https://ror.org/00aamwa29', 'no_lang_code', 1, 'https://ror.org/00aamwa29 Schaeffer (Switzerland)'), (55277, 'https://ror.org/00adb1q31', 'en', 1, 'https://ror.org/00adb1q31 Pushkin Museum Музей изобразительных искусств им. А.С. Пушкина'), (55278, 'https://ror.org/00af5ps59', 'no_lang_code', 1, 'https://ror.org/00af5ps59 Züblin (United States)'), (55279, 'https://ror.org/00ahtnc04', 'no_lang_code', 1, 'https://ror.org/00ahtnc04 Festool (Czechia)'), (55280, 'https://ror.org/00ajs1721', 'no_lang_code', 1, 'https://ror.org/00ajs1721 Koyo Bearings (Czechia)'), (55281, 'https://ror.org/00akda788', 'no_lang_code', 1, 'https://ror.org/00akda788 1 - Cube (Czechia)'), (55282, 'https://ror.org/00akqa526', 'en', 1, 'https://ror.org/00akqa526 Samuel H. Kress Foundation'), (55283, 'https://ror.org/00am0th03', 'en', 1, 'https://ror.org/00am0th03 Wyncote Foundation'), (55284, 'https://ror.org/00ammxx28', 'en', 1, 'https://ror.org/00ammxx28 Regional State Archives in Trebon Státní oblastní archiv v Třeboni'), (55285, 'https://ror.org/00ar31v66', 'cs', 1, 'https://ror.org/00ar31v66 Městské lesy Hradec Králové'), (55286, 'https://ror.org/00arm4s37', 'de', 1, 'https://ror.org/00arm4s37 State Archives Basel-Stadt'), (55287, 'https://ror.org/00aw6xe57', 'en', 1, 'https://ror.org/00aw6xe57 Cave Administration of the Czech Republic Správa Jeskyní České Republiky'), (55288, 'https://ror.org/00awwz417', 'it', 1, 'https://ror.org/00awwz417 Istituto per la Storia del Pensiero Filosofico e Scientifico Moderno'), (55289, 'https://ror.org/00axz6z61', 'en', 1, 'https://ror.org/00axz6z61 St. Paul’s Foundation'), (55290, 'https://ror.org/00b0e2156', 'en', 1, 'https://ror.org/00b0e2156 Reflections of Grace Foundation'), (55291, 'https://ror.org/00b23k705', 'en', 1, 'https://ror.org/00b23k705 Singapore Heart Foundation'), (55292, 'https://ror.org/00b3qfx47', 'no_lang_code', 1, 'https://ror.org/00b3qfx47 Larad (United States)'), (55293, 'https://ror.org/00b52f734', 'no_lang_code', 1, 'https://ror.org/00b52f734 Laboratoires Sebbin (France)'), (55294, 'https://ror.org/00b6h7f51', 'en', 1, 'https://ror.org/00b6h7f51 Economic Development Commission of Floridas Space Coast'), (55295, 'https://ror.org/00b8nfj92', 'en', 1, 'https://ror.org/00b8nfj92 Jangheung Mushroom Industry Research 장흥군버섯산업연구원'), (55296, 'https://ror.org/00b8vr735', 'no_lang_code', 1, 'https://ror.org/00b8vr735 Danone (Czechia)'), (55297, 'https://ror.org/00ba8tz47', 'no_lang_code', 1, 'https://ror.org/00ba8tz47 Würth (Germany)'), (55298, 'https://ror.org/00baskk38', 'en', 1, 'https://ror.org/00baskk38 Institut für Biomedizinische Technik Institute for Biomedical Engineering'), (55299, 'https://ror.org/00bat7f70', 'no_lang_code', 1, 'https://ror.org/00bat7f70 Buzuluk (Czechia)'), (55300, 'https://ror.org/00bc02d26', 'fr', 1, 'https://ror.org/00bc02d26 Cizeta Medicali'), (55301, 'https://ror.org/00bdtcm28', 'en', 1, 'https://ror.org/00bdtcm28 Institute for State Control of Veterinary Biologicals and Medicines Ústav pro státní kontrolu veterinárních biopreparátů a léčiv'), (55302, 'https://ror.org/00be7h315', 'no_lang_code', 1, 'https://ror.org/00be7h315 Bayer (Czechia)'), (55303, 'https://ror.org/00begqh73', 'no_lang_code', 1, 'https://ror.org/00begqh73 General Electric (New Zealand)'), (55304, 'https://ror.org/00bf8wg73', 'no_lang_code', 1, 'https://ror.org/00bf8wg73 Kovo Novak (Czechia)'), (55305, 'https://ror.org/00bfx7n30', 'no_lang_code', 1, 'https://ror.org/00bfx7n30 Tamedia (Switzerland)'), (55306, 'https://ror.org/00bg52247', 'no_lang_code', 1, 'https://ror.org/00bg52247 Furukawa Electric (United States)'), (55307, 'https://ror.org/00bg9m975', 'en', 1, 'https://ror.org/00bg9m975 Astro Space Center'), (55308, 'https://ror.org/00bgpxp73', 'no_lang_code', 1, 'https://ror.org/00bgpxp73 Robotik Technology (France)'), (55309, 'https://ror.org/00bjp5r54', 'no_lang_code', 1, 'https://ror.org/00bjp5r54 Color Spectrum (Czechia)'), (55310, 'https://ror.org/00bmh2944', 'no_lang_code', 1, 'https://ror.org/00bmh2944 Besins Healthcare (France)'), (55311, 'https://ror.org/00bmpd145', 'en', 1, 'https://ror.org/00bmpd145 Charles Humbert 8'), (55312, 'https://ror.org/00bmwn733', 'no_lang_code', 1, 'https://ror.org/00bmwn733 Progeo (Czechia)'), (55313, 'https://ror.org/00bn3c948', 'no_lang_code', 1, 'https://ror.org/00bn3c948 Czech Space Research Centre (Czechia)'), (55314, 'https://ror.org/00bp6rb10', 'no_lang_code', 1, 'https://ror.org/00bp6rb10 Quantum (Australia)'), (55315, 'https://ror.org/00bps5g02', 'no_lang_code', 1, 'https://ror.org/00bps5g02 Husky (Luxembourg)'), (55316, 'https://ror.org/00bqv9n12', 'no_lang_code', 1, 'https://ror.org/00bqv9n12 Aston Medical (France)'), (55317, 'https://ror.org/00bs8t174', 'de', 1, 'https://ror.org/00bs8t174 Gesundheitsdienst'), (55318, 'https://ror.org/00bx5zt27', 'no_lang_code', 1, 'https://ror.org/00bx5zt27 Bazar strojů (Czechia)'), (55319, 'https://ror.org/00bzcvv61', 'en', 1, 'https://ror.org/00bzcvv61 Technical and Test Institute for Construction Prague Technický a zkušební ústav stavební Praha, s.p.'), (55320, 'https://ror.org/00c0pch62', 'en', 1, 'https://ror.org/00c0pch62 Sunflower Foundation'), (55321, 'https://ror.org/00c2hgn02', 'no_lang_code', 1, 'https://ror.org/00c2hgn02 GDK (Czechia)'), (55322, 'https://ror.org/00c35nc92', 'en', 1, 'https://ror.org/00c35nc92 Cantonal Museum of Fine Arts Musée cantonal des beaux-arts'), (55323, 'https://ror.org/00c4q9a37', 'no_lang_code', 1, 'https://ror.org/00c4q9a37 Materialise (Czechia)'), (55324, 'https://ror.org/00c51ea71', 'en', 1, 'https://ror.org/00c51ea71 Western Australian Genealogical Society'), (55325, 'https://ror.org/00c5kj875', 'no_lang_code', 1, 'https://ror.org/00c5kj875 Stratec (Switzerland)'), (55326, 'https://ror.org/00c5qfd88', 'no_lang_code', 1, 'https://ror.org/00c5qfd88 Ortotika (Czechia)'), (55327, 'https://ror.org/00c798y78', 'no_lang_code', 1, 'https://ror.org/00c798y78 Laser-Tech (Czechia)'), (55328, 'https://ror.org/00c7xe135', 'no_lang_code', 1, 'https://ror.org/00c7xe135 Strojmetal Aluminium Forging (Czechia)'), (55329, 'https://ror.org/00c89j038', 'en', 1, 'https://ror.org/00c89j038 Innovative Research Institute for Cell Therapy'), (55330, 'https://ror.org/00c8vzn79', 'no_lang_code', 1, 'https://ror.org/00c8vzn79 Fruko Schulz (Czechia)'), (55331, 'https://ror.org/00ca8m310', 'cs', 1, 'https://ror.org/00ca8m310 Společenstvo Kominíků České republiky'), (55332, 'https://ror.org/00cagd171', 'cs', 1, 'https://ror.org/00cagd171 Zemědělské Družstvo Maleč'), (55333, 'https://ror.org/00cbksp73', 'no_lang_code', 1, 'https://ror.org/00cbksp73 Foller (Czechia)'), (55334, 'https://ror.org/00ccse471', 'en', 1, 'https://ror.org/00ccse471 State Regional Archives Litomerice Státní oblastní archiv v Litoměřicích'), (55335, 'https://ror.org/00cezwy16', 'no_lang_code', 1, 'https://ror.org/00cezwy16 Enzo Life Sciences (Switzerland)'), (55336, 'https://ror.org/00cfkaw62', 'en', 1, 'https://ror.org/00cfkaw62 The European Academy of Gynaecological Surgery'), (55337, 'https://ror.org/00cgv2351', 'en', 1, 'https://ror.org/00cgv2351 San Francisco General Hospital Foundation'), (55338, 'https://ror.org/00cjhk544', 'no_lang_code', 1, 'https://ror.org/00cjhk544 EP Energy (Czechia)'), (55339, 'https://ror.org/00cjvpn28', 'no_lang_code', 1, 'https://ror.org/00cjvpn28 Capital Group (United States)'), (55340, 'https://ror.org/00ckakm23', 'en', 1, 'https://ror.org/00ckakm23 Sigrid Juséliuksen säätiö Sigrid Jusélius Foundation'), (55341, 'https://ror.org/00cmkfq61', 'no_lang_code', 1, 'https://ror.org/00cmkfq61 Appecastro (Czechia)'), (55342, 'https://ror.org/00cn0kw78', 'no_lang_code', 1, 'https://ror.org/00cn0kw78 Anhui Conch Design and Research Institute of Building Materials (China)'), (55343, 'https://ror.org/00cn31g95', 'no_lang_code', 1, 'https://ror.org/00cn31g95 L.A.C. (Switzerland)'), (55344, 'https://ror.org/00cpjsn56', 'no_lang_code', 1, 'https://ror.org/00cpjsn56 VTL Blansko (Czechia)'), (55345, 'https://ror.org/00cqgv790', 'no_lang_code', 1, 'https://ror.org/00cqgv790 Kohler (United Kingdom)'), (55346, 'https://ror.org/00cs24427', 'en', 1, 'https://ror.org/00cs24427 Roddenberry Foundation'), (55347, 'https://ror.org/00cv3vp39', 'fr', 1, 'https://ror.org/00cv3vp39 Verzone Woods Architectes'), (55348, 'https://ror.org/00cw6jm89', 'en', 1, 'https://ror.org/00cw6jm89 Schweizerische Radio- und Fernsehgesellschaft Societad Svizra da Radio e Televisiun Società svizzera di radiotelevisione Société suisse de radiodiffusion et télévision Swiss Broadcasting Corporation'), (55349, 'https://ror.org/00cw9jq79', 'no_lang_code', 1, 'https://ror.org/00cw9jq79 Sicar (Czechia)'), (55350, 'https://ror.org/00cwx0b58', 'no_lang_code', 1, 'https://ror.org/00cwx0b58 Bohemilk (Czechia)'), (55351, 'https://ror.org/00cyfpb31', 'no_lang_code', 1, 'https://ror.org/00cyfpb31 Strojírny a stavby Třinec (Czechia)'), (55352, 'https://ror.org/00cz2hc49', 'en', 1, 'https://ror.org/00cz2hc49 Maryland State Office Of The Governor'), (55353, 'https://ror.org/00cztjn15', 'en', 1, 'https://ror.org/00cztjn15 Hinge Health'), (55354, 'https://ror.org/00d0m6v41', 'en', 1, 'https://ror.org/00d0m6v41 Aid Health and Development Onlus'), (55355, 'https://ror.org/00d3r7025', 'no_lang_code', 1, 'https://ror.org/00d3r7025 RHI Magnesita (Austria)'), (55356, 'https://ror.org/00d3z0048', 'en', 1, 'https://ror.org/00d3z0048 Center for Liberal Democratic Studies'), (55357, 'https://ror.org/00d45ws96', 'no_lang_code', 1, 'https://ror.org/00d45ws96 Asseco (Czechia)'), (55358, 'https://ror.org/00d57b563', 'en', 1, 'https://ror.org/00d57b563 SIL International'), (55359, 'https://ror.org/00d670121', 'en', 1, 'https://ror.org/00d670121 St Giles Foundation'), (55360, 'https://ror.org/00d7dzb74', 'no_lang_code', 1, 'https://ror.org/00d7dzb74 PavEx (Czechia)'), (55361, 'https://ror.org/00d9n9k04', 'no_lang_code', 1, 'https://ror.org/00d9n9k04 Agriforest (Switzerland)'), (55362, 'https://ror.org/00d9y8h06', 'ca', 1, 'https://ror.org/00d9y8h06 Servei de Salut de les Illes Balears'), (55363, 'https://ror.org/00da4yk20', 'en', 1, 'https://ror.org/00da4yk20 Association of Africans Living in Vermont'), (55364, 'https://ror.org/00dbv2r88', 'no_lang_code', 1, 'https://ror.org/00dbv2r88 Wombat (Czechia)'), (55365, 'https://ror.org/00dcjap62', 'no_lang_code', 1, 'https://ror.org/00dcjap62 Nitto Chemical Industry (Japan)'), (55366, 'https://ror.org/00dcm7m32', 'no_lang_code', 1, 'https://ror.org/00dcm7m32 Civitas per Populi'), (55367, 'https://ror.org/00ddb1628', 'no_lang_code', 1, 'https://ror.org/00ddb1628 Ataco (Czechia)'), (55368, 'https://ror.org/00ddy0v87', 'it', 1, 'https://ror.org/00ddy0v87 Ufficio di Statistica'), (55369, 'https://ror.org/00debpx34', 'cs', 1, 'https://ror.org/00debpx34 MŠ Na Smetance'), (55370, 'https://ror.org/00dkwfy62', 'cs', 1, 'https://ror.org/00dkwfy62 Okresní Hospodářská Komora'), (55371, 'https://ror.org/00dkwrz68', 'en', 1, 'https://ror.org/00dkwrz68 Kenneth Rainin Foundation'), (55372, 'https://ror.org/00dnz1633', 'no_lang_code', 1, 'https://ror.org/00dnz1633 Seco Group (Czechia)'), (55373, 'https://ror.org/00dp6v107', 'no_lang_code', 1, 'https://ror.org/00dp6v107 Projekty Vodam (Czechia)'), (55374, 'https://ror.org/00dqtka84', 'no_lang_code', 1, 'https://ror.org/00dqtka84 FIM Medical (France)'), (55375, 'https://ror.org/00dqzma51', 'no_lang_code', 1, 'https://ror.org/00dqzma51 Výrobní družstvo Slezská Hořina (Czechia)'), (55376, 'https://ror.org/00dt0nn62', 'de', 1, 'https://ror.org/00dt0nn62 Pro Vistiliaco'), (55377, 'https://ror.org/00dtqsj35', 'en', 1, 'https://ror.org/00dtqsj35 Office Of Health Economics'), (55378, 'https://ror.org/00dtszh11', 'no_lang_code', 1, 'https://ror.org/00dtszh11 S Group Holding (Czechia)'), (55379, 'https://ror.org/00dzheg11', 'en', 1, 'https://ror.org/00dzheg11 National Family Planning & Reproductive Health Association'), (55380, 'https://ror.org/00e17ad95', 'en', 1, 'https://ror.org/00e17ad95 Meyerlustenberger Lachenal Attorneys at Law'), (55381, 'https://ror.org/00e56ek71', 'no_lang_code', 1, 'https://ror.org/00e56ek71 Groupe Winncare (France)'), (55382, 'https://ror.org/00e7h6j41', 'en', 1, 'https://ror.org/00e7h6j41 Japan Institute of Leather Research 日本皮革研究所'), (55383, 'https://ror.org/00e8pgs50', 'de', 1, 'https://ror.org/00e8pgs50 Beckmann-Institut für Technologieentwicklung'), (55384, 'https://ror.org/00e9xte80', 'de', 1, 'https://ror.org/00e9xte80 Pro Pferd'), (55385, 'https://ror.org/00ecyj017', 'no_lang_code', 1, 'https://ror.org/00ecyj017 TOS Svitavy (Czechia)'), (55386, 'https://ror.org/00edhwf08', 'no_lang_code', 1, 'https://ror.org/00edhwf08 Oertli Instrumente (Switzerland)'), (55387, 'https://ror.org/00ef2rd26', 'cs', 1, 'https://ror.org/00ef2rd26 Oblastní muzeum v Litoměřicích'), (55388, 'https://ror.org/00effcn18', 'no_lang_code', 1, 'https://ror.org/00effcn18 Qualiform (Czechia)'), (55389, 'https://ror.org/00efyhw94', 'cs', 1, 'https://ror.org/00efyhw94 Editio Janáček'), (55390, 'https://ror.org/00egtf878', 'en', 1, 'https://ror.org/00egtf878 Society for Psychical Research'), (55391, 'https://ror.org/00ej6x457', 'no_lang_code', 1, 'https://ror.org/00ej6x457 Emerson (Sweden)'), (55392, 'https://ror.org/00ejn2425', 'en', 1, 'https://ror.org/00ejn2425 Pennington Biomedical Research Foundation'), (55393, 'https://ror.org/00emm5t38', 'en', 1, 'https://ror.org/00emm5t38 The International Heart Institute of Montana'), (55394, 'https://ror.org/00en0be76', 'en', 1, 'https://ror.org/00en0be76 Sudbury Foundation'), (55395, 'https://ror.org/00eqvhf81', 'no_lang_code', 1, 'https://ror.org/00eqvhf81 Urbaplan (Switzerland)'), (55396, 'https://ror.org/00ex2js61', 'en', 1, 'https://ror.org/00ex2js61 Research Center for Applied Science, Academia Sinica 中央研究院應用科學研究中心'), (55397, 'https://ror.org/00exwt685', 'en', 1, 'https://ror.org/00exwt685 Czechoslovak Society for Forensic Genetics Československé společnosti pro forenzní genetiku'), (55398, 'https://ror.org/00ey19s74', 'no_lang_code', 1, 'https://ror.org/00ey19s74 Bilfinger MCE (Czechia)'), (55399, 'https://ror.org/00eyy9c71', 'en', 1, 'https://ror.org/00eyy9c71 Travis Roy Foundation'), (55400, 'https://ror.org/00ez64n04', 'no_lang_code', 1, 'https://ror.org/00ez64n04 Ditana (Czechia)'), (55401, 'https://ror.org/00ez8pa22', 'en', 1, 'https://ror.org/00ez8pa22 Far Eastern State Institute of Arts Дальневосточный государственный институт искусств [править | править вики-текст]'), (55402, 'https://ror.org/00ezvft90', 'en', 1, 'https://ror.org/00ezvft90 Laboratory of Excellence GR-Ex'), (55403, 'https://ror.org/00f2df561', 'no_lang_code', 1, 'https://ror.org/00f2df561 Arming (Czechia)'), (55404, 'https://ror.org/00f30ft24', 'no_lang_code', 1, 'https://ror.org/00f30ft24 ALS (Czechia)'), (55405, 'https://ror.org/00f4jy747', 'no_lang_code', 1, 'https://ror.org/00f4jy747 CID International (Czechia)'), (55406, 'https://ror.org/00f89qm26', 'de', 1, 'https://ror.org/00f89qm26 Landesdenkmalamt Baden Württemberg'), (55407, 'https://ror.org/00f9cn816', 'no_lang_code', 1, 'https://ror.org/00f9cn816 Lifetech (Czechia)'), (55408, 'https://ror.org/00fakpg77', 'no_lang_code', 1, 'https://ror.org/00fakpg77 Rent-Pharm (Czechia)'), (55409, 'https://ror.org/00fanpm32', 'no_lang_code', 1, 'https://ror.org/00fanpm32 Ransom Naturals (United Kingdom)'), (55410, 'https://ror.org/00fb2p217', 'no_lang_code', 1, 'https://ror.org/00fb2p217 Barco (Czechia)'), (55411, 'https://ror.org/00fb4ms10', 'en', 1, 'https://ror.org/00fb4ms10 Promobilia Foundation Stiftelsen Promobilia'), (55412, 'https://ror.org/00fg6ye96', 'cs', 1, 'https://ror.org/00fg6ye96 Svaz Pěstitelů A Zpracovatelů Olejnin'), (55413, 'https://ror.org/00fhn5p96', 'no_lang_code', 1, 'https://ror.org/00fhn5p96 Earth Resources Technology (United States)'), (55414, 'https://ror.org/00fje3r15', 'no_lang_code', 1, 'https://ror.org/00fje3r15 Tethys Instruments (France)'), (55415, 'https://ror.org/00fjtyx23', 'fr', 1, 'https://ror.org/00fjtyx23 Association Fribourgeoise des Psychologues'), (55416, 'https://ror.org/00fjx2954', 'no_lang_code', 1, 'https://ror.org/00fjx2954 Frentech Aerospace (Czechia)'), (55417, 'https://ror.org/00fkcvn38', 'no_lang_code', 1, 'https://ror.org/00fkcvn38 Blatenská ryba (Czechia)'), (55418, 'https://ror.org/00fmf4r59', 'sv', 1, 'https://ror.org/00fmf4r59 Kjell och Märta Beijers Stiftelse'), (55419, 'https://ror.org/00fpjma30', 'no_lang_code', 1, 'https://ror.org/00fpjma30 Atelier Fontes (Czechia)'), (55420, 'https://ror.org/00fq8a754', 'en', 1, 'https://ror.org/00fq8a754 Svenska Akademien Swedish Academy'), (55421, 'https://ror.org/00fran495', 'en', 1, 'https://ror.org/00fran495 World Farmers'), (55422, 'https://ror.org/00fx0z455', 'en', 1, 'https://ror.org/00fx0z455 Tennessee Commission on Aging and Disability'), (55423, 'https://ror.org/00fx55r32', 'no_lang_code', 1, 'https://ror.org/00fx55r32 Hua Yuan Group (China) 华远集团'), (55424, 'https://ror.org/00fxeax19', 'no_lang_code', 1, 'https://ror.org/00fxeax19 AIS (Czechia)'), (55425, 'https://ror.org/00fyrp007', 'en', 1, 'https://ror.org/00fyrp007 NeuroMab'), (55426, 'https://ror.org/00fzq0880', 'fr', 1, 'https://ror.org/00fzq0880 Institut National de Prévention et d’Education pour la Santé'), (55427, 'https://ror.org/00fzxtk71', 'en', 1, 'https://ror.org/00fzxtk71 Joint Laboratory for Extreme Conditions Matter Properties 西南科技大学极端条件物质特性联合实验室'), (55428, 'https://ror.org/00g0srg04', 'no_lang_code', 1, 'https://ror.org/00g0srg04 3S Sedlak (Czechia)'), (55429, 'https://ror.org/00g3hdg93', 'en', 1, 'https://ror.org/00g3hdg93 Kancelář Poslanecké sněmovny Office of the Chamber of Deputies'), (55430, 'https://ror.org/00g3rdy81', 'en', 1, 'https://ror.org/00g3rdy81 Swiss Institute for Regenerative Medicine'), (55431, 'https://ror.org/00g4vzf03', 'de', 1, 'https://ror.org/00g4vzf03 Stadt Zürich Hochbaudepartement'), (55432, 'https://ror.org/00g6aeb47', 'cs', 1, 'https://ror.org/00g6aeb47 Oblastní nemocnice Kladno'), (55433, 'https://ror.org/00g7fhp37', 'no_lang_code', 1, 'https://ror.org/00g7fhp37 AbbVie (Ireland)'), (55434, 'https://ror.org/00g7hs466', 'en', 1, 'https://ror.org/00g7hs466 Hyaluronan Research Institute 株式会社 ヒアルロン酸研究所'), (55435, 'https://ror.org/00g92jb54', 'no_lang_code', 1, 'https://ror.org/00g92jb54 Zlín Precision (Czechia)'), (55436, 'https://ror.org/00gaz3763', 'en', 1, 'https://ror.org/00gaz3763 Legislative Council of Hong Kong 香港特別行政區立法會'), (55437, 'https://ror.org/00gbp3k84', 'de', 1, 'https://ror.org/00gbp3k84 Klinik Bethesda'), (55438, 'https://ror.org/00gc20a07', 'en', 1, 'https://ror.org/00gc20a07 Uehara Memorial Foundation 上原記念財団'), (55439, 'https://ror.org/00gc5g440', 'en', 1, 'https://ror.org/00gc5g440 Ballenberg Freilichtmuseum der Schweiz Ballenberg Swiss Open-Air Museum'), (55440, 'https://ror.org/00geaym80', 'no_lang_code', 1, 'https://ror.org/00geaym80 Artificial Sensing Instruments (Switzerland)'), (55441, 'https://ror.org/00gfjrf11', 'no_lang_code', 1, 'https://ror.org/00gfjrf11 Johnson & Johnson (France)'), (55442, 'https://ror.org/00gfyj628', 'no_lang_code', 1, 'https://ror.org/00gfyj628 Matex PM (Czechia)'), (55443, 'https://ror.org/00ggfn496', 'fr', 1, 'https://ror.org/00ggfn496 Association de Recherche en Soins Infirmiers'), (55444, 'https://ror.org/00ggtj069', 'no_lang_code', 1, 'https://ror.org/00ggtj069 ADW (Czechia)'), (55445, 'https://ror.org/00ggtz082', 'en', 1, 'https://ror.org/00ggtz082 Val Skinner Foundation'), (55446, 'https://ror.org/00gjtdf30', 'no_lang_code', 1, 'https://ror.org/00gjtdf30 Oclaro (Japan)'), (55447, 'https://ror.org/00gkes048', 'no_lang_code', 1, 'https://ror.org/00gkes048 Oncomedics (France)'), (55448, 'https://ror.org/00gpm0e44', 'no_lang_code', 1, 'https://ror.org/00gpm0e44 NTX Research (France)'), (55449, 'https://ror.org/00gpmkq36', 'cs', 1, 'https://ror.org/00gpmkq36 Česmad Bohemia'), (55450, 'https://ror.org/00gqt9c14', 'en', 1, 'https://ror.org/00gqt9c14 Starr Foundation'), (55451, 'https://ror.org/00gr9gj95', 'no_lang_code', 1, 'https://ror.org/00gr9gj95 jCyte (United States)'), (55452, 'https://ror.org/00grcq349', 'no_lang_code', 1, 'https://ror.org/00grcq349 Mdoloris Medical Systems (France)'), (55453, 'https://ror.org/00gsykk45', 'sv', 1, 'https://ror.org/00gsykk45 Åhlén-Stiftelsen'), (55454, 'https://ror.org/00gxcsd97', 'en', 1, 'https://ror.org/00gxcsd97 TLC Foundation'), (55455, 'https://ror.org/00gyg9a78', 'en', 1, 'https://ror.org/00gyg9a78 Sustainable Aviation Foundation'), (55456, 'https://ror.org/00gz1s959', 'fr', 1, 'https://ror.org/00gz1s959 Archives d''État de Genève'), (55457, 'https://ror.org/00gze1672', 'no_lang_code', 1, 'https://ror.org/00gze1672 Teradata (United Kingdom)'), (55458, 'https://ror.org/00h16dr76', 'en', 1, 'https://ror.org/00h16dr76 Center for Social and Economic Research Центр соціально-економічних досліджень'), (55459, 'https://ror.org/00h1t5780', 'no_lang_code', 1, 'https://ror.org/00h1t5780 Bmto Group (Czechia)'), (55460, 'https://ror.org/00h1tez17', 'no_lang_code', 1, 'https://ror.org/00h1tez17 Ekoport'), (55461, 'https://ror.org/00h4bvr24', 'no_lang_code', 1, 'https://ror.org/00h4bvr24 Vinitex Laboratoriuminrichtingen Vinitex Laboratory Systems (Netherlands)'), (55462, 'https://ror.org/00h588p66', 'no_lang_code', 1, 'https://ror.org/00h588p66 ADP (Czechia)'), (55463, 'https://ror.org/00h59gj21', 'no_lang_code', 1, 'https://ror.org/00h59gj21 Faiveley Transport (Czechia)'), (55464, 'https://ror.org/00h5qcp65', 'fr', 1, 'https://ror.org/00h5qcp65 Touring Club Suisse'), (55465, 'https://ror.org/00h9czn48', 'no_lang_code', 1, 'https://ror.org/00h9czn48 Mill City Grows (United States)'), (55466, 'https://ror.org/00hat9k49', 'no_lang_code', 1, 'https://ror.org/00hat9k49 Sladovny Soufflet (Czechia)'), (55467, 'https://ror.org/00hbgc813', 'no_lang_code', 1, 'https://ror.org/00hbgc813 H1.cz (Czechia)'), (55468, 'https://ror.org/00hbn9p31', 'no_lang_code', 1, 'https://ror.org/00hbn9p31 MP Krásno (Czechia)'), (55469, 'https://ror.org/00hd4jd19', 'en', 1, 'https://ror.org/00hd4jd19 East University Of Heilongjiang 黑龍江東方學院'), (55470, 'https://ror.org/00hf8n006', 'no_lang_code', 1, 'https://ror.org/00hf8n006 Mikroklima (Czechia)'), (55471, 'https://ror.org/00hf9b998', 'no_lang_code', 1, 'https://ror.org/00hf9b998 Micos (Czechia)'), (55472, 'https://ror.org/00hg0yg56', 'en', 1, 'https://ror.org/00hg0yg56 Gleaners Food Bank of Indiana'), (55473, 'https://ror.org/00hg21s64', 'no_lang_code', 1, 'https://ror.org/00hg21s64 AgraTek (United States)'), (55474, 'https://ror.org/00hg23335', 'no_lang_code', 1, 'https://ror.org/00hg23335 Pražské Vodovody a Kanalizace'), (55475, 'https://ror.org/00hhge266', 'no_lang_code', 1, 'https://ror.org/00hhge266 Agrofert (Czechia)'), (55476, 'https://ror.org/00hk9tb32', 'no_lang_code', 1, 'https://ror.org/00hk9tb32 CNH Industrial (Switzerland)'), (55477, 'https://ror.org/00hm3z611', 'no_lang_code', 1, 'https://ror.org/00hm3z611 Keramtech (Czechia)'), (55478, 'https://ror.org/00hwty226', 'en', 1, 'https://ror.org/00hwty226 Xiamen Institute of Rare-earth Materials 中国科学院海西研究院厦门稀土材料研究所'), (55479, 'https://ror.org/00hx9vt43', 'en', 1, 'https://ror.org/00hx9vt43 Sarkeys Foundation'), (55480, 'https://ror.org/00hxz0s44', 'no_lang_code', 1, 'https://ror.org/00hxz0s44 Bodycote (Canada)'), (55481, 'https://ror.org/00hzk1038', 'en', 1, 'https://ror.org/00hzk1038 Driskill Foundation'), (55482, 'https://ror.org/00j2jd568', 'no_lang_code', 1, 'https://ror.org/00j2jd568 LentiKat''s (Czechia)'), (55483, 'https://ror.org/00j45v080', 'no_lang_code', 1, 'https://ror.org/00j45v080 Mráz Agro (Czechia)'), (55484, 'https://ror.org/00j4rmt21', 'no_lang_code', 1, 'https://ror.org/00j4rmt21 Redam (Czechia)'), (55485, 'https://ror.org/00j558r43', 'no_lang_code', 1, 'https://ror.org/00j558r43 Kolejconsult & Servis (Czechia)'), (55486, 'https://ror.org/00j681549', 'no_lang_code', 1, 'https://ror.org/00j681549 Sofradir (France)'), (55487, 'https://ror.org/00j6f3g48', 'de', 1, 'https://ror.org/00j6f3g48 Schweizerisches Institut für Kinder- und Jugendmedien'), (55488, 'https://ror.org/00j8xde38', 'no_lang_code', 1, 'https://ror.org/00j8xde38 Eurobio (France)'), (55489, 'https://ror.org/00jb81722', 'en', 1, 'https://ror.org/00jb81722 National Sustainable Agriculture Coalition'), (55490, 'https://ror.org/00jcm9s26', 'cs', 1, 'https://ror.org/00jcm9s26 Toulcův Dvůr'), (55491, 'https://ror.org/00jgvmv83', 'no_lang_code', 1, 'https://ror.org/00jgvmv83 ŽPSV (Czechia)'), (55492, 'https://ror.org/00jn8v512', 'en', 1, 'https://ror.org/00jn8v512 Khaled bin Sultan Living Oceans Foundation'), (55493, 'https://ror.org/00jpc6f46', 'no_lang_code', 1, 'https://ror.org/00jpc6f46 Megat (Czechia)'), (55494, 'https://ror.org/00jqzcd41', 'no_lang_code', 1, 'https://ror.org/00jqzcd41 Benefit CZ (Czechia)'), (55495, 'https://ror.org/00jr9ks41', 'no_lang_code', 1, 'https://ror.org/00jr9ks41 Techniserv (Czechia)'), (55496, 'https://ror.org/00jrvek48', 'en', 1, 'https://ror.org/00jrvek48 Oregon Department of Consumer and Business Services'), (55497, 'https://ror.org/00jw9yq80', 'no_lang_code', 1, 'https://ror.org/00jw9yq80 Dosting (Czechia)'), (55498, 'https://ror.org/00jwvkg84', 'en', 1, 'https://ror.org/00jwvkg84 Physics and Technology Institute of Metals and Alloys Физико-технологический институт металлов и сплавов'), (55499, 'https://ror.org/00jyvgk83', 'no_lang_code', 1, 'https://ror.org/00jyvgk83 Autometal (Czechia)'), (55500, 'https://ror.org/00jz21w71', 'no_lang_code', 1, 'https://ror.org/00jz21w71 Ricardo Prague (Czechia)'), (55501, 'https://ror.org/00jz7d133', 'en', 1, 'https://ror.org/00jz7d133 Princess Alexandra Eye Pavilion'), (55502, 'https://ror.org/00jzne873', 'en', 1, 'https://ror.org/00jzne873 Whitley Fund for Nature'), (55503, 'https://ror.org/00k0bfm63', 'en', 1, 'https://ror.org/00k0bfm63 Russian Academy of Architecture and Construction Sciences Росси́йская акаде́мия архитекту́ры и строи́тельных нау́к'), (55504, 'https://ror.org/00k0msf85', 'no_lang_code', 1, 'https://ror.org/00k0msf85 Itopia (Switzerland)'), (55505, 'https://ror.org/00k0vt064', 'en', 1, 'https://ror.org/00k0vt064 Research and Design Institute of Urea and Organic Synthesis Products Открытое Акционирское Общество. Исследование. И проектный институт мочевины и органического синтеза'), (55506, 'https://ror.org/00k2e8z33', 'no_lang_code', 1, 'https://ror.org/00k2e8z33 Koneko (Czechia)'), (55507, 'https://ror.org/00k389086', 'no_lang_code', 1, 'https://ror.org/00k389086 Forsthoffer Associates (United States)'), (55508, 'https://ror.org/00k5q8r19', 'no_lang_code', 1, 'https://ror.org/00k5q8r19 Gaben (Czechia)'), (55509, 'https://ror.org/00k5y4z24', 'no_lang_code', 1, 'https://ror.org/00k5y4z24 Kitl (Czechia)'), (55510, 'https://ror.org/00k602276', 'cs', 1, 'https://ror.org/00k602276 Asociace Svazů Chovatelů Koní České Republiky'), (55511, 'https://ror.org/00k7st669', 'no_lang_code', 1, 'https://ror.org/00k7st669 Czech Aeroholding (Czechia) Český Aeroholding'), (55512, 'https://ror.org/00k9vtb32', 'en', 1, 'https://ror.org/00k9vtb32 Schweizerische Hochschulkonferen Swiss University Conference'), (55513, 'https://ror.org/00kaycc68', 'en', 1, 'https://ror.org/00kaycc68 Hefei Cement Research Design Institute 合肥水泥研究设计院'), (55514, 'https://ror.org/00kbr7y65', 'no_lang_code', 1, 'https://ror.org/00kbr7y65 BurgSys (Czechia)'), (55515, 'https://ror.org/00kcehz97', 'en', 1, 'https://ror.org/00kcehz97 French Corrosion Institute'), (55516, 'https://ror.org/00kcmem28', 'no_lang_code', 1, 'https://ror.org/00kcmem28 DAP Services (Czechia)'), (55517, 'https://ror.org/00kdsdv26', 'fr', 1, 'https://ror.org/00kdsdv26 Musée d’histoire du Valais'), (55518, 'https://ror.org/00kg1dd44', 'en', 1, 'https://ror.org/00kg1dd44 The American Chestnut Foundation'), (55519, 'https://ror.org/00kkxjg31', 'no_lang_code', 1, 'https://ror.org/00kkxjg31 GreyCortex (Czechia)'), (55520, 'https://ror.org/00kny8y22', 'fr', 1, 'https://ror.org/00kny8y22 Laboratoire Excell'), (55521, 'https://ror.org/00kqjn528', 'en', 1, 'https://ror.org/00kqjn528 Taiwan Textile Research Institute 紡織產業綜合研究所'), (55522, 'https://ror.org/00kr3hh47', 'de', 1, 'https://ror.org/00kr3hh47 Antikenmuseum Basel und Sammlung Ludwig, Basel Museum of Ancient Art and Ludwig Collection'), (55523, 'https://ror.org/00kwyj403', 'no_lang_code', 1, 'https://ror.org/00kwyj403 Sklopan Liberec (Czechia)'), (55524, 'https://ror.org/00kxjhp06', 'no_lang_code', 1, 'https://ror.org/00kxjhp06 Feramat Cybernetics (Czechia)'), (55525, 'https://ror.org/00m1w1e65', 'no_lang_code', 1, 'https://ror.org/00m1w1e65 Envi-Pur (Czechia)'), (55526, 'https://ror.org/00m2xfz17', 'no_lang_code', 1, 'https://ror.org/00m2xfz17 Bioengineering (Switzerland)'), (55527, 'https://ror.org/00m590d63', 'de', 1, 'https://ror.org/00m590d63 Mediplant'), (55528, 'https://ror.org/00m5hxb63', 'en', 1, 'https://ror.org/00m5hxb63 Parrott Equine Associates'), (55529, 'https://ror.org/00m5y7t24', 'en', 1, 'https://ror.org/00m5y7t24 BIGCCS'), (55530, 'https://ror.org/00m7t6760', 'de', 1, 'https://ror.org/00m7t6760 Spital STS'), (55531, 'https://ror.org/00mcgvm89', 'en', 1, 'https://ror.org/00mcgvm89 Wildlife Conservation Society Argentina'), (55532, 'https://ror.org/00mdxht46', 'en', 1, 'https://ror.org/00mdxht46 Prison Service of the Czech Republic Vězeňská služba České republiky'), (55533, 'https://ror.org/00me50c36', 'en', 1, 'https://ror.org/00me50c36 Avraham Y. Goldratt Institute'), (55534, 'https://ror.org/00meev387', 'en', 1, 'https://ror.org/00meev387 Sea World'), (55535, 'https://ror.org/00meg4816', 'no_lang_code', 1, 'https://ror.org/00meg4816 Veolia (Czechia)'), (55536, 'https://ror.org/00memet03', 'no_lang_code', 1, 'https://ror.org/00memet03 Sunstar (Switzerland)'), (55537, 'https://ror.org/00meqs091', 'de', 1, 'https://ror.org/00meqs091 Justiz Gemeinde und Kirchendirektion'), (55538, 'https://ror.org/00mfshe62', 'en', 1, 'https://ror.org/00mfshe62 Wishlist'), (55539, 'https://ror.org/00mfys757', 'en', 1, 'https://ror.org/00mfys757 World Food Prize Foundation'), (55540, 'https://ror.org/00mgaf355', 'de', 1, 'https://ror.org/00mgaf355 Kantonsschule Stadelhofen'), (55541, 'https://ror.org/00mgycb86', 'en', 1, 'https://ror.org/00mgycb86 Forschungskreis der Ernährungsindustrie Research Association of the German Food Industry'), (55542, 'https://ror.org/00mjd8b34', 'en', 1, 'https://ror.org/00mjd8b34 Ministerstvo financí České republiky Ministry of Finance of the Czech Republic'), (55543, 'https://ror.org/00mn4nn85', 'da', 1, 'https://ror.org/00mn4nn85 Svineafgiftsfonden'), (55544, 'https://ror.org/00mntmj21', 'en', 1, 'https://ror.org/00mntmj21 Goyder Institute for Water Research'), (55545, 'https://ror.org/00mp5e421', 'no_lang_code', 1, 'https://ror.org/00mp5e421 Satra (Czechia)'), (55546, 'https://ror.org/00mrdq115', 'no_lang_code', 1, 'https://ror.org/00mrdq115 EuroTec JKR (Czechia)'), (55547, 'https://ror.org/00mt9mq23', 'en', 1, 'https://ror.org/00mt9mq23 Order Sons of Italy in America, Ordine Figli d’Italia in America'), (55548, 'https://ror.org/00mv65m72', 'no_lang_code', 1, 'https://ror.org/00mv65m72 Mosaic Event Management (United States)'), (55549, 'https://ror.org/00mwckg53', 'no_lang_code', 1, 'https://ror.org/00mwckg53 Wesco (Japan) 株式会社ウエスコホールディングス'), (55550, 'https://ror.org/00n16p279', 'no_lang_code', 1, 'https://ror.org/00n16p279 Setaram Instrumentation (France)'), (55551, 'https://ror.org/00n2epv23', 'no_lang_code', 1, 'https://ror.org/00n2epv23 Státní Výzkumný Ústav pro Stavbu Strojů (Czechia)'), (55552, 'https://ror.org/00n2n5x30', 'no_lang_code', 1, 'https://ror.org/00n2n5x30 Celtrak (Ireland)'), (55553, 'https://ror.org/00n58s174', 'en', 1, 'https://ror.org/00n58s174 Sveriges ögonläkarförening Swedish Ophthalmological Society'), (55554, 'https://ror.org/00n83hf26', 'fr', 1, 'https://ror.org/00n83hf26 Association Savoir Patient'), (55555, 'https://ror.org/00n8cd549', 'en', 1, 'https://ror.org/00n8cd549 JGC-S Scholarship Foundation 公益財団法人 日揮・実吉奨学会'), (55556, 'https://ror.org/00n95xs29', 'de', 1, 'https://ror.org/00n95xs29 Fotostiftung Schweiz'), (55557, 'https://ror.org/00ncbzn09', 'no_lang_code', 1, 'https://ror.org/00ncbzn09 Phytocos (France)'), (55558, 'https://ror.org/00nedks60', 'en', 1, 'https://ror.org/00nedks60 Wuxi Municipal Health Bureau 无锡市卫计委'), (55559, 'https://ror.org/00ney4p16', 'no_lang_code', 1, 'https://ror.org/00ney4p16 Techtronic Industries (China)'), (55560, 'https://ror.org/00nj0fk68', 'no_lang_code', 1, 'https://ror.org/00nj0fk68 Mitsui & Co (Ireland)'), (55561, 'https://ror.org/00njbc474', 'cs', 1, 'https://ror.org/00njbc474 Odborový Svaz Pracovníků Hornictví, Geologie a Naftového Průmyslu'), (55562, 'https://ror.org/00njmse54', 'en', 1, 'https://ror.org/00njmse54 St. Petersburg University of the Humanities and Social Sciences Санкт-Петербургский гуманитарный университет профсоюзов [править | править вики-текст]'), (55563, 'https://ror.org/00njy2393', 'fr', 1, 'https://ror.org/00njy2393 Caisse de Prévoyance du Personnel de l''Etat de Fribourg'), (55564, 'https://ror.org/00nmpgc29', 'no_lang_code', 1, 'https://ror.org/00nmpgc29 Supercomputing Systems (Switzerland)'), (55565, 'https://ror.org/00nngxj80', 'no_lang_code', 1, 'https://ror.org/00nngxj80 Kraft Heinz (United Kingdom)'), (55566, 'https://ror.org/00nq6zy28', 'no_lang_code', 1, 'https://ror.org/00nq6zy28 Zebr (Czechia)'), (55567, 'https://ror.org/00nqbw566', 'no_lang_code', 1, 'https://ror.org/00nqbw566 Thames Medical (United Kingdom)'), (55568, 'https://ror.org/00nqrzf67', 'de', 1, 'https://ror.org/00nqrzf67 Aargauer Kantonsbibliothek'), (55569, 'https://ror.org/00ns9df65', 'no_lang_code', 1, 'https://ror.org/00ns9df65 Seattle Photonics Associates (United States)'), (55570, 'https://ror.org/00ntr9f13', 'no_lang_code', 1, 'https://ror.org/00ntr9f13 Pharmerit (Netherlands)'), (55571, 'https://ror.org/00ntwgk39', 'fr', 1, 'https://ror.org/00ntwgk39 Hôpital Beau-Séjour'), (55572, 'https://ror.org/00nxfq722', 'no_lang_code', 1, 'https://ror.org/00nxfq722 Vápenka Vitošov (Czechia)'), (55573, 'https://ror.org/00nxm9m32', 'de', 1, 'https://ror.org/00nxm9m32 Stadtarchiv Bern'), (55574, 'https://ror.org/00nzvp437', 'en', 1, 'https://ror.org/00nzvp437 Population Association of America'), (55575, 'https://ror.org/00p03yg71', 'en', 1, 'https://ror.org/00p03yg71 Istituto Superconduttori, Materiali Innovativi e Dispositivi Superconducting and other Innovative Materials and Devices Institute'), (55576, 'https://ror.org/00p287g25', 'no_lang_code', 1, 'https://ror.org/00p287g25 Nintendo (France)'), (55577, 'https://ror.org/00p3ce068', 'en', 1, 'https://ror.org/00p3ce068 KIST Europe'), (55578, 'https://ror.org/00p3nsd37', 'no_lang_code', 1, 'https://ror.org/00p3nsd37 Ulverscroft (United Kingdom)'), (55579, 'https://ror.org/00p8gje40', 'no_lang_code', 1, 'https://ror.org/00p8gje40 Tiú-Plast (Czechia)'), (55580, 'https://ror.org/00p9cwr43', 'no_lang_code', 1, 'https://ror.org/00p9cwr43 Barekol (Czechia)'), (55581, 'https://ror.org/00pc6ac31', 'no_lang_code', 1, 'https://ror.org/00pc6ac31 Analytical Mechanics Associates (United States)'), (55582, 'https://ror.org/00pd5dx05', 'no_lang_code', 1, 'https://ror.org/00pd5dx05 Y-Parc (Switzerland)'), (55583, 'https://ror.org/00pe39y85', 'no_lang_code', 1, 'https://ror.org/00pe39y85 Bruker (France)'), (55584, 'https://ror.org/00pecb659', 'no_lang_code', 1, 'https://ror.org/00pecb659 Labrys'), (55585, 'https://ror.org/00pehtc22', 'no_lang_code', 1, 'https://ror.org/00pehtc22 Oikoymenh (Czechia)'), (55586, 'https://ror.org/00pemyx71', 'no_lang_code', 1, 'https://ror.org/00pemyx71 Sanas (Japan) 株式会社サナス'), (55587, 'https://ror.org/00pfmb678', 'en', 1, 'https://ror.org/00pfmb678 Central Silk Technological Research Institute'), (55588, 'https://ror.org/00pfxvf64', 'en', 1, 'https://ror.org/00pfxvf64 Aging In New York Fund'), (55589, 'https://ror.org/00pg1wz48', 'no_lang_code', 1, 'https://ror.org/00pg1wz48 Detas (Czechia)'), (55590, 'https://ror.org/00pgwrm68', 'no_lang_code', 1, 'https://ror.org/00pgwrm68 Alpha and Omega Semiconductor (United States)'), (55591, 'https://ror.org/00pkj5048', 'no_lang_code', 1, 'https://ror.org/00pkj5048 Invaz (Czechia)'), (55592, 'https://ror.org/00pmqdp10', 'no_lang_code', 1, 'https://ror.org/00pmqdp10 Aspide Medical (France)'), (55593, 'https://ror.org/00pn2q632', 'no_lang_code', 1, 'https://ror.org/00pn2q632 Knitva (Czechia)'), (55594, 'https://ror.org/00ppegh42', 'en', 1, 'https://ror.org/00ppegh42 Scientific Research Support Fund صندوق دعم البحث العلمي'), (55595, 'https://ror.org/00pq1ak56', 'fr', 1, 'https://ror.org/00pq1ak56 Etablissement Primaire et Secondaire Vevey'), (55596, 'https://ror.org/00pqvxn28', 'no_lang_code', 1, 'https://ror.org/00pqvxn28 ORB Studio (United States)'), (55597, 'https://ror.org/00prhpp43', 'en', 1, 'https://ror.org/00prhpp43 Bangladesh Jute Research Institute বাংলাদেশ পাট গবেষণা ইনস্টিটিউট'), (55598, 'https://ror.org/00ps92954', 'no_lang_code', 1, 'https://ror.org/00ps92954 Nagase (Japan) 長瀬産業株式会社'), (55599, 'https://ror.org/00pt3xy74', 'no_lang_code', 1, 'https://ror.org/00pt3xy74 Effik (France)'), (55600, 'https://ror.org/00ptgc951', 'no_lang_code', 1, 'https://ror.org/00ptgc951 Zepo Bělohrad (Czechia)'), (55601, 'https://ror.org/00pw0tx86', 'en', 1, 'https://ror.org/00pw0tx86 Open Source Robotics Foundation'), (55602, 'https://ror.org/00px2aj27', 'en', 1, 'https://ror.org/00px2aj27 Haute École d''ingénierie et d''architecture de Fribourg School of Engineering and Architecture of Fribourg'), (55603, 'https://ror.org/00pxr4197', 'no_lang_code', 1, 'https://ror.org/00pxr4197 Security Paper Mill (Czechia)'), (55604, 'https://ror.org/00q017g63', 'en', 1, 'https://ror.org/00q017g63 Taipei Tzu Chi Hospital 台北慈济医院'), (55605, 'https://ror.org/00q0ej829', 'no_lang_code', 1, 'https://ror.org/00q0ej829 PPF (Czechia)'), (55606, 'https://ror.org/00q1rv339', 'en', 1, 'https://ror.org/00q1rv339 CURE International UK'), (55607, 'https://ror.org/00q2tna33', 'it', 1, 'https://ror.org/00q2tna33 Associazione della Croce Rossa Italiana'), (55608, 'https://ror.org/00q4d7711', 'fr', 1, 'https://ror.org/00q4d7711 Orthodontie MC20'), (55609, 'https://ror.org/00q6se919', 'no_lang_code', 1, 'https://ror.org/00q6se919 CL Medical (France)'), (55610, 'https://ror.org/00q6td368', 'no_lang_code', 1, 'https://ror.org/00q6td368 Wolf and Danniel (Czechia)'), (55611, 'https://ror.org/00q9d8f64', 'en', 1, 'https://ror.org/00q9d8f64 Joint Graduate School of Energy and Environment บัณฑิตวิทยาลัยร่วมด้านพลังงานและสิ่งแวดล้อม'), (55612, 'https://ror.org/00qa5z221', 'en', 1, 'https://ror.org/00qa5z221 Hart Community Homes'), (55613, 'https://ror.org/00qajw440', 'no_lang_code', 1, 'https://ror.org/00qajw440 SK Group (United States)'), (55614, 'https://ror.org/00qbq1b12', 'no_lang_code', 1, 'https://ror.org/00qbq1b12 ABM Architekti (Czechia)'), (55615, 'https://ror.org/00qcg1942', 'no_lang_code', 1, 'https://ror.org/00qcg1942 CHemProtect (Czechia)'), (55616, 'https://ror.org/00qdgd523', 'no_lang_code', 1, 'https://ror.org/00qdgd523 Czech Precision Forge (Czechia)'), (55617, 'https://ror.org/00qdpx246', 'en', 1, 'https://ror.org/00qdpx246 National Network of Healthy Cities Národní Síť Zdravých Měst'), (55618, 'https://ror.org/00qdrdx13', 'no_lang_code', 1, 'https://ror.org/00qdrdx13 Ecosoft (Czechia)'), (55619, 'https://ror.org/00qgmat53', 'no_lang_code', 1, 'https://ror.org/00qgmat53 Sigma-Tau Pharmaceuticals (United States)'), (55620, 'https://ror.org/00qjy4068', 'no_lang_code', 1, 'https://ror.org/00qjy4068 Regionální Poradenská Agentura (Czechia)'), (55621, 'https://ror.org/00qkaw379', 'no_lang_code', 1, 'https://ror.org/00qkaw379 GEOTEST (Switzerland)'), (55622, 'https://ror.org/00qkj1g75', 'no_lang_code', 1, 'https://ror.org/00qkj1g75 SKK Landschaftsarchitekten (Switzerland)'), (55623, 'https://ror.org/00qks3d19', 'en', 1, 'https://ror.org/00qks3d19 Kansas Department of Commerce'), (55624, 'https://ror.org/00qm34c52', 'no_lang_code', 1, 'https://ror.org/00qm34c52 Strasky Husty and Partners (Czechia)'), (55625, 'https://ror.org/00qma8b89', 'no_lang_code', 1, 'https://ror.org/00qma8b89 OKD (Czechia) Ostravsko-karvinské doly'), (55626, 'https://ror.org/00qmpe609', 'no_lang_code', 1, 'https://ror.org/00qmpe609 Energocentrum (Czechia)'), (55627, 'https://ror.org/00qmtfb26', 'en', 1, 'https://ror.org/00qmtfb26 Agricultural And Forestry Machinery Association'), (55628, 'https://ror.org/00qmvrz07', 'en', 1, 'https://ror.org/00qmvrz07 Vietnam International Education Cooperation Department'), (55629, 'https://ror.org/00qp6gv29', 'no_lang_code', 1, 'https://ror.org/00qp6gv29 ECO (Czechia)'), (55630, 'https://ror.org/00qq1x890', 'en', 1, 'https://ror.org/00qq1x890 Wolf Foundation'), (55631, 'https://ror.org/00qq8bd87', 'en', 1, 'https://ror.org/00qq8bd87 Consortium for the Advanced Simulation of Light Water Reactors'), (55632, 'https://ror.org/00qrjwk72', 'no_lang_code', 1, 'https://ror.org/00qrjwk72 Sewio Networks (Czechia)'), (55633, 'https://ror.org/00qrpes71', 'en', 1, 'https://ror.org/00qrpes71 Fishing Partnership Support Services'), (55634, 'https://ror.org/00qrs4s60', 'no_lang_code', 1, 'https://ror.org/00qrs4s60 Beratungsdienste für Ausbildung und Beruf Aargau (Switzerland)'), (55635, 'https://ror.org/00qt1ww94', 'no_lang_code', 1, 'https://ror.org/00qt1ww94 Radiometer (Switzerland)'), (55636, 'https://ror.org/00qw13455', 'no_lang_code', 1, 'https://ror.org/00qw13455 Bednar Fmt (Czechia)'), (55637, 'https://ror.org/00qw4ms08', 'en', 1, 'https://ror.org/00qw4ms08 Clayton Foundation'), (55638, 'https://ror.org/00r01p496', 'no_lang_code', 1, 'https://ror.org/00r01p496 Crystalex (Czechia)'), (55639, 'https://ror.org/00r1n9v29', 'cs', 1, 'https://ror.org/00r1n9v29 Sdružené ambulantní zařízení'), (55640, 'https://ror.org/00r2wb002', 'en', 1, 'https://ror.org/00r2wb002 Youth Policy Institute'), (55641, 'https://ror.org/00r36q916', 'no_lang_code', 1, 'https://ror.org/00r36q916 Sonomotion (United States)'), (55642, 'https://ror.org/00r37e745', 'no_lang_code', 1, 'https://ror.org/00r37e745 Terumo (United States)'), (55643, 'https://ror.org/00r6p8t42', 'en', 1, 'https://ror.org/00r6p8t42 Jeansson Foundations Jeanssons Stiftelser'), (55644, 'https://ror.org/00r6pc512', 'en', 1, 'https://ror.org/00r6pc512 Sun Health Foundation'), (55645, 'https://ror.org/00r7c8242', 'no_lang_code', 1, 'https://ror.org/00r7c8242 Chitina Native Corporation (United States)'), (55646, 'https://ror.org/00r7jg830', 'no_lang_code', 1, 'https://ror.org/00r7jg830 Laboratoires ABIA (France)'), (55647, 'https://ror.org/00r8ne687', 'no_lang_code', 1, 'https://ror.org/00r8ne687 Viton (Czechia)'), (55648, 'https://ror.org/00r9ndf16', 'en', 1, 'https://ror.org/00r9ndf16 Centre for Political Courage'), (55649, 'https://ror.org/00r9ry950', 'no_lang_code', 1, 'https://ror.org/00r9ry950 K and K Technology (Czechia)'), (55650, 'https://ror.org/00r9xw041', 'sv', 1, 'https://ror.org/00r9xw041 Stiftelsen Olle Engkvist Byggmästare'), (55651, 'https://ror.org/00rath085', 'de', 1, 'https://ror.org/00rath085 Staatsarchiv Freiburg'), (55652, 'https://ror.org/00rb4m505', 'en', 1, 'https://ror.org/00rb4m505 The Nurture Nature Center'), (55653, 'https://ror.org/00rcr5k60', 'no_lang_code', 1, 'https://ror.org/00rcr5k60 UpVision (Czechia)'), (55654, 'https://ror.org/00rd9tc64', 'fr', 1, 'https://ror.org/00rd9tc64 Laboratoire Dr Renaud'), (55655, 'https://ror.org/00re71s87', 'en', 1, 'https://ror.org/00re71s87 Advanced Heliophysics'), (55656, 'https://ror.org/00rh52j13', 'en', 1, 'https://ror.org/00rh52j13 Cwm Taf University Health Board Ymddiriedolaeth GIG Cwm Taf'); INSERT INTO `rors` VALUES (55657, 'https://ror.org/00rknv324', 'no_lang_code', 1, 'https://ror.org/00rknv324 Agromont Vimperk (Czechia)'), (55658, 'https://ror.org/00rn0m335', 'no_lang_code', 1, 'https://ror.org/00rn0m335 Alibaba Group (United States)'), (55659, 'https://ror.org/00rng3h03', 'no_lang_code', 1, 'https://ror.org/00rng3h03 JV Projekt (Czechia)'), (55660, 'https://ror.org/00rnjkw50', 'en', 1, 'https://ror.org/00rnjkw50 Huerta del Valle'), (55661, 'https://ror.org/00rnyt040', 'en', 1, 'https://ror.org/00rnyt040 Illinois Office of the Governor'), (55662, 'https://ror.org/00rp2kf19', 'no_lang_code', 1, 'https://ror.org/00rp2kf19 Willson Band Instruments (Switzerland)'), (55663, 'https://ror.org/00rq99817', 'no_lang_code', 1, 'https://ror.org/00rq99817 ChipInvest (Czechia)'), (55664, 'https://ror.org/00rtnjm51', 'no_lang_code', 1, 'https://ror.org/00rtnjm51 Taranis Invest (Czechia)'), (55665, 'https://ror.org/00rtxv182', 'no_lang_code', 1, 'https://ror.org/00rtxv182 Rentel (Czechia)'), (55666, 'https://ror.org/00rtz3610', 'en', 1, 'https://ror.org/00rtz3610 Centre for Investment Development and Innovation Centrum investic, rozvoje a inovací'), (55667, 'https://ror.org/00rvg5p23', 'en', 1, 'https://ror.org/00rvg5p23 Save Our Seas Foundation'), (55668, 'https://ror.org/00rvj3h03', 'no_lang_code', 1, 'https://ror.org/00rvj3h03 Vp Agro (Czechia)'), (55669, 'https://ror.org/00rwprq91', 'no_lang_code', 1, 'https://ror.org/00rwprq91 StemSoft Software (Canada)'), (55670, 'https://ror.org/00rxf9f27', 'en', 1, 'https://ror.org/00rxf9f27 Columbia Global Centers'), (55671, 'https://ror.org/00s1r6f43', 'en', 1, 'https://ror.org/00s1r6f43 Fayette County Community Action Agency'), (55672, 'https://ror.org/00s2ktz06', 'no_lang_code', 1, 'https://ror.org/00s2ktz06 Isolit-Bravo (Czechia)'), (55673, 'https://ror.org/00s3nyy34', 'no_lang_code', 1, 'https://ror.org/00s3nyy34 Cemvin (Czechia)'), (55674, 'https://ror.org/00s4b3607', 'no_lang_code', 1, 'https://ror.org/00s4b3607 J M Malone and Son (United States)'), (55675, 'https://ror.org/00s5m1b41', 'no_lang_code', 1, 'https://ror.org/00s5m1b41 Oregon Tilth'), (55676, 'https://ror.org/00s66s868', 'no_lang_code', 1, 'https://ror.org/00s66s868 Gemos (Czechia)'), (55677, 'https://ror.org/00s75ft26', 'no_lang_code', 1, 'https://ror.org/00s75ft26 Ormihl (France)'), (55678, 'https://ror.org/00s796p60', 'no_lang_code', 1, 'https://ror.org/00s796p60 Agentura Motiv P (Czechia)'), (55679, 'https://ror.org/00s7ek396', 'pt', 1, 'https://ror.org/00s7ek396 Hospital Estadual Mário Covas'), (55680, 'https://ror.org/00s7jd712', 'no_lang_code', 1, 'https://ror.org/00s7jd712 ABS Jets (Czechia)'), (55681, 'https://ror.org/00sc3t321', 'en', 1, 'https://ror.org/00sc3t321 Korea Automotive Technology Institute 한국 자동차 기술 연구원'), (55682, 'https://ror.org/00seh5759', 'no_lang_code', 1, 'https://ror.org/00seh5759 Econcept (Switzerland)'), (55683, 'https://ror.org/00sq92q44', 'no_lang_code', 1, 'https://ror.org/00sq92q44 Thun 1794 (Czechia)'), (55684, 'https://ror.org/00srskr42', 'no_lang_code', 1, 'https://ror.org/00srskr42 Rotas Strojírny (Czechia)'), (55685, 'https://ror.org/00ss52190', 'no_lang_code', 1, 'https://ror.org/00ss52190 Laboratoire Pino Aliprandini (Switzerland)'), (55686, 'https://ror.org/00ssvjd95', 'de', 1, 'https://ror.org/00ssvjd95 Schweizerische Koordinationsstelle für Bildungsforschung'), (55687, 'https://ror.org/00stg1k53', 'en', 1, 'https://ror.org/00stg1k53 Institute of Philosophy MTA BTK Filozófiai Intézet'), (55688, 'https://ror.org/00svnts80', 'no_lang_code', 1, 'https://ror.org/00svnts80 DTO (Czechia)'), (55689, 'https://ror.org/00swtqp09', 'en', 1, 'https://ror.org/00swtqp09 Key Laboratory of Guangdong Province 广东省重点实验室'), (55690, 'https://ror.org/00t1d7x20', 'no_lang_code', 1, 'https://ror.org/00t1d7x20 Clayton Biotechnologies (United States)'), (55691, 'https://ror.org/00t2x7r19', 'es', 1, 'https://ror.org/00t2x7r19 Centro Mexicano de Innovación en Energía Solar'), (55692, 'https://ror.org/00t6jgv77', 'en', 1, 'https://ror.org/00t6jgv77 Kazakh Scientific Reseach Institute for Ecology and Climate Координационного центра по изменению климата'), (55693, 'https://ror.org/00t6k4c45', 'cs', 1, 'https://ror.org/00t6k4c45 ZD Krásná Hora Nad Vltavou (Czechia)'), (55694, 'https://ror.org/00t7qf371', 'en', 1, 'https://ror.org/00t7qf371 About Special Kids'), (55695, 'https://ror.org/00t83rb52', 'no_lang_code', 1, 'https://ror.org/00t83rb52 Ales (Czechia)'), (55696, 'https://ror.org/00t8egy48', 'no_lang_code', 1, 'https://ror.org/00t8egy48 Thermona (Czechia)'), (55697, 'https://ror.org/00tbe9875', 'de', 1, 'https://ror.org/00tbe9875 Stiftung Mercator Schweiz'), (55698, 'https://ror.org/00tbqf005', 'de', 1, 'https://ror.org/00tbqf005 Privatklinik Meiringen'), (55699, 'https://ror.org/00tcadq57', 'no_lang_code', 1, 'https://ror.org/00tcadq57 Plastové Stavební (Czechia)'), (55700, 'https://ror.org/00tcg9r48', 'en', 1, 'https://ror.org/00tcg9r48 Pinnacle Prevention'), (55701, 'https://ror.org/00tjk7247', 'no_lang_code', 1, 'https://ror.org/00tjk7247 Biopreparáty (Czechia)'), (55702, 'https://ror.org/00tjm9378', 'no_lang_code', 1, 'https://ror.org/00tjm9378 Mankind Pharma (India)'), (55703, 'https://ror.org/00tnk3114', 'en', 1, 'https://ror.org/00tnk3114 Robina Foundation'), (55704, 'https://ror.org/00tqvk397', 'en', 1, 'https://ror.org/00tqvk397 Czech Association of Fire Officers Česká Asociace Hasičských Důstojníků'), (55705, 'https://ror.org/00tvd2s73', 'no_lang_code', 1, 'https://ror.org/00tvd2s73 AGRO-Partner (Czechia)'), (55706, 'https://ror.org/00twt5233', 'en', 1, 'https://ror.org/00twt5233 Wyoming Water Development Commission'), (55707, 'https://ror.org/00tzc0330', 'no_lang_code', 1, 'https://ror.org/00tzc0330 SMTplus (Czechia)'), (55708, 'https://ror.org/00v019t60', 'en', 1, 'https://ror.org/00v019t60 Korea Institute of Robot and Convergence 한국로봇융합연구원'), (55709, 'https://ror.org/00v1gsr34', 'no_lang_code', 1, 'https://ror.org/00v1gsr34 Blata (Czechia)'), (55710, 'https://ror.org/00v2c3q38', 'no_lang_code', 1, 'https://ror.org/00v2c3q38 Stap (Czechia)'), (55711, 'https://ror.org/00v43af83', 'no_lang_code', 1, 'https://ror.org/00v43af83 Geovap (Czechia)'), (55712, 'https://ror.org/00v4fnn72', 'no_lang_code', 1, 'https://ror.org/00v4fnn72 Briklis (Czechia)'), (55713, 'https://ror.org/00v4k2341', 'no_lang_code', 1, 'https://ror.org/00v4k2341 O.K. Servis Plus (Czechia)'), (55714, 'https://ror.org/00v5n6851', 'no_lang_code', 1, 'https://ror.org/00v5n6851 Malin Space Science Systems (United States)'), (55715, 'https://ror.org/00v64cg28', 'en', 1, 'https://ror.org/00v64cg28 Cambridge Innovation Institute'), (55716, 'https://ror.org/00v6ky380', 'sv', 1, 'https://ror.org/00v6ky380 Stiftelsen för vård- och allergiforskning, Vårdal Stiftelsen'), (55717, 'https://ror.org/00v6wgj18', 'no_lang_code', 1, 'https://ror.org/00v6wgj18 BBT-Materials Processing (Czechia)'), (55718, 'https://ror.org/00v986r94', 'no_lang_code', 1, 'https://ror.org/00v986r94 Grade Medical (Czechia)'), (55719, 'https://ror.org/00v9m1060', 'no_lang_code', 1, 'https://ror.org/00v9m1060 Robert Bosch (France)'), (55720, 'https://ror.org/00vbr4z12', 'no_lang_code', 1, 'https://ror.org/00vbr4z12 Paradigm (France)'), (55721, 'https://ror.org/00vbwpw70', 'de', 1, 'https://ror.org/00vbwpw70 Stadtgalerie Bern'), (55722, 'https://ror.org/00vcdkt35', 'no_lang_code', 1, 'https://ror.org/00vcdkt35 Elice (France)'), (55723, 'https://ror.org/00vfhwc85', 'no_lang_code', 1, 'https://ror.org/00vfhwc85 Interlifescience (Switzerland)'), (55724, 'https://ror.org/00vgm4247', 'en', 1, 'https://ror.org/00vgm4247 Tohoku Agricultural Research Center 東北農業研究センター'), (55725, 'https://ror.org/00vgnwa79', 'no_lang_code', 1, 'https://ror.org/00vgnwa79 N&R Engineering Management & Services (United States)'), (55726, 'https://ror.org/00vh82m49', 'nl', 1, 'https://ror.org/00vh82m49 Stichting Vrienden Beatrix Kinderziekenhuis'), (55727, 'https://ror.org/00vj8hy88', 'no_lang_code', 1, 'https://ror.org/00vj8hy88 Hendrix Genetics (France)'), (55728, 'https://ror.org/00vkatb78', 'no_lang_code', 1, 'https://ror.org/00vkatb78 BHP - Hanser und Partner (Switzerland)'), (55729, 'https://ror.org/00vmgnj07', 'no_lang_code', 1, 'https://ror.org/00vmgnj07 Ereie (France)'), (55730, 'https://ror.org/00vnjz480', 'de', 1, 'https://ror.org/00vnjz480 Verwaltungsgericht Kantons Aargau'), (55731, 'https://ror.org/00vnx7m69', 'cs', 1, 'https://ror.org/00vnx7m69 Výzkumná Stanice Vinohradnická'), (55732, 'https://ror.org/00vp7bk08', 'no_lang_code', 1, 'https://ror.org/00vp7bk08 Casale Project (Czechia)'), (55733, 'https://ror.org/00vppz759', 'en', 1, 'https://ror.org/00vppz759 Westchester Community Foundation'), (55734, 'https://ror.org/00vqmez57', 'fr', 1, 'https://ror.org/00vqmez57 Hôpital de Cery'), (55735, 'https://ror.org/00vrhw316', 'no_lang_code', 1, 'https://ror.org/00vrhw316 United Microelectronics (United States)'), (55736, 'https://ror.org/00vrtwn56', 'en', 1, 'https://ror.org/00vrtwn56 Azerbaijan Scientific-Research & Design-Prospecting Power Engineering Institute Azərbaycan Elmi–Tədqiqat və Layihə Axtarış Energetika İnstitutu'), (55737, 'https://ror.org/00vsw8h69', 'en', 1, 'https://ror.org/00vsw8h69 MED Institute'), (55738, 'https://ror.org/00vts9t98', 'de', 1, 'https://ror.org/00vts9t98 VIA AudioVideoFotoKunst'), (55739, 'https://ror.org/00vvs5b96', 'no_lang_code', 1, 'https://ror.org/00vvs5b96 Leo Pharma (Australia)'), (55740, 'https://ror.org/00vxg2528', 'en', 1, 'https://ror.org/00vxg2528 Yokohama Foundation for Advancement of Medical Science 横浜総合医学振興財団'), (55741, 'https://ror.org/00vy0bt98', 'no_lang_code', 1, 'https://ror.org/00vy0bt98 Anita B (Czechia)'), (55742, 'https://ror.org/00vzfcj75', 'de', 1, 'https://ror.org/00vzfcj75 Gesellschaft für Schweizerische Kunstgeschichte'), (55743, 'https://ror.org/00w26fm43', 'no_lang_code', 1, 'https://ror.org/00w26fm43 Prothena (Ireland)'), (55744, 'https://ror.org/00w282m94', 'no_lang_code', 1, 'https://ror.org/00w282m94 APT (Czechia)'), (55745, 'https://ror.org/00w33ze35', 'en', 1, 'https://ror.org/00w33ze35 Registered Nurses'' Association of Ontario'), (55746, 'https://ror.org/00w3cd056', 'en', 1, 'https://ror.org/00w3cd056 California Institute of Computer-Assisted Surgery'), (55747, 'https://ror.org/00w5csc43', 'en', 1, 'https://ror.org/00w5csc43 Chamber and Offices Authorized Persons Engineering Česká Komora Autorizovaných Inženýrů a Techniků Činných ve Výstavbě'), (55748, 'https://ror.org/00w5rad21', 'fr', 1, 'https://ror.org/00w5rad21 Institut de Recherche et de Documentation Pédagogique'), (55749, 'https://ror.org/00w673w61', 'no_lang_code', 1, 'https://ror.org/00w673w61 MB Pharma (Czechia)'), (55750, 'https://ror.org/00w6hp096', 'no_lang_code', 1, 'https://ror.org/00w6hp096 Bausch Health (France)'), (55751, 'https://ror.org/00w8ecv17', 'de', 1, 'https://ror.org/00w8ecv17 Die Schweizer Fachstelle'), (55752, 'https://ror.org/00w8qrj53', 'no_lang_code', 1, 'https://ror.org/00w8qrj53 Senagro (Czechia)'), (55753, 'https://ror.org/00wac5p69', 'no_lang_code', 1, 'https://ror.org/00wac5p69 Devimex (Czechia)'), (55754, 'https://ror.org/00wacrh06', 'no_lang_code', 1, 'https://ror.org/00wacrh06 Solitea (Czechia)'), (55755, 'https://ror.org/00wb1mn80', 'no_lang_code', 1, 'https://ror.org/00wb1mn80 Bestex (Czechia)'), (55756, 'https://ror.org/00wbjq302', 'no_lang_code', 1, 'https://ror.org/00wbjq302 IRIS Instruments (France)'), (55757, 'https://ror.org/00wfp9c14', 'pt', 1, 'https://ror.org/00wfp9c14 Instituto de Pesquisas da Marinha'), (55758, 'https://ror.org/00whf4s48', 'en', 1, 'https://ror.org/00whf4s48 Finnish Parkinson Foundation Suomen Parkinson-säätiö'), (55759, 'https://ror.org/00wjmzv89', 'no_lang_code', 1, 'https://ror.org/00wjmzv89 Mepatek (Czechia)'), (55760, 'https://ror.org/00wjnd087', 'en', 1, 'https://ror.org/00wjnd087 Hari Shankar Singhania Elastomer And Tyre Research Institute'), (55761, 'https://ror.org/00wmkg231', 'no_lang_code', 1, 'https://ror.org/00wmkg231 FMP Lignum (Czechia)'), (55762, 'https://ror.org/00wnsmv12', 'cs', 1, 'https://ror.org/00wnsmv12 Zdravotnická Záchranná Služba Jihočeského Kraje'), (55763, 'https://ror.org/00wp3ct36', 'en', 1, 'https://ror.org/00wp3ct36 Euro Balkan University Универзитет Евро-Балкан'), (55764, 'https://ror.org/00wphza66', 'no_lang_code', 1, 'https://ror.org/00wphza66 Argus Geo Systém (Czechia)'), (55765, 'https://ror.org/00wqy9447', 'no_lang_code', 1, 'https://ror.org/00wqy9447 Algon (Czechia)'), (55766, 'https://ror.org/00wszf981', 'no_lang_code', 1, 'https://ror.org/00wszf981 Combilift (Ireland)'), (55767, 'https://ror.org/00wt28973', 'de', 1, 'https://ror.org/00wt28973 Kantonsbibliothek von Appenzell Ausserrhoden'), (55768, 'https://ror.org/00wvdj807', 'no_lang_code', 1, 'https://ror.org/00wvdj807 XtendWave (United States)'), (55769, 'https://ror.org/00wvhys96', 'no_lang_code', 1, 'https://ror.org/00wvhys96 Puig (France)'), (55770, 'https://ror.org/00wxgkf94', 'no_lang_code', 1, 'https://ror.org/00wxgkf94 LAC (Czechia)'), (55771, 'https://ror.org/00wznfw28', 'no_lang_code', 1, 'https://ror.org/00wznfw28 Planar (Switzerland)'), (55772, 'https://ror.org/00x0dmc73', 'no_lang_code', 1, 'https://ror.org/00x0dmc73 InfoScience (Czechia)'), (55773, 'https://ror.org/00x0wct18', 'en', 1, 'https://ror.org/00x0wct18 Roshan Cultural Heritage Institute'), (55774, 'https://ror.org/00x1qgr19', 'en', 1, 'https://ror.org/00x1qgr19 Robert R. McCormick Foundation'), (55775, 'https://ror.org/00x1wf347', 'no_lang_code', 1, 'https://ror.org/00x1wf347 Ekoles Projekt (Czechia)'), (55776, 'https://ror.org/00x26bk24', 'en', 1, 'https://ror.org/00x26bk24 Federal Criminal Court Tribunal penal federal Tribunal pénal fédéral Tribunale penale federale'), (55777, 'https://ror.org/00x8z6715', 'en', 1, 'https://ror.org/00x8z6715 Nevsky Institute of Language and Culture Невский Институт языка и культуры'), (55778, 'https://ror.org/00x9jsn18', 'en', 1, 'https://ror.org/00x9jsn18 EdVenture'), (55779, 'https://ror.org/00xb8n835', 'no_lang_code', 1, 'https://ror.org/00xb8n835 CS-Project (Czechia)'), (55780, 'https://ror.org/00xckqv95', 'en', 1, 'https://ror.org/00xckqv95 B.Well Swiss'), (55781, 'https://ror.org/00xfww534', 'en', 1, 'https://ror.org/00xfww534 Energy Pipelines CRC'), (55782, 'https://ror.org/00xhvk795', 'en', 1, 'https://ror.org/00xhvk795 Institute for Literary Studies Magyar Tudományos Akadémia Bölcsészettudományi Kutatóközpont Irodalomtudományi Intézet'), (55783, 'https://ror.org/00xj6v282', 'no_lang_code', 1, 'https://ror.org/00xj6v282 Rabbit Chotýšany (Czechia)'), (55784, 'https://ror.org/00xk4q268', 'no_lang_code', 1, 'https://ror.org/00xk4q268 Škoda JS (Czechia)'), (55785, 'https://ror.org/00xkrwz44', 'no_lang_code', 1, 'https://ror.org/00xkrwz44 AGRIDEA Agricultural Advisory and Extension Services Entwicklung der Landwirtschaft und des Ländlichen Raums La Centrale di consulenza agricola'), (55786, 'https://ror.org/00xr47e92', 'pt', 1, 'https://ror.org/00xr47e92 Instituto Nacional de Ciências dos Materiais em Nanotecnologia'), (55787, 'https://ror.org/00xtmkg39', 'no_lang_code', 1, 'https://ror.org/00xtmkg39 Taiwan Power (Taiwan) 台灣電力公司'), (55788, 'https://ror.org/00xv3af28', 'no_lang_code', 1, 'https://ror.org/00xv3af28 Nakladatelství Lidové Noviny (Czechia)'), (55789, 'https://ror.org/00xvxdy42', 'no_lang_code', 1, 'https://ror.org/00xvxdy42 Acer (United States)'), (55790, 'https://ror.org/00xx3t779', 'de', 1, 'https://ror.org/00xx3t779 ITW'), (55791, 'https://ror.org/00xxcdz88', 'no_lang_code', 1, 'https://ror.org/00xxcdz88 Air Technic (Czechia)'), (55792, 'https://ror.org/00xzncb58', 'en', 1, 'https://ror.org/00xzncb58 Texas Organic Farmers and Gardeners Association'), (55793, 'https://ror.org/00y221604', 'de', 1, 'https://ror.org/00y221604 Amt für Raumentwicklung'), (55794, 'https://ror.org/00y2wtn40', 'en', 1, 'https://ror.org/00y2wtn40 Office of Minority Health'), (55795, 'https://ror.org/00y3jnz30', 'en', 1, 'https://ror.org/00y3jnz30 Huaneng Clean Energy Research Institute 清洁能源技术研究院有限公司'), (55796, 'https://ror.org/00y3qx097', 'en', 1, 'https://ror.org/00y3qx097 Kennel Club Charitable Trust'), (55797, 'https://ror.org/00y4c9c34', 'no_lang_code', 1, 'https://ror.org/00y4c9c34 Agro Podlesí (Czechia)'), (55798, 'https://ror.org/00y6ymy93', 'no_lang_code', 1, 'https://ror.org/00y6ymy93 Nutreco (Czechia)'), (55799, 'https://ror.org/00y8acb95', 'fr', 1, 'https://ror.org/00y8acb95 Service de la Santé Publique'), (55800, 'https://ror.org/00y9v7w55', 'no_lang_code', 1, 'https://ror.org/00y9v7w55 Agro (Czechia)'), (55801, 'https://ror.org/00yd0qf44', 'en', 1, 'https://ror.org/00yd0qf44 Institutul de Cercetari pentru Instrumentatie Analitica Research Institute for Analytical Instrumentation'), (55802, 'https://ror.org/00ye0ab97', 'no_lang_code', 1, 'https://ror.org/00ye0ab97 GREEN Tox (Switzerland)'), (55803, 'https://ror.org/00yf3tm42', 'en', 1, 'https://ror.org/00yf3tm42 Center for Drug Evaluation and Research'), (55804, 'https://ror.org/00yjgag34', 'en', 1, 'https://ror.org/00yjgag34 International Psychoanalytical Association'), (55805, 'https://ror.org/00yktj852', 'no_lang_code', 1, 'https://ror.org/00yktj852 BOVA Březnice (Czechia)'), (55806, 'https://ror.org/00ymr0824', 'de', 1, 'https://ror.org/00ymr0824 Kantonsschule Sargans'), (55807, 'https://ror.org/00yp3hb50', 'fi', 1, 'https://ror.org/00yp3hb50 Tampereen Tuberkuloosisäätiö'), (55808, 'https://ror.org/00ypgdj53', 'en', 1, 'https://ror.org/00ypgdj53 Van Wert County Foundation'), (55809, 'https://ror.org/00yrbts90', 'en', 1, 'https://ror.org/00yrbts90 H&M Foundation'), (55810, 'https://ror.org/00yswm660', 'en', 1, 'https://ror.org/00yswm660 Japan National Society for the Prevent of Blindness 公益財団法人 日本失明予防協会'), (55811, 'https://ror.org/00yt9z408', 'no_lang_code', 1, 'https://ror.org/00yt9z408 EyePoint Pharmaceuticals (United Kingdom)'), (55812, 'https://ror.org/00yxram96', 'no_lang_code', 1, 'https://ror.org/00yxram96 Bracco (Netherlands)'), (55813, 'https://ror.org/00yy4rd30', 'no_lang_code', 1, 'https://ror.org/00yy4rd30 Descent (Czechia)'), (55814, 'https://ror.org/00z3pv627', 'no_lang_code', 1, 'https://ror.org/00z3pv627 BioFish (Czechia)'), (55815, 'https://ror.org/00z4tjm61', 'en', 1, 'https://ror.org/00z4tjm61 Reservoir Engineering Research Institute'), (55816, 'https://ror.org/00z6b1508', 'en', 1, 'https://ror.org/00z6b1508 National Agricultural Library'), (55817, 'https://ror.org/00z7y2783', 'no_lang_code', 1, 'https://ror.org/00z7y2783 Nutreov Laboratoires (France)'), (55818, 'https://ror.org/00z8jse46', 'cs', 1, 'https://ror.org/00z8jse46 Prachatice Museum'), (55819, 'https://ror.org/00z95qt34', 'no_lang_code', 1, 'https://ror.org/00z95qt34 NAV Flight Services (Czechia)'), (55820, 'https://ror.org/00z9exx28', 'no_lang_code', 1, 'https://ror.org/00z9exx28 Eteria (Czechia)'), (55821, 'https://ror.org/00z9nr140', 'cs', 1, 'https://ror.org/00z9nr140 Karlovarská Krajská Nemocnice'), (55822, 'https://ror.org/00zb6nk96', 'fr', 1, 'https://ror.org/00zb6nk96 Labor Spiez Labor Spiez Laboratoire de Spiez, Spiez Laboratory Laboratorio Spiez'), (55823, 'https://ror.org/00zbgzk38', 'cs', 1, 'https://ror.org/00zbgzk38 Kristina Colloredo-Mansfeldová'), (55824, 'https://ror.org/00zd9a055', 'de', 1, 'https://ror.org/00zd9a055 Amt für Wald und Naturgefahren'), (55825, 'https://ror.org/00zez7q62', 'no_lang_code', 1, 'https://ror.org/00zez7q62 Armatury Group (Czechia)'), (55826, 'https://ror.org/00zfhgg86', 'no_lang_code', 1, 'https://ror.org/00zfhgg86 AeskuLab (Czechia)'), (55827, 'https://ror.org/00zhfb561', 'no_lang_code', 1, 'https://ror.org/00zhfb561 Cochlear (France)'), (55828, 'https://ror.org/00zjpfj13', 'no_lang_code', 1, 'https://ror.org/00zjpfj13 HBIS (China) 河北钢铁集团有限公司'), (55829, 'https://ror.org/00zm06h90', 'en', 1, 'https://ror.org/00zm06h90 Genservice'), (55830, 'https://ror.org/00zm8c694', 'no_lang_code', 1, 'https://ror.org/00zm8c694 IC Infraconsult (Switzerland)'), (55831, 'https://ror.org/00zps9v98', 'en', 1, 'https://ror.org/00zps9v98 Swedish Rheumatism Association'), (55832, 'https://ror.org/00zq01589', 'no_lang_code', 1, 'https://ror.org/00zq01589 Cook Medical (India)'), (55833, 'https://ror.org/00zq45236', 'no_lang_code', 1, 'https://ror.org/00zq45236 SurgiMedia (France)'), (55834, 'https://ror.org/00zrb8z36', 'en', 1, 'https://ror.org/00zrb8z36 Institute of the Meat and Dairy Industry'), (55835, 'https://ror.org/00zs45r78', 'no_lang_code', 1, 'https://ror.org/00zs45r78 Circuit Therapeutics (United States)'), (55836, 'https://ror.org/00zw38x02', 'en', 1, 'https://ror.org/00zw38x02 Research Center of Maternal and Child Health Protection'), (55837, 'https://ror.org/00zwv5854', 'en', 1, 'https://ror.org/00zwv5854 KAUTE-säätiö Kaute Foundation'), (55838, 'https://ror.org/00zwvxv21', 'no_lang_code', 1, 'https://ror.org/00zwvxv21 AQ SPOL (Czechia)'), (55839, 'https://ror.org/00zy1mb15', 'no_lang_code', 1, 'https://ror.org/00zy1mb15 CABI Kenya'), (55840, 'https://ror.org/00zy1vd16', 'fr', 1, 'https://ror.org/00zy1vd16 Centre National de Recherches sur l''Environnement'), (55841, 'https://ror.org/00zyea842', 'no_lang_code', 1, 'https://ror.org/00zyea842 CNS (Czechia)'), (55842, 'https://ror.org/00zyq8158', 'no_lang_code', 1, 'https://ror.org/00zyq8158 Reprogen (Czechia)'), (55843, 'https://ror.org/00zyvrn45', 'en', 1, 'https://ror.org/00zyvrn45 Scleroderma Research Foundation'), (55844, 'https://ror.org/01006rc90', 'en', 1, 'https://ror.org/01006rc90 Staatsarchiv des Kantons Bern State Archive of Bern'), (55845, 'https://ror.org/0100zbm77', 'en', 1, 'https://ror.org/0100zbm77 Federation of European Biochemical Societies'), (55846, 'https://ror.org/01017e202', 'en', 1, 'https://ror.org/01017e202 Stiftung Bibliothek Werner Oechslin Werner Oechslin Library Foundation'), (55847, 'https://ror.org/0102bq490', 'no_lang_code', 1, 'https://ror.org/0102bq490 AQD-envitest (Czechia)'), (55848, 'https://ror.org/0107h6s84', 'en', 1, 'https://ror.org/0107h6s84 Alfred Kordelin Foundation'), (55849, 'https://ror.org/0108ddn29', 'en', 1, 'https://ror.org/0108ddn29 Pitt Hopkins Research Foundation'), (55850, 'https://ror.org/010abdn73', 'en', 1, 'https://ror.org/010abdn73 Sand County Foundation'), (55851, 'https://ror.org/010b9pv54', 'no_lang_code', 1, 'https://ror.org/010b9pv54 LightGate (Czechia)'), (55852, 'https://ror.org/010bska32', 'no_lang_code', 1, 'https://ror.org/010bska32 Gentop Engineering (Czechia)'), (55853, 'https://ror.org/010c2f249', 'en', 1, 'https://ror.org/010c2f249 Institute of Electrodynamics Інститут електродинаміки НАН України'), (55854, 'https://ror.org/010cn0k09', 'sv', 1, 'https://ror.org/010cn0k09 Victoriastiftelsen'), (55855, 'https://ror.org/010e8xz82', 'no_lang_code', 1, 'https://ror.org/010e8xz82 Polycom (Czechia)'), (55856, 'https://ror.org/010g1a428', 'no_lang_code', 1, 'https://ror.org/010g1a428 VHS Brno (Czechia)'), (55857, 'https://ror.org/010m1h651', 'en', 1, 'https://ror.org/010m1h651 American College of Veterinary Ophthalmologists'), (55858, 'https://ror.org/010nah411', 'no_lang_code', 1, 'https://ror.org/010nah411 DTZ (Czechia)'), (55859, 'https://ror.org/010pb5v16', 'no_lang_code', 1, 'https://ror.org/010pb5v16 Rockwool International (Germany)'), (55860, 'https://ror.org/010q0m202', 'de', 1, 'https://ror.org/010q0m202 Bibliothèque de la Bourgeoisie de Berne Burgerbibliothek Bern, Burgerbibliothek of Berne'), (55861, 'https://ror.org/010qg4v35', 'en', 1, 'https://ror.org/010qg4v35 International Organization for Migration Mezinárodní organizace pro migraci'), (55862, 'https://ror.org/010rabn19', 'no_lang_code', 1, 'https://ror.org/010rabn19 Electronic Control and Measurement (Czechia)'), (55863, 'https://ror.org/010rd0v86', 'en', 1, 'https://ror.org/010rd0v86 Michael Foundation Stiftung Michael'), (55864, 'https://ror.org/010rsfq12', 'de', 1, 'https://ror.org/010rsfq12 Stadtbibliothek Schaffhausen'), (55865, 'https://ror.org/010s15j79', 'en', 1, 'https://ror.org/010s15j79 Calypso Farm and Ecology Center'), (55866, 'https://ror.org/010ssmx53', 'en', 1, 'https://ror.org/010ssmx53 Prague Castle Správa Pražského Hradu'), (55867, 'https://ror.org/010tdmk44', 'no_lang_code', 1, 'https://ror.org/010tdmk44 Lec (Czechia)'), (55868, 'https://ror.org/010vrw806', 'no_lang_code', 1, 'https://ror.org/010vrw806 GMEP Engineers (United States)'), (55869, 'https://ror.org/010w5rh03', 'no_lang_code', 1, 'https://ror.org/010w5rh03 Vodárna Káraný (Czechia)'), (55870, 'https://ror.org/010wkhc71', 'en', 1, 'https://ror.org/010wkhc71 MEF Associates'), (55871, 'https://ror.org/010xshk05', 'no_lang_code', 1, 'https://ror.org/010xshk05 Polabské Mlékárny (Czechia)'), (55872, 'https://ror.org/010y4ct40', 'it', 1, 'https://ror.org/010y4ct40 Istituto di Ortofonologia'), (55873, 'https://ror.org/010zgd654', 'cs', 1, 'https://ror.org/010zgd654 Česká Geografická Společnost'), (55874, 'https://ror.org/01100v986', 'en', 1, 'https://ror.org/01100v986 Madison County Urban league'), (55875, 'https://ror.org/0111g6367', 'no_lang_code', 1, 'https://ror.org/0111g6367 Suez (Czechia)'), (55876, 'https://ror.org/0112bn567', 'en', 1, 'https://ror.org/0112bn567 Institute of Ecology and Geography Institutul de Ecologie și Geografie'), (55877, 'https://ror.org/0113xva09', 'en', 1, 'https://ror.org/0113xva09 Federal Agency for Legal Protection of Military Results, Special and Dual Purpose Федеральное агентство по правовой защите результатов интеллектуальной деятельности военного'), (55878, 'https://ror.org/01169zb17', 'no_lang_code', 1, 'https://ror.org/01169zb17 Kennametal (Germany)'), (55879, 'https://ror.org/0117c5950', 'no_lang_code', 1, 'https://ror.org/0117c5950 Funktion One Research (United Kingdom)'), (55880, 'https://ror.org/0117j0167', 'no_lang_code', 1, 'https://ror.org/0117j0167 Envigo (United Kingdom)'), (55881, 'https://ror.org/0118w8d25', 'en', 1, 'https://ror.org/0118w8d25 Wasserman Foundation'), (55882, 'https://ror.org/011b3r412', 'no_lang_code', 1, 'https://ror.org/011b3r412 Adidas (Netherlands)'), (55883, 'https://ror.org/011bbc947', 'no_lang_code', 1, 'https://ror.org/011bbc947 Dopravní Podnik Města České Budějovice'), (55884, 'https://ror.org/011cj7r81', 'no_lang_code', 1, 'https://ror.org/011cj7r81 Ostravské Městské Lesy a Zeleň (Czechia)'), (55885, 'https://ror.org/011drtn64', 'no_lang_code', 1, 'https://ror.org/011drtn64 Jet Company (Czechia)'), (55886, 'https://ror.org/011e5e822', 'no_lang_code', 1, 'https://ror.org/011e5e822 NVH Medicinal (France)'), (55887, 'https://ror.org/011f1xp18', 'no_lang_code', 1, 'https://ror.org/011f1xp18 Waste Hub (United States)'), (55888, 'https://ror.org/011fc5j67', 'no_lang_code', 1, 'https://ror.org/011fc5j67 Augur Consulting (Czechia)'), (55889, 'https://ror.org/011hxwn54', 'en', 1, 'https://ror.org/011hxwn54 Asia Pacific Center for Theoretical Physics'), (55890, 'https://ror.org/011jwng84', 'en', 1, 'https://ror.org/011jwng84 Kolin Institute of Technology Kolínský Technologický Institut'), (55891, 'https://ror.org/011jzth85', 'no_lang_code', 1, 'https://ror.org/011jzth85 ZVU Kovárna (Czechia)'), (55892, 'https://ror.org/011kmvk73', 'en', 1, 'https://ror.org/011kmvk73 Global Core Research Center for Ships and Offshore Plants 선박 및 해양 플랜트 글로벌 핵심 연구 센터'), (55893, 'https://ror.org/011kvxd26', 'no_lang_code', 1, 'https://ror.org/011kvxd26 Doosan (South Korea) 두산그룹'), (55894, 'https://ror.org/011m09981', 'no_lang_code', 1, 'https://ror.org/011m09981 Agroel (Czechia)'), (55895, 'https://ror.org/011mmtr14', 'no_lang_code', 1, 'https://ror.org/011mmtr14 LEA Networks (France)'), (55896, 'https://ror.org/011np0p15', 'cs', 1, 'https://ror.org/011np0p15 Strojírenský Zkušební Ústav'), (55897, 'https://ror.org/011qyt180', 'en', 1, 'https://ror.org/011qyt180 VA Office of Research and Development'), (55898, 'https://ror.org/011s5g254', 'no_lang_code', 1, 'https://ror.org/011s5g254 DEL (Czechia)'), (55899, 'https://ror.org/011srqz97', 'no_lang_code', 1, 'https://ror.org/011srqz97 Waitaki Biosciences (New Zealand)'), (55900, 'https://ror.org/011w6k548', 'en', 1, 'https://ror.org/011w6k548 New York Times'), (55901, 'https://ror.org/011x9em51', 'en', 1, 'https://ror.org/011x9em51 Southern Appalachian Highlands Conservancy'), (55902, 'https://ror.org/0124cbs22', 'no_lang_code', 1, 'https://ror.org/0124cbs22 Woolmark (Australia)'), (55903, 'https://ror.org/0126c8978', 'no_lang_code', 1, 'https://ror.org/0126c8978 Ecolab Znojmo (Czechia)'), (55904, 'https://ror.org/012a3nb13', 'no_lang_code', 1, 'https://ror.org/012a3nb13 Aeolis Research (United States)'), (55905, 'https://ror.org/012a8a777', 'en', 1, 'https://ror.org/012a8a777 Society for the Preservation of American Modernists'), (55906, 'https://ror.org/012bs5594', 'no_lang_code', 1, 'https://ror.org/012bs5594 Cegedim (France)'), (55907, 'https://ror.org/012djrr37', 'en', 1, 'https://ror.org/012djrr37 Institut plánování a rozvoje hlavního města Prahy Prague Institute of Planning and Development'), (55908, 'https://ror.org/012et2c70', 'no_lang_code', 1, 'https://ror.org/012et2c70 CZ Fruit (Czechia)'), (55909, 'https://ror.org/012eyjh05', 'no_lang_code', 1, 'https://ror.org/012eyjh05 Nanovia (Czechia)'), (55910, 'https://ror.org/012fexm34', 'no_lang_code', 1, 'https://ror.org/012fexm34 Edwards Lifesciences (Switzerland)'), (55911, 'https://ror.org/012h24p18', 'de', 1, 'https://ror.org/012h24p18 Forschungs und Dokumentationsstelle Kind und Umwelt'), (55912, 'https://ror.org/012hjj416', 'no_lang_code', 1, 'https://ror.org/012hjj416 Farmak (Czechia)'), (55913, 'https://ror.org/012nfnh03', 'en', 1, 'https://ror.org/012nfnh03 Society for the Anthropology of North America'), (55914, 'https://ror.org/012qa0c42', 'no_lang_code', 1, 'https://ror.org/012qa0c42 Betonconsult (Czechia)'), (55915, 'https://ror.org/012v1rw43', 'no_lang_code', 1, 'https://ror.org/012v1rw43 Dodávky Automatizace (Czechia)'), (55916, 'https://ror.org/012y7dr10', 'en', 1, 'https://ror.org/012y7dr10 Biosystems Informatics Institute'), (55917, 'https://ror.org/012z62f48', 'en', 1, 'https://ror.org/012z62f48 China Academy of Launch Vehicle Technology 中国运载火箭技术研究院'), (55918, 'https://ror.org/013177044', 'de', 1, 'https://ror.org/013177044 Dialog N'), (55919, 'https://ror.org/0132ebm72', 'en', 1, 'https://ror.org/0132ebm72 Institute for Balkan Studies and Centre for Thracology Институт за балканистика с център по тракология'), (55920, 'https://ror.org/0132ebr60', 'no_lang_code', 1, 'https://ror.org/0132ebr60 Toyota Industries (United States)'), (55921, 'https://ror.org/01336q621', 'no_lang_code', 1, 'https://ror.org/01336q621 DMS Imaging (France)'), (55922, 'https://ror.org/0133m4g32', 'no_lang_code', 1, 'https://ror.org/0133m4g32 Nidec (France)'), (55923, 'https://ror.org/01356gm80', 'cs', 1, 'https://ror.org/01356gm80 Zelinářská unie Čech a Moravy'), (55924, 'https://ror.org/0135y0c80', 'de', 1, 'https://ror.org/0135y0c80 Mittelschul- und Berufsbildungsamt'), (55925, 'https://ror.org/0135zve36', 'en', 1, 'https://ror.org/0135zve36 California Native Plant Society'), (55926, 'https://ror.org/0136wrs55', 'en', 1, 'https://ror.org/0136wrs55 Scientific Research and Design Institute of Technology Equipment Refining and Petrochemical Industries ВСЕРОССИЙСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ И КОНСТРУКТОРСКО-ТЕХНОЛОГИЧЕСКИЙ ИНСТИТУТ ОБОРУДОВАНИЯ НЕФТЕПЕРЕРАБАТЫВАЮЩЕЙ И НЕФТЕХИМИЧЕСКОЙ ПРОМЫШЛЕННОСТИ'), (55927, 'https://ror.org/0137xm018', 'no_lang_code', 1, 'https://ror.org/0137xm018 KCI (Ireland)'), (55928, 'https://ror.org/0139gxv26', 'fr', 1, 'https://ror.org/0139gxv26 Museum of Art and History Musée d''Art et d''Histoire'), (55929, 'https://ror.org/0139mkv47', 'no_lang_code', 1, 'https://ror.org/0139mkv47 Solvay (United Kingdom)'), (55930, 'https://ror.org/013b57229', 'no_lang_code', 1, 'https://ror.org/013b57229 Bristol-Myers Squibb (France)'), (55931, 'https://ror.org/013bz8f47', 'no_lang_code', 1, 'https://ror.org/013bz8f47 Enteromed (United Kingdom)'), (55932, 'https://ror.org/013eh0c53', 'en', 1, 'https://ror.org/013eh0c53 American Institute for Psychoanalysis'), (55933, 'https://ror.org/013esgc34', 'no_lang_code', 1, 'https://ror.org/013esgc34 Instar ITS (Czechia)'), (55934, 'https://ror.org/013g68144', 'en', 1, 'https://ror.org/013g68144 GS1 Czech Republic'), (55935, 'https://ror.org/013gv6q66', 'en', 1, 'https://ror.org/013gv6q66 WHAS Crusade for Children'), (55936, 'https://ror.org/013j2ff86', 'no_lang_code', 1, 'https://ror.org/013j2ff86 Steris (France)'), (55937, 'https://ror.org/013j55h69', 'no_lang_code', 1, 'https://ror.org/013j55h69 Rehau (France)'), (55938, 'https://ror.org/013k74819', 'de', 1, 'https://ror.org/013k74819 Kantonsarchäologie'), (55939, 'https://ror.org/013kx3552', 'cs', 1, 'https://ror.org/013kx3552 Bohuslav Martinu Foundation, Nadace Bohuslava Martinů'), (55940, 'https://ror.org/013nc8024', 'no_lang_code', 1, 'https://ror.org/013nc8024 Angermeier (Czechia)'), (55941, 'https://ror.org/013qc1j71', 'en', 1, 'https://ror.org/013qc1j71 Paws & Claws Animal Hospital and Holistic Pet Center'), (55942, 'https://ror.org/013rtsq97', 'en', 1, 'https://ror.org/013rtsq97 Samberg Family Foundation'), (55943, 'https://ror.org/013t7dx52', 'no_lang_code', 1, 'https://ror.org/013t7dx52 ICT Unie'), (55944, 'https://ror.org/013vrgb28', 'en', 1, 'https://ror.org/013vrgb28 Czech Radio Český rozhlas'), (55945, 'https://ror.org/013ww9721', 'en', 1, 'https://ror.org/013ww9721 Fondation Philippe Wiener - Maurice Anspach Wiener - Anspach Foundation'), (55946, 'https://ror.org/013x7n115', 'no_lang_code', 1, 'https://ror.org/013x7n115 Hologic (United Kingdom)'), (55947, 'https://ror.org/013xqbx45', 'no_lang_code', 1, 'https://ror.org/013xqbx45 Caerbont Automotive Instruments (United Kingdom)'), (55948, 'https://ror.org/013zszd91', 'en', 1, 'https://ror.org/013zszd91 Israel Water Authority מועצת רשות המים'), (55949, 'https://ror.org/0140krp16', 'no_lang_code', 1, 'https://ror.org/0140krp16 Mane (India)'), (55950, 'https://ror.org/0142b0n41', 'no_lang_code', 1, 'https://ror.org/0142b0n41 Berry Servis (Czechia)'), (55951, 'https://ror.org/0145pgy59', 'en', 1, 'https://ror.org/0145pgy59 Rose Foundation for Communities and the Environment'), (55952, 'https://ror.org/014775w70', 'no_lang_code', 1, 'https://ror.org/014775w70 Renesas Electronics (United States)'), (55953, 'https://ror.org/01484hw40', 'no_lang_code', 1, 'https://ror.org/01484hw40 Marvell (Israel)'), (55954, 'https://ror.org/014becm56', 'no_lang_code', 1, 'https://ror.org/014becm56 Meteolabor (Switzerland)'), (55955, 'https://ror.org/014bftp96', 'no_lang_code', 1, 'https://ror.org/014bftp96 Dopravní Podnik Měst Liberce a Jablonce nad Nisou (Czechia) Dopravní podnik města Liberce'), (55956, 'https://ror.org/014bj9h93', 'cs', 1, 'https://ror.org/014bj9h93 Česká Energetická Asociace'), (55957, 'https://ror.org/014dka479', 'no_lang_code', 1, 'https://ror.org/014dka479 Sky Paragliders (Czechia)'), (55958, 'https://ror.org/014ezhp82', 'no_lang_code', 1, 'https://ror.org/014ezhp82 Laboratory Supplies and Instruments (United Kingdom)'), (55959, 'https://ror.org/014f0f469', 'en', 1, 'https://ror.org/014f0f469 Working Landscapes'), (55960, 'https://ror.org/014j4nz90', 'no_lang_code', 1, 'https://ror.org/014j4nz90 Rosomac (Czechia)'), (55961, 'https://ror.org/014jtt019', 'en', 1, 'https://ror.org/014jtt019 Government of Ireland'), (55962, 'https://ror.org/014mn3s63', 'en', 1, 'https://ror.org/014mn3s63 United States African Development Foundation'), (55963, 'https://ror.org/014mtbm52', 'en', 1, 'https://ror.org/014mtbm52 Thommen Medical (Switzerland)'), (55964, 'https://ror.org/014n5hm22', 'no_lang_code', 1, 'https://ror.org/014n5hm22 Sanofi (Austria)'), (55965, 'https://ror.org/014pp1s07', 'en', 1, 'https://ror.org/014pp1s07 Port Authority of New York and New Jersey'), (55966, 'https://ror.org/014r06x83', 'no_lang_code', 1, 'https://ror.org/014r06x83 ZPA Ekoreg (Czechia)'), (55967, 'https://ror.org/014smg292', 'en', 1, 'https://ror.org/014smg292 RJ McElroy Trust'), (55968, 'https://ror.org/014t9bz90', 'no_lang_code', 1, 'https://ror.org/014t9bz90 Techtronic Industries (United Kingdom)'), (55969, 'https://ror.org/014tew554', 'no_lang_code', 1, 'https://ror.org/014tew554 Garmin (United Kingdom)'), (55970, 'https://ror.org/014tfzt26', 'no_lang_code', 1, 'https://ror.org/014tfzt26 Metabolic Modeling Services (New Zealand)'), (55971, 'https://ror.org/014tm9824', 'no_lang_code', 1, 'https://ror.org/014tm9824 Czechoslovak Society for Microbiology (Czechia) Československá společnost mikrobiologická'), (55972, 'https://ror.org/014we6j04', 'no_lang_code', 1, 'https://ror.org/014we6j04 Ecofuel Laboratories (Czechia)'), (55973, 'https://ror.org/014wt7r80', 'en', 1, 'https://ror.org/014wt7r80 IBM Research - India'), (55974, 'https://ror.org/01510f568', 'no_lang_code', 1, 'https://ror.org/01510f568 Setec (France)'), (55975, 'https://ror.org/0151hvz61', 'en', 1, 'https://ror.org/0151hvz61 San Diego Center for Spinal Disorders'), (55976, 'https://ror.org/0153me927', 'fr', 1, 'https://ror.org/0153me927 Fondation Mathématiques Jacques Hadamard'), (55977, 'https://ror.org/01544jt07', 'no_lang_code', 1, 'https://ror.org/01544jt07 Hit Hofman (Czechia)'), (55978, 'https://ror.org/015cg7d75', 'cs', 1, 'https://ror.org/015cg7d75 Sociální Agentura'), (55979, 'https://ror.org/015cskm63', 'no_lang_code', 1, 'https://ror.org/015cskm63 Sat (Czechia)'), (55980, 'https://ror.org/015dee208', 'no_lang_code', 1, 'https://ror.org/015dee208 FCC Austria Abfall Service AG'), (55981, 'https://ror.org/015g04494', 'no_lang_code', 1, 'https://ror.org/015g04494 Projekt HTL (Czechia)'), (55982, 'https://ror.org/015g21p04', 'en', 1, 'https://ror.org/015g21p04 Marathon Veterinary Hospital'), (55983, 'https://ror.org/015gb1r92', 'da', 1, 'https://ror.org/015gb1r92 Svend Beck Peter Holm og Vagn Jacobsens Almene Fond'), (55984, 'https://ror.org/015j7rx80', 'no_lang_code', 1, 'https://ror.org/015j7rx80 Ders (Czechia)'), (55985, 'https://ror.org/015kngk22', 'sv', 1, 'https://ror.org/015kngk22 Stiftelsen Clas Groschinskys Minnesfond'), (55986, 'https://ror.org/015pn9s62', 'es', 1, 'https://ror.org/015pn9s62 Instituto Químico Biológico'), (55987, 'https://ror.org/015r3hp96', 'en', 1, 'https://ror.org/015r3hp96 Grundinformationen über Südböhmische Wirtschaftskammer Jihočeská hospodářská komora South Bohemian Chamber of Commerce'), (55988, 'https://ror.org/015r6qx80', 'no_lang_code', 1, 'https://ror.org/015r6qx80 Laboratoires d''Anjou (France)'), (55989, 'https://ror.org/015rwy490', 'de', 1, 'https://ror.org/015rwy490 Schweizerischer Juristenverein'), (55990, 'https://ror.org/015sf2585', 'no_lang_code', 1, 'https://ror.org/015sf2585 Rebnok (India)'), (55991, 'https://ror.org/015t1sz24', 'en', 1, 'https://ror.org/015t1sz24 College of Information Management Business Administration and Law Vysoká škola manažerské informatiky, ekonomiky a práva'), (55992, 'https://ror.org/015vtg089', 'no_lang_code', 1, 'https://ror.org/015vtg089 Biodegradace (Czechia)'), (55993, 'https://ror.org/015xp8e19', 'de', 1, 'https://ror.org/015xp8e19 Thüringer Ministerium für Bildung, Jugend und Sport'), (55994, 'https://ror.org/015y4fr56', 'en', 1, 'https://ror.org/015y4fr56 Institute of Paleontology A A Borisyak Палеонтологический институт имени А. А. Борисяка РАН [править | править вики-текст]'), (55995, 'https://ror.org/015ye0m82', 'no_lang_code', 1, 'https://ror.org/015ye0m82 Advance Product Services (United Kingdom)'), (55996, 'https://ror.org/015yfqq31', 'en', 1, 'https://ror.org/015yfqq31 Dominican School of Philosophy and Theology'), (55997, 'https://ror.org/015zgf178', 'de', 1, 'https://ror.org/015zgf178 Schweizerische Multiple Sklerose Gesellschaft Società Svizzera Sclerosi Multipla Société Suisse de la Sclérose en Plaques'), (55998, 'https://ror.org/015zgrj36', 'de', 1, 'https://ror.org/015zgrj36 Egger Kommunikation'), (55999, 'https://ror.org/016018d94', 'de', 1, 'https://ror.org/016018d94 Bundesamt für Kultur, Office fédéral de la culture Ufficio federale della cultura Uffizi federal da cultura'), (56000, 'https://ror.org/01607kg94', 'no_lang_code', 1, 'https://ror.org/01607kg94 Nokia (China)'), (56001, 'https://ror.org/0160rhq33', 'en', 1, 'https://ror.org/0160rhq33 Dalmia Institute of Scientific & Industrial Research'), (56002, 'https://ror.org/0161kev09', 'no_lang_code', 1, 'https://ror.org/0161kev09 APPLIC (Czechia)'), (56003, 'https://ror.org/0161tv133', 'no_lang_code', 1, 'https://ror.org/0161tv133 Memscap (France)'), (56004, 'https://ror.org/016241e94', 'no_lang_code', 1, 'https://ror.org/016241e94 Liberecké Kotlárny Hölter (Czechia)'), (56005, 'https://ror.org/0163qy924', 'no_lang_code', 1, 'https://ror.org/0163qy924 Newell Brands (Germany)'), (56006, 'https://ror.org/01647qt90', 'no_lang_code', 1, 'https://ror.org/01647qt90 Genoscience Pharma (France)'), (56007, 'https://ror.org/0164z4p75', 'no_lang_code', 1, 'https://ror.org/0164z4p75 Glass Service (Czechia)'), (56008, 'https://ror.org/01654ws56', 'en', 1, 'https://ror.org/01654ws56 Technology Industries of Finland'), (56009, 'https://ror.org/0165j6v88', 'cs', 1, 'https://ror.org/0165j6v88 Unie Geologických Asociací'), (56010, 'https://ror.org/0168cex60', 'no_lang_code', 1, 'https://ror.org/0168cex60 Interfluid (Czechia)'), (56011, 'https://ror.org/016dg3e07', 'no_lang_code', 1, 'https://ror.org/016dg3e07 International Drug Development Institute (Belgium)'), (56012, 'https://ror.org/016dt2y84', 'de', 1, 'https://ror.org/016dt2y84 Center Pro Natura of Champ-Pittet'), (56013, 'https://ror.org/016en3a39', 'en', 1, 'https://ror.org/016en3a39 IMI TAMI Institute for Research and Development'), (56014, 'https://ror.org/016fc4a97', 'en', 1, 'https://ror.org/016fc4a97 University Film and Video Association'), (56015, 'https://ror.org/016fqsx25', 'en', 1, 'https://ror.org/016fqsx25 Formation Continue UNIL-EPFL'), (56016, 'https://ror.org/016gtw459', 'no_lang_code', 1, 'https://ror.org/016gtw459 Sitel (Czechia)'), (56017, 'https://ror.org/016h91621', 'no_lang_code', 1, 'https://ror.org/016h91621 Amest (Czechia)'), (56018, 'https://ror.org/016jmhr98', 'en', 1, 'https://ror.org/016jmhr98 Amt für Veröffentlichungen der Europäischen Union L''Office des Publications de l’Union Européenne Publications Office of the European Union'), (56019, 'https://ror.org/016kmmx43', 'en', 1, 'https://ror.org/016kmmx43 Savoy Foundation'), (56020, 'https://ror.org/016kx7a84', 'no_lang_code', 1, 'https://ror.org/016kx7a84 Ballard Power Systems (Germany)'), (56021, 'https://ror.org/016m85y83', 'de', 1, 'https://ror.org/016m85y83 Fachkommission für Hochspannungsfragen'), (56022, 'https://ror.org/016nn9d26', 'no_lang_code', 1, 'https://ror.org/016nn9d26 Becton Dickinson (France)'), (56023, 'https://ror.org/016p3p817', 'en', 1, 'https://ror.org/016p3p817 Stichting Vanderes Vanderes Foundation'), (56024, 'https://ror.org/016pgbd19', 'no_lang_code', 1, 'https://ror.org/016pgbd19 Éditions Gallimard (France)'), (56025, 'https://ror.org/016ppxm14', 'no_lang_code', 1, 'https://ror.org/016ppxm14 Intermark Medical Innovations (United Kingdom)'), (56026, 'https://ror.org/016q8y748', 'no_lang_code', 1, 'https://ror.org/016q8y748 Bilcare Research (United States)'), (56027, 'https://ror.org/016r49y78', 'no_lang_code', 1, 'https://ror.org/016r49y78 IntellMed (Czechia)'), (56028, 'https://ror.org/016scq007', 'en', 1, 'https://ror.org/016scq007 Havlíčkův Brod Hospital Nemocnice Havlíčkův Brod'), (56029, 'https://ror.org/016wa7380', 'no_lang_code', 1, 'https://ror.org/016wa7380 JHV Engineering'), (56030, 'https://ror.org/016xeth45', 'no_lang_code', 1, 'https://ror.org/016xeth45 Nadop-výroba Nábytku (Czechia)'), (56031, 'https://ror.org/016y4db75', 'en', 1, 'https://ror.org/016y4db75 Spital Linth'), (56032, 'https://ror.org/01702fz61', 'en', 1, 'https://ror.org/01702fz61 Riverbanks Zoo and Garden'), (56033, 'https://ror.org/01705m837', 'no_lang_code', 1, 'https://ror.org/01705m837 Dako-CZ (Czechia)'), (56034, 'https://ror.org/0174xkn11', 'en', 1, 'https://ror.org/0174xkn11 William K. Warren Foundation'), (56035, 'https://ror.org/01764mn96', 'no_lang_code', 1, 'https://ror.org/01764mn96 Gumotex (Czechia)'), (56036, 'https://ror.org/0176j2f59', 'no_lang_code', 1, 'https://ror.org/0176j2f59 AK Svejkovský, Kabelková, Šlauf (Czechia)'), (56037, 'https://ror.org/0176jpt46', 'en', 1, 'https://ror.org/0176jpt46 Schenectady Foundation'), (56038, 'https://ror.org/0177f9748', 'en', 1, 'https://ror.org/0177f9748 Society for Ambulatory Anesthesia'), (56039, 'https://ror.org/0179vv482', 'en', 1, 'https://ror.org/0179vv482 Office of Postsecondary Education'), (56040, 'https://ror.org/017afst72', 'no_lang_code', 1, 'https://ror.org/017afst72 Blackberry (United States)'), (56041, 'https://ror.org/017bbk264', 'en', 1, 'https://ror.org/017bbk264 Ohio Ecological Food and Farm Association'), (56042, 'https://ror.org/017dxtw95', 'en', 1, 'https://ror.org/017dxtw95 Centre for Research Development and Innovation Centrum pro výzkum, vývoj a inovace'), (56043, 'https://ror.org/017ep6b53', 'de', 1, 'https://ror.org/017ep6b53 Natur Museum Luzern'), (56044, 'https://ror.org/017fqk185', 'no_lang_code', 1, 'https://ror.org/017fqk185 Microsoft (Ireland)'), (56045, 'https://ror.org/017fxz195', 'no_lang_code', 1, 'https://ror.org/017fxz195 Dyntec (Czechia)'), (56046, 'https://ror.org/017g8xy67', 'no_lang_code', 1, 'https://ror.org/017g8xy67 IDEA StatiCa (Czechia)'), (56047, 'https://ror.org/017hkkd29', 'en', 1, 'https://ror.org/017hkkd29 Leadership for Urban Renewal Network'), (56048, 'https://ror.org/017mw4x28', 'en', 1, 'https://ror.org/017mw4x28 Healthcare Technology Innovation Centre'), (56049, 'https://ror.org/017pyf298', 'cs', 1, 'https://ror.org/017pyf298 Nemocnice Jablonec nad Nisou'), (56050, 'https://ror.org/017sk3p30', 'no_lang_code', 1, 'https://ror.org/017sk3p30 Geniczech M (Czechia)'), (56051, 'https://ror.org/017swdq34', 'en', 1, 'https://ror.org/017swdq34 Wuhan Donghu University 武汉东湖学院'), (56052, 'https://ror.org/017vj1d34', 'no_lang_code', 1, 'https://ror.org/017vj1d34 Barco (Netherlands)'), (56053, 'https://ror.org/017w1jt07', 'no_lang_code', 1, 'https://ror.org/017w1jt07 Strojírenské Inovační Centrum (Czechia)'), (56054, 'https://ror.org/017y22r40', 'en', 1, 'https://ror.org/017y22r40 Fujian Metrology Institute'), (56055, 'https://ror.org/0181yrz32', 'no_lang_code', 1, 'https://ror.org/0181yrz32 Croda (France)'), (56056, 'https://ror.org/0183e1x96', 'en', 1, 'https://ror.org/0183e1x96 Minerals Council of Australia'), (56057, 'https://ror.org/0184jv876', 'no_lang_code', 1, 'https://ror.org/0184jv876 Johnson Controls (Germany)'), (56058, 'https://ror.org/0187psc61', 'en', 1, 'https://ror.org/0187psc61 Scottish Intercollegiate Guidelines Network'), (56059, 'https://ror.org/0188dhg98', 'en', 1, 'https://ror.org/0188dhg98 Office of the Comptroller of the Currency'), (56060, 'https://ror.org/018dfgy98', 'no_lang_code', 1, 'https://ror.org/018dfgy98 Centro de Calculo Igs Software (Czechia)'), (56061, 'https://ror.org/018fjx211', 'de', 1, 'https://ror.org/018fjx211 Schweizer Zither-Kulturzentrum'), (56062, 'https://ror.org/018hfge71', 'no_lang_code', 1, 'https://ror.org/018hfge71 Měď Povrly (Czechia)'), (56063, 'https://ror.org/018p41404', 'en', 1, 'https://ror.org/018p41404 Korean Chemical Society'), (56064, 'https://ror.org/018pszt58', 'no_lang_code', 1, 'https://ror.org/018pszt58 Rekultivační Výstavba Most (Czechia)'), (56065, 'https://ror.org/018rnp883', 'no_lang_code', 1, 'https://ror.org/018rnp883 Adamovské Strojírny (Czechia)'), (56066, 'https://ror.org/018ryqx18', 'cs', 1, 'https://ror.org/018ryqx18 Základní škola Brno'), (56067, 'https://ror.org/018vhj234', 'no_lang_code', 1, 'https://ror.org/018vhj234 Turnex (Czechia)'), (56068, 'https://ror.org/018vsyr42', 'no_lang_code', 1, 'https://ror.org/018vsyr42 SG-Geoprojekt (Czechia)'), (56069, 'https://ror.org/018whpc62', 'no_lang_code', 1, 'https://ror.org/018whpc62 MEP Equine Solutions (United States)'), (56070, 'https://ror.org/018yv7m63', 'sv', 1, 'https://ror.org/018yv7m63 Svenska Örtmedicinska Institute'), (56071, 'https://ror.org/018ze1g95', 'no_lang_code', 1, 'https://ror.org/018ze1g95 Good Sailors (Czechia)'), (56072, 'https://ror.org/01909jb21', 'fr', 1, 'https://ror.org/01909jb21 Lycée Pierre-de-Fermat'), (56073, 'https://ror.org/0190gce36', 'en', 1, 'https://ror.org/0190gce36 Concerned Black Men National'), (56074, 'https://ror.org/0190tnk59', 'no_lang_code', 1, 'https://ror.org/0190tnk59 Dopravní Podnik Ostrava Transport Company Ostrava (Czechia)'), (56075, 'https://ror.org/019206e14', 'en', 1, 'https://ror.org/019206e14 Automotive Industry Association Sdružení Automobilového Průmyslu'), (56076, 'https://ror.org/01920rj20', 'en', 1, 'https://ror.org/01920rj20 Roslin Institute'), (56077, 'https://ror.org/0192hf124', 'en', 1, 'https://ror.org/0192hf124 Sean Costello Memorial Fund for Bipolar Research'), (56078, 'https://ror.org/0193emr15', 'en', 1, 'https://ror.org/0193emr15 ASI Consulting Group (United States)'), (56079, 'https://ror.org/0194wdc61', 'cs', 1, 'https://ror.org/0194wdc61 Profesní Komora Sociálních Pracovníků'), (56080, 'https://ror.org/0197zpg25', 'no_lang_code', 1, 'https://ror.org/0197zpg25 SOR Libchavy (Czechia)'), (56081, 'https://ror.org/0198yrw13', 'no_lang_code', 1, 'https://ror.org/0198yrw13 Boehringer Ingelheim (Mexico)'), (56082, 'https://ror.org/019bmyc06', 'no_lang_code', 1, 'https://ror.org/019bmyc06 PBS Power Equipment (Czechia)'), (56083, 'https://ror.org/019d8yq85', 'no_lang_code', 1, 'https://ror.org/019d8yq85 Vyrtych TPI (Czechia)'), (56084, 'https://ror.org/019dgfy14', 'no_lang_code', 1, 'https://ror.org/019dgfy14 Dystiff (Czechia)'), (56085, 'https://ror.org/019ex7f36', 'no_lang_code', 1, 'https://ror.org/019ex7f36 Safe Patient Systems (United Kingdom)'), (56086, 'https://ror.org/019fb4526', 'no_lang_code', 1, 'https://ror.org/019fb4526 BG Sys HT (Czechia)'); INSERT INTO `rors` VALUES (56087, 'https://ror.org/019fwhw29', 'en', 1, 'https://ror.org/019fwhw29 Muzeul Național al Ţăranului Român Romanian Peasant Museum'), (56088, 'https://ror.org/019h4w337', 'no_lang_code', 1, 'https://ror.org/019h4w337 Válcovna Trub (Czechia)'), (56089, 'https://ror.org/019hb2q78', 'de', 1, 'https://ror.org/019hb2q78 Staatsarchiv des Kantons Zürich'), (56090, 'https://ror.org/019jfhj96', 'en', 1, 'https://ror.org/019jfhj96 Webber Family Foundation'), (56091, 'https://ror.org/019m3rc39', 'no_lang_code', 1, 'https://ror.org/019m3rc39 Asipo (Czechia)'), (56092, 'https://ror.org/019ngyx76', 'en', 1, 'https://ror.org/019ngyx76 Institute for Environmental Management'), (56093, 'https://ror.org/019pz8z97', 'en', 1, 'https://ror.org/019pz8z97 Association of Ukrainian Cities Асоціація міст України та громад'), (56094, 'https://ror.org/019qf4t38', 'no_lang_code', 1, 'https://ror.org/019qf4t38 Mobsya'), (56095, 'https://ror.org/019qmfe51', 'en', 1, 'https://ror.org/019qmfe51 South Central Community Action Programs'), (56096, 'https://ror.org/019vgq189', 'no_lang_code', 1, 'https://ror.org/019vgq189 Schiller (France)'), (56097, 'https://ror.org/019vv3z40', 'en', 1, 'https://ror.org/019vv3z40 Pen-Faulkner Foundation'), (56098, 'https://ror.org/019w0cd69', 'no_lang_code', 1, 'https://ror.org/019w0cd69 Despa ok (Czechia)'), (56099, 'https://ror.org/019ygn834', 'de', 1, 'https://ror.org/019ygn834 Zentrum für Sprachtherapie'), (56100, 'https://ror.org/019z0b657', 'no_lang_code', 1, 'https://ror.org/019z0b657 V-Projekt (Czechia)'), (56101, 'https://ror.org/019zrgy79', 'en', 1, 'https://ror.org/019zrgy79 Albrecht von Haller Foundation Albrecht von Haller-Stiftung'), (56102, 'https://ror.org/019zz2s13', 'no_lang_code', 1, 'https://ror.org/019zz2s13 Rybářství Nové Hrady (Czechia)'), (56103, 'https://ror.org/01a097g74', 'no_lang_code', 1, 'https://ror.org/01a097g74 Sigma-Tau (Switzerland)'), (56104, 'https://ror.org/01a134x88', 'no_lang_code', 1, 'https://ror.org/01a134x88 GeoTec GS (Czechia)'), (56105, 'https://ror.org/01a1d1t26', 'no_lang_code', 1, 'https://ror.org/01a1d1t26 Lime Business Consulting (Czechia)'), (56106, 'https://ror.org/01a1e7r70', 'no_lang_code', 1, 'https://ror.org/01a1e7r70 Dendria (Czechia)'), (56107, 'https://ror.org/01a1zts48', 'en', 1, 'https://ror.org/01a1zts48 Windham Regional Community Council'), (56108, 'https://ror.org/01a29cf93', 'de', 1, 'https://ror.org/01a29cf93 Institut für Industrielle Pharmazie'), (56109, 'https://ror.org/01a56n213', 'no_lang_code', 1, 'https://ror.org/01a56n213 Shangluo University 商洛学院'), (56110, 'https://ror.org/01a83sr17', 'de', 1, 'https://ror.org/01a83sr17 Kunsthaus Zug'), (56111, 'https://ror.org/01a8wgs29', 'no_lang_code', 1, 'https://ror.org/01a8wgs29 Straumann (Switzerland)'), (56112, 'https://ror.org/01a9pzb45', 'en', 1, 'https://ror.org/01a9pzb45 National Association of Community Health Representatives'), (56113, 'https://ror.org/01aaykq16', 'no_lang_code', 1, 'https://ror.org/01aaykq16 Diram (Czechia)'), (56114, 'https://ror.org/01acb1828', 'en', 1, 'https://ror.org/01acb1828 Sierra Health Foundation'), (56115, 'https://ror.org/01aee7q96', 'no_lang_code', 1, 'https://ror.org/01aee7q96 Saint-Gobain (Czechia)'), (56116, 'https://ror.org/01aej3c59', 'no_lang_code', 1, 'https://ror.org/01aej3c59 Tylex Letovice (Czechia)'), (56117, 'https://ror.org/01afvgj08', 'en', 1, 'https://ror.org/01afvgj08 Sacramento Food Bank and Family Services'), (56118, 'https://ror.org/01ahf6552', 'no_lang_code', 1, 'https://ror.org/01ahf6552 Integrated Chinese Medicine (China)'), (56119, 'https://ror.org/01akd1s31', 'no_lang_code', 1, 'https://ror.org/01akd1s31 SDS Exmost (Czechia)'), (56120, 'https://ror.org/01ap43e37', 'no_lang_code', 1, 'https://ror.org/01ap43e37 Šimeček (Czechia)'), (56121, 'https://ror.org/01ar4tp47', 'en', 1, 'https://ror.org/01ar4tp47 Austrian Marshall Plan Foundation Marshallplan Jubiläumsstiftung'), (56122, 'https://ror.org/01ar7b291', 'en', 1, 'https://ror.org/01ar7b291 Delegation of the European Union to Guinea Délégation de l’Union Européenne en République de Guinée'), (56123, 'https://ror.org/01ars0856', 'en', 1, 'https://ror.org/01ars0856 Atlanta Clinical and Translational Science Institute'), (56124, 'https://ror.org/01atm1h75', 'no_lang_code', 1, 'https://ror.org/01atm1h75 Laboratoires Prod''Hyg (France)'), (56125, 'https://ror.org/01avhp493', 'no_lang_code', 1, 'https://ror.org/01avhp493 Institut Strategické Podpory (Czechia)'), (56126, 'https://ror.org/01avs2k90', 'en', 1, 'https://ror.org/01avs2k90 Ulugh Beg Astronomical Institute'), (56127, 'https://ror.org/01avy4c79', 'no_lang_code', 1, 'https://ror.org/01avy4c79 Synchro Medical (France)'), (56128, 'https://ror.org/01awkss54', 'no_lang_code', 1, 'https://ror.org/01awkss54 TE Connectivity (France)'), (56129, 'https://ror.org/01ax0ps79', 'en', 1, 'https://ror.org/01ax0ps79 Agricultural Technology Research Institute'), (56130, 'https://ror.org/01azdfc53', 'en', 1, 'https://ror.org/01azdfc53 Psychiatrie Baselland Psychiatry Baselland'), (56131, 'https://ror.org/01b2bca57', 'de', 1, 'https://ror.org/01b2bca57 Archäologische Bodenforschung des Kantons Basel-Stadt'), (56132, 'https://ror.org/01b2xa564', 'no_lang_code', 1, 'https://ror.org/01b2xa564 Czech Radiocommunications (Czechia) České Radiokomunikace'), (56133, 'https://ror.org/01b2z3d97', 'cs', 1, 'https://ror.org/01b2z3d97 Vlastivědné Muzeum v Šumperku'), (56134, 'https://ror.org/01b34qr50', 'no_lang_code', 1, 'https://ror.org/01b34qr50 Slovacke Strojirny (Czechia)'), (56135, 'https://ror.org/01b3d1c61', 'no_lang_code', 1, 'https://ror.org/01b3d1c61 Energoservis (Czechia)'), (56136, 'https://ror.org/01b883r40', 'no_lang_code', 1, 'https://ror.org/01b883r40 INTV (Czechia)'), (56137, 'https://ror.org/01b9jf692', 'no_lang_code', 1, 'https://ror.org/01b9jf692 Vepaspol Olomouc (Czechia)'), (56138, 'https://ror.org/01bb5z206', 'fr', 1, 'https://ror.org/01bb5z206 Technologie Médicale (France)'), (56139, 'https://ror.org/01bgvrv25', 'no_lang_code', 1, 'https://ror.org/01bgvrv25 Valeo Physical Therapy (United States)'), (56140, 'https://ror.org/01bgymr29', 'fr', 1, 'https://ror.org/01bgymr29 Fondation Innovations en Infectiologie'), (56141, 'https://ror.org/01bgzbz31', 'en', 1, 'https://ror.org/01bgzbz31 Schweizerische Gesellschaft für Soziologie Swiss Sociological Association'), (56142, 'https://ror.org/01bhb9v37', 'no_lang_code', 1, 'https://ror.org/01bhb9v37 Betotech (Czechia)'), (56143, 'https://ror.org/01bmmtg52', 'cs', 1, 'https://ror.org/01bmmtg52 Asociace Poskytovatelů Sociálních Služeb České Republiky'), (56144, 'https://ror.org/01bqscy27', 'fr', 1, 'https://ror.org/01bqscy27 Geneva Ethnography Museum Musée d''Ethnographie de Genève'), (56145, 'https://ror.org/01brpj081', 'no_lang_code', 1, 'https://ror.org/01brpj081 Recutech (Czechia)'), (56146, 'https://ror.org/01bv2n867', 'fr', 1, 'https://ror.org/01bv2n867 Institut Supérieur d’Informatique, de Modélisation et de leurs Applications'), (56147, 'https://ror.org/01bxp3g94', 'no_lang_code', 1, 'https://ror.org/01bxp3g94 ON Semiconductor (Taiwan)'), (56148, 'https://ror.org/01c2pab95', 'no_lang_code', 1, 'https://ror.org/01c2pab95 Vial (Norway)'), (56149, 'https://ror.org/01c2z9a94', 'en', 1, 'https://ror.org/01c2z9a94 Ohio State Office of the Governor'), (56150, 'https://ror.org/01c3yj543', 'no_lang_code', 1, 'https://ror.org/01c3yj543 Peter Brett Associates (Czechia)'), (56151, 'https://ror.org/01c4cwj74', 'en', 1, 'https://ror.org/01c4cwj74 Respiratory Health Association'), (56152, 'https://ror.org/01c5qhp69', 'no_lang_code', 1, 'https://ror.org/01c5qhp69 SciGlob (United States)'), (56153, 'https://ror.org/01c75m640', 'en', 1, 'https://ror.org/01c75m640 Office of Minority Health and Health Equity'), (56154, 'https://ror.org/01c8asw96', 'no_lang_code', 1, 'https://ror.org/01c8asw96 Nodus (Norway)'), (56155, 'https://ror.org/01c8hzn56', 'en', 1, 'https://ror.org/01c8hzn56 South Asian Health Foundation'), (56156, 'https://ror.org/01c8rdt53', 'no_lang_code', 1, 'https://ror.org/01c8rdt53 PKS holding (Czechia)'), (56157, 'https://ror.org/01camvb92', 'en', 1, 'https://ror.org/01camvb92 Fribourg Development Agency Promotion économique du canton de Fribourg'), (56158, 'https://ror.org/01ccqrj78', 'en', 1, 'https://ror.org/01ccqrj78 American Olive Oil Producers Association'), (56159, 'https://ror.org/01cdf1198', 'it', 1, 'https://ror.org/01cdf1198 Scuola Cantonale di Commercio Bellinzona'), (56160, 'https://ror.org/01cejnk20', 'en', 1, 'https://ror.org/01cejnk20 International Union of Immunological Societies'), (56161, 'https://ror.org/01cfx5y86', 'no_lang_code', 1, 'https://ror.org/01cfx5y86 AZ Consult (Czechia)'), (56162, 'https://ror.org/01ch84g48', 'no_lang_code', 1, 'https://ror.org/01ch84g48 Rex Controls (Czechia)'), (56163, 'https://ror.org/01cm3mn51', 'no_lang_code', 1, 'https://ror.org/01cm3mn51 Liaison Technologies (United States)'), (56164, 'https://ror.org/01cmnv018', 'fr', 1, 'https://ror.org/01cmnv018 Institut des Neurosciences Cliniques de Rennes'), (56165, 'https://ror.org/01cmyeg51', 'no_lang_code', 1, 'https://ror.org/01cmyeg51 ENBRA (Czechia)'), (56166, 'https://ror.org/01cq1dy18', 'no', 1, 'https://ror.org/01cq1dy18 Regionale forskningsfond Oslofjordfondet'), (56167, 'https://ror.org/01ct6ew56', 'no_lang_code', 1, 'https://ror.org/01ct6ew56 ZONER software (Czechia)'), (56168, 'https://ror.org/01ct81870', 'cs', 1, 'https://ror.org/01ct81870 CZ Biom'), (56169, 'https://ror.org/01ct9s926', 'hu', 1, 'https://ror.org/01ct9s926 Pallas Athéné Domus Animae Alapítvány'), (56170, 'https://ror.org/01ctc2z33', 'en', 1, 'https://ror.org/01ctc2z33 Wipe Out Kids Cancer'), (56171, 'https://ror.org/01cvk6k60', 'no_lang_code', 1, 'https://ror.org/01cvk6k60 Eyedea Recognition (Czechia)'), (56172, 'https://ror.org/01d1a4y61', 'no_lang_code', 1, 'https://ror.org/01d1a4y61 Malina Safety (Czechia)'), (56173, 'https://ror.org/01d2pjm58', 'no_lang_code', 1, 'https://ror.org/01d2pjm58 Universal Production Partners (Czechia)'), (56174, 'https://ror.org/01d2prf79', 'fr', 1, 'https://ror.org/01d2prf79 Direction Générale des Entreprises'), (56175, 'https://ror.org/01d4cz113', 'no_lang_code', 1, 'https://ror.org/01d4cz113 Ochrana Podzemních Vod (Czechia)'), (56176, 'https://ror.org/01d5z1p97', 'cs', 1, 'https://ror.org/01d5z1p97 Svaz Vinařů České Republiky'), (56177, 'https://ror.org/01d6br473', 'de', 1, 'https://ror.org/01d6br473 Christlicher Friedensdienst'), (56178, 'https://ror.org/01d6x6740', 'en', 1, 'https://ror.org/01d6x6740 Wyoming Office of the Governor'), (56179, 'https://ror.org/01d931n02', 'en', 1, 'https://ror.org/01d931n02 Ronald McDonald House Charities of Northeastern Ohio'), (56180, 'https://ror.org/01dagn361', 'en', 1, 'https://ror.org/01dagn361 TIFR Centre for Interdisciplinary Sciences'), (56181, 'https://ror.org/01datx010', 'en', 1, 'https://ror.org/01datx010 Designability'), (56182, 'https://ror.org/01dawqf23', 'no_lang_code', 1, 'https://ror.org/01dawqf23 CSS (Switzerland)'), (56183, 'https://ror.org/01dbp7q39', 'no_lang_code', 1, 'https://ror.org/01dbp7q39 Mikrotechna Praha (Czechia)'), (56184, 'https://ror.org/01ddk2e73', 'cs', 1, 'https://ror.org/01ddk2e73 Zemědělské Družstvo Čechtice'), (56185, 'https://ror.org/01ddpks56', 'no_lang_code', 1, 'https://ror.org/01ddpks56 Georeal (Czechia)'), (56186, 'https://ror.org/01deknt13', 'no_lang_code', 1, 'https://ror.org/01deknt13 Motorpal (Czechia)'), (56187, 'https://ror.org/01dh19j96', 'no_lang_code', 1, 'https://ror.org/01dh19j96 Goss International (France)'), (56188, 'https://ror.org/01dhtjr14', 'no_lang_code', 1, 'https://ror.org/01dhtjr14 Composite Components (Czechia)'), (56189, 'https://ror.org/01dk5kp39', 'en', 1, 'https://ror.org/01dk5kp39 Bellikon Rehabilitation Clinic Rehaklinik Bellikon'), (56190, 'https://ror.org/01dkyny41', 'es', 1, 'https://ror.org/01dkyny41 Universidad UNIACC'), (56191, 'https://ror.org/01dph1h97', 'en', 1, 'https://ror.org/01dph1h97 Zurich Chamber of Commerce Zürcher Handelskammer'), (56192, 'https://ror.org/01dr2x580', 'cs', 1, 'https://ror.org/01dr2x580 Základní Škola Vachkova'), (56193, 'https://ror.org/01dt2yc71', 'no_lang_code', 1, 'https://ror.org/01dt2yc71 Agro Rubín (Czechia)'), (56194, 'https://ror.org/01dvqbh84', 'no_lang_code', 1, 'https://ror.org/01dvqbh84 Teva Pharmaceuticals (United Kingdom)'), (56195, 'https://ror.org/01dx78504', 'no_lang_code', 1, 'https://ror.org/01dx78504 ZEZ Praha (Czechia)'), (56196, 'https://ror.org/01dxdkd86', 'no_lang_code', 1, 'https://ror.org/01dxdkd86 Sela Light (France)'), (56197, 'https://ror.org/01dxemz65', 'de', 1, 'https://ror.org/01dxemz65 Kantonsbibliothek Vadiana St.Gallen'), (56198, 'https://ror.org/01dxwkm60', 'de', 1, 'https://ror.org/01dxwkm60 Ad Baumgartner Sozialforschung'), (56199, 'https://ror.org/01dxzkc83', 'no_lang_code', 1, 'https://ror.org/01dxzkc83 Gala (Czechia)'), (56200, 'https://ror.org/01dy84y11', 'no_lang_code', 1, 'https://ror.org/01dy84y11 Atlas Copco (Sweden)'), (56201, 'https://ror.org/01dyffq73', 'en', 1, 'https://ror.org/01dyffq73 Burzynski Research Institute'), (56202, 'https://ror.org/01dyja912', 'no_lang_code', 1, 'https://ror.org/01dyja912 Ferarihs'), (56203, 'https://ror.org/01dykse44', 'no_lang_code', 1, 'https://ror.org/01dykse44 Patriot (Czechia)'), (56204, 'https://ror.org/01e473h50', 'en', 1, 'https://ror.org/01e473h50 Ludwig Cancer Research'), (56205, 'https://ror.org/01e6knz33', 'cs', 1, 'https://ror.org/01e6knz33 Technologické centrum Písek'), (56206, 'https://ror.org/01e6r0071', 'no_lang_code', 1, 'https://ror.org/01e6r0071 Tubs (United States)'), (56207, 'https://ror.org/01e89dr28', 'fr', 1, 'https://ror.org/01e89dr28 BFA Laboratoires'), (56208, 'https://ror.org/01e8d4510', 'it', 1, 'https://ror.org/01e8d4510 SDN Istituto di Ricerca Diagnostica e Nucleare'), (56209, 'https://ror.org/01eah9363', 'it', 1, 'https://ror.org/01eah9363 Archivio di Stato di Firenze'), (56210, 'https://ror.org/01eb88c92', 'en', 1, 'https://ror.org/01eb88c92 Animal Health Institute'), (56211, 'https://ror.org/01edvza61', 'no_lang_code', 1, 'https://ror.org/01edvza61 Dopravní akademie (Czechia)'), (56212, 'https://ror.org/01eeqch44', 'es', 1, 'https://ror.org/01eeqch44 Agencia Canaria de Investigación, Innovación y Sociedad de la Información'), (56213, 'https://ror.org/01ef4as46', 'en', 1, 'https://ror.org/01ef4as46 Direction Générale Recherche et innovation Directorate-General for Research and Innovation Generaldirektion Forschung und Innovation'), (56214, 'https://ror.org/01ef7dt45', 'no_lang_code', 1, 'https://ror.org/01ef7dt45 Centec (Czechia)'), (56215, 'https://ror.org/01efe3143', 'no_lang_code', 1, 'https://ror.org/01efe3143 DT Výhybkárna a Strojírna (Czechia)'), (56216, 'https://ror.org/01ej37345', 'no_lang_code', 1, 'https://ror.org/01ej37345 Betonika Spol (Czechia)'), (56217, 'https://ror.org/01ejq3n45', 'cs', 1, 'https://ror.org/01ejq3n45 Children’s Centre Little House Dzieckie Centrum Domeczek Dětské Centrum Domeček, Dětský Domov pro Děti do 3 Let'), (56218, 'https://ror.org/01emwg098', 'no_lang_code', 1, 'https://ror.org/01emwg098 Kovolis Hedvikov (Czechia)'), (56219, 'https://ror.org/01emzvp42', 'en', 1, 'https://ror.org/01emzvp42 Parents Let''s Unite for Kids'), (56220, 'https://ror.org/01enwhw69', 'de', 1, 'https://ror.org/01enwhw69 Sozialamt des Kantons Thurgau'), (56221, 'https://ror.org/01ep8wa33', 'en', 1, 'https://ror.org/01ep8wa33 European Copper Institute'), (56222, 'https://ror.org/01eqe2r17', 'en', 1, 'https://ror.org/01eqe2r17 Signe and Ane Gyllenberg Foundation Signe ja Ane Gyllenbergin säätiö'), (56223, 'https://ror.org/01eqtac57', 'no_lang_code', 1, 'https://ror.org/01eqtac57 Crabtree (United States)'), (56224, 'https://ror.org/01er6ka68', 'de', 1, 'https://ror.org/01er6ka68 Kantonsarchäologie'), (56225, 'https://ror.org/01evns552', 'en', 1, 'https://ror.org/01evns552 Louisiana Department of Insurance'), (56226, 'https://ror.org/01evw4s98', 'no_lang_code', 1, 'https://ror.org/01evw4s98 Pipelife (Czechia)'), (56227, 'https://ror.org/01ew2yc64', 'fr', 1, 'https://ror.org/01ew2yc64 Conseil Interprofessionnel du Vin de Bordeaux'), (56228, 'https://ror.org/01ex2ev57', 'no_lang_code', 1, 'https://ror.org/01ex2ev57 Sokolovské Strojírny (Czechia)'), (56229, 'https://ror.org/01ex2n145', 'no_lang_code', 1, 'https://ror.org/01ex2n145 Alumistr (Czechia)'), (56230, 'https://ror.org/01ey4aq86', 'no_lang_code', 1, 'https://ror.org/01ey4aq86 Trs (Czechia)'), (56231, 'https://ror.org/01f15r266', 'en', 1, 'https://ror.org/01f15r266 Inha University in Tashkent Toshkent Shahridagi Inha Universiteti'), (56232, 'https://ror.org/01f3d0y31', 'no_lang_code', 1, 'https://ror.org/01f3d0y31 Nuvia (Czechia)'), (56233, 'https://ror.org/01f4k3b46', 'en', 1, 'https://ror.org/01f4k3b46 China Electronic Product Reliability and Environmental Test Institute 工业和信息化部第五电子研究所'), (56234, 'https://ror.org/01f67ew21', 'no_lang_code', 1, 'https://ror.org/01f67ew21 Hendrix Genetics (Netherlands)'), (56235, 'https://ror.org/01f7h5955', 'de', 1, 'https://ror.org/01f7h5955 Allgemeine Berufsschule Zürich'), (56236, 'https://ror.org/01f827628', 'no_lang_code', 1, 'https://ror.org/01f827628 Mood International (Czechia)'), (56237, 'https://ror.org/01fawrr58', 'no_lang_code', 1, 'https://ror.org/01fawrr58 Selenium Medical (France)'), (56238, 'https://ror.org/01fcjp983', 'en', 1, 'https://ror.org/01fcjp983 Environmental Investment Centre Keskkonnainvesteeringute Keskus'), (56239, 'https://ror.org/01fe75p74', 'en', 1, 'https://ror.org/01fe75p74 Chinese Culinary Institute'), (56240, 'https://ror.org/01ffpma77', 'en', 1, 'https://ror.org/01ffpma77 Stop! Children''s Cancer of Palm Beach County'), (56241, 'https://ror.org/01fgq2q09', 'cs', 1, 'https://ror.org/01fgq2q09 Městské lesy Doksy'), (56242, 'https://ror.org/01fgqjd55', 'no_lang_code', 1, 'https://ror.org/01fgqjd55 Masoma (Czechia)'), (56243, 'https://ror.org/01fgwy751', 'en', 1, 'https://ror.org/01fgwy751 Arbeitsgemeinschaft der Wissenschaftlichen Medizinischen Fachgesellschaften e.V. Association of the Scientific Medical Societies'), (56244, 'https://ror.org/01fh9nm31', 'en', 1, 'https://ror.org/01fh9nm31 Center for Ecological Noosphere Studies'), (56245, 'https://ror.org/01fhw0y06', 'no_lang_code', 1, 'https://ror.org/01fhw0y06 Abbott (India)'), (56246, 'https://ror.org/01fjwg942', 'no_lang_code', 1, 'https://ror.org/01fjwg942 Ponast (Czechia)'), (56247, 'https://ror.org/01fpb1t36', 'no_lang_code', 1, 'https://ror.org/01fpb1t36 Blue Ray (Czechia)'), (56248, 'https://ror.org/01ftnmh36', 'no_lang_code', 1, 'https://ror.org/01ftnmh36 Gretsch-Unitas (Germany)'), (56249, 'https://ror.org/01fve6x10', 'cs', 1, 'https://ror.org/01fve6x10 Centrum Pasivního Domu'), (56250, 'https://ror.org/01fw5px83', 'no_lang_code', 1, 'https://ror.org/01fw5px83 Sklostroj Turnov (Czechia)'), (56251, 'https://ror.org/01fwgs137', 'en', 1, 'https://ror.org/01fwgs137 Schweizerischer Ingenieur- und Architektenverein Swiss Society of Engineers and Architects'), (56252, 'https://ror.org/01fxqdx25', 'en', 1, 'https://ror.org/01fxqdx25 IBM Research - Brazil'), (56253, 'https://ror.org/01fy1r152', 'no_lang_code', 1, 'https://ror.org/01fy1r152 Société d''Étude de l''Environnement (Switzerland)'), (56254, 'https://ror.org/01g087661', 'no_lang_code', 1, 'https://ror.org/01g087661 AR2i'), (56255, 'https://ror.org/01g0h4946', 'en', 1, 'https://ror.org/01g0h4946 Society for Renaissance Studies'), (56256, 'https://ror.org/01g0hty05', 'no_lang_code', 1, 'https://ror.org/01g0hty05 Interface Politikstudien (Switzerland) Interface Politikstudien Forschung Beratung'), (56257, 'https://ror.org/01g0s0p65', 'no_lang_code', 1, 'https://ror.org/01g0s0p65 Colosseum (Czechia)'), (56258, 'https://ror.org/01g152h78', 'no_lang_code', 1, 'https://ror.org/01g152h78 TNS Servis (Czechia)'), (56259, 'https://ror.org/01g1mjb10', 'fr', 1, 'https://ror.org/01g1mjb10 Cabinet Gastroenterology La Source-Beaulieu'), (56260, 'https://ror.org/01g1xae87', 'no_lang_code', 1, 'https://ror.org/01g1xae87 KBR (United States)'), (56261, 'https://ror.org/01g3ety71', 'no_lang_code', 1, 'https://ror.org/01g3ety71 SocioFactor (Czechia)'), (56262, 'https://ror.org/01g77mv66', 'en', 1, 'https://ror.org/01g77mv66 New York/New Jersey VA Health Care Network'), (56263, 'https://ror.org/01g7nky19', 'no_lang_code', 1, 'https://ror.org/01g7nky19 E Ink (Taiwan)'), (56264, 'https://ror.org/01g7pk335', 'en', 1, 'https://ror.org/01g7pk335 Martinez VA Medical Center'), (56265, 'https://ror.org/01g7zqg94', 'cs', 1, 'https://ror.org/01g7zqg94 Olešnice Dairy'), (56266, 'https://ror.org/01g84kr32', 'no_lang_code', 1, 'https://ror.org/01g84kr32 Payot (France)'), (56267, 'https://ror.org/01gdbxe81', 'en', 1, 'https://ror.org/01gdbxe81 Czech Medical Chamber Česká lékařská komora'), (56268, 'https://ror.org/01gg29e32', 'no_lang_code', 1, 'https://ror.org/01gg29e32 System Science Applications (United States)'), (56269, 'https://ror.org/01gh34y65', 'fr', 1, 'https://ror.org/01gh34y65 Institut et Musée Voltaire'), (56270, 'https://ror.org/01ghhpv55', 'no_lang_code', 1, 'https://ror.org/01ghhpv55 Motran Research (Czechia)'), (56271, 'https://ror.org/01gk88w52', 'en', 1, 'https://ror.org/01gk88w52 Podiatry Foundation of Pittsburgh'), (56272, 'https://ror.org/01gq9c873', 'no_lang_code', 1, 'https://ror.org/01gq9c873 Medicel (Switzerland)'), (56273, 'https://ror.org/01grrhm91', 'fr', 1, 'https://ror.org/01grrhm91 Renatech'), (56274, 'https://ror.org/01gshs668', 'cs', 1, 'https://ror.org/01gshs668 Český Svaz Ochránců Přírody Vlašim'), (56275, 'https://ror.org/01gswc231', 'no_lang_code', 1, 'https://ror.org/01gswc231 Synthon (Netherlands)'), (56276, 'https://ror.org/01gv18538', 'en', 1, 'https://ror.org/01gv18538 Institute of Formulation, Analysis and Quality Control Research'), (56277, 'https://ror.org/01gvgct71', 'no_lang_code', 1, 'https://ror.org/01gvgct71 RSC Spol (Czechia)'), (56278, 'https://ror.org/01gwjjy86', 'no_lang_code', 1, 'https://ror.org/01gwjjy86 PRO-BIO (Czechia)'), (56279, 'https://ror.org/01gzrtw66', 'no_lang_code', 1, 'https://ror.org/01gzrtw66 FEV (France)'), (56280, 'https://ror.org/01h0swx54', 'en', 1, 'https://ror.org/01h0swx54 Municipality De Malargue'), (56281, 'https://ror.org/01h2p6e89', 'no_lang_code', 1, 'https://ror.org/01h2p6e89 Scriptorium'), (56282, 'https://ror.org/01h4ywk72', 'en', 1, 'https://ror.org/01h4ywk72 World Health Organization Regional Office for the Eastern Mediterranean'), (56283, 'https://ror.org/01h50je44', 'en', 1, 'https://ror.org/01h50je44 Promotional Products Education Foundation'), (56284, 'https://ror.org/01h5sw314', 'fr', 1, 'https://ror.org/01h5sw314 Préparation aux Examens Préalables'), (56285, 'https://ror.org/01h6jr916', 'no_lang_code', 1, 'https://ror.org/01h6jr916 Visolis (United States)'), (56286, 'https://ror.org/01h724050', 'no_lang_code', 1, 'https://ror.org/01h724050 CI2'), (56287, 'https://ror.org/01hc0cn07', 'en', 1, 'https://ror.org/01hc0cn07 Stiftelsen Sveriges Sjömanshus Swedish Mercantile Marine Foundation'), (56288, 'https://ror.org/01hc8k527', 'no_lang_code', 1, 'https://ror.org/01hc8k527 Yazaki (United States)'), (56289, 'https://ror.org/01hckwt34', 'en', 1, 'https://ror.org/01hckwt34 St. Joe Community Foundation'), (56290, 'https://ror.org/01hffx244', 'no_lang_code', 1, 'https://ror.org/01hffx244 Sitra Suomen itsenäisyyden juhlarahasto'), (56291, 'https://ror.org/01hfpy566', 'en', 1, 'https://ror.org/01hfpy566 Institute of Astronomy and Astrophysics, Academia Sinica'), (56292, 'https://ror.org/01hgwbr42', 'sv', 1, 'https://ror.org/01hgwbr42 Linnéa och Josef Carlssons Stiftelse'), (56293, 'https://ror.org/01hkkxq34', 'no_lang_code', 1, 'https://ror.org/01hkkxq34 Sindlar (Czechia)'), (56294, 'https://ror.org/01hnq0310', 'nl', 1, 'https://ror.org/01hnq0310 Promens Care'), (56295, 'https://ror.org/01hqeag92', 'de', 1, 'https://ror.org/01hqeag92 Archäologischer Dienst des Kantons Bern'), (56296, 'https://ror.org/01hqrb170', 'no_lang_code', 1, 'https://ror.org/01hqrb170 Synlab Czech (Czechia)'), (56297, 'https://ror.org/01hrdvm22', 'cs', 1, 'https://ror.org/01hrdvm22 Leoš Janáček Foundation, Nadace Leoše Janáčka'), (56298, 'https://ror.org/01ht9nq84', 'no_lang_code', 1, 'https://ror.org/01ht9nq84 Dsd - Dostál (Czechia)'), (56299, 'https://ror.org/01hzc1x24', 'no_lang_code', 1, 'https://ror.org/01hzc1x24 Huddy Diamonds (Czechia)'), (56300, 'https://ror.org/01hzsk060', 'no_lang_code', 1, 'https://ror.org/01hzsk060 Gojo (France)'), (56301, 'https://ror.org/01j01re85', 'no_lang_code', 1, 'https://ror.org/01j01re85 Prince Medical (France)'), (56302, 'https://ror.org/01j65xt21', 'en', 1, 'https://ror.org/01j65xt21 Rain Forest Research Institute'), (56303, 'https://ror.org/01j8jme87', 'no_lang_code', 1, 'https://ror.org/01j8jme87 ASPK'), (56304, 'https://ror.org/01j9kqj67', 'en', 1, 'https://ror.org/01j9kqj67 Conaris'), (56305, 'https://ror.org/01jak0h04', 'no_lang_code', 1, 'https://ror.org/01jak0h04 Orlik (Czechia)'), (56306, 'https://ror.org/01jaw9d22', 'no_lang_code', 1, 'https://ror.org/01jaw9d22 Bellus Health (Switzerland)'), (56307, 'https://ror.org/01jczg854', 'no_lang_code', 1, 'https://ror.org/01jczg854 Skat Consulting (Switzerland)'), (56308, 'https://ror.org/01jd40n62', 'en', 1, 'https://ror.org/01jd40n62 Centre de Procréation Médicalement Assistée Centre for Medically Assisted Procreation'), (56309, 'https://ror.org/01jfc8691', 'en', 1, 'https://ror.org/01jfc8691 The Wild Ramp'), (56310, 'https://ror.org/01jhs2k85', 'no_lang_code', 1, 'https://ror.org/01jhs2k85 TVD Technická Výroba (Czechia)'), (56311, 'https://ror.org/01jjabs38', 'en', 1, 'https://ror.org/01jjabs38 Scurlock Foundation'), (56312, 'https://ror.org/01jk97k74', 'no_lang_code', 1, 'https://ror.org/01jk97k74 BASF (China)'), (56313, 'https://ror.org/01jkyjd96', 'en', 1, 'https://ror.org/01jkyjd96 Hebei Provincial Department of Education 河北省教育厅'), (56314, 'https://ror.org/01jm2xz84', 'en', 1, 'https://ror.org/01jm2xz84 Richard M. Schulze Family Foundation'), (56315, 'https://ror.org/01jq52c81', 'no_lang_code', 1, 'https://ror.org/01jq52c81 ECO Environmental Investments (China)'), (56316, 'https://ror.org/01jr63883', 'de', 1, 'https://ror.org/01jr63883 INURA Zürich Institut'), (56317, 'https://ror.org/01jvhre18', 'en', 1, 'https://ror.org/01jvhre18 IndraStra Global'), (56318, 'https://ror.org/01jxgkt53', 'no_lang_code', 1, 'https://ror.org/01jxgkt53 Slavona (Czechia)'), (56319, 'https://ror.org/01jxxh642', 'en', 1, 'https://ror.org/01jxxh642 William T Morris Foundation'), (56320, 'https://ror.org/01jzn1575', 'no_lang_code', 1, 'https://ror.org/01jzn1575 Inekon Group (Czechia)'), (56321, 'https://ror.org/01k07rn44', 'no_lang_code', 1, 'https://ror.org/01k07rn44 Plasmametal (Czechia)'), (56322, 'https://ror.org/01k2zv986', 'en', 1, 'https://ror.org/01k2zv986 Triangle Community Foundation'), (56323, 'https://ror.org/01k8j4p29', 'en', 1, 'https://ror.org/01k8j4p29 Ministry of Economy, Development and Tourism Υπουργείο Οικονομίας, Ανάπτυξης και Τουρισμού'), (56324, 'https://ror.org/01k8mq954', 'en', 1, 'https://ror.org/01k8mq954 Universal Health Care Foundation of Connecticut'), (56325, 'https://ror.org/01ka4j351', 'en', 1, 'https://ror.org/01ka4j351 Northwest Regional Development Agency'), (56326, 'https://ror.org/01kcjb027', 'no_lang_code', 1, 'https://ror.org/01kcjb027 Avid (United States)'), (56327, 'https://ror.org/01kd56x58', 'de', 1, 'https://ror.org/01kd56x58 Kantonsarchäologie des Kantons Zürich'), (56328, 'https://ror.org/01kj93b22', 'no_lang_code', 1, 'https://ror.org/01kj93b22 Jeku (Czechia)'), (56329, 'https://ror.org/01kk11s67', 'no_lang_code', 1, 'https://ror.org/01kk11s67 Fosun Pharma (China)'), (56330, 'https://ror.org/01kk1vy78', 'de', 1, 'https://ror.org/01kk1vy78 Arbeitsstelle Schweiz des RISM, RISM Digital Center Bureau suisse du RISM Ufficio svizzero RISM'), (56331, 'https://ror.org/01km6z968', 'en', 1, 'https://ror.org/01km6z968 Arcadia'), (56332, 'https://ror.org/01km9ds98', 'no_lang_code', 1, 'https://ror.org/01km9ds98 Codep (Czechia)'), (56333, 'https://ror.org/01kmxmj87', 'no_lang_code', 1, 'https://ror.org/01kmxmj87 Brantner Walter (Czechia)'), (56334, 'https://ror.org/01kq7c949', 'no_lang_code', 1, 'https://ror.org/01kq7c949 Wine cellars Kutná Hora (Czechia)'), (56335, 'https://ror.org/01kqpfp08', 'no_lang_code', 1, 'https://ror.org/01kqpfp08 Biomedica (Czechia)'), (56336, 'https://ror.org/01krcaf49', 'no_lang_code', 1, 'https://ror.org/01krcaf49 Kerima (Czechia)'), (56337, 'https://ror.org/01ksntm04', 'no_lang_code', 1, 'https://ror.org/01ksntm04 Oblikue Consulting (Spain)'), (56338, 'https://ror.org/01kspqs18', 'no_lang_code', 1, 'https://ror.org/01kspqs18 Medicold (France)'), (56339, 'https://ror.org/01ksw8755', 'en', 1, 'https://ror.org/01ksw8755 Potts Family Foundation'), (56340, 'https://ror.org/01ktyn983', 'cs', 1, 'https://ror.org/01ktyn983 Muzeum jihovýchodní Moravy ve Zlíně'), (56341, 'https://ror.org/01kxgx123', 'en', 1, 'https://ror.org/01kxgx123 Walsall Academy'), (56342, 'https://ror.org/01kyt4w97', 'no_lang_code', 1, 'https://ror.org/01kyt4w97 NBE Therapeutics (Switzerland)'), (56343, 'https://ror.org/01kz8dk96', 'en', 1, 'https://ror.org/01kz8dk96 Logansport State Hospital'), (56344, 'https://ror.org/01kzkqx40', 'no_lang_code', 1, 'https://ror.org/01kzkqx40 Agrostis Trávníky (Czechia)'), (56345, 'https://ror.org/01m08fh61', 'no_lang_code', 1, 'https://ror.org/01m08fh61 Help Forest (Czechia)'), (56346, 'https://ror.org/01m294726', 'en', 1, 'https://ror.org/01m294726 World Health Organization - Zimbabwe'), (56347, 'https://ror.org/01m41wz24', 'en', 1, 'https://ror.org/01m41wz24 Yamaguchi Endocrine Research Foundation'), (56348, 'https://ror.org/01m4nmn07', 'no_lang_code', 1, 'https://ror.org/01m4nmn07 Emg Zlín (Czechia)'), (56349, 'https://ror.org/01m61nc85', 'en', 1, 'https://ror.org/01m61nc85 Exploration Place'), (56350, 'https://ror.org/01m6j6z72', 'en', 1, 'https://ror.org/01m6j6z72 Russian Humanitarian Foundation Российский Гуманитарный Научный Фонд'), (56351, 'https://ror.org/01m7dbh13', 'en', 1, 'https://ror.org/01m7dbh13 Coğrafiya İnstitutu Institute of Geography'), (56352, 'https://ror.org/01m84dy33', 'en', 1, 'https://ror.org/01m84dy33 WonKwang Health Science University'), (56353, 'https://ror.org/01makav45', 'no_lang_code', 1, 'https://ror.org/01makav45 AutoCont (Czechia)'), (56354, 'https://ror.org/01mfhw447', 'en', 1, 'https://ror.org/01mfhw447 1Globe Health Institute'), (56355, 'https://ror.org/01mfjs476', 'da', 1, 'https://ror.org/01mfjs476 Trigon Fonden'), (56356, 'https://ror.org/01mjy0s49', 'de', 1, 'https://ror.org/01mjy0s49 Friedrich-Wilhelm-Bessel-Institut Forschungsgesellschaft'), (56357, 'https://ror.org/01mk9jb73', 'fr', 1, 'https://ror.org/01mk9jb73 Hospital Neuchâtel'), (56358, 'https://ror.org/01mmqh025', 'no_lang_code', 1, 'https://ror.org/01mmqh025 ADR-AC (Switzerland)'), (56359, 'https://ror.org/01mpb1315', 'no_lang_code', 1, 'https://ror.org/01mpb1315 Artisys (Czechia)'), (56360, 'https://ror.org/01ms54191', 'en', 1, 'https://ror.org/01ms54191 Schweizerische Akademie der Pharmazeutische Wissenschaften Swiss Academy of Pharmaceutical Sciences'), (56361, 'https://ror.org/01mtb8v69', 'en', 1, 'https://ror.org/01mtb8v69 Prayers from Maria'), (56362, 'https://ror.org/01mv6b823', 'no_lang_code', 1, 'https://ror.org/01mv6b823 Holík International (Czechia)'), (56363, 'https://ror.org/01mvxm016', 'no_lang_code', 1, 'https://ror.org/01mvxm016 Hottinger Baldwin Messtechnik (Germany)'), (56364, 'https://ror.org/01mw5kc41', 'no_lang_code', 1, 'https://ror.org/01mw5kc41 Hanka Mochov (Czechia)'), (56365, 'https://ror.org/01mwf3284', 'no_lang_code', 1, 'https://ror.org/01mwf3284 FaF Top-Color (Czechia)'), (56366, 'https://ror.org/01my2h087', 'en', 1, 'https://ror.org/01my2h087 Scaife Foundations'), (56367, 'https://ror.org/01mz2aa07', 'no_lang_code', 1, 'https://ror.org/01mz2aa07 Kabelovna Kabex (Czechia)'), (56368, 'https://ror.org/01mz6aw81', 'no_lang_code', 1, 'https://ror.org/01mz6aw81 E Ink (South Korea)'), (56369, 'https://ror.org/01mzdh008', 'no_lang_code', 1, 'https://ror.org/01mzdh008 Equiservices Publishing (United States)'), (56370, 'https://ror.org/01n0pr454', 'no_lang_code', 1, 'https://ror.org/01n0pr454 Scimetrica (Switzerland)'), (56371, 'https://ror.org/01n1pt995', 'sv', 1, 'https://ror.org/01n1pt995 Stiftelsen Kronprinsessan Margaretas Arbetsnämnd för Synskadade'), (56372, 'https://ror.org/01n6t9x28', 'no_lang_code', 1, 'https://ror.org/01n6t9x28 UCB Pharma (France)'), (56373, 'https://ror.org/01n85sk92', 'no_lang_code', 1, 'https://ror.org/01n85sk92 Stavoprojekta (Czechia)'), (56374, 'https://ror.org/01nbasn20', 'en', 1, 'https://ror.org/01nbasn20 Presbyterian Health Foundation'), (56375, 'https://ror.org/01nd4pb60', 'en', 1, 'https://ror.org/01nd4pb60 Kanagawa Environmental Research Center 神奈川県環境科学センター'), (56376, 'https://ror.org/01ndypd13', 'no_lang_code', 1, 'https://ror.org/01ndypd13 NanoTrade (Czechia)'), (56377, 'https://ror.org/01ne55s87', 'no_lang_code', 1, 'https://ror.org/01ne55s87 Sklářský Ústav Hradec Králové (Czechia)'), (56378, 'https://ror.org/01nf9fw76', 'no_lang_code', 1, 'https://ror.org/01nf9fw76 AFRY (Czechia)'), (56379, 'https://ror.org/01njzmh10', 'no_lang_code', 1, 'https://ror.org/01njzmh10 AG Info (Czechia)'), (56380, 'https://ror.org/01nk16n48', 'en', 1, 'https://ror.org/01nk16n48 Azm & Saade Association'), (56381, 'https://ror.org/01nkde212', 'no_lang_code', 1, 'https://ror.org/01nkde212 Pardam (Czechia)'), (56382, 'https://ror.org/01nmsj266', 'en', 1, 'https://ror.org/01nmsj266 Pacific Alzheimer Research Foundation'), (56383, 'https://ror.org/01nn1pw54', 'no_lang_code', 1, 'https://ror.org/01nn1pw54 Addgene'), (56384, 'https://ror.org/01nn8a447', 'en', 1, 'https://ror.org/01nn8a447 New Jersey State Office of the Governor'), (56385, 'https://ror.org/01nqp5d86', 'no_lang_code', 1, 'https://ror.org/01nqp5d86 RD Rýmařov (Czechia)'), (56386, 'https://ror.org/01nr0r658', 'de', 1, 'https://ror.org/01nr0r658 Vorarlberg Museum'), (56387, 'https://ror.org/01ns2nc58', 'no_lang_code', 1, 'https://ror.org/01ns2nc58 BENZ-HMB CZECH (Czechia)'), (56388, 'https://ror.org/01ntbg722', 'en', 1, 'https://ror.org/01ntbg722 Pittsburgh Child Guidance Foundation'), (56389, 'https://ror.org/01nw9t679', 'en', 1, 'https://ror.org/01nw9t679 Horn Canna Farm'), (56390, 'https://ror.org/01nxvt824', 'de', 1, 'https://ror.org/01nxvt824 Museum zu Allerheiligen'), (56391, 'https://ror.org/01nyg7313', 'en', 1, 'https://ror.org/01nyg7313 Institute of Medicinal Molecular Design 医薬分子設計研究所'), (56392, 'https://ror.org/01nzca339', 'en', 1, 'https://ror.org/01nzca339 Fondation Pierre du Bois Pierre du Bois Foundation'), (56393, 'https://ror.org/01p1h7798', 'no_lang_code', 1, 'https://ror.org/01p1h7798 Harry Saul Minnow Farm (United States)'), (56394, 'https://ror.org/01p1t0k52', 'no_lang_code', 1, 'https://ror.org/01p1t0k52 Novo Nordisk (Switzerland)'), (56395, 'https://ror.org/01p5m7j86', 'no_lang_code', 1, 'https://ror.org/01p5m7j86 Quadient (United Kingdom)'), (56396, 'https://ror.org/01p67ns08', 'no_lang_code', 1, 'https://ror.org/01p67ns08 Výrobně Obchodní Družstvo Zdislavice (Czechia)'), (56397, 'https://ror.org/01p9w4124', 'no_lang_code', 1, 'https://ror.org/01p9w4124 Milacron (United States)'), (56398, 'https://ror.org/01pbm8h26', 'no_lang_code', 1, 'https://ror.org/01pbm8h26 ClearSign Combustion (United States)'), (56399, 'https://ror.org/01pe2nj10', 'no_lang_code', 1, 'https://ror.org/01pe2nj10 Dai-ichi Life Insurance (United States)'), (56400, 'https://ror.org/01pe6xq34', 'en', 1, 'https://ror.org/01pe6xq34 Joseph Drown Foundation'), (56401, 'https://ror.org/01pfc0902', 'no_lang_code', 1, 'https://ror.org/01pfc0902 Nyklíček (Czechia)'), (56402, 'https://ror.org/01pg81m90', 'en', 1, 'https://ror.org/01pg81m90 Robert and Janice McNair Foundation'), (56403, 'https://ror.org/01pg8d938', 'no_lang_code', 1, 'https://ror.org/01pg8d938 X Therma'), (56404, 'https://ror.org/01ph4hz96', 'fr', 1, 'https://ror.org/01ph4hz96 Institut Technique de l''Aviculture'), (56405, 'https://ror.org/01pjqre40', 'no_lang_code', 1, 'https://ror.org/01pjqre40 Illuminate Group (Australia)'), (56406, 'https://ror.org/01pm3bs44', 'no_lang_code', 1, 'https://ror.org/01pm3bs44 Mechanical Design (Czechia)'), (56407, 'https://ror.org/01ppth096', 'en', 1, 'https://ror.org/01ppth096 Opportunity Link'), (56408, 'https://ror.org/01psvhy06', 'no_lang_code', 1, 'https://ror.org/01psvhy06 AG COM (Czechia)'), (56409, 'https://ror.org/01pvt8a36', 'en', 1, 'https://ror.org/01pvt8a36 Experimental Station'), (56410, 'https://ror.org/01pz9tv63', 'en', 1, 'https://ror.org/01pz9tv63 A*STAR Joint Council Office'), (56411, 'https://ror.org/01q1tcv22', 'en', 1, 'https://ror.org/01q1tcv22 Centre for Higher Education Centrum für Hochschulentwicklung'), (56412, 'https://ror.org/01q216d88', 'no_lang_code', 1, 'https://ror.org/01q216d88 Phonexia (Czechia)'), (56413, 'https://ror.org/01q4wy056', 'en', 1, 'https://ror.org/01q4wy056 Sasakawa Memorial Health Foundation 笹川記念保健協力財団'), (56414, 'https://ror.org/01q61bm94', 'en', 1, 'https://ror.org/01q61bm94 Korea Institute of Maritime and Fisheries Technology'), (56415, 'https://ror.org/01q9t2q68', 'cs', 1, 'https://ror.org/01q9t2q68 Česká Unie Sportu'), (56416, 'https://ror.org/01qa0ew63', 'no_lang_code', 1, 'https://ror.org/01qa0ew63 AbbVie (Netherlands)'), (56417, 'https://ror.org/01qasqf38', 'no_lang_code', 1, 'https://ror.org/01qasqf38 Nypro (Ireland)'), (56418, 'https://ror.org/01qdk2c93', 'no_lang_code', 1, 'https://ror.org/01qdk2c93 G Mar Plus (Czechia)'), (56419, 'https://ror.org/01qe64w73', 'fi', 1, 'https://ror.org/01qe64w73 Finnish Brain Foundation Suomen Aivosäätiö'), (56420, 'https://ror.org/01qf8tz10', 'de', 1, 'https://ror.org/01qf8tz10 Kollegium Spiritus Sanctus Brig'), (56421, 'https://ror.org/01qfgqn02', 'no_lang_code', 1, 'https://ror.org/01qfgqn02 Gascontrol Plast (Czechia)'), (56422, 'https://ror.org/01qfzbz52', 'en', 1, 'https://ror.org/01qfzbz52 College of the Muscogee Nation'), (56423, 'https://ror.org/01qh4pm19', 'en', 1, 'https://ror.org/01qh4pm19 Korea Meteorological Institute'), (56424, 'https://ror.org/01qk03z44', 'no_lang_code', 1, 'https://ror.org/01qk03z44 Lescus Cetkovice (Czechia)'), (56425, 'https://ror.org/01qp9b498', 'en', 1, 'https://ror.org/01qp9b498 Dominion Astrophysical Observatory'), (56426, 'https://ror.org/01qr42c13', 'no_lang_code', 1, 'https://ror.org/01qr42c13 CAD Instruments (France)'), (56427, 'https://ror.org/01qtj8126', 'la', 1, 'https://ror.org/01qtj8126 Foederatio Medicorum Helveticorum'), (56428, 'https://ror.org/01qv89346', 'cs', 1, 'https://ror.org/01qv89346 Společná Vize'), (56429, 'https://ror.org/01qwdc951', 'no_lang_code', 1, 'https://ror.org/01qwdc951 Bayer (Switzerland)'), (56430, 'https://ror.org/01qzj8a75', 'en', 1, 'https://ror.org/01qzj8a75 GlyTech 糖鎖工学研究所に'), (56431, 'https://ror.org/01r0w2t07', 'de', 1, 'https://ror.org/01r0w2t07 Mandat International'), (56432, 'https://ror.org/01r2g4c66', 'en', 1, 'https://ror.org/01r2g4c66 Finnish Foundation of Veterinary Research Suomen eläinlääketieteen säätiö'), (56433, 'https://ror.org/01r2m8t59', 'en', 1, 'https://ror.org/01r2m8t59 State Veterinary Administration'), (56434, 'https://ror.org/01r42z565', 'en', 1, 'https://ror.org/01r42z565 Computational Materials Science Initiative'), (56435, 'https://ror.org/01r4hwz76', 'en', 1, 'https://ror.org/01r4hwz76 Földtani és Geokémiai Intézet Institute for Geological and Geochemical Research'), (56436, 'https://ror.org/01r8xv865', 'sv', 1, 'https://ror.org/01r8xv865 Stiftelsen Professor Lars Erik Gelins Minnesfond'), (56437, 'https://ror.org/01rdc9p22', 'en', 1, 'https://ror.org/01rdc9p22 Shepherd Foundation'), (56438, 'https://ror.org/01rejfk89', 'en', 1, 'https://ror.org/01rejfk89 Institute for Biotechnology and Medicine Industry'), (56439, 'https://ror.org/01reter38', 'no_lang_code', 1, 'https://ror.org/01reter38 VKV Praha (Czechia)'), (56440, 'https://ror.org/01rgj1337', 'no_lang_code', 1, 'https://ror.org/01rgj1337 BIC (United States)'), (56441, 'https://ror.org/01rhy1775', 'no_lang_code', 1, 'https://ror.org/01rhy1775 Aveni (France)'), (56442, 'https://ror.org/01rjj8a34', 'en', 1, 'https://ror.org/01rjj8a34 Bruce W. Carter VA Medical Center'), (56443, 'https://ror.org/01rjqn722', 'en', 1, 'https://ror.org/01rjqn722 Ivey Foundation'), (56444, 'https://ror.org/01rjx0g69', 'cs', 1, 'https://ror.org/01rjx0g69 Zemědělské Družstvo Jeseník'), (56445, 'https://ror.org/01rkjqk76', 'en', 1, 'https://ror.org/01rkjqk76 Local Food Hub'), (56446, 'https://ror.org/01rkrma98', 'en', 1, 'https://ror.org/01rkrma98 Virtu Public Affairs'), (56447, 'https://ror.org/01rmhx355', 'en', 1, 'https://ror.org/01rmhx355 Muscular Dystrophy Ireland'), (56448, 'https://ror.org/01rmsm893', 'no_lang_code', 1, 'https://ror.org/01rmsm893 MJ Group (India)'), (56449, 'https://ror.org/01rpma152', 'no_lang_code', 1, 'https://ror.org/01rpma152 Colorlak (Czechia)'), (56450, 'https://ror.org/01rq3me18', 'no_lang_code', 1, 'https://ror.org/01rq3me18 Polycase (Czechia)'), (56451, 'https://ror.org/01rqhg698', 'no_lang_code', 1, 'https://ror.org/01rqhg698 Europastry (Spain)'), (56452, 'https://ror.org/01rrsd035', 'en', 1, 'https://ror.org/01rrsd035 Springboard Foundation'), (56453, 'https://ror.org/01rrva872', 'en', 1, 'https://ror.org/01rrva872 Central Institute for Supervising and Testing in Agriculture Ústřední kontrolní a zkušební ústav zemědělský'), (56454, 'https://ror.org/01rsgv203', 'en', 1, 'https://ror.org/01rsgv203 Scan Design Foundation'), (56455, 'https://ror.org/01rvrhf27', 'no_lang_code', 1, 'https://ror.org/01rvrhf27 Photonic Research Systems (United Kingdom)'), (56456, 'https://ror.org/01rwf0y22', 'no_lang_code', 1, 'https://ror.org/01rwf0y22 Krill (Czechia)'), (56457, 'https://ror.org/01ry0hm85', 'no_lang_code', 1, 'https://ror.org/01ry0hm85 RealNetworks (United States)'), (56458, 'https://ror.org/01ry8n211', 'no_lang_code', 1, 'https://ror.org/01ry8n211 CNH Industrial (Czechia)'), (56459, 'https://ror.org/01rybzk66', 'en', 1, 'https://ror.org/01rybzk66 VA Capitol Health Care Network'), (56460, 'https://ror.org/01ryjjz47', 'en', 1, 'https://ror.org/01ryjjz47 Siberian Institute of Plant Physiology and Biochemistry Сибирский институт физиологии и биохимии растений СО РАН'), (56461, 'https://ror.org/01s019j29', 'en', 1, 'https://ror.org/01s019j29 Prime Minister''s Office Finland Statsrådets Kansli Valtioneuvoston Kanslia'), (56462, 'https://ror.org/01s0yrf11', 'en', 1, 'https://ror.org/01s0yrf11 Cheorwon Plasma Research Institute'), (56463, 'https://ror.org/01s1asf08', 'no_lang_code', 1, 'https://ror.org/01s1asf08 Agrokomplex Ohře (Czechia)'), (56464, 'https://ror.org/01s1v1s13', 'no_lang_code', 1, 'https://ror.org/01s1v1s13 Kuraray (Germany)'), (56465, 'https://ror.org/01s307r42', 'no_lang_code', 1, 'https://ror.org/01s307r42 Drolshammer Strategy and Law (Switzerland)'), (56466, 'https://ror.org/01s4ptg67', 'no_lang_code', 1, 'https://ror.org/01s4ptg67 Clasic (Czechia)'), (56467, 'https://ror.org/01s5pxv91', 'no_lang_code', 1, 'https://ror.org/01s5pxv91 Ekohydrogeo Žitný (Czechia)'), (56468, 'https://ror.org/01s776747', 'de', 1, 'https://ror.org/01s776747 KVB Institut für Konstruktion und Verbundbauweisen'), (56469, 'https://ror.org/01s8mna38', 'de', 1, 'https://ror.org/01s8mna38 Technische Fachschule Bern'), (56470, 'https://ror.org/01s8sge84', 'no_lang_code', 1, 'https://ror.org/01s8sge84 Institut Esthederm (France)'), (56471, 'https://ror.org/01sc29z88', 'no_lang_code', 1, 'https://ror.org/01sc29z88 SLB Médical (France)'), (56472, 'https://ror.org/01sct5s94', 'en', 1, 'https://ror.org/01sct5s94 Basel Institute on Governance'), (56473, 'https://ror.org/01sddvn57', 'no_lang_code', 1, 'https://ror.org/01sddvn57 Elektro-System-Technik (Slovakia)'), (56474, 'https://ror.org/01sfj0e28', 'en', 1, 'https://ror.org/01sfj0e28 Live Well Colorado'), (56475, 'https://ror.org/01sh91764', 'en', 1, 'https://ror.org/01sh91764 R Baby Foundation'), (56476, 'https://ror.org/01sj1p486', 'en', 1, 'https://ror.org/01sj1p486 Kerala Institute for Research, Training and Development Studies of Scheduled Castes and Tribes'), (56477, 'https://ror.org/01sja4271', 'no_lang_code', 1, 'https://ror.org/01sja4271 Vischer (Switzerland)'), (56478, 'https://ror.org/01sjfkd19', 'no_lang_code', 1, 'https://ror.org/01sjfkd19 EG Expert (Czechia)'), (56479, 'https://ror.org/01sjh9112', 'en', 1, 'https://ror.org/01sjh9112 Erdészeti Tudományos Intézet Forest Research Institute'), (56480, 'https://ror.org/01sjvcd08', 'sv', 1, 'https://ror.org/01sjvcd08 Stiftelsen Solstickan'), (56481, 'https://ror.org/01sqj1z22', 'no_lang_code', 1, 'https://ror.org/01sqj1z22 Pi (United Kingdom)'), (56482, 'https://ror.org/01sqscf14', 'en', 1, 'https://ror.org/01sqscf14 William Caspar Graustein Memorial Fund'), (56483, 'https://ror.org/01sqsqt89', 'no_lang_code', 1, 'https://ror.org/01sqsqt89 Cottage Systems (United States)'), (56484, 'https://ror.org/01ss91v48', 'no_lang_code', 1, 'https://ror.org/01ss91v48 Com-Sys Trade (Czechia)'), (56485, 'https://ror.org/01ssrp339', 'en', 1, 'https://ror.org/01ssrp339 VeDeCoM Institute'), (56486, 'https://ror.org/01stqh938', 'no_lang_code', 1, 'https://ror.org/01stqh938 Eko-Kom (Czechia)'), (56487, 'https://ror.org/01sy9dm60', 'no_lang_code', 1, 'https://ror.org/01sy9dm60 Embody (France)'), (56488, 'https://ror.org/01t0sgr89', 'no_lang_code', 1, 'https://ror.org/01t0sgr89 Chemcosport (Czechia)'), (56489, 'https://ror.org/01t305n31', 'no_lang_code', 1, 'https://ror.org/01t305n31 Texas Instruments (India)'), (56490, 'https://ror.org/01t58v577', 'en', 1, 'https://ror.org/01t58v577 Thomas Foundation'), (56491, 'https://ror.org/01t5xrf37', 'no_lang_code', 1, 'https://ror.org/01t5xrf37 Sapphire Research & Electronics (United Kingdom)'), (56492, 'https://ror.org/01t6wgp30', 'fr', 1, 'https://ror.org/01t6wgp30 Affidea'), (56493, 'https://ror.org/01t6xt429', 'no_lang_code', 1, 'https://ror.org/01t6xt429 Porfix (Czechia)'), (56494, 'https://ror.org/01t7qjd50', 'en', 1, 'https://ror.org/01t7qjd50 L.V. Gromashevsky Institute of Epidemiology and Infectious Diseases of the National Academy of Medical Sciences of Ukraine Інститут епідеміології та інфекційних хвороб Л.В. ГромашевсьногоНАМН України'), (56495, 'https://ror.org/01t8cv576', 'no_lang_code', 1, 'https://ror.org/01t8cv576 Dr. Reddy''s Laboratories (Switzerland)'), (56496, 'https://ror.org/01t9ygb95', 'no_lang_code', 1, 'https://ror.org/01t9ygb95 NMS Market Research (Czechia)'), (56497, 'https://ror.org/01t9z0h93', 'no_lang_code', 1, 'https://ror.org/01t9z0h93 Geodézie ČS (Czechia)'), (56498, 'https://ror.org/01tc3c489', 'no_lang_code', 1, 'https://ror.org/01tc3c489 PAC (France)'), (56499, 'https://ror.org/01tcbbe23', 'no_lang_code', 1, 'https://ror.org/01tcbbe23 Organa (Czechia)'), (56500, 'https://ror.org/01tccxd76', 'no_lang_code', 1, 'https://ror.org/01tccxd76 AGCO (United Kingdom)'), (56501, 'https://ror.org/01te5dc44', 'en', 1, 'https://ror.org/01te5dc44 Belgorod State University of Arts and Culture Белгородский государственный институт искусств и культуры'), (56502, 'https://ror.org/01teb0938', 'no_lang_code', 1, 'https://ror.org/01teb0938 Iscare I.V.F Klinické Centrum ISCARE'), (56503, 'https://ror.org/01tfx4p51', 'en', 1, 'https://ror.org/01tfx4p51 Institute of Surgery named after A. V. Vishnevskogo'), (56504, 'https://ror.org/01tfxc804', 'no_lang_code', 1, 'https://ror.org/01tfxc804 Thalgo (France)'), (56505, 'https://ror.org/01tgswh16', 'en', 1, 'https://ror.org/01tgswh16 Poultry CRC'), (56506, 'https://ror.org/01thz9g52', 'en', 1, 'https://ror.org/01thz9g52 Sosland Foundation'), (56507, 'https://ror.org/01tk0cw08', 'en', 1, 'https://ror.org/01tk0cw08 Central Research Institute for Jute and Allied Fibres'), (56508, 'https://ror.org/01tm2qj70', 'en', 1, 'https://ror.org/01tm2qj70 St. Petersburg Institute of Bioregulation and Gerontology КЛИНИКА ИНСТИТУТА БИОРЕГУЛЯЦИИ И ГЕРОНТОЛОГИИ'), (56509, 'https://ror.org/01tm9ja22', 'sv', 1, 'https://ror.org/01tm9ja22 Neuroförbundet'), (56510, 'https://ror.org/01tmqyy34', 'no_lang_code', 1, 'https://ror.org/01tmqyy34 Zakládání Staveb (Czechia)'), (56511, 'https://ror.org/01tnj0473', 'no_lang_code', 1, 'https://ror.org/01tnj0473 Caterpillar (Switzerland)'), (56512, 'https://ror.org/01tp4m681', 'no_lang_code', 1, 'https://ror.org/01tp4m681 TÜV Nord (Czechia)'), (56513, 'https://ror.org/01tphyy47', 'en', 1, 'https://ror.org/01tphyy47 Gagarin Research and Test Cosmonaut Training Center Центр подготовки космонавтов имени Ю. А. Гагарина'), (56514, 'https://ror.org/01tpvdq80', 'en', 1, 'https://ror.org/01tpvdq80 Institute of Physics, Academia Sinica 中央研究院物理研究所'), (56515, 'https://ror.org/01tra1r17', 'no_lang_code', 1, 'https://ror.org/01tra1r17 American Solar (United States)'), (56516, 'https://ror.org/01ttd1h48', 'no_lang_code', 1, 'https://ror.org/01ttd1h48 Lesoškolky (Czechia)'), (56517, 'https://ror.org/01tx9js75', 'en', 1, 'https://ror.org/01tx9js75 Groundwater Center Grundwasser-Zentrum'), (56518, 'https://ror.org/01txrxw72', 'no_lang_code', 1, 'https://ror.org/01txrxw72 Sanofi (Switzerland)'), (56519, 'https://ror.org/01tztjf78', 'no_lang_code', 1, 'https://ror.org/01tztjf78 Indet Safety Systems (Czechia)'), (56520, 'https://ror.org/01v0qv381', 'en', 1, 'https://ror.org/01v0qv381 Southeastern Brain Tumor Foundation'), (56521, 'https://ror.org/01v0srp85', 'en', 1, 'https://ror.org/01v0srp85 Tropical Forest Research Institute'), (56522, 'https://ror.org/01v2c2791', 'en', 1, 'https://ror.org/01v2c2791 Singapore Institute of Technology'), (56523, 'https://ror.org/01v4s0f07', 'en', 1, 'https://ror.org/01v4s0f07 Variable Energy Cyclotron Centre'), (56524, 'https://ror.org/01v5z9j59', 'en', 1, 'https://ror.org/01v5z9j59 Vascular Birthmarks Foundation'), (56525, 'https://ror.org/01v6a8g28', 'en', 1, 'https://ror.org/01v6a8g28 Czech Moravian Commodity Exchange Kladno Českomoravská komoditní burza Kladno'), (56526, 'https://ror.org/01v6fb724', 'it', 1, 'https://ror.org/01v6fb724 Repubblica e Cantone Ticino'), (56527, 'https://ror.org/01v77xw68', 'en', 1, 'https://ror.org/01v77xw68 Virginia-Carolinas Peanut Promotions'); INSERT INTO `rors` VALUES (56528, 'https://ror.org/01v9ehc48', 'no_lang_code', 1, 'https://ror.org/01v9ehc48 ADA Akustická Emise (Czechia)'), (56529, 'https://ror.org/01vacyq18', 'no_lang_code', 1, 'https://ror.org/01vacyq18 PZP Komplet (Czechia)'), (56530, 'https://ror.org/01vag2q21', 'de', 1, 'https://ror.org/01vag2q21 Forel Klinik'), (56531, 'https://ror.org/01vaht437', 'en', 1, 'https://ror.org/01vaht437 Korean Society of Radiology'), (56532, 'https://ror.org/01vap4769', 'no_lang_code', 1, 'https://ror.org/01vap4769 Mintaka Fondation Pour la Recherche Medicale Mintaka Foundation for Medical Research'), (56533, 'https://ror.org/01vd5v507', 'en', 1, 'https://ror.org/01vd5v507 Rob and Bessie Welder Wildlife Foundation'), (56534, 'https://ror.org/01vddpb46', 'no_lang_code', 1, 'https://ror.org/01vddpb46 Winetech (South Africa)'), (56535, 'https://ror.org/01vf7qd54', 'no_lang_code', 1, 'https://ror.org/01vf7qd54 L.K. Engineering (Czechia)'), (56536, 'https://ror.org/01vf7th45', 'no_lang_code', 1, 'https://ror.org/01vf7th45 Nortech (Czechia)'), (56537, 'https://ror.org/01vgh8b31', 'en', 1, 'https://ror.org/01vgh8b31 Alpinia Institute'), (56538, 'https://ror.org/01vgqcc30', 'en', 1, 'https://ror.org/01vgqcc30 Abbey of the Holy Trinity'), (56539, 'https://ror.org/01vgs6512', 'no_lang_code', 1, 'https://ror.org/01vgs6512 Semo (Czechia)'), (56540, 'https://ror.org/01vhsvw18', 'no_lang_code', 1, 'https://ror.org/01vhsvw18 Artinel (Czechia)'), (56541, 'https://ror.org/01vm4bk04', 'no_lang_code', 1, 'https://ror.org/01vm4bk04 SMT (India)'), (56542, 'https://ror.org/01vmb7766', 'en', 1, 'https://ror.org/01vmb7766 Laboratoire Phytoceutic'), (56543, 'https://ror.org/01vp4kx90', 'no_lang_code', 1, 'https://ror.org/01vp4kx90 Pitney Bowes (France)'), (56544, 'https://ror.org/01vqza407', 'no_lang_code', 1, 'https://ror.org/01vqza407 Phoenix Air (Czechia)'), (56545, 'https://ror.org/01vrx7006', 'no_lang_code', 1, 'https://ror.org/01vrx7006 Klatovské Rybářství (Czechia)'), (56546, 'https://ror.org/01vtfdn94', 'no_lang_code', 1, 'https://ror.org/01vtfdn94 Bentglass (Czechia)'), (56547, 'https://ror.org/01vv4bg03', 'no_lang_code', 1, 'https://ror.org/01vv4bg03 Vodní Cesty (Czechia)'), (56548, 'https://ror.org/01vxsq455', 'no_lang_code', 1, 'https://ror.org/01vxsq455 Quadient (Netherlands)'), (56549, 'https://ror.org/01w0yqe56', 'en', 1, 'https://ror.org/01w0yqe56 Human Organ Project'), (56550, 'https://ror.org/01w2f0g43', 'en', 1, 'https://ror.org/01w2f0g43 Sunbeam Foundation'), (56551, 'https://ror.org/01w2v6t15', 'cs', 1, 'https://ror.org/01w2v6t15 Spektroskopická Společnost Jana Marka Marci'), (56552, 'https://ror.org/01w3da479', 'no_lang_code', 1, 'https://ror.org/01w3da479 Asistenční Centrum (Czechia)'), (56553, 'https://ror.org/01w3ear51', 'en', 1, 'https://ror.org/01w3ear51 Woods Fund of Chicago'), (56554, 'https://ror.org/01w3m1m52', 'de', 1, 'https://ror.org/01w3m1m52 Departementssekretariat Schul- und Sportdepartement'), (56555, 'https://ror.org/01w4ggt72', 'no_lang_code', 1, 'https://ror.org/01w4ggt72 Boskalis (Netherlands) Koninklijke Boskalis Westminster N.V.'), (56556, 'https://ror.org/01w4jyd92', 'de', 1, 'https://ror.org/01w4jyd92 Hartmann Dreyer'), (56557, 'https://ror.org/01w4md275', 'en', 1, 'https://ror.org/01w4md275 Asociace hotelů a restaurací České republiky Czech Association of Hotels and Restaurants'), (56558, 'https://ror.org/01w5cr084', 'no_lang_code', 1, 'https://ror.org/01w5cr084 Inflex (Czechia)'), (56559, 'https://ror.org/01w5qzb22', 'de', 1, 'https://ror.org/01w5qzb22 NZZ am Sonntag'), (56560, 'https://ror.org/01w6ccy36', 'no_lang_code', 1, 'https://ror.org/01w6ccy36 AZS 98 (Czechia)'), (56561, 'https://ror.org/01wa1cb54', 'no_lang_code', 1, 'https://ror.org/01wa1cb54 TESCO SW (Czechia)'), (56562, 'https://ror.org/01wa9sg17', 'no_lang_code', 1, 'https://ror.org/01wa9sg17 IQLANDIA'), (56563, 'https://ror.org/01waqh020', 'no_lang_code', 1, 'https://ror.org/01waqh020 Deltamedics (France)'), (56564, 'https://ror.org/01wc3vt02', 'en', 1, 'https://ror.org/01wc3vt02 Jung Foundation for Science and Research Jung-Stiftung für Wissenschaft und Forschung'), (56565, 'https://ror.org/01wdvpr49', 'no_lang_code', 1, 'https://ror.org/01wdvpr49 Skoda Machine Tool (Czechia)'), (56566, 'https://ror.org/01wfvz044', 'en', 1, 'https://ror.org/01wfvz044 Winds of Peace Foundation'), (56567, 'https://ror.org/01wha1936', 'en', 1, 'https://ror.org/01wha1936 Austen BioInnovation Institute in Akron'), (56568, 'https://ror.org/01wjt3437', 'no_lang_code', 1, 'https://ror.org/01wjt3437 Federal Mogul (Belgium)'), (56569, 'https://ror.org/01wkabt06', 'no_lang_code', 1, 'https://ror.org/01wkabt06 Lammb Systems (Czechia)'), (56570, 'https://ror.org/01wrq2g34', 'no_lang_code', 1, 'https://ror.org/01wrq2g34 Dvořák (Czechia)'), (56571, 'https://ror.org/01wx7v544', 'no_lang_code', 1, 'https://ror.org/01wx7v544 Tatsuno Europe (Czechia)'), (56572, 'https://ror.org/01wyt3891', 'en', 1, 'https://ror.org/01wyt3891 State and Federal Contractors Water Agency'), (56573, 'https://ror.org/01x0maw51', 'en', 1, 'https://ror.org/01x0maw51 St David''s Medical Foundation'), (56574, 'https://ror.org/01x0syc85', 'no_lang_code', 1, 'https://ror.org/01x0syc85 Prodeco (Czechia)'), (56575, 'https://ror.org/01x10fr64', 'en', 1, 'https://ror.org/01x10fr64 Team Sanfilippo Foundation'), (56576, 'https://ror.org/01x29k385', 'en', 1, 'https://ror.org/01x29k385 Northwell Health Orthopaedic Institute'), (56577, 'https://ror.org/01x4t9w70', 'no_lang_code', 1, 'https://ror.org/01x4t9w70 Institute Po Zavaryavane (Bulgaria) Институт по заваряване'), (56578, 'https://ror.org/01x63ge73', 'en', 1, 'https://ror.org/01x63ge73 International Union for Pure and Applied Biophysics'), (56579, 'https://ror.org/01x6zzb23', 'en', 1, 'https://ror.org/01x6zzb23 VA Rocky Mountain Network'), (56580, 'https://ror.org/01x802g65', 'en', 1, 'https://ror.org/01x802g65 MRC Centre for Regenerative Medicine'), (56581, 'https://ror.org/01x8yx033', 'no_lang_code', 1, 'https://ror.org/01x8yx033 Regional Museum of K. A. Polanek'), (56582, 'https://ror.org/01x9abe66', 'cs', 1, 'https://ror.org/01x9abe66 Svaz Chovatelů Ovcí a Koz'), (56583, 'https://ror.org/01xa11r83', 'no_lang_code', 1, 'https://ror.org/01xa11r83 Sequenom (United Kingdom)'), (56584, 'https://ror.org/01xa5j591', 'en', 1, 'https://ror.org/01xa5j591 Sustainable Development Technology Canada Technologies du Développement Durable du Canada'), (56585, 'https://ror.org/01xbswg83', 'no_lang_code', 1, 'https://ror.org/01xbswg83 Tea Hawaii (United States)'), (56586, 'https://ror.org/01xc6q930', 'no_lang_code', 1, 'https://ror.org/01xc6q930 Florida Maxima (United States)'), (56587, 'https://ror.org/01xfxak12', 'no_lang_code', 1, 'https://ror.org/01xfxak12 Hill Manufacturing (United States)'), (56588, 'https://ror.org/01xgt0m54', 'de', 1, 'https://ror.org/01xgt0m54 Regionalspital Emmental'), (56589, 'https://ror.org/01xjdvt46', 'no_lang_code', 1, 'https://ror.org/01xjdvt46 ZVVZ (Czechia)'), (56590, 'https://ror.org/01xkgje29', 'en', 1, 'https://ror.org/01xkgje29 Helmholtz Moscow Research Institute of Eye Diseases Московский научно-исследовательский институт глазных болезней им. Гельмгольца'), (56591, 'https://ror.org/01xkm9f48', 'no_lang_code', 1, 'https://ror.org/01xkm9f48 Retap (Czechia)'), (56592, 'https://ror.org/01xnshd39', 'en', 1, 'https://ror.org/01xnshd39 Tianjin People''s Government 天津市人民政府'), (56593, 'https://ror.org/01xpnt789', 'en', 1, 'https://ror.org/01xpnt789 Czech Society of Biomechanics'), (56594, 'https://ror.org/01xqxbt36', 'no_lang_code', 1, 'https://ror.org/01xqxbt36 DSM (France)'), (56595, 'https://ror.org/01xtnj706', 'no_lang_code', 1, 'https://ror.org/01xtnj706 Latitude Engineering (United States)'), (56596, 'https://ror.org/01xtr4h58', 'no_lang_code', 1, 'https://ror.org/01xtr4h58 Mydlářka (Czechia)'), (56597, 'https://ror.org/01xves834', 'no_lang_code', 1, 'https://ror.org/01xves834 IRISNDT (United States)'), (56598, 'https://ror.org/01xx5km06', 'no_lang_code', 1, 'https://ror.org/01xx5km06 NutriVet (Czechia)'), (56599, 'https://ror.org/01xxyhd49', 'no_lang_code', 1, 'https://ror.org/01xxyhd49 Hazel Technologies (United States)'), (56600, 'https://ror.org/01xy5wy39', 'no_lang_code', 1, 'https://ror.org/01xy5wy39 Želivka (Czechia)'), (56601, 'https://ror.org/01xz6zr49', 'no_lang_code', 1, 'https://ror.org/01xz6zr49 Vamet (Czechia)'), (56602, 'https://ror.org/01xz9k981', 'en', 1, 'https://ror.org/01xz9k981 National Research Institute of Cultural Heritage 국립문화재연구소'), (56603, 'https://ror.org/01xzvwk54', 'es', 1, 'https://ror.org/01xzvwk54 Universidad Latinoamericana'), (56604, 'https://ror.org/01y0rs066', 'cs', 1, 'https://ror.org/01y0rs066 Zdravotnická Záchranná Služba Královéhradeckého Kraje'), (56605, 'https://ror.org/01y24f494', 'no_lang_code', 1, 'https://ror.org/01y24f494 Woodward (United States)'), (56606, 'https://ror.org/01y2cgj18', 'no_lang_code', 1, 'https://ror.org/01y2cgj18 D. Western Therapeutics Institute (Japan)'), (56607, 'https://ror.org/01y3wh736', 'no_lang_code', 1, 'https://ror.org/01y3wh736 Agenda (Czechia)'), (56608, 'https://ror.org/01y5dqg31', 'no_lang_code', 1, 'https://ror.org/01y5dqg31 Zeelandia (Czechia)'), (56609, 'https://ror.org/01y5w6t76', 'en', 1, 'https://ror.org/01y5w6t76 Istituto Trapianti d''Organo e Immunocitologia Organ Transplantation and Immunology Institute'), (56610, 'https://ror.org/01y7r8c03', 'no_lang_code', 1, 'https://ror.org/01y7r8c03 NaturaServis (Czechia)'), (56611, 'https://ror.org/01y7tp893', 'no_lang_code', 1, 'https://ror.org/01y7tp893 EGÚ Praha Engineering (Czechia)'), (56612, 'https://ror.org/01y7wy577', 'no_lang_code', 1, 'https://ror.org/01y7wy577 Rataj (Czechia)'), (56613, 'https://ror.org/01ya98z16', 'no_lang_code', 1, 'https://ror.org/01ya98z16 ETK Kolín (Czechia)'), (56614, 'https://ror.org/01yb7w119', 'sv', 1, 'https://ror.org/01yb7w119 Lundbergsstiftelserna'), (56615, 'https://ror.org/01yd3n286', 'en', 1, 'https://ror.org/01yd3n286 Wildlife Forever'), (56616, 'https://ror.org/01ydd6106', 'en', 1, 'https://ror.org/01ydd6106 INstrategy'), (56617, 'https://ror.org/01ydfc370', 'no_lang_code', 1, 'https://ror.org/01ydfc370 Schlumberger (British Virgin Islands)'), (56618, 'https://ror.org/01yeyd808', 'en', 1, 'https://ror.org/01yeyd808 Life Science Institute'), (56619, 'https://ror.org/01yg7sq26', 'no_lang_code', 1, 'https://ror.org/01yg7sq26 Koenig & Bauer (Czechia)'), (56620, 'https://ror.org/01yg8x810', 'no_lang_code', 1, 'https://ror.org/01yg8x810 Holzbecher (Czechia)'), (56621, 'https://ror.org/01yhceq35', 'no_lang_code', 1, 'https://ror.org/01yhceq35 Rybníkářství Pohořelice'), (56622, 'https://ror.org/01ykng114', 'en', 1, 'https://ror.org/01ykng114 National Science and Technology Medals Foundation'), (56623, 'https://ror.org/01ymvpb42', 'no_lang_code', 1, 'https://ror.org/01ymvpb42 Honeywell (France)'), (56624, 'https://ror.org/01yqdmr06', 'no_lang_code', 1, 'https://ror.org/01yqdmr06 Microscan Service (Switzerland)'), (56625, 'https://ror.org/01yv86q51', 'no_lang_code', 1, 'https://ror.org/01yv86q51 Bio-Rad (France)'), (56626, 'https://ror.org/01yx6f755', 'cs', 1, 'https://ror.org/01yx6f755 Společnost pro Veřejnou Dopravu'), (56627, 'https://ror.org/01yxf2e18', 'no_lang_code', 1, 'https://ror.org/01yxf2e18 Honeywell (Netherlands)'), (56628, 'https://ror.org/01yxxeq63', 'en', 1, 'https://ror.org/01yxxeq63 Centre for Mental Health Care Development Centrum pro rozvoj péče o duševní zdraví'), (56629, 'https://ror.org/01z2afr14', 'en', 1, 'https://ror.org/01z2afr14 Robert Bowne Foundation'), (56630, 'https://ror.org/01z38sf41', 'no_lang_code', 1, 'https://ror.org/01z38sf41 AmerisourceBergen (United States)'), (56631, 'https://ror.org/01z4tdd83', 'no_lang_code', 1, 'https://ror.org/01z4tdd83 Sady (Czechia)'), (56632, 'https://ror.org/01z5r3y12', 'de', 1, 'https://ror.org/01z5r3y12 Schweizerische Vereinigung für Landesplanung'), (56633, 'https://ror.org/01z6p8p31', 'en', 1, 'https://ror.org/01z6p8p31 Office of Infectious Diseases'), (56634, 'https://ror.org/01z72zc80', 'no_lang_code', 1, 'https://ror.org/01z72zc80 Ana Laboratoire'), (56635, 'https://ror.org/01z78yd74', 'cs', 1, 'https://ror.org/01z78yd74 Medico'), (56636, 'https://ror.org/01zchyr17', 'no_lang_code', 1, 'https://ror.org/01zchyr17 Chemispol (Czechia)'), (56637, 'https://ror.org/01zgn9c85', 'no_lang_code', 1, 'https://ror.org/01zgn9c85 Pragis (Czechia)'), (56638, 'https://ror.org/01zh1d994', 'no_lang_code', 1, 'https://ror.org/01zh1d994 Plzeňské Městské Dopravní Podniky (Czechia)'), (56639, 'https://ror.org/01zj3x449', 'no_lang_code', 1, 'https://ror.org/01zj3x449 Chovservis (Czechia)'), (56640, 'https://ror.org/01zj9vv73', 'no_lang_code', 1, 'https://ror.org/01zj9vv73 Factorio Solutions (Czechia)'), (56641, 'https://ror.org/01zk2ze43', 'no_lang_code', 1, 'https://ror.org/01zk2ze43 Lukrom (Czechia)'), (56642, 'https://ror.org/01zk5hm10', 'no_lang_code', 1, 'https://ror.org/01zk5hm10 Siga (Czechia)'), (56643, 'https://ror.org/01zn7n052', 'cs', 1, 'https://ror.org/01zn7n052 Střední Průmyslová škola a Obchodní Akademie Uherský Brod'), (56644, 'https://ror.org/01zrfm954', 'en', 1, 'https://ror.org/01zrfm954 Mid Ohio Foodbank'), (56645, 'https://ror.org/01zrvxg38', 'no_lang_code', 1, 'https://ror.org/01zrvxg38 Hydrostatika (Czechia)'), (56646, 'https://ror.org/01zsbqm47', 'en', 1, 'https://ror.org/01zsbqm47 Electrotechnical Association of the Czech Republic Českomoravská elektrotechnická asociace'), (56647, 'https://ror.org/01zt9h285', 'en', 1, 'https://ror.org/01zt9h285 Postgraduate Center for Mental Health'), (56648, 'https://ror.org/01zvbyp59', 'fr', 1, 'https://ror.org/01zvbyp59 Archives Cantonales Vaudoises'), (56649, 'https://ror.org/01zvtwr46', 'de', 1, 'https://ror.org/01zvtwr46 Medizin Campus Bodensee'), (56650, 'https://ror.org/01zxt6b74', 'no_lang_code', 1, 'https://ror.org/01zxt6b74 SC & C (Czechia)'), (56651, 'https://ror.org/01zxw4w85', 'no_lang_code', 1, 'https://ror.org/01zxw4w85 Valmet (Sweden)'), (56652, 'https://ror.org/01zzv0338', 'en', 1, 'https://ror.org/01zzv0338 Wuxi Municipal Bureau on Science and Technology 无锡市科技局'), (56653, 'https://ror.org/0202hwy21', 'no_lang_code', 1, 'https://ror.org/0202hwy21 INTOS (Czechia)'), (56654, 'https://ror.org/0204cak81', 'no_lang_code', 1, 'https://ror.org/0204cak81 Energostav (Czechia)'), (56655, 'https://ror.org/02058sj25', 'no_lang_code', 1, 'https://ror.org/02058sj25 Brazzale Moravia (Czechia)'), (56656, 'https://ror.org/0205xz563', 'en', 1, 'https://ror.org/0205xz563 State Key Laboratory of Plant Genomics 植物基因组学国家重点实验室'), (56657, 'https://ror.org/0206pct05', 'no_lang_code', 1, 'https://ror.org/0206pct05 Dopravoprojekt (Czechia)'), (56658, 'https://ror.org/0206v1232', 'no_lang_code', 1, 'https://ror.org/0206v1232 Penguin Random House (United States)'), (56659, 'https://ror.org/02083pn15', 'no_lang_code', 1, 'https://ror.org/02083pn15 Northrop Grumman (France)'), (56660, 'https://ror.org/02085m625', 'en', 1, 'https://ror.org/02085m625 Arplay Medical'), (56661, 'https://ror.org/0209axq03', 'no_lang_code', 1, 'https://ror.org/0209axq03 OZM Research (Czechia)'), (56662, 'https://ror.org/020apt798', 'en', 1, 'https://ror.org/020apt798 Finnish Foundation for Cardiovascular Research Sydäntutkimussäätiö'), (56663, 'https://ror.org/020bdm170', 'de', 1, 'https://ror.org/020bdm170 Biologie Labor'), (56664, 'https://ror.org/020cx6a13', 'en', 1, 'https://ror.org/020cx6a13 Frisbee Foundation'), (56665, 'https://ror.org/020d0v548', 'no_lang_code', 1, 'https://ror.org/020d0v548 Crea Hydro&Energy (Czechia)'), (56666, 'https://ror.org/020drq148', 'no_lang_code', 1, 'https://ror.org/020drq148 Vesa Velhartice (Czechia)'), (56667, 'https://ror.org/020gjh112', 'en', 1, 'https://ror.org/020gjh112 Sino-Danish Centre for Education and Research 中国丹麦科研教育中心'), (56668, 'https://ror.org/020hnjs91', 'sv', 1, 'https://ror.org/020hnjs91 Alfred Österlunds Stiftelse'), (56669, 'https://ror.org/020jh4z82', 'en', 1, 'https://ror.org/020jh4z82 Research Institute of Synthetic Fiber with the Pilot Plant Научно - исследовательский институт синтетического волокна с экспериментальным заводом'), (56670, 'https://ror.org/020k5bg95', 'no_lang_code', 1, 'https://ror.org/020k5bg95 Fujirebio (Czechia)'), (56671, 'https://ror.org/020n1we98', 'en', 1, 'https://ror.org/020n1we98 Rockfall Foundation'), (56672, 'https://ror.org/020rm3x22', 'en', 1, 'https://ror.org/020rm3x22 Community EnCompass'), (56673, 'https://ror.org/020tre550', 'en', 1, 'https://ror.org/020tre550 Ettore and Valeria Rossi Foundation Fondazione Ettore e Valeria Rossi'), (56674, 'https://ror.org/020v2gz03', 'no_lang_code', 1, 'https://ror.org/020v2gz03 Kessl (Czechia)'), (56675, 'https://ror.org/020vrbx29', 'no_lang_code', 1, 'https://ror.org/020vrbx29 F.P.S. Arco (Czechia)'), (56676, 'https://ror.org/020zqa202', 'en', 1, 'https://ror.org/020zqa202 International Association for the Study of Dreams'), (56677, 'https://ror.org/0212my482', 'no_lang_code', 1, 'https://ror.org/0212my482 Metroprojekt Praha (Czechia)'), (56678, 'https://ror.org/02131zb90', 'en', 1, 'https://ror.org/02131zb90 The Research Institute for Fertilizers and Insectofungicides Институт удобрений и инсектофунгицидов имени Я. В. Самойлова'), (56679, 'https://ror.org/021819p14', 'no_lang_code', 1, 'https://ror.org/021819p14 Geo Vision (Czechia)'), (56680, 'https://ror.org/0218gpe46', 'no_lang_code', 1, 'https://ror.org/0218gpe46 Licolor (Czechia)'), (56681, 'https://ror.org/0218s1743', 'fr', 1, 'https://ror.org/0218s1743 Institut Technique de Développement des Produits de la Mer'), (56682, 'https://ror.org/02195qc46', 'en', 1, 'https://ror.org/02195qc46 Bunge & Born Foundation'), (56683, 'https://ror.org/021a66733', 'en', 1, 'https://ror.org/021a66733 Institute for Rural Engineering 農村工学研究部門'), (56684, 'https://ror.org/021h7sd56', 'no_lang_code', 1, 'https://ror.org/021h7sd56 Medical Process (France)'), (56685, 'https://ror.org/021k07d19', 'en', 1, 'https://ror.org/021k07d19 Nestlé Foundation'), (56686, 'https://ror.org/021kzz686', 'no_lang_code', 1, 'https://ror.org/021kzz686 HOBAS (Czechia)'), (56687, 'https://ror.org/021p56f43', 'en', 1, 'https://ror.org/021p56f43 Laboratory for Social and Neural Systems Research'), (56688, 'https://ror.org/021r10935', 'en', 1, 'https://ror.org/021r10935 National Disaster Management Research Institute 전국 재난 관리 연구소'), (56689, 'https://ror.org/021r5zp58', 'de', 1, 'https://ror.org/021r5zp58 Engeriedspital'), (56690, 'https://ror.org/021sjh871', 'no_lang_code', 1, 'https://ror.org/021sjh871 TriFoil Imaging (United States)'), (56691, 'https://ror.org/021syp484', 'no_lang_code', 1, 'https://ror.org/021syp484 Jablonecká Nástrojárna (Czechia)'), (56692, 'https://ror.org/021tj4g88', 'en', 1, 'https://ror.org/021tj4g88 SENSHIN Medical Research Foundation 新情報処理振興財団'), (56693, 'https://ror.org/021tw0b31', 'fr', 1, 'https://ror.org/021tw0b31 Conférence Intercantonale de l''Instruction Publique de la Suisse Romande et du Tessin'), (56694, 'https://ror.org/021vvf198', 'no_lang_code', 1, 'https://ror.org/021vvf198 Gabriel Chemie Bohemia (Czechia)'), (56695, 'https://ror.org/021wep716', 'no_lang_code', 1, 'https://ror.org/021wep716 AGCO (Netherlands)'), (56696, 'https://ror.org/021z0c614', 'no_lang_code', 1, 'https://ror.org/021z0c614 Cambridge Nutritional Sciences (United Kingdom)'), (56697, 'https://ror.org/021z27d52', 'no_lang_code', 1, 'https://ror.org/021z27d52 Kaiser (Czechia)'), (56698, 'https://ror.org/021zj1e70', 'no_lang_code', 1, 'https://ror.org/021zj1e70 Hutní Montáže (Czechia)'), (56699, 'https://ror.org/022040e63', 'no_lang_code', 1, 'https://ror.org/022040e63 Murus (Czechia)'), (56700, 'https://ror.org/0222m3049', 'no_lang_code', 1, 'https://ror.org/0222m3049 RHI Magnesita (Switzerland)'), (56701, 'https://ror.org/0222yz688', 'cs', 1, 'https://ror.org/0222yz688 Nadace pro rozvoj architektury a stavitelství'), (56702, 'https://ror.org/0223gc275', 'cs', 1, 'https://ror.org/0223gc275 Nemocnice Atlas'), (56703, 'https://ror.org/022482e21', 'en', 1, 'https://ror.org/022482e21 CRC for Spatial information'), (56704, 'https://ror.org/022580115', 'no_lang_code', 1, 'https://ror.org/022580115 Dynex (Czechia)'), (56705, 'https://ror.org/0225cyg31', 'de', 1, 'https://ror.org/0225cyg31 Senatsverwaltung für Wirtschaft, Energie und Betriebe'), (56706, 'https://ror.org/0225hcv43', 'no_lang_code', 1, 'https://ror.org/0225hcv43 Georadis (Czechia)'), (56707, 'https://ror.org/0225ptr32', 'en', 1, 'https://ror.org/0225ptr32 Surdna Foundation'), (56708, 'https://ror.org/02273n860', 'no_lang_code', 1, 'https://ror.org/02273n860 Elvia (Czechia)'), (56709, 'https://ror.org/022897k65', 'en', 1, 'https://ror.org/022897k65 Vera Bradley Foundation for Breast Cancer'), (56710, 'https://ror.org/0228pwd35', 'en', 1, 'https://ror.org/0228pwd35 Departament federal da finanzas Dipartimento federale delle finanze Département fédéral des finances Eidgenössisches Finanzdepartement Federal Department of Finance'), (56711, 'https://ror.org/0229ja564', 'de', 1, 'https://ror.org/0229ja564 Kliniken des Landkreises Lörrach'), (56712, 'https://ror.org/0229km412', 'no_lang_code', 1, 'https://ror.org/0229km412 Photon Energy (Czechia)'), (56713, 'https://ror.org/0229p0a70', 'it', 1, 'https://ror.org/0229p0a70 Museo Vincenzo Vela'), (56714, 'https://ror.org/022a5hk55', 'no_lang_code', 1, 'https://ror.org/022a5hk55 Pinkerton (Czechia)'), (56715, 'https://ror.org/022aa0w74', 'no_lang_code', 1, 'https://ror.org/022aa0w74 Laboratoires M. Richard (France)'), (56716, 'https://ror.org/022dzrb13', 'no_lang_code', 1, 'https://ror.org/022dzrb13 InnovaSea Systems (United States)'), (56717, 'https://ror.org/022gdx219', 'no_lang_code', 1, 'https://ror.org/022gdx219 MPower (Czechia)'), (56718, 'https://ror.org/022hhet17', 'en', 1, 'https://ror.org/022hhet17 Carnegie Endowment for International Peace'), (56719, 'https://ror.org/022jr5m13', 'nl', 1, 'https://ror.org/022jr5m13 VSBfonds'), (56720, 'https://ror.org/022k30226', 'en', 1, 'https://ror.org/022k30226 Local Matters'), (56721, 'https://ror.org/022kqm498', 'en', 1, 'https://ror.org/022kqm498 Wings of Eagles Discovery Center'), (56722, 'https://ror.org/022mx4d10', 'en', 1, 'https://ror.org/022mx4d10 Korea Photonics Technology Institute'), (56723, 'https://ror.org/022pcr506', 'no_lang_code', 1, 'https://ror.org/022pcr506 Licon Heat (Czechia)'), (56724, 'https://ror.org/022psyh04', 'no_lang_code', 1, 'https://ror.org/022psyh04 Polyos (Czechia)'), (56725, 'https://ror.org/022q21023', 'en', 1, 'https://ror.org/022q21023 Czech Association of Petroleum Industry and Trade Česká asociace petrolejářského průmyslu a obchodu'), (56726, 'https://ror.org/022qvpy75', 'en', 1, 'https://ror.org/022qvpy75 International Geographical Union Union Géographique Internationale'), (56727, 'https://ror.org/022sj0h09', 'no_lang_code', 1, 'https://ror.org/022sj0h09 Primis (Czechia)'), (56728, 'https://ror.org/022tr6d79', 'no_lang_code', 1, 'https://ror.org/022tr6d79 Basys (Germany)'), (56729, 'https://ror.org/022vfzj49', 'no_lang_code', 1, 'https://ror.org/022vfzj49 mAbDx (United States)'), (56730, 'https://ror.org/022wvrv65', 'en', 1, 'https://ror.org/022wvrv65 Jalmari and Rauha Ahokas Foundation Jalmari ja Rauha Ahokkaan Säätiö'), (56731, 'https://ror.org/022wy8e87', 'no_lang_code', 1, 'https://ror.org/022wy8e87 Bauer Technics'), (56732, 'https://ror.org/022xahy44', 'no_lang_code', 1, 'https://ror.org/022xahy44 Furukawa Electric (United Kingdom)'), (56733, 'https://ror.org/022z4zx74', 'en', 1, 'https://ror.org/022z4zx74 PRO-BIO Association of Organic Farmers'), (56734, 'https://ror.org/0231gtc30', 'fr', 1, 'https://ror.org/0231gtc30 Fondation de Nant'), (56735, 'https://ror.org/0232e8038', 'no_lang_code', 1, 'https://ror.org/0232e8038 BioEnviro (Czechia)'), (56736, 'https://ror.org/0233hap27', 'no_lang_code', 1, 'https://ror.org/0233hap27 Gist (Czechia)'), (56737, 'https://ror.org/02341a605', 'cs', 1, 'https://ror.org/02341a605 Krajská nemocnice T. Bati'), (56738, 'https://ror.org/0234nw002', 'no_lang_code', 1, 'https://ror.org/0234nw002 DSA (Czechia)'), (56739, 'https://ror.org/0234pyd94', 'en', 1, 'https://ror.org/0234pyd94 UniHealth Foundation'), (56740, 'https://ror.org/0235qjz17', 'no_lang_code', 1, 'https://ror.org/0235qjz17 Panasonic (Czechia)'), (56741, 'https://ror.org/02364qy53', 'de', 1, 'https://ror.org/02364qy53 Aron Vajna Historischer Blechblasinstrumentenbau'), (56742, 'https://ror.org/0236wqc02', 'de', 1, 'https://ror.org/0236wqc02 Sarkoidose Stiftung'), (56743, 'https://ror.org/02384ye22', 'en', 1, 'https://ror.org/02384ye22 Dangoria Charitable Trust'), (56744, 'https://ror.org/023b5vx71', 'no_lang_code', 1, 'https://ror.org/023b5vx71 Envipor (Czechia)'), (56745, 'https://ror.org/023bna168', 'no_lang_code', 1, 'https://ror.org/023bna168 Whirlpool (Netherlands)'), (56746, 'https://ror.org/023bq4z36', 'no_lang_code', 1, 'https://ror.org/023bq4z36 Blue Industry and Science (France)'), (56747, 'https://ror.org/023eqmq44', 'de', 1, 'https://ror.org/023eqmq44 Wohnstadt'), (56748, 'https://ror.org/023g45t05', 'no_lang_code', 1, 'https://ror.org/023g45t05 ExxonMobil (United Kingdom)'), (56749, 'https://ror.org/023g71078', 'no_lang_code', 1, 'https://ror.org/023g71078 Medignition (Switzerland)'), (56750, 'https://ror.org/023kcy720', 'de', 1, 'https://ror.org/023kcy720 Reinhold Beitlich Foundation Reinhold Beitlich Stiftung'), (56751, 'https://ror.org/023kj5402', 'no_lang_code', 1, 'https://ror.org/023kj5402 Craig Technologies (United States)'), (56752, 'https://ror.org/023pc0v92', 'it', 1, 'https://ror.org/023pc0v92 Ospedale San Paolo'), (56753, 'https://ror.org/023pwvd91', 'it', 1, 'https://ror.org/023pwvd91 Academy of the bran Accademia della Crusca'), (56754, 'https://ror.org/023rd7223', 'no_lang_code', 1, 'https://ror.org/023rd7223 Plosab (Czechia)'), (56755, 'https://ror.org/023sc6050', 'no_lang_code', 1, 'https://ror.org/023sc6050 Roko (Czechia)'), (56756, 'https://ror.org/023spgs14', 'en', 1, 'https://ror.org/023spgs14 Moscow Regional Research Institute of Obstetrics and Gynecology Московский областной НИИ акушерства и гинекологии'), (56757, 'https://ror.org/023vxr720', 'no_lang_code', 1, 'https://ror.org/023vxr720 TK Consult (Switzerland)'), (56758, 'https://ror.org/023w52n18', 'no_lang_code', 1, 'https://ror.org/023w52n18 EarthDance'), (56759, 'https://ror.org/023w6y044', 'en', 1, 'https://ror.org/023w6y044 VA Great Lakes Health Care System'), (56760, 'https://ror.org/023y6dh84', 'cs', 1, 'https://ror.org/023y6dh84 Akademie Jana Amose Komenského'), (56761, 'https://ror.org/024009532', 'fr', 1, 'https://ror.org/024009532 Hôpital de Beaumont'), (56762, 'https://ror.org/0241sqg91', 'no_lang_code', 1, 'https://ror.org/0241sqg91 Stinchcombe Technology (Czechia)'), (56763, 'https://ror.org/0242ces81', 'en', 1, 'https://ror.org/0242ces81 Power Tool Institute'), (56764, 'https://ror.org/0242j2724', 'en', 1, 'https://ror.org/0242j2724 Elizabeth Greenshields Foundation'), (56765, 'https://ror.org/0243gh341', 'en', 1, 'https://ror.org/0243gh341 Springfield Foundation'), (56766, 'https://ror.org/0243qpk28', 'cs', 1, 'https://ror.org/0243qpk28 Sdružení Ozdravoven A Léčeben Okresu Trutnov'), (56767, 'https://ror.org/02445zq85', 'no_lang_code', 1, 'https://ror.org/02445zq85 Tec 21'), (56768, 'https://ror.org/0246a9012', 'en', 1, 'https://ror.org/0246a9012 Direction générale Statistique Statistics Belgium'), (56769, 'https://ror.org/0248vx102', 'de', 1, 'https://ror.org/0248vx102 Schweizerische Gesellschaft für Kardiologie'), (56770, 'https://ror.org/0249zbx82', 'en', 1, 'https://ror.org/0249zbx82 Institutul de Cercetari Metalurgice Metallurgical Research Institute'), (56771, 'https://ror.org/024a53a32', 'no_lang_code', 1, 'https://ror.org/024a53a32 Texas Instruments (Switzerland)'), (56772, 'https://ror.org/024ap5123', 'en', 1, 'https://ror.org/024ap5123 Rome Foundation'), (56773, 'https://ror.org/024h0z890', 'fr', 1, 'https://ror.org/024h0z890 Institut Génétique Nantes Atlantique'), (56774, 'https://ror.org/024h27x67', 'en', 1, 'https://ror.org/024h27x67 Institutul National De Cercetare Dezvoltare Chimico Farmaceutica National Institute For Chemical Pharmaceutical Research and Development'), (56775, 'https://ror.org/024hftt26', 'no_lang_code', 1, 'https://ror.org/024hftt26 Zemědělské Družstvo Šitbořice (Czechia)'), (56776, 'https://ror.org/024mety47', 'no_lang_code', 1, 'https://ror.org/024mety47 Entrust Datacard (United States)'), (56777, 'https://ror.org/024n1jd19', 'en', 1, 'https://ror.org/024n1jd19 Eastern Mining-and-Metallurgical Research Institute for Nonferrous Metals Восточный научно-исследовательский горно-металлургический институт цветных металлов [править | править вики-текст]'), (56778, 'https://ror.org/024p2bs62', 'en', 1, 'https://ror.org/024p2bs62 City Schoolyard Garden'), (56779, 'https://ror.org/024p43m36', 'en', 1, 'https://ror.org/024p43m36 Singapore Millennium Foundation'), (56780, 'https://ror.org/024pc0058', 'en', 1, 'https://ror.org/024pc0058 Summerlee Foundation'), (56781, 'https://ror.org/024pgf395', 'en', 1, 'https://ror.org/024pgf395 Civilisations Matter'), (56782, 'https://ror.org/024qfyn78', 'no_lang_code', 1, 'https://ror.org/024qfyn78 ACL Anodizing (Czechia)'), (56783, 'https://ror.org/024s9tn87', 'no_lang_code', 1, 'https://ror.org/024s9tn87 Trimill (Czechia)'), (56784, 'https://ror.org/024t02d47', 'en', 1, 'https://ror.org/024t02d47 Hydrobiological Institute Хидробиолошки Институт'), (56785, 'https://ror.org/024tjte62', 'cs', 1, 'https://ror.org/024tjte62 Krajská Hygienická Stanice Olomouci'), (56786, 'https://ror.org/024x5f906', 'no_lang_code', 1, 'https://ror.org/024x5f906 Hexcel (United States)'), (56787, 'https://ror.org/024xpqd61', 'no_lang_code', 1, 'https://ror.org/024xpqd61 AB Neo (Czechia)'), (56788, 'https://ror.org/024zd3a64', 'no_lang_code', 1, 'https://ror.org/024zd3a64 Glass Atelier Morava (Czechia)'), (56789, 'https://ror.org/02505ds21', 'cs', 1, 'https://ror.org/02505ds21 Jednota Hudebního Divadla'), (56790, 'https://ror.org/0251g2d64', 'en', 1, 'https://ror.org/0251g2d64 European Association of Social Psychology'), (56791, 'https://ror.org/0252ba684', 'no_lang_code', 1, 'https://ror.org/0252ba684 Komfort (Czechia)'), (56792, 'https://ror.org/0252gcq98', 'no_lang_code', 1, 'https://ror.org/0252gcq98 Consultest (Czechia)'), (56793, 'https://ror.org/0254rs835', 'de', 1, 'https://ror.org/0254rs835 Gesellschaft für Hochschulforschung'), (56794, 'https://ror.org/025506c66', 'no_lang_code', 1, 'https://ror.org/025506c66 Smart Vision Works International (United States)'), (56795, 'https://ror.org/0257x6t90', 'en', 1, 'https://ror.org/0257x6t90 Delta Water Management Research Unit'), (56796, 'https://ror.org/0258a5n35', 'en', 1, 'https://ror.org/0258a5n35 Institute for Spatial Development Ústav územního rozvoje'), (56797, 'https://ror.org/025ajkx98', 'no_lang_code', 1, 'https://ror.org/025ajkx98 Teleflex (Australia)'), (56798, 'https://ror.org/025c9h003', 'en', 1, 'https://ror.org/025c9h003 Michigan Department of Technology, Management & Budget'), (56799, 'https://ror.org/025db4c72', 'no_lang_code', 1, 'https://ror.org/025db4c72 TLP (Czechia)'), (56800, 'https://ror.org/025decp49', 'no_lang_code', 1, 'https://ror.org/025decp49 Cech Engineering (Czechia)'), (56801, 'https://ror.org/025dke180', 'no_lang_code', 1, 'https://ror.org/025dke180 Žatec (Czechia)'), (56802, 'https://ror.org/025e2dr05', 'es', 1, 'https://ror.org/025e2dr05 Fundación Cerebro y Mente'), (56803, 'https://ror.org/025eayv75', 'en', 1, 'https://ror.org/025eayv75 Islamic Azad University, Firoozkooh Branch دانشگاه آزاد اسلامي واحد فيروزكوه'), (56804, 'https://ror.org/025k4tn70', 'no_lang_code', 1, 'https://ror.org/025k4tn70 Novatisk (Czechia)'), (56805, 'https://ror.org/025mn7712', 'no_lang_code', 1, 'https://ror.org/025mn7712 InFlectis BioScience'), (56806, 'https://ror.org/025rvh645', 'sv', 1, 'https://ror.org/025rvh645 Stiftelsen Emilie och Rudolf Gesellius fond'), (56807, 'https://ror.org/025rzbp22', 'no_lang_code', 1, 'https://ror.org/025rzbp22 Hydraulické Stroje A Zařízení (Czechia)'), (56808, 'https://ror.org/025twqg64', 'no_lang_code', 1, 'https://ror.org/025twqg64 EuroMISE (Czechia)'), (56809, 'https://ror.org/025vct142', 'en', 1, 'https://ror.org/025vct142 Skylark Foundation'), (56810, 'https://ror.org/025yjfh46', 'en', 1, 'https://ror.org/025yjfh46 VA MidSouth Healthcare Network'), (56811, 'https://ror.org/02606vr52', 'en', 1, 'https://ror.org/02606vr52 Thomas Wilson Foundation'), (56812, 'https://ror.org/02613e360', 'en', 1, 'https://ror.org/02613e360 International Center for Astronomical, Medical and Ecological Research'), (56813, 'https://ror.org/0264aj944', 'no_lang_code', 1, 'https://ror.org/0264aj944 AWIK House Production (Czechia)'), (56814, 'https://ror.org/0264vnq64', 'it', 1, 'https://ror.org/0264vnq64 Organizzazione Sociopsichiatrica Cantonale'), (56815, 'https://ror.org/0266x3x06', 'en', 1, 'https://ror.org/0266x3x06 Udall Foundation'), (56816, 'https://ror.org/0266xtw32', 'cs', 1, 'https://ror.org/0266xtw32 Jihočeské Muzeum v Českých Budějovicích'), (56817, 'https://ror.org/0267ebt82', 'fi', 1, 'https://ror.org/0267ebt82 Tauno Tönningin Säätiö'), (56818, 'https://ror.org/02682jj74', 'no_lang_code', 1, 'https://ror.org/02682jj74 Ceraver (France)'), (56819, 'https://ror.org/0268cyt91', 'no_lang_code', 1, 'https://ror.org/0268cyt91 Medetron (Czechia)'), (56820, 'https://ror.org/0269hs475', 'fi', 1, 'https://ror.org/0269hs475 Ida Montinin Säätiö'), (56821, 'https://ror.org/0269xd847', 'no_lang_code', 1, 'https://ror.org/0269xd847 Wüest Partner (Switzerland)'), (56822, 'https://ror.org/026bcj513', 'no_lang_code', 1, 'https://ror.org/026bcj513 MediCom (Czechia)'), (56823, 'https://ror.org/026bfbm57', 'en', 1, 'https://ror.org/026bfbm57 Nanocem'), (56824, 'https://ror.org/026dax180', 'en', 1, 'https://ror.org/026dax180 NIMH Repository and Genomics Resource'), (56825, 'https://ror.org/026frww69', 'en', 1, 'https://ror.org/026frww69 Research Institute of Mine Rescue НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ ГОРНОСПАСАТЕЛЬНОГО ДЕЛА'), (56826, 'https://ror.org/026ftd493', 'pt', 1, 'https://ror.org/026ftd493 Fundação Gorceix'), (56827, 'https://ror.org/026gpk522', 'no_lang_code', 1, 'https://ror.org/026gpk522 AgroBio Opava (Czechia)'), (56828, 'https://ror.org/026k95836', 'no_lang_code', 1, 'https://ror.org/026k95836 Geodyn (Czechia)'), (56829, 'https://ror.org/026mffr50', 'en', 1, 'https://ror.org/026mffr50 Wisconsin Cheese Makers Association'), (56830, 'https://ror.org/026nvac34', 'no_lang_code', 1, 'https://ror.org/026nvac34 Lingea (Czechia)'), (56831, 'https://ror.org/026qmmw74', 'cs', 1, 'https://ror.org/026qmmw74 Česká Společnost Chemického Inženýrství'), (56832, 'https://ror.org/026ryr342', 'en', 1, 'https://ror.org/026ryr342 Shevchenko Foundation'), (56833, 'https://ror.org/026sz7x33', 'no_lang_code', 1, 'https://ror.org/026sz7x33 Innogy (Czechia)'), (56834, 'https://ror.org/026xhpy07', 'no_lang_code', 1, 'https://ror.org/026xhpy07 Consulting Company Novasoft (Czechia)'), (56835, 'https://ror.org/026xyq320', 'no_lang_code', 1, 'https://ror.org/026xyq320 Mikroelektronika (Czechia)'), (56836, 'https://ror.org/026z1cz75', 'no_lang_code', 1, 'https://ror.org/026z1cz75 PathSensors (United States)'), (56837, 'https://ror.org/0270n9q14', 'no_lang_code', 1, 'https://ror.org/0270n9q14 Garmin (Switzerland)'), (56838, 'https://ror.org/02719dy55', 'en', 1, 'https://ror.org/02719dy55 All-Russian Scientific Research Institute of Fats Всероссийский научно-исследовательский институт жиров'), (56839, 'https://ror.org/0271pk470', 'en', 1, 'https://ror.org/0271pk470 Plant and Fungi Biotechnology Laboratory'), (56840, 'https://ror.org/02737yq40', 'en', 1, 'https://ror.org/02737yq40 Fesenkov Astrophysical Institute Астрофизический институт имени В. Г. Фесенкова'), (56841, 'https://ror.org/02747fj94', 'de', 1, 'https://ror.org/02747fj94 Günter-Köhler-Institut für Fügetechnik und Werkstoffprüfung'), (56842, 'https://ror.org/0276snn96', 'no_lang_code', 1, 'https://ror.org/0276snn96 Tarpo (Czechia)'), (56843, 'https://ror.org/027c7k196', 'en', 1, 'https://ror.org/027c7k196 Changchun Institute of Biological Products 长春生物制品研究所 编辑'), (56844, 'https://ror.org/027d4fk93', 'en', 1, 'https://ror.org/027d4fk93 Sid W Richardson Foundation'), (56845, 'https://ror.org/027e2aw51', 'no_lang_code', 1, 'https://ror.org/027e2aw51 HaSaM (Czechia)'), (56846, 'https://ror.org/027frky36', 'en', 1, 'https://ror.org/027frky36 North-Caucasian Mining and Metallurgical Institute Северо-Кавказский горно-металлургический институт'), (56847, 'https://ror.org/027jc1q11', 'no_lang_code', 1, 'https://ror.org/027jc1q11 Edwards Lifesciences (United Kingdom)'), (56848, 'https://ror.org/027jwtt54', 'fi', 1, 'https://ror.org/027jwtt54 Arvo ja Lea Ylppö Säätiö'), (56849, 'https://ror.org/027jzhs47', 'no_lang_code', 1, 'https://ror.org/027jzhs47 Lavipharm (France)'), (56850, 'https://ror.org/027kj2v52', 'en', 1, 'https://ror.org/027kj2v52 American Board of Veterinary Practitioners'), (56851, 'https://ror.org/027m3cy15', 'de', 1, 'https://ror.org/027m3cy15 Global Risk Forum GRF Davos'), (56852, 'https://ror.org/027pdc339', 'no_lang_code', 1, 'https://ror.org/027pdc339 NAM System (Czechia)'), (56853, 'https://ror.org/027q2tw68', 'en', 1, 'https://ror.org/027q2tw68 National Centre for Research Methods'), (56854, 'https://ror.org/027qba521', 'no_lang_code', 1, 'https://ror.org/027qba521 NSK (United States)'), (56855, 'https://ror.org/027r3eh78', 'no_lang_code', 1, 'https://ror.org/027r3eh78 Infrastructure Management Consultants (Switzerland)'), (56856, 'https://ror.org/027r3nx49', 'en', 1, 'https://ror.org/027r3nx49 IBM Research - Australia'), (56857, 'https://ror.org/027whd792', 'no_lang_code', 1, 'https://ror.org/027whd792 Labomatic Instruments (Switzerland)'), (56858, 'https://ror.org/027x0q215', 'no_lang_code', 1, 'https://ror.org/027x0q215 Agroeko Žamberk (Czechia)'), (56859, 'https://ror.org/027z29k25', 'no_lang_code', 1, 'https://ror.org/027z29k25 UPS Technology (Czechia)'), (56860, 'https://ror.org/02800a946', 'tr', 1, 'https://ror.org/02800a946 Ankara Fıtık Merkezi'), (56861, 'https://ror.org/0280y9h11', 'no_lang_code', 1, 'https://ror.org/0280y9h11 Nikon (United States)'), (56862, 'https://ror.org/0280ypy82', 'no_lang_code', 1, 'https://ror.org/0280ypy82 Prvni Brnenska Strojirna (Czechia)'), (56863, 'https://ror.org/0281ksw84', 'en', 1, 'https://ror.org/0281ksw84 Brno Observatory and Planetarium Hvězdárna a planetárium Brno'), (56864, 'https://ror.org/0281q7a54', 'no_lang_code', 1, 'https://ror.org/0281q7a54 Gestamp (Germany)'), (56865, 'https://ror.org/0281xn193', 'en', 1, 'https://ror.org/0281xn193 Japan Society for Laser Surgery and Medicine 日本レーザー医学会'), (56866, 'https://ror.org/02820xq34', 'no_lang_code', 1, 'https://ror.org/02820xq34 Boskalis (United Kingdom)'), (56867, 'https://ror.org/028226726', 'en', 1, 'https://ror.org/028226726 Brian Mason Scientific & Technical Trust'), (56868, 'https://ror.org/0282m9c08', 'no_lang_code', 1, 'https://ror.org/0282m9c08 Kion Group (United States)'), (56869, 'https://ror.org/0283yyc15', 'no_lang_code', 1, 'https://ror.org/0283yyc15 Erilens (Czechia)'), (56870, 'https://ror.org/02876kb37', 'no_lang_code', 1, 'https://ror.org/02876kb37 ZP Otice (Czechia)'), (56871, 'https://ror.org/0287qz723', 'no_lang_code', 1, 'https://ror.org/0287qz723 Thomas Sinclair Laboratories (France)'), (56872, 'https://ror.org/02890ms09', 'en', 1, 'https://ror.org/02890ms09 Kyushu Okinawa Agricultural Research Center 九州沖縄農業研究センター'), (56873, 'https://ror.org/02897ye82', 'es', 1, 'https://ror.org/02897ye82 Fundación Alfonso Martín Escudero'), (56874, 'https://ror.org/028a35p56', 'no_lang_code', 1, 'https://ror.org/028a35p56 Strix (United Kingdom)'), (56875, 'https://ror.org/028a9tw57', 'no_lang_code', 1, 'https://ror.org/028a9tw57 Fritagro Nížkov (Czechia)'), (56876, 'https://ror.org/028b18z22', 'en', 1, 'https://ror.org/028b18z22 Carbon Cycle and Ecosystems'), (56877, 'https://ror.org/028dac806', 'en', 1, 'https://ror.org/028dac806 Arthur Smith Institute for Urology'), (56878, 'https://ror.org/028e7fy95', 'de', 1, 'https://ror.org/028e7fy95 Büro für Arbeits und Sozialpolitische Studien'), (56879, 'https://ror.org/028gfev79', 'no_lang_code', 1, 'https://ror.org/028gfev79 Mitas (Czechia)'), (56880, 'https://ror.org/028gzd671', 'no_lang_code', 1, 'https://ror.org/028gzd671 Trigad (Czechia)'), (56881, 'https://ror.org/028kw5d11', 'no_lang_code', 1, 'https://ror.org/028kw5d11 New Guinea Binatang Research Center'), (56882, 'https://ror.org/028m4pg81', 'en', 1, 'https://ror.org/028m4pg81 Kazakh Scientific Research Veterinary Institute'), (56883, 'https://ror.org/028mhjw69', 'no_lang_code', 1, 'https://ror.org/028mhjw69 Eduard Model Accessories (Czechia)'), (56884, 'https://ror.org/028mkng75', 'no_lang_code', 1, 'https://ror.org/028mkng75 ATE (Czechia)'), (56885, 'https://ror.org/028qhp125', 'no_lang_code', 1, 'https://ror.org/028qhp125 Preciosa Beauty (Czechia)'), (56886, 'https://ror.org/028qtah59', 'no_lang_code', 1, 'https://ror.org/028qtah59 Dodie (France)'), (56887, 'https://ror.org/028r88847', 'no_lang_code', 1, 'https://ror.org/028r88847 Excalibur Army (Czechia)'), (56888, 'https://ror.org/028rwje97', 'cs', 1, 'https://ror.org/028rwje97 Ochrana fauny ČR'), (56889, 'https://ror.org/028s8ff87', 'no_lang_code', 1, 'https://ror.org/028s8ff87 Iconics (Czechia)'), (56890, 'https://ror.org/028tpvk07', 'no_lang_code', 1, 'https://ror.org/028tpvk07 PSP Pohony (Czechia)'), (56891, 'https://ror.org/028vpwk62', 'no_lang_code', 1, 'https://ror.org/028vpwk62 Sady Klášterec nad Ohří (Czechia)'), (56892, 'https://ror.org/028x09v05', 'no_lang_code', 1, 'https://ror.org/028x09v05 Portasol (Ireland)'), (56893, 'https://ror.org/028xcfg40', 'en', 1, 'https://ror.org/028xcfg40 P.S. Pasternak Research Institute for Mountain Forestry Украинский научно-исследовательский институт горного лесоводства'), (56894, 'https://ror.org/028xfa567', 'en', 1, 'https://ror.org/028xfa567 Arkansas Hunger Relief Alliance'), (56895, 'https://ror.org/028yn3418', 'en', 1, 'https://ror.org/028yn3418 Institute of Architecture and Urban & Spatial Planning of Serbia Институт за архитектуру и урбанизам Србије'), (56896, 'https://ror.org/028yqyj67', 'no_lang_code', 1, 'https://ror.org/028yqyj67 New Gen (Czechia)'), (56897, 'https://ror.org/028z16q57', 'fr', 1, 'https://ror.org/028z16q57 Institut de Biotechnologies Jacques Boy'), (56898, 'https://ror.org/029005e08', 'fr', 1, 'https://ror.org/029005e08 Département de la Santé et de l''Action Sociale'), (56899, 'https://ror.org/029081n45', 'no_lang_code', 1, 'https://ror.org/029081n45 FGR Factory (Czechia)'), (56900, 'https://ror.org/0292p9y97', 'en', 1, 'https://ror.org/0292p9y97 Pakistan Atomic Energy Commission ادارہ جوہری توانائی پاکستان'), (56901, 'https://ror.org/0293b6371', 'no_lang_code', 1, 'https://ror.org/0293b6371 Chirastar KDT (Czechia)'), (56902, 'https://ror.org/0293bgt12', 'no_lang_code', 1, 'https://ror.org/0293bgt12 Unites Systems (Czechia)'), (56903, 'https://ror.org/0294hqc16', 'no_lang_code', 1, 'https://ror.org/0294hqc16 LZ Technology (United States)'), (56904, 'https://ror.org/0298sz047', 'no_lang_code', 1, 'https://ror.org/0298sz047 AMI Communications (Czechia)'), (56905, 'https://ror.org/029c46924', 'fr', 1, 'https://ror.org/029c46924 Conseil Régional de Basse-Normandie'), (56906, 'https://ror.org/029ca0b10', 'no_lang_code', 1, 'https://ror.org/029ca0b10 Impeto Medical (France)'), (56907, 'https://ror.org/029d43v21', 'en', 1, 'https://ror.org/029d43v21 Foundation for Research and Socio Ecological Harmony'), (56908, 'https://ror.org/029ea9548', 'no_lang_code', 1, 'https://ror.org/029ea9548 Laboratoire Sicobel (France)'), (56909, 'https://ror.org/029gpxj36', 'en', 1, 'https://ror.org/029gpxj36 Texas Parent to Parent'), (56910, 'https://ror.org/029gyan70', 'no_lang_code', 1, 'https://ror.org/029gyan70 Ziemer Ophthalmic Systems (Switzerland)'), (56911, 'https://ror.org/029j6tp05', 'no_lang_code', 1, 'https://ror.org/029j6tp05 Zimmer Biomet (France)'), (56912, 'https://ror.org/029jv7h91', 'no_lang_code', 1, 'https://ror.org/029jv7h91 Huntsman (Germany)'), (56913, 'https://ror.org/029k6t707', 'en', 1, 'https://ror.org/029k6t707 Institute of Ecosystem Study Istituto per lo Studio degli Ecosistemi'), (56914, 'https://ror.org/029kacy52', 'no_lang_code', 1, 'https://ror.org/029kacy52 Český Mák (Czechia)'), (56915, 'https://ror.org/029kcrm61', 'no_lang_code', 1, 'https://ror.org/029kcrm61 Olma (Czechia)'), (56916, 'https://ror.org/029mmrr68', 'no_lang_code', 1, 'https://ror.org/029mmrr68 Capricor Therapeutics (United States)'), (56917, 'https://ror.org/029nby494', 'no_lang_code', 1, 'https://ror.org/029nby494 Epicrop Technologies (United States)'), (56918, 'https://ror.org/029p38t95', 'no_lang_code', 1, 'https://ror.org/029p38t95 MEZ (Czechia)'), (56919, 'https://ror.org/029pg7f58', 'no_lang_code', 1, 'https://ror.org/029pg7f58 Oculogica (United States)'), (56920, 'https://ror.org/029tzwe02', 'en', 1, 'https://ror.org/029tzwe02 Prevent Blindness'), (56921, 'https://ror.org/029vj4k86', 'fr', 1, 'https://ror.org/029vj4k86 Mutuelle Générale de l''Éducation Nationale'), (56922, 'https://ror.org/029vrd053', 'en', 1, 'https://ror.org/029vrd053 Nepal Centre for Contemporary Research'), (56923, 'https://ror.org/029xeav48', 'no_lang_code', 1, 'https://ror.org/029xeav48 T-string Pardubice (Czechia)'), (56924, 'https://ror.org/029y5xd69', 'cs', 1, 'https://ror.org/029y5xd69 Centrum pro Bezpečný Stát'), (56925, 'https://ror.org/02a03v538', 'en', 1, 'https://ror.org/02a03v538 The Harley School'), (56926, 'https://ror.org/02a102m23', 'no_lang_code', 1, 'https://ror.org/02a102m23 OptimSys (Czechia)'), (56927, 'https://ror.org/02a412665', 'no_lang_code', 1, 'https://ror.org/02a412665 Beton Těšovice (Czechia)'), (56928, 'https://ror.org/02a6ezh03', 'es', 1, 'https://ror.org/02a6ezh03 Consejería de Educación y Empleo'), (56929, 'https://ror.org/02aa8pv85', 'no_lang_code', 1, 'https://ror.org/02aa8pv85 Ústav Využití Plynu (Czechia)'), (56930, 'https://ror.org/02aaqrp97', 'no_lang_code', 1, 'https://ror.org/02aaqrp97 Lovochemie (Czechia)'), (56931, 'https://ror.org/02aezqa22', 'no_lang_code', 1, 'https://ror.org/02aezqa22 Letiště Ostrava Ostrava Airport (Czechia)'), (56932, 'https://ror.org/02af4h206', 'en', 1, 'https://ror.org/02af4h206 Institute of Archaeology and Ethnography ԳԱԱ ՀՆԱԳԻՏՈՒԹՅԱՆ ԵՎ ԱԶԳԱԳՐՈՒԹՅԱՆ ԻՆՍՏԻՏՈՒՏ'), (56933, 'https://ror.org/02af9ge32', 'no_lang_code', 1, 'https://ror.org/02af9ge32 CS Plasting (Czechia)'), (56934, 'https://ror.org/02afgrw28', 'no_lang_code', 1, 'https://ror.org/02afgrw28 BrioBiotech (United States)'), (56935, 'https://ror.org/02agvwy44', 'no_lang_code', 1, 'https://ror.org/02agvwy44 Von Roll (Switzerland)'), (56936, 'https://ror.org/02ak6z209', 'no_lang_code', 1, 'https://ror.org/02ak6z209 Mvb Opava (Czechia)'), (56937, 'https://ror.org/02amm2b67', 'no_lang_code', 1, 'https://ror.org/02amm2b67 Global Algae Innovations (United States)'), (56938, 'https://ror.org/02aqcpd84', 'no_lang_code', 1, 'https://ror.org/02aqcpd84 A3IP (France)'), (56939, 'https://ror.org/02aqwrz59', 'no_lang_code', 1, 'https://ror.org/02aqwrz59 R + R Burger Und Partner (Switzerland)'), (56940, 'https://ror.org/02asahb32', 'de', 1, 'https://ror.org/02asahb32 Institut Mathildenhöhe Darmstadt'), (56941, 'https://ror.org/02askmp96', 'no_lang_code', 1, 'https://ror.org/02askmp96 Mycroft Mind (Czechia)'), (56942, 'https://ror.org/02atyww07', 'no_lang_code', 1, 'https://ror.org/02atyww07 TM Jesenice (Czechia)'), (56943, 'https://ror.org/02ayg8518', 'no_lang_code', 1, 'https://ror.org/02ayg8518 Radioterapie Holešov (Czechia)'), (56944, 'https://ror.org/02b0bmh39', 'no_lang_code', 1, 'https://ror.org/02b0bmh39 Hutnická zaměstnanecká pojišťovna Česká Průmyslová Zdravotní Pojišťovna (Czechia)'), (56945, 'https://ror.org/02b2zxh20', 'no_lang_code', 1, 'https://ror.org/02b2zxh20 Biologicals (Czechia)'), (56946, 'https://ror.org/02b31q323', 'no_lang_code', 1, 'https://ror.org/02b31q323 Agrospol Agrární Družstvo (Czechia)'), (56947, 'https://ror.org/02b4eje67', 'no_lang_code', 1, 'https://ror.org/02b4eje67 Illinois Tool Works (United Kingdom)'), (56948, 'https://ror.org/02b513n57', 'no_lang_code', 1, 'https://ror.org/02b513n57 Severofrukt (Czechia)'), (56949, 'https://ror.org/02b7e7p97', 'en', 1, 'https://ror.org/02b7e7p97 Institute of Philosophy, Sociology and Law'), (56950, 'https://ror.org/02b7ead30', 'en', 1, 'https://ror.org/02b7ead30 Bureau fédéral de l''égalité entre femmes et hommes Eidgenössisches Büro für die Gleichstellung von Frau und Mann Federal Office for Gender Equality Ufficio federale per l''uguaglianza fra donna e uomo'), (56951, 'https://ror.org/02b7zfk76', 'en', 1, 'https://ror.org/02b7zfk76 Qinhuangdao Science and Technology Bureau 秦皇岛市科学技术局'), (56952, 'https://ror.org/02bam3g77', 'cs', 1, 'https://ror.org/02bam3g77 Vyšší Odborná Škola Informačních Služeb'), (56953, 'https://ror.org/02basy118', 'en', 1, 'https://ror.org/02basy118 Federation of Swiss Protestant Churches'), (56954, 'https://ror.org/02bbbxs36', 'no_lang_code', 1, 'https://ror.org/02bbbxs36 Spyron (Czechia)'), (56955, 'https://ror.org/02bbbyx25', 'en', 1, 'https://ror.org/02bbbyx25 Schweizerisches Gesundheitsobservatorium Swiss Health Observatory'), (56956, 'https://ror.org/02bcjkv07', 'no_lang_code', 1, 'https://ror.org/02bcjkv07 Rumpold (Czechia)'), (56957, 'https://ror.org/02bcs6e63', 'no_lang_code', 1, 'https://ror.org/02bcs6e63 Plant Lipids (India)'), (56958, 'https://ror.org/02bed6993', 'no_lang_code', 1, 'https://ror.org/02bed6993 Axys Varilab (Czechia)'); INSERT INTO `rors` VALUES (56959, 'https://ror.org/02bf3yr97', 'no_lang_code', 1, 'https://ror.org/02bf3yr97 Euronics Engineering (Czechia)'), (56960, 'https://ror.org/02bfj0n71', 'no_lang_code', 1, 'https://ror.org/02bfj0n71 Abbott (Ireland)'), (56961, 'https://ror.org/02bfrst79', 'cs', 1, 'https://ror.org/02bfrst79 Socioklub'), (56962, 'https://ror.org/02bg32h47', 'no_lang_code', 1, 'https://ror.org/02bg32h47 Natural (Czechia)'), (56963, 'https://ror.org/02bgabj83', 'en', 1, 'https://ror.org/02bgabj83 Center for Nutrition Policy and Promotion'), (56964, 'https://ror.org/02bhr4m87', 'en', 1, 'https://ror.org/02bhr4m87 Rodale Institute'), (56965, 'https://ror.org/02bjeev04', 'en', 1, 'https://ror.org/02bjeev04 Albanian National Training and Technical Assistance Resource Center'), (56966, 'https://ror.org/02bjrgr44', 'en', 1, 'https://ror.org/02bjrgr44 Scientific Research Institute of the Rubber Industry Научно-исследовательский институт резиновой промышленности'), (56967, 'https://ror.org/02bpbnv34', 'no_lang_code', 1, 'https://ror.org/02bpbnv34 AM–Pharma (Netherlands)'), (56968, 'https://ror.org/02bq0x116', 'en', 1, 'https://ror.org/02bq0x116 United States Customs and Border Protection'), (56969, 'https://ror.org/02brgbw95', 'no_lang_code', 1, 'https://ror.org/02brgbw95 Albertina icome Praha (Czechia)'), (56970, 'https://ror.org/02bskft61', 'no_lang_code', 1, 'https://ror.org/02bskft61 Atotech (United States)'), (56971, 'https://ror.org/02bspcn72', 'no_lang_code', 1, 'https://ror.org/02bspcn72 Strojírna Novotný (Czechia)'), (56972, 'https://ror.org/02bsxxg37', 'no_lang_code', 1, 'https://ror.org/02bsxxg37 PAGEPress (Italy)'), (56973, 'https://ror.org/02bt8gt55', 'fr', 1, 'https://ror.org/02bt8gt55 IMACTIS'), (56974, 'https://ror.org/02btcwe37', 'no_lang_code', 1, 'https://ror.org/02btcwe37 Vivendi (United States)'), (56975, 'https://ror.org/02bv9mm66', 'en', 1, 'https://ror.org/02bv9mm66 Eidgenössische Fachkommission für Biologische Sicherheit Swiss Expert Committee for Biosafety'), (56976, 'https://ror.org/02bvkk348', 'cs', 1, 'https://ror.org/02bvkk348 Národní Akademie Regionálního Managementu'), (56977, 'https://ror.org/02bx6dk74', 'no_lang_code', 1, 'https://ror.org/02bx6dk74 Orbital 2 (Czechia)'), (56978, 'https://ror.org/02byy6y80', 'en', 1, 'https://ror.org/02byy6y80 Palm Beach Gardens Medical Center'), (56979, 'https://ror.org/02bz4qp22', 'en', 1, 'https://ror.org/02bz4qp22 Diabetes Research and Wellness Foundation'), (56980, 'https://ror.org/02bzbbw22', 'no_lang_code', 1, 'https://ror.org/02bzbbw22 LaserTherm (Czechia)'), (56981, 'https://ror.org/02bzv8r58', 'en', 1, 'https://ror.org/02bzv8r58 American Comparative Literature Association'), (56982, 'https://ror.org/02c024156', 'no_lang_code', 1, 'https://ror.org/02c024156 Elmet (Czechia)'), (56983, 'https://ror.org/02c23zs54', 'no_lang_code', 1, 'https://ror.org/02c23zs54 Adidas (Canada)'), (56984, 'https://ror.org/02c2fwh71', 'en', 1, 'https://ror.org/02c2fwh71 Molecular Medicine Research Institute'), (56985, 'https://ror.org/02c4b8082', 'no_lang_code', 1, 'https://ror.org/02c4b8082 Velaz (Czechia)'), (56986, 'https://ror.org/02c51sy34', 'cs', 1, 'https://ror.org/02c51sy34 Ředitelství Silnic a Dálnic'), (56987, 'https://ror.org/02c62pw26', 'no_lang_code', 1, 'https://ror.org/02c62pw26 Hosoya Schaefer Architects (Switzerland)'), (56988, 'https://ror.org/02c7agb90', 'no_lang_code', 1, 'https://ror.org/02c7agb90 Ryor (Czechia)'), (56989, 'https://ror.org/02c7g6d72', 'en', 1, 'https://ror.org/02c7g6d72 Lauener Foundation for Analytical Philosophy Lauener-Stiftung'), (56990, 'https://ror.org/02c7hqm03', 'no_lang_code', 1, 'https://ror.org/02c7hqm03 Laboratoires Spiral (France)'), (56991, 'https://ror.org/02c900574', 'en', 1, 'https://ror.org/02c900574 Powder Metallurgy Institute ИНСТИТУТ ПОРОШКОВОЙ МЕТАЛЛУРГИИ'), (56992, 'https://ror.org/02c9pqe95', 'en', 1, 'https://ror.org/02c9pqe95 Vidda Foundation'), (56993, 'https://ror.org/02cbc9x18', 'en', 1, 'https://ror.org/02cbc9x18 Ural Institute of Metals'), (56994, 'https://ror.org/02cbxva55', 'en', 1, 'https://ror.org/02cbxva55 Wieboldt Foundation'), (56995, 'https://ror.org/02cdjbt38', 'en', 1, 'https://ror.org/02cdjbt38 S. Mark Taper Foundation'), (56996, 'https://ror.org/02cf3zf10', 'no_lang_code', 1, 'https://ror.org/02cf3zf10 Strojírna Tyc (Czechia)'), (56997, 'https://ror.org/02chg1452', 'no_lang_code', 1, 'https://ror.org/02chg1452 Institut Oenologique de Champagne (France)'), (56998, 'https://ror.org/02cm3s998', 'de', 1, 'https://ror.org/02cm3s998 Donauspital'), (56999, 'https://ror.org/02cn3rm21', 'en', 1, 'https://ror.org/02cn3rm21 Ludwig Cancer Research'), (57000, 'https://ror.org/02crntj88', 'en', 1, 'https://ror.org/02crntj88 Institute of Geology and Nature Management, Far Eastern Branch of the Russian Academy of Sciences Институт геологии и природопользования'), (57001, 'https://ror.org/02csezg26', 'no_lang_code', 1, 'https://ror.org/02csezg26 MND Drilling & Services (Czechia)'), (57002, 'https://ror.org/02cttc493', 'en', 1, 'https://ror.org/02cttc493 Alliance Forum Foundation'), (57003, 'https://ror.org/02ctvf237', 'no_lang_code', 1, 'https://ror.org/02ctvf237 SAM Holding (Czechia)'), (57004, 'https://ror.org/02cv2sp17', 'no_lang_code', 1, 'https://ror.org/02cv2sp17 ASC Instrument (France)'), (57005, 'https://ror.org/02cvt8e16', 'en', 1, 'https://ror.org/02cvt8e16 Center for Pediatric Endocrinology Zurich Pädiatrisch-Endokrinologisches Zentrum Zürich'), (57006, 'https://ror.org/02cw1xf64', 'no_lang_code', 1, 'https://ror.org/02cw1xf64 A. KTI (Czechia)'), (57007, 'https://ror.org/02cxejv02', 'en', 1, 'https://ror.org/02cxejv02 Epilepsy Study Consortium'), (57008, 'https://ror.org/02cxp1807', 'en', 1, 'https://ror.org/02cxp1807 Denver Zoo'), (57009, 'https://ror.org/02cxqcz78', 'en', 1, 'https://ror.org/02cxqcz78 Korean Institute of Footwear and Leather Technology 한국신발피혁연구원'), (57010, 'https://ror.org/02cyn6b25', 'cs', 1, 'https://ror.org/02cyn6b25 Pelčák a Partner Architekti'), (57011, 'https://ror.org/02cynnb40', 'en', 1, 'https://ror.org/02cynnb40 The American Society of Criminology'), (57012, 'https://ror.org/02czagv77', 'no_lang_code', 1, 'https://ror.org/02czagv77 SusChem České Technologické Platformy pro Udržitelnou Chemii'), (57013, 'https://ror.org/02d03yg51', 'no_lang_code', 1, 'https://ror.org/02d03yg51 Poll (Czechia)'), (57014, 'https://ror.org/02d57p683', 'cs', 1, 'https://ror.org/02d57p683 Administration of the National Park České Švýcarsko'), (57015, 'https://ror.org/02d5c3630', 'fr', 1, 'https://ror.org/02d5c3630 Institution de Lavigny'), (57016, 'https://ror.org/02d641m75', 'fr', 1, 'https://ror.org/02d641m75 Télévie'), (57017, 'https://ror.org/02d6kc626', 'en', 1, 'https://ror.org/02d6kc626 Olin E. Teague Veterans Medical Center'), (57018, 'https://ror.org/02d6mgz84', 'en', 1, 'https://ror.org/02d6mgz84 Eläinlääketieteen Tutkimuksen Tukisäätiö Finnish Veterinary Foundation'), (57019, 'https://ror.org/02d7qtk86', 'no_lang_code', 1, 'https://ror.org/02d7qtk86 Parkservis (Czechia)'), (57020, 'https://ror.org/02d823f39', 'no_lang_code', 1, 'https://ror.org/02d823f39 Trendrail (United KIngdom)'), (57021, 'https://ror.org/02db0m975', 'en', 1, 'https://ror.org/02db0m975 Sungmo Eye Hospital'), (57022, 'https://ror.org/02dbdb897', 'no_lang_code', 1, 'https://ror.org/02dbdb897 Ekotechnika (Czechia)'), (57023, 'https://ror.org/02dc2kg74', 'no_lang_code', 1, 'https://ror.org/02dc2kg74 Aurea Agrosciences (France)'), (57024, 'https://ror.org/02dddyz58', 'no_lang_code', 1, 'https://ror.org/02dddyz58 Johnson Controls (Czechia)'), (57025, 'https://ror.org/02ddz0p49', 'no_lang_code', 1, 'https://ror.org/02ddz0p49 Inomech (Czechia)'), (57026, 'https://ror.org/02dfnfz19', 'en', 1, 'https://ror.org/02dfnfz19 Women''s International League for Peace and Freedom'), (57027, 'https://ror.org/02dhdj549', 'fr', 1, 'https://ror.org/02dhdj549 Institut et Musée des Suisses dans le monde'), (57028, 'https://ror.org/02dhhnz05', 'no_lang_code', 1, 'https://ror.org/02dhhnz05 Pars Komponenty (Czechia)'), (57029, 'https://ror.org/02djs4g52', 'no_lang_code', 1, 'https://ror.org/02djs4g52 Moser (Czechia)'), (57030, 'https://ror.org/02dkk5v76', 'no_lang_code', 1, 'https://ror.org/02dkk5v76 Letiště Vodochody (Czechia) Vodochody Airport'), (57031, 'https://ror.org/02dknz829', 'no_lang_code', 1, 'https://ror.org/02dknz829 Cezea - Šlechtitelská Stanice (Czechia)'), (57032, 'https://ror.org/02dkph265', 'en', 1, 'https://ror.org/02dkph265 Russian State Scientific Center for Robotics and Technical Cybernetics ЦНИИ робототехники и технической кибернетики'), (57033, 'https://ror.org/02dmdfh75', 'no_lang_code', 1, 'https://ror.org/02dmdfh75 2VV (Czechia)'), (57034, 'https://ror.org/02dmzyv54', 'en', 1, 'https://ror.org/02dmzyv54 Sitka Center for Art and Ecology'), (57035, 'https://ror.org/02drx6g21', 'en', 1, 'https://ror.org/02drx6g21 The Local Crowd'), (57036, 'https://ror.org/02dt42634', 'da', 1, 'https://ror.org/02dt42634 Otto Mønsteds Fond'), (57037, 'https://ror.org/02dw1m470', 'no_lang_code', 1, 'https://ror.org/02dw1m470 Conteg (Czechia)'), (57038, 'https://ror.org/02dw90x37', 'de', 1, 'https://ror.org/02dw90x37 Schweizerischer Gewerkschaftsbund Union syndicale suisse Unione sindacale svizzera'), (57039, 'https://ror.org/02dwsbm05', 'no_lang_code', 1, 'https://ror.org/02dwsbm05 Melet Schloesing Laboratoires (France)'), (57040, 'https://ror.org/02dzmns02', 'no_lang_code', 1, 'https://ror.org/02dzmns02 Mikrop Čebín (Czechia)'), (57041, 'https://ror.org/02e18ra65', 'no_lang_code', 1, 'https://ror.org/02e18ra65 Av Engineering (Czechia)'), (57042, 'https://ror.org/02e281029', 'no_lang_code', 1, 'https://ror.org/02e281029 Institut Ocelových Konstrukcí (Czechia)'), (57043, 'https://ror.org/02e3p0n79', 'en', 1, 'https://ror.org/02e3p0n79 Washington Square Health Foundation'), (57044, 'https://ror.org/02e6vz398', 'en', 1, 'https://ror.org/02e6vz398 Agentura regionálního rozvoje Regional Development Agency'), (57045, 'https://ror.org/02e72p904', 'no_lang_code', 1, 'https://ror.org/02e72p904 SGS (Czechia)'), (57046, 'https://ror.org/02e801388', 'no_lang_code', 1, 'https://ror.org/02e801388 Bio-Competence Centre of Healthy Dairy Products (Estonia) Tervisliku Piima Biotehnoloogiate Arenduskeskus'), (57047, 'https://ror.org/02e9grz11', 'no_lang_code', 1, 'https://ror.org/02e9grz11 CIMTO (Czechia) Centrum pro informace a mechanické testování obalů'), (57048, 'https://ror.org/02e9szc72', 'en', 1, 'https://ror.org/02e9szc72 Shahab Danesh University سامانه ها - موسسه آموزش عالی شهاب دانش'), (57049, 'https://ror.org/02eafbm53', 'sv', 1, 'https://ror.org/02eafbm53 Stiftelsen Oscar och Lili Lamms Minne'), (57050, 'https://ror.org/02ean3b70', 'no_lang_code', 1, 'https://ror.org/02ean3b70 Mvvs (Czechia)'), (57051, 'https://ror.org/02eas8236', 'no_lang_code', 1, 'https://ror.org/02eas8236 Ernst Leopold (Czechia)'), (57052, 'https://ror.org/02ebsfr31', 'no_lang_code', 1, 'https://ror.org/02ebsfr31 AGRO Stošíkovice (Czechia)'), (57053, 'https://ror.org/02ec6yy56', 'no_lang_code', 1, 'https://ror.org/02ec6yy56 Arkopharma (France)'), (57054, 'https://ror.org/02ed1t230', 'de', 1, 'https://ror.org/02ed1t230 Sprachatlas der Deutschen Schweiz'), (57055, 'https://ror.org/02efjfe53', 'cs', 1, 'https://ror.org/02efjfe53 Česká Kinantropologická Společnost'), (57056, 'https://ror.org/02eftzg28', 'no_lang_code', 1, 'https://ror.org/02eftzg28 Sherlog Trace (Czechia)'), (57057, 'https://ror.org/02efzs521', 'en', 1, 'https://ror.org/02efzs521 United Way of Gratiot & Isabella Counties'), (57058, 'https://ror.org/02eg7y103', 'fr', 1, 'https://ror.org/02eg7y103 Direction de la Sécurité et de la Justice'), (57059, 'https://ror.org/02eh4at60', 'no_lang_code', 1, 'https://ror.org/02eh4at60 VODNI DILA - TBD (Czechia)'), (57060, 'https://ror.org/02ejgsx19', 'en', 1, 'https://ror.org/02ejgsx19 Ramah Navajo School Board'), (57061, 'https://ror.org/02en4cz69', 'no_lang_code', 1, 'https://ror.org/02en4cz69 Viapont (Czechia)'), (57062, 'https://ror.org/02enra703', 'no_lang_code', 1, 'https://ror.org/02enra703 SCL International'), (57063, 'https://ror.org/02ep9me51', 'en', 1, 'https://ror.org/02ep9me51 Tonbridge School'), (57064, 'https://ror.org/02ephh346', 'en', 1, 'https://ror.org/02ephh346 Metabrain Research'), (57065, 'https://ror.org/02eqdmy88', 'en', 1, 'https://ror.org/02eqdmy88 Geological Survey of Kyrgyzstan Геологическая служба Кыргызстана'), (57066, 'https://ror.org/02errzw26', 'en', 1, 'https://ror.org/02errzw26 Cosmetics Europe'), (57067, 'https://ror.org/02etwv439', 'no_lang_code', 1, 'https://ror.org/02etwv439 Flexisander (Czechia)'), (57068, 'https://ror.org/02ew8y783', 'no_lang_code', 1, 'https://ror.org/02ew8y783 Magnetic Development (United States)'), (57069, 'https://ror.org/02ex12682', 'en', 1, 'https://ror.org/02ex12682 Michigan Hand & Wrist'), (57070, 'https://ror.org/02eyspm09', 'no_lang_code', 1, 'https://ror.org/02eyspm09 Kuiper Medical Instruments (Netherlands) Kuiper Medische Instrumenten'), (57071, 'https://ror.org/02ez1h514', 'no_lang_code', 1, 'https://ror.org/02ez1h514 Center for Social Research Analitika'), (57072, 'https://ror.org/02ezey555', 'no_lang_code', 1, 'https://ror.org/02ezey555 Strittmatter Partner (Switzerland)'), (57073, 'https://ror.org/02f0a4552', 'en', 1, 'https://ror.org/02f0a4552 Czech Scientific Society for Mycology Česká Vědecká Společnost Pro Mykologii'), (57074, 'https://ror.org/02f0cvc21', 'no_lang_code', 1, 'https://ror.org/02f0cvc21 Hestego (Czechia)'), (57075, 'https://ror.org/02f0n4z35', 'en', 1, 'https://ror.org/02f0n4z35 Technologická platforma Energetická bezpečnost ČR Technology Platform Energy Security'), (57076, 'https://ror.org/02f0t3e51', 'en', 1, 'https://ror.org/02f0t3e51 National Center of Space Research and Technology'), (57077, 'https://ror.org/02f1jpe62', 'en', 1, 'https://ror.org/02f1jpe62 South West Thames Institute for Renal Research'), (57078, 'https://ror.org/02f1wny42', 'en', 1, 'https://ror.org/02f1wny42 Persian Scholarship Foundation'), (57079, 'https://ror.org/02f2rgc17', 'en', 1, 'https://ror.org/02f2rgc17 VA Midwest Health Care Network'), (57080, 'https://ror.org/02f3p0s49', 'de', 1, 'https://ror.org/02f3p0s49 Stockalperstiftung'), (57081, 'https://ror.org/02f5r3008', 'en', 1, 'https://ror.org/02f5r3008 Stichting Sem Presser Archief'), (57082, 'https://ror.org/02f66na56', 'no_lang_code', 1, 'https://ror.org/02f66na56 Akzo Nobel (Czechia)'), (57083, 'https://ror.org/02f6ecw55', 'fr', 1, 'https://ror.org/02f6ecw55 Entreprise de Fournitures et d''Assistance Médicale'), (57084, 'https://ror.org/02faz3r42', 'cs', 1, 'https://ror.org/02faz3r42 Vyšší Odborná Škola Střední Průmyslová Škola'), (57085, 'https://ror.org/02fcpv249', 'en', 1, 'https://ror.org/02fcpv249 Technologická Platforma Udržitelná energetika Technology Platform Sustainable Energy for the Czech Republic'), (57086, 'https://ror.org/02fhcbb53', 'no_lang_code', 1, 'https://ror.org/02fhcbb53 Bio-Rad (United Kingdom)'), (57087, 'https://ror.org/02fmfgp89', 'no_lang_code', 1, 'https://ror.org/02fmfgp89 Termosondy Kladno (Czechia)'), (57088, 'https://ror.org/02fmm1979', 'de', 1, 'https://ror.org/02fmm1979 Spitäler Schaffhausen'), (57089, 'https://ror.org/02fmtdz23', 'no_lang_code', 1, 'https://ror.org/02fmtdz23 Duckworth & Kent (United Kingdom)'), (57090, 'https://ror.org/02fmy9v62', 'en', 1, 'https://ror.org/02fmy9v62 Institute of Fruit Tree and Tea Science 果樹茶業研究部門'), (57091, 'https://ror.org/02fn5yv16', 'no_lang_code', 1, 'https://ror.org/02fn5yv16 KNZ (Czechia)'), (57092, 'https://ror.org/02fpe5k66', 'en', 1, 'https://ror.org/02fpe5k66 British Institute of Technology and E-commerce'), (57093, 'https://ror.org/02frayk71', 'no_lang_code', 1, 'https://ror.org/02frayk71 PerkinElmer (Ireland)'), (57094, 'https://ror.org/02fwjaz02', 'cs', 1, 'https://ror.org/02fwjaz02 Život90'), (57095, 'https://ror.org/02fwyek38', 'no_lang_code', 1, 'https://ror.org/02fwyek38 Cycleurope (Sweden)'), (57096, 'https://ror.org/02fx0j357', 'no_lang_code', 1, 'https://ror.org/02fx0j357 Continuous Acquisition and Lifecycle Support (Czechia)'), (57097, 'https://ror.org/02fy0bw29', 'no_lang_code', 1, 'https://ror.org/02fy0bw29 Remerx (Czechia)'), (57098, 'https://ror.org/02fyz1125', 'no_lang_code', 1, 'https://ror.org/02fyz1125 AmeriQual Group (United States)'), (57099, 'https://ror.org/02g2fp141', 'en', 1, 'https://ror.org/02g2fp141 Reinberger Foundation'), (57100, 'https://ror.org/02g3wex31', 'no_lang_code', 1, 'https://ror.org/02g3wex31 Halíř A Diviš (Czechia)'), (57101, 'https://ror.org/02g63mv84', 'no_lang_code', 1, 'https://ror.org/02g63mv84 Strabag Rail (Czechia)'), (57102, 'https://ror.org/02g867t84', 'no_lang_code', 1, 'https://ror.org/02g867t84 Impact Instruments (South Africa)'), (57103, 'https://ror.org/02g8ke488', 'en', 1, 'https://ror.org/02g8ke488 VA Sunshine Healthcare Network'), (57104, 'https://ror.org/02g9eyr35', 'de', 1, 'https://ror.org/02g9eyr35 Forum für Zeitfragen'), (57105, 'https://ror.org/02gb0nx59', 'no_lang_code', 1, 'https://ror.org/02gb0nx59 Centre d''Orthro-Podologie & d''Orthopédie Thion Medical (France)'), (57106, 'https://ror.org/02gb28e58', 'no_lang_code', 1, 'https://ror.org/02gb28e58 Hässig Sustech (Switzerland)'), (57107, 'https://ror.org/02gbye032', 'no_lang_code', 1, 'https://ror.org/02gbye032 Medkonsult (Czechia)'), (57108, 'https://ror.org/02gcrjm32', 'fr', 1, 'https://ror.org/02gcrjm32 Méthode Jeanne Piaubert institute'), (57109, 'https://ror.org/02gfxpt49', 'en', 1, 'https://ror.org/02gfxpt49 Seasteading Institute'), (57110, 'https://ror.org/02ghcyg39', 'en', 1, 'https://ror.org/02ghcyg39 Läkemedelsakademin Swedish Academy of Pharmaceutical Sciences'), (57111, 'https://ror.org/02ghv2v70', 'no_lang_code', 1, 'https://ror.org/02ghv2v70 Statek Horní Dvorce (Czechia)'), (57112, 'https://ror.org/02gk2rq91', 'fr', 1, 'https://ror.org/02gk2rq91 École Secondaire de Nyon Marens'), (57113, 'https://ror.org/02gkjb077', 'no_lang_code', 1, 'https://ror.org/02gkjb077 EVC Group (Czechia)'), (57114, 'https://ror.org/02gktfy53', 'no_lang_code', 1, 'https://ror.org/02gktfy53 Tyrolit (Czechia)'), (57115, 'https://ror.org/02gkttc21', 'no_lang_code', 1, 'https://ror.org/02gkttc21 Atelier T plan (Czechia)'), (57116, 'https://ror.org/02gkvw867', 'no_lang_code', 1, 'https://ror.org/02gkvw867 Zemcheba (Czechia)'), (57117, 'https://ror.org/02gkz9k46', 'no_lang_code', 1, 'https://ror.org/02gkz9k46 Kvados (Czechia)'), (57118, 'https://ror.org/02gmhaq29', 'de', 1, 'https://ror.org/02gmhaq29 Gerichte Zürich'), (57119, 'https://ror.org/02gn6ta77', 'en', 1, 'https://ror.org/02gn6ta77 Isaac Newton Trust'), (57120, 'https://ror.org/02gq5b653', 'no_lang_code', 1, 'https://ror.org/02gq5b653 Electro Automation (Ireland)'), (57121, 'https://ror.org/02gqwrx54', 'no_lang_code', 1, 'https://ror.org/02gqwrx54 Digiteo'), (57122, 'https://ror.org/02gsfpt44', 'no_lang_code', 1, 'https://ror.org/02gsfpt44 Pragochema (Czechia)'), (57123, 'https://ror.org/02gvfwj85', 'en', 1, 'https://ror.org/02gvfwj85 Jilin Province Youth Development Foundation 吉林省青少年发展基金会'), (57124, 'https://ror.org/02gw7aa83', 'no_lang_code', 1, 'https://ror.org/02gw7aa83 Alimpex Food (Czechia)'), (57125, 'https://ror.org/02gx1h855', 'no_lang_code', 1, 'https://ror.org/02gx1h855 Mediap (Czechia)'), (57126, 'https://ror.org/02gx53y06', 'no_lang_code', 1, 'https://ror.org/02gx53y06 Ab Medica (France)'), (57127, 'https://ror.org/02gyk4017', 'no_lang_code', 1, 'https://ror.org/02gyk4017 Espace Morava (Czechia)'), (57128, 'https://ror.org/02h3yx664', 'no_lang_code', 1, 'https://ror.org/02h3yx664 Protean (Czechia)'), (57129, 'https://ror.org/02h4pfs82', 'en', 1, 'https://ror.org/02h4pfs82 Institute of Industrial Engineering'), (57130, 'https://ror.org/02h5et257', 'no_lang_code', 1, 'https://ror.org/02h5et257 Koma (Czechia)'), (57131, 'https://ror.org/02h6xem40', 'en', 1, 'https://ror.org/02h6xem40 Czech Society for Nutrition Společnost pro výživu'), (57132, 'https://ror.org/02h71tm83', 'en', 1, 'https://ror.org/02h71tm83 SME Education Foundation'), (57133, 'https://ror.org/02hb3dy29', 'cs', 1, 'https://ror.org/02hb3dy29 Asociace Českých a Slovenských Zinkoven'), (57134, 'https://ror.org/02hbm4s94', 'no_lang_code', 1, 'https://ror.org/02hbm4s94 Dover (France)'), (57135, 'https://ror.org/02hbskw66', 'en', 1, 'https://ror.org/02hbskw66 Central Institute for Women in Agriculture'), (57136, 'https://ror.org/02hce2n63', 'it', 1, 'https://ror.org/02hce2n63 Biblioteca Cantonale di Lugano'), (57137, 'https://ror.org/02hdsgf16', 'no_lang_code', 1, 'https://ror.org/02hdsgf16 Cereon Biotechnology (United States)'), (57138, 'https://ror.org/02hekez22', 'en', 1, 'https://ror.org/02hekez22 Sport Foundation'), (57139, 'https://ror.org/02hfcar63', 'en', 1, 'https://ror.org/02hfcar63 Directorate General of Commercial Intelligence and Statistics'), (57140, 'https://ror.org/02hg9fh47', 'no_lang_code', 1, 'https://ror.org/02hg9fh47 Univerza (Czechia)'), (57141, 'https://ror.org/02hhv3y44', 'no_lang_code', 1, 'https://ror.org/02hhv3y44 Speltronic (Czechia)'), (57142, 'https://ror.org/02hmf0879', 'en', 1, 'https://ror.org/02hmf0879 Northern Sydney Local Health District'), (57143, 'https://ror.org/02hqqcn82', 'en', 1, 'https://ror.org/02hqqcn82 VA Eastern Kansas Health Care System'), (57144, 'https://ror.org/02hswyz47', 'no_lang_code', 1, 'https://ror.org/02hswyz47 Next Generation Technology (United States)'), (57145, 'https://ror.org/02hv5e369', 'no_lang_code', 1, 'https://ror.org/02hv5e369 Roche (China)'), (57146, 'https://ror.org/02hyvpg31', 'no_lang_code', 1, 'https://ror.org/02hyvpg31 Foxconn (Cayman Islands)'), (57147, 'https://ror.org/02hzadm05', 'cs', 1, 'https://ror.org/02hzadm05 Rybářství Kardašova Řečice'), (57148, 'https://ror.org/02j12yp62', 'no_lang_code', 1, 'https://ror.org/02j12yp62 Elsklo (Czechia)'), (57149, 'https://ror.org/02j4h8a39', 'pt', 1, 'https://ror.org/02j4h8a39 Boticário Group Foundation, Fundação Grupo Boticário'), (57150, 'https://ror.org/02j572e46', 'no_lang_code', 1, 'https://ror.org/02j572e46 Danaher (Ireland)'), (57151, 'https://ror.org/02j5hfj76', 'fr', 1, 'https://ror.org/02j5hfj76 Department of Education, Youth and Culture Département de la Formation, de la Jeunesse et de la Culture'), (57152, 'https://ror.org/02j5xfp60', 'no_lang_code', 1, 'https://ror.org/02j5xfp60 AOMB Intellectual Property (Netherlands)'), (57153, 'https://ror.org/02j6sa144', 'no_lang_code', 1, 'https://ror.org/02j6sa144 Protip Medical (France)'), (57154, 'https://ror.org/02j716y15', 'de', 1, 'https://ror.org/02j716y15 Kantonsschule Alpenquai Luzern'), (57155, 'https://ror.org/02j9na081', 'no_lang_code', 1, 'https://ror.org/02j9na081 Vodní zdroje Holešov (Czechia)'), (57156, 'https://ror.org/02ja02d95', 'no_lang_code', 1, 'https://ror.org/02ja02d95 Dr Heinrich Jäckli (Switzerland)'), (57157, 'https://ror.org/02ja04815', 'no_lang_code', 1, 'https://ror.org/02ja04815 Druchema (Czechia)'), (57158, 'https://ror.org/02jasgp09', 'en', 1, 'https://ror.org/02jasgp09 Wasie Foundation'), (57159, 'https://ror.org/02jcwga55', 'es', 1, 'https://ror.org/02jcwga55 Federación Alba Andalucía'), (57160, 'https://ror.org/02jehgd93', 'en', 1, 'https://ror.org/02jehgd93 Singapore International Foundation Yayasan Antarabangsa Singapura 新加坡国际基金会'), (57161, 'https://ror.org/02jj87h97', 'no_lang_code', 1, 'https://ror.org/02jj87h97 Elcotherm (Switzerland)'), (57162, 'https://ror.org/02jkjsy62', 'en', 1, 'https://ror.org/02jkjsy62 S. D. Bechtel, Jr. Foundation'), (57163, 'https://ror.org/02jkxh593', 'no_lang_code', 1, 'https://ror.org/02jkxh593 Tocoen (Czechia)'), (57164, 'https://ror.org/02jkzvy92', 'no_lang_code', 1, 'https://ror.org/02jkzvy92 Continental (Canada)'), (57165, 'https://ror.org/02jmdhd96', 'no_lang_code', 1, 'https://ror.org/02jmdhd96 Unidataz (Czechia)'), (57166, 'https://ror.org/02jmje486', 'cs', 1, 'https://ror.org/02jmje486 Dětské Centrum Paprsek'), (57167, 'https://ror.org/02jpkyy67', 'no_lang_code', 1, 'https://ror.org/02jpkyy67 Geodézie Topos (Czechia)'), (57168, 'https://ror.org/02jpm4g18', 'no_lang_code', 1, 'https://ror.org/02jpm4g18 Grant Instruments (United Kingdom)'), (57169, 'https://ror.org/02jqm1g69', 'no_lang_code', 1, 'https://ror.org/02jqm1g69 Biotronik (Switzerland)'), (57170, 'https://ror.org/02jrc9g69', 'fr', 1, 'https://ror.org/02jrc9g69 Gouvernement Princier'), (57171, 'https://ror.org/02jtr7413', 'no_lang_code', 1, 'https://ror.org/02jtr7413 Takasago (United States)'), (57172, 'https://ror.org/02jv3yx22', 'en', 1, 'https://ror.org/02jv3yx22 G.V. Karpenko Physical-Mechanical Institute ФІЗИКО-МЕХАНІЧНИЙ ІНСТИТУТ ІМ. Г.В. КАРПЕНКА НAH УКРАЇНИ'), (57173, 'https://ror.org/02jvzs806', 'en', 1, 'https://ror.org/02jvzs806 East Midlands Academic Health Science Network'), (57174, 'https://ror.org/02jx9xx30', 'en', 1, 'https://ror.org/02jx9xx30 One in Five Association'), (57175, 'https://ror.org/02jygx492', 'cs', 1, 'https://ror.org/02jygx492 Museum of Kroměříž'), (57176, 'https://ror.org/02jz7nx66', 'en', 1, 'https://ror.org/02jz7nx66 Stillbirth Foundation'), (57177, 'https://ror.org/02jzd3t55', 'no_lang_code', 1, 'https://ror.org/02jzd3t55 KP Projekt (Czechia)'), (57178, 'https://ror.org/02k0pre66', 'no_lang_code', 1, 'https://ror.org/02k0pre66 Strojírny Bohdalice (Czechia)'), (57179, 'https://ror.org/02k13v236', 'no_lang_code', 1, 'https://ror.org/02k13v236 Komutex (Czechia)'), (57180, 'https://ror.org/02k1h3369', 'fr', 1, 'https://ror.org/02k1h3369 Institut de Recherche Fondamentale en Technologies Solaire'), (57181, 'https://ror.org/02k45v753', 'no_lang_code', 1, 'https://ror.org/02k45v753 Vossloh (France)'), (57182, 'https://ror.org/02k4dcs46', 'en', 1, 'https://ror.org/02k4dcs46 National Engineering Research Center of Electromagnetic Radiation Control Materials 国家电磁辐射控制材料工程技术研究中心'), (57183, 'https://ror.org/02k4k2v28', 'fr', 1, 'https://ror.org/02k4k2v28 Office Médico Pédagogique'), (57184, 'https://ror.org/02k520m42', 'de', 1, 'https://ror.org/02k520m42 Imamed Radiologie Nordwest'), (57185, 'https://ror.org/02k58vv46', 'en', 1, 'https://ror.org/02k58vv46 Institute for Work Research and Organizational Consultancy'), (57186, 'https://ror.org/02k7tdq49', 'no_lang_code', 1, 'https://ror.org/02k7tdq49 Pokorný (Czechia)'), (57187, 'https://ror.org/02k7w8856', 'de', 1, 'https://ror.org/02k7w8856 Keramikinstitut'), (57188, 'https://ror.org/02k8hq379', 'no_lang_code', 1, 'https://ror.org/02k8hq379 Berman Group (Czechia)'), (57189, 'https://ror.org/02k944677', 'no_lang_code', 1, 'https://ror.org/02k944677 Mero Čr (Czechia)'), (57190, 'https://ror.org/02k9nmp07', 'en', 1, 'https://ror.org/02k9nmp07 Radiological Society of Finland Suomen Radiologiyhdistys'), (57191, 'https://ror.org/02kdrgt12', 'da', 1, 'https://ror.org/02kdrgt12 A.P. Møller og Hustru Chastine Mc-Kinney Møllers Fond'), (57192, 'https://ror.org/02keacx90', 'de', 1, 'https://ror.org/02keacx90 Kompetenzzentrum Gesundheit und Alter'), (57193, 'https://ror.org/02kez5066', 'no_lang_code', 1, 'https://ror.org/02kez5066 Backer Elektro (Czechia)'), (57194, 'https://ror.org/02kh7ez55', 'no_lang_code', 1, 'https://ror.org/02kh7ez55 Thomson Reuters (Switzerland)'), (57195, 'https://ror.org/02knn1508', 'en', 1, 'https://ror.org/02knn1508 Research and Technological Institute of Biological Industry научно-исследовательский и технологический институт биологической промышленности'), (57196, 'https://ror.org/02kpcqm42', 'no_lang_code', 1, 'https://ror.org/02kpcqm42 Tesla (United States)'), (57197, 'https://ror.org/02kq0w941', 'en', 1, 'https://ror.org/02kq0w941 All-Russian Scientific Research Institute of metallurgical heat Всероссийский научно-исследовательский институт металлургической теплотехники'), (57198, 'https://ror.org/02kq92y46', 'en', 1, 'https://ror.org/02kq92y46 Shanghai Education Development Foundation 上海市教育发展基金会'), (57199, 'https://ror.org/02kqef212', 'en', 1, 'https://ror.org/02kqef212 Spark Imagination and Science Center'), (57200, 'https://ror.org/02kqmq412', 'no_lang_code', 1, 'https://ror.org/02kqmq412 Hitachi (South Korea) 히타치'), (57201, 'https://ror.org/02kqtfa81', 'en', 1, 'https://ror.org/02kqtfa81 Medical Solutions'), (57202, 'https://ror.org/02krcbc65', 'no_lang_code', 1, 'https://ror.org/02krcbc65 ABB (Japan)'), (57203, 'https://ror.org/02krm5y67', 'no_lang_code', 1, 'https://ror.org/02krm5y67 Prague Casting Services (Czechia)'), (57204, 'https://ror.org/02krq1637', 'no_lang_code', 1, 'https://ror.org/02krq1637 Parker Hannifin (France)'), (57205, 'https://ror.org/02ktqga51', 'no_lang_code', 1, 'https://ror.org/02ktqga51 Euroseal (Czechia)'), (57206, 'https://ror.org/02kv04939', 'en', 1, 'https://ror.org/02kv04939 Zhengzhou City Science and Technology Bureau 郑州市科技局'), (57207, 'https://ror.org/02kvhs631', 'en', 1, 'https://ror.org/02kvhs631 Benson-Henry Institute'), (57208, 'https://ror.org/02kx3za73', 'no_lang_code', 1, 'https://ror.org/02kx3za73 Alfarma (Czechia)'), (57209, 'https://ror.org/02kx4r613', 'en', 1, 'https://ror.org/02kx4r613 Girvan Institute of Technology'), (57210, 'https://ror.org/02kxz7t24', 'no_lang_code', 1, 'https://ror.org/02kxz7t24 NWT (Czechia)'), (57211, 'https://ror.org/02ky4wg41', 'no_lang_code', 1, 'https://ror.org/02ky4wg41 Asekol (Czechia)'), (57212, 'https://ror.org/02m0v4a06', 'no_lang_code', 1, 'https://ror.org/02m0v4a06 Atos (United States)'), (57213, 'https://ror.org/02m1c9x13', 'no_lang_code', 1, 'https://ror.org/02m1c9x13 Kellogg’s Research Labs (United States)'), (57214, 'https://ror.org/02m4t4k66', 'en', 1, 'https://ror.org/02m4t4k66 Asociace Pro Vodu ČR Czech Water Association'), (57215, 'https://ror.org/02m5hv882', 'no_lang_code', 1, 'https://ror.org/02m5hv882 Saline Water Conversion Corporation'), (57216, 'https://ror.org/02m6rz291', 'no_lang_code', 1, 'https://ror.org/02m6rz291 CHA Vaccine Institute (South Korea)'), (57217, 'https://ror.org/02m7dbt89', 'no_lang_code', 1, 'https://ror.org/02m7dbt89 Danaher (Switzerland)'), (57218, 'https://ror.org/02m7qby09', 'no_lang_code', 1, 'https://ror.org/02m7qby09 Nuxe (France)'), (57219, 'https://ror.org/02mahq469', 'en', 1, 'https://ror.org/02mahq469 Sri Lanka College of Paediatricians'), (57220, 'https://ror.org/02mbgxz16', 'en', 1, 'https://ror.org/02mbgxz16 Tommy Fuss Fund'), (57221, 'https://ror.org/02mchxt20', 'en', 1, 'https://ror.org/02mchxt20 Fondation du Nord en cancérologie Northern Cancer Foundation'), (57222, 'https://ror.org/02md09461', 'en', 1, 'https://ror.org/02md09461 World Bank Group'), (57223, 'https://ror.org/02md2rw68', 'no_lang_code', 1, 'https://ror.org/02md2rw68 Logis (Czechia)'), (57224, 'https://ror.org/02mf43q40', 'en', 1, 'https://ror.org/02mf43q40 Community Action of Skagit County'), (57225, 'https://ror.org/02mfb9z52', 'no_lang_code', 1, 'https://ror.org/02mfb9z52 Geomin (Czechia)'), (57226, 'https://ror.org/02mfcc374', 'no_lang_code', 1, 'https://ror.org/02mfcc374 Živa (Czechia)'), (57227, 'https://ror.org/02mgem015', 'no_lang_code', 1, 'https://ror.org/02mgem015 Abegu (Czechia)'), (57228, 'https://ror.org/02mh2m364', 'no_lang_code', 1, 'https://ror.org/02mh2m364 Vupek - Economy (Czechia)'), (57229, 'https://ror.org/02mkhqe40', 'de', 1, 'https://ror.org/02mkhqe40 Krisenintervention Schweiz'), (57230, 'https://ror.org/02mkwcf87', 'id', 1, 'https://ror.org/02mkwcf87 Badan Penelitian dan Pengembangan Kesehatan'), (57231, 'https://ror.org/02mn08y26', 'en', 1, 'https://ror.org/02mn08y26 Ordnance Engineering College 中国人民解放军军械工程学院'), (57232, 'https://ror.org/02mnc6m50', 'cs', 1, 'https://ror.org/02mnc6m50 Polabské Muzeum'), (57233, 'https://ror.org/02mpqfe95', 'no_lang_code', 1, 'https://ror.org/02mpqfe95 GeoExpert (Switzerland)'), (57234, 'https://ror.org/02mt5a451', 'no_lang_code', 1, 'https://ror.org/02mt5a451 Ferro OK (Czechia)'), (57235, 'https://ror.org/02mtcrz14', 'fr', 1, 'https://ror.org/02mtcrz14 Enilia Ensmic'), (57236, 'https://ror.org/02mtem749', 'no_lang_code', 1, 'https://ror.org/02mtem749 Airfoils (United States)'), (57237, 'https://ror.org/02mw71d90', 'no_lang_code', 1, 'https://ror.org/02mw71d90 Realistic (Czechia)'), (57238, 'https://ror.org/02mw9as30', 'de', 1, 'https://ror.org/02mw9as30 Neues Museum Biel'), (57239, 'https://ror.org/02n1y8269', 'en', 1, 'https://ror.org/02n1y8269 Wales Institute of Cognitive Neuroscience'), (57240, 'https://ror.org/02n2bgz18', 'en', 1, 'https://ror.org/02n2bgz18 Institute of Plasma Physics Istituto di Fisica del Plasma "Piero Caldirola"'), (57241, 'https://ror.org/02n35gd31', 'fi', 1, 'https://ror.org/02n35gd31 KH Renlundin säätiö'), (57242, 'https://ror.org/02n50e113', 'no_lang_code', 1, 'https://ror.org/02n50e113 Atro Rýmařov (Czechia)'), (57243, 'https://ror.org/02n6s9z93', 'no_lang_code', 1, 'https://ror.org/02n6s9z93 G M Chemie (Czechia)'), (57244, 'https://ror.org/02n79p323', 'no_lang_code', 1, 'https://ror.org/02n79p323 ib1.cz (Czechia)'), (57245, 'https://ror.org/02n7vdk57', 'no_lang_code', 1, 'https://ror.org/02n7vdk57 Soundtherm (Switzerland)'), (57246, 'https://ror.org/02najqa65', 'en', 1, 'https://ror.org/02najqa65 Thrivent Financial'), (57247, 'https://ror.org/02nbjdt61', 'en', 1, 'https://ror.org/02nbjdt61 Defense Contract Audit Agency'), (57248, 'https://ror.org/02ncc5r18', 'no_lang_code', 1, 'https://ror.org/02ncc5r18 Mondelēz International (Germany)'), (57249, 'https://ror.org/02neeny91', 'no_lang_code', 1, 'https://ror.org/02neeny91 AWK (Switzerland)'), (57250, 'https://ror.org/02nephp76', 'no_lang_code', 1, 'https://ror.org/02nephp76 Gilson (United Kingdom)'), (57251, 'https://ror.org/02netwe45', 'en', 1, 'https://ror.org/02netwe45 National Institute of Research on Jute and Allied Fibre Technology'), (57252, 'https://ror.org/02nf56k69', 'cs', 1, 'https://ror.org/02nf56k69 Galerie Klatovy'), (57253, 'https://ror.org/02nfy1824', 'no_lang_code', 1, 'https://ror.org/02nfy1824 Eurofins (Czechia)'), (57254, 'https://ror.org/02ngeps21', 'no_lang_code', 1, 'https://ror.org/02ngeps21 Garmin (Czechia)'), (57255, 'https://ror.org/02nj3nr70', 'en', 1, 'https://ror.org/02nj3nr70 Caucasus Institute for Peace, Democracy and Development'), (57256, 'https://ror.org/02njr9k66', 'no_lang_code', 1, 'https://ror.org/02njr9k66 FWRadiology'), (57257, 'https://ror.org/02nmt8y10', 'no_lang_code', 1, 'https://ror.org/02nmt8y10 Hillrom (Australia)'), (57258, 'https://ror.org/02nn2c651', 'no_lang_code', 1, 'https://ror.org/02nn2c651 Stavos Brno (Czechia)'), (57259, 'https://ror.org/02nntm845', 'it', 1, 'https://ror.org/02nntm845 Inclusione Andicap Ticino'), (57260, 'https://ror.org/02nnywp42', 'en', 1, 'https://ror.org/02nnywp42 North Carolina Department of Public Safety'), (57261, 'https://ror.org/02nq7pz60', 'no_lang_code', 1, 'https://ror.org/02nq7pz60 Hedva (Czechia)'), (57262, 'https://ror.org/02ns75z54', 'en', 1, 'https://ror.org/02ns75z54 Society for Research into Higher Education'), (57263, 'https://ror.org/02nta4587', 'it', 1, 'https://ror.org/02nta4587 Museo Civico Villa dei Cedri'), (57264, 'https://ror.org/02ntvem14', 'en', 1, 'https://ror.org/02ntvem14 Siragusa Family Foundation'), (57265, 'https://ror.org/02nvfeg84', 'en', 1, 'https://ror.org/02nvfeg84 Marble Arch Medical Centre'), (57266, 'https://ror.org/02nw2dj06', 'no_lang_code', 1, 'https://ror.org/02nw2dj06 3E Praha Engineering (Czechia)'), (57267, 'https://ror.org/02nwjr777', 'cs', 1, 'https://ror.org/02nwjr777 Spolek PRO BIO Poradenství'), (57268, 'https://ror.org/02nx6st79', 'no_lang_code', 1, 'https://ror.org/02nx6st79 Eloret (United States)'), (57269, 'https://ror.org/02ny9ar26', 'no_lang_code', 1, 'https://ror.org/02ny9ar26 Escape Therapeutics (United States)'), (57270, 'https://ror.org/02p0kfv62', 'no_lang_code', 1, 'https://ror.org/02p0kfv62 Ekozink Praha (Czechia)'), (57271, 'https://ror.org/02p1epn78', 'no_lang_code', 1, 'https://ror.org/02p1epn78 Soair (United States)'), (57272, 'https://ror.org/02p1hm914', 'no_lang_code', 1, 'https://ror.org/02p1hm914 AgriKomp Bohemia (Czechia)'), (57273, 'https://ror.org/02p2rdc82', 'no_lang_code', 1, 'https://ror.org/02p2rdc82 Green Solution (Czechia)'), (57274, 'https://ror.org/02p2x4d36', 'en', 1, 'https://ror.org/02p2x4d36 SIDS Calgary Society'), (57275, 'https://ror.org/02p2xd472', 'en', 1, 'https://ror.org/02p2xd472 Stockbridge Munsee Tribal Council'), (57276, 'https://ror.org/02p481x03', 'de', 1, 'https://ror.org/02p481x03 Institut für Bioanalytik, Umwelt-Toxikologie und Biotechnologie Halle'), (57277, 'https://ror.org/02p4b8678', 'cs', 1, 'https://ror.org/02p4b8678 Český Svaz Včelařů'), (57278, 'https://ror.org/02p4zk941', 'cs', 1, 'https://ror.org/02p4zk941 Nemocnice Sokolov'), (57279, 'https://ror.org/02p85dj71', 'no_lang_code', 1, 'https://ror.org/02p85dj71 Geo7 (Switzerland)'), (57280, 'https://ror.org/02p8rkx70', 'en', 1, 'https://ror.org/02p8rkx70 Foundation for Orthopaedic Research and Education'), (57281, 'https://ror.org/02p9aa336', 'fr', 1, 'https://ror.org/02p9aa336 Office de la Culture Section d''archéologie et Paléontologie'), (57282, 'https://ror.org/02pa5jt63', 'no_lang_code', 1, 'https://ror.org/02pa5jt63 Twente Medical Systems International (Netherlands)'), (57283, 'https://ror.org/02pasr011', 'no_lang_code', 1, 'https://ror.org/02pasr011 Teaz (Czechia)'), (57284, 'https://ror.org/02pax0k58', 'fr', 1, 'https://ror.org/02pax0k58 Centre Interrégional de Perfectionnement'), (57285, 'https://ror.org/02pb4ss95', 'cs', 1, 'https://ror.org/02pb4ss95 Česká Hlava'), (57286, 'https://ror.org/02pb4xx87', 'cs', 1, 'https://ror.org/02pb4xx87 Zdravotní Ústav Se Sídlem v Ústí nad Labem'), (57287, 'https://ror.org/02pd51s17', 'en', 1, 'https://ror.org/02pd51s17 Perth Childrens Hospital Foundation'), (57288, 'https://ror.org/02pdcxe11', 'no_lang_code', 1, 'https://ror.org/02pdcxe11 Int''Air Medical (France)'), (57289, 'https://ror.org/02pe0yp46', 'cs', 1, 'https://ror.org/02pe0yp46 JIC'), (57290, 'https://ror.org/02pegt135', 'no_lang_code', 1, 'https://ror.org/02pegt135 Helioscreen (France)'), (57291, 'https://ror.org/02pfqzk70', 'no_lang_code', 1, 'https://ror.org/02pfqzk70 Galatek (Czechia)'), (57292, 'https://ror.org/02pgy4q18', 'no_lang_code', 1, 'https://ror.org/02pgy4q18 Noza (Czechia)'), (57293, 'https://ror.org/02phgvp38', 'en', 1, 'https://ror.org/02phgvp38 Dřevařský ústav Timber Institute'), (57294, 'https://ror.org/02phptz08', 'no_lang_code', 1, 'https://ror.org/02phptz08 Eutit (Czechia)'), (57295, 'https://ror.org/02pmyyv54', 'en', 1, 'https://ror.org/02pmyyv54 William G McGowan Charitable Fund'), (57296, 'https://ror.org/02pp0vd17', 'no_lang_code', 1, 'https://ror.org/02pp0vd17 Toma (Czechia)'), (57297, 'https://ror.org/02pqxz266', 'en', 1, 'https://ror.org/02pqxz266 STROKE-Riksförbundet Swedish Stroke Association'), (57298, 'https://ror.org/02prt1r25', 'no_lang_code', 1, 'https://ror.org/02prt1r25 Amdocs (Cyprus)'), (57299, 'https://ror.org/02ps7ts75', 'no_lang_code', 1, 'https://ror.org/02ps7ts75 MGE Data (Czechia)'), (57300, 'https://ror.org/02pt0wv95', 'en', 1, 'https://ror.org/02pt0wv95 Centre for Training and Integrated Research In ASAL Development'), (57301, 'https://ror.org/02pw0we48', 'no_lang_code', 1, 'https://ror.org/02pw0we48 Pure Bohemia (Czechia)'), (57302, 'https://ror.org/02pw80027', 'cs', 1, 'https://ror.org/02pw80027 Nemocnice Vyškov'), (57303, 'https://ror.org/02pycb953', 'no_lang_code', 1, 'https://ror.org/02pycb953 Biophytis (France)'), (57304, 'https://ror.org/02pyvsr17', 'en', 1, 'https://ror.org/02pyvsr17 Falk Foundation'), (57305, 'https://ror.org/02q4y5974', 'no_lang_code', 1, 'https://ror.org/02q4y5974 Laboratoire Odost (France)'), (57306, 'https://ror.org/02q5hpt66', 'en', 1, 'https://ror.org/02q5hpt66 Shazhou Professional Institute Of Technology 沙洲职业工学院'), (57307, 'https://ror.org/02q600s42', 'no_lang_code', 1, 'https://ror.org/02q600s42 Luciol Instruments (Switzerland)'), (57308, 'https://ror.org/02q6y5t34', 'cs', 1, 'https://ror.org/02q6y5t34 Týmová iniciativa pro místní udržitelný rozvoj'), (57309, 'https://ror.org/02q7wh890', 'no_lang_code', 1, 'https://ror.org/02q7wh890 J-VST (Czechia)'), (57310, 'https://ror.org/02qa5kg76', 'en', 1, 'https://ror.org/02qa5kg76 Australian Regenerative Medicine Institute'), (57311, 'https://ror.org/02qab6y19', 'en', 1, 'https://ror.org/02qab6y19 China Environmental Protection Foundation'), (57312, 'https://ror.org/02qcz1b43', 'en', 1, 'https://ror.org/02qcz1b43 Voronezh State Institute of Physical Culture Воронежский государственный институт физической культуры'), (57313, 'https://ror.org/02qd9nw41', 'no_lang_code', 1, 'https://ror.org/02qd9nw41 Škola Welding (Czechia)'), (57314, 'https://ror.org/02qff3310', 'no_lang_code', 1, 'https://ror.org/02qff3310 Cosmalia (France)'), (57315, 'https://ror.org/02qh8xh72', 'no_lang_code', 1, 'https://ror.org/02qh8xh72 Dow Chemical (India)'), (57316, 'https://ror.org/02qhkmh27', 'en', 1, 'https://ror.org/02qhkmh27 USDA Rural Development'), (57317, 'https://ror.org/02qkvsy66', 'en', 1, 'https://ror.org/02qkvsy66 Cityzen Sciences'), (57318, 'https://ror.org/02qmwr629', 'en', 1, 'https://ror.org/02qmwr629 Wallace Genetic Foundation'), (57319, 'https://ror.org/02qsttk04', 'no_lang_code', 1, 'https://ror.org/02qsttk04 AQUAdem (Czechia)'), (57320, 'https://ror.org/02qt0dk86', 'en', 1, 'https://ror.org/02qt0dk86 Horonobe Research Institute for the Subsurface Environment'), (57321, 'https://ror.org/02qvg6n57', 'no_lang_code', 1, 'https://ror.org/02qvg6n57 PROFiber Networking (Czechia)'), (57322, 'https://ror.org/02qvj8k32', 'de', 1, 'https://ror.org/02qvj8k32 Schweizerische Bundeskanzlei'), (57323, 'https://ror.org/02qwqb112', 'en', 1, 'https://ror.org/02qwqb112 Veterinary Diagnostics Institute'), (57324, 'https://ror.org/02qyrzz82', 'no_lang_code', 1, 'https://ror.org/02qyrzz82 I2L Research (Czechia)'), (57325, 'https://ror.org/02qz5d088', 'no_lang_code', 1, 'https://ror.org/02qz5d088 Heraeus (Belgium)'), (57326, 'https://ror.org/02r08m051', 'de', 1, 'https://ror.org/02r08m051 Vereinigung Analytischer Kinder- und Jugendlichen-Psychotherapeuten'), (57327, 'https://ror.org/02r10ma13', 'no_lang_code', 1, 'https://ror.org/02r10ma13 IHI Corporation (Czechia)'), (57328, 'https://ror.org/02r3xd587', 'en', 1, 'https://ror.org/02r3xd587 Central Research Institute of Geological Prospecting for Base and Precious Metals'), (57329, 'https://ror.org/02r3z7548', 'en', 1, 'https://ror.org/02r3z7548 Foundation for People with Rare Diseases Stiftung für Menschen mit seltenen Krankheiten'), (57330, 'https://ror.org/02r44k041', 'no_lang_code', 1, 'https://ror.org/02r44k041 Svit (Czechia)'), (57331, 'https://ror.org/02r51sa72', 'no_lang_code', 1, 'https://ror.org/02r51sa72 Charvat AXL (Czechia)'), (57332, 'https://ror.org/02r6dcw55', 'no_lang_code', 1, 'https://ror.org/02r6dcw55 Verlagsvertretung Susan Filges (Germany)'), (57333, 'https://ror.org/02r72vt69', 'it', 1, 'https://ror.org/02r72vt69 Liceo Cantonale'), (57334, 'https://ror.org/02r785h72', 'en', 1, 'https://ror.org/02r785h72 Marine Research Centre'), (57335, 'https://ror.org/02r88m968', 'en', 1, 'https://ror.org/02r88m968 Tamkin Foundation'), (57336, 'https://ror.org/02ras5d14', 'no_lang_code', 1, 'https://ror.org/02ras5d14 Amcor (Australia)'), (57337, 'https://ror.org/02rbzf697', 'no_lang_code', 1, 'https://ror.org/02rbzf697 Huawei Technologies (France)'), (57338, 'https://ror.org/02rffwf78', 'no_lang_code', 1, 'https://ror.org/02rffwf78 Kapsch (Czechia)'), (57339, 'https://ror.org/02rfvew21', 'no_lang_code', 1, 'https://ror.org/02rfvew21 Integrated Micro-Electronics (Czechia)'), (57340, 'https://ror.org/02rkywr68', 'no_lang_code', 1, 'https://ror.org/02rkywr68 Annidis (Canada)'), (57341, 'https://ror.org/02rkz3z54', 'no_lang_code', 1, 'https://ror.org/02rkz3z54 Phytosynthetix (United States)'), (57342, 'https://ror.org/02rn5dn49', 'en', 1, 'https://ror.org/02rn5dn49 Xi''an Science Technology Bureau 西安市科技局'), (57343, 'https://ror.org/02rp0e007', 'no_lang_code', 1, 'https://ror.org/02rp0e007 Air Navigation Services (Czechia) Řízení letového provozu České republiky'), (57344, 'https://ror.org/02rpxbs81', 'no_lang_code', 1, 'https://ror.org/02rpxbs81 Biotest (United States)'), (57345, 'https://ror.org/02rs7f491', 'no_lang_code', 1, 'https://ror.org/02rs7f491 Resec (Czechia)'), (57346, 'https://ror.org/02rw4zb55', 'no_lang_code', 1, 'https://ror.org/02rw4zb55 Puruplast (Czechia)'), (57347, 'https://ror.org/02rwb5s17', 'no_lang_code', 1, 'https://ror.org/02rwb5s17 Flowmon Networks (Czechia)'), (57348, 'https://ror.org/02rzjwp47', 'en', 1, 'https://ror.org/02rzjwp47 Science and Technology Center in Ukraine'), (57349, 'https://ror.org/02s1wmc12', 'no_lang_code', 1, 'https://ror.org/02s1wmc12 Gepro (Czechia)'), (57350, 'https://ror.org/02s3w5b11', 'en', 1, 'https://ror.org/02s3w5b11 Thermal and Electric Energy Technology Foundation 熱・電気エネルギー技術財団'), (57351, 'https://ror.org/02s553c57', 'fr', 1, 'https://ror.org/02s553c57 Institut Protestant de Théologie'), (57352, 'https://ror.org/02s9kjn30', 'en', 1, 'https://ror.org/02s9kjn30 Robert W Deutsch Foundation'), (57353, 'https://ror.org/02s9m7114', 'no_lang_code', 1, 'https://ror.org/02s9m7114 PBT Rožnov (Czechia)'), (57354, 'https://ror.org/02sda0197', 'en', 1, 'https://ror.org/02sda0197 Fondation Pierre Elliott Trudeau Pierre Elliott Trudeau Foundation'), (57355, 'https://ror.org/02sdrd464', 'no_lang_code', 1, 'https://ror.org/02sdrd464 Nidec (United States)'), (57356, 'https://ror.org/02sdyvc52', 'no_lang_code', 1, 'https://ror.org/02sdyvc52 Laboratoire CCD (France)'), (57357, 'https://ror.org/02se40x69', 'no_lang_code', 1, 'https://ror.org/02se40x69 Canon (France) キヤノン株式会社'), (57358, 'https://ror.org/02serab94', 'no_lang_code', 1, 'https://ror.org/02serab94 Sopac Medical (France)'), (57359, 'https://ror.org/02sevrz47', 'es', 1, 'https://ror.org/02sevrz47 Gobierno de Chile'), (57360, 'https://ror.org/02shpxe08', 'no_lang_code', 1, 'https://ror.org/02shpxe08 Transcon Electronic Systems (Czechia)'), (57361, 'https://ror.org/02shrym55', 'no_lang_code', 1, 'https://ror.org/02shrym55 Kotouč Štramberk (Czechia)'), (57362, 'https://ror.org/02sjh4j59', 'en', 1, 'https://ror.org/02sjh4j59 Vilcek Foundation'), (57363, 'https://ror.org/02sk8y875', 'no_lang_code', 1, 'https://ror.org/02sk8y875 Genetrac (Czechia)'), (57364, 'https://ror.org/02skytd81', 'en', 1, 'https://ror.org/02skytd81 IMDEA Nanoscience Instituto IMDEA Nanociencia'), (57365, 'https://ror.org/02smhb616', 'no_lang_code', 1, 'https://ror.org/02smhb616 Form (Czechia)'), (57366, 'https://ror.org/02smqg134', 'fr', 1, 'https://ror.org/02smqg134 Institut Supérieur de Biotechnologie de Sfax'), (57367, 'https://ror.org/02smzzj60', 'en', 1, 'https://ror.org/02smzzj60 Institut regionálních informací Institute for Regional Information'), (57368, 'https://ror.org/02sn3n814', 'cs', 1, 'https://ror.org/02sn3n814 Lázně Poděbrady (Czechia)'), (57369, 'https://ror.org/02sn6x239', 'no_lang_code', 1, 'https://ror.org/02sn6x239 Mat-Tec (Switzerland)'), (57370, 'https://ror.org/02sp4ja91', 'en', 1, 'https://ror.org/02sp4ja91 Institute of Physics. HI Amirkhanova Институт физики им. Х.И. Амирханова'), (57371, 'https://ror.org/02spbvv79', 'no_lang_code', 1, 'https://ror.org/02spbvv79 Activair (Czechia)'), (57372, 'https://ror.org/02sqc6c92', 'en', 1, 'https://ror.org/02sqc6c92 Vive Zene Vive Zene Centar za terapiju i rehabilitaciju'), (57373, 'https://ror.org/02ss2ye92', 'cs', 1, 'https://ror.org/02ss2ye92 Obnovitelných Zdrojů Energie'), (57374, 'https://ror.org/02ssj8b09', 'en', 1, 'https://ror.org/02ssj8b09 Rett Syndrome Association of Illinois'), (57375, 'https://ror.org/02stkxd13', 'fr', 1, 'https://ror.org/02stkxd13 Musée Cantonal d''Archéologie et d''Histoire'), (57376, 'https://ror.org/02sv6a835', 'no_lang_code', 1, 'https://ror.org/02sv6a835 DKD médical (France)'), (57377, 'https://ror.org/02swngw30', 'en', 1, 'https://ror.org/02swngw30 Colorado Latino Leadership, Advocacy & Research Organization'), (57378, 'https://ror.org/02sy3xj90', 'en', 1, 'https://ror.org/02sy3xj90 IFB AdipositasErkrankungen IFB Adiposity Diseases'), (57379, 'https://ror.org/02syz0429', 'no_lang_code', 1, 'https://ror.org/02syz0429 Eco Building Brno (Czechia)'), (57380, 'https://ror.org/02sz8cn84', 'fr', 1, 'https://ror.org/02sz8cn84 Institut de Recherche sur la Renaissance l''Age Classique et les Lumières'), (57381, 'https://ror.org/02szgft37', 'no_lang_code', 1, 'https://ror.org/02szgft37 Empo Praha (Czechia)'), (57382, 'https://ror.org/02szs1583', 'en', 1, 'https://ror.org/02szs1583 Czech Society for Building Law'), (57383, 'https://ror.org/02t0dpg32', 'en', 1, 'https://ror.org/02t0dpg32 Caesars Foundation'), (57384, 'https://ror.org/02t4ead83', 'cs', 1, 'https://ror.org/02t4ead83 Expresní Astronomické Informace'), (57385, 'https://ror.org/02t7mb865', 'fr', 1, 'https://ror.org/02t7mb865 Hôpital de Saint-Loup'), (57386, 'https://ror.org/02t7v9117', 'de', 1, 'https://ror.org/02t7v9117 Staatsarchiv Luzern'), (57387, 'https://ror.org/02t98da76', 'en', 1, 'https://ror.org/02t98da76 Czech Biogas Association Česká Bioplynová Asociace'), (57388, 'https://ror.org/02t9fdk79', 'no_lang_code', 1, 'https://ror.org/02t9fdk79 MJM Litovel (Czechia)'), (57389, 'https://ror.org/02tbvs543', 'no_lang_code', 1, 'https://ror.org/02tbvs543 Indigo Information Services (United States)'), (57390, 'https://ror.org/02te15m84', 'sv', 1, 'https://ror.org/02te15m84 Stiftelsen Tornspiran'), (57391, 'https://ror.org/02tfw2a59', 'no_lang_code', 1, 'https://ror.org/02tfw2a59 Trevos Kostalov (Czechia)'), (57392, 'https://ror.org/02tg1a160', 'no_lang_code', 1, 'https://ror.org/02tg1a160 Ness Technologies'), (57393, 'https://ror.org/02tga0d11', 'no_lang_code', 1, 'https://ror.org/02tga0d11 Saar Gummi (Czechia)'), (57394, 'https://ror.org/02tj78555', 'no_lang_code', 1, 'https://ror.org/02tj78555 Metra Blansko (Czechia)'), (57395, 'https://ror.org/02tma6r06', 'no_lang_code', 1, 'https://ror.org/02tma6r06 Gypstrend (Czechia)'), (57396, 'https://ror.org/02tq1vp04', 'no_lang_code', 1, 'https://ror.org/02tq1vp04 Ventura-Venkov (Czechia)'); INSERT INTO `rors` VALUES (57397, 'https://ror.org/02tqwr834', 'no_lang_code', 1, 'https://ror.org/02tqwr834 Pegas Gonda (Czechia)'), (57398, 'https://ror.org/02tr26h84', 'no_lang_code', 1, 'https://ror.org/02tr26h84 Koh-I-Noor (Czechia)'), (57399, 'https://ror.org/02trxsj91', 'no_lang_code', 1, 'https://ror.org/02trxsj91 Maisey (New Zealand)'), (57400, 'https://ror.org/02tw69288', 'en', 1, 'https://ror.org/02tw69288 Mohawk Valley Psychiatric Center'), (57401, 'https://ror.org/02ty8xh41', 'en', 1, 'https://ror.org/02ty8xh41 Himalayan Institute of Yoga Science and Philosophy'), (57402, 'https://ror.org/02tzeve03', 'en', 1, 'https://ror.org/02tzeve03 International Museum of Horology Musée international d''horlogerie'), (57403, 'https://ror.org/02v1vhf29', 'no_lang_code', 1, 'https://ror.org/02v1vhf29 Presi (France)'), (57404, 'https://ror.org/02v6ch155', 'en', 1, 'https://ror.org/02v6ch155 Steel Tank Institute'), (57405, 'https://ror.org/02v6f4y51', 'en', 1, 'https://ror.org/02v6f4y51 National Academy of Sciences India राष्ट्रीय विज्ञान अकादमी, भारत'), (57406, 'https://ror.org/02v6tqw40', 'no_lang_code', 1, 'https://ror.org/02v6tqw40 Innovative Research Group (Canada)'), (57407, 'https://ror.org/02v6y4f91', 'en', 1, 'https://ror.org/02v6y4f91 Wholesome Wave Foundation Charitable Ventures'), (57408, 'https://ror.org/02v7y7w12', 'de', 1, 'https://ror.org/02v7y7w12 Liechtenstein Institute, Liechtenstein-Institut'), (57409, 'https://ror.org/02v8n3s74', 'en', 1, 'https://ror.org/02v8n3s74 Institute for Advanced Engineering 고급 공학 연구소'), (57410, 'https://ror.org/02v982853', 'no_lang_code', 1, 'https://ror.org/02v982853 NationalRad (United States)'), (57411, 'https://ror.org/02v9vwf84', 'no_lang_code', 1, 'https://ror.org/02v9vwf84 ModemTec (Czechia)'), (57412, 'https://ror.org/02va58e96', 'en', 1, 'https://ror.org/02va58e96 Central Bohemian Research Library Středočeská vědecká knihovka v Kladně'), (57413, 'https://ror.org/02vaxhm79', 'cs', 1, 'https://ror.org/02vaxhm79 Společnost pro Studium Sekt a Nových Náboženských Směrů'), (57414, 'https://ror.org/02vff8922', 'no_lang_code', 1, 'https://ror.org/02vff8922 Ahlstrom-Munksjö (United States)'), (57415, 'https://ror.org/02vh2pt65', 'en', 1, 'https://ror.org/02vh2pt65 Ludwig Cancer Research'), (57416, 'https://ror.org/02vmhk782', 'no_lang_code', 1, 'https://ror.org/02vmhk782 Cecho Bohumil Cempírek (Czechia)'), (57417, 'https://ror.org/02vmzh064', 'nl', 1, 'https://ror.org/02vmzh064 Revalidatiefonds'), (57418, 'https://ror.org/02vp0nc21', 'no_lang_code', 1, 'https://ror.org/02vp0nc21 Pivovar Kácov (Czechia)'), (57419, 'https://ror.org/02vpeth71', 'en', 1, 'https://ror.org/02vpeth71 Museum of Romani Culture Muzeum romské kultury'), (57420, 'https://ror.org/02vq4f039', 'no_lang_code', 1, 'https://ror.org/02vq4f039 Mitsubishi Research Institute (Japan) 三菱総合研究所'), (57421, 'https://ror.org/02vq7pf97', 'no_lang_code', 1, 'https://ror.org/02vq7pf97 SCIA (Czechia)'), (57422, 'https://ror.org/02vqa5k67', 'en', 1, 'https://ror.org/02vqa5k67 Iowa Department on Aging'), (57423, 'https://ror.org/02vtg9w10', 'no_lang_code', 1, 'https://ror.org/02vtg9w10 Plzensky Prazdroj (Czechia)'), (57424, 'https://ror.org/02vvdqe24', 'no_lang_code', 1, 'https://ror.org/02vvdqe24 OKF (Czechia)'), (57425, 'https://ror.org/02vw2x065', 'no_lang_code', 1, 'https://ror.org/02vw2x065 Minerva Boskovice (Czechia)'), (57426, 'https://ror.org/02vznf045', 'no_lang_code', 1, 'https://ror.org/02vznf045 BDO Audit (Czechia)'), (57427, 'https://ror.org/02vzwtq17', 'en', 1, 'https://ror.org/02vzwtq17 Saint Lukes Foundation'), (57428, 'https://ror.org/02vzx1287', 'de', 1, 'https://ror.org/02vzx1287 Kantonsschule Schaffhausen'), (57429, 'https://ror.org/02w29b595', 'no_lang_code', 1, 'https://ror.org/02w29b595 Chmelarstvi Druzstvo Žatec (Czechia)'), (57430, 'https://ror.org/02w30ae27', 'en', 1, 'https://ror.org/02w30ae27 SYSU-CMU International Joint Research Institute'), (57431, 'https://ror.org/02w314k38', 'no_lang_code', 1, 'https://ror.org/02w314k38 Denso (United States)'), (57432, 'https://ror.org/02w3svm50', 'no_lang_code', 1, 'https://ror.org/02w3svm50 Femma (Czechia)'), (57433, 'https://ror.org/02w58yh14', 'no_lang_code', 1, 'https://ror.org/02w58yh14 Veskom (Czechia)'), (57434, 'https://ror.org/02w60ja15', 'no_lang_code', 1, 'https://ror.org/02w60ja15 Ball (Sweden)'), (57435, 'https://ror.org/02w769767', 'en', 1, 'https://ror.org/02w769767 Energy Foundation'), (57436, 'https://ror.org/02w907m39', 'en', 1, 'https://ror.org/02w907m39 Instrumentarium Science Foundation Instrumentariumin tiedesäätiö'), (57437, 'https://ror.org/02w9wt917', 'no_lang_code', 1, 'https://ror.org/02w9wt917 Space Devices (Czechia)'), (57438, 'https://ror.org/02waf2h92', 'no_lang_code', 1, 'https://ror.org/02waf2h92 Mobility Carsharing (Switzerland)'), (57439, 'https://ror.org/02wakr002', 'no_lang_code', 1, 'https://ror.org/02wakr002 Johnson Controls (France)'), (57440, 'https://ror.org/02wdpar77', 'no_lang_code', 1, 'https://ror.org/02wdpar77 Rockwell Automation (Switzerland)'), (57441, 'https://ror.org/02wg15j65', 'en', 1, 'https://ror.org/02wg15j65 Institute of Archaeology Magyar Tudományos Akadémia Régészeti Intézet'), (57442, 'https://ror.org/02wg70j58', 'en', 1, 'https://ror.org/02wg70j58 Scientific Research Institute of Goznak Научно-исследовательский институт Гознака'), (57443, 'https://ror.org/02whbzt53', 'no_lang_code', 1, 'https://ror.org/02whbzt53 Planair (Switzerland)'), (57444, 'https://ror.org/02whm6n40', 'no_lang_code', 1, 'https://ror.org/02whm6n40 Agroprojekt (Czechia)'), (57445, 'https://ror.org/02wj99m39', 'en', 1, 'https://ror.org/02wj99m39 Charlton Installation Services'), (57446, 'https://ror.org/02wjzeq60', 'en', 1, 'https://ror.org/02wjzeq60 Statewide Parent Advocacy Network'), (57447, 'https://ror.org/02wkzst19', 'no_lang_code', 1, 'https://ror.org/02wkzst19 RPIC ViP (Czechia)'), (57448, 'https://ror.org/02wp0er57', 'en', 1, 'https://ror.org/02wp0er57 Royal Jubilee Maternity Services'), (57449, 'https://ror.org/02wpjr618', 'en', 1, 'https://ror.org/02wpjr618 Government of Austria Österreichische Bundesregierung'), (57450, 'https://ror.org/02wr4pa52', 'en', 1, 'https://ror.org/02wr4pa52 Raymond Educational Foundation'), (57451, 'https://ror.org/02wtsha51', 'no_lang_code', 1, 'https://ror.org/02wtsha51 Teva Pharmaceuticals (Australia)'), (57452, 'https://ror.org/02wv42418', 'en', 1, 'https://ror.org/02wv42418 ARGO Foundation ARGO Stiftung'), (57453, 'https://ror.org/02wykja76', 'no_lang_code', 1, 'https://ror.org/02wykja76 Theranostics (New Zealand)'), (57454, 'https://ror.org/02wys4090', 'no_lang_code', 1, 'https://ror.org/02wys4090 Natura (Czechia)'), (57455, 'https://ror.org/02x0e6v58', 'en', 1, 'https://ror.org/02x0e6v58 Kusudohara Memorial Foundation 寿原記念財団'), (57456, 'https://ror.org/02x228738', 'en', 1, 'https://ror.org/02x228738 Intergovernmental Panel on Climate Change'), (57457, 'https://ror.org/02x42kc45', 'en', 1, 'https://ror.org/02x42kc45 Sedgwick Museum of Earth Sciences'), (57458, 'https://ror.org/02x4y2b54', 'cs', 1, 'https://ror.org/02x4y2b54 České Loděnice'), (57459, 'https://ror.org/02x909r11', 'no_lang_code', 1, 'https://ror.org/02x909r11 Fonterra (United States)'), (57460, 'https://ror.org/02xare716', 'en', 1, 'https://ror.org/02xare716 Sisters of Charity Health System'), (57461, 'https://ror.org/02xc43e34', 'no_lang_code', 1, 'https://ror.org/02xc43e34 John Deere (Germany)'), (57462, 'https://ror.org/02xem8119', 'no_lang_code', 1, 'https://ror.org/02xem8119 EGE (Czechia)'), (57463, 'https://ror.org/02xfh0g21', 'fr', 1, 'https://ror.org/02xfh0g21 Réseau Fribourgeois de Santé Mentale'), (57464, 'https://ror.org/02xjhr934', 'en', 1, 'https://ror.org/02xjhr934 Dr. Lisbeth Hurni Coaching & Consulting Inhaberin Büro für Laufbahnpsychologie'), (57465, 'https://ror.org/02xtbq882', 'en', 1, 'https://ror.org/02xtbq882 Institute of Theoretical Physics 中国科学院理论物理研究所'), (57466, 'https://ror.org/02xww4e18', 'en', 1, 'https://ror.org/02xww4e18 Institute for Musicology MTA Bölcsészettudományi Kutatóközpont Zenetudományi Intézet'), (57467, 'https://ror.org/02xx53s78', 'no_lang_code', 1, 'https://ror.org/02xx53s78 Membrane Protective Technologies (United States)'), (57468, 'https://ror.org/02xywr964', 'en', 1, 'https://ror.org/02xywr964 Danube Research Institute Duna-Kutató Intézet'), (57469, 'https://ror.org/02xzfn017', 'no_lang_code', 1, 'https://ror.org/02xzfn017 Top-Bio (Czechia)'), (57470, 'https://ror.org/02xzshh88', 'en', 1, 'https://ror.org/02xzshh88 Sterling-Turner Foundation'), (57471, 'https://ror.org/02y0wsa73', 'no_lang_code', 1, 'https://ror.org/02y0wsa73 Institut pro Sociální a Ekonomické Analýzy'), (57472, 'https://ror.org/02y4q0y44', 'no_lang_code', 1, 'https://ror.org/02y4q0y44 AkzoNobel (France)'), (57473, 'https://ror.org/02y55wr53', 'en', 1, 'https://ror.org/02y55wr53 Center for Veterinary Medicine'), (57474, 'https://ror.org/02y9vr459', 'de', 1, 'https://ror.org/02y9vr459 Kantonale Planungsgruppe'), (57475, 'https://ror.org/02yc7cj12', 'no_lang_code', 1, 'https://ror.org/02yc7cj12 ETD Transformatory (Czechia) Výkonové Transformátory'), (57476, 'https://ror.org/02yh57h22', 'de', 1, 'https://ror.org/02yh57h22 Forschungsstätte der Evangelischen Studiengemeinschaft'), (57477, 'https://ror.org/02yj21v41', 'en', 1, 'https://ror.org/02yj21v41 Stark Community Foundation'), (57478, 'https://ror.org/02yjb3a91', 'en', 1, 'https://ror.org/02yjb3a91 Deutsche Stiftung für Herzforschung German Heart Research Foundation'), (57479, 'https://ror.org/02ykqap15', 'no_lang_code', 1, 'https://ror.org/02ykqap15 XploSafe (United States)'), (57480, 'https://ror.org/02ykrpt47', 'en', 1, 'https://ror.org/02ykrpt47 Scan Foundation'), (57481, 'https://ror.org/02yn1ge31', 'en', 1, 'https://ror.org/02yn1ge31 Carilion Roanoke Community Hospital'), (57482, 'https://ror.org/02yn1mx87', 'no_lang_code', 1, 'https://ror.org/02yn1mx87 Prikner - Tepelné zpracování kovů (Czechia)'), (57483, 'https://ror.org/02yqjk243', 'en', 1, 'https://ror.org/02yqjk243 Hope for Vision'), (57484, 'https://ror.org/02yrhrz80', 'en', 1, 'https://ror.org/02yrhrz80 Royal Literary Fund'), (57485, 'https://ror.org/02yrkqr67', 'cs', 1, 'https://ror.org/02yrkqr67 Psychiatrická Nemocnice Bohnice'), (57486, 'https://ror.org/02yrzyf97', 'en', 1, 'https://ror.org/02yrzyf97 Office of Research Services'), (57487, 'https://ror.org/02ysg4b45', 'en', 1, 'https://ror.org/02ysg4b45 Womens Foundation of Minnesota'), (57488, 'https://ror.org/02ytgbr67', 'no_lang_code', 1, 'https://ror.org/02ytgbr67 Sports Turf Research Institute (United Kingdom)'), (57489, 'https://ror.org/02yv37y71', 'en', 1, 'https://ror.org/02yv37y71 Dunn''s Fish Farm'), (57490, 'https://ror.org/02yzb7x61', 'no_lang_code', 1, 'https://ror.org/02yzb7x61 ÅF (Czechia)'), (57491, 'https://ror.org/02z0tm307', 'no_lang_code', 1, 'https://ror.org/02z0tm307 Vrtný a Geologický Průzkum (Czechia)'), (57492, 'https://ror.org/02z0z0932', 'no_lang_code', 1, 'https://ror.org/02z0z0932 Sofralab (France)'), (57493, 'https://ror.org/02z0z7g18', 'en', 1, 'https://ror.org/02z0z7g18 Tracy Jo Wilson Ovarian Cancer Foundation'), (57494, 'https://ror.org/02z2my330', 'no_lang_code', 1, 'https://ror.org/02z2my330 Anapartners (Czechia)'), (57495, 'https://ror.org/02z45mp76', 'no_lang_code', 1, 'https://ror.org/02z45mp76 Alere (Australia)'), (57496, 'https://ror.org/02z4xsh88', 'no_lang_code', 1, 'https://ror.org/02z4xsh88 3G Consulting Engineers (Czechia)'), (57497, 'https://ror.org/02z5aj645', 'en', 1, 'https://ror.org/02z5aj645 South Central VA Health Care Network'), (57498, 'https://ror.org/02z5d2h92', 'en', 1, 'https://ror.org/02z5d2h92 VA Healthcare System Serving Ohio, Indiana and Michigan'), (57499, 'https://ror.org/02z5ef964', 'da', 1, 'https://ror.org/02z5ef964 Hørslev-Fonden'), (57500, 'https://ror.org/02z625e97', 'no_lang_code', 1, 'https://ror.org/02z625e97 Herbacos Recordati (Czechia)'), (57501, 'https://ror.org/02z6q2y39', 'sv', 1, 'https://ror.org/02z6q2y39 Stiftelsen Längmanska Kulturfonden'), (57502, 'https://ror.org/02z71hx86', 'no_lang_code', 1, 'https://ror.org/02z71hx86 Genomac'), (57503, 'https://ror.org/02z857927', 'en', 1, 'https://ror.org/02z857927 Womens Sports Foundation'), (57504, 'https://ror.org/02z9x0k36', 'no_lang_code', 1, 'https://ror.org/02z9x0k36 Dosing - Dopravoprojekt Brno Group (Czechia)'), (57505, 'https://ror.org/02za67k40', 'no_lang_code', 1, 'https://ror.org/02za67k40 InnoLux (China)'), (57506, 'https://ror.org/02zav4281', 'no_lang_code', 1, 'https://ror.org/02zav4281 V. Kann Rasmussen Foundation'), (57507, 'https://ror.org/02zc9dy23', 'no_lang_code', 1, 'https://ror.org/02zc9dy23 Kovolit (Czechia)'), (57508, 'https://ror.org/02zedqe26', 'no_lang_code', 1, 'https://ror.org/02zedqe26 AlgaXperts (United States)'), (57509, 'https://ror.org/02zfe9916', 'en', 1, 'https://ror.org/02zfe9916 Gujarat Matikam Kalakari & Rural Technology Institute'), (57510, 'https://ror.org/02zfj1j12', 'en', 1, 'https://ror.org/02zfj1j12 Australian Export Grains Innovation Centre'), (57511, 'https://ror.org/02zhkt134', 'en', 1, 'https://ror.org/02zhkt134 Krylov State Research Center Государственный научно-исследовательский центр им.'), (57512, 'https://ror.org/02zhp7e72', 'en', 1, 'https://ror.org/02zhp7e72 World Federation of Scientists'), (57513, 'https://ror.org/02zk59x78', 'en', 1, 'https://ror.org/02zk59x78 Central European Advisory Group'), (57514, 'https://ror.org/02zp2vk95', 'en', 1, 'https://ror.org/02zp2vk95 National Inventors Hall of Fame'), (57515, 'https://ror.org/02zqwya41', 'en', 1, 'https://ror.org/02zqwya41 Ronald McDonald House of Houston'), (57516, 'https://ror.org/02zsesr42', 'no_lang_code', 1, 'https://ror.org/02zsesr42 Net-system'), (57517, 'https://ror.org/02zv3jm94', 'no_lang_code', 1, 'https://ror.org/02zv3jm94 Dentsply Sirona (Switzerland)'), (57518, 'https://ror.org/02zvqs025', 'no_lang_code', 1, 'https://ror.org/02zvqs025 Shellfish Ireland (Ireland)'), (57519, 'https://ror.org/02zwjz895', 'cs', 1, 'https://ror.org/02zwjz895 Nemocnice České Budějovice'), (57520, 'https://ror.org/02zwqdg19', 'no_lang_code', 1, 'https://ror.org/02zwqdg19 Bohemian Software Consulting (Czechia)'), (57521, 'https://ror.org/02zwrab63', 'no_lang_code', 1, 'https://ror.org/02zwrab63 ePaint (United States)'), (57522, 'https://ror.org/02zws9h76', 'no_lang_code', 1, 'https://ror.org/02zws9h76 Biopticka Laborator (Czechia)'), (57523, 'https://ror.org/02zy2ka61', 'no_lang_code', 1, 'https://ror.org/02zy2ka61 Kodak (Germany)'), (57524, 'https://ror.org/03006qf92', 'en', 1, 'https://ror.org/03006qf92 Reid Veterinary Hospital'), (57525, 'https://ror.org/0300sbr79', 'en', 1, 'https://ror.org/0300sbr79 Competition Commission Secretariat Wettbewerbskommission'), (57526, 'https://ror.org/0302b9e58', 'no_lang_code', 1, 'https://ror.org/0302b9e58 Elzaco (Czechia)'), (57527, 'https://ror.org/0304fdb16', 'no_lang_code', 1, 'https://ror.org/0304fdb16 Infinite Eversole Specialty Crop Services (United states)'), (57528, 'https://ror.org/0306jpb35', 'no_lang_code', 1, 'https://ror.org/0306jpb35 AK signal Brno (Czechia)'), (57529, 'https://ror.org/03088af90', 'no_lang_code', 1, 'https://ror.org/03088af90 D3Soft (Czechia)'), (57530, 'https://ror.org/0308hqt67', 'no_lang_code', 1, 'https://ror.org/0308hqt67 Compuplast International (Czechia)'), (57531, 'https://ror.org/030bh9196', 'no_lang_code', 1, 'https://ror.org/030bh9196 X-Fab (Germany)'), (57532, 'https://ror.org/030c89r84', 'no_lang_code', 1, 'https://ror.org/030c89r84 Thumbay Group (United Arab Emirates)'), (57533, 'https://ror.org/030ceys03', 'no_lang_code', 1, 'https://ror.org/030ceys03 Vapos (Czechia)'), (57534, 'https://ror.org/030dfzf23', 'de', 1, 'https://ror.org/030dfzf23 Sozialversicherungsgericht des Kantons Zürich'), (57535, 'https://ror.org/030ebc654', 'en', 1, 'https://ror.org/030ebc654 Hefei Material Science and Technology Center 合肥物质科学技术中心'), (57536, 'https://ror.org/030f1yb82', 'en', 1, 'https://ror.org/030f1yb82 Institut Icare'), (57537, 'https://ror.org/030j64f75', 'de', 1, 'https://ror.org/030j64f75 Neue Galerie Luzern'), (57538, 'https://ror.org/030jevs33', 'no_lang_code', 1, 'https://ror.org/030jevs33 TESLA Electrontubes (Czechia)'), (57539, 'https://ror.org/030jq7570', 'en', 1, 'https://ror.org/030jq7570 Society for Psychotherapy Research'), (57540, 'https://ror.org/030nks913', 'no_lang_code', 1, 'https://ror.org/030nks913 ZEAS Lysice (Czechia)'), (57541, 'https://ror.org/030pxca80', 'no_lang_code', 1, 'https://ror.org/030pxca80 Komix (Czechia)'), (57542, 'https://ror.org/030q3v026', 'no_lang_code', 1, 'https://ror.org/030q3v026 Project Design and Development Agency (Czechia)'), (57543, 'https://ror.org/030qj9p34', 'no_lang_code', 1, 'https://ror.org/030qj9p34 Čisté Kovy (Czechia)'), (57544, 'https://ror.org/030t7nd77', 'en', 1, 'https://ror.org/030t7nd77 Beijing Radiation Center 北京市辐射中心'), (57545, 'https://ror.org/030wbs841', 'no_lang_code', 1, 'https://ror.org/030wbs841 Medicodose Systems (France)'), (57546, 'https://ror.org/030yesb42', 'no_lang_code', 1, 'https://ror.org/030yesb42 Fresenius Kabi (Netherlands)'), (57547, 'https://ror.org/030zkq869', 'no_lang_code', 1, 'https://ror.org/030zkq869 Wenger Plattner (Switzerland)'), (57548, 'https://ror.org/030zp3k15', 'no_lang_code', 1, 'https://ror.org/030zp3k15 Zemědělské Družstvo Vrchovina (Czechia)'), (57549, 'https://ror.org/03114vz20', 'en', 1, 'https://ror.org/03114vz20 Central New York Research Corporation'), (57550, 'https://ror.org/031ahp525', 'no_lang_code', 1, 'https://ror.org/031ahp525 Parburch Medical Developments (United Kingdom)'), (57551, 'https://ror.org/031aht432', 'no_lang_code', 1, 'https://ror.org/031aht432 ExoTerra Resources (United States)'), (57552, 'https://ror.org/031dfcr56', 'no_lang_code', 1, 'https://ror.org/031dfcr56 Em Test ČR (Czechia)'), (57553, 'https://ror.org/031eerz69', 'no_lang_code', 1, 'https://ror.org/031eerz69 Medicrea (France)'), (57554, 'https://ror.org/031ew1v21', 'no_lang_code', 1, 'https://ror.org/031ew1v21 Schaffner (Switzerland)'), (57555, 'https://ror.org/031f8aj53', 'en', 1, 'https://ror.org/031f8aj53 Missouri Department of Agriculture'), (57556, 'https://ror.org/031gcry19', 'de', 1, 'https://ror.org/031gcry19 Jackstädt Stiftung'), (57557, 'https://ror.org/031h5fa94', 'de', 1, 'https://ror.org/031h5fa94 Baden-Württemberg Stiftung'), (57558, 'https://ror.org/031mphy63', 'no_lang_code', 1, 'https://ror.org/031mphy63 Comtes DFM (Czechia)'), (57559, 'https://ror.org/031n13782', 'no_lang_code', 1, 'https://ror.org/031n13782 Vaillant (United States)'), (57560, 'https://ror.org/031n2qp89', 'de', 1, 'https://ror.org/031n2qp89 Privatbüro Plus'), (57561, 'https://ror.org/031nm9f90', 'no_lang_code', 1, 'https://ror.org/031nm9f90 Enantis (Czechia)'), (57562, 'https://ror.org/031ph5b56', 'en', 1, 'https://ror.org/031ph5b56 Forests of the Town of Jirkov Lesy Města Jirkova'), (57563, 'https://ror.org/031qpfn56', 'en', 1, 'https://ror.org/031qpfn56 VA Desert Pacific Healthcare Network'), (57564, 'https://ror.org/031rbfd73', 'no_lang_code', 1, 'https://ror.org/031rbfd73 Ball (France)'), (57565, 'https://ror.org/031s4pb13', 'en', 1, 'https://ror.org/031s4pb13 Office of Special Education and Rehabilitative Services'), (57566, 'https://ror.org/031shee24', 'no_lang_code', 1, 'https://ror.org/031shee24 Silvi Nova (Czechia)'), (57567, 'https://ror.org/031w1hc71', 'en', 1, 'https://ror.org/031w1hc71 Threshold Foundation'), (57568, 'https://ror.org/031ww6378', 'en', 1, 'https://ror.org/031ww6378 Fujichiro Iijima Memorial Food Science Promotion Foundation 公益財団法人 飯島藤十郎記念食品科学振興財団'), (57569, 'https://ror.org/031xey008', 'no_lang_code', 1, 'https://ror.org/031xey008 Ecowasteenergy (Czechia)'), (57570, 'https://ror.org/031xm4t96', 'no_lang_code', 1, 'https://ror.org/031xm4t96 BeHo (Czechia)'), (57571, 'https://ror.org/031ykaj51', 'no_lang_code', 1, 'https://ror.org/031ykaj51 Markent (Czechia)'), (57572, 'https://ror.org/031yv9651', 'en', 1, 'https://ror.org/031yv9651 Thunder Valley Community Development Corporation'), (57573, 'https://ror.org/031zhyf70', 'it', 1, 'https://ror.org/031zhyf70 Museo di Valmaggia'), (57574, 'https://ror.org/031zns335', 'no_lang_code', 1, 'https://ror.org/031zns335 Compas Automatizace (Czechia)'), (57575, 'https://ror.org/03247gm88', 'no_lang_code', 1, 'https://ror.org/03247gm88 Solidtech Animal Health (United States)'), (57576, 'https://ror.org/0326ky169', 'de', 1, 'https://ror.org/0326ky169 Theologische Hochschule Chur'), (57577, 'https://ror.org/0326x9e38', 'no_lang_code', 1, 'https://ror.org/0326x9e38 Fosil Partner (Czechia)'), (57578, 'https://ror.org/0328zx757', 'no_lang_code', 1, 'https://ror.org/0328zx757 Rolnické Družstvo Bezno (Czechia)'), (57579, 'https://ror.org/032ap5553', 'no_lang_code', 1, 'https://ror.org/032ap5553 Ecological Consulting (Czechia)'), (57580, 'https://ror.org/032aq8297', 'fr', 1, 'https://ror.org/032aq8297 Alliance Sud'), (57581, 'https://ror.org/032b9vb83', 'no_lang_code', 1, 'https://ror.org/032b9vb83 Ish Pumps Olomouc (Czechia)'), (57582, 'https://ror.org/032baaz38', 'no_lang_code', 1, 'https://ror.org/032baaz38 OrthoD (United Kingdom)'), (57583, 'https://ror.org/032bsv240', 'de', 1, 'https://ror.org/032bsv240 Independent Commission of Experts Switzerland – Second World War Unabhängige Expertenkommission Schweiz'), (57584, 'https://ror.org/032dtwy97', 'no_lang_code', 1, 'https://ror.org/032dtwy97 Trod Medical (France)'), (57585, 'https://ror.org/032dyj305', 'en', 1, 'https://ror.org/032dyj305 Basko Healthcare'), (57586, 'https://ror.org/032hfv632', 'no_lang_code', 1, 'https://ror.org/032hfv632 Bristol-Myers Squibb (Germany)'), (57587, 'https://ror.org/032j40h62', 'en', 1, 'https://ror.org/032j40h62 Edmond J. Safra Philanthropic Foundation Fondation Philanthropique Edmond J Safra'), (57588, 'https://ror.org/032j4xk85', 'cs', 1, 'https://ror.org/032j4xk85 Asociace Financování Infrastruktury Pro Mobilitu'), (57589, 'https://ror.org/032jwgq52', 'en', 1, 'https://ror.org/032jwgq52 Ausbildungs- und Tagungszentrum Bienenberg Theological Seminary Bienenberg'), (57590, 'https://ror.org/032nv2431', 'no_lang_code', 1, 'https://ror.org/032nv2431 Intelligence in Medical Technologies (France)'), (57591, 'https://ror.org/032nv5f98', 'en', 1, 'https://ror.org/032nv5f98 ChildCare Education Institute'), (57592, 'https://ror.org/032rnvf90', 'no_lang_code', 1, 'https://ror.org/032rnvf90 BBMG (China) 北京金隅控股有限公司'), (57593, 'https://ror.org/032sxkb16', 'en', 1, 'https://ror.org/032sxkb16 Central Institute of Temperate Horticulture'), (57594, 'https://ror.org/032tfbg84', 'no_lang_code', 1, 'https://ror.org/032tfbg84 Danaher (Czechia)'), (57595, 'https://ror.org/032vp6a84', 'no_lang_code', 1, 'https://ror.org/032vp6a84 Bioderma (France)'), (57596, 'https://ror.org/032wvex55', 'no_lang_code', 1, 'https://ror.org/032wvex55 Sangreen (Czechia)'), (57597, 'https://ror.org/03310k523', 'no_lang_code', 1, 'https://ror.org/03310k523 Technofiber (Czechia)'), (57598, 'https://ror.org/0332e1g86', 'no_lang_code', 1, 'https://ror.org/0332e1g86 ERGOWORK (Czechia)'), (57599, 'https://ror.org/0333r2w37', 'no_lang_code', 1, 'https://ror.org/0333r2w37 ŽDB Drátovna (Czechia)'), (57600, 'https://ror.org/0335xmv35', 'en', 1, 'https://ror.org/0335xmv35 Weed Science Society of America'), (57601, 'https://ror.org/033bpfz21', 'no_lang_code', 1, 'https://ror.org/033bpfz21 Deep Space Industries (United States)'), (57602, 'https://ror.org/033bq7c05', 'no_lang_code', 1, 'https://ror.org/033bq7c05 Bioconsult (Czechia)'), (57603, 'https://ror.org/033d1rc08', 'no_lang_code', 1, 'https://ror.org/033d1rc08 Cardinal Health (Australia)'), (57604, 'https://ror.org/033gq4890', 'no_lang_code', 1, 'https://ror.org/033gq4890 Ökoplant International (Czechia)'), (57605, 'https://ror.org/033h71b08', 'cs', 1, 'https://ror.org/033h71b08 Archeologické Centrum Olomouc'), (57606, 'https://ror.org/033hwwn95', 'nl', 1, 'https://ror.org/033hwwn95 Stichting Achmea Slachtoffer en Samenleving'), (57607, 'https://ror.org/033k6xs70', 'en', 1, 'https://ror.org/033k6xs70 Parents'' Place of Maryland'), (57608, 'https://ror.org/033nhhq39', 'no_lang_code', 1, 'https://ror.org/033nhhq39 Medical Dispensing Systems (Netherlands)'), (57609, 'https://ror.org/033pgsq69', 'no_lang_code', 1, 'https://ror.org/033pgsq69 Nova Insurance Services (China)'), (57610, 'https://ror.org/033qwae34', 'cs', 1, 'https://ror.org/033qwae34 Liberální institut'), (57611, 'https://ror.org/033sc9d20', 'en', 1, 'https://ror.org/033sc9d20 Kumamoto Orthopedic Surgery Hospital'), (57612, 'https://ror.org/033trmh69', 'en', 1, 'https://ror.org/033trmh69 Bureau of the Fiscal Service'), (57613, 'https://ror.org/033v4eh59', 'no_lang_code', 1, 'https://ror.org/033v4eh59 Clutex (Czechia)'), (57614, 'https://ror.org/033wye414', 'de', 1, 'https://ror.org/033wye414 Schweißtechnische Lehr- und Versuchsanstalt'), (57615, 'https://ror.org/033x3jh42', 'no_lang_code', 1, 'https://ror.org/033x3jh42 Schmizo (Switzerland)'), (57616, 'https://ror.org/033x7yd97', 'en', 1, 'https://ror.org/033x7yd97 Stimson Miller Foundation'), (57617, 'https://ror.org/033zy3080', 'no_lang_code', 1, 'https://ror.org/033zy3080 Union Lesní Brána (Czechia)'), (57618, 'https://ror.org/0341e7068', 'en', 1, 'https://ror.org/0341e7068 Fondation pour la médecine de laboratoire Foundation for laboratory medicine'), (57619, 'https://ror.org/03429t854', 'cs', 1, 'https://ror.org/03429t854 Zemědělské Družstvo Kojčice'), (57620, 'https://ror.org/0349gkc55', 'no_lang_code', 1, 'https://ror.org/0349gkc55 Obchodní Tiskárny Kolín'), (57621, 'https://ror.org/034aqje35', 'en', 1, 'https://ror.org/034aqje35 International Dialogue Centre'), (57622, 'https://ror.org/034bznj45', 'no_lang_code', 1, 'https://ror.org/034bznj45 Fresenius Kabi (Czechia)'), (57623, 'https://ror.org/034e48p94', 'de', 1, 'https://ror.org/034e48p94 Kantonsspital Baden'), (57624, 'https://ror.org/034eg5a26', 'en', 1, 'https://ror.org/034eg5a26 Government of Ghana'), (57625, 'https://ror.org/034f13e71', 'no_lang_code', 1, 'https://ror.org/034f13e71 ŽSD (Czechia)'), (57626, 'https://ror.org/034fvq480', 'en', 1, 'https://ror.org/034fvq480 Czech Olympic Committee Český Olympijský Výbor'), (57627, 'https://ror.org/034js7368', 'pt', 1, 'https://ror.org/034js7368 Sociedade Brasileira de Cirurgia Plástica'), (57628, 'https://ror.org/034nw2x49', 'no_lang_code', 1, 'https://ror.org/034nw2x49 TraceTag (France)'), (57629, 'https://ror.org/034qg4250', 'no_lang_code', 1, 'https://ror.org/034qg4250 Kavalier (Czechia)'), (57630, 'https://ror.org/034rw1w19', 'de', 1, 'https://ror.org/034rw1w19 Spital Muri'), (57631, 'https://ror.org/034sqmv32', 'en', 1, 'https://ror.org/034sqmv32 Agrophysical Research Institute Агрофизический научно-исследовательский институт'), (57632, 'https://ror.org/034tqkr94', 'no_lang_code', 1, 'https://ror.org/034tqkr94 Bjl Laboratoires (France)'), (57633, 'https://ror.org/034v70g29', 'no_lang_code', 1, 'https://ror.org/034v70g29 AEV (Czechia)'), (57634, 'https://ror.org/034w84t89', 'en', 1, 'https://ror.org/034w84t89 Centre International d''Etude du Sport International Centre for Sports Studies'), (57635, 'https://ror.org/034xn6p88', 'no_lang_code', 1, 'https://ror.org/034xn6p88 ILD (Czechia)'), (57636, 'https://ror.org/034ywsh12', 'en', 1, 'https://ror.org/034ywsh12 Northeast Climate Science Center'), (57637, 'https://ror.org/03517qf88', 'no_lang_code', 1, 'https://ror.org/03517qf88 Michelin (United States)'), (57638, 'https://ror.org/035669d27', 'en', 1, 'https://ror.org/035669d27 Lishman Health Foundation'), (57639, 'https://ror.org/035881909', 'de', 1, 'https://ror.org/035881909 Lamprecht und Stamm Sozialforschung und Beratung'), (57640, 'https://ror.org/035a07q19', 'fr', 1, 'https://ror.org/035a07q19 Hirslanden Clinique des Grangettes'), (57641, 'https://ror.org/035a1qp70', 'en', 1, 'https://ror.org/035a1qp70 Tony Elumelu Foundation'), (57642, 'https://ror.org/035ded219', 'no_lang_code', 1, 'https://ror.org/035ded219 RhySearch (Switzerland)'), (57643, 'https://ror.org/035g0d030', 'no_lang_code', 1, 'https://ror.org/035g0d030 Axon Active (Switzerland)'), (57644, 'https://ror.org/035jj1q51', 'no_lang_code', 1, 'https://ror.org/035jj1q51 Heartland Plant Innovations (United States)'), (57645, 'https://ror.org/035jk1w68', 'no_lang_code', 1, 'https://ror.org/035jk1w68 IVAR (Czechia)'), (57646, 'https://ror.org/035k7f515', 'en', 1, 'https://ror.org/035k7f515 Shandong Food Fermentation Industry Research and Design Institute 山东省食品发酵工业研究设计院'), (57647, 'https://ror.org/035kbp941', 'no_lang_code', 1, 'https://ror.org/035kbp941 Dendera (Czechia)'), (57648, 'https://ror.org/035kjdm29', 'en', 1, 'https://ror.org/035kjdm29 Head of Government of the Republic of Tunisia'), (57649, 'https://ror.org/035n6ph62', 'no_lang_code', 1, 'https://ror.org/035n6ph62 Perrigo (United Kingdom)'), (57650, 'https://ror.org/035pbyf96', 'en', 1, 'https://ror.org/035pbyf96 International Union of Anthropological and Ethnological Sciences'), (57651, 'https://ror.org/035pp4s04', 'de', 1, 'https://ror.org/035pp4s04 Institut für Urheber- und Medienrecht'), (57652, 'https://ror.org/035ppa085', 'no_lang_code', 1, 'https://ror.org/035ppa085 Bentley Czech (Czechia)'), (57653, 'https://ror.org/035q7re19', 'en', 1, 'https://ror.org/035q7re19 Texas Department of Agriculture'), (57654, 'https://ror.org/035qjfd74', 'no_lang_code', 1, 'https://ror.org/035qjfd74 Třinecký Inženýring (Czechia)'), (57655, 'https://ror.org/035qjq024', 'no_lang_code', 1, 'https://ror.org/035qjq024 Niip Gradostroitelstva Научно-исследовательский и проектный институт по разработке генеральных планов и проектов застройки городов'), (57656, 'https://ror.org/035r6h173', 'no_lang_code', 1, 'https://ror.org/035r6h173 Glasiert (Czechia)'), (57657, 'https://ror.org/035rg2c54', 'no_lang_code', 1, 'https://ror.org/035rg2c54 ECO Management (Czechia)'), (57658, 'https://ror.org/035svbv36', 'en', 1, 'https://ror.org/035svbv36 Juntendo University Shizuoka Hospital 順天堂大学医学部附属静岡病院'), (57659, 'https://ror.org/035t0zn40', 'en', 1, 'https://ror.org/035t0zn40 Institute of Agricultural Engineering Mezőgazdasági Gépesítési Intézet'), (57660, 'https://ror.org/035tqry63', 'de', 1, 'https://ror.org/035tqry63 AWA-Institut'), (57661, 'https://ror.org/035zqsp67', 'no_lang_code', 1, 'https://ror.org/035zqsp67 Regent Plus Žlutice (Czechia)'), (57662, 'https://ror.org/0362bde51', 'en', 1, 'https://ror.org/0362bde51 Water Environment and Reuse Foundation'), (57663, 'https://ror.org/0363etv78', 'no_lang_code', 1, 'https://ror.org/0363etv78 Edra Médical (France)'), (57664, 'https://ror.org/0366pf663', 'en', 1, 'https://ror.org/0366pf663 Japan Institute of Wastewater Engineering Technology 日本下水道新技術機構'), (57665, 'https://ror.org/0369h0f23', 'no_lang_code', 1, 'https://ror.org/0369h0f23 RDS-CZ (Czechia)'), (57666, 'https://ror.org/0369xey85', 'no_lang_code', 1, 'https://ror.org/0369xey85 Agren (United States)'), (57667, 'https://ror.org/036awb582', 'de', 1, 'https://ror.org/036awb582 Verwaltungsgericht Kantons Zürich'), (57668, 'https://ror.org/036bs9x63', 'no_lang_code', 1, 'https://ror.org/036bs9x63 Suisag (Switzerland)'), (57669, 'https://ror.org/036bzjr85', 'cs', 1, 'https://ror.org/036bzjr85 Projekt Odyssea'), (57670, 'https://ror.org/036cdfc81', 'no_lang_code', 1, 'https://ror.org/036cdfc81 Modřany Power (Czechia)'), (57671, 'https://ror.org/036dc0221', 'no_lang_code', 1, 'https://ror.org/036dc0221 2EL (Czechia)'), (57672, 'https://ror.org/036ef8v07', 'no_lang_code', 1, 'https://ror.org/036ef8v07 Cubespace (Czechia)'), (57673, 'https://ror.org/036gejb44', 'en', 1, 'https://ror.org/036gejb44 Tuba City Regional Health Care'), (57674, 'https://ror.org/036jhs482', 'es', 1, 'https://ror.org/036jhs482 Fundación Alicia Koplowitz'), (57675, 'https://ror.org/036m5gb67', 'en', 1, 'https://ror.org/036m5gb67 Ronald McDonald House Charities of Eastern New England'), (57676, 'https://ror.org/036nj4x83', 'en', 1, 'https://ror.org/036nj4x83 Central Pulp & Paper Research Institute'), (57677, 'https://ror.org/036p1z483', 'no_lang_code', 1, 'https://ror.org/036p1z483 Enviconsult (Slovakia)'), (57678, 'https://ror.org/036p2ma86', 'en', 1, 'https://ror.org/036p2ma86 Research Partnership to Secure Energy for America'), (57679, 'https://ror.org/036qrws31', 'de', 1, 'https://ror.org/036qrws31 Staatsarchiv des Kantons Solothurn'), (57680, 'https://ror.org/036skbs59', 'cs', 1, 'https://ror.org/036skbs59 Základní Škola a Mateřská Škola Angel'), (57681, 'https://ror.org/036vxea50', 'no_lang_code', 1, 'https://ror.org/036vxea50 Walramcom (Czechia)'), (57682, 'https://ror.org/036x9s723', 'no_lang_code', 1, 'https://ror.org/036x9s723 MTMP (Czechia)'), (57683, 'https://ror.org/036xxhv13', 'no_lang_code', 1, 'https://ror.org/036xxhv13 Invisio (Germany)'), (57684, 'https://ror.org/037042411', 'en', 1, 'https://ror.org/037042411 International Fistball Association'), (57685, 'https://ror.org/0370bpy80', 'sv', 1, 'https://ror.org/0370bpy80 Stiftelsen Tysta Skolan'), (57686, 'https://ror.org/03722ks09', 'en', 1, 'https://ror.org/03722ks09 Institut pro Udržitelný Rozvoj Sídel Institute for Sustainable Development of Settlements'), (57687, 'https://ror.org/0373b8g76', 'no_lang_code', 1, 'https://ror.org/0373b8g76 Tagro (Czechia)'), (57688, 'https://ror.org/037405c78', 'en', 1, 'https://ror.org/037405c78 Cancer Research UK Manchester Institute'), (57689, 'https://ror.org/0375hkv63', 'no_lang_code', 1, 'https://ror.org/0375hkv63 Geostar (Czechia)'), (57690, 'https://ror.org/0377qb339', 'no_lang_code', 1, 'https://ror.org/0377qb339 Merkurtoys (Czechia)'), (57691, 'https://ror.org/0377ycc43', 'no_lang_code', 1, 'https://ror.org/0377ycc43 Sefam (France)'), (57692, 'https://ror.org/037866t57', 'en', 1, 'https://ror.org/037866t57 Tenovus Scotland'), (57693, 'https://ror.org/0378cd528', 'en', 1, 'https://ror.org/0378cd528 Institute for Cognitive Science Studies پژوهشکده علوم شناختی'), (57694, 'https://ror.org/037ax5f60', 'no_lang_code', 1, 'https://ror.org/037ax5f60 Breeding Cooperative Impuls (Czechia) Chovatelské Družstvo Impuls'), (57695, 'https://ror.org/037b4r736', 'no_lang_code', 1, 'https://ror.org/037b4r736 Rodael (France)'), (57696, 'https://ror.org/037d48q80', 'en', 1, 'https://ror.org/037d48q80 Czech Society of Experimental Plant Biology Česká společnost experimentální biologie rostlin'), (57697, 'https://ror.org/037dpnh08', 'no_lang_code', 1, 'https://ror.org/037dpnh08 Lesprojekt Východní Čechy (Czechia)'), (57698, 'https://ror.org/037e0dj26', 'no_lang_code', 1, 'https://ror.org/037e0dj26 Professional Solutions (United States)'), (57699, 'https://ror.org/037fjvr70', 'no_lang_code', 1, 'https://ror.org/037fjvr70 CleverMaps (Czechia)'), (57700, 'https://ror.org/037fsex72', 'cs', 1, 'https://ror.org/037fsex72 Oblastní galerie Vysočiny v Jihlavě, Vysočina Regional Gallery in Jihlava'), (57701, 'https://ror.org/037g52y53', 'fr', 1, 'https://ror.org/037g52y53 Art and History Museum of Fribourg Musée d''Art et d''Histoire de Fribourg'), (57702, 'https://ror.org/037hw2x70', 'no_lang_code', 1, 'https://ror.org/037hw2x70 Asociace Gumárenské Technologie Zlín (Czechia)'), (57703, 'https://ror.org/037j2g266', 'no_lang_code', 1, 'https://ror.org/037j2g266 Wockhardt (France)'), (57704, 'https://ror.org/037jk8996', 'en', 1, 'https://ror.org/037jk8996 Institute of Ecology of Mountain Territories Институт экологии горных территорий РАН'), (57705, 'https://ror.org/037kt1n40', 'cs', 1, 'https://ror.org/037kt1n40 Koordinační Středisko pro Resortní Zdravotnické Informační Systémy'), (57706, 'https://ror.org/037m48527', 'no_lang_code', 1, 'https://ror.org/037m48527 Native PR (Czechia)'), (57707, 'https://ror.org/037ne1y28', 'no_lang_code', 1, 'https://ror.org/037ne1y28 HighDim (Switzerland)'), (57708, 'https://ror.org/037pcte91', 'en', 1, 'https://ror.org/037pcte91 Forest Genetics Council'), (57709, 'https://ror.org/037tm7f56', 'en', 1, 'https://ror.org/037tm7f56 Courant Institute of Mathematical Sciences'), (57710, 'https://ror.org/037v4t923', 'en', 1, 'https://ror.org/037v4t923 Family Health Council of Central Pennsylvania'), (57711, 'https://ror.org/037vd6027', 'en', 1, 'https://ror.org/037vd6027 OneSight'), (57712, 'https://ror.org/037vq0a20', 'en', 1, 'https://ror.org/037vq0a20 Svaz českých a moravských výrobních družstev Union of Czech Production Co-operatives'), (57713, 'https://ror.org/037vy2h31', 'en', 1, 'https://ror.org/037vy2h31 Saccomanno Higher Education Foundation'), (57714, 'https://ror.org/037wrv551', 'en', 1, 'https://ror.org/037wrv551 Kosovar Centre for Security Studies Qendra Kosovare për Studime të Sigurisë'), (57715, 'https://ror.org/037xabw57', 'en', 1, 'https://ror.org/037xabw57 Swiss Integrative Center for Human Health'), (57716, 'https://ror.org/037xrhm50', 'no_lang_code', 1, 'https://ror.org/037xrhm50 Liberecké Strojírny (Czechia)'), (57717, 'https://ror.org/037xwh335', 'no_lang_code', 1, 'https://ror.org/037xwh335 Maspex (Czechia)'), (57718, 'https://ror.org/0380vn954', 'en', 1, 'https://ror.org/0380vn954 Department of Information Technology, Biotechnology and Science and Technology'), (57719, 'https://ror.org/0381s2a22', 'no_lang_code', 1, 'https://ror.org/0381s2a22 CE Traffic (Czechia)'), (57720, 'https://ror.org/03826h192', 'no_lang_code', 1, 'https://ror.org/03826h192 Kao Corporation (Spain)'), (57721, 'https://ror.org/0382jhd52', 'en', 1, 'https://ror.org/0382jhd52 Iketani Science and Technology Foundation 公益財団法人 池谷科学技術振興財団'), (57722, 'https://ror.org/0382m9t69', 'no_lang_code', 1, 'https://ror.org/0382m9t69 Sidel (Italy)'), (57723, 'https://ror.org/0382x5c07', 'no_lang_code', 1, 'https://ror.org/0382x5c07 Sebia (France)'), (57724, 'https://ror.org/0387d5286', 'no_lang_code', 1, 'https://ror.org/0387d5286 Atheris Laboratories (Switzerland)'), (57725, 'https://ror.org/038923331', 'en', 1, 'https://ror.org/038923331 BFF Bern'), (57726, 'https://ror.org/038937755', 'en', 1, 'https://ror.org/038937755 Stiftelsen Forska Utan Djurförsök Swedish Fund for Research Without Animal Experiments'), (57727, 'https://ror.org/03895v451', 'no_lang_code', 1, 'https://ror.org/03895v451 Canon (Australia)'), (57728, 'https://ror.org/038b7ts62', 'no_lang_code', 1, 'https://ror.org/038b7ts62 LSO Medical (France)'), (57729, 'https://ror.org/038d53f16', 'en', 1, 'https://ror.org/038d53f16 Agricultural Genetic Engineering Research Institute'), (57730, 'https://ror.org/038d5d459', 'en', 1, 'https://ror.org/038d5d459 Scottish Health Services'), (57731, 'https://ror.org/038dc1s14', 'no_lang_code', 1, 'https://ror.org/038dc1s14 Crew Services (United States)'), (57732, 'https://ror.org/038eh4b79', 'en', 1, 'https://ror.org/038eh4b79 Office of Patient Care Services'), (57733, 'https://ror.org/038evr161', 'no_lang_code', 1, 'https://ror.org/038evr161 Merci (Czechia)'), (57734, 'https://ror.org/038h7ww88', 'en', 1, 'https://ror.org/038h7ww88 Taiwan Agricultural Chemicals and Toxic Substances Research Institute'), (57735, 'https://ror.org/038h93e72', 'no_lang_code', 1, 'https://ror.org/038h93e72 Inset (Czechia)'), (57736, 'https://ror.org/038hy2g58', 'no_lang_code', 1, 'https://ror.org/038hy2g58 Vojenské Lesy a Statky ČR (Czechia)'), (57737, 'https://ror.org/038k2n210', 'en', 1, 'https://ror.org/038k2n210 Community Health Centers of Benton and Linn Counties'), (57738, 'https://ror.org/038nh6c68', 'no_lang_code', 1, 'https://ror.org/038nh6c68 Kromilk (Czechia)'), (57739, 'https://ror.org/038ntmm55', 'no_lang_code', 1, 'https://ror.org/038ntmm55 Nexum Trilog (Czechia)'), (57740, 'https://ror.org/038q8t720', 'cs', 1, 'https://ror.org/038q8t720 Povodí Vltavy'), (57741, 'https://ror.org/038r0kk66', 'no_lang_code', 1, 'https://ror.org/038r0kk66 Kobra Údlice (Czechia)'), (57742, 'https://ror.org/038sxqg91', 'no_lang_code', 1, 'https://ror.org/038sxqg91 Kelvion (Czechia)'), (57743, 'https://ror.org/038trbs43', 'cs', 1, 'https://ror.org/038trbs43 BEZK'), (57744, 'https://ror.org/038v7k315', 'en', 1, 'https://ror.org/038v7k315 Hawthorne Valley Association'), (57745, 'https://ror.org/038vzy124', 'no_lang_code', 1, 'https://ror.org/038vzy124 Bios Služby Výpočetní Techniky (Czechia)'), (57746, 'https://ror.org/038xj9474', 'en', 1, 'https://ror.org/038xj9474 Okinawa Prefectural Agricultural Research Center 沖縄県農業研究センター'), (57747, 'https://ror.org/038ypnm26', 'es', 1, 'https://ror.org/038ypnm26 Ministerio del Poder Popular para la Educación Universitaria, Ciencia y Tecnología'), (57748, 'https://ror.org/038z7hb11', 'en', 1, 'https://ror.org/038z7hb11 Institute of Laboratory Animal Science'), (57749, 'https://ror.org/0392hft58', 'en', 1, 'https://ror.org/0392hft58 Nissay Culture Foundation 日本生命保険相互会社'), (57750, 'https://ror.org/0392x6996', 'en', 1, 'https://ror.org/0392x6996 Association Cartographique Internationale International Cartographic Association'), (57751, 'https://ror.org/039309z32', 'no_lang_code', 1, 'https://ror.org/039309z32 Seva – Flora (Czechia)'), (57752, 'https://ror.org/03937a641', 'no_lang_code', 1, 'https://ror.org/03937a641 Acteon (United Kingdom)'), (57753, 'https://ror.org/039395021', 'fr', 1, 'https://ror.org/039395021 Vitrocentre Romont'), (57754, 'https://ror.org/03952ft31', 'en', 1, 'https://ror.org/03952ft31 Art as Foundation'), (57755, 'https://ror.org/0395qzd79', 'no_lang_code', 1, 'https://ror.org/0395qzd79 KonekTel (Czechia)'), (57756, 'https://ror.org/0395s1g07', 'fr', 1, 'https://ror.org/0395s1g07 Clinique de La Source'), (57757, 'https://ror.org/0396h7r78', 'no_lang_code', 1, 'https://ror.org/0396h7r78 Studi Associati (Switzerland)'), (57758, 'https://ror.org/0396taz57', 'en', 1, 'https://ror.org/0396taz57 Kyoto Municipal Institute of Industrial Technology and Culture 京都市立芸術工科大学工業技術文化研究所'), (57759, 'https://ror.org/03982hf34', 'en', 1, 'https://ror.org/03982hf34 New Huadu Business School 新华都商学院'), (57760, 'https://ror.org/039a0eq51', 'de', 1, 'https://ror.org/039a0eq51 Ostkirchliches Institut Regensburg'), (57761, 'https://ror.org/039azq733', 'no_lang_code', 1, 'https://ror.org/039azq733 Ekogroup Czech (Czechia)'), (57762, 'https://ror.org/039dcrv13', 'cs', 1, 'https://ror.org/039dcrv13 Muzeum Karlovy Vary'), (57763, 'https://ror.org/039e1zg46', 'no_lang_code', 1, 'https://ror.org/039e1zg46 Immobiliser Central Europe (Czechia)'), (57764, 'https://ror.org/039fsnc94', 'no_lang_code', 1, 'https://ror.org/039fsnc94 Oenobiol (France)'), (57765, 'https://ror.org/039fymv14', 'no_lang_code', 1, 'https://ror.org/039fymv14 Malik Management (Switzerland)'), (57766, 'https://ror.org/039najk11', 'es', 1, 'https://ror.org/039najk11 Fundacion Florencio Fiorini'), (57767, 'https://ror.org/039nme287', 'no_lang_code', 1, 'https://ror.org/039nme287 Woodcomp (Czechia)'), (57768, 'https://ror.org/039qk4e20', 'no_lang_code', 1, 'https://ror.org/039qk4e20 Isotra (Czechia)'), (57769, 'https://ror.org/039rjaf45', 'no_lang_code', 1, 'https://ror.org/039rjaf45 Bosch Rexroth (Czechia)'), (57770, 'https://ror.org/039t6ws48', 'no_lang_code', 1, 'https://ror.org/039t6ws48 Sindat (Czechia)'), (57771, 'https://ror.org/039vtmd91', 'no_lang_code', 1, 'https://ror.org/039vtmd91 Jazz Pharmaceuticals (Italy)'), (57772, 'https://ror.org/039vvd931', 'en', 1, 'https://ror.org/039vvd931 Community Action Agency of St. Louis County'), (57773, 'https://ror.org/039x2ss79', 'no_lang_code', 1, 'https://ror.org/039x2ss79 Irbis (Czechia)'), (57774, 'https://ror.org/039ztcx57', 'fr', 1, 'https://ror.org/039ztcx57 Institut de Recherche en Hématologie et Transplantation'), (57775, 'https://ror.org/03a05n602', 'no_lang_code', 1, 'https://ror.org/03a05n602 Telkom (South Africa)'), (57776, 'https://ror.org/03a05sb88', 'fr', 1, 'https://ror.org/03a05sb88 Laboratoires i2m'), (57777, 'https://ror.org/03a17hk77', 'fr', 1, 'https://ror.org/03a17hk77 Association Suisse pour le Service aux Régions et Communes'), (57778, 'https://ror.org/03a1ck781', 'it', 1, 'https://ror.org/03a1ck781 Academia Engiadina'), (57779, 'https://ror.org/03a2v5m77', 'no_lang_code', 1, 'https://ror.org/03a2v5m77 Atega (Czechia)'), (57780, 'https://ror.org/03a2yyf19', 'no_lang_code', 1, 'https://ror.org/03a2yyf19 Prefa Praha (Czechia)'), (57781, 'https://ror.org/03a4r5t71', 'en', 1, 'https://ror.org/03a4r5t71 Vanguard Healthcare'), (57782, 'https://ror.org/03a62s155', 'en', 1, 'https://ror.org/03a62s155 Westminster Guarantee Protection Trustees'), (57783, 'https://ror.org/03a6ejk87', 'no_lang_code', 1, 'https://ror.org/03a6ejk87 CIS Pharma (Switzerland)'), (57784, 'https://ror.org/03aagvh91', 'no_lang_code', 1, 'https://ror.org/03aagvh91 První regionální rozvojová (Czechia)'), (57785, 'https://ror.org/03acjy802', 'no_lang_code', 1, 'https://ror.org/03acjy802 Aroma Praha (Czechia)'), (57786, 'https://ror.org/03adg5y95', 'no_lang_code', 1, 'https://ror.org/03adg5y95 Romill (Czechia)'), (57787, 'https://ror.org/03ae66d75', 'no_lang_code', 1, 'https://ror.org/03ae66d75 Nuance Communications (United Kingdom)'), (57788, 'https://ror.org/03afd3583', 'en', 1, 'https://ror.org/03afd3583 Schweizerische Akademie für Entwicklung Swiss Academy for Development'), (57789, 'https://ror.org/03agt1e39', 'nl', 1, 'https://ror.org/03agt1e39 Stichting Rotterdams Kinderrevalidatie Fonds Adriaanstichting'), (57790, 'https://ror.org/03ajhc397', 'no_lang_code', 1, 'https://ror.org/03ajhc397 Bohušovická Mlékárna (Czechia)'), (57791, 'https://ror.org/03akpdh76', 'de', 1, 'https://ror.org/03akpdh76 ZNS Hannelore Kohl Stiftung'), (57792, 'https://ror.org/03amgzq35', 'de', 1, 'https://ror.org/03amgzq35 Stiftung Zürcher Kinder- und Jugendheime'), (57793, 'https://ror.org/03an0wj74', 'no_lang_code', 1, 'https://ror.org/03an0wj74 BASF (France)'), (57794, 'https://ror.org/03ans1x38', 'de', 1, 'https://ror.org/03ans1x38 Departement Gesundheit und Soziales'), (57795, 'https://ror.org/03apaw308', 'de', 1, 'https://ror.org/03apaw308 Stiftung für Forschung in Spätantike und Mittelalter HR. Sennhauser'), (57796, 'https://ror.org/03apaxe73', 'no_lang_code', 1, 'https://ror.org/03apaxe73 E2A Architects (Switzerland)'), (57797, 'https://ror.org/03apfzf38', 'no_lang_code', 1, 'https://ror.org/03apfzf38 Choceňská Mlékárn (Czechia)'), (57798, 'https://ror.org/03aps1n19', 'no_lang_code', 1, 'https://ror.org/03aps1n19 Pragolab (Czechia)'), (57799, 'https://ror.org/03aqj2f62', 'fr', 1, 'https://ror.org/03aqj2f62 Institut des Sciences du Végétal'), (57800, 'https://ror.org/03asdhg22', 'no_lang_code', 1, 'https://ror.org/03asdhg22 Myx (Switzerland)'), (57801, 'https://ror.org/03av2w516', 'en', 1, 'https://ror.org/03av2w516 Technology Academy Finland Tekniikan Akatemia'), (57802, 'https://ror.org/03av9yr88', 'en', 1, 'https://ror.org/03av9yr88 Whitley Wildlife Conservation Trust'), (57803, 'https://ror.org/03awcax09', 'no_lang_code', 1, 'https://ror.org/03awcax09 Hutní Projekt Frýdek-Místek (Czechia)'), (57804, 'https://ror.org/03awvhn35', 'fr', 1, 'https://ror.org/03awvhn35 Centre Alpien de Phytogéographie'), (57805, 'https://ror.org/03az84415', 'no_lang_code', 1, 'https://ror.org/03az84415 Intriple (Czechia)'), (57806, 'https://ror.org/03azdp011', 'no_lang_code', 1, 'https://ror.org/03azdp011 J. Jindra (Czechia)'), (57807, 'https://ror.org/03b0fve92', 'fr', 1, 'https://ror.org/03b0fve92 Herbarom Laboratoire'), (57808, 'https://ror.org/03b0wgg06', 'no_lang_code', 1, 'https://ror.org/03b0wgg06 Laboratoires SVR (France)'), (57809, 'https://ror.org/03b17a012', 'en', 1, 'https://ror.org/03b17a012 Bureau of Economic Analysis'), (57810, 'https://ror.org/03b1jj954', 'no_lang_code', 1, 'https://ror.org/03b1jj954 PS Profi (Czechia)'), (57811, 'https://ror.org/03b364z86', 'no_lang_code', 1, 'https://ror.org/03b364z86 Trevos (Czechia)'), (57812, 'https://ror.org/03b3dd703', 'no_lang_code', 1, 'https://ror.org/03b3dd703 Trios (Czechia)'), (57813, 'https://ror.org/03b3zsb94', 'no_lang_code', 1, 'https://ror.org/03b3zsb94 Fosfa (Czechia)'), (57814, 'https://ror.org/03b4j0710', 'no_lang_code', 1, 'https://ror.org/03b4j0710 National Instruments (Ireland)'), (57815, 'https://ror.org/03b5tag12', 'en', 1, 'https://ror.org/03b5tag12 The Toyota Foundation トヨタ財団'), (57816, 'https://ror.org/03b6b6988', 'no_lang_code', 1, 'https://ror.org/03b6b6988 Diamo (Czechia)'), (57817, 'https://ror.org/03b7qtd49', 'de', 1, 'https://ror.org/03b7qtd49 Büchi Labortechnik'), (57818, 'https://ror.org/03b8y4g05', 'en', 1, 'https://ror.org/03b8y4g05 North Dakota Office of the Governor'), (57819, 'https://ror.org/03b9ne411', 'no_lang_code', 1, 'https://ror.org/03b9ne411 VH Pharma (Czechia)'), (57820, 'https://ror.org/03bb8wr45', 'no_lang_code', 1, 'https://ror.org/03bb8wr45 Natus (New Zealand)'), (57821, 'https://ror.org/03bbymp68', 'no_lang_code', 1, 'https://ror.org/03bbymp68 Amati-Denak (Czechia)'), (57822, 'https://ror.org/03bc19b89', 'en', 1, 'https://ror.org/03bc19b89 Korean Endocrine Society 대한내분비학회'), (57823, 'https://ror.org/03bc5w075', 'en', 1, 'https://ror.org/03bc5w075 State Committee on Science and Technology'), (57824, 'https://ror.org/03bce7633', 'no_lang_code', 1, 'https://ror.org/03bce7633 Metso (United States)'), (57825, 'https://ror.org/03bfvr743', 'no_lang_code', 1, 'https://ror.org/03bfvr743 ATS Telcom Praha (Czechia)'), (57826, 'https://ror.org/03bj5da63', 'en', 1, 'https://ror.org/03bj5da63 Päivikki and Sakari Sohlberg Foundation Päivikki ja Sakari Sohlbergin säätiö'), (57827, 'https://ror.org/03bmbxh67', 'no_lang_code', 1, 'https://ror.org/03bmbxh67 Ateliéry Tapisérií sro'), (57828, 'https://ror.org/03bpesm64', 'pt', 1, 'https://ror.org/03bpesm64 Instituto Nacional de Ciência e Tecnologia em Entomologia Molecular'), (57829, 'https://ror.org/03bqgx731', 'no_lang_code', 1, 'https://ror.org/03bqgx731 Ingredia (Czechia)'), (57830, 'https://ror.org/03bqmms96', 'en', 1, 'https://ror.org/03bqmms96 Southern African Institute of Mining and Metallurgy'), (57831, 'https://ror.org/03brbzh91', 'no_lang_code', 1, 'https://ror.org/03brbzh91 Baroza (Czechia)'), (57832, 'https://ror.org/03btg9194', 'cs', 1, 'https://ror.org/03btg9194 Mezinárodní Testování Drůbeže'); INSERT INTO `rors` VALUES (57833, 'https://ror.org/03bw04561', 'no_lang_code', 1, 'https://ror.org/03bw04561 Gleason (United States)'), (57834, 'https://ror.org/03bwbnb24', 'en', 1, 'https://ror.org/03bwbnb24 Southwestern Community College - North Carolina'), (57835, 'https://ror.org/03bwk9n44', 'en', 1, 'https://ror.org/03bwk9n44 Strategic Initiative Materials in Flanders'), (57836, 'https://ror.org/03bzwhy87', 'cs', 1, 'https://ror.org/03bzwhy87 Zemědělské Družstvo Vlastníků Mrákotín'), (57837, 'https://ror.org/03c1wwn39', 'no_lang_code', 1, 'https://ror.org/03c1wwn39 Treeze (Switzerland)'), (57838, 'https://ror.org/03c39xh37', 'en', 1, 'https://ror.org/03c39xh37 Institute for applied Biology and Landscape Planning nstitut für angewandte Biologie und Landschaftsplanung'), (57839, 'https://ror.org/03c3qzd14', 'no_lang_code', 1, 'https://ror.org/03c3qzd14 Neurotune (Switzerland)'), (57840, 'https://ror.org/03c4j0595', 'en', 1, 'https://ror.org/03c4j0595 Court of Arbitration for Sport Tribunal arbitral du sport'), (57841, 'https://ror.org/03c4z4v61', 'no_lang_code', 1, 'https://ror.org/03c4z4v61 Jean-Marc Blanc Consultant (Switzerland)'), (57842, 'https://ror.org/03c5aw809', 'no_lang_code', 1, 'https://ror.org/03c5aw809 BENEKOVterm (Czechia)'), (57843, 'https://ror.org/03c6bbm42', 'no_lang_code', 1, 'https://ror.org/03c6bbm42 Smart Technik (Czechia)'), (57844, 'https://ror.org/03c7h8w67', 'en', 1, 'https://ror.org/03c7h8w67 Centre for the Study of Democracy and Culture Centrum pro Studium Demokracie a Kultury'), (57845, 'https://ror.org/03c7ss521', 'no_lang_code', 1, 'https://ror.org/03c7ss521 STMicroelectronics (Czechia)'), (57846, 'https://ror.org/03c8aye58', 'en', 1, 'https://ror.org/03c8aye58 R. J. Taylor, Jr. Foundation'), (57847, 'https://ror.org/03c8sng38', 'no_lang_code', 1, 'https://ror.org/03c8sng38 SMP (Czechia)'), (57848, 'https://ror.org/03cc4wz29', 'de', 1, 'https://ror.org/03cc4wz29 Archäologie Baselland'), (57849, 'https://ror.org/03ccjhx84', 'no_lang_code', 1, 'https://ror.org/03ccjhx84 Medicamat (France)'), (57850, 'https://ror.org/03cd5c095', 'no_lang_code', 1, 'https://ror.org/03cd5c095 Fiedler Zdeněk (Czechia)'), (57851, 'https://ror.org/03ce03q08', 'no_lang_code', 1, 'https://ror.org/03ce03q08 Essence Line (Czechia)'), (57852, 'https://ror.org/03ce77208', 'en', 1, 'https://ror.org/03ce77208 Kyiv Mohyla Business School Києво-Могилянська Бізнес Школа'), (57853, 'https://ror.org/03ceayq64', 'no_lang_code', 1, 'https://ror.org/03ceayq64 Rheinmetall (Switzerland)'), (57854, 'https://ror.org/03cepne78', 'en', 1, 'https://ror.org/03cepne78 Institute of Engineering Thermophysics Інститут технічної теплофізики НАН України'), (57855, 'https://ror.org/03cfd9m08', 'en', 1, 'https://ror.org/03cfd9m08 Combined Ophthalmic Research Rotterdam'), (57856, 'https://ror.org/03cg1bv47', 'no_lang_code', 1, 'https://ror.org/03cg1bv47 OSI Systems (Australia)'), (57857, 'https://ror.org/03chnjt72', 'en', 1, 'https://ror.org/03chnjt72 Natural History Museum of Basel Naturhistorisches Museum Basel'), (57858, 'https://ror.org/03ck95c19', 'en', 1, 'https://ror.org/03ck95c19 Institute for Regional Economics Библиотека Института проблем региональной экономики'), (57859, 'https://ror.org/03ckjfz66', 'no_lang_code', 1, 'https://ror.org/03ckjfz66 Synerlab (France)'), (57860, 'https://ror.org/03cnpnn47', 'no_lang_code', 1, 'https://ror.org/03cnpnn47 TT Servis (Czechia)'), (57861, 'https://ror.org/03cqqyv81', 'en', 1, 'https://ror.org/03cqqyv81 Rollie R. Kelley Family Foundation'), (57862, 'https://ror.org/03cse4829', 'no_lang_code', 1, 'https://ror.org/03cse4829 Laboratoř Monitoring Praha (Czechia)'), (57863, 'https://ror.org/03ct46856', 'en', 1, 'https://ror.org/03ct46856 Environment Canterbury'), (57864, 'https://ror.org/03cw8qd03', 'no_lang_code', 1, 'https://ror.org/03cw8qd03 Zurich Insurance Group (Switzerland) Zürich Versicherungen'), (57865, 'https://ror.org/03cxpjh03', 'no_lang_code', 1, 'https://ror.org/03cxpjh03 Rumi Scientific (United States)'), (57866, 'https://ror.org/03cyt4c89', 'fr', 1, 'https://ror.org/03cyt4c89 Hôpital du Jura Bernois'), (57867, 'https://ror.org/03d013e69', 'no_lang_code', 1, 'https://ror.org/03d013e69 Ipra (Czechia)'), (57868, 'https://ror.org/03d01nv48', 'no_lang_code', 1, 'https://ror.org/03d01nv48 Therabel (France)'), (57869, 'https://ror.org/03d5p6p20', 'no_lang_code', 1, 'https://ror.org/03d5p6p20 Qiagen (Australia)'), (57870, 'https://ror.org/03d795g20', 'no_lang_code', 1, 'https://ror.org/03d795g20 Newton Media (Czechia)'), (57871, 'https://ror.org/03d8wad17', 'no_lang_code', 1, 'https://ror.org/03d8wad17 Lanex (Czechia)'), (57872, 'https://ror.org/03d9a6q43', 'no_lang_code', 1, 'https://ror.org/03d9a6q43 Ecolab (United Kingdom)'), (57873, 'https://ror.org/03d9zp606', 'de', 1, 'https://ror.org/03d9zp606 Schweizerische Gesellschaft für Ländliche Geschichte'), (57874, 'https://ror.org/03dcnm155', 'no_lang_code', 1, 'https://ror.org/03dcnm155 Bentley Instruments (France)'), (57875, 'https://ror.org/03dcymj98', 'no_lang_code', 1, 'https://ror.org/03dcymj98 Institut pro testování a certifikaci Institute for Testing and Certification (Czechia)'), (57876, 'https://ror.org/03ddp7810', 'no_lang_code', 1, 'https://ror.org/03ddp7810 Agrana (Czechia)'), (57877, 'https://ror.org/03dev3m87', 'en', 1, 'https://ror.org/03dev3m87 Richard K. and Shirley S. Hemingway Foundation'), (57878, 'https://ror.org/03dfda051', 'en', 1, 'https://ror.org/03dfda051 Robert Toigo Foundation'), (57879, 'https://ror.org/03dhess34', 'no_lang_code', 1, 'https://ror.org/03dhess34 Laboratoires Gilbert (France)'), (57880, 'https://ror.org/03dm55k03', 'en', 1, 'https://ror.org/03dm55k03 A Sister''s Hope'), (57881, 'https://ror.org/03dnx2782', 'en', 1, 'https://ror.org/03dnx2782 Einhorn Family Charitable Trust'), (57882, 'https://ror.org/03dpmhz82', 'en', 1, 'https://ror.org/03dpmhz82 Ministry of Health of Kyrgyzstan Министерство здравоохранения Кыргызской Республики'), (57883, 'https://ror.org/03dryja89', 'no_lang_code', 1, 'https://ror.org/03dryja89 Bioterra (Switzerland)'), (57884, 'https://ror.org/03dsw3e52', 'no_lang_code', 1, 'https://ror.org/03dsw3e52 Steinhauser (Czechia)'), (57885, 'https://ror.org/03dt0c328', 'no_lang_code', 1, 'https://ror.org/03dt0c328 Tornos (Switzerland)'), (57886, 'https://ror.org/03dx2f169', 'de', 1, 'https://ror.org/03dx2f169 Schweizerische Vereinigung Industrie und Landwirtschaft'), (57887, 'https://ror.org/03dznjk55', 'fr', 1, 'https://ror.org/03dznjk55 Association de Recherche pour la Technologie et les Sciences'), (57888, 'https://ror.org/03e00a165', 'en', 1, 'https://ror.org/03e00a165 Lasten syöpäsäätiö Väre Väre Foundation for Pediatric Cancer Research'), (57889, 'https://ror.org/03e04kk51', 'en', 1, 'https://ror.org/03e04kk51 Women and Children’s Health Research Institute'), (57890, 'https://ror.org/03e1deg09', 'no_lang_code', 1, 'https://ror.org/03e1deg09 Laboratoires Vivacy (France)'), (57891, 'https://ror.org/03e2hk535', 'no_lang_code', 1, 'https://ror.org/03e2hk535 PerkinElmer (Netherlands)'), (57892, 'https://ror.org/03eckez71', 'en', 1, 'https://ror.org/03eckez71 Innovative Medical Partners (France)'), (57893, 'https://ror.org/03ed0c093', 'en', 1, 'https://ror.org/03ed0c093 Cantonal Archives of the Grisons Staatsarchiv Graubünden'), (57894, 'https://ror.org/03eeyeh88', 'cs', 1, 'https://ror.org/03eeyeh88 TyfloCentrum Brno'), (57895, 'https://ror.org/03egrq064', 'fr', 1, 'https://ror.org/03egrq064 Hôpital Nestlé'), (57896, 'https://ror.org/03eh0pq56', 'no_lang_code', 1, 'https://ror.org/03eh0pq56 Merko'), (57897, 'https://ror.org/03ek73244', 'en', 1, 'https://ror.org/03ek73244 St Marys Community Foundation'), (57898, 'https://ror.org/03enna516', 'no_lang_code', 1, 'https://ror.org/03enna516 Z Group Steel Holding (Czechia)'), (57899, 'https://ror.org/03epajw45', 'no_lang_code', 1, 'https://ror.org/03epajw45 Howden (Czechia)'), (57900, 'https://ror.org/03er5fw87', 'no_lang_code', 1, 'https://ror.org/03er5fw87 Nakladatelství Triáda (Czechia)'), (57901, 'https://ror.org/03esh6f70', 'no_lang_code', 1, 'https://ror.org/03esh6f70 International Flavors & Fragrances (France)'), (57902, 'https://ror.org/03et8cz85', 'cs', 1, 'https://ror.org/03et8cz85 Asociace Nemocnic ČR'), (57903, 'https://ror.org/03ev0vh37', 'no_lang_code', 1, 'https://ror.org/03ev0vh37 P2A Medical (France)'), (57904, 'https://ror.org/03evznq35', 'no_lang_code', 1, 'https://ror.org/03evznq35 Sewaco (Czechia)'), (57905, 'https://ror.org/03eydf751', 'no_lang_code', 1, 'https://ror.org/03eydf751 TechnipFMC (Germany)'), (57906, 'https://ror.org/03f05ts54', 'it', 1, 'https://ror.org/03f05ts54 Fondazione Alpina per le Scienze della Vita'), (57907, 'https://ror.org/03f196d58', 'no_lang_code', 1, 'https://ror.org/03f196d58 Agrogen (Czechia)'), (57908, 'https://ror.org/03f1tq367', 'no_lang_code', 1, 'https://ror.org/03f1tq367 M line (Czechia)'), (57909, 'https://ror.org/03f3ngc78', 'no_lang_code', 1, 'https://ror.org/03f3ngc78 Sigmaplan (Switzerland)'), (57910, 'https://ror.org/03f420b93', 'fi', 1, 'https://ror.org/03f420b93 Tekniikan Edistämissäätiö'), (57911, 'https://ror.org/03f4qgj81', 'en', 1, 'https://ror.org/03f4qgj81 Southern Medical Association'), (57912, 'https://ror.org/03f57fs86', 'en', 1, 'https://ror.org/03f57fs86 Childrens Hospice International'), (57913, 'https://ror.org/03f585086', 'no_lang_code', 1, 'https://ror.org/03f585086 Narex Sat (Czechia)'), (57914, 'https://ror.org/03f6vnx95', 'no_lang_code', 1, 'https://ror.org/03f6vnx95 Comet System (Czechia)'), (57915, 'https://ror.org/03f889737', 'no_lang_code', 1, 'https://ror.org/03f889737 Milcom Servis (Czechia)'), (57916, 'https://ror.org/03fcyc593', 'no_lang_code', 1, 'https://ror.org/03fcyc593 Concurrent Solutions (United States)'), (57917, 'https://ror.org/03ff02h25', 'no_lang_code', 1, 'https://ror.org/03ff02h25 Zemědělská a ekologická regionální agentura (Czechia)'), (57918, 'https://ror.org/03ff67370', 'no_lang_code', 1, 'https://ror.org/03ff67370 Eurosignal (Czechia)'), (57919, 'https://ror.org/03ff99w93', 'no_lang_code', 1, 'https://ror.org/03ff99w93 OGResearch (Czechia)'), (57920, 'https://ror.org/03ffxvj05', 'en', 1, 'https://ror.org/03ffxvj05 Rutlish School'), (57921, 'https://ror.org/03fkhh366', 'no_lang_code', 1, 'https://ror.org/03fkhh366 Hitachi (Netherlands)'), (57922, 'https://ror.org/03fp7s507', 'cs', 1, 'https://ror.org/03fp7s507 Armáda Spásy'), (57923, 'https://ror.org/03fpt5m65', 'de', 1, 'https://ror.org/03fpt5m65 MVZ Labor Ravensburg'), (57924, 'https://ror.org/03fqv7d77', 'no_lang_code', 1, 'https://ror.org/03fqv7d77 Dispechem (Czechia)'), (57925, 'https://ror.org/03fqz3d07', 'no_lang_code', 1, 'https://ror.org/03fqz3d07 Chondrometrics (Germany)'), (57926, 'https://ror.org/03frwhf70', 'no_lang_code', 1, 'https://ror.org/03frwhf70 AGCO (France)'), (57927, 'https://ror.org/03frxfd09', 'no_lang_code', 1, 'https://ror.org/03frxfd09 Smart Software (Czechia)'), (57928, 'https://ror.org/03ft9kk45', 'de', 1, 'https://ror.org/03ft9kk45 Praktischer Umweltschutz'), (57929, 'https://ror.org/03ftcvv28', 'en', 1, 'https://ror.org/03ftcvv28 Science & Technology Park (Czechia) Vědecko Technologický Park'), (57930, 'https://ror.org/03fthp652', 'en', 1, 'https://ror.org/03fthp652 Institute Of Pesticides Formulation Technology'), (57931, 'https://ror.org/03fxrgb29', 'no_lang_code', 1, 'https://ror.org/03fxrgb29 OmniActive Health Technologies (India)'), (57932, 'https://ror.org/03fyfhn57', 'en', 1, 'https://ror.org/03fyfhn57 Town and Country Veterinary Clinic'), (57933, 'https://ror.org/03fz9ws15', 'en', 1, 'https://ror.org/03fz9ws15 Institute Of Science De La Vision'), (57934, 'https://ror.org/03g0bh391', 'no_lang_code', 1, 'https://ror.org/03g0bh391 Disam RT (Czechia)'), (57935, 'https://ror.org/03g0p4t70', 'en', 1, 'https://ror.org/03g0p4t70 New Zealand wine'), (57936, 'https://ror.org/03g18fj02', 'en', 1, 'https://ror.org/03g18fj02 T. Boone Pickens Foundation'), (57937, 'https://ror.org/03g19es12', 'fr', 1, 'https://ror.org/03g19es12 Labex Synorg'), (57938, 'https://ror.org/03g1x1714', 'no_lang_code', 1, 'https://ror.org/03g1x1714 Materials Design (France)'), (57939, 'https://ror.org/03g1xh439', 'no_lang_code', 1, 'https://ror.org/03g1xh439 ESL (Czechia)'), (57940, 'https://ror.org/03g2a6c32', 'no_lang_code', 1, 'https://ror.org/03g2a6c32 General Electric (Japan)'), (57941, 'https://ror.org/03g2f4v48', 'fr', 1, 'https://ror.org/03g2f4v48 Angers Loire Métropole'), (57942, 'https://ror.org/03g2j2c90', 'en', 1, 'https://ror.org/03g2j2c90 St Andrews Community Hospital'), (57943, 'https://ror.org/03g34vx58', 'no_lang_code', 1, 'https://ror.org/03g34vx58 ČD Telematika (Czechia)'), (57944, 'https://ror.org/03g5kfc06', 'no_lang_code', 1, 'https://ror.org/03g5kfc06 MICo (Czechia)'), (57945, 'https://ror.org/03g6vn746', 'no_lang_code', 1, 'https://ror.org/03g6vn746 Proma Reha (Czechia)'), (57946, 'https://ror.org/03g9fv045', 'en', 1, 'https://ror.org/03g9fv045 Community Food and Agriculture Coalition'), (57947, 'https://ror.org/03gbw6p94', 'en', 1, 'https://ror.org/03gbw6p94 University of Technology Государственное бюджетное образовательное учреждение высшего образования Московской области Технологический университет'), (57948, 'https://ror.org/03gd5r229', 'no_lang_code', 1, 'https://ror.org/03gd5r229 Grupo Dibaq (Spain)'), (57949, 'https://ror.org/03geggj88', 'no_lang_code', 1, 'https://ror.org/03geggj88 Perrigo (France)'), (57950, 'https://ror.org/03ggtzp34', 'en', 1, 'https://ror.org/03ggtzp34 Dr. Reddy''s Foundation'), (57951, 'https://ror.org/03ghy5256', 'en', 1, 'https://ror.org/03ghy5256 Institute of Health Information and Statistics Ústav zdravotnických informací a statistiky ČR'), (57952, 'https://ror.org/03gj08226', 'fr', 1, 'https://ror.org/03gj08226 Alimentarium'), (57953, 'https://ror.org/03gjtay97', 'no_lang_code', 1, 'https://ror.org/03gjtay97 DLF Trifolium Hladké Životice (Czechia)'), (57954, 'https://ror.org/03gnc6x04', 'en', 1, 'https://ror.org/03gnc6x04 Sociological Initiatives Foundation'), (57955, 'https://ror.org/03gnxmx77', 'no_lang_code', 1, 'https://ror.org/03gnxmx77 Kemerovo Cardiology Center Кемеровского Кардиологического центра'), (57956, 'https://ror.org/03gvq6m28', 'no_lang_code', 1, 'https://ror.org/03gvq6m28 Forest - Agro (Czechia)'), (57957, 'https://ror.org/03gxkq182', 'en', 1, 'https://ror.org/03gxkq182 Juntendo University Urayasu Hospital 順天堂大学医学部附属浦安病院'), (57958, 'https://ror.org/03gzf6s70', 'no_lang_code', 1, 'https://ror.org/03gzf6s70 Steuler (Germany)'), (57959, 'https://ror.org/03gzs6562', 'no_lang_code', 1, 'https://ror.org/03gzs6562 Narishige (Japan)'), (57960, 'https://ror.org/03h13e556', 'no_lang_code', 1, 'https://ror.org/03h13e556 Ecolab (France)'), (57961, 'https://ror.org/03h3r1n96', 'no_lang_code', 1, 'https://ror.org/03h3r1n96 Qiagen (Switzerland)'), (57962, 'https://ror.org/03h43ej82', 'no_lang_code', 1, 'https://ror.org/03h43ej82 Comimpex (Czechia)'), (57963, 'https://ror.org/03h4b0p21', 'no_lang_code', 1, 'https://ror.org/03h4b0p21 Oil India (India)'), (57964, 'https://ror.org/03h4z1825', 'en', 1, 'https://ror.org/03h4z1825 Racing Victoria'), (57965, 'https://ror.org/03h6sns07', 'no_lang_code', 1, 'https://ror.org/03h6sns07 Gen Trend (Czechia)'), (57966, 'https://ror.org/03ha1m790', 'no_lang_code', 1, 'https://ror.org/03ha1m790 Wienerberger (Czechia)'), (57967, 'https://ror.org/03haqsp75', 'en', 1, 'https://ror.org/03haqsp75 Institute of Atomic and Molecular Sciences, Academia Sinica 中央研究院原子與分子科學研究所'), (57968, 'https://ror.org/03harpv89', 'no_lang_code', 1, 'https://ror.org/03harpv89 Vodní Zdroje GLS Praha (Czechia)'), (57969, 'https://ror.org/03harvh27', 'no_lang_code', 1, 'https://ror.org/03harvh27 Technika Pro Měření a Automatizaci (Czechia)'), (57970, 'https://ror.org/03hcbtk03', 'en', 1, 'https://ror.org/03hcbtk03 Institut Dr Schrader Creachem'), (57971, 'https://ror.org/03hccqd50', 'no_lang_code', 1, 'https://ror.org/03hccqd50 Makita (Germany)'), (57972, 'https://ror.org/03hd5ck45', 'en', 1, 'https://ror.org/03hd5ck45 Rochester Roots'), (57973, 'https://ror.org/03hdb6676', 'no_lang_code', 1, 'https://ror.org/03hdb6676 Hydrogenics (Canada)'), (57974, 'https://ror.org/03hdjmh87', 'de', 1, 'https://ror.org/03hdjmh87 Institute Svizzer by products terapeutics Institute suisse des produits thérapeutiques Istituto per gli agenti svizzero Terapeutici Swissmedic'), (57975, 'https://ror.org/03hh11c46', 'no_lang_code', 1, 'https://ror.org/03hh11c46 MSV Metal Studénka (Czechia)'), (57976, 'https://ror.org/03hj0ge77', 'no_lang_code', 1, 'https://ror.org/03hj0ge77 Slévárna Chomutov (Czechia)'), (57977, 'https://ror.org/03hj69t32', 'en', 1, 'https://ror.org/03hj69t32 Max Planck Center for Visual Computing and Communication'), (57978, 'https://ror.org/03hj6c016', 'en', 1, 'https://ror.org/03hj6c016 Berenson Allen Center for Noninvasive Brain Stimulation'), (57979, 'https://ror.org/03hjy8x14', 'en', 1, 'https://ror.org/03hjy8x14 Sparkplug Foundation'), (57980, 'https://ror.org/03hkn9159', 'en', 1, 'https://ror.org/03hkn9159 Goulburn Valley Equine Hospital'), (57981, 'https://ror.org/03hn7q415', 'no_lang_code', 1, 'https://ror.org/03hn7q415 Ecoprotect (Czechia)'), (57982, 'https://ror.org/03hnn1y72', 'no_lang_code', 1, 'https://ror.org/03hnn1y72 Sanitarium Health and Wellbeing (Australia)'), (57983, 'https://ror.org/03hph6c57', 'en', 1, 'https://ror.org/03hph6c57 Foundation for Urban and Regional Studies'), (57984, 'https://ror.org/03hscv116', 'no_lang_code', 1, 'https://ror.org/03hscv116 ENVItech Bohemia (Czechia)'), (57985, 'https://ror.org/03hsrn882', 'no_lang_code', 1, 'https://ror.org/03hsrn882 ANAKAN (Czechia)'), (57986, 'https://ror.org/03ht51987', 'en', 1, 'https://ror.org/03ht51987 Norwegian Agriculture Agency'), (57987, 'https://ror.org/03hvemf42', 'en', 1, 'https://ror.org/03hvemf42 Foundation for Education and European Culture Το Ίδρυμα Παιδείας και Ευρωπαϊκού Πολιτισμού'), (57988, 'https://ror.org/03hvkpj98', 'de', 1, 'https://ror.org/03hvkpj98 Klinik Sonnenhof'), (57989, 'https://ror.org/03hvqcb43', 'en', 1, 'https://ror.org/03hvqcb43 Foulkes Foundation'), (57990, 'https://ror.org/03hvvks39', 'en', 1, 'https://ror.org/03hvvks39 Institute for Polymer Mechanics'), (57991, 'https://ror.org/03hw5nc12', 'en', 1, 'https://ror.org/03hw5nc12 Sexually Transmitted Infection Research Foundation'), (57992, 'https://ror.org/03hwv4250', 'no_lang_code', 1, 'https://ror.org/03hwv4250 LAO - Průmyslové Systémy (Czechia)'), (57993, 'https://ror.org/03hzthr30', 'es', 1, 'https://ror.org/03hzthr30 Fundación Merck Salud'), (57994, 'https://ror.org/03j12z232', 'en', 1, 'https://ror.org/03j12z232 Conservatoire et Jardin botaniques de la Ville de Genève Conservatory and Botanical Garden of the City of Geneva'), (57995, 'https://ror.org/03j353w33', 'no_lang_code', 1, 'https://ror.org/03j353w33 Berry (United States)'), (57996, 'https://ror.org/03j8n6z33', 'en', 1, 'https://ror.org/03j8n6z33 Reagan-Udall Foundation'), (57997, 'https://ror.org/03j99w497', 'en', 1, 'https://ror.org/03j99w497 Mercy Research'), (57998, 'https://ror.org/03jan5912', 'en', 1, 'https://ror.org/03jan5912 Jiangsu Provincial Key Laboratory of Network and Information Security 江苏省网络信息安全重点实验室'), (57999, 'https://ror.org/03jevp076', 'fr', 1, 'https://ror.org/03jevp076 Service de la recherche éducation'), (58000, 'https://ror.org/03jjhm649', 'no_lang_code', 1, 'https://ror.org/03jjhm649 Expro (United Kingdom)'), (58001, 'https://ror.org/03jmp7p62', 'no_lang_code', 1, 'https://ror.org/03jmp7p62 FSC Bezpečnostní Poradenství (Czechia)'), (58002, 'https://ror.org/03jnwsv20', 'no_lang_code', 1, 'https://ror.org/03jnwsv20 Československý Lloyd (Czechia)'), (58003, 'https://ror.org/03jrc7315', 'fr', 1, 'https://ror.org/03jrc7315 Cabinet de Psychiatrie et Psychothérapie'), (58004, 'https://ror.org/03jrwxb40', 'no_lang_code', 1, 'https://ror.org/03jrwxb40 Zwahlen et Mayr (Switzerland)'), (58005, 'https://ror.org/03jt5gp45', 'en', 1, 'https://ror.org/03jt5gp45 John Cochran VA Medical Center'), (58006, 'https://ror.org/03jtbaq34', 'no_lang_code', 1, 'https://ror.org/03jtbaq34 F Air (Czechia)'), (58007, 'https://ror.org/03k2mft71', 'no_lang_code', 1, 'https://ror.org/03k2mft71 Porsenna (Czechia)'), (58008, 'https://ror.org/03k352971', 'en', 1, 'https://ror.org/03k352971 C.W. Bill Young VA Medical Center'), (58009, 'https://ror.org/03k699w20', 'de', 1, 'https://ror.org/03k699w20 Berlinische Galerie'), (58010, 'https://ror.org/03k6yxq48', 'en', 1, 'https://ror.org/03k6yxq48 Oklahoma City VA Health Care System'), (58011, 'https://ror.org/03k8d9631', 'no_lang_code', 1, 'https://ror.org/03k8d9631 Brazilian Metallurgy and Mining Company Companhia Brasileira de Metalurgia e Mineração (Brazil)'), (58012, 'https://ror.org/03kc1ze55', 'no_lang_code', 1, 'https://ror.org/03kc1ze55 Beskyd Fryčovice (Czechia)'), (58013, 'https://ror.org/03kcc6909', 'en', 1, 'https://ror.org/03kcc6909 Experimental Research Institute of Metal-Cutting Machine Tools Научно-исследовательский экспериментальный институт металлорежущих станков'), (58014, 'https://ror.org/03ke2qx45', 'fr', 1, 'https://ror.org/03ke2qx45 Laboratoires Expanscience'), (58015, 'https://ror.org/03kezjk28', 'en', 1, 'https://ror.org/03kezjk28 Centre for Management Development'), (58016, 'https://ror.org/03kf9t316', 'no_lang_code', 1, 'https://ror.org/03kf9t316 Geotechnical Instruments (United Kingdom)'), (58017, 'https://ror.org/03kpfb968', 'cs', 1, 'https://ror.org/03kpfb968 Centrum Léčebné Rehabilitace Liberec'), (58018, 'https://ror.org/03kq6fs81', 'no_lang_code', 1, 'https://ror.org/03kq6fs81 Bau-, Verkehrs- und Energiedirektion (Switzerland)'), (58019, 'https://ror.org/03kr7zn98', 'no_lang_code', 1, 'https://ror.org/03kr7zn98 Systena (Japan)'), (58020, 'https://ror.org/03kse5219', 'en', 1, 'https://ror.org/03kse5219 Bell Equine Veterinary Clinic'), (58021, 'https://ror.org/03kwycy34', 'en', 1, 'https://ror.org/03kwycy34 Harris Birthright Research Centre for Fetal Medicine'), (58022, 'https://ror.org/03kxdn807', 'ms', 1, 'https://ror.org/03kxdn807 Universiti Tenaga Nasional'), (58023, 'https://ror.org/03ky6bg94', 'en', 1, 'https://ror.org/03ky6bg94 Food Bank of Northeast Georgia'), (58024, 'https://ror.org/03kyg9945', 'no_lang_code', 1, 'https://ror.org/03kyg9945 Asklepion'), (58025, 'https://ror.org/03m2daf51', 'de', 1, 'https://ror.org/03m2daf51 Memory-Klinik Entlisberg'), (58026, 'https://ror.org/03m3t7g30', 'en', 1, 'https://ror.org/03m3t7g30 Jeff Gordon Children''s Foundation'), (58027, 'https://ror.org/03m41z132', 'no_lang_code', 1, 'https://ror.org/03m41z132 Pohorelec (Czechia)'), (58028, 'https://ror.org/03m6q2j85', 'en', 1, 'https://ror.org/03m6q2j85 Ho Chunk Community Development Corporation'), (58029, 'https://ror.org/03m9tq224', 'de', 1, 'https://ror.org/03m9tq224 Abwasserverband Altenrhein'), (58030, 'https://ror.org/03ma5bv95', 'de', 1, 'https://ror.org/03ma5bv95 Statistische Amt Basel-Stadt'), (58031, 'https://ror.org/03mb0qq13', 'en', 1, 'https://ror.org/03mb0qq13 National Book Critics Circle'), (58032, 'https://ror.org/03mbvnm11', 'no_lang_code', 1, 'https://ror.org/03mbvnm11 ALB expert (Czechia)'), (58033, 'https://ror.org/03md8p445', 'en', 1, 'https://ror.org/03md8p445 The Cancer Institute Hospital がん研有明病院'), (58034, 'https://ror.org/03mf2sh22', 'en', 1, 'https://ror.org/03mf2sh22 SciFund Challenge'), (58035, 'https://ror.org/03mhzjs57', 'no_lang_code', 1, 'https://ror.org/03mhzjs57 INTER.MED (France)'), (58036, 'https://ror.org/03mjxex31', 'no_lang_code', 1, 'https://ror.org/03mjxex31 Kotrbatý (Czechia)'), (58037, 'https://ror.org/03mq0hx55', 'no_lang_code', 1, 'https://ror.org/03mq0hx55 ALP (France) Articles De Laboratoire De Precision'), (58038, 'https://ror.org/03ms9ra30', 'no_lang_code', 1, 'https://ror.org/03ms9ra30 Alere (Switzerland)'), (58039, 'https://ror.org/03msdt869', 'en', 1, 'https://ror.org/03msdt869 Institute of Plant and Animal Ecology Институт экологии растений и животных УрО РАН [править | править вики-текст]'), (58040, 'https://ror.org/03mse1e58', 'no_lang_code', 1, 'https://ror.org/03mse1e58 St.Galler Stadtwerke (Switzerland)'), (58041, 'https://ror.org/03msrn925', 'no_lang_code', 1, 'https://ror.org/03msrn925 Sumitomo Electric Industries (United States)'), (58042, 'https://ror.org/03mw0t712', 'no_lang_code', 1, 'https://ror.org/03mw0t712 Atos (Czechia)'), (58043, 'https://ror.org/03mx3cq03', 'no_lang_code', 1, 'https://ror.org/03mx3cq03 Atenisi Institute'), (58044, 'https://ror.org/03mzbnj03', 'en', 1, 'https://ror.org/03mzbnj03 VA Southeast Network'), (58045, 'https://ror.org/03n06wy62', 'no_lang_code', 1, 'https://ror.org/03n06wy62 Algae Health (Ireland) Slainte Alga Teoranta'), (58046, 'https://ror.org/03n0fvd12', 'en', 1, 'https://ror.org/03n0fvd12 Government of Estonia Vabariigi Valitsus'), (58047, 'https://ror.org/03n0h8b63', 'no_lang_code', 1, 'https://ror.org/03n0h8b63 Applycon (Czechia)'), (58048, 'https://ror.org/03n1jkx09', 'en', 1, 'https://ror.org/03n1jkx09 Wisconsin Association for Perinatal Care'), (58049, 'https://ror.org/03n2kr187', 'cs', 1, 'https://ror.org/03n2kr187 Městské lesy Chomutov'), (58050, 'https://ror.org/03n2my419', 'no_lang_code', 1, 'https://ror.org/03n2my419 Platinum Equity (United Kingdom)'), (58051, 'https://ror.org/03n2rkn85', 'no_lang_code', 1, 'https://ror.org/03n2rkn85 Autel (Czechia)'), (58052, 'https://ror.org/03n40zw95', 'no_lang_code', 1, 'https://ror.org/03n40zw95 Analytika (Czechia)'), (58053, 'https://ror.org/03n9g7g16', 'no_lang_code', 1, 'https://ror.org/03n9g7g16 SPX Corporation (United Kingdom)'), (58054, 'https://ror.org/03nbpmv05', 'en', 1, 'https://ror.org/03nbpmv05 Vitalyst Health Foundation'), (58055, 'https://ror.org/03nc73a98', 'no_lang_code', 1, 'https://ror.org/03nc73a98 Aura (Czechia)'), (58056, 'https://ror.org/03nd93634', 'no_lang_code', 1, 'https://ror.org/03nd93634 KSM Castings (Czechia)'), (58057, 'https://ror.org/03ne0ps53', 'cs', 1, 'https://ror.org/03ne0ps53 Nemocnice u Sv. Jiří'), (58058, 'https://ror.org/03ne27j26', 'en', 1, 'https://ror.org/03ne27j26 Westfield Foundation'), (58059, 'https://ror.org/03neag539', 'no_lang_code', 1, 'https://ror.org/03neag539 ProTyS (Czechia)'), (58060, 'https://ror.org/03nffrn19', 'en', 1, 'https://ror.org/03nffrn19 Niagara County'), (58061, 'https://ror.org/03nhgnd83', 'no_lang_code', 1, 'https://ror.org/03nhgnd83 BAK Basel Economics (Switzerland)'), (58062, 'https://ror.org/03nm3et74', 'en', 1, 'https://ror.org/03nm3et74 Whiting Foundation'), (58063, 'https://ror.org/03nmqee71', 'no_lang_code', 1, 'https://ror.org/03nmqee71 Enzymix (Czechia)'), (58064, 'https://ror.org/03nnhtv03', 'no_lang_code', 1, 'https://ror.org/03nnhtv03 PRO.MED.CS Praha (Czechia)'), (58065, 'https://ror.org/03nnkbc97', 'de', 1, 'https://ror.org/03nnkbc97 Institut für Ökologisch Systemische Therapie'), (58066, 'https://ror.org/03npdgz04', 'no_lang_code', 1, 'https://ror.org/03npdgz04 Papouch (Czechia)'), (58067, 'https://ror.org/03nq3xp69', 'no_lang_code', 1, 'https://ror.org/03nq3xp69 Balak (Czechia)'), (58068, 'https://ror.org/03nqg9919', 'no_lang_code', 1, 'https://ror.org/03nqg9919 Sweden and Martina (Italy)'), (58069, 'https://ror.org/03nrthd98', 'no_lang_code', 1, 'https://ror.org/03nrthd98 Avia Propeller (Czechia)'), (58070, 'https://ror.org/03ntvfv97', 'no_lang_code', 1, 'https://ror.org/03ntvfv97 IVV Engineering (Czechia)'), (58071, 'https://ror.org/03nwa6q52', 'no_lang_code', 1, 'https://ror.org/03nwa6q52 Med-Consilium (Switzerland)'), (58072, 'https://ror.org/03nwwb023', 'fr', 1, 'https://ror.org/03nwwb023 Centre Médico Chirurgical de Tronquières'), (58073, 'https://ror.org/03nxzws18', 'no_lang_code', 1, 'https://ror.org/03nxzws18 Stada Arzneimittel (United Kingdom)'), (58074, 'https://ror.org/03nzsxf62', 'de', 1, 'https://ror.org/03nzsxf62 Schweizer Presserat'), (58075, 'https://ror.org/03p05j480', 'no_lang_code', 1, 'https://ror.org/03p05j480 Andritz (United States)'), (58076, 'https://ror.org/03p0pyx76', 'cs', 1, 'https://ror.org/03p0pyx76 Lesy Jáchymov'), (58077, 'https://ror.org/03p2b2376', 'en', 1, 'https://ror.org/03p2b2376 Laser Spine Institute'), (58078, 'https://ror.org/03p343x23', 'no_lang_code', 1, 'https://ror.org/03p343x23 Ramet (Czechia)'), (58079, 'https://ror.org/03p504z95', 'no_lang_code', 1, 'https://ror.org/03p504z95 Rosogneupor (Russia) Росогнеупор'), (58080, 'https://ror.org/03p9qk185', 'no_lang_code', 1, 'https://ror.org/03p9qk185 FMP (Czechia)'), (58081, 'https://ror.org/03pbfnd97', 'en', 1, 'https://ror.org/03pbfnd97 Foundation for Alcohol Research'), (58082, 'https://ror.org/03pc1y818', 'no_lang_code', 1, 'https://ror.org/03pc1y818 Resta (Czechia)'), (58083, 'https://ror.org/03pe1pm82', 'no_lang_code', 1, 'https://ror.org/03pe1pm82 Scherrer (Switzerland)'), (58084, 'https://ror.org/03pext169', 'en', 1, 'https://ror.org/03pext169 National Agriculture in the Classroom'), (58085, 'https://ror.org/03pfa6e38', 'no_lang_code', 1, 'https://ror.org/03pfa6e38 TGS Nastroje-Stroje-Technologicke Sluzby (Czechia)'), (58086, 'https://ror.org/03pjfjx36', 'no_lang_code', 1, 'https://ror.org/03pjfjx36 Institute of Bohuslav Martinů (Czechia)'), (58087, 'https://ror.org/03pjnvf85', 'en', 1, 'https://ror.org/03pjnvf85 Zürich Zoological Garden Zürich Zoologischer Garten'), (58088, 'https://ror.org/03pkbp732', 'en', 1, 'https://ror.org/03pkbp732 Brick and Tile Research Institute Institut für Ziegelforschung Essen e. V.'), (58089, 'https://ror.org/03pmqmn38', 'it', 1, 'https://ror.org/03pmqmn38 Consorzio per la Fisica Trieste'), (58090, 'https://ror.org/03pmr7d81', 'en', 1, 'https://ror.org/03pmr7d81 National Technology Platform for Road Transport Technologická platforma silniční doprava'), (58091, 'https://ror.org/03ppytd12', 'no_lang_code', 1, 'https://ror.org/03ppytd12 Povodí Labe (Czechia)'), (58092, 'https://ror.org/03pq14610', 'en', 1, 'https://ror.org/03pq14610 Schizophrenia Research Fund'), (58093, 'https://ror.org/03ps0vw43', 'en', 1, 'https://ror.org/03ps0vw43 Organization for Refugee and Immigrant Success'), (58094, 'https://ror.org/03pskz739', 'no_lang_code', 1, 'https://ror.org/03pskz739 Molecular Engines Laboratories (France)'), (58095, 'https://ror.org/03pt8bk73', 'cs', 1, 'https://ror.org/03pt8bk73 Národní Referenční Centrum'), (58096, 'https://ror.org/03ptky016', 'no_lang_code', 1, 'https://ror.org/03ptky016 Legrand (United States)'), (58097, 'https://ror.org/03pvhr873', 'no_lang_code', 1, 'https://ror.org/03pvhr873 SNZ Ingenieure und Planer (Switzerland)'), (58098, 'https://ror.org/03pww3q25', 'no_lang_code', 1, 'https://ror.org/03pww3q25 Atea Praha (Czechia)'), (58099, 'https://ror.org/03pxb4090', 'no_lang_code', 1, 'https://ror.org/03pxb4090 Betula Pendula (Czechia)'), (58100, 'https://ror.org/03pxknc36', 'no_lang_code', 1, 'https://ror.org/03pxknc36 Emerson (Czechia)'), (58101, 'https://ror.org/03py6vn41', 'en', 1, 'https://ror.org/03py6vn41 Wilson Foundation'), (58102, 'https://ror.org/03pyybh29', 'no_lang_code', 1, 'https://ror.org/03pyybh29 Richcore Lifesciences (India)'), (58103, 'https://ror.org/03pzk8p04', 'no_lang_code', 1, 'https://ror.org/03pzk8p04 MARAT Engineering (Czechia)'), (58104, 'https://ror.org/03pzt8k43', 'no_lang_code', 1, 'https://ror.org/03pzt8k43 Ankara (Czechia)'), (58105, 'https://ror.org/03q2zhz47', 'en', 1, 'https://ror.org/03q2zhz47 Siouxland Community Foundation'), (58106, 'https://ror.org/03q3ejp70', 'no_lang_code', 1, 'https://ror.org/03q3ejp70 X Com Base (Czechia)'), (58107, 'https://ror.org/03q51sy36', 'no_lang_code', 1, 'https://ror.org/03q51sy36 ZPA Pecky (Czechia)'), (58108, 'https://ror.org/03q56pj35', 'da', 1, 'https://ror.org/03q56pj35 Børnecancerfonden'), (58109, 'https://ror.org/03q5d1a68', 'no_lang_code', 1, 'https://ror.org/03q5d1a68 Lets Fly (Czechia)'), (58110, 'https://ror.org/03q5hdj87', 'de', 1, 'https://ror.org/03q5hdj87 Allgemeine Gewerbeschule Basel'), (58111, 'https://ror.org/03q6nea03', 'no_lang_code', 1, 'https://ror.org/03q6nea03 Alucast (Czechia)'), (58112, 'https://ror.org/03q7xbe07', 'en', 1, 'https://ror.org/03q7xbe07 Shanghai Chemical Reagent Research Institute'), (58113, 'https://ror.org/03q88m992', 'no_lang_code', 1, 'https://ror.org/03q88m992 Keramost (Czechia)'), (58114, 'https://ror.org/03q8z7066', 'no_lang_code', 1, 'https://ror.org/03q8z7066 DFC Design (Czechia)'), (58115, 'https://ror.org/03qa42z85', 'it', 1, 'https://ror.org/03qa42z85 Librairie Droz'), (58116, 'https://ror.org/03qc9s178', 'en', 1, 'https://ror.org/03qc9s178 Minorities in Agriculture, Natural Resources and Related Sciences'), (58117, 'https://ror.org/03qdj6986', 'no_lang_code', 1, 'https://ror.org/03qdj6986 Becton Dickinson (Netherlands)'), (58118, 'https://ror.org/03qj53n95', 'en', 1, 'https://ror.org/03qj53n95 Australian Road Research Board'), (58119, 'https://ror.org/03qj6qh62', 'no_lang_code', 1, 'https://ror.org/03qj6qh62 Lyckeby Amylex (Czechia)'), (58120, 'https://ror.org/03qk9fj07', 'no_lang_code', 1, 'https://ror.org/03qk9fj07 Agropodnik Kosetice (Czechia)'), (58121, 'https://ror.org/03qmjt802', 'no_lang_code', 1, 'https://ror.org/03qmjt802 MPD Plus (Czechia)'), (58122, 'https://ror.org/03qps9x60', 'fr', 1, 'https://ror.org/03qps9x60 Agence des Aires Marines Protégées'), (58123, 'https://ror.org/03qs9kr26', 'no_lang_code', 1, 'https://ror.org/03qs9kr26 Benteler (Czechia)'), (58124, 'https://ror.org/03qv00g45', 'no_lang_code', 1, 'https://ror.org/03qv00g45 Mavel (Czechia)'), (58125, 'https://ror.org/03qvjzj64', 'en', 1, 'https://ror.org/03qvjzj64 St. John''s National Academy of Health Sciences'), (58126, 'https://ror.org/03qvrm396', 'en', 1, 'https://ror.org/03qvrm396 Poverty and Race Research Action Council'), (58127, 'https://ror.org/03qy0hv94', 'en', 1, 'https://ror.org/03qy0hv94 ITS and S Sdružení pro dopravní telematiku'), (58128, 'https://ror.org/03r3f8722', 'no_lang_code', 1, 'https://ror.org/03r3f8722 Pragometal (Czechia)'), (58129, 'https://ror.org/03r493e52', 'en', 1, 'https://ror.org/03r493e52 Institute of Bioorganic Chemistry Института биоорганической химии НАН Беларуси'), (58130, 'https://ror.org/03r54xm51', 'no_lang_code', 1, 'https://ror.org/03r54xm51 Extrudo Bečice (Czechia)'), (58131, 'https://ror.org/03r6rhw30', 'en', 1, 'https://ror.org/03r6rhw30 Institute of Geological Sciences Երկրաբանական գիտությունների'), (58132, 'https://ror.org/03r8and30', 'de', 1, 'https://ror.org/03r8and30 Club Bel Etage'), (58133, 'https://ror.org/03r8q5f36', 'en', 1, 'https://ror.org/03r8q5f36 University of Maryland Extension'), (58134, 'https://ror.org/03r9c3w85', 'de', 1, 'https://ror.org/03r9c3w85 Kantonsschule Freudenberg'), (58135, 'https://ror.org/03rbc9d50', 'en', 1, 'https://ror.org/03rbc9d50 Beijing Research Institute of Automation for Machinery Industry (China) 北京机械工业自动化研究所软件工程研究中心'), (58136, 'https://ror.org/03rcnp347', 'de', 1, 'https://ror.org/03rcnp347 Kantonsschule Olten'), (58137, 'https://ror.org/03rdhpn16', 'en', 1, 'https://ror.org/03rdhpn16 Trumbull Neighborhood Partnership'), (58138, 'https://ror.org/03re7dt17', 'no_lang_code', 1, 'https://ror.org/03re7dt17 Elopak (Switzerland)'), (58139, 'https://ror.org/03reeyx55', 'en', 1, 'https://ror.org/03reeyx55 Czech Beef Breeders Association Český svaz chovatelů masného skotu'), (58140, 'https://ror.org/03rez2z80', 'no_lang_code', 1, 'https://ror.org/03rez2z80 Libri Prohibiti'), (58141, 'https://ror.org/03rkcd137', 'en', 1, 'https://ror.org/03rkcd137 Museum der Kulturen Basel Museum of Cultures'), (58142, 'https://ror.org/03rkhvv36', 'en', 1, 'https://ror.org/03rkhvv36 Physical and Technical Institute Физико-технический институт'), (58143, 'https://ror.org/03rm6vq41', 'no_lang_code', 1, 'https://ror.org/03rm6vq41 Rotana (Czechia)'), (58144, 'https://ror.org/03rn2e120', 'no_lang_code', 1, 'https://ror.org/03rn2e120 Abbott (Switzerland)'), (58145, 'https://ror.org/03rr2e670', 'no_lang_code', 1, 'https://ror.org/03rr2e670 STS International'), (58146, 'https://ror.org/03rrdjf11', 'no_lang_code', 1, 'https://ror.org/03rrdjf11 Vlnovice Špís (Czechia)'), (58147, 'https://ror.org/03rswp691', 'cs', 1, 'https://ror.org/03rswp691 Klasické a španělské Gymnázium, Brno-Bystrc'), (58148, 'https://ror.org/03ryswf50', 'no_lang_code', 1, 'https://ror.org/03ryswf50 Solar Monitor (Czechia)'), (58149, 'https://ror.org/03rzhkf33', 'en', 1, 'https://ror.org/03rzhkf33 Australian Resources Research Centre'), (58150, 'https://ror.org/03rzvxq48', 'de', 1, 'https://ror.org/03rzvxq48 Museum Kleines Klingental'), (58151, 'https://ror.org/03s2vt470', 'en', 1, 'https://ror.org/03s2vt470 BMJ Careers'), (58152, 'https://ror.org/03s4bg735', 'no_lang_code', 1, 'https://ror.org/03s4bg735 Bio Composants Médicaux (France)'), (58153, 'https://ror.org/03s5bsk62', 'no_lang_code', 1, 'https://ror.org/03s5bsk62 Amberg (Czechia)'), (58154, 'https://ror.org/03s5ftr79', 'cs', 1, 'https://ror.org/03s5ftr79 Architektonická Kancelář Burian Křivinka'), (58155, 'https://ror.org/03s703b14', 'no_lang_code', 1, 'https://ror.org/03s703b14 Polpur (Czechia)'), (58156, 'https://ror.org/03s8dv541', 'en', 1, 'https://ror.org/03s8dv541 Magnetic Health Science Foundation 公益財団法人 磁気健康科学研究振興財団'), (58157, 'https://ror.org/03s8zxa22', 'no_lang_code', 1, 'https://ror.org/03s8zxa22 Josa (Czechia)'), (58158, 'https://ror.org/03s9vq845', 'de', 1, 'https://ror.org/03s9vq845 Aebli-Näf-Stiftung'), (58159, 'https://ror.org/03sbyrq11', 'en', 1, 'https://ror.org/03sbyrq11 Skogssällskapet Swedish Forest Society Foundation'), (58160, 'https://ror.org/03scrbh72', 'no_lang_code', 1, 'https://ror.org/03scrbh72 Pavus (Czechia)'), (58161, 'https://ror.org/03sf5ja42', 'en', 1, 'https://ror.org/03sf5ja42 Swiss Stem Cell Foundation'), (58162, 'https://ror.org/03sgj4t62', 'no_lang_code', 1, 'https://ror.org/03sgj4t62 Evonik (France)'), (58163, 'https://ror.org/03shzfz43', 'no_lang_code', 1, 'https://ror.org/03shzfz43 IKE (Slovakia)'), (58164, 'https://ror.org/03sksgt72', 'no_lang_code', 1, 'https://ror.org/03sksgt72 Haal Elektro (Czechia)'), (58165, 'https://ror.org/03smjaw84', 'no_lang_code', 1, 'https://ror.org/03smjaw84 Lavaris (Czechia)'), (58166, 'https://ror.org/03snzqt88', 'en', 1, 'https://ror.org/03snzqt88 Fachstelle für Gleichstellung von Frau und Mann Office for the Equality of Men and Women'), (58167, 'https://ror.org/03spzq317', 'no_lang_code', 1, 'https://ror.org/03spzq317 Ferring Pharmaceuticals (Netherlands)'), (58168, 'https://ror.org/03sq10a37', 'en', 1, 'https://ror.org/03sq10a37 Conferenza dei Vescovi svizzeri Conférence des évêques suisses Schweizer Bischofskonferenz Swiss Bishops Conference'), (58169, 'https://ror.org/03sqthx21', 'en', 1, 'https://ror.org/03sqthx21 World-India Diabetes Foundation'), (58170, 'https://ror.org/03ssw7f31', 'no_lang_code', 1, 'https://ror.org/03ssw7f31 Trewavis Surgical (Australia)'), (58171, 'https://ror.org/03swaaz57', 'en', 1, 'https://ror.org/03swaaz57 Royal Project Foundation มูลนิธิโครงการหลวง'), (58172, 'https://ror.org/03swnf798', 'en', 1, 'https://ror.org/03swnf798 Platte Valley Medical Center'), (58173, 'https://ror.org/03sxe4z39', 'en', 1, 'https://ror.org/03sxe4z39 Institute of Electronic Control Machines'), (58174, 'https://ror.org/03sxhq344', 'pl', 1, 'https://ror.org/03sxhq344 Instytut Innowacji Przemysłu Mleczarskiego'), (58175, 'https://ror.org/03sy7mc39', 'no_lang_code', 1, 'https://ror.org/03sy7mc39 Silmos (Czechia)'), (58176, 'https://ror.org/03szrx391', 'en', 1, 'https://ror.org/03szrx391 Agladze Inorganic Chemistry and Electrochemistry რ.აგლაძის არაორგანული ქიმიისა'), (58177, 'https://ror.org/03szsag65', 'de', 1, 'https://ror.org/03szsag65 ÖKK (Switzerland)'), (58178, 'https://ror.org/03t06c531', 'cs', 1, 'https://ror.org/03t06c531 Geova'), (58179, 'https://ror.org/03t173c87', 'no_lang_code', 1, 'https://ror.org/03t173c87 Secar Bohemia (Czechia)'), (58180, 'https://ror.org/03t1z6m58', 'en', 1, 'https://ror.org/03t1z6m58 Central Scientific Research Diesel Institute Центральный научно-исследовательский дизельный институт'), (58181, 'https://ror.org/03t46vz87', 'en', 1, 'https://ror.org/03t46vz87 Institute of Orthopedic Research and Education'), (58182, 'https://ror.org/03t5pkx69', 'cs', 1, 'https://ror.org/03t5pkx69 Mateřská školka Sokolovská'), (58183, 'https://ror.org/03t71q954', 'no_lang_code', 1, 'https://ror.org/03t71q954 GRYF (Czechia)'), (58184, 'https://ror.org/03t8yfs10', 'no_lang_code', 1, 'https://ror.org/03t8yfs10 Dermscan Group (France)'), (58185, 'https://ror.org/03t9wc557', 'no_lang_code', 1, 'https://ror.org/03t9wc557 Medical innovation (France)'), (58186, 'https://ror.org/03tb0zs04', 'no_lang_code', 1, 'https://ror.org/03tb0zs04 Ekopron Metal (Czechia)'), (58187, 'https://ror.org/03tbk6q11', 'no_lang_code', 1, 'https://ror.org/03tbk6q11 Terezia (Czechia)'), (58188, 'https://ror.org/03tdpge58', 'no_lang_code', 1, 'https://ror.org/03tdpge58 Scalzo Automotive Research (Australia)'), (58189, 'https://ror.org/03teh1j22', 'es', 1, 'https://ror.org/03teh1j22 Fundación Pro CNIC'), (58190, 'https://ror.org/03tg26f52', 'en', 1, 'https://ror.org/03tg26f52 Bansal Institute Of Research Technology & Science'), (58191, 'https://ror.org/03tg5rf69', 'no_lang_code', 1, 'https://ror.org/03tg5rf69 Uniplast Pardubice (Czechia)'), (58192, 'https://ror.org/03tj32a09', 'en', 1, 'https://ror.org/03tj32a09 Jacobs Foundation'), (58193, 'https://ror.org/03tkf6a63', 'cs', 1, 'https://ror.org/03tkf6a63 Sdružení CEPAC'), (58194, 'https://ror.org/03tphp044', 'no_lang_code', 1, 'https://ror.org/03tphp044 Silnice Group (Czechia)'), (58195, 'https://ror.org/03ttbtn09', 'no_lang_code', 1, 'https://ror.org/03ttbtn09 Institute of Musculoskeletal Science & Education (United States)'), (58196, 'https://ror.org/03tts4y20', 'no_lang_code', 1, 'https://ror.org/03tts4y20 Allowance (Czechia)'), (58197, 'https://ror.org/03tvfzx75', 'no_lang_code', 1, 'https://ror.org/03tvfzx75 Kovofiniš (Czechia)'), (58198, 'https://ror.org/03tvvt638', 'en', 1, 'https://ror.org/03tvvt638 American Society of Church History'), (58199, 'https://ror.org/03tw90478', 'nl', 1, 'https://ror.org/03tw90478 Hartcentrum Hasselt'), (58200, 'https://ror.org/03twrdm38', 'no_lang_code', 1, 'https://ror.org/03twrdm38 Technistone (Czechia)'), (58201, 'https://ror.org/03txfss92', 'de', 1, 'https://ror.org/03txfss92 Museumsgesellschaft Zürich'), (58202, 'https://ror.org/03tyavm03', 'no_lang_code', 1, 'https://ror.org/03tyavm03 Envirmine (Czechia)'), (58203, 'https://ror.org/03tyvpq48', 'en', 1, 'https://ror.org/03tyvpq48 Prague Zoo Zoologická Zahrada'), (58204, 'https://ror.org/03tz15v17', 'no_lang_code', 1, 'https://ror.org/03tz15v17 Hochtief (Czechia)'), (58205, 'https://ror.org/03v08ap24', 'no_lang_code', 1, 'https://ror.org/03v08ap24 HMS-Vilgo (France)'), (58206, 'https://ror.org/03v0h0x87', 'en', 1, 'https://ror.org/03v0h0x87 Sendzimir Foundation'), (58207, 'https://ror.org/03v1j6q03', 'no_lang_code', 1, 'https://ror.org/03v1j6q03 BaHa (Czechia)'), (58208, 'https://ror.org/03v3fza79', 'en', 1, 'https://ror.org/03v3fza79 Japan Radioisotope Association 日本アイソトープ協会'), (58209, 'https://ror.org/03v63hd28', 'no_lang_code', 1, 'https://ror.org/03v63hd28 Urangeologorazvedka Урангеологоразведка'), (58210, 'https://ror.org/03v7tny92', 'en', 1, 'https://ror.org/03v7tny92 Institute of Physics Rosario Instituto de Física Rosario'), (58211, 'https://ror.org/03vayv672', 'en', 1, 'https://ror.org/03vayv672 University of Veterinary Medicine Állatorvostudományi Egyetem'), (58212, 'https://ror.org/03vb3t637', 'no_lang_code', 1, 'https://ror.org/03vb3t637 Mc Velox (Czechia)'), (58213, 'https://ror.org/03vccbd52', 'no_lang_code', 1, 'https://ror.org/03vccbd52 AVG Technologies (Czechia)'), (58214, 'https://ror.org/03vcy9z87', 'no_lang_code', 1, 'https://ror.org/03vcy9z87 KrampeHarex (Czechia)'), (58215, 'https://ror.org/03vdw8k15', 'no_lang_code', 1, 'https://ror.org/03vdw8k15 ICZ (Czechia)'), (58216, 'https://ror.org/03vmxkp39', 'en', 1, 'https://ror.org/03vmxkp39 Iran Nanohealth Committee Food and Drug Organization'), (58217, 'https://ror.org/03vqh1t78', 'en', 1, 'https://ror.org/03vqh1t78 United States Equestrian Federation'), (58218, 'https://ror.org/03vvxhb60', 'en', 1, 'https://ror.org/03vvxhb60 Tianjin Municipal Research Institute for Family Planning 天津市计划生育研究所'), (58219, 'https://ror.org/03vwnv483', 'en', 1, 'https://ror.org/03vwnv483 Family Ties of Nevada'), (58220, 'https://ror.org/03vy9zw30', 'no_lang_code', 1, 'https://ror.org/03vy9zw30 Kalma (Czechia)'), (58221, 'https://ror.org/03vyddc91', 'en', 1, 'https://ror.org/03vyddc91 Healthcare Improvement Scotland'), (58222, 'https://ror.org/03w1ne740', 'en', 1, 'https://ror.org/03w1ne740 Community Alliance with Family Farmers'), (58223, 'https://ror.org/03w38en78', 'no_lang_code', 1, 'https://ror.org/03w38en78 Classic Oil (Czechia)'), (58224, 'https://ror.org/03w3bmy56', 'no_lang_code', 1, 'https://ror.org/03w3bmy56 Laboratoires Aditec (France)'), (58225, 'https://ror.org/03w43f812', 'no_lang_code', 1, 'https://ror.org/03w43f812 Olea Medical (France)'), (58226, 'https://ror.org/03w4cze07', 'cs', 1, 'https://ror.org/03w4cze07 Královská kanonie premonstrátů na Strahově, Strahov Monastery'), (58227, 'https://ror.org/03w4fjd93', 'no_lang_code', 1, 'https://ror.org/03w4fjd93 Edscha (Czechia)'), (58228, 'https://ror.org/03w4xck32', 'cs', 1, 'https://ror.org/03w4xck32 Povodí Ohře'), (58229, 'https://ror.org/03w670d24', 'no_lang_code', 1, 'https://ror.org/03w670d24 Agico (Czechia)'), (58230, 'https://ror.org/03w83pm05', 'en', 1, 'https://ror.org/03w83pm05 United States-Japan Foundation'), (58231, 'https://ror.org/03w8r3912', 'no_lang_code', 1, 'https://ror.org/03w8r3912 More (Czechia)'), (58232, 'https://ror.org/03w948j83', 'en', 1, 'https://ror.org/03w948j83 Czech Statistical Office Český statistický úřad'), (58233, 'https://ror.org/03wex2p68', 'no_lang_code', 1, 'https://ror.org/03wex2p68 Plastmetal Engineering (Czechia)'), (58234, 'https://ror.org/03weyxt18', 'no_lang_code', 1, 'https://ror.org/03weyxt18 Aquamonitoring (Czechia)'), (58235, 'https://ror.org/03wfmrt38', 'en', 1, 'https://ror.org/03wfmrt38 Habitat International Coalition'), (58236, 'https://ror.org/03wfqxa90', 'no_lang_code', 1, 'https://ror.org/03wfqxa90 MKS Instruments (Japan)'), (58237, 'https://ror.org/03wgey566', 'no_lang_code', 1, 'https://ror.org/03wgey566 INT-Informace a Technologie (Czechia)'), (58238, 'https://ror.org/03wgrw884', 'fr', 1, 'https://ror.org/03wgrw884 Gymnase de La Cité Lausanne'), (58239, 'https://ror.org/03why0p66', 'de', 1, 'https://ror.org/03why0p66 Interbion'), (58240, 'https://ror.org/03wjq0y66', 'no_lang_code', 1, 'https://ror.org/03wjq0y66 Isotopx (United Kingdom)'), (58241, 'https://ror.org/03wk3qv94', 'no_lang_code', 1, 'https://ror.org/03wk3qv94 CGI (Czechia)'), (58242, 'https://ror.org/03wmjwc96', 'en', 1, 'https://ror.org/03wmjwc96 Federal Office of Information Technology Systems and Telecommunication Office fédéral de l’informatique et de la télécommunication Ufficio federale dell’informatica e della telecomunicazione Uffizi federal d’informatica e da telecommunicaziun'), (58243, 'https://ror.org/03wnpwa90', 'no_lang_code', 1, 'https://ror.org/03wnpwa90 Eurom (Czechia)'), (58244, 'https://ror.org/03wp1bk10', 'no_lang_code', 1, 'https://ror.org/03wp1bk10 Regutec (Czechia)'), (58245, 'https://ror.org/03wpt5182', 'en', 1, 'https://ror.org/03wpt5182 All-Russian Scientific Research Institute of Viticulture and Winemaking behalf of JI Potapenko Всероссийский научно-исследовательский институт виноградарства и виноделия имени Я.И. Потапенко'), (58246, 'https://ror.org/03wrvmn80', 'no_lang_code', 1, 'https://ror.org/03wrvmn80 Kodak (France)'), (58247, 'https://ror.org/03wwpjn37', 'no_lang_code', 1, 'https://ror.org/03wwpjn37 Mirion Technologies (France)'), (58248, 'https://ror.org/03wxxbs05', 'en', 1, 'https://ror.org/03wxxbs05 MTA Bölcsészettudományi Kutatóközpont Research Centre for the Humanities'), (58249, 'https://ror.org/03wxxna60', 'en', 1, 'https://ror.org/03wxxna60 Open Society Foundation for South Africa'), (58250, 'https://ror.org/03x1kny90', 'no_lang_code', 1, 'https://ror.org/03x1kny90 Palivový Kombinát Ústí (Czechia)'), (58251, 'https://ror.org/03x3b8v35', 'fr', 1, 'https://ror.org/03x3b8v35 Institut Maupertuis'), (58252, 'https://ror.org/03x3d2a47', 'no_lang_code', 1, 'https://ror.org/03x3d2a47 All American Pharmaceutical (United States)'), (58253, 'https://ror.org/03x526f83', 'en', 1, 'https://ror.org/03x526f83 Support Center for Advanced Telecommunications Technology Research Foundation 一財)テレコム先端技術研究支援センター'), (58254, 'https://ror.org/03x8v6f75', 'no_lang_code', 1, 'https://ror.org/03x8v6f75 Zemědělská Agentura (Czechia)'), (58255, 'https://ror.org/03x9c7x93', 'no_lang_code', 1, 'https://ror.org/03x9c7x93 Cryonic Medical (France)'), (58256, 'https://ror.org/03xb1vx63', 'no_lang_code', 1, 'https://ror.org/03xb1vx63 SBA-Expert (Czechia)'), (58257, 'https://ror.org/03xcw7h27', 'no_lang_code', 1, 'https://ror.org/03xcw7h27 Malus (Czechia)'), (58258, 'https://ror.org/03xmk1g71', 'en', 1, 'https://ror.org/03xmk1g71 Wender Weis Foundation for Children'), (58259, 'https://ror.org/03xpstx66', 'en', 1, 'https://ror.org/03xpstx66 Korea Testing & Research Institute 한국화학융합시험연구원'), (58260, 'https://ror.org/03xqzrz13', 'no_lang_code', 1, 'https://ror.org/03xqzrz13 QIP (Czechia)'), (58261, 'https://ror.org/03xr48a26', 'cs', 1, 'https://ror.org/03xr48a26 Společnost pro Výzkum a Vzdělávání'), (58262, 'https://ror.org/03xrsh834', 'no_lang_code', 1, 'https://ror.org/03xrsh834 Trendex Nova (Czechia)'), (58263, 'https://ror.org/03xswyc88', 'en', 1, 'https://ror.org/03xswyc88 Reproductive Medicine Associates of New York'); INSERT INTO `rors` VALUES (58264, 'https://ror.org/03xt1x768', 'en', 1, 'https://ror.org/03xt1x768 State Key Laboratory of Oncogene and Related Genes 癌基因及相关基因国家重点实验室'), (58265, 'https://ror.org/03xt6as58', 'de', 1, 'https://ror.org/03xt6as58 Institut Montana Zugerberg'), (58266, 'https://ror.org/03xw9zx77', 'en', 1, 'https://ror.org/03xw9zx77 Institute of Technical Education'), (58267, 'https://ror.org/03y2n5b37', 'es', 1, 'https://ror.org/03y2n5b37 Universidad Católica Lumen Gentium'), (58268, 'https://ror.org/03y2whj58', 'no_lang_code', 1, 'https://ror.org/03y2whj58 PREdistribuce (Czechia)'), (58269, 'https://ror.org/03y443x30', 'no_lang_code', 1, 'https://ror.org/03y443x30 AGRO-Merin (Czechia)'), (58270, 'https://ror.org/03y44ky43', 'en', 1, 'https://ror.org/03y44ky43 Vehicle Games Public Utility Foundation Memorial Foundation 公益財団法人 車両競技公益資金記念財団'), (58271, 'https://ror.org/03y740t04', 'en', 1, 'https://ror.org/03y740t04 Hisayama Research Institute For Lifestyle Diseases ヒサヤマライフスタイル研究所'), (58272, 'https://ror.org/03y9bvk93', 'en', 1, 'https://ror.org/03y9bvk93 Bolton NHS Foundation Trust'), (58273, 'https://ror.org/03yahs006', 'en', 1, 'https://ror.org/03yahs006 Musée suisse du jeu Swiss Museum of Games'), (58274, 'https://ror.org/03ybb7335', 'no_lang_code', 1, 'https://ror.org/03ybb7335 Laboratoires Rivadis (France)'), (58275, 'https://ror.org/03ycssf34', 'no_lang_code', 1, 'https://ror.org/03ycssf34 ArcelorMittal (United States)'), (58276, 'https://ror.org/03ydrze65', 'no_lang_code', 1, 'https://ror.org/03ydrze65 Eltek (Czechia)'), (58277, 'https://ror.org/03yfqhm12', 'en', 1, 'https://ror.org/03yfqhm12 Nagoya Municipal Industrial Research Institute 名古屋市工業研究所'), (58278, 'https://ror.org/03yjc5j10', 'no_lang_code', 1, 'https://ror.org/03yjc5j10 CS Soft (Czechia)'), (58279, 'https://ror.org/03ymdxs56', 'en', 1, 'https://ror.org/03ymdxs56 Biocom'), (58280, 'https://ror.org/03ymtvg12', 'no_lang_code', 1, 'https://ror.org/03ymtvg12 Garner Industries (United States)'), (58281, 'https://ror.org/03yn3d916', 'no_lang_code', 1, 'https://ror.org/03yn3d916 Pexidr (Czechia)'), (58282, 'https://ror.org/03yn44v82', 'fr', 1, 'https://ror.org/03yn44v82 Institut Georges Lopez'), (58283, 'https://ror.org/03ynzzx94', 'en', 1, 'https://ror.org/03ynzzx94 Indo Korea Science and Technology'), (58284, 'https://ror.org/03yqdcb49', 'no_lang_code', 1, 'https://ror.org/03yqdcb49 A-Spektrum (Czechia)'), (58285, 'https://ror.org/03yqdkz93', 'no_lang_code', 1, 'https://ror.org/03yqdkz93 Preditest (Czechia)'), (58286, 'https://ror.org/03yqdp771', 'en', 1, 'https://ror.org/03yqdp771 Institut für Implantattechnologie und Biomaterialien Institute for ImplantTechnology and Biomaterials'), (58287, 'https://ror.org/03ytay263', 'en', 1, 'https://ror.org/03ytay263 Donald Woods Foundation'), (58288, 'https://ror.org/03ytgj055', 'no_lang_code', 1, 'https://ror.org/03ytgj055 Cisco Systems (Norway)'), (58289, 'https://ror.org/03ytvxz34', 'en', 1, 'https://ror.org/03ytvxz34 Crossroads Community Food Network'), (58290, 'https://ror.org/03yvmmw58', 'no_lang_code', 1, 'https://ror.org/03yvmmw58 Farma Žiro (Czechia)'), (58291, 'https://ror.org/03yvtv826', 'en', 1, 'https://ror.org/03yvtv826 United Way of Santa Barbara County'), (58292, 'https://ror.org/03yy8am44', 'en', 1, 'https://ror.org/03yy8am44 Institute for Applied Science'), (58293, 'https://ror.org/03yz3w307', 'no_lang_code', 1, 'https://ror.org/03yz3w307 Prediction Sciences (France)'), (58294, 'https://ror.org/03z08wj79', 'no_lang_code', 1, 'https://ror.org/03z08wj79 Psychometric Research & Development (United Kingdom)'), (58295, 'https://ror.org/03z152744', 'no_lang_code', 1, 'https://ror.org/03z152744 Sanborn (Czechia)'), (58296, 'https://ror.org/03z18kf36', 'no_lang_code', 1, 'https://ror.org/03z18kf36 MFB-GeoConsulting (Switzerland)'), (58297, 'https://ror.org/03z2d7y96', 'en', 1, 'https://ror.org/03z2d7y96 Bureau of Labor Statistics'), (58298, 'https://ror.org/03z2y7827', 'no_lang_code', 1, 'https://ror.org/03z2y7827 InstaGroup (United Kingdom)'), (58299, 'https://ror.org/03z32jx06', 'en', 1, 'https://ror.org/03z32jx06 GridPP'), (58300, 'https://ror.org/03z3t3x80', 'no_lang_code', 1, 'https://ror.org/03z3t3x80 Skd Trade (Czechia)'), (58301, 'https://ror.org/03z45yy68', 'en', 1, 'https://ror.org/03z45yy68 Cicely Saunders International'), (58302, 'https://ror.org/03z4thr66', 'no_lang_code', 1, 'https://ror.org/03z4thr66 Barvy a laky Hostivař (Czechia)'), (58303, 'https://ror.org/03z550b52', 'en', 1, 'https://ror.org/03z550b52 Sustainable Molokai'), (58304, 'https://ror.org/03z79c042', 'no_lang_code', 1, 'https://ror.org/03z79c042 Rybářství Třeboň (Czechia)'), (58305, 'https://ror.org/03zdztk57', 'no_lang_code', 1, 'https://ror.org/03zdztk57 Czech Credit Bureau (Czechia)'), (58306, 'https://ror.org/03zegg939', 'en', 1, 'https://ror.org/03zegg939 Diocese of Ely'), (58307, 'https://ror.org/03zf8zy80', 'en', 1, 'https://ror.org/03zf8zy80 Metanexus Institute'), (58308, 'https://ror.org/03zga9n09', 'no_lang_code', 1, 'https://ror.org/03zga9n09 Gemec Union (Czechia)'), (58309, 'https://ror.org/03zgyfe94', 'en', 1, 'https://ror.org/03zgyfe94 Mountain Research Initiative'), (58310, 'https://ror.org/03zh8em07', 'no_lang_code', 1, 'https://ror.org/03zh8em07 Advanced World Transport (Czechia)'), (58311, 'https://ror.org/03zhx9h04', 'es', 1, 'https://ror.org/03zhx9h04 CaixaBank'), (58312, 'https://ror.org/03zk5vq23', 'cs', 1, 'https://ror.org/03zk5vq23 Asociace Korozních Inženýrů'), (58313, 'https://ror.org/03zp7y418', 'en', 1, 'https://ror.org/03zp7y418 McAuliffe-Shepard Discovery Center'), (58314, 'https://ror.org/03zpshp42', 'en', 1, 'https://ror.org/03zpshp42 Rostov Research Institute of Oncology Ростовский научно-исследовательский онкологический институт'), (58315, 'https://ror.org/03zszr857', 'no_lang_code', 1, 'https://ror.org/03zszr857 Apex (Czechia)'), (58316, 'https://ror.org/03ztqsz78', 'cs', 1, 'https://ror.org/03ztqsz78 Českomoravská Společnost Chovatelů'), (58317, 'https://ror.org/03zv4kd57', 'no_lang_code', 1, 'https://ror.org/03zv4kd57 Konica Minolta (United States)'), (58318, 'https://ror.org/03zwkpt70', 'no_lang_code', 1, 'https://ror.org/03zwkpt70 Atlas Copco (Switzerland)'), (58319, 'https://ror.org/03zxgcy06', 'en', 1, 'https://ror.org/03zxgcy06 Weitz Family Foundation'), (58320, 'https://ror.org/03zyvg021', 'en', 1, 'https://ror.org/03zyvg021 Horizon Performance'), (58321, 'https://ror.org/03zzdp409', 'de', 1, 'https://ror.org/03zzdp409 Institut Virion\\Serion'), (58322, 'https://ror.org/03zzjmx92', 'en', 1, 'https://ror.org/03zzjmx92 Tom Coughlin Jay Fund Foundation'), (58323, 'https://ror.org/03zzs9b68', 'no_lang_code', 1, 'https://ror.org/03zzs9b68 Nippon Sheet Glass (Italy)'), (58324, 'https://ror.org/0401v0x80', 'no_lang_code', 1, 'https://ror.org/0401v0x80 Dräger (United States)'), (58325, 'https://ror.org/0402k2258', 'no_lang_code', 1, 'https://ror.org/0402k2258 FPOS (Czechia)'), (58326, 'https://ror.org/0402z8r91', 'no_lang_code', 1, 'https://ror.org/0402z8r91 Dega (Czechia)'), (58327, 'https://ror.org/0403h5q85', 'no_lang_code', 1, 'https://ror.org/0403h5q85 Indel (Slovakia)'), (58328, 'https://ror.org/0403nr398', 'en', 1, 'https://ror.org/0403nr398 Presbyterian Healthcare Services'), (58329, 'https://ror.org/0404zsw10', 'no_lang_code', 1, 'https://ror.org/0404zsw10 ZPV Rožnov (Czechia)'), (58330, 'https://ror.org/04051ah92', 'cs', 1, 'https://ror.org/04051ah92 Česká Asociace Pedagogického Výzkumu'), (58331, 'https://ror.org/0405wn630', 'cs', 1, 'https://ror.org/0405wn630 Česká Společnost Entomologická'), (58332, 'https://ror.org/04061m789', 'no_lang_code', 1, 'https://ror.org/04061m789 Rybářství Litomyšl (Rybářství Litomyšl)'), (58333, 'https://ror.org/0406evy55', 'no_lang_code', 1, 'https://ror.org/0406evy55 Perník (Czechia)'), (58334, 'https://ror.org/04088fk89', 'no_lang_code', 1, 'https://ror.org/04088fk89 Staedtler (Germany)'), (58335, 'https://ror.org/0409fn624', 'en', 1, 'https://ror.org/0409fn624 Mammendorf Insitute for Physics and Medicine Mammendorfer Institut für Physik und Medizin'), (58336, 'https://ror.org/040anqg48', 'no_lang_code', 1, 'https://ror.org/040anqg48 Störi Mantel (Czechia)'), (58337, 'https://ror.org/040ch1c18', 'en', 1, 'https://ror.org/040ch1c18 Women''s Right to Education Programme'), (58338, 'https://ror.org/040d4nb67', 'no_lang_code', 1, 'https://ror.org/040d4nb67 Pharmerit (United States)'), (58339, 'https://ror.org/040f2sb18', 'en', 1, 'https://ror.org/040f2sb18 Walker Cancer Research Institute'), (58340, 'https://ror.org/040fx6j66', 'no_lang_code', 1, 'https://ror.org/040fx6j66 EpiPharm (Switzerland)'), (58341, 'https://ror.org/040g76k92', 'no_lang_code', 1, 'https://ror.org/040g76k92 IQVIA (United Kingdom)'), (58342, 'https://ror.org/040h0fj31', 'no_lang_code', 1, 'https://ror.org/040h0fj31 AstenJohnson (United States)'), (58343, 'https://ror.org/040hz3y05', 'no_lang_code', 1, 'https://ror.org/040hz3y05 CNC Technology (Czechia)'), (58344, 'https://ror.org/040mkwe50', 'de', 1, 'https://ror.org/040mkwe50 Kunsthalle Marcel Duchamp'), (58345, 'https://ror.org/040n64385', 'no_lang_code', 1, 'https://ror.org/040n64385 AVE (Czechia)'), (58346, 'https://ror.org/040nrzc79', 'no_lang_code', 1, 'https://ror.org/040nrzc79 R.T. Vanderbilt Holding (United States)'), (58347, 'https://ror.org/040ppeb55', 'no_lang_code', 1, 'https://ror.org/040ppeb55 Unique Textiles (Czechia)'), (58348, 'https://ror.org/040rzp686', 'en', 1, 'https://ror.org/040rzp686 Hair Science Institute'), (58349, 'https://ror.org/040w2dm02', 'en', 1, 'https://ror.org/040w2dm02 Interuniversity Institute for High Energies'), (58350, 'https://ror.org/040wctg56', 'no_lang_code', 1, 'https://ror.org/040wctg56 Allergan (Switzerland)'), (58351, 'https://ror.org/040y2n469', 'no_lang_code', 1, 'https://ror.org/040y2n469 Jules Richard Instruments (France)'), (58352, 'https://ror.org/040z48t11', 'no_lang_code', 1, 'https://ror.org/040z48t11 KMB systems (Czechia)'), (58353, 'https://ror.org/0411rje29', 'no_lang_code', 1, 'https://ror.org/0411rje29 Laboratory of Glass Properties (Russia)'), (58354, 'https://ror.org/0414r2h69', 'no_lang_code', 1, 'https://ror.org/0414r2h69 CoorsTek (Japan)'), (58355, 'https://ror.org/0414wmq03', 'no_lang_code', 1, 'https://ror.org/0414wmq03 Red Hat (Israel)'), (58356, 'https://ror.org/04158f936', 'no_lang_code', 1, 'https://ror.org/04158f936 Kemwater ProChemie (Czechia)'), (58357, 'https://ror.org/0417bae26', 'no_lang_code', 1, 'https://ror.org/0417bae26 Merica (Czechia)'), (58358, 'https://ror.org/0417t4z61', 'en', 1, 'https://ror.org/0417t4z61 Minnesota Partnership for Biotechnology and Medical Genomics'), (58359, 'https://ror.org/041baww89', 'en', 1, 'https://ror.org/041baww89 Pusan National University Dental Hospital 부산 대학교 치과 병원'), (58360, 'https://ror.org/041c3d085', 'en', 1, 'https://ror.org/041c3d085 JSC Scientific Research Institute of Motor Transport ОАО Научно-исследовательский институт автомобильного транспорта'), (58361, 'https://ror.org/041d7vh36', 'no_lang_code', 1, 'https://ror.org/041d7vh36 Total (Czechia)'), (58362, 'https://ror.org/041fb0y12', 'no_lang_code', 1, 'https://ror.org/041fb0y12 Jakape (Czechia)'), (58363, 'https://ror.org/041hmhr55', 'de', 1, 'https://ror.org/041hmhr55 Denkmalpflege und Archäologie'), (58364, 'https://ror.org/041jh8270', 'en', 1, 'https://ror.org/041jh8270 Archiv für Agrargeschichte Archives of Rural History'), (58365, 'https://ror.org/041kcnq11', 'no_lang_code', 1, 'https://ror.org/041kcnq11 Ekomor (Czechia)'), (58366, 'https://ror.org/041przb21', 'de', 1, 'https://ror.org/041przb21 Forum Ost West'), (58367, 'https://ror.org/041qak036', 'no_lang_code', 1, 'https://ror.org/041qak036 Akanthus (Switzerland)'), (58368, 'https://ror.org/041qqrw82', 'en', 1, 'https://ror.org/041qqrw82 Singapore Centre for Environmental Life Sciences Engineering'), (58369, 'https://ror.org/041rkp090', 'en', 1, 'https://ror.org/041rkp090 Oregon Family Support Network'), (58370, 'https://ror.org/041rqdp46', 'no_lang_code', 1, 'https://ror.org/041rqdp46 MCE Avocats (Switzerland)'), (58371, 'https://ror.org/041sdt344', 'en', 1, 'https://ror.org/041sdt344 South Dakota Parent Connection'), (58372, 'https://ror.org/041swdb02', 'no_lang_code', 1, 'https://ror.org/041swdb02 B. Braun (Czechia) B. Braun Avitum'), (58373, 'https://ror.org/041t78y98', 'en', 1, 'https://ror.org/041t78y98 Atlanta VA Health Care System'), (58374, 'https://ror.org/041v0z526', 'no_lang_code', 1, 'https://ror.org/041v0z526 Planval (Switzerland)'), (58375, 'https://ror.org/041wbg141', 'no_lang_code', 1, 'https://ror.org/041wbg141 Ovus (Czechia)'), (58376, 'https://ror.org/041wkfa75', 'de', 1, 'https://ror.org/041wkfa75 Kantonsschule Baden'), (58377, 'https://ror.org/041yznd79', 'no_lang_code', 1, 'https://ror.org/041yznd79 Flash Steel Power (Czechia)'), (58378, 'https://ror.org/041ztcd61', 'en', 1, 'https://ror.org/041ztcd61 Warren Alpert Foundation'), (58379, 'https://ror.org/0420a9r52', 'no_lang_code', 1, 'https://ror.org/0420a9r52 IMPS (Czechia)'), (58380, 'https://ror.org/0422kq922', 'no_lang_code', 1, 'https://ror.org/0422kq922 ELEQ (Netherlands)'), (58381, 'https://ror.org/0422tyr14', 'en', 1, 'https://ror.org/0422tyr14 Federal State Scientific Institution Research Institute of Eye Diseases Федеральное государственное бюджетное научное учреждение «Научно-исследовательский институт глазных болезней'), (58382, 'https://ror.org/0422vfg55', 'cs', 1, 'https://ror.org/0422vfg55 Zemědělské Družstvo Dolany'), (58383, 'https://ror.org/04244e638', 'no_lang_code', 1, 'https://ror.org/04244e638 RPS Ostrava (Czechia)'), (58384, 'https://ror.org/04278cc17', 'en', 1, 'https://ror.org/04278cc17 Simmons Family Foundation'), (58385, 'https://ror.org/042bpeh86', 'en', 1, 'https://ror.org/042bpeh86 Samis Foundation'), (58386, 'https://ror.org/042c1f005', 'no_lang_code', 1, 'https://ror.org/042c1f005 Moravian-Silesian Energy Cluster (Czechia)'), (58387, 'https://ror.org/042edgv29', 'fr', 1, 'https://ror.org/042edgv29 Institut National de Police Scientifique'), (58388, 'https://ror.org/042f4rs03', 'no_lang_code', 1, 'https://ror.org/042f4rs03 Laurane Medical (France)'), (58389, 'https://ror.org/042gk2p39', 'no_lang_code', 1, 'https://ror.org/042gk2p39 Herba Naturalle (United Kingdom)'), (58390, 'https://ror.org/042n4vt36', 'fr', 1, 'https://ror.org/042n4vt36 Département des Finances et des Relations Extérieures'), (58391, 'https://ror.org/042nzp779', 'cs', 1, 'https://ror.org/042nzp779 ISES'), (58392, 'https://ror.org/042q5vh09', 'no_lang_code', 1, 'https://ror.org/042q5vh09 Acrea (Czechia)'), (58393, 'https://ror.org/042qasc85', 'de', 1, 'https://ror.org/042qasc85 Kantonale Psychiatrische Dienste St Gallen'), (58394, 'https://ror.org/042rxpd62', 'en', 1, 'https://ror.org/042rxpd62 Institute of Rheological Functions of Food レオロジー機能食品研究所'), (58395, 'https://ror.org/042t14b38', 'no_lang_code', 1, 'https://ror.org/042t14b38 iBioTech (Czechia)'), (58396, 'https://ror.org/042x2ns13', 'en', 1, 'https://ror.org/042x2ns13 Field and Fork Network'), (58397, 'https://ror.org/042z3wd02', 'no_lang_code', 1, 'https://ror.org/042z3wd02 Halma (United Kingdom)'), (58398, 'https://ror.org/042z4g643', 'de', 1, 'https://ror.org/042z4g643 Swisslex'), (58399, 'https://ror.org/0430gjw29', 'no_lang_code', 1, 'https://ror.org/0430gjw29 Valbek (Czechia)'), (58400, 'https://ror.org/0430jfd38', 'no_lang_code', 1, 'https://ror.org/0430jfd38 Sanofi (Australia)'), (58401, 'https://ror.org/0430mjq75', 'de', 1, 'https://ror.org/0430mjq75 Amt für Archäologie'), (58402, 'https://ror.org/04313jv58', 'no_lang_code', 1, 'https://ror.org/04313jv58 HST TechnoLogic (Czechia)'), (58403, 'https://ror.org/0431dgb36', 'no_lang_code', 1, 'https://ror.org/0431dgb36 Medicprogress (Czechia)'), (58404, 'https://ror.org/04320pg53', 'no_lang_code', 1, 'https://ror.org/04320pg53 MEAS Prog (Czechia)'), (58405, 'https://ror.org/043290w89', 'no_lang_code', 1, 'https://ror.org/043290w89 CVP Galvanika (Czechia)'), (58406, 'https://ror.org/0432ndn22', 'cs', 1, 'https://ror.org/0432ndn22 Jindřichův Hradec Hospital Nemocnice Jindřichův Hradec'), (58407, 'https://ror.org/0432s1v23', 'en', 1, 'https://ror.org/0432s1v23 University Vascular Associates'), (58408, 'https://ror.org/043534r75', 'en', 1, 'https://ror.org/043534r75 Alliance of Community Assistance Ministries'), (58409, 'https://ror.org/0435cyx83', 'no_lang_code', 1, 'https://ror.org/0435cyx83 R-Princip (Czechia)'), (58410, 'https://ror.org/0435zxb65', 'no_lang_code', 1, 'https://ror.org/0435zxb65 Kaipan (Czechia)'), (58411, 'https://ror.org/0437ce844', 'en', 1, 'https://ror.org/0437ce844 Southern Appalachian Botanical Society'), (58412, 'https://ror.org/0439y7f21', 'de', 1, 'https://ror.org/0439y7f21 Krebsregister Saarland'), (58413, 'https://ror.org/043agw178', 'no_lang_code', 1, 'https://ror.org/043agw178 TG Drives (Czechia)'), (58414, 'https://ror.org/043b3da62', 'es', 1, 'https://ror.org/043b3da62 Instituto Holográfico Terrasun Terrasun Holographic Institute'), (58415, 'https://ror.org/043bw8c75', 'no_lang_code', 1, 'https://ror.org/043bw8c75 Eveco (Czechia)'), (58416, 'https://ror.org/043c78r03', 'en', 1, 'https://ror.org/043c78r03 Rose Community Foundation'), (58417, 'https://ror.org/043eaeg43', 'no_lang_code', 1, 'https://ror.org/043eaeg43 Laboratoire de Dermo-Cosmétique Animale (France)'), (58418, 'https://ror.org/043g4d297', 'en', 1, 'https://ror.org/043g4d297 Shwachman Diamond Syndrome Foundation'), (58419, 'https://ror.org/043m08574', 'fr', 1, 'https://ror.org/043m08574 Lausanne Natation'), (58420, 'https://ror.org/043m6pv20', 'en', 1, 'https://ror.org/043m6pv20 DC Central Kitchen'), (58421, 'https://ror.org/043m7sc03', 'en', 1, 'https://ror.org/043m7sc03 Association of Grass and Legumes Seed Growers Sdružení pěstitelů travních a jetelových semen'), (58422, 'https://ror.org/043mfwz11', 'no_lang_code', 1, 'https://ror.org/043mfwz11 Fruits Délice (France)'), (58423, 'https://ror.org/043mk2594', 'sv', 1, 'https://ror.org/043mk2594 Trygg Hansas Forskningsstiftelse'), (58424, 'https://ror.org/043mq8146', 'no_lang_code', 1, 'https://ror.org/043mq8146 MediGEN'), (58425, 'https://ror.org/043rpbd03', 'en', 1, 'https://ror.org/043rpbd03 Ontario Fruit and Vegetable Growers'' Association'), (58426, 'https://ror.org/043tgen92', 'no_lang_code', 1, 'https://ror.org/043tgen92 Coprosys-LVI (Czechia)'), (58427, 'https://ror.org/043wdfc35', 'en', 1, 'https://ror.org/043wdfc35 Museum of Yugoslav History Muzej Jugoslavije'), (58428, 'https://ror.org/043xc2b47', 'no_lang_code', 1, 'https://ror.org/043xc2b47 Foxconn (United States)'), (58429, 'https://ror.org/043xc7z89', 'no_lang_code', 1, 'https://ror.org/043xc7z89 Molaris (Czechia)'), (58430, 'https://ror.org/043xdeq55', 'en', 1, 'https://ror.org/043xdeq55 Resthaven Incorporated'), (58431, 'https://ror.org/043xkan55', 'no_lang_code', 1, 'https://ror.org/043xkan55 San Miguel Produce (United States)'), (58432, 'https://ror.org/043yba110', 'no_lang_code', 1, 'https://ror.org/043yba110 Laboratoires Genevrier (France)'), (58433, 'https://ror.org/043yr1e87', 'no_lang_code', 1, 'https://ror.org/043yr1e87 Remedis (Czechia)'), (58434, 'https://ror.org/0440znq24', 'en', 1, 'https://ror.org/0440znq24 Foundation Blanceflor'), (58435, 'https://ror.org/0442vtt97', 'en', 1, 'https://ror.org/0442vtt97 National Association of Development Organizations'), (58436, 'https://ror.org/0444qc238', 'no_lang_code', 1, 'https://ror.org/0444qc238 Vodárenská Společnost Chrudim (Czechia)'), (58437, 'https://ror.org/0446gjc92', 'en', 1, 'https://ror.org/0446gjc92 Oskar Öflund Foundation Oskar Öflunds Stiftelse'), (58438, 'https://ror.org/0447ggh32', 'no_lang_code', 1, 'https://ror.org/0447ggh32 Nethost (Czechia)'), (58439, 'https://ror.org/044gm0487', 'no_lang_code', 1, 'https://ror.org/044gm0487 China Ocean Shipping (China) 中国远洋运输'), (58440, 'https://ror.org/044jcs946', 'cs', 1, 'https://ror.org/044jcs946 Sdružení Historiků České Republiky'), (58441, 'https://ror.org/044jgn488', 'no_lang_code', 1, 'https://ror.org/044jgn488 DevCom (Czechia)'), (58442, 'https://ror.org/044k3hm62', 'cs', 1, 'https://ror.org/044k3hm62 Nemocnice Břeclav'), (58443, 'https://ror.org/044kfsb93', 'cs', 1, 'https://ror.org/044kfsb93 Zemědělské Obchodní Družstvo Kámen'), (58444, 'https://ror.org/044kgk540', 'en', 1, 'https://ror.org/044kgk540 John L. McClellan Memorial Veterans Hospital'), (58445, 'https://ror.org/044kkbh92', 'no_lang_code', 1, 'https://ror.org/044kkbh92 BMW Group (Germany)'), (58446, 'https://ror.org/044ktnx96', 'en', 1, 'https://ror.org/044ktnx96 Bureau of Energy 經濟部能源局'), (58447, 'https://ror.org/044qz6d20', 'en', 1, 'https://ror.org/044qz6d20 Institute of Geotechnics and Engineering Survey in Construction Институт геотехники и инженерных изысканий в строительстве'), (58448, 'https://ror.org/044r2ge26', 'en', 1, 'https://ror.org/044r2ge26 Alpine Biology Center Centro Biologia Alpina'), (58449, 'https://ror.org/044s8gt42', 'fr', 1, 'https://ror.org/044s8gt42 Musée cantonal de zoologie de Lausanne'), (58450, 'https://ror.org/044s9c536', 'en', 1, 'https://ror.org/044s9c536 G. M. Reddy Research Foundation'), (58451, 'https://ror.org/044xdg011', 'no_lang_code', 1, 'https://ror.org/044xdg011 Toppan (United States)'), (58452, 'https://ror.org/044xp1b57', 'no_lang_code', 1, 'https://ror.org/044xp1b57 Fortex-AGS (Czechia)'), (58453, 'https://ror.org/044xt5998', 'no_lang_code', 1, 'https://ror.org/044xt5998 Advanced Medical Institute (Australia)'), (58454, 'https://ror.org/044zhgv69', 'no_lang_code', 1, 'https://ror.org/044zhgv69 Strainstall (United Kingdom)'), (58455, 'https://ror.org/0450y4k66', 'cs', 1, 'https://ror.org/0450y4k66 Orlické Muzeum Choceň'), (58456, 'https://ror.org/0450ydh81', 'no_lang_code', 1, 'https://ror.org/0450ydh81 Vakabrnocz (Czechia)'), (58457, 'https://ror.org/0451k0g64', 'no_lang_code', 1, 'https://ror.org/0451k0g64 Institute of Applied Biotechnologies (Czechia)'), (58458, 'https://ror.org/04521r875', 'fr', 1, 'https://ror.org/04521r875 Agence de l''eau Rhône Méditerranée Corse'), (58459, 'https://ror.org/0453b8r94', 'cs', 1, 'https://ror.org/0453b8r94 Česká Krajina'), (58460, 'https://ror.org/0453rk787', 'fr', 1, 'https://ror.org/0453rk787 Laboratoire de Sciences de la Terre'), (58461, 'https://ror.org/045518148', 'en', 1, 'https://ror.org/045518148 Centre for Regional Policy Research and Cooperation Studiorum'), (58462, 'https://ror.org/045661064', 'no_lang_code', 1, 'https://ror.org/045661064 Svárovský (Czechia)'), (58463, 'https://ror.org/045668z75', 'no_lang_code', 1, 'https://ror.org/045668z75 Forsapi (Czechia)'), (58464, 'https://ror.org/0459rmv61', 'en', 1, 'https://ror.org/0459rmv61 Society for the History of Czechoslovak Jews Společnost pro dějiny židů v Československé republice'), (58465, 'https://ror.org/045b4zv25', 'no_lang_code', 1, 'https://ror.org/045b4zv25 Vega (Czechia)'), (58466, 'https://ror.org/045bnzp02', 'no_lang_code', 1, 'https://ror.org/045bnzp02 Foresta (Czechia)'), (58467, 'https://ror.org/045cfxc86', 'no_lang_code', 1, 'https://ror.org/045cfxc86 Vodohospodářský podnik (Czechia)'), (58468, 'https://ror.org/045cwqd08', 'no_lang_code', 1, 'https://ror.org/045cwqd08 Albemarle (Netherlands)'), (58469, 'https://ror.org/045e9yd97', 'no_lang_code', 1, 'https://ror.org/045e9yd97 Aqua-contact (Czechia)'), (58470, 'https://ror.org/045ejp222', 'en', 1, 'https://ror.org/045ejp222 Shandong Provincial Agriculture Department 山东省农业厅 承办'), (58471, 'https://ror.org/045eygx28', 'en', 1, 'https://ror.org/045eygx28 Wisconsin Veterinary Medical Association'), (58472, 'https://ror.org/045g2fs27', 'no_lang_code', 1, 'https://ror.org/045g2fs27 Ecotex (Czechia)'), (58473, 'https://ror.org/045g9rz48', 'no_lang_code', 1, 'https://ror.org/045g9rz48 Applied Coherent Technology (United States)'), (58474, 'https://ror.org/045gwct77', 'no_lang_code', 1, 'https://ror.org/045gwct77 Lenz & Staehelin (Switzerland)'), (58475, 'https://ror.org/045htpw71', 'en', 1, 'https://ror.org/045htpw71 Dictionary Society of North America'), (58476, 'https://ror.org/045jxwb84', 'no_lang_code', 1, 'https://ror.org/045jxwb84 JK envi (Czechia)'), (58477, 'https://ror.org/045krvc71', 'fr', 1, 'https://ror.org/045krvc71 Labex Action'), (58478, 'https://ror.org/045mb3x22', 'en', 1, 'https://ror.org/045mb3x22 Woodruff Foundation'), (58479, 'https://ror.org/045mezg88', 'no_lang_code', 1, 'https://ror.org/045mezg88 Arcdata (Czechia)'), (58480, 'https://ror.org/045qqby88', 'no_lang_code', 1, 'https://ror.org/045qqby88 ON Semiconductor (South Korea)'), (58481, 'https://ror.org/045r69s96', 'fi', 1, 'https://ror.org/045r69s96 Satakunnan Korkean Teknologian Säätiö'), (58482, 'https://ror.org/045tder48', 'cs', 1, 'https://ror.org/045tder48 Zemědělské družstvo Liběšice'), (58483, 'https://ror.org/045tr8m18', 'no_lang_code', 1, 'https://ror.org/045tr8m18 Kaspe (Czechia)'), (58484, 'https://ror.org/045vees34', 'de', 1, 'https://ror.org/045vees34 Gfs-Zürich'), (58485, 'https://ror.org/045vf4q62', 'no_lang_code', 1, 'https://ror.org/045vf4q62 Apronex (Czechia)'), (58486, 'https://ror.org/045vn2806', 'en', 1, 'https://ror.org/045vn2806 AIMS@JCU'), (58487, 'https://ror.org/045x2a702', 'fr', 1, 'https://ror.org/045x2a702 Institut Européen de Gestion'), (58488, 'https://ror.org/045x5q326', 'en', 1, 'https://ror.org/045x5q326 Sciencenter'), (58489, 'https://ror.org/045ykqf07', 'no_lang_code', 1, 'https://ror.org/045ykqf07 Triangolo (Czechia)'), (58490, 'https://ror.org/04605x106', 'no_lang_code', 1, 'https://ror.org/04605x106 Envirmine-Energo (Czechia)'), (58491, 'https://ror.org/0460p7240', 'en', 1, 'https://ror.org/0460p7240 Species Conservation Foundation Stiftung Artenschutz'), (58492, 'https://ror.org/04634r813', 'en', 1, 'https://ror.org/04634r813 Southwest Badger Resource Conservation and Development Council'), (58493, 'https://ror.org/0465j8q23', 'de', 1, 'https://ror.org/0465j8q23 Historischer Verein des Kantons Schwyz'), (58494, 'https://ror.org/04666hf17', 'no_lang_code', 1, 'https://ror.org/04666hf17 Academia Raetica'), (58495, 'https://ror.org/046chmz66', 'en', 1, 'https://ror.org/046chmz66 Institute of Social Sciences Институт социальных наук'), (58496, 'https://ror.org/046ckcg70', 'no_lang_code', 1, 'https://ror.org/046ckcg70 Zeal (United Kingdom)'), (58497, 'https://ror.org/046cz2w20', 'no_lang_code', 1, 'https://ror.org/046cz2w20 Nicolet (Czechia)'), (58498, 'https://ror.org/046d4aw91', 'en', 1, 'https://ror.org/046d4aw91 Institute of Art History MTA Bölcsészettudományi Kutatóközpont Művészettörténeti Intézet'), (58499, 'https://ror.org/046dvcc04', 'no_lang_code', 1, 'https://ror.org/046dvcc04 Forensic DNA Service (Czechia) Forenzní DNA servis'), (58500, 'https://ror.org/046e4b521', 'fr', 1, 'https://ror.org/046e4b521 Direction Générale de l''Enseignement Obligatoire - Enseignement Primaire'), (58501, 'https://ror.org/046ec5t14', 'en', 1, 'https://ror.org/046ec5t14 Syngenta Foundation for Sustainable Agriculture'), (58502, 'https://ror.org/046g3bm52', 'no_lang_code', 1, 'https://ror.org/046g3bm52 MEC'), (58503, 'https://ror.org/046jh9k27', 'en', 1, 'https://ror.org/046jh9k27 San Francisco Foundation'), (58504, 'https://ror.org/046kv4j11', 'no_lang_code', 1, 'https://ror.org/046kv4j11 Pragoimex (Czechia)'), (58505, 'https://ror.org/046m71h07', 'en', 1, 'https://ror.org/046m71h07 Ministry of Higher Education and Scientific Research وزارة التعليم العالي والبحث العلمي'), (58506, 'https://ror.org/046m7f751', 'en', 1, 'https://ror.org/046m7f751 Senri Life Science Foundation 千里ライフサイエンスセンター'), (58507, 'https://ror.org/046nmb538', 'de', 1, 'https://ror.org/046nmb538 NET Metrix'), (58508, 'https://ror.org/046nvcx94', 'cs', 1, 'https://ror.org/046nvcx94 Česká Hutnická Společnost'), (58509, 'https://ror.org/046q3c491', 'sv', 1, 'https://ror.org/046q3c491 Direktör Albert Påhlssons Stiftelse för Välgörenhet'), (58510, 'https://ror.org/046q3s698', 'de', 1, 'https://ror.org/046q3s698 Schweizer Allianz Gentechfrei'), (58511, 'https://ror.org/046q5nj25', 'cs', 1, 'https://ror.org/046q5nj25 Česká Speleologická Společnost'), (58512, 'https://ror.org/046rffv75', 'en', 1, 'https://ror.org/046rffv75 International Union of Geological Sciences'), (58513, 'https://ror.org/046s0ap47', 'no_lang_code', 1, 'https://ror.org/046s0ap47 XT Card (Czechia)'), (58514, 'https://ror.org/046sbgc47', 'cs', 1, 'https://ror.org/046sbgc47 Envirex'), (58515, 'https://ror.org/046tc9744', 'da', 1, 'https://ror.org/046tc9744 Svend Andersen Fonden'), (58516, 'https://ror.org/046tk6771', 'en', 1, 'https://ror.org/046tk6771 Posen Foundation קרן פוזן'), (58517, 'https://ror.org/046vvrs54', 'no_lang_code', 1, 'https://ror.org/046vvrs54 Texas Instruments (Netherlands)'), (58518, 'https://ror.org/046w6p285', 'en', 1, 'https://ror.org/046w6p285 Swedish Brain Power'), (58519, 'https://ror.org/046x93w41', 'de', 1, 'https://ror.org/046x93w41 Berner Kantonalbank'), (58520, 'https://ror.org/046xnnd03', 'no_lang_code', 1, 'https://ror.org/046xnnd03 Benet Gold (Czechia)'), (58521, 'https://ror.org/046yszb07', 'no_lang_code', 1, 'https://ror.org/046yszb07 Ligranit (Czechia)'), (58522, 'https://ror.org/04708aj14', 'en', 1, 'https://ror.org/04708aj14 Pediatric Epilepsy Research Foundation'), (58523, 'https://ror.org/0470csm54', 'no_lang_code', 1, 'https://ror.org/0470csm54 Geocart (Czechia)'), (58524, 'https://ror.org/047107639', 'no_lang_code', 1, 'https://ror.org/047107639 Cernin (Czechia)'), (58525, 'https://ror.org/0473pps33', 'en', 1, 'https://ror.org/0473pps33 AMR Centre'), (58526, 'https://ror.org/04744k068', 'en', 1, 'https://ror.org/04744k068 Ministry of Industries and Innovation'), (58527, 'https://ror.org/0476y1408', 'no_lang_code', 1, 'https://ror.org/0476y1408 Basaltex (Czechia)'), (58528, 'https://ror.org/047909p37', 'no_lang_code', 1, 'https://ror.org/047909p37 ČAS Service (Czechia)'), (58529, 'https://ror.org/047916x45', 'en', 1, 'https://ror.org/047916x45 Rett Syndrome Association of Australia'), (58530, 'https://ror.org/047939x15', 'en', 1, 'https://ror.org/047939x15 Penn Center for AIDS Research'), (58531, 'https://ror.org/047a1qt28', 'no_lang_code', 1, 'https://ror.org/047a1qt28 Balakryl (Czechia)'), (58532, 'https://ror.org/047ajv266', 'no_lang_code', 1, 'https://ror.org/047ajv266 Illinois Tool Works (France)'), (58533, 'https://ror.org/047asg479', 'en', 1, 'https://ror.org/047asg479 Organic Farm School'), (58534, 'https://ror.org/047eytq20', 'no_lang_code', 1, 'https://ror.org/047eytq20 Coloplast (United Kingdom)'), (58535, 'https://ror.org/047fpcv83', 'en', 1, 'https://ror.org/047fpcv83 Saigh Foundation'), (58536, 'https://ror.org/047kkxp41', 'en', 1, 'https://ror.org/047kkxp41 Institute of Vegetable and Floriculture Science 野菜花き研究部門'), (58537, 'https://ror.org/047kshh42', 'en', 1, 'https://ror.org/047kshh42 East West Medical Research Institute'), (58538, 'https://ror.org/047m55x87', 'en', 1, 'https://ror.org/047m55x87 RYR 1 Foundation'), (58539, 'https://ror.org/047mjng73', 'no_lang_code', 1, 'https://ror.org/047mjng73 Delacon Biotechnik (Czechia)'), (58540, 'https://ror.org/047n5wn91', 'no_lang_code', 1, 'https://ror.org/047n5wn91 Scanco Medical (Switzerland)'), (58541, 'https://ror.org/047nkw990', 'no_lang_code', 1, 'https://ror.org/047nkw990 Ella Baché (France)'), (58542, 'https://ror.org/047nxq723', 'en', 1, 'https://ror.org/047nxq723 Czech Forum for Development Cooperation České fórum pro rozvojovou spolupráci'), (58543, 'https://ror.org/047qdeh65', 'no_lang_code', 1, 'https://ror.org/047qdeh65 Zetetic Institute'), (58544, 'https://ror.org/047rda748', 'no_lang_code', 1, 'https://ror.org/047rda748 Radanal (Czechia)'), (58545, 'https://ror.org/047s4cx41', 'en', 1, 'https://ror.org/047s4cx41 Pilgrim Psychiatric Center'), (58546, 'https://ror.org/047xr9y18', 'cs', 1, 'https://ror.org/047xr9y18 Znalecký Ústav Bezpečnosti a Ochrany Zdraví'), (58547, 'https://ror.org/047znkp64', 'no_lang_code', 1, 'https://ror.org/047znkp64 Europanel (Czechia)'), (58548, 'https://ror.org/048016404', 'da', 1, 'https://ror.org/048016404 Dansk Kræftforsknings Fond'), (58549, 'https://ror.org/0481qb682', 'en', 1, 'https://ror.org/0481qb682 Direction générale de l’éducation, de la jeunesse, du sport et de la culture Directorate-General for Education, Youth, Sport and Culture Generaldirektion Bildung, Jugend, Sport und Kultur'), (58550, 'https://ror.org/0481z9839', 'no_lang_code', 1, 'https://ror.org/0481z9839 TE Connectivity (Japan)'), (58551, 'https://ror.org/0482qwy81', 'cs', 1, 'https://ror.org/0482qwy81 Správa Železniční Dopravní Cesty'), (58552, 'https://ror.org/0483kh086', 'en', 1, 'https://ror.org/0483kh086 Ukrainian Oil and Gas Institute Ukrainsky neftegazovy institut'), (58553, 'https://ror.org/0484yn593', 'no_lang_code', 1, 'https://ror.org/0484yn593 KVS Ekodivize (Czechia)'), (58554, 'https://ror.org/04858sf96', 'no_lang_code', 1, 'https://ror.org/04858sf96 Sido (Czechia)'), (58555, 'https://ror.org/0486zbr69', 'en', 1, 'https://ror.org/0486zbr69 Saika Technological Institute Foundation 一般財団法人 雑賀技術研究所'), (58556, 'https://ror.org/0489x2521', 'no_lang_code', 1, 'https://ror.org/0489x2521 Vrsanska Uhelna (Czechia)'), (58557, 'https://ror.org/048a8ap39', 'cs', 1, 'https://ror.org/048a8ap39 Labyrint'), (58558, 'https://ror.org/048bdzy56', 'en', 1, 'https://ror.org/048bdzy56 St. Jude Medical Foundation'), (58559, 'https://ror.org/048c6ht78', 'en', 1, 'https://ror.org/048c6ht78 Vietnam Education Foundation'), (58560, 'https://ror.org/048cvv935', 'en', 1, 'https://ror.org/048cvv935 Rockefeller Brothers Fund'), (58561, 'https://ror.org/048dgbt58', 'no_lang_code', 1, 'https://ror.org/048dgbt58 Triton Turnov (Czechia)'), (58562, 'https://ror.org/048e5wt68', 'no_lang_code', 1, 'https://ror.org/048e5wt68 Bonnel Technologie (Czechia)'), (58563, 'https://ror.org/048f13k87', 'no_lang_code', 1, 'https://ror.org/048f13k87 Inquiry Technologies (United States)'), (58564, 'https://ror.org/048f4bh03', 'de', 1, 'https://ror.org/048f4bh03 Institut für Automatisierung und Informatik'), (58565, 'https://ror.org/048fh6562', 'en', 1, 'https://ror.org/048fh6562 Czech Society for Histo and Cytochemistry Česká společnost histo-a cytochemická'), (58566, 'https://ror.org/048frez22', 'no_lang_code', 1, 'https://ror.org/048frez22 Amarin (United Kingdom)'), (58567, 'https://ror.org/048g28j84', 'en', 1, 'https://ror.org/048g28j84 Industrial Technology Center of Okayama Prefecture 岡山県工業技術センター'), (58568, 'https://ror.org/048h6zc16', 'en', 1, 'https://ror.org/048h6zc16 Research Institute of Chemicals for Polymeric Materials'), (58569, 'https://ror.org/048mh8s80', 'no_lang_code', 1, 'https://ror.org/048mh8s80 Calimmune (United States)'), (58570, 'https://ror.org/048nacf41', 'en', 1, 'https://ror.org/048nacf41 Federal Government of Germany'), (58571, 'https://ror.org/048npsb62', 'no_lang_code', 1, 'https://ror.org/048npsb62 Karned Tools (Czechia)'), (58572, 'https://ror.org/048p4wq89', 'no_lang_code', 1, 'https://ror.org/048p4wq89 Takeda (France)'), (58573, 'https://ror.org/048r71s66', 'en', 1, 'https://ror.org/048r71s66 Ceres Laboratory Laboratoire Ceres'), (58574, 'https://ror.org/048rt2d32', 'nl', 1, 'https://ror.org/048rt2d32 Cicero Zorggroep'), (58575, 'https://ror.org/048tv2g66', 'en', 1, 'https://ror.org/048tv2g66 Restless Legs Syndrome Foundation'), (58576, 'https://ror.org/048vy2749', 'de', 1, 'https://ror.org/048vy2749 ViaStoria'), (58577, 'https://ror.org/048xrz015', 'no_lang_code', 1, 'https://ror.org/048xrz015 Testima (Czechia)'), (58578, 'https://ror.org/048y92s67', 'en', 1, 'https://ror.org/048y92s67 Jihočeská agentura pro podporu inovačního podnikání o.p.s South Bohemian Agency for Support to Innovative Enterprising'), (58579, 'https://ror.org/048zg6t55', 'no_lang_code', 1, 'https://ror.org/048zg6t55 Jiangsu Huadong Institute Of Li-Ion Battery'), (58580, 'https://ror.org/048ztsn21', 'en', 1, 'https://ror.org/048ztsn21 Cochrane'), (58581, 'https://ror.org/04904ph59', 'en', 1, 'https://ror.org/04904ph59 Cаксонский институт прикладной биотехнологии Instituto Sajón de Biotecnología Aplicada anexo Saxon Institute for Applied Biotechnology Sächsisches Institut für Angewandte Biotechnologie'), (58582, 'https://ror.org/0491jra02', 'no_lang_code', 1, 'https://ror.org/0491jra02 KBK fire (Czechia)'), (58583, 'https://ror.org/0491q1q03', 'no_lang_code', 1, 'https://ror.org/0491q1q03 Spel (Czechia)'), (58584, 'https://ror.org/0492qzy66', 'no_lang_code', 1, 'https://ror.org/0492qzy66 Stanley Black & Decker (France)'), (58585, 'https://ror.org/0493txn47', 'en', 1, 'https://ror.org/0493txn47 Canadian Energy Research Institute'), (58586, 'https://ror.org/0494r5h25', 'en', 1, 'https://ror.org/0494r5h25 Bundesgericht Federal Supreme Court of Switzerland Tribunal federal Tribunal fédéral Tribunale federale'), (58587, 'https://ror.org/0497wpq23', 'no_lang_code', 1, 'https://ror.org/0497wpq23 ČIP Plus (Czechia)'), (58588, 'https://ror.org/0498qf076', 'de', 1, 'https://ror.org/0498qf076 Kantonsschule Enge'), (58589, 'https://ror.org/04993kw89', 'de', 1, 'https://ror.org/04993kw89 Departement für Wirtschaft, Soziales und Umwelt'), (58590, 'https://ror.org/0499cjb39', 'en', 1, 'https://ror.org/0499cjb39 Greek Society of Rheumatology'), (58591, 'https://ror.org/049a7m162', 'no_lang_code', 1, 'https://ror.org/049a7m162 Abitec (Czechia)'), (58592, 'https://ror.org/049ay0490', 'no_lang_code', 1, 'https://ror.org/049ay0490 Velobüro (Switzerland)'), (58593, 'https://ror.org/049efks73', 'en', 1, 'https://ror.org/049efks73 Museum of the City of Usti nad Labem'), (58594, 'https://ror.org/049g0ca30', 'no_lang_code', 1, 'https://ror.org/049g0ca30 Synthomer (Czechia)'), (58595, 'https://ror.org/049gvsd25', 'no_lang_code', 1, 'https://ror.org/049gvsd25 Knorr-Bremse (Czechia)'), (58596, 'https://ror.org/049hp1z35', 'no_lang_code', 1, 'https://ror.org/049hp1z35 Bratři Horákové (Czechia)'), (58597, 'https://ror.org/049j15k39', 'no_lang_code', 1, 'https://ror.org/049j15k39 Dongfeng Motor (China)'), (58598, 'https://ror.org/049k08p55', 'en', 1, 'https://ror.org/049k08p55 STandUP for Energy'), (58599, 'https://ror.org/049p61e38', 'en', 1, 'https://ror.org/049p61e38 Lantern Community Services'), (58600, 'https://ror.org/049px2k81', 'no_lang_code', 1, 'https://ror.org/049px2k81 RCS Kladno (Czechia)'), (58601, 'https://ror.org/049rk3218', 'de', 1, 'https://ror.org/049rk3218 Institut für angewandte Photonik'), (58602, 'https://ror.org/049tb1q96', 'no_lang_code', 1, 'https://ror.org/049tb1q96 Varian Medical Systems (Switzerland)'), (58603, 'https://ror.org/049vb3221', 'no_lang_code', 1, 'https://ror.org/049vb3221 Profinit (Czechia)'), (58604, 'https://ror.org/049vzz986', 'no_lang_code', 1, 'https://ror.org/049vzz986 Storz Medical (Switzerland)'), (58605, 'https://ror.org/049wtgt11', 'no_lang_code', 1, 'https://ror.org/049wtgt11 DuPont (France)'), (58606, 'https://ror.org/049yngf89', 'no_lang_code', 1, 'https://ror.org/049yngf89 Made In Space (United States)'), (58607, 'https://ror.org/049yqqs33', 'en', 1, 'https://ror.org/049yqqs33 Heidelberg Institute for Stem Cell Technology and Experimental Medicine'), (58608, 'https://ror.org/049yzrn11', 'no_lang_code', 1, 'https://ror.org/049yzrn11 Technology Partnership (United Kingdom)'), (58609, 'https://ror.org/049z4x724', 'no_lang_code', 1, 'https://ror.org/049z4x724 Pooslaví Nová Ves (Slovakia)'), (58610, 'https://ror.org/04a2jrr93', 'no_lang_code', 1, 'https://ror.org/04a2jrr93 Wista (Czechia)'), (58611, 'https://ror.org/04a2k6j28', 'en', 1, 'https://ror.org/04a2k6j28 Volpe National Transportation Systems Center'), (58612, 'https://ror.org/04a8hmx75', 'no_lang_code', 1, 'https://ror.org/04a8hmx75 Chateau Bzenec (Czechia)'), (58613, 'https://ror.org/04a9esj71', 'no_lang_code', 1, 'https://ror.org/04a9esj71 Amec Foster Wheeler (Czechia)'), (58614, 'https://ror.org/04abad481', 'en', 1, 'https://ror.org/04abad481 Webster Groves Nature Study Society'), (58615, 'https://ror.org/04ackq833', 'en', 1, 'https://ror.org/04ackq833 Lumbini Eye Institute'), (58616, 'https://ror.org/04adtqj87', 'en', 1, 'https://ror.org/04adtqj87 T.J. Martell Foundation'), (58617, 'https://ror.org/04aekkh13', 'en', 1, 'https://ror.org/04aekkh13 International Union for Physical and Engineering Sciences in Medicine'), (58618, 'https://ror.org/04afcm768', 'en', 1, 'https://ror.org/04afcm768 Mediteranski institut za istraživanje života Mediterranean Institute for Life Sciences'), (58619, 'https://ror.org/04agdqh30', 'en', 1, 'https://ror.org/04agdqh30 Raine Medical Research Foundation'), (58620, 'https://ror.org/04ahnxd67', 'de', 1, 'https://ror.org/04ahnxd67 St. Claraspital'), (58621, 'https://ror.org/04aj0cy60', 'en', 1, 'https://ror.org/04aj0cy60 Gabrielle’s Angel Foundation for Cancer Research'), (58622, 'https://ror.org/04ajxh113', 'en', 1, 'https://ror.org/04ajxh113 R. Harold Burton Foundation'), (58623, 'https://ror.org/04ansg437', 'no_lang_code', 1, 'https://ror.org/04ansg437 Altech (Czechia)'), (58624, 'https://ror.org/04aqd7928', 'no_lang_code', 1, 'https://ror.org/04aqd7928 Amer Sports (United States)'), (58625, 'https://ror.org/04ar4b407', 'no_lang_code', 1, 'https://ror.org/04ar4b407 Koenig & Bauer (Switzerland)'), (58626, 'https://ror.org/04are6b10', 'no_lang_code', 1, 'https://ror.org/04are6b10 Sincon (Czechia)'), (58627, 'https://ror.org/04arfmc53', 'cs', 1, 'https://ror.org/04arfmc53 Svaz Chovatelů Holštýnského Skotu ČR'), (58628, 'https://ror.org/04avh2p37', 'no_lang_code', 1, 'https://ror.org/04avh2p37 AGROSAD Velké Bílovice (Czechia)'), (58629, 'https://ror.org/04avma498', 'no_lang_code', 1, 'https://ror.org/04avma498 Vodárenská Akciová Společnost (Czechia)'), (58630, 'https://ror.org/04axw7w96', 'en', 1, 'https://ror.org/04axw7w96 Robert E. and Evelyn McKee Foundation'), (58631, 'https://ror.org/04axzyr33', 'no_lang_code', 1, 'https://ror.org/04axzyr33 Usibelli Coal Mine (United States)'), (58632, 'https://ror.org/04ayj6s32', 'en', 1, 'https://ror.org/04ayj6s32 Scientific Research Institute of Technical Physics and Automation'), (58633, 'https://ror.org/04azbkk87', 'en', 1, 'https://ror.org/04azbkk87 Schweizerisches Institut für öffentliches Management Swiss Institute for Public Management'), (58634, 'https://ror.org/04b2avy95', 'no_lang_code', 1, 'https://ror.org/04b2avy95 Vuchz (Czechia)'), (58635, 'https://ror.org/04b2kpa50', 'no_lang_code', 1, 'https://ror.org/04b2kpa50 Zemědělské družstvo Bašnice (Czechia)'), (58636, 'https://ror.org/04b5gd719', 'no_lang_code', 1, 'https://ror.org/04b5gd719 Riisfort (Denmark)'), (58637, 'https://ror.org/04b65h134', 'cs', 1, 'https://ror.org/04b65h134 Sládeček Museum of Local History'), (58638, 'https://ror.org/04b6xpy41', 'en', 1, 'https://ror.org/04b6xpy41 Neuromuscular Research Association Basel'), (58639, 'https://ror.org/04b988286', 'en', 1, 'https://ror.org/04b988286 Centre for Socio-Eco-Nomic Development'), (58640, 'https://ror.org/04b9pxw89', 'de', 1, 'https://ror.org/04b9pxw89 Gymnasien Kirchenfeld'), (58641, 'https://ror.org/04bag3882', 'no_lang_code', 1, 'https://ror.org/04bag3882 CIUR (Czechia)'), (58642, 'https://ror.org/04bbdb654', 'cs', 1, 'https://ror.org/04bbdb654 Gymnázium Žamberk'), (58643, 'https://ror.org/04bbh4w12', 'es', 1, 'https://ror.org/04bbh4w12 Instituto Universitario de Profesiones Gerenciales'), (58644, 'https://ror.org/04beemq12', 'it', 1, 'https://ror.org/04beemq12 Memoriav'), (58645, 'https://ror.org/04bej5z04', 'no_lang_code', 1, 'https://ror.org/04bej5z04 Tovek (Czechia)'), (58646, 'https://ror.org/04bf2vs71', 'no_lang_code', 1, 'https://ror.org/04bf2vs71 Hemp Production (Czechia)'), (58647, 'https://ror.org/04bf54607', 'no_lang_code', 1, 'https://ror.org/04bf54607 Soudronic (Switzerland)'), (58648, 'https://ror.org/04bm96s59', 'no_lang_code', 1, 'https://ror.org/04bm96s59 CZ Bijo (Czechia)'), (58649, 'https://ror.org/04bt71y08', 'en', 1, 'https://ror.org/04bt71y08 Asociace leteckých výrobců Association of the Czech AeroSpace Industry'), (58650, 'https://ror.org/04btwgw22', 'no_lang_code', 1, 'https://ror.org/04btwgw22 Aura (Czechia)'), (58651, 'https://ror.org/04bv5ph58', 'no_lang_code', 1, 'https://ror.org/04bv5ph58 KHSanace (Czechia)'), (58652, 'https://ror.org/04c4mj004', 'en', 1, 'https://ror.org/04c4mj004 Science and Industry Endowment Fund'), (58653, 'https://ror.org/04c4xmn37', 'no_lang_code', 1, 'https://ror.org/04c4xmn37 Fermat (Czechia)'), (58654, 'https://ror.org/04c5v7077', 'no_lang_code', 1, 'https://ror.org/04c5v7077 TTC Marconi (Czechia)'), (58655, 'https://ror.org/04c5xj152', 'en', 1, 'https://ror.org/04c5xj152 Ray Thomas Edwards Foundation'), (58656, 'https://ror.org/04c6pgy84', 'no_lang_code', 1, 'https://ror.org/04c6pgy84 Mercer (Czechia)'), (58657, 'https://ror.org/04c792r17', 'cs', 1, 'https://ror.org/04c792r17 Sdružení obcí Orlicko'), (58658, 'https://ror.org/04c7g1a88', 'de', 1, 'https://ror.org/04c7g1a88 Amt für Städtebau'), (58659, 'https://ror.org/04c7mjp03', 'en', 1, 'https://ror.org/04c7mjp03 Latin American Studies Association'), (58660, 'https://ror.org/04c87mr25', 'de', 1, 'https://ror.org/04c87mr25 Kulturamt Appenzell'), (58661, 'https://ror.org/04c8y8w58', 'en', 1, 'https://ror.org/04c8y8w58 Institute of Archeology Інститут археології НАН України'), (58662, 'https://ror.org/04c9dah88', 'fr', 1, 'https://ror.org/04c9dah88 Conseil Départemental des Vosges'), (58663, 'https://ror.org/04cbqcv03', 'no_lang_code', 1, 'https://ror.org/04cbqcv03 Tpa Čr (Czechia)'), (58664, 'https://ror.org/04cchyf16', 'en', 1, 'https://ror.org/04cchyf16 Anatolia College Κολλέγιο Ανατόλια'), (58665, 'https://ror.org/04cd0p048', 'no_lang_code', 1, 'https://ror.org/04cd0p048 Svoboda (Czechia)'), (58666, 'https://ror.org/04cgmq851', 'en', 1, 'https://ror.org/04cgmq851 Society for Ethnomusicology'), (58667, 'https://ror.org/04chjhs81', 'no_lang_code', 1, 'https://ror.org/04chjhs81 Slévárna a Modelárna Nové Ransko'), (58668, 'https://ror.org/04cmg3c10', 'no_lang_code', 1, 'https://ror.org/04cmg3c10 Foundation of the Baroque Theater in Český Krumlov Nadace barokního divadla zámku Český Krumlov'), (58669, 'https://ror.org/04cn6h279', 'en', 1, 'https://ror.org/04cn6h279 Japan Institute for Advanced Dentistry 公益社団法人日本歯科先端技術研究所'), (58670, 'https://ror.org/04cpbr209', 'en', 1, 'https://ror.org/04cpbr209 Regional Art Gallery Liberec'), (58671, 'https://ror.org/04cs4hx53', 'no_lang_code', 1, 'https://ror.org/04cs4hx53 NTD Group (Czechia)'), (58672, 'https://ror.org/04cvw9c02', 'de', 1, 'https://ror.org/04cvw9c02 Library Am Guisanplatz'), (58673, 'https://ror.org/04d1d9s98', 'en', 1, 'https://ror.org/04d1d9s98 Coopers Animal Health'), (58674, 'https://ror.org/04d1eym69', 'no_lang_code', 1, 'https://ror.org/04d1eym69 Kingspan (Ireland)'), (58675, 'https://ror.org/04d23mg64', 'no_lang_code', 1, 'https://ror.org/04d23mg64 Chirana (Czechia)'), (58676, 'https://ror.org/04d2j3090', 'en', 1, 'https://ror.org/04d2j3090 Ontario Trillium Foundation'), (58677, 'https://ror.org/04d3cgn96', 'no_lang_code', 1, 'https://ror.org/04d3cgn96 Alginit (Czechia)'), (58678, 'https://ror.org/04d51r796', 'no_lang_code', 1, 'https://ror.org/04d51r796 Altron (Czechia)'), (58679, 'https://ror.org/04d730y78', 'cs', 1, 'https://ror.org/04d730y78 Domov Na Jarošce, Příspěvková Organizace'), (58680, 'https://ror.org/04d7xaq68', 'no_lang_code', 1, 'https://ror.org/04d7xaq68 Takt (Czechia)'), (58681, 'https://ror.org/04d828f56', 'en', 1, 'https://ror.org/04d828f56 Sarcoma UK'), (58682, 'https://ror.org/04d8f4804', 'no_lang_code', 1, 'https://ror.org/04d8f4804 HeidelbergCement (United States)'), (58683, 'https://ror.org/04d9jqv19', 'no_lang_code', 1, 'https://ror.org/04d9jqv19 Minova Bohemia (Czechia)'), (58684, 'https://ror.org/04dacya36', 'en', 1, 'https://ror.org/04dacya36 Renewable Energy and Energy Efficiency Organization به تارنمای سازمان انرژی های تجدیدپذیر و بهره وری انرژی برق خوش آمدید.'), (58685, 'https://ror.org/04dbch786', 'no_lang_code', 1, 'https://ror.org/04dbch786 Yandex (Russia) Яндекс'), (58686, 'https://ror.org/04dc5j714', 'no_lang_code', 1, 'https://ror.org/04dc5j714 Antimicrobial Materials (United States)'), (58687, 'https://ror.org/04dc7cj39', 'no_lang_code', 1, 'https://ror.org/04dc7cj39 SEKO Brno (Czechia)'), (58688, 'https://ror.org/04de0c074', 'en', 1, 'https://ror.org/04de0c074 Melbourn Science Park'), (58689, 'https://ror.org/04dedrk57', 'en', 1, 'https://ror.org/04dedrk57 Association of Foundries'), (58690, 'https://ror.org/04dg1g218', 'no_lang_code', 1, 'https://ror.org/04dg1g218 Cisco Systems (Czechia)'), (58691, 'https://ror.org/04dg8np90', 'en', 1, 'https://ror.org/04dg8np90 Food Basket (United States)'), (58692, 'https://ror.org/04dkxv608', 'no_lang_code', 1, 'https://ror.org/04dkxv608 Českomoravský Cement (Czechia)'), (58693, 'https://ror.org/04dkz7q98', 'no_lang_code', 1, 'https://ror.org/04dkz7q98 eHealth Consulting (United States)'), (58694, 'https://ror.org/04dr38k67', 'no_lang_code', 1, 'https://ror.org/04dr38k67 Alpha Space Test and Research Alliance (United States)'), (58695, 'https://ror.org/04dscat02', 'en', 1, 'https://ror.org/04dscat02 Israel National Nanotechnology Initiative'), (58696, 'https://ror.org/04dvapm76', 'no_lang_code', 1, 'https://ror.org/04dvapm76 Canfield Scientific (United States)'), (58697, 'https://ror.org/04dzj3g56', 'en', 1, 'https://ror.org/04dzj3g56 Jiangsu Key Laboratory of 3D Printing Equipment and Manufacturing 江苏省三维打印装备与制造重点实验室'), (58698, 'https://ror.org/04dzqh472', 'no_lang_code', 1, 'https://ror.org/04dzqh472 IBM (Czechia)'), (58699, 'https://ror.org/04e14gy75', 'no_lang_code', 1, 'https://ror.org/04e14gy75 Styl Plzeň (Czechia)'), (58700, 'https://ror.org/04e25nh11', 'no_lang_code', 1, 'https://ror.org/04e25nh11 Agro Chomutice (Czechia)'), (58701, 'https://ror.org/04e2w0r26', 'no_lang_code', 1, 'https://ror.org/04e2w0r26 Excon (Czechia)'); INSERT INTO `rors` VALUES (58702, 'https://ror.org/04e3g2b28', 'no_lang_code', 1, 'https://ror.org/04e3g2b28 Biopol Paints (Czechia)'), (58703, 'https://ror.org/04e3kdv87', 'no_lang_code', 1, 'https://ror.org/04e3kdv87 Essa (Czechia)'), (58704, 'https://ror.org/04e3nxf09', 'no_lang_code', 1, 'https://ror.org/04e3nxf09 Triga (Czechia)'), (58705, 'https://ror.org/04e55pr56', 'no_lang_code', 1, 'https://ror.org/04e55pr56 GEA Group (Denmark)'), (58706, 'https://ror.org/04e94n214', 'en', 1, 'https://ror.org/04e94n214 3R Research Foundation Stiftung Forschung 3R'), (58707, 'https://ror.org/04e9mhs65', 'no_lang_code', 1, 'https://ror.org/04e9mhs65 SolarEnvi (Czechia)'), (58708, 'https://ror.org/04e9p5d56', 'no_lang_code', 1, 'https://ror.org/04e9p5d56 MOR Informatik (Switzerland)'), (58709, 'https://ror.org/04ec59978', 'en', 1, 'https://ror.org/04ec59978 Ocular Research Symposia Foundation'), (58710, 'https://ror.org/04eet1p35', 'no_lang_code', 1, 'https://ror.org/04eet1p35 Rajmont (Czechia)'), (58711, 'https://ror.org/04ef3fk55', 'en', 1, 'https://ror.org/04ef3fk55 Institute for the Study of Totalitarian Regimes Ústav pro Studium Totalitních Režimů'), (58712, 'https://ror.org/04ekm7c52', 'no_lang_code', 1, 'https://ror.org/04ekm7c52 C Modul (Czechia)'), (58713, 'https://ror.org/04em0at09', 'en', 1, 'https://ror.org/04em0at09 Robert W. Woodruff Foundation'), (58714, 'https://ror.org/04enpqf37', 'en', 1, 'https://ror.org/04enpqf37 Ambassade de Suisse aux Etats-Unis d’Amérique Embassy of Switzerland in Washington'), (58715, 'https://ror.org/04eq4yv25', 'fr', 1, 'https://ror.org/04eq4yv25 Institut Regional Des Materiaux Avance'), (58716, 'https://ror.org/04eq5c702', 'en', 1, 'https://ror.org/04eq5c702 Tea Research Association'), (58717, 'https://ror.org/04eqn7j88', 'en', 1, 'https://ror.org/04eqn7j88 Swartz Foundation'), (58718, 'https://ror.org/04etxq867', 'cs', 1, 'https://ror.org/04etxq867 Domov pro Seniory Ďáblice'), (58719, 'https://ror.org/04evfhz83', 'en', 1, 'https://ror.org/04evfhz83 Resources Legacy Fund'), (58720, 'https://ror.org/04evkr214', 'no_lang_code', 1, 'https://ror.org/04evkr214 Advacam (Czechia)'), (58721, 'https://ror.org/04ezttg26', 'no_lang_code', 1, 'https://ror.org/04ezttg26 Radom (Czechia)'), (58722, 'https://ror.org/04f0ydx59', 'en', 1, 'https://ror.org/04f0ydx59 Bioengineering Center Биоинженерия'), (58723, 'https://ror.org/04f1k6x45', 'no_lang_code', 1, 'https://ror.org/04f1k6x45 Marshal Logistic (Czechia)'), (58724, 'https://ror.org/04f1wge97', 'no_lang_code', 1, 'https://ror.org/04f1wge97 Houfek (Czechia)'), (58725, 'https://ror.org/04f2mnw52', 'no_lang_code', 1, 'https://ror.org/04f2mnw52 Moravia Cans (Czechia)'), (58726, 'https://ror.org/04f31ek03', 'en', 1, 'https://ror.org/04f31ek03 National Taiwan Craft Research and Development Institute 国立台湾工艺研究发展研究所'), (58727, 'https://ror.org/04f350r05', 'fr', 1, 'https://ror.org/04f350r05 Phagogène'), (58728, 'https://ror.org/04f3f9v34', 'no_lang_code', 1, 'https://ror.org/04f3f9v34 Tradiphar (France)'), (58729, 'https://ror.org/04f5ks076', 'no_lang_code', 1, 'https://ror.org/04f5ks076 Japan Tobacco (Switzerland)'), (58730, 'https://ror.org/04f5yeh75', 'no_lang_code', 1, 'https://ror.org/04f5yeh75 Rheinmetall (Czechia)'), (58731, 'https://ror.org/04f6f3e35', 'en', 1, 'https://ror.org/04f6f3e35 Archeologia Svizzera Archäologie Schweiz Archéologie Suisse Swiss Archaeology'), (58732, 'https://ror.org/04f776z76', 'no_lang_code', 1, 'https://ror.org/04f776z76 Ircon (Czechia)'), (58733, 'https://ror.org/04f7gm277', 'no_lang_code', 1, 'https://ror.org/04f7gm277 Junker (Czechia)'), (58734, 'https://ror.org/04f84b035', 'de', 1, 'https://ror.org/04f84b035 Gesundheitsdepartement des Kantons Basel-Stadt'), (58735, 'https://ror.org/04fb46f50', 'no_lang_code', 1, 'https://ror.org/04fb46f50 VisuGen Global (United States)'), (58736, 'https://ror.org/04fczh442', 'no_lang_code', 1, 'https://ror.org/04fczh442 Holiste (France)'), (58737, 'https://ror.org/04fdch955', 'no_lang_code', 1, 'https://ror.org/04fdch955 Clean Energy (United States)'), (58738, 'https://ror.org/04fe4pq10', 'no_lang_code', 1, 'https://ror.org/04fe4pq10 Cemex (Czechia)'), (58739, 'https://ror.org/04ffchc57', 'no_lang_code', 1, 'https://ror.org/04ffchc57 Top Alulit (Czechia)'), (58740, 'https://ror.org/04fg2k993', 'no_lang_code', 1, 'https://ror.org/04fg2k993 Biogen (Switzerland)'), (58741, 'https://ror.org/04fhhgs91', 'en', 1, 'https://ror.org/04fhhgs91 ALERTAsia Foundation'), (58742, 'https://ror.org/04fhmmg24', 'no_lang_code', 1, 'https://ror.org/04fhmmg24 Medtronic (Luxembourg)'), (58743, 'https://ror.org/04fj80m50', 'de', 1, 'https://ror.org/04fj80m50 Institut für Wirtschaftsstudien Basel'), (58744, 'https://ror.org/04fjy3t60', 'no_lang_code', 1, 'https://ror.org/04fjy3t60 Digitech Services (New Zealand)'), (58745, 'https://ror.org/04fkj8104', 'no_lang_code', 1, 'https://ror.org/04fkj8104 Fabconworks (Czechia)'), (58746, 'https://ror.org/04fpmef97', 'no_lang_code', 1, 'https://ror.org/04fpmef97 Kontron (Czechia)'), (58747, 'https://ror.org/04fr05v05', 'en', 1, 'https://ror.org/04fr05v05 Carolina Farm Stewardship Association'), (58748, 'https://ror.org/04fv3z273', 'en', 1, 'https://ror.org/04fv3z273 Research Institute of Natural and Synthetic Diamonds'), (58749, 'https://ror.org/04fv8gj73', 'no_lang_code', 1, 'https://ror.org/04fv8gj73 European Business Enterprise (Czechia)'), (58750, 'https://ror.org/04fw2pd53', 'en', 1, 'https://ror.org/04fw2pd53 RSF Social Finance'), (58751, 'https://ror.org/04fwb5b39', 'no_lang_code', 1, 'https://ror.org/04fwb5b39 Net4gas (Czechia)'), (58752, 'https://ror.org/04fwbdj26', 'cs', 1, 'https://ror.org/04fwbdj26 Městská Nemocnice Čáslav'), (58753, 'https://ror.org/04fxgys42', 'no_lang_code', 1, 'https://ror.org/04fxgys42 Espiner Medical (United Kingdom)'), (58754, 'https://ror.org/04fyf9d79', 'fr', 1, 'https://ror.org/04fyf9d79 Laboratoire Saint Martin'), (58755, 'https://ror.org/04fyz3a12', 'de', 1, 'https://ror.org/04fyz3a12 Institut für Produktqualität'), (58756, 'https://ror.org/04fz10a73', 'no_lang_code', 1, 'https://ror.org/04fz10a73 Medical Production (France)'), (58757, 'https://ror.org/04g047260', 'no_lang_code', 1, 'https://ror.org/04g047260 Telstra (Australia)'), (58758, 'https://ror.org/04g14s332', 'no_lang_code', 1, 'https://ror.org/04g14s332 Buchhofer (Switzerland)'), (58759, 'https://ror.org/04g2fg147', 'en', 1, 'https://ror.org/04g2fg147 Ohio Water Development Authority'), (58760, 'https://ror.org/04g335g49', 'no_lang_code', 1, 'https://ror.org/04g335g49 IRDAM (Switzerland)'), (58761, 'https://ror.org/04g34ca09', 'no_lang_code', 1, 'https://ror.org/04g34ca09 Quinta Analytica (Czechia)'), (58762, 'https://ror.org/04g481a83', 'no_lang_code', 1, 'https://ror.org/04g481a83 Lift Servis (Czechia)'), (58763, 'https://ror.org/04g4ezh90', 'en', 1, 'https://ror.org/04g4ezh90 IMDEA Food Instituto IMDEA Alimentación'), (58764, 'https://ror.org/04g5kd725', 'no_lang_code', 1, 'https://ror.org/04g5kd725 IST Medical (France)'), (58765, 'https://ror.org/04g5kkh98', 'no_lang_code', 1, 'https://ror.org/04g5kkh98 Stelic Institute (Japan)'), (58766, 'https://ror.org/04g6hvq78', 'no_lang_code', 1, 'https://ror.org/04g6hvq78 Agentura Pro Regionální Rozvoj (Czechia)'), (58767, 'https://ror.org/04g9my117', 'en', 1, 'https://ror.org/04g9my117 Society for Analytical Chemists of Pittsburgh'), (58768, 'https://ror.org/04g9rr142', 'en', 1, 'https://ror.org/04g9rr142 Viet Nam Government'), (58769, 'https://ror.org/04g9yb321', 'no_lang_code', 1, 'https://ror.org/04g9yb321 West Pharmaceutical Services (United Kingdom)'), (58770, 'https://ror.org/04gam2n80', 'en', 1, 'https://ror.org/04gam2n80 Gravure Association of the Americas'), (58771, 'https://ror.org/04gbm5d64', 'en', 1, 'https://ror.org/04gbm5d64 Van Vliet Medical Supply'), (58772, 'https://ror.org/04gc4rt71', 'cs', 1, 'https://ror.org/04gc4rt71 Nemocnice Prachatice'), (58773, 'https://ror.org/04gcpmc06', 'no_lang_code', 1, 'https://ror.org/04gcpmc06 Enter (Switzerland)'), (58774, 'https://ror.org/04gf6tr14', 'no_lang_code', 1, 'https://ror.org/04gf6tr14 Fraus Publishing (Czechia) Nakladatelství Fraus'), (58775, 'https://ror.org/04gffqv96', 'no_lang_code', 1, 'https://ror.org/04gffqv96 ZF Engineering (Czechia)'), (58776, 'https://ror.org/04gk7sd03', 'no_lang_code', 1, 'https://ror.org/04gk7sd03 Benes A Lat (Czechia)'), (58777, 'https://ror.org/04gm8yz40', 'no_lang_code', 1, 'https://ror.org/04gm8yz40 MeDiLa'), (58778, 'https://ror.org/04gmfhf08', 'en', 1, 'https://ror.org/04gmfhf08 Applied Research Associates'), (58779, 'https://ror.org/04gnv7g45', 'no_lang_code', 1, 'https://ror.org/04gnv7g45 VAF Instruments (Netherlands)'), (58780, 'https://ror.org/04grwn689', 'en', 1, 'https://ror.org/04grwn689 Ufa Eye Research Institute'), (58781, 'https://ror.org/04gzpwh55', 'no_lang_code', 1, 'https://ror.org/04gzpwh55 GGC Energy (Czechia)'), (58782, 'https://ror.org/04h006113', 'pt', 1, 'https://ror.org/04h006113 Instituto Sapientia'), (58783, 'https://ror.org/04h0yyj73', 'cs', 1, 'https://ror.org/04h0yyj73 Vzdělávací centrum pro veřejnou Správu'), (58784, 'https://ror.org/04h11pr46', 'en', 1, 'https://ror.org/04h11pr46 Belgrade Centre for Security Policy'), (58785, 'https://ror.org/04h1j5a33', 'no_lang_code', 1, 'https://ror.org/04h1j5a33 K Profi (Czechia)'), (58786, 'https://ror.org/04h1r6547', 'es', 1, 'https://ror.org/04h1r6547 Academia Nacional de Ciencia y Tecnología'), (58787, 'https://ror.org/04h32es78', 'no_lang_code', 1, 'https://ror.org/04h32es78 Sinpol (Czechia)'), (58788, 'https://ror.org/04h3a1y15', 'en', 1, 'https://ror.org/04h3a1y15 Mountain Comprehensive Health'), (58789, 'https://ror.org/04h4t0r16', 'en', 1, 'https://ror.org/04h4t0r16 International Committee of the Red Cross'), (58790, 'https://ror.org/04h5sdx36', 'en', 1, 'https://ror.org/04h5sdx36 International Union of Biological Sciences'), (58791, 'https://ror.org/04h7caf58', 'it', 1, 'https://ror.org/04h7caf58 UBI Banca'), (58792, 'https://ror.org/04h84s498', 'no_lang_code', 1, 'https://ror.org/04h84s498 Pilana (Czechia)'), (58793, 'https://ror.org/04hb33h70', 'de', 1, 'https://ror.org/04hb33h70 Nationalstiftung für Forschung Technologie und Entwicklung'), (58794, 'https://ror.org/04hcjez88', 'no_lang_code', 1, 'https://ror.org/04hcjez88 Novel Health Strategies (United States)'), (58795, 'https://ror.org/04hd32h80', 'en', 1, 'https://ror.org/04hd32h80 Illinois Back Institute'), (58796, 'https://ror.org/04hd4af29', 'no_lang_code', 1, 'https://ror.org/04hd4af29 Alcoma (Czechia)'), (58797, 'https://ror.org/04hexsd31', 'en', 1, 'https://ror.org/04hexsd31 Geneva Finance Research Institute'), (58798, 'https://ror.org/04hkh7617', 'no_lang_code', 1, 'https://ror.org/04hkh7617 Cyclopharma (France)'), (58799, 'https://ror.org/04hp0zc29', 'en', 1, 'https://ror.org/04hp0zc29 Institut für Telematik Institute for Telematics'), (58800, 'https://ror.org/04hqnrz12', 'no_lang_code', 1, 'https://ror.org/04hqnrz12 Bruker (Switzerland)'), (58801, 'https://ror.org/04hrt9p44', 'no_lang_code', 1, 'https://ror.org/04hrt9p44 Clariant (United States)'), (58802, 'https://ror.org/04hv8pj43', 'no_lang_code', 1, 'https://ror.org/04hv8pj43 NBD Nanotechnologies (United States)'), (58803, 'https://ror.org/04hv9tr61', 'no_lang_code', 1, 'https://ror.org/04hv9tr61 Laboratoires Phodé (France)'), (58804, 'https://ror.org/04hwhvs78', 'no_lang_code', 1, 'https://ror.org/04hwhvs78 Model Software (United States)'), (58805, 'https://ror.org/04hww2965', 'no_lang_code', 1, 'https://ror.org/04hww2965 Atlas Copco (Belgium)'), (58806, 'https://ror.org/04hydf024', 'no_lang_code', 1, 'https://ror.org/04hydf024 Oceaneering International (United States)'), (58807, 'https://ror.org/04hzhm502', 'no_lang_code', 1, 'https://ror.org/04hzhm502 SyncThink (United States)'), (58808, 'https://ror.org/04j1khh38', 'no_lang_code', 1, 'https://ror.org/04j1khh38 Ekomont Litoměřice (Czechia)'), (58809, 'https://ror.org/04j36ys10', 'en', 1, 'https://ror.org/04j36ys10 Save the Redwoods League'), (58810, 'https://ror.org/04j39xp17', 'en', 1, 'https://ror.org/04j39xp17 Agency for Persons with Disabilities'), (58811, 'https://ror.org/04j3c4348', 'de', 1, 'https://ror.org/04j3c4348 Debrunner Sozialforschung und Projekte'), (58812, 'https://ror.org/04j3tfg80', 'no_lang_code', 1, 'https://ror.org/04j3tfg80 Medicton (Czechia)'), (58813, 'https://ror.org/04j4z1522', 'en', 1, 'https://ror.org/04j4z1522 Synthetic Rubber Research Institute named after S. V. Lebedeva НИИ синтетического каучука имени С. В. Лебедева'), (58814, 'https://ror.org/04j5qh045', 'de', 1, 'https://ror.org/04j5qh045 Hospiz im Park'), (58815, 'https://ror.org/04j690992', 'en', 1, 'https://ror.org/04j690992 Egypt Nanotechnology Center مركز مصر للنانو تكنولوجي'), (58816, 'https://ror.org/04j971w37', 'no_lang_code', 1, 'https://ror.org/04j971w37 Cyclacel Pharmaceuticals (United Kingdom)'), (58817, 'https://ror.org/04j9bkg25', 'fr', 1, 'https://ror.org/04j9bkg25 Fondation Sécurité Routière'), (58818, 'https://ror.org/04j9fty21', 'no_lang_code', 1, 'https://ror.org/04j9fty21 Elektrometall (Czechia)'), (58819, 'https://ror.org/04jan1235', 'no_lang_code', 1, 'https://ror.org/04jan1235 Dálniční Stavby Praha (Czechia)'), (58820, 'https://ror.org/04jc7qd72', 'en', 1, 'https://ror.org/04jc7qd72 Serum IVF'), (58821, 'https://ror.org/04jcq5y30', 'no_lang_code', 1, 'https://ror.org/04jcq5y30 Denas Color (Czechia)'), (58822, 'https://ror.org/04jd3jd90', 'no_lang_code', 1, 'https://ror.org/04jd3jd90 Procter & Gamble - Rakona (Czechia)'), (58823, 'https://ror.org/04jebr251', 'en', 1, 'https://ror.org/04jebr251 International Civil Aviation Organization'), (58824, 'https://ror.org/04jen3t84', 'no_lang_code', 1, 'https://ror.org/04jen3t84 Dasfos (Czechia)'), (58825, 'https://ror.org/04jfcr240', 'no_lang_code', 1, 'https://ror.org/04jfcr240 Schwery Consulting (Switzerland)'), (58826, 'https://ror.org/04jfdra48', 'cs', 1, 'https://ror.org/04jfdra48 Klášter Chotěšov'), (58827, 'https://ror.org/04jgqt260', 'en', 1, 'https://ror.org/04jgqt260 PSC Partners Seeking a Cure'), (58828, 'https://ror.org/04jjxvn13', 'no_lang_code', 1, 'https://ror.org/04jjxvn13 Unmanned Experts (United States)'), (58829, 'https://ror.org/04jkk5b46', 'no_lang_code', 1, 'https://ror.org/04jkk5b46 Tech Aid Czech Branch (Czechia)'), (58830, 'https://ror.org/04jmfdf65', 'no_lang_code', 1, 'https://ror.org/04jmfdf65 BFP Lesy a statky Tomáše Bati'), (58831, 'https://ror.org/04jmtbm12', 'en', 1, 'https://ror.org/04jmtbm12 Western Surgical Association'), (58832, 'https://ror.org/04jmzkq74', 'en', 1, 'https://ror.org/04jmzkq74 Alzheimer Disease International'), (58833, 'https://ror.org/04jppe152', 'no_lang_code', 1, 'https://ror.org/04jppe152 ExxonMobil (France)'), (58834, 'https://ror.org/04jq2dg02', 'cs', 1, 'https://ror.org/04jq2dg02 Česká Asociace Steeplachase'), (58835, 'https://ror.org/04jtx4r25', 'no_lang_code', 1, 'https://ror.org/04jtx4r25 Bogges (Czechia)'), (58836, 'https://ror.org/04jwy1234', 'no_lang_code', 1, 'https://ror.org/04jwy1234 Shell (Japan)'), (58837, 'https://ror.org/04k1dvq14', 'no_lang_code', 1, 'https://ror.org/04k1dvq14 INFICON (Switzerland)'), (58838, 'https://ror.org/04k2s8g66', 'cs', 1, 'https://ror.org/04k2s8g66 Vítkovická Nemocnice'), (58839, 'https://ror.org/04k3nyd23', 'no_lang_code', 1, 'https://ror.org/04k3nyd23 InGen (France)'), (58840, 'https://ror.org/04k417520', 'no_lang_code', 1, 'https://ror.org/04k417520 GoodMills Česko'), (58841, 'https://ror.org/04k4tkg23', 'no_lang_code', 1, 'https://ror.org/04k4tkg23 DSK (Czechia)'), (58842, 'https://ror.org/04k588f75', 'no_lang_code', 1, 'https://ror.org/04k588f75 Sev Litovel (Czechia)'), (58843, 'https://ror.org/04k5pc475', 'en', 1, 'https://ror.org/04k5pc475 Schweizerische Stiftung für Edelstein-Forschung Swiss Foundation for the Research of Gemstones'), (58844, 'https://ror.org/04k71ka82', 'no_lang_code', 1, 'https://ror.org/04k71ka82 EkoBio (Czechia)'), (58845, 'https://ror.org/04k88ar18', 'en', 1, 'https://ror.org/04k88ar18 Taylor’s Tale'), (58846, 'https://ror.org/04kbbt849', 'en', 1, 'https://ror.org/04kbbt849 Chemical Synthesis Lab'), (58847, 'https://ror.org/04kdaf332', 'en', 1, 'https://ror.org/04kdaf332 Kauffman Physical Therapy'), (58848, 'https://ror.org/04kdcbs26', 'en', 1, 'https://ror.org/04kdcbs26 Foundation for the Promotion of Applied Scientific Research and Technology in Asturias Fundación para el Fomento en Asturias de la Investigación Científica Aplicada y la Tecnología'), (58849, 'https://ror.org/04kdvs983', 'en', 1, 'https://ror.org/04kdvs983 Archivio Segreto Vaticano Archivum Secretum Apostolicum Vaticanum Vatican Secret Archives'), (58850, 'https://ror.org/04kdzp623', 'no_lang_code', 1, 'https://ror.org/04kdzp623 Buhmwoo Institute of Technology Research (South Korea)'), (58851, 'https://ror.org/04ke7v690', 'no_lang_code', 1, 'https://ror.org/04ke7v690 C and D (Czechia)'), (58852, 'https://ror.org/04khzvv84', 'en', 1, 'https://ror.org/04khzvv84 Department of Medical Assistance Services'), (58853, 'https://ror.org/04kkpea39', 'no_lang_code', 1, 'https://ror.org/04kkpea39 ITA (Czechia)'), (58854, 'https://ror.org/04kkref88', 'en', 1, 'https://ror.org/04kkref88 Czech ICT Alliance Česká asociace pro IT služby'), (58855, 'https://ror.org/04kt35s46', 'en', 1, 'https://ror.org/04kt35s46 Zabaikalsky State Humanitarian and Pedagogical University Забайкальский государственный гуманитарно-педагогический университет имени Н. Г. Чернышевского'), (58856, 'https://ror.org/04kt6g810', 'no_lang_code', 1, 'https://ror.org/04kt6g810 Shell (France)'), (58857, 'https://ror.org/04kthcs16', 'de', 1, 'https://ror.org/04kthcs16 IFF Weimar, Institut für Fertigteiltechnik und Fertigbau Weimar'), (58858, 'https://ror.org/04kwb2d55', 'en', 1, 'https://ror.org/04kwb2d55 Czech Proof House for Arms and Ammunition Český úřad pro zkoušení zbraní a střeliva'), (58859, 'https://ror.org/04kwhpd73', 'no_lang_code', 1, 'https://ror.org/04kwhpd73 Fish Farm Bohemia (Czechia)'), (58860, 'https://ror.org/04kzfca73', 'en', 1, 'https://ror.org/04kzfca73 Severns Family Foundation'), (58861, 'https://ror.org/04m08s625', 'no_lang_code', 1, 'https://ror.org/04m08s625 Vaklima (Czechia)'), (58862, 'https://ror.org/04m1bn868', 'en', 1, 'https://ror.org/04m1bn868 Conseil suisse de la science et de l''innovation Consiglio svizzero della scienza e dell''innovazione Schweizerischer Wissenschafts- und Innovationsrat Swiss Science and Innovation Council'), (58863, 'https://ror.org/04m1eta66', 'en', 1, 'https://ror.org/04m1eta66 Aigine Cultural Research Center'), (58864, 'https://ror.org/04m281x40', 'no_lang_code', 1, 'https://ror.org/04m281x40 Clairvoyant Technology (United States)'), (58865, 'https://ror.org/04m37yt03', 'en', 1, 'https://ror.org/04m37yt03 New Mexico Farmers’ Marketing Association'), (58866, 'https://ror.org/04m3vtn72', 'no_lang_code', 1, 'https://ror.org/04m3vtn72 Dopravní podnik města Ústí nad Labem (Czechia)'), (58867, 'https://ror.org/04m453044', 'en', 1, 'https://ror.org/04m453044 VA Northwest Network'), (58868, 'https://ror.org/04m55z708', 'no_lang_code', 1, 'https://ror.org/04m55z708 Zemos (Czechia)'), (58869, 'https://ror.org/04m589p37', 'no_lang_code', 1, 'https://ror.org/04m589p37 Irish Life (Ireland)'), (58870, 'https://ror.org/04m6d2w32', 'en', 1, 'https://ror.org/04m6d2w32 San Angelo Health Foundation'), (58871, 'https://ror.org/04m7h9q42', 'no_lang_code', 1, 'https://ror.org/04m7h9q42 Limagrain (Czechia)'), (58872, 'https://ror.org/04m7pe955', 'en', 1, 'https://ror.org/04m7pe955 Carter BloodCare'), (58873, 'https://ror.org/04m8am631', 'no_lang_code', 1, 'https://ror.org/04m8am631 eWind Solutions (United States)'), (58874, 'https://ror.org/04m8jz025', 'en', 1, 'https://ror.org/04m8jz025 South African Sugar Association'), (58875, 'https://ror.org/04m9c9932', 'en', 1, 'https://ror.org/04m9c9932 Indiana Office of the Governor'), (58876, 'https://ror.org/04maqxw13', 'no_lang_code', 1, 'https://ror.org/04maqxw13 Tratec (Czechia)'), (58877, 'https://ror.org/04mba0b61', 'no_lang_code', 1, 'https://ror.org/04mba0b61 Structural Science Composites (United Kingdom)'), (58878, 'https://ror.org/04mbctq18', 'de', 1, 'https://ror.org/04mbctq18 Gebert Rüf Stiftung'), (58879, 'https://ror.org/04mc4tx89', 'no_lang_code', 1, 'https://ror.org/04mc4tx89 Saurer (Czechia)'), (58880, 'https://ror.org/04mcr1694', 'no_lang_code', 1, 'https://ror.org/04mcr1694 Walmark (Czechia)'), (58881, 'https://ror.org/04mdfaw94', 'no_lang_code', 1, 'https://ror.org/04mdfaw94 US Biologic (United States)'), (58882, 'https://ror.org/04mhdyd20', 'no_lang_code', 1, 'https://ror.org/04mhdyd20 Dopravní podnik Karlovy Vary (Czechia)'), (58883, 'https://ror.org/04mhfc493', 'no_lang_code', 1, 'https://ror.org/04mhfc493 Agroholding (Czechia)'), (58884, 'https://ror.org/04mm9fg30', 'en', 1, 'https://ror.org/04mm9fg30 IMDEA Networks Instituto IMDEA Networks'), (58885, 'https://ror.org/04mmbzv77', 'no_lang_code', 1, 'https://ror.org/04mmbzv77 Infineum (United States)'), (58886, 'https://ror.org/04mmccm14', 'no_lang_code', 1, 'https://ror.org/04mmccm14 Elfe (Czechia)'), (58887, 'https://ror.org/04mn22671', 'no_lang_code', 1, 'https://ror.org/04mn22671 HF-Czechforge (Czechia)'), (58888, 'https://ror.org/04mphxe26', 'no_lang_code', 1, 'https://ror.org/04mphxe26 Emmi (Switzerland)'), (58889, 'https://ror.org/04mspgk29', 'no_lang_code', 1, 'https://ror.org/04mspgk29 Free Energy (Slovakia)'), (58890, 'https://ror.org/04mt41a04', 'no_lang_code', 1, 'https://ror.org/04mt41a04 TechTest (Czechia)'), (58891, 'https://ror.org/04mtx5741', 'no_lang_code', 1, 'https://ror.org/04mtx5741 Pars Nova (Czechia)'), (58892, 'https://ror.org/04mwbja62', 'en', 1, 'https://ror.org/04mwbja62 Guangzhou Special Pressure Equipment Testing and Research Institute 广州特种承压设备检测研究院'), (58893, 'https://ror.org/04n2a2465', 'no_lang_code', 1, 'https://ror.org/04n2a2465 Medihope (Czechia)'), (58894, 'https://ror.org/04n2d2p10', 'no_lang_code', 1, 'https://ror.org/04n2d2p10 Amer Sports (Finland)'), (58895, 'https://ror.org/04n3be660', 'no_lang_code', 1, 'https://ror.org/04n3be660 GEO Partner (Switzerland)'), (58896, 'https://ror.org/04n3fbh55', 'no_lang_code', 1, 'https://ror.org/04n3fbh55 JTEKT (France)'), (58897, 'https://ror.org/04n5x9175', 'en', 1, 'https://ror.org/04n5x9175 Virginia Hodgkins Somers Foundation'), (58898, 'https://ror.org/04n96xc27', 'en', 1, 'https://ror.org/04n96xc27 Rural Women New Zealand'), (58899, 'https://ror.org/04na7ry54', 'no_lang_code', 1, 'https://ror.org/04na7ry54 Michell Instruments (United Kingdom)'), (58900, 'https://ror.org/04nd4kk51', 'en', 1, 'https://ror.org/04nd4kk51 Ceramic Synthesis and Functionalization Laboratory Laboratoire de Synthèse et Fonctionnalisation des Céramiques'), (58901, 'https://ror.org/04ndcjq03', 'en', 1, 'https://ror.org/04ndcjq03 Shanghai Nanotechnology Promotion Center 上海市纳米科技与产业发展促进中心'), (58902, 'https://ror.org/04ne34794', 'en', 1, 'https://ror.org/04ne34794 Ministry of Health Υπουργείο Υγείας'), (58903, 'https://ror.org/04nefpm69', 'no_lang_code', 1, 'https://ror.org/04nefpm69 Esto Cheb (Czechia)'), (58904, 'https://ror.org/04nfvby78', 'en', 1, 'https://ror.org/04nfvby78 World Health Organization Regional Office for the Western Pacific'), (58905, 'https://ror.org/04ngy9w38', 'no_lang_code', 1, 'https://ror.org/04ngy9w38 Estcom (Czechia)'), (58906, 'https://ror.org/04nh5he21', 'no_lang_code', 1, 'https://ror.org/04nh5he21 MaDeX (Czechia)'), (58907, 'https://ror.org/04nht1525', 'no_lang_code', 1, 'https://ror.org/04nht1525 Sampark'), (58908, 'https://ror.org/04nknev17', 'no_lang_code', 1, 'https://ror.org/04nknev17 Semix Pluso (Czechia)'), (58909, 'https://ror.org/04nq9y819', 'en', 1, 'https://ror.org/04nq9y819 Comic Relief'), (58910, 'https://ror.org/04nqfdt43', 'sv', 1, 'https://ror.org/04nqfdt43 Stiftelsen Sunnerdahls Handikappfond'), (58911, 'https://ror.org/04nr3tm35', 'no_lang_code', 1, 'https://ror.org/04nr3tm35 Provisco CS (Czechia)'), (58912, 'https://ror.org/04ntbmy72', 'no_lang_code', 1, 'https://ror.org/04ntbmy72 ANC Components (Czechia)'), (58913, 'https://ror.org/04nthjy68', 'no_lang_code', 1, 'https://ror.org/04nthjy68 Jimi (Czechia)'), (58914, 'https://ror.org/04nwny503', 'no_lang_code', 1, 'https://ror.org/04nwny503 Explat (Czechia)'), (58915, 'https://ror.org/04nxqr324', 'no_lang_code', 1, 'https://ror.org/04nxqr324 Gilson (France)'), (58916, 'https://ror.org/04p055k28', 'no_lang_code', 1, 'https://ror.org/04p055k28 První Signální (Czechia)'), (58917, 'https://ror.org/04p4avd56', 'fr', 1, 'https://ror.org/04p4avd56 Société Académique de Genève'), (58918, 'https://ror.org/04p4qmn53', 'no_lang_code', 1, 'https://ror.org/04p4qmn53 Suiselectra Consulting Engineers (Switzerland) Suiselectra Ingenieurunternehmung AG'), (58919, 'https://ror.org/04p76s709', 'no_lang_code', 1, 'https://ror.org/04p76s709 RPG Life Sciences (India)'), (58920, 'https://ror.org/04p78q286', 'no_lang_code', 1, 'https://ror.org/04p78q286 Colsys (Czechia)'), (58921, 'https://ror.org/04p972q78', 'no_lang_code', 1, 'https://ror.org/04p972q78 Procter & Gamble (France)'), (58922, 'https://ror.org/04pcraj31', 'en', 1, 'https://ror.org/04pcraj31 Museum of the Bohemian Paradise in Turnov Muzeum Českého ráje v Turnově'), (58923, 'https://ror.org/04pdw9n09', 'en', 1, 'https://ror.org/04pdw9n09 Medipolis Medical Research Institute'), (58924, 'https://ror.org/04pg34p42', 'no_lang_code', 1, 'https://ror.org/04pg34p42 IMS-Drašnar (Czechia)'), (58925, 'https://ror.org/04pgeyv17', 'en', 1, 'https://ror.org/04pgeyv17 Weeden Foundation'), (58926, 'https://ror.org/04pgpfa18', 'no_lang_code', 1, 'https://ror.org/04pgpfa18 Mediware (Czechia)'), (58927, 'https://ror.org/04ph02j10', 'en', 1, 'https://ror.org/04ph02j10 Asai Germanium Research Institute 株式会社浅井ゲルマニウム研究所'), (58928, 'https://ror.org/04pjk3w61', 'no_lang_code', 1, 'https://ror.org/04pjk3w61 Can Superconductors (Czechia)'), (58929, 'https://ror.org/04pkthn83', 'no_lang_code', 1, 'https://ror.org/04pkthn83 Bech Akku Power Batteries (Czechia)'), (58930, 'https://ror.org/04pm9rq79', 'no_lang_code', 1, 'https://ror.org/04pm9rq79 Ceres Imaging (United States)'), (58931, 'https://ror.org/04pn65m27', 'no_lang_code', 1, 'https://ror.org/04pn65m27 Eltopia Communications (United States)'), (58932, 'https://ror.org/04pnnsh51', 'no_lang_code', 1, 'https://ror.org/04pnnsh51 Advanced Mask Technology Center (Germany)'), (58933, 'https://ror.org/04pq1cd03', 'en', 1, 'https://ror.org/04pq1cd03 Central Region Agricultural Research Center'), (58934, 'https://ror.org/04prad579', 'no_lang_code', 1, 'https://ror.org/04prad579 Karel Řehák (Czechia)'), (58935, 'https://ror.org/04prq1595', 'en', 1, 'https://ror.org/04prq1595 National Scientific Center "Institute of Experimental and Clinical Veterinary Medicine" Національний науковий центр «Інститут експериментальної і клінічної ветеринарної медицини»'), (58936, 'https://ror.org/04pxnww65', 'no_lang_code', 1, 'https://ror.org/04pxnww65 TriloByte Statistical Software (Czechia)'), (58937, 'https://ror.org/04pyjfp28', 'no_lang_code', 1, 'https://ror.org/04pyjfp28 Watrex (Czechia)'), (58938, 'https://ror.org/04pz9s646', 'en', 1, 'https://ror.org/04pz9s646 Montachusett Opportunity Council'), (58939, 'https://ror.org/04pzwgb48', 'no_lang_code', 1, 'https://ror.org/04pzwgb48 Fapros družstvo (Czechia)'), (58940, 'https://ror.org/04q0q2e16', 'en', 1, 'https://ror.org/04q0q2e16 Gateway Greening'), (58941, 'https://ror.org/04q5m8a14', 'no_lang_code', 1, 'https://ror.org/04q5m8a14 Tecan (Switzerland)'), (58942, 'https://ror.org/04q6jhb10', 'no_lang_code', 1, 'https://ror.org/04q6jhb10 Signal Projekt (Czechia)'), (58943, 'https://ror.org/04q709a65', 'no_lang_code', 1, 'https://ror.org/04q709a65 Metabo (Switzerland)'), (58944, 'https://ror.org/04q79jy11', 'no_lang_code', 1, 'https://ror.org/04q79jy11 Fluxamat (Czechia)'), (58945, 'https://ror.org/04q7nkm38', 'en', 1, 'https://ror.org/04q7nkm38 Institute for Independent Studies Zürich'), (58946, 'https://ror.org/04q8wkj31', 'en', 1, 'https://ror.org/04q8wkj31 Vietnam Academy of Agricultural Sciences Viện Khoa học Nông nghiệp Việt Nam'), (58947, 'https://ror.org/04q9gyp88', 'no_lang_code', 1, 'https://ror.org/04q9gyp88 Mesit (Czechia)'), (58948, 'https://ror.org/04qb2wt25', 'de', 1, 'https://ror.org/04qb2wt25 Gesundheits- und Fürsorgedirektion des Kantons Bern'), (58949, 'https://ror.org/04qb3yt59', 'it', 1, 'https://ror.org/04qb3yt59 Fondazione CRT'), (58950, 'https://ror.org/04qd3ka10', 'en', 1, 'https://ror.org/04qd3ka10 Womens Fund of Central Ohio'), (58951, 'https://ror.org/04qdg5539', 'de', 1, 'https://ror.org/04qdg5539 Kantonsschule am Burggraben'), (58952, 'https://ror.org/04qe38n20', 'en', 1, 'https://ror.org/04qe38n20 World Horse Welfare'), (58953, 'https://ror.org/04qes5008', 'no_lang_code', 1, 'https://ror.org/04qes5008 Stony Creek Colors (United States)'), (58954, 'https://ror.org/04qfp7s87', 'en', 1, 'https://ror.org/04qfp7s87 Rosenberg Foundation'), (58955, 'https://ror.org/04qq90y81', 'en', 1, 'https://ror.org/04qq90y81 PLUS Foundation'), (58956, 'https://ror.org/04qr72260', 'no_lang_code', 1, 'https://ror.org/04qr72260 Gateway Group (India)'), (58957, 'https://ror.org/04qt5ez29', 'no_lang_code', 1, 'https://ror.org/04qt5ez29 Lihovar Lžín (Czechia)'), (58958, 'https://ror.org/04qtg7h28', 'fr', 1, 'https://ror.org/04qtg7h28 Centre Régional d''Etudes des Populations Alpines'), (58959, 'https://ror.org/04qv6zr56', 'no_lang_code', 1, 'https://ror.org/04qv6zr56 Ireks Enzyma (Czechia)'), (58960, 'https://ror.org/04qwja739', 'no_lang_code', 1, 'https://ror.org/04qwja739 Merit Medical (France)'), (58961, 'https://ror.org/04qy50a03', 'en', 1, 'https://ror.org/04qy50a03 Friedrich Naumann Foundation Friedrich-Naumann-Stiftung für die Freiheit'), (58962, 'https://ror.org/04qyktt41', 'no_lang_code', 1, 'https://ror.org/04qyktt41 Datacon (Czechia)'), (58963, 'https://ror.org/04qyvt278', 'no_lang_code', 1, 'https://ror.org/04qyvt278 Eclair (France)'), (58964, 'https://ror.org/04r05zv91', 'no_lang_code', 1, 'https://ror.org/04r05zv91 Osvětlení Černoch (Czechia)'), (58965, 'https://ror.org/04r0akj72', 'en', 1, 'https://ror.org/04r0akj72 Quixote Foundation'), (58966, 'https://ror.org/04r0c8r10', 'en', 1, 'https://ror.org/04r0c8r10 Ohio Department of Aging'), (58967, 'https://ror.org/04r0vb371', 'no_lang_code', 1, 'https://ror.org/04r0vb371 Asilomar Bio (United States)'), (58968, 'https://ror.org/04r1srr11', 'en', 1, 'https://ror.org/04r1srr11 Institut Evaluací a Sociálních Analýz Institute for Evaluation and Social Analyses'), (58969, 'https://ror.org/04r287r86', 'no_lang_code', 1, 'https://ror.org/04r287r86 Provod (Czechia)'), (58970, 'https://ror.org/04r3hry39', 'de', 1, 'https://ror.org/04r3hry39 Bündner Kunstmuseum'), (58971, 'https://ror.org/04r6r5p42', 'az', 1, 'https://ror.org/04r6r5p42 Neft Kimya Prosesləri Institutu'), (58972, 'https://ror.org/04r6z2s60', 'no_lang_code', 1, 'https://ror.org/04r6z2s60 Dinel (Czechia)'), (58973, 'https://ror.org/04r70jx96', 'no_lang_code', 1, 'https://ror.org/04r70jx96 Windcall Manufacturing (United States)'), (58974, 'https://ror.org/04r8jnk80', 'no_lang_code', 1, 'https://ror.org/04r8jnk80 Sloveč (Czechia)'), (58975, 'https://ror.org/04ra91131', 'es', 1, 'https://ror.org/04ra91131 Fundación Ramón Areces'), (58976, 'https://ror.org/04rahxj70', 'en', 1, 'https://ror.org/04rahxj70 Arkansas Land and Community Development'), (58977, 'https://ror.org/04rcgpb63', 'no_lang_code', 1, 'https://ror.org/04rcgpb63 Procter & Gamble (Canada)'), (58978, 'https://ror.org/04rcz6b42', 'en', 1, 'https://ror.org/04rcz6b42 Finnish Society of Sciences and Letters Finska Vetenskaps-Societeten Suomen Tiedeseura'), (58979, 'https://ror.org/04re16484', 'en', 1, 'https://ror.org/04re16484 Farmer Veteran Coalition'), (58980, 'https://ror.org/04reg7v11', 'fr', 1, 'https://ror.org/04reg7v11 Conseil Départemental de la Haute-Savoie'), (58981, 'https://ror.org/04rhps755', 'es', 1, 'https://ror.org/04rhps755 IMDEA Water, Instituto IMDEA Agua'), (58982, 'https://ror.org/04rjezz78', 'no_lang_code', 1, 'https://ror.org/04rjezz78 Samumed (United States)'), (58983, 'https://ror.org/04rkxhv28', 'no_lang_code', 1, 'https://ror.org/04rkxhv28 Arysta LifeScience (France)'), (58984, 'https://ror.org/04rmevh30', 'en', 1, 'https://ror.org/04rmevh30 Stiftelsen Hästforskning Swedish Norwegian Foundation for Equine Research'), (58985, 'https://ror.org/04rnwed46', 'en', 1, 'https://ror.org/04rnwed46 Environmental Earth Sciences'), (58986, 'https://ror.org/04rpy7390', 'no_lang_code', 1, 'https://ror.org/04rpy7390 Groupe Clarins (France)'), (58987, 'https://ror.org/04rxa0k64', 'it', 1, 'https://ror.org/04rxa0k64 Lega Ticinese Contro il Reumatismo'), (58988, 'https://ror.org/04rxsdm69', 'no_lang_code', 1, 'https://ror.org/04rxsdm69 Microsynth (Switzerland)'), (58989, 'https://ror.org/04rz1y359', 'no_lang_code', 1, 'https://ror.org/04rz1y359 Integra LifeSciences (France)'), (58990, 'https://ror.org/04s1kgp90', 'es', 1, 'https://ror.org/04s1kgp90 Clinica Santa Maria'), (58991, 'https://ror.org/04s2v1839', 'no_lang_code', 1, 'https://ror.org/04s2v1839 Elisabeth Pharmacon (Czechia)'), (58992, 'https://ror.org/04s36mr71', 'en', 1, 'https://ror.org/04s36mr71 Northeast Maritime Institute'), (58993, 'https://ror.org/04s3f1024', 'de', 1, 'https://ror.org/04s3f1024 Staatliches Weinbauinstitut Freiburg'), (58994, 'https://ror.org/04s5ej408', 'en', 1, 'https://ror.org/04s5ej408 Kitasato University East Hospital 北里大学東病院'), (58995, 'https://ror.org/04s5w2j10', 'en', 1, 'https://ror.org/04s5w2j10 Trust for Conservation Innovation'), (58996, 'https://ror.org/04s64z252', 'en', 1, 'https://ror.org/04s64z252 Helmholtz Alliance Imaging and Curing Environmental Metabolic Diseases'), (58997, 'https://ror.org/04s68af23', 'en', 1, 'https://ror.org/04s68af23 Green River Community College'), (58998, 'https://ror.org/04s6a9w47', 'no_lang_code', 1, 'https://ror.org/04s6a9w47 Newell Brands (France)'), (58999, 'https://ror.org/04s6h1250', 'no_lang_code', 1, 'https://ror.org/04s6h1250 JDA Software (United States)'), (59000, 'https://ror.org/04s9b1414', 'no_lang_code', 1, 'https://ror.org/04s9b1414 Sudop Group (Czechia)'), (59001, 'https://ror.org/04saem874', 'de', 1, 'https://ror.org/04saem874 Kloster St. Johann Müstair'), (59002, 'https://ror.org/04sevde02', 'cs', 1, 'https://ror.org/04sevde02 Českomoravský Svaz Mlékárenský'), (59003, 'https://ror.org/04sgcdd21', 'no_lang_code', 1, 'https://ror.org/04sgcdd21 Accelerated Ag Technologies (United States)'), (59004, 'https://ror.org/04sgvk352', 'en', 1, 'https://ror.org/04sgvk352 Centro de Salud Miguel de Cervantes Miguel de Cervantes Health Care Centre'), (59005, 'https://ror.org/04sh8kd50', 'cs', 1, 'https://ror.org/04sh8kd50 Dopravní Podnik Hlavniho Mesta Prahy'), (59006, 'https://ror.org/04sqxkj61', 'no_lang_code', 1, 'https://ror.org/04sqxkj61 Business Innovation Center (Bulgaria)'), (59007, 'https://ror.org/04sr19j82', 'no_lang_code', 1, 'https://ror.org/04sr19j82 Lasvit (Czechia)'), (59008, 'https://ror.org/04srvct20', 'en', 1, 'https://ror.org/04srvct20 Ophthalmos Eye Research & Therapeutic Institute'), (59009, 'https://ror.org/04swm6c48', 'en', 1, 'https://ror.org/04swm6c48 Z.Smith Reynolds Foundation'), (59010, 'https://ror.org/04sygbn06', 'en', 1, 'https://ror.org/04sygbn06 CEP America'), (59011, 'https://ror.org/04sz6yt35', 'en', 1, 'https://ror.org/04sz6yt35 Level Playing Field Institute'), (59012, 'https://ror.org/04szn7861', 'no_lang_code', 1, 'https://ror.org/04szn7861 ENVI (Czechia)'), (59013, 'https://ror.org/04t01vf56', 'en', 1, 'https://ror.org/04t01vf56 Gaia Medical Institute'), (59014, 'https://ror.org/04t21k589', 'no_lang_code', 1, 'https://ror.org/04t21k589 Nexira (France)'), (59015, 'https://ror.org/04t2jbs80', 'no_lang_code', 1, 'https://ror.org/04t2jbs80 Dionea (Switzerland)'), (59016, 'https://ror.org/04t4d1t15', 'no_lang_code', 1, 'https://ror.org/04t4d1t15 Cardion (Czechia)'), (59017, 'https://ror.org/04t5d1438', 'en', 1, 'https://ror.org/04t5d1438 Unitectra'), (59018, 'https://ror.org/04t5tgf48', 'no_lang_code', 1, 'https://ror.org/04t5tgf48 Conte Energy (Czechia)'), (59019, 'https://ror.org/04t6d6d70', 'no_lang_code', 1, 'https://ror.org/04t6d6d70 BASF (Czechia)'), (59020, 'https://ror.org/04t81kd98', 'en', 1, 'https://ror.org/04t81kd98 Vetiver Network International'), (59021, 'https://ror.org/04t8pft48', 'no_lang_code', 1, 'https://ror.org/04t8pft48 Nanopolis Suzhou (China) 苏州纳米科技发展有限公司'), (59022, 'https://ror.org/04t8qhn97', 'no_lang_code', 1, 'https://ror.org/04t8qhn97 Integra LifeSciences (United Kingdom)'), (59023, 'https://ror.org/04ta9pt38', 'en', 1, 'https://ror.org/04ta9pt38 Women''s Foundation of Colorado'), (59024, 'https://ror.org/04tac1482', 'en', 1, 'https://ror.org/04tac1482 Pittsburgh Supercomputing Center'), (59025, 'https://ror.org/04tb15285', 'no_lang_code', 1, 'https://ror.org/04tb15285 Laboratoire France Bébé Nutrition (France)'), (59026, 'https://ror.org/04tdwrq43', 'en', 1, 'https://ror.org/04tdwrq43 Bethesda Spital'), (59027, 'https://ror.org/04tepr653', 'no_lang_code', 1, 'https://ror.org/04tepr653 Until There’s A Cure'), (59028, 'https://ror.org/04tfkjn57', 'no_lang_code', 1, 'https://ror.org/04tfkjn57 Wacker (United States)'), (59029, 'https://ror.org/04tj33k86', 'en', 1, 'https://ror.org/04tj33k86 Church of the Merciful Sisters of Sts. Karel Boromejský'), (59030, 'https://ror.org/04tj9xe28', 'no_lang_code', 1, 'https://ror.org/04tj9xe28 Laphal (France)'), (59031, 'https://ror.org/04tn1tx80', 'fr', 1, 'https://ror.org/04tn1tx80 Museum of Art and History Musée d''Art et d''Histoire de Neuchâtel'), (59032, 'https://ror.org/04trax135', 'en', 1, 'https://ror.org/04trax135 Sophia Foundation for Children'), (59033, 'https://ror.org/04trkh314', 'no_lang_code', 1, 'https://ror.org/04trkh314 Rigetti Computing (United States)'), (59034, 'https://ror.org/04ts80387', 'en', 1, 'https://ror.org/04ts80387 Project ALS'), (59035, 'https://ror.org/04tshyq54', 'en', 1, 'https://ror.org/04tshyq54 Deutsches Institut für Zell und Gewebeersatz German Institute for Cell and Tissue Replacement'), (59036, 'https://ror.org/04tsrda09', 'de', 1, 'https://ror.org/04tsrda09 Geschäftsstelle SVIAL'), (59037, 'https://ror.org/04ttxs071', 'en', 1, 'https://ror.org/04ttxs071 Berlin Zoological Garden Zoologischer Garten Berlin'), (59038, 'https://ror.org/04tv6wz75', 'en', 1, 'https://ror.org/04tv6wz75 Czech Council on Foreign Relations Rada pro mezinárodní vztahy'), (59039, 'https://ror.org/04tvb5e69', 'en', 1, 'https://ror.org/04tvb5e69 Wolfe’s Neck Farm'), (59040, 'https://ror.org/04tvj9g97', 'no_lang_code', 1, 'https://ror.org/04tvj9g97 GKN (France)'), (59041, 'https://ror.org/04tx4kg58', 'en', 1, 'https://ror.org/04tx4kg58 Northwest Scientific Association'), (59042, 'https://ror.org/04v4gsn35', 'no_lang_code', 1, 'https://ror.org/04v4gsn35 Allyke (United States)'), (59043, 'https://ror.org/04v51kr79', 'en', 1, 'https://ror.org/04v51kr79 Ola Grimsby Institute'), (59044, 'https://ror.org/04v75js20', 'no_lang_code', 1, 'https://ror.org/04v75js20 Noventis (Czechia)'), (59045, 'https://ror.org/04v87ev31', 'en', 1, 'https://ror.org/04v87ev31 Institute of Occupational Medicine'), (59046, 'https://ror.org/04v8d4779', 'es', 1, 'https://ror.org/04v8d4779 Fundación para la Innovación y la Prospectiva en Salud en España'), (59047, 'https://ror.org/04ve9h794', 'no_lang_code', 1, 'https://ror.org/04ve9h794 Bernard (Czechia)'), (59048, 'https://ror.org/04vh5z648', 'en', 1, 'https://ror.org/04vh5z648 Center for Interdisciplinary Studies of Molecular Interactions'), (59049, 'https://ror.org/04vhskt34', 'no_lang_code', 1, 'https://ror.org/04vhskt34 Patria Kobylí (Czechia)'), (59050, 'https://ror.org/04vhxp922', 'en', 1, 'https://ror.org/04vhxp922 Sandip Foundation'), (59051, 'https://ror.org/04vkaw234', 'no_lang_code', 1, 'https://ror.org/04vkaw234 Imatech (Czechia)'), (59052, 'https://ror.org/04vmsv961', 'cs', 1, 'https://ror.org/04vmsv961 Česká Membránová Platforma'), (59053, 'https://ror.org/04vmvjq74', 'de', 1, 'https://ror.org/04vmvjq74 Historisches Museum Olten'), (59054, 'https://ror.org/04vn0m402', 'no_lang_code', 1, 'https://ror.org/04vn0m402 Fytovita (Czechia)'), (59055, 'https://ror.org/04vn8dh18', 'no_lang_code', 1, 'https://ror.org/04vn8dh18 K2pharm (Czechia)'), (59056, 'https://ror.org/04vnqft85', 'no_lang_code', 1, 'https://ror.org/04vnqft85 Kapa Zlín (Czechia)'), (59057, 'https://ror.org/04vppzx17', 'no_lang_code', 1, 'https://ror.org/04vppzx17 Conversant (Luxembourg)'), (59058, 'https://ror.org/04vqztg05', 'en', 1, 'https://ror.org/04vqztg05 North South Institute'), (59059, 'https://ror.org/04vrse873', 'no_lang_code', 1, 'https://ror.org/04vrse873 Grafted Growers (United States)'), (59060, 'https://ror.org/04vtyaw83', 'no_lang_code', 1, 'https://ror.org/04vtyaw83 GEOline (Czechia)'), (59061, 'https://ror.org/04vvq5g41', 'no_lang_code', 1, 'https://ror.org/04vvq5g41 KR Důlní služby (Czechia)'), (59062, 'https://ror.org/04w0pnx62', 'cs', 1, 'https://ror.org/04w0pnx62 Nemocnice Milosrdných bratří'), (59063, 'https://ror.org/04w2f6891', 'no_lang_code', 1, 'https://ror.org/04w2f6891 Heidenhain (Slovakia)'), (59064, 'https://ror.org/04w3ts152', 'no_lang_code', 1, 'https://ror.org/04w3ts152 Adidas (United Kingdom)'), (59065, 'https://ror.org/04w68cb80', 'en', 1, 'https://ror.org/04w68cb80 Intersectoral Research and Technology Complex Eye Microsurgery Межотраслевой научно-технический комплекс «Микрохирургия глаза»'), (59066, 'https://ror.org/04w6hdb78', 'no_lang_code', 1, 'https://ror.org/04w6hdb78 Starmon (Czechia)'), (59067, 'https://ror.org/04w7sf714', 'no_lang_code', 1, 'https://ror.org/04w7sf714 Instruments Médecine Vétérinaire (France)'), (59068, 'https://ror.org/04w82sp73', 'fr', 1, 'https://ror.org/04w82sp73 Secrétariat Général pour les Affaires Régionales'), (59069, 'https://ror.org/04w9zgk85', 'de', 1, 'https://ror.org/04w9zgk85 Paul Sacher Stiftung'), (59070, 'https://ror.org/04waxaa96', 'en', 1, 'https://ror.org/04waxaa96 Gemini Eye Clinic Oční klinika Gemini'), (59071, 'https://ror.org/04waxbg79', 'en', 1, 'https://ror.org/04waxbg79 Fondation Suisse pour la Recherche en Microtechnique Swiss Foundation for Research in Microtechnology'), (59072, 'https://ror.org/04waywn16', 'pt', 1, 'https://ror.org/04waywn16 Gabinete de Relações Internacionais da Ciência e do Ensino Superior'), (59073, 'https://ror.org/04we3tx21', 'en', 1, 'https://ror.org/04we3tx21 Institute of Geology of the Karelian Research Center Институт геологии КарНЦ РАН'), (59074, 'https://ror.org/04wf28y22', 'no_lang_code', 1, 'https://ror.org/04wf28y22 Techmix (Czechia)'), (59075, 'https://ror.org/04wf7sx08', 'da', 1, 'https://ror.org/04wf7sx08 Eva og Henry Frænkels Mindefond'), (59076, 'https://ror.org/04whxwq65', 'no_lang_code', 1, 'https://ror.org/04whxwq65 Sonoco (United Kingdom)'), (59077, 'https://ror.org/04wjdbs69', 'no_lang_code', 1, 'https://ror.org/04wjdbs69 Czech Industry Group (Czechia)'), (59078, 'https://ror.org/04wjmv675', 'de', 1, 'https://ror.org/04wjmv675 Schweizerische Gesellschaft für Volkskunde'), (59079, 'https://ror.org/04wjnw514', 'en', 1, 'https://ror.org/04wjnw514 Kona Pacific Public Charter School'), (59080, 'https://ror.org/04wk0vx02', 'no_lang_code', 1, 'https://ror.org/04wk0vx02 Aveko Servomotory (Czechia)'), (59081, 'https://ror.org/04wk76v17', 'cs', 1, 'https://ror.org/04wk76v17 ACCENDO – Centrum pro vědu a výzkum'), (59082, 'https://ror.org/04wn7zs59', 'no_lang_code', 1, 'https://ror.org/04wn7zs59 Allibert Medical (France)'), (59083, 'https://ror.org/04wq40h64', 'no_lang_code', 1, 'https://ror.org/04wq40h64 Orange Controls (Czechia)'), (59084, 'https://ror.org/04wrbmd83', 'no_lang_code', 1, 'https://ror.org/04wrbmd83 Vanessa air (Czechia)'), (59085, 'https://ror.org/04wsg8a03', 'no_lang_code', 1, 'https://ror.org/04wsg8a03 U-24 (Czechia)'), (59086, 'https://ror.org/04wsk8226', 'no_lang_code', 1, 'https://ror.org/04wsk8226 Idea-Envi (Czechia)'), (59087, 'https://ror.org/04wsv7966', 'en', 1, 'https://ror.org/04wsv7966 Center for Vascular Biology Research'), (59088, 'https://ror.org/04wwp6r22', 'de', 1, 'https://ror.org/04wwp6r22 BG Klinik Tübingen'), (59089, 'https://ror.org/04wwsbd59', 'en', 1, 'https://ror.org/04wwsbd59 ITRI International'), (59090, 'https://ror.org/04wxm6g36', 'en', 1, 'https://ror.org/04wxm6g36 Ministry of Defense מִשְׂרַד הַבִּטָּחוֹן'), (59091, 'https://ror.org/04wxr5s39', 'no_lang_code', 1, 'https://ror.org/04wxr5s39 MIA Studio (Czechia)'), (59092, 'https://ror.org/04wz85195', 'de', 1, 'https://ror.org/04wz85195 Karl Jaspers Stiftung'), (59093, 'https://ror.org/04x0p4p48', 'no_lang_code', 1, 'https://ror.org/04x0p4p48 Abbott (Belgium)'), (59094, 'https://ror.org/04x17ze61', 'en', 1, 'https://ror.org/04x17ze61 Raymond J. and Mary C. Reisert Foundation'), (59095, 'https://ror.org/04x4bjr17', 'de', 1, 'https://ror.org/04x4bjr17 Universitätsklinik für Diabetologie, Endokrinologie, Ernährungsmedizin & Metabolismus'), (59096, 'https://ror.org/04x4bx294', 'no_lang_code', 1, 'https://ror.org/04x4bx294 Lach-Ner (Czechia)'), (59097, 'https://ror.org/04x6n5698', 'en', 1, 'https://ror.org/04x6n5698 Raptor Research Foundation'), (59098, 'https://ror.org/04x7s4297', 'no_lang_code', 1, 'https://ror.org/04x7s4297 Chart Industries (United States)'), (59099, 'https://ror.org/04x99ga69', 'no_lang_code', 1, 'https://ror.org/04x99ga69 Čepro (Czechia)'), (59100, 'https://ror.org/04x9v7g36', 'no_lang_code', 1, 'https://ror.org/04x9v7g36 Scripps (United States)'), (59101, 'https://ror.org/04xam4r33', 'en', 1, 'https://ror.org/04xam4r33 Institute for Social and Environmental Research-Nepal'), (59102, 'https://ror.org/04xatxw44', 'no_lang_code', 1, 'https://ror.org/04xatxw44 Aquion (Czechia)'), (59103, 'https://ror.org/04xcgfz03', 'no_lang_code', 1, 'https://ror.org/04xcgfz03 MME Legal (Switzerland)'), (59104, 'https://ror.org/04xctba91', 'no_lang_code', 1, 'https://ror.org/04xctba91 Symatese (France)'), (59105, 'https://ror.org/04xg8v068', 'no_lang_code', 1, 'https://ror.org/04xg8v068 S.A.M. Metalizační společnost'), (59106, 'https://ror.org/04xh47750', 'no_lang_code', 1, 'https://ror.org/04xh47750 Laboratories Synth Innove (France)'), (59107, 'https://ror.org/04xhmxk63', 'no_lang_code', 1, 'https://ror.org/04xhmxk63 Ruml (Czechia)'), (59108, 'https://ror.org/04xjjma71', 'en', 1, 'https://ror.org/04xjjma71 Institute of Chemistry, Academia Sinica'), (59109, 'https://ror.org/04xks6074', 'no_lang_code', 1, 'https://ror.org/04xks6074 Skrivanek (Czechia)'), (59110, 'https://ror.org/04xqmah83', 'en', 1, 'https://ror.org/04xqmah83 Scientific Research Institute of Steel НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ СТАЛИ'), (59111, 'https://ror.org/04xrc4v39', 'no_lang_code', 1, 'https://ror.org/04xrc4v39 Bioxis Pharmaceuticals (France)'), (59112, 'https://ror.org/04xs06471', 'no_lang_code', 1, 'https://ror.org/04xs06471 AgroKonzulta Žamberk (Czechia)'), (59113, 'https://ror.org/04xsq5430', 'no_lang_code', 1, 'https://ror.org/04xsq5430 Sotec Médical (France)'), (59114, 'https://ror.org/04xtzf071', 'fr', 1, 'https://ror.org/04xtzf071 Fondation Gustave & Simone Prévot'), (59115, 'https://ror.org/04xvc2q17', 'en', 1, 'https://ror.org/04xvc2q17 Lancaster Royal Grammar School'), (59116, 'https://ror.org/04xvyz885', 'no_lang_code', 1, 'https://ror.org/04xvyz885 Mavet (Czechia)'), (59117, 'https://ror.org/04xxthg27', 'no_lang_code', 1, 'https://ror.org/04xxthg27 Science et Médecine (France)'), (59118, 'https://ror.org/04xyg3765', 'no_lang_code', 1, 'https://ror.org/04xyg3765 Arthrocentrum'), (59119, 'https://ror.org/04xzb7w94', 'fr', 1, 'https://ror.org/04xzb7w94 Fondation Gandur pour l’Art'), (59120, 'https://ror.org/04y2cjj38', 'no_lang_code', 1, 'https://ror.org/04y2cjj38 Amer Sports (Austria)'), (59121, 'https://ror.org/04y2ytg46', 'en', 1, 'https://ror.org/04y2ytg46 Secure World Foundation'), (59122, 'https://ror.org/04y37vj38', 'en', 1, 'https://ror.org/04y37vj38 Association for Information Science and Technology'), (59123, 'https://ror.org/04y64sc23', 'en', 1, 'https://ror.org/04y64sc23 Susan Thompson Buffett Foundation'), (59124, 'https://ror.org/04y7bzk92', 'en', 1, 'https://ror.org/04y7bzk92 Sakhalin Botanical Garden Сахалинский филиал Ботанического сада-института ДВО РАН'), (59125, 'https://ror.org/04y7jcj09', 'en', 1, 'https://ror.org/04y7jcj09 Institute of Hydrobiology Інститут Гідробіології'), (59126, 'https://ror.org/04y8ye406', 'en', 1, 'https://ror.org/04y8ye406 Harvest Home Farmer’s Market'), (59127, 'https://ror.org/04yacgh83', 'no_lang_code', 1, 'https://ror.org/04yacgh83 SoftFil (France)'), (59128, 'https://ror.org/04yaz0z51', 'it', 1, 'https://ror.org/04yaz0z51 Ospedale San Raffaele Arcangelo'), (59129, 'https://ror.org/04ye0br83', 'no_lang_code', 1, 'https://ror.org/04ye0br83 Flaveko (Czechia)'), (59130, 'https://ror.org/04yedeq20', 'no_lang_code', 1, 'https://ror.org/04yedeq20 SG - Geoinenring (Czechia)'), (59131, 'https://ror.org/04ygsjk43', 'no_lang_code', 1, 'https://ror.org/04ygsjk43 NELAN (Czechia)'), (59132, 'https://ror.org/04yhya597', 'en', 1, 'https://ror.org/04yhya597 Blue Marble Space Institute of Science'), (59133, 'https://ror.org/04ykg4p88', 'de', 1, 'https://ror.org/04ykg4p88 Stiftung Landschaftsschutz Schweiz, Swiss Foundation for Landscape Conservation'), (59134, 'https://ror.org/04ynnbp72', 'en', 1, 'https://ror.org/04ynnbp72 Czech Chamber of Commerce Hospodářská komora České republiky'), (59135, 'https://ror.org/04yp9az05', 'no_lang_code', 1, 'https://ror.org/04yp9az05 MRB Sazovice (Czechia)'), (59136, 'https://ror.org/04ypeyk27', 'no_lang_code', 1, 'https://ror.org/04ypeyk27 S&T (Czechia)'), (59137, 'https://ror.org/04yqshc53', 'en', 1, 'https://ror.org/04yqshc53 German Studies Association'), (59138, 'https://ror.org/04ys5fv56', 'cs', 1, 'https://ror.org/04ys5fv56 Západočeská Galerie v Plzni'), (59139, 'https://ror.org/04ytpr841', 'en', 1, 'https://ror.org/04ytpr841 JLK Sanfilippo Research Foundation'), (59140, 'https://ror.org/04yxgd218', 'no_lang_code', 1, 'https://ror.org/04yxgd218 RobotSystem (Czechia)'); INSERT INTO `rors` VALUES (59141, 'https://ror.org/04yxwsj75', 'no_lang_code', 1, 'https://ror.org/04yxwsj75 Proficomms (Czechia)'), (59142, 'https://ror.org/04z0bfr53', 'no_lang_code', 1, 'https://ror.org/04z0bfr53 Urgo Laboratories (France)'), (59143, 'https://ror.org/04z0qye94', 'no_lang_code', 1, 'https://ror.org/04z0qye94 Johnson & Johnson (Canada)'), (59144, 'https://ror.org/04z0vpw75', 'no_lang_code', 1, 'https://ror.org/04z0vpw75 Paramo (Czechia)'), (59145, 'https://ror.org/04z2zsa77', 'en', 1, 'https://ror.org/04z2zsa77 Sonnenfeld Foundation Sonnenfeld Stiftung'), (59146, 'https://ror.org/04z360s37', 'no_lang_code', 1, 'https://ror.org/04z360s37 EVPÚ Defence (Czechia)'), (59147, 'https://ror.org/04z4rna54', 'no_lang_code', 1, 'https://ror.org/04z4rna54 Interlacto (Czechia)'), (59148, 'https://ror.org/04z6xe248', 'en', 1, 'https://ror.org/04z6xe248 Clinica Luganese Moncucco'), (59149, 'https://ror.org/04z91z113', 'no_lang_code', 1, 'https://ror.org/04z91z113 Symbios Orthopédie (Switzerland)'), (59150, 'https://ror.org/04z9gtp37', 'no_lang_code', 1, 'https://ror.org/04z9gtp37 Integrated Concurrent Systems Associates (United States)'), (59151, 'https://ror.org/04z9kpd59', 'no_lang_code', 1, 'https://ror.org/04z9kpd59 Metso (Sweden)'), (59152, 'https://ror.org/04zaa8r69', 'fr', 1, 'https://ror.org/04zaa8r69 Laboratoire de Physique du Rayonnement et de la Lumière'), (59153, 'https://ror.org/04zbaa003', 'en', 1, 'https://ror.org/04zbaa003 Sports Medicine Australia'), (59154, 'https://ror.org/04zd2q353', 'en', 1, 'https://ror.org/04zd2q353 Muzeum umění Olomouc Museum of Art'), (59155, 'https://ror.org/04zdeh149', 'en', 1, 'https://ror.org/04zdeh149 VA Sepulveda Ambulatory Care Center'), (59156, 'https://ror.org/04zdw2m37', 'en', 1, 'https://ror.org/04zdw2m37 All-Russian Scientific and Research Institute for Medical Engineering ВСЕРОССИЙСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ И ИСПЫТАТЕЛЬНЫЙ ИНСТИТУТ МЕДИЦИНСКОЙ ТЕХНИКИ'), (59157, 'https://ror.org/04zeqh491', 'no_lang_code', 1, 'https://ror.org/04zeqh491 Amphenol (France)'), (59158, 'https://ror.org/04zg3kj04', 'no_lang_code', 1, 'https://ror.org/04zg3kj04 Scaleo Medical (France)'), (59159, 'https://ror.org/04zgf8140', 'no_lang_code', 1, 'https://ror.org/04zgf8140 Mirtech (United States)'), (59160, 'https://ror.org/04zgrks73', 'no_lang_code', 1, 'https://ror.org/04zgrks73 Access Sensor Technologies (United States)'), (59161, 'https://ror.org/04zhxv661', 'en', 1, 'https://ror.org/04zhxv661 Wisconsin Public Service'), (59162, 'https://ror.org/04zkpdz50', 'no_lang_code', 1, 'https://ror.org/04zkpdz50 ZZN Pelhřimov (Czechia)'), (59163, 'https://ror.org/04zksj147', 'en', 1, 'https://ror.org/04zksj147 Centre For Innovation And Development Centrum Inovací a Rozvoje'), (59164, 'https://ror.org/04zkx3f21', 'en', 1, 'https://ror.org/04zkx3f21 Jinja Municipal Council'), (59165, 'https://ror.org/04zn4fk08', 'en', 1, 'https://ror.org/04zn4fk08 Society of Urologic Nurses and Associates'), (59166, 'https://ror.org/04zn57k32', 'it', 1, 'https://ror.org/04zn57k32 Augusta Raurica'), (59167, 'https://ror.org/04znf4t37', 'en', 1, 'https://ror.org/04znf4t37 Orthodontic World Institute'), (59168, 'https://ror.org/04znkfj06', 'cs', 1, 'https://ror.org/04znkfj06 Podještědské Museum'), (59169, 'https://ror.org/04zp00x83', 'no_lang_code', 1, 'https://ror.org/04zp00x83 FLSmidth (Czechia)'), (59170, 'https://ror.org/04zp2d344', 'de', 1, 'https://ror.org/04zp2d344 Sächsisches Institut für die Druckindustrie'), (59171, 'https://ror.org/04zqaby77', 'no_lang_code', 1, 'https://ror.org/04zqaby77 Roemmers Laboratories (Argentina)'), (59172, 'https://ror.org/04zqw9t81', 'en', 1, 'https://ror.org/04zqw9t81 Helsingin Diakonissalaitos Helsinki Deaconess Institute'), (59173, 'https://ror.org/04zrk8409', 'en', 1, 'https://ror.org/04zrk8409 Kansas Board of Regents'), (59174, 'https://ror.org/04zs69r73', 'no_lang_code', 1, 'https://ror.org/04zs69r73 Oekoscience (Switzerland)'), (59175, 'https://ror.org/04zs9x940', 'en', 1, 'https://ror.org/04zs9x940 Aleutian Pribilof Islands Association'), (59176, 'https://ror.org/04ztzvw60', 'no_lang_code', 1, 'https://ror.org/04ztzvw60 ModularTest (Czechia)'), (59177, 'https://ror.org/04zv3dn98', 'en', 1, 'https://ror.org/04zv3dn98 Westchester Institute for Human Development'), (59178, 'https://ror.org/04zwrha85', 'en', 1, 'https://ror.org/04zwrha85 Victorian Responsible Gambling Foundation'), (59179, 'https://ror.org/04zwxgg32', 'no_lang_code', 1, 'https://ror.org/04zwxgg32 Nexen (Canada)'), (59180, 'https://ror.org/04zwy1d58', 'no_lang_code', 1, 'https://ror.org/04zwy1d58 Burnside Autocyl (Ireland)'), (59181, 'https://ror.org/0501jzx23', 'no_lang_code', 1, 'https://ror.org/0501jzx23 Kunst (Czechia)'), (59182, 'https://ror.org/0502kph39', 'en', 1, 'https://ror.org/0502kph39 Central Tasar Research & Training Institute'), (59183, 'https://ror.org/0504frq03', 'en', 1, 'https://ror.org/0504frq03 Global Growers'), (59184, 'https://ror.org/0505he277', 'no_lang_code', 1, 'https://ror.org/0505he277 Central Japan Railway (Japan) 東海旅客鉄道株式会社'), (59185, 'https://ror.org/0506vaz69', 'no_lang_code', 1, 'https://ror.org/0506vaz69 Varroc Lighting Systems (United States)'), (59186, 'https://ror.org/0507cba95', 'en', 1, 'https://ror.org/0507cba95 Duchenne Now'), (59187, 'https://ror.org/0507jvj85', 'no_lang_code', 1, 'https://ror.org/0507jvj85 GAF (United States)'), (59188, 'https://ror.org/0507zc831', 'no_lang_code', 1, 'https://ror.org/0507zc831 GNSS Centre of Excellence'), (59189, 'https://ror.org/0508gqz32', 'no_lang_code', 1, 'https://ror.org/0508gqz32 Büro für Altlasten, Boden und Umwelt (Switzerland)'), (59190, 'https://ror.org/0509gz575', 'no_lang_code', 1, 'https://ror.org/0509gz575 Via Alta (Czechia)'), (59191, 'https://ror.org/050ahe644', 'no_lang_code', 1, 'https://ror.org/050ahe644 Hydroma (Czechia)'), (59192, 'https://ror.org/050awrw49', 'en', 1, 'https://ror.org/050awrw49 GEP Clinic'), (59193, 'https://ror.org/050dy3g96', 'no_lang_code', 1, 'https://ror.org/050dy3g96 IKT Advanced Technologies (Czechia)'), (59194, 'https://ror.org/050fr6z67', 'no_lang_code', 1, 'https://ror.org/050fr6z67 Dynamic Digital Depth (Australia)'), (59195, 'https://ror.org/050g95t43', 'en', 1, 'https://ror.org/050g95t43 Regional Museum and Gallery Jicin'), (59196, 'https://ror.org/050gcw725', 'en', 1, 'https://ror.org/050gcw725 Telecommunication an Electronics Associaton Tietotekniikan ja Elektroniikan Seura'), (59197, 'https://ror.org/050gvvy47', 'no_lang_code', 1, 'https://ror.org/050gvvy47 TFA (Czechia)'), (59198, 'https://ror.org/050ha9v33', 'en', 1, 'https://ror.org/050ha9v33 Czech River Restoration Centre'), (59199, 'https://ror.org/050jk8g19', 'no_lang_code', 1, 'https://ror.org/050jk8g19 Medical Technology Transfer (Netherlands)'), (59200, 'https://ror.org/050qj5a78', 'fr', 1, 'https://ror.org/050qj5a78 Gymnase du Bugnon'), (59201, 'https://ror.org/050rr3m98', 'en', 1, 'https://ror.org/050rr3m98 Institute for Radiological Image Sciences'), (59202, 'https://ror.org/050t4db88', 'cs', 1, 'https://ror.org/050t4db88 Sokolov Muzeum'), (59203, 'https://ror.org/050ve4r26', 'en', 1, 'https://ror.org/050ve4r26 Experimental Scientific Research Institute of Forging and Press Engineering Экспериментальный научно-исследовательский институт кузнечно-прессового машиностроения'), (59204, 'https://ror.org/0511swq50', 'en', 1, 'https://ror.org/0511swq50 Pencil Foundation'), (59205, 'https://ror.org/051334k24', 'fr', 1, 'https://ror.org/051334k24 Institution Nationale des Invalides'), (59206, 'https://ror.org/0514py963', 'no_lang_code', 1, 'https://ror.org/0514py963 OlChemIm (Czechia)'), (59207, 'https://ror.org/051bbpq39', 'no_lang_code', 1, 'https://ror.org/051bbpq39 Czech Machines (Czechia)'), (59208, 'https://ror.org/051bde843', 'no_lang_code', 1, 'https://ror.org/051bde843 Hanácká Zemědělská Společnost Jevíčko (Czechia)'), (59209, 'https://ror.org/051bwap89', 'en', 1, 'https://ror.org/051bwap89 Institute for Information Recording Інститут проблем реєстрації інформації НАН України'), (59210, 'https://ror.org/051f1yf64', 'de', 1, 'https://ror.org/051f1yf64 Institut Kardiale Diagnostik und Therapie'), (59211, 'https://ror.org/051fr8g96', 'no_lang_code', 1, 'https://ror.org/051fr8g96 GZ Media (Czechia)'), (59212, 'https://ror.org/051h8nm81', 'no_lang_code', 1, 'https://ror.org/051h8nm81 Vuste - Apis (Czechia)'), (59213, 'https://ror.org/051hq3021', 'no_lang_code', 1, 'https://ror.org/051hq3021 CTS Corporation (Czechia)'), (59214, 'https://ror.org/051j13341', 'no_lang_code', 1, 'https://ror.org/051j13341 Gilead Sciences (Australia)'), (59215, 'https://ror.org/051jcqr59', 'en', 1, 'https://ror.org/051jcqr59 Bytown Cat Hospital'), (59216, 'https://ror.org/051m3n143', 'en', 1, 'https://ror.org/051m3n143 Environmental Research Instruments'), (59217, 'https://ror.org/051mfdq62', 'cs', 1, 'https://ror.org/051mfdq62 Česká Národopisná Společnost'), (59218, 'https://ror.org/051p4pj36', 'no_lang_code', 1, 'https://ror.org/051p4pj36 Chaps (Czechia)'), (59219, 'https://ror.org/051perd82', 'no_lang_code', 1, 'https://ror.org/051perd82 LGL Electronics (Italy)'), (59220, 'https://ror.org/051tbm140', 'no_lang_code', 1, 'https://ror.org/051tbm140 In''Tech Medical (France)'), (59221, 'https://ror.org/051tck365', 'en', 1, 'https://ror.org/051tck365 Svenska Kennelklubben Swedish Kennel Club'), (59222, 'https://ror.org/051tvr365', 'no_lang_code', 1, 'https://ror.org/051tvr365 Pharmaceutical Biotechnology (Czechia)'), (59223, 'https://ror.org/051x4wh35', 'en', 1, 'https://ror.org/051x4wh35 Commonwealth Scholarship Commission'), (59224, 'https://ror.org/051xra320', 'no_lang_code', 1, 'https://ror.org/051xra320 Biocodex (France)'), (59225, 'https://ror.org/051y3re62', 'no_lang_code', 1, 'https://ror.org/051y3re62 Aproks (Czechia)'), (59226, 'https://ror.org/05201ww68', 'en', 1, 'https://ror.org/05201ww68 Eidgenössisches Institut für Geistiges Eigentum Institut Federal da Proprietad Intellectuala Institut Fédéral de la Propriété Intellectuelle Istituto Federale della Proprietà Intellettuale Swiss Federal Institute of Intellectual Property'), (59227, 'https://ror.org/0520gqb12', 'en', 1, 'https://ror.org/0520gqb12 Oklahoma Center for Adult Stem Cell Research'), (59228, 'https://ror.org/052161p79', 'no_lang_code', 1, 'https://ror.org/052161p79 Ekoplant (Slovakia)'), (59229, 'https://ror.org/0521n7n83', 'no_lang_code', 1, 'https://ror.org/0521n7n83 Microsoft (France)'), (59230, 'https://ror.org/0521vgb23', 'no_lang_code', 1, 'https://ror.org/0521vgb23 Gas Komplet (Czechia)'), (59231, 'https://ror.org/0523ytz80', 'en', 1, 'https://ror.org/0523ytz80 Fyzikálně Technický Zkušební Ústav Physical Technical Testing Institute'), (59232, 'https://ror.org/0525q3519', 'en', 1, 'https://ror.org/0525q3519 William K Bowes Jr Foundation'), (59233, 'https://ror.org/0526qf682', 'no_lang_code', 1, 'https://ror.org/0526qf682 AirshipClub (Czechia)'), (59234, 'https://ror.org/0527v1v90', 'en', 1, 'https://ror.org/0527v1v90 VA Heart of Texas Health Care Network'), (59235, 'https://ror.org/0527yet08', 'no_lang_code', 1, 'https://ror.org/0527yet08 Medical Developments International (Australia)'), (59236, 'https://ror.org/0528q0t18', 'en', 1, 'https://ror.org/0528q0t18 United Mitochondrial Disease Foundation'), (59237, 'https://ror.org/0529fxt39', 'en', 1, 'https://ror.org/0529fxt39 Palo Alto Research Center'), (59238, 'https://ror.org/052azjr18', 'de', 1, 'https://ror.org/052azjr18 Stiftung Oskar Helene Heim'), (59239, 'https://ror.org/052bv2m37', 'en', 1, 'https://ror.org/052bv2m37 Association of Fire and Safety Engineering Sdružení požárního a bezpečnostního inženýrství'), (59240, 'https://ror.org/052ce7c92', 'en', 1, 'https://ror.org/052ce7c92 Population Council'), (59241, 'https://ror.org/052dd1f02', 'no_lang_code', 1, 'https://ror.org/052dd1f02 EGÚ Brno (Czechia)'), (59242, 'https://ror.org/052e5jr81', 'de', 1, 'https://ror.org/052e5jr81 Zentrum für Gefässkrankheiten'), (59243, 'https://ror.org/052gh5147', 'en', 1, 'https://ror.org/052gh5147 Tenagra Observatories'), (59244, 'https://ror.org/052grs779', 'it', 1, 'https://ror.org/052grs779 Archivio di Stato del canton Ticino'), (59245, 'https://ror.org/052gt1g92', 'en', 1, 'https://ror.org/052gt1g92 Womens Fund of Hawaii'), (59246, 'https://ror.org/052gvyf59', 'en', 1, 'https://ror.org/052gvyf59 Right to Care'), (59247, 'https://ror.org/052jy0t06', 'en', 1, 'https://ror.org/052jy0t06 Körber Foundation Körber Stiftung'), (59248, 'https://ror.org/052kzcg37', 'en', 1, 'https://ror.org/052kzcg37 Indian Plywood Industries Research and Training Institute'), (59249, 'https://ror.org/052m56d38', 'en', 1, 'https://ror.org/052m56d38 Whaleman Foundation'), (59250, 'https://ror.org/052p9pa08', 'en', 1, 'https://ror.org/052p9pa08 Theatre Library Association'), (59251, 'https://ror.org/052pcv042', 'no_lang_code', 1, 'https://ror.org/052pcv042 TCC (Czechia)'), (59252, 'https://ror.org/052rbc006', 'it', 1, 'https://ror.org/052rbc006 Fondazione Oronzio e Niccolò De Nora'), (59253, 'https://ror.org/052rfqh94', 'no_lang_code', 1, 'https://ror.org/052rfqh94 Heunisch Brno (Czechia)'), (59254, 'https://ror.org/052rvpm80', 'en', 1, 'https://ror.org/052rvpm80 Chattahoochee Valley Community College'), (59255, 'https://ror.org/052vggk81', 'en', 1, 'https://ror.org/052vggk81 Central Scientific Research Automobile and Engine Institute Центра́льный нау́чно-иссле́довательский автомоби́льный и автомото́рный институ́т'), (59256, 'https://ror.org/052x2sm38', 'en', 1, 'https://ror.org/052x2sm38 Mississippi Department of Human Services'), (59257, 'https://ror.org/052xrhc79', 'de', 1, 'https://ror.org/052xrhc79 Gymnasium am Münsterplatz'), (59258, 'https://ror.org/052ykh203', 'en', 1, 'https://ror.org/052ykh203 Ability Connection Colorado'), (59259, 'https://ror.org/052yn8h13', 'no_lang_code', 1, 'https://ror.org/052yn8h13 Riga (France)'), (59260, 'https://ror.org/0532w5z20', 'en', 1, 'https://ror.org/0532w5z20 European Institute for Legal Psychology Europäisches Institut für Rechtspsychologie'), (59261, 'https://ror.org/05337tn35', 'no_lang_code', 1, 'https://ror.org/05337tn35 Beleco (Czechia)'), (59262, 'https://ror.org/0534tk365', 'no_lang_code', 1, 'https://ror.org/0534tk365 Zemědělská a Dopravní Technika (Czechia)'), (59263, 'https://ror.org/05353z471', 'no_lang_code', 1, 'https://ror.org/05353z471 Pro-Aqua (Czechia)'), (59264, 'https://ror.org/0535wgn29', 'en', 1, 'https://ror.org/0535wgn29 Mary Rose Trust'), (59265, 'https://ror.org/0536ez586', 'no_lang_code', 1, 'https://ror.org/0536ez586 NWB Sensors (United States)'), (59266, 'https://ror.org/053a16167', 'no_lang_code', 1, 'https://ror.org/053a16167 IRT Group (Australia)'), (59267, 'https://ror.org/053abfv27', 'en', 1, 'https://ror.org/053abfv27 Canadian Automotive Partnership Council Conseil du Partenariat du Secteur Canadien de l''Automobile'), (59268, 'https://ror.org/053abxt44', 'en', 1, 'https://ror.org/053abxt44 Willard L. Eccles Charitable Foundation'), (59269, 'https://ror.org/053bhme26', 'en', 1, 'https://ror.org/053bhme26 Technological Design Institute of Scientific Instrument Engineering'), (59270, 'https://ror.org/053cfm252', 'en', 1, 'https://ror.org/053cfm252 Institute for Conflict Transformation and Peacebuilding'), (59271, 'https://ror.org/053hq6b52', 'en', 1, 'https://ror.org/053hq6b52 Charlotte Metro Credit Union'), (59272, 'https://ror.org/053j1ga94', 'no_lang_code', 1, 'https://ror.org/053j1ga94 Sedium (Czechia)'), (59273, 'https://ror.org/053jawq64', 'no_lang_code', 1, 'https://ror.org/053jawq64 Centaurea (Czechia)'), (59274, 'https://ror.org/053k40h13', 'no_lang_code', 1, 'https://ror.org/053k40h13 Chevron (Netherlands)'), (59275, 'https://ror.org/053rebd44', 'it', 1, 'https://ror.org/053rebd44 Associazione Frantz Fanon'), (59276, 'https://ror.org/053tfgv50', 'no_lang_code', 1, 'https://ror.org/053tfgv50 Laboratoires Nogues (France)'), (59277, 'https://ror.org/053tymx43', 'cs', 1, 'https://ror.org/053tymx43 Československá Obchodní Banka'), (59278, 'https://ror.org/053v42m50', 'no_lang_code', 1, 'https://ror.org/053v42m50 BrainScope (Czechia)'), (59279, 'https://ror.org/0541hm480', 'de', 1, 'https://ror.org/0541hm480 Stadtbibliothek Winterthur'), (59280, 'https://ror.org/0542dkz21', 'en', 1, 'https://ror.org/0542dkz21 Czech Environmental Partnership Foundation Nadace Partnerství'), (59281, 'https://ror.org/05434yv04', 'de', 1, 'https://ror.org/05434yv04 Pestalozzianum'), (59282, 'https://ror.org/054484h93', 'en', 1, 'https://ror.org/054484h93 VA Portland Health Care System'), (59283, 'https://ror.org/0546ny985', 'en', 1, 'https://ror.org/0546ny985 Adriatic Research Institute'), (59284, 'https://ror.org/054746w96', 'no_lang_code', 1, 'https://ror.org/054746w96 Columna Centrum'), (59285, 'https://ror.org/0549g6963', 'nl', 1, 'https://ror.org/0549g6963 Stichting Euregio Maas-Rijn'), (59286, 'https://ror.org/0549nvv93', 'no_lang_code', 1, 'https://ror.org/0549nvv93 Vws Memsep (Czechia)'), (59287, 'https://ror.org/054bf3454', 'no_lang_code', 1, 'https://ror.org/054bf3454 Baxter (Australia)'), (59288, 'https://ror.org/054chcy06', 'no_lang_code', 1, 'https://ror.org/054chcy06 Hong Kong Standards and Testing Centre (China) 香港标准及检定中心'), (59289, 'https://ror.org/054fjrs33', 'no_lang_code', 1, 'https://ror.org/054fjrs33 Lutz Medical Engineering (Switzerland)'), (59290, 'https://ror.org/054hgcr68', 'no_lang_code', 1, 'https://ror.org/054hgcr68 Chemoprojekt (Czechia)'), (59291, 'https://ror.org/054jfj847', 'en', 1, 'https://ror.org/054jfj847 Banque nationale de Belgique Belgische Nationalbank National Bank of Belgium Nationale Bank van België'), (59292, 'https://ror.org/054jtdj73', 'no_lang_code', 1, 'https://ror.org/054jtdj73 IQ Structures (Czechia)'), (59293, 'https://ror.org/054kry619', 'en', 1, 'https://ror.org/054kry619 Korean Society of Medical Ultrasound'), (59294, 'https://ror.org/054n2k594', 'en', 1, 'https://ror.org/054n2k594 Medical Biobank Swiss Institute'), (59295, 'https://ror.org/054nzx465', 'no_lang_code', 1, 'https://ror.org/054nzx465 Ferring Pharmaceuticals (Czechia)'), (59296, 'https://ror.org/054rd8b94', 'no_lang_code', 1, 'https://ror.org/054rd8b94 ARKO Consult (Czechia)'), (59297, 'https://ror.org/054tjtv41', 'no_lang_code', 1, 'https://ror.org/054tjtv41 Motor Jikov (Czechia)'), (59298, 'https://ror.org/054tqs184', 'no_lang_code', 1, 'https://ror.org/054tqs184 Teramed (Czechia)'), (59299, 'https://ror.org/054v7pb78', 'no_lang_code', 1, 'https://ror.org/054v7pb78 Teva Pharmaceuticals (Czechia)'), (59300, 'https://ror.org/054vyqa42', 'sv', 1, 'https://ror.org/054vyqa42 Sven och Dagmar Salén Stiftelse'), (59301, 'https://ror.org/054w3nm73', 'en', 1, 'https://ror.org/054w3nm73 VA Mid-Atlantic Health Care Network'), (59302, 'https://ror.org/054xw4485', 'no_lang_code', 1, 'https://ror.org/054xw4485 Tenzováhy (Czechia)'), (59303, 'https://ror.org/054xxne07', 'no_lang_code', 1, 'https://ror.org/054xxne07 CNH Industrial (United Kingdom)'), (59304, 'https://ror.org/054zjbk29', 'no_lang_code', 1, 'https://ror.org/054zjbk29 ISIS Medical (France)'), (59305, 'https://ror.org/05506bz51', 'no_lang_code', 1, 'https://ror.org/05506bz51 Sofigen (Czechia)'), (59306, 'https://ror.org/0550sx673', 'no_lang_code', 1, 'https://ror.org/0550sx673 Racom (Czechia)'), (59307, 'https://ror.org/05515m078', 'no_lang_code', 1, 'https://ror.org/05515m078 Značky Plzeň (Czechia)'), (59308, 'https://ror.org/0551g0798', 'de', 1, 'https://ror.org/0551g0798 Schweizerische Pastoralsoziologische Institut'), (59309, 'https://ror.org/0552cbh05', 'no_lang_code', 1, 'https://ror.org/0552cbh05 B. Braun (Switzerland)'), (59310, 'https://ror.org/05539km59', 'en', 1, 'https://ror.org/05539km59 Sylvia and Charles Viertel Charitable Foundation'), (59311, 'https://ror.org/0553gct64', 'no_lang_code', 1, 'https://ror.org/0553gct64 Catalina Sea Ranch (United States)'), (59312, 'https://ror.org/0554h3h71', 'no_lang_code', 1, 'https://ror.org/0554h3h71 Ego Zlin (Czechia)'), (59313, 'https://ror.org/05582qg24', 'no_lang_code', 1, 'https://ror.org/05582qg24 Medical Prognosis Institute (Denmark)'), (59314, 'https://ror.org/0558ky526', 'cs', 1, 'https://ror.org/0558ky526 Městská Nemocnice Ostrava'), (59315, 'https://ror.org/05598yn68', 'no_lang_code', 1, 'https://ror.org/05598yn68 Ringier (Switzerland)'), (59316, 'https://ror.org/0559k7072', 'no_lang_code', 1, 'https://ror.org/0559k7072 Moria (France)'), (59317, 'https://ror.org/055azc127', 'no_lang_code', 1, 'https://ror.org/055azc127 MinMaxMedical (France)'), (59318, 'https://ror.org/055bk3y86', 'no_lang_code', 1, 'https://ror.org/055bk3y86 Skill (Czechia)'), (59319, 'https://ror.org/055c6bd74', 'no_lang_code', 1, 'https://ror.org/055c6bd74 Veeco (United States)'), (59320, 'https://ror.org/055de8j75', 'en', 1, 'https://ror.org/055de8j75 Tag Institute for Social Development'), (59321, 'https://ror.org/055df5q89', 'no_lang_code', 1, 'https://ror.org/055df5q89 Vuvl (Czechia)'), (59322, 'https://ror.org/055fj9x85', 'fr', 1, 'https://ror.org/055fj9x85 Musée Romain d''Avenches'), (59323, 'https://ror.org/055g2sd79', 'de', 1, 'https://ror.org/055g2sd79 Sozialwissenschaftliche Forschung und Beratung'), (59324, 'https://ror.org/055g4ha47', 'cs', 1, 'https://ror.org/055g4ha47 Oblastní muzeum v Chomutově'), (59325, 'https://ror.org/055gjr823', 'de', 1, 'https://ror.org/055gjr823 Institut für Sozialwissenschaftliche Analysen und Beratung'), (59326, 'https://ror.org/055h4jb02', 'no_lang_code', 1, 'https://ror.org/055h4jb02 P and S (Czechia)'), (59327, 'https://ror.org/055hhfr85', 'en', 1, 'https://ror.org/055hhfr85 Cornell Cooperative Extension Association of Jefferson County'), (59328, 'https://ror.org/055hmgs82', 'no_lang_code', 1, 'https://ror.org/055hmgs82 Network Group (Czechia)'), (59329, 'https://ror.org/055kj8f51', 'en', 1, 'https://ror.org/055kj8f51 Mitchell School District'), (59330, 'https://ror.org/055m4g098', 'no_lang_code', 1, 'https://ror.org/055m4g098 E and H Services (Czechia)'), (59331, 'https://ror.org/055mp5r09', 'en', 1, 'https://ror.org/055mp5r09 Pikes Peak Community Foundation'), (59332, 'https://ror.org/055p3bc36', 'no_lang_code', 1, 'https://ror.org/055p3bc36 Teknia (Czechia)'), (59333, 'https://ror.org/055phnh91', 'en', 1, 'https://ror.org/055phnh91 Linka bezpečí Safety Line Helpline'), (59334, 'https://ror.org/055q9j131', 'no_lang_code', 1, 'https://ror.org/055q9j131 Moraprim (Czechia)'), (59335, 'https://ror.org/055tc0a50', 'no_lang_code', 1, 'https://ror.org/055tc0a50 Central European Biosystems (Czechia)'), (59336, 'https://ror.org/055vwz968', 'en', 1, 'https://ror.org/055vwz968 Blansko Hospital Nemocnice Blansko'), (59337, 'https://ror.org/055wsxp82', 'no_lang_code', 1, 'https://ror.org/055wsxp82 Divadelní Noviny (Czechia)'), (59338, 'https://ror.org/055y0va06', 'sv', 1, 'https://ror.org/055y0va06 Jerringfonden'), (59339, 'https://ror.org/055y56x88', 'en', 1, 'https://ror.org/055y56x88 Stein Resort'), (59340, 'https://ror.org/056028189', 'no_lang_code', 1, 'https://ror.org/056028189 Swietelsky (Austria)'), (59341, 'https://ror.org/0560m4761', 'fr', 1, 'https://ror.org/0560m4761 Institut de Prise en Charge de l''Obésité en Alsace'), (59342, 'https://ror.org/0561waf62', 'no_lang_code', 1, 'https://ror.org/0561waf62 Laboratory Imaging (Czechia)'), (59343, 'https://ror.org/0568dpm54', 'en', 1, 'https://ror.org/0568dpm54 Drug Enforcement Administration'), (59344, 'https://ror.org/056d4s875', 'fr', 1, 'https://ror.org/056d4s875 Société Académique Vaudoise'), (59345, 'https://ror.org/056ezyb19', 'en', 1, 'https://ror.org/056ezyb19 Society of Analytical Psychology'), (59346, 'https://ror.org/056f7w112', 'en', 1, 'https://ror.org/056f7w112 West Health'), (59347, 'https://ror.org/056gmd082', 'no_lang_code', 1, 'https://ror.org/056gmd082 GfK (Czechia)'), (59348, 'https://ror.org/056hf8h17', 'en', 1, 'https://ror.org/056hf8h17 Ministry of Commerce of the People''s Republic of China 对外贸易经济合作部'), (59349, 'https://ror.org/056jy0m49', 'en', 1, 'https://ror.org/056jy0m49 Sons of Norway'), (59350, 'https://ror.org/056kzn313', 'cs', 1, 'https://ror.org/056kzn313 Národní Ústav Lidové Kultury'), (59351, 'https://ror.org/056mcm922', 'en', 1, 'https://ror.org/056mcm922 Grain Inspection, Packers and Stockyards Administration'), (59352, 'https://ror.org/056p5a020', 'no_lang_code', 1, 'https://ror.org/056p5a020 SVS FEM (Czechia)'), (59353, 'https://ror.org/056rxsw51', 'en', 1, 'https://ror.org/056rxsw51 Advanced Life Science Institute 先端生命科学研究所'), (59354, 'https://ror.org/056tpcd64', 'no_lang_code', 1, 'https://ror.org/056tpcd64 Ageris (Czechia)'), (59355, 'https://ror.org/056v7cj11', 'fr', 1, 'https://ror.org/056v7cj11 Archives de l''ancien Évêché de Bâle'), (59356, 'https://ror.org/056vxkd58', 'en', 1, 'https://ror.org/056vxkd58 CzechTrade Česká Agentura na Podporu Obchodu'), (59357, 'https://ror.org/056w8zz77', 'en', 1, 'https://ror.org/056w8zz77 Association chiropratique canadienne Canadian Chiropractic Association'), (59358, 'https://ror.org/056xr2125', 'en', 1, 'https://ror.org/056xr2125 Finnish Medical Society Duodecim Suomalainen Lääkäriseura Duodecim'), (59359, 'https://ror.org/056y2jv89', 'cs', 1, 'https://ror.org/056y2jv89 Jazykovědné Sdružení České Republiky'), (59360, 'https://ror.org/056yng194', 'no_lang_code', 1, 'https://ror.org/056yng194 Stapro (Czechia)'), (59361, 'https://ror.org/057040g82', 'no_lang_code', 1, 'https://ror.org/057040g82 Semtech (Canada)'), (59362, 'https://ror.org/0571c2151', 'no_lang_code', 1, 'https://ror.org/0571c2151 P-D Refractories (Germany)'), (59363, 'https://ror.org/0571stx19', 'de', 1, 'https://ror.org/0571stx19 Schweizerischen Neurologischen Gesellschaft Société Suisse de Neurologie'), (59364, 'https://ror.org/0573v8y73', 'it', 1, 'https://ror.org/0573v8y73 Fondazione Bolle di Magadino'), (59365, 'https://ror.org/0574hzg66', 'en', 1, 'https://ror.org/0574hzg66 Yrjö Jahnsson Foundation Yrjö Jahnssonin säätiö'), (59366, 'https://ror.org/05757bv38', 'no_lang_code', 1, 'https://ror.org/05757bv38 Fomex Team (Czechia)'), (59367, 'https://ror.org/0575b2v60', 'en', 1, 'https://ror.org/0575b2v60 Society of Systematic Biologists'), (59368, 'https://ror.org/057721542', 'no_lang_code', 1, 'https://ror.org/057721542 TeamScape (United States)'), (59369, 'https://ror.org/05774jg90', 'no_lang_code', 1, 'https://ror.org/05774jg90 NAUPO (Czechia)'), (59370, 'https://ror.org/0579kbh86', 'no_lang_code', 1, 'https://ror.org/0579kbh86 AkzoNobel (United States)'), (59371, 'https://ror.org/057a4a874', 'no_lang_code', 1, 'https://ror.org/057a4a874 Sutherland HDL (United States)'), (59372, 'https://ror.org/057aydj06', 'no_lang_code', 1, 'https://ror.org/057aydj06 Robert Bosch (Netherlands)'), (59373, 'https://ror.org/057d4hm13', 'fr', 1, 'https://ror.org/057d4hm13 Installations Magasins Gerard Rocquet'), (59374, 'https://ror.org/057dvs720', 'sv', 1, 'https://ror.org/057dvs720 Stiftelsen Erik and Lily Philipsons Minnesfond'), (59375, 'https://ror.org/057fxch52', 'en', 1, 'https://ror.org/057fxch52 Matthew 25'), (59376, 'https://ror.org/057h5ne89', 'no_lang_code', 1, 'https://ror.org/057h5ne89 Robert-Grandpierre et Rapp (Switzerland)'), (59377, 'https://ror.org/057mgt359', 'en', 1, 'https://ror.org/057mgt359 Institute of Cryobiology and Food Technology'), (59378, 'https://ror.org/057mm6758', 'no_lang_code', 1, 'https://ror.org/057mm6758 MEI Technologies (United States)'), (59379, 'https://ror.org/057p1hr03', 'de', 1, 'https://ror.org/057p1hr03 Kantonsarchäologie Aargau'), (59380, 'https://ror.org/057qqaz54', 'no_lang_code', 1, 'https://ror.org/057qqaz54 Pražské služby (Czechia)'), (59381, 'https://ror.org/057wy2y58', 'en', 1, 'https://ror.org/057wy2y58 European Platform of Women Scientists'), (59382, 'https://ror.org/057zjf715', 'en', 1, 'https://ror.org/057zjf715 Centre for Applied Studies in International Negotiations'), (59383, 'https://ror.org/0584khc13', 'no_lang_code', 1, 'https://ror.org/0584khc13 Agrospol Velká Bystřice (Czechia)'), (59384, 'https://ror.org/0586vk124', 'en', 1, 'https://ror.org/0586vk124 CGB Laboratory CGB laboratoř'), (59385, 'https://ror.org/0587n1k08', 'no_lang_code', 1, 'https://ror.org/0587n1k08 Prakab Prazska Kabelovna (Czechia)'), (59386, 'https://ror.org/058g1v616', 'no_lang_code', 1, 'https://ror.org/058g1v616 Madeta (Czechia)'), (59387, 'https://ror.org/058ke7e65', 'no_lang_code', 1, 'https://ror.org/058ke7e65 Rybářství Hluboká (Czechia)'), (59388, 'https://ror.org/058kkmh35', 'en', 1, 'https://ror.org/058kkmh35 Asbestos Institute'), (59389, 'https://ror.org/058krbm80', 'de', 1, 'https://ror.org/058krbm80 Staatsarchiv Nidwalden'), (59390, 'https://ror.org/058pgtg13', 'en', 1, 'https://ror.org/058pgtg13 Evelina London Children''s Healthcare'), (59391, 'https://ror.org/058qzh392', 'en', 1, 'https://ror.org/058qzh392 Tan Kah Kee Foundation'), (59392, 'https://ror.org/058tqt210', 'no_lang_code', 1, 'https://ror.org/058tqt210 Gallopro (Czechia)'), (59393, 'https://ror.org/058xqms97', 'es', 1, 'https://ror.org/058xqms97 Instituto de Física del Litoral'), (59394, 'https://ror.org/058yerw52', 'en', 1, 'https://ror.org/058yerw52 CRC CARE'), (59395, 'https://ror.org/058ypfn29', 'cs', 1, 'https://ror.org/058ypfn29 Diecéze litoměřická'), (59396, 'https://ror.org/059091v77', 'fr', 1, 'https://ror.org/059091v77 Onco Lille'), (59397, 'https://ror.org/0590mw537', 'en', 1, 'https://ror.org/0590mw537 Ministry of Emergency Situations Министерство по делам гражданской обороны, чрезвычайным ситуациям и ликвидации последствий стихийных бедствий'), (59398, 'https://ror.org/05923xh51', 'en', 1, 'https://ror.org/05923xh51 Ludwig Cancer Research'), (59399, 'https://ror.org/0592xtw71', 'en', 1, 'https://ror.org/0592xtw71 Czech Society Of International Law Česká společnost pro mezinárodní právo'), (59400, 'https://ror.org/0593djr05', 'no_lang_code', 1, 'https://ror.org/0593djr05 Quality Quantity Time (Czechia)'), (59401, 'https://ror.org/0593mby10', 'en', 1, 'https://ror.org/0593mby10 Finnish Medical Foundation Suomen Lääketieteen Säätiö'), (59402, 'https://ror.org/0593r9g81', 'en', 1, 'https://ror.org/0593r9g81 Vegetables New Zealand'), (59403, 'https://ror.org/0594rzx21', 'no_lang_code', 1, 'https://ror.org/0594rzx21 SIS Medical (Switzerland)'), (59404, 'https://ror.org/05972na11', 'no_lang_code', 1, 'https://ror.org/05972na11 CryoLife (United Kingdom)'), (59405, 'https://ror.org/0597v6438', 'en', 1, 'https://ror.org/0597v6438 Institute for Economic Research and Policy Consulting Інститут економічних досліджень та політичних консультацій'), (59406, 'https://ror.org/05989vw47', 'en', 1, 'https://ror.org/05989vw47 Public Life Foundation of Owensboro'), (59407, 'https://ror.org/0598sdq75', 'en', 1, 'https://ror.org/0598sdq75 Hastings Community Foundation'), (59408, 'https://ror.org/059aa2e10', 'no_lang_code', 1, 'https://ror.org/059aa2e10 ČD Informační Systémy (Czechia)'), (59409, 'https://ror.org/059akse30', 'de', 1, 'https://ror.org/059akse30 Basler Afrika Bibliographien'), (59410, 'https://ror.org/059c3dd05', 'no_lang_code', 1, 'https://ror.org/059c3dd05 Issa Czech (Czechia)'), (59411, 'https://ror.org/059cchq73', 'no_lang_code', 1, 'https://ror.org/059cchq73 Knauf (Czechia)'), (59412, 'https://ror.org/059e60q69', 'en', 1, 'https://ror.org/059e60q69 Southern Taiwan Science Park 南部科學工業園區'), (59413, 'https://ror.org/059ehfk60', 'fr', 1, 'https://ror.org/059ehfk60 Société d’Installation Téléphonique et Signalisation'), (59414, 'https://ror.org/059fv9z04', 'en', 1, 'https://ror.org/059fv9z04 Fok Ying Tung Foundation'), (59415, 'https://ror.org/059g52507', 'no_lang_code', 1, 'https://ror.org/059g52507 3Bar Biologics (United States)'), (59416, 'https://ror.org/059hma273', 'no_lang_code', 1, 'https://ror.org/059hma273 Vums Legend (Czechia)'), (59417, 'https://ror.org/059jy0w68', 'no_lang_code', 1, 'https://ror.org/059jy0w68 HRA Pharma (France)'), (59418, 'https://ror.org/059mh1c03', 'en', 1, 'https://ror.org/059mh1c03 Institute for Biomedical Diagnostics and Research NALAZ'), (59419, 'https://ror.org/059nmw410', 'no_lang_code', 1, 'https://ror.org/059nmw410 LafargeHolcim (France)'), (59420, 'https://ror.org/059qamr21', 'en', 1, 'https://ror.org/059qamr21 Varkey Foundation'), (59421, 'https://ror.org/059qzhk26', 'fr', 1, 'https://ror.org/059qzhk26 Hôpital La Porte Verte'), (59422, 'https://ror.org/059r9r992', 'no_lang_code', 1, 'https://ror.org/059r9r992 Agrosoft Tábor (Czechia)'), (59423, 'https://ror.org/059sx8r46', 'no_lang_code', 1, 'https://ror.org/059sx8r46 Novo Business Consultants (Switzerland)'), (59424, 'https://ror.org/059tq0w82', 'no_lang_code', 1, 'https://ror.org/059tq0w82 Teva Pharmaceuticals (Ireland)'), (59425, 'https://ror.org/059v8t736', 'en', 1, 'https://ror.org/059v8t736 Sustainable Development Policy Institute'), (59426, 'https://ror.org/059w4gg22', 'en', 1, 'https://ror.org/059w4gg22 Village Veterinary Medical Center'), (59427, 'https://ror.org/059wezj60', 'no_lang_code', 1, 'https://ror.org/059wezj60 Medicalc Software (Czechia)'), (59428, 'https://ror.org/059xss029', 'no_lang_code', 1, 'https://ror.org/059xss029 Geodézie Ledeč nad Sázavou (Czechia)'), (59429, 'https://ror.org/059zyq877', 'no_lang_code', 1, 'https://ror.org/059zyq877 Oliva (Switzerland)'), (59430, 'https://ror.org/05a15vf47', 'en', 1, 'https://ror.org/05a15vf47 Oil Industry Development Board'), (59431, 'https://ror.org/05a2qqv55', 'no_lang_code', 1, 'https://ror.org/05a2qqv55 DIZ Bohemia (Czechia)'), (59432, 'https://ror.org/05a6fy491', 'no_lang_code', 1, 'https://ror.org/05a6fy491 Prometheus (Czechia)'), (59433, 'https://ror.org/05a73mk94', 'en', 1, 'https://ror.org/05a73mk94 Institut za poljoprivredu i turizam Poreč Institute of Agriculture and Tourism'), (59434, 'https://ror.org/05a9fs939', 'de', 1, 'https://ror.org/05a9fs939 Landwirtschaftliches Zentrum Liebegg'), (59435, 'https://ror.org/05aaf8p37', 'no_lang_code', 1, 'https://ror.org/05aaf8p37 Pivo Praha (Czechia)'), (59436, 'https://ror.org/05ad0gz88', 'en', 1, 'https://ror.org/05ad0gz88 Institute for Legal Studies MTA Társadalomtudományi Kutatóközpont Jogtudományi Intézet'), (59437, 'https://ror.org/05adwpb80', 'en', 1, 'https://ror.org/05adwpb80 Regional Development Agency of South Bohemia'), (59438, 'https://ror.org/05ae3xr78', 'en', 1, 'https://ror.org/05ae3xr78 Ready Mixed Concrete Research and Education Foundation'), (59439, 'https://ror.org/05afyvv15', 'no_lang_code', 1, 'https://ror.org/05afyvv15 Sonberk (Czechia)'), (59440, 'https://ror.org/05ah2fk15', 'cs', 1, 'https://ror.org/05ah2fk15 Česká Spořitelna'), (59441, 'https://ror.org/05ak1kg07', 'en', 1, 'https://ror.org/05ak1kg07 Foundation for Japanese Chemical Research 公益財団法人日本化学研究会'), (59442, 'https://ror.org/05akn9t25', 'no_lang_code', 1, 'https://ror.org/05akn9t25 Polypress (Czechia)'), (59443, 'https://ror.org/05akyca73', 'en', 1, 'https://ror.org/05akyca73 Agrisus Foundation – Sustainable Agriculture Fundação Agrisus'), (59444, 'https://ror.org/05am0hk18', 'de', 1, 'https://ror.org/05am0hk18 Rietberg Museum'), (59445, 'https://ror.org/05amca937', 'en', 1, 'https://ror.org/05amca937 Purple Martin Conservation Association'), (59446, 'https://ror.org/05amv9q86', 'no_lang_code', 1, 'https://ror.org/05amv9q86 Kudelski (United States)'), (59447, 'https://ror.org/05ancvs60', 'en', 1, 'https://ror.org/05ancvs60 Siloam Eye Hospital 실로암안과병원'), (59448, 'https://ror.org/05anxz392', 'no_lang_code', 1, 'https://ror.org/05anxz392 Strojírny Podzimek (Czechia)'), (59449, 'https://ror.org/05ap66461', 'en', 1, 'https://ror.org/05ap66461 University School'), (59450, 'https://ror.org/05aq07d91', 'en', 1, 'https://ror.org/05aq07d91 Abbey library of Saint Gall Stiftsbibliothek St. Gallen'), (59451, 'https://ror.org/05aq4y378', 'en', 1, 'https://ror.org/05aq4y378 Clinica Valle Giulia'), (59452, 'https://ror.org/05aqqa384', 'no_lang_code', 1, 'https://ror.org/05aqqa384 HET (Czechia)'), (59453, 'https://ror.org/05av0zp13', 'no_lang_code', 1, 'https://ror.org/05av0zp13 Honeywell (Switzerland)'), (59454, 'https://ror.org/05avhxb06', 'de', 1, 'https://ror.org/05avhxb06 Museum im Lagerhaus'), (59455, 'https://ror.org/05aw35e64', 'no_lang_code', 1, 'https://ror.org/05aw35e64 Matériel Médical (France)'), (59456, 'https://ror.org/05ax3zs14', 'no_lang_code', 1, 'https://ror.org/05ax3zs14 Abzena (United States)'), (59457, 'https://ror.org/05axc5t79', 'no_lang_code', 1, 'https://ror.org/05axc5t79 MR&D (Italy)'), (59458, 'https://ror.org/05axzm004', 'en', 1, 'https://ror.org/05axzm004 Acquisition, Technology & Logistics Agency 防衛装備庁'), (59459, 'https://ror.org/05ayx2752', 'no_lang_code', 1, 'https://ror.org/05ayx2752 Inser (Switzerland)'), (59460, 'https://ror.org/05b1fze65', 'cs', 1, 'https://ror.org/05b1fze65 Sdružení Celiaků České Republiky'), (59461, 'https://ror.org/05b3j8482', 'no_lang_code', 1, 'https://ror.org/05b3j8482 Unex (Czechia)'), (59462, 'https://ror.org/05b3xjz72', 'no_lang_code', 1, 'https://ror.org/05b3xjz72 Reacont (Czechia)'), (59463, 'https://ror.org/05b409c22', 'en', 1, 'https://ror.org/05b409c22 Association of Clinical Scientists'), (59464, 'https://ror.org/05b4e2111', 'cs', 1, 'https://ror.org/05b4e2111 National Stud at Kladruby nad Labem, Národní hřebčín Kladruby nad Labem'), (59465, 'https://ror.org/05b50ej63', 'es', 1, 'https://ror.org/05b50ej63 Instituto de Investigaciones Biológicas Clemente Estable'), (59466, 'https://ror.org/05b71ga35', 'no_lang_code', 1, 'https://ror.org/05b71ga35 Km - Kámen (Czechia)'), (59467, 'https://ror.org/05b9eba69', 'en', 1, 'https://ror.org/05b9eba69 Institute for Soil Science and Agricultural Chemistry Институт почвоведения и агрохимии СО РАН'), (59468, 'https://ror.org/05bb2ws56', 'no_lang_code', 1, 'https://ror.org/05bb2ws56 ZUD (Czechia)'), (59469, 'https://ror.org/05bcrb290', 'en', 1, 'https://ror.org/05bcrb290 Franklinton Gardens'), (59470, 'https://ror.org/05bda2x91', 'en', 1, 'https://ror.org/05bda2x91 Sidgmore Family Foundation'), (59471, 'https://ror.org/05bdnn452', 'no_lang_code', 1, 'https://ror.org/05bdnn452 Bohemiaseed (Czechia)'), (59472, 'https://ror.org/05behat95', 'en', 1, 'https://ror.org/05behat95 Gymnázium Jana Palacha Jan Palach Private High School'), (59473, 'https://ror.org/05bfra354', 'no_lang_code', 1, 'https://ror.org/05bfra354 PTV (Czechia)'), (59474, 'https://ror.org/05bg8j971', 'en', 1, 'https://ror.org/05bg8j971 American Oil Chemists Society'), (59475, 'https://ror.org/05bgg7k92', 'en', 1, 'https://ror.org/05bgg7k92 Stuart Foundation'), (59476, 'https://ror.org/05bgkkd24', 'de', 1, 'https://ror.org/05bgkkd24 Spital Lachen'), (59477, 'https://ror.org/05bgpbh03', 'no_lang_code', 1, 'https://ror.org/05bgpbh03 Vita Green Health Products (China) 維特健靈'), (59478, 'https://ror.org/05bh15594', 'no_lang_code', 1, 'https://ror.org/05bh15594 Odysea (United States)'), (59479, 'https://ror.org/05bhe6d02', 'no_lang_code', 1, 'https://ror.org/05bhe6d02 MSA Schweiz GmbH Mine Safety Appliances (Switzerland)'), (59480, 'https://ror.org/05bhj1f22', 'no_lang_code', 1, 'https://ror.org/05bhj1f22 Industrial Technology Systems (Czechia)'), (59481, 'https://ror.org/05bhnv771', 'en', 1, 'https://ror.org/05bhnv771 Board Institute'), (59482, 'https://ror.org/05bnbgj20', 'en', 1, 'https://ror.org/05bnbgj20 Sri Lanka Institute of Nanotechnology'), (59483, 'https://ror.org/05bqykp48', 'cs', 1, 'https://ror.org/05bqykp48 Nemocnice Třebíč'), (59484, 'https://ror.org/05bresr75', 'en', 1, 'https://ror.org/05bresr75 Pottstown Area Health and Wellness Foundation'), (59485, 'https://ror.org/05bs0r528', 'no_lang_code', 1, 'https://ror.org/05bs0r528 Ekopanely Servis (Czechia)'), (59486, 'https://ror.org/05bsp2531', 'en', 1, 'https://ror.org/05bsp2531 Elektronikas un datorzinātņu institūts Institute of Electronics and Computer Science'), (59487, 'https://ror.org/05bz35w69', 'cs', 1, 'https://ror.org/05bz35w69 Krkonošská Realitní'), (59488, 'https://ror.org/05bzvq648', 'no_lang_code', 1, 'https://ror.org/05bzvq648 BSS Architekten (Switzerland)'), (59489, 'https://ror.org/05c0m9m16', 'en', 1, 'https://ror.org/05c0m9m16 IBM Research - Africa'), (59490, 'https://ror.org/05c18y737', 'no_lang_code', 1, 'https://ror.org/05c18y737 Prous Institute for Biomedical Research (Spain)'), (59491, 'https://ror.org/05c2q0q08', 'no_lang_code', 1, 'https://ror.org/05c2q0q08 Applied Pharma Research (Switzerland)'), (59492, 'https://ror.org/05c5mh451', 'no_lang_code', 1, 'https://ror.org/05c5mh451 Glentor (Czechia)'), (59493, 'https://ror.org/05c84ff54', 'no_lang_code', 1, 'https://ror.org/05c84ff54 Sedlecký kaolin (Czechia)'), (59494, 'https://ror.org/05c87mw19', 'no_lang_code', 1, 'https://ror.org/05c87mw19 Vyome Biosciences (India)'), (59495, 'https://ror.org/05cbxy397', 'de', 1, 'https://ror.org/05cbxy397 Dialog Ethik'), (59496, 'https://ror.org/05ccjec47', 'cs', 1, 'https://ror.org/05ccjec47 Oblastní nemocnice Kolín'), (59497, 'https://ror.org/05ce10k61', 'de', 1, 'https://ror.org/05ce10k61 TCM-Klinik Bad Kötzting, TCM-Klinik Bad Kötzting, Erste deutsche Klinik für Traditionelle Chinesische Medizin'), (59498, 'https://ror.org/05cetd543', 'no_lang_code', 1, 'https://ror.org/05cetd543 Konami (United States)'), (59499, 'https://ror.org/05cf3m547', 'cs', 1, 'https://ror.org/05cf3m547 Nemocnice Znojmo'), (59500, 'https://ror.org/05chynf20', 'no_lang_code', 1, 'https://ror.org/05chynf20 Designfoods (Czechia)'), (59501, 'https://ror.org/05cjrnv40', 'es', 1, 'https://ror.org/05cjrnv40 Gobierno de La Rioja'), (59502, 'https://ror.org/05cpjt441', 'no_lang_code', 1, 'https://ror.org/05cpjt441 FEM Consulting (Czechia)'), (59503, 'https://ror.org/05cpqn402', 'no_lang_code', 1, 'https://ror.org/05cpqn402 ZPT Vigantice (Czechia)'), (59504, 'https://ror.org/05crbhr50', 'fr', 1, 'https://ror.org/05crbhr50 Musée des beaux-arts de La Chaux-de-Fonds'), (59505, 'https://ror.org/05crsng41', 'no_lang_code', 1, 'https://ror.org/05crsng41 Maxi-Steam (Australia)'), (59506, 'https://ror.org/05csgyk98', 'en', 1, 'https://ror.org/05csgyk98 Egyptian Government'), (59507, 'https://ror.org/05ctpkb66', 'en', 1, 'https://ror.org/05ctpkb66 Pendleton and Elisabeth Carey Miller Charitable Foundation'), (59508, 'https://ror.org/05cv4ab20', 'en', 1, 'https://ror.org/05cv4ab20 Poultry Science Association'), (59509, 'https://ror.org/05cvapf18', 'no_lang_code', 1, 'https://ror.org/05cvapf18 Gesko (Czechia)'), (59510, 'https://ror.org/05cvdz556', 'cs', 1, 'https://ror.org/05cvdz556 Muzeum Jana Amose Komenského'), (59511, 'https://ror.org/05cwxhv57', 'en', 1, 'https://ror.org/05cwxhv57 V.V. Lukianov Orel Law Institute of the Ministry of Internal Affairs ОРЛОВСКИЙ ЮРИДИЧЕСКИЙ ИНСТИТУТ МИНИСТЕРСТВА ВНУТРЕННИХ ДЕЛ РОССИЙСКОЙ ФЕДЕРАЦИИ'), (59512, 'https://ror.org/05d1wpf45', 'en', 1, 'https://ror.org/05d1wpf45 Islamic Azad University, Dezful Branch دانشگاه آزاد اسلامی، دزفول'), (59513, 'https://ror.org/05d34d003', 'fr', 1, 'https://ror.org/05d34d003 Institut Supérieur de Plasturgie d''Alençon'), (59514, 'https://ror.org/05d3q8024', 'no_lang_code', 1, 'https://ror.org/05d3q8024 SmartMotion (Czechia)'), (59515, 'https://ror.org/05d5vda41', 'no_lang_code', 1, 'https://ror.org/05d5vda41 Nafigate Corporation (Czechia)'), (59516, 'https://ror.org/05d64cx77', 'en', 1, 'https://ror.org/05d64cx77 Wellcome Trust Centre for the History of Medicine'), (59517, 'https://ror.org/05d6awd42', 'no_lang_code', 1, 'https://ror.org/05d6awd42 Bachem (Switzerland)'), (59518, 'https://ror.org/05d7v2265', 'no_lang_code', 1, 'https://ror.org/05d7v2265 Hanlun Information (China) 兴伦信息有限公司'), (59519, 'https://ror.org/05d81xr24', 'en', 1, 'https://ror.org/05d81xr24 National Organization for the Professional Advancement of Black Chemists and Chemical Engineers'), (59520, 'https://ror.org/05d9rr978', 'fr', 1, 'https://ror.org/05d9rr978 Hôpital de l''enfance'), (59521, 'https://ror.org/05dad0z78', 'de', 1, 'https://ror.org/05dad0z78 ICM Chemnitz'), (59522, 'https://ror.org/05dart064', 'no_lang_code', 1, 'https://ror.org/05dart064 Továrna Hasicí Techniky Polička (Czechia)'), (59523, 'https://ror.org/05dbs4128', 'no_lang_code', 1, 'https://ror.org/05dbs4128 O2 Czech Republic (Czechia)'), (59524, 'https://ror.org/05dd7v362', 'en', 1, 'https://ror.org/05dd7v362 DermSurgery Associates'), (59525, 'https://ror.org/05ddm8177', 'en', 1, 'https://ror.org/05ddm8177 Center of Southwest Culture'), (59526, 'https://ror.org/05de2f050', 'no_lang_code', 1, 'https://ror.org/05de2f050 ČKD Blansko (Czechia)'), (59527, 'https://ror.org/05dgj4s02', 'en', 1, 'https://ror.org/05dgj4s02 Association for Jewish Studies'), (59528, 'https://ror.org/05djstx53', 'en', 1, 'https://ror.org/05djstx53 Institute of Applied Physics Институт прикладной физики Национальной академии наук Беларуси'), (59529, 'https://ror.org/05dm26171', 'en', 1, 'https://ror.org/05dm26171 Behavior Genetics Association'), (59530, 'https://ror.org/05dn7bp33', 'en', 1, 'https://ror.org/05dn7bp33 Hartmann Müller Foundation'), (59531, 'https://ror.org/05dp2c867', 'no_lang_code', 1, 'https://ror.org/05dp2c867 Vale (United Kingdom)'), (59532, 'https://ror.org/05dq51n70', 'no_lang_code', 1, 'https://ror.org/05dq51n70 Filák (Czechia)'), (59533, 'https://ror.org/05drp1a22', 'en', 1, 'https://ror.org/05drp1a22 Veolia Environmental Trust'), (59534, 'https://ror.org/05dv4bz40', 'en', 1, 'https://ror.org/05dv4bz40 Institutul Naţional de Cercetare-Dezvoltare pentru Fizică Tehnică National Institute of Research and Development for Technical Physics'), (59535, 'https://ror.org/05dvmdf20', 'en', 1, 'https://ror.org/05dvmdf20 Stop Cancer'), (59536, 'https://ror.org/05dwj5629', 'no_lang_code', 1, 'https://ror.org/05dwj5629 Standard General (United States)'), (59537, 'https://ror.org/05dyyxv94', 'no_lang_code', 1, 'https://ror.org/05dyyxv94 Ekostavby Brno (Czechia)'), (59538, 'https://ror.org/05dz4gs85', 'no_lang_code', 1, 'https://ror.org/05dz4gs85 Deutsche Telekom (Czechia)'), (59539, 'https://ror.org/05dze7277', 'en', 1, 'https://ror.org/05dze7277 Stanley Thomas Johnson Foundation Stanley Thomas Johnson Stiftung'), (59540, 'https://ror.org/05e1aft90', 'en', 1, 'https://ror.org/05e1aft90 Hmong American Farmers Association'), (59541, 'https://ror.org/05e3xsx31', 'no_lang_code', 1, 'https://ror.org/05e3xsx31 Pragolet (Czechia)'), (59542, 'https://ror.org/05e6c8204', 'sv', 1, 'https://ror.org/05e6c8204 Svenska Parkinsonstiftelsen'), (59543, 'https://ror.org/05e6y9g54', 'en', 1, 'https://ror.org/05e6y9g54 Vostochniy Research Institute for Mining Safety Научный центр ВостНИИ по безопасности работ в горной промышленности'), (59544, 'https://ror.org/05e83v334', 'no_lang_code', 1, 'https://ror.org/05e83v334 Sottas Formative Works (Switzerland)'), (59545, 'https://ror.org/05e8cby31', 'no_lang_code', 1, 'https://ror.org/05e8cby31 Flury and Giuliani (Switzerland)'), (59546, 'https://ror.org/05eayn621', 'no_lang_code', 1, 'https://ror.org/05eayn621 INFRAS (Switzerland)'), (59547, 'https://ror.org/05ee8a898', 'en', 1, 'https://ror.org/05ee8a898 State Titanium Research and Design Institute ГОСУДАРСТВЕННЫЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ И ПРОЕКТНЫЙ ИНСТИТУТ ТИТАНА'), (59548, 'https://ror.org/05ee8pt56', 'en', 1, 'https://ror.org/05ee8pt56 Whiteman Foundation'), (59549, 'https://ror.org/05ef3yq64', 'cs', 1, 'https://ror.org/05ef3yq64 Academia Nakladatelství'), (59550, 'https://ror.org/05eft0257', 'no_lang_code', 1, 'https://ror.org/05eft0257 Hytech (Czechia)'), (59551, 'https://ror.org/05egh1w37', 'no_lang_code', 1, 'https://ror.org/05egh1w37 Yarra Valley Water (Australia)'), (59552, 'https://ror.org/05ehreb88', 'en', 1, 'https://ror.org/05ehreb88 Pennsylvania Commission on Crime and Delinquency'), (59553, 'https://ror.org/05ej13b74', 'cs', 1, 'https://ror.org/05ej13b74 Národní Rada Osob se Zdravotním Postižením'), (59554, 'https://ror.org/05ejhgb17', 'fr', 1, 'https://ror.org/05ejhgb17 Clinique Valmont'), (59555, 'https://ror.org/05enwqt08', 'no_lang_code', 1, 'https://ror.org/05enwqt08 Real Eco Technik (Czechia)'), (59556, 'https://ror.org/05enx7587', 'en', 1, 'https://ror.org/05enx7587 Hong Kong Council on Smoking and Health 香港吸煙與健康委員會'), (59557, 'https://ror.org/05etan845', 'en', 1, 'https://ror.org/05etan845 Pilot International'), (59558, 'https://ror.org/05etrt910', 'no_lang_code', 1, 'https://ror.org/05etrt910 BioVendor (Czechia)'), (59559, 'https://ror.org/05ezpt146', 'no_lang_code', 1, 'https://ror.org/05ezpt146 China Ningbo International Cooperation (China) 中国宁波国际合作'), (59560, 'https://ror.org/05ezypx20', 'en', 1, 'https://ror.org/05ezypx20 Southeast Island School District'), (59561, 'https://ror.org/05f07wy20', 'no_lang_code', 1, 'https://ror.org/05f07wy20 In-Eko Team (Czechia)'), (59562, 'https://ror.org/05f32qs32', 'en', 1, 'https://ror.org/05f32qs32 Hellenic Thoracic Society Ελληνική Πνευμονολογική Εταιρεία'), (59563, 'https://ror.org/05f33zm87', 'no_lang_code', 1, 'https://ror.org/05f33zm87 Axone (Switzerland)'), (59564, 'https://ror.org/05f3wa926', 'no_lang_code', 1, 'https://ror.org/05f3wa926 Unica Technologies (Czechia)'), (59565, 'https://ror.org/05f5ptb49', 'no_lang_code', 1, 'https://ror.org/05f5ptb49 CBS Corporation (United States)'), (59566, 'https://ror.org/05f5sjj19', 'en', 1, 'https://ror.org/05f5sjj19 Nordic Institute of Asian Studies Nordisk Institut for Asien Studier'), (59567, 'https://ror.org/05f65w564', 'cs', 1, 'https://ror.org/05f65w564 Sjednocená Organizace Nevidomých a Slabozrakých'), (59568, 'https://ror.org/05f6rx494', 'cs', 1, 'https://ror.org/05f6rx494 Sativa Keřkov'), (59569, 'https://ror.org/05f6xwx81', 'en', 1, 'https://ror.org/05f6xwx81 Czech Otter Foundation Fund Český nadační fond pro vydru'), (59570, 'https://ror.org/05f8ada11', 'no_lang_code', 1, 'https://ror.org/05f8ada11 Neurotrack Technologies (United States)'); INSERT INTO `rors` VALUES (59571, 'https://ror.org/05f99zn18', 'en', 1, 'https://ror.org/05f99zn18 Fruit Growing Institute Институт по Овощарство'), (59572, 'https://ror.org/05fan6g58', 'en', 1, 'https://ror.org/05fan6g58 Proteus Fund'), (59573, 'https://ror.org/05fbtm431', 'en', 1, 'https://ror.org/05fbtm431 R and D Center for Valuable Recycling'), (59574, 'https://ror.org/05fc31f73', 'no_lang_code', 1, 'https://ror.org/05fc31f73 PPG Deco Czech (Czechia)'), (59575, 'https://ror.org/05fd45014', 'en', 1, 'https://ror.org/05fd45014 BresMed'), (59576, 'https://ror.org/05fdcyv20', 'no_lang_code', 1, 'https://ror.org/05fdcyv20 Gecko Biomedical (France)'), (59577, 'https://ror.org/05fe31323', 'en', 1, 'https://ror.org/05fe31323 Volga Region State Academy of Physical Culture, Sports and Tourism Поволжская государственная академия физической культуры, спорта и туризма'), (59578, 'https://ror.org/05feyk235', 'en', 1, 'https://ror.org/05feyk235 Comparative Aircraft Flight Efficiency Foundation'), (59579, 'https://ror.org/05ffbqz77', 'no_lang_code', 1, 'https://ror.org/05ffbqz77 Baťa (Czechia)'), (59580, 'https://ror.org/05ffr4y89', 'de', 1, 'https://ror.org/05ffr4y89 Psychiatriezentrum Münsingen'), (59581, 'https://ror.org/05fg5zm77', 'no_lang_code', 1, 'https://ror.org/05fg5zm77 Modeco (Czechia)'), (59582, 'https://ror.org/05frzy624', 'nl', 1, 'https://ror.org/05frzy624 Kennisnet'), (59583, 'https://ror.org/05fsqes40', 'no_lang_code', 1, 'https://ror.org/05fsqes40 SpeechTech (Czechia)'), (59584, 'https://ror.org/05ft9p311', 'no_lang_code', 1, 'https://ror.org/05ft9p311 Hobra Školník (Czechia)'), (59585, 'https://ror.org/05fw7wg22', 'fr', 1, 'https://ror.org/05fw7wg22 Laténium'), (59586, 'https://ror.org/05fx9dg28', 'no_lang_code', 1, 'https://ror.org/05fx9dg28 G E M A, s.r.o. Automatizace Technologických Procesů General Engineering Measurement and Automation (Czechia)'), (59587, 'https://ror.org/05fy92604', 'no_lang_code', 1, 'https://ror.org/05fy92604 Destrux (Czechia)'), (59588, 'https://ror.org/05g1gph86', 'en', 1, 'https://ror.org/05g1gph86 Nutrition International'), (59589, 'https://ror.org/05g1hyz84', 'en', 1, 'https://ror.org/05g1hyz84 Juntendo University Nerima Hospital 順天堂大学医学部附属練馬病院'), (59590, 'https://ror.org/05g1thn98', 'en', 1, 'https://ror.org/05g1thn98 Shanxi Province Youth Development Foundation 山西省青少年发展基金会'), (59591, 'https://ror.org/05g23w557', 'fr', 1, 'https://ror.org/05g23w557 Institut National de la Statistique'), (59592, 'https://ror.org/05g2nyd29', 'no_lang_code', 1, 'https://ror.org/05g2nyd29 BetaCat Pharmaceuticals (United States)'), (59593, 'https://ror.org/05g34t253', 'no_lang_code', 1, 'https://ror.org/05g34t253 Planergemeinschaft für Stadt und Raum'), (59594, 'https://ror.org/05g3kjm83', 'no_lang_code', 1, 'https://ror.org/05g3kjm83 IVEP (Czechia)'), (59595, 'https://ror.org/05g801a49', 'en', 1, 'https://ror.org/05g801a49 Kurdistan Regional Government حكومة اقليم كردستان حکوومەتی هەرێمی کوردستان'), (59596, 'https://ror.org/05g9y6w44', 'no_lang_code', 1, 'https://ror.org/05g9y6w44 Connecting Health Innovations (United States)'), (59597, 'https://ror.org/05gaz1x25', 'no_lang_code', 1, 'https://ror.org/05gaz1x25 Hottinger Baldwin Messtechnik (United States)'), (59598, 'https://ror.org/05gbven85', 'en', 1, 'https://ror.org/05gbven85 Wisconsin Institutes for Discovery'), (59599, 'https://ror.org/05gc01c65', 'no_lang_code', 1, 'https://ror.org/05gc01c65 Agroprojekce Litomyšl (Czechia)'), (59600, 'https://ror.org/05gebng48', 'en', 1, 'https://ror.org/05gebng48 CPCL Polytechnic College'), (59601, 'https://ror.org/05gemrx09', 'no_lang_code', 1, 'https://ror.org/05gemrx09 Argomedical (Switzerland)'), (59602, 'https://ror.org/05gfvgk18', 'no_lang_code', 1, 'https://ror.org/05gfvgk18 Hydrosoft Veleslavín (Czechia)'), (59603, 'https://ror.org/05ghvzc65', 'no_lang_code', 1, 'https://ror.org/05ghvzc65 Sanofi (Czechia)'), (59604, 'https://ror.org/05gjbbg60', 'en', 1, 'https://ror.org/05gjbbg60 IBM Research - Austin'), (59605, 'https://ror.org/05gjmqb84', 'no_lang_code', 1, 'https://ror.org/05gjmqb84 Rawat Consulting (Czechia)'), (59606, 'https://ror.org/05gn2nm29', 'no_lang_code', 1, 'https://ror.org/05gn2nm29 Viditech (Czechia)'), (59607, 'https://ror.org/05gnhhg32', 'en', 1, 'https://ror.org/05gnhhg32 Carilene'), (59608, 'https://ror.org/05gnj5y10', 'no_lang_code', 1, 'https://ror.org/05gnj5y10 Rema Systém (Czechia)'), (59609, 'https://ror.org/05gpa6n30', 'no_lang_code', 1, 'https://ror.org/05gpa6n30 CSInstruments (France)'), (59610, 'https://ror.org/05gv51k44', 'no_lang_code', 1, 'https://ror.org/05gv51k44 KM Beta (Czechia)'), (59611, 'https://ror.org/05gvkjb48', 'en', 1, 'https://ror.org/05gvkjb48 Office of the Assistant Secretary for Planning and Evaluation'), (59612, 'https://ror.org/05gvxpc78', 'no_lang_code', 1, 'https://ror.org/05gvxpc78 MSA (Czechia)'), (59613, 'https://ror.org/05gwp6g74', 'en', 1, 'https://ror.org/05gwp6g74 Accredited Private Hospital Villa Regina Ospedale Privato Accreditato Villa Regina'), (59614, 'https://ror.org/05gyj2g50', 'en', 1, 'https://ror.org/05gyj2g50 Royal Victoria Hospital'), (59615, 'https://ror.org/05h0e2y85', 'en', 1, 'https://ror.org/05h0e2y85 Città della Speranza Foundation'), (59616, 'https://ror.org/05h0xb276', 'fr', 1, 'https://ror.org/05h0xb276 Service de l''Enfance et de la Jeunesse'), (59617, 'https://ror.org/05h1ve754', 'no_lang_code', 1, 'https://ror.org/05h1ve754 NXP (Czechia)'), (59618, 'https://ror.org/05h2qqq38', 'no_lang_code', 1, 'https://ror.org/05h2qqq38 Rhopoint Instruments (United Kingdom)'), (59619, 'https://ror.org/05h3e9g05', 'cs', 1, 'https://ror.org/05h3e9g05 Obchodní Akademie'), (59620, 'https://ror.org/05h3vzz10', 'no_lang_code', 1, 'https://ror.org/05h3vzz10 Solid (United States)'), (59621, 'https://ror.org/05h634p83', 'no_lang_code', 1, 'https://ror.org/05h634p83 Credit Suisse (Switzerland)'), (59622, 'https://ror.org/05h78k766', 'no_lang_code', 1, 'https://ror.org/05h78k766 Baker Hughes (United Kingdom)'), (59623, 'https://ror.org/05h7bqz94', 'en', 1, 'https://ror.org/05h7bqz94 Brown-Spath & Associates'), (59624, 'https://ror.org/05h7qq668', 'cs', 1, 'https://ror.org/05h7qq668 Svaz Chovatelů Českého Strakatého Skotu'), (59625, 'https://ror.org/05h7xpn20', 'es', 1, 'https://ror.org/05h7xpn20 Servicio Nacional de Meteorología e Hidrología del Perú'), (59626, 'https://ror.org/05h7zrz56', 'es', 1, 'https://ror.org/05h7zrz56 Atapuerca Foundation Fundación Atapuerca'), (59627, 'https://ror.org/05ha3xf54', 'en', 1, 'https://ror.org/05ha3xf54 Korea Institute of Atmospheric Prediction Systems 한국 대기 예측 시스템 학회'), (59628, 'https://ror.org/05hakte81', 'no_lang_code', 1, 'https://ror.org/05hakte81 Logopedická společnost Miloše Sováka (Czechia)'), (59629, 'https://ror.org/05hehnx86', 'en', 1, 'https://ror.org/05hehnx86 Hunger Task Force'), (59630, 'https://ror.org/05herht24', 'en', 1, 'https://ror.org/05herht24 Czechoslovak Society of Arts and Sciences'), (59631, 'https://ror.org/05hjw0y48', 'no_lang_code', 1, 'https://ror.org/05hjw0y48 Bedag Informatik (Switzerland)'), (59632, 'https://ror.org/05hkd2w18', 'fr', 1, 'https://ror.org/05hkd2w18 Gymnase de la rue des Alpes'), (59633, 'https://ror.org/05hnbrd32', 'no_lang_code', 1, 'https://ror.org/05hnbrd32 Wessex Lifts (United Kingdom)'), (59634, 'https://ror.org/05hnjz787', 'en', 1, 'https://ror.org/05hnjz787 Foundation for Growth Science 成長科学協会'), (59635, 'https://ror.org/05hq3fk51', 'de', 1, 'https://ror.org/05hq3fk51 Departement für Erziehung und Kultur'), (59636, 'https://ror.org/05hr50502', 'en', 1, 'https://ror.org/05hr50502 Plumbing Heating Cooling Contractors National Association Educational Foundation'), (59637, 'https://ror.org/05hsqsk33', 'en', 1, 'https://ror.org/05hsqsk33 Imaging Center'), (59638, 'https://ror.org/05htmcq63', 'en', 1, 'https://ror.org/05htmcq63 Nordic Co-operation Nordiske Samarbejde'), (59639, 'https://ror.org/05htqbc94', 'no_lang_code', 1, 'https://ror.org/05htqbc94 VRM Labs (United States)'), (59640, 'https://ror.org/05hvp7v67', 'no_lang_code', 1, 'https://ror.org/05hvp7v67 Lacrum Velké Meziříčí (Czechia)'), (59641, 'https://ror.org/05hw2fa25', 'no_lang_code', 1, 'https://ror.org/05hw2fa25 Agra Group (Czechia)'), (59642, 'https://ror.org/05hwj5b39', 'no_lang_code', 1, 'https://ror.org/05hwj5b39 Bio Nutrition Health Products (United Kingdom)'), (59643, 'https://ror.org/05hwjr867', 'en', 1, 'https://ror.org/05hwjr867 Municipal Museum in Celakovice Městské muzeum v Čelákovicích'), (59644, 'https://ror.org/05hxrt533', 'no_lang_code', 1, 'https://ror.org/05hxrt533 Tatra (Czechia)'), (59645, 'https://ror.org/05hy29v76', 'cs', 1, 'https://ror.org/05hy29v76 Nemocnice Na Pleši'), (59646, 'https://ror.org/05hy51730', 'no_lang_code', 1, 'https://ror.org/05hy51730 Sage Energo (Czechia)'), (59647, 'https://ror.org/05hy9mg53', 'de', 1, 'https://ror.org/05hy9mg53 Hochgebirgsklinik Davos'), (59648, 'https://ror.org/05hzbx907', 'en', 1, 'https://ror.org/05hzbx907 National Digital Research Centre'), (59649, 'https://ror.org/05hzdft06', 'en', 1, 'https://ror.org/05hzdft06 Center for Food Safety and Applied Nutrition'), (59650, 'https://ror.org/05hzgh473', 'no_lang_code', 1, 'https://ror.org/05hzgh473 Institute of Super Compression Technologies (Japan)'), (59651, 'https://ror.org/05j0k2q54', 'en', 1, 'https://ror.org/05j0k2q54 Shanghai Association for Science and Technology'), (59652, 'https://ror.org/05j159997', 'nl', 1, 'https://ror.org/05j159997 Prins Bernhard Cultuurfonds'), (59653, 'https://ror.org/05j15g034', 'no_lang_code', 1, 'https://ror.org/05j15g034 STÚ K (Czechia)'), (59654, 'https://ror.org/05j1j8v70', 'no_lang_code', 1, 'https://ror.org/05j1j8v70 KCI (United Kingdom)'), (59655, 'https://ror.org/05j1paw03', 'en', 1, 'https://ror.org/05j1paw03 Conference of Research Workers in Animal Diseases'), (59656, 'https://ror.org/05j242h88', 'fr', 1, 'https://ror.org/05j242h88 Réseau de Santé Vitalité, Vitalité Health Network'), (59657, 'https://ror.org/05j2csz34', 'pt', 1, 'https://ror.org/05j2csz34 Institutos Lacte, Institutos Lactec'), (59658, 'https://ror.org/05j34w995', 'no_lang_code', 1, 'https://ror.org/05j34w995 Rašelina (Czechia)'), (59659, 'https://ror.org/05j3vdc31', 'no_lang_code', 1, 'https://ror.org/05j3vdc31 Marel (United States)'), (59660, 'https://ror.org/05j3y0344', 'no_lang_code', 1, 'https://ror.org/05j3y0344 Koch Industries (France)'), (59661, 'https://ror.org/05j3ze875', 'en', 1, 'https://ror.org/05j3ze875 Shared Earth Foundation'), (59662, 'https://ror.org/05j45ps30', 'no_lang_code', 1, 'https://ror.org/05j45ps30 Compotech (Czechia)'), (59663, 'https://ror.org/05j4zds77', 'en', 1, 'https://ror.org/05j4zds77 Virginia Lakes and Watersheds Association'), (59664, 'https://ror.org/05j6a3y70', 'no_lang_code', 1, 'https://ror.org/05j6a3y70 ZAS Věž (Czechia)'), (59665, 'https://ror.org/05j6b7w15', 'no_lang_code', 1, 'https://ror.org/05j6b7w15 Foundation Instruments (United States)'), (59666, 'https://ror.org/05j7bjh16', 'fr', 1, 'https://ror.org/05j7bjh16 Police Cantonale de Genève'), (59667, 'https://ror.org/05jcbzw72', 'en', 1, 'https://ror.org/05jcbzw72 Scientific Research Institute of the Cable Industry был создан Научно-исследовательский институт кабельной промышленности'), (59668, 'https://ror.org/05jddt560', 'no_lang_code', 1, 'https://ror.org/05jddt560 Cell Medica (Switzerland)'), (59669, 'https://ror.org/05jdrrw50', 'de', 1, 'https://ror.org/05jdrrw50 Beilstein-Institut, Beilstein-Institut zur Förderung der Chemischen Wissenschaften'), (59670, 'https://ror.org/05jf66d94', 'no_lang_code', 1, 'https://ror.org/05jf66d94 Juho Vainio Foundation Juho Vainion Säätiö'), (59671, 'https://ror.org/05jg7dd90', 'no_lang_code', 1, 'https://ror.org/05jg7dd90 Photronics (United States)'), (59672, 'https://ror.org/05jghsy80', 'de', 1, 'https://ror.org/05jghsy80 Holbein-Gymnasium Augsburg'), (59673, 'https://ror.org/05jjkgv58', 'en', 1, 'https://ror.org/05jjkgv58 High Pressure Gas Safety Institute of Japan 高圧力ガス安全研究センター'), (59674, 'https://ror.org/05jkrds81', 'no_lang_code', 1, 'https://ror.org/05jkrds81 Vibrom (Czechia)'), (59675, 'https://ror.org/05jmhh281', 'en', 1, 'https://ror.org/05jmhh281 National Center for Toxicological Research'), (59676, 'https://ror.org/05jngx315', 'no_lang_code', 1, 'https://ror.org/05jngx315 ZPA Smart Energy (Czechia)'), (59677, 'https://ror.org/05jpbj586', 'no_lang_code', 1, 'https://ror.org/05jpbj586 Rabbit (Czechia)'), (59678, 'https://ror.org/05jpnvr67', 'no_lang_code', 1, 'https://ror.org/05jpnvr67 Unicorn (Czechia)'), (59679, 'https://ror.org/05jrq1t13', 'en', 1, 'https://ror.org/05jrq1t13 Kliniken Valens Valens Clinics'), (59680, 'https://ror.org/05js6gq32', 'no_lang_code', 1, 'https://ror.org/05js6gq32 Urbanismus Architektura Design Studio (Czechia)'), (59681, 'https://ror.org/05jtrhd14', 'en', 1, 'https://ror.org/05jtrhd14 Department of Early Education and Care'), (59682, 'https://ror.org/05jwty529', 'en', 1, 'https://ror.org/05jwty529 Kone Foundation Koneen Säätiö'), (59683, 'https://ror.org/05jxt4a42', 'no_lang_code', 1, 'https://ror.org/05jxt4a42 Toseda (Czechia)'), (59684, 'https://ror.org/05k1g7h17', 'no_lang_code', 1, 'https://ror.org/05k1g7h17 Aries (Czechia)'), (59685, 'https://ror.org/05k1j1x39', 'no_lang_code', 1, 'https://ror.org/05k1j1x39 JES Tech (United States)'), (59686, 'https://ror.org/05k25vk24', 'no_lang_code', 1, 'https://ror.org/05k25vk24 Saudi Arabia Basic Industries (United States)'), (59687, 'https://ror.org/05k438q37', 'no_lang_code', 1, 'https://ror.org/05k438q37 Semma Therapeutics (United States)'), (59688, 'https://ror.org/05k6wtk05', 'no_lang_code', 1, 'https://ror.org/05k6wtk05 Taktici (Czechia)'), (59689, 'https://ror.org/05k7j3y71', 'no_lang_code', 1, 'https://ror.org/05k7j3y71 Sportovní Centrum Atlas (Czechia)'), (59690, 'https://ror.org/05k7znz17', 'no_lang_code', 1, 'https://ror.org/05k7znz17 Elcom (Czechia)'), (59691, 'https://ror.org/05k829w13', 'en', 1, 'https://ror.org/05k829w13 New Mexico Alliance of Health Councils'), (59692, 'https://ror.org/05katjf64', 'no_lang_code', 1, 'https://ror.org/05katjf64 Cidelec (France)'), (59693, 'https://ror.org/05kcj6c10', 'en', 1, 'https://ror.org/05kcj6c10 VA Heartland Network'), (59694, 'https://ror.org/05kcspq23', 'no_lang_code', 1, 'https://ror.org/05kcspq23 Belden (Germany)'), (59695, 'https://ror.org/05kg16203', 'en', 1, 'https://ror.org/05kg16203 Center Of Theological Inquiry'), (59696, 'https://ror.org/05kgdba77', 'de', 1, 'https://ror.org/05kgdba77 Gelenkzentrum Zürich'), (59697, 'https://ror.org/05kk1a757', 'no_lang_code', 1, 'https://ror.org/05kk1a757 Daikin (United States) ダイキン工業株式会社'), (59698, 'https://ror.org/05kks4d25', 'no_lang_code', 1, 'https://ror.org/05kks4d25 Bayer (India)'), (59699, 'https://ror.org/05km36r23', 'en', 1, 'https://ror.org/05km36r23 Institute of Cytochemistry and Molecular Pharmacology Институт цитохимии и молекулярной фармакологии'), (59700, 'https://ror.org/05kntkn59', 'no_lang_code', 1, 'https://ror.org/05kntkn59 Biocont Laboratory (Czechia)'), (59701, 'https://ror.org/05kvv8w92', 'en', 1, 'https://ror.org/05kvv8w92 Foundation for promoting Information and Communication Technology Fundaţia Pentru Promovarea Tehnologiei Informaţiei şi Comunicaţiei'), (59702, 'https://ror.org/05kvwxg84', 'no_lang_code', 1, 'https://ror.org/05kvwxg84 Amylon (Czechia)'), (59703, 'https://ror.org/05kz5x194', 'fr', 1, 'https://ror.org/05kz5x194 Clinique Romande de Réadaptation'), (59704, 'https://ror.org/05kzgnp84', 'en', 1, 'https://ror.org/05kzgnp84 Changchun Bureau of Science and Technology 长春市科技局'), (59705, 'https://ror.org/05m0z0h30', 'en', 1, 'https://ror.org/05m0z0h30 Nano and Advanced Materials Institute'), (59706, 'https://ror.org/05m135a87', 'no_lang_code', 1, 'https://ror.org/05m135a87 Wekus (Czechia)'), (59707, 'https://ror.org/05m7g4v96', 'de', 1, 'https://ror.org/05m7g4v96 Von Behring-Röntgen-Stiftung'), (59708, 'https://ror.org/05m7ng931', 'en', 1, 'https://ror.org/05m7ng931 Professional Beef Services'), (59709, 'https://ror.org/05m8j0776', 'no_lang_code', 1, 'https://ror.org/05m8j0776 Trotti and Associates (United States)'), (59710, 'https://ror.org/05m9zbc57', 'no_lang_code', 1, 'https://ror.org/05m9zbc57 Československá Plavba Labská (Czechia) Československá Plavební Akciová Společnost Labská'), (59711, 'https://ror.org/05mb6z682', 'da', 1, 'https://ror.org/05mb6z682 Helsefonden'), (59712, 'https://ror.org/05mc17455', 'en', 1, 'https://ror.org/05mc17455 U.S. Embassy and Consulates in India'), (59713, 'https://ror.org/05mcn5a93', 'cs', 1, 'https://ror.org/05mcn5a93 MAS Dolní Morava'), (59714, 'https://ror.org/05mczez68', 'no_lang_code', 1, 'https://ror.org/05mczez68 Rosenthaler + Partner (Switzerland)'), (59715, 'https://ror.org/05mddv816', 'cs', 1, 'https://ror.org/05mddv816 Správa Národního Parku Podyjí'), (59716, 'https://ror.org/05mh4bk89', 'en', 1, 'https://ror.org/05mh4bk89 Whole Systems Foundation'), (59717, 'https://ror.org/05mh5m090', 'no_lang_code', 1, 'https://ror.org/05mh5m090 Spenco Medical (United Kingdom)'), (59718, 'https://ror.org/05mh9zj78', 'no_lang_code', 1, 'https://ror.org/05mh9zj78 Navertica (Czechia)'), (59719, 'https://ror.org/05mjfsy88', 'en', 1, 'https://ror.org/05mjfsy88 National Laboratory for High Performance Computing'), (59720, 'https://ror.org/05mk8pj48', 'no_lang_code', 1, 'https://ror.org/05mk8pj48 Metrostav (Czechia)'), (59721, 'https://ror.org/05mpgew40', 'en', 1, 'https://ror.org/05mpgew40 Institute of Botany ՀՀ ԳԱԱ Բուսաբանության Ինստիտուտ'), (59722, 'https://ror.org/05mq1qn32', 'no_lang_code', 1, 'https://ror.org/05mq1qn32 Simgeo (Czechia)'), (59723, 'https://ror.org/05mrcfm45', 'es', 1, 'https://ror.org/05mrcfm45 Nes Naturaleza'), (59724, 'https://ror.org/05msa1857', 'it', 1, 'https://ror.org/05msa1857 Fondazione Pellegrini Canevascini'), (59725, 'https://ror.org/05mspvn40', 'no_lang_code', 1, 'https://ror.org/05mspvn40 Isuzu Motors (United States)'), (59726, 'https://ror.org/05mtsfd08', 'no_lang_code', 1, 'https://ror.org/05mtsfd08 CleverTech (Czechia)'), (59727, 'https://ror.org/05mv2zc24', 'no_lang_code', 1, 'https://ror.org/05mv2zc24 Habena (Czechia)'), (59728, 'https://ror.org/05mv3wa59', 'en', 1, 'https://ror.org/05mv3wa59 Shikoku Research Institute 株式会社四国総合研究所'), (59729, 'https://ror.org/05mv7cd65', 'en', 1, 'https://ror.org/05mv7cd65 Russian State Archive of Scientific and Technical Documentation Научно-исследовательский и экспериментальный институт автомобильного электрооборудования и автоприборов'), (59730, 'https://ror.org/05mvk0v07', 'no_lang_code', 1, 'https://ror.org/05mvk0v07 RFspin (Czechia)'), (59731, 'https://ror.org/05mx4xx46', 'en', 1, 'https://ror.org/05mx4xx46 Weihai Science and Technology Bureau 威海市科学技术局'), (59732, 'https://ror.org/05mxwbv26', 'no_lang_code', 1, 'https://ror.org/05mxwbv26 Soft Targets Protection Institute (Czechia)'), (59733, 'https://ror.org/05mygvq15', 'no_lang_code', 1, 'https://ror.org/05mygvq15 Sportas (Czechia)'), (59734, 'https://ror.org/05mz3p784', 'no_lang_code', 1, 'https://ror.org/05mz3p784 Eurogas (Czechia)'), (59735, 'https://ror.org/05mzd7q50', 'en', 1, 'https://ror.org/05mzd7q50 Bildungsdirektion Volksschulamt Office of Elementary Education'), (59736, 'https://ror.org/05n0b7q40', 'en', 1, 'https://ror.org/05n0b7q40 Geological Exploration Institute of Shandong Zhengyuan 山东正元地质勘查院'), (59737, 'https://ror.org/05n0new61', 'no_lang_code', 1, 'https://ror.org/05n0new61 Enterade (United States)'), (59738, 'https://ror.org/05n1rgb70', 'en', 1, 'https://ror.org/05n1rgb70 Volvo Research and Education Foundations'), (59739, 'https://ror.org/05n1xkq03', 'no_lang_code', 1, 'https://ror.org/05n1xkq03 Yves Rocher (France)'), (59740, 'https://ror.org/05n2b6e77', 'en', 1, 'https://ror.org/05n2b6e77 Czech Bat Conservation Society Česká společnost pro ochranu netopýrů'), (59741, 'https://ror.org/05n31vd29', 'en', 1, 'https://ror.org/05n31vd29 Czech National Bank Česká národní banka'), (59742, 'https://ror.org/05n4ryh34', 'no_lang_code', 1, 'https://ror.org/05n4ryh34 Median (Czechia)'), (59743, 'https://ror.org/05n6dzg85', 'en', 1, 'https://ror.org/05n6dzg85 Sverige Amerikastiftelsen Sweden America Foundation'), (59744, 'https://ror.org/05n6yb463', 'no_lang_code', 1, 'https://ror.org/05n6yb463 Rütter Soceco (Switzerland)'), (59745, 'https://ror.org/05n813p54', 'no_lang_code', 1, 'https://ror.org/05n813p54 Burckhardt+Partner (Switzerland)'), (59746, 'https://ror.org/05n9nqv74', 'en', 1, 'https://ror.org/05n9nqv74 Western Region Agricultural Research Center 西日本農業研究センター'), (59747, 'https://ror.org/05nazes57', 'no_lang_code', 1, 'https://ror.org/05nazes57 L3 Médical (France)'), (59748, 'https://ror.org/05nazff88', 'cs', 1, 'https://ror.org/05nazff88 Muzeum Novojičínska'), (59749, 'https://ror.org/05nbt0w25', 'en', 1, 'https://ror.org/05nbt0w25 Avon Medical Centre'), (59750, 'https://ror.org/05ne9z340', 'no_lang_code', 1, 'https://ror.org/05ne9z340 Foerster (Germany)'), (59751, 'https://ror.org/05nef8h70', 'no_lang_code', 1, 'https://ror.org/05nef8h70 GSP (Czechia)'), (59752, 'https://ror.org/05nf05q11', 'en', 1, 'https://ror.org/05nf05q11 Nebraska Game and Parks Commission'), (59753, 'https://ror.org/05ng63712', 'en', 1, 'https://ror.org/05ng63712 Clifton T. Perkins Hospital Center'), (59754, 'https://ror.org/05nhp5y26', 'en', 1, 'https://ror.org/05nhp5y26 Forest Nursery Association Sdružení lesních školkařů'), (59755, 'https://ror.org/05nhx4339', 'en', 1, 'https://ror.org/05nhx4339 Umbricht Attorneys'), (59756, 'https://ror.org/05nj2pq60', 'no_lang_code', 1, 'https://ror.org/05nj2pq60 Alliance Instruments (France)'), (59757, 'https://ror.org/05nm81f72', 'no_lang_code', 1, 'https://ror.org/05nm81f72 Braas Monier (United Kingdom)'), (59758, 'https://ror.org/05nmp3276', 'en', 1, 'https://ror.org/05nmp3276 Vallee Foundation'), (59759, 'https://ror.org/05nnj5q38', 'no_lang_code', 1, 'https://ror.org/05nnj5q38 ACM Instruments (United Kingdom)'), (59760, 'https://ror.org/05nqm0q11', 'no_lang_code', 1, 'https://ror.org/05nqm0q11 Institute for Sustainable Process Technology'), (59761, 'https://ror.org/05nrfbq13', 'en', 1, 'https://ror.org/05nrfbq13 Czech Welding Society Česká Svářečská Společnost ANB'), (59762, 'https://ror.org/05nrryz05', 'no_lang_code', 1, 'https://ror.org/05nrryz05 Eago Systems (Czechia)'), (59763, 'https://ror.org/05nsn5c92', 'no_lang_code', 1, 'https://ror.org/05nsn5c92 Ammann (Switzerland)'), (59764, 'https://ror.org/05nynx616', 'en', 1, 'https://ror.org/05nynx616 EUC Group'), (59765, 'https://ror.org/05nzc1r88', 'en', 1, 'https://ror.org/05nzc1r88 The Synergetic Innovation Center for Advanced Materials 江苏先进生物与化学制造协同创新中心'), (59766, 'https://ror.org/05p0pbv75', 'no_lang_code', 1, 'https://ror.org/05p0pbv75 Toyota Motor Corporation (Switzerland)'), (59767, 'https://ror.org/05p1fxc65', 'en', 1, 'https://ror.org/05p1fxc65 Cedar Grove Institute for Sustainable Communities'), (59768, 'https://ror.org/05p46v555', 'en', 1, 'https://ror.org/05p46v555 Centre for Advanced Study'), (59769, 'https://ror.org/05p577g88', 'en', 1, 'https://ror.org/05p577g88 Scoliosis Research Society'), (59770, 'https://ror.org/05p5nhz16', 'de', 1, 'https://ror.org/05p5nhz16 Staatskanzlei des Kantons Zürich'), (59771, 'https://ror.org/05p799h65', 'de', 1, 'https://ror.org/05p799h65 ch Stiftung für Eidgenössische Zusammenarbeit'), (59772, 'https://ror.org/05p87d983', 'en', 1, 'https://ror.org/05p87d983 Institute of Medical Polymers'), (59773, 'https://ror.org/05pafsz05', 'no_lang_code', 1, 'https://ror.org/05pafsz05 Sagittaria'), (59774, 'https://ror.org/05pb4em20', 'en', 1, 'https://ror.org/05pb4em20 Bonn-Cologne Graduate School of Physics and Astronomy'), (59775, 'https://ror.org/05pcmd548', 'en', 1, 'https://ror.org/05pcmd548 Institute of Chemistry of Silicates named after I.V. Grebenshchikov Институт химии силикатов имени И. В. Гребенщикова РАН'), (59776, 'https://ror.org/05pctrr97', 'en', 1, 'https://ror.org/05pctrr97 Wisconsin Turfgrass Association'), (59777, 'https://ror.org/05pe31w16', 'en', 1, 'https://ror.org/05pe31w16 Shorai Foundation For Science And Technology 公益財団法人 松籟科学技術振興財団'), (59778, 'https://ror.org/05ph9xy04', 'sv', 1, 'https://ror.org/05ph9xy04 Stiftelsen Folke Bernadottes Minnesfond'), (59779, 'https://ror.org/05pmpsf41', 'no_lang_code', 1, 'https://ror.org/05pmpsf41 Fokus (Czechia)'), (59780, 'https://ror.org/05pq72r61', 'cs', 1, 'https://ror.org/05pq72r61 Poliklinika Budějovická'), (59781, 'https://ror.org/05ps69x32', 'cs', 1, 'https://ror.org/05ps69x32 Fond Dalšího Vzdělávání'), (59782, 'https://ror.org/05pvet403', 'de', 1, 'https://ror.org/05pvet403 Oncosuisse'), (59783, 'https://ror.org/05pvypf90', 'en', 1, 'https://ror.org/05pvypf90 Open Source Drug Discovery'), (59784, 'https://ror.org/05pw2f159', 'en', 1, 'https://ror.org/05pw2f159 Somali Bantu Community Association of Maine'), (59785, 'https://ror.org/05pwp0t27', 'no_lang_code', 1, 'https://ror.org/05pwp0t27 Getinge (United States)'), (59786, 'https://ror.org/05pzez236', 'da', 1, 'https://ror.org/05pzez236 Ville Heises Legat'), (59787, 'https://ror.org/05pzshy96', 'no_lang_code', 1, 'https://ror.org/05pzshy96 Tenez (Czechia)'), (59788, 'https://ror.org/05q0skb15', 'en', 1, 'https://ror.org/05q0skb15 Tawani Foundation'), (59789, 'https://ror.org/05q0yrx29', 'no_lang_code', 1, 'https://ror.org/05q0yrx29 ZVU (Czechia)'), (59790, 'https://ror.org/05q1vsm15', 'en', 1, 'https://ror.org/05q1vsm15 International Society of Electrochemistry'), (59791, 'https://ror.org/05q2t4173', 'no_lang_code', 1, 'https://ror.org/05q2t4173 Vejce (Czechia)'), (59792, 'https://ror.org/05q57a218', 'en', 1, 'https://ror.org/05q57a218 Arc of Kentucky'), (59793, 'https://ror.org/05q59qz08', 'en', 1, 'https://ror.org/05q59qz08 Pinkerton Foundation'), (59794, 'https://ror.org/05q6e7g57', 'no_lang_code', 1, 'https://ror.org/05q6e7g57 Cidem Hranice (Czechia)'), (59795, 'https://ror.org/05q8jhf15', 'en', 1, 'https://ror.org/05q8jhf15 Institute for Minority Studies MTA Társadalomtudományi Kutatóközpont Kisebbségkutató Intézet'), (59796, 'https://ror.org/05q9d6816', 'no_lang_code', 1, 'https://ror.org/05q9d6816 Mefi (Czechia)'), (59797, 'https://ror.org/05qaacr29', 'fr', 1, 'https://ror.org/05qaacr29 Hôpital intercantonal de la Broye'), (59798, 'https://ror.org/05qbxf960', 'en', 1, 'https://ror.org/05qbxf960 Shenzhen Institute for Drug Control'), (59799, 'https://ror.org/05qds0828', 'en', 1, 'https://ror.org/05qds0828 Society for Applied Microbiology'), (59800, 'https://ror.org/05qepn613', 'no_lang_code', 1, 'https://ror.org/05qepn613 Merrill (United States)'), (59801, 'https://ror.org/05qepz429', 'no_lang_code', 1, 'https://ror.org/05qepz429 Resim (Czechia)'), (59802, 'https://ror.org/05qjt5a38', 'en', 1, 'https://ror.org/05qjt5a38 Royal Canadian Military Institute'), (59803, 'https://ror.org/05qkh8j74', 'de', 1, 'https://ror.org/05qkh8j74 Archäologischen Dienst Graubünden Servizio archeologico dei Grigioni servetsch archeologic dal Grischun'), (59804, 'https://ror.org/05qnx7t56', 'cs', 1, 'https://ror.org/05qnx7t56 Svaz Chovatelů Prasat v Čechách a na Moravě'), (59805, 'https://ror.org/05qp2sp52', 'en', 1, 'https://ror.org/05qp2sp52 Beijing Dongfang Hongsheng New Energy Application Technology Research Institute 北京东方红升新能源应用技术研究院有限公司简介'), (59806, 'https://ror.org/05qrxbp40', 'no_lang_code', 1, 'https://ror.org/05qrxbp40 Lisi Automotive Form (Czechia)'), (59807, 'https://ror.org/05qryz546', 'en', 1, 'https://ror.org/05qryz546 National Farmers Organization'), (59808, 'https://ror.org/05qs24e23', 'no_lang_code', 1, 'https://ror.org/05qs24e23 Hier und Jetzt (Switzerland)'), (59809, 'https://ror.org/05qtdkf53', 'cs', 1, 'https://ror.org/05qtdkf53 Regionální muzeum v Kolíně'), (59810, 'https://ror.org/05qtqmn65', 'fr', 1, 'https://ror.org/05qtqmn65 Archives de l''État de Neuchâtel'), (59811, 'https://ror.org/05qtw9471', 'en', 1, 'https://ror.org/05qtw9471 Life Science Patents'), (59812, 'https://ror.org/05qv1wg20', 'en', 1, 'https://ror.org/05qv1wg20 Prague Security Studies Institute'), (59813, 'https://ror.org/05qwesv66', 'no_lang_code', 1, 'https://ror.org/05qwesv66 Planconsult (Switzerland)'), (59814, 'https://ror.org/05qwteg84', 'no_lang_code', 1, 'https://ror.org/05qwteg84 GME (Czechia)'), (59815, 'https://ror.org/05qxpp357', 'no_lang_code', 1, 'https://ror.org/05qxpp357 Magna Exteriors (Czechia)'), (59816, 'https://ror.org/05r00b483', 'en', 1, 'https://ror.org/05r00b483 Waksman Foundation for Microbiology'), (59817, 'https://ror.org/05r0gt719', 'no_lang_code', 1, 'https://ror.org/05r0gt719 Dadar Athornan Institute'), (59818, 'https://ror.org/05r1nkw66', 'no_lang_code', 1, 'https://ror.org/05r1nkw66 Lineq (Czechia)'), (59819, 'https://ror.org/05r3dyn47', 'en', 1, 'https://ror.org/05r3dyn47 Center for Systems Biology'), (59820, 'https://ror.org/05r434x22', 'no_lang_code', 1, 'https://ror.org/05r434x22 Ekogalva (Czechia)'), (59821, 'https://ror.org/05r6hp586', 'no_lang_code', 1, 'https://ror.org/05r6hp586 Kutch Mahila Vikas Sanghatan'), (59822, 'https://ror.org/05r7ttv75', 'en', 1, 'https://ror.org/05r7ttv75 United Way of Smith County'), (59823, 'https://ror.org/05r866132', 'no_lang_code', 1, 'https://ror.org/05r866132 Ekosystem (Czechia)'), (59824, 'https://ror.org/05r8b0p26', 'no_lang_code', 1, 'https://ror.org/05r8b0p26 Biofarm Dora (Czechia)'), (59825, 'https://ror.org/05r9k3m54', 'en', 1, 'https://ror.org/05r9k3m54 Robert Mapplethorpe Foundation'), (59826, 'https://ror.org/05ra0f154', 'no_lang_code', 1, 'https://ror.org/05ra0f154 TIRSO (Czechia)'), (59827, 'https://ror.org/05ra3zm12', 'en', 1, 'https://ror.org/05ra3zm12 Gulf South Research Corporation'), (59828, 'https://ror.org/05rbqz184', 'no_lang_code', 1, 'https://ror.org/05rbqz184 Valeo (Czechia)'), (59829, 'https://ror.org/05rbv1z92', 'no_lang_code', 1, 'https://ror.org/05rbv1z92 Froněk (Czechia)'), (59830, 'https://ror.org/05rcfkq95', 'en', 1, 'https://ror.org/05rcfkq95 Pittsburgh Emergency Medicine Foundation'), (59831, 'https://ror.org/05rd7y749', 'en', 1, 'https://ror.org/05rd7y749 Seamester'), (59832, 'https://ror.org/05rdz5425', 'en', 1, 'https://ror.org/05rdz5425 Ministerstwo Rolnictwa i Rozwoju Wsi Ministry of Agriculture and Rural Development'), (59833, 'https://ror.org/05reezh07', 'no_lang_code', 1, 'https://ror.org/05reezh07 Nauchno-issledovatelskiy Institut Tekhnologii Avtomobilnoy Promyshlennosti Научно-исследовательский институт технологии автомобильной промышленности'), (59834, 'https://ror.org/05rfpvc37', 'no_lang_code', 1, 'https://ror.org/05rfpvc37 Van Löben Sels/RembeRock Foundation'), (59835, 'https://ror.org/05rgkkt42', 'no_lang_code', 1, 'https://ror.org/05rgkkt42 Vafo Praha (Czechia)'), (59836, 'https://ror.org/05rgmyf21', 'no_lang_code', 1, 'https://ror.org/05rgmyf21 Kappa-P (Czechia)'), (59837, 'https://ror.org/05rgnr577', 'en', 1, 'https://ror.org/05rgnr577 Science and Technology Parks Association Společnost Vědeckotechnických Parků'), (59838, 'https://ror.org/05rhhvk61', 'no_lang_code', 1, 'https://ror.org/05rhhvk61 Vodní zdroje Chrudim (Czechia)'), (59839, 'https://ror.org/05rjrds16', 'no_lang_code', 1, 'https://ror.org/05rjrds16 Moravoseed (Czechia)'), (59840, 'https://ror.org/05rk35s69', 'no_lang_code', 1, 'https://ror.org/05rk35s69 Laboratoires Standa (France)'), (59841, 'https://ror.org/05rm68h52', 'en', 1, 'https://ror.org/05rm68h52 Sikh Foundation'), (59842, 'https://ror.org/05rngf387', 'en', 1, 'https://ror.org/05rngf387 Ear and Balance Institute'), (59843, 'https://ror.org/05rnqd221', 'de', 1, 'https://ror.org/05rnqd221 Institut für Prävention und Nachsorge'), (59844, 'https://ror.org/05rrc9f79', 'no_lang_code', 1, 'https://ror.org/05rrc9f79 Úsporné Bydlení (Czechia)'), (59845, 'https://ror.org/05rv0ab64', 'no_lang_code', 1, 'https://ror.org/05rv0ab64 Báňské projekty Teplice'), (59846, 'https://ror.org/05rvvjw12', 'no_lang_code', 1, 'https://ror.org/05rvvjw12 Chemineau Labs (France) Laboratoires Chemineau'), (59847, 'https://ror.org/05rwdy684', 'no_lang_code', 1, 'https://ror.org/05rwdy684 Bastion (United Kingdom)'), (59848, 'https://ror.org/05rxrqv32', 'no_lang_code', 1, 'https://ror.org/05rxrqv32 Stryker (France)'), (59849, 'https://ror.org/05rxs1s48', 'sv', 1, 'https://ror.org/05rxs1s48 Stiftelsen Samariten'), (59850, 'https://ror.org/05rz5mc59', 'no_lang_code', 1, 'https://ror.org/05rz5mc59 Cellular Biomedicine Group (United States)'), (59851, 'https://ror.org/05rzbbw97', 'no_lang_code', 1, 'https://ror.org/05rzbbw97 Life Medical Control (France)'), (59852, 'https://ror.org/05s1rn618', 'no_lang_code', 1, 'https://ror.org/05s1rn618 Comptoir Pharmaceutique & Médical (France)'), (59853, 'https://ror.org/05s4v9088', 'no_lang_code', 1, 'https://ror.org/05s4v9088 BioChemInsights (United States)'), (59854, 'https://ror.org/05s5ecm57', 'no_lang_code', 1, 'https://ror.org/05s5ecm57 Parma Technik (Czechia)'), (59855, 'https://ror.org/05s5wce38', 'no_lang_code', 1, 'https://ror.org/05s5wce38 Chemopharma (Austria)'), (59856, 'https://ror.org/05s6mnc45', 'no_lang_code', 1, 'https://ror.org/05s6mnc45 Invelt Industry International (Czechia)'), (59857, 'https://ror.org/05s7bjk78', 'no_lang_code', 1, 'https://ror.org/05s7bjk78 Cicero (Czechia)'), (59858, 'https://ror.org/05s7vvm14', 'no_lang_code', 1, 'https://ror.org/05s7vvm14 Bioinstitut'), (59859, 'https://ror.org/05sbk4q39', 'de', 1, 'https://ror.org/05sbk4q39 Clinique Montbrillant'), (59860, 'https://ror.org/05sczh171', 'en', 1, 'https://ror.org/05sczh171 Institute for Problems of Cryobiology and Cryomedicine ІНСТИТУТ ПРОБЛЕМ КРІОБІОЛОГІЇ І КРІОМЕДИЦИНИ НАЦІОНАЛЬНОЇ АКАДЕМІЇ НАУК УКРАЇНИ'), (59861, 'https://ror.org/05sdnkt23', 'no_lang_code', 1, 'https://ror.org/05sdnkt23 Agrofarm (Czechia)'), (59862, 'https://ror.org/05sejda23', 'en', 1, 'https://ror.org/05sejda23 Armenian National Survey for Seismic Protection'), (59863, 'https://ror.org/05ses5w88', 'de', 1, 'https://ror.org/05ses5w88 Institut für Lacke und Farben'), (59864, 'https://ror.org/05sgg0860', 'en', 1, 'https://ror.org/05sgg0860 Finnish Society of Anaesthesiologists Suomen Anestesiologiyhdistys'), (59865, 'https://ror.org/05sgndn97', 'no_lang_code', 1, 'https://ror.org/05sgndn97 Code Creator (Czechia)'), (59866, 'https://ror.org/05smkqj74', 'no_lang_code', 1, 'https://ror.org/05smkqj74 Compact Bohemia (Czechia)'), (59867, 'https://ror.org/05smnbn20', 'no_lang_code', 1, 'https://ror.org/05smnbn20 Foerster (United States)'), (59868, 'https://ror.org/05smskk65', 'no_lang_code', 1, 'https://ror.org/05smskk65 LabMediaServis (Czechia)'), (59869, 'https://ror.org/05snmjd73', 'no_lang_code', 1, 'https://ror.org/05snmjd73 SurgiQual Institute (France)'), (59870, 'https://ror.org/05snsev90', 'en', 1, 'https://ror.org/05snsev90 Cornell Cooperative Extension Sullivan County'), (59871, 'https://ror.org/05spb8741', 'no_lang_code', 1, 'https://ror.org/05spb8741 Oclaro (United States)'), (59872, 'https://ror.org/05srw0r52', 'no_lang_code', 1, 'https://ror.org/05srw0r52 Check-Cap (Israel)'), (59873, 'https://ror.org/05ss23q56', 'no_lang_code', 1, 'https://ror.org/05ss23q56 KSK Precise Motion (Czechia)'), (59874, 'https://ror.org/05ssa1185', 'en', 1, 'https://ror.org/05ssa1185 State Scientific Production Association of Industrial Ecology'), (59875, 'https://ror.org/05sthzf60', 'en', 1, 'https://ror.org/05sthzf60 International Union of Materials Research Societies'), (59876, 'https://ror.org/05sv4rq55', 'no_lang_code', 1, 'https://ror.org/05sv4rq55 OneBreath (United States)'), (59877, 'https://ror.org/05svfd950', 'en', 1, 'https://ror.org/05svfd950 Regional Research Institute of Unani Medicine'), (59878, 'https://ror.org/05t0aaa57', 'no_lang_code', 1, 'https://ror.org/05t0aaa57 Scaled Biolabs (United States)'), (59879, 'https://ror.org/05t2bc229', 'no_lang_code', 1, 'https://ror.org/05t2bc229 Société française d’instruments de chirurgie Sofic (France)'), (59880, 'https://ror.org/05t2h5z30', 'no_lang_code', 1, 'https://ror.org/05t2h5z30 CLAC (Switzerland)'), (59881, 'https://ror.org/05t2njg22', 'en', 1, 'https://ror.org/05t2njg22 Institute of Ethnology MTA BTK Néprajztudományi Intézet'), (59882, 'https://ror.org/05t30dz33', 'no_lang_code', 1, 'https://ror.org/05t30dz33 G-Pharm (France)'), (59883, 'https://ror.org/05t395q46', 'no_lang_code', 1, 'https://ror.org/05t395q46 Cígler Software (Czechia)'), (59884, 'https://ror.org/05t4n3357', 'no_lang_code', 1, 'https://ror.org/05t4n3357 Ybux (Czechia)'), (59885, 'https://ror.org/05t81tk93', 'no_lang_code', 1, 'https://ror.org/05t81tk93 Retex (Czechia)'), (59886, 'https://ror.org/05t96nf23', 'de', 1, 'https://ror.org/05t96nf23 Departement Bildung, Kultur und Sport'), (59887, 'https://ror.org/05t9fgt79', 'en', 1, 'https://ror.org/05t9fgt79 Shurl and Kay Curci Foundation'), (59888, 'https://ror.org/05t9frg20', 'no_lang_code', 1, 'https://ror.org/05t9frg20 MAP Systems (Czechia)'), (59889, 'https://ror.org/05t9z3q05', 'en', 1, 'https://ror.org/05t9z3q05 Richard M. Fairbanks Foundation'), (59890, 'https://ror.org/05td8h732', 'en', 1, 'https://ror.org/05td8h732 Florida State Collection of Arthropods'), (59891, 'https://ror.org/05tgveb11', 'no_lang_code', 1, 'https://ror.org/05tgveb11 Altana (Netherlands)'), (59892, 'https://ror.org/05tk0mn61', 'no_lang_code', 1, 'https://ror.org/05tk0mn61 Büro Vatter (Switzerland)'), (59893, 'https://ror.org/05tkn9009', 'no_lang_code', 1, 'https://ror.org/05tkn9009 Arcoplan (Switzerland)'), (59894, 'https://ror.org/05tkx8d31', 'no_lang_code', 1, 'https://ror.org/05tkx8d31 Madep (Switzerland)'), (59895, 'https://ror.org/05tmxnq68', 'no_lang_code', 1, 'https://ror.org/05tmxnq68 Reliant (Czechia)'), (59896, 'https://ror.org/05tpaf310', 'en', 1, 'https://ror.org/05tpaf310 National Captioning Institute'), (59897, 'https://ror.org/05tpefp81', 'cs', 1, 'https://ror.org/05tpefp81 Povodí Moravy'), (59898, 'https://ror.org/05tqtn688', 'no_lang_code', 1, 'https://ror.org/05tqtn688 Inpek (Czechia)'), (59899, 'https://ror.org/05tsgwq26', 'no_lang_code', 1, 'https://ror.org/05tsgwq26 Gennet'), (59900, 'https://ror.org/05tstvt45', 'de', 1, 'https://ror.org/05tstvt45 Baudirektion Kanton Zürich'), (59901, 'https://ror.org/05tte3254', 'en', 1, 'https://ror.org/05tte3254 Federal Government of Mexico Gobierno de la República'), (59902, 'https://ror.org/05ttxxx91', 'en', 1, 'https://ror.org/05ttxxx91 Stony Wold Herbert Fund'), (59903, 'https://ror.org/05tv0zk25', 'en', 1, 'https://ror.org/05tv0zk25 The Food Group'), (59904, 'https://ror.org/05tw6nm64', 'en', 1, 'https://ror.org/05tw6nm64 American Institute of Taxidermy'), (59905, 'https://ror.org/05twg5e95', 'no_lang_code', 1, 'https://ror.org/05twg5e95 Korund Benátky (Czechia)'), (59906, 'https://ror.org/05tx9ga45', 'no_lang_code', 1, 'https://ror.org/05tx9ga45 InterEco (Czechia)'), (59907, 'https://ror.org/05tywyy79', 'no_lang_code', 1, 'https://ror.org/05tywyy79 Gazprom (Russia) Публичное Акционерное Общество Газпром'), (59908, 'https://ror.org/05tz0an20', 'cs', 1, 'https://ror.org/05tz0an20 Autoklub České Republiky'), (59909, 'https://ror.org/05v0k1d18', 'de', 1, 'https://ror.org/05v0k1d18 Institut für Korrosionsschutz Dresden'), (59910, 'https://ror.org/05v34vf11', 'en', 1, 'https://ror.org/05v34vf11 Volvo Environment Prize'), (59911, 'https://ror.org/05v4v2w58', 'en', 1, 'https://ror.org/05v4v2w58 Hebron Theological College'), (59912, 'https://ror.org/05v629t58', 'no_lang_code', 1, 'https://ror.org/05v629t58 Argo-Hytos (Czechia)'), (59913, 'https://ror.org/05v7gs072', 'fr', 1, 'https://ror.org/05v7gs072 Nextep'), (59914, 'https://ror.org/05v80mh43', 'no_lang_code', 1, 'https://ror.org/05v80mh43 Jizerské Pekárny (Czechia)'), (59915, 'https://ror.org/05v9bqs40', 'no_lang_code', 1, 'https://ror.org/05v9bqs40 ITAB'), (59916, 'https://ror.org/05vc7zb27', 'no_lang_code', 1, 'https://ror.org/05vc7zb27 Sevaron (Czechia)'), (59917, 'https://ror.org/05vd6yn18', 'no_lang_code', 1, 'https://ror.org/05vd6yn18 EDAP TMS (France)'), (59918, 'https://ror.org/05vea6821', 'en', 1, 'https://ror.org/05vea6821 William P. Wharton Trust'), (59919, 'https://ror.org/05vg8h197', 'no_lang_code', 1, 'https://ror.org/05vg8h197 Japan Space Forum 日本宇宙フォーラム'), (59920, 'https://ror.org/05vg8zj60', 'de', 1, 'https://ror.org/05vg8zj60 Kollegium für Hausarztmedizin'), (59921, 'https://ror.org/05vgxgc56', 'no_lang_code', 1, 'https://ror.org/05vgxgc56 Trask Solutions (Czechia)'), (59922, 'https://ror.org/05vh1g220', 'no_lang_code', 1, 'https://ror.org/05vh1g220 Klinger (United Kingdom)'), (59923, 'https://ror.org/05vh91d34', 'no_lang_code', 1, 'https://ror.org/05vh91d34 KB - Blok (Czechia)'), (59924, 'https://ror.org/05vkhtr02', 'no_lang_code', 1, 'https://ror.org/05vkhtr02 BCS Engineering (Czechia)'), (59925, 'https://ror.org/05vm6v844', 'no_lang_code', 1, 'https://ror.org/05vm6v844 Entracon (Czechia)'), (59926, 'https://ror.org/05vq00593', 'en', 1, 'https://ror.org/05vq00593 Galerie Moderního Umění v Roudnici nad Labem Gallery of Modern Art Roudnice nad Labem'), (59927, 'https://ror.org/05vsweb26', 'no_lang_code', 1, 'https://ror.org/05vsweb26 Government Testing Laboratory of Machines (Czechia) Státní zkušebna strojů'), (59928, 'https://ror.org/05vtq0k76', 'no_lang_code', 1, 'https://ror.org/05vtq0k76 Instant Access Technologies (United Kingdom)'), (59929, 'https://ror.org/05vv53n36', 'no_lang_code', 1, 'https://ror.org/05vv53n36 AGCO (Germany)'), (59930, 'https://ror.org/05vvvp143', 'en', 1, 'https://ror.org/05vvvp143 California Dried Plum Board'), (59931, 'https://ror.org/05w1dmd75', 'no_lang_code', 1, 'https://ror.org/05w1dmd75 Med Discovery (Switzerland)'), (59932, 'https://ror.org/05w1ran05', 'en', 1, 'https://ror.org/05w1ran05 Womens Foundation of Southern Arizona'), (59933, 'https://ror.org/05w2mbr20', 'no_lang_code', 1, 'https://ror.org/05w2mbr20 Sellier & Bellot (Czechia)'), (59934, 'https://ror.org/05w383724', 'no_lang_code', 1, 'https://ror.org/05w383724 Hansen Electric (Czechia)'), (59935, 'https://ror.org/05w67p097', 'no_lang_code', 1, 'https://ror.org/05w67p097 Advanced Engineering (Czechia)'), (59936, 'https://ror.org/05w9ckg77', 'en', 1, 'https://ror.org/05w9ckg77 Pet Care Trust'), (59937, 'https://ror.org/05wfg6079', 'en', 1, 'https://ror.org/05wfg6079 Japan Arteriosclerosis Prevention Fund 日本動脈硬化予防研究基金'), (59938, 'https://ror.org/05wggj048', 'no_lang_code', 1, 'https://ror.org/05wggj048 Vestado (Czechia)'), (59939, 'https://ror.org/05whaqa79', 'cs', 1, 'https://ror.org/05whaqa79 Česká Rozvojová Agentura'), (59940, 'https://ror.org/05wjqtf52', 'cs', 1, 'https://ror.org/05wjqtf52 Asociace Pedagogů Základního Školství České Republiky'), (59941, 'https://ror.org/05wk4pc85', 'en', 1, 'https://ror.org/05wk4pc85 Pediatric Infectious Diseases Society'), (59942, 'https://ror.org/05wmvrv56', 'no_lang_code', 1, 'https://ror.org/05wmvrv56 Slezská Dubina (Czechia)'), (59943, 'https://ror.org/05wng9697', 'en', 1, 'https://ror.org/05wng9697 Greening of Detroit'), (59944, 'https://ror.org/05wqf0473', 'no_lang_code', 1, 'https://ror.org/05wqf0473 Gross Wen Technologies (United States)'), (59945, 'https://ror.org/05wrfa149', 'no_lang_code', 1, 'https://ror.org/05wrfa149 Dako Brno (Czechia)'), (59946, 'https://ror.org/05wrzfv03', 'no_lang_code', 1, 'https://ror.org/05wrzfv03 Firel (Czechia)'), (59947, 'https://ror.org/05wtm9j71', 'en', 1, 'https://ror.org/05wtm9j71 Sidney R Baer Jr Foundation'), (59948, 'https://ror.org/05wv7q844', 'no_lang_code', 1, 'https://ror.org/05wv7q844 Trimarca (Switzerland)'), (59949, 'https://ror.org/05wyebt73', 'fr', 1, 'https://ror.org/05wyebt73 Association pour l''Assistance à Domicile aux Insuffisants Respiratoire Chroniques'), (59950, 'https://ror.org/05wyxeg04', 'de', 1, 'https://ror.org/05wyxeg04 Arud'), (59951, 'https://ror.org/05wz8pk64', 'no_lang_code', 1, 'https://ror.org/05wz8pk64 Abbott (France)'), (59952, 'https://ror.org/05x0m9n95', 'en', 1, 'https://ror.org/05x0m9n95 Heilongjiang Institute of Technology'), (59953, 'https://ror.org/05x10y854', 'fr', 1, 'https://ror.org/05x10y854 France Chirurgie Instrumentation'), (59954, 'https://ror.org/05x13kz70', 'no_lang_code', 1, 'https://ror.org/05x13kz70 Workswell (Czechia)'), (59955, 'https://ror.org/05x1f4x57', 'no_lang_code', 1, 'https://ror.org/05x1f4x57 Consygen CZ (Czechia)'), (59956, 'https://ror.org/05x217f96', 'de', 1, 'https://ror.org/05x217f96 Steirische Wirtschaftsförderung'), (59957, 'https://ror.org/05x4p3q72', 'en', 1, 'https://ror.org/05x4p3q72 South Dakota Community Foundation'), (59958, 'https://ror.org/05x7k6a83', 'no_lang_code', 1, 'https://ror.org/05x7k6a83 Dr. Reddy''s Laboratories (United States)'), (59959, 'https://ror.org/05x86b629', 'fr', 1, 'https://ror.org/05x86b629 Société d''Etudes Töpffériennes'), (59960, 'https://ror.org/05x8mfj57', 'en', 1, 'https://ror.org/05x8mfj57 Czech Society for Quality Česká Společnost pro Jakost'), (59961, 'https://ror.org/05x9m4736', 'no_lang_code', 1, 'https://ror.org/05x9m4736 Farmak Moravia (Czechia)'), (59962, 'https://ror.org/05xa8nr60', 'no_lang_code', 1, 'https://ror.org/05xa8nr60 Bodycote (Czechia)'), (59963, 'https://ror.org/05xeax323', 'no_lang_code', 1, 'https://ror.org/05xeax323 Hestia (Czechia)'), (59964, 'https://ror.org/05xf0e721', 'de', 1, 'https://ror.org/05xf0e721 Amt für Gemeinden und Raumordnung'), (59965, 'https://ror.org/05xj6ej51', 'cs', 1, 'https://ror.org/05xj6ej51 Energetické Třebíčsko'), (59966, 'https://ror.org/05xjcvb83', 'en', 1, 'https://ror.org/05xjcvb83 Society for Industrial and Organizational Psychology'), (59967, 'https://ror.org/05xk8yj88', 'no_lang_code', 1, 'https://ror.org/05xk8yj88 M Silnice (Czechia)'), (59968, 'https://ror.org/05xm6zq64', 'no_lang_code', 1, 'https://ror.org/05xm6zq64 Iguassu Software Systems (Czechia)'), (59969, 'https://ror.org/05xptf671', 'de', 1, 'https://ror.org/05xptf671 Kurt-Schwabe-Institut für Mess- und Sensortechnik Meinsberg'), (59970, 'https://ror.org/05xqftd54', 'no_lang_code', 1, 'https://ror.org/05xqftd54 Ecofer (Czechia)'), (59971, 'https://ror.org/05xqnpb54', 'en', 1, 'https://ror.org/05xqnpb54 National Young Farmers Coalition'), (59972, 'https://ror.org/05xry8z31', 'fr', 1, 'https://ror.org/05xry8z31 Evaux Laboratoires'), (59973, 'https://ror.org/05xs6nw18', 'en', 1, 'https://ror.org/05xs6nw18 Maud Kuistila Memorial Foundation Maud Kuistilan Muistosäätiö'), (59974, 'https://ror.org/05xvgy636', 'no_lang_code', 1, 'https://ror.org/05xvgy636 MediaTek (China) 聯發科技股份有限公司'), (59975, 'https://ror.org/05y0h1m73', 'no_lang_code', 1, 'https://ror.org/05y0h1m73 Agrointeg (Czechia)'), (59976, 'https://ror.org/05y0t3w48', 'no_lang_code', 1, 'https://ror.org/05y0t3w48 Creative Connections (Czechia)'), (59977, 'https://ror.org/05y15e107', 'en', 1, 'https://ror.org/05y15e107 Taiho Kogyo Tribology Research Foundation'), (59978, 'https://ror.org/05y18s311', 'no_lang_code', 1, 'https://ror.org/05y18s311 Guagliardi Ruoss (Switzerland)'), (59979, 'https://ror.org/05y1gzz92', 'no_lang_code', 1, 'https://ror.org/05y1gzz92 GHH-Bonatrans (Czechia)'), (59980, 'https://ror.org/05y33cq80', 'no_lang_code', 1, 'https://ror.org/05y33cq80 FCC (Czechia)'), (59981, 'https://ror.org/05y8ktr97', 'no_lang_code', 1, 'https://ror.org/05y8ktr97 B. Braun (France)'), (59982, 'https://ror.org/05yas2736', 'nl', 1, 'https://ror.org/05yas2736 Nederlands Oogheelkundig Onderzoek'), (59983, 'https://ror.org/05ybw6w30', 'no_lang_code', 1, 'https://ror.org/05ybw6w30 ACRE (Czechia)'), (59984, 'https://ror.org/05ye9s754', 'en', 1, 'https://ror.org/05ye9s754 Association Internationale de la Sécurité Sociale International Social Security Association'), (59985, 'https://ror.org/05yexgq55', 'no_lang_code', 1, 'https://ror.org/05yexgq55 Severomoravské Vodovody a Kanalizace Ostrava (Czechia)'), (59986, 'https://ror.org/05yfjtn64', 'en', 1, 'https://ror.org/05yfjtn64 Womens Foundation 婦女基金會有限公司'), (59987, 'https://ror.org/05yg2by49', 'no_lang_code', 1, 'https://ror.org/05yg2by49 Dartfish (Switzerland)'), (59988, 'https://ror.org/05yh12c19', 'cs', 1, 'https://ror.org/05yh12c19 Společnost pro Technologie Ochrany Památek'), (59989, 'https://ror.org/05yh1h167', 'nl', 1, 'https://ror.org/05yh1h167 Stichting tot Steun VCVGZ'), (59990, 'https://ror.org/05yh4rh25', 'en', 1, 'https://ror.org/05yh4rh25 Walton Family Foundation'), (59991, 'https://ror.org/05yj26y55', 'de', 1, 'https://ror.org/05yj26y55 Museo retico Museum retic Rätisches Museum'), (59992, 'https://ror.org/05yjjky95', 'no_lang_code', 1, 'https://ror.org/05yjjky95 One Resonance Sensors (United States)'), (59993, 'https://ror.org/05yjpzd92', 'fr', 1, 'https://ror.org/05yjpzd92 Bibliothèque Cantonale Jurassienne'), (59994, 'https://ror.org/05yjxqy63', 'no_lang_code', 1, 'https://ror.org/05yjxqy63 Podravka (Czechia)'), (59995, 'https://ror.org/05ykj7f85', 'en', 1, 'https://ror.org/05ykj7f85 Coir Board of India'), (59996, 'https://ror.org/05ymvmg49', 'no_lang_code', 1, 'https://ror.org/05ymvmg49 Gumárny Zubří (Czechia)'), (59997, 'https://ror.org/05ynech64', 'es', 1, 'https://ror.org/05ynech64 Servicio Nacional de Hidrología y Meteorología'), (59998, 'https://ror.org/05ynj8239', 'de', 1, 'https://ror.org/05ynj8239 Zentrum für Labormedizin'), (59999, 'https://ror.org/05ypkce93', 'no_lang_code', 1, 'https://ror.org/05ypkce93 Cortis Consulting'), (60000, 'https://ror.org/05yq91m89', 'cs', 1, 'https://ror.org/05yq91m89 Zdravotnická Záchranná Služba Hlavního Města Prahy'), (60001, 'https://ror.org/00012xz55', 'de', 1, 'https://ror.org/00012xz55 Hamburgische Investitions- und Förderbank'), (60002, 'https://ror.org/0002rg505', 'en', 1, 'https://ror.org/0002rg505 Vascular Institute of Virginia'), (60003, 'https://ror.org/0003h1s51', 'en', 1, 'https://ror.org/0003h1s51 International Adsorption Society'); INSERT INTO `rors` VALUES (60004, 'https://ror.org/000466g76', 'no_lang_code', 1, 'https://ror.org/000466g76 Techniker Krankenkasse (Germany)'), (60005, 'https://ror.org/000518j63', 'no', 1, 'https://ror.org/000518j63 Stavanger Acute Medicine Foundation for Education and Research Stavanger Akuttmedisinfond for utdanning og forskning'), (60006, 'https://ror.org/0007f0665', 'no_lang_code', 1, 'https://ror.org/0007f0665 MicroPort Orthopedics (Netherlands)'), (60007, 'https://ror.org/0008bth81', 'no_lang_code', 1, 'https://ror.org/0008bth81 Mezo Research (Australia)'), (60008, 'https://ror.org/0008ypy64', 'de', 1, 'https://ror.org/0008ypy64 BrustGesundheitZentrum Tirol'), (60009, 'https://ror.org/000ad3960', 'no_lang_code', 1, 'https://ror.org/000ad3960 Oystershell (Belgium)'), (60010, 'https://ror.org/000b1qx78', 'no_lang_code', 1, 'https://ror.org/000b1qx78 Revolution Research'), (60011, 'https://ror.org/000crk757', 'en', 1, 'https://ror.org/000crk757 St. Vincent''s Birmingham'), (60012, 'https://ror.org/000dkqr98', 'en', 1, 'https://ror.org/000dkqr98 Community Eye Care Foundation'), (60013, 'https://ror.org/000dspf25', 'en', 1, 'https://ror.org/000dspf25 McNeel Eye Center'), (60014, 'https://ror.org/000emaz53', 'en', 1, 'https://ror.org/000emaz53 Midwest Aortic & Vascular Institute'), (60015, 'https://ror.org/000g2fe29', 'en', 1, 'https://ror.org/000g2fe29 Perm Regional Oncology Center Пермский областной онкологический диспансер'), (60016, 'https://ror.org/000jtf850', 'no_lang_code', 1, 'https://ror.org/000jtf850 Sinopia Biosciences (United States)'), (60017, 'https://ror.org/000kkgk42', 'es', 1, 'https://ror.org/000kkgk42 Instituto de Oncología y Radiobiología'), (60018, 'https://ror.org/000n8re15', 'es', 1, 'https://ror.org/000n8re15 Hospital San Juan de la Cruz'), (60019, 'https://ror.org/000p04g78', 'de', 1, 'https://ror.org/000p04g78 Ministerium für Soziales, Arbeit, Gesundheit und Demografie'), (60020, 'https://ror.org/000pw2z54', 'es', 1, 'https://ror.org/000pw2z54 Maternal Perinatal Hospital Mónica Pretelini'), (60021, 'https://ror.org/000re6s27', 'no_lang_code', 1, 'https://ror.org/000re6s27 CHO America (Canada)'), (60022, 'https://ror.org/000rhcj53', 'en', 1, 'https://ror.org/000rhcj53 Rainbow Research'), (60023, 'https://ror.org/000txyc96', 'en', 1, 'https://ror.org/000txyc96 Clinical Institute of Brain'), (60024, 'https://ror.org/000x2q781', 'en', 1, 'https://ror.org/000x2q781 Arthritis Associates of Southern California'), (60025, 'https://ror.org/000y51230', 'en', 1, 'https://ror.org/000y51230 Vermont Natural Resources Council'), (60026, 'https://ror.org/000z10z62', 'en', 1, 'https://ror.org/000z10z62 VA National Center of Oncology after Fanarjyan Վ.Ա. Ֆանարջյանի անվան ուռուցքաբանության ազգային կենտրոն'), (60027, 'https://ror.org/000zjtf98', 'en', 1, 'https://ror.org/000zjtf98 Medical Center of South Arkansas'), (60028, 'https://ror.org/00108f448', 'en', 1, 'https://ror.org/00108f448 Midwest Institute for Minimally Invasive Therapies'), (60029, 'https://ror.org/0010r2q05', 'en', 1, 'https://ror.org/0010r2q05 United Medical Research Institute'), (60030, 'https://ror.org/00113vt82', 'en', 1, 'https://ror.org/00113vt82 International Spine and Pain Institute'), (60031, 'https://ror.org/00126za90', 'fr', 1, 'https://ror.org/00126za90 Hôpital d''Instruction des Armées Clermont-Tonnerre'), (60032, 'https://ror.org/00128qj25', 'fr', 1, 'https://ror.org/00128qj25 Clinique Neuro-Outaouais'), (60033, 'https://ror.org/0012k7s49', 'en', 1, 'https://ror.org/0012k7s49 Apri Health'), (60034, 'https://ror.org/0012pe324', 'en', 1, 'https://ror.org/0012pe324 Maharaj Institute of Immune Regenerative Medicine'), (60035, 'https://ror.org/00131m973', 'en', 1, 'https://ror.org/00131m973 Mack Eye Center'), (60036, 'https://ror.org/0013dpg50', 'no_lang_code', 1, 'https://ror.org/0013dpg50 Umenz (Netherlands)'), (60037, 'https://ror.org/0013xzr62', 'en', 1, 'https://ror.org/0013xzr62 International Maitland Teacher Association'), (60038, 'https://ror.org/0015kmr33', 'nl', 1, 'https://ror.org/0015kmr33 OHRA, Onderlinge ziektekostenverzekeringsfonds van Hoogere RijksAmbtenaren'), (60039, 'https://ror.org/0019sn611', 'en', 1, 'https://ror.org/0019sn611 Planning and Conservation League'), (60040, 'https://ror.org/001av7v52', 'en', 1, 'https://ror.org/001av7v52 Dr. h.c. Robert Mathys Stiftung für Forschung RMS Foundation'), (60041, 'https://ror.org/001b17f86', 'en', 1, 'https://ror.org/001b17f86 Conseil Européen European Council Europäischer Rat'), (60042, 'https://ror.org/001czh282', 'en', 1, 'https://ror.org/001czh282 The Irvine Institute of Medicine & Cosmetic Surgery'), (60043, 'https://ror.org/001d7gs74', 'no_lang_code', 1, 'https://ror.org/001d7gs74 DDC-I (United States)'), (60044, 'https://ror.org/001edkr35', 'nl', 1, 'https://ror.org/001edkr35 Vereniging Nederland-Davos'), (60045, 'https://ror.org/001f8m487', 'en', 1, 'https://ror.org/001f8m487 Global Environment and Technology Foundation'), (60046, 'https://ror.org/001g4fr45', 'nl', 1, 'https://ror.org/001g4fr45 Het Nieuwe Instituut'), (60047, 'https://ror.org/001g69757', 'en', 1, 'https://ror.org/001g69757 Phelps County Regional Medical Center'), (60048, 'https://ror.org/001gp6102', 'de', 1, 'https://ror.org/001gp6102 Edel + weiss Zahnärzte'), (60049, 'https://ror.org/001hc9y40', 'no_lang_code', 1, 'https://ror.org/001hc9y40 ResMed (Netherlands)'), (60050, 'https://ror.org/001m0em47', 'en', 1, 'https://ror.org/001m0em47 German Doctors'), (60051, 'https://ror.org/001m64s20', 'en', 1, 'https://ror.org/001m64s20 Bulgarian Antarctic Institute БЪЛГАРСКИ АНТАРКТИЧЕСКИ ИНСТИТУТ'), (60052, 'https://ror.org/001nh6z22', 'no_lang_code', 1, 'https://ror.org/001nh6z22 CA DIGITAL (Germany)'), (60053, 'https://ror.org/001pef276', 'no_lang_code', 1, 'https://ror.org/001pef276 Safecor (United States)'), (60054, 'https://ror.org/001pkzr89', 'en', 1, 'https://ror.org/001pkzr89 Apotekforeningen Norwegian Pharmacy Association'), (60055, 'https://ror.org/001qjw859', 'en', 1, 'https://ror.org/001qjw859 European Neuroendocrine Tumor Society'), (60056, 'https://ror.org/001smqx66', 'no_lang_code', 1, 'https://ror.org/001smqx66 ZSX Medical (United States)'), (60057, 'https://ror.org/001vn6g34', 'en', 1, 'https://ror.org/001vn6g34 Association of Specialty Physicians'), (60058, 'https://ror.org/001vtsp98', 'en', 1, 'https://ror.org/001vtsp98 Institute for Educational Inquiry'), (60059, 'https://ror.org/001x5fb42', 'de', 1, 'https://ror.org/001x5fb42 Therapiezentrum Harburg'), (60060, 'https://ror.org/001xy0e42', 'de', 1, 'https://ror.org/001xy0e42 Ärztliche Akademie für Psychotherapie von Kindern und Jugendlichen'), (60061, 'https://ror.org/001zdb338', 'it', 1, 'https://ror.org/001zdb338 Fondazione ISAL'), (60062, 'https://ror.org/0021y6a82', 'en', 1, 'https://ror.org/0021y6a82 California Life Sciences Association'), (60063, 'https://ror.org/0022e0327', 'no_lang_code', 1, 'https://ror.org/0022e0327 Schaper & Brümmer (Germany)'), (60064, 'https://ror.org/0025r1k74', 'pt', 1, 'https://ror.org/0025r1k74 Centro Hospitalar Tondela-Viseu'), (60065, 'https://ror.org/0028e8s02', 'en', 1, 'https://ror.org/0028e8s02 McFarland Clinic - Fort Dodge'), (60066, 'https://ror.org/0029et149', 'en', 1, 'https://ror.org/0029et149 University Reproductive Associates'), (60067, 'https://ror.org/0029ghb74', 'nl', 1, 'https://ror.org/0029ghb74 Stichting Vrienden van het Hart'), (60068, 'https://ror.org/002d8xd40', 'no_lang_code', 1, 'https://ror.org/002d8xd40 Accurate Clinical Research (United States)'), (60069, 'https://ror.org/002e72m14', 'en', 1, 'https://ror.org/002e72m14 St. Joseph Hospital'), (60070, 'https://ror.org/002hjb015', 'de', 1, 'https://ror.org/002hjb015 Klinik und Poliklinik für Mund-, Kiefer- und Plastische Gesichtschirurgie'), (60071, 'https://ror.org/002jbbs61', 'nl', 1, 'https://ror.org/002jbbs61 Continentie Stichting Nederland'), (60072, 'https://ror.org/002jbzp90', 'en', 1, 'https://ror.org/002jbzp90 Sceptor Pain Foundation'), (60073, 'https://ror.org/002jdvv38', 'fr', 1, 'https://ror.org/002jdvv38 Centre Hospitalier de Douai'), (60074, 'https://ror.org/002jry571', 'no_lang_code', 1, 'https://ror.org/002jry571 Ypsomed (Switzerland)'), (60075, 'https://ror.org/002jv8g15', 'es', 1, 'https://ror.org/002jv8g15 Fundación para La Investigación del Vino y La Nutrición'), (60076, 'https://ror.org/002kney35', 'no_lang_code', 1, 'https://ror.org/002kney35 Optical Polymer Research (United States)'), (60077, 'https://ror.org/002pzb313', 'en', 1, 'https://ror.org/002pzb313 The Kidney Foundation of Thailand มูลนิธิโรคไตแห่งประเทศไทย'), (60078, 'https://ror.org/002rp9w47', 'en', 1, 'https://ror.org/002rp9w47 National Institute of Emergency Medicine "Pirogov"'), (60079, 'https://ror.org/002rstz54', 'no_lang_code', 1, 'https://ror.org/002rstz54 TherapySelect (Germany)'), (60080, 'https://ror.org/002smyn79', 'en', 1, 'https://ror.org/002smyn79 Sun Protection Foundation'), (60081, 'https://ror.org/002yjkk86', 'en', 1, 'https://ror.org/002yjkk86 Czech Surgical Society Česká Chirurgická Společnost'), (60082, 'https://ror.org/002zcct17', 'en', 1, 'https://ror.org/002zcct17 Australian Rural Leadership Foundation'), (60083, 'https://ror.org/0031gef94', 'es', 1, 'https://ror.org/0031gef94 Sociedad Española de Medicina Interna'), (60084, 'https://ror.org/0031x0638', 'en', 1, 'https://ror.org/0031x0638 Barrie Urology Group'), (60085, 'https://ror.org/00322eq64', 'en', 1, 'https://ror.org/00322eq64 Association Canadienne des Chirurgiens Généraux Canadian Association of General Surgeons'), (60086, 'https://ror.org/003438m13', 'en', 1, 'https://ror.org/003438m13 Associated Colleges of the Twin Cities'), (60087, 'https://ror.org/00343zp30', 'en', 1, 'https://ror.org/00343zp30 Action Potential'), (60088, 'https://ror.org/00354aw77', 'no_lang_code', 1, 'https://ror.org/00354aw77 Bristol-Myers Squibb (Netherlands)'), (60089, 'https://ror.org/0037fca11', 'en', 1, 'https://ror.org/0037fca11 Australian Maritime and Fisheries Academy'), (60090, 'https://ror.org/00394zv26', 'en', 1, 'https://ror.org/00394zv26 Department of Disease Control'), (60091, 'https://ror.org/00396f155', 'no_lang_code', 1, 'https://ror.org/00396f155 Yuli Hospital 玉里醫院本部'), (60092, 'https://ror.org/0039g6563', 'pt', 1, 'https://ror.org/0039g6563 Hospital Universitário - Universidade Federal de Juiz de Fora'), (60093, 'https://ror.org/003akqg03', 'en', 1, 'https://ror.org/003akqg03 Aidan Foundation'), (60094, 'https://ror.org/003ayef58', 'en', 1, 'https://ror.org/003ayef58 Beijing Academy of Social Sciences 北京市社会科学院'), (60095, 'https://ror.org/003bxg127', 'en', 1, 'https://ror.org/003bxg127 Whitaker Center for Science and the Arts'), (60096, 'https://ror.org/003c3g222', 'en', 1, 'https://ror.org/003c3g222 Mental Research Institute'), (60097, 'https://ror.org/003dey933', 'nl', 1, 'https://ror.org/003dey933 Stichting Hofje Codde en Van Beresteyn'), (60098, 'https://ror.org/003dfn956', 'en', 1, 'https://ror.org/003dfn956 Department of Health & Family Welfare'), (60099, 'https://ror.org/003ebr303', 'en', 1, 'https://ror.org/003ebr303 Child Psychopharmacology Institute'), (60100, 'https://ror.org/003jb2109', 'en', 1, 'https://ror.org/003jb2109 European School of Osteopathy'), (60101, 'https://ror.org/003meye08', 'en', 1, 'https://ror.org/003meye08 Avans+'), (60102, 'https://ror.org/003mvv560', 'pt', 1, 'https://ror.org/003mvv560 Hemorio, Instituto Estadual de Hematologia Arthur de Siqueira Cavalcanti'), (60103, 'https://ror.org/003n39s44', 'nl', 1, 'https://ror.org/003n39s44 Apotheek Haagse Ziekenhuizen Pharmacy Hague Hospital'), (60104, 'https://ror.org/003r56a21', 'no_lang_code', 1, 'https://ror.org/003r56a21 Mastelli (Italy)'), (60105, 'https://ror.org/003s9de04', 'en', 1, 'https://ror.org/003s9de04 TMT Observatory'), (60106, 'https://ror.org/003smky23', 'en', 1, 'https://ror.org/003smky23 Sanford Health'), (60107, 'https://ror.org/003tbyf39', 'en', 1, 'https://ror.org/003tbyf39 Romanian Society of Nephrology Societatii Romane de Nefrologie'), (60108, 'https://ror.org/003tvwa79', 'en', 1, 'https://ror.org/003tvwa79 Tri-State Community Health Center'), (60109, 'https://ror.org/003vps097', 'en', 1, 'https://ror.org/003vps097 Hope Cancer Clinic'), (60110, 'https://ror.org/003w29077', 'en', 1, 'https://ror.org/003w29077 Ontario Clinical Oncology Group'), (60111, 'https://ror.org/003y1qj16', 'en', 1, 'https://ror.org/003y1qj16 Sanyu Africa Research Institute'), (60112, 'https://ror.org/003y38f74', 'en', 1, 'https://ror.org/003y38f74 National Recreation and Park Association'), (60113, 'https://ror.org/003z39n14', 'en', 1, 'https://ror.org/003z39n14 Shanghai International Medical Center'), (60114, 'https://ror.org/0041kxp69', 'en', 1, 'https://ror.org/0041kxp69 Dr.Heiko Pult Optometry and Vision Research'), (60115, 'https://ror.org/0043mrk19', 'en', 1, 'https://ror.org/0043mrk19 Norsk Smerteforening Norwegian Pain Society'), (60116, 'https://ror.org/0043n7w07', 'en', 1, 'https://ror.org/0043n7w07 Integrative Clinical Trials'), (60117, 'https://ror.org/00447xj53', 'no_lang_code', 1, 'https://ror.org/00447xj53 Lombard Medical (United Kingdom)'), (60118, 'https://ror.org/0044b0b76', 'en', 1, 'https://ror.org/0044b0b76 HealthCare Partners Medical Group'), (60119, 'https://ror.org/0044j7z53', 'en', 1, 'https://ror.org/0044j7z53 Hematology and Oncology Associates of Northeastern Pennsylvania'), (60120, 'https://ror.org/0047xfq17', 'de', 1, 'https://ror.org/0047xfq17 Deutsche Gesellschaft für Neurogastroenterologie und Motilität'), (60121, 'https://ror.org/00485nf12', 'no_lang_code', 1, 'https://ror.org/00485nf12 TheBeamer (United States)'), (60122, 'https://ror.org/0049tqy16', 'en', 1, 'https://ror.org/0049tqy16 St. Hope Foundation'), (60123, 'https://ror.org/004bh1g50', 'en', 1, 'https://ror.org/004bh1g50 National Horticultural Research Institute'), (60124, 'https://ror.org/004cmqw89', 'no_lang_code', 1, 'https://ror.org/004cmqw89 AOK Allgemeine Ortskrankenkasse'), (60125, 'https://ror.org/004cvgs24', 'en', 1, 'https://ror.org/004cvgs24 Food Ingredient and Health Research Institute'), (60126, 'https://ror.org/004d7av08', 'en', 1, 'https://ror.org/004d7av08 Sutherland Society'), (60127, 'https://ror.org/004ehjz87', 'en', 1, 'https://ror.org/004ehjz87 Society for Biomaterials'), (60128, 'https://ror.org/004fmny49', 'en', 1, 'https://ror.org/004fmny49 Mercy NeuroScience Institute'), (60129, 'https://ror.org/004gchq58', 'en', 1, 'https://ror.org/004gchq58 Cooperative Trials Group for Neuro-Oncology'), (60130, 'https://ror.org/004myp730', 'en', 1, 'https://ror.org/004myp730 Northern Territory Seafood Council'), (60131, 'https://ror.org/004n9g494', 'en', 1, 'https://ror.org/004n9g494 Task Applied Science'), (60132, 'https://ror.org/004nvjv21', 'en', 1, 'https://ror.org/004nvjv21 Center for Research Strategies'), (60133, 'https://ror.org/004pfc251', 'nl', 1, 'https://ror.org/004pfc251 Middelbaar Beroeps Onderwijs'), (60134, 'https://ror.org/004q2nj38', 'no_lang_code', 1, 'https://ror.org/004q2nj38 Hobi Instrument Services (United States)'), (60135, 'https://ror.org/004q7a047', 'no_lang_code', 1, 'https://ror.org/004q7a047 Bioline Products (Czechia)'), (60136, 'https://ror.org/004s4b254', 'en', 1, 'https://ror.org/004s4b254 Inspira Medical Center Vineland'), (60137, 'https://ror.org/004vymz43', 'en', 1, 'https://ror.org/004vymz43 Diabetes Association of Thailand สมาคมโรคเบาหวานแห่งประเทศไทย'), (60138, 'https://ror.org/004w3b772', 'en', 1, 'https://ror.org/004w3b772 Alice Hamilton Occupational Health Center'), (60139, 'https://ror.org/004xe4a74', 'no_lang_code', 1, 'https://ror.org/004xe4a74 Fyzzio (Netherlands)'), (60140, 'https://ror.org/004xnky59', 'en', 1, 'https://ror.org/004xnky59 Science Museum of Virginia'), (60141, 'https://ror.org/004znty77', 'en', 1, 'https://ror.org/004znty77 Joint Replacement Institute'), (60142, 'https://ror.org/004zscr15', 'en', 1, 'https://ror.org/004zscr15 St. Peter''s Hospital'), (60143, 'https://ror.org/0050bt095', 'en', 1, 'https://ror.org/0050bt095 Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine'), (60144, 'https://ror.org/0052b4n21', 'pt', 1, 'https://ror.org/0052b4n21 Fundação Ataulpho de Paiva'), (60145, 'https://ror.org/00536jb56', 'en', 1, 'https://ror.org/00536jb56 Hospital Consortium of San Mateo County'), (60146, 'https://ror.org/005489b68', 'en', 1, 'https://ror.org/005489b68 Institute of Mind Control & Brain Development'), (60147, 'https://ror.org/0055a4990', 'en', 1, 'https://ror.org/0055a4990 Dermatology Consulting Services'), (60148, 'https://ror.org/0055t9634', 'en', 1, 'https://ror.org/0055t9634 Clinical Trials of South Carolina'), (60149, 'https://ror.org/0055vz979', 'no_lang_code', 1, 'https://ror.org/0055vz979 Glauconix (United States)'), (60150, 'https://ror.org/00562d506', 'en', 1, 'https://ror.org/00562d506 Chicago Anesthesia Pain Specialists'), (60151, 'https://ror.org/0059chz26', 'no_lang_code', 1, 'https://ror.org/0059chz26 International Medical Research (Germany)'), (60152, 'https://ror.org/0059g0z40', 'en', 1, 'https://ror.org/0059g0z40 Council of Colleges of Acupuncture and Oriental Medicine'), (60153, 'https://ror.org/0059k0c96', 'de', 1, 'https://ror.org/0059k0c96 Krankenhaus Düren'), (60154, 'https://ror.org/005ajjs97', 'en', 1, 'https://ror.org/005ajjs97 Caribbean Agricultural Research and Development Institute'), (60155, 'https://ror.org/005cttr84', 'en', 1, 'https://ror.org/005cttr84 Clackamas Radiation Oncology Center'), (60156, 'https://ror.org/005ebyb46', 'no_lang_code', 1, 'https://ror.org/005ebyb46 TutorGen (United States)'), (60157, 'https://ror.org/005gwb033', 'en', 1, 'https://ror.org/005gwb033 Taiwan College of Healthcare Executive'), (60158, 'https://ror.org/005hc0b16', 'en', 1, 'https://ror.org/005hc0b16 Stavropol Regional Clinical Oncology Center Ставропольский областной клинический онкологический диспансер'), (60159, 'https://ror.org/005hh6506', 'no_lang_code', 1, 'https://ror.org/005hh6506 Syntellix (Germany)'), (60160, 'https://ror.org/005mppy75', 'en', 1, 'https://ror.org/005mppy75 Community Pharmacy Foundation'), (60161, 'https://ror.org/005pe1772', 'en', 1, 'https://ror.org/005pe1772 Sixth Affiliated Hospital of Sun Yat-sen University 中山大学附属第六医院'), (60162, 'https://ror.org/005snq210', 'en', 1, 'https://ror.org/005snq210 Southern Ocean Medical Center'), (60163, 'https://ror.org/005vj6496', 'no_lang_code', 1, 'https://ror.org/005vj6496 Greenyard Fresh (United Kingdom)'), (60164, 'https://ror.org/005vqqr19', 'pt', 1, 'https://ror.org/005vqqr19 Instituto do Câncer do Estado de São Paulo'), (60165, 'https://ror.org/005w1rm61', 'pt', 1, 'https://ror.org/005w1rm61 Hospital Alvorada'), (60166, 'https://ror.org/005wqmj88', 'en', 1, 'https://ror.org/005wqmj88 Alaska Geological Society'), (60167, 'https://ror.org/005zj1y35', 'es', 1, 'https://ror.org/005zj1y35 Somdex Ginecologia Dr. Santiago Dexeus'), (60168, 'https://ror.org/0061w5363', 'sk', 1, 'https://ror.org/0061w5363 Fakultná Nemocnica Trnava'), (60169, 'https://ror.org/0062czq56', 'en', 1, 'https://ror.org/0062czq56 DeGarmo Institute of Medical Research'), (60170, 'https://ror.org/0062ps924', 'no_lang_code', 1, 'https://ror.org/0062ps924 LABCATAL (France)'), (60171, 'https://ror.org/0065jhh26', 'en', 1, 'https://ror.org/0065jhh26 Cancer Center of Hawaii'), (60172, 'https://ror.org/0066mxd71', 'de', 1, 'https://ror.org/0066mxd71 Rexrodt von Fircks Stiftung'), (60173, 'https://ror.org/0066zpp98', 'en', 1, 'https://ror.org/0066zpp98 Agricultural Genomics Institute at Shenzhen 中国农业科学院深圳农业基因组研究所'), (60174, 'https://ror.org/006ab0n43', 'en', 1, 'https://ror.org/006ab0n43 Community Frameworks'), (60175, 'https://ror.org/006bc1e54', 'en', 1, 'https://ror.org/006bc1e54 Southern Fishermen Association'), (60176, 'https://ror.org/006dhhj35', 'en', 1, 'https://ror.org/006dhhj35 Alaska Oncology & Hematology'), (60177, 'https://ror.org/006ds0328', 'en', 1, 'https://ror.org/006ds0328 World Molecular Imaging Society'), (60178, 'https://ror.org/006gamx40', 'es', 1, 'https://ror.org/006gamx40 Hospital Universitari de Santa Maria'), (60179, 'https://ror.org/006gcvq32', 'en', 1, 'https://ror.org/006gcvq32 The Milton H. Erickson Foundation'), (60180, 'https://ror.org/006ggeh68', 'no_lang_code', 1, 'https://ror.org/006ggeh68 Bentley (Germany)'), (60181, 'https://ror.org/006gr2m12', 'nl', 1, 'https://ror.org/006gr2m12 Nederlandse Vereniging van Orthodontisten'), (60182, 'https://ror.org/006mdd626', 'pt', 1, 'https://ror.org/006mdd626 Sociedade Brasileira de Cirurgia de Cabeça e Pescoço'), (60183, 'https://ror.org/006rzj065', 'en', 1, 'https://ror.org/006rzj065 Institute for Environmental Research and Education'), (60184, 'https://ror.org/006t1gb51', 'en', 1, 'https://ror.org/006t1gb51 Heart & Vascular Institute of Florida'), (60185, 'https://ror.org/006w57p51', 'ro', 1, 'https://ror.org/006w57p51 Institutul Regional de Oncologie'), (60186, 'https://ror.org/006wckc26', 'en', 1, 'https://ror.org/006wckc26 Neutron Scattering Society of America'), (60187, 'https://ror.org/006zme475', 'no_lang_code', 1, 'https://ror.org/006zme475 Embedded Research Solutions (United States)'), (60188, 'https://ror.org/0071kdv81', 'no_lang_code', 1, 'https://ror.org/0071kdv81 Chedd Angier Production (United States)'), (60189, 'https://ror.org/0071tdq26', 'de', 1, 'https://ror.org/0071tdq26 Sana Klinikum Lichtenberg'), (60190, 'https://ror.org/007322p37', 'en', 1, 'https://ror.org/007322p37 Dunsan Korean Medicine Hospital 단산 한의원 병원'), (60191, 'https://ror.org/0073whr05', 'no_lang_code', 1, 'https://ror.org/0073whr05 Fujitsu (United States)'), (60192, 'https://ror.org/00740sw32', 'en', 1, 'https://ror.org/00740sw32 Asklepios Foundation'), (60193, 'https://ror.org/007416t51', 'no_lang_code', 1, 'https://ror.org/007416t51 Sysmex (Germany)'), (60194, 'https://ror.org/007492963', 'en', 1, 'https://ror.org/007492963 Grupo de Apoio ao Adolescente e à Criança com Câncer Support group for adolescents and children with cancer'), (60195, 'https://ror.org/0075ba798', 'en', 1, 'https://ror.org/0075ba798 Southeastern Spine Center & Research Institute'), (60196, 'https://ror.org/0075qjc87', 'en', 1, 'https://ror.org/0075qjc87 Mathematics Education Collaborative'), (60197, 'https://ror.org/00768sz96', 'en', 1, 'https://ror.org/00768sz96 Chinese People''s Armed Police Force Medical College Affiliated Hospital 中国人民武装警察部队医学院附属医院'), (60198, 'https://ror.org/007847151', 'en', 1, 'https://ror.org/007847151 Australian and New Zealand Intensive Care Society'), (60199, 'https://ror.org/007857862', 'no_lang_code', 1, 'https://ror.org/007857862 Kreiskrankenhaus Gummersbach'), (60200, 'https://ror.org/0079d7396', 'no_lang_code', 1, 'https://ror.org/0079d7396 Bountiful Applied Research Corporation (United States)'), (60201, 'https://ror.org/0079qbp72', 'en', 1, 'https://ror.org/0079qbp72 Uniontown Hospital Radiation Oncology'), (60202, 'https://ror.org/007aefc66', 'en', 1, 'https://ror.org/007aefc66 Pen Bay Medical Center'), (60203, 'https://ror.org/007b8s847', 'nl', 1, 'https://ror.org/007b8s847 GGD Haaglanden, Gemeentelijke gezondheidsdienst Haaglanden'), (60204, 'https://ror.org/007c43p06', 'pt', 1, 'https://ror.org/007c43p06 Brazilian Institute of Osteopathy Instituto Brasileiro de Osteopatia'), (60205, 'https://ror.org/007ca3v86', 'en', 1, 'https://ror.org/007ca3v86 Council for Advancement and Support of Education'), (60206, 'https://ror.org/007d0bq34', 'en', 1, 'https://ror.org/007d0bq34 Maier Foundation'), (60207, 'https://ror.org/007emtd94', 'no_lang_code', 1, 'https://ror.org/007emtd94 Nielsen (Germany)'), (60208, 'https://ror.org/007g95547', 'no_lang_code', 1, 'https://ror.org/007g95547 Immunitor (Mongolia)'), (60209, 'https://ror.org/007hfqg84', 'no_lang_code', 1, 'https://ror.org/007hfqg84 Nutricia (United Kingdom)'), (60210, 'https://ror.org/007jwqb84', 'en', 1, 'https://ror.org/007jwqb84 French River Education Center'), (60211, 'https://ror.org/007nc6623', 'en', 1, 'https://ror.org/007nc6623 The American Law Institute'), (60212, 'https://ror.org/007nw9a41', 'en', 1, 'https://ror.org/007nw9a41 University Orthopaedic Associates'), (60213, 'https://ror.org/007r4ws88', 'en', 1, 'https://ror.org/007r4ws88 Krishnadevaraya College of Dental Sciences and Hospital ಕೃಷ್ಣದೇವರಾಯ ದಂತ ವಿಜ್ಞಾನ ಮಹಾವಿದ್ಯಾಲಯ ಮತ್ತು ಆಸ್ಪತ್ರೆ'), (60214, 'https://ror.org/007rj1t21', 'nl', 1, 'https://ror.org/007rj1t21 Janusz Korczak Stichting'), (60215, 'https://ror.org/007rr9202', 'en', 1, 'https://ror.org/007rr9202 Utah Cancer Specialists'), (60216, 'https://ror.org/007sjwq14', 'nl', 1, 'https://ror.org/007sjwq14 Dokter Wittenberg Stichting'), (60217, 'https://ror.org/007tk2m83', 'no_lang_code', 1, 'https://ror.org/007tk2m83 Cleveland-Cliffs (United States)'), (60218, 'https://ror.org/007wy9707', 'en', 1, 'https://ror.org/007wy9707 Pali Momi Medical Center'), (60219, 'https://ror.org/007zn4n28', 'no_lang_code', 1, 'https://ror.org/007zn4n28 Hologic (Germany)'), (60220, 'https://ror.org/0081aw162', 'en', 1, 'https://ror.org/0081aw162 Arq Psychotrauma Expert Groep Arq Psychotrauma Expert Group'), (60221, 'https://ror.org/00828d816', 'it', 1, 'https://ror.org/00828d816 Studio Odontoiatrico Mangano'), (60222, 'https://ror.org/0082g5x07', 'en', 1, 'https://ror.org/0082g5x07 Better Education Inc'), (60223, 'https://ror.org/0084rd854', 'en', 1, 'https://ror.org/0084rd854 Institute for Sports Medicine Sportmedizinische Institut'), (60224, 'https://ror.org/008545842', 'en', 1, 'https://ror.org/008545842 White Clinic'), (60225, 'https://ror.org/0085er114', 'en', 1, 'https://ror.org/0085er114 Asthma Society of Ireland'), (60226, 'https://ror.org/00878jj67', 'en', 1, 'https://ror.org/00878jj67 Pain Management Institute'), (60227, 'https://ror.org/0087pxt17', 'es', 1, 'https://ror.org/0087pxt17 Fundación Pethema'), (60228, 'https://ror.org/0088a9521', 'no_lang_code', 1, 'https://ror.org/0088a9521 Universe Technical Translation (United States)'), (60229, 'https://ror.org/0089jr070', 'en', 1, 'https://ror.org/0089jr070 Techbridge (United States)'), (60230, 'https://ror.org/008a4xs91', 'en', 1, 'https://ror.org/008a4xs91 Alan Turing Institute Almere'), (60231, 'https://ror.org/008adck89', 'no_lang_code', 1, 'https://ror.org/008adck89 Analyze & Realize (Germany)'), (60232, 'https://ror.org/008aexf53', 'en', 1, 'https://ror.org/008aexf53 Merrion Fertility Clinic'), (60233, 'https://ror.org/008cpgt80', 'no_lang_code', 1, 'https://ror.org/008cpgt80 DJO Global (Germany)'), (60234, 'https://ror.org/008dhsm98', 'en', 1, 'https://ror.org/008dhsm98 Saint Joseph Hospital East'), (60235, 'https://ror.org/008e4jj26', 'en', 1, 'https://ror.org/008e4jj26 Delaware Valley Industrial Resource Center'), (60236, 'https://ror.org/008gj9m82', 'de', 1, 'https://ror.org/008gj9m82 Lesmüller-Stiftung'), (60237, 'https://ror.org/008mcnd42', 'no_lang_code', 1, 'https://ror.org/008mcnd42 Origin BioMed (Canada)'), (60238, 'https://ror.org/008n6hb03', 'en', 1, 'https://ror.org/008n6hb03 Vachira Phuket Hospital โรงพยาบาลศูนย์วชิระภูเก็ต'), (60239, 'https://ror.org/008nt0z81', 'en', 1, 'https://ror.org/008nt0z81 Central Clinical Hospital of Civil Aviation'), (60240, 'https://ror.org/008nyfh72', 'en', 1, 'https://ror.org/008nyfh72 World Future Society'), (60241, 'https://ror.org/008pyjt05', 'en', 1, 'https://ror.org/008pyjt05 Institut für Pathologie Celle Institute of Pathology Celle'), (60242, 'https://ror.org/008qav573', 'en', 1, 'https://ror.org/008qav573 The Foundation for Peripheral Neuropathy'), (60243, 'https://ror.org/008qz0n88', 'no_lang_code', 1, 'https://ror.org/008qz0n88 Blue Sky Research (United States)'), (60244, 'https://ror.org/008v85a91', 'en', 1, 'https://ror.org/008v85a91 Alaska Native Heritage Center'), (60245, 'https://ror.org/008vha608', 'no_lang_code', 1, 'https://ror.org/008vha608 Nestlé (South Africa)'), (60246, 'https://ror.org/008vhq233', 'en', 1, 'https://ror.org/008vhq233 North American Skull Base Society'), (60247, 'https://ror.org/008x2am79', 'en', 1, 'https://ror.org/008x2am79 Chengdu Women''s and Children''s Central Hospital 成都市妇女儿童中心医院'), (60248, 'https://ror.org/008xssk57', 'no_lang_code', 1, 'https://ror.org/008xssk57 gesetzlichen Krankenversicherungen gkv informatik (Germany)'), (60249, 'https://ror.org/008zpgd78', 'no_lang_code', 1, 'https://ror.org/008zpgd78 Qualissima (France)'), (60250, 'https://ror.org/00933dx23', 'no_lang_code', 1, 'https://ror.org/00933dx23 Perfusion Solution (United States)'), (60251, 'https://ror.org/0093ach88', 'en', 1, 'https://ror.org/0093ach88 CHI Memorial Medical Group'), (60252, 'https://ror.org/0093yfm43', 'de', 1, 'https://ror.org/0093yfm43 Institut für Verhaltenstherapie-Ausbildung Hamburg'), (60253, 'https://ror.org/0095qtr23', 'en', 1, 'https://ror.org/0095qtr23 Finnish Society of Obstetrics and Gynaecology Suomen Gynekologiyhdistys'), (60254, 'https://ror.org/009914361', 'en', 1, 'https://ror.org/009914361 Zaporizhzhia Medical Academy of Post-Graduate Education Ministry of Health of Ukraine Запорізька медична академія післядипломної освіти Міністерства охорони здоров’я України'), (60255, 'https://ror.org/009cq8s89', 'no_lang_code', 1, 'https://ror.org/009cq8s89 Olympus (Netherlands)'), (60256, 'https://ror.org/009ewjt73', 'en', 1, 'https://ror.org/009ewjt73 Four Winds Hospital'), (60257, 'https://ror.org/009fgen45', 'en', 1, 'https://ror.org/009fgen45 Chitwan Medical College'), (60258, 'https://ror.org/009gj6k64', 'de', 1, 'https://ror.org/009gj6k64 DRK Kamillus Klinik'), (60259, 'https://ror.org/009j5xv46', 'de', 1, 'https://ror.org/009j5xv46 Berufsgenossenschaft für Gesundheitsdienst und Wohlfahrtspflege'), (60260, 'https://ror.org/009mmg508', 'no_lang_code', 1, 'https://ror.org/009mmg508 Vistex Composites (United States)'), (60261, 'https://ror.org/009py3f05', 'en', 1, 'https://ror.org/009py3f05 Center for Child and Family Health'), (60262, 'https://ror.org/009qnrs53', 'es', 1, 'https://ror.org/009qnrs53 Asepeyo Hospital Sant Cugat'), (60263, 'https://ror.org/009r5p347', 'en', 1, 'https://ror.org/009r5p347 Ludwig Boltzmann Institute for Lung Vascular Research'), (60264, 'https://ror.org/009tgn030', 'en', 1, 'https://ror.org/009tgn030 American Pancreatic Association'), (60265, 'https://ror.org/009tt1y46', 'en', 1, 'https://ror.org/009tt1y46 Autodesk Foundation'), (60266, 'https://ror.org/009v0hs75', 'nl', 1, 'https://ror.org/009v0hs75 Stichting Bergh in het Zadel'), (60267, 'https://ror.org/009vxx508', 'en', 1, 'https://ror.org/009vxx508 Tennessee Physical Therapy Association'), (60268, 'https://ror.org/009w6v212', 'en', 1, 'https://ror.org/009w6v212 Nizhny Novgorod Regional Clinical Hospital named after Semashko Нижегородская областная клиническая больница им. Н.А.Семашко'), (60269, 'https://ror.org/009xczs96', 'en', 1, 'https://ror.org/009xczs96 Midas Multispeciality Hospital'), (60270, 'https://ror.org/009xp9857', 'de', 1, 'https://ror.org/009xp9857 Deutsche Stiftung Eierstockkrebs'), (60271, 'https://ror.org/00a0bqh48', 'de', 1, 'https://ror.org/00a0bqh48 Klinik für Frauenheilkunde'), (60272, 'https://ror.org/00a1kgg63', 'no_lang_code', 1, 'https://ror.org/00a1kgg63 ACR Electronics (United States)'), (60273, 'https://ror.org/00a1wp308', 'en', 1, 'https://ror.org/00a1wp308 Effective Intervention'), (60274, 'https://ror.org/00a2ywd05', 'en', 1, 'https://ror.org/00a2ywd05 Acid Maltase Deficiency Association'), (60275, 'https://ror.org/00a34ea95', 'ro', 1, 'https://ror.org/00a34ea95 Institutul Regional de Gastroenterologie Prof. Dr. Octavian Fodor'), (60276, 'https://ror.org/00a43s158', 'nl', 1, 'https://ror.org/00a43s158 Hart voor Research Aalst'), (60277, 'https://ror.org/00a4sne40', 'en', 1, 'https://ror.org/00a4sne40 The Evolution Institute'), (60278, 'https://ror.org/00a8x7j67', 'en', 1, 'https://ror.org/00a8x7j67 Federal Law Enforcement Training Centers'), (60279, 'https://ror.org/00ab7gt92', 'no_lang_code', 1, 'https://ror.org/00ab7gt92 Sinclair Pharma'), (60280, 'https://ror.org/00abcs339', 'no_lang_code', 1, 'https://ror.org/00abcs339 Stasys Medical (United States)'), (60281, 'https://ror.org/00adthh60', 'de', 1, 'https://ror.org/00adthh60 Vestische Caritas-Kliniken'), (60282, 'https://ror.org/00aeyav11', 'en', 1, 'https://ror.org/00aeyav11 Foundation for Biomedical Research'), (60283, 'https://ror.org/00af9q554', 'no_lang_code', 1, 'https://ror.org/00af9q554 Vitromics (Netherlands)'), (60284, 'https://ror.org/00afzcs08', 'no_lang_code', 1, 'https://ror.org/00afzcs08 HumanTotalCare (Netherlands)'), (60285, 'https://ror.org/00aj8m584', 'no_lang_code', 1, 'https://ror.org/00aj8m584 Optana (Germany)'), (60286, 'https://ror.org/00am1hd38', 'en', 1, 'https://ror.org/00am1hd38 United Leukodystrophy Foundation'), (60287, 'https://ror.org/00ame3479', 'en', 1, 'https://ror.org/00ame3479 Work Opportunity Center'), (60288, 'https://ror.org/00ap4jg40', 'sl', 1, 'https://ror.org/00ap4jg40 Inštitut za preventivno medicino'), (60289, 'https://ror.org/00apa5z77', 'no_lang_code', 1, 'https://ror.org/00apa5z77 InquisitHealth (United States)'), (60290, 'https://ror.org/00apfzg17', 'pt', 1, 'https://ror.org/00apfzg17 Hospital Ortopédico de Passo Fundo'), (60291, 'https://ror.org/00aqfrr40', 'pt', 1, 'https://ror.org/00aqfrr40 Hospital Universitário de Santa Maria'), (60292, 'https://ror.org/00arjmf19', 'en', 1, 'https://ror.org/00arjmf19 Triple O Medical Services'), (60293, 'https://ror.org/00at08b36', 'es', 1, 'https://ror.org/00at08b36 Hospital Universitario de Torrejón'), (60294, 'https://ror.org/00at6yb56', 'en', 1, 'https://ror.org/00at6yb56 Jiangxi Province Soil and Water Conservation Science Research Institute 江西省水土保持科学研究院'), (60295, 'https://ror.org/00at7nn49', 'en', 1, 'https://ror.org/00at7nn49 Liverpool Women''s Health Centre'), (60296, 'https://ror.org/00aw4mh72', 'no_lang_code', 1, 'https://ror.org/00aw4mh72 Madison Group (United States)'), (60297, 'https://ror.org/00awtmg03', 'en', 1, 'https://ror.org/00awtmg03 Northern New Mexico Health Center'), (60298, 'https://ror.org/00awvt671', 'no_lang_code', 1, 'https://ror.org/00awvt671 Roche (Finland)'), (60299, 'https://ror.org/00axjbs56', 'en', 1, 'https://ror.org/00axjbs56 Borland Groover Clinic'), (60300, 'https://ror.org/00axvkc03', 'fr', 1, 'https://ror.org/00axvkc03 Association Française de Chirurgie'), (60301, 'https://ror.org/00ayb2728', 'en', 1, 'https://ror.org/00ayb2728 Patrick Air Force Base'), (60302, 'https://ror.org/00b095n33', 'no_lang_code', 1, 'https://ror.org/00b095n33 Ribometrix (United States)'), (60303, 'https://ror.org/00b168w70', 'es', 1, 'https://ror.org/00b168w70 Clínica IVI Alicante'), (60304, 'https://ror.org/00b3d7291', 'es', 1, 'https://ror.org/00b3d7291 Clínica Rementería'), (60305, 'https://ror.org/00b3xjw51', 'nl', 1, 'https://ror.org/00b3xjw51 GGZ Noord-Holland-Noord'), (60306, 'https://ror.org/00b5yqe44', 'no_lang_code', 1, 'https://ror.org/00b5yqe44 Myolex (United States)'), (60307, 'https://ror.org/00bbh3b38', 'en', 1, 'https://ror.org/00bbh3b38 International Piezoelectric Surgery Academy'), (60308, 'https://ror.org/00bcgyq51', 'en', 1, 'https://ror.org/00bcgyq51 Great Lakes Environmental Center'), (60309, 'https://ror.org/00be8q935', 'en', 1, 'https://ror.org/00be8q935 National Board for Professional Teaching Standards'), (60310, 'https://ror.org/00bhbea87', 'en', 1, 'https://ror.org/00bhbea87 Second Affiliated Hospital of Jiangxi University of TCM 江西中医药大学附属第二医院'), (60311, 'https://ror.org/00bkg1j27', 'en', 1, 'https://ror.org/00bkg1j27 The Astronauts Memorial Foundation'), (60312, 'https://ror.org/00bkk2469', 'en', 1, 'https://ror.org/00bkk2469 Medarva Healthcare'), (60313, 'https://ror.org/00bpfyj89', 'en', 1, 'https://ror.org/00bpfyj89 Shenzhen Inno Translational Medicine Institute'), (60314, 'https://ror.org/00bqc1z76', 'en', 1, 'https://ror.org/00bqc1z76 Central-Asian Institute for Applied Geosciences Центрально-Азиатский Институт прикладных Исследований Земли'), (60315, 'https://ror.org/00bqttt79', 'en', 1, 'https://ror.org/00bqttt79 Islamic Azad University, Marvdasht دانشگاه آزاد اسلامی واحد مرودشت'), (60316, 'https://ror.org/00brfrj94', 'en', 1, 'https://ror.org/00brfrj94 Veterans for America'), (60317, 'https://ror.org/00bvdsg05', 'de', 1, 'https://ror.org/00bvdsg05 Krankenhaus Agatharied'), (60318, 'https://ror.org/00byb9q66', 'no_lang_code', 1, 'https://ror.org/00byb9q66 Fractyl (United States)'), (60319, 'https://ror.org/00byypm17', 'en', 1, 'https://ror.org/00byypm17 American Health Research Institute'), (60320, 'https://ror.org/00c0e8k87', 'en', 1, 'https://ror.org/00c0e8k87 Pothecary Witham Weld Solicitors'), (60321, 'https://ror.org/00c11v577', 'en', 1, 'https://ror.org/00c11v577 Rice Research Institute 广东省农业科学院水稻研究所'), (60322, 'https://ror.org/00c5hbd86', 'no_lang_code', 1, 'https://ror.org/00c5hbd86 Panin (Italy)'), (60323, 'https://ror.org/00c5s4m23', 'en', 1, 'https://ror.org/00c5s4m23 State Scientific Center of Coloproctology'), (60324, 'https://ror.org/00c6acq81', 'nl', 1, 'https://ror.org/00c6acq81 Galactosemie Vereniging Nederland'), (60325, 'https://ror.org/00c7tye13', 'pt', 1, 'https://ror.org/00c7tye13 Medcin Dermatologia'), (60326, 'https://ror.org/00c9v5g25', 'nl', 1, 'https://ror.org/00c9v5g25 Stichting FORCE'), (60327, 'https://ror.org/00cb3r984', 'fr', 1, 'https://ror.org/00cb3r984 Ministry of Public Health Ministère de la Santé Publique'), (60328, 'https://ror.org/00ccsy875', 'nl', 1, 'https://ror.org/00ccsy875 Tante Louise'), (60329, 'https://ror.org/00cde8652', 'en', 1, 'https://ror.org/00cde8652 Laureate Psychiatric Clinic and Hospital'), (60330, 'https://ror.org/00cdkww69', 'en', 1, 'https://ror.org/00cdkww69 Williamsburg Technical College'), (60331, 'https://ror.org/00cdpwj98', 'no_lang_code', 1, 'https://ror.org/00cdpwj98 Vivisol (Netherlands)'), (60332, 'https://ror.org/00cf1wm13', 'es', 1, 'https://ror.org/00cf1wm13 Conferencia de Rectores de las Universidades Españolas'), (60333, 'https://ror.org/00cfpf441', 'nl', 1, 'https://ror.org/00cfpf441 Evean'), (60334, 'https://ror.org/00cftt483', 'no_lang_code', 1, 'https://ror.org/00cftt483 Hoya Surgical Optics (United States)'), (60335, 'https://ror.org/00cgpr989', 'en', 1, 'https://ror.org/00cgpr989 Lucamed'), (60336, 'https://ror.org/00cj1jz35', 'en', 1, 'https://ror.org/00cj1jz35 Catholic Charities Archdiocese of Washington'), (60337, 'https://ror.org/00cj4je85', 'no_lang_code', 1, 'https://ror.org/00cj4je85 Worldwide Clinical Trials (United States)'), (60338, 'https://ror.org/00cjqwv82', 'en', 1, 'https://ror.org/00cjqwv82 Minnesota''s Private Colleges'), (60339, 'https://ror.org/00ck5vv44', 'en', 1, 'https://ror.org/00ck5vv44 Ignited'), (60340, 'https://ror.org/00cm7z053', 'en', 1, 'https://ror.org/00cm7z053 Health First'), (60341, 'https://ror.org/00cnyek90', 'en', 1, 'https://ror.org/00cnyek90 American Institute of Professional Geologists'), (60342, 'https://ror.org/00cr1ar81', 'en', 1, 'https://ror.org/00cr1ar81 Australian and New Zealand Society of Palliative Medicine'), (60343, 'https://ror.org/00ctszj26', 'en', 1, 'https://ror.org/00ctszj26 Cleveland Shoulder Institute'), (60344, 'https://ror.org/00d110q75', 'en', 1, 'https://ror.org/00d110q75 Sacred Heart Hospital'), (60345, 'https://ror.org/00d18j871', 'fr', 1, 'https://ror.org/00d18j871 Collège d''Études Ostéopathiques de Montréal'), (60346, 'https://ror.org/00d36eq66', 'en', 1, 'https://ror.org/00d36eq66 National and University Library "St. Kliment of Ohrid" Национална и универзитетска библиотека „Св. Климент Охридски “'), (60347, 'https://ror.org/00d435084', 'no_lang_code', 1, 'https://ror.org/00d435084 Factory Physics (United States)'), (60348, 'https://ror.org/00d5ej794', 'en', 1, 'https://ror.org/00d5ej794 Hematology\\Oncology Clinic'), (60349, 'https://ror.org/00d619908', 'es', 1, 'https://ror.org/00d619908 Instituto Mexicano de Oftalmología IAP'), (60350, 'https://ror.org/00d6bjs95', 'en', 1, 'https://ror.org/00d6bjs95 China Guangzhou Analysis and Testing Center 中国广州分析测试中心'), (60351, 'https://ror.org/00d7qnf81', 'nl', 1, 'https://ror.org/00d7qnf81 Zorg voor innoveren'), (60352, 'https://ror.org/00da4q652', 'en', 1, 'https://ror.org/00da4q652 Sutherland Cranial College of Osteopathy'), (60353, 'https://ror.org/00dav3y17', 'nl', 1, 'https://ror.org/00dav3y17 Huygen Installatie Adviseurs'), (60354, 'https://ror.org/00dbfqh37', 'en', 1, 'https://ror.org/00dbfqh37 Golden Helix Foundation'), (60355, 'https://ror.org/00dd2mx78', 'en', 1, 'https://ror.org/00dd2mx78 Allied Biomedical Research Institute'), (60356, 'https://ror.org/00dd86343', 'es', 1, 'https://ror.org/00dd86343 Hospital de Nens de Barcelona'), (60357, 'https://ror.org/00ddc4178', 'en', 1, 'https://ror.org/00ddc4178 Voronezh Regional Clinical Oncology Center Воронежский областной клинический онкологический диспансер'), (60358, 'https://ror.org/00ddrsv17', 'no_lang_code', 1, 'https://ror.org/00ddrsv17 Splitvane Engineers (United States)'), (60359, 'https://ror.org/00dehxn63', 'en', 1, 'https://ror.org/00dehxn63 Canadian Fasteners Institute'), (60360, 'https://ror.org/00dfdhy47', 'nl', 1, 'https://ror.org/00dfdhy47 Stichting Artrose Zorg'), (60361, 'https://ror.org/00dfpj523', 'en', 1, 'https://ror.org/00dfpj523 Heliodor Swiecicki Clinical Hospital Szpital Kliniczny im. Heliodora Święcickiego w Poznaniu'), (60362, 'https://ror.org/00dhqzt16', 'de', 1, 'https://ror.org/00dhqzt16 INVADE Institut für Versorgungsforschung'), (60363, 'https://ror.org/00djc6h11', 'en', 1, 'https://ror.org/00djc6h11 UW Cancer Center Johnson Creek'), (60364, 'https://ror.org/00dkbxq38', 'no_lang_code', 1, 'https://ror.org/00dkbxq38 Hikma Pharmaceuticals (Germany)'), (60365, 'https://ror.org/00dkp4z50', 'nl', 1, 'https://ror.org/00dkp4z50 GGD Rotterdam-Rijnmond, Gemeentelijke gezondheidsdienst Rotterdam-Rijnmond'), (60366, 'https://ror.org/00dmsga81', 'en', 1, 'https://ror.org/00dmsga81 Palomar Health'), (60367, 'https://ror.org/00dpz6e68', 'de', 1, 'https://ror.org/00dpz6e68 Rut- und Klaus-Bahlsen-Stiftung'), (60368, 'https://ror.org/00dqec984', 'en', 1, 'https://ror.org/00dqec984 Hope Women''s Cancer Centers'), (60369, 'https://ror.org/00dr70705', 'de', 1, 'https://ror.org/00dr70705 Frauenklinik an der Elbe'), (60370, 'https://ror.org/00dt6z133', 'en', 1, 'https://ror.org/00dt6z133 Big Horn Basin Regional Cancer Center'), (60371, 'https://ror.org/00dtsng04', 'en', 1, 'https://ror.org/00dtsng04 Republican Clinical Hospital of the Ministry of Health of the Republic of Tatarstan'), (60372, 'https://ror.org/00dv58j78', 'en', 1, 'https://ror.org/00dv58j78 Protexin'), (60373, 'https://ror.org/00dvqrz49', 'de', 1, 'https://ror.org/00dvqrz49 Helios Amper-Klinikum Dachau'), (60374, 'https://ror.org/00dw21h32', 'en', 1, 'https://ror.org/00dw21h32 Flint Hills Community Health Center'), (60375, 'https://ror.org/00dx38855', 'en', 1, 'https://ror.org/00dx38855 McFarland Clinic - Jefferson'), (60376, 'https://ror.org/00dxw4v18', 'fr', 1, 'https://ror.org/00dxw4v18 Hôpital Couple Enfant'), (60377, 'https://ror.org/00dyr0c82', 'en', 1, 'https://ror.org/00dyr0c82 Adena Regional Medical Center'), (60378, 'https://ror.org/00e765c94', 'no_lang_code', 1, 'https://ror.org/00e765c94 Goolwa Pipi (Australia)'), (60379, 'https://ror.org/00e81jd95', 'no_lang_code', 1, 'https://ror.org/00e81jd95 Sapporo Higashi Tokushukai Hospital 札幌東急百貨店'), (60380, 'https://ror.org/00ebjgp93', 'en', 1, 'https://ror.org/00ebjgp93 National Association of People with HIV Australia'), (60381, 'https://ror.org/00ec18z53', 'no_lang_code', 1, 'https://ror.org/00ec18z53 BEGO Implant Systems (Germany)'), (60382, 'https://ror.org/00ef78t34', 'no_lang_code', 1, 'https://ror.org/00ef78t34 Novaliq (Germany)'), (60383, 'https://ror.org/00eggnv95', 'en', 1, 'https://ror.org/00eggnv95 Finnish Safety and Chemicals Agency Säkerhets- och kemikalieverket Turvallisuus- ja kemikaalivirasto'), (60384, 'https://ror.org/00ej70p06', 'en', 1, 'https://ror.org/00ej70p06 Orygen Youth Health'), (60385, 'https://ror.org/00ekwj913', 'no_lang_code', 1, 'https://ror.org/00ekwj913 Humedics (Germany)'), (60386, 'https://ror.org/00en0kf81', 'en', 1, 'https://ror.org/00en0kf81 Glendale Heart Institute'), (60387, 'https://ror.org/00ermfs73', 'en', 1, 'https://ror.org/00ermfs73 Budgetary Health Care Institution of the Omsk Region "Clinical Oncology Center"'), (60388, 'https://ror.org/00esbf302', 'de', 1, 'https://ror.org/00esbf302 St. Elisabeth-Krankenhaus Leipzig'), (60389, 'https://ror.org/00etqq360', 'en', 1, 'https://ror.org/00etqq360 Marshfield Clinic'), (60390, 'https://ror.org/00ettzs98', 'no_lang_code', 1, 'https://ror.org/00ettzs98 Ascent Bio-Nano Technologies (United States)'), (60391, 'https://ror.org/00evjez55', 'no_lang_code', 1, 'https://ror.org/00evjez55 Tethys Research (United States)'), (60392, 'https://ror.org/00evne535', 'no_lang_code', 1, 'https://ror.org/00evne535 Apollo Medical Devices (United States)'), (60393, 'https://ror.org/00ey8ew03', 'no_lang_code', 1, 'https://ror.org/00ey8ew03 Löwenstein Medical (Germany)'), (60394, 'https://ror.org/00eytwa65', 'en', 1, 'https://ror.org/00eytwa65 Allied Research Society'), (60395, 'https://ror.org/00ezhaq65', 'en', 1, 'https://ror.org/00ezhaq65 Fort Wayne Medical Institute'), (60396, 'https://ror.org/00ezv4e18', 'es', 1, 'https://ror.org/00ezv4e18 Hospital Viamed Valvanera'), (60397, 'https://ror.org/00f054b56', 'en', 1, 'https://ror.org/00f054b56 Thai Dietetic Association'), (60398, 'https://ror.org/00f180m78', 'de', 1, 'https://ror.org/00f180m78 Klinik und Poliklinik für Psychosomatik und Psychotherapie'), (60399, 'https://ror.org/00f2tsn51', 'no_lang_code', 1, 'https://ror.org/00f2tsn51 Takeda (Italy)'), (60400, 'https://ror.org/00f378f80', 'sv', 1, 'https://ror.org/00f378f80 Akademiska Barnsjukhuset'), (60401, 'https://ror.org/00f3p5990', 'no_lang_code', 1, 'https://ror.org/00f3p5990 Pyrochem Catalyst Company (United States)'), (60402, 'https://ror.org/00f91fg22', 'en', 1, 'https://ror.org/00f91fg22 Tasmanian Seafood Industry Council'), (60403, 'https://ror.org/00fan0f25', 'no_lang_code', 1, 'https://ror.org/00fan0f25 Servier (China)'), (60404, 'https://ror.org/00fb1n669', 'en', 1, 'https://ror.org/00fb1n669 Rhode Island Mood and Memory Research Institute'), (60405, 'https://ror.org/00fdh5j55', 'no_lang_code', 1, 'https://ror.org/00fdh5j55 Given Imaging (Germany)'), (60406, 'https://ror.org/00feb6h18', 'nl', 1, 'https://ror.org/00feb6h18 Stichting RevaZorg'), (60407, 'https://ror.org/00feyy410', 'it', 1, 'https://ror.org/00feyy410 Associaizone per lo Studio della Sclerosi Sistemica e delle Malattie'), (60408, 'https://ror.org/00ffe3313', 'en', 1, 'https://ror.org/00ffe3313 Deutsche Gesellschaft für Pneumologie und Beatmungsmedizin German Respiratory Society'), (60409, 'https://ror.org/00fg6ww52', 'no_lang_code', 1, 'https://ror.org/00fg6ww52 Buck Research Instruments (United States)'), (60410, 'https://ror.org/00fgz4k79', 'no_lang_code', 1, 'https://ror.org/00fgz4k79 Novita Healthcare (Australia)'), (60411, 'https://ror.org/00fh64z73', 'en', 1, 'https://ror.org/00fh64z73 The Performance Institute'), (60412, 'https://ror.org/00fjyk033', 'en', 1, 'https://ror.org/00fjyk033 Desert Medical Imaging'), (60413, 'https://ror.org/00fjzr749', 'no_lang_code', 1, 'https://ror.org/00fjzr749 Sanguine Biosciences (United States)'), (60414, 'https://ror.org/00fk5gz64', 'en', 1, 'https://ror.org/00fk5gz64 Bunker Hill Elementary School'), (60415, 'https://ror.org/00fpjmb27', 'en', 1, 'https://ror.org/00fpjmb27 Alignment Nashville'), (60416, 'https://ror.org/00fq8t576', 'en', 1, 'https://ror.org/00fq8t576 Liberian Institute for Biomedical Research'), (60417, 'https://ror.org/00fr16483', 'no_lang_code', 1, 'https://ror.org/00fr16483 Leighton (United States)'), (60418, 'https://ror.org/00frd0c49', 'no_lang_code', 1, 'https://ror.org/00frd0c49 Thornton and Ross (United Kingdom)'), (60419, 'https://ror.org/00frk6j35', 'de', 1, 'https://ror.org/00frk6j35 Berner Augenklinik am Lindenhofspital'), (60420, 'https://ror.org/00fsjhf77', 'es', 1, 'https://ror.org/00fsjhf77 Instituto Neurológico de Colombia'), (60421, 'https://ror.org/00ftkzk68', 'en', 1, 'https://ror.org/00ftkzk68 Children’s Museum of Atlanta'), (60422, 'https://ror.org/00ftze589', 'en', 1, 'https://ror.org/00ftze589 Einstein Institute of Science'), (60423, 'https://ror.org/00fwp4v27', 'pt', 1, 'https://ror.org/00fwp4v27 Unidade Integrada de Farmacologia e Gastroenterologia'), (60424, 'https://ror.org/00fymwf34', 'en', 1, 'https://ror.org/00fymwf34 UnaSource Health'), (60425, 'https://ror.org/00fztf021', 'en', 1, 'https://ror.org/00fztf021 Alliance Foundation Trials'), (60426, 'https://ror.org/00fzvsb30', 'en', 1, 'https://ror.org/00fzvsb30 The Coordinating Center'), (60427, 'https://ror.org/00g0ak246', 'en', 1, 'https://ror.org/00g0ak246 Assisting Nature'), (60428, 'https://ror.org/00g11cc66', 'en', 1, 'https://ror.org/00g11cc66 ATI Physical Therapy'), (60429, 'https://ror.org/00g25n390', 'en', 1, 'https://ror.org/00g25n390 Ministry of Tourism, Sport and the Arts'), (60430, 'https://ror.org/00g3t0998', 'en', 1, 'https://ror.org/00g3t0998 The Bureau of Overseas Buildings Operations'), (60431, 'https://ror.org/00g49cs57', 'nl', 1, 'https://ror.org/00g49cs57 Mentaal Beter'), (60432, 'https://ror.org/00g5rbh32', 'en', 1, 'https://ror.org/00g5rbh32 Michigan Pharmacists Association'), (60433, 'https://ror.org/00g63xj11', 'de', 1, 'https://ror.org/00g63xj11 Helios Klinik Kipfenberg'), (60434, 'https://ror.org/00g715g80', 'nl', 1, 'https://ror.org/00g715g80 Stichting Physico'), (60435, 'https://ror.org/00g7amd04', 'en', 1, 'https://ror.org/00g7amd04 Missouri Academy of Science'), (60436, 'https://ror.org/00gd0s828', 'en', 1, 'https://ror.org/00gd0s828 Institute For European Expertise in Physiology'), (60437, 'https://ror.org/00gdq8383', 'fr', 1, 'https://ror.org/00gdq8383 Alliance Université-Entreprise de Grenoble'); INSERT INTO `rors` VALUES (60438, 'https://ror.org/00gdw7f12', 'en', 1, 'https://ror.org/00gdw7f12 Royal Dutch Pharmacists Association'), (60439, 'https://ror.org/00gens972', 'en', 1, 'https://ror.org/00gens972 Living Tongues Institute for Endangered Languages'), (60440, 'https://ror.org/00geycx93', 'en', 1, 'https://ror.org/00geycx93 Hematology & Oncology Consultants'), (60441, 'https://ror.org/00gfym921', 'de', 1, 'https://ror.org/00gfym921 Klinik und Poliklinik für Urologie'), (60442, 'https://ror.org/00gked521', 'en', 1, 'https://ror.org/00gked521 Advanced Vision Institute'), (60443, 'https://ror.org/00gkwfd59', 'en', 1, 'https://ror.org/00gkwfd59 Pathway'), (60444, 'https://ror.org/00gnc0t86', 'en', 1, 'https://ror.org/00gnc0t86 Sleep to Live Institute'), (60445, 'https://ror.org/00gp99k74', 'en', 1, 'https://ror.org/00gp99k74 Shanghai Third People''s Hospital 上海交通大学医学院附属第三人民医院'), (60446, 'https://ror.org/00gqmky69', 'no_lang_code', 1, 'https://ror.org/00gqmky69 Achmea (Netherlands)'), (60447, 'https://ror.org/00gteb412', 'en', 1, 'https://ror.org/00gteb412 Retina Macula Institute'), (60448, 'https://ror.org/00gtzdm25', 'nl', 1, 'https://ror.org/00gtzdm25 Natuur- en GezondheidsProducten Nederland'), (60449, 'https://ror.org/00gvwhq75', 'en', 1, 'https://ror.org/00gvwhq75 Institute for Transformative Technologies'), (60450, 'https://ror.org/00gxa5343', 'en', 1, 'https://ror.org/00gxa5343 Lake Region Healthcare'), (60451, 'https://ror.org/00gxvz816', 'en', 1, 'https://ror.org/00gxvz816 Associated Colleges of Central Kansas'), (60452, 'https://ror.org/00gy3sh45', 'en', 1, 'https://ror.org/00gy3sh45 Virtua Voorhees Hospital'), (60453, 'https://ror.org/00gygke76', 'en', 1, 'https://ror.org/00gygke76 Guangxi Academy of Special Crops 广西壮族自治区柑桔研究所'), (60454, 'https://ror.org/00gyq3v51', 'no_lang_code', 1, 'https://ror.org/00gyq3v51 Hospital Pitas'), (60455, 'https://ror.org/00gzx6s15', 'en', 1, 'https://ror.org/00gzx6s15 Johns Hopkins Berman Institute of Bioethics'), (60456, 'https://ror.org/00h2dy637', 'en', 1, 'https://ror.org/00h2dy637 Teachers Development Group'), (60457, 'https://ror.org/00h4bp382', 'en', 1, 'https://ror.org/00h4bp382 Oklahoma Heart Institute'), (60458, 'https://ror.org/00h7mt060', 'no_lang_code', 1, 'https://ror.org/00h7mt060 HXI (United States)'), (60459, 'https://ror.org/00h92wx89', 'en', 1, 'https://ror.org/00h92wx89 Cooley Dickinson Health Care'), (60460, 'https://ror.org/00h93zw30', 'no_lang_code', 1, 'https://ror.org/00h93zw30 Optimata (Israel)'), (60461, 'https://ror.org/00ha4p191', 'de', 1, 'https://ror.org/00ha4p191 Diakonie Klinikum Jung-Stilling'), (60462, 'https://ror.org/00hbvz117', 'en', 1, 'https://ror.org/00hbvz117 Dutch Association for Regional Anesthesia'), (60463, 'https://ror.org/00hchbn59', 'en', 1, 'https://ror.org/00hchbn59 Fetal Diagnostic Institute of the Pacific'), (60464, 'https://ror.org/00hech464', 'en', 1, 'https://ror.org/00hech464 The Ojai Foundation'), (60465, 'https://ror.org/00hf4ew78', 'en', 1, 'https://ror.org/00hf4ew78 OpenBiome'), (60466, 'https://ror.org/00hg1xm75', 'pt', 1, 'https://ror.org/00hg1xm75 ABCD Institute Instituto ABCD'), (60467, 'https://ror.org/00hj12c83', 'en', 1, 'https://ror.org/00hj12c83 Hammersmith Medicines Research'), (60468, 'https://ror.org/00hkez230', 'en', 1, 'https://ror.org/00hkez230 Leningrad Regional Cancer Center Ленинградский областной онкологический диспансер'), (60469, 'https://ror.org/00hmegz79', 'en', 1, 'https://ror.org/00hmegz79 International Society for Neuroethology'), (60470, 'https://ror.org/00hndgp31', 'de', 1, 'https://ror.org/00hndgp31 Deutsche Interdisziplinäre Vereinigung für Intensiv- und Notfallmedizin'), (60471, 'https://ror.org/00hrr4a84', 'en', 1, 'https://ror.org/00hrr4a84 Regional Clinical Hospital No 4 ГБУЗ Областная клиническая больница №4'), (60472, 'https://ror.org/00hsk0n38', 'en', 1, 'https://ror.org/00hsk0n38 Sonoma West Medical Center'), (60473, 'https://ror.org/00ht9y350', 'en', 1, 'https://ror.org/00ht9y350 Elite Research Institute'), (60474, 'https://ror.org/00htvrc11', 'en', 1, 'https://ror.org/00htvrc11 Carolina BioOncology Institute'), (60475, 'https://ror.org/00hw4nh44', 'en', 1, 'https://ror.org/00hw4nh44 Newman Regional Health'), (60476, 'https://ror.org/00hx49s62', 'en', 1, 'https://ror.org/00hx49s62 Cooper Institute for Reproductive Hormonal Disorders'), (60477, 'https://ror.org/00hygje57', 'en', 1, 'https://ror.org/00hygje57 Undersea and Hyperbaric Medical Society'), (60478, 'https://ror.org/00hz19x62', 'no_lang_code', 1, 'https://ror.org/00hz19x62 Pharma Nord (United Kingdom)'), (60479, 'https://ror.org/00hz6qz36', 'en', 1, 'https://ror.org/00hz6qz36 Western States Endurance Run Foundation'), (60480, 'https://ror.org/00j1czq77', 'en', 1, 'https://ror.org/00j1czq77 Foundation for Cardiovascular Biomedical Research and Gene and Cell Therapy'), (60481, 'https://ror.org/00j1j3213', 'en', 1, 'https://ror.org/00j1j3213 Beverly Hills Cancer Center'), (60482, 'https://ror.org/00j1phe22', 'en', 1, 'https://ror.org/00j1phe22 University Clinical Hospital In Bialystok Uniwersyteckim Szpitalu Klinicznym w Białymstoku'), (60483, 'https://ror.org/00j2yyv15', 'en', 1, 'https://ror.org/00j2yyv15 Taiwan Society of Cardiology'), (60484, 'https://ror.org/00j6ana21', 'no_lang_code', 1, 'https://ror.org/00j6ana21 Abcombi Biosciences (United States)'), (60485, 'https://ror.org/00j7qa995', 'en', 1, 'https://ror.org/00j7qa995 Retina Consultants of Houston'), (60486, 'https://ror.org/00j8m2v88', 'en', 1, 'https://ror.org/00j8m2v88 Foundation for Southwest Orthopedic Research'), (60487, 'https://ror.org/00jaff906', 'no_lang_code', 1, 'https://ror.org/00jaff906 Surgimab (France)'), (60488, 'https://ror.org/00jdndk37', 'en', 1, 'https://ror.org/00jdndk37 The Lee Spark NF Foundation'), (60489, 'https://ror.org/00jemq805', 'en', 1, 'https://ror.org/00jemq805 World Vision International'), (60490, 'https://ror.org/00jfqw572', 'de', 1, 'https://ror.org/00jfqw572 Austrian Society of Pneumology Österreichische Gesellschaft für Pneumologie'), (60491, 'https://ror.org/00jhkj736', 'no_lang_code', 1, 'https://ror.org/00jhkj736 Dr. Pfleger Arzneimittel (Germany)'), (60492, 'https://ror.org/00jk33f78', 'en', 1, 'https://ror.org/00jk33f78 Acute Leukemia French Association'), (60493, 'https://ror.org/00jmmae07', 'en', 1, 'https://ror.org/00jmmae07 Fox Valley Surgical Associates'), (60494, 'https://ror.org/00jms8c74', 'no_lang_code', 1, 'https://ror.org/00jms8c74 Applied University Research (United States)'), (60495, 'https://ror.org/00jnayz98', 'no_lang_code', 1, 'https://ror.org/00jnayz98 HelixBind (United States)'), (60496, 'https://ror.org/00jp3t114', 'de', 1, 'https://ror.org/00jp3t114 Helios Hospital Siegburg, Helios Klinikum Siegburg'), (60497, 'https://ror.org/00jpddv49', 'no_lang_code', 1, 'https://ror.org/00jpddv49 Algomedix (United States)'), (60498, 'https://ror.org/00jrz2221', 'en', 1, 'https://ror.org/00jrz2221 Kaiser Permanente Stockton Medical Offices'), (60499, 'https://ror.org/00js7yw33', 'en', 1, 'https://ror.org/00js7yw33 Holston Valley Medical Center'), (60500, 'https://ror.org/00jsvb253', 'no_lang_code', 1, 'https://ror.org/00jsvb253 Biotropics Malaysia (Malaysia)'), (60501, 'https://ror.org/00jtnvh80', 'en', 1, 'https://ror.org/00jtnvh80 Netherlands Center for Occupational Diseases Netherlands Centrum for Occupational Diseases'), (60502, 'https://ror.org/00jtqvs23', 'en', 1, 'https://ror.org/00jtqvs23 Fraser Research'), (60503, 'https://ror.org/00jts5t62', 'no_lang_code', 1, 'https://ror.org/00jts5t62 SIFI Medtech (Italy)'), (60504, 'https://ror.org/00jwb3477', 'nl', 1, 'https://ror.org/00jwb3477 Flemish Taekwondo Association Vlaamse Taekwondo Bond'), (60505, 'https://ror.org/00jzckp39', 'es', 1, 'https://ror.org/00jzckp39 Instituto Dr. Jaime Slullitel'), (60506, 'https://ror.org/00k009k96', 'en', 1, 'https://ror.org/00k009k96 Kuchnir Dermatology & Dermatologic Surgery'), (60507, 'https://ror.org/00k065b17', 'it', 1, 'https://ror.org/00k065b17 Fondazione Crescere Insieme al Sant''Anna'), (60508, 'https://ror.org/00k19bf64', 'no_lang_code', 1, 'https://ror.org/00k19bf64 AppPeople (Germany)'), (60509, 'https://ror.org/00k24ct23', 'en', 1, 'https://ror.org/00k24ct23 Hillcrest Hospital'), (60510, 'https://ror.org/00k4wxv40', 'en', 1, 'https://ror.org/00k4wxv40 American Academy of Political and Social Science'), (60511, 'https://ror.org/00k82d071', 'en', 1, 'https://ror.org/00k82d071 The Chopra Foundation'), (60512, 'https://ror.org/00k87m820', 'es', 1, 'https://ror.org/00k87m820 Instituto de Cancerología Las Américas'), (60513, 'https://ror.org/00k98as45', 'en', 1, 'https://ror.org/00k98as45 Perinatal Quality Foundation'), (60514, 'https://ror.org/00kc1k067', 'en', 1, 'https://ror.org/00kc1k067 The White Oak Institute'), (60515, 'https://ror.org/00kcr8113', 'en', 1, 'https://ror.org/00kcr8113 Charleston County''s Department of Alcohol and Other Drug Abuse Services'), (60516, 'https://ror.org/00kgh8k48', 'en', 1, 'https://ror.org/00kgh8k48 Recreational Fishing Alliance of NSW'), (60517, 'https://ror.org/00kh76710', 'en', 1, 'https://ror.org/00kh76710 Rasool Akram Hospital بیمارستان حضرت رسول اکرم'), (60518, 'https://ror.org/00kh9dy12', 'en', 1, 'https://ror.org/00kh9dy12 Science Museum of Western Virginia'), (60519, 'https://ror.org/00kk4ng10', 'en', 1, 'https://ror.org/00kk4ng10 The Institute for Advanced Physics'), (60520, 'https://ror.org/00knv0d66', 'en', 1, 'https://ror.org/00knv0d66 Ministry for Social Equality המשרד לשוויון חברתי'), (60521, 'https://ror.org/00knzje15', 'en', 1, 'https://ror.org/00knzje15 Lloyd A. Fry Foundation'), (60522, 'https://ror.org/00kpegb17', 'de', 1, 'https://ror.org/00kpegb17 St.-Antonius-Hospital Gronau'), (60523, 'https://ror.org/00kr06185', 'en', 1, 'https://ror.org/00kr06185 China Institute of Electronics 中国电子学会'), (60524, 'https://ror.org/00krb3q77', 'de', 1, 'https://ror.org/00krb3q77 Freiwillige Akademische Gesellschaft Voluntary Academic Society'), (60525, 'https://ror.org/00ks0x650', 'en', 1, 'https://ror.org/00ks0x650 Neville Public Museum'), (60526, 'https://ror.org/00ktr8190', 'no_lang_code', 1, 'https://ror.org/00ktr8190 Fujifilm (Germany)'), (60527, 'https://ror.org/00kv52794', 'en', 1, 'https://ror.org/00kv52794 Chinese Medical Doctor Association 中国医师协会'), (60528, 'https://ror.org/00kw4g054', 'no_lang_code', 1, 'https://ror.org/00kw4g054 Apotex (United States)'), (60529, 'https://ror.org/00kxda681', 'en', 1, 'https://ror.org/00kxda681 American Foundation for Addiction Research'), (60530, 'https://ror.org/00kzjzm37', 'no_lang_code', 1, 'https://ror.org/00kzjzm37 Brainly (United States)'), (60531, 'https://ror.org/00m0c9422', 'en', 1, 'https://ror.org/00m0c9422 Charleston Hematology Oncology Associates'), (60532, 'https://ror.org/00m3p9e86', 'nl', 1, 'https://ror.org/00m3p9e86 Stichting Semmy'), (60533, 'https://ror.org/00m3xsv93', 'nl', 1, 'https://ror.org/00m3xsv93 Revalidatieziekenhuis RevArte'), (60534, 'https://ror.org/00m42s140', 'de', 1, 'https://ror.org/00m42s140 Deutsche Gesellschaft für Internationale Zusammenarbeit German Corporation for International Cooperation'), (60535, 'https://ror.org/00m48tn76', 'no_lang_code', 1, 'https://ror.org/00m48tn76 LiveLeaf (United States)'), (60536, 'https://ror.org/00m4szf61', 'en', 1, 'https://ror.org/00m4szf61 Aurora Medical Center in Summit'), (60537, 'https://ror.org/00m4vvn06', 'en', 1, 'https://ror.org/00m4vvn06 National Association on Drug Abuse Problems'), (60538, 'https://ror.org/00m4xrb97', 'en', 1, 'https://ror.org/00m4xrb97 Toronto Sleep Institute'), (60539, 'https://ror.org/00m64hf65', 'de', 1, 'https://ror.org/00m64hf65 Emovis'), (60540, 'https://ror.org/00m6z3x97', 'en', 1, 'https://ror.org/00m6z3x97 Boronia Multicultural Services'), (60541, 'https://ror.org/00m7jsz42', 'en', 1, 'https://ror.org/00m7jsz42 European Society for Hyperthermic Oncology'), (60542, 'https://ror.org/00maba543', 'en', 1, 'https://ror.org/00maba543 Groupe suisse d''oncologie pédiatrique Gruppo svizzero di oncologia pediatrica Schweizer Pädiatrische Onkologie Gruppe Swiss Paediatric Oncology Group'), (60543, 'https://ror.org/00max4143', 'en', 1, 'https://ror.org/00max4143 Chattanooga Eye Institute'), (60544, 'https://ror.org/00mfnf459', 'en', 1, 'https://ror.org/00mfnf459 Carson Tahoe Regional Medical Center'), (60545, 'https://ror.org/00mjfwd15', 'no_lang_code', 1, 'https://ror.org/00mjfwd15 Vectorite Biomedical (Taiwan) 鑫品生医科技'), (60546, 'https://ror.org/00mjzz278', 'en', 1, 'https://ror.org/00mjzz278 Unimed Medical Institute'), (60547, 'https://ror.org/00mks2g63', 'en', 1, 'https://ror.org/00mks2g63 Foundation for Human Potential'), (60548, 'https://ror.org/00mmfs450', 'en', 1, 'https://ror.org/00mmfs450 Universities UK'), (60549, 'https://ror.org/00mn1ve16', 'en', 1, 'https://ror.org/00mn1ve16 Kurranulla Aboriginal Corporation'), (60550, 'https://ror.org/00mptwf92', 'en', 1, 'https://ror.org/00mptwf92 MS4 Research Institute'), (60551, 'https://ror.org/00mrq0n58', 'fr', 1, 'https://ror.org/00mrq0n58 Centre François Baclesse'), (60552, 'https://ror.org/00msj0306', 'no_lang_code', 1, 'https://ror.org/00msj0306 St.Caridad Hospital'), (60553, 'https://ror.org/00mtc2v89', 'no_lang_code', 1, 'https://ror.org/00mtc2v89 WH Pharmawerk (Germany)'), (60554, 'https://ror.org/00mvdvy94', 'pt', 1, 'https://ror.org/00mvdvy94 Hospital São José do Avaí'), (60555, 'https://ror.org/00mvezj69', 'no_lang_code', 1, 'https://ror.org/00mvezj69 Odorcept (United States)'), (60556, 'https://ror.org/00mw0j492', 'en', 1, 'https://ror.org/00mw0j492 Fit Kids Foundation'), (60557, 'https://ror.org/00mwvbx98', 'no_lang_code', 1, 'https://ror.org/00mwvbx98 K2M (United States)'), (60558, 'https://ror.org/00mx9kh08', 'de', 1, 'https://ror.org/00mx9kh08 MEDIAN Klaus-Miehlke-Klinik Wiesbaden'), (60559, 'https://ror.org/00mystw63', 'en', 1, 'https://ror.org/00mystw63 Texas Plastic Surgery'), (60560, 'https://ror.org/00n36xb70', 'es', 1, 'https://ror.org/00n36xb70 Liga Contra el Cancer, Liga Peruana de Lucha contra el Cáncer'), (60561, 'https://ror.org/00n3baz54', 'en', 1, 'https://ror.org/00n3baz54 Arthritis and Rheumatic Disease Specialties'), (60562, 'https://ror.org/00n4f0h74', 'en', 1, 'https://ror.org/00n4f0h74 Johnson City Medical Center'), (60563, 'https://ror.org/00n5sdz31', 'en', 1, 'https://ror.org/00n5sdz31 Taylor Regional Hospital'), (60564, 'https://ror.org/00n7f0287', 'en', 1, 'https://ror.org/00n7f0287 Shenzhen International Travel Health Care Center 深圳出入境检验检疫局 深圳国际旅行卫生保健中心'), (60565, 'https://ror.org/00nc2d154', 'no_lang_code', 1, 'https://ror.org/00nc2d154 Nestlé (Germany)'), (60566, 'https://ror.org/00nganv68', 'no_lang_code', 1, 'https://ror.org/00nganv68 Regedent (Switzerland)'), (60567, 'https://ror.org/00ngea848', 'en', 1, 'https://ror.org/00ngea848 Mercy Health - Lorain Hospital'), (60568, 'https://ror.org/00ngrws44', 'en', 1, 'https://ror.org/00ngrws44 China Anti-Aging Association 中国抗衰老促进会'), (60569, 'https://ror.org/00nkf9b38', 'de', 1, 'https://ror.org/00nkf9b38 St. Marien- und St. Annastiftskrankenhaus'), (60570, 'https://ror.org/00nkq5n66', 'no_lang_code', 1, 'https://ror.org/00nkq5n66 Solinas Medical (United States)'), (60571, 'https://ror.org/00nkysz86', 'en', 1, 'https://ror.org/00nkysz86 European School of Oncology'), (60572, 'https://ror.org/00nmy1597', 'en', 1, 'https://ror.org/00nmy1597 College & Association of Registered Nurses of Alberta'), (60573, 'https://ror.org/00np5jz23', 'en', 1, 'https://ror.org/00np5jz23 Chartered Institute of Taxation'), (60574, 'https://ror.org/00np8k310', 'pt', 1, 'https://ror.org/00np8k310 Gastrocirurgia de Brasília'), (60575, 'https://ror.org/00npraj80', 'en', 1, 'https://ror.org/00npraj80 Maryland Oncology Hematology'), (60576, 'https://ror.org/00nqj3y93', 'en', 1, 'https://ror.org/00nqj3y93 Grand Rapids Women''s Health'), (60577, 'https://ror.org/00nrk9x91', 'en', 1, 'https://ror.org/00nrk9x91 Kaiser Permanente South Sacramento Medical Center'), (60578, 'https://ror.org/00nt56514', 'en', 1, 'https://ror.org/00nt56514 First People''s Hospital of Yuhang District 杭州市余杭区第一人民医院'), (60579, 'https://ror.org/00nv0e804', 'en', 1, 'https://ror.org/00nv0e804 Nebraska Council on Economic Education'), (60580, 'https://ror.org/00nvb4q10', 'no_lang_code', 1, 'https://ror.org/00nvb4q10 Active Bio Life Science (Germany)'), (60581, 'https://ror.org/00nvney28', 'en', 1, 'https://ror.org/00nvney28 Lake City VA Medical Center'), (60582, 'https://ror.org/00nvqm770', 'pt', 1, 'https://ror.org/00nvqm770 Instituto de Medicina Avançada'), (60583, 'https://ror.org/00nx7kq05', 'en', 1, 'https://ror.org/00nx7kq05 Wayne D Kuni & Joan E Kuni Foundation'), (60584, 'https://ror.org/00nyscn52', 'en', 1, 'https://ror.org/00nyscn52 National Council for Advanced Manufacturing'), (60585, 'https://ror.org/00p24wc27', 'no_lang_code', 1, 'https://ror.org/00p24wc27 Zenwa (United States)'), (60586, 'https://ror.org/00p327v48', 'en', 1, 'https://ror.org/00p327v48 International Clinic of Rehabilitation'), (60587, 'https://ror.org/00p36v374', 'en', 1, 'https://ror.org/00p36v374 Humanity & Health'), (60588, 'https://ror.org/00p41ea31', 'de', 1, 'https://ror.org/00p41ea31 Verband der Privaten Krankenversicherung'), (60589, 'https://ror.org/00p59qs14', 'en', 1, 'https://ror.org/00p59qs14 Ain Shams University Hospital'), (60590, 'https://ror.org/00p75zw90', 'en', 1, 'https://ror.org/00p75zw90 Regional State Budgetary Healthcare Institution "Smolensk Regional Clinical Hospital" Областное государственное бюджетное учреждение здравоохранения «Смоленская областная клиническая больница»'), (60591, 'https://ror.org/00p7q3334', 'en', 1, 'https://ror.org/00p7q3334 Women''s Pelvic Health Institute'), (60592, 'https://ror.org/00p7wry37', 'fr', 1, 'https://ror.org/00p7wry37 Centre Hospitalier de Béziers'), (60593, 'https://ror.org/00paktj46', 'no_lang_code', 1, 'https://ror.org/00paktj46 DARTNet Institute'), (60594, 'https://ror.org/00pap0267', 'it', 1, 'https://ror.org/00pap0267 Azienda Universitaria Ospedaliera Consorziale - Policlinico Bari'), (60595, 'https://ror.org/00pbfjy25', 'en', 1, 'https://ror.org/00pbfjy25 Grandview Medical Center'), (60596, 'https://ror.org/00pbws926', 'en', 1, 'https://ror.org/00pbws926 Family Life Association of Swaziland'), (60597, 'https://ror.org/00pc21z31', 'en', 1, 'https://ror.org/00pc21z31 Tharawal Aboriginal'), (60598, 'https://ror.org/00pcyna40', 'en', 1, 'https://ror.org/00pcyna40 Hyderabad Cleft Society'), (60599, 'https://ror.org/00pdz5e98', 'en', 1, 'https://ror.org/00pdz5e98 Strimling Dermatology, Laser & Vein Institute'), (60600, 'https://ror.org/00pejz095', 'en', 1, 'https://ror.org/00pejz095 Foundation for Worker, Veteran and Environmental Health'), (60601, 'https://ror.org/00pfepj55', 'no_lang_code', 1, 'https://ror.org/00pfepj55 Metrisquare (Netherlands)'), (60602, 'https://ror.org/00pfyq622', 'no_lang_code', 1, 'https://ror.org/00pfyq622 Procare Riaya Hospital مستشفى بروكار ريايا'), (60603, 'https://ror.org/00pk3rj18', 'en', 1, 'https://ror.org/00pk3rj18 Neuro Pain Medical Center'), (60604, 'https://ror.org/00ppwb536', 'en', 1, 'https://ror.org/00ppwb536 Cleveland Sleep Research Center'), (60605, 'https://ror.org/00ppzj833', 'en', 1, 'https://ror.org/00ppzj833 The Applied Research Institute - Jerusalem معهد الابحاث التطبيقية - القدس'), (60606, 'https://ror.org/00pqehw64', 'en', 1, 'https://ror.org/00pqehw64 National Stroke Association of Malaysia'), (60607, 'https://ror.org/00pvgnv60', 'de', 1, 'https://ror.org/00pvgnv60 Fachklinik Weinböhla'), (60608, 'https://ror.org/00pvtfc31', 'no_lang_code', 1, 'https://ror.org/00pvtfc31 Serag-Wiessner (Germany)'), (60609, 'https://ror.org/00pw9bg10', 'no_lang_code', 1, 'https://ror.org/00pw9bg10 Merz (United States)'), (60610, 'https://ror.org/00pwnk256', 'it', 1, 'https://ror.org/00pwnk256 Centro Medicina della Riproduzione'), (60611, 'https://ror.org/00pwy8p79', 'en', 1, 'https://ror.org/00pwy8p79 International Foundation for Entrepreneurship, Science, and Technology'), (60612, 'https://ror.org/00px03f62', 'no_lang_code', 1, 'https://ror.org/00px03f62 Boehringer Ingelheim (Italy)'), (60613, 'https://ror.org/00pz61m54', 'de', 1, 'https://ror.org/00pz61m54 Schön Klinik Hamburg Eilbek'), (60614, 'https://ror.org/00q236z92', 'de', 1, 'https://ror.org/00q236z92 SRH Wald-Klinikum Gera'), (60615, 'https://ror.org/00q3dem22', 'no_lang_code', 1, 'https://ror.org/00q3dem22 Aggredyne (United States)'), (60616, 'https://ror.org/00q6rn894', 'nl', 1, 'https://ror.org/00q6rn894 Stichting Urologisch Wetenschappelijk Onderzoek'), (60617, 'https://ror.org/00q768c32', 'en', 1, 'https://ror.org/00q768c32 National Pecan Shellers Association'), (60618, 'https://ror.org/00qa3s733', 'es', 1, 'https://ror.org/00qa3s733 Heart Institute Bucaramanga Instituto del Corazón de Bucaramanga'), (60619, 'https://ror.org/00qahme67', 'no_lang_code', 1, 'https://ror.org/00qahme67 McCormick Environmental (United States)'), (60620, 'https://ror.org/00qb56q84', 'en', 1, 'https://ror.org/00qb56q84 Hospital at Smolensk Station НУЗ Отделенческая больница на ст. Смоленск ОАО «РЖД»'), (60621, 'https://ror.org/00qbqb540', 'de', 1, 'https://ror.org/00qbqb540 Verbundkrankenhaus Bernkastel'), (60622, 'https://ror.org/00qbrqy09', 'en', 1, 'https://ror.org/00qbrqy09 Centerpoint Medical Center'), (60623, 'https://ror.org/00qc9m834', 'en', 1, 'https://ror.org/00qc9m834 American College of Allergy, Asthma and Immunology'), (60624, 'https://ror.org/00qdbgv91', 'no_lang_code', 1, 'https://ror.org/00qdbgv91 Soylent (United States)'), (60625, 'https://ror.org/00qe6gb33', 'no_lang_code', 1, 'https://ror.org/00qe6gb33 Nuvo Pharmaceuticals (Canada)'), (60626, 'https://ror.org/00qedn974', 'en', 1, 'https://ror.org/00qedn974 Strategic Education Research Partnership'), (60627, 'https://ror.org/00qf73c06', 'it', 1, 'https://ror.org/00qf73c06 Associazione Istituzione Libera Università Nuorese'), (60628, 'https://ror.org/00qhrkk71', 'en', 1, 'https://ror.org/00qhrkk71 Shandong Yingcai University 山东英才学院'), (60629, 'https://ror.org/00qj38h30', 'en', 1, 'https://ror.org/00qj38h30 Columbus Oncology and Hematology Associates'), (60630, 'https://ror.org/00qjf4t92', 'en', 1, 'https://ror.org/00qjf4t92 Stanger Hospital'), (60631, 'https://ror.org/00qjyeh27', 'en', 1, 'https://ror.org/00qjyeh27 Kaiser Permanente Rancho Cordova Medical Offices'), (60632, 'https://ror.org/00qmvv685', 'nl', 1, 'https://ror.org/00qmvv685 Stichting Emmafonds'), (60633, 'https://ror.org/00qpnm303', 'no_lang_code', 1, 'https://ror.org/00qpnm303 Phranakhon Rajabhat University'), (60634, 'https://ror.org/00qqw1b44', 'de', 1, 'https://ror.org/00qqw1b44 Klinik und Poliklinik für Nuklearmedizin'), (60635, 'https://ror.org/00qr9d796', 'no_lang_code', 1, 'https://ror.org/00qr9d796 Perrigo (Germany)'), (60636, 'https://ror.org/00qrpbx56', 'en', 1, 'https://ror.org/00qrpbx56 Angstron Materials (United States)'), (60637, 'https://ror.org/00qsxq433', 'no_lang_code', 1, 'https://ror.org/00qsxq433 Santhera Pharmaceuticals (Switzerland)'), (60638, 'https://ror.org/00qt5a094', 'en', 1, 'https://ror.org/00qt5a094 Tropical Gastroenterology & Nutrition group'), (60639, 'https://ror.org/00qtc6702', 'en', 1, 'https://ror.org/00qtc6702 Nurses for Newborns'), (60640, 'https://ror.org/00qtj8f75', 'en', 1, 'https://ror.org/00qtj8f75 Princeton Medical Institute'), (60641, 'https://ror.org/00qtpwp08', 'de', 1, 'https://ror.org/00qtpwp08 Institut Dr. Schauerte'), (60642, 'https://ror.org/00qwmz024', 'no_lang_code', 1, 'https://ror.org/00qwmz024 CardioSec (Germany)'), (60643, 'https://ror.org/00qxws716', 'en', 1, 'https://ror.org/00qxws716 InnoSportLab'), (60644, 'https://ror.org/00qy8yz42', 'en', 1, 'https://ror.org/00qy8yz42 Children’s Hospital at Erlanger'), (60645, 'https://ror.org/00r1f1395', 'en', 1, 'https://ror.org/00r1f1395 National Hematology Society Национальное гематологическое общество'), (60646, 'https://ror.org/00r23c464', 'no_lang_code', 1, 'https://ror.org/00r23c464 MediciNova (United States)'), (60647, 'https://ror.org/00r4a9d75', 'pt', 1, 'https://ror.org/00r4a9d75 Sociedade Brasileira de Cirurgia Torácica'), (60648, 'https://ror.org/00r7hs904', 'it', 1, 'https://ror.org/00r7hs904 Istituto Clinico Sant''Ambrogio'), (60649, 'https://ror.org/00r83s510', 'nl', 1, 'https://ror.org/00r83s510 Virenze'), (60650, 'https://ror.org/00r8ksq80', 'en', 1, 'https://ror.org/00r8ksq80 Ministry of Health'), (60651, 'https://ror.org/00r9kn296', 'es', 1, 'https://ror.org/00r9kn296 Instituto Oncológico Dr. Rosell'), (60652, 'https://ror.org/00rad0v56', 'no_lang_code', 1, 'https://ror.org/00rad0v56 Kona Medical (United States)'), (60653, 'https://ror.org/00rca3h04', 'en', 1, 'https://ror.org/00rca3h04 Our Lady of the Lake Children''s Hospital'), (60654, 'https://ror.org/00rcpde19', 'en', 1, 'https://ror.org/00rcpde19 Qinhuangdao Second Hospital'), (60655, 'https://ror.org/00reds669', 'de', 1, 'https://ror.org/00reds669 St. Mauritius Therapieklinik'), (60656, 'https://ror.org/00remyc86', 'nl', 1, 'https://ror.org/00remyc86 Stichting Panta Rhei'), (60657, 'https://ror.org/00rg8e315', 'en', 1, 'https://ror.org/00rg8e315 Foshan Maternity and Child Health Care Hospital 佛山市妇幼保健院'), (60658, 'https://ror.org/00rgw2q98', 'en', 1, 'https://ror.org/00rgw2q98 Canyon Ranch Institute'), (60659, 'https://ror.org/00rkprb29', 'no_lang_code', 1, 'https://ror.org/00rkprb29 Lianyungang Oriental Hospital 连云港市东方医院'), (60660, 'https://ror.org/00rmx3f80', 'no_lang_code', 1, 'https://ror.org/00rmx3f80 Novatex (Germany)'), (60661, 'https://ror.org/00rnp5y61', 'en', 1, 'https://ror.org/00rnp5y61 Kidney Care UK'), (60662, 'https://ror.org/00rq7v092', 'en', 1, 'https://ror.org/00rq7v092 Compass Oncology'), (60663, 'https://ror.org/00rq8s219', 'en', 1, 'https://ror.org/00rq8s219 Knight Dermatology Institute'), (60664, 'https://ror.org/00rrdxz53', 'en', 1, 'https://ror.org/00rrdxz53 Nambudripad''s Allergy Research Foundation'), (60665, 'https://ror.org/00rrer658', 'sr', 1, 'https://ror.org/00rrer658 Kliničko Bolnički Centar Zvezdara'), (60666, 'https://ror.org/00rybq012', 'en', 1, 'https://ror.org/00rybq012 VitalinQ'), (60667, 'https://ror.org/00s1jty20', 'en', 1, 'https://ror.org/00s1jty20 Biotechnology Institute'), (60668, 'https://ror.org/00s3sar63', 'nl', 1, 'https://ror.org/00s3sar63 Stichting Hartekind'), (60669, 'https://ror.org/00s528j33', 'no_lang_code', 1, 'https://ror.org/00s528j33 Mianyang Central Hospital 绵阳市中心医院'), (60670, 'https://ror.org/00s64g989', 'de', 1, 'https://ror.org/00s64g989 Zentrum für Zahn-, Mund- und Kieferheilkunde Poliklinik für Zahnerhaltung und Parodontologie'), (60671, 'https://ror.org/00s65k733', 'en', 1, 'https://ror.org/00s65k733 Institute for Advanced Reconstruction'), (60672, 'https://ror.org/00s6s1191', 'en', 1, 'https://ror.org/00s6s1191 Institute for Progressive Medicine'), (60673, 'https://ror.org/00s8c9279', 'de', 1, 'https://ror.org/00s8c9279 Knappschaftsklinikum Saar'), (60674, 'https://ror.org/00sash423', 'no_lang_code', 1, 'https://ror.org/00sash423 Kunming Tongren Hospital 昆明同仁医院'), (60675, 'https://ror.org/00sb6vz77', 'no_lang_code', 1, 'https://ror.org/00sb6vz77 Valid International (United Kingdom)'), (60676, 'https://ror.org/00sdedd93', 'en', 1, 'https://ror.org/00sdedd93 UPMC Central Pa'), (60677, 'https://ror.org/00sgef587', 'en', 1, 'https://ror.org/00sgef587 Inspira Medical Center Woodbury'), (60678, 'https://ror.org/00sn12234', 'no_lang_code', 1, 'https://ror.org/00sn12234 GS Elektromed. Geräte G. Stemple (Germany)'), (60679, 'https://ror.org/00snsrx64', 'no_lang_code', 1, 'https://ror.org/00snsrx64 Precisis (Germany)'), (60680, 'https://ror.org/00sqneq52', 'en', 1, 'https://ror.org/00sqneq52 Bronson Battle Creek Hospital'), (60681, 'https://ror.org/00sqvb698', 'en', 1, 'https://ror.org/00sqvb698 Taiwan Lung Cancer Society'), (60682, 'https://ror.org/00srb9238', 'nl', 1, 'https://ror.org/00srb9238 Stichting Mitialto'), (60683, 'https://ror.org/00ss42h10', 'en', 1, 'https://ror.org/00ss42h10 Riga East University Hospital Rīgas Austrumu klīniskā universitātes slimnīca'), (60684, 'https://ror.org/00st10j60', 'en', 1, 'https://ror.org/00st10j60 Virginia Cancer Institute'), (60685, 'https://ror.org/00st8mg19', 'it', 1, 'https://ror.org/00st8mg19 L''organizzazione Ospedale di Civitanova M'), (60686, 'https://ror.org/00svmjx28', 'en', 1, 'https://ror.org/00svmjx28 Centro per il Controllo e la Prevenzione delle Malattie National Centre for Disease Prevention and Control'), (60687, 'https://ror.org/00sx7n004', 'en', 1, 'https://ror.org/00sx7n004 University Surgical Associates'), (60688, 'https://ror.org/00syaya36', 'en', 1, 'https://ror.org/00syaya36 Singapore College of Traditional Chinese Medicine'), (60689, 'https://ror.org/00szg4x05', 'en', 1, 'https://ror.org/00szg4x05 Technology Student Association'), (60690, 'https://ror.org/00t043b19', 'da', 1, 'https://ror.org/00t043b19 Dansk Selskab For Klassisk Homøopati'), (60691, 'https://ror.org/00t1kaa78', 'no_lang_code', 1, 'https://ror.org/00t1kaa78 Grifols (Germany)'), (60692, 'https://ror.org/00t32cq90', 'en', 1, 'https://ror.org/00t32cq90 Fødselsstiftelsen Maternity Foundation'), (60693, 'https://ror.org/00t52h563', 'no_lang_code', 1, 'https://ror.org/00t52h563 Luye Pharma (Germany)'), (60694, 'https://ror.org/00t68m327', 'de', 1, 'https://ror.org/00t68m327 Balgrist Beteiligungs AG'), (60695, 'https://ror.org/00t6f7r78', 'pt', 1, 'https://ror.org/00t6f7r78 Instituto Financeiro para o Desenvolvimento Regional'), (60696, 'https://ror.org/00t9eqw18', 'en', 1, 'https://ror.org/00t9eqw18 NZ Respiratory & Sleep Institute'), (60697, 'https://ror.org/00tc0zx28', 'en', 1, 'https://ror.org/00tc0zx28 Aspirus Ironwood Hospital'), (60698, 'https://ror.org/00td6v066', 'de', 1, 'https://ror.org/00td6v066 HELIOS Klinikum Emil von Behring, Helios Klinikum Emil von Behring'), (60699, 'https://ror.org/00tdtmz24', 'no_lang_code', 1, 'https://ror.org/00tdtmz24 Lapharm (Germany)'), (60700, 'https://ror.org/00te3yw40', 'en', 1, 'https://ror.org/00te3yw40 Medical Group of the Carolinas'), (60701, 'https://ror.org/00tfz0s96', 'en', 1, 'https://ror.org/00tfz0s96 Biomed Research Institute'), (60702, 'https://ror.org/00tmbhz16', 'en', 1, 'https://ror.org/00tmbhz16 Genuine Research Center'), (60703, 'https://ror.org/00tmrk624', 'en', 1, 'https://ror.org/00tmrk624 Australian Council of Prawn Fisheries'), (60704, 'https://ror.org/00tna7897', 'en', 1, 'https://ror.org/00tna7897 Sheltering Arms Physical Rehabilitation Centers'), (60705, 'https://ror.org/00tnb5p85', 'de', 1, 'https://ror.org/00tnb5p85 Zentrum für Therapeutisches Reiten Johannisberg e.V.'), (60706, 'https://ror.org/00tp6cr77', 'en', 1, 'https://ror.org/00tp6cr77 Fertility Centers of Illinois'), (60707, 'https://ror.org/00tpyts80', 'no_lang_code', 1, 'https://ror.org/00tpyts80 H-Tech Laboratories (United States)'), (60708, 'https://ror.org/00ts5sd59', 'en', 1, 'https://ror.org/00ts5sd59 New York Society for the Prevention of Cruelty to Children'), (60709, 'https://ror.org/00tt93p95', 'no_lang_code', 1, 'https://ror.org/00tt93p95 Healthycell (United States)'), (60710, 'https://ror.org/00tvc4894', 'en', 1, 'https://ror.org/00tvc4894 Florida Digestive Health Specialists'), (60711, 'https://ror.org/00txvrc11', 'en', 1, 'https://ror.org/00txvrc11 Leyden Academy on Vitality and Ageing'), (60712, 'https://ror.org/00v1ygn94', 'en', 1, 'https://ror.org/00v1ygn94 Southeastern Medical Oncology Center'), (60713, 'https://ror.org/00v2d0427', 'de', 1, 'https://ror.org/00v2d0427 Waldkrankenhaus Rudolf Elle'), (60714, 'https://ror.org/00v3fhy84', 'nl', 1, 'https://ror.org/00v3fhy84 Stichting Zorgdraad'), (60715, 'https://ror.org/00v3zdx13', 'no_lang_code', 1, 'https://ror.org/00v3zdx13 Servier (Egypt)'), (60716, 'https://ror.org/00v8gng44', 'en', 1, 'https://ror.org/00v8gng44 The American Legion Department of Wisconsin'), (60717, 'https://ror.org/00v8kbs06', 'en', 1, 'https://ror.org/00v8kbs06 Discovery Museum and Planetarium'), (60718, 'https://ror.org/00v8tzb98', 'no_lang_code', 1, 'https://ror.org/00v8tzb98 Archemix (United States)'), (60719, 'https://ror.org/00v9j9683', 'en', 1, 'https://ror.org/00v9j9683 Institute for Diabetes Discovery'), (60720, 'https://ror.org/00vbx3555', 'en', 1, 'https://ror.org/00vbx3555 White Clover Wellness and Research Center'), (60721, 'https://ror.org/00vc32940', 'en', 1, 'https://ror.org/00vc32940 Children''s City Policlinic No. 45'), (60722, 'https://ror.org/00vc39d35', 'en', 1, 'https://ror.org/00vc39d35 South East Trawl Fishing Industry Association'), (60723, 'https://ror.org/00vc9tk32', 'en', 1, 'https://ror.org/00vc9tk32 Inuit Circumpolar Council'), (60724, 'https://ror.org/00vcp8875', 'no_lang_code', 1, 'https://ror.org/00vcp8875 Mental Canvas (United States)'), (60725, 'https://ror.org/00vh0j257', 'no_lang_code', 1, 'https://ror.org/00vh0j257 Alexion (Germany)'), (60726, 'https://ror.org/00vhe9s39', 'en', 1, 'https://ror.org/00vhe9s39 American Association of Chairs of Departments of Psychiatry'), (60727, 'https://ror.org/00vhf1j84', 'en', 1, 'https://ror.org/00vhf1j84 Whitten Laser Eye'), (60728, 'https://ror.org/00vhpak23', 'no_lang_code', 1, 'https://ror.org/00vhpak23 Evidation Health (United States)'), (60729, 'https://ror.org/00vj56071', 'no_lang_code', 1, 'https://ror.org/00vj56071 Mathys (Netherlands)'), (60730, 'https://ror.org/00vkg4j33', 'en', 1, 'https://ror.org/00vkg4j33 Kinema Research & Software'), (60731, 'https://ror.org/00vkpdt16', 'nl', 1, 'https://ror.org/00vkpdt16 Movisie'), (60732, 'https://ror.org/00vkrpr95', 'en', 1, 'https://ror.org/00vkrpr95 Southwest Regional Wound Care Center'), (60733, 'https://ror.org/00vn3f760', 'en', 1, 'https://ror.org/00vn3f760 Rwanda Pediatric Association'), (60734, 'https://ror.org/00vppgp96', 'de', 1, 'https://ror.org/00vppgp96 Marienhaus Klinikum Hetzelstift Neustadt'), (60735, 'https://ror.org/00vs5xf39', 'en', 1, 'https://ror.org/00vs5xf39 Hematology Oncology Associates of Fredericksburg'), (60736, 'https://ror.org/00vsbee25', 'de', 1, 'https://ror.org/00vsbee25 Jüdisches Krankenhaus Berlin'), (60737, 'https://ror.org/00vsg4120', 'en', 1, 'https://ror.org/00vsg4120 North Georgia Heart Foundation'), (60738, 'https://ror.org/00vtp3850', 'nl', 1, 'https://ror.org/00vtp3850 Zorggroep Meander'), (60739, 'https://ror.org/00vwet919', 'en', 1, 'https://ror.org/00vwet919 Memorial Hospital of Carbondale'), (60740, 'https://ror.org/00vxq6174', 'en', 1, 'https://ror.org/00vxq6174 Mountain Blue Cancer Care Center'), (60741, 'https://ror.org/00w22yy94', 'en', 1, 'https://ror.org/00w22yy94 Bartlett Regional Hospital'), (60742, 'https://ror.org/00w2ggs58', 'en', 1, 'https://ror.org/00w2ggs58 Circle of Care'), (60743, 'https://ror.org/00w2wr428', 'no_lang_code', 1, 'https://ror.org/00w2wr428 Cefak (Germany)'), (60744, 'https://ror.org/00w2zvp73', 'en', 1, 'https://ror.org/00w2zvp73 The Few Institute'), (60745, 'https://ror.org/00w440229', 'en', 1, 'https://ror.org/00w440229 Mercy Hospital Springfield'), (60746, 'https://ror.org/00w4apt74', 'en', 1, 'https://ror.org/00w4apt74 Jefferson Healthcare'), (60747, 'https://ror.org/00w52p532', 'en', 1, 'https://ror.org/00w52p532 Specialized Arab Hospital مستشفى عربي متخصص'), (60748, 'https://ror.org/00w7fxv12', 'en', 1, 'https://ror.org/00w7fxv12 University Hospital Dr. Georgi Stranski Университетската болница за активно лечение “Д-р Георги Странски”'), (60749, 'https://ror.org/00w7n4066', 'en', 1, 'https://ror.org/00w7n4066 Mikaelyan Institute of Surgery ՄԻՔԱՅԵԼՅԱՆ ՎԻՐԱԲՈՒԺՈՒԹՅԱՆ ԻՆՍՏԻՏՈՒՏ'), (60750, 'https://ror.org/00w8p4b22', 'en', 1, 'https://ror.org/00w8p4b22 Peoria Hospital'), (60751, 'https://ror.org/00w93yd70', 'no_lang_code', 1, 'https://ror.org/00w93yd70 Süddeutsche Zuckerrübenverwertungs-Genossenschaft (Germany)'), (60752, 'https://ror.org/00w9n5q09', 'en', 1, 'https://ror.org/00w9n5q09 University Hospitals Landerbrook Health Center'), (60753, 'https://ror.org/00wa55978', 'en', 1, 'https://ror.org/00wa55978 Lymphatic Malformation Institute'), (60754, 'https://ror.org/00wa5kg71', 'en', 1, 'https://ror.org/00wa5kg71 Shenandoah Oncology'), (60755, 'https://ror.org/00waaf760', 'no_lang_code', 1, 'https://ror.org/00waaf760 Eugonia Ευγονία'), (60756, 'https://ror.org/00wcjzh22', 'no_lang_code', 1, 'https://ror.org/00wcjzh22 Dr. Peithner KG (Austria)'), (60757, 'https://ror.org/00wdh3g19', 'en', 1, 'https://ror.org/00wdh3g19 St. Francis Sleep, Allergy, and Lung Institute'), (60758, 'https://ror.org/00wj7ww55', 'de', 1, 'https://ror.org/00wj7ww55 Deutscher Berufsverband der Hals-Nasen-Ohrenärzte e. V'), (60759, 'https://ror.org/00wjdp131', 'en', 1, 'https://ror.org/00wjdp131 Institute for Food Safety and Health'), (60760, 'https://ror.org/00wjy0847', 'en', 1, 'https://ror.org/00wjy0847 Ministry of Public Health وزارة الصحة العامة'), (60761, 'https://ror.org/00wk6gg04', 'en', 1, 'https://ror.org/00wk6gg04 Musculoskeletal Orthopedic Research and Education Foundation'), (60762, 'https://ror.org/00wp9fx28', 'fr', 1, 'https://ror.org/00wp9fx28 Association Mucoviscidose - ABCF2'), (60763, 'https://ror.org/00wqjrk21', 'de', 1, 'https://ror.org/00wqjrk21 Institut für Medizinische Informatik, Biometrie und Epidemiologie'), (60764, 'https://ror.org/00wsb3r63', 'no_lang_code', 1, 'https://ror.org/00wsb3r63 Ocutec (United Kingdom)'), (60765, 'https://ror.org/00wtffy45', 'nl', 1, 'https://ror.org/00wtffy45 Stichting Westelijke Tuinsteden'), (60766, 'https://ror.org/00wy8pn71', 'en', 1, 'https://ror.org/00wy8pn71 Aquaculture Council of Western Australia'), (60767, 'https://ror.org/00wz52266', 'es', 1, 'https://ror.org/00wz52266 Fundación Hermano Miguel'), (60768, 'https://ror.org/00wz6jq51', 'en', 1, 'https://ror.org/00wz6jq51 Sentara CarePlex Hospital'), (60769, 'https://ror.org/00wztsq19', 'en', 1, 'https://ror.org/00wztsq19 Qilu Normal University 齐鲁师范学院'), (60770, 'https://ror.org/00x1td960', 'de', 1, 'https://ror.org/00x1td960 Klinik Roderbirke'), (60771, 'https://ror.org/00x1yxe92', 'en', 1, 'https://ror.org/00x1yxe92 Far West Local Health District'), (60772, 'https://ror.org/00x3k5x70', 'de', 1, 'https://ror.org/00x3k5x70 Ministerium für Wirtschaft, Verkehr, Landwirtschaft und Weinbau Ministry of Economy, Transport, Agriculture and Viticulture'), (60773, 'https://ror.org/00x4qp065', 'en', 1, 'https://ror.org/00x4qp065 He University 辽宁何氏医学院'), (60774, 'https://ror.org/00x56mf13', 'it', 1, 'https://ror.org/00x56mf13 Azienda Usl 8 Arezzo'), (60775, 'https://ror.org/00x5ydx53', 'nl', 1, 'https://ror.org/00x5ydx53 Stichting HemoBase'), (60776, 'https://ror.org/00xe2gs46', 'nl', 1, 'https://ror.org/00xe2gs46 Stichting Artsenlaboratorium en Trombosedienst'), (60777, 'https://ror.org/00xg0sp11', 'en', 1, 'https://ror.org/00xg0sp11 Phoenix Molecular Imaging'), (60778, 'https://ror.org/00xgg4d44', 'tr', 1, 'https://ror.org/00xgg4d44 Erzincan Mengücek Gazi Eğitim ve Araştırma Hastanesi'), (60779, 'https://ror.org/00xhgth11', 'de', 1, 'https://ror.org/00xhgth11 Zydolab - Institut für Zytologie und Immunzytochemie'), (60780, 'https://ror.org/00xhn5c68', 'pt', 1, 'https://ror.org/00xhn5c68 Fundação Altino Ventura'), (60781, 'https://ror.org/00xma8d72', 'en', 1, 'https://ror.org/00xma8d72 Stonewall Learning Center'), (60782, 'https://ror.org/00xmdg797', 'en', 1, 'https://ror.org/00xmdg797 Canary Institute of Cancer Research Instituto Canario de Investigación del Cáncer'), (60783, 'https://ror.org/00xnymf93', 'nl', 1, 'https://ror.org/00xnymf93 Militaire Geestelijke Gezondheidszorg'), (60784, 'https://ror.org/00xs43h36', 'nl', 1, 'https://ror.org/00xs43h36 Vrienden van Heideheuvel'), (60785, 'https://ror.org/00xsr8926', 'fr', 1, 'https://ror.org/00xsr8926 Groupe d''Oncologie Radiothérapie Tête et Cou'), (60786, 'https://ror.org/00xt7wr93', 'en', 1, 'https://ror.org/00xt7wr93 Michigan Institute of Urology'), (60787, 'https://ror.org/00xvtm334', 'no_lang_code', 1, 'https://ror.org/00xvtm334 Aqualis (Norway)'), (60788, 'https://ror.org/00xvxvn83', 'en', 1, 'https://ror.org/00xvxvn83 European Foundation for the Study of Chronic Liver Failure'), (60789, 'https://ror.org/00xx1nv47', 'en', 1, 'https://ror.org/00xx1nv47 K2 Communications'), (60790, 'https://ror.org/00xy72355', 'en', 1, 'https://ror.org/00xy72355 Rocky Mountain School of Expeditionary Learning'), (60791, 'https://ror.org/00xzj9k32', 'en', 1, 'https://ror.org/00xzj9k32 Clinical Investigation Center Plurithematic Tours'), (60792, 'https://ror.org/00y0as388', 'no_lang_code', 1, 'https://ror.org/00y0as388 NanoAffix Science (United States)'), (60793, 'https://ror.org/00y1hj465', 'no_lang_code', 1, 'https://ror.org/00y1hj465 Baxter (South Korea)'), (60794, 'https://ror.org/00y3gz942', 'eu', 1, 'https://ror.org/00y3gz942 Clinic IMQ Zorrotzaurre'), (60795, 'https://ror.org/00y3snf11', 'en', 1, 'https://ror.org/00y3snf11 Warrington and Halton Teaching Hospitals NHS Foundation Trust'), (60796, 'https://ror.org/00y5txd68', 'no_lang_code', 1, 'https://ror.org/00y5txd68 Elfi-Tech (Israel)'), (60797, 'https://ror.org/00yeh8c54', 'de', 1, 'https://ror.org/00yeh8c54 Schweizerische Ärztegesellschaft für Manuelle Medizin'), (60798, 'https://ror.org/00yeqdq24', 'en', 1, 'https://ror.org/00yeqdq24 Center for Aquatic Sciences'), (60799, 'https://ror.org/00yerav41', 'no_lang_code', 1, 'https://ror.org/00yerav41 Quantum Pharmaceutical (United Kingdom)'), (60800, 'https://ror.org/00yggrf40', 'en', 1, 'https://ror.org/00yggrf40 Fondazione Italiana Sindromi Mielodisplastiche Italian Foundation of Myelodysplastic Syndromes'), (60801, 'https://ror.org/00ygteq35', 'no_lang_code', 1, 'https://ror.org/00ygteq35 Australian Coal Research (Australia)'), (60802, 'https://ror.org/00yh56t79', 'en', 1, 'https://ror.org/00yh56t79 Doctors Hospital at Renaissance'), (60803, 'https://ror.org/00yjka566', 'en', 1, 'https://ror.org/00yjka566 Neurogen Brain & Spine Institute'), (60804, 'https://ror.org/00ynkhx66', 'no_lang_code', 1, 'https://ror.org/00ynkhx66 Care Team Solutions (United States)'), (60805, 'https://ror.org/00yqqsx19', 'en', 1, 'https://ror.org/00yqqsx19 Care Institute of Medical Sciences'), (60806, 'https://ror.org/00ysd3163', 'nl', 1, 'https://ror.org/00ysd3163 Fonds voor het Hart'), (60807, 'https://ror.org/00yt18j75', 'en', 1, 'https://ror.org/00yt18j75 Animal Science Research Institute 广东省农业科学院动物科学研究所'), (60808, 'https://ror.org/00yvav781', 'no_lang_code', 1, 'https://ror.org/00yvav781 FluxPlus (Netherlands)'), (60809, 'https://ror.org/00yvr3a11', 'en', 1, 'https://ror.org/00yvr3a11 Children’s Hospital at TriStar Centennial'), (60810, 'https://ror.org/00yy1mz70', 'en', 1, 'https://ror.org/00yy1mz70 Osteopathic Founders Foundation'), (60811, 'https://ror.org/00yyvga88', 'en', 1, 'https://ror.org/00yyvga88 Small Enterprise Foundation'), (60812, 'https://ror.org/00yzavr52', 'en', 1, 'https://ror.org/00yzavr52 Joint Preservation Centre of BC'), (60813, 'https://ror.org/00z1c3x88', 'en', 1, 'https://ror.org/00z1c3x88 Bergman Clinics'), (60814, 'https://ror.org/00z2zyd49', 'en', 1, 'https://ror.org/00z2zyd49 US Apple Association'), (60815, 'https://ror.org/00z31b133', 'no', 1, 'https://ror.org/00z31b133 Norsk Kiropraktorforening'), (60816, 'https://ror.org/00z3eck08', 'it', 1, 'https://ror.org/00z3eck08 Casa di Cura San Michele'), (60817, 'https://ror.org/00z3tee21', 'en', 1, 'https://ror.org/00z3tee21 Outpatient Endovascular and Interventional Society'), (60818, 'https://ror.org/00z5hk082', 'en', 1, 'https://ror.org/00z5hk082 Cardiovascular European Research Center'), (60819, 'https://ror.org/00zb9ns77', 'en', 1, 'https://ror.org/00zb9ns77 American College of Phlebology'), (60820, 'https://ror.org/00zbyrh97', 'nl', 1, 'https://ror.org/00zbyrh97 Bavo Stichting Heemstede'), (60821, 'https://ror.org/00zbyy251', 'en', 1, 'https://ror.org/00zbyy251 Southwest Women''s Oncology'), (60822, 'https://ror.org/00zc8sp15', 'en', 1, 'https://ror.org/00zc8sp15 Georgia Arrhythmia Consultants'), (60823, 'https://ror.org/00zcefp03', 'en', 1, 'https://ror.org/00zcefp03 Shanghai Institute of Measurement and Testing Technology 上海测量与测试技术研究所'), (60824, 'https://ror.org/00zdfr649', 'nl', 1, 'https://ror.org/00zdfr649 Stichting Zonnige Jeugd'), (60825, 'https://ror.org/00zfpsw25', 'en', 1, 'https://ror.org/00zfpsw25 The Lung Association Saskatchewan'), (60826, 'https://ror.org/00zkc0z81', 'no_lang_code', 1, 'https://ror.org/00zkc0z81 SteelCloud (United States)'), (60827, 'https://ror.org/00zma5460', 'es', 1, 'https://ror.org/00zma5460 Instituto Nacional de Investigación en Salud Pública'), (60828, 'https://ror.org/00zn0ha79', 'en', 1, 'https://ror.org/00zn0ha79 Aljazeera Hospital'), (60829, 'https://ror.org/00znarq76', 'en', 1, 'https://ror.org/00znarq76 Blanchard Valley Health System'), (60830, 'https://ror.org/00zpf2822', 'no_lang_code', 1, 'https://ror.org/00zpf2822 Laboratorios Sophia (Mexico)'), (60831, 'https://ror.org/00zpm8f70', 'fr', 1, 'https://ror.org/00zpm8f70 Fédération Antadir'), (60832, 'https://ror.org/00zqz6907', 'no_lang_code', 1, 'https://ror.org/00zqz6907 Alder (United States)'), (60833, 'https://ror.org/00zrhn916', 'en', 1, 'https://ror.org/00zrhn916 Bleeding & Clotting Disorders Institute'), (60834, 'https://ror.org/00zrhqg94', 'en', 1, 'https://ror.org/00zrhqg94 Ikatan Dokter Anak Indonesia Indonesian Pediatric Society'), (60835, 'https://ror.org/00zrvqw87', 'en', 1, 'https://ror.org/00zrvqw87 Georgia Nasal and Sinus Institute'), (60836, 'https://ror.org/00zryte34', 'en', 1, 'https://ror.org/00zryte34 Ministry of Foreign and European Affairs Ministère des Affaires étrangères et européennes'), (60837, 'https://ror.org/00zsny525', 'en', 1, 'https://ror.org/00zsny525 Pediatric Nephrology of Alabama'), (60838, 'https://ror.org/00zsz8144', 'en', 1, 'https://ror.org/00zsz8144 Ulyanovsk Regional Clinical Hospital Ульяновская областная клиническая больница'), (60839, 'https://ror.org/00zxr2615', 'no_lang_code', 1, 'https://ror.org/00zxr2615 Nordic Pharma (France)'), (60840, 'https://ror.org/00zxvps74', 'en', 1, 'https://ror.org/00zxvps74 Indigenous Wellbeing Centre'), (60841, 'https://ror.org/00zy6xm60', 'no_lang_code', 1, 'https://ror.org/00zy6xm60 KCI (Germany)'), (60842, 'https://ror.org/00zzaka68', 'en', 1, 'https://ror.org/00zzaka68 Society for Technology in Anesthesia'), (60843, 'https://ror.org/0101cd070', 'en', 1, 'https://ror.org/0101cd070 Women''s Cancer Center of Nevada'), (60844, 'https://ror.org/0101mv631', 'de', 1, 'https://ror.org/0101mv631 Klinik und Poliklinik für Kinder- und Jugendmedizin'), (60845, 'https://ror.org/0101p7966', 'en', 1, 'https://ror.org/0101p7966 Orthopedic Sports Medicine & Spine Care Institute'), (60846, 'https://ror.org/0102aw075', 'en', 1, 'https://ror.org/0102aw075 Valley Health System'), (60847, 'https://ror.org/0106jdf02', 'en', 1, 'https://ror.org/0106jdf02 The Lymphoma Academic Research Organisation'), (60848, 'https://ror.org/0108d5e42', 'en', 1, 'https://ror.org/0108d5e42 Fox Valley Orthopedics'), (60849, 'https://ror.org/0108f5051', 'no_lang_code', 1, 'https://ror.org/0108f5051 Video Collaboratory (United States)'), (60850, 'https://ror.org/01093dx30', 'en', 1, 'https://ror.org/01093dx30 Urban Land Institute'), (60851, 'https://ror.org/010fhjt40', 'de', 1, 'https://ror.org/010fhjt40 Stiftung Berliner Sparkasse'), (60852, 'https://ror.org/010h4w402', 'en', 1, 'https://ror.org/010h4w402 HCA Midwest Division'), (60853, 'https://ror.org/010jxjq13', 'nl', 1, 'https://ror.org/010jxjq13 Dimence'), (60854, 'https://ror.org/010knjd35', 'no_lang_code', 1, 'https://ror.org/010knjd35 Vivostat (Denmark)'), (60855, 'https://ror.org/010n18211', 'en', 1, 'https://ror.org/010n18211 California Allergy and Asthma Medical Group'), (60856, 'https://ror.org/010nxj438', 'en', 1, 'https://ror.org/010nxj438 Floridian Research Institute'), (60857, 'https://ror.org/010p8p018', 'en', 1, 'https://ror.org/010p8p018 Zoo Miami'), (60858, 'https://ror.org/010rnsd21', 'en', 1, 'https://ror.org/010rnsd21 Consultative and Diagnostic Center'), (60859, 'https://ror.org/010tc4s75', 'en', 1, 'https://ror.org/010tc4s75 Sanibel-Captiva Conservation Foundation'), (60860, 'https://ror.org/010vx8x83', 'no_lang_code', 1, 'https://ror.org/010vx8x83 Menzis (Netherlands)'), (60861, 'https://ror.org/010xeam31', 'no_lang_code', 1, 'https://ror.org/010xeam31 Ono Pharmaceutical (United States)'), (60862, 'https://ror.org/010xh5279', 'en', 1, 'https://ror.org/010xh5279 Fragile X Research Foundation Of Canada'), (60863, 'https://ror.org/010xsbj02', 'nl', 1, 'https://ror.org/010xsbj02 Stichting Kenniscentrum Dementie op Jonge Leeftijd'), (60864, 'https://ror.org/010y9qk38', 'en', 1, 'https://ror.org/010y9qk38 Center for the Advancement of Hispanics in Science and Engineering Education'), (60865, 'https://ror.org/0113xgn62', 'en', 1, 'https://ror.org/0113xgn62 Ahtna Heritage Foundation'), (60866, 'https://ror.org/0114pns79', 'fr', 1, 'https://ror.org/0114pns79 Université du Travail Paul Pastur'), (60867, 'https://ror.org/0116f3t39', 'no_lang_code', 1, 'https://ror.org/0116f3t39 Verman (Finland)'), (60868, 'https://ror.org/0118bqm57', 'en', 1, 'https://ror.org/0118bqm57 Vanderbilt Psychiatric Hospital'), (60869, 'https://ror.org/0118ke170', 'no_lang_code', 1, 'https://ror.org/0118ke170 Itamar Medical (Israel)'), (60870, 'https://ror.org/011af0v55', 'en', 1, 'https://ror.org/011af0v55 Spectrum Community Health CIC'), (60871, 'https://ror.org/011bzst67', 'no_lang_code', 1, 'https://ror.org/011bzst67 Leiber (Germany)'), (60872, 'https://ror.org/011ccs949', 'no_lang_code', 1, 'https://ror.org/011ccs949 Phoenix (Italy)'), (60873, 'https://ror.org/011d4mb30', 'en', 1, 'https://ror.org/011d4mb30 Legacy Mount Hood Medical Center'), (60874, 'https://ror.org/011e6t090', 'en', 1, 'https://ror.org/011e6t090 The Japanese Society of Intensive Care Medicine 日本集中治療医学会'), (60875, 'https://ror.org/011gb2z47', 'fr', 1, 'https://ror.org/011gb2z47 Centre Hospitalier Agen - Nérac'), (60876, 'https://ror.org/011h26k47', 'no_lang_code', 1, 'https://ror.org/011h26k47 Investor (Sweden)'); INSERT INTO `rors` VALUES (60877, 'https://ror.org/011h51195', 'no_lang_code', 1, 'https://ror.org/011h51195 StabiLux Biosciences (United States)'), (60878, 'https://ror.org/011nmry48', 'no_lang_code', 1, 'https://ror.org/011nmry48 PharmEcosse (United Kingdom)'), (60879, 'https://ror.org/011nsnr29', 'no_lang_code', 1, 'https://ror.org/011nsnr29 LIDDS (Sweden)'), (60880, 'https://ror.org/011rkqa43', 'no_lang_code', 1, 'https://ror.org/011rkqa43 Nano-Ditech (United States)'), (60881, 'https://ror.org/011wa8w96', 'en', 1, 'https://ror.org/011wa8w96 Yunnan Institute For Drug Abuse 云南省药物滥用研究所'), (60882, 'https://ror.org/011xgdn77', 'no_lang_code', 1, 'https://ror.org/011xgdn77 Medical Cañada (Spain)'), (60883, 'https://ror.org/011yfra46', 'pt', 1, 'https://ror.org/011yfra46 Instituto Ivo Pitanguy'), (60884, 'https://ror.org/011ypec60', 'no_lang_code', 1, 'https://ror.org/011ypec60 Human Stem Cells Institute PJSC (Russia) Институт Стволовых Клеток Человека'), (60885, 'https://ror.org/011z6ge83', 'no_lang_code', 1, 'https://ror.org/011z6ge83 Proderm (Germany)'), (60886, 'https://ror.org/011znd796', 'en', 1, 'https://ror.org/011znd796 American Medical Group Association'), (60887, 'https://ror.org/01249zp52', 'en', 1, 'https://ror.org/01249zp52 Osteopathie Plus'), (60888, 'https://ror.org/012729810', 'no_lang_code', 1, 'https://ror.org/012729810 GeoEngineers (United States)'), (60889, 'https://ror.org/012738550', 'no_lang_code', 1, 'https://ror.org/012738550 INiTS (Austria)'), (60890, 'https://ror.org/0127psw24', 'en', 1, 'https://ror.org/0127psw24 Visiting Nurse Association'), (60891, 'https://ror.org/0128rbw31', 'en', 1, 'https://ror.org/0128rbw31 American Academy of Underwater Sciences'), (60892, 'https://ror.org/0129x4h77', 'en', 1, 'https://ror.org/0129x4h77 Centar za zdravlje, vežbanje i sportske nauke Center for Health, Exercise and Sport Sciences'), (60893, 'https://ror.org/012a9r338', 'no_lang_code', 1, 'https://ror.org/012a9r338 Bodeker Scientific (New Zealand)'), (60894, 'https://ror.org/012chae64', 'no_lang_code', 1, 'https://ror.org/012chae64 Merck (Netherlands)'), (60895, 'https://ror.org/012g7b973', 'no_lang_code', 1, 'https://ror.org/012g7b973 axios Pharma (Germany)'), (60896, 'https://ror.org/012m0jg51', 'nl', 1, 'https://ror.org/012m0jg51 Instituut voor Verantwoord Medicijngebruik'), (60897, 'https://ror.org/012m33j29', 'en', 1, 'https://ror.org/012m33j29 NKP Salve Institute of Medical Sciences and Lata Mangeshkar Hospital'), (60898, 'https://ror.org/012n40c33', 'en', 1, 'https://ror.org/012n40c33 Mississippi Museum of Natural Science'), (60899, 'https://ror.org/012n4jm27', 'en', 1, 'https://ror.org/012n4jm27 State Technical College of Missouri'), (60900, 'https://ror.org/012pnb193', 'en', 1, 'https://ror.org/012pnb193 Instituto Milenio para la Investigación en Depresión y Personalidad Millennium Institute for Research in Depression and Personality'), (60901, 'https://ror.org/012pts076', 'en', 1, 'https://ror.org/012pts076 Danish Institute for Quality and Accreditation in Healthcare Institut for Kvalitet og Akkreditering i Sundhedsvaesenet'), (60902, 'https://ror.org/012pz6314', 'no_lang_code', 1, 'https://ror.org/012pz6314 TRB Chemedica International (Switzerland)'), (60903, 'https://ror.org/012recq09', 'en', 1, 'https://ror.org/012recq09 Society for Pediatric Anesthesia'), (60904, 'https://ror.org/012rrxx37', 'en', 1, 'https://ror.org/012rrxx37 Copenhagen Academy for Medical Education and Simulation Københavns Akademi for Medicinsk Uddannelse og Simulation'), (60905, 'https://ror.org/012x9fa64', 'no_lang_code', 1, 'https://ror.org/012x9fa64 NeuraMedica (United States)'), (60906, 'https://ror.org/012yg2g20', 'en', 1, 'https://ror.org/012yg2g20 Columbia College - Missouri'), (60907, 'https://ror.org/012zbs470', 'en', 1, 'https://ror.org/012zbs470 Maryland Medical Research Institute'), (60908, 'https://ror.org/0130c0t65', 'no_lang_code', 1, 'https://ror.org/0130c0t65 Instituto Lala (Mexico)'), (60909, 'https://ror.org/0130pvq33', 'en', 1, 'https://ror.org/0130pvq33 Institute of Skin and Product Evaluation'), (60910, 'https://ror.org/013213t18', 'en', 1, 'https://ror.org/013213t18 Catholic Leadership Institute'), (60911, 'https://ror.org/0132cpq10', 'en', 1, 'https://ror.org/0132cpq10 Edith Kanaka''ole Foundation'), (60912, 'https://ror.org/0134vhg32', 'en', 1, 'https://ror.org/0134vhg32 Haitian American Community Development Corporation'), (60913, 'https://ror.org/0135fer63', 'no_lang_code', 1, 'https://ror.org/0135fer63 Senju Pharmaceutical (United States)'), (60914, 'https://ror.org/0135q5188', 'en', 1, 'https://ror.org/0135q5188 Q-Pharm'), (60915, 'https://ror.org/0137q5a72', 'en', 1, 'https://ror.org/0137q5a72 University Clinic for Nephrology and Hypertension, Diabetology and Endocrinology Universitätsklinik für Nieren- und Hochdruckkrankheiten, Diabetologie und Endokrinologie'), (60916, 'https://ror.org/013848a06', 'en', 1, 'https://ror.org/013848a06 Italian Society of Physiotherapy Società Italiana Fisioterapia'), (60917, 'https://ror.org/0138yyw30', 'en', 1, 'https://ror.org/0138yyw30 Society for Neuroeconomics'), (60918, 'https://ror.org/013aa1717', 'en', 1, 'https://ror.org/013aa1717 Isle of Wight NHS Trust'), (60919, 'https://ror.org/013c16d18', 'en', 1, 'https://ror.org/013c16d18 European Society of Gynaecological Oncology'), (60920, 'https://ror.org/013cjx333', 'en', 1, 'https://ror.org/013cjx333 Physicians Laser and Dermatology Institute'), (60921, 'https://ror.org/013cqn582', 'en', 1, 'https://ror.org/013cqn582 McGuire Institute'), (60922, 'https://ror.org/013e4mp15', 'nl', 1, 'https://ror.org/013e4mp15 Wantveld'), (60923, 'https://ror.org/013ebq793', 'it', 1, 'https://ror.org/013ebq793 Consorzio Interuniversitario Nazionale La Chimica Per L''Ambiente'), (60924, 'https://ror.org/013f5rs96', 'en', 1, 'https://ror.org/013f5rs96 PCR Oncology'), (60925, 'https://ror.org/013fdz725', 'en', 1, 'https://ror.org/013fdz725 Melbourne Sexual Health Centre'), (60926, 'https://ror.org/013jg8087', 'no_lang_code', 1, 'https://ror.org/013jg8087 Solarmer Energy (United States)'), (60927, 'https://ror.org/013k8vr26', 'en', 1, 'https://ror.org/013k8vr26 Deltaplan Dementie Deltaplan dementia'), (60928, 'https://ror.org/013km0e25', 'de', 1, 'https://ror.org/013km0e25 Institut für Notfallmedizin Allgäu'), (60929, 'https://ror.org/013kwyq90', 'en', 1, 'https://ror.org/013kwyq90 Nigerian Cardiac Society'), (60930, 'https://ror.org/013mm0e79', 'en', 1, 'https://ror.org/013mm0e79 Korean Association for the Study of Targeted Therapy 표적치료연구회 가입'), (60931, 'https://ror.org/013ne8p22', 'de', 1, 'https://ror.org/013ne8p22 Poliklinik für Endokrinologie, Diabetologie und Präventivmedizin'), (60932, 'https://ror.org/013t72710', 'en', 1, 'https://ror.org/013t72710 Windward Islands Research and Education Foundation'), (60933, 'https://ror.org/013v77n27', 'no_lang_code', 1, 'https://ror.org/013v77n27 Australian Seafood Industries (Australia)'), (60934, 'https://ror.org/013x1pp52', 'no_lang_code', 1, 'https://ror.org/013x1pp52 Hanmi Pharmaceutical (South Korea) 한미약품'), (60935, 'https://ror.org/013z6ae41', 'en', 1, 'https://ror.org/013z6ae41 Deutsche Krebsgesellschaft German Cancer Society'), (60936, 'https://ror.org/013zs6k48', 'no_lang_code', 1, 'https://ror.org/013zs6k48 Immunogenics (United States)'), (60937, 'https://ror.org/01400tq86', 'no_lang_code', 1, 'https://ror.org/01400tq86 CSL (Switzerland)'), (60938, 'https://ror.org/01442sk86', 'no_lang_code', 1, 'https://ror.org/01442sk86 Bayer (Netherlands)'), (60939, 'https://ror.org/0144enb05', 'no_lang_code', 1, 'https://ror.org/0144enb05 Novo Nordisk (Finland)'), (60940, 'https://ror.org/0146zsf67', 'en', 1, 'https://ror.org/0146zsf67 Tatyasaheb Kore Dental College and Research Centre'), (60941, 'https://ror.org/0149ncr63', 'no_lang_code', 1, 'https://ror.org/0149ncr63 Alvotech (Germany)'), (60942, 'https://ror.org/0149vtr75', 'en', 1, 'https://ror.org/0149vtr75 Virginia Cooperative Extension'), (60943, 'https://ror.org/014a78w41', 'no_lang_code', 1, 'https://ror.org/014a78w41 Ideum (United States)'), (60944, 'https://ror.org/014b0sj15', 'en', 1, 'https://ror.org/014b0sj15 Kansas City Indian Center'), (60945, 'https://ror.org/014cpc426', 'en', 1, 'https://ror.org/014cpc426 Walgett Aboriginal Medical Service'), (60946, 'https://ror.org/014ef6110', 'nl', 1, 'https://ror.org/014ef6110 Alexander Monro Ziekenhuis'), (60947, 'https://ror.org/014epsm02', 'no_lang_code', 1, 'https://ror.org/014epsm02 Novamedia (Netherlands)'), (60948, 'https://ror.org/014fa1z03', 'da', 1, 'https://ror.org/014fa1z03 Regionshospital Nordjylland'), (60949, 'https://ror.org/014fcp763', 'pt', 1, 'https://ror.org/014fcp763 Instituto de Gastroenterologia de Goiânia'), (60950, 'https://ror.org/014gzk937', 'en', 1, 'https://ror.org/014gzk937 Langley Porter Psychiatric Hospital and Clinics'), (60951, 'https://ror.org/014hhbt69', 'nl', 1, 'https://ror.org/014hhbt69 ALS Centrum Nederland'), (60952, 'https://ror.org/014knbk35', 'en', 1, 'https://ror.org/014knbk35 Tokyo Women''s Medical University Hospital 東京女子医科大学病院'), (60953, 'https://ror.org/014m2qe90', 'no_lang_code', 1, 'https://ror.org/014m2qe90 Australian Aquaculture Support Services (Australia)'), (60954, 'https://ror.org/014n97p37', 'en', 1, 'https://ror.org/014n97p37 Wisconsin Legislative Council'), (60955, 'https://ror.org/014qd2j86', 'pt', 1, 'https://ror.org/014qd2j86 Instituto Scribner'), (60956, 'https://ror.org/014sv9994', 'en', 1, 'https://ror.org/014sv9994 Fujian Entry - Exit Inspection and Quarantine Bureau'), (60957, 'https://ror.org/014v0ay52', 'en', 1, 'https://ror.org/014v0ay52 Society for Promoting Participative Ecosystem Management'), (60958, 'https://ror.org/014w2tt04', 'en', 1, 'https://ror.org/014w2tt04 Life Care Institute of Medical Sciences & Research'), (60959, 'https://ror.org/014xwn672', 'en', 1, 'https://ror.org/014xwn672 Asheville Hematology & Oncology'), (60960, 'https://ror.org/0150fxq66', 'en', 1, 'https://ror.org/0150fxq66 Institute of Virology, Vaccines and Sera “Torlak”'), (60961, 'https://ror.org/0151f9x82', 'no_lang_code', 1, 'https://ror.org/0151f9x82 BHR Pharmaceuticals (United Kingdom)'), (60962, 'https://ror.org/0151g7j48', 'en', 1, 'https://ror.org/0151g7j48 Histiocyte Society'), (60963, 'https://ror.org/0151kez15', 'en', 1, 'https://ror.org/0151kez15 United Negro College Fund'), (60964, 'https://ror.org/01523c327', 'no_lang_code', 1, 'https://ror.org/01523c327 Centraal Ziekenfonds (Netherlands)'), (60965, 'https://ror.org/0152qcr22', 'en', 1, 'https://ror.org/0152qcr22 HSHS St. Nicholas Hospital'), (60966, 'https://ror.org/0153n9c45', 'en', 1, 'https://ror.org/0153n9c45 Institute for Personal Excellence'), (60967, 'https://ror.org/0153zg311', 'no_lang_code', 1, 'https://ror.org/0153zg311 Bauerfeind (Netherlands)'), (60968, 'https://ror.org/01545pc85', 'de', 1, 'https://ror.org/01545pc85 Fachkrankenhaus Hubertusburg'), (60969, 'https://ror.org/0154h5d61', 'no_lang_code', 1, 'https://ror.org/0154h5d61 Proximity Biosciences (United States)'), (60970, 'https://ror.org/0154qvp54', 'en', 1, 'https://ror.org/0154qvp54 Trung tâm Y tế Đại học Hồ Chí Minh University Medical Center HCMC'), (60971, 'https://ror.org/0155dcf85', 'lt', 1, 'https://ror.org/0155dcf85 Alytaus Apskrities S. Kudirkos Ligoninė'), (60972, 'https://ror.org/0156jsd27', 'en', 1, 'https://ror.org/0156jsd27 James B. and Lois R. Archer Charitable Foundation'), (60973, 'https://ror.org/0156zyn36', 'en', 1, 'https://ror.org/0156zyn36 California Medical Innovations Institute'), (60974, 'https://ror.org/01574pc21', 'no_lang_code', 1, 'https://ror.org/01574pc21 Ferring Läkemedel (Sweden)'), (60975, 'https://ror.org/0157gcv59', 'no_lang_code', 1, 'https://ror.org/0157gcv59 Acarix (Denmark)'), (60976, 'https://ror.org/01583x474', 'no_lang_code', 1, 'https://ror.org/01583x474 Invictus Medical (United States)'), (60977, 'https://ror.org/01599jv46', 'no_lang_code', 1, 'https://ror.org/01599jv46 Zambon (Germany)'), (60978, 'https://ror.org/015a8sc23', 'en', 1, 'https://ror.org/015a8sc23 Bell County Public Health District'), (60979, 'https://ror.org/015aser35', 'en', 1, 'https://ror.org/015aser35 Psychiatric Association of Turkey Türkiye Psikiyatri Derneği'), (60980, 'https://ror.org/015c7cy32', 'pt', 1, 'https://ror.org/015c7cy32 Hospital TotalCor'), (60981, 'https://ror.org/015d6sb27', 'no_lang_code', 1, 'https://ror.org/015d6sb27 GP Pharm (Spain)'), (60982, 'https://ror.org/015dptv07', 'en', 1, 'https://ror.org/015dptv07 Athens Orthopedic Clinic'), (60983, 'https://ror.org/015dsp568', 'en', 1, 'https://ror.org/015dsp568 Rocky Mountain Multiple Sclerosis Clinic'), (60984, 'https://ror.org/015e4mc09', 'de', 1, 'https://ror.org/015e4mc09 Universitäts Kinder Frauenzentrum'), (60985, 'https://ror.org/015fhgq54', 'en', 1, 'https://ror.org/015fhgq54 National Association of Women Judges'), (60986, 'https://ror.org/015jb2v95', 'en', 1, 'https://ror.org/015jb2v95 Nepalese Psychological Association'), (60987, 'https://ror.org/015jb5761', 'en', 1, 'https://ror.org/015jb5761 Bay Area Breast Surgeons'), (60988, 'https://ror.org/015jr2d68', 'en', 1, 'https://ror.org/015jr2d68 Dandenong Ranges Music Council'), (60989, 'https://ror.org/015k6vv14', 'no_lang_code', 1, 'https://ror.org/015k6vv14 Boehringer Ingelheim (Finland)'), (60990, 'https://ror.org/015mpw953', 'es', 1, 'https://ror.org/015mpw953 Corporación Universitaria para el Desarrollo de Internet'), (60991, 'https://ror.org/015nq5b13', 'nl', 1, 'https://ror.org/015nq5b13 Nederlandse Ski Vereniging'), (60992, 'https://ror.org/015q26m05', 'en', 1, 'https://ror.org/015q26m05 Clearwater Valley Hospital and Clinics'), (60993, 'https://ror.org/015sdn055', 'no_lang_code', 1, 'https://ror.org/015sdn055 Universal Cells (United States)'), (60994, 'https://ror.org/015sq8750', 'en', 1, 'https://ror.org/015sq8750 Kaiser Permanente Lone Tree Medical Offices'), (60995, 'https://ror.org/015t3ef28', 'de', 1, 'https://ror.org/015t3ef28 Augenstern'), (60996, 'https://ror.org/015w53b07', 'en', 1, 'https://ror.org/015w53b07 NACE International'), (60997, 'https://ror.org/015wgw417', 'de', 1, 'https://ror.org/015wgw417 Heidelberger Institut für Radioonkologie'), (60998, 'https://ror.org/015xqq593', 'no_lang_code', 1, 'https://ror.org/015xqq593 Heat Transfer Research (United States)'), (60999, 'https://ror.org/015z2xk75', 'en', 1, 'https://ror.org/015z2xk75 Providence Holy Cross Medical Center'), (61000, 'https://ror.org/016006q30', 'en', 1, 'https://ror.org/016006q30 Slocum Research and Education Foundation'), (61001, 'https://ror.org/0160xcw76', 'pt', 1, 'https://ror.org/0160xcw76 Fundação Saúde'), (61002, 'https://ror.org/01612ta13', 'en', 1, 'https://ror.org/01612ta13 Aboriginal Health and Medical Research Council of New South Wales'), (61003, 'https://ror.org/0161ee609', 'en', 1, 'https://ror.org/0161ee609 Australian Southern Bluefin Tuna Industry Association'), (61004, 'https://ror.org/016208791', 'en', 1, 'https://ror.org/016208791 Children’s Aid Society'), (61005, 'https://ror.org/0164nmw44', 'en', 1, 'https://ror.org/0164nmw44 AGIS'), (61006, 'https://ror.org/01659vw12', 'en', 1, 'https://ror.org/01659vw12 Nutritional Research Foundation'), (61007, 'https://ror.org/0165tjs71', 'fr', 1, 'https://ror.org/0165tjs71 Eurasanté'), (61008, 'https://ror.org/0168g2651', 'en', 1, 'https://ror.org/0168g2651 Pan Am Clinic'), (61009, 'https://ror.org/0168gzc62', 'en', 1, 'https://ror.org/0168gzc62 Public institution Respublikinė Šiauliai Hospital'), (61010, 'https://ror.org/016978714', 'en', 1, 'https://ror.org/016978714 Lung Institute'), (61011, 'https://ror.org/0169ka518', 'en', 1, 'https://ror.org/0169ka518 Shandong Provincial Institute of Dermatology and Venereology 山东省皮肤性病研究所'), (61012, 'https://ror.org/016acvd35', 'en', 1, 'https://ror.org/016acvd35 Henry Ford Macomb Hospital'), (61013, 'https://ror.org/016d4cn96', 'en', 1, 'https://ror.org/016d4cn96 Memorial Healthcare System'), (61014, 'https://ror.org/016df8p53', 'en', 1, 'https://ror.org/016df8p53 Koliber Biosciences'), (61015, 'https://ror.org/016dnyj85', 'en', 1, 'https://ror.org/016dnyj85 Tasmanian Salmonid Growers Association'), (61016, 'https://ror.org/016sspy41', 'no_lang_code', 1, 'https://ror.org/016sspy41 SeneCura Kliniken und Heime (Austria)'), (61017, 'https://ror.org/0172dx143', 'no_lang_code', 1, 'https://ror.org/0172dx143 Advanced Medical Solutions (Germany)'), (61018, 'https://ror.org/0172qgn96', 'en', 1, 'https://ror.org/0172qgn96 The Eisner Foundation'), (61019, 'https://ror.org/01736k933', 'en', 1, 'https://ror.org/01736k933 Vince Lombardi Cancer Clinic'), (61020, 'https://ror.org/0173ksf49', 'no_lang_code', 1, 'https://ror.org/0173ksf49 Health Outcomes Solutions (United States)'), (61021, 'https://ror.org/0173wmw02', 'fr', 1, 'https://ror.org/0173wmw02 Association des Médecins d''Urgence du Québec'), (61022, 'https://ror.org/01775kt69', 'es', 1, 'https://ror.org/01775kt69 Hospitales Regionales de Alta Especialidad'), (61023, 'https://ror.org/017cay976', 'en', 1, 'https://ror.org/017cay976 Orlovsky Oncology Dispensary'), (61024, 'https://ror.org/017cm0005', 'nl', 1, 'https://ror.org/017cm0005 Nieuwegein Fonds'), (61025, 'https://ror.org/017dyf006', 'en', 1, 'https://ror.org/017dyf006 Pediatric Hospital of Sinaloa'), (61026, 'https://ror.org/017ecm653', 'en', 1, 'https://ror.org/017ecm653 Academic Center for Evidence-Based Sports Medicine'), (61027, 'https://ror.org/017emx724', 'en', 1, 'https://ror.org/017emx724 San Francisco Medical Society'), (61028, 'https://ror.org/017esgv14', 'en', 1, 'https://ror.org/017esgv14 Anchorage Associates in Radiation Medicine'), (61029, 'https://ror.org/017g1tr52', 'en', 1, 'https://ror.org/017g1tr52 Morrison Tech'), (61030, 'https://ror.org/017gepd12', 'no', 1, 'https://ror.org/017gepd12 Landsforeningen Uventet Barnedød'), (61031, 'https://ror.org/017gjh659', 'en', 1, 'https://ror.org/017gjh659 Norwegian Medicines Agency Statens Legemiddelverk'), (61032, 'https://ror.org/017pp1416', 'en', 1, 'https://ror.org/017pp1416 St. Gallen Oncology Conferences'), (61033, 'https://ror.org/017qmh907', 'no_lang_code', 1, 'https://ror.org/017qmh907 Zhejiang Yongning Pharma (China)'), (61034, 'https://ror.org/017s9e951', 'en', 1, 'https://ror.org/017s9e951 Institute for Rehabilitation and Research Foundation'), (61035, 'https://ror.org/017t5ge61', 'en', 1, 'https://ror.org/017t5ge61 Polk Bros. Foundation'), (61036, 'https://ror.org/017w9st76', 'en', 1, 'https://ror.org/017w9st76 Jackson-Madison County General Hospital'), (61037, 'https://ror.org/017ymfm59', 'en', 1, 'https://ror.org/017ymfm59 Oklahoma Cancer Specialists and Research Institute'), (61038, 'https://ror.org/0180s3q15', 'nl', 1, 'https://ror.org/0180s3q15 Omring'), (61039, 'https://ror.org/0181jsv49', 'no_lang_code', 1, 'https://ror.org/0181jsv49 Cromsource (Netherlands)'), (61040, 'https://ror.org/0182jz384', 'de', 1, 'https://ror.org/0182jz384 Age Stiftung'), (61041, 'https://ror.org/0182mv832', 'nl', 1, 'https://ror.org/0182mv832 Multiple Sclerose Vereniging Nederland'), (61042, 'https://ror.org/018332h72', 'en', 1, 'https://ror.org/018332h72 Samara City N.I. Pirogov Clinical Hospital №1 Самара Н.И. Пироговская клиническая больница №1'), (61043, 'https://ror.org/0185gtc53', 'no_lang_code', 1, 'https://ror.org/0185gtc53 Drs. Fine, Hoffman & Sims'), (61044, 'https://ror.org/018695p26', 'en', 1, 'https://ror.org/018695p26 Health and Social Development Foundation Фондация "Здраве и социално развитие"'), (61045, 'https://ror.org/0188ecd37', 'en', 1, 'https://ror.org/0188ecd37 Slovenian Society of Anaesthesiology and Intensive Care Medicine Slovensko združenje za anesteziologijo in intenzivno medicino'), (61046, 'https://ror.org/0188pyf14', 'en', 1, 'https://ror.org/0188pyf14 Hattiesburg Clinic'), (61047, 'https://ror.org/0188v8a70', 'no_lang_code', 1, 'https://ror.org/0188v8a70 Icon (United States)'), (61048, 'https://ror.org/018a3b122', 'en', 1, 'https://ror.org/018a3b122 Moriggia Pelascini Hospital Ospedale Moriggia Pelascini'), (61049, 'https://ror.org/018akcp84', 'en', 1, 'https://ror.org/018akcp84 Multiple Sclerosis Research Institute'), (61050, 'https://ror.org/018b60f22', 'en', 1, 'https://ror.org/018b60f22 Belgian Society for Pediatric Gastroenterology Hepatology and Nutrition'), (61051, 'https://ror.org/018ct3570', 'en', 1, 'https://ror.org/018ct3570 Oslo Sports Trauma Research Center Senter for Idrettsskadeforskning'), (61052, 'https://ror.org/018d0rc68', 'en', 1, 'https://ror.org/018d0rc68 Kaiser Permanente San Marcos Medical Offices'), (61053, 'https://ror.org/018djsc63', 'fr', 1, 'https://ror.org/018djsc63 Espoir pour la Sante'), (61054, 'https://ror.org/018et7876', 'en', 1, 'https://ror.org/018et7876 Columbus Ophthalmology Associates'), (61055, 'https://ror.org/018fcay07', 'no_lang_code', 1, 'https://ror.org/018fcay07 SLA Pharma (United Kingdom)'), (61056, 'https://ror.org/018fz1017', 'en', 1, 'https://ror.org/018fz1017 Institute for Research and Evaluation'), (61057, 'https://ror.org/018g01631', 'de', 1, 'https://ror.org/018g01631 Salus Klinik'), (61058, 'https://ror.org/018gc9r78', 'en', 1, 'https://ror.org/018gc9r78 Helios Hospital Schwerin Helios Kliniken Schwerin'), (61059, 'https://ror.org/018hhzz02', 'nl', 1, 'https://ror.org/018hhzz02 Bouman GGZ, Bouman Geestelijke Gezondheidszorg'), (61060, 'https://ror.org/018q2vm69', 'no_lang_code', 1, 'https://ror.org/018q2vm69 MediRisk (Netherlands)'), (61061, 'https://ror.org/018q88z15', 'es', 1, 'https://ror.org/018q88z15 Hospital Universitario Quirónsalud Madrid'), (61062, 'https://ror.org/018qejt38', 'no_lang_code', 1, 'https://ror.org/018qejt38 Bausch & Lomb (France)'), (61063, 'https://ror.org/018w1ab26', 'en', 1, 'https://ror.org/018w1ab26 Instituto Salgado de Saúde Integral Salgado Institute of Integral Health'), (61064, 'https://ror.org/018w38s46', 'en', 1, 'https://ror.org/018w38s46 Giant Screen Cinema Association'), (61065, 'https://ror.org/018w9fc90', 'no_lang_code', 1, 'https://ror.org/018w9fc90 Sachtleben (Germany)'), (61066, 'https://ror.org/018w9pb03', 'en', 1, 'https://ror.org/018w9pb03 Central Park West Health Center'), (61067, 'https://ror.org/018wek193', 'no_lang_code', 1, 'https://ror.org/018wek193 The eNose (Netherlands)'), (61068, 'https://ror.org/018x1j412', 'en', 1, 'https://ror.org/018x1j412 Franciscan Health Indianapolis'), (61069, 'https://ror.org/018ymm591', 'en', 1, 'https://ror.org/018ymm591 Vimhans PrimaMed Super Speciality Hospital'), (61070, 'https://ror.org/01903zs91', 'no_lang_code', 1, 'https://ror.org/01903zs91 iSono Health (United States)'), (61071, 'https://ror.org/01907r966', 'en', 1, 'https://ror.org/01907r966 Eastern Connecticut Hematology and Oncology Associates'), (61072, 'https://ror.org/019164h44', 'en', 1, 'https://ror.org/019164h44 OSU-University Multispectral Laboratories'), (61073, 'https://ror.org/0192sgm30', 'sv', 1, 'https://ror.org/0192sgm30 Gorthonstiftelsen'), (61074, 'https://ror.org/0193k3909', 'en', 1, 'https://ror.org/0193k3909 Swedish Nutrition Foundation'), (61075, 'https://ror.org/0194n5932', 'no_lang_code', 1, 'https://ror.org/0194n5932 Thanyarak Institute วัติสถาบันธัญญารักษ์'), (61076, 'https://ror.org/0194xa029', 'en', 1, 'https://ror.org/0194xa029 Oncology Institute of Vojvodina Институт за онкологију Војводине'), (61077, 'https://ror.org/0196d3y13', 'en', 1, 'https://ror.org/0196d3y13 Ambulantes Reha-Zentrum Berlin Adlershof Ambulatory Rehabilitation Center Berlin Adlershof'), (61078, 'https://ror.org/0198gqt55', 'en', 1, 'https://ror.org/0198gqt55 Australia and New Zealand Melanoma Trials Group'), (61079, 'https://ror.org/0198kn518', 'de', 1, 'https://ror.org/0198kn518 Sächsisches Staatsministerium für Soziales und Verbraucherschutz'), (61080, 'https://ror.org/019a4hz49', 'en', 1, 'https://ror.org/019a4hz49 Clinical Research Atlanta'), (61081, 'https://ror.org/019a9a780', 'de', 1, 'https://ror.org/019a9a780 Klinik König-Ludwig Haus'), (61082, 'https://ror.org/019bv8923', 'en', 1, 'https://ror.org/019bv8923 University Specialized Hospital for Active Treatment of Endocrinology Университетска специализирана болница за активно лечение по ендокринология'), (61083, 'https://ror.org/019ca7044', 'en', 1, 'https://ror.org/019ca7044 Starnberg Hospital'), (61084, 'https://ror.org/019dx5122', 'de', 1, 'https://ror.org/019dx5122 Deutsche Gesellschaft für Ultraschall in der Medizin'), (61085, 'https://ror.org/019fmzd26', 'en', 1, 'https://ror.org/019fmzd26 Plough Foundation'), (61086, 'https://ror.org/019g4tc51', 'pt', 1, 'https://ror.org/019g4tc51 Androfert'), (61087, 'https://ror.org/019ntzn33', 'no_lang_code', 1, 'https://ror.org/019ntzn33 International Drug Agency for Pharmaceutical Industry (Egypt)'), (61088, 'https://ror.org/019pd0m31', 'en', 1, 'https://ror.org/019pd0m31 Hildegard Grunow Foundation Hildegard-Grunow-Stiftung'), (61089, 'https://ror.org/019pev732', 'en', 1, 'https://ror.org/019pev732 College of Pharmacists of British Columbia'), (61090, 'https://ror.org/019ph5n64', 'en', 1, 'https://ror.org/019ph5n64 AnMed Health'), (61091, 'https://ror.org/019q9za18', 'es', 1, 'https://ror.org/019q9za18 Instituto de Tecnología Cerámica'), (61092, 'https://ror.org/019rxjv66', 'no_lang_code', 1, 'https://ror.org/019rxjv66 Tricolast (Belgium)'), (61093, 'https://ror.org/019v04n80', 'de', 1, 'https://ror.org/019v04n80 Katholisches Krankenhaus St. Johann Nepomuk'), (61094, 'https://ror.org/019wc4e54', 'en', 1, 'https://ror.org/019wc4e54 Tallahassee Cancer Institute'), (61095, 'https://ror.org/019wqcg20', 'en', 1, 'https://ror.org/019wqcg20 Stanford Health Care'), (61096, 'https://ror.org/019wxyf39', 'de', 1, 'https://ror.org/019wxyf39 Helios Klinik Hagen Ambrock'), (61097, 'https://ror.org/019y11h89', 'en', 1, 'https://ror.org/019y11h89 Western NSW Local Health District'), (61098, 'https://ror.org/019z87133', 'it', 1, 'https://ror.org/019z87133 Azienda Sanitaria Locale di Asti'), (61099, 'https://ror.org/01a0jnf88', 'nl', 1, 'https://ror.org/01a0jnf88 Landsteiner Instituut'), (61100, 'https://ror.org/01a0k3v66', 'no_lang_code', 1, 'https://ror.org/01a0k3v66 SonoVol (United States)'), (61101, 'https://ror.org/01a13fh38', 'en', 1, 'https://ror.org/01a13fh38 Icon Early Phase Services'), (61102, 'https://ror.org/01a1t3a07', 'en', 1, 'https://ror.org/01a1t3a07 Oregon Law Center'), (61103, 'https://ror.org/01a2crk92', 'nl', 1, 'https://ror.org/01a2crk92 Dokter Izak Wessel Stichting'), (61104, 'https://ror.org/01a4ndw62', 'en', 1, 'https://ror.org/01a4ndw62 Chaitanya Hospital And Nursing Home'), (61105, 'https://ror.org/01a4ygj92', 'en', 1, 'https://ror.org/01a4ygj92 Central Research and Design Institute Центральный научно-исследовательский и проектный институт'), (61106, 'https://ror.org/01a51dp76', 'en', 1, 'https://ror.org/01a51dp76 University High School'), (61107, 'https://ror.org/01a5kys78', 'no_lang_code', 1, 'https://ror.org/01a5kys78 Q-State Biosciences (United States)'), (61108, 'https://ror.org/01a7n9s35', 'no_lang_code', 1, 'https://ror.org/01a7n9s35 Medico-Academic Consultings (Germany)'), (61109, 'https://ror.org/01aagfe76', 'no_lang_code', 1, 'https://ror.org/01aagfe76 Efamol (United Kingdom)'), (61110, 'https://ror.org/01abhxy31', 'no_lang_code', 1, 'https://ror.org/01abhxy31 Würzburg Institute for Traffic Sciences (Germany) Würzburger Institut für Verkehrswissenschaften'), (61111, 'https://ror.org/01ambd593', 'no_lang_code', 1, 'https://ror.org/01ambd593 Otsuka (Indonesia)'), (61112, 'https://ror.org/01an3vn51', 'no_lang_code', 1, 'https://ror.org/01an3vn51 MDxHealth (Netherlands)'), (61113, 'https://ror.org/01an94380', 'fr', 1, 'https://ror.org/01an94380 Institut Emergences'), (61114, 'https://ror.org/01anv7k29', 'de', 1, 'https://ror.org/01anv7k29 Klinikum am Weissenhof'), (61115, 'https://ror.org/01ap05s72', 'de', 1, 'https://ror.org/01ap05s72 Bundeswehrkrankenhaus'), (61116, 'https://ror.org/01aq0vw42', 'nl', 1, 'https://ror.org/01aq0vw42 Ergotherapie Nederland, Nederlandse Vereniging van Ergotherapie'), (61117, 'https://ror.org/01aq2mh35', 'en', 1, 'https://ror.org/01aq2mh35 UNM Children''s Hospital'), (61118, 'https://ror.org/01arb1p52', 'en', 1, 'https://ror.org/01arb1p52 Charlotte Sports Medicine Institute'), (61119, 'https://ror.org/01are8h73', 'nl', 1, 'https://ror.org/01are8h73 Regio Gooi en Vechtstreek'), (61120, 'https://ror.org/01arv1h94', 'en', 1, 'https://ror.org/01arv1h94 St. Josefs-Hospital Cloppenburg'), (61121, 'https://ror.org/01aw97q13', 'en', 1, 'https://ror.org/01aw97q13 Ishar Multicultural Women''s Health Centre'), (61122, 'https://ror.org/01awb6242', 'de', 1, 'https://ror.org/01awb6242 Kliniken des Bezirks Oberbayern'), (61123, 'https://ror.org/01axx9y09', 'en', 1, 'https://ror.org/01axx9y09 Kawaiisu Language and Cultural Center'), (61124, 'https://ror.org/01b0d9a10', 'en', 1, 'https://ror.org/01b0d9a10 Lifelong Vision Foundation'), (61125, 'https://ror.org/01b1d2r15', 'en', 1, 'https://ror.org/01b1d2r15 Plastic Surgery Institute of San Francisco'), (61126, 'https://ror.org/01b2j5886', 'en', 1, 'https://ror.org/01b2j5886 Shandong University of Political Science and Law 山东政法学院'), (61127, 'https://ror.org/01b3ys956', 'en', 1, 'https://ror.org/01b3ys956 Doris Miller Department of Veterans Affairs Medical Center'), (61128, 'https://ror.org/01b4gqk18', 'de', 1, 'https://ror.org/01b4gqk18 Sana Klinikum'), (61129, 'https://ror.org/01b9fxp59', 'es', 1, 'https://ror.org/01b9fxp59 Hospital HLA Mediterráneo'), (61130, 'https://ror.org/01bavmk12', 'de', 1, 'https://ror.org/01bavmk12 Poliklinik für Zahnärztliche Prothetik mit Propädeutik'), (61131, 'https://ror.org/01bbdh545', 'en', 1, 'https://ror.org/01bbdh545 The Nurture Nature Foundation'), (61132, 'https://ror.org/01bcv2838', 'no_lang_code', 1, 'https://ror.org/01bcv2838 Haemonetics (Netherlands)'), (61133, 'https://ror.org/01bdtz792', 'no_lang_code', 1, 'https://ror.org/01bdtz792 Burning Rock Biotech (China)'), (61134, 'https://ror.org/01bftyb90', 'en', 1, 'https://ror.org/01bftyb90 Hematology Oncology Consultants'), (61135, 'https://ror.org/01bg37c61', 'no_lang_code', 1, 'https://ror.org/01bg37c61 Spaulding Clinical Research (United States)'), (61136, 'https://ror.org/01bhvb147', 'en', 1, 'https://ror.org/01bhvb147 Critical Illness & Trauma Foundation'), (61137, 'https://ror.org/01bm8vs30', 'no_lang_code', 1, 'https://ror.org/01bm8vs30 Hubei Bio Pharmaceutical Industry Technology Institute (China)'), (61138, 'https://ror.org/01bn2tj09', 'en', 1, 'https://ror.org/01bn2tj09 Palm Beach Neurology'), (61139, 'https://ror.org/01bqcrq32', 'en', 1, 'https://ror.org/01bqcrq32 Against Violence & Abuse'), (61140, 'https://ror.org/01bqsaw31', 'en', 1, 'https://ror.org/01bqsaw31 Parkwood Institute'), (61141, 'https://ror.org/01braxd57', 'nl', 1, 'https://ror.org/01braxd57 Stichting Warande'), (61142, 'https://ror.org/01bs2hb43', 'en', 1, 'https://ror.org/01bs2hb43 Eye Center of North Florida'), (61143, 'https://ror.org/01bs4z154', 'en', 1, 'https://ror.org/01bs4z154 NeuroSpine Institute'), (61144, 'https://ror.org/01bs6bj47', 'de', 1, 'https://ror.org/01bs6bj47 BDH Bundesverband Rehabilitation'), (61145, 'https://ror.org/01bvxq084', 'es', 1, 'https://ror.org/01bvxq084 Sociedad Española de Trombosis y Hemostasia'), (61146, 'https://ror.org/01bx1ra43', 'en', 1, 'https://ror.org/01bx1ra43 Bundesärztekammer German Medical Association'), (61147, 'https://ror.org/01bxb2y87', 'en', 1, 'https://ror.org/01bxb2y87 The Core Institute'), (61148, 'https://ror.org/01c127k53', 'en', 1, 'https://ror.org/01c127k53 Clinical Research Services'), (61149, 'https://ror.org/01c6fkf84', 'en', 1, 'https://ror.org/01c6fkf84 National Gallery of Denmark Statens Museum for Kunst'), (61150, 'https://ror.org/01c8z0k91', 'lv', 1, 'https://ror.org/01c8z0k91 Agroresursu un ekonomikas institūts'), (61151, 'https://ror.org/01cabyw47', 'no_lang_code', 1, 'https://ror.org/01cabyw47 Marinomed Biotech (Austria)'), (61152, 'https://ror.org/01cakqh38', 'no_lang_code', 1, 'https://ror.org/01cakqh38 LMC Diabetes & Endocrinology (Canada)'), (61153, 'https://ror.org/01cbq7w74', 'it', 1, 'https://ror.org/01cbq7w74 Clinica Odontoiatrica Salzano Tirone'), (61154, 'https://ror.org/01cbsja09', 'no_lang_code', 1, 'https://ror.org/01cbsja09 Acadia Harvest (United States)'), (61155, 'https://ror.org/01cbz4y30', 'en', 1, 'https://ror.org/01cbz4y30 Christiana Gynecologic Oncology'), (61156, 'https://ror.org/01ccgqb68', 'de', 1, 'https://ror.org/01ccgqb68 Dermatologie Freiburg'), (61157, 'https://ror.org/01ck0ze30', 'en', 1, 'https://ror.org/01ck0ze30 Metropolitan Educational Cooperative Service Unit'), (61158, 'https://ror.org/01ckbyj78', 'en', 1, 'https://ror.org/01ckbyj78 Foundation Institute for Regional Development Fundacja Instytut Rozwoju Regionalnego'), (61159, 'https://ror.org/01ckkpd50', 'en', 1, 'https://ror.org/01ckkpd50 Orthopaedic Specialty Clinic'), (61160, 'https://ror.org/01cn1vy21', 'no_lang_code', 1, 'https://ror.org/01cn1vy21 Empire Clinical Research (United States)'), (61161, 'https://ror.org/01cny4f98', 'en', 1, 'https://ror.org/01cny4f98 Zhangzhou Municipal Hospital of Fujian Province 福建省漳州市医院'), (61162, 'https://ror.org/01cpc0e60', 'no_lang_code', 1, 'https://ror.org/01cpc0e60 Haider Bioswing (Germany)'), (61163, 'https://ror.org/01cqbdz44', 'en', 1, 'https://ror.org/01cqbdz44 Community Health Center of Franklin County'), (61164, 'https://ror.org/01crhqr30', 'nl', 1, 'https://ror.org/01crhqr30 Ipse de Bruggen'), (61165, 'https://ror.org/01cs7w326', 'en', 1, 'https://ror.org/01cs7w326 NTL Institute for Applied Behavioral Science'), (61166, 'https://ror.org/01csjxv16', 'no_lang_code', 1, 'https://ror.org/01csjxv16 Targeted Medical Pharma (United States)'), (61167, 'https://ror.org/01ct2ab72', 'en', 1, 'https://ror.org/01ct2ab72 Angeles Clinic and Research Institute'), (61168, 'https://ror.org/01cv0ss35', 'en', 1, 'https://ror.org/01cv0ss35 American Academy of Orthopaedic Manual Physical Therapists'), (61169, 'https://ror.org/01cv9kh50', 'en', 1, 'https://ror.org/01cv9kh50 Southeast Nebraska Cancer Center'), (61170, 'https://ror.org/01cwg1p04', 'en', 1, 'https://ror.org/01cwg1p04 Foundation Centrum ''45 Stichting Centrum ''45'), (61171, 'https://ror.org/01cyatv27', 'no_lang_code', 1, 'https://ror.org/01cyatv27 CTI BioPharma (United Kingdom)'), (61172, 'https://ror.org/01d0zv889', 'en', 1, 'https://ror.org/01d0zv889 Milton J. Rubenstein Museum of Science and Technology'), (61173, 'https://ror.org/01d14z762', 'de', 1, 'https://ror.org/01d14z762 Forschungsinstitut der Diabetes Akademie Mergentheim'), (61174, 'https://ror.org/01d1z3k86', 'en', 1, 'https://ror.org/01d1z3k86 Iron Disorders Institute'), (61175, 'https://ror.org/01d2t6428', 'nl', 1, 'https://ror.org/01d2t6428 Laurens'), (61176, 'https://ror.org/01d34f369', 'no_lang_code', 1, 'https://ror.org/01d34f369 Polnox (United States)'), (61177, 'https://ror.org/01d7a8h40', 'en', 1, 'https://ror.org/01d7a8h40 NewPath Research'), (61178, 'https://ror.org/01d9cfw89', 'pt', 1, 'https://ror.org/01d9cfw89 Hospital Universitário Walter Cantídio'), (61179, 'https://ror.org/01dc7nx94', 'de', 1, 'https://ror.org/01dc7nx94 Luisenkrankenhaus'), (61180, 'https://ror.org/01dd1x730', 'fr', 1, 'https://ror.org/01dd1x730 Clinique Saint Jean'), (61181, 'https://ror.org/01ddazc14', 'de', 1, 'https://ror.org/01ddazc14 Marienkrankenhaus Kassel'), (61182, 'https://ror.org/01ddyfs17', 'en', 1, 'https://ror.org/01ddyfs17 Group Health Centre'), (61183, 'https://ror.org/01derjp85', 'en', 1, 'https://ror.org/01derjp85 Western Illinois Cancer Treatment Center'), (61184, 'https://ror.org/01df9n019', 'no_lang_code', 1, 'https://ror.org/01df9n019 Applied Science Associates (United States)'), (61185, 'https://ror.org/01dfa6f88', 'en', 1, 'https://ror.org/01dfa6f88 West Suburban Medical Center'), (61186, 'https://ror.org/01dgzjt17', 'de', 1, 'https://ror.org/01dgzjt17 Hospital Märkisch-Oderland Krankenhaus Märkisch-Oderland'), (61187, 'https://ror.org/01dje3226', 'en', 1, 'https://ror.org/01dje3226 The Stern Cardiovascular Foundation'), (61188, 'https://ror.org/01dmsg505', 'en', 1, 'https://ror.org/01dmsg505 South Coast Medical Service Aboriginal Corporation'), (61189, 'https://ror.org/01dq08926', 'nl', 1, 'https://ror.org/01dq08926 Stichting Kinderpostzegels Nederland'), (61190, 'https://ror.org/01dszxr35', 'en', 1, 'https://ror.org/01dszxr35 American Pulse Association'), (61191, 'https://ror.org/01dvqbe93', 'en', 1, 'https://ror.org/01dvqbe93 Children''s Health Council'), (61192, 'https://ror.org/01dwwvh23', 'de', 1, 'https://ror.org/01dwwvh23 rgb Onkologisches Management'), (61193, 'https://ror.org/01dyphc41', 'es', 1, 'https://ror.org/01dyphc41 Diagnostico Maipú'), (61194, 'https://ror.org/01e0c9e09', 'en', 1, 'https://ror.org/01e0c9e09 Carolina Headache Institute'), (61195, 'https://ror.org/01e2b1f74', 'en', 1, 'https://ror.org/01e2b1f74 Society for Vascular Surgery'), (61196, 'https://ror.org/01e2kx306', 'no_lang_code', 1, 'https://ror.org/01e2kx306 Stichting Handbike Events'), (61197, 'https://ror.org/01e2zk874', 'en', 1, 'https://ror.org/01e2zk874 Lymphoma Research Trust'), (61198, 'https://ror.org/01e32p682', 'en', 1, 'https://ror.org/01e32p682 Island Resources Foundation'), (61199, 'https://ror.org/01e38mp30', 'en', 1, 'https://ror.org/01e38mp30 Surgical Associates of Neenah'), (61200, 'https://ror.org/01e3d3j88', 'en', 1, 'https://ror.org/01e3d3j88 Jefferson County Health Center'), (61201, 'https://ror.org/01e542834', 'nl', 1, 'https://ror.org/01e542834 IrisZorg'), (61202, 'https://ror.org/01e5bev19', 'no_lang_code', 1, 'https://ror.org/01e5bev19 480 Biomedical (United States)'), (61203, 'https://ror.org/01e5m5282', 'no_lang_code', 1, 'https://ror.org/01e5m5282 Swedish Orphan Biovitrum (United States)'), (61204, 'https://ror.org/01e5pnp05', 'en', 1, 'https://ror.org/01e5pnp05 Bloomhill Cancer Care'), (61205, 'https://ror.org/01e98yd03', 'no_lang_code', 1, 'https://ror.org/01e98yd03 Water-Jel Technologies (United Kingdom)'), (61206, 'https://ror.org/01eas6g83', 'en', 1, 'https://ror.org/01eas6g83 Canadian Precast Prestressed Concrete Institute'), (61207, 'https://ror.org/01ec7fw73', 'de', 1, 'https://ror.org/01ec7fw73 Klinik und Poliklinik für Psychosomatische Medizin und Psychotherapie'), (61208, 'https://ror.org/01ece3a48', 'en', 1, 'https://ror.org/01ece3a48 The Mayer Institute'), (61209, 'https://ror.org/01ecxwt20', 'en', 1, 'https://ror.org/01ecxwt20 Center for Teaching Thinking'), (61210, 'https://ror.org/01ecxzf56', 'no_lang_code', 1, 'https://ror.org/01ecxzf56 Cool Down (Switzerland)'), (61211, 'https://ror.org/01ed1kg72', 'en', 1, 'https://ror.org/01ed1kg72 Ontario Ginseng Growers Association'), (61212, 'https://ror.org/01ee26j42', 'ca', 1, 'https://ror.org/01ee26j42 Catalan Institute of Traumatology and Sports Medicine Institut Català de Traumatologia i Medicina de l''Esport'), (61213, 'https://ror.org/01efeew70', 'en', 1, 'https://ror.org/01efeew70 Vince Lombardi Cancer Clinic'), (61214, 'https://ror.org/01ehh4g09', 'en', 1, 'https://ror.org/01ehh4g09 Metropolitan Washington Council of Governments'), (61215, 'https://ror.org/01ej30k87', 'de', 1, 'https://ror.org/01ej30k87 Kompetenznetz Darmerkrankungen'), (61216, 'https://ror.org/01emd7z98', 'en', 1, 'https://ror.org/01emd7z98 Asia Diabetes Foundation 亚洲糖尿病基金会'), (61217, 'https://ror.org/01erge413', 'no_lang_code', 1, 'https://ror.org/01erge413 Amedon (Germany)'), (61218, 'https://ror.org/01erpqc93', 'nl', 1, 'https://ror.org/01erpqc93 Revalidatie Nederland'), (61219, 'https://ror.org/01ex7e298', 'de', 1, 'https://ror.org/01ex7e298 Berufsverband der Frauenärzte'), (61220, 'https://ror.org/01ezw9n40', 'de', 1, 'https://ror.org/01ezw9n40 Orthopädische Universitätsklinik'), (61221, 'https://ror.org/01ezxj338', 'en', 1, 'https://ror.org/01ezxj338 TAFE Queensland Gold Coast'), (61222, 'https://ror.org/01f19gv14', 'en', 1, 'https://ror.org/01f19gv14 New York City Department for the Aging'), (61223, 'https://ror.org/01f233332', 'en', 1, 'https://ror.org/01f233332 Asociación Mexicana para la Investigación Clínica Mexican Association for the Clinical Research'), (61224, 'https://ror.org/01f23xx77', 'de', 1, 'https://ror.org/01f23xx77 Misereor'), (61225, 'https://ror.org/01f2r3t53', 'en', 1, 'https://ror.org/01f2r3t53 Jinan Disabled Persons Federation'), (61226, 'https://ror.org/01f80h865', 'no_lang_code', 1, 'https://ror.org/01f80h865 Varigen Biosciences (United States)'), (61227, 'https://ror.org/01f8v1064', 'en', 1, 'https://ror.org/01f8v1064 Altru Health System'), (61228, 'https://ror.org/01f8wmr43', 'en', 1, 'https://ror.org/01f8wmr43 Jacaranda Community Centre'), (61229, 'https://ror.org/01fd5y629', 'no_lang_code', 1, 'https://ror.org/01fd5y629 Tomitahama Hospital'), (61230, 'https://ror.org/01fdfdf14', 'en', 1, 'https://ror.org/01fdfdf14 The Econometric Society'), (61231, 'https://ror.org/01fepwa31', 'fr', 1, 'https://ror.org/01fepwa31 Clinique du Sport'), (61232, 'https://ror.org/01ffp9w12', 'en', 1, 'https://ror.org/01ffp9w12 Schwartz Laser Eye Center'), (61233, 'https://ror.org/01fg1c160', 'en', 1, 'https://ror.org/01fg1c160 Association of Black Cardiologists'), (61234, 'https://ror.org/01fhhqb25', 'en', 1, 'https://ror.org/01fhhqb25 Albert Einstein Academy'), (61235, 'https://ror.org/01fjcp824', 'en', 1, 'https://ror.org/01fjcp824 Tasmania Mures'), (61236, 'https://ror.org/01fmvjf05', 'no_lang_code', 1, 'https://ror.org/01fmvjf05 Curetis (Germany)'), (61237, 'https://ror.org/01fnh4d22', 'en', 1, 'https://ror.org/01fnh4d22 Hazleton Eye Specialists'), (61238, 'https://ror.org/01fqh9j23', 'en', 1, 'https://ror.org/01fqh9j23 Elmhurst Memorial Hospital'), (61239, 'https://ror.org/01fqyr702', 'nl', 1, 'https://ror.org/01fqyr702 De Twentse Zorgcentra'), (61240, 'https://ror.org/01fr3sh36', 'en', 1, 'https://ror.org/01fr3sh36 Beebe Healthcare'), (61241, 'https://ror.org/01frh6r56', 'no_lang_code', 1, 'https://ror.org/01frh6r56 Seguros Caracas Liberty Mutual (Venezuela)'), (61242, 'https://ror.org/01fse5k28', 'en', 1, 'https://ror.org/01fse5k28 Eesti Siseministeerium Ministry of the Interior'), (61243, 'https://ror.org/01fsqmr25', 'no_lang_code', 1, 'https://ror.org/01fsqmr25 CrossLife Technologies (United States)'), (61244, 'https://ror.org/01fsv3111', 'no_lang_code', 1, 'https://ror.org/01fsv3111 Health Fidelity (United States)'), (61245, 'https://ror.org/01fw4cw44', 'en', 1, 'https://ror.org/01fw4cw44 Transcare'), (61246, 'https://ror.org/01fyfmc75', 'es', 1, 'https://ror.org/01fyfmc75 Instituto Médico DAMIC'), (61247, 'https://ror.org/01fytb163', 'no_lang_code', 1, 'https://ror.org/01fytb163 Ciclo de Mutação (Brazil)'), (61248, 'https://ror.org/01g06kj70', 'no_lang_code', 1, 'https://ror.org/01g06kj70 Clinstile (Mexico)'), (61249, 'https://ror.org/01g0k2717', 'en', 1, 'https://ror.org/01g0k2717 Israeli Yoga Teachers Association ארגון מורי היוגה בישראל'), (61250, 'https://ror.org/01g0kzv83', 'no_lang_code', 1, 'https://ror.org/01g0kzv83 Biosearch Life (Spain)'), (61251, 'https://ror.org/01g15q926', 'no_lang_code', 1, 'https://ror.org/01g15q926 Origin Sciences (United Kingdom)'), (61252, 'https://ror.org/01g1xp238', 'en', 1, 'https://ror.org/01g1xp238 Western Rock Lobster Council'), (61253, 'https://ror.org/01g373s33', 'en', 1, 'https://ror.org/01g373s33 International Hyperbaric Medical Foundation'), (61254, 'https://ror.org/01g4c0s50', 'no_lang_code', 1, 'https://ror.org/01g4c0s50 Digital Artefacts (United States)'), (61255, 'https://ror.org/01g4e8585', 'en', 1, 'https://ror.org/01g4e8585 Andalusian Institute of Sexology and Psychology Instituto Andaluz de Sexología y Psicología'), (61256, 'https://ror.org/01g4jev56', 'no_lang_code', 1, 'https://ror.org/01g4jev56 Philips (Finland) Philips Oy'), (61257, 'https://ror.org/01g62gh72', 'en', 1, 'https://ror.org/01g62gh72 Buehler Challenger & Science Center'), (61258, 'https://ror.org/01g6k1070', 'en', 1, 'https://ror.org/01g6k1070 HighScope'), (61259, 'https://ror.org/01g6xse81', 'no_lang_code', 1, 'https://ror.org/01g6xse81 Altasciences (Canada)'), (61260, 'https://ror.org/01g73y611', 'en', 1, 'https://ror.org/01g73y611 Jones Institute'), (61261, 'https://ror.org/01g7wf911', 'en', 1, 'https://ror.org/01g7wf911 Manhattan Physical Medicine and Rehabilitation'), (61262, 'https://ror.org/01g868933', 'no_lang_code', 1, 'https://ror.org/01g868933 The Johrei Institute'), (61263, 'https://ror.org/01ga08073', 'en', 1, 'https://ror.org/01ga08073 Saint Alphonsus Medical Center'), (61264, 'https://ror.org/01gcrbc43', 'en', 1, 'https://ror.org/01gcrbc43 Center for Human Genetics'), (61265, 'https://ror.org/01gdexd83', 'en', 1, 'https://ror.org/01gdexd83 Clinica Gastrobese'), (61266, 'https://ror.org/01gg7gz51', 'en', 1, 'https://ror.org/01gg7gz51 Institute for Community Health'), (61267, 'https://ror.org/01gm5fk44', 'de', 1, 'https://ror.org/01gm5fk44 Informationszentrum für Sexualität und Gesundheit'), (61268, 'https://ror.org/01gmqt203', 'en', 1, 'https://ror.org/01gmqt203 Mental Health Foundation'), (61269, 'https://ror.org/01gqah619', 'en', 1, 'https://ror.org/01gqah619 Guangxi Buffalo Research Institute'), (61270, 'https://ror.org/01gsv1y98', 'no_lang_code', 1, 'https://ror.org/01gsv1y98 Vimta (India)'), (61271, 'https://ror.org/01gw2gb17', 'fr', 1, 'https://ror.org/01gw2gb17 Société Française d''Endoscopie Digestive'), (61272, 'https://ror.org/01gxkhe25', 'no_lang_code', 1, 'https://ror.org/01gxkhe25 Lumos Labs (United States)'), (61273, 'https://ror.org/01gxyxa13', 'en', 1, 'https://ror.org/01gxyxa13 Setting Scoliosis Straight Foundation'), (61274, 'https://ror.org/01gy2bm93', 'no_lang_code', 1, 'https://ror.org/01gy2bm93 VDL Groep (Netherlands)'), (61275, 'https://ror.org/01gycem28', 'pt', 1, 'https://ror.org/01gycem28 Dermatological Center Dona Libânia Instituto de Dermatologia Dona Libania'), (61276, 'https://ror.org/01h0pkb03', 'no_lang_code', 1, 'https://ror.org/01h0pkb03 MizMedi Hospital'), (61277, 'https://ror.org/01h0snt56', 'no_lang_code', 1, 'https://ror.org/01h0snt56 Emmedi (Italy)'), (61278, 'https://ror.org/01h5tah83', 'en', 1, 'https://ror.org/01h5tah83 Alliance Against Diabetes'), (61279, 'https://ror.org/01h6pad21', 'de', 1, 'https://ror.org/01h6pad21 Psychologische Praxengemeinschaft'), (61280, 'https://ror.org/01h90nm51', 'en', 1, 'https://ror.org/01h90nm51 Marine Discovery Centre'), (61281, 'https://ror.org/01ha8kc92', 'en', 1, 'https://ror.org/01ha8kc92 Waverly Hematology Oncology'), (61282, 'https://ror.org/01hd27x96', 'de', 1, 'https://ror.org/01hd27x96 Deutsche Gesellschaft für Psychoanalyse, Psychotherapie, Psychosomatik und Tiefenpsychologie'), (61283, 'https://ror.org/01hf1z671', 'no_lang_code', 1, 'https://ror.org/01hf1z671 LIV Pharma (Germany)'), (61284, 'https://ror.org/01hf2y314', 'pt', 1, 'https://ror.org/01hf2y314 Instituto de Cardiologia do Distrito Federal'), (61285, 'https://ror.org/01hfvmc98', 'no_lang_code', 1, 'https://ror.org/01hfvmc98 Akervall Technologies (United States)'), (61286, 'https://ror.org/01hga1v29', 'en', 1, 'https://ror.org/01hga1v29 New Brunswick Pharmacists’ Association'), (61287, 'https://ror.org/01hgadp56', 'en', 1, 'https://ror.org/01hgadp56 ALS Finding a Cure'), (61288, 'https://ror.org/01hgbws94', 'en', 1, 'https://ror.org/01hgbws94 St. Catherine Hospital'), (61289, 'https://ror.org/01hhggr08', 'en', 1, 'https://ror.org/01hhggr08 Humboldt Independent Practice Association'), (61290, 'https://ror.org/01hkxy133', 'es', 1, 'https://ror.org/01hkxy133 Sociedad Española de Periodoncia y Osteointegración'), (61291, 'https://ror.org/01hpbbx98', 'fr', 1, 'https://ror.org/01hpbbx98 Académie de Paris'), (61292, 'https://ror.org/01hpypq56', 'en', 1, 'https://ror.org/01hpypq56 Angeline Elizabeth Kirby Memorial Health Center'), (61293, 'https://ror.org/01hq5vx73', 'en', 1, 'https://ror.org/01hq5vx73 Irish Nutrition & Dietetic Institute'), (61294, 'https://ror.org/01htfbe02', 'en', 1, 'https://ror.org/01htfbe02 Sight and Life'), (61295, 'https://ror.org/01hyc1n91', 'no_lang_code', 1, 'https://ror.org/01hyc1n91 Roche (Czechia)'), (61296, 'https://ror.org/01hz8zy20', 'en', 1, 'https://ror.org/01hz8zy20 Los Angeles Council of Black Professional Engineers'), (61297, 'https://ror.org/01hzc1b78', 'en', 1, 'https://ror.org/01hzc1b78 Inamed'), (61298, 'https://ror.org/01hzh7w96', 'en', 1, 'https://ror.org/01hzh7w96 University Industry Demonstration Partnership'), (61299, 'https://ror.org/01j0j2s89', 'nl', 1, 'https://ror.org/01j0j2s89 Zeeuws Hand & Pols Centrum'), (61300, 'https://ror.org/01j15gd68', 'en', 1, 'https://ror.org/01j15gd68 Erie Family Health Center'), (61301, 'https://ror.org/01j2f9q17', 'en', 1, 'https://ror.org/01j2f9q17 TerrainWorks'), (61302, 'https://ror.org/01j5rwt89', 'en', 1, 'https://ror.org/01j5rwt89 Influenza Foundation of Thailand มูลนิธิส่งเสิรมการศึกษาไข้หวัดใหญ่'), (61303, 'https://ror.org/01j6p1p64', 'no_lang_code', 1, 'https://ror.org/01j6p1p64 Alimera Sciences (Germany)'), (61304, 'https://ror.org/01j811c15', 'en', 1, 'https://ror.org/01j811c15 German Inflammatory Bowel Diseases Study Group'), (61305, 'https://ror.org/01jbeyb43', 'en', 1, 'https://ror.org/01jbeyb43 SPRINT'), (61306, 'https://ror.org/01jeebd83', 'en', 1, 'https://ror.org/01jeebd83 Rochester Engineering Society'), (61307, 'https://ror.org/01jekr004', 'de', 1, 'https://ror.org/01jekr004 Centrum für Operative Urologie Bremen'), (61308, 'https://ror.org/01jfd9z49', 'en', 1, 'https://ror.org/01jfd9z49 Zhengzhou Children''s Hospital 河南省儿童医院'), (61309, 'https://ror.org/01jgxbq59', 'en', 1, 'https://ror.org/01jgxbq59 AlterMed Research Foundation'), (61310, 'https://ror.org/01jj3v002', 'en', 1, 'https://ror.org/01jj3v002 Austin Speech Labs'), (61311, 'https://ror.org/01jkda844', 'en', 1, 'https://ror.org/01jkda844 West Cancer Center'), (61312, 'https://ror.org/01jm7yc11', 'no_lang_code', 1, 'https://ror.org/01jm7yc11 KCI (Netherlands)'), (61313, 'https://ror.org/01jngdt03', 'en', 1, 'https://ror.org/01jngdt03 Genetic Information Research Institute'), (61314, 'https://ror.org/01jrr6c68', 'en', 1, 'https://ror.org/01jrr6c68 Springfield Regional Medical Center'), (61315, 'https://ror.org/01jrsap74', 'nl', 1, 'https://ror.org/01jrsap74 Stichting De Opbouw'); INSERT INTO `rors` VALUES (61316, 'https://ror.org/01jscks03', 'en', 1, 'https://ror.org/01jscks03 Clinical Alliance for Research and Education-Infectious Diseases'), (61317, 'https://ror.org/01jt2k297', 'no_lang_code', 1, 'https://ror.org/01jt2k297 MaxQ (United States)'), (61318, 'https://ror.org/01jtjrm75', 'no_lang_code', 1, 'https://ror.org/01jtjrm75 Provivi (United States)'), (61319, 'https://ror.org/01jv6d279', 'en', 1, 'https://ror.org/01jv6d279 Vidant Beaufort Hospital'), (61320, 'https://ror.org/01jw20968', 'no_lang_code', 1, 'https://ror.org/01jw20968 Orochemie (Germany)'), (61321, 'https://ror.org/01jxkq910', 'no_lang_code', 1, 'https://ror.org/01jxkq910 Glaxosmithkline (Finland)'), (61322, 'https://ror.org/01jygxx11', 'no_lang_code', 1, 'https://ror.org/01jygxx11 ThedaCare'), (61323, 'https://ror.org/01jykf083', 'en', 1, 'https://ror.org/01jykf083 The Seattle Institute for Cardiac Research'), (61324, 'https://ror.org/01k1j7593', 'en', 1, 'https://ror.org/01k1j7593 Highlands Oncology Group'), (61325, 'https://ror.org/01k2ap794', 'nl', 1, 'https://ror.org/01k2ap794 Stichting Zorgondersteuningsfonds'), (61326, 'https://ror.org/01k4dy133', 'no_lang_code', 1, 'https://ror.org/01k4dy133 TheraTears (United States)'), (61327, 'https://ror.org/01k7ze855', 'no_lang_code', 1, 'https://ror.org/01k7ze855 Novasep (Belgium)'), (61328, 'https://ror.org/01k9v9b21', 'en', 1, 'https://ror.org/01k9v9b21 Indianapolis Zoo'), (61329, 'https://ror.org/01kb5b139', 'no_lang_code', 1, 'https://ror.org/01kb5b139 Rite Aid (United States)'), (61330, 'https://ror.org/01kbfg076', 'en', 1, 'https://ror.org/01kbfg076 American Water Resources Association'), (61331, 'https://ror.org/01kc06n62', 'no_lang_code', 1, 'https://ror.org/01kc06n62 Vantage View (United States)'), (61332, 'https://ror.org/01kd1b507', 'no_lang_code', 1, 'https://ror.org/01kd1b507 Sunstream Scientific (United States)'), (61333, 'https://ror.org/01kdwe889', 'no_lang_code', 1, 'https://ror.org/01kdwe889 Juzo (Germany)'), (61334, 'https://ror.org/01kebx220', 'en', 1, 'https://ror.org/01kebx220 Clinical Research Organization'), (61335, 'https://ror.org/01kfnjv17', 'en', 1, 'https://ror.org/01kfnjv17 Kunming Metallurgical Research Institute 昆明冶金研究所'), (61336, 'https://ror.org/01khddn76', 'en', 1, 'https://ror.org/01khddn76 Conquer Chiari'), (61337, 'https://ror.org/01kjnq750', 'en', 1, 'https://ror.org/01kjnq750 Atrium Medical Cente'), (61338, 'https://ror.org/01kkh1557', 'en', 1, 'https://ror.org/01kkh1557 Miami Dermatology and Laser Institute'), (61339, 'https://ror.org/01kkj4786', 'de', 1, 'https://ror.org/01kkj4786 BARMER GEK'), (61340, 'https://ror.org/01kkp5g91', 'es', 1, 'https://ror.org/01kkp5g91 Grupo Español de Cáncer de Pulmón'), (61341, 'https://ror.org/01kmd8x15', 'nl', 1, 'https://ror.org/01kmd8x15 Oostvaarderskliniek'), (61342, 'https://ror.org/01kmtg526', 'en', 1, 'https://ror.org/01kmtg526 Children’s Institute'), (61343, 'https://ror.org/01kn25t14', 'en', 1, 'https://ror.org/01kn25t14 Korean Society of Interventional Cardiology 대한심혈관중재학회'), (61344, 'https://ror.org/01kn5qq40', 'en', 1, 'https://ror.org/01kn5qq40 Maruyama Memorial General Hospital 丸山記念総合病院'), (61345, 'https://ror.org/01kn7pj21', 'fr', 1, 'https://ror.org/01kn7pj21 Association pour la Recherche en Physiologie de l’Environnement'), (61346, 'https://ror.org/01kpv7172', 'en', 1, 'https://ror.org/01kpv7172 Saviour Hospital'), (61347, 'https://ror.org/01kq0a723', 'it', 1, 'https://ror.org/01kq0a723 CINFAI, Consorzio Interuniversitario Nazionale per la Fisica delle Atmosfere e delle Idrosfere'), (61348, 'https://ror.org/01kqrgb09', 'en', 1, 'https://ror.org/01kqrgb09 Banner Thunderbird Medical Center'), (61349, 'https://ror.org/01kr18419', 'en', 1, 'https://ror.org/01kr18419 Middle East Institute'), (61350, 'https://ror.org/01kr22f12', 'en', 1, 'https://ror.org/01kr22f12 Tianjin Product Quality Supervision and Testing Technology Institute 天津产品质量监督检验技术研究所'), (61351, 'https://ror.org/01krara14', 'en', 1, 'https://ror.org/01krara14 Metropolitan Jewish Health System'), (61352, 'https://ror.org/01krbfc31', 'en', 1, 'https://ror.org/01krbfc31 Tennessee Cancer Specialists'), (61353, 'https://ror.org/01krfgm39', 'en', 1, 'https://ror.org/01krfgm39 Alabama Clincal Therapeutics'), (61354, 'https://ror.org/01ks64q75', 'no_lang_code', 1, 'https://ror.org/01ks64q75 BIRR (Netherlands)'), (61355, 'https://ror.org/01kwfx619', 'en', 1, 'https://ror.org/01kwfx619 Second Hospital of Tangshan'), (61356, 'https://ror.org/01kxhkq76', 'en', 1, 'https://ror.org/01kxhkq76 Mary Greeley Medical Center'), (61357, 'https://ror.org/01m0gv380', 'nl', 1, 'https://ror.org/01m0gv380 GGz centraal'), (61358, 'https://ror.org/01m15jk16', 'no_lang_code', 1, 'https://ror.org/01m15jk16 Maywufa (Taiwan)'), (61359, 'https://ror.org/01m1xx561', 'en', 1, 'https://ror.org/01m1xx561 Taizhou Fourth People''s Hospital 温岭市第四人民医院'), (61360, 'https://ror.org/01m3r9s26', 'en', 1, 'https://ror.org/01m3r9s26 The Tor Project'), (61361, 'https://ror.org/01m5a8633', 'en', 1, 'https://ror.org/01m5a8633 Alaska Women''s Cancer Care'), (61362, 'https://ror.org/01m5aac17', 'no_lang_code', 1, 'https://ror.org/01m5aac17 Ypsomed (Germany)'), (61363, 'https://ror.org/01m5mwt22', 'de', 1, 'https://ror.org/01m5mwt22 Asklepios Fachklinikum Tiefenbrunn'), (61364, 'https://ror.org/01m92rg76', 'ro', 1, 'https://ror.org/01m92rg76 Institutul Oncologic din Republica Moldova Oncological Institute of the Republic of Moldova'), (61365, 'https://ror.org/01m9bke74', 'en', 1, 'https://ror.org/01m9bke74 State Clinical Hospital "Clinical Oncology Center No. 1'), (61366, 'https://ror.org/01m9n6c96', 'en', 1, 'https://ror.org/01m9n6c96 National Science & Technology Education Partnership'), (61367, 'https://ror.org/01mgbxm56', 'nl', 1, 'https://ror.org/01mgbxm56 Kliniek voor Parodontologie Rotterdam'), (61368, 'https://ror.org/01mgtdr23', 'no_lang_code', 1, 'https://ror.org/01mgtdr23 Baxter (France)'), (61369, 'https://ror.org/01mhc8r12', 'no_lang_code', 1, 'https://ror.org/01mhc8r12 Santen (Finland)'), (61370, 'https://ror.org/01mj0ma27', 'en', 1, 'https://ror.org/01mj0ma27 Orlando Science Center'), (61371, 'https://ror.org/01mjp5v83', 'en', 1, 'https://ror.org/01mjp5v83 South Jordan Health Center'), (61372, 'https://ror.org/01mkr0b50', 'no_lang_code', 1, 'https://ror.org/01mkr0b50 InsightFinder (United States)'), (61373, 'https://ror.org/01mm9kz68', 'no_lang_code', 1, 'https://ror.org/01mm9kz68 GD Medical Pharma (Netherlands)'), (61374, 'https://ror.org/01mn8sk35', 'en', 1, 'https://ror.org/01mn8sk35 Presbyterian Kaseman Hospital'), (61375, 'https://ror.org/01mp0e364', 'de', 1, 'https://ror.org/01mp0e364 Infektionsmedizinisches Centrum Hamburg'), (61376, 'https://ror.org/01mpr3h03', 'en', 1, 'https://ror.org/01mpr3h03 University Diagnostic Institute'), (61377, 'https://ror.org/01mr7bg63', 'en', 1, 'https://ror.org/01mr7bg63 The Women’s Imaging Center'), (61378, 'https://ror.org/01mvtpp50', 'de', 1, 'https://ror.org/01mvtpp50 Arbeitsgemeinschaft für Krebsbekämpfung'), (61379, 'https://ror.org/01mwa8226', 'en', 1, 'https://ror.org/01mwa8226 SEAMEO Regional Center for Food and Nutrition'), (61380, 'https://ror.org/01mwnbk39', 'en', 1, 'https://ror.org/01mwnbk39 Kaiser Permanente Modesto Medical Center and Medical Offices'), (61381, 'https://ror.org/01mxmb797', 'en', 1, 'https://ror.org/01mxmb797 Stockholm Environment Institute'), (61382, 'https://ror.org/01mz87517', 'no_lang_code', 1, 'https://ror.org/01mz87517 BioInspira (United States)'), (61383, 'https://ror.org/01mze9517', 'it', 1, 'https://ror.org/01mze9517 Istituto di Ematologia di Bologna'), (61384, 'https://ror.org/01mzwmh52', 'en', 1, 'https://ror.org/01mzwmh52 British Columbia Rehabilitation Foundation'), (61385, 'https://ror.org/01n46fg04', 'en', 1, 'https://ror.org/01n46fg04 Everglades Area Health Education Center'), (61386, 'https://ror.org/01n4hxm67', 'en', 1, 'https://ror.org/01n4hxm67 Interuniversitair Centrum voor Onderwijswetenschappen Interuniversity Center for Educational Research'), (61387, 'https://ror.org/01n51hq73', 'en', 1, 'https://ror.org/01n51hq73 Self Regional Healthcare'), (61388, 'https://ror.org/01n5xv175', 'en', 1, 'https://ror.org/01n5xv175 China Metallurgical Geology Bureau'), (61389, 'https://ror.org/01n69pc33', 'de', 1, 'https://ror.org/01n69pc33 Instand'), (61390, 'https://ror.org/01n8j6z65', 'en', 1, 'https://ror.org/01n8j6z65 Deutsches Zentrum für Hochschul- und Wissenschaftsforschung German Centre for Higher Education Research and Science Studies'), (61391, 'https://ror.org/01n8pm979', 'no_lang_code', 1, 'https://ror.org/01n8pm979 Insta (Finland)'), (61392, 'https://ror.org/01n95cx06', 'no_lang_code', 1, 'https://ror.org/01n95cx06 Chugai Pharma (United States)'), (61393, 'https://ror.org/01nb8yv40', 'no_lang_code', 1, 'https://ror.org/01nb8yv40 Histogen (United States)'), (61394, 'https://ror.org/01ncapf89', 'en', 1, 'https://ror.org/01ncapf89 Healthpoint'), (61395, 'https://ror.org/01ncxv941', 'en', 1, 'https://ror.org/01ncxv941 St. Petersburg State Medical Academy "City Hospital No. 26"'), (61396, 'https://ror.org/01ne3xe80', 'de', 1, 'https://ror.org/01ne3xe80 Ärztliche Gesellschaft zur Gesundheitsförderung e.V'), (61397, 'https://ror.org/01nhpc584', 'en', 1, 'https://ror.org/01nhpc584 Huther Doyle'), (61398, 'https://ror.org/01nhpee59', 'en', 1, 'https://ror.org/01nhpee59 European Society for Intravenous Anaesthesia'), (61399, 'https://ror.org/01nqn2b57', 'no_lang_code', 1, 'https://ror.org/01nqn2b57 SocraTec R&D (Germany)'), (61400, 'https://ror.org/01nsbm866', 'en', 1, 'https://ror.org/01nsbm866 Moscow Research and Clinical Center for Neuropsychiatry'), (61401, 'https://ror.org/01nsg2f90', 'nl', 1, 'https://ror.org/01nsg2f90 Robuust'), (61402, 'https://ror.org/01nsm8h24', 'no_lang_code', 1, 'https://ror.org/01nsm8h24 Physical Devices (United States)'), (61403, 'https://ror.org/01ntyhv86', 'en', 1, 'https://ror.org/01ntyhv86 Prostate Institute of America'), (61404, 'https://ror.org/01nvbq395', 'en', 1, 'https://ror.org/01nvbq395 Food for Health Ireland'), (61405, 'https://ror.org/01nw4gp55', 'en', 1, 'https://ror.org/01nw4gp55 Canadian Society of Intestinal Research'), (61406, 'https://ror.org/01nw8jb24', 'en', 1, 'https://ror.org/01nw8jb24 Aim Foundation'), (61407, 'https://ror.org/01nwbp351', 'de', 1, 'https://ror.org/01nwbp351 Nierenzentrum Heidelberg'), (61408, 'https://ror.org/01nxgpa50', 'nl', 1, 'https://ror.org/01nxgpa50 Stofberg Preventie & Coaching'), (61409, 'https://ror.org/01nxgy670', 'no_lang_code', 1, 'https://ror.org/01nxgy670 Welzijnservices (Netherlands)'), (61410, 'https://ror.org/01nxxp011', 'de', 1, 'https://ror.org/01nxxp011 Klinik und Poliklinik für Psychosomatische Medizin und Psychotherapie'), (61411, 'https://ror.org/01nz0vz73', 'en', 1, 'https://ror.org/01nz0vz73 FamilieSCN2A Foundation'), (61412, 'https://ror.org/01nzrnn89', 'nl', 1, 'https://ror.org/01nzrnn89 Vanboeijen'), (61413, 'https://ror.org/01p02as95', 'it', 1, 'https://ror.org/01p02as95 Istituto Europeo per la Medicina Osteopatica'), (61414, 'https://ror.org/01p0ze617', 'de', 1, 'https://ror.org/01p0ze617 Sankt Gertrauden Krankenhaus'), (61415, 'https://ror.org/01p1gwk51', 'da', 1, 'https://ror.org/01p1gwk51 Landsforeningen Værn om Synet, Øjenforeningen'), (61416, 'https://ror.org/01p3c7261', 'en', 1, 'https://ror.org/01p3c7261 The Peter and Elizabeth C. Tower Foundation'), (61417, 'https://ror.org/01p47g940', 'es', 1, 'https://ror.org/01p47g940 Fundación Huésped'), (61418, 'https://ror.org/01p4cs333', 'en', 1, 'https://ror.org/01p4cs333 Saskatoon Medical Imaging'), (61419, 'https://ror.org/01p4er784', 'en', 1, 'https://ror.org/01p4er784 Kawerak'), (61420, 'https://ror.org/01p78m944', 'en', 1, 'https://ror.org/01p78m944 Dominican Women''s Development Center'), (61421, 'https://ror.org/01p894e02', 'en', 1, 'https://ror.org/01p894e02 Institute of Health Visiting'), (61422, 'https://ror.org/01p9emh29', 'no_lang_code', 1, 'https://ror.org/01p9emh29 AXON Neuroscience (Cyprus)'), (61423, 'https://ror.org/01pa6t272', 'no_lang_code', 1, 'https://ror.org/01pa6t272 Abbott (Austria)'), (61424, 'https://ror.org/01pagm392', 'en', 1, 'https://ror.org/01pagm392 Valmontone Hospital'), (61425, 'https://ror.org/01pbcje80', 'en', 1, 'https://ror.org/01pbcje80 Key-Whitman Eye Center'), (61426, 'https://ror.org/01pf0ts81', 'no_lang_code', 1, 'https://ror.org/01pf0ts81 Addex Therapeutics (Switzerland)'), (61427, 'https://ror.org/01pk0nx86', 'en', 1, 'https://ror.org/01pk0nx86 Retina Specialty Institute'), (61428, 'https://ror.org/01pndgw26', 'de', 1, 'https://ror.org/01pndgw26 Klinik und Poliklinik für Hals-Nasen-Ohren-Heilkunde'), (61429, 'https://ror.org/01pne6c96', 'no_lang_code', 1, 'https://ror.org/01pne6c96 Dar AlMaraa Center'), (61430, 'https://ror.org/01prj4323', 'de', 1, 'https://ror.org/01prj4323 Regio Kliniken'), (61431, 'https://ror.org/01pt05f05', 'en', 1, 'https://ror.org/01pt05f05 The Living Legacy Foundation'), (61432, 'https://ror.org/01pt9mg14', 'en', 1, 'https://ror.org/01pt9mg14 MidMichigan Medical Center - Midland'), (61433, 'https://ror.org/01pwcqj21', 'no_lang_code', 1, 'https://ror.org/01pwcqj21 Columbia Shipmanagement (Germany)'), (61434, 'https://ror.org/01pwm0502', 'en', 1, 'https://ror.org/01pwm0502 Canadian VIGOUR Centre'), (61435, 'https://ror.org/01pwq1j60', 'no_lang_code', 1, 'https://ror.org/01pwq1j60 N2 Biomedical (United States)'), (61436, 'https://ror.org/01pxs4m78', 'en', 1, 'https://ror.org/01pxs4m78 Association of Gynaecologists and Obstetricians'), (61437, 'https://ror.org/01pyacx21', 'en', 1, 'https://ror.org/01pyacx21 Rogers Behavioral Health'), (61438, 'https://ror.org/01pyv5j09', 'en', 1, 'https://ror.org/01pyv5j09 American Pistachio Growers'), (61439, 'https://ror.org/01pyynr06', 'it', 1, 'https://ror.org/01pyynr06 SIOTEMA'), (61440, 'https://ror.org/01q00j872', 'en', 1, 'https://ror.org/01q00j872 HipKnee Arkansas Foundation'), (61441, 'https://ror.org/01q02kv80', 'en', 1, 'https://ror.org/01q02kv80 Foundation for Faces of Children'), (61442, 'https://ror.org/01q2pxs68', 'en', 1, 'https://ror.org/01q2pxs68 Vinmec International Hospital'), (61443, 'https://ror.org/01q3wpv10', 'en', 1, 'https://ror.org/01q3wpv10 St. Mark''s School of Texas'), (61444, 'https://ror.org/01q428f30', 'no_lang_code', 1, 'https://ror.org/01q428f30 Cesra (Germany)'), (61445, 'https://ror.org/01q8w7b22', 'no_lang_code', 1, 'https://ror.org/01q8w7b22 Mimetogen (United States)'), (61446, 'https://ror.org/01q9c7s07', 'en', 1, 'https://ror.org/01q9c7s07 Kaiser Permanente Richmond Medical Center'), (61447, 'https://ror.org/01qdk5035', 'en', 1, 'https://ror.org/01qdk5035 Whiteley Clinic'), (61448, 'https://ror.org/01qkbtc88', 'no_lang_code', 1, 'https://ror.org/01qkbtc88 CVRx (United States)'), (61449, 'https://ror.org/01qsyak13', 'nl', 1, 'https://ror.org/01qsyak13 Dianet'), (61450, 'https://ror.org/01qtkgt88', 'en', 1, 'https://ror.org/01qtkgt88 Beijing Municipal Commission of Urban Planning 北京市规划和国土资源管理委员会'), (61451, 'https://ror.org/01qts1d13', 'en', 1, 'https://ror.org/01qts1d13 St. Mary''s Hospital Medical Center'), (61452, 'https://ror.org/01qtxzw29', 'en', 1, 'https://ror.org/01qtxzw29 Kentuckiana Pulmonary Associates'), (61453, 'https://ror.org/01qvdp131', 'no_lang_code', 1, 'https://ror.org/01qvdp131 Solace Therapeutics (United States)'), (61454, 'https://ror.org/01qwf4k77', 'en', 1, 'https://ror.org/01qwf4k77 Jiangsu Province Blood Center 江苏省血液中心'), (61455, 'https://ror.org/01qwfvp91', 'no_lang_code', 1, 'https://ror.org/01qwfvp91 Orthogen (Germany)'), (61456, 'https://ror.org/01qwms897', 'en', 1, 'https://ror.org/01qwms897 Bernstein Clinical Research Center'), (61457, 'https://ror.org/01qx93189', 'en', 1, 'https://ror.org/01qx93189 Amateur Fishermen''s Association of the Northern Territory'), (61458, 'https://ror.org/01qyj3s68', 'en', 1, 'https://ror.org/01qyj3s68 Koninklijke Nederlandse Atletiek Unie Royal Dutch Athletics Federation'), (61459, 'https://ror.org/01qyj4j90', 'en', 1, 'https://ror.org/01qyj4j90 CityLab010'), (61460, 'https://ror.org/01r157087', 'en', 1, 'https://ror.org/01r157087 Orthopaedic Specialty Institute'), (61461, 'https://ror.org/01r2vqh34', 'en', 1, 'https://ror.org/01r2vqh34 North Carolina Office of the Governor'), (61462, 'https://ror.org/01r32p017', 'en', 1, 'https://ror.org/01r32p017 North Texas Regional Center for Innovation and Commercialization'), (61463, 'https://ror.org/01r34sc48', 'en', 1, 'https://ror.org/01r34sc48 Philippine Medical Association'), (61464, 'https://ror.org/01r4eh644', 'en', 1, 'https://ror.org/01r4eh644 Lunar and Planetary Institute'), (61465, 'https://ror.org/01r4qbv69', 'en', 1, 'https://ror.org/01r4qbv69 Patras Olympian Hospital Ολύμπιον Θεραπευτήριο Πάτρας'), (61466, 'https://ror.org/01r74wp43', 'no_lang_code', 1, 'https://ror.org/01r74wp43 Syneos Health (United States)'), (61467, 'https://ror.org/01r8yv121', 'en', 1, 'https://ror.org/01r8yv121 Research & Development Institute'), (61468, 'https://ror.org/01rd68671', 'en', 1, 'https://ror.org/01rd68671 Mae Fah Luang University Hospital โรงพยาบาลมหาวิทยาลัยแม่ฟ้าหลวง'), (61469, 'https://ror.org/01rdp0h57', 'en', 1, 'https://ror.org/01rdp0h57 Gansu Provincial Agriculture and Animal Husbandry'), (61470, 'https://ror.org/01rfvvq43', 'no_lang_code', 1, 'https://ror.org/01rfvvq43 Boston Scientific (Germany)'), (61471, 'https://ror.org/01rhjvw42', 'no_lang_code', 1, 'https://ror.org/01rhjvw42 NewConceptOncology (Germany)'), (61472, 'https://ror.org/01rjdjc72', 'en', 1, 'https://ror.org/01rjdjc72 Olberon (United Kingdom)'), (61473, 'https://ror.org/01rsq7s41', 'no_lang_code', 1, 'https://ror.org/01rsq7s41 JT Pharmaceuticals (United States)'), (61474, 'https://ror.org/01rsw3c42', 'pt', 1, 'https://ror.org/01rsw3c42 Fundação Bahiana de Infectologia'), (61475, 'https://ror.org/01rxc2g24', 'no_lang_code', 1, 'https://ror.org/01rxc2g24 Accurate Clinical Management (United States)'), (61476, 'https://ror.org/01s361a76', 'no_lang_code', 1, 'https://ror.org/01s361a76 Boston Scientific (Belgium)'), (61477, 'https://ror.org/01s902n79', 'en', 1, 'https://ror.org/01s902n79 Association of Extremity Nerve Surgeons'), (61478, 'https://ror.org/01saavf11', 'en', 1, 'https://ror.org/01saavf11 Australian Recreational Fishing Foundation'), (61479, 'https://ror.org/01sbpdt14', 'en', 1, 'https://ror.org/01sbpdt14 Nanchang Normal University 南昌师范学院'), (61480, 'https://ror.org/01scra789', 'nl', 1, 'https://ror.org/01scra789 Instituut voor Positieve Psychologie'), (61481, 'https://ror.org/01sf6dn24', 'no_lang_code', 1, 'https://ror.org/01sf6dn24 Procter & Gamble (Netherlands)'), (61482, 'https://ror.org/01sgsyh36', 'en', 1, 'https://ror.org/01sgsyh36 Charleston Research Institute'), (61483, 'https://ror.org/01skcdk50', 'ca', 1, 'https://ror.org/01skcdk50 Catalan Retina Institute Institut Català de Retina'), (61484, 'https://ror.org/01skcyw40', 'ca', 1, 'https://ror.org/01skcyw40 Departament de Benestar i Drets Socials'), (61485, 'https://ror.org/01smr1h94', 'en', 1, 'https://ror.org/01smr1h94 Telligen'), (61486, 'https://ror.org/01sp6c076', 'en', 1, 'https://ror.org/01sp6c076 Kansas City Area Life Sciences Institute'), (61487, 'https://ror.org/01spx4y35', 'en', 1, 'https://ror.org/01spx4y35 London Eye Hospital'), (61488, 'https://ror.org/01spyz863', 'es', 1, 'https://ror.org/01spyz863 Sociedad Española de Endoscopia Digestiva'), (61489, 'https://ror.org/01sq6ck73', 'de', 1, 'https://ror.org/01sq6ck73 Monika Kutzner Stiftung'), (61490, 'https://ror.org/01sr4q713', 'en', 1, 'https://ror.org/01sr4q713 Center for International Environmental Law'), (61491, 'https://ror.org/01st9qd69', 'de', 1, 'https://ror.org/01st9qd69 Vista Klinik'), (61492, 'https://ror.org/01sv4m290', 'en', 1, 'https://ror.org/01sv4m290 Randolph Health'), (61493, 'https://ror.org/01svr1620', 'fr', 1, 'https://ror.org/01svr1620 PharmaSuisse'), (61494, 'https://ror.org/01t0tr298', 'en', 1, 'https://ror.org/01t0tr298 Academy of Cardiovascular Society Kardiyovasküler Akademi Derneği'), (61495, 'https://ror.org/01t10vs30', 'no_lang_code', 1, 'https://ror.org/01t10vs30 Eisai (Germany)'), (61496, 'https://ror.org/01t2rqa20', 'en', 1, 'https://ror.org/01t2rqa20 Annie Penn Hospital'), (61497, 'https://ror.org/01t2wgx84', 'pt', 1, 'https://ror.org/01t2wgx84 Associação Portuguesa de Hemofilia e de outras Coagulopatias Congénitas'), (61498, 'https://ror.org/01t307872', 'en', 1, 'https://ror.org/01t307872 Progressive Agriculture Foundation'), (61499, 'https://ror.org/01t34hq68', 'en', 1, 'https://ror.org/01t34hq68 Association Rwandaise Des Diabetiques Rwanda Diabetes Association'), (61500, 'https://ror.org/01t3v1178', 'en', 1, 'https://ror.org/01t3v1178 Florida Eye Microsurgical Institute'), (61501, 'https://ror.org/01t45et45', 'en', 1, 'https://ror.org/01t45et45 Methodist West Hospital'), (61502, 'https://ror.org/01t825428', 'en', 1, 'https://ror.org/01t825428 The Eve Appeal'), (61503, 'https://ror.org/01t96az37', 'en', 1, 'https://ror.org/01t96az37 Oysters South Australia'), (61504, 'https://ror.org/01ta1nw48', 'no_lang_code', 1, 'https://ror.org/01ta1nw48 Alivation (United States)'), (61505, 'https://ror.org/01tcmg746', 'no_lang_code', 1, 'https://ror.org/01tcmg746 Knox Medical Diagnostics (United States)'), (61506, 'https://ror.org/01tdaqj45', 'de', 1, 'https://ror.org/01tdaqj45 FWU Institut für Film und Bild in Wissenschaft und Unterricht'), (61507, 'https://ror.org/01tdq4v27', 'en', 1, 'https://ror.org/01tdq4v27 RUTE Foundations'), (61508, 'https://ror.org/01teb6y78', 'en', 1, 'https://ror.org/01teb6y78 Foundation for Glacier and Environmental Research'), (61509, 'https://ror.org/01tf40c53', 'en', 1, 'https://ror.org/01tf40c53 Healing Touch Worldwide Foundation'), (61510, 'https://ror.org/01tfhsg94', 'fr', 1, 'https://ror.org/01tfhsg94 Hôpital Européen'), (61511, 'https://ror.org/01tm5k604', 'nl', 1, 'https://ror.org/01tm5k604 Treant Zorggroep'), (61512, 'https://ror.org/01tpy1912', 'de', 1, 'https://ror.org/01tpy1912 Bundesverband der Hörgeräte-Industrie'), (61513, 'https://ror.org/01tq9ra93', 'en', 1, 'https://ror.org/01tq9ra93 War Child'), (61514, 'https://ror.org/01tqkhn82', 'en', 1, 'https://ror.org/01tqkhn82 Shandong Entry-Exit Inspection and Quarantine Bureau 山东出入境检验检疫局'), (61515, 'https://ror.org/01tr7z120', 'en', 1, 'https://ror.org/01tr7z120 Institut National de la Santé Publique National Institute of Public Health'), (61516, 'https://ror.org/01tsmdw03', 'no_lang_code', 1, 'https://ror.org/01tsmdw03 Equinosis (United States)'), (61517, 'https://ror.org/01tt4qx37', 'en', 1, 'https://ror.org/01tt4qx37 Kuwait Institute for Medical Specialization'), (61518, 'https://ror.org/01tt8er74', 'en', 1, 'https://ror.org/01tt8er74 Chongqing Maternal and Child Health Hospital'), (61519, 'https://ror.org/01tvt4d48', 'no_lang_code', 1, 'https://ror.org/01tvt4d48 GlaxoSmithKline (India)'), (61520, 'https://ror.org/01twnqc61', 'en', 1, 'https://ror.org/01twnqc61 Good Samaritan Hospital'), (61521, 'https://ror.org/01tx2e407', 'nl', 1, 'https://ror.org/01tx2e407 Vlaams Agentschap Zorg en Gezondheid'), (61522, 'https://ror.org/01txxvd81', 'pl', 1, 'https://ror.org/01txxvd81 Uniwersytecki Szpital Kliniczny w Opolu'), (61523, 'https://ror.org/01txxxh71', 'fr', 1, 'https://ror.org/01txxxh71 Centre Hospitalier du Pays d''Aix'), (61524, 'https://ror.org/01txy2515', 'no_lang_code', 1, 'https://ror.org/01txy2515 Greenyard Fresh (Germany)'), (61525, 'https://ror.org/01tz5vj85', 'no_lang_code', 1, 'https://ror.org/01tz5vj85 Earlogic (South Korea)'), (61526, 'https://ror.org/01tzn5f02', 'no_lang_code', 1, 'https://ror.org/01tzn5f02 Spectral MD (United States)'), (61527, 'https://ror.org/01v11cc68', 'en', 1, 'https://ror.org/01v11cc68 Tianjin International Joint Academy of Biomedicine 天津国际联合生物医学研究所'), (61528, 'https://ror.org/01v1pqp42', 'no_lang_code', 1, 'https://ror.org/01v1pqp42 Across (Spain)'), (61529, 'https://ror.org/01v1wt982', 'no_lang_code', 1, 'https://ror.org/01v1wt982 Imam Abdulrahman Al Faisal Hospital'), (61530, 'https://ror.org/01v2qkv12', 'en', 1, 'https://ror.org/01v2qkv12 NEA Baptist Memorial Hospital'), (61531, 'https://ror.org/01v2w4d05', 'fr', 1, 'https://ror.org/01v2w4d05 Clinique Mutualiste La Sagesse'), (61532, 'https://ror.org/01v6tyf80', 'de', 1, 'https://ror.org/01v6tyf80 Institut für Ganzheitliche Medizin und Wissenschaft'), (61533, 'https://ror.org/01v8fa928', 'en', 1, 'https://ror.org/01v8fa928 American Institute of Hydrology'), (61534, 'https://ror.org/01v9phm86', 'no_lang_code', 1, 'https://ror.org/01v9phm86 J. S. Ayurveda Mahavidyalaya and P.D. Patel Ayurveda Hospital'), (61535, 'https://ror.org/01va37t86', 'en', 1, 'https://ror.org/01va37t86 New York City Department of Correction'), (61536, 'https://ror.org/01va8fr66', 'en', 1, 'https://ror.org/01va8fr66 Baim Institute for Clinical Research'), (61537, 'https://ror.org/01va9fe31', 'no_lang_code', 1, 'https://ror.org/01va9fe31 Inslaw (United States)'), (61538, 'https://ror.org/01vaajc72', 'en', 1, 'https://ror.org/01vaajc72 City Hospital No. 40 Городская больница № 40'), (61539, 'https://ror.org/01vb5ks25', 'de', 1, 'https://ror.org/01vb5ks25 Martini-Klinik'), (61540, 'https://ror.org/01vb7db28', 'en', 1, 'https://ror.org/01vb7db28 Bionomics International'), (61541, 'https://ror.org/01vcw4681', 'en', 1, 'https://ror.org/01vcw4681 Guangzhou Institute of Advanced Technology 广州中国科学院先进技术研究所'), (61542, 'https://ror.org/01vfhjf72', 'en', 1, 'https://ror.org/01vfhjf72 Mount Sinai Rehabilitation Hospital'), (61543, 'https://ror.org/01vjv9396', 'en', 1, 'https://ror.org/01vjv9396 Virginia Living Museum'), (61544, 'https://ror.org/01vrgp187', 'en', 1, 'https://ror.org/01vrgp187 CODET Vision Institute'), (61545, 'https://ror.org/01vs0xq55', 'de', 1, 'https://ror.org/01vs0xq55 Universitätsklinik für Augenheilkunde'), (61546, 'https://ror.org/01vvdem88', 'en', 1, 'https://ror.org/01vvdem88 National University Heart Centre Singapore'), (61547, 'https://ror.org/01vvp4329', 'no_lang_code', 1, 'https://ror.org/01vvp4329 Smart Salt (United States)'), (61548, 'https://ror.org/01vw8ee97', 'en', 1, 'https://ror.org/01vw8ee97 Rhode Island Department of Elementary and Secondary Education'), (61549, 'https://ror.org/01vwxjv55', 'no_lang_code', 1, 'https://ror.org/01vwxjv55 Prevail Health Solutions (United States)'), (61550, 'https://ror.org/01vx59p26', 'no_lang_code', 1, 'https://ror.org/01vx59p26 Synapse (Greece)'), (61551, 'https://ror.org/01vy2pz67', 'en', 1, 'https://ror.org/01vy2pz67 Genesis Healthcare'), (61552, 'https://ror.org/01vzjtk91', 'en', 1, 'https://ror.org/01vzjtk91 Rocky Mountain Retina Consultants'), (61553, 'https://ror.org/01vzx5p25', 'de', 1, 'https://ror.org/01vzx5p25 Universitätsaugenklinik Magdeburg'), (61554, 'https://ror.org/01w09ak35', 'en', 1, 'https://ror.org/01w09ak35 Lehigh Valley Hospital-Pocono'), (61555, 'https://ror.org/01w1m0197', 'de', 1, 'https://ror.org/01w1m0197 Park-Klinik Weißensee'), (61556, 'https://ror.org/01w36fb33', 'it', 1, 'https://ror.org/01w36fb33 Agenzia Sanitaria e Sociale Regionale'), (61557, 'https://ror.org/01w48gk31', 'nl', 1, 'https://ror.org/01w48gk31 Lange Land Ziekenhuis'), (61558, 'https://ror.org/01w50vm31', 'no_lang_code', 1, 'https://ror.org/01w50vm31 SMART Medical Systems (Israel)'), (61559, 'https://ror.org/01w5bhe03', 'en', 1, 'https://ror.org/01w5bhe03 Cardiovascular Institute of Northwest Florida'), (61560, 'https://ror.org/01w8qz314', 'fr', 1, 'https://ror.org/01w8qz314 Association Tunisienne Contre le Cancer'), (61561, 'https://ror.org/01waq5k48', 'en', 1, 'https://ror.org/01waq5k48 Academic Alliance in Dermatology'), (61562, 'https://ror.org/01wc8t239', 'no_lang_code', 1, 'https://ror.org/01wc8t239 Curaden (Switzerland)'), (61563, 'https://ror.org/01wgg7498', 'en', 1, 'https://ror.org/01wgg7498 Atomic Heritage Foundation'), (61564, 'https://ror.org/01wjwqr61', 'nl', 1, 'https://ror.org/01wjwqr61 Innofeet, Voetencentrum Nijenhuis'), (61565, 'https://ror.org/01wpjz328', 'en', 1, 'https://ror.org/01wpjz328 The IBC Network Foundation'), (61566, 'https://ror.org/01wq36e29', 'en', 1, 'https://ror.org/01wq36e29 Kochan Institute for Healing Arts Research'), (61567, 'https://ror.org/01wqw7p30', 'en', 1, 'https://ror.org/01wqw7p30 Wuhou District People''s Hospital, Chengdu 成都市武侯区人民医院'), (61568, 'https://ror.org/01wrzk743', 'no_lang_code', 1, 'https://ror.org/01wrzk743 MTPV Power (United States)'), (61569, 'https://ror.org/01wsec828', 'en', 1, 'https://ror.org/01wsec828 Sentara Heart Hospital'), (61570, 'https://ror.org/01wvkcg78', 'en', 1, 'https://ror.org/01wvkcg78 Eli Whitney Museum'), (61571, 'https://ror.org/01wywr782', 'en', 1, 'https://ror.org/01wywr782 Institut National des Radioéléments Institute for Radioelements'), (61572, 'https://ror.org/01wzg5e03', 'no_lang_code', 1, 'https://ror.org/01wzg5e03 Topasol (United States)'), (61573, 'https://ror.org/01x1jpq68', 'no_lang_code', 1, 'https://ror.org/01x1jpq68 Dr. Niedermaier Pharma (Germany)'), (61574, 'https://ror.org/01x3y4k69', 'en', 1, 'https://ror.org/01x3y4k69 Kalamazoo Psychiatric Hospital'), (61575, 'https://ror.org/01x4thh14', 'en', 1, 'https://ror.org/01x4thh14 CR2O'), (61576, 'https://ror.org/01x55sj80', 'en', 1, 'https://ror.org/01x55sj80 Smilow Cancer Hospital Care Center'), (61577, 'https://ror.org/01x62am17', 'no_lang_code', 1, 'https://ror.org/01x62am17 Paladin Pharma (Italy)'), (61578, 'https://ror.org/01x6mgf32', 'no_lang_code', 1, 'https://ror.org/01x6mgf32 Anchor Science (United States)'), (61579, 'https://ror.org/01xazqf25', 'nl', 1, 'https://ror.org/01xazqf25 Geriant'), (61580, 'https://ror.org/01xc3wx73', 'en', 1, 'https://ror.org/01xc3wx73 Exeter Primary Care'), (61581, 'https://ror.org/01xcb3b67', 'en', 1, 'https://ror.org/01xcb3b67 American Academy of Health Behavior'), (61582, 'https://ror.org/01xepk867', 'en', 1, 'https://ror.org/01xepk867 IMMUNOe Research Center'), (61583, 'https://ror.org/01xevy941', 'pt', 1, 'https://ror.org/01xevy941 Hospital Universitário Lauro Wanderley Lauro Wanderley University Hospital'), (61584, 'https://ror.org/01xf55557', 'en', 1, 'https://ror.org/01xf55557 Altius Institute for Biomedical Sciences'), (61585, 'https://ror.org/01xfewa62', 'de', 1, 'https://ror.org/01xfewa62 Arbeitsgemeinschaft Dermatologische Onkologie'), (61586, 'https://ror.org/01xhd2w58', 'no_lang_code', 1, 'https://ror.org/01xhd2w58 Prescient Surgical (United States)'), (61587, 'https://ror.org/01xhgcw67', 'no_lang_code', 1, 'https://ror.org/01xhgcw67 De Friesland Zorgverzekeraar (Netherlands)'), (61588, 'https://ror.org/01xm48j65', 'en', 1, 'https://ror.org/01xm48j65 Shaanxi Provincial Seismological Bureau 陕西省地震局'), (61589, 'https://ror.org/01xmgrn68', 'es', 1, 'https://ror.org/01xmgrn68 Sociedad Española de Cirugía Ortopédica y Traumatología'), (61590, 'https://ror.org/01xpn7z95', 'en', 1, 'https://ror.org/01xpn7z95 Sustainable Horizons Institute'), (61591, 'https://ror.org/01xs14k38', 'no_lang_code', 1, 'https://ror.org/01xs14k38 Medacta (United States)'), (61592, 'https://ror.org/01xsmp527', 'en', 1, 'https://ror.org/01xsmp527 New York Glaucoma Research Institute'), (61593, 'https://ror.org/01xst2e75', 'es', 1, 'https://ror.org/01xst2e75 Hospital General Mateu Orfila'), (61594, 'https://ror.org/01xv43c68', 'en', 1, 'https://ror.org/01xv43c68 Lindner Center of HOPE'), (61595, 'https://ror.org/01xyh8d66', 'en', 1, 'https://ror.org/01xyh8d66 Magrabi Hospitals and Centers'), (61596, 'https://ror.org/01xz2wh36', 'en', 1, 'https://ror.org/01xz2wh36 The Eye Care Institute'), (61597, 'https://ror.org/01xzv1t06', 'en', 1, 'https://ror.org/01xzv1t06 Somali Association of Arizona'), (61598, 'https://ror.org/01y0zfy93', 'no_lang_code', 1, 'https://ror.org/01y0zfy93 Medtronic (Singapore)'), (61599, 'https://ror.org/01y1na882', 'en', 1, 'https://ror.org/01y1na882 Finnish Association of People with Physical Disabilities'), (61600, 'https://ror.org/01y1pf628', 'en', 1, 'https://ror.org/01y1pf628 Gwinnett Medical Center'), (61601, 'https://ror.org/01y2g0378', 'fr', 1, 'https://ror.org/01y2g0378 Association pour la Promotion du Sport chez l''Enfant Malade'), (61602, 'https://ror.org/01y36r136', 'no_lang_code', 1, 'https://ror.org/01y36r136 Orthica (Netherlands)'), (61603, 'https://ror.org/01y84kk86', 'no_lang_code', 1, 'https://ror.org/01y84kk86 Wepa Apothekenbedarf (Germany)'), (61604, 'https://ror.org/01y9dza79', 'en', 1, 'https://ror.org/01y9dza79 Florida Academic Dermatology Center'), (61605, 'https://ror.org/01ya56e34', 'fr', 1, 'https://ror.org/01ya56e34 Clinique du Millénaire'), (61606, 'https://ror.org/01yac3k46', 'no_lang_code', 1, 'https://ror.org/01yac3k46 Engelhard Arzneimittel (Germany)'), (61607, 'https://ror.org/01ydthg97', 'en', 1, 'https://ror.org/01ydthg97 Nijmegen Institute for Scientist Practitioners in Addiction'), (61608, 'https://ror.org/01yegct87', 'en', 1, 'https://ror.org/01yegct87 Commonwealth Cancer Center'), (61609, 'https://ror.org/01yf7sx51', 'sk', 1, 'https://ror.org/01yf7sx51 Východoslovenský Onkologický Ústav'), (61610, 'https://ror.org/01yfz8598', 'en', 1, 'https://ror.org/01yfz8598 National Center of Security and Protection'), (61611, 'https://ror.org/01yh14f85', 'no_lang_code', 1, 'https://ror.org/01yh14f85 OtoNexus Medical Technologies (United States)'), (61612, 'https://ror.org/01yj5pp70', 'no_lang_code', 1, 'https://ror.org/01yj5pp70 BBC Worldwide (United States)'), (61613, 'https://ror.org/01yjcwm15', 'de', 1, 'https://ror.org/01yjcwm15 Schweizerische Gesellschaft für Cystische Fibrose Società Svizzera per la fFbrosi Cisitica Société Suisse pour la Mucoviscidose'), (61614, 'https://ror.org/01yjps198', 'en', 1, 'https://ror.org/01yjps198 Long Now Foundation'), (61615, 'https://ror.org/01yk61783', 'en', 1, 'https://ror.org/01yk61783 Lake Norman Oncology'), (61616, 'https://ror.org/01ymyg650', 'en', 1, 'https://ror.org/01ymyg650 Japan Society of Laparoscopic Colorectal Surgery 第6回腹腔鏡下大腸切除研究会'), (61617, 'https://ror.org/01yn20z87', 'en', 1, 'https://ror.org/01yn20z87 South African Society of Anaesthesiologists'), (61618, 'https://ror.org/01ynege53', 'no_lang_code', 1, 'https://ror.org/01ynege53 Rehaptix'), (61619, 'https://ror.org/01yqwf941', 'en', 1, 'https://ror.org/01yqwf941 Kalispell Regional Healthcare'), (61620, 'https://ror.org/01yrsvz42', 'en', 1, 'https://ror.org/01yrsvz42 Vitality Institute'), (61621, 'https://ror.org/01yt2c947', 'en', 1, 'https://ror.org/01yt2c947 The Institute for Scientific Information on Coffee'), (61622, 'https://ror.org/01ytv0571', 'en', 1, 'https://ror.org/01ytv0571 SingHealth Polyclinics'), (61623, 'https://ror.org/01yvh4c79', 'en', 1, 'https://ror.org/01yvh4c79 Hebei Yiling Hospital'), (61624, 'https://ror.org/01ywgyp97', 'no_lang_code', 1, 'https://ror.org/01ywgyp97 Independence Science (United States)'), (61625, 'https://ror.org/01yx43d58', 'en', 1, 'https://ror.org/01yx43d58 Medical Oncology Hematology Consultants'), (61626, 'https://ror.org/01yzgk702', 'en', 1, 'https://ror.org/01yzgk702 Ministry of Public Health وزارت صحت عامه'), (61627, 'https://ror.org/01z1n5c47', 'en', 1, 'https://ror.org/01z1n5c47 Raymond G. Murphy VA Medical Center'), (61628, 'https://ror.org/01z5evd58', 'en', 1, 'https://ror.org/01z5evd58 Zhengzhou City Hospital 郑州市中医院'), (61629, 'https://ror.org/01z8ch088', 'en', 1, 'https://ror.org/01z8ch088 Compliant Concept'), (61630, 'https://ror.org/01z9be204', 'en', 1, 'https://ror.org/01z9be204 ADIR Association'), (61631, 'https://ror.org/01zacdj41', 'nl', 1, 'https://ror.org/01zacdj41 Amstelland Fysiotherapie'), (61632, 'https://ror.org/01zcmzh38', 'en', 1, 'https://ror.org/01zcmzh38 Health Informatics Society of Ireland'), (61633, 'https://ror.org/01zdv2629', 'en', 1, 'https://ror.org/01zdv2629 Joliet Oncology-Hematology Associates'), (61634, 'https://ror.org/01zekf440', 'en', 1, 'https://ror.org/01zekf440 Missouri Baptist Sullivan Hospital'), (61635, 'https://ror.org/01zfzpp43', 'en', 1, 'https://ror.org/01zfzpp43 Malaysian Oil Scientists and Technologists Association'), (61636, 'https://ror.org/01zgn7x32', 'en', 1, 'https://ror.org/01zgn7x32 Ohio Sinus Institute'), (61637, 'https://ror.org/01zh1d121', 'it', 1, 'https://ror.org/01zh1d121 Ospedale Misericordia e Dolce'), (61638, 'https://ror.org/01zhtdv64', 'es', 1, 'https://ror.org/01zhtdv64 Hospital General De Zona'), (61639, 'https://ror.org/01zjb9d64', 'no_lang_code', 1, 'https://ror.org/01zjb9d64 Hiroshima Kyoritsu Hospital 広島共立病院'), (61640, 'https://ror.org/01zjzsn17', 'en', 1, 'https://ror.org/01zjzsn17 Marshfield Clinic Weston Center'), (61641, 'https://ror.org/01zmatx12', 'en', 1, 'https://ror.org/01zmatx12 Hassman Research Institute'), (61642, 'https://ror.org/01zmdh962', 'de', 1, 'https://ror.org/01zmdh962 Arbeiterwohlfahrt München'), (61643, 'https://ror.org/01zpcsk19', 'no_lang_code', 1, 'https://ror.org/01zpcsk19 SIGNUS Medizintechnik (Germany)'), (61644, 'https://ror.org/01zqbjs16', 'pt', 1, 'https://ror.org/01zqbjs16 Hospital de Messejana'), (61645, 'https://ror.org/01zqwsv76', 'it', 1, 'https://ror.org/01zqwsv76 Fondazione FADOI'), (61646, 'https://ror.org/01zra9c68', 'en', 1, 'https://ror.org/01zra9c68 9-я клиника Минска 9th City Clinical Hospital'), (61647, 'https://ror.org/01zrbp537', 'no_lang_code', 1, 'https://ror.org/01zrbp537 Chiesi (Germany)'), (61648, 'https://ror.org/01zt8rh15', 'en', 1, 'https://ror.org/01zt8rh15 Foundation of New York State Nurses'), (61649, 'https://ror.org/01ztfkn28', 'no_lang_code', 1, 'https://ror.org/01ztfkn28 Trautwein (Germany)'), (61650, 'https://ror.org/01ztgpx39', 'en', 1, 'https://ror.org/01ztgpx39 Chongqing Institute of Genetics and Reproduction'), (61651, 'https://ror.org/01zv88x17', 'no_lang_code', 1, 'https://ror.org/01zv88x17 Juno Therapeutics (Germany)'), (61652, 'https://ror.org/01zwbyz86', 'en', 1, 'https://ror.org/01zwbyz86 Pharmacology Research Institute'), (61653, 'https://ror.org/01zwdgr60', 'fr', 1, 'https://ror.org/01zwdgr60 Groupe Hospitalier Diaconesses Croix Saint-Simon'), (61654, 'https://ror.org/01zyk3031', 'en', 1, 'https://ror.org/01zyk3031 Sydney Hernia Specialists Clinic'), (61655, 'https://ror.org/01zynd687', 'en', 1, 'https://ror.org/01zynd687 Wind Hollow Foundation'), (61656, 'https://ror.org/01zz40j33', 'en', 1, 'https://ror.org/01zz40j33 Nutrition Center of the Philippines'), (61657, 'https://ror.org/01zzpzt34', 'en', 1, 'https://ror.org/01zzpzt34 RNA Society'), (61658, 'https://ror.org/0201xt342', 'en', 1, 'https://ror.org/0201xt342 Institute of Cosmetic and Laser Surgery'), (61659, 'https://ror.org/020254c55', 'en', 1, 'https://ror.org/020254c55 Caucaseco Scientific Research Center Centro de Investigación Científica Caucaseco'), (61660, 'https://ror.org/0203bxz75', 'no_lang_code', 1, 'https://ror.org/0203bxz75 Cerbomed (Germany)'), (61661, 'https://ror.org/020448x84', 'en', 1, 'https://ror.org/020448x84 Riverside University Health System - Medical Center'), (61662, 'https://ror.org/0204aj955', 'nl', 1, 'https://ror.org/0204aj955 Gouverneur Kremers Centrum'), (61663, 'https://ror.org/0204j6811', 'en', 1, 'https://ror.org/0204j6811 Specialized Hospital for Active Treatment of Children''s Diseases Специализирана болница за активно лечение по детски болести'), (61664, 'https://ror.org/0205c6c55', 'en', 1, 'https://ror.org/0205c6c55 Pine Street Foundation'), (61665, 'https://ror.org/020616e42', 'en', 1, 'https://ror.org/020616e42 Senologic Hellenic Society Ελληνική Εταιρεία Μαστολογία'), (61666, 'https://ror.org/0206dgg42', 'pt', 1, 'https://ror.org/0206dgg42 Association of Brazilian Intensive Medicine Associação de Medicina Intensiva Brasileira'), (61667, 'https://ror.org/02076gf69', 'en', 1, 'https://ror.org/02076gf69 Psychiatry Region Zealand Psykiatrien Region Sjælland'), (61668, 'https://ror.org/02084tv33', 'en', 1, 'https://ror.org/02084tv33 Herrin Hospital'), (61669, 'https://ror.org/0208m9g76', 'en', 1, 'https://ror.org/0208m9g76 The Hubbard Foundation'), (61670, 'https://ror.org/0208vms90', 'de', 1, 'https://ror.org/0208vms90 Landesbank Baden-Württemberg'), (61671, 'https://ror.org/02097xt92', 'en', 1, 'https://ror.org/02097xt92 Iranian Orthopedic Association انجمن جراحان ارتوپدی ایران'), (61672, 'https://ror.org/0209kwd29', 'en', 1, 'https://ror.org/0209kwd29 Western Michigan Society of Health Systems Pharmacists'), (61673, 'https://ror.org/020ay6p95', 'en', 1, 'https://ror.org/020ay6p95 Z Urology'), (61674, 'https://ror.org/020cs7q41', 'en', 1, 'https://ror.org/020cs7q41 Clearview Cancer Institute'), (61675, 'https://ror.org/020f8h126', 'de', 1, 'https://ror.org/020f8h126 Poliklinik für Zahnärztliche Prothetik und Werkstoffkunde'), (61676, 'https://ror.org/020j24g35', 'no_lang_code', 1, 'https://ror.org/020j24g35 Allergan (Netherlands)'), (61677, 'https://ror.org/020kqbk80', 'en', 1, 'https://ror.org/020kqbk80 Cameroon Nutritional Science Society'), (61678, 'https://ror.org/020mhtx24', 'en', 1, 'https://ror.org/020mhtx24 Southeast Career Technical Academy'), (61679, 'https://ror.org/020nhna33', 'en', 1, 'https://ror.org/020nhna33 American College of Osteopathic Obstetricians & Gynecologists'), (61680, 'https://ror.org/020rmwt56', 'en', 1, 'https://ror.org/020rmwt56 Institute for Global Ethics'), (61681, 'https://ror.org/020sarg10', 'nl', 1, 'https://ror.org/020sarg10 Stichting Stimuleringsfonds Rouw'), (61682, 'https://ror.org/020sst346', 'en', 1, 'https://ror.org/020sst346 Ludwig Boltzmann Institute of Electrical Stimulation and Physical Rehabilitation'), (61683, 'https://ror.org/020szg916', 'en', 1, 'https://ror.org/020szg916 Newland Medical Associates'), (61684, 'https://ror.org/020vv3w23', 'fi', 1, 'https://ror.org/020vv3w23 Invalidisäätiö'), (61685, 'https://ror.org/020vypr53', 'no', 1, 'https://ror.org/020vypr53 Kristiansund Sykehus'), (61686, 'https://ror.org/020wh9z45', 'no', 1, 'https://ror.org/020wh9z45 Evjeklinikken'), (61687, 'https://ror.org/020whm440', 'en', 1, 'https://ror.org/020whm440 St. Mary Mercy Livonia'), (61688, 'https://ror.org/020wka979', 'en', 1, 'https://ror.org/020wka979 CHRISTUS Highland Medical Center'), (61689, 'https://ror.org/020yhzm14', 'en', 1, 'https://ror.org/020yhzm14 Kildonan UnitingCare'), (61690, 'https://ror.org/020yxp837', 'de', 1, 'https://ror.org/020yxp837 Berliner Krebsgesellschaft'), (61691, 'https://ror.org/0211h1012', 'en', 1, 'https://ror.org/0211h1012 GC Media'), (61692, 'https://ror.org/0212kmf07', 'en', 1, 'https://ror.org/0212kmf07 Saving Faces'), (61693, 'https://ror.org/0212s7037', 'en', 1, 'https://ror.org/0212s7037 The Asper Foundation'), (61694, 'https://ror.org/0213d4b59', 'de', 1, 'https://ror.org/0213d4b59 Stiftung Institut für Herzinfarktforschung'), (61695, 'https://ror.org/0214xre54', 'en', 1, 'https://ror.org/0214xre54 Guelph Wellington Seniors Association'), (61696, 'https://ror.org/0215tq732', 'no_lang_code', 1, 'https://ror.org/0215tq732 MEI Asset Protection (United States)'), (61697, 'https://ror.org/0215ym372', 'no_lang_code', 1, 'https://ror.org/0215ym372 Sense Textile (Netherlands)'), (61698, 'https://ror.org/02160gj87', 'en', 1, 'https://ror.org/02160gj87 Shaanxi Blood Center 陕西省血液中心'), (61699, 'https://ror.org/02162rn53', 'en', 1, 'https://ror.org/02162rn53 Koninklijke Nederlandse Organisatie van Verloskundigen Royal Dutch Organization of Midwives'), (61700, 'https://ror.org/0216ch235', 'en', 1, 'https://ror.org/0216ch235 Coyle Institute'), (61701, 'https://ror.org/0217f6q14', 'de', 1, 'https://ror.org/0217f6q14 D•A•CH-Gesellschaft'), (61702, 'https://ror.org/021as9859', 'en', 1, 'https://ror.org/021as9859 City Children''s Hospital No. 22 Детская больница №22'), (61703, 'https://ror.org/021ayq160', 'no_lang_code', 1, 'https://ror.org/021ayq160 Arytha Biosciences (United States)'), (61704, 'https://ror.org/021ayzg23', 'no_lang_code', 1, 'https://ror.org/021ayzg23 Institut Mérieux (United States)'), (61705, 'https://ror.org/021b7gr78', 'en', 1, 'https://ror.org/021b7gr78 The Africa-America Institute'), (61706, 'https://ror.org/021bvd011', 'no_lang_code', 1, 'https://ror.org/021bvd011 Boston Scientific (Netherlands)'), (61707, 'https://ror.org/021crbk07', 'sv', 1, 'https://ror.org/021crbk07 Riddargatan 1'), (61708, 'https://ror.org/021d7pd31', 'en', 1, 'https://ror.org/021d7pd31 Primary Care Collaborative Clinical Trials Group'), (61709, 'https://ror.org/021e99k21', 'en', 1, 'https://ror.org/021e99k21 Memorial Sisli Hospital'), (61710, 'https://ror.org/021fhy603', 'en', 1, 'https://ror.org/021fhy603 Association of Cancer Online Resources'), (61711, 'https://ror.org/021g17t44', 'en', 1, 'https://ror.org/021g17t44 College of Physicians and Surgeons of Ontario'), (61712, 'https://ror.org/021h7aq11', 'en', 1, 'https://ror.org/021h7aq11 Hand and Upper Limb Clinic'), (61713, 'https://ror.org/021hkh665', 'no_lang_code', 1, 'https://ror.org/021hkh665 Polyganics (Netherlands)'), (61714, 'https://ror.org/021m7am85', 'no_lang_code', 1, 'https://ror.org/021m7am85 BioMat Sciences (United States)'), (61715, 'https://ror.org/021nbzt76', 'fr', 1, 'https://ror.org/021nbzt76 Association Française de Lutte Anti-Rhumastismale'), (61716, 'https://ror.org/021px0753', 'en', 1, 'https://ror.org/021px0753 Moy, Fincher, Chipps Medical Group'), (61717, 'https://ror.org/021qj7h23', 'en', 1, 'https://ror.org/021qj7h23 Hypersomnia Foundation'), (61718, 'https://ror.org/021tj2a07', 'en', 1, 'https://ror.org/021tj2a07 National Urea Cycle Disorders Foundation'), (61719, 'https://ror.org/021x2ed48', 'en', 1, 'https://ror.org/021x2ed48 Sports Concussion Institute'), (61720, 'https://ror.org/021z26c54', 'en', 1, 'https://ror.org/021z26c54 The Morton Center'), (61721, 'https://ror.org/021z2yz21', 'en', 1, 'https://ror.org/021z2yz21 Russian Society of Clinical Oncology Российское общество клинической онкологии'), (61722, 'https://ror.org/02201aj62', 'en', 1, 'https://ror.org/02201aj62 National Research Institute'), (61723, 'https://ror.org/02207mt46', 'en', 1, 'https://ror.org/02207mt46 Pelvic & Sexual Health Institute'), (61724, 'https://ror.org/0221nva21', 'en', 1, 'https://ror.org/0221nva21 Footscray Hospital'), (61725, 'https://ror.org/0223m1p35', 'en', 1, 'https://ror.org/0223m1p35 Shade Foundation'), (61726, 'https://ror.org/02258bk69', 'nl', 1, 'https://ror.org/02258bk69 Kliniek ViaSana'), (61727, 'https://ror.org/0229q5b07', 'en', 1, 'https://ror.org/0229q5b07 Medicon Valley Alliance'), (61728, 'https://ror.org/0229xaa13', 'en', 1, 'https://ror.org/0229xaa13 Yeouido St. Mary''s Hospital 가톨릭대학교성모병원'), (61729, 'https://ror.org/022ases92', 'en', 1, 'https://ror.org/022ases92 Coram Clinical Trials'), (61730, 'https://ror.org/022bpxw56', 'en', 1, 'https://ror.org/022bpxw56 SOUSEIKAI Global Clinical Research Center'), (61731, 'https://ror.org/022bv4r09', 'en', 1, 'https://ror.org/022bv4r09 African Institute for Health and Development'), (61732, 'https://ror.org/022dwdg85', 'de', 1, 'https://ror.org/022dwdg85 Deutsche Gesellschaft für Angiologie Gesellschaft für Gefäßmedizin e.V.'), (61733, 'https://ror.org/022ebn524', 'no_lang_code', 1, 'https://ror.org/022ebn524 Hennepin County'), (61734, 'https://ror.org/022fkpc23', 'no_lang_code', 1, 'https://ror.org/022fkpc23 Dr. Reddy''s Laboratories (Germany)'), (61735, 'https://ror.org/022hz3j90', 'de', 1, 'https://ror.org/022hz3j90 Krankenhaus Waldfriede'), (61736, 'https://ror.org/022j22r70', 'pt', 1, 'https://ror.org/022j22r70 CUF Porto Hospital'), (61737, 'https://ror.org/022k58k47', 'en', 1, 'https://ror.org/022k58k47 Anchorage and Valley Radiation Therapy Centers'), (61738, 'https://ror.org/022ktbf55', 'en', 1, 'https://ror.org/022ktbf55 Massage Therapists Association of British Columbia'), (61739, 'https://ror.org/022n0hr86', 'no_lang_code', 1, 'https://ror.org/022n0hr86 Synimmune (Germany)'), (61740, 'https://ror.org/022nxqs47', 'nl', 1, 'https://ror.org/022nxqs47 Dialyse Centrum Groningen'), (61741, 'https://ror.org/022p9j404', 'nl', 1, 'https://ror.org/022p9j404 Nationale Intensive Care Evaluatie Stichting'), (61742, 'https://ror.org/022r80268', 'no_lang_code', 1, 'https://ror.org/022r80268 Intuitive Surgical (Switzerland)'), (61743, 'https://ror.org/022rrds39', 'de', 1, 'https://ror.org/022rrds39 Hoffnungsbaum'), (61744, 'https://ror.org/022txv590', 'en', 1, 'https://ror.org/022txv590 The Society for the Relief of Disabled Children 香港弱能兒童護助會'), (61745, 'https://ror.org/022vsje77', 'pt', 1, 'https://ror.org/022vsje77 Hospital IPO, Instituto Paranaense de Otorrinolaringologia'), (61746, 'https://ror.org/022vwef69', 'en', 1, 'https://ror.org/022vwef69 G.A. Carmichael Family Health Center'), (61747, 'https://ror.org/022w0b336', 'no_lang_code', 1, 'https://ror.org/022w0b336 ALK-Abelló (Netherlands)'), (61748, 'https://ror.org/022wfr829', 'en', 1, 'https://ror.org/022wfr829 Kaiser Permanente Rock Creek Medical Offices'), (61749, 'https://ror.org/022yxs707', 'en', 1, 'https://ror.org/022yxs707 Intermutualist Agency'), (61750, 'https://ror.org/02309hn07', 'es', 1, 'https://ror.org/02309hn07 Via Libre'), (61751, 'https://ror.org/0230gcj41', 'nl', 1, 'https://ror.org/0230gcj41 Phelps Stichting voor Spastici'), (61752, 'https://ror.org/0230sdn30', 'no_lang_code', 1, 'https://ror.org/0230sdn30 Hoya Surgical Optics (Germany)'), (61753, 'https://ror.org/02349xy14', 'en', 1, 'https://ror.org/02349xy14 Korean Glaucoma Society 한국녹내장학회'), (61754, 'https://ror.org/0239ann44', 'en', 1, 'https://ror.org/0239ann44 Goulburn Valley Health'), (61755, 'https://ror.org/023avht41', 'de', 1, 'https://ror.org/023avht41 Deutsche Gesellschaft für Hämatologie und Medizinische Onkologie'), (61756, 'https://ror.org/023erdr66', 'en', 1, 'https://ror.org/023erdr66 Society of Musculoskeletal Medicine'), (61757, 'https://ror.org/023grzj16', 'en', 1, 'https://ror.org/023grzj16 Karachi Institute of Heart Diseases'), (61758, 'https://ror.org/023gzq092', 'en', 1, 'https://ror.org/023gzq092 José R. Reyes Memorial Medical Center'), (61759, 'https://ror.org/023h0re83', 'en', 1, 'https://ror.org/023h0re83 Hawaii Cancer Care'), (61760, 'https://ror.org/023j0b748', 'es', 1, 'https://ror.org/023j0b748 Clínica Diagonal'), (61761, 'https://ror.org/023j1w312', 'sv', 1, 'https://ror.org/023j1w312 Skandinaviska Kiropraktorhögskolan'); INSERT INTO `rors` VALUES (61762, 'https://ror.org/023k9vr64', 'no_lang_code', 1, 'https://ror.org/023k9vr64 PROGE FARM (Italy)'), (61763, 'https://ror.org/023kfdf75', 'en', 1, 'https://ror.org/023kfdf75 Association for Chemoreception Sciences'), (61764, 'https://ror.org/023mmvm94', 'no_lang_code', 1, 'https://ror.org/023mmvm94 Occipital (United States)'), (61765, 'https://ror.org/023p1v236', 'en', 1, 'https://ror.org/023p1v236 Australian Childhood Foundation'), (61766, 'https://ror.org/023p7x818', 'en', 1, 'https://ror.org/023p7x818 Advocate Center for Pediatric Research'), (61767, 'https://ror.org/023pbyr02', 'no_lang_code', 1, 'https://ror.org/023pbyr02 SteadySense (Austria)'), (61768, 'https://ror.org/023pcfd52', 'en', 1, 'https://ror.org/023pcfd52 Foundation for Cardiac Surgery'), (61769, 'https://ror.org/023swa857', 'en', 1, 'https://ror.org/023swa857 Sarasota Retina Institute'), (61770, 'https://ror.org/023sxys58', 'no_lang_code', 1, 'https://ror.org/023sxys58 Purdue Pharma (Canada)'), (61771, 'https://ror.org/023t01j49', 'en', 1, 'https://ror.org/023t01j49 Bariatric Medical Institute of Texas'), (61772, 'https://ror.org/023vxq234', 'en', 1, 'https://ror.org/023vxq234 Association for the Advancement of Medical Instrumentation'), (61773, 'https://ror.org/023wnz719', 'fr', 1, 'https://ror.org/023wnz719 Centre Hospitalier de Beauvais'), (61774, 'https://ror.org/023xep540', 'en', 1, 'https://ror.org/023xep540 Qinghai Red Cross Hospital'), (61775, 'https://ror.org/023ytjs26', 'no_lang_code', 1, 'https://ror.org/023ytjs26 Hasomed (Germany)'), (61776, 'https://ror.org/023z23g03', 'en', 1, 'https://ror.org/023z23g03 Galiz Research'), (61777, 'https://ror.org/02437h829', 'sr', 1, 'https://ror.org/02437h829 Zavod ''''Konzilijum'''''), (61778, 'https://ror.org/0244fmj21', 'en', 1, 'https://ror.org/0244fmj21 ASM International'), (61779, 'https://ror.org/0245hme54', 'en', 1, 'https://ror.org/0245hme54 Himalayan Rescue Association'), (61780, 'https://ror.org/024603t93', 'en', 1, 'https://ror.org/024603t93 Interventional Orthopedics Foundation'), (61781, 'https://ror.org/02465hh03', 'en', 1, 'https://ror.org/02465hh03 Ministry of Health, Community Development, Gender, Elderly and Children'), (61782, 'https://ror.org/0248h4s70', 'de', 1, 'https://ror.org/0248h4s70 Universitäts Hautklinik Kiel'), (61783, 'https://ror.org/02490t938', 'en', 1, 'https://ror.org/02490t938 Sichuan Entry-Exit Inspection and Quarantine Bureau 四川出入境检验检疫局检验检疫技术中心'), (61784, 'https://ror.org/024asvc11', 'en', 1, 'https://ror.org/024asvc11 Wisconsin Parkinson Association'), (61785, 'https://ror.org/024bhvy46', 'no_lang_code', 1, 'https://ror.org/024bhvy46 Population Services International'), (61786, 'https://ror.org/024bsq388', 'en', 1, 'https://ror.org/024bsq388 Finnish Mass Spectrometry Society Suomen Massaspektrometrian Seura'), (61787, 'https://ror.org/024bw4368', 'de', 1, 'https://ror.org/024bw4368 Bund gegen Alkohol und Drogen im Straßenverkehr'), (61788, 'https://ror.org/024fpfc76', 'no_lang_code', 1, 'https://ror.org/024fpfc76 CSL (Japan)'), (61789, 'https://ror.org/024gbbh50', 'en', 1, 'https://ror.org/024gbbh50 Syosset Hospital'), (61790, 'https://ror.org/024gr4122', 'nl', 1, 'https://ror.org/024gr4122 Vrienden WKZ'), (61791, 'https://ror.org/024hscy29', 'fr', 1, 'https://ror.org/024hscy29 Centre Hospitalier de Bigorre'), (61792, 'https://ror.org/024hyfk31', 'en', 1, 'https://ror.org/024hyfk31 Polish Institute of Arts and Sciences of America'), (61793, 'https://ror.org/024jrfp78', 'en', 1, 'https://ror.org/024jrfp78 South Australian Sardine Industry Association'), (61794, 'https://ror.org/024r17c76', 'en', 1, 'https://ror.org/024r17c76 17-я городская детская клиническая поликлиника 17th City Children''s Clinical Polyclinic'), (61795, 'https://ror.org/024r4w520', 'en', 1, 'https://ror.org/024r4w520 Island Press'), (61796, 'https://ror.org/024rjga53', 'en', 1, 'https://ror.org/024rjga53 Monroe 2-Orleans BOCES'), (61797, 'https://ror.org/024s37521', 'en', 1, 'https://ror.org/024s37521 Scientific Research Institute of First Aid to them. N.V. Sklifosovsky Научно-исследовательский институт чрезвычайных ситуаций. Н. В. Склифосовский'), (61798, 'https://ror.org/024w4dn76', 'no_lang_code', 1, 'https://ror.org/024w4dn76 GERCOR (France)'), (61799, 'https://ror.org/024wpqc10', 'en', 1, 'https://ror.org/024wpqc10 Alaska Native Science Commission'), (61800, 'https://ror.org/024ws4n60', 'en', 1, 'https://ror.org/024ws4n60 McFarland Clinic - Boone'), (61801, 'https://ror.org/025009514', 'en', 1, 'https://ror.org/025009514 Coastal Orthopedics'), (61802, 'https://ror.org/0250yzd02', 'en', 1, 'https://ror.org/0250yzd02 Beacon Hill Academy'), (61803, 'https://ror.org/025222y07', 'en', 1, 'https://ror.org/025222y07 Council of the Inspectors General on Integrity and Efficiency'), (61804, 'https://ror.org/0252twa85', 'en', 1, 'https://ror.org/0252twa85 Virtua Memorial Hospital'), (61805, 'https://ror.org/025c18611', 'en', 1, 'https://ror.org/025c18611 Wildlands Network'), (61806, 'https://ror.org/025n23k97', 'en', 1, 'https://ror.org/025n23k97 Planet Wheeler Foundation'), (61807, 'https://ror.org/025nas141', 'es', 1, 'https://ror.org/025nas141 CONAPAC Civil Association for Conservation of the Peruvian Amazon Environment'), (61808, 'https://ror.org/025pp2a41', 'en', 1, 'https://ror.org/025pp2a41 Bacharach Institute for Rehabilitation'), (61809, 'https://ror.org/025qj9586', 'en', 1, 'https://ror.org/025qj9586 Semmes Murphey Foundation'), (61810, 'https://ror.org/025ryw752', 'en', 1, 'https://ror.org/025ryw752 Evergreen General Hospital'), (61811, 'https://ror.org/025scfy30', 'no_lang_code', 1, 'https://ror.org/025scfy30 VivaTech (United States)'), (61812, 'https://ror.org/025t8a623', 'no_lang_code', 1, 'https://ror.org/025t8a623 StemGenex (United States)'), (61813, 'https://ror.org/025w0ga63', 'en', 1, 'https://ror.org/025w0ga63 Spine Institute on the Emerald Coast'), (61814, 'https://ror.org/025wz7r34', 'en', 1, 'https://ror.org/025wz7r34 Gene Therapy Research Institution 株式会社遺伝子研究所'), (61815, 'https://ror.org/025y6ny17', 'en', 1, 'https://ror.org/025y6ny17 Institute for Cardiovascular Diseases of Vojvodina'), (61816, 'https://ror.org/025yckn40', 'en', 1, 'https://ror.org/025yckn40 KSK Medical'), (61817, 'https://ror.org/025z7kb61', 'de', 1, 'https://ror.org/025z7kb61 Willi Drache Stiftung'), (61818, 'https://ror.org/025zg9b48', 'en', 1, 'https://ror.org/025zg9b48 Asset Stem Education'), (61819, 'https://ror.org/02607jq78', 'en', 1, 'https://ror.org/02607jq78 Society of Military Orthopaedic Surgeons'), (61820, 'https://ror.org/0260mkc43', 'en', 1, 'https://ror.org/0260mkc43 Retina Research Institute of Texas'), (61821, 'https://ror.org/0260x4r86', 'en', 1, 'https://ror.org/0260x4r86 Mercy Clinic Cancer and Hematology'), (61822, 'https://ror.org/0261c1d14', 'no_lang_code', 1, 'https://ror.org/0261c1d14 Okhotsk Kai Hospital オホーツク海病院'), (61823, 'https://ror.org/0261z1079', 'en', 1, 'https://ror.org/0261z1079 Joint Educational Facilities'), (61824, 'https://ror.org/02627jy68', 'no_lang_code', 1, 'https://ror.org/02627jy68 Amriton (United States)'), (61825, 'https://ror.org/0264gwr07', 'no_lang_code', 1, 'https://ror.org/0264gwr07 Novel (Germany)'), (61826, 'https://ror.org/0264mj391', 'en', 1, 'https://ror.org/0264mj391 Grace Hudson Museum and Sun House'), (61827, 'https://ror.org/0266fnb18', 'no_lang_code', 1, 'https://ror.org/0266fnb18 BioTeSys (Germany)'), (61828, 'https://ror.org/0267er755', 'fr', 1, 'https://ror.org/0267er755 Les Hôpitaux de Chartres'), (61829, 'https://ror.org/0267w9f76', 'en', 1, 'https://ror.org/0267w9f76 Rural Training Initiatives'), (61830, 'https://ror.org/02687k192', 'en', 1, 'https://ror.org/02687k192 Barbara Lee Family Foundation'), (61831, 'https://ror.org/0269gkq77', 'en', 1, 'https://ror.org/0269gkq77 Perot Museum of Nature and Science'), (61832, 'https://ror.org/0269vww35', 'fr', 1, 'https://ror.org/0269vww35 Association Nationale des Hépato-Gastroentérologues des Hôpitaux Généraux de France'), (61833, 'https://ror.org/026a9y278', 'en', 1, 'https://ror.org/026a9y278 Guizhou Forestry Science Research Institute 贵州省林业科学研究院'), (61834, 'https://ror.org/026b8fb58', 'en', 1, 'https://ror.org/026b8fb58 Carolinas Pain Institute'), (61835, 'https://ror.org/026c8da16', 'en', 1, 'https://ror.org/026c8da16 Gateway Aesthetic Institute and Laser Center'), (61836, 'https://ror.org/026d46e20', 'en', 1, 'https://ror.org/026d46e20 Chartered Institute of Environmental Health'), (61837, 'https://ror.org/026envs24', 'en', 1, 'https://ror.org/026envs24 Paradigm Foundation'), (61838, 'https://ror.org/026g05v14', 'fr', 1, 'https://ror.org/026g05v14 Conseil Interuniversitaire de la Communauté Française de Belgique'), (61839, 'https://ror.org/026g21e16', 'en', 1, 'https://ror.org/026g21e16 Center for Atlantic Oral Surgery'), (61840, 'https://ror.org/026jf4w16', 'en', 1, 'https://ror.org/026jf4w16 Hessian Ministry for Social Affairs and Integration Hessisches Ministerium für Soziales und Integration'), (61841, 'https://ror.org/026mkby59', 'en', 1, 'https://ror.org/026mkby59 Microclinic International'), (61842, 'https://ror.org/026mq3948', 'en', 1, 'https://ror.org/026mq3948 Scandinavian College of Neuropsychopharmacology'), (61843, 'https://ror.org/026p92b89', 'no_lang_code', 1, 'https://ror.org/026p92b89 KA Medical (United States)'), (61844, 'https://ror.org/026px0m21', 'en', 1, 'https://ror.org/026px0m21 Spencer Gulf King Prawns'), (61845, 'https://ror.org/026qrcc48', 'en', 1, 'https://ror.org/026qrcc48 Gujarat Kidney Foundation'), (61846, 'https://ror.org/026r68s65', 'en', 1, 'https://ror.org/026r68s65 International Thyroid Eye Disease Society'), (61847, 'https://ror.org/026rvyt77', 'de', 1, 'https://ror.org/026rvyt77 Klinik Bavaria'), (61848, 'https://ror.org/026v7sm97', 'en', 1, 'https://ror.org/026v7sm97 Eidos Institute'), (61849, 'https://ror.org/026vbm280', 'no_lang_code', 1, 'https://ror.org/026vbm280 Theraclone Sciences (United States)'), (61850, 'https://ror.org/026xgbm91', 'en', 1, 'https://ror.org/026xgbm91 Viewpoint Vision'), (61851, 'https://ror.org/026z0sj95', 'en', 1, 'https://ror.org/026z0sj95 California Center for Sleep Disorders'), (61852, 'https://ror.org/0270p7k56', 'no_lang_code', 1, 'https://ror.org/0270p7k56 Shin Nippon Biomedical Laboratories (United States)'), (61853, 'https://ror.org/0270xn642', 'no_lang_code', 1, 'https://ror.org/0270xn642 Bio-Images Drug Delivery (United Kingdom)'), (61854, 'https://ror.org/0270ypx06', 'en', 1, 'https://ror.org/0270ypx06 Schoodic Institute'), (61855, 'https://ror.org/02722xq19', 'de', 1, 'https://ror.org/02722xq19 Klinik Niederrhein'), (61856, 'https://ror.org/0276cxx52', 'en', 1, 'https://ror.org/0276cxx52 Prostate Cancer Clinical Trials Consortium'), (61857, 'https://ror.org/0278r4c85', 'en', 1, 'https://ror.org/0278r4c85 First Affiliated Hospital of Xinxiang Medical University'), (61858, 'https://ror.org/0278syk25', 'en', 1, 'https://ror.org/0278syk25 Canadian Foundation for Women’s Health'), (61859, 'https://ror.org/0279am519', 'no_lang_code', 1, 'https://ror.org/0279am519 KSL Consulting (Denmark)'), (61860, 'https://ror.org/027gkye86', 'fr', 1, 'https://ror.org/027gkye86 Geneva home care institution Institution Genevoise de Maintien à Domicile'), (61861, 'https://ror.org/027h0s442', 'en', 1, 'https://ror.org/027h0s442 Brazosport Eye Institute'), (61862, 'https://ror.org/027jqx654', 'en', 1, 'https://ror.org/027jqx654 Institute for Human Reproduction'), (61863, 'https://ror.org/027mnhk47', 'en', 1, 'https://ror.org/027mnhk47 Korea National Enterprise for Clinical Trials 한국임상시험산업본부'), (61864, 'https://ror.org/027nwsc63', 'en', 1, 'https://ror.org/027nwsc63 Medical Genetics Center Medizinisch Genetisches Zentrum'), (61865, 'https://ror.org/027se6721', 'en', 1, 'https://ror.org/027se6721 Pacific Centre for Reproductive Medicine'), (61866, 'https://ror.org/027tkf265', 'en', 1, 'https://ror.org/027tkf265 Island Hospital'), (61867, 'https://ror.org/027vp5j60', 'en', 1, 'https://ror.org/027vp5j60 Huntsville Madison County Chamber'), (61868, 'https://ror.org/027w0yp05', 'en', 1, 'https://ror.org/027w0yp05 William C. Tallent Outpatient Clinic'), (61869, 'https://ror.org/027yanw18', 'no_lang_code', 1, 'https://ror.org/027yanw18 CMIC Group (Japan)'), (61870, 'https://ror.org/027ybey37', 'en', 1, 'https://ror.org/027ybey37 Guangdong Institute of Biological Products and Drugs'), (61871, 'https://ror.org/028248q44', 'nl', 1, 'https://ror.org/028248q44 Nederlandse Vereniging van Podotherapeuten'), (61872, 'https://ror.org/02827mj70', 'no_lang_code', 1, 'https://ror.org/02827mj70 Regenerative Medical Solutions (United States)'), (61873, 'https://ror.org/0286p2f78', 'en', 1, 'https://ror.org/0286p2f78 NZ Rock Lobster Industry Council'), (61874, 'https://ror.org/028a0s046', 'en', 1, 'https://ror.org/028a0s046 Franciscan St Anthony Health – Michigan City'), (61875, 'https://ror.org/028e4qh46', 'no_lang_code', 1, 'https://ror.org/028e4qh46 New Valve Technology (Germany)'), (61876, 'https://ror.org/028fe5j11', 'no_lang_code', 1, 'https://ror.org/028fe5j11 Halyard (United Kingdom)'), (61877, 'https://ror.org/028fgzq86', 'de', 1, 'https://ror.org/028fgzq86 Aktion Pink'), (61878, 'https://ror.org/028gsb865', 'en', 1, 'https://ror.org/028gsb865 Research Institute of South Florida'), (61879, 'https://ror.org/028gw7a54', 'en', 1, 'https://ror.org/028gw7a54 University Gastroenterology'), (61880, 'https://ror.org/028jtth96', 'en', 1, 'https://ror.org/028jtth96 Intelecom Learning'), (61881, 'https://ror.org/028mrxf52', 'en', 1, 'https://ror.org/028mrxf52 Wrightington, Wigan and Leigh NHS Foundation Trust'), (61882, 'https://ror.org/028pd3m58', 'en', 1, 'https://ror.org/028pd3m58 Female Pelvic Medicine Institute of Virginia'), (61883, 'https://ror.org/028v8ft65', 'en', 1, 'https://ror.org/028v8ft65 HELIOS Klinikum Bad Saarow Helios Hospital Bad Saarow'), (61884, 'https://ror.org/028vbzs83', 'en', 1, 'https://ror.org/028vbzs83 Children’s Museum of Houston'), (61885, 'https://ror.org/028vdf012', 'no_lang_code', 1, 'https://ror.org/028vdf012 RelaxBogen (Germany)'), (61886, 'https://ror.org/029041c41', 'en', 1, 'https://ror.org/029041c41 Christiana Institute of Advanced Surgery'), (61887, 'https://ror.org/0290cy459', 'no_lang_code', 1, 'https://ror.org/0290cy459 Motion Scientific (United States)'), (61888, 'https://ror.org/0291wkh90', 'no_lang_code', 1, 'https://ror.org/0291wkh90 Ethicare (Germany)'), (61889, 'https://ror.org/0293zyz69', 'en', 1, 'https://ror.org/0293zyz69 Cantor Spine Institute'), (61890, 'https://ror.org/029485619', 'en', 1, 'https://ror.org/029485619 Israel Sports Center for the Disabled מרכז הספורט לנכים בישראל'), (61891, 'https://ror.org/0295gwn16', 'en', 1, 'https://ror.org/0295gwn16 National Association of Hispanic Nurses'), (61892, 'https://ror.org/0295j0z22', 'en', 1, 'https://ror.org/0295j0z22 Professional Fishermen’s Association'), (61893, 'https://ror.org/029705428', 'en', 1, 'https://ror.org/029705428 Department of Education'), (61894, 'https://ror.org/0297r6906', 'nl', 1, 'https://ror.org/0297r6906 Vlaamse Vereniging voor Obstetrie en Gynaecolo'), (61895, 'https://ror.org/0297tm887', 'en', 1, 'https://ror.org/0297tm887 Vascular Society of Southern Africa'), (61896, 'https://ror.org/02996kw76', 'en', 1, 'https://ror.org/02996kw76 Delaware Clinical & Laboratory Physicians'), (61897, 'https://ror.org/0299yrd21', 'en', 1, 'https://ror.org/0299yrd21 Ferre Institute'), (61898, 'https://ror.org/029b3y474', 'en', 1, 'https://ror.org/029b3y474 Edgecombe Community College'), (61899, 'https://ror.org/029cqm867', 'de', 1, 'https://ror.org/029cqm867 Hospital Krefeld-Düsseldorf'), (61900, 'https://ror.org/029ctf279', 'en', 1, 'https://ror.org/029ctf279 Association of Black Health-System Pharmacists'), (61901, 'https://ror.org/029enjm73', 'ro', 1, 'https://ror.org/029enjm73 Institutul de Pneumoftiziologie "Marius Nasta"'), (61902, 'https://ror.org/029fxva34', 'no_lang_code', 1, 'https://ror.org/029fxva34 Virta Laboratories (United States)'), (61903, 'https://ror.org/029fymz93', 'fr', 1, 'https://ror.org/029fymz93 Association de Cardiologie - Ile de France'), (61904, 'https://ror.org/029hj0c48', 'en', 1, 'https://ror.org/029hj0c48 Space Foundation'), (61905, 'https://ror.org/029hy6086', 'de', 1, 'https://ror.org/029hy6086 Klinikverbund Südwest'), (61906, 'https://ror.org/029p55913', 'en', 1, 'https://ror.org/029p55913 Ministry of Public Health and Social Assistance'), (61907, 'https://ror.org/029pazr57', 'en', 1, 'https://ror.org/029pazr57 Bon Secours Heart & Vascular Institute'), (61908, 'https://ror.org/029pcyp29', 'en', 1, 'https://ror.org/029pcyp29 Texas Academy of Family Physicians Foundation'), (61909, 'https://ror.org/029qv0y24', 'en', 1, 'https://ror.org/029qv0y24 The Connecticut Audubon Society'), (61910, 'https://ror.org/029qzhb32', 'en', 1, 'https://ror.org/029qzhb32 Zvitambo Institute for Maternal and Child Health Research'), (61911, 'https://ror.org/029ra6018', 'en', 1, 'https://ror.org/029ra6018 Saint Luke''s South Hospital'), (61912, 'https://ror.org/029rf8d44', 'en', 1, 'https://ror.org/029rf8d44 Institut für Atemwegsforschung GmbH Respiratory Research Institute'), (61913, 'https://ror.org/029ted261', 'ga', 1, 'https://ror.org/029ted261 Sabhal Mòr Ostaig'), (61914, 'https://ror.org/029tn0z88', 'en', 1, 'https://ror.org/029tn0z88 Strabismus Research Foundation'), (61915, 'https://ror.org/029tztb09', 'en', 1, 'https://ror.org/029tztb09 Society for Acupuncture Research'), (61916, 'https://ror.org/029zvxp24', 'no_lang_code', 1, 'https://ror.org/029zvxp24 Diamant (Germany)'), (61917, 'https://ror.org/029zxzd20', 'en', 1, 'https://ror.org/029zxzd20 Antoni Jurasz University Hospital Szpital Uniwersytecki im. A. Jurasza'), (61918, 'https://ror.org/02a0z8v73', 'nl', 1, 'https://ror.org/02a0z8v73 Stichting de Verre Bergen'), (61919, 'https://ror.org/02a1s0g57', 'nl', 1, 'https://ror.org/02a1s0g57 Huis voor de Zorg'), (61920, 'https://ror.org/02a1x2s63', 'en', 1, 'https://ror.org/02a1x2s63 American Legion of Iowa Foundation'), (61921, 'https://ror.org/02a22wk73', 'it', 1, 'https://ror.org/02a22wk73 Fondazione Farmacogenomica FiorGen'), (61922, 'https://ror.org/02a2sfd38', 'de', 1, 'https://ror.org/02a2sfd38 Klinikum Esslingen'), (61923, 'https://ror.org/02a4npq92', 'en', 1, 'https://ror.org/02a4npq92 Society for the Advancement of Blood Management'), (61924, 'https://ror.org/02a5vfy19', 'en', 1, 'https://ror.org/02a5vfy19 Hunan Academy of Traditional Chinese Medicine 湖南省中医药研究院'), (61925, 'https://ror.org/02a7ejh44', 'no_lang_code', 1, 'https://ror.org/02a7ejh44 Stragen (France)'), (61926, 'https://ror.org/02a8scr35', 'no_lang_code', 1, 'https://ror.org/02a8scr35 Veikkaus (Finland)'), (61927, 'https://ror.org/02a8zfv27', 'en', 1, 'https://ror.org/02a8zfv27 Hokotehi Moriori Trust'), (61928, 'https://ror.org/02a9kts05', 'no_lang_code', 1, 'https://ror.org/02a9kts05 Baxter (Colombia)'), (61929, 'https://ror.org/02a9re713', 'en', 1, 'https://ror.org/02a9re713 Moebius Syndrome Foundation'), (61930, 'https://ror.org/02abmp507', 'en', 1, 'https://ror.org/02abmp507 United States Postal Service Office of Inspector General'), (61931, 'https://ror.org/02aers703', 'en', 1, 'https://ror.org/02aers703 Gemstone Foundation'), (61932, 'https://ror.org/02agbat11', 'en', 1, 'https://ror.org/02agbat11 Wellington Aboriginal Corporation Health Service'), (61933, 'https://ror.org/02ahksm63', 'de', 1, 'https://ror.org/02ahksm63 Diakonie Baden'), (61934, 'https://ror.org/02ak4m037', 'fr', 1, 'https://ror.org/02ak4m037 Institut de Cancérologie de Bourgogne'), (61935, 'https://ror.org/02amn3y43', 'cs', 1, 'https://ror.org/02amn3y43 Committee of Good Will - Olga Havel Foundation Výbor dobré vůle Nadace Olgy Havlové'), (61936, 'https://ror.org/02apyk545', 'en', 1, 'https://ror.org/02apyk545 Orygen'), (61937, 'https://ror.org/02asz3j87', 'en', 1, 'https://ror.org/02asz3j87 Stiftung Swiss Foundation for Excellence and Talent in Biomedical Research Swiss Foundation for Excellence and Talent in Biomedical Research'), (61938, 'https://ror.org/02awhp844', 'en', 1, 'https://ror.org/02awhp844 Vision Specialists of Michigan'), (61939, 'https://ror.org/02awj9960', 'de', 1, 'https://ror.org/02awj9960 Forschungsinstitut Havelhöhe'), (61940, 'https://ror.org/02axh0j46', 'nl', 1, 'https://ror.org/02axh0j46 PsyQ'), (61941, 'https://ror.org/02b082946', 'pt', 1, 'https://ror.org/02b082946 Hospital Universitário Oswaldo Cruz'), (61942, 'https://ror.org/02b0zvv74', 'en', 1, 'https://ror.org/02b0zvv74 Instituto Alexander Fleming'), (61943, 'https://ror.org/02b184226', 'en', 1, 'https://ror.org/02b184226 Niagara Falls Memorial Medical Center'), (61944, 'https://ror.org/02b2vbn56', 'en', 1, 'https://ror.org/02b2vbn56 Saud Al-babtain Cardiac Centre مركز سعود البابطين للقلب'), (61945, 'https://ror.org/02b3f5j20', 'no_lang_code', 1, 'https://ror.org/02b3f5j20 Apollo Endosurgery (United States)'), (61946, 'https://ror.org/02b3gtx40', 'it', 1, 'https://ror.org/02b3gtx40 Ente Regionale per il Diritto allo Studio Universitario del Piemonte'), (61947, 'https://ror.org/02b3z0y06', 'de', 1, 'https://ror.org/02b3z0y06 Asklepios Kliniken Schildautal'), (61948, 'https://ror.org/02b5w5t35', 'en', 1, 'https://ror.org/02b5w5t35 American Arbitration Association'), (61949, 'https://ror.org/02b6wm085', 'en', 1, 'https://ror.org/02b6wm085 Sanford Broadway Medical Center'), (61950, 'https://ror.org/02b941k82', 'no_lang_code', 1, 'https://ror.org/02b941k82 Korian (Germany)'), (61951, 'https://ror.org/02b9h9j24', 'nl', 1, 'https://ror.org/02b9h9j24 GGz Breburg'), (61952, 'https://ror.org/02b9nqj69', 'no_lang_code', 1, 'https://ror.org/02b9nqj69 Bluewater International (United States)'), (61953, 'https://ror.org/02bc7xp68', 'en', 1, 'https://ror.org/02bc7xp68 Dutch Healthcare Authority Nederlandse Zorgautoriteit'), (61954, 'https://ror.org/02bd5jp47', 'en', 1, 'https://ror.org/02bd5jp47 Institute for the Study of Urologic Diseases Ινστιτούτο Μελέτης Ουρολογικών Παθήσεων'), (61955, 'https://ror.org/02bec1n20', 'en', 1, 'https://ror.org/02bec1n20 Milwaukee Emergency Center for Animals'), (61956, 'https://ror.org/02bexj159', 'no_lang_code', 1, 'https://ror.org/02bexj159 Lead Chemical (Japan)'), (61957, 'https://ror.org/02bh05k02', 'no_lang_code', 1, 'https://ror.org/02bh05k02 Chemo (Spain)'), (61958, 'https://ror.org/02bjfq514', 'no_lang_code', 1, 'https://ror.org/02bjfq514 MAA Laboratories (United States)'), (61959, 'https://ror.org/02bjyz323', 'en', 1, 'https://ror.org/02bjyz323 Hebei University of Environmental Engineering 河北环境工程学院'), (61960, 'https://ror.org/02bkhhg93', 'en', 1, 'https://ror.org/02bkhhg93 Arthritis and Rheumatism Associates'), (61961, 'https://ror.org/02bkjp178', 'no_lang_code', 1, 'https://ror.org/02bkjp178 Max Zeller Söhne (Switzerland)'), (61962, 'https://ror.org/02braec51', 'en', 1, 'https://ror.org/02braec51 Dutch Expert Centre for Screening Landelijk ReferentieCentrum voor Bevolkingsonderzoek'), (61963, 'https://ror.org/02bt8sv61', 'en', 1, 'https://ror.org/02bt8sv61 Cacapon Institute'), (61964, 'https://ror.org/02bttzs67', 'pt', 1, 'https://ror.org/02bttzs67 Instituto Brasiliense de Otorrinolaringologia'), (61965, 'https://ror.org/02bwxd425', 'no_lang_code', 1, 'https://ror.org/02bwxd425 Applied Dynamics International (United States)'), (61966, 'https://ror.org/02bx28580', 'en', 1, 'https://ror.org/02bx28580 Dermatological Society of Thailand สมาคมแพทย์ผิวหนังแห่งประเทศไทย'), (61967, 'https://ror.org/02bxvq813', 'de', 1, 'https://ror.org/02bxvq813 Klinik und Poliklinik für Frauenheilkunde und Fortpflanzungsmedizin'), (61968, 'https://ror.org/02by0qa70', 'az', 1, 'https://ror.org/02by0qa70 Akademik Zərifə Əliyeva adına Milli Oftalmologiya Mərkəzi'), (61969, 'https://ror.org/02bzsgg26', 'en', 1, 'https://ror.org/02bzsgg26 Association of University Presses'), (61970, 'https://ror.org/02c02vy89', 'en', 1, 'https://ror.org/02c02vy89 African Institute for Mathematical Sciences Taasisi ya Afrika ya Sayansi ya Hisabati'), (61971, 'https://ror.org/02c0af132', 'en', 1, 'https://ror.org/02c0af132 Indiana State Museum'), (61972, 'https://ror.org/02c0pn910', 'no_lang_code', 1, 'https://ror.org/02c0pn910 Winclove Probiotics (Netherlands)'), (61973, 'https://ror.org/02c19c733', 'no_lang_code', 1, 'https://ror.org/02c19c733 Femeda (United Kingdom)'), (61974, 'https://ror.org/02c1jfh03', 'de', 1, 'https://ror.org/02c1jfh03 Aenne Speck Stiftung'), (61975, 'https://ror.org/02c2ejr08', 'en', 1, 'https://ror.org/02c2ejr08 National Black Graduate Student Association'), (61976, 'https://ror.org/02c30a260', 'en', 1, 'https://ror.org/02c30a260 Republican Scientific and Practical Centre of Pulmonology and Tuberculosis Республиканский научно-практический центр пульмонологии и туберкулеза Рэспубліканскі навукова-практычны цэнтр пульманалогіі і туберкулёзу'), (61977, 'https://ror.org/02c3t8t42', 'en', 1, 'https://ror.org/02c3t8t42 West Virginia Research Technology Park'), (61978, 'https://ror.org/02c4a9n85', 'en', 1, 'https://ror.org/02c4a9n85 Yuma Oncology Center'), (61979, 'https://ror.org/02c4vbg64', 'en', 1, 'https://ror.org/02c4vbg64 Maari Ma Health'), (61980, 'https://ror.org/02c518c71', 'en', 1, 'https://ror.org/02c518c71 Swiss Society of Hypertension'), (61981, 'https://ror.org/02c7gw327', 'en', 1, 'https://ror.org/02c7gw327 Thistle Foundation'), (61982, 'https://ror.org/02c81d080', 'en', 1, 'https://ror.org/02c81d080 Institute for Rare and Neglected Diseases Drug Discovery'), (61983, 'https://ror.org/02c9etv94', 'en', 1, 'https://ror.org/02c9etv94 West End Revitalization Association'), (61984, 'https://ror.org/02c9xpj15', 'en', 1, 'https://ror.org/02c9xpj15 National Stroke Association'), (61985, 'https://ror.org/02cagam23', 'en', 1, 'https://ror.org/02cagam23 MultiCare Gig Harbor Medical Park'), (61986, 'https://ror.org/02ccsj972', 'de', 1, 'https://ror.org/02ccsj972 Cnopf Children''s Hospital Cnopf´sche Kinderklinik'), (61987, 'https://ror.org/02cdcxq67', 'es', 1, 'https://ror.org/02cdcxq67 Instituto de Salud de Bucaramanga'), (61988, 'https://ror.org/02cejc171', 'en', 1, 'https://ror.org/02cejc171 Guangxi Normal University for Nationalities'), (61989, 'https://ror.org/02ceryg42', 'en', 1, 'https://ror.org/02ceryg42 Belgian Society for Pneumology Belgische Vereniging voor Pneumologie'), (61990, 'https://ror.org/02cesks36', 'en', 1, 'https://ror.org/02cesks36 Family Service Agency of the Central Coast'), (61991, 'https://ror.org/02cf8gj49', 'no_lang_code', 1, 'https://ror.org/02cf8gj49 IBSA Farmaceutici (Italy)'), (61992, 'https://ror.org/02cfx3y90', 'en', 1, 'https://ror.org/02cfx3y90 Community Information, Empowerment and Transparency'), (61993, 'https://ror.org/02chsc169', 'fr', 1, 'https://ror.org/02chsc169 Centre Hospitalier Compiègne-Noyon'), (61994, 'https://ror.org/02cj39680', 'en', 1, 'https://ror.org/02cj39680 Malheur Field Station'), (61995, 'https://ror.org/02ckr4v59', 'ca', 1, 'https://ror.org/02ckr4v59 Collegi Oficial d''Infermeres i Infermers de Barcelona'), (61996, 'https://ror.org/02cn88225', 'en', 1, 'https://ror.org/02cn88225 Boulder Institute for Sports Medicine'), (61997, 'https://ror.org/02cnwya81', 'no_lang_code', 1, 'https://ror.org/02cnwya81 Nordic Sugar (Finland)'), (61998, 'https://ror.org/02cp0yq73', 'no_lang_code', 1, 'https://ror.org/02cp0yq73 Cleveland Research (United States)'), (61999, 'https://ror.org/02cqykx88', 'en', 1, 'https://ror.org/02cqykx88 International Society of Service Innovation Professionals'), (62000, 'https://ror.org/02crgsc42', 'no_lang_code', 1, 'https://ror.org/02crgsc42 Innospense (Netherlands)'), (62001, 'https://ror.org/02csejj07', 'en', 1, 'https://ror.org/02csejj07 Chinese People ''s Liberation Army No.455 Hospital 中国人民解放军第四五五医院'), (62002, 'https://ror.org/02cw3t849', 'en', 1, 'https://ror.org/02cw3t849 Suncoast Hospice Institute'), (62003, 'https://ror.org/02cwrcd13', 'nl', 1, 'https://ror.org/02cwrcd13 Stichting Gezondheidscentra Eindhoven'), (62004, 'https://ror.org/02cy2d039', 'en', 1, 'https://ror.org/02cy2d039 Westlake Health Center'), (62005, 'https://ror.org/02czvz038', 'no', 1, 'https://ror.org/02czvz038 Norsk Ergoterapeutforbund Norwegian Occupational Therapist Association - Occupational Therapists'), (62006, 'https://ror.org/02d0b6k80', 'en', 1, 'https://ror.org/02d0b6k80 Association Canadienne des Greffes Canadian Transplant Association'), (62007, 'https://ror.org/02d1y4603', 'pt', 1, 'https://ror.org/02d1y4603 Hospital Ernesto Dornelles'), (62008, 'https://ror.org/02d21y725', 'en', 1, 'https://ror.org/02d21y725 Rice Memorial Hospital'), (62009, 'https://ror.org/02d4f0r15', 'no_lang_code', 1, 'https://ror.org/02d4f0r15 Fazer (Finland)'), (62010, 'https://ror.org/02d5bc995', 'pt', 1, 'https://ror.org/02d5bc995 Instituto da Visão Vision Institute'), (62011, 'https://ror.org/02d6kbk83', 'en', 1, 'https://ror.org/02d6kbk83 Marienhospital Bottrop'), (62012, 'https://ror.org/02d741577', 'fr', 1, 'https://ror.org/02d741577 Centre Hospitalier Régional de Metz-Thionville'), (62013, 'https://ror.org/02d750026', 'no_lang_code', 1, 'https://ror.org/02d750026 Fossil Energy Research (United States)'), (62014, 'https://ror.org/02d893y24', 'en', 1, 'https://ror.org/02d893y24 Medical Mission Institute Missionsärztliches Institut Würzburg'), (62015, 'https://ror.org/02d950z41', 'en', 1, 'https://ror.org/02d950z41 Altasciences Clinical Research Vince & Associates'), (62016, 'https://ror.org/02d9e4911', 'de', 1, 'https://ror.org/02d9e4911 Universitätsklinik für Frauenheilkunde und Geburtshilfe'), (62017, 'https://ror.org/02dbytc62', 'no_lang_code', 1, 'https://ror.org/02dbytc62 Novartis (Mexico)'), (62018, 'https://ror.org/02dc84z12', 'en', 1, 'https://ror.org/02dc84z12 International Archaeological Research Institute'), (62019, 'https://ror.org/02devh349', 'de', 1, 'https://ror.org/02devh349 Schön Klinik Neustadt'), (62020, 'https://ror.org/02dfbwd57', 'no_lang_code', 1, 'https://ror.org/02dfbwd57 Amedrix (Germany)'), (62021, 'https://ror.org/02dfv3292', 'en', 1, 'https://ror.org/02dfv3292 Portsmouth Regional Hospital'), (62022, 'https://ror.org/02dg40g44', 'en', 1, 'https://ror.org/02dg40g44 St. Petersburg State Budgetary Healthcare Institution "City Polyclinic No. 106"'), (62023, 'https://ror.org/02dgz7m30', 'en', 1, 'https://ror.org/02dgz7m30 Tahija Foundation, Yayasan Tahija'), (62024, 'https://ror.org/02dhsf930', 'no_lang_code', 1, 'https://ror.org/02dhsf930 CSD Nano (United States)'), (62025, 'https://ror.org/02dn5sb95', 'no_lang_code', 1, 'https://ror.org/02dn5sb95 Medivis (Italy)'), (62026, 'https://ror.org/02dn5zf89', 'en', 1, 'https://ror.org/02dn5zf89 American Psychopathological Association'), (62027, 'https://ror.org/02dndmg40', 'en', 1, 'https://ror.org/02dndmg40 Advanced Heart and Vascular Institute of Hunterdon'), (62028, 'https://ror.org/02dpnb389', 'fr', 1, 'https://ror.org/02dpnb389 Clinatec'), (62029, 'https://ror.org/02dpw9611', 'en', 1, 'https://ror.org/02dpw9611 Digital Harbor Foundation'), (62030, 'https://ror.org/02dq5y823', 'no_lang_code', 1, 'https://ror.org/02dq5y823 Bionorica (Austria)'), (62031, 'https://ror.org/02dqsp291', 'de', 1, 'https://ror.org/02dqsp291 Universitäts-Frauenklinik des Saarlandes'), (62032, 'https://ror.org/02dqwa472', 'en', 1, 'https://ror.org/02dqwa472 SerenaGroup Research Institute'), (62033, 'https://ror.org/02drjk215', 'no_lang_code', 1, 'https://ror.org/02drjk215 Nestlé (Netherlands)'), (62034, 'https://ror.org/02dsghr34', 'no_lang_code', 1, 'https://ror.org/02dsghr34 Happiest Baby (United States)'), (62035, 'https://ror.org/02dt6qg89', 'no_lang_code', 1, 'https://ror.org/02dt6qg89 Organ Recovery Systems (Belgium)'), (62036, 'https://ror.org/02dts1820', 'no_lang_code', 1, 'https://ror.org/02dts1820 Delpor (United States)'), (62037, 'https://ror.org/02dtse057', 'en', 1, 'https://ror.org/02dtse057 The Ageless Aesthetic Institute'), (62038, 'https://ror.org/02dv2bn85', 'de', 1, 'https://ror.org/02dv2bn85 Sanatorium Kilchberg'), (62039, 'https://ror.org/02dx38m31', 'en', 1, 'https://ror.org/02dx38m31 Scientific Medical School Dr. Synergetic'), (62040, 'https://ror.org/02dyt2y09', 'en', 1, 'https://ror.org/02dyt2y09 Public Laboratory for Open Technology and Science'), (62041, 'https://ror.org/02e6fp975', 'en', 1, 'https://ror.org/02e6fp975 Copper Queen Community Hospital'), (62042, 'https://ror.org/02e9sbg40', 'de', 1, 'https://ror.org/02e9sbg40 Deutscher Berufsverband Rettungsdienst e.V'), (62043, 'https://ror.org/02ea83075', 'en', 1, 'https://ror.org/02ea83075 Neurological Research Institute'), (62044, 'https://ror.org/02ebs9s22', 'es', 1, 'https://ror.org/02ebs9s22 Instituto Médico Tinerfeño'), (62045, 'https://ror.org/02ebx7v45', 'en', 1, 'https://ror.org/02ebx7v45 Frontière humaine International Human Frontier Science Program Organization'), (62046, 'https://ror.org/02em8e723', 'en', 1, 'https://ror.org/02em8e723 Brunswick Community College'), (62047, 'https://ror.org/02emvpp12', 'no_lang_code', 1, 'https://ror.org/02emvpp12 Sarossa (Jersey)'), (62048, 'https://ror.org/02en9dz36', 'no_lang_code', 1, 'https://ror.org/02en9dz36 Valeas (Italy)'), (62049, 'https://ror.org/02et0er40', 'en', 1, 'https://ror.org/02et0er40 Institut Jaques-Dalcroze'), (62050, 'https://ror.org/02et29s96', 'no_lang_code', 1, 'https://ror.org/02et29s96 Remedent (Belgium)'), (62051, 'https://ror.org/02etw4c89', 'nl', 1, 'https://ror.org/02etw4c89 Vereniging EMDR'), (62052, 'https://ror.org/02evzb864', 'en', 1, 'https://ror.org/02evzb864 JES & Co'), (62053, 'https://ror.org/02ewxar05', 'en', 1, 'https://ror.org/02ewxar05 School for Field Studies'), (62054, 'https://ror.org/02eyfd807', 'en', 1, 'https://ror.org/02eyfd807 Sacred Heart Medical Center at RiverBend'), (62055, 'https://ror.org/02ez32078', 'en', 1, 'https://ror.org/02ez32078 Stereology Resource Center'), (62056, 'https://ror.org/02ez87631', 'en', 1, 'https://ror.org/02ez87631 Samara City Children''s Clinical Hospital No. 1 named after NN Ivanova Самарская городская детская клиническая больница №1 им. Н.Н. Иванов'), (62057, 'https://ror.org/02ezjve56', 'en', 1, 'https://ror.org/02ezjve56 Canadian College of Massage and Hydrotherapy'), (62058, 'https://ror.org/02f12qk21', 'en', 1, 'https://ror.org/02f12qk21 The Korean Society of Pediatric Hematology-Oncology'), (62059, 'https://ror.org/02f3qjz81', 'en', 1, 'https://ror.org/02f3qjz81 PaleoCultural Research Group'), (62060, 'https://ror.org/02f3rf591', 'en', 1, 'https://ror.org/02f3rf591 Russian Venture Company Российская венчурная компания'), (62061, 'https://ror.org/02f4m9w39', 'en', 1, 'https://ror.org/02f4m9w39 Lake Huron Medical Center'), (62062, 'https://ror.org/02f5ccn55', 'no_lang_code', 1, 'https://ror.org/02f5ccn55 Sun Pharma (United States)'), (62063, 'https://ror.org/02f5z8140', 'en', 1, 'https://ror.org/02f5z8140 Alberta Hip and Knee Clinic'), (62064, 'https://ror.org/02feh5a48', 'no_lang_code', 1, 'https://ror.org/02feh5a48 SHINE Medical Technologies (United States)'), (62065, 'https://ror.org/02ffj8167', 'es', 1, 'https://ror.org/02ffj8167 Instituto Hispalense de Pediatria'), (62066, 'https://ror.org/02ffpzw40', 'no_lang_code', 1, 'https://ror.org/02ffpzw40 Spectrum Scientific (United States)'), (62067, 'https://ror.org/02fgqtv27', 'no_lang_code', 1, 'https://ror.org/02fgqtv27 LighTopTech (United States)'), (62068, 'https://ror.org/02fj56008', 'no_lang_code', 1, 'https://ror.org/02fj56008 Vestergaard (Switzerland)'), (62069, 'https://ror.org/02fjtnt35', 'en', 1, 'https://ror.org/02fjtnt35 Southern Health and Social Care Trust'), (62070, 'https://ror.org/02fm2jq60', 'en', 1, 'https://ror.org/02fm2jq60 Maine Hospital Association'), (62071, 'https://ror.org/02fmwa274', 'en', 1, 'https://ror.org/02fmwa274 Brain and Cognition Discovery Foundation'), (62072, 'https://ror.org/02fp4k302', 'en', 1, 'https://ror.org/02fp4k302 City Hospital № 1 named after. ON. Semashko'), (62073, 'https://ror.org/02fqx5560', 'no_lang_code', 1, 'https://ror.org/02fqx5560 Implandata Ophthalmic Products (Germany)'), (62074, 'https://ror.org/02fxb8p51', 'de', 1, 'https://ror.org/02fxb8p51 Familie Mehdorn Stiftung'), (62075, 'https://ror.org/02fxhk514', 'nl', 1, 'https://ror.org/02fxhk514 Nederlandse Vereniging voor Plastische Chirurgie'), (62076, 'https://ror.org/02fyhvd52', 'nl', 1, 'https://ror.org/02fyhvd52 Fonds de Gavere'), (62077, 'https://ror.org/02fyj2e56', 'en', 1, 'https://ror.org/02fyj2e56 Calderdale and Huddersfield NHS Foundation Trust'), (62078, 'https://ror.org/02g08q683', 'nl', 1, 'https://ror.org/02g08q683 Nederlands Paramedisch Instituut'), (62079, 'https://ror.org/02g1dfh62', 'no_lang_code', 1, 'https://ror.org/02g1dfh62 Fulltec (Switzerland)'), (62080, 'https://ror.org/02g2dv858', 'en', 1, 'https://ror.org/02g2dv858 New England Council'), (62081, 'https://ror.org/02g4bxh77', 'en', 1, 'https://ror.org/02g4bxh77 Medbase'), (62082, 'https://ror.org/02g7z3v47', 'no_lang_code', 1, 'https://ror.org/02g7z3v47 List Biological Laboratories (United States)'), (62083, 'https://ror.org/02g9smc25', 'no_lang_code', 1, 'https://ror.org/02g9smc25 VRR Diagnostic Services (India)'), (62084, 'https://ror.org/02gaw4292', 'de', 1, 'https://ror.org/02gaw4292 Verwaltungs-Berufsgenossenschaft'), (62085, 'https://ror.org/02gc95f39', 'en', 1, 'https://ror.org/02gc95f39 Omid Fertility Clinic کلینیک باروری امید'), (62086, 'https://ror.org/02gee2j04', 'en', 1, 'https://ror.org/02gee2j04 Center for Public Service Communications'), (62087, 'https://ror.org/02gfcne25', 'en', 1, 'https://ror.org/02gfcne25 Eidos Education'), (62088, 'https://ror.org/02gg23171', 'de', 1, 'https://ror.org/02gg23171 Medizinisches Versorgungszentrum Prof. Mathey, Prof. Schofer'), (62089, 'https://ror.org/02gx2rj64', 'en', 1, 'https://ror.org/02gx2rj64 Tahoe Regional Planning Agency'), (62090, 'https://ror.org/02gxv2217', 'en', 1, 'https://ror.org/02gxv2217 Pedorthic Research Foundation of Canada'), (62091, 'https://ror.org/02gzjez53', 'en', 1, 'https://ror.org/02gzjez53 Indiana Athletic Trainers Association'), (62092, 'https://ror.org/02h07t345', 'en', 1, 'https://ror.org/02h07t345 Queen Square Radiosurgery Centre'), (62093, 'https://ror.org/02h1dt688', 'de', 1, 'https://ror.org/02h1dt688 Klinikum Frankfurt Höchst'), (62094, 'https://ror.org/02h2r8882', 'en', 1, 'https://ror.org/02h2r8882 Central Council for Research in Yoga & Naturopathy'), (62095, 'https://ror.org/02h3k6w11', 'en', 1, 'https://ror.org/02h3k6w11 The Environmental Literacy Council'), (62096, 'https://ror.org/02h420k27', 'no_lang_code', 1, 'https://ror.org/02h420k27 Nuga Medical (South Korea)'), (62097, 'https://ror.org/02h4hqt24', 'en', 1, 'https://ror.org/02h4hqt24 Alberta Bone and Joint Health Institute'), (62098, 'https://ror.org/02h7wt813', 'en', 1, 'https://ror.org/02h7wt813 Scottish School of Primary Care'), (62099, 'https://ror.org/02h8c3526', 'en', 1, 'https://ror.org/02h8c3526 Cancer Care Specialists of Illinois'), (62100, 'https://ror.org/02hanc252', 'no_lang_code', 1, 'https://ror.org/02hanc252 Social Security Office (Thailand)'), (62101, 'https://ror.org/02hapf869', 'en', 1, 'https://ror.org/02hapf869 Institute of Early Childhood Research Staatsinstitut für Frühpädagogik'), (62102, 'https://ror.org/02hbjq124', 'no_lang_code', 1, 'https://ror.org/02hbjq124 Network Foundation Technologies (United States)'), (62103, 'https://ror.org/02hbmed43', 'no_lang_code', 1, 'https://ror.org/02hbmed43 Safety Management Systems Aotearoa (New Zealand)'), (62104, 'https://ror.org/02hcvyf40', 'nl', 1, 'https://ror.org/02hcvyf40 HSK Groep'), (62105, 'https://ror.org/02hd7d161', 'en', 1, 'https://ror.org/02hd7d161 Deyang Stomatological Hospital 德阳口腔医院'), (62106, 'https://ror.org/02he45g63', 'en', 1, 'https://ror.org/02he45g63 Discovery Center of Idaho'), (62107, 'https://ror.org/02hfr4n62', 'no_lang_code', 1, 'https://ror.org/02hfr4n62 Hamburg Port Consulting (Germany)'), (62108, 'https://ror.org/02hgpw430', 'en', 1, 'https://ror.org/02hgpw430 Association of the British Pharmaceutical Industry'), (62109, 'https://ror.org/02hk1y795', 'en', 1, 'https://ror.org/02hk1y795 TargetCancer Foundation'), (62110, 'https://ror.org/02hk27r53', 'en', 1, 'https://ror.org/02hk27r53 Asian Institute of Medical Sciences'), (62111, 'https://ror.org/02hngq018', 'en', 1, 'https://ror.org/02hngq018 Centre de fertilité d''Ottawa Ottawa Fertility Centre'), (62112, 'https://ror.org/02hp0cc95', 'en', 1, 'https://ror.org/02hp0cc95 Health & Motion'), (62113, 'https://ror.org/02hp35j69', 'en', 1, 'https://ror.org/02hp35j69 RDS Partners'), (62114, 'https://ror.org/02hpc5z27', 'en', 1, 'https://ror.org/02hpc5z27 Maralinga Tjarutja'), (62115, 'https://ror.org/02hptfp27', 'no_lang_code', 1, 'https://ror.org/02hptfp27 Caduceus Intelligence Corporation (United States)'), (62116, 'https://ror.org/02hrfw153', 'es', 1, 'https://ror.org/02hrfw153 Hospital Regional de Concepción'), (62117, 'https://ror.org/02hrkdj18', 'no_lang_code', 1, 'https://ror.org/02hrkdj18 Willow Wood (United States)'), (62118, 'https://ror.org/02htkw777', 'de', 1, 'https://ror.org/02htkw777 Stiftung Chance, Stiftung Chance für das kritisch kranke Kind'), (62119, 'https://ror.org/02htmn026', 'en', 1, 'https://ror.org/02htmn026 Civil Service Council مجلس الخدمة المدنية'), (62120, 'https://ror.org/02hxr7787', 'en', 1, 'https://ror.org/02hxr7787 Cancer Centers of Southwest Oklahoma'), (62121, 'https://ror.org/02hyv7840', 'no_lang_code', 1, 'https://ror.org/02hyv7840 Columbia Asia'), (62122, 'https://ror.org/02j0fhg41', 'de', 1, 'https://ror.org/02j0fhg41 Moritz Klinik'), (62123, 'https://ror.org/02j0qcn83', 'en', 1, 'https://ror.org/02j0qcn83 Institute for the Blind and Partially Sighted Instituttet for Blinde og Svagsynede'), (62124, 'https://ror.org/02j0s2m43', 'en', 1, 'https://ror.org/02j0s2m43 Barney''s Pharmacy'), (62125, 'https://ror.org/02j2kw336', 'no_lang_code', 1, 'https://ror.org/02j2kw336 Molteni Farmaceutici (Italy)'), (62126, 'https://ror.org/02j2pa220', 'en', 1, 'https://ror.org/02j2pa220 Delray Medical Center'), (62127, 'https://ror.org/02j3yct66', 'en', 1, 'https://ror.org/02j3yct66 Interuniversity Graduate School of Psychometrics and Sociometrics'), (62128, 'https://ror.org/02j45y774', 'de', 1, 'https://ror.org/02j45y774 St. Hedwig-Krankenhaus'), (62129, 'https://ror.org/02j4hfc40', 'no_lang_code', 1, 'https://ror.org/02j4hfc40 Glaukos (United States)'), (62130, 'https://ror.org/02j5f0439', 'es', 1, 'https://ror.org/02j5f0439 Fundación Neumológica Colombiana'), (62131, 'https://ror.org/02j787g88', 'en', 1, 'https://ror.org/02j787g88 Skin Science Institute'), (62132, 'https://ror.org/02jddhc12', 'en', 1, 'https://ror.org/02jddhc12 Laguna Research'), (62133, 'https://ror.org/02je6ph26', 'fr', 1, 'https://ror.org/02je6ph26 Institut Paul Bocuse'), (62134, 'https://ror.org/02jf05b83', 'en', 1, 'https://ror.org/02jf05b83 The 21st Century Partnership for STEM Education'), (62135, 'https://ror.org/02jgqwc20', 'en', 1, 'https://ror.org/02jgqwc20 Imperial College London Diabetes Centre'), (62136, 'https://ror.org/02jgzx216', 'en', 1, 'https://ror.org/02jgzx216 The Institute of Addiction Medicine'), (62137, 'https://ror.org/02jhtag43', 'en', 1, 'https://ror.org/02jhtag43 Sun Research Institute'), (62138, 'https://ror.org/02jk45x82', 'en', 1, 'https://ror.org/02jk45x82 Health Strategy and Policy Institute Viện Chiến lược và Chính sách Y tế'), (62139, 'https://ror.org/02jky7c94', 'no_lang_code', 1, 'https://ror.org/02jky7c94 Skånemejerier (Sweden)'), (62140, 'https://ror.org/02jng7h30', 'en', 1, 'https://ror.org/02jng7h30 Kaiser Permanente Gaithersburg Medical Center'), (62141, 'https://ror.org/02jnh1883', 'en', 1, 'https://ror.org/02jnh1883 Canadian Sugar Institute'), (62142, 'https://ror.org/02jsea915', 'en', 1, 'https://ror.org/02jsea915 De Cavel Family SIDS Foundation'), (62143, 'https://ror.org/02jwahm23', 'en', 1, 'https://ror.org/02jwahm23 Doctors with Africa Cuamm Medici con l’Africa Cuamm'), (62144, 'https://ror.org/02jwgg565', 'en', 1, 'https://ror.org/02jwgg565 National Association of Statutory Health Insurance Physicians'), (62145, 'https://ror.org/02jwr3j75', 'en', 1, 'https://ror.org/02jwr3j75 City Clinical Oncology Center Городской клинический онкологический диспансер'), (62146, 'https://ror.org/02k3h7m33', 'en', 1, 'https://ror.org/02k3h7m33 The Stop ALD Foundation'), (62147, 'https://ror.org/02k3jph89', 'pt', 1, 'https://ror.org/02k3jph89 Instituto de Ciências Farmacêuticas'), (62148, 'https://ror.org/02k4egv76', 'en', 1, 'https://ror.org/02k4egv76 Pacific Fertility Center'), (62149, 'https://ror.org/02k6byd47', 'da', 1, 'https://ror.org/02k6byd47 Kong Christian X''s Gigthospital'), (62150, 'https://ror.org/02k6hv566', 'en', 1, 'https://ror.org/02k6hv566 Shahid Gangalal National Heart Centre'), (62151, 'https://ror.org/02k7x9210', 'en', 1, 'https://ror.org/02k7x9210 The Korean Academy of Tuberculosis and Respiratory Diseases'), (62152, 'https://ror.org/02kaggc24', 'no_lang_code', 1, 'https://ror.org/02kaggc24 Univercell-Biosolutions (France)'), (62153, 'https://ror.org/02kbfhq14', 'de', 1, 'https://ror.org/02kbfhq14 Laserklinik Karlsruhe'), (62154, 'https://ror.org/02kc8gm46', 'en', 1, 'https://ror.org/02kc8gm46 Brisbane Hand & Upper Limb Research Institute'), (62155, 'https://ror.org/02kcjwx60', 'en', 1, 'https://ror.org/02kcjwx60 Suburban Community Hospital'), (62156, 'https://ror.org/02kctrc72', 'nl', 1, 'https://ror.org/02kctrc72 Stichting Wetenschappelijk Onderzoek het Oogziekenhuis'), (62157, 'https://ror.org/02ken4f88', 'en', 1, 'https://ror.org/02ken4f88 Vignana Jyothi Institute of Management'), (62158, 'https://ror.org/02kf9ya90', 'no_lang_code', 1, 'https://ror.org/02kf9ya90 Baxter (Italy)'), (62159, 'https://ror.org/02kfmqh26', 'de', 1, 'https://ror.org/02kfmqh26 Zahnärzte an der Kleinmachnower Schleuse Stahnsdorf'), (62160, 'https://ror.org/02kh18p78', 'en', 1, 'https://ror.org/02kh18p78 Elementary Institute of Science'), (62161, 'https://ror.org/02kj91m96', 'en', 1, 'https://ror.org/02kj91m96 Leipzig Heart Institute'), (62162, 'https://ror.org/02kj9za59', 'nl', 1, 'https://ror.org/02kj9za59 GGD West-Brabant, Gemeentelijke gezondheidsdienst West-Brabant'), (62163, 'https://ror.org/02kjx8221', 'no_lang_code', 1, 'https://ror.org/02kjx8221 Dr. Loges (Germany)'), (62164, 'https://ror.org/02kp6ds19', 'en', 1, 'https://ror.org/02kp6ds19 Boulder Neurosurgical & Spine Associates'), (62165, 'https://ror.org/02kpbdq88', 'en', 1, 'https://ror.org/02kpbdq88 Danish Society of Cardiology Dansk Cardiologisk Selskab'), (62166, 'https://ror.org/02krjt890', 'en', 1, 'https://ror.org/02krjt890 Institute for Learning Innovation'), (62167, 'https://ror.org/02ksqjt48', 'en', 1, 'https://ror.org/02ksqjt48 VitalStrategic Research Institute'), (62168, 'https://ror.org/02kx02a45', 'en', 1, 'https://ror.org/02kx02a45 Mon Health Medical Center'), (62169, 'https://ror.org/02kyv4s47', 'en', 1, 'https://ror.org/02kyv4s47 Ministry of National Health Services Regulation and Coordination وزارت صحت'), (62170, 'https://ror.org/02m0hdc77', 'en', 1, 'https://ror.org/02m0hdc77 Jesse & Julie Rasch Foundation'), (62171, 'https://ror.org/02m6eba18', 'en', 1, 'https://ror.org/02m6eba18 Mountview Theatre School'), (62172, 'https://ror.org/02m6w0m37', 'en', 1, 'https://ror.org/02m6w0m37 St. Agnes Hospital'), (62173, 'https://ror.org/02m901r68', 'en', 1, 'https://ror.org/02m901r68 Abrams Eye Institute'), (62174, 'https://ror.org/02mcwd725', 'en', 1, 'https://ror.org/02mcwd725 Bòrd SSN Dùn Phris agus an Gall-Ghaidhealaibh NHS Dumfries and Galloway'), (62175, 'https://ror.org/02mdj2060', 'de', 1, 'https://ror.org/02mdj2060 Zentrum Überleben'), (62176, 'https://ror.org/02mez3a16', 'de', 1, 'https://ror.org/02mez3a16 Integrierte Psychiatrie Winterthur'), (62177, 'https://ror.org/02mfjm186', 'en', 1, 'https://ror.org/02mfjm186 VA Nasonova Scientific Research Institute of Rheumatology Научно-исследовательский институт ревматологии ФСБСИ. Вице-адмирал Насонова»'), (62178, 'https://ror.org/02mfv5g23', 'en', 1, 'https://ror.org/02mfv5g23 Cancer Clinic'), (62179, 'https://ror.org/02mgs7839', 'en', 1, 'https://ror.org/02mgs7839 ESE University Hospital San Jorge Pereira'), (62180, 'https://ror.org/02mgzgr95', 'it', 1, 'https://ror.org/02mgzgr95 Istituto delle Scienze Neurologiche di Bologna'), (62181, 'https://ror.org/02mj1v005', 'de', 1, 'https://ror.org/02mj1v005 Poliklinik für Präventive Zahnheilkunde und Kinderzahnheilkunde'), (62182, 'https://ror.org/02mkrd102', 'no_lang_code', 1, 'https://ror.org/02mkrd102 Innovacell Biotechnologie (Austria)'), (62183, 'https://ror.org/02mmpfj40', 'en', 1, 'https://ror.org/02mmpfj40 Bundesverband Deutscher Apothekerverbände Federal Union of German Associations of Pharmacists'), (62184, 'https://ror.org/02mpkkr38', 'en', 1, 'https://ror.org/02mpkkr38 Aboriginal Health Council of South Australia'), (62185, 'https://ror.org/02mqqja67', 'de', 1, 'https://ror.org/02mqqja67 Lungenheilkunde München-Pasing'), (62186, 'https://ror.org/02msncm75', 'no_lang_code', 1, 'https://ror.org/02msncm75 Zogenix (United Kingdom)'), (62187, 'https://ror.org/02msz7b29', 'en', 1, 'https://ror.org/02msz7b29 Zankli Medical Centre'), (62188, 'https://ror.org/02mtbpn10', 'en', 1, 'https://ror.org/02mtbpn10 NeuroModulation Technique'), (62189, 'https://ror.org/02mtnaz94', 'en', 1, 'https://ror.org/02mtnaz94 Cyber Innovation Center'), (62190, 'https://ror.org/02mwqcj16', 'en', 1, 'https://ror.org/02mwqcj16 Memorial Health System'), (62191, 'https://ror.org/02my3ed83', 'en', 1, 'https://ror.org/02my3ed83 Institute of Health Management Pachod'), (62192, 'https://ror.org/02mywds70', 'it', 1, 'https://ror.org/02mywds70 Consorzio Interuniversitario Reattività Chimica e Catalisi'), (62193, 'https://ror.org/02n0p7v71', 'en', 1, 'https://ror.org/02n0p7v71 Desert Institute For Spine Care'), (62194, 'https://ror.org/02n172j55', 'en', 1, 'https://ror.org/02n172j55 MedDerm Associates'); INSERT INTO `rors` VALUES (62195, 'https://ror.org/02n3gey39', 'en', 1, 'https://ror.org/02n3gey39 Institute for Advanced Laser Dentistry'), (62196, 'https://ror.org/02n3wzn79', 'en', 1, 'https://ror.org/02n3wzn79 The Taiwanese Osteoporosis Association 中華民國骨質疏鬆症學會'), (62197, 'https://ror.org/02n59hk56', 'en', 1, 'https://ror.org/02n59hk56 Australian Farm Institute'), (62198, 'https://ror.org/02n5pfm79', 'no_lang_code', 1, 'https://ror.org/02n5pfm79 Alfasigma (Italy)'), (62199, 'https://ror.org/02n9shp96', 'no_lang_code', 1, 'https://ror.org/02n9shp96 Dentaid (Spain)'), (62200, 'https://ror.org/02nb5ap42', 'en', 1, 'https://ror.org/02nb5ap42 Deutsche Evangelische Institut für Altertumswissenschaft German Protestant Institute of Archaeology'), (62201, 'https://ror.org/02ndam774', 'no_lang_code', 1, 'https://ror.org/02ndam774 Medspray (Netherlands)'), (62202, 'https://ror.org/02nds3w86', 'en', 1, 'https://ror.org/02nds3w86 Methodist Children’s Hospital'), (62203, 'https://ror.org/02neq6p97', 'en', 1, 'https://ror.org/02neq6p97 M.S.I. Foundation'), (62204, 'https://ror.org/02nh1np55', 'en', 1, 'https://ror.org/02nh1np55 Kim''s Eye Hospital 金眼科病院'), (62205, 'https://ror.org/02nkfan21', 'en', 1, 'https://ror.org/02nkfan21 Clinical Evaluation Research Unit'), (62206, 'https://ror.org/02nmj4h80', 'en', 1, 'https://ror.org/02nmj4h80 Roessingh Concern'), (62207, 'https://ror.org/02nn2tc47', 'de', 1, 'https://ror.org/02nn2tc47 Arbeitsgemeinschaft Urologische Onkologie'), (62208, 'https://ror.org/02nn5y377', 'fr', 1, 'https://ror.org/02nn5y377 Hôpital Privé Jean Mermo'), (62209, 'https://ror.org/02nqpk824', 'no_lang_code', 1, 'https://ror.org/02nqpk824 Advantageous Systems (United States)'), (62210, 'https://ror.org/02nr63q87', 'en', 1, 'https://ror.org/02nr63q87 Psychotherapy & Movement'), (62211, 'https://ror.org/02nray311', 'no_lang_code', 1, 'https://ror.org/02nray311 Meda (Germany)'), (62212, 'https://ror.org/02nrkmk47', 'no_lang_code', 1, 'https://ror.org/02nrkmk47 Edison Agrosciences (United States)'), (62213, 'https://ror.org/02nrv4053', 'en', 1, 'https://ror.org/02nrv4053 The Football Association'), (62214, 'https://ror.org/02ntwx703', 'de', 1, 'https://ror.org/02ntwx703 Stiftung Irene'), (62215, 'https://ror.org/02ntzaq32', 'en', 1, 'https://ror.org/02ntzaq32 International Society for Applied Cardiovascular Biology'), (62216, 'https://ror.org/02nwfp582', 'en', 1, 'https://ror.org/02nwfp582 Russian Society of Cardiology Российское кардиологическое общество'), (62217, 'https://ror.org/02nwyam20', 'no_lang_code', 1, 'https://ror.org/02nwyam20 Stryker (Netherlands)'), (62218, 'https://ror.org/02nz06f09', 'en', 1, 'https://ror.org/02nz06f09 Noran Neurological Clinic'), (62219, 'https://ror.org/02p046236', 'en', 1, 'https://ror.org/02p046236 Turner Eye Institute'), (62220, 'https://ror.org/02p0etp25', 'en', 1, 'https://ror.org/02p0etp25 St. Joseph Heritage Medical Group'), (62221, 'https://ror.org/02p2ybt36', 'no_lang_code', 1, 'https://ror.org/02p2ybt36 Stryker (Japan)'), (62222, 'https://ror.org/02p6m2x11', 'en', 1, 'https://ror.org/02p6m2x11 The Piton Foundation'), (62223, 'https://ror.org/02p9va007', 'id', 1, 'https://ror.org/02p9va007 Rumah Sakit Umum Haji Surabaya'), (62224, 'https://ror.org/02paqmq68', 'de', 1, 'https://ror.org/02paqmq68 St. Vinzenz Kliniken Pfronten im Allgäu'), (62225, 'https://ror.org/02pd5tw33', 'en', 1, 'https://ror.org/02pd5tw33 Kenniscentrum Sport Knowledge Centre for Sport Netherlands'), (62226, 'https://ror.org/02pe43019', 'en', 1, 'https://ror.org/02pe43019 National Asociation of General Practitioners in Bulgaria'), (62227, 'https://ror.org/02pedxm79', 'en', 1, 'https://ror.org/02pedxm79 The Centre of Chinese Medicine'), (62228, 'https://ror.org/02pfg4167', 'en', 1, 'https://ror.org/02pfg4167 International Association for Human Values'), (62229, 'https://ror.org/02pg06c63', 'en', 1, 'https://ror.org/02pg06c63 CHRISTUS St. Vincent Regional Cancer Center'), (62230, 'https://ror.org/02pg9t310', 'en', 1, 'https://ror.org/02pg9t310 PrimaryPlus'), (62231, 'https://ror.org/02pj2bt04', 'en', 1, 'https://ror.org/02pj2bt04 Bucci Laser Vision Institute'), (62232, 'https://ror.org/02pjd1n70', 'en', 1, 'https://ror.org/02pjd1n70 Children''s Hospital at Saint Francis'), (62233, 'https://ror.org/02pjn5k45', 'de', 1, 'https://ror.org/02pjn5k45 Deutsches Institut für Telemedizin und Gesundheitsförderung'), (62234, 'https://ror.org/02pndtz33', 'en', 1, 'https://ror.org/02pndtz33 Ohio Pediatric Research Association'), (62235, 'https://ror.org/02pq1z922', 'en', 1, 'https://ror.org/02pq1z922 Behavioral Health of the Palm Beaches'), (62236, 'https://ror.org/02pqj5664', 'no_lang_code', 1, 'https://ror.org/02pqj5664 Eurosets (Italy)'), (62237, 'https://ror.org/02pqkyr67', 'en', 1, 'https://ror.org/02pqkyr67 New Jersey Psychological Association'), (62238, 'https://ror.org/02psfb488', 'en', 1, 'https://ror.org/02psfb488 China Soong Ching Ling Foundation'), (62239, 'https://ror.org/02psj8r24', 'en', 1, 'https://ror.org/02psj8r24 University Multipurpose Hospital for Active Treatment "Sveti Georgi" Университетската многопрофилна болница за активно лечение „Свети Георги“'), (62240, 'https://ror.org/02psykc67', 'de', 1, 'https://ror.org/02psykc67 Marienkrankenhaus Hamburg'), (62241, 'https://ror.org/02pv1pj08', 'no_lang_code', 1, 'https://ror.org/02pv1pj08 Northern Therapeutics (Canada)'), (62242, 'https://ror.org/02pzmtt36', 'en', 1, 'https://ror.org/02pzmtt36 Physician’s Hair Institute'), (62243, 'https://ror.org/02q0ygf45', 'no_lang_code', 1, 'https://ror.org/02q0ygf45 OBS Medical (United Kingdom)'), (62244, 'https://ror.org/02q13mm97', 'en', 1, 'https://ror.org/02q13mm97 Regenerative Medicine Institute'), (62245, 'https://ror.org/02q1k8269', 'de', 1, 'https://ror.org/02q1k8269 Krebsgesellschaft Nordrhein-Westfalen'), (62246, 'https://ror.org/02q1t6t25', 'en', 1, 'https://ror.org/02q1t6t25 Usenix Association'), (62247, 'https://ror.org/02q2ct796', 'en', 1, 'https://ror.org/02q2ct796 Union Settlement'), (62248, 'https://ror.org/02q3wwm43', 'en', 1, 'https://ror.org/02q3wwm43 Telluride Science Research Center'), (62249, 'https://ror.org/02q7g9n47', 'no_lang_code', 1, 'https://ror.org/02q7g9n47 Phonak (Germany)'), (62250, 'https://ror.org/02q9v7665', 'en', 1, 'https://ror.org/02q9v7665 California Liver Research Institute'), (62251, 'https://ror.org/02qa68339', 'en', 1, 'https://ror.org/02qa68339 National Parks Conservation Association'), (62252, 'https://ror.org/02qacef07', 'no_lang_code', 1, 'https://ror.org/02qacef07 Gilead Sciences (Spain)'), (62253, 'https://ror.org/02qbaz641', 'no_lang_code', 1, 'https://ror.org/02qbaz641 Luye Pharma (Switzerland)'), (62254, 'https://ror.org/02qfg2147', 'de', 1, 'https://ror.org/02qfg2147 Brost Stiftung'), (62255, 'https://ror.org/02qhn7905', 'en', 1, 'https://ror.org/02qhn7905 Idaho Urologic Institute'), (62256, 'https://ror.org/02qhvwx61', 'no_lang_code', 1, 'https://ror.org/02qhvwx61 Guz "Tul''skiy Oblastnoy Onkologicheskiy Dispanser'), (62257, 'https://ror.org/02qk94m81', 'en', 1, 'https://ror.org/02qk94m81 Vancouver Clinic'), (62258, 'https://ror.org/02qkddx94', 'en', 1, 'https://ror.org/02qkddx94 Arizona Pain Specialists'), (62259, 'https://ror.org/02qktq607', 'en', 1, 'https://ror.org/02qktq607 Bulgarian Cardiac Institute'), (62260, 'https://ror.org/02qmczs49', 'no_lang_code', 1, 'https://ror.org/02qmczs49 Devicia (Sweden)'), (62261, 'https://ror.org/02qmfy413', 'en', 1, 'https://ror.org/02qmfy413 Gibson Institute of Cognitive Research'), (62262, 'https://ror.org/02qnzpb65', 'en', 1, 'https://ror.org/02qnzpb65 The Farah Hospital'), (62263, 'https://ror.org/02qpa9w62', 'en', 1, 'https://ror.org/02qpa9w62 Larue Carter Hospital'), (62264, 'https://ror.org/02qpd5a14', 'nl', 1, 'https://ror.org/02qpd5a14 Volandis'), (62265, 'https://ror.org/02qq1pn56', 'es', 1, 'https://ror.org/02qq1pn56 Liga Nacional Contra el Cáncer'), (62266, 'https://ror.org/02qs4wf90', 'en', 1, 'https://ror.org/02qs4wf90 National Institute of Neurosciences & Hospital'), (62267, 'https://ror.org/02qscpy04', 'no_lang_code', 1, 'https://ror.org/02qscpy04 Applied Scientific Research (United States)'), (62268, 'https://ror.org/02qsnza70', 'en', 1, 'https://ror.org/02qsnza70 Cornea Eye Institute'), (62269, 'https://ror.org/02qthww36', 'en', 1, 'https://ror.org/02qthww36 Libin Cardiovascular Institute of Alberta'), (62270, 'https://ror.org/02qw11p11', 'no_lang_code', 1, 'https://ror.org/02qw11p11 Hollister (Germany)'), (62271, 'https://ror.org/02qxd8910', 'en', 1, 'https://ror.org/02qxd8910 Columbus Center'), (62272, 'https://ror.org/02qyyew72', 'en', 1, 'https://ror.org/02qyyew72 Nepal Red Cross Society'), (62273, 'https://ror.org/02qzyds37', 'en', 1, 'https://ror.org/02qzyds37 Gordon Schanzlin New Vision Institute'), (62274, 'https://ror.org/02r0j1w74', 'en', 1, 'https://ror.org/02r0j1w74 Program Support Center'), (62275, 'https://ror.org/02r0j7m07', 'en', 1, 'https://ror.org/02r0j7m07 Addiction Research Foundation'), (62276, 'https://ror.org/02r0jj466', 'nl', 1, 'https://ror.org/02r0jj466 Stichting Weeshuis der Doopsgezinden'), (62277, 'https://ror.org/02r15q206', 'no_lang_code', 1, 'https://ror.org/02r15q206 Novitas BKK (Germany)'), (62278, 'https://ror.org/02r17me31', 'en', 1, 'https://ror.org/02r17me31 Ministry Of Health'), (62279, 'https://ror.org/02r23w007', 'en', 1, 'https://ror.org/02r23w007 Xi''an Botanical Garden of Shaanxi Province 陕西西安植物园'), (62280, 'https://ror.org/02r2n8660', 'en', 1, 'https://ror.org/02r2n8660 The Loka Institute'), (62281, 'https://ror.org/02r2nns16', 'de', 1, 'https://ror.org/02r2nns16 Universitätsklinikum Krems'), (62282, 'https://ror.org/02r4exx90', 'en', 1, 'https://ror.org/02r4exx90 Barrow Brain and Spine'), (62283, 'https://ror.org/02r6d9v55', 'no_lang_code', 1, 'https://ror.org/02r6d9v55 Equilab International (Indonesia)'), (62284, 'https://ror.org/02r7ybh06', 'no_lang_code', 1, 'https://ror.org/02r7ybh06 Seven Bridges Genomics (United States)'), (62285, 'https://ror.org/02r89nc92', 'no_lang_code', 1, 'https://ror.org/02r89nc92 Medication Management (United States)'), (62286, 'https://ror.org/02r8sh830', 'de', 1, 'https://ror.org/02r8sh830 Helios Universitätsklinikum Wuppertal'), (62287, 'https://ror.org/02ra2yn55', 'fr', 1, 'https://ror.org/02ra2yn55 Ligue Pulmonaire Genevoise'), (62288, 'https://ror.org/02rc09k84', 'en', 1, 'https://ror.org/02rc09k84 Hellenic Society for Chemotherapy Ελληνική Εταιρεία Χημειοθεραπείας'), (62289, 'https://ror.org/02rcdta59', 'fr', 1, 'https://ror.org/02rcdta59 Centre Hospitalier d''Angoulême'), (62290, 'https://ror.org/02rdz4018', 'en', 1, 'https://ror.org/02rdz4018 Karen Horney Institut'), (62291, 'https://ror.org/02rgbry52', 'en', 1, 'https://ror.org/02rgbry52 ShangHai JiAi Genetics & IVF Institute 上海吉爱遗传与体外受精研究所'), (62292, 'https://ror.org/02rgedp64', 'en', 1, 'https://ror.org/02rgedp64 Southeast Renal Research Institute'), (62293, 'https://ror.org/02rh62014', 'en', 1, 'https://ror.org/02rh62014 US Cancer Management Corporation'), (62294, 'https://ror.org/02rhspt79', 'en', 1, 'https://ror.org/02rhspt79 University of Hawaii Maui College'), (62295, 'https://ror.org/02rmzps48', 'no_lang_code', 1, 'https://ror.org/02rmzps48 Cliantha (India)'), (62296, 'https://ror.org/02rpznn70', 'en', 1, 'https://ror.org/02rpznn70 Sinus & Respiratory Disease Center'), (62297, 'https://ror.org/02rsv1244', 'en', 1, 'https://ror.org/02rsv1244 Gansu Research Academy of Forestry Science and Technology 甘肃林业科技研究院'), (62298, 'https://ror.org/02rw7eq98', 'de', 1, 'https://ror.org/02rw7eq98 Rehaklinik Glotterbad'), (62299, 'https://ror.org/02rxx7m82', 'no_lang_code', 1, 'https://ror.org/02rxx7m82 Sewon Cellontech (South Korea)'), (62300, 'https://ror.org/02rycyg15', 'nl', 1, 'https://ror.org/02rycyg15 Depressie Vereniging'), (62301, 'https://ror.org/02rzjbv15', 'en', 1, 'https://ror.org/02rzjbv15 Virtual Reality Medical Center'), (62302, 'https://ror.org/02s04ww23', 'en', 1, 'https://ror.org/02s04ww23 Ronan Thompson Foundation'), (62303, 'https://ror.org/02s113s62', 'en', 1, 'https://ror.org/02s113s62 Eyehope'), (62304, 'https://ror.org/02s28z540', 'en', 1, 'https://ror.org/02s28z540 Nacionalna i univerzitetska biblioteka Bosne i Hercegovine National and University Library of Bosnia and Herzegovina Национална и универзитетска библиотека Босне и Херцеговине'), (62305, 'https://ror.org/02s6t9r74', 'no_lang_code', 1, 'https://ror.org/02s6t9r74 Teva Pharmaceuticals (Netherlands)'), (62306, 'https://ror.org/02s70bh95', 'en', 1, 'https://ror.org/02s70bh95 Cardiovascular Research Center'), (62307, 'https://ror.org/02s7ywx66', 'en', 1, 'https://ror.org/02s7ywx66 Lions Eye Bank at Albany'), (62308, 'https://ror.org/02s8ewa53', 'no_lang_code', 1, 'https://ror.org/02s8ewa53 Hemics (Netherlands)'), (62309, 'https://ror.org/02s8t4443', 'en', 1, 'https://ror.org/02s8t4443 Kansas City Research Institute'), (62310, 'https://ror.org/02sdeme12', 'en', 1, 'https://ror.org/02sdeme12 Innovation Research Center'), (62311, 'https://ror.org/02skjv125', 'no_lang_code', 1, 'https://ror.org/02skjv125 Mathys (Switzerland)'), (62312, 'https://ror.org/02skr9c69', 'es', 1, 'https://ror.org/02skr9c69 Cerveceros de España The Brewers of Spain'), (62313, 'https://ror.org/02skrkk58', 'de', 1, 'https://ror.org/02skrkk58 Gemeinschaftskrankenhaus Havelhöhe'), (62314, 'https://ror.org/02smhv438', 'no_lang_code', 1, 'https://ror.org/02smhv438 BQS Institut für Qualität und Patientensicherheit (Germany)'), (62315, 'https://ror.org/02smpkw21', 'en', 1, 'https://ror.org/02smpkw21 Northern Cancer Institute'), (62316, 'https://ror.org/02snnvx48', 'en', 1, 'https://ror.org/02snnvx48 Wound Healing Society'), (62317, 'https://ror.org/02sp87b11', 'en', 1, 'https://ror.org/02sp87b11 Pacific Tuberculosis and Cancer Research'), (62318, 'https://ror.org/02sqx2x96', 'en', 1, 'https://ror.org/02sqx2x96 Heart Valve Society of America'), (62319, 'https://ror.org/02sv3b352', 'en', 1, 'https://ror.org/02sv3b352 NeuroVita Clinic Клиника Нейровита'), (62320, 'https://ror.org/02svxyd97', 'en', 1, 'https://ror.org/02svxyd97 League of European Research Universities'), (62321, 'https://ror.org/02sxbsz55', 'en', 1, 'https://ror.org/02sxbsz55 Castanera Institute of Ophthalmology Instituto de Oftalmología Castanera'), (62322, 'https://ror.org/02sxqb906', 'fr', 1, 'https://ror.org/02sxqb906 Association Nationale pour le Developpement de la Qualité Dans les Hôpitaux et Les Cliniques'), (62323, 'https://ror.org/02sy4cy69', 'en', 1, 'https://ror.org/02sy4cy69 Palynological Society'), (62324, 'https://ror.org/02sz82d98', 'en', 1, 'https://ror.org/02sz82d98 Center for Neurologic Study'), (62325, 'https://ror.org/02t15ae18', 'no_lang_code', 1, 'https://ror.org/02t15ae18 AXA Health (United Kingdom)'), (62326, 'https://ror.org/02t4fs169', 'en', 1, 'https://ror.org/02t4fs169 Southwest Kidney Institute'), (62327, 'https://ror.org/02t4nzq07', 'en', 1, 'https://ror.org/02t4nzq07 Fuzhou Second Hospital 福州市第二医院'), (62328, 'https://ror.org/02t63ax82', 'en', 1, 'https://ror.org/02t63ax82 Surya Chest Foundation'), (62329, 'https://ror.org/02t771148', 'en', 1, 'https://ror.org/02t771148 National Cancer Institute'), (62330, 'https://ror.org/02t7cwz48', 'de', 1, 'https://ror.org/02t7cwz48 Stiftung Tumorforschung Kopf-Hals'), (62331, 'https://ror.org/02t9kcf24', 'it', 1, 'https://ror.org/02t9kcf24 Istituto Europeo di Microchirurgia Oculare'), (62332, 'https://ror.org/02t9tba68', 'en', 1, 'https://ror.org/02t9tba68 Rare Cancers Australia'), (62333, 'https://ror.org/02ta1jp69', 'no_lang_code', 1, 'https://ror.org/02ta1jp69 Roche (Hungary)'), (62334, 'https://ror.org/02tb42851', 'en', 1, 'https://ror.org/02tb42851 Cairns Professional Game Fishing Association'), (62335, 'https://ror.org/02tg91795', 'en', 1, 'https://ror.org/02tg91795 Aegean Conferences'), (62336, 'https://ror.org/02tgb3473', 'en', 1, 'https://ror.org/02tgb3473 Reach-Aut Academic Centre for Autism'), (62337, 'https://ror.org/02tge6s12', 'no_lang_code', 1, 'https://ror.org/02tge6s12 Accutest (India)'), (62338, 'https://ror.org/02tgkny75', 'en', 1, 'https://ror.org/02tgkny75 Weisenthal Cancer Group'), (62339, 'https://ror.org/02tj1ha51', 'no_lang_code', 1, 'https://ror.org/02tj1ha51 Ophtec (Netherlands)'), (62340, 'https://ror.org/02tj1w674', 'no_lang_code', 1, 'https://ror.org/02tj1w674 Shahid Kamyab Hospital بیمارستان شهید کامیاب'), (62341, 'https://ror.org/02tkzg027', 'en', 1, 'https://ror.org/02tkzg027 Lakeland Community Hospital'), (62342, 'https://ror.org/02tnw4027', 'ro', 1, 'https://ror.org/02tnw4027 Spitalul Universitar de Urgență Elias'), (62343, 'https://ror.org/02tnzjs62', 'no_lang_code', 1, 'https://ror.org/02tnzjs62 Oliak Center'), (62344, 'https://ror.org/02tpd3k28', 'no_lang_code', 1, 'https://ror.org/02tpd3k28 IntellADAPT (United States)'), (62345, 'https://ror.org/02tr9yc56', 'en', 1, 'https://ror.org/02tr9yc56 Horizon House'), (62346, 'https://ror.org/02trmev56', 'no_lang_code', 1, 'https://ror.org/02trmev56 Twist Bioscience (United States)'), (62347, 'https://ror.org/02trxcb02', 'en', 1, 'https://ror.org/02trxcb02 Pyatigorsk Oncology Center Пятигорский онкологический диспансер'), (62348, 'https://ror.org/02ts4qr04', 'no_lang_code', 1, 'https://ror.org/02ts4qr04 Disphar International (Netherlands)'), (62349, 'https://ror.org/02ts9m233', 'en', 1, 'https://ror.org/02ts9m233 Sudan Medical Specialization Board'), (62350, 'https://ror.org/02tx52885', 'no_lang_code', 1, 'https://ror.org/02tx52885 Nutrition & Santé (Spain)'), (62351, 'https://ror.org/02tyedh23', 'en', 1, 'https://ror.org/02tyedh23 Peninsula Cancer Center'), (62352, 'https://ror.org/02tzf4h03', 'en', 1, 'https://ror.org/02tzf4h03 Hermann Buhl Institut'), (62353, 'https://ror.org/02tzmns59', 'en', 1, 'https://ror.org/02tzmns59 Community Hospital of Anaconda'), (62354, 'https://ror.org/02v14dw26', 'en', 1, 'https://ror.org/02v14dw26 Virginia Gastroenterology Institute'), (62355, 'https://ror.org/02v1bhf02', 'nl', 1, 'https://ror.org/02v1bhf02 Nederlandse Vereniging voor Acupunctuur'), (62356, 'https://ror.org/02v2jvk84', 'no_lang_code', 1, 'https://ror.org/02v2jvk84 Univa (United States)'), (62357, 'https://ror.org/02v72sd52', 'en', 1, 'https://ror.org/02v72sd52 Chhattisgarh Dental College & Research Institute'), (62358, 'https://ror.org/02v8db677', 'de', 1, 'https://ror.org/02v8db677 KRH Klinikum Agnes Karll Laatzen'), (62359, 'https://ror.org/02v8ews69', 'no_lang_code', 1, 'https://ror.org/02v8ews69 Mid Michigan Research (United States)'), (62360, 'https://ror.org/02v8jq558', 'en', 1, 'https://ror.org/02v8jq558 Xerces Society'), (62361, 'https://ror.org/02v97gj05', 'en', 1, 'https://ror.org/02v97gj05 Firma Clinical Research'), (62362, 'https://ror.org/02va7tv42', 'no_lang_code', 1, 'https://ror.org/02va7tv42 Allergan (Taiwan)'), (62363, 'https://ror.org/02van6g18', 'en', 1, 'https://ror.org/02van6g18 Syrentis Clinical Research'), (62364, 'https://ror.org/02vdkna52', 'en', 1, 'https://ror.org/02vdkna52 Wisconsin Elks Association'), (62365, 'https://ror.org/02veq1j93', 'de', 1, 'https://ror.org/02veq1j93 Universitäts Frauenklinik'), (62366, 'https://ror.org/02vf9n064', 'en', 1, 'https://ror.org/02vf9n064 Oceanic Research Group'), (62367, 'https://ror.org/02vfq9e70', 'en', 1, 'https://ror.org/02vfq9e70 Bangladesh Institute of ICT in Development উন্নয়ন আইসিটি বাংলাদেশ ইনস্টিটিউট'), (62368, 'https://ror.org/02vja3r71', 'no_lang_code', 1, 'https://ror.org/02vja3r71 Vascular Insights (United States)'), (62369, 'https://ror.org/02vmgqy82', 'en', 1, 'https://ror.org/02vmgqy82 Bay Area Retina Associates'), (62370, 'https://ror.org/02vpbac71', 'no_lang_code', 1, 'https://ror.org/02vpbac71 Bayer (Italy)'), (62371, 'https://ror.org/02vra9861', 'no_lang_code', 1, 'https://ror.org/02vra9861 International Pemphigus & Pemphigoid Foundation'), (62372, 'https://ror.org/02vrnsq93', 'en', 1, 'https://ror.org/02vrnsq93 Hilo Medical Center'), (62373, 'https://ror.org/02vsng207', 'nl', 1, 'https://ror.org/02vsng207 Jellinek'), (62374, 'https://ror.org/02vtdx988', 'en', 1, 'https://ror.org/02vtdx988 Houston Museum of Natural Science'), (62375, 'https://ror.org/02vtk3a57', 'nl', 1, 'https://ror.org/02vtk3a57 Lygature'), (62376, 'https://ror.org/02vv8px12', 'en', 1, 'https://ror.org/02vv8px12 Texas Dermatology and Laser Specialists'), (62377, 'https://ror.org/02vw1hj64', 'en', 1, 'https://ror.org/02vw1hj64 Main Line Fertility'), (62378, 'https://ror.org/02vwqfb11', 'en', 1, 'https://ror.org/02vwqfb11 Ainsworth Institute of Pain Management'), (62379, 'https://ror.org/02vz7hv03', 'en', 1, 'https://ror.org/02vz7hv03 Comprehensive Blood & Cancer Center'), (62380, 'https://ror.org/02vzd2x77', 'en', 1, 'https://ror.org/02vzd2x77 Life Extension Foundation'), (62381, 'https://ror.org/02vzhpz25', 'en', 1, 'https://ror.org/02vzhpz25 Irish Society of Chartered Physiotherapists'), (62382, 'https://ror.org/02w0smy45', 'de', 1, 'https://ror.org/02w0smy45 Universitätsklinik für Strahlentherapie'), (62383, 'https://ror.org/02w1djg46', 'es', 1, 'https://ror.org/02w1djg46 Fecunditas Instituto de Medicina Reproductiva'), (62384, 'https://ror.org/02w1dxn42', 'nl', 1, 'https://ror.org/02w1dxn42 Rugpoli'), (62385, 'https://ror.org/02w4b7q15', 'no_lang_code', 1, 'https://ror.org/02w4b7q15 Pharmaxis (United Kingdom)'), (62386, 'https://ror.org/02w6f6b92', 'de', 1, 'https://ror.org/02w6f6b92 Deutsche Rheuma-Liga'), (62387, 'https://ror.org/02w74ad83', 'no_lang_code', 1, 'https://ror.org/02w74ad83 Nexmatix (United States)'), (62388, 'https://ror.org/02w7z1d65', 'en', 1, 'https://ror.org/02w7z1d65 Stem Cell Institute'), (62389, 'https://ror.org/02w9pcv48', 'en', 1, 'https://ror.org/02w9pcv48 Orenburg Regional Clinical Oncology Center Оренбургский областной клинический онкологический диспансер'), (62390, 'https://ror.org/02wg7hx42', 'en', 1, 'https://ror.org/02wg7hx42 American Society for Apheresis'), (62391, 'https://ror.org/02wj4f624', 'no_lang_code', 1, 'https://ror.org/02wj4f624 Scientific Imaging and Visualization (United States)'), (62392, 'https://ror.org/02wmh7s95', 'no_lang_code', 1, 'https://ror.org/02wmh7s95 CasaLuker (Colombia)'), (62393, 'https://ror.org/02wmkpz59', 'nl', 1, 'https://ror.org/02wmkpz59 Sport Medisch Centrum Papendal'), (62394, 'https://ror.org/02wn5ed02', 'es', 1, 'https://ror.org/02wn5ed02 Hospitales Nisa'), (62395, 'https://ror.org/02wq0c278', 'en', 1, 'https://ror.org/02wq0c278 Success for All Foundation'), (62396, 'https://ror.org/02wq1wf87', 'en', 1, 'https://ror.org/02wq1wf87 Council for Opportunity in Education'), (62397, 'https://ror.org/02wqv1w77', 'fr', 1, 'https://ror.org/02wqv1w77 Clinique du Pont Saint-Vaast'), (62398, 'https://ror.org/02wr5jh59', 'no_lang_code', 1, 'https://ror.org/02wr5jh59 Pulmonx (Switzerland)'), (62399, 'https://ror.org/02wsg8t40', 'en', 1, 'https://ror.org/02wsg8t40 Scientists Center for Animal Welfare'), (62400, 'https://ror.org/02wspvn72', 'en', 1, 'https://ror.org/02wspvn72 Yin Huo Health Association 银火健康协会'), (62401, 'https://ror.org/02wtq1680', 'en', 1, 'https://ror.org/02wtq1680 Pain Cure Center'), (62402, 'https://ror.org/02wv74f83', 'no_lang_code', 1, 'https://ror.org/02wv74f83 Mathys (Germany)'), (62403, 'https://ror.org/02wv88v83', 'no_lang_code', 1, 'https://ror.org/02wv88v83 Ivoclar Vivadent (Germany)'), (62404, 'https://ror.org/02wvtac27', 'en', 1, 'https://ror.org/02wvtac27 Clinical Pharmacology of Miami'), (62405, 'https://ror.org/02ww26h70', 'no_lang_code', 1, 'https://ror.org/02ww26h70 Shionogi (United States)'), (62406, 'https://ror.org/02ww5xj89', 'en', 1, 'https://ror.org/02ww5xj89 Samnium Medica'), (62407, 'https://ror.org/02ww9rk15', 'en', 1, 'https://ror.org/02ww9rk15 National Foundation for Autism Research'), (62408, 'https://ror.org/02wwqa894', 'en', 1, 'https://ror.org/02wwqa894 Central Carolina Technical College'), (62409, 'https://ror.org/02wx2j769', 'en', 1, 'https://ror.org/02wx2j769 South Coast Dermatology Institute'), (62410, 'https://ror.org/02wymnj87', 'en', 1, 'https://ror.org/02wymnj87 Osaka Prefectural Government 大阪府'), (62411, 'https://ror.org/02x2pnc94', 'no_lang_code', 1, 'https://ror.org/02x2pnc94 Advanced Sports Installations (Estonia)'), (62412, 'https://ror.org/02x62c182', 'en', 1, 'https://ror.org/02x62c182 Her Many Voices Foundation'), (62413, 'https://ror.org/02x67gd16', 'no_lang_code', 1, 'https://ror.org/02x67gd16 CameraPil (Netherlands)'), (62414, 'https://ror.org/02x8dnq97', 'no_lang_code', 1, 'https://ror.org/02x8dnq97 Sanofi (Argentina)'), (62415, 'https://ror.org/02x8fdg77', 'en', 1, 'https://ror.org/02x8fdg77 Lake Erie Research Institute'), (62416, 'https://ror.org/02x8kf546', 'en', 1, 'https://ror.org/02x8kf546 ARCUS Sportkliniken ARCUS Sports Clinic'), (62417, 'https://ror.org/02x8t7c47', 'en', 1, 'https://ror.org/02x8t7c47 Northern California Melanoma Center'), (62418, 'https://ror.org/02xa21y06', 'en', 1, 'https://ror.org/02xa21y06 QUIRIS Healthcare'), (62419, 'https://ror.org/02xb05b57', 'no_lang_code', 1, 'https://ror.org/02xb05b57 Crospon (Ireland)'), (62420, 'https://ror.org/02xbtxj19', 'en', 1, 'https://ror.org/02xbtxj19 Door County Medical Center'), (62421, 'https://ror.org/02xejyg29', 'no_lang_code', 1, 'https://ror.org/02xejyg29 Nano Hydrophobics (United States)'), (62422, 'https://ror.org/02xffg312', 'en', 1, 'https://ror.org/02xffg312 Buildings Performance Institute Europe'), (62423, 'https://ror.org/02xjdnj70', 'nl', 1, 'https://ror.org/02xjdnj70 Amstelring'), (62424, 'https://ror.org/02xkaan08', 'en', 1, 'https://ror.org/02xkaan08 Jinan Municipal Environmental Protection Bureau 济南市环保局'), (62425, 'https://ror.org/02xpekp13', 'en', 1, 'https://ror.org/02xpekp13 Community Living'), (62426, 'https://ror.org/02xq0ba35', 'en', 1, 'https://ror.org/02xq0ba35 European Pathway Association'), (62427, 'https://ror.org/02xq21g71', 'en', 1, 'https://ror.org/02xq21g71 International Heart and Lung Institute'), (62428, 'https://ror.org/02xqfym19', 'nl', 1, 'https://ror.org/02xqfym19 Stichting Afasie Nederland'), (62429, 'https://ror.org/02xqq7c82', 'no_lang_code', 1, 'https://ror.org/02xqq7c82 Octapharma (France)'), (62430, 'https://ror.org/02xrnet37', 'no_lang_code', 1, 'https://ror.org/02xrnet37 Horizon Communications (United States)'), (62431, 'https://ror.org/02xs7rw35', 'no_lang_code', 1, 'https://ror.org/02xs7rw35 Almased (Germany)'), (62432, 'https://ror.org/02xss3674', 'en', 1, 'https://ror.org/02xss3674 Institut für Klinisch Onkologische Forschung Institute of Clinical Cancer Research'), (62433, 'https://ror.org/02xtw2e05', 'en', 1, 'https://ror.org/02xtw2e05 Plano Cancer Institute'), (62434, 'https://ror.org/02xw5a882', 'no_lang_code', 1, 'https://ror.org/02xw5a882 QD Laser (Germany)'), (62435, 'https://ror.org/02xyd6272', 'no_lang_code', 1, 'https://ror.org/02xyd6272 Bauerfeind (Germany)'), (62436, 'https://ror.org/02xypxj44', 'en', 1, 'https://ror.org/02xypxj44 Taiwan Association of Gynecologic Oncologists'), (62437, 'https://ror.org/02xztvm24', 'en', 1, 'https://ror.org/02xztvm24 Dutch Endovascular Alliance'), (62438, 'https://ror.org/02y1vmj66', 'it', 1, 'https://ror.org/02y1vmj66 Epatocentro Ticino'), (62439, 'https://ror.org/02y9p0566', 'es', 1, 'https://ror.org/02y9p0566 Centro Cultural de España en Malabo'), (62440, 'https://ror.org/02y9vw172', 'no_lang_code', 1, 'https://ror.org/02y9vw172 Plethora Solutions (United Kingdom)'), (62441, 'https://ror.org/02yaq1v87', 'pt', 1, 'https://ror.org/02yaq1v87 Faculdade de Medicina de Petrópolis'), (62442, 'https://ror.org/02yfds142', 'en', 1, 'https://ror.org/02yfds142 SoutheastHEALTH'), (62443, 'https://ror.org/02ygjtg18', 'en', 1, 'https://ror.org/02ygjtg18 Association of Oncology Social Work'), (62444, 'https://ror.org/02yk7ya44', 'en', 1, 'https://ror.org/02yk7ya44 Zhejiang University Medical College Affiliated Stomatological Hospital 浙江大学医学院附属口腔医院'), (62445, 'https://ror.org/02ymb2422', 'vi', 1, 'https://ror.org/02ymb2422 Hội Tim mạch học Việt Nam Vietnam Heart Association'), (62446, 'https://ror.org/02yndaw76', 'no_lang_code', 1, 'https://ror.org/02yndaw76 Sydney Fish Market (Australia)'), (62447, 'https://ror.org/02ynj6025', 'en', 1, 'https://ror.org/02ynj6025 Vision Impact Institute'), (62448, 'https://ror.org/02ypxp350', 'en', 1, 'https://ror.org/02ypxp350 Metal Powder Industries Federation'), (62449, 'https://ror.org/02yq5yf84', 'no_lang_code', 1, 'https://ror.org/02yq5yf84 Morphotek (United States)'), (62450, 'https://ror.org/02yvvjz71', 'en', 1, 'https://ror.org/02yvvjz71 Orthopaedic Institute of Western Kentucky'), (62451, 'https://ror.org/02ywc9x30', 'en', 1, 'https://ror.org/02ywc9x30 The Korean Society of Blood and Marrow Transplantation 대한 혈액 순환 학회'), (62452, 'https://ror.org/02yxqm243', 'en', 1, 'https://ror.org/02yxqm243 Budgetary Healthcare Institution of Omsk Region Regional Clinical Hospital'), (62453, 'https://ror.org/02yy16t83', 'en', 1, 'https://ror.org/02yy16t83 St. Petersburg State Health Care Foundation "Mariinsky City Hospital"'), (62454, 'https://ror.org/02yy1n467', 'en', 1, 'https://ror.org/02yy1n467 Belgian Burn Foundation'), (62455, 'https://ror.org/02yzgv231', 'en', 1, 'https://ror.org/02yzgv231 Franciscan Health Mooresville'), (62456, 'https://ror.org/02z138x11', 'nl', 1, 'https://ror.org/02z138x11 Maatschap Friese Longartsen'), (62457, 'https://ror.org/02z2af868', 'no_lang_code', 1, 'https://ror.org/02z2af868 K-Implant (Germany)'), (62458, 'https://ror.org/02z7cqw59', 'no_lang_code', 1, 'https://ror.org/02z7cqw59 Inter-Mountain Laboratories (United States)'), (62459, 'https://ror.org/02z7tpb72', 'en', 1, 'https://ror.org/02z7tpb72 Amita Health'), (62460, 'https://ror.org/02z84jh79', 'en', 1, 'https://ror.org/02z84jh79 Brain Tumour Alliance Australia'), (62461, 'https://ror.org/02z8m4v62', 'en', 1, 'https://ror.org/02z8m4v62 IVF Centers Prof. Zech Willkommen in den IVF Zentren Prof. Zech'), (62462, 'https://ror.org/02z8q9w63', 'de', 1, 'https://ror.org/02z8q9w63 Schweizerische Ärztegesellschaft für Psycholytische Therapie'), (62463, 'https://ror.org/02zcey775', 'en', 1, 'https://ror.org/02zcey775 Bijhem Scientific'), (62464, 'https://ror.org/02ze9rw51', 'en', 1, 'https://ror.org/02ze9rw51 KaRaMinds'), (62465, 'https://ror.org/02zfmm828', 'en', 1, 'https://ror.org/02zfmm828 Community Ministry of Prince George’s County'), (62466, 'https://ror.org/02zhc2371', 'no_lang_code', 1, 'https://ror.org/02zhc2371 Innovative Technology Laboratories (United States)'), (62467, 'https://ror.org/02zkb9v82', 'no_lang_code', 1, 'https://ror.org/02zkb9v82 Revenue Management Solutions (United States)'), (62468, 'https://ror.org/02zkjhv23', 'de', 1, 'https://ror.org/02zkjhv23 Eifelklinik Manderscheid'), (62469, 'https://ror.org/02zmrd443', 'de', 1, 'https://ror.org/02zmrd443 Klinik und Poliklinik für Augenheilkunde Universitätsklinikum Regensburg'), (62470, 'https://ror.org/02zsjtp80', 'en', 1, 'https://ror.org/02zsjtp80 Associated Scientists at Woods Hole'), (62471, 'https://ror.org/02ztdvb08', 'de', 1, 'https://ror.org/02ztdvb08 Stiftung Empiris'), (62472, 'https://ror.org/02ztj7h33', 'it', 1, 'https://ror.org/02ztj7h33 Federazione Ordini Farmacisti Italiani'), (62473, 'https://ror.org/02ztxmr86', 'en', 1, 'https://ror.org/02ztxmr86 Institute for Asthma and Allergy'), (62474, 'https://ror.org/02zv70s92', 'en', 1, 'https://ror.org/02zv70s92 Tyumen Regional Oncological Dispensary Тюменский областной онкологический диспансер'), (62475, 'https://ror.org/02zvbmm61', 'en', 1, 'https://ror.org/02zvbmm61 Vitos Orthopedic Clinic Kassel Vitos Orthopädische Klinik Kassel'), (62476, 'https://ror.org/02zvcx647', 'en', 1, 'https://ror.org/02zvcx647 Science Club'), (62477, 'https://ror.org/02zw96388', 'en', 1, 'https://ror.org/02zw96388 Chartered Institute of Housing'), (62478, 'https://ror.org/02zx70081', 'en', 1, 'https://ror.org/02zx70081 Omair Sana Foundation'), (62479, 'https://ror.org/02zxj2k87', 'no_lang_code', 1, 'https://ror.org/02zxj2k87 Finn Partners (United States)'), (62480, 'https://ror.org/03003by36', 'fr', 1, 'https://ror.org/03003by36 Centre Hospitalier Interrégional Edith Cavell'), (62481, 'https://ror.org/0300tx783', 'en', 1, 'https://ror.org/0300tx783 Planet Water Foundation'), (62482, 'https://ror.org/0301h9a14', 'no_lang_code', 1, 'https://ror.org/0301h9a14 AppScale (United States)'), (62483, 'https://ror.org/03048zv53', 'en', 1, 'https://ror.org/03048zv53 Western Sky Medical Research'), (62484, 'https://ror.org/0305pf426', 'no_lang_code', 1, 'https://ror.org/0305pf426 Wadsworth Golf Construction Company (United States)'), (62485, 'https://ror.org/0305w4x35', 'no_lang_code', 1, 'https://ror.org/0305w4x35 Art & Science Productions (United States)'), (62486, 'https://ror.org/0306c2632', 'en', 1, 'https://ror.org/0306c2632 Inflammation Research Foundation'), (62487, 'https://ror.org/0307hqx04', 'en', 1, 'https://ror.org/0307hqx04 Vinnytsya Regional Psychoneurological Hospital named after Academician O.I. Yushchenko'), (62488, 'https://ror.org/0308e9714', 'no_lang_code', 1, 'https://ror.org/0308e9714 Insite Medical Technologies (United States)'), (62489, 'https://ror.org/0309b0n18', 'no_lang_code', 1, 'https://ror.org/0309b0n18 VOCO (Germany)'), (62490, 'https://ror.org/030arp767', 'no_lang_code', 1, 'https://ror.org/030arp767 Acandis (Germany)'), (62491, 'https://ror.org/030bv9h77', 'en', 1, 'https://ror.org/030bv9h77 Holloman Air Force Base'), (62492, 'https://ror.org/030edbc02', 'no_lang_code', 1, 'https://ror.org/030edbc02 Clinical Research Consultants (United States)'), (62493, 'https://ror.org/030ehsk26', 'no_lang_code', 1, 'https://ror.org/030ehsk26 Luther Marketing Group (United Kingdom)'), (62494, 'https://ror.org/030f3bz67', 'en', 1, 'https://ror.org/030f3bz67 Amsterdam Institute for International Development'), (62495, 'https://ror.org/030gep771', 'en', 1, 'https://ror.org/030gep771 Roanoke-Chowan Community College'), (62496, 'https://ror.org/030kcs678', 'en', 1, 'https://ror.org/030kcs678 Allergy Asthma Research Institute'), (62497, 'https://ror.org/030kv0w79', 'nl', 1, 'https://ror.org/030kv0w79 Medisch Coördinerend Centrum Omnes'), (62498, 'https://ror.org/030mnsr75', 'no_lang_code', 1, 'https://ror.org/030mnsr75 Helbo Photodynamic Systems (Germany)'), (62499, 'https://ror.org/030nkeg78', 'es', 1, 'https://ror.org/030nkeg78 Insituto de Asistencia Reumatólogica Integral'), (62500, 'https://ror.org/030nx8440', 'no_lang_code', 1, 'https://ror.org/030nx8440 A.S. Watson (Netherlands)'), (62501, 'https://ror.org/030s5fz93', 'en', 1, 'https://ror.org/030s5fz93 Thomas John Vision Institute'), (62502, 'https://ror.org/030ss4c03', 'en', 1, 'https://ror.org/030ss4c03 Bharath Hospital & Institute of Oncology'), (62503, 'https://ror.org/030xn4p61', 'en', 1, 'https://ror.org/030xn4p61 Sadir Assistance'), (62504, 'https://ror.org/030ybgp98', 'en', 1, 'https://ror.org/030ybgp98 Mother and Child Foundation'), (62505, 'https://ror.org/030yhh648', 'da', 1, 'https://ror.org/030yhh648 Dansk Fertilitetsklinik'), (62506, 'https://ror.org/030yqfm02', 'es', 1, 'https://ror.org/030yqfm02 Ministerio de Salud'), (62507, 'https://ror.org/030z9kz64', 'no_lang_code', 1, 'https://ror.org/030z9kz64 UCB Pharma (Japan) ユーシービージャパン株式会社'), (62508, 'https://ror.org/030zk4850', 'nl', 1, 'https://ror.org/030zk4850 RINO Zuid'), (62509, 'https://ror.org/0310zet56', 'no_lang_code', 1, 'https://ror.org/0310zet56 Shanghai Han Guan Bio Chip (China) 上海华冠生物芯片有限公司简介'), (62510, 'https://ror.org/031334b36', 'en', 1, 'https://ror.org/031334b36 Krongrad Institute'), (62511, 'https://ror.org/0317vxn45', 'en', 1, 'https://ror.org/0317vxn45 Chaminade College Preparatory School'), (62512, 'https://ror.org/03188nr56', 'no_lang_code', 1, 'https://ror.org/03188nr56 Heavystone Laboratory (United States)'), (62513, 'https://ror.org/0319y6677', 'en', 1, 'https://ror.org/0319y6677 Stafford University'), (62514, 'https://ror.org/031afvj24', 'en', 1, 'https://ror.org/031afvj24 Agency for Community Treatment Services'), (62515, 'https://ror.org/031caxb92', 'en', 1, 'https://ror.org/031caxb92 Kaiser Permanente West Los Angeles Medical Center'), (62516, 'https://ror.org/031f8xv45', 'en', 1, 'https://ror.org/031f8xv45 Children’s Aid Society of Hamilton'), (62517, 'https://ror.org/031g1ba05', 'no_lang_code', 1, 'https://ror.org/031g1ba05 Mannatech (United States)'), (62518, 'https://ror.org/031h5e705', 'en', 1, 'https://ror.org/031h5e705 International Society of Differentiation'), (62519, 'https://ror.org/031h5rk76', 'es', 1, 'https://ror.org/031h5rk76 Asociación Colombiana de Diabetes'), (62520, 'https://ror.org/031hkyx15', 'no_lang_code', 1, 'https://ror.org/031hkyx15 Johnson & Johnson (Hungary)'), (62521, 'https://ror.org/031m0hs53', 'en', 1, 'https://ror.org/031m0hs53 Commit'), (62522, 'https://ror.org/031mxab46', 'en', 1, 'https://ror.org/031mxab46 Turkish Society of Hypertension and Renal Diseases Türk Hipertansiyon ve Böbrek Hastalıkları Derneği'), (62523, 'https://ror.org/031nmyb26', 'en', 1, 'https://ror.org/031nmyb26 Reference Institute for Bioanalytics Referenzinstitut für Bioanalytik'), (62524, 'https://ror.org/031pkxq11', 'no_lang_code', 1, 'https://ror.org/031pkxq11 Baotou Central Hospital 包头市中心医院'), (62525, 'https://ror.org/031q6s296', 'no_lang_code', 1, 'https://ror.org/031q6s296 Cosmos Technologies (United States)'), (62526, 'https://ror.org/031rmrw34', 'en', 1, 'https://ror.org/031rmrw34 Pediatric Blood and Marrow Transplant Foundation'), (62527, 'https://ror.org/031wqxd08', 'no_lang_code', 1, 'https://ror.org/031wqxd08 IONEX Research Corporation (United States)'), (62528, 'https://ror.org/031yrna52', 'no_lang_code', 1, 'https://ror.org/031yrna52 Ajinomoto (United States)'), (62529, 'https://ror.org/0320z2q35', 'nl', 1, 'https://ror.org/0320z2q35 Zorggroep Sint Maarten'), (62530, 'https://ror.org/03247yf20', 'de', 1, 'https://ror.org/03247yf20 Hernienzentrum Rottenburg am Neckar'), (62531, 'https://ror.org/032951a18', 'no_lang_code', 1, 'https://ror.org/032951a18 Lycotec (United Kingdom)'), (62532, 'https://ror.org/0329bem96', 'en', 1, 'https://ror.org/0329bem96 Malaysian Endocrine and Metabolic Society'), (62533, 'https://ror.org/032b8d361', 'en', 1, 'https://ror.org/032b8d361 Minneapolis VA Medical Center'), (62534, 'https://ror.org/032b8z185', 'no_lang_code', 1, 'https://ror.org/032b8z185 Vygon (Germany)'), (62535, 'https://ror.org/032d9sg77', 'en', 1, 'https://ror.org/032d9sg77 Kumasi Centre for Collaborative Research in Tropical Medicine'), (62536, 'https://ror.org/032e5zb24', 'en', 1, 'https://ror.org/032e5zb24 Save the Children'), (62537, 'https://ror.org/032eyp751', 'en', 1, 'https://ror.org/032eyp751 Vietnamese Voluntary Foundation'), (62538, 'https://ror.org/032fd8x63', 'en', 1, 'https://ror.org/032fd8x63 Primary Industries Education Foundation Australia'), (62539, 'https://ror.org/032gz0g45', 'en', 1, 'https://ror.org/032gz0g45 Shanghai Entry-Exit Inspection and Quarantine Bureau 上海出入境检验检疫局'), (62540, 'https://ror.org/032h4fk17', 'en', 1, 'https://ror.org/032h4fk17 San Francisco Zoo'), (62541, 'https://ror.org/032jj2n15', 'en', 1, 'https://ror.org/032jj2n15 American Association of Gynecologic Laparoscopists'), (62542, 'https://ror.org/032k2hj66', 'pt', 1, 'https://ror.org/032k2hj66 Associação Portuguesa de Fertilidade'), (62543, 'https://ror.org/032kej893', 'de', 1, 'https://ror.org/032kej893 Poliklinik für Zahnärztliche Prothetik'), (62544, 'https://ror.org/032kph469', 'en', 1, 'https://ror.org/032kph469 The Korean Urological Oncology Society 한국 비뇨기 종양 학회'), (62545, 'https://ror.org/032mk7q57', 'en', 1, 'https://ror.org/032mk7q57 American Institute for Afghanistan Studies'), (62546, 'https://ror.org/032q9qk24', 'no_lang_code', 1, 'https://ror.org/032q9qk24 Novum Pharmaceutical Research Services (United States)'), (62547, 'https://ror.org/032skq703', 'no_lang_code', 1, 'https://ror.org/032skq703 Joimax (Germany)'), (62548, 'https://ror.org/032vv2x86', 'nl', 1, 'https://ror.org/032vv2x86 Diapriva, Diapriva Dialysezentrum Amsterdam'), (62549, 'https://ror.org/032wae568', 'no_lang_code', 1, 'https://ror.org/032wae568 Elea (Argentina)'), (62550, 'https://ror.org/032wmfz20', 'no_lang_code', 1, 'https://ror.org/032wmfz20 Tower Clinical Trials (United States)'), (62551, 'https://ror.org/032y37w70', 'en', 1, 'https://ror.org/032y37w70 American Distance Education Consortium'), (62552, 'https://ror.org/032y5sx52', 'en', 1, 'https://ror.org/032y5sx52 HealthONE'), (62553, 'https://ror.org/03308zq86', 'en', 1, 'https://ror.org/03308zq86 Huron Gastro'), (62554, 'https://ror.org/03326wy09', 'en', 1, 'https://ror.org/03326wy09 Institut für Therapie- und Gesundheitsforschung Institute for Therapy and Health Research'), (62555, 'https://ror.org/0332tkb18', 'en', 1, 'https://ror.org/0332tkb18 Amiq Institute'), (62556, 'https://ror.org/0335jxq92', 'no_lang_code', 1, 'https://ror.org/0335jxq92 Immundiagnostik (Germany)'), (62557, 'https://ror.org/0336dfn75', 'en', 1, 'https://ror.org/0336dfn75 Toledo Clinic Cancer Center'), (62558, 'https://ror.org/03383wt55', 'en', 1, 'https://ror.org/03383wt55 Broome-Tioga Board of Cooperative Educational Services'), (62559, 'https://ror.org/033bq3134', 'en', 1, 'https://ror.org/033bq3134 Israeli Society for the Prevention of Heart Attacks'), (62560, 'https://ror.org/033brdk22', 'no_lang_code', 1, 'https://ror.org/033brdk22 Centrexion Therapeutics (United States)'), (62561, 'https://ror.org/033bt1t53', 'en', 1, 'https://ror.org/033bt1t53 Palestinian Family Planning and Protection Association'), (62562, 'https://ror.org/033ezdy84', 'es', 1, 'https://ror.org/033ezdy84 Hospital Universitario del Sureste'), (62563, 'https://ror.org/033gvjm02', 'de', 1, 'https://ror.org/033gvjm02 Klinik Lüneburger Heide'), (62564, 'https://ror.org/033hhy390', 'en', 1, 'https://ror.org/033hhy390 Boushahri Clinic'), (62565, 'https://ror.org/033jqx441', 'de', 1, 'https://ror.org/033jqx441 Hospital zum Heiligen Geist'), (62566, 'https://ror.org/033knrw51', 'en', 1, 'https://ror.org/033knrw51 Republican Center for the Prevention and Control of AIDS and Infectious Diseases'), (62567, 'https://ror.org/033n2wq55', 'de', 1, 'https://ror.org/033n2wq55 Aktion Mensch'), (62568, 'https://ror.org/033nznn12', 'en', 1, 'https://ror.org/033nznn12 Hong Kong Blood Cancer Foundation 香港血癌基金'), (62569, 'https://ror.org/033s1aj42', 'en', 1, 'https://ror.org/033s1aj42 Moorabbin Hospital'), (62570, 'https://ror.org/033wnk810', 'en', 1, 'https://ror.org/033wnk810 Voluntary Health Association of Goa'), (62571, 'https://ror.org/033x1wr64', 'de', 1, 'https://ror.org/033x1wr64 Klinik Rosenberg'), (62572, 'https://ror.org/033x4t230', 'fr', 1, 'https://ror.org/033x4t230 Société Française d''Allergologie'), (62573, 'https://ror.org/033yj6a03', 'en', 1, 'https://ror.org/033yj6a03 Korean Association of Thyroid and Endocrine Surgeons 대한갑상선내분비외과학회'), (62574, 'https://ror.org/033zc3t08', 'nl', 1, 'https://ror.org/033zc3t08 Stichting Erasmus Trustfonds'), (62575, 'https://ror.org/033zmys03', 'nl', 1, 'https://ror.org/033zmys03 Nederlands Astmacentrum Davos'), (62576, 'https://ror.org/033zx3z52', 'nl', 1, 'https://ror.org/033zx3z52 Kennisinstituut Bier'), (62577, 'https://ror.org/0345gq170', 'nl', 1, 'https://ror.org/0345gq170 Thebe'), (62578, 'https://ror.org/0345pts96', 'en', 1, 'https://ror.org/0345pts96 Paoli Hospital'), (62579, 'https://ror.org/0345t3q13', 'en', 1, 'https://ror.org/0345t3q13 Interdisciplinary Dental Education Academy'), (62580, 'https://ror.org/0346nyf55', 'en', 1, 'https://ror.org/0346nyf55 Oncology Institute of Hope and Innovation'), (62581, 'https://ror.org/03477rg40', 'no_lang_code', 1, 'https://ror.org/03477rg40 Neomedic International (Spain)'), (62582, 'https://ror.org/034a28j20', 'no_lang_code', 1, 'https://ror.org/034a28j20 Smith & Nephew (Switzerland)'), (62583, 'https://ror.org/034atv473', 'en', 1, 'https://ror.org/034atv473 Jefferson Institute'), (62584, 'https://ror.org/034dekp80', 'en', 1, 'https://ror.org/034dekp80 Great Orchestra of Christmas Charity Wielka Orkiestra Świątecznej Pomocy'), (62585, 'https://ror.org/034fc8f37', 'no_lang_code', 1, 'https://ror.org/034fc8f37 Guangdong Junfeng Spectrum (China)'), (62586, 'https://ror.org/034hg1w33', 'en', 1, 'https://ror.org/034hg1w33 Tribal Nations Research Group'), (62587, 'https://ror.org/034k8cv93', 'no_lang_code', 1, 'https://ror.org/034k8cv93 Zimmer Biomet (Netherlands)'), (62588, 'https://ror.org/034nhtc63', 'nl', 1, 'https://ror.org/034nhtc63 Oogvereniging The Eye Association Netherlands'), (62589, 'https://ror.org/034nqx294', 'en', 1, 'https://ror.org/034nqx294 Canadian Orthopaedic Foot and Ankle Society'), (62590, 'https://ror.org/034q4hd34', 'en', 1, 'https://ror.org/034q4hd34 Sts. Mary & Elizabeth Hospital'), (62591, 'https://ror.org/034weys19', 'fr', 1, 'https://ror.org/034weys19 AMIS FSH'), (62592, 'https://ror.org/034yah449', 'en', 1, 'https://ror.org/034yah449 Martin Foot and Ankle'), (62593, 'https://ror.org/034zy7551', 'en', 1, 'https://ror.org/034zy7551 Copenhagen Prospective Studies on Asthma in Childhood'), (62594, 'https://ror.org/0350na611', 'en', 1, 'https://ror.org/0350na611 Institute for Patient- and Family-Centered Care'), (62595, 'https://ror.org/0352fvv75', 'de', 1, 'https://ror.org/0352fvv75 Institut für Arbeitsmedizin, Sicherheitstechnik und Ergonomie'), (62596, 'https://ror.org/03557sb27', 'es', 1, 'https://ror.org/03557sb27 Policlinica Metropolitana'), (62597, 'https://ror.org/0356ywp11', 'nl', 1, 'https://ror.org/0356ywp11 Stichting Rehabilitatie ‘92'), (62598, 'https://ror.org/03572ah39', 'no_lang_code', 1, 'https://ror.org/03572ah39 Actelion (Germany)'), (62599, 'https://ror.org/03574zr06', 'en', 1, 'https://ror.org/03574zr06 Ocean Institute'), (62600, 'https://ror.org/0357qk965', 'nl', 1, 'https://ror.org/0357qk965 Huisartsen Oostelijk Zuid Limburg'), (62601, 'https://ror.org/0359pwd41', 'en', 1, 'https://ror.org/0359pwd41 Down Syndrome Association of Greater Toledo'), (62602, 'https://ror.org/035aahr55', 'en', 1, 'https://ror.org/035aahr55 The Egyptian IVF-ET Center المركز المصري لأطفال الأنابيب'), (62603, 'https://ror.org/035btw704', 'de', 1, 'https://ror.org/035btw704 Johanna-Etienne-Krankenhaus'), (62604, 'https://ror.org/035d5ht51', 'en', 1, 'https://ror.org/035d5ht51 The Fan Fox and Leslie R. Samuels Foundation'), (62605, 'https://ror.org/035d65343', 'de', 1, 'https://ror.org/035d65343 Klinikum Ingolstadt'), (62606, 'https://ror.org/035e6q027', 'fr', 1, 'https://ror.org/035e6q027 Languedoc Mutualité'), (62607, 'https://ror.org/035f67744', 'en', 1, 'https://ror.org/035f67744 Labor Pachmann'), (62608, 'https://ror.org/035gkt554', 'en', 1, 'https://ror.org/035gkt554 Sjögren’s Society of Canada'), (62609, 'https://ror.org/035gsd054', 'no_lang_code', 1, 'https://ror.org/035gsd054 Chemie³ (Germany)'), (62610, 'https://ror.org/035mdk862', 'no_lang_code', 1, 'https://ror.org/035mdk862 Medi-Tate (Israel)'), (62611, 'https://ror.org/035n56j11', 'no_lang_code', 1, 'https://ror.org/035n56j11 AstraZeneca (Finland)'), (62612, 'https://ror.org/035ntcd25', 'en', 1, 'https://ror.org/035ntcd25 Central Vermont Medical Center'), (62613, 'https://ror.org/035p50w29', 'en', 1, 'https://ror.org/035p50w29 Knox Community Hospital'), (62614, 'https://ror.org/035thvx71', 'nl', 1, 'https://ror.org/035thvx71 Proteion'), (62615, 'https://ror.org/035ts5t23', 'en', 1, 'https://ror.org/035ts5t23 Virginia Spine Institute'), (62616, 'https://ror.org/035vbe686', 'en', 1, 'https://ror.org/035vbe686 Bel-Rea Institute'), (62617, 'https://ror.org/035ws6k56', 'en', 1, 'https://ror.org/035ws6k56 Bioelectromagnetics Society'), (62618, 'https://ror.org/035wxqn98', 'en', 1, 'https://ror.org/035wxqn98 Carolinas Center for Advanced Management of Pain'), (62619, 'https://ror.org/035ysxq78', 'sl', 1, 'https://ror.org/035ysxq78 Energetska agencija za Podravje, Energy Agency of Podravje'), (62620, 'https://ror.org/035zsgw07', 'no_lang_code', 1, 'https://ror.org/035zsgw07 Cambridge Collaborative (United States)'), (62621, 'https://ror.org/036187n68', 'nl', 1, 'https://ror.org/036187n68 Lyvore'), (62622, 'https://ror.org/0362ndm62', 'en', 1, 'https://ror.org/0362ndm62 Educational Media Resources'), (62623, 'https://ror.org/0362zrb32', 'en', 1, 'https://ror.org/0362zrb32 Swanson Center'), (62624, 'https://ror.org/0364jg040', 'en', 1, 'https://ror.org/0364jg040 Pure North'), (62625, 'https://ror.org/036501p19', 'en', 1, 'https://ror.org/036501p19 Gulf Marine Institute of Technology'), (62626, 'https://ror.org/0365qmq92', 'no_lang_code', 1, 'https://ror.org/0365qmq92 Lena Biosciences (United States)'), (62627, 'https://ror.org/0365ym773', 'en', 1, 'https://ror.org/0365ym773 Kinston Medical Specialists'), (62628, 'https://ror.org/036arc746', 'de', 1, 'https://ror.org/036arc746 Kompetenznetz Leukämien'), (62629, 'https://ror.org/036awca68', 'en', 1, 'https://ror.org/036awca68 Institute of Ophthalmology'), (62630, 'https://ror.org/036br4307', 'en', 1, 'https://ror.org/036br4307 TKI Agri & Food'), (62631, 'https://ror.org/036cpmb86', 'no_lang_code', 1, 'https://ror.org/036cpmb86 Emotra (Sweden)'), (62632, 'https://ror.org/036csaq39', 'en', 1, 'https://ror.org/036csaq39 The Third Affiliated Hospital of Guangzhou University of Traditional Chinese Medicine 广州中医药大学附属第三医院'), (62633, 'https://ror.org/036cvn086', 'it', 1, 'https://ror.org/036cvn086 Fondazione A.R. Card Onlus'), (62634, 'https://ror.org/036d1z676', 'pt', 1, 'https://ror.org/036d1z676 Associação Rede de Universidades da Terceira Idade'), (62635, 'https://ror.org/036da3063', 'en', 1, 'https://ror.org/036da3063 Hôpital Libanais Geitaoui - CHU Lebanese Hospital Geitaoui-University Medical Center المستشفى اللبناني الجعيتاوي'), (62636, 'https://ror.org/036erhh43', 'no_lang_code', 1, 'https://ror.org/036erhh43 Chemsultants International (United States)'), (62637, 'https://ror.org/036gpm141', 'de', 1, 'https://ror.org/036gpm141 Asklepios Neurologische Klinik Falkenstein'), (62638, 'https://ror.org/036hbav43', 'en', 1, 'https://ror.org/036hbav43 Canadian College of Osteopathy'); INSERT INTO `rors` VALUES (62639, 'https://ror.org/036j3hh72', 'de', 1, 'https://ror.org/036j3hh72 Evangelisches Krankenhaus Düsseldorf'), (62640, 'https://ror.org/036k9cx83', 'en', 1, 'https://ror.org/036k9cx83 Las Vegas Academy of the Arts'), (62641, 'https://ror.org/036khbq65', 'en', 1, 'https://ror.org/036khbq65 The Alberta Paraplegic Foundation'), (62642, 'https://ror.org/036mqzt31', 'en', 1, 'https://ror.org/036mqzt31 Hunan Province Chest Hospital 湖南省胸科医院'), (62643, 'https://ror.org/036mshe20', 'en', 1, 'https://ror.org/036mshe20 London Vision Clinic'), (62644, 'https://ror.org/036mx0561', 'fr', 1, 'https://ror.org/036mx0561 Clinique Claude-Bernard'), (62645, 'https://ror.org/036qh7831', 'nl', 1, 'https://ror.org/036qh7831 Revant medisch specialistische revalidatie'), (62646, 'https://ror.org/036qh8f11', 'de', 1, 'https://ror.org/036qh8f11 Augencentrum Rosenheim'), (62647, 'https://ror.org/036rq4p38', 'en', 1, 'https://ror.org/036rq4p38 Freeman Health System'), (62648, 'https://ror.org/036vjnj69', 'no_lang_code', 1, 'https://ror.org/036vjnj69 Innomedis (Germany)'), (62649, 'https://ror.org/036w42389', 'de', 1, 'https://ror.org/036w42389 Niedersächsisches Landesamt für Soziales, Jugend und Familie'), (62650, 'https://ror.org/036wdbz11', 'en', 1, 'https://ror.org/036wdbz11 Auto Dealers Caring for Kids Foundation'), (62651, 'https://ror.org/036yga598', 'de', 1, 'https://ror.org/036yga598 Arbeitsgemeinschaft für Klinische Ernährung'), (62652, 'https://ror.org/036yvkz90', 'no_lang_code', 1, 'https://ror.org/036yvkz90 Nestlé (Belgium)'), (62653, 'https://ror.org/036yzwp60', 'en', 1, 'https://ror.org/036yzwp60 Lakeview Hospital'), (62654, 'https://ror.org/036zzh557', 'no_lang_code', 1, 'https://ror.org/036zzh557 Allergan (Canada)'), (62655, 'https://ror.org/03707xt68', 'en', 1, 'https://ror.org/03707xt68 Minimally Invasive Pain Institute'), (62656, 'https://ror.org/0370kn134', 'en', 1, 'https://ror.org/0370kn134 Southwest Center for Educational Excellence'), (62657, 'https://ror.org/0372q3g13', 'no_lang_code', 1, 'https://ror.org/0372q3g13 oncgnostics (Germany)'), (62658, 'https://ror.org/03743p518', 'fr', 1, 'https://ror.org/03743p518 Imagerie Médicale et Radiothérapie Drôme Ardèche'), (62659, 'https://ror.org/03754ky26', 'en', 1, 'https://ror.org/03754ky26 Tennessee Oncology'), (62660, 'https://ror.org/037695w38', 'en', 1, 'https://ror.org/037695w38 National Association for Black Veterans'), (62661, 'https://ror.org/0376avp13', 'en', 1, 'https://ror.org/0376avp13 Svenska Fotbollförbundet Swedish Football Association'), (62662, 'https://ror.org/0376sq070', 'en', 1, 'https://ror.org/0376sq070 Gifu Prefecture Medical Association 岐阜県医師会'), (62663, 'https://ror.org/03772c153', 'en', 1, 'https://ror.org/03772c153 Future of Privacy Forum'), (62664, 'https://ror.org/03791x537', 'en', 1, 'https://ror.org/03791x537 U-center'), (62665, 'https://ror.org/037da6921', 'pl', 1, 'https://ror.org/037da6921 Fundacja NUTRICIA NUTRICIA Foundation'), (62666, 'https://ror.org/037dqnd52', 'en', 1, 'https://ror.org/037dqnd52 The Goldfarb Foundation'), (62667, 'https://ror.org/037hmn502', 'no_lang_code', 1, 'https://ror.org/037hmn502 PROGAL (Colombia)'), (62668, 'https://ror.org/037jjwb78', 'fr', 1, 'https://ror.org/037jjwb78 Association Pharmaceutique Belge'), (62669, 'https://ror.org/037mx5d24', 'en', 1, 'https://ror.org/037mx5d24 American Society for Clinical Investigation'), (62670, 'https://ror.org/037q5gj93', 'en', 1, 'https://ror.org/037q5gj93 First Coast Cardiovascular Institute'), (62671, 'https://ror.org/037rc8f81', 'no_lang_code', 1, 'https://ror.org/037rc8f81 S-Biomedic (Germany)'), (62672, 'https://ror.org/037rv3j62', 'de', 1, 'https://ror.org/037rv3j62 Klinik Blankenstein'), (62673, 'https://ror.org/037s05q15', 'en', 1, 'https://ror.org/037s05q15 Reidman College'), (62674, 'https://ror.org/037tym531', 'no_lang_code', 1, 'https://ror.org/037tym531 InterMed (United States)'), (62675, 'https://ror.org/037vec356', 'es', 1, 'https://ror.org/037vec356 Helios Salud'), (62676, 'https://ror.org/037xt0e18', 'no_lang_code', 1, 'https://ror.org/037xt0e18 MSTM (United States)'), (62677, 'https://ror.org/038079n45', 'en', 1, 'https://ror.org/038079n45 Holy Family Memorial Hospital'), (62678, 'https://ror.org/0381nq624', 'fr', 1, 'https://ror.org/0381nq624 Fédération Internationale de Football Association'), (62679, 'https://ror.org/038420j04', 'en', 1, 'https://ror.org/038420j04 Abalone Council Australia'), (62680, 'https://ror.org/03849s113', 'en', 1, 'https://ror.org/03849s113 Central Brain Tumor Registry of the United States'), (62681, 'https://ror.org/0385e6y24', 'en', 1, 'https://ror.org/0385e6y24 Urological Research Foundation'), (62682, 'https://ror.org/0389djt38', 'no_lang_code', 1, 'https://ror.org/0389djt38 Nu Skin (United States)'), (62683, 'https://ror.org/038c74q03', 'no_lang_code', 1, 'https://ror.org/038c74q03 Reck Technik (Germany)'), (62684, 'https://ror.org/038esqp30', 'de', 1, 'https://ror.org/038esqp30 St. Elisabethen-Krankenhaus Frankfurt'), (62685, 'https://ror.org/038f5ab46', 'en', 1, 'https://ror.org/038f5ab46 University Colleges Australia'), (62686, 'https://ror.org/038gq7z31', 'en', 1, 'https://ror.org/038gq7z31 Navajo Language Academy'), (62687, 'https://ror.org/038jmw351', 'en', 1, 'https://ror.org/038jmw351 Department of Health Canton of Zurich Gesundheitsdirektion Kanton Zürich'), (62688, 'https://ror.org/038k26971', 'en', 1, 'https://ror.org/038k26971 The Roxbury Institute'), (62689, 'https://ror.org/038kt0m24', 'nl', 1, 'https://ror.org/038kt0m24 Lelie Zorggroep'), (62690, 'https://ror.org/038phvh31', 'no_lang_code', 1, 'https://ror.org/038phvh31 INC Research (United Kingdom)'), (62691, 'https://ror.org/038rjzg81', 'en', 1, 'https://ror.org/038rjzg81 Maria Parham Hospital'), (62692, 'https://ror.org/038t4rm13', 'en', 1, 'https://ror.org/038t4rm13 Kadlec Clinic'), (62693, 'https://ror.org/038tfar48', 'sq', 1, 'https://ror.org/038tfar48 Spitali Universitar Shefqet Ndroqi'), (62694, 'https://ror.org/038vwxf79', 'no_lang_code', 1, 'https://ror.org/038vwxf79 Miromatrix Medical (United States)'), (62695, 'https://ror.org/038w3gx54', 'en', 1, 'https://ror.org/038w3gx54 Marine Biology Institute of Shandong Province 山东省海洋生物研究院 地址'), (62696, 'https://ror.org/038zxmy79', 'en', 1, 'https://ror.org/038zxmy79 University Vocational Awards Council'), (62697, 'https://ror.org/0392bhy50', 'nl', 1, 'https://ror.org/0392bhy50 DOH Zorggroep'), (62698, 'https://ror.org/0394zmz22', 'en', 1, 'https://ror.org/0394zmz22 Building Child and Family Initiatives'), (62699, 'https://ror.org/0395pak08', 'en', 1, 'https://ror.org/0395pak08 AAB College Kolegji AAB'), (62700, 'https://ror.org/0397v4g85', 'no_lang_code', 1, 'https://ror.org/0397v4g85 N-Gene (Hungary)'), (62701, 'https://ror.org/039868y11', 'no_lang_code', 1, 'https://ror.org/039868y11 Pharma Medica Research (Canada)'), (62702, 'https://ror.org/0398sv340', 'en', 1, 'https://ror.org/0398sv340 Vienna Challenge Chamber'), (62703, 'https://ror.org/039b8pv66', 'en', 1, 'https://ror.org/039b8pv66 Oncology Specialists of Charlotte'), (62704, 'https://ror.org/039d9wk42', 'en', 1, 'https://ror.org/039d9wk42 Adventist HealthCare'), (62705, 'https://ror.org/039fmvr98', 'en', 1, 'https://ror.org/039fmvr98 Southwestern Vermont Health Care'), (62706, 'https://ror.org/039g7tm38', 'de', 1, 'https://ror.org/039g7tm38 Alzheimer Schweiz'), (62707, 'https://ror.org/039h4qc17', 'en', 1, 'https://ror.org/039h4qc17 DeClaire LaMacchia Orthopaedic Institute'), (62708, 'https://ror.org/039hp9c94', 'en', 1, 'https://ror.org/039hp9c94 Family Planning Association of Hong Kong'), (62709, 'https://ror.org/039k72k82', 'en', 1, 'https://ror.org/039k72k82 Concept Foundation'), (62710, 'https://ror.org/039kzrb23', 'no_lang_code', 1, 'https://ror.org/039kzrb23 Nuvisan (Germany)'), (62711, 'https://ror.org/039m3qq17', 'en', 1, 'https://ror.org/039m3qq17 Choroideremia Research Foundation'), (62712, 'https://ror.org/039mjhc39', 'no_lang_code', 1, 'https://ror.org/039mjhc39 Masih Daneshvari Hospital موسسه تحقیقات ملی سل و بیماریهای ریوی'), (62713, 'https://ror.org/039ng5344', 'en', 1, 'https://ror.org/039ng5344 LXD Research & Display'), (62714, 'https://ror.org/039ngxv93', 'en', 1, 'https://ror.org/039ngxv93 Saginaw Chippewa Tribal College'), (62715, 'https://ror.org/039nzp647', 'en', 1, 'https://ror.org/039nzp647 King''s Daughters Medical Center'), (62716, 'https://ror.org/039p74p43', 'en', 1, 'https://ror.org/039p74p43 Hellenic Cancer Society Ελληνική Αντικαρκινική Εταιρεία'), (62717, 'https://ror.org/039phvz68', 'no_lang_code', 1, 'https://ror.org/039phvz68 GHD GesundHeits GmbH Deutschland (Germany)'), (62718, 'https://ror.org/039rx1821', 'no_lang_code', 1, 'https://ror.org/039rx1821 Institut für Angewandte Produktions-Technologie (Germany)'), (62719, 'https://ror.org/039skw388', 'no_lang_code', 1, 'https://ror.org/039skw388 Lundbeck (Germany)'), (62720, 'https://ror.org/039wqqg43', 'en', 1, 'https://ror.org/039wqqg43 Association for Children at Risk העמותה לילדים בסיכון'), (62721, 'https://ror.org/039xvf459', 'en', 1, 'https://ror.org/039xvf459 Kentucky Department of Revenue'), (62722, 'https://ror.org/039zvcc43', 'en', 1, 'https://ror.org/039zvcc43 Conemaugh Health System'), (62723, 'https://ror.org/03a011y73', 'et', 1, 'https://ror.org/03a011y73 Eesti Reumatoloogia Selts Estonian Rheumatology Society'), (62724, 'https://ror.org/03a1e0438', 'no_lang_code', 1, 'https://ror.org/03a1e0438 Kaneka (Germany)'), (62725, 'https://ror.org/03a2dk673', 'no_lang_code', 1, 'https://ror.org/03a2dk673 Snap40 (United Kingdom)'), (62726, 'https://ror.org/03a3zhd98', 'es', 1, 'https://ror.org/03a3zhd98 Fundación Neumosur'), (62727, 'https://ror.org/03a5ewm40', 'no_lang_code', 1, 'https://ror.org/03a5ewm40 Rao Research and Consulting (United States)'), (62728, 'https://ror.org/03a5tyh47', 'no_lang_code', 1, 'https://ror.org/03a5tyh47 PersonGen (China)'), (62729, 'https://ror.org/03abchz62', 'en', 1, 'https://ror.org/03abchz62 Adventist Health Bakersfield'), (62730, 'https://ror.org/03acet573', 'no_lang_code', 1, 'https://ror.org/03acet573 IC Independent Consulting (Australia)'), (62731, 'https://ror.org/03ad34z63', 'en', 1, 'https://ror.org/03ad34z63 Association of Children and Preventive Dentists of Serbia'), (62732, 'https://ror.org/03aggr754', 'no_lang_code', 1, 'https://ror.org/03aggr754 Infofish (Australia)'), (62733, 'https://ror.org/03ambf510', 'en', 1, 'https://ror.org/03ambf510 Horizon Oncology Center'), (62734, 'https://ror.org/03anfar33', 'en', 1, 'https://ror.org/03anfar33 Rocky Mountain Institute'), (62735, 'https://ror.org/03aw1bv52', 'en', 1, 'https://ror.org/03aw1bv52 Rajamangala Institute of kidney disease ราชมงคลสถาบันโรคไตโรค'), (62736, 'https://ror.org/03aysbj82', 'de', 1, 'https://ror.org/03aysbj82 OncoRay, OncoRay – Nationales Zentrum für Strahlenforschung in der Onkologie'), (62737, 'https://ror.org/03b5vk392', 'en', 1, 'https://ror.org/03b5vk392 Center for Neurosciences'), (62738, 'https://ror.org/03b60ep93', 'nl', 1, 'https://ror.org/03b60ep93 Stichting Bio, Stichting Bio Kinderrevalidatie'), (62739, 'https://ror.org/03b69tw84', 'de', 1, 'https://ror.org/03b69tw84 HNO Bad Bramstedt'), (62740, 'https://ror.org/03b6wj477', 'en', 1, 'https://ror.org/03b6wj477 Corning Museum of Glass'), (62741, 'https://ror.org/03b7e6556', 'no_lang_code', 1, 'https://ror.org/03b7e6556 Nea International (Netherlands)'), (62742, 'https://ror.org/03b8cqm18', 'it', 1, 'https://ror.org/03b8cqm18 Consorzio Interuniversitario Regionale Pugliese'), (62743, 'https://ror.org/03b9cq520', 'en', 1, 'https://ror.org/03b9cq520 Olympic Medical Center'), (62744, 'https://ror.org/03bbcet56', 'fr', 1, 'https://ror.org/03bbcet56 Etablissements de Santé Mentale'), (62745, 'https://ror.org/03bd5dw30', 'no_lang_code', 1, 'https://ror.org/03bd5dw30 T3 Scientific (United States)'), (62746, 'https://ror.org/03be8p176', 'en', 1, 'https://ror.org/03be8p176 Dolan Park Hospital'), (62747, 'https://ror.org/03benq302', 'fr', 1, 'https://ror.org/03benq302 Association Francophone pour les Soins Oncologiques de Support'), (62748, 'https://ror.org/03bf8xe98', 'en', 1, 'https://ror.org/03bf8xe98 Midstate Medical Center'), (62749, 'https://ror.org/03bh0nj27', 'en', 1, 'https://ror.org/03bh0nj27 Goldseker Foundation'), (62750, 'https://ror.org/03bjjd024', 'en', 1, 'https://ror.org/03bjjd024 Woolfson Eye Institute'), (62751, 'https://ror.org/03bjx6g30', 'en', 1, 'https://ror.org/03bjx6g30 Africa Mental Health Foundation'), (62752, 'https://ror.org/03bpe7b73', 'en', 1, 'https://ror.org/03bpe7b73 American College of Nurse-Midwives'), (62753, 'https://ror.org/03bpyhp77', 'en', 1, 'https://ror.org/03bpyhp77 Social Insurance Institute Ίδρυμα Κοινωνικών Ασφαλίσεων'), (62754, 'https://ror.org/03bq83s83', 'en', 1, 'https://ror.org/03bq83s83 Capital Health Medical Center Hopewell'), (62755, 'https://ror.org/03bqkge93', 'en', 1, 'https://ror.org/03bqkge93 Upper Valley Medical Center'), (62756, 'https://ror.org/03bv7bz63', 'en', 1, 'https://ror.org/03bv7bz63 South Sound Care Foundation'), (62757, 'https://ror.org/03bvd4t69', 'no_lang_code', 1, 'https://ror.org/03bvd4t69 Kyowa Kirin (France)'), (62758, 'https://ror.org/03bvvfk64', 'no_lang_code', 1, 'https://ror.org/03bvvfk64 Quintara Biosciences (United States)'), (62759, 'https://ror.org/03bwk1778', 'no_lang_code', 1, 'https://ror.org/03bwk1778 Behavioral Diagnostics (United States)'), (62760, 'https://ror.org/03bx4c072', 'en', 1, 'https://ror.org/03bx4c072 The Spine Institute'), (62761, 'https://ror.org/03by5ya49', 'no_lang_code', 1, 'https://ror.org/03by5ya49 Epiim (Estonia)'), (62762, 'https://ror.org/03by80w61', 'en', 1, 'https://ror.org/03by80w61 Dayton Interventional Radiology'), (62763, 'https://ror.org/03bz8z424', 'nl', 1, 'https://ror.org/03bz8z424 Dystonie Vereniging'), (62764, 'https://ror.org/03bzzj274', 'nl', 1, 'https://ror.org/03bzzj274 Stichting Hartcentrum Twente'), (62765, 'https://ror.org/03c0asn85', 'no_lang_code', 1, 'https://ror.org/03c0asn85 Redax (Italy)'), (62766, 'https://ror.org/03c0nts38', 'en', 1, 'https://ror.org/03c0nts38 Woman’s Hospital of Texas'), (62767, 'https://ror.org/03c4ay951', 'en', 1, 'https://ror.org/03c4ay951 Cardiovascular Institute of Central Florida'), (62768, 'https://ror.org/03c7ycp20', 'de', 1, 'https://ror.org/03c7ycp20 Deutsche Neurodermitis Stiftung'), (62769, 'https://ror.org/03c8kfz86', 'no_lang_code', 1, 'https://ror.org/03c8kfz86 Innopastry (Netherlands)'), (62770, 'https://ror.org/03c9gd523', 'no_lang_code', 1, 'https://ror.org/03c9gd523 Yosemite International Consultants (United States)'), (62771, 'https://ror.org/03cb3w715', 'en', 1, 'https://ror.org/03cb3w715 Congenital Muscle Disease International Registry'), (62772, 'https://ror.org/03cba0s60', 'de', 1, 'https://ror.org/03cba0s60 Klinik für Neuropädiatrie und Muskelerkrankungen'), (62773, 'https://ror.org/03cbwdg94', 'en', 1, 'https://ror.org/03cbwdg94 Catalan Society of Family and Community Medicine'), (62774, 'https://ror.org/03ceh0618', 'en', 1, 'https://ror.org/03ceh0618 Sri Lanka College of Obstetricians & Gynaecologists'), (62775, 'https://ror.org/03cev2h16', 'nl', 1, 'https://ror.org/03cev2h16 Stichting Kinderen en Kansen'), (62776, 'https://ror.org/03chvfw61', 'en', 1, 'https://ror.org/03chvfw61 International Community for Auditory Display'), (62777, 'https://ror.org/03cj17c02', 'en', 1, 'https://ror.org/03cj17c02 Holistic Health Research Centre'), (62778, 'https://ror.org/03ckfsa43', 'en', 1, 'https://ror.org/03ckfsa43 Institute of Population, Health and Development'), (62779, 'https://ror.org/03ckmzz49', 'en', 1, 'https://ror.org/03ckmzz49 Egyptian Foundation for Cancer Research'), (62780, 'https://ror.org/03ckvbj98', 'en', 1, 'https://ror.org/03ckvbj98 Bon Secours Liver Institute of Richmond'), (62781, 'https://ror.org/03cmwaa13', 'no_lang_code', 1, 'https://ror.org/03cmwaa13 ABX-CRO Advanced Pharmaceutical Services (Germany)'), (62782, 'https://ror.org/03cmx5943', 'no_lang_code', 1, 'https://ror.org/03cmx5943 Bayer (Finland)'), (62783, 'https://ror.org/03cn5jj91', 'pt', 1, 'https://ror.org/03cn5jj91 Hospital Municipal São José'), (62784, 'https://ror.org/03cn8n632', 'de', 1, 'https://ror.org/03cn8n632 Klinikum Mutterhaus der Borromäerinnen'), (62785, 'https://ror.org/03cne5517', 'en', 1, 'https://ror.org/03cne5517 Kotsanis Institute'), (62786, 'https://ror.org/03cr5e788', 'de', 1, 'https://ror.org/03cr5e788 Klinik und Poliklinik für Hals-, Nasen-, Ohrenheilkunde'), (62787, 'https://ror.org/03cr9cq69', 'no_lang_code', 1, 'https://ror.org/03cr9cq69 Rivanna Medical (United States)'), (62788, 'https://ror.org/03creye80', 'en', 1, 'https://ror.org/03creye80 Boucher Institute of Naturopathic Medicine'), (62789, 'https://ror.org/03crycs56', 'en', 1, 'https://ror.org/03crycs56 Regional Center for the Prevention and Control of AIDS Volgograd Волгоградский областной центр профилактики и борьбы со СПИДом'), (62790, 'https://ror.org/03cryrv62', 'en', 1, 'https://ror.org/03cryrv62 Denova Research'), (62791, 'https://ror.org/03ct3tn05', 'en', 1, 'https://ror.org/03ct3tn05 Italian Society of Periodontology and Implantology Società Italiana di Parodontologia e Implantologia'), (62792, 'https://ror.org/03cvc1094', 'en', 1, 'https://ror.org/03cvc1094 Jiangsu Provincial Academy of Environmental Science 江苏省环境科学研究院'), (62793, 'https://ror.org/03cxfcq46', 'en', 1, 'https://ror.org/03cxfcq46 Beijing Urban Systems Engineering Research Center 北京城市系统工程研究中心'), (62794, 'https://ror.org/03cyvc844', 'en', 1, 'https://ror.org/03cyvc844 "Woman Health & Family Planning" Charity Foundation Благодійний фонд "Жінка здоров''я та сімейного планування"'), (62795, 'https://ror.org/03czygt47', 'nl', 1, 'https://ror.org/03czygt47 Stichting Gereformeerd of Burgerweeshuis te Haarlem'), (62796, 'https://ror.org/03d4teb38', 'no_lang_code', 1, 'https://ror.org/03d4teb38 Infinitesimal (United States)'), (62797, 'https://ror.org/03d4twy92', 'en', 1, 'https://ror.org/03d4twy92 Fuling Center Hospital of Chongqing 重庆市涪陵中心医院'), (62798, 'https://ror.org/03d5cyq12', 'en', 1, 'https://ror.org/03d5cyq12 TriWest Research Associates'), (62799, 'https://ror.org/03d5yat74', 'en', 1, 'https://ror.org/03d5yat74 Fuzhou Pulmonary Hospital of Fujian'), (62800, 'https://ror.org/03d5zbb55', 'en', 1, 'https://ror.org/03d5zbb55 Alberta Pharmacists Association'), (62801, 'https://ror.org/03d6gdk92', 'sv', 1, 'https://ror.org/03d6gdk92 Folkuniversitetet'), (62802, 'https://ror.org/03d8cnv56', 'en', 1, 'https://ror.org/03d8cnv56 Neighbourhood Pharmacy Association of Canada'), (62803, 'https://ror.org/03d8ync95', 'de', 1, 'https://ror.org/03d8ync95 Stiftung Deutsche Depressionshilfe'), (62804, 'https://ror.org/03d9g9t35', 'en', 1, 'https://ror.org/03d9g9t35 Finnish Society of Surgery Suomen Kirurgiyhdistys'), (62805, 'https://ror.org/03ddhm954', 'en', 1, 'https://ror.org/03ddhm954 Keogh Institute for Medical Research'), (62806, 'https://ror.org/03deszr39', 'en', 1, 'https://ror.org/03deszr39 Defence Against Cancer Foundation'), (62807, 'https://ror.org/03det7895', 'en', 1, 'https://ror.org/03det7895 Oncology Hematology Associates of Saginaw Valley'), (62808, 'https://ror.org/03dfj7v30', 'en', 1, 'https://ror.org/03dfj7v30 ANZCHOG'), (62809, 'https://ror.org/03dgcmw96', 'en', 1, 'https://ror.org/03dgcmw96 Yunnan Earthquake Prevention and Disaster Reduction 云南省地震局'), (62810, 'https://ror.org/03djmp837', 'en', 1, 'https://ror.org/03djmp837 Gritman Medical Center'), (62811, 'https://ror.org/03djwcj59', 'en', 1, 'https://ror.org/03djwcj59 The Dementia Association of Thailand สมาคมโรคสมองเสื่อมประเทศไทย'), (62812, 'https://ror.org/03dn8ag70', 'de', 1, 'https://ror.org/03dn8ag70 Kaufmännische Krankenkasse'), (62813, 'https://ror.org/03dnhfz27', 'en', 1, 'https://ror.org/03dnhfz27 British Cardiovascular Intervention Society'), (62814, 'https://ror.org/03dp65d64', 'en', 1, 'https://ror.org/03dp65d64 Billings Clinic Cody'), (62815, 'https://ror.org/03dpet089', 'en', 1, 'https://ror.org/03dpet089 Organisation of European Cancer Institutes'), (62816, 'https://ror.org/03dq7j590', 'es', 1, 'https://ror.org/03dq7j590 Sociedad Española de Cuidados Intensivos Pediátricos'), (62817, 'https://ror.org/03drnws57', 'fr', 1, 'https://ror.org/03drnws57 Sheikh Ragheb Harb Hospital'), (62818, 'https://ror.org/03ds2he10', 'no_lang_code', 1, 'https://ror.org/03ds2he10 Atrium Medical (Australia)'), (62819, 'https://ror.org/03dsbfb14', 'en', 1, 'https://ror.org/03dsbfb14 Australian Institute of Tropical Health and Medicine'), (62820, 'https://ror.org/03dsbzv79', 'en', 1, 'https://ror.org/03dsbzv79 Radiation Oncology Associates'), (62821, 'https://ror.org/03dvtch96', 'en', 1, 'https://ror.org/03dvtch96 Fairbanks Memorial Hospital'), (62822, 'https://ror.org/03dw28302', 'en', 1, 'https://ror.org/03dw28302 BAU International University'), (62823, 'https://ror.org/03e0ext69', 'en', 1, 'https://ror.org/03e0ext69 Andrews Research & Education Foundation'), (62824, 'https://ror.org/03e1kgt76', 'en', 1, 'https://ror.org/03e1kgt76 Council of State Governments Midwest'), (62825, 'https://ror.org/03e4r0p06', 'en', 1, 'https://ror.org/03e4r0p06 The Royal College Of Anesthesiologists Of Thailand ราชวิทยาลัยวิสัญญีวิทยาแห่งประเทศไทย'), (62826, 'https://ror.org/03e4xsk06', 'no_lang_code', 1, 'https://ror.org/03e4xsk06 Thalchemy (United States)'), (62827, 'https://ror.org/03e5wjh27', 'en', 1, 'https://ror.org/03e5wjh27 Mayfield Brain & Spine'), (62828, 'https://ror.org/03e7cxq04', 'en', 1, 'https://ror.org/03e7cxq04 Canadian Society of Colon and Rectal Surgeons'), (62829, 'https://ror.org/03e7fa829', 'en', 1, 'https://ror.org/03e7fa829 Association of British Clinical Diabetologists'), (62830, 'https://ror.org/03e9v4151', 'en', 1, 'https://ror.org/03e9v4151 I4CE – Institute for Climate Economics'), (62831, 'https://ror.org/03ecr5c85', 'en', 1, 'https://ror.org/03ecr5c85 Kaiser Permanente Burke Medical Center'), (62832, 'https://ror.org/03ed6ba60', 'nl', 1, 'https://ror.org/03ed6ba60 Epilepsiefonds'), (62833, 'https://ror.org/03edzye91', 'no_lang_code', 1, 'https://ror.org/03edzye91 Apama Medical (United States)'), (62834, 'https://ror.org/03eg7wq38', 'tr', 1, 'https://ror.org/03eg7wq38 Turkish Emergency Medical Association Türkiye Acil Tıp Derneği'), (62835, 'https://ror.org/03egr7630', 'de', 1, 'https://ror.org/03egr7630 Diabetesinstitut Heidelberg'), (62836, 'https://ror.org/03emyr182', 'en', 1, 'https://ror.org/03emyr182 New Mexico Cancer Center'), (62837, 'https://ror.org/03en95y37', 'nl', 1, 'https://ror.org/03en95y37 Merem'), (62838, 'https://ror.org/03epcb283', 'en', 1, 'https://ror.org/03epcb283 Brain Matters Research'), (62839, 'https://ror.org/03epm2r70', 'en', 1, 'https://ror.org/03epm2r70 ICARE Eye Hospital & Postgraduate Institute'), (62840, 'https://ror.org/03eq4wq29', 'no_lang_code', 1, 'https://ror.org/03eq4wq29 Metacure (United States)'), (62841, 'https://ror.org/03erpd422', 'de', 1, 'https://ror.org/03erpd422 Förderkreis Hilfe für krebskranke Kinder'), (62842, 'https://ror.org/03esvmb28', 'en', 1, 'https://ror.org/03esvmb28 Kinderklinik Tübingen University Children''s Hospital Tübingen'), (62843, 'https://ror.org/03exf6a43', 'en', 1, 'https://ror.org/03exf6a43 Reproductive Science Medical Center'), (62844, 'https://ror.org/03exh6913', 'nl', 1, 'https://ror.org/03exh6913 Podocentrum Alkmaar'), (62845, 'https://ror.org/03exkkm57', 'no_lang_code', 1, 'https://ror.org/03exkkm57 Polaris Research and Development (United States)'), (62846, 'https://ror.org/03eyfxj96', 'ro', 1, 'https://ror.org/03eyfxj96 Spitalul Clinic Judeţean de Urgenţe "Sf. Spiridon" Iaşi'), (62847, 'https://ror.org/03eyr3b88', 'es', 1, 'https://ror.org/03eyr3b88 Fundación Empresa-Universidad Gallega'), (62848, 'https://ror.org/03f4hd425', 'en', 1, 'https://ror.org/03f4hd425 Northshore Oncology Associates'), (62849, 'https://ror.org/03f5v0b74', 'en', 1, 'https://ror.org/03f5v0b74 Midwest Stone Institute'), (62850, 'https://ror.org/03f6d5009', 'en', 1, 'https://ror.org/03f6d5009 Ludwig Boltzmann Institut Health Promotion Research'), (62851, 'https://ror.org/03f6gnd82', 'en', 1, 'https://ror.org/03f6gnd82 St. Rita''s Medical Center'), (62852, 'https://ror.org/03f9y3f86', 'en', 1, 'https://ror.org/03f9y3f86 Chesterfield Family Practice Center'), (62853, 'https://ror.org/03faca780', 'no_lang_code', 1, 'https://ror.org/03faca780 Screenscope (United States)'), (62854, 'https://ror.org/03fack110', 'de', 1, 'https://ror.org/03fack110 Anna Mueller Grocholski-Stiftung'), (62855, 'https://ror.org/03famzf42', 'de', 1, 'https://ror.org/03famzf42 Acqua Klinik'), (62856, 'https://ror.org/03fc2zn41', 'en', 1, 'https://ror.org/03fc2zn41 Tallahassee Orthopedic Clinic'), (62857, 'https://ror.org/03fcke922', 'en', 1, 'https://ror.org/03fcke922 Australian Institute of Food Science and Technology'), (62858, 'https://ror.org/03fd2y933', 'nl', 1, 'https://ror.org/03fd2y933 Stichting Agis Zorginnovatiefonds'), (62859, 'https://ror.org/03feft235', 'en', 1, 'https://ror.org/03feft235 The Cardiac and Vascular Institute'), (62860, 'https://ror.org/03fgher32', 'en', 1, 'https://ror.org/03fgher32 UC Irvine Health'), (62861, 'https://ror.org/03fhrtz10', 'en', 1, 'https://ror.org/03fhrtz10 Northwestern Medicine Lake Forest Hospital'), (62862, 'https://ror.org/03fmtg610', 'de', 1, 'https://ror.org/03fmtg610 Institut für alternative und nachhaltige Ernährung'), (62863, 'https://ror.org/03frm6q70', 'en', 1, 'https://ror.org/03frm6q70 Trios Health'), (62864, 'https://ror.org/03fs77m09', 'no_lang_code', 1, 'https://ror.org/03fs77m09 GILUPI (Germany)'), (62865, 'https://ror.org/03fsf0027', 'en', 1, 'https://ror.org/03fsf0027 British Columbia Dental Hygienists'' Association'), (62866, 'https://ror.org/03fsnw247', 'no_lang_code', 1, 'https://ror.org/03fsnw247 OnkoDataMed (Germany)'), (62867, 'https://ror.org/03fszbf20', 'en', 1, 'https://ror.org/03fszbf20 Optimus Clinical Research'), (62868, 'https://ror.org/03ftkmq63', 'en', 1, 'https://ror.org/03ftkmq63 Jacksonville Center for Clinical Research'), (62869, 'https://ror.org/03fttgk04', 'en', 1, 'https://ror.org/03fttgk04 Hong Kong Eye Hospital 香港眼科醫院'), (62870, 'https://ror.org/03fvjvp95', 'no_lang_code', 1, 'https://ror.org/03fvjvp95 GDI Integrated Facility Services (Canada)'), (62871, 'https://ror.org/03g0fcj72', 'en', 1, 'https://ror.org/03g0fcj72 Sovah Health Martinsville'), (62872, 'https://ror.org/03g2qrf69', 'en', 1, 'https://ror.org/03g2qrf69 Florida Council of Teachers of Mathematics'), (62873, 'https://ror.org/03g7v9982', 'nl', 1, 'https://ror.org/03g7v9982 HilverZorg'), (62874, 'https://ror.org/03g9a1538', 'no_lang_code', 1, 'https://ror.org/03g9a1538 Embedded Fitness (Netherlands)'), (62875, 'https://ror.org/03ga0ws30', 'no_lang_code', 1, 'https://ror.org/03ga0ws30 Seismic Isolation Engineering (United States)'), (62876, 'https://ror.org/03gc62f43', 'no_lang_code', 1, 'https://ror.org/03gc62f43 Laxdale Foodservice (United Kingdom)'), (62877, 'https://ror.org/03gfeke93', 'en', 1, 'https://ror.org/03gfeke93 Guangdong Province Environmental Monitoring Center 广东省环境监测中心'), (62878, 'https://ror.org/03ggp5v59', 'en', 1, 'https://ror.org/03ggp5v59 Society For Applied Spectroscopy'), (62879, 'https://ror.org/03ghw7z04', 'nl', 1, 'https://ror.org/03ghw7z04 Uitvoeringsinstituut Werknemersverzekeringen'), (62880, 'https://ror.org/03gj9g134', 'en', 1, 'https://ror.org/03gj9g134 Translational Research Institute for Metabolism and Diabetes'), (62881, 'https://ror.org/03gn7k041', 'no_lang_code', 1, 'https://ror.org/03gn7k041 Nestlé (China)'), (62882, 'https://ror.org/03gnnp686', 'en', 1, 'https://ror.org/03gnnp686 Ocular Immunology and Uveitis Foundation'), (62883, 'https://ror.org/03gqc7y13', 'en', 1, 'https://ror.org/03gqc7y13 Institute for Exercise and Environmental Medicine'), (62884, 'https://ror.org/03greb419', 'en', 1, 'https://ror.org/03greb419 Turkish Metabolic Surgery Foundation'), (62885, 'https://ror.org/03grgqr35', 'en', 1, 'https://ror.org/03grgqr35 Moscow City Clinical Hospital after V.M. Buyanov Городская клиническая больница им. В. М. Буянова'), (62886, 'https://ror.org/03gsbap19', 'en', 1, 'https://ror.org/03gsbap19 Clinical Trial Center Maastricht'), (62887, 'https://ror.org/03gsjff75', 'de', 1, 'https://ror.org/03gsjff75 Waldburg-Zeil Kliniken'), (62888, 'https://ror.org/03gtaf306', 'no_lang_code', 1, 'https://ror.org/03gtaf306 Univerexport (Serbia)'), (62889, 'https://ror.org/03gtg9w20', 'es', 1, 'https://ror.org/03gtg9w20 Hospital Universitario del Vinalopó'), (62890, 'https://ror.org/03gv0kc08', 'fr', 1, 'https://ror.org/03gv0kc08 Oncolie'), (62891, 'https://ror.org/03gv2tj61', 'no_lang_code', 1, 'https://ror.org/03gv2tj61 Scottsdale Research Institute (United States)'), (62892, 'https://ror.org/03gy9dj46', 'en', 1, 'https://ror.org/03gy9dj46 Bear Valley'), (62893, 'https://ror.org/03gzy9q74', 'de', 1, 'https://ror.org/03gzy9q74 Agaplesion Bethesda Klinik'), (62894, 'https://ror.org/03h007a78', 'en', 1, 'https://ror.org/03h007a78 Association for Tropical Biology and Conservation'), (62895, 'https://ror.org/03h0d2228', 'en', 1, 'https://ror.org/03h0d2228 California Northstate University'), (62896, 'https://ror.org/03h0ds251', 'en', 1, 'https://ror.org/03h0ds251 European Dairy Association'), (62897, 'https://ror.org/03h1j4f11', 'de', 1, 'https://ror.org/03h1j4f11 Krankenhäuser Landkreis Freudenstadt'), (62898, 'https://ror.org/03h1ytk17', 'en', 1, 'https://ror.org/03h1ytk17 Kindercare Pediatrics'), (62899, 'https://ror.org/03h3mye18', 'de', 1, 'https://ror.org/03h3mye18 NBank'), (62900, 'https://ror.org/03h3pc979', 'no_lang_code', 1, 'https://ror.org/03h3pc979 Media Rez (United States)'), (62901, 'https://ror.org/03h4vsb09', 'en', 1, 'https://ror.org/03h4vsb09 St. Francis Foundation'), (62902, 'https://ror.org/03h6d4166', 'en', 1, 'https://ror.org/03h6d4166 Iowa Lutheran Hospital'), (62903, 'https://ror.org/03h79ns34', 'en', 1, 'https://ror.org/03h79ns34 Bowmen Family Foundation'), (62904, 'https://ror.org/03h7ehw84', 'en', 1, 'https://ror.org/03h7ehw84 Saint Mary''s Regional Medical Center'), (62905, 'https://ror.org/03h7g7t47', 'en', 1, 'https://ror.org/03h7g7t47 Massachusetts Academy of Math and Science'), (62906, 'https://ror.org/03h83vk17', 'fr', 1, 'https://ror.org/03h83vk17 Ministère De La Santé'), (62907, 'https://ror.org/03h8wam21', 'de', 1, 'https://ror.org/03h8wam21 Schön Klinik München Schwabing'), (62908, 'https://ror.org/03h96m993', 'fr', 1, 'https://ror.org/03h96m993 Les Thermes d’Allevard'), (62909, 'https://ror.org/03h9eev95', 'de', 1, 'https://ror.org/03h9eev95 Theo und Friedl Schöller-Stiftung'), (62910, 'https://ror.org/03h9qwy97', 'en', 1, 'https://ror.org/03h9qwy97 Southeastern Regional Education Service Center'), (62911, 'https://ror.org/03haahd66', 'en', 1, 'https://ror.org/03haahd66 Environmental Protection Research Institute of Light Industry 轻工业环境保护研究所'), (62912, 'https://ror.org/03haydy69', 'no_lang_code', 1, 'https://ror.org/03haydy69 Cambridge Weight Plan (United Kingdom)'), (62913, 'https://ror.org/03hbv3b74', 'en', 1, 'https://ror.org/03hbv3b74 Blantyre Institute for Community Ophthalmology'), (62914, 'https://ror.org/03hcgt996', 'no_lang_code', 1, 'https://ror.org/03hcgt996 Top Caredent (Switzerland)'), (62915, 'https://ror.org/03hdhwe72', 'it', 1, 'https://ror.org/03hdhwe72 Consorzio Interuniversitario Nazionale per la Bio-Oncologia'), (62916, 'https://ror.org/03hgdak73', 'no_lang_code', 1, 'https://ror.org/03hgdak73 Clinic Asklepio Larissa Θεραπευτήριο Ασκληπιείο Λάρισας ΕΠΕ'), (62917, 'https://ror.org/03hghb841', 'ro', 1, 'https://ror.org/03hghb841 Societatea Română de Anestezie şi Terapie Intensivă'), (62918, 'https://ror.org/03hmb2468', 'no_lang_code', 1, 'https://ror.org/03hmb2468 Neurotechnics (United Kingdom)'), (62919, 'https://ror.org/03hmdrw82', 'en', 1, 'https://ror.org/03hmdrw82 Russian Phlebology Association Ассоциация флебологов России'), (62920, 'https://ror.org/03hmqk966', 'de', 1, 'https://ror.org/03hmqk966 Albert Schweitzer Klinik'), (62921, 'https://ror.org/03hpjw438', 'en', 1, 'https://ror.org/03hpjw438 Praboromarajchanok Institute of Heath Workforce Development สถาบันพระบรมราชชนก'), (62922, 'https://ror.org/03hvx4842', 'de', 1, 'https://ror.org/03hvx4842 Gesundheitsnetz Rhein-Neckar'), (62923, 'https://ror.org/03hw0pv02', 'de', 1, 'https://ror.org/03hw0pv02 Vogtland-Klinik'), (62924, 'https://ror.org/03hx4df17', 'en', 1, 'https://ror.org/03hx4df17 Instructional Research Group'), (62925, 'https://ror.org/03hxqcn24', 'no_lang_code', 1, 'https://ror.org/03hxqcn24 Gilead Sciences (Italy)'), (62926, 'https://ror.org/03hy7gn55', 'en', 1, 'https://ror.org/03hy7gn55 The Mountain Institute'), (62927, 'https://ror.org/03j0gg417', 'en', 1, 'https://ror.org/03j0gg417 The Knee Society'), (62928, 'https://ror.org/03j3es427', 'de', 1, 'https://ror.org/03j3es427 Association of European Ayurvedic Physicians & Therapists Verband Europäischer Ayurveda-Mediziner & Therapeuten'), (62929, 'https://ror.org/03j503z69', 'fr', 1, 'https://ror.org/03j503z69 Institut Interuniversitaire pour les Relations entre l''Europe l''Amérique Latine et les Caraïbes'), (62930, 'https://ror.org/03j64fn02', 'no_lang_code', 1, 'https://ror.org/03j64fn02 MacKichan Software (United States)'), (62931, 'https://ror.org/03j7zd787', 'es', 1, 'https://ror.org/03j7zd787 Colombian Foundation Center for Epilepsy and Neurological Diseases Fundacion Centro Colombiano de Epilepsia y en Enfermedades Neurologicas'), (62932, 'https://ror.org/03j81hg31', 'fr', 1, 'https://ror.org/03j81hg31 Association de Musicothérapie Applications et Recherches Cliniques'), (62933, 'https://ror.org/03jbnw407', 'fr', 1, 'https://ror.org/03jbnw407 Brides-les-Bains, Thermes de Brides-les-Bains'), (62934, 'https://ror.org/03jfdh841', 'en', 1, 'https://ror.org/03jfdh841 Japan Petroleum Energy Center 石油エネルギーセンター'), (62935, 'https://ror.org/03jftj094', 'nl', 1, 'https://ror.org/03jftj094 Yulius'), (62936, 'https://ror.org/03jgde213', 'en', 1, 'https://ror.org/03jgde213 Hellenic Food Industries Association Σύνδεσμος Ελληνικών Βιομηχανιών Τροφίμων'), (62937, 'https://ror.org/03jgzzv46', 'en', 1, 'https://ror.org/03jgzzv46 Alternating Hemiplegia of Childhood Foundation'), (62938, 'https://ror.org/03jh4jw93', 'en', 1, 'https://ror.org/03jh4jw93 CSIRO Health and Biosecurity'), (62939, 'https://ror.org/03jm9y996', 'en', 1, 'https://ror.org/03jm9y996 Lawrence Semiconductor Research Laboratory'), (62940, 'https://ror.org/03jmahf97', 'en', 1, 'https://ror.org/03jmahf97 Institut de Recherche de l''Agriculture Biologique Research Institute of Organic Agriculture'), (62941, 'https://ror.org/03jmcnx26', 'en', 1, 'https://ror.org/03jmcnx26 Southern Shark Industry Alliance'), (62942, 'https://ror.org/03jp2xz10', 'en', 1, 'https://ror.org/03jp2xz10 Intercultural Center for Research in Education'), (62943, 'https://ror.org/03jqhsm88', 'en', 1, 'https://ror.org/03jqhsm88 Gaidar Institute for Economic Policy Институт экономической политики имени Е. Т. Гайдара'), (62944, 'https://ror.org/03jt4bv90', 'en', 1, 'https://ror.org/03jt4bv90 University Hospitals Sharon Health Center'), (62945, 'https://ror.org/03jvn6861', 'no_lang_code', 1, 'https://ror.org/03jvn6861 PharmaFGP (Germany)'), (62946, 'https://ror.org/03jx7ar65', 'no_lang_code', 1, 'https://ror.org/03jx7ar65 DOCxcellence (Germany)'), (62947, 'https://ror.org/03jxkz251', 'it', 1, 'https://ror.org/03jxkz251 Istituto Tumori Bari'), (62948, 'https://ror.org/03jya5r16', 'no_lang_code', 1, 'https://ror.org/03jya5r16 MultiModel Research (United States)'), (62949, 'https://ror.org/03jykpa72', 'en', 1, 'https://ror.org/03jykpa72 National Congress of American Indians'), (62950, 'https://ror.org/03jz6qp63', 'en', 1, 'https://ror.org/03jz6qp63 Murmansk Regional Oncology Center Мурманский областной онкологический диспансер'), (62951, 'https://ror.org/03k18qw23', 'en', 1, 'https://ror.org/03k18qw23 Hainan Eye Hospital'), (62952, 'https://ror.org/03k261948', 'nl', 1, 'https://ror.org/03k261948 Roessingh, Centrum voor Revalidatie'), (62953, 'https://ror.org/03k2mbt67', 'it', 1, 'https://ror.org/03k2mbt67 Consorzio Universitario per l''Ateneo della Sicilia occidentale e del bacino del Mediterraneo, UNISOM'), (62954, 'https://ror.org/03k4avy53', 'no_lang_code', 1, 'https://ror.org/03k4avy53 Winanga-Li'), (62955, 'https://ror.org/03k4rxa78', 'no_lang_code', 1, 'https://ror.org/03k4rxa78 Obalon (United States)'), (62956, 'https://ror.org/03k50x073', 'en', 1, 'https://ror.org/03k50x073 Mats Uldal Humanitarian Foundation'), (62957, 'https://ror.org/03k553r38', 'en', 1, 'https://ror.org/03k553r38 Qatar Diabetes Association'), (62958, 'https://ror.org/03k57wy12', 'no_lang_code', 1, 'https://ror.org/03k57wy12 VesselTek Biomedical (United States)'), (62959, 'https://ror.org/03k6pst70', 'en', 1, 'https://ror.org/03k6pst70 Kharkiv Regional Clinical Psychiatric Hospital No 3 Харківська обласна клінічна психіатрична лікарня'), (62960, 'https://ror.org/03k706h10', 'en', 1, 'https://ror.org/03k706h10 Mark H. Zangmeister Cancer Center'), (62961, 'https://ror.org/03k7rfp93', 'en', 1, 'https://ror.org/03k7rfp93 NEGES Foundation'), (62962, 'https://ror.org/03kbgb212', 'en', 1, 'https://ror.org/03kbgb212 Society of Alcoholism and other Addictions'), (62963, 'https://ror.org/03kbxr932', 'de', 1, 'https://ror.org/03kbxr932 Schlosspark-Klinik'), (62964, 'https://ror.org/03kc8nj63', 'de', 1, 'https://ror.org/03kc8nj63 Medizinisches Wirtschaftsinstitut'), (62965, 'https://ror.org/03ke8w717', 'en', 1, 'https://ror.org/03ke8w717 Houston Fertility Institute'), (62966, 'https://ror.org/03kgjaz64', 'en', 1, 'https://ror.org/03kgjaz64 Vince Lombardi Cancer Clinic'), (62967, 'https://ror.org/03kh2bz92', 'en', 1, 'https://ror.org/03kh2bz92 National Institute of Public Health ສະຖາບັນສາທາລະນະສຸກແຫ່ງຊາດ'), (62968, 'https://ror.org/03khf7306', 'en', 1, 'https://ror.org/03khf7306 University Orthopedics Center'), (62969, 'https://ror.org/03kj3qm29', 'it', 1, 'https://ror.org/03kj3qm29 Associazione Italiana Vulvodinia Onlus'), (62970, 'https://ror.org/03kk4nz80', 'no_lang_code', 1, 'https://ror.org/03kk4nz80 Cyclotron (Netherlands)'), (62971, 'https://ror.org/03kkjyc12', 'no_lang_code', 1, 'https://ror.org/03kkjyc12 Medigene (Germany)'), (62972, 'https://ror.org/03kphbm02', 'no_lang_code', 1, 'https://ror.org/03kphbm02 Lofarma (Italy)'), (62973, 'https://ror.org/03kps0c77', 'no_lang_code', 1, 'https://ror.org/03kps0c77 Cool Sorption (Denmark)'), (62974, 'https://ror.org/03kqk1x83', 'de', 1, 'https://ror.org/03kqk1x83 Deutsche Gesellschaft für Transaktionsanalyse'), (62975, 'https://ror.org/03kqtp318', 'en', 1, 'https://ror.org/03kqtp318 BioBricks Foundation'), (62976, 'https://ror.org/03krr1g45', 'nl', 1, 'https://ror.org/03krr1g45 Aveleijn'), (62977, 'https://ror.org/03ks8z635', 'en', 1, 'https://ror.org/03ks8z635 International Hyperbarics Association'), (62978, 'https://ror.org/03ktrr903', 'no_lang_code', 1, 'https://ror.org/03ktrr903 Hu-Friedy (United States)'), (62979, 'https://ror.org/03kyy9y42', 'pt', 1, 'https://ror.org/03kyy9y42 Hospital Beatriz Ângelo'), (62980, 'https://ror.org/03kz34w09', 'en', 1, 'https://ror.org/03kz34w09 Sport Medicine Council of Alberta'), (62981, 'https://ror.org/03kz92t11', 'no_lang_code', 1, 'https://ror.org/03kz92t11 Hermes Arzneimittel (Germany)'), (62982, 'https://ror.org/03kzw7k63', 'no_lang_code', 1, 'https://ror.org/03kzw7k63 Insta (Germany)'), (62983, 'https://ror.org/03m0npv78', 'en', 1, 'https://ror.org/03m0npv78 Digestive Health Associates of Texas'), (62984, 'https://ror.org/03m0x9887', 'en', 1, 'https://ror.org/03m0x9887 Schizophrenia Society of Ontario'), (62985, 'https://ror.org/03m1gem82', 'no_lang_code', 1, 'https://ror.org/03m1gem82 Zambon (Netherlands)'), (62986, 'https://ror.org/03m2f4c21', 'en', 1, 'https://ror.org/03m2f4c21 Frontier Science Foundation-Hellas'), (62987, 'https://ror.org/03m412394', 'en', 1, 'https://ror.org/03m412394 START Clinic'), (62988, 'https://ror.org/03m5a3737', 'en', 1, 'https://ror.org/03m5a3737 Shandong Chest Hospital'), (62989, 'https://ror.org/03m723j50', 'en', 1, 'https://ror.org/03m723j50 Anson County Health Department'), (62990, 'https://ror.org/03m7jfm83', 'nl', 1, 'https://ror.org/03m7jfm83 Sophia Revalidatie'), (62991, 'https://ror.org/03m84n725', 'en', 1, 'https://ror.org/03m84n725 California Governor’s Office of Emergency Services'), (62992, 'https://ror.org/03m85x183', 'no_lang_code', 1, 'https://ror.org/03m85x183 KLS Martin (Germany)'), (62993, 'https://ror.org/03ma3hr46', 'en', 1, 'https://ror.org/03ma3hr46 St. Mary-Corwin Medical Center'), (62994, 'https://ror.org/03mbb6708', 'fr', 1, 'https://ror.org/03mbb6708 Gérontopôle Pierre Pfitzenmeyer'), (62995, 'https://ror.org/03meq3766', 'nl', 1, 'https://ror.org/03meq3766 Stichting OFOM'), (62996, 'https://ror.org/03mfyst18', 'no_lang_code', 1, 'https://ror.org/03mfyst18 Perseus PCI (United States)'), (62997, 'https://ror.org/03mg65n75', 'nl', 1, 'https://ror.org/03mg65n75 GGzE'), (62998, 'https://ror.org/03mg8fc79', 'no_lang_code', 1, 'https://ror.org/03mg8fc79 Fred Rogers (United States)'), (62999, 'https://ror.org/03mmtg035', 'en', 1, 'https://ror.org/03mmtg035 Digestive & Liver Disease Specialists'), (63000, 'https://ror.org/03mpzae61', 'en', 1, 'https://ror.org/03mpzae61 Kazakhstan Academy of Preventive Medicine Академии профилактической медицины'), (63001, 'https://ror.org/03mwphj92', 'en', 1, 'https://ror.org/03mwphj92 Rochester Center for Behavioral Medicine'), (63002, 'https://ror.org/03n17ds51', 'en', 1, 'https://ror.org/03n17ds51 Agriculture and Food'), (63003, 'https://ror.org/03n1zbr44', 'en', 1, 'https://ror.org/03n1zbr44 Infectious Clinical Hospital No. 1 Московская инфекционная больница № 1'), (63004, 'https://ror.org/03n243a44', 'nl', 1, 'https://ror.org/03n243a44 Atria'), (63005, 'https://ror.org/03n2efg67', 'en', 1, 'https://ror.org/03n2efg67 Hoffberger Family Philanthropies'), (63006, 'https://ror.org/03n2zvn26', 'en', 1, 'https://ror.org/03n2zvn26 United Healthcare Children''s Foundation'), (63007, 'https://ror.org/03n30a589', 'no_lang_code', 1, 'https://ror.org/03n30a589 U.S. Stem Cell (United States)'), (63008, 'https://ror.org/03n3g7r56', 'no_lang_code', 1, 'https://ror.org/03n3g7r56 Goodlife (Netherlands)'), (63009, 'https://ror.org/03n3nk688', 'en', 1, 'https://ror.org/03n3nk688 American Association of Kidney Patients'), (63010, 'https://ror.org/03n4cgv79', 'en', 1, 'https://ror.org/03n4cgv79 Memphis Center For Reproductive Health'), (63011, 'https://ror.org/03n4vgh07', 'en', 1, 'https://ror.org/03n4vgh07 Jordan-Young Institute'), (63012, 'https://ror.org/03n556v93', 'es', 1, 'https://ror.org/03n556v93 Instituto para la Atención y Prevención de las Adicciones'), (63013, 'https://ror.org/03n61m405', 'no_lang_code', 1, 'https://ror.org/03n61m405 Onkovis (Germany)'), (63014, 'https://ror.org/03n6b6g81', 'ca', 1, 'https://ror.org/03n6b6g81 Hospital de Sant Joan Despí Moisès Broggi'), (63015, 'https://ror.org/03n7jkz36', 'no_lang_code', 1, 'https://ror.org/03n7jkz36 Immunodiagnostic Systems (Denmark)'), (63016, 'https://ror.org/03n9p4x69', 'en', 1, 'https://ror.org/03n9p4x69 Institute for Orthopaedic Surgery & Sports Medicine'), (63017, 'https://ror.org/03naar428', 'nl', 1, 'https://ror.org/03naar428 Postmaster Psychologie Opleidingen'), (63018, 'https://ror.org/03naec835', 'en', 1, 'https://ror.org/03naec835 The Solomon Foundation'), (63019, 'https://ror.org/03nas4306', 'en', 1, 'https://ror.org/03nas4306 Fisheries Administration រដ្ឋបាល ជលផល'), (63020, 'https://ror.org/03nawys62', 'en', 1, 'https://ror.org/03nawys62 Thorne Nature Experience'), (63021, 'https://ror.org/03nayh382', 'no_lang_code', 1, 'https://ror.org/03nayh382 VITA (Germany)'), (63022, 'https://ror.org/03ncmjy81', 'no_lang_code', 1, 'https://ror.org/03ncmjy81 Lusofarmaco (Italy)'), (63023, 'https://ror.org/03ndabk35', 'de', 1, 'https://ror.org/03ndabk35 Krankenhaus Bethanien'), (63024, 'https://ror.org/03nemnn25', 'no_lang_code', 1, 'https://ror.org/03nemnn25 Karr Dental (Switzerland)'), (63025, 'https://ror.org/03nkqys97', 'en', 1, 'https://ror.org/03nkqys97 New York City Police Department'), (63026, 'https://ror.org/03nqfwv49', 'no_lang_code', 1, 'https://ror.org/03nqfwv49 IDEA (Germany)'), (63027, 'https://ror.org/03nsv9b85', 'de', 1, 'https://ror.org/03nsv9b85 Reproduktionsmedizin München'), (63028, 'https://ror.org/03nszce13', 'it', 1, 'https://ror.org/03nszce13 Ospedale Pediatrico Giovanni XXIII'), (63029, 'https://ror.org/03nx7mw09', 'no_lang_code', 1, 'https://ror.org/03nx7mw09 B. Braun (Netherlands)'), (63030, 'https://ror.org/03nye1643', 'es', 1, 'https://ror.org/03nye1643 Complejo Hospitalario Dr. Arnulfo Arias Madrid'), (63031, 'https://ror.org/03nyzw632', 'no_lang_code', 1, 'https://ror.org/03nyzw632 Novo Nordisk (Germany)'), (63032, 'https://ror.org/03nzaax06', 'en', 1, 'https://ror.org/03nzaax06 Ministry of Foreign Affairs 中華民國外交部'), (63033, 'https://ror.org/03p00z818', 'en', 1, 'https://ror.org/03p00z818 Dutch Lung Cancer Research Group'), (63034, 'https://ror.org/03p03fd83', 'en', 1, 'https://ror.org/03p03fd83 Montgomery Botanical Center'), (63035, 'https://ror.org/03p0wky60', 'en', 1, 'https://ror.org/03p0wky60 American Association for Bronchology and Interventional Pulmonology'), (63036, 'https://ror.org/03p14dc73', 'en', 1, 'https://ror.org/03p14dc73 Queensland Seafood Industry Association'), (63037, 'https://ror.org/03p2hyg63', 'en', 1, 'https://ror.org/03p2hyg63 National Association of Area Agencies on Aging'), (63038, 'https://ror.org/03p2pvt93', 'en', 1, 'https://ror.org/03p2pvt93 National Council on Crime and Delinquency'), (63039, 'https://ror.org/03p2tn002', 'en', 1, 'https://ror.org/03p2tn002 Florida Pain Institute'), (63040, 'https://ror.org/03p352e02', 'en', 1, 'https://ror.org/03p352e02 Ophtalmological Center After S.V.Malayan'), (63041, 'https://ror.org/03p371b74', 'en', 1, 'https://ror.org/03p371b74 Herford Hospital Klinikum Herford'), (63042, 'https://ror.org/03p4nrj93', 'es', 1, 'https://ror.org/03p4nrj93 Fundación para la Fibromialgia y el Síndrome de Fatiga Crónica'), (63043, 'https://ror.org/03pab6q64', 'en', 1, 'https://ror.org/03pab6q64 Children''s Diagnostic & Treatment Center'), (63044, 'https://ror.org/03pe5z861', 'en', 1, 'https://ror.org/03pe5z861 Kirklin Clinic'), (63045, 'https://ror.org/03pejh002', 'no_lang_code', 1, 'https://ror.org/03pejh002 AMW (Germany)'), (63046, 'https://ror.org/03pek4v37', 'pt', 1, 'https://ror.org/03pek4v37 Instituto de Olhos de Goiânia'), (63047, 'https://ror.org/03pentr35', 'en', 1, 'https://ror.org/03pentr35 Wuhan Applied Science and Technology School 武汉应用科技学院'), (63048, 'https://ror.org/03ph8dz38', 'nl', 1, 'https://ror.org/03ph8dz38 GGZ Westelijk Noord-Brabant'), (63049, 'https://ror.org/03phvnn05', 'no_lang_code', 1, 'https://ror.org/03phvnn05 Andair AG (Switzerland)'), (63050, 'https://ror.org/03pj64m52', 'en', 1, 'https://ror.org/03pj64m52 Bone and Joint Clinic of Baton Rouge'), (63051, 'https://ror.org/03pjrzs58', 'no_lang_code', 1, 'https://ror.org/03pjrzs58 Pioneer Valley Books (United States)'), (63052, 'https://ror.org/03pkj2z67', 'en', 1, 'https://ror.org/03pkj2z67 Lanzhou Petrochemical Polytechnic 兰州石化职业技术学院'), (63053, 'https://ror.org/03pn50n78', 'no_lang_code', 1, 'https://ror.org/03pn50n78 DC2 (United States)'), (63054, 'https://ror.org/03pnhfc19', 'no_lang_code', 1, 'https://ror.org/03pnhfc19 Dermatrendz'), (63055, 'https://ror.org/03pp2ae67', 'nl', 1, 'https://ror.org/03pp2ae67 Surinaamse Postspaarbank'), (63056, 'https://ror.org/03psazt82', 'no_lang_code', 1, 'https://ror.org/03psazt82 Ingredia (France)'), (63057, 'https://ror.org/03psr2094', 'de', 1, 'https://ror.org/03psr2094 GKV Spitzenverband'), (63058, 'https://ror.org/03pxttn44', 'pl', 1, 'https://ror.org/03pxttn44 Szpital Kliniczny Nr 1 we Wrocławiu'), (63059, 'https://ror.org/03pxwfh12', 'en', 1, 'https://ror.org/03pxwfh12 Ottumwa Regional Health Center'), (63060, 'https://ror.org/03q1wc761', 'fr', 1, 'https://ror.org/03q1wc761 Université Jean Lorougnon Guédé'), (63061, 'https://ror.org/03q33dp04', 'en', 1, 'https://ror.org/03q33dp04 Sichuan Provincial Hospital of Traditional Chinese Medicine 四川省中医院'), (63062, 'https://ror.org/03q39mv91', 'en', 1, 'https://ror.org/03q39mv91 Massage Therapist Association of Alberta'), (63063, 'https://ror.org/03q4enq27', 'en', 1, 'https://ror.org/03q4enq27 Thomas & Jeanne Elmezzi Foundation'), (63064, 'https://ror.org/03q5c2s89', 'pl', 1, 'https://ror.org/03q5c2s89 Centralny Szpital Kliniczny'), (63065, 'https://ror.org/03q5gxs50', 'en', 1, 'https://ror.org/03q5gxs50 Peter G. Dodge Foundation'), (63066, 'https://ror.org/03q658t19', 'it', 1, 'https://ror.org/03q658t19 Azienda Ospedaliero Universitario Mater Domini'), (63067, 'https://ror.org/03q7ay915', 'en', 1, 'https://ror.org/03q7ay915 TIAS School for Business and Society'), (63068, 'https://ror.org/03q9ez861', 'en', 1, 'https://ror.org/03q9ez861 Minorities in Mathematics, Science & Engineering'), (63069, 'https://ror.org/03q9mj749', 'en', 1, 'https://ror.org/03q9mj749 American Public Works Association'), (63070, 'https://ror.org/03qa48d48', 'en', 1, 'https://ror.org/03qa48d48 RSUD Prof. Dr. Saiful Anwar Malang'), (63071, 'https://ror.org/03qacnx75', 'en', 1, 'https://ror.org/03qacnx75 Kursk Regional Clinical Oncology Center курский областной онкологический диспансер'), (63072, 'https://ror.org/03qafw071', 'de', 1, 'https://ror.org/03qafw071 Vitos'), (63073, 'https://ror.org/03qan5r71', 'no_lang_code', 1, 'https://ror.org/03qan5r71 Macrogen (South Korea) 마크로젠'), (63074, 'https://ror.org/03qb4sg13', 'no_lang_code', 1, 'https://ror.org/03qb4sg13 Septodont (France)'); INSERT INTO `rors` VALUES (63075, 'https://ror.org/03qb61g53', 'no_lang_code', 1, 'https://ror.org/03qb61g53 Adnoviv (United States)'), (63076, 'https://ror.org/03qcwne61', 'en', 1, 'https://ror.org/03qcwne61 Nashville Public Library'), (63077, 'https://ror.org/03qdk1w56', 'en', 1, 'https://ror.org/03qdk1w56 Dutch Health Care Inspectorate Inspectie voor de Gezondheidszorg'), (63078, 'https://ror.org/03qem8p70', 'pl', 1, 'https://ror.org/03qem8p70 Zachodniopomorskie Centrum Onkologii'), (63079, 'https://ror.org/03qhz4n98', 'en', 1, 'https://ror.org/03qhz4n98 Center for Excellence in Education'), (63080, 'https://ror.org/03qhzdc37', 'no_lang_code', 1, 'https://ror.org/03qhzdc37 Bühlmann (Switzerland)'), (63081, 'https://ror.org/03qjsg132', 'no_lang_code', 1, 'https://ror.org/03qjsg132 Gadeta (Netherlands)'), (63082, 'https://ror.org/03qm3c405', 'no_lang_code', 1, 'https://ror.org/03qm3c405 TerraFly (United States)'), (63083, 'https://ror.org/03qtzhe36', 'en', 1, 'https://ror.org/03qtzhe36 Nutrasource'), (63084, 'https://ror.org/03qv0rv36', 'no_lang_code', 1, 'https://ror.org/03qv0rv36 Eisai (Taiwan)'), (63085, 'https://ror.org/03qv69876', 'de', 1, 'https://ror.org/03qv69876 Lungenklinik Köln-Merheim'), (63086, 'https://ror.org/03qwdkr25', 'en', 1, 'https://ror.org/03qwdkr25 First Affiliated Hospital of Shihezi University Medical College 石河子大学医学院第一附属医院'), (63087, 'https://ror.org/03qx0ne83', 'en', 1, 'https://ror.org/03qx0ne83 Dean Foundation'), (63088, 'https://ror.org/03qx3mk66', 'en', 1, 'https://ror.org/03qx3mk66 New York City Foundation for Computer Science Education'), (63089, 'https://ror.org/03qy1wr49', 'no_lang_code', 1, 'https://ror.org/03qy1wr49 Tasmanian Abalone Council (Australia)'), (63090, 'https://ror.org/03qz9r039', 'en', 1, 'https://ror.org/03qz9r039 Rwanda Military Hospital'), (63091, 'https://ror.org/03r29tc70', 'de', 1, 'https://ror.org/03r29tc70 Lungenklinik Hemer'), (63092, 'https://ror.org/03r2ppv49', 'en', 1, 'https://ror.org/03r2ppv49 The state budgetary institution of public health of the Perm Krai "City Children''s Clinical Polyclinic No. 5"'), (63093, 'https://ror.org/03r4ey572', 'no_lang_code', 1, 'https://ror.org/03r4ey572 Schweiger Dermatology Group (United States)'), (63094, 'https://ror.org/03r4phk79', 'en', 1, 'https://ror.org/03r4phk79 Land Information Access Association'), (63095, 'https://ror.org/03r50rc39', 'en', 1, 'https://ror.org/03r50rc39 Orthopaedic Institute for Children'), (63096, 'https://ror.org/03r5kty13', 'en', 1, 'https://ror.org/03r5kty13 Lehigh Center for Clinical Research'), (63097, 'https://ror.org/03r6h3t89', 'en', 1, 'https://ror.org/03r6h3t89 St. Petersburg State Medical Academy "City Polyclinic №44" Санкт-Петербургское государственное бюджетное учреждение здравоохранения "Городская поликлиника №44"'), (63098, 'https://ror.org/03r76e753', 'de', 1, 'https://ror.org/03r76e753 Rheinisch-Bergische Verlagsgesellschaft'), (63099, 'https://ror.org/03r782805', 'en', 1, 'https://ror.org/03r782805 Danish Pain Research Center'), (63100, 'https://ror.org/03r92yv86', 'en', 1, 'https://ror.org/03r92yv86 European Society for Surgical Research'), (63101, 'https://ror.org/03rc1y879', 'en', 1, 'https://ror.org/03rc1y879 Physicians'' Clinic of Iowa'), (63102, 'https://ror.org/03rcjma25', 'en', 1, 'https://ror.org/03rcjma25 Spanish Peaks Regional Health Center'), (63103, 'https://ror.org/03rehvw54', 'pt', 1, 'https://ror.org/03rehvw54 Hospital das Clínicas da Universidade Federal de Pernambuco'), (63104, 'https://ror.org/03rf7pf16', 'de', 1, 'https://ror.org/03rf7pf16 Karl Schlecht Stiftung'), (63105, 'https://ror.org/03rhbz403', 'en', 1, 'https://ror.org/03rhbz403 Kuala Lumpur Sports Medicine Centre'), (63106, 'https://ror.org/03rjqyx74', 'en', 1, 'https://ror.org/03rjqyx74 Montana Science Teachers Association'), (63107, 'https://ror.org/03rjzr314', 'en', 1, 'https://ror.org/03rjzr314 Guangdong Provincial Academy of Environmental Science'), (63108, 'https://ror.org/03rk6g530', 'en', 1, 'https://ror.org/03rk6g530 Hospital Universitario HM Puerta del Sur University Hospital HM Puerta del Sur'), (63109, 'https://ror.org/03rmatq71', 'nl', 1, 'https://ror.org/03rmatq71 CED Groep'), (63110, 'https://ror.org/03rmb1244', 'no_lang_code', 1, 'https://ror.org/03rmb1244 Radiometer (Germany)'), (63111, 'https://ror.org/03rmqr166', 'de', 1, 'https://ror.org/03rmqr166 KfH Kuratorium für Dialyse und Nierentransplantation'), (63112, 'https://ror.org/03rmvk095', 'no_lang_code', 1, 'https://ror.org/03rmvk095 Genexine (South Korea)'), (63113, 'https://ror.org/03rp11m69', 'en', 1, 'https://ror.org/03rp11m69 Municipal Autonomous Healthcare Institution'), (63114, 'https://ror.org/03rpvpe67', 'de', 1, 'https://ror.org/03rpvpe67 Geriatrische Gesundheitszentren'), (63115, 'https://ror.org/03rr0h512', 'de', 1, 'https://ror.org/03rr0h512 Feuerwehr Brühl'), (63116, 'https://ror.org/03rs9zz96', 'en', 1, 'https://ror.org/03rs9zz96 Government Medical Officers Association'), (63117, 'https://ror.org/03rshf720', 'de', 1, 'https://ror.org/03rshf720 Innovationsgesellschaft Technische Universität Braunschweig'), (63118, 'https://ror.org/03rsvnv92', 'en', 1, 'https://ror.org/03rsvnv92 The Sashbear Foundation'), (63119, 'https://ror.org/03rswdy10', 'de', 1, 'https://ror.org/03rswdy10 Poliklinik für Zahnärztliche Prothetik'), (63120, 'https://ror.org/03rwphv90', 'en', 1, 'https://ror.org/03rwphv90 International Society for Quality of Life Research'), (63121, 'https://ror.org/03rzd8715', 'en', 1, 'https://ror.org/03rzd8715 Michigan Healthcare Professionals'), (63122, 'https://ror.org/03s1pms78', 'en', 1, 'https://ror.org/03s1pms78 Presbyterian Rust Medical Center'), (63123, 'https://ror.org/03s453j88', 'no_lang_code', 1, 'https://ror.org/03s453j88 Cristal Therapeutics (Netherlands)'), (63124, 'https://ror.org/03s477z20', 'en', 1, 'https://ror.org/03s477z20 Penny George Institute for Health and Healing'), (63125, 'https://ror.org/03s49qk39', 'en', 1, 'https://ror.org/03s49qk39 NephroCare'), (63126, 'https://ror.org/03s54zb62', 'en', 1, 'https://ror.org/03s54zb62 Jefferson Hospital'), (63127, 'https://ror.org/03s58x415', 'no_lang_code', 1, 'https://ror.org/03s58x415 Deichmann (Germany)'), (63128, 'https://ror.org/03s92re04', 'en', 1, 'https://ror.org/03s92re04 Nursing Science Foundation Switzerland Stiftung Pflegewissenschaften Schweiz'), (63129, 'https://ror.org/03sbhxr82', 'en', 1, 'https://ror.org/03sbhxr82 Mid-Pacific Institute'), (63130, 'https://ror.org/03sc3x439', 'en', 1, 'https://ror.org/03sc3x439 Flagstaff Medical Center'), (63131, 'https://ror.org/03segdh23', 'en', 1, 'https://ror.org/03segdh23 GynePro Medical'), (63132, 'https://ror.org/03sevk723', 'en', 1, 'https://ror.org/03sevk723 Divya Shanthi Christian Association and Trust'), (63133, 'https://ror.org/03sfwdd85', 'fr', 1, 'https://ror.org/03sfwdd85 AlterSanté'), (63134, 'https://ror.org/03sg89w32', 'en', 1, 'https://ror.org/03sg89w32 Western Australian Fishing Industry Council'), (63135, 'https://ror.org/03sgp5m15', 'it', 1, 'https://ror.org/03sgp5m15 Italian Society of Rheumatology Società Italiana di Reumatologia'), (63136, 'https://ror.org/03sk0gd87', 'no_lang_code', 1, 'https://ror.org/03sk0gd87 Orthofix (Italy)'), (63137, 'https://ror.org/03sk8zw22', 'nl', 1, 'https://ror.org/03sk8zw22 Nederlandse Internisten Vereniging'), (63138, 'https://ror.org/03sp3a378', 'no_lang_code', 1, 'https://ror.org/03sp3a378 Expedeon (United States)'), (63139, 'https://ror.org/03sqnmh94', 'en', 1, 'https://ror.org/03sqnmh94 Vienna School of Clinical Research'), (63140, 'https://ror.org/03srr7476', 'en', 1, 'https://ror.org/03srr7476 Iridescent'), (63141, 'https://ror.org/03ssybn81', 'en', 1, 'https://ror.org/03ssybn81 Synergy Health'), (63142, 'https://ror.org/03sw8j870', 'en', 1, 'https://ror.org/03sw8j870 Center for Environment and Community Assets Development Trung tâm Môi trường và Phát triển Nguồn lực Cộng đồng'), (63143, 'https://ror.org/03swmst19', 'en', 1, 'https://ror.org/03swmst19 State Autonomous Healthcare Institution of the Novosibirsk Region "City Clinical Polyclinic No. 1"'), (63144, 'https://ror.org/03swt5851', 'en', 1, 'https://ror.org/03swt5851 St. James Mercy Hospital'), (63145, 'https://ror.org/03sywc351', 'en', 1, 'https://ror.org/03sywc351 Dayton Physicians Network'), (63146, 'https://ror.org/03szj8a51', 'en', 1, 'https://ror.org/03szj8a51 Hussman Institute for Autism'), (63147, 'https://ror.org/03t0g0q91', 'es', 1, 'https://ror.org/03t0g0q91 Grupo Gallego de Cáncer de Pulmón'), (63148, 'https://ror.org/03t30gb84', 'en', 1, 'https://ror.org/03t30gb84 Kaiser Permanente Woodlawn Medical Center'), (63149, 'https://ror.org/03t3mc268', 'en', 1, 'https://ror.org/03t3mc268 Pardee Hospital'), (63150, 'https://ror.org/03t3y2m33', 'en', 1, 'https://ror.org/03t3y2m33 International Behavioral Neuroscience Society'), (63151, 'https://ror.org/03t4faz67', 'en', 1, 'https://ror.org/03t4faz67 Russell Group'), (63152, 'https://ror.org/03t4ktv29', 'fr', 1, 'https://ror.org/03t4ktv29 Association Clinique et Thérapeutique Infantile du Val de Marne'), (63153, 'https://ror.org/03t64vv46', 'en', 1, 'https://ror.org/03t64vv46 Phoenix Society for Burn Survivors'), (63154, 'https://ror.org/03t7h7x05', 'es', 1, 'https://ror.org/03t7h7x05 Asociación de Universidades Grupo Montevideo'), (63155, 'https://ror.org/03t7mrd69', 'en', 1, 'https://ror.org/03t7mrd69 Quality Assurance Netherlands Universities'), (63156, 'https://ror.org/03t8qvt86', 'en', 1, 'https://ror.org/03t8qvt86 Team Westland'), (63157, 'https://ror.org/03t9hh016', 'en', 1, 'https://ror.org/03t9hh016 Mountain Medicine Society of Nepal'), (63158, 'https://ror.org/03ta38n35', 'en', 1, 'https://ror.org/03ta38n35 Inland Fisheries Service'), (63159, 'https://ror.org/03taj9579', 'en', 1, 'https://ror.org/03taj9579 East Bay Consortium of Educational Institutions'), (63160, 'https://ror.org/03tbabt10', 'en', 1, 'https://ror.org/03tbabt10 Virginia Cancer Specialists'), (63161, 'https://ror.org/03tcxks04', 'en', 1, 'https://ror.org/03tcxks04 St. James Healthcare'), (63162, 'https://ror.org/03tdgzq48', 'nl', 1, 'https://ror.org/03tdgzq48 Vrienden van het Sophia'), (63163, 'https://ror.org/03tdp3e45', 'en', 1, 'https://ror.org/03tdp3e45 Wellish Vision Institute'), (63164, 'https://ror.org/03thqn741', 'nl', 1, 'https://ror.org/03thqn741 Vereniging Nederlandse Cateringorganisaties'), (63165, 'https://ror.org/03tqdk258', 'en', 1, 'https://ror.org/03tqdk258 Saint Luke''s East Hospital'), (63166, 'https://ror.org/03tr83233', 'en', 1, 'https://ror.org/03tr83233 Institute for Interdisciplinary Medicine ifi–Institut für interdisziplinäre Medizin'), (63167, 'https://ror.org/03tre7r66', 'no_lang_code', 1, 'https://ror.org/03tre7r66 Isotopen Technologien München (Germany)'), (63168, 'https://ror.org/03trtgn80', 'pt', 1, 'https://ror.org/03trtgn80 Hospital Infantil Albert Sabin'), (63169, 'https://ror.org/03tte1d07', 'no_lang_code', 1, 'https://ror.org/03tte1d07 Chania General Hospital ”St. George” Γενικό Νοσοκομείο Χανίων "Ο Άγιος Γεώργιος"'), (63170, 'https://ror.org/03tv7jf42', 'en', 1, 'https://ror.org/03tv7jf42 Fondazione per la Ricerca Farmacologica Gianni Benzi Gianni Benzi Pharmacological Research Foundation'), (63171, 'https://ror.org/03twnzp51', 'en', 1, 'https://ror.org/03twnzp51 YMCA of Greater Vancouver'), (63172, 'https://ror.org/03twz1019', 'de', 1, 'https://ror.org/03twz1019 Wissenschaftliche Gesellschaft Freiburg'), (63173, 'https://ror.org/03tx1jp34', 'nl', 1, 'https://ror.org/03tx1jp34 De Forensische Zorgspecialisten'), (63174, 'https://ror.org/03tyb0e26', 'en', 1, 'https://ror.org/03tyb0e26 St. Anthony Hospital'), (63175, 'https://ror.org/03tygvc25', 'en', 1, 'https://ror.org/03tygvc25 Chinese Association for the Study of Pain'), (63176, 'https://ror.org/03v5eb747', 'en', 1, 'https://ror.org/03v5eb747 Malaysian Society of Anaesthesiologists'), (63177, 'https://ror.org/03vb1w478', 'en', 1, 'https://ror.org/03vb1w478 Texas Digestive Disease Consultants'), (63178, 'https://ror.org/03vbmcv19', 'no_lang_code', 1, 'https://ror.org/03vbmcv19 E&L Medical Systems (Germany)'), (63179, 'https://ror.org/03vc76c84', 'de', 1, 'https://ror.org/03vc76c84 BG Klinikum Duisburg'), (63180, 'https://ror.org/03vct0j86', 'en', 1, 'https://ror.org/03vct0j86 Gynecologic Oncology Associates'), (63181, 'https://ror.org/03vdexs55', 'en', 1, 'https://ror.org/03vdexs55 Global Alliance for Regenerative Medicine'), (63182, 'https://ror.org/03vf2kf90', 'en', 1, 'https://ror.org/03vf2kf90 Benelux Society of Phlebology Secretariat of the Benelux Society of Phlebology'), (63183, 'https://ror.org/03vf6ym20', 'en', 1, 'https://ror.org/03vf6ym20 Kawasaki Disease Foundation'), (63184, 'https://ror.org/03vfc4p83', 'no_lang_code', 1, 'https://ror.org/03vfc4p83 Octapharma (United States)'), (63185, 'https://ror.org/03vgg3427', 'en', 1, 'https://ror.org/03vgg3427 American Joint Replacement Registry'), (63186, 'https://ror.org/03vgzp053', 'en', 1, 'https://ror.org/03vgzp053 Regional Children''s Clinical Hospital No. 1 Государственное бюджетное учреждение здравоохранения Свердловской области Областная детская клиническая больница №1'), (63187, 'https://ror.org/03vhd0091', 'en', 1, 'https://ror.org/03vhd0091 Alma'), (63188, 'https://ror.org/03vhzfd61', 'no_lang_code', 1, 'https://ror.org/03vhzfd61 SteriPharm (Germany)'), (63189, 'https://ror.org/03vjak553', 'no_lang_code', 1, 'https://ror.org/03vjak553 Plymouth Grating Laboratory (United States)'), (63190, 'https://ror.org/03vjvtz41', 'no_lang_code', 1, 'https://ror.org/03vjvtz41 PronoKal Group (Spain)'), (63191, 'https://ror.org/03vkbjy63', 'nl', 1, 'https://ror.org/03vkbjy63 Conrisq Groep'), (63192, 'https://ror.org/03vkvcw90', 'en', 1, 'https://ror.org/03vkvcw90 Montana Health Research Institute'), (63193, 'https://ror.org/03vkvz969', 'en', 1, 'https://ror.org/03vkvz969 National Institute of Lymphology'), (63194, 'https://ror.org/03vn3r884', 'nl', 1, 'https://ror.org/03vn3r884 Zorg in Ontwikkeling'), (63195, 'https://ror.org/03vn93v04', 'no_lang_code', 1, 'https://ror.org/03vn93v04 GlucoSentient (United States)'), (63196, 'https://ror.org/03vnkza15', 'en', 1, 'https://ror.org/03vnkza15 Aga Khan Development Network'), (63197, 'https://ror.org/03vnp0789', 'en', 1, 'https://ror.org/03vnp0789 Siskiyou County Office of Education'), (63198, 'https://ror.org/03vq6fv28', 'en', 1, 'https://ror.org/03vq6fv28 Breast Cancer Network Australia'), (63199, 'https://ror.org/03vrg9x02', 'en', 1, 'https://ror.org/03vrg9x02 Arkansas Heart Hospital'), (63200, 'https://ror.org/03vrwsp35', 'no_lang_code', 1, 'https://ror.org/03vrwsp35 Ferring Pharmaceuticals (France)'), (63201, 'https://ror.org/03vsr5p38', 'no_lang_code', 1, 'https://ror.org/03vsr5p38 BioScience Laboratories (United States)'), (63202, 'https://ror.org/03vvy2n47', 'en', 1, 'https://ror.org/03vvy2n47 Mountain Studies Institute'), (63203, 'https://ror.org/03vwqmf10', 'en', 1, 'https://ror.org/03vwqmf10 Global Health Association of Miami'), (63204, 'https://ror.org/03vx7r377', 'en', 1, 'https://ror.org/03vx7r377 Retina Associates of Florida'), (63205, 'https://ror.org/03vxcm824', 'es', 1, 'https://ror.org/03vxcm824 Hospital Pedro de Elizalde'), (63206, 'https://ror.org/03vxfws77', 'en', 1, 'https://ror.org/03vxfws77 Beals institute'), (63207, 'https://ror.org/03vyf7w04', 'en', 1, 'https://ror.org/03vyf7w04 Kaiser Permanente Baldwin Park Medical Center'), (63208, 'https://ror.org/03w1b6j67', 'no_lang_code', 1, 'https://ror.org/03w1b6j67 Bitop (Germany)'), (63209, 'https://ror.org/03w26j609', 'no_lang_code', 1, 'https://ror.org/03w26j609 Cardiac Motion (United States)'), (63210, 'https://ror.org/03w2j7e67', 'en', 1, 'https://ror.org/03w2j7e67 Xinhua Translational Institute for Cancer Pain 上海交通大学医学院附属新华医院'), (63211, 'https://ror.org/03w45gf56', 'en', 1, 'https://ror.org/03w45gf56 CHI Health Mercy Council Bluffs'), (63212, 'https://ror.org/03w498803', 'en', 1, 'https://ror.org/03w498803 IVO Addiction Research Institute'), (63213, 'https://ror.org/03w55an86', 'no_lang_code', 1, 'https://ror.org/03w55an86 NutritionQuest (United States)'), (63214, 'https://ror.org/03w65s121', 'en', 1, 'https://ror.org/03w65s121 Noyes Memorial Hospital'), (63215, 'https://ror.org/03w71jp71', 'en', 1, 'https://ror.org/03w71jp71 Toledo Clinic Cancer Center'), (63216, 'https://ror.org/03w7cqb73', 'en', 1, 'https://ror.org/03w7cqb73 Jack Jablonski BEL13VE in Miracles Foundation'), (63217, 'https://ror.org/03w9gyy65', 'en', 1, 'https://ror.org/03w9gyy65 GI Cancer Institute'), (63218, 'https://ror.org/03waq1x26', 'en', 1, 'https://ror.org/03waq1x26 Lakewood Health System'), (63219, 'https://ror.org/03waxp229', 'en', 1, 'https://ror.org/03waxp229 Acıbadem University Atakent Hospital'), (63220, 'https://ror.org/03wcj2062', 'no_lang_code', 1, 'https://ror.org/03wcj2062 Ardelyx (United States)'), (63221, 'https://ror.org/03wdref81', 'no_lang_code', 1, 'https://ror.org/03wdref81 Remedial Centre Hospital'), (63222, 'https://ror.org/03we5jj07', 'de', 1, 'https://ror.org/03we5jj07 OH DO KWAN Stiftung Ludmilla Pankofer und Carl Wiedmeier'), (63223, 'https://ror.org/03weyyh46', 'de', 1, 'https://ror.org/03weyyh46 Asklepios Klinikum Harburg'), (63224, 'https://ror.org/03wfcm341', 'no_lang_code', 1, 'https://ror.org/03wfcm341 Nobilis Therapeutics (United States)'), (63225, 'https://ror.org/03wh2ff79', 'no_lang_code', 1, 'https://ror.org/03wh2ff79 International Isotopes (United States)'), (63226, 'https://ror.org/03wjb0y70', 'en', 1, 'https://ror.org/03wjb0y70 Israeli Association for Cardiovascular Trials'), (63227, 'https://ror.org/03wkbzm88', 'en', 1, 'https://ror.org/03wkbzm88 Turkish Thoracic Society Türk Toraks Derneği'), (63228, 'https://ror.org/03wkdtr38', 'no_lang_code', 1, 'https://ror.org/03wkdtr38 Profound Medical (Canada)'), (63229, 'https://ror.org/03wkx9d81', 'en', 1, 'https://ror.org/03wkx9d81 Israel Medical Association'), (63230, 'https://ror.org/03wnr4x73', 'en', 1, 'https://ror.org/03wnr4x73 Samsung Life Public Welfare Foundation 삼성 생명 복지 재단'), (63231, 'https://ror.org/03wnxd135', 'en', 1, 'https://ror.org/03wnxd135 Second Affiliated Hospital of Fujian Medical University 福建医科大学附属第二医院'), (63232, 'https://ror.org/03wq3ma67', 'en', 1, 'https://ror.org/03wq3ma67 Magdi Yacoub Heart Foundation مؤسسة مجدى يعقوب للقلب'), (63233, 'https://ror.org/03wqpgn56', 'en', 1, 'https://ror.org/03wqpgn56 Kigezi Healthcare Foundation'), (63234, 'https://ror.org/03wr2ty35', 'fr', 1, 'https://ror.org/03wr2ty35 Groupe Hospitalier de l''Institut Catholique de Lille'), (63235, 'https://ror.org/03wtz8b43', 'en', 1, 'https://ror.org/03wtz8b43 Kimberley Aboriginal Medical Services'), (63236, 'https://ror.org/03wwk8c55', 'en', 1, 'https://ror.org/03wwk8c55 Nepal Fertility Care Center'), (63237, 'https://ror.org/03x3mrm69', 'es', 1, 'https://ror.org/03x3mrm69 Insitituto Mexicano de Investigación de Familia y Población, Yo quiero Yo puedo'), (63238, 'https://ror.org/03x5tah73', 'no_lang_code', 1, 'https://ror.org/03x5tah73 Vaximm (Germany)'), (63239, 'https://ror.org/03x67yw88', 'nl', 1, 'https://ror.org/03x67yw88 Orthopedie Groot Eindhoven'), (63240, 'https://ror.org/03x78vf16', 'es', 1, 'https://ror.org/03x78vf16 Instituto Médico Platense'), (63241, 'https://ror.org/03x91xm81', 'no_lang_code', 1, 'https://ror.org/03x91xm81 Vascular BioSciences (United States)'), (63242, 'https://ror.org/03xaqy997', 'en', 1, 'https://ror.org/03xaqy997 Society for Minimally Invasive Spine Surgery'), (63243, 'https://ror.org/03xd8mt09', 'en', 1, 'https://ror.org/03xd8mt09 ANOA'), (63244, 'https://ror.org/03xgnab40', 'de', 1, 'https://ror.org/03xgnab40 Neurologisches Fachkrankenhaus für Bewegungsstörungen/Parkinson'), (63245, 'https://ror.org/03xhdc358', 'fr', 1, 'https://ror.org/03xhdc358 Direction Générale de la Pharmacie, du Médicament et des Laboratoires'), (63246, 'https://ror.org/03xhmcf52', 'en', 1, 'https://ror.org/03xhmcf52 Digestive Health Center of Louisiana'), (63247, 'https://ror.org/03xhpsm17', 'nl', 1, 'https://ror.org/03xhpsm17 Andros Mannenkliniek'), (63248, 'https://ror.org/03xmq3f10', 'en', 1, 'https://ror.org/03xmq3f10 Institute for Regenerative and Cellular Medicine'), (63249, 'https://ror.org/03xphxk37', 'es', 1, 'https://ror.org/03xphxk37 Centro de Implantología Cirugía Oral y Maxilofacial'), (63250, 'https://ror.org/03xpnp312', 'no_lang_code', 1, 'https://ror.org/03xpnp312 Hua Medicine (China)'), (63251, 'https://ror.org/03xqe1d82', 'id', 1, 'https://ror.org/03xqe1d82 Pembuluh Darah Harapan Kita'), (63252, 'https://ror.org/03xrhty12', 'en', 1, 'https://ror.org/03xrhty12 JH Rahn Foundation'), (63253, 'https://ror.org/03xrx2656', 'en', 1, 'https://ror.org/03xrx2656 Cure Foundation'), (63254, 'https://ror.org/03xsf0n03', 'no_lang_code', 1, 'https://ror.org/03xsf0n03 Sevika Medical (Switzerland)'), (63255, 'https://ror.org/03xtgc164', 'en', 1, 'https://ror.org/03xtgc164 DuPage Medical Group'), (63256, 'https://ror.org/03xvt9b17', 'en', 1, 'https://ror.org/03xvt9b17 Hayward Area Memorial Hospital'), (63257, 'https://ror.org/03xx7rp81', 'en', 1, 'https://ror.org/03xx7rp81 Council for Adult and Experiential Learning'), (63258, 'https://ror.org/03xzqj858', 'en', 1, 'https://ror.org/03xzqj858 Piramal Clinical Research'), (63259, 'https://ror.org/03xzqpb53', 'pt', 1, 'https://ror.org/03xzqpb53 Hospital Regional de Presidente Prudente'), (63260, 'https://ror.org/03y2n4b36', 'en', 1, 'https://ror.org/03y2n4b36 Japanese Academy of Maxillofacial Implants'), (63261, 'https://ror.org/03y40yh62', 'de', 1, 'https://ror.org/03y40yh62 Stiftung Depressionsforschung'), (63262, 'https://ror.org/03y5bbq43', 'no_lang_code', 1, 'https://ror.org/03y5bbq43 PlantTec Medical (Germany)'), (63263, 'https://ror.org/03y6mg459', 'en', 1, 'https://ror.org/03y6mg459 Meditation De-Addiction Health AIDS Nutrition Trust'), (63264, 'https://ror.org/03y7y3w57', 'de', 1, 'https://ror.org/03y7y3w57 Parkklinik Wiesbaden Schlangenbad'), (63265, 'https://ror.org/03y902w77', 'en', 1, 'https://ror.org/03y902w77 MidMichigan Medical Center - Alpena'), (63266, 'https://ror.org/03y9e9713', 'de', 1, 'https://ror.org/03y9e9713 Raphaelsklinik Münster'), (63267, 'https://ror.org/03y9g2t13', 'no_lang_code', 1, 'https://ror.org/03y9g2t13 Boehringer Ingelheim (Denmark)'), (63268, 'https://ror.org/03y9rwp16', 'fr', 1, 'https://ror.org/03y9rwp16 Hôpitaux Universitaires Grand Ouest'), (63269, 'https://ror.org/03yazg833', 'en', 1, 'https://ror.org/03yazg833 St. Peter’s Child Development Center'), (63270, 'https://ror.org/03ydnrx14', 'en', 1, 'https://ror.org/03ydnrx14 Connecticut Skin Institute'), (63271, 'https://ror.org/03yef6m79', 'en', 1, 'https://ror.org/03yef6m79 Oncological Dispensary No. 2 Онкологический диспансер № 2'), (63272, 'https://ror.org/03yf63872', 'sv', 1, 'https://ror.org/03yf63872 Probi'), (63273, 'https://ror.org/03yh6aq45', 'en', 1, 'https://ror.org/03yh6aq45 Alaska Institute for Justice'), (63274, 'https://ror.org/03yhxyz98', 'en', 1, 'https://ror.org/03yhxyz98 Chinese Medical Center'), (63275, 'https://ror.org/03yjh4902', 'en', 1, 'https://ror.org/03yjh4902 ResOrtho Foundation ResOrtho Stiftung'), (63276, 'https://ror.org/03yk6x532', 'en', 1, 'https://ror.org/03yk6x532 Texas Liver Institute'), (63277, 'https://ror.org/03ynpnz81', 'en', 1, 'https://ror.org/03ynpnz81 Atlantia Food Clinical Trials'), (63278, 'https://ror.org/03ypq8732', 'es', 1, 'https://ror.org/03ypq8732 Instituto Sexológico Murciano'), (63279, 'https://ror.org/03yqmy809', 'de', 1, 'https://ror.org/03yqmy809 Albert und Barbara von Metzler-Stiftung'), (63280, 'https://ror.org/03ysbjx45', 'de', 1, 'https://ror.org/03ysbjx45 Fachklinik 360°'), (63281, 'https://ror.org/03ytm9f32', 'de', 1, 'https://ror.org/03ytm9f32 Klinik Bad Reichenhall'), (63282, 'https://ror.org/03ytsc046', 'nl', 1, 'https://ror.org/03ytsc046 IJsselheem'), (63283, 'https://ror.org/03yv08q03', 'en', 1, 'https://ror.org/03yv08q03 Family Guidance Centers'), (63284, 'https://ror.org/03ywwjy69', 'en', 1, 'https://ror.org/03ywwjy69 The Howard Foundation'), (63285, 'https://ror.org/03yx5ta37', 'en', 1, 'https://ror.org/03yx5ta37 Richmond Behavioral Associates'), (63286, 'https://ror.org/03yyfkv62', 'en', 1, 'https://ror.org/03yyfkv62 Sancheti Institute For Orthopaedics & Rehabilitation'), (63287, 'https://ror.org/03z1g1222', 'no_lang_code', 1, 'https://ror.org/03z1g1222 TransTissue (Germany)'), (63288, 'https://ror.org/03z1jm984', 'en', 1, 'https://ror.org/03z1jm984 Western Governors Association'), (63289, 'https://ror.org/03z2eez35', 'en', 1, 'https://ror.org/03z2eez35 Madison County Health Department'), (63290, 'https://ror.org/03z4x4n61', 'no_lang_code', 1, 'https://ror.org/03z4x4n61 Lysosomal Therapeutics (United States)'), (63291, 'https://ror.org/03z5ka349', 'de', 1, 'https://ror.org/03z5ka349 Klinikum Konstanz'), (63292, 'https://ror.org/03z5qqj48', 'en', 1, 'https://ror.org/03z5qqj48 Adam International Hospital'), (63293, 'https://ror.org/03z68z654', 'pl', 1, 'https://ror.org/03z68z654 Samodzielny Publiczny Szpital Specjalistyczny Chorób Płuc im. dr O. Sokołowskiego'), (63294, 'https://ror.org/03z71e370', 'en', 1, 'https://ror.org/03z71e370 Municipal Budgetary Health care Institution "Clinical and Diagnostic Center" Health'), (63295, 'https://ror.org/03z77se46', 'en', 1, 'https://ror.org/03z77se46 Hawaii Department of Human Services'), (63296, 'https://ror.org/03z7gnm21', 'en', 1, 'https://ror.org/03z7gnm21 Center for the Improvement of Child Caring'), (63297, 'https://ror.org/03z7zv664', 'es', 1, 'https://ror.org/03z7zv664 Instituto de Salud del Estado de México'), (63298, 'https://ror.org/03za4at61', 'nl', 1, 'https://ror.org/03za4at61 Nationaal MS Fonds'), (63299, 'https://ror.org/03zbwg385', 'no_lang_code', 1, 'https://ror.org/03zbwg385 Lumenware (United States)'), (63300, 'https://ror.org/03zbwg482', 'no_lang_code', 1, 'https://ror.org/03zbwg482 Kowa (United States)'), (63301, 'https://ror.org/03zdy0d17', 'en', 1, 'https://ror.org/03zdy0d17 Motu Economic and Public Policy Research'), (63302, 'https://ror.org/03ze2q110', 'en', 1, 'https://ror.org/03ze2q110 Essex Westford School District'), (63303, 'https://ror.org/03zfqb242', 'de', 1, 'https://ror.org/03zfqb242 Elefanten Apotheke'), (63304, 'https://ror.org/03zgxjc71', 'en', 1, 'https://ror.org/03zgxjc71 Ohio Gastroenterology and Liver Institute'), (63305, 'https://ror.org/03zn9nd89', 'en', 1, 'https://ror.org/03zn9nd89 Department of Health Kagawaran ng Kalusugan'), (63306, 'https://ror.org/03znth086', 'no_lang_code', 1, 'https://ror.org/03znth086 Carthago International Solutions (United States)'), (63307, 'https://ror.org/03zqa2346', 'en', 1, 'https://ror.org/03zqa2346 Manitoba Institute for Patient Safety'), (63308, 'https://ror.org/03zqjf227', 'en', 1, 'https://ror.org/03zqjf227 Panaquatic'), (63309, 'https://ror.org/03zrdj512', 'en', 1, 'https://ror.org/03zrdj512 GOUZ YaO "Solovyov NV Clinical Emergency Hospital"'), (63310, 'https://ror.org/03zvpee43', 'de', 1, 'https://ror.org/03zvpee43 Hochschule für Gesundheitsorientierte Wissenschaften Rhein-Neckar'), (63311, 'https://ror.org/03zx2vv67', 'en', 1, 'https://ror.org/03zx2vv67 Oklahoma Blood Institute'), (63312, 'https://ror.org/03zxn7k97', 'de', 1, 'https://ror.org/03zxn7k97 Die Zahnärzte.ch'), (63313, 'https://ror.org/03zzm8134', 'en', 1, 'https://ror.org/03zzm8134 Deutschen Akademie für Flug- und Reisemedizin German Academy for Aviation and Travel Medicine'), (63314, 'https://ror.org/04030gz13', 'en', 1, 'https://ror.org/04030gz13 Kriminalvården Swedish Prison and Probation Service'), (63315, 'https://ror.org/0405m4551', 'en', 1, 'https://ror.org/0405m4551 MedStar Heart & Vascular Institute'), (63316, 'https://ror.org/0405wpw62', 'en', 1, 'https://ror.org/0405wpw62 Vasan Eye Care Hospital'), (63317, 'https://ror.org/0408r6k10', 'en', 1, 'https://ror.org/0408r6k10 Mary Washington Hospital'), (63318, 'https://ror.org/040a4rx48', 'fr', 1, 'https://ror.org/040a4rx48 Institut Supérieur du Sport et de l’Éducation Physique de Sfax'), (63319, 'https://ror.org/040cmp171', 'no_lang_code', 1, 'https://ror.org/040cmp171 Asahi Kasei (Germany)'), (63320, 'https://ror.org/040ctp848', 'en', 1, 'https://ror.org/040ctp848 Aleut International Association'), (63321, 'https://ror.org/040dw4657', 'no_lang_code', 1, 'https://ror.org/040dw4657 Baxter (Belgium)'), (63322, 'https://ror.org/040emdb43', 'en', 1, 'https://ror.org/040emdb43 Fetal Medicine Foundation Belgium Foetale Geneeskunde'), (63323, 'https://ror.org/040frxb47', 'en', 1, 'https://ror.org/040frxb47 Niger State Ministry of Health'), (63324, 'https://ror.org/040gwjm94', 'no_lang_code', 1, 'https://ror.org/040gwjm94 MusclePharm Sports Science Institute (United States)'), (63325, 'https://ror.org/040h2ty70', 'no_lang_code', 1, 'https://ror.org/040h2ty70 Optima Pharmazeutische (Germany)'), (63326, 'https://ror.org/040hgf597', 'en', 1, 'https://ror.org/040hgf597 Institute for Liver Health'), (63327, 'https://ror.org/040pncp85', 'en', 1, 'https://ror.org/040pncp85 Colorado Blood Cancer Institute'), (63328, 'https://ror.org/040s1e839', 'no_lang_code', 1, 'https://ror.org/040s1e839 Launchpad Central (United States)'), (63329, 'https://ror.org/040s9t622', 'no_lang_code', 1, 'https://ror.org/040s9t622 Novo Nordisk (Italy)'), (63330, 'https://ror.org/041045722', 'en', 1, 'https://ror.org/041045722 Bloom Fertility Centre'), (63331, 'https://ror.org/041100z65', 'en', 1, 'https://ror.org/041100z65 State Radio Regulation Of China 国家无线电监测中心'), (63332, 'https://ror.org/04113mk23', 'no_lang_code', 1, 'https://ror.org/04113mk23 Akupunkturforeningen'), (63333, 'https://ror.org/0412yvb02', 'en', 1, 'https://ror.org/0412yvb02 Graves Gilbert Clinic'), (63334, 'https://ror.org/0413e4b06', 'no', 1, 'https://ror.org/0413e4b06 Solveig and Johan P. Sommer''s foundation Solveig og Johan P. Sommers stiftelse'), (63335, 'https://ror.org/0413n0f20', 'fr', 1, 'https://ror.org/0413n0f20 Loterie Nationale Nationale loterij Nationallotterie'), (63336, 'https://ror.org/0415b1145', 'en', 1, 'https://ror.org/0415b1145 Leiomyosarcoma Direct Research Foundation'), (63337, 'https://ror.org/041682e62', 'en', 1, 'https://ror.org/041682e62 Shenzhen Habitat Environment Committee 深圳市人居环境委员会'), (63338, 'https://ror.org/0417z1990', 'de', 1, 'https://ror.org/0417z1990 Klinikum Bremerhaven-Reinkenheide'), (63339, 'https://ror.org/041a6v281', 'nl', 1, 'https://ror.org/041a6v281 Centrum Verslavings Onderzoek'), (63340, 'https://ror.org/041avvw93', 'en', 1, 'https://ror.org/041avvw93 Riverside Transplantation Institute'), (63341, 'https://ror.org/041b88186', 'en', 1, 'https://ror.org/041b88186 Intercultural Development Research Association'), (63342, 'https://ror.org/041b8s785', 'no_lang_code', 1, 'https://ror.org/041b8s785 Clinipace (United States)'), (63343, 'https://ror.org/041c6tx10', 'en', 1, 'https://ror.org/041c6tx10 Southwest General Health Center'), (63344, 'https://ror.org/041drfb04', 'en', 1, 'https://ror.org/041drfb04 Fruit Research Institute 广东省农业科学院果树研究所'), (63345, 'https://ror.org/041e7q719', 'en', 1, 'https://ror.org/041e7q719 Institute of Molecular and Translational Medicine Ústav molekulární a translační medicíny'), (63346, 'https://ror.org/041ee2w62', 'en', 1, 'https://ror.org/041ee2w62 Michael Reese Research and Education Foundation'), (63347, 'https://ror.org/041g5fr04', 'nl', 1, 'https://ror.org/041g5fr04 GGNet'), (63348, 'https://ror.org/041hmmv49', 'en', 1, 'https://ror.org/041hmmv49 Bronx Psychiatric Center'), (63349, 'https://ror.org/041kzk395', 'no_lang_code', 1, 'https://ror.org/041kzk395 Elektror Airsystems (Germany)'), (63350, 'https://ror.org/041mqc477', 'no_lang_code', 1, 'https://ror.org/041mqc477 Zija International (United States)'), (63351, 'https://ror.org/041mscx66', 'no_lang_code', 1, 'https://ror.org/041mscx66 Vortex Hydro Energy (United States)'), (63352, 'https://ror.org/041n30849', 'de', 1, 'https://ror.org/041n30849 Union zur Förderung von Oel- und Proteinpflanzen e.V.'), (63353, 'https://ror.org/041n62j20', 'en', 1, 'https://ror.org/041n62j20 Maryland Department of Legislative Services'), (63354, 'https://ror.org/041s25165', 'en', 1, 'https://ror.org/041s25165 National Association of Attorneys General'), (63355, 'https://ror.org/041twma66', 'en', 1, 'https://ror.org/041twma66 Science Factory'), (63356, 'https://ror.org/041wcwm28', 'en', 1, 'https://ror.org/041wcwm28 American Association of Physical Anthropologists'), (63357, 'https://ror.org/041x9ee87', 'no_lang_code', 1, 'https://ror.org/041x9ee87 Klar Scientific (United States)'), (63358, 'https://ror.org/041zgk078', 'en', 1, 'https://ror.org/041zgk078 Northeastern Mental Health Center'), (63359, 'https://ror.org/0425kp210', 'en', 1, 'https://ror.org/0425kp210 San Diego Spine Institute'), (63360, 'https://ror.org/0425mk239', 'en', 1, 'https://ror.org/0425mk239 Gruter Institute'), (63361, 'https://ror.org/0426yhw42', 'en', 1, 'https://ror.org/0426yhw42 St. Petersburg State Health Care Institution "Elizabethan Hospital" Санкт-Петербургское государственное бюджетное учреждение здравоохранения Елизаветинская больница'), (63362, 'https://ror.org/042agnp26', 'en', 1, 'https://ror.org/042agnp26 Sparta Cancer Center'), (63363, 'https://ror.org/042bx3y66', 'en', 1, 'https://ror.org/042bx3y66 Ablon Skin Institute and Research Center'), (63364, 'https://ror.org/042dbq096', 'en', 1, 'https://ror.org/042dbq096 Parker Adventist Hospital'), (63365, 'https://ror.org/042dk7821', 'en', 1, 'https://ror.org/042dk7821 Madison Children''s Museum'), (63366, 'https://ror.org/042eeg142', 'en', 1, 'https://ror.org/042eeg142 Adelaide Institute for Sleep Health'), (63367, 'https://ror.org/042g9vq32', 'de', 1, 'https://ror.org/042g9vq32 BG Klinikum Bergmannstrost Halle'), (63368, 'https://ror.org/042gsyn68', 'en', 1, 'https://ror.org/042gsyn68 Odessa Memorial Healthcare Center'), (63369, 'https://ror.org/042gx3p69', 'en', 1, 'https://ror.org/042gx3p69 Society For Pediatric Dermatology'), (63370, 'https://ror.org/042j4et55', 'en', 1, 'https://ror.org/042j4et55 Philippines Tuberculosis Society'), (63371, 'https://ror.org/042k68148', 'en', 1, 'https://ror.org/042k68148 Mercy Regional Medical Center'), (63372, 'https://ror.org/042pj0j50', 'fr', 1, 'https://ror.org/042pj0j50 Agence Universitaire de la Francophonie'), (63373, 'https://ror.org/042qe4k74', 'no_lang_code', 1, 'https://ror.org/042qe4k74 OESH Shoes (United States)'), (63374, 'https://ror.org/042rbpa77', 'en', 1, 'https://ror.org/042rbpa77 Damascus Hospital مستشفى دمشق'), (63375, 'https://ror.org/042s1np65', 'en', 1, 'https://ror.org/042s1np65 City Clinical Hospital No. 2 Городская Клиническая Больница № 2'), (63376, 'https://ror.org/042s2nd27', 'nl', 1, 'https://ror.org/042s2nd27 GGD Zeeland, Gemeentelijke gezondheidsdienst Zeeland'), (63377, 'https://ror.org/042t5qg73', 'en', 1, 'https://ror.org/042t5qg73 Miina Sillanpää Foundation Miina Sillanpään Säätiö'), (63378, 'https://ror.org/042v6ch48', 'nl', 1, 'https://ror.org/042v6ch48 Zorgverzekeraars Nederland'), (63379, 'https://ror.org/042xens09', 'no_lang_code', 1, 'https://ror.org/042xens09 BiotecEra (United States)'), (63380, 'https://ror.org/042xrv022', 'da', 1, 'https://ror.org/042xrv022 Dansk Centralbibliotek for Sydslesvig'), (63381, 'https://ror.org/042xwgm79', 'nl', 1, 'https://ror.org/042xwgm79 Fysio Schambergen'), (63382, 'https://ror.org/042y18291', 'en', 1, 'https://ror.org/042y18291 Kaiser Permanente Zion Medical Center'), (63383, 'https://ror.org/042y6y279', 'en', 1, 'https://ror.org/042y6y279 The Lloyd Society'), (63384, 'https://ror.org/042yqf226', 'nl', 1, 'https://ror.org/042yqf226 Sint Maartenskliniek'), (63385, 'https://ror.org/042yx6h67', 'de', 1, 'https://ror.org/042yx6h67 Medalp Imst - Zentrum für ambulante Chirurgie Betriebs'), (63386, 'https://ror.org/042z8c185', 'en', 1, 'https://ror.org/042z8c185 Tarkio College'), (63387, 'https://ror.org/04304fr42', 'en', 1, 'https://ror.org/04304fr42 National Finance Center'), (63388, 'https://ror.org/0430haf92', 'no_lang_code', 1, 'https://ror.org/0430haf92 Medartis (Switzerland)'), (63389, 'https://ror.org/04318hx17', 'nl', 1, 'https://ror.org/04318hx17 Antes'), (63390, 'https://ror.org/04318pf64', 'es', 1, 'https://ror.org/04318pf64 Instituto Nicaraguense de Pesca y Acuicultura'), (63391, 'https://ror.org/0431amh23', 'en', 1, 'https://ror.org/0431amh23 Klinik für Augenheilkunde Ophthalmology Clinic'), (63392, 'https://ror.org/0431xay97', 'no_lang_code', 1, 'https://ror.org/0431xay97 pfm medical (Germany)'), (63393, 'https://ror.org/043256924', 'en', 1, 'https://ror.org/043256924 Ludwig Boltzmann Institute for Translational Heart Failure Research'), (63394, 'https://ror.org/0432mp741', 'en', 1, 'https://ror.org/0432mp741 Royal Health Awareness Society'), (63395, 'https://ror.org/0439nps09', 'en', 1, 'https://ror.org/0439nps09 Assil Eye Institute'), (63396, 'https://ror.org/0439wry26', 'de', 1, 'https://ror.org/0439wry26 Ministerium für Heimat, Kommunales, Bau und Gleichstellung des Landes Nordrhein-Westfalen'), (63397, 'https://ror.org/043afx341', 'en', 1, 'https://ror.org/043afx341 Kaohsiung Breast Cancer Promotion and Education Society 社團法人高雄市乳癌防治衛教學會'), (63398, 'https://ror.org/043cmyb92', 'en', 1, 'https://ror.org/043cmyb92 Israel Diabetes Association אגודה ישראלית לסוכרת'), (63399, 'https://ror.org/043dj2c51', 'en', 1, 'https://ror.org/043dj2c51 South Australian Rock Lobster Advisory Council'), (63400, 'https://ror.org/043dpra13', 'no_lang_code', 1, 'https://ror.org/043dpra13 Eurocept Groep Eurocept Group (Netherlands)'), (63401, 'https://ror.org/043dsjh82', 'en', 1, 'https://ror.org/043dsjh82 The Advanced IVF Institute'), (63402, 'https://ror.org/043e6bd18', 'nl', 1, 'https://ror.org/043e6bd18 NIM Maatschappelijk Werk'), (63403, 'https://ror.org/043emz428', 'en', 1, 'https://ror.org/043emz428 Institute for Science and Human Values'), (63404, 'https://ror.org/043gdn302', 'en', 1, 'https://ror.org/043gdn302 Association of Ethiopian Microfinance Institutions የኢትዮጵያ ማይክሮ ፋይናንስ ተቋማት ማህበር'), (63405, 'https://ror.org/043gt9j70', 'en', 1, 'https://ror.org/043gt9j70 Arthritis Treatment Center'), (63406, 'https://ror.org/043hdf156', 'no_lang_code', 1, 'https://ror.org/043hdf156 Global BioClinical (United States)'), (63407, 'https://ror.org/043jpam45', 'en', 1, 'https://ror.org/043jpam45 Keystone Initiative for Network Based Education and Research'), (63408, 'https://ror.org/043m5qs92', 'en', 1, 'https://ror.org/043m5qs92 New Mexico Heart Institute'), (63409, 'https://ror.org/043mdy139', 'no_lang_code', 1, 'https://ror.org/043mdy139 Dentaid (Netherlands)'), (63410, 'https://ror.org/043nwx769', 'nl', 1, 'https://ror.org/043nwx769 Visio'), (63411, 'https://ror.org/043rqx383', 'en', 1, 'https://ror.org/043rqx383 Pinnacle Oncology Hematology'), (63412, 'https://ror.org/043sczt09', 'en', 1, 'https://ror.org/043sczt09 Ontario Association of Optometrists'), (63413, 'https://ror.org/043vk3t22', 'no_lang_code', 1, 'https://ror.org/043vk3t22 Terumo (Belgium)'), (63414, 'https://ror.org/043xarp69', 'no_lang_code', 1, 'https://ror.org/043xarp69 Knop Laboratories (Chile)'), (63415, 'https://ror.org/043yx1v14', 'en', 1, 'https://ror.org/043yx1v14 University and Rehabilitation Clinics Ulm Universitäts und Rehabilitationskliniken Ulm'), (63416, 'https://ror.org/0440a2x91', 'en', 1, 'https://ror.org/0440a2x91 St. Francis Regional Medical Center'), (63417, 'https://ror.org/0440bgy37', 'no_lang_code', 1, 'https://ror.org/0440bgy37 EHI Retail Institute (Germany)'), (63418, 'https://ror.org/0440mmj74', 'en', 1, 'https://ror.org/0440mmj74 World Childhood Foundation'), (63419, 'https://ror.org/0441v1872', 'no_lang_code', 1, 'https://ror.org/0441v1872 Mipharm (Italy)'), (63420, 'https://ror.org/0443rrm71', 'it', 1, 'https://ror.org/0443rrm71 Consorzio inter-Universitario per la previsione e la prevenzione dei Grandi RIschi'), (63421, 'https://ror.org/0445eft26', 'en', 1, 'https://ror.org/0445eft26 Advanced Memory Research Institute of New Jersey'), (63422, 'https://ror.org/0447hzq61', 'en', 1, 'https://ror.org/0447hzq61 Cornea and Laser Eye Institute - Hersh Vision Group'), (63423, 'https://ror.org/04488aw82', 'no_lang_code', 1, 'https://ror.org/04488aw82 Kellogg’s (Belgium)'), (63424, 'https://ror.org/044a30492', 'en', 1, 'https://ror.org/044a30492 Gantt Clinical Research Institute'), (63425, 'https://ror.org/044cwq841', 'de', 1, 'https://ror.org/044cwq841 AGO Austria'), (63426, 'https://ror.org/044d2hn91', 'fr', 1, 'https://ror.org/044d2hn91 Centre Hospitalier Guillaume Régnier'), (63427, 'https://ror.org/044dx6h83', 'en', 1, 'https://ror.org/044dx6h83 AIDS Healthcare Foundation'), (63428, 'https://ror.org/044ef5h76', 'en', 1, 'https://ror.org/044ef5h76 Shanghai Cell Therapy Research Institute'), (63429, 'https://ror.org/044g5sj75', 'nl', 1, 'https://ror.org/044g5sj75 Departement Cultuur, Jeugd en Media'), (63430, 'https://ror.org/044jq0109', 'no_lang_code', 1, 'https://ror.org/044jq0109 NeuroTrials Research (United States)'), (63431, 'https://ror.org/044jw3b45', 'pt', 1, 'https://ror.org/044jw3b45 Hospital Pitangueiras'), (63432, 'https://ror.org/044mt4802', 'en', 1, 'https://ror.org/044mt4802 Central European Cooperative Oncology Group'), (63433, 'https://ror.org/044p0sr27', 'no_lang_code', 1, 'https://ror.org/044p0sr27 ProMetic Life Sciences (United States)'), (63434, 'https://ror.org/044q6km85', 'en', 1, 'https://ror.org/044q6km85 Ministry of Health and Quality of Life'), (63435, 'https://ror.org/044s3bf07', 'nl', 1, 'https://ror.org/044s3bf07 Nederlandse Hoofdpijn Vereniging'), (63436, 'https://ror.org/044s59k57', 'de', 1, 'https://ror.org/044s59k57 Sächsisches Krankenhaus Rodewisch'), (63437, 'https://ror.org/044sr7e96', 'no_lang_code', 1, 'https://ror.org/044sr7e96 Difa Cooper (Italy)'), (63438, 'https://ror.org/044vvxq04', 'en', 1, 'https://ror.org/044vvxq04 International Society for Chronobiology'), (63439, 'https://ror.org/044xe3t49', 'lt', 1, 'https://ror.org/044xe3t49 Respublikinės Kauno Ligoninės'), (63440, 'https://ror.org/044zwp896', 'es', 1, 'https://ror.org/044zwp896 Fundación Andrés Marcio Marcio Andres Foundation'), (63441, 'https://ror.org/0451etm15', 'it', 1, 'https://ror.org/0451etm15 Associazione Medici Diabetologi'), (63442, 'https://ror.org/0452c3x52', 'nl', 1, 'https://ror.org/0452c3x52 D.H. Heijne Stichting'), (63443, 'https://ror.org/0456c8v85', 'en', 1, 'https://ror.org/0456c8v85 Lake Norman Oncology'), (63444, 'https://ror.org/04578ze73', 'no_lang_code', 1, 'https://ror.org/04578ze73 Derma Consult (Germany)'), (63445, 'https://ror.org/045axgc25', 'de', 1, 'https://ror.org/045axgc25 Ministerium für Arbeit, Gesundheit und Soziales des Landes Nordrhein-Westfalen'), (63446, 'https://ror.org/045ayna68', 'en', 1, 'https://ror.org/045ayna68 Justin Parker Neurological Institute'), (63447, 'https://ror.org/045d4st33', 'en', 1, 'https://ror.org/045d4st33 Yoga Science Foundation'), (63448, 'https://ror.org/045d8mm77', 'en', 1, 'https://ror.org/045d8mm77 Precision Research Institute'), (63449, 'https://ror.org/045dptz13', 'en', 1, 'https://ror.org/045dptz13 Associazione QOL-ONE QOL-ONE Association'), (63450, 'https://ror.org/045jdd948', 'en', 1, 'https://ror.org/045jdd948 LifeSpan Medical Institute'), (63451, 'https://ror.org/045jrd330', 'en', 1, 'https://ror.org/045jrd330 Dallas Nephrology Associates'), (63452, 'https://ror.org/045k5xj29', 'de', 1, 'https://ror.org/045k5xj29 Allgemeiner Deutscher Tanzlehrerverband'), (63453, 'https://ror.org/045m3df12', 'en', 1, 'https://ror.org/045m3df12 Tseung Kwan O Hospital 將軍澳醫院'), (63454, 'https://ror.org/045qccw34', 'no_lang_code', 1, 'https://ror.org/045qccw34 Bemer (Liechtenstein)'), (63455, 'https://ror.org/045qrr805', 'en', 1, 'https://ror.org/045qrr805 Ministry of Economy and Finance'), (63456, 'https://ror.org/045w1wd13', 'en', 1, 'https://ror.org/045w1wd13 Hellenic College of Treatment of Atherosclerosis Ελληνικό Κολέγιο Θεραπείας της Αθηροσκλήρωσης'), (63457, 'https://ror.org/045wd8a95', 'en', 1, 'https://ror.org/045wd8a95 OSF St. Francis Hospital & Medical Group'), (63458, 'https://ror.org/045xrc244', 'no_lang_code', 1, 'https://ror.org/045xrc244 ISO Arzneimittel (Germany)'), (63459, 'https://ror.org/045xrnk02', 'fr', 1, 'https://ror.org/045xrnk02 Doctors Without Borders Médecins Sans Frontières'), (63460, 'https://ror.org/045xvrw74', 'en', 1, 'https://ror.org/045xvrw74 German Insurance Association Gesamtverband der Deutschen Versicherungswirtschaft'), (63461, 'https://ror.org/045z78c59', 'en', 1, 'https://ror.org/045z78c59 ADD Centre'), (63462, 'https://ror.org/045znsy82', 'en', 1, 'https://ror.org/045znsy82 River Valley Community College'), (63463, 'https://ror.org/0460chp58', 'en', 1, 'https://ror.org/0460chp58 Nationaal Initiatief Hersenen & Cognitie National Initiative Brain & Cognition'), (63464, 'https://ror.org/0460whz58', 'en', 1, 'https://ror.org/0460whz58 Orange County Global Medical Center'), (63465, 'https://ror.org/0463yzy10', 'en', 1, 'https://ror.org/0463yzy10 Chongqing Population and Family Planning Science and Technology Research Institute 重庆市人口和计划生育科学技术研究院'), (63466, 'https://ror.org/0464wn274', 'en', 1, 'https://ror.org/0464wn274 Sericultural Research Institute 养殖研究所'), (63467, 'https://ror.org/0466ghp25', 'en', 1, 'https://ror.org/0466ghp25 Heekin Clinic'), (63468, 'https://ror.org/0467x3v78', 'de', 1, 'https://ror.org/0467x3v78 Orthopädische Praxis'), (63469, 'https://ror.org/0468q7p56', 'en', 1, 'https://ror.org/0468q7p56 North Little Rock Health Department'), (63470, 'https://ror.org/0468xyb13', 'en', 1, 'https://ror.org/0468xyb13 Icelandic Félag sjúkraþjálfara The Icelandic Physiotherapy Association'), (63471, 'https://ror.org/0468zsk48', 'en', 1, 'https://ror.org/0468zsk48 Bulgarr Ngaru Medical Aboriginal Corporation'), (63472, 'https://ror.org/0469pxf24', 'en', 1, 'https://ror.org/0469pxf24 Medicor Foundation'), (63473, 'https://ror.org/046bcwj93', 'no_lang_code', 1, 'https://ror.org/046bcwj93 Associated Management Services (United States)'), (63474, 'https://ror.org/046df5t56', 'en', 1, 'https://ror.org/046df5t56 U.S. Space and Rocket Center'), (63475, 'https://ror.org/046dq9976', 'nl', 1, 'https://ror.org/046dq9976 Cordaid'), (63476, 'https://ror.org/046dsav87', 'no_lang_code', 1, 'https://ror.org/046dsav87 Swisstom (Switzerland)'), (63477, 'https://ror.org/046gp2614', 'de', 1, 'https://ror.org/046gp2614 Deutsche Gesellschaft für Anästhesiologie und Intensivmedizin'), (63478, 'https://ror.org/046h4sg67', 'pt', 1, 'https://ror.org/046h4sg67 Instituto Vascular BH'), (63479, 'https://ror.org/046k3mr17', 'en', 1, 'https://ror.org/046k3mr17 Healthcare Global Enterprises'), (63480, 'https://ror.org/046n2mh17', 'no_lang_code', 1, 'https://ror.org/046n2mh17 Electrocon International (United States)'), (63481, 'https://ror.org/046nba540', 'en', 1, 'https://ror.org/046nba540 St. Mary''s Medical Center'), (63482, 'https://ror.org/046np1j53', 'sr', 1, 'https://ror.org/046np1j53 Institut za Reumatologiju'), (63483, 'https://ror.org/046pkq184', 'no_lang_code', 1, 'https://ror.org/046pkq184 Provexis (United Kingdom)'), (63484, 'https://ror.org/046sb0j13', 'es', 1, 'https://ror.org/046sb0j13 Asociación Española de Psiquiatría del Niño y el Adolescente'), (63485, 'https://ror.org/046sm3c31', 'de', 1, 'https://ror.org/046sm3c31 Austrian Society of Hypertension, Österreichische Gesellschaft für Hypertensiologie'), (63486, 'https://ror.org/046tgw891', 'en', 1, 'https://ror.org/046tgw891 New Hampshire Audubon'), (63487, 'https://ror.org/046ww9q34', 'it', 1, 'https://ror.org/046ww9q34 Casa di Cura Città di Roma'), (63488, 'https://ror.org/046xv3q50', 'en', 1, 'https://ror.org/046xv3q50 Running Injury Clinic'), (63489, 'https://ror.org/04705pk24', 'en', 1, 'https://ror.org/04705pk24 California Institute Of Medical Science'), (63490, 'https://ror.org/0470v5z93', 'de', 1, 'https://ror.org/0470v5z93 Post Apotheke'), (63491, 'https://ror.org/0471rft76', 'en', 1, 'https://ror.org/0471rft76 Global Alzheimer''s Platform Foundation'), (63492, 'https://ror.org/0472xf465', 'en', 1, 'https://ror.org/0472xf465 Nordic Society for Pediatric Hematology and Oncology'), (63493, 'https://ror.org/0479nnv27', 'no_lang_code', 1, 'https://ror.org/0479nnv27 Dentium (South Korea)'), (63494, 'https://ror.org/0479zah75', 'nl', 1, 'https://ror.org/0479zah75 Stichting LOOP'), (63495, 'https://ror.org/047a78m29', 'en', 1, 'https://ror.org/047a78m29 Farzan Knowledge Development, Research and Technology Institute'), (63496, 'https://ror.org/047acnh17', 'en', 1, 'https://ror.org/047acnh17 CReATe Fertility Centre'), (63497, 'https://ror.org/047b6h508', 'no_lang_code', 1, 'https://ror.org/047b6h508 Lamepro Benelux (Netherlands)'), (63498, 'https://ror.org/047b7k736', 'nl', 1, 'https://ror.org/047b7k736 Bartiméus'), (63499, 'https://ror.org/047bp3m73', 'en', 1, 'https://ror.org/047bp3m73 Florida Urology Associates'), (63500, 'https://ror.org/047bx1161', 'no_lang_code', 1, 'https://ror.org/047bx1161 Alaska Biological Research (United States)'), (63501, 'https://ror.org/047e6a566', 'en', 1, 'https://ror.org/047e6a566 Westwood Institute for Anxiety Disorders'), (63502, 'https://ror.org/047get849', 'en', 1, 'https://ror.org/047get849 Dallas Ear Institute'), (63503, 'https://ror.org/047hbnr51', 'no_lang_code', 1, 'https://ror.org/047hbnr51 DigsFish Services (Australia)'), (63504, 'https://ror.org/047j0w511', 'en', 1, 'https://ror.org/047j0w511 St. Joseph Mercy Canton'), (63505, 'https://ror.org/047qv2c31', 'no_lang_code', 1, 'https://ror.org/047qv2c31 Mammoet (Netherlands)'), (63506, 'https://ror.org/047tk1g21', 'no_lang_code', 1, 'https://ror.org/047tk1g21 Indena (France)'), (63507, 'https://ror.org/047xc1q35', 'no_lang_code', 1, 'https://ror.org/047xc1q35 Eminence Clinical Research (United States)'), (63508, 'https://ror.org/047xpay52', 'no_lang_code', 1, 'https://ror.org/047xpay52 PAX Scientific (United States)'), (63509, 'https://ror.org/047yyd552', 'en', 1, 'https://ror.org/047yyd552 American Foundry Society'); INSERT INTO `rors` VALUES (63510, 'https://ror.org/047zejf54', 'en', 1, 'https://ror.org/047zejf54 Chimes Society'), (63511, 'https://ror.org/0480n9h26', 'nl', 1, 'https://ror.org/0480n9h26 Nederlandse Vereniging voor Radiologie'), (63512, 'https://ror.org/04816wc22', 'en', 1, 'https://ror.org/04816wc22 Society on Neuroimmune Pharmacology'), (63513, 'https://ror.org/0481c6y41', 'en', 1, 'https://ror.org/0481c6y41 Australian Barramundi Farmers Association'), (63514, 'https://ror.org/04830hf15', 'de', 1, 'https://ror.org/04830hf15 Evangelisches Krankenhaus Oldenburg'), (63515, 'https://ror.org/048338z54', 'nl', 1, 'https://ror.org/048338z54 Radiotherapie Groep'), (63516, 'https://ror.org/0487c1f17', 'en', 1, 'https://ror.org/0487c1f17 Advanced Radiation Centers of New York'), (63517, 'https://ror.org/0487hf333', 'en', 1, 'https://ror.org/0487hf333 Pikeville Medical Center'), (63518, 'https://ror.org/04883bn66', 'en', 1, 'https://ror.org/04883bn66 Western Trauma Association'), (63519, 'https://ror.org/04898h931', 'no_lang_code', 1, 'https://ror.org/04898h931 Dfusion (United States)'), (63520, 'https://ror.org/048a4sn26', 'nl', 1, 'https://ror.org/048a4sn26 Stichting Adriaan Metius'), (63521, 'https://ror.org/048bjga67', 'no_lang_code', 1, 'https://ror.org/048bjga67 Evalan (Netherlands)'), (63522, 'https://ror.org/048d4kk91', 'no_lang_code', 1, 'https://ror.org/048d4kk91 National Bioproducts Institute (South Africa)'), (63523, 'https://ror.org/048g8j049', 'no_lang_code', 1, 'https://ror.org/048g8j049 Oncoscience (Germany)'), (63524, 'https://ror.org/048ga6v20', 'en', 1, 'https://ror.org/048ga6v20 Mesa Public Schools'), (63525, 'https://ror.org/048gkn792', 'no_lang_code', 1, 'https://ror.org/048gkn792 Inversago Pharma (Canada)'), (63526, 'https://ror.org/048hv9z27', 'es', 1, 'https://ror.org/048hv9z27 Centro de Infertilidad y Reproducción Humana'), (63527, 'https://ror.org/048jjj865', 'es', 1, 'https://ror.org/048jjj865 Sociedad Española de Cirugía Pediátrica'), (63528, 'https://ror.org/048jnwk41', 'nl', 1, 'https://ror.org/048jnwk41 De Viersprong'), (63529, 'https://ror.org/048kfq149', 'de', 1, 'https://ror.org/048kfq149 HIZ Berlin'), (63530, 'https://ror.org/048knfw55', 'no_lang_code', 1, 'https://ror.org/048knfw55 Gesundes Kinzigtal (Germany)'), (63531, 'https://ror.org/048m0by09', 'en', 1, 'https://ror.org/048m0by09 Indian Society of Critical Care Medicine'), (63532, 'https://ror.org/048n17y91', 'en', 1, 'https://ror.org/048n17y91 Excelsior Orthopaedics'), (63533, 'https://ror.org/048q77b60', 'en', 1, 'https://ror.org/048q77b60 Irish Pharmacy Union'), (63534, 'https://ror.org/048qh2s42', 'en', 1, 'https://ror.org/048qh2s42 OASI Bioresearch Foundation'), (63535, 'https://ror.org/048qt5n54', 'nl', 1, 'https://ror.org/048qt5n54 Koninklijke Nederlandse Klim- en Bergsport Vereniging'), (63536, 'https://ror.org/048sptm58', 'en', 1, 'https://ror.org/048sptm58 OCTANE FOUNDATION'), (63537, 'https://ror.org/048vgwq64', 'en', 1, 'https://ror.org/048vgwq64 New Hampshire Nurses'' Association'), (63538, 'https://ror.org/048xg4d81', 'en', 1, 'https://ror.org/048xg4d81 Northern Indiana Cancer Research Consortium'), (63539, 'https://ror.org/04901sx27', 'en', 1, 'https://ror.org/04901sx27 Port Macquarie Base Hospital'), (63540, 'https://ror.org/0491zfs73', 'nl', 1, 'https://ror.org/0491zfs73 Arkin'), (63541, 'https://ror.org/0492chx91', 'en', 1, 'https://ror.org/0492chx91 Go4children'), (63542, 'https://ror.org/04957ke43', 'en', 1, 'https://ror.org/04957ke43 Coalition of Asian-American Independent Practice Association'), (63543, 'https://ror.org/04983vw43', 'no_lang_code', 1, 'https://ror.org/04983vw43 Coöperatie VGZ (Netherlands)'), (63544, 'https://ror.org/0498ha267', 'en', 1, 'https://ror.org/0498ha267 Armstrong Center for Medicine & Health'), (63545, 'https://ror.org/04993ye45', 'en', 1, 'https://ror.org/04993ye45 Retina Vitreous Associates of Florida'), (63546, 'https://ror.org/049a2sy14', 'en', 1, 'https://ror.org/049a2sy14 Chautauqua Institution'), (63547, 'https://ror.org/049at5m16', 'en', 1, 'https://ror.org/049at5m16 Cypress Pointe Pain Management'), (63548, 'https://ror.org/049btft62', 'de', 1, 'https://ror.org/049btft62 Netzwerk der Rehabilitationsforschung in Nordrhein-Westfalen'), (63549, 'https://ror.org/049fxhe24', 'de', 1, 'https://ror.org/049fxhe24 Klinik Bad Bergzabern'), (63550, 'https://ror.org/049fybn29', 'en', 1, 'https://ror.org/049fybn29 Northern Area Armed Forces Hospital'), (63551, 'https://ror.org/049g3g548', 'de', 1, 'https://ror.org/049g3g548 Sana Kliniken Leipziger Land'), (63552, 'https://ror.org/049gpxk45', 'en', 1, 'https://ror.org/049gpxk45 OceanWatch Australia'), (63553, 'https://ror.org/049gtbp49', 'en', 1, 'https://ror.org/049gtbp49 ProCare Odessa Heart Institute'), (63554, 'https://ror.org/049hac046', 'en', 1, 'https://ror.org/049hac046 Oklahoma State Regents for Higher Education'), (63555, 'https://ror.org/049kfbr47', 'de', 1, 'https://ror.org/049kfbr47 Aktion Benni'), (63556, 'https://ror.org/049kj1302', 'es', 1, 'https://ror.org/049kj1302 Instituto de Gastroenterología'), (63557, 'https://ror.org/049kvfv38', 'no_lang_code', 1, 'https://ror.org/049kvfv38 Daacro (Germany)'), (63558, 'https://ror.org/049mk3j45', 'en', 1, 'https://ror.org/049mk3j45 Heart Institute'), (63559, 'https://ror.org/049n8jv26', 'en', 1, 'https://ror.org/049n8jv26 Diagnostic and Treatment Centre Berlin Diagnostisch Therapeutisches Zentrum'), (63560, 'https://ror.org/049s06a25', 'en', 1, 'https://ror.org/049s06a25 Southeast Radiation Oncology Group'), (63561, 'https://ror.org/049s51r41', 'en', 1, 'https://ror.org/049s51r41 Men''s Health Boston'), (63562, 'https://ror.org/049sbnt53', 'no_lang_code', 1, 'https://ror.org/049sbnt53 Migros (Switzerland)'), (63563, 'https://ror.org/049skrn36', 'en', 1, 'https://ror.org/049skrn36 Baltic Institute of Social Sciences Baltijas Sociālo zinātņu institūts'), (63564, 'https://ror.org/049snp549', 'es', 1, 'https://ror.org/049snp549 Instituto para Niños Ciegos y Sordos del Valle del Cauca'), (63565, 'https://ror.org/049sttw47', 'de', 1, 'https://ror.org/049sttw47 STZ eyetrial'), (63566, 'https://ror.org/049w02t38', 'en', 1, 'https://ror.org/049w02t38 Cardiovascular Clinical Science Foundation'), (63567, 'https://ror.org/049w74f06', 'de', 1, 'https://ror.org/049w74f06 Institut für Medizinische Diagnostik Berlin-Potsdam'), (63568, 'https://ror.org/049w8dr20', 'en', 1, 'https://ror.org/049w8dr20 Gwendolyn Strong Foundation'), (63569, 'https://ror.org/049x86d03', 'en', 1, 'https://ror.org/049x86d03 Academic Health Science Partnership'), (63570, 'https://ror.org/049xawg80', 'en', 1, 'https://ror.org/049xawg80 Deutsche Gesellschaft für Thorax-, Herz- und Gefäßchirurgie German Society for Thoracic and Cardiovascular Surgery'), (63571, 'https://ror.org/049yad652', 'de', 1, 'https://ror.org/049yad652 Erwin Röver Stiftung'), (63572, 'https://ror.org/049yq6285', 'no_lang_code', 1, 'https://ror.org/049yq6285 ActivMed Practices & Research (United States)'), (63573, 'https://ror.org/049yrqz47', 'vi', 1, 'https://ror.org/049yrqz47 Hội Gastroenterology Việt Nam Vietnam Association of Gastroenterology'), (63574, 'https://ror.org/04a2d1y86', 'no_lang_code', 1, 'https://ror.org/04a2d1y86 Media Health Technologies (United States)'), (63575, 'https://ror.org/04a3njz22', 'en', 1, 'https://ror.org/04a3njz22 University Dermatology'), (63576, 'https://ror.org/04a409h19', 'en', 1, 'https://ror.org/04a409h19 Dawson Education Cooperative'), (63577, 'https://ror.org/04a59jq61', 'no_lang_code', 1, 'https://ror.org/04a59jq61 Procon (Germany)'), (63578, 'https://ror.org/04a5jy818', 'en', 1, 'https://ror.org/04a5jy818 Michigan Orthopaedic Spine Surgeons'), (63579, 'https://ror.org/04a7kqd39', 'de', 1, 'https://ror.org/04a7kqd39 Asklepios Klinik Langen'), (63580, 'https://ror.org/04a87yd07', 'de', 1, 'https://ror.org/04a87yd07 Bundesverband Selbstständiger Physiotherapeuten'), (63581, 'https://ror.org/04abjbr81', 'da', 1, 'https://ror.org/04abjbr81 Danish Agency for Labour Market and Recruitment Styrelsen for Arbejdsmarked og Rekruttering'), (63582, 'https://ror.org/04ac7y941', 'en', 1, 'https://ror.org/04ac7y941 Kaiping Central Hospital 开平市中心医院'), (63583, 'https://ror.org/04ade1b90', 'en', 1, 'https://ror.org/04ade1b90 Calista Education and Culture'), (63584, 'https://ror.org/04aercx33', 'pt', 1, 'https://ror.org/04aercx33 Hospital Ana Nery'), (63585, 'https://ror.org/04af0r679', 'nl', 1, 'https://ror.org/04af0r679 GGD Zuid Limburg, Gemeentelijke gezondheidsdienst Zuid Limburg'), (63586, 'https://ror.org/04ak3w704', 'en', 1, 'https://ror.org/04ak3w704 Italian Network for Tumor Biotherapy Foundation Network Italiano per la Bioterapia dei Tumori Fondazione'), (63587, 'https://ror.org/04akv9b62', 'en', 1, 'https://ror.org/04akv9b62 Shanghai Pudong Institute of Education Development'), (63588, 'https://ror.org/04anq5q02', 'en', 1, 'https://ror.org/04anq5q02 Danish Multiple Sclerosis Center'), (63589, 'https://ror.org/04asxht25', 'en', 1, 'https://ror.org/04asxht25 Czech Society for Hypertension Česká Společnost pro Hypertenzi'), (63590, 'https://ror.org/04atyxw20', 'en', 1, 'https://ror.org/04atyxw20 Morrison Vein Institute'), (63591, 'https://ror.org/04avexy41', 'en', 1, 'https://ror.org/04avexy41 North American Family Institute'), (63592, 'https://ror.org/04awze035', 'en', 1, 'https://ror.org/04awze035 Ronin Institute'), (63593, 'https://ror.org/04ayaxc32', 'de', 1, 'https://ror.org/04ayaxc32 Elterninitiative Krebskranker Kinder im Saarland'), (63594, 'https://ror.org/04azstb81', 'en', 1, 'https://ror.org/04azstb81 Hypertension Institute'), (63595, 'https://ror.org/04b0dke26', 'no_lang_code', 1, 'https://ror.org/04b0dke26 Cancer Prevention Pharmaceuticals (United States)'), (63596, 'https://ror.org/04b0ys521', 'en', 1, 'https://ror.org/04b0ys521 CHRISTUS Transplant Institute'), (63597, 'https://ror.org/04b85d432', 'de', 1, 'https://ror.org/04b85d432 Universitäts-HNO-Klinik Heidelberg'), (63598, 'https://ror.org/04b98k103', 'de', 1, 'https://ror.org/04b98k103 Döpfer Schulen Regensburg'), (63599, 'https://ror.org/04babz459', 'fr', 1, 'https://ror.org/04babz459 Association Schizo Oui'), (63600, 'https://ror.org/04backa61', 'no_lang_code', 1, 'https://ror.org/04backa61 Scientific Centre of Personalized Psychiatry ЗАО "Научный центр персонализированной психиатрии"'), (63601, 'https://ror.org/04bbrxk94', 'en', 1, 'https://ror.org/04bbrxk94 Council of Athabascan Tribal Governments'), (63602, 'https://ror.org/04bf36351', 'fr', 1, 'https://ror.org/04bf36351 Société Nationale Française de Colo-Proctologie'), (63603, 'https://ror.org/04bharj65', 'no_lang_code', 1, 'https://ror.org/04bharj65 ALK-Abelló (Italy)'), (63604, 'https://ror.org/04bhbrs76', 'en', 1, 'https://ror.org/04bhbrs76 River Styx Foundation'), (63605, 'https://ror.org/04bkr1a40', 'da', 1, 'https://ror.org/04bkr1a40 Psoriasisforeningen'), (63606, 'https://ror.org/04bkxkh03', 'de', 1, 'https://ror.org/04bkxkh03 Bundesverband Medizintechnologie German Medical Technology Association'), (63607, 'https://ror.org/04bmdeb43', 'fr', 1, 'https://ror.org/04bmdeb43 Ages et Vie'), (63608, 'https://ror.org/04bpnyr93', 'en', 1, 'https://ror.org/04bpnyr93 Aesthetico'), (63609, 'https://ror.org/04bsbyy14', 'en', 1, 'https://ror.org/04bsbyy14 Delmarva Advisory Council'), (63610, 'https://ror.org/04bsc0v25', 'en', 1, 'https://ror.org/04bsc0v25 Society for Cardiovascular Angiography and Interventions'), (63611, 'https://ror.org/04bt3ez84', 'no_lang_code', 1, 'https://ror.org/04bt3ez84 SmalTec International (United States)'), (63612, 'https://ror.org/04bvb7577', 'en', 1, 'https://ror.org/04bvb7577 WellMed Charitable Foundation'), (63613, 'https://ror.org/04by43e81', 'de', 1, 'https://ror.org/04by43e81 GOIN Gesundheitsorganisation'), (63614, 'https://ror.org/04byjbp28', 'nl', 1, 'https://ror.org/04byjbp28 Centrum Aquamarijn'), (63615, 'https://ror.org/04bymxx89', 'en', 1, 'https://ror.org/04bymxx89 Anhui and Huaihe River Institute of Hydraulic Research 安徽省水利部淮委水利科学研究院'), (63616, 'https://ror.org/04bzrjn90', 'es', 1, 'https://ror.org/04bzrjn90 Instituto Jalisciense de Cancerología'), (63617, 'https://ror.org/04bzrt549', 'no_lang_code', 1, 'https://ror.org/04bzrt549 Boston Medical Group (Colombia)'), (63618, 'https://ror.org/04c0eje39', 'en', 1, 'https://ror.org/04c0eje39 Regional Public Health Care Institution "City Hospital No. 5, Barnaul" Краевое государственное бюджетное учреждение здравоохранения «Городская больница №5, г. Барнаул»'), (63619, 'https://ror.org/04c0z9s56', 'nl', 1, 'https://ror.org/04c0z9s56 GGZ Delfland'), (63620, 'https://ror.org/04c1ham66', 'bs', 1, 'https://ror.org/04c1ham66 Univerzitet Za Poslovne Studije'), (63621, 'https://ror.org/04c1q3311', 'no_lang_code', 1, 'https://ror.org/04c1q3311 NanoSynth Materials and Sensors (United States)'), (63622, 'https://ror.org/04c275n83', 'en', 1, 'https://ror.org/04c275n83 Center for Accessible Technology'), (63623, 'https://ror.org/04c2qqq25', 'en', 1, 'https://ror.org/04c2qqq25 St. Vincent Carmel Hospital'), (63624, 'https://ror.org/04c4nbz33', 'nl', 1, 'https://ror.org/04c4nbz33 AmbulanceZorg Rotterdam-Rijnmond'), (63625, 'https://ror.org/04c5d0e65', 'no_lang_code', 1, 'https://ror.org/04c5d0e65 Minerva Neurosciences (United States)'), (63626, 'https://ror.org/04c6zpp14', 'en', 1, 'https://ror.org/04c6zpp14 InSites'), (63627, 'https://ror.org/04c8g2w89', 'en', 1, 'https://ror.org/04c8g2w89 Mulago Foundation'), (63628, 'https://ror.org/04c9g9234', 'es', 1, 'https://ror.org/04c9g9234 Instituto de Investigación Biomédica de A Coruña'), (63629, 'https://ror.org/04cakc678', 'en', 1, 'https://ror.org/04cakc678 Healthcare Association of New York State'), (63630, 'https://ror.org/04cas2957', 'no_lang_code', 1, 'https://ror.org/04cas2957 Non-Surgical Orthopaedics (United States)'), (63631, 'https://ror.org/04caxkq63', 'en', 1, 'https://ror.org/04caxkq63 LCC Medical Research Institute'), (63632, 'https://ror.org/04cba8s74', 'en', 1, 'https://ror.org/04cba8s74 Competence Network Multiple Sclerosis Kompetenznetz Multiple Sklerose'), (63633, 'https://ror.org/04cd54f48', 'en', 1, 'https://ror.org/04cd54f48 Landon Pediatric Foundation'), (63634, 'https://ror.org/04cd6tt69', 'pt', 1, 'https://ror.org/04cd6tt69 Hospital Estadual Centra'), (63635, 'https://ror.org/04cd7aa36', 'no_lang_code', 1, 'https://ror.org/04cd7aa36 Farmaceutici Damor (Italy)'), (63636, 'https://ror.org/04cghs078', 'en', 1, 'https://ror.org/04cghs078 Catalina Research Institute'), (63637, 'https://ror.org/04chanh47', 'nl', 1, 'https://ror.org/04chanh47 ZorgKeuzeLab'), (63638, 'https://ror.org/04cj95h53', 'no_lang_code', 1, 'https://ror.org/04cj95h53 Global Medical Institutes (United States)'), (63639, 'https://ror.org/04cjq4e24', 'nl', 1, 'https://ror.org/04cjq4e24 Nederlandse Vereniging voor Reumatologie'), (63640, 'https://ror.org/04ckqjc98', 'en', 1, 'https://ror.org/04ckqjc98 South Bend Medical Foundation'), (63641, 'https://ror.org/04cm10r73', 'en', 1, 'https://ror.org/04cm10r73 Jon J van Rood Centre for Clinical Transfusion Research'), (63642, 'https://ror.org/04cm8jr24', 'de', 1, 'https://ror.org/04cm8jr24 Klinikum Würzburg Mitte'), (63643, 'https://ror.org/04cmvex31', 'ru', 1, 'https://ror.org/04cmvex31 Arkhangel''skiy Klinicheskiy Onkologicheskiy Dispanser, Архангельский клинический онкологический диспансер'), (63644, 'https://ror.org/04crn0128', 'no_lang_code', 1, 'https://ror.org/04crn0128 Agrokor (Croatia)'), (63645, 'https://ror.org/04crv0223', 'en', 1, 'https://ror.org/04crv0223 Clear Lake Medical Foundation'), (63646, 'https://ror.org/04ctmwv54', 'nl', 1, 'https://ror.org/04ctmwv54 MeanderGroep Zuid-Limburg'), (63647, 'https://ror.org/04cvz3k71', 'en', 1, 'https://ror.org/04cvz3k71 Kona Community Hospital'), (63648, 'https://ror.org/04cwh4511', 'no_lang_code', 1, 'https://ror.org/04cwh4511 KPMG (Australia)'), (63649, 'https://ror.org/04cyd9q39', 'en', 1, 'https://ror.org/04cyd9q39 Universities and Colleges Admissions Service'), (63650, 'https://ror.org/04cznqd05', 'en', 1, 'https://ror.org/04cznqd05 O’Donnell Associates'), (63651, 'https://ror.org/04d2erj26', 'de', 1, 'https://ror.org/04d2erj26 Buchinger Wilhelmi'), (63652, 'https://ror.org/04d3z1s95', 'no_lang_code', 1, 'https://ror.org/04d3z1s95 Dr. Mattiola & Partner AG (Switzerland)'), (63653, 'https://ror.org/04d42nn29', 'no_lang_code', 1, 'https://ror.org/04d42nn29 DWA (Netherlands)'), (63654, 'https://ror.org/04d52p729', 'en', 1, 'https://ror.org/04d52p729 Indiana Biosciences Research Institute'), (63655, 'https://ror.org/04d59va55', 'nl', 1, 'https://ror.org/04d59va55 De Hoogstraat Revalidatie'), (63656, 'https://ror.org/04d7j1v83', 'no_lang_code', 1, 'https://ror.org/04d7j1v83 CCI Reprographics (United States)'), (63657, 'https://ror.org/04d9c7c50', 'en', 1, 'https://ror.org/04d9c7c50 Society Hill Reproductive Medicine'), (63658, 'https://ror.org/04dammg70', 'en', 1, 'https://ror.org/04dammg70 Penza State Technological University'), (63659, 'https://ror.org/04dbahf95', 'de', 1, 'https://ror.org/04dbahf95 Klinik und Poliklinik für Mund-, Kiefer- und Gesichtschirurgie'), (63660, 'https://ror.org/04ded4967', 'en', 1, 'https://ror.org/04ded4967 British Tinnitus Association'), (63661, 'https://ror.org/04devjv87', 'en', 1, 'https://ror.org/04devjv87 International Eosinophil Society'), (63662, 'https://ror.org/04dg4zc02', 'de', 1, 'https://ror.org/04dg4zc02 Gemeinschaftskrankenhaus Herdecke'), (63663, 'https://ror.org/04dg86p75', 'no_lang_code', 1, 'https://ror.org/04dg86p75 Isdin (Spain)'), (63664, 'https://ror.org/04dgj3g22', 'en', 1, 'https://ror.org/04dgj3g22 Coatesville Veterans Affairs Medical Center'), (63665, 'https://ror.org/04dh3fc08', 'en', 1, 'https://ror.org/04dh3fc08 Office of the Secretary of Health and Human Services'), (63666, 'https://ror.org/04dhrzj96', 'de', 1, 'https://ror.org/04dhrzj96 Aturo'), (63667, 'https://ror.org/04dk78q10', 'no_lang_code', 1, 'https://ror.org/04dk78q10 BioVinc (United States)'), (63668, 'https://ror.org/04dm9th67', 'nl', 1, 'https://ror.org/04dm9th67 Nederlandse Vereniging voor Heelkunde'), (63669, 'https://ror.org/04dmckt32', 'es', 1, 'https://ror.org/04dmckt32 Instituto Amazónico de Investigaciones Científicas, Instituto Sinchi'), (63670, 'https://ror.org/04dn07m96', 'es', 1, 'https://ror.org/04dn07m96 Instituto Nacional de las Mujeres National Institute of Women'), (63671, 'https://ror.org/04dpmwx08', 'en', 1, 'https://ror.org/04dpmwx08 Compassionate Cancer Care'), (63672, 'https://ror.org/04dqgsa85', 'en', 1, 'https://ror.org/04dqgsa85 CS Diagnostics'), (63673, 'https://ror.org/04dr2j587', 'es', 1, 'https://ror.org/04dr2j587 Hospital Dr. Gustavo Fricke'), (63674, 'https://ror.org/04drdn069', 'fr', 1, 'https://ror.org/04drdn069 Presses Universitaires de France'), (63675, 'https://ror.org/04dst9624', 'en', 1, 'https://ror.org/04dst9624 The PANSS Institute'), (63676, 'https://ror.org/04dtt7385', 'en', 1, 'https://ror.org/04dtt7385 The Casco Bay Assyriological Institute'), (63677, 'https://ror.org/04dv35865', 'en', 1, 'https://ror.org/04dv35865 San Antonio Endovascular & Heart Institute'), (63678, 'https://ror.org/04dz2w781', 'no_lang_code', 1, 'https://ror.org/04dz2w781 Nemo Healthcare (Netherlands)'), (63679, 'https://ror.org/04dz3w425', 'en', 1, 'https://ror.org/04dz3w425 Inala Community Health Centre'), (63680, 'https://ror.org/04e10fw49', 'en', 1, 'https://ror.org/04e10fw49 Parkview Hospital Randallia'), (63681, 'https://ror.org/04e40d584', 'en', 1, 'https://ror.org/04e40d584 Taipei Fubon Bank Philanthropy Foundation 台北富邦銀行公益慈善基金會'), (63682, 'https://ror.org/04e456155', 'en', 1, 'https://ror.org/04e456155 Cardiovascular Research Associates'), (63683, 'https://ror.org/04e53cd15', 'nl', 1, 'https://ror.org/04e53cd15 Nederlandse Obesitas Kliniek'), (63684, 'https://ror.org/04e5xac72', 'no_lang_code', 1, 'https://ror.org/04e5xac72 Clasado BioSciences (United Kingdom)'), (63685, 'https://ror.org/04e69hx24', 'en', 1, 'https://ror.org/04e69hx24 Bristol Regional Medical Center'), (63686, 'https://ror.org/04e6xj170', 'en', 1, 'https://ror.org/04e6xj170 Centre For Digestive Diseases'), (63687, 'https://ror.org/04e72pa13', 'en', 1, 'https://ror.org/04e72pa13 The Radiosurgery Society'), (63688, 'https://ror.org/04e796m94', 'fr', 1, 'https://ror.org/04e796m94 Société Francophone Posture Equilibre Locomotion'), (63689, 'https://ror.org/04ed27a31', 'en', 1, 'https://ror.org/04ed27a31 New England Retina Associates'), (63690, 'https://ror.org/04ee1hr21', 'en', 1, 'https://ror.org/04ee1hr21 Ministry of Education and Skills Development'), (63691, 'https://ror.org/04ej3kx94', 'en', 1, 'https://ror.org/04ej3kx94 Bach & Godofsky Infectious Diseases'), (63692, 'https://ror.org/04ejqwk94', 'en', 1, 'https://ror.org/04ejqwk94 Ocean Research & Conservation Association'), (63693, 'https://ror.org/04eme8h94', 'en', 1, 'https://ror.org/04eme8h94 Los Angeles Clinical Trials'), (63694, 'https://ror.org/04en0yf19', 'id', 1, 'https://ror.org/04en0yf19 Rumah Sakit Umum Pusat Sanglah Denpasar'), (63695, 'https://ror.org/04en82c62', 'en', 1, 'https://ror.org/04en82c62 American Tai Chi and Qigong Association'), (63696, 'https://ror.org/04enecq37', 'de', 1, 'https://ror.org/04enecq37 Dental Clinic of Bochum Zahnklinik Bochum'), (63697, 'https://ror.org/04eqa0k17', 'de', 1, 'https://ror.org/04eqa0k17 Kassenärztliche Vereinigung Sachsen-Anhalt'), (63698, 'https://ror.org/04eqf2x52', 'no_lang_code', 1, 'https://ror.org/04eqf2x52 Heelkunde Friesland (Netherlands)'), (63699, 'https://ror.org/04erbf175', 'en', 1, 'https://ror.org/04erbf175 Russian Respiratory Society Межрегиональная общественная организация Российское Респираторное Общество'), (63700, 'https://ror.org/04erj2z02', 'en', 1, 'https://ror.org/04erj2z02 Virpiniemen liikuntaopisto Virpiniemi Sports Institute'), (63701, 'https://ror.org/04erjjt33', 'en', 1, 'https://ror.org/04erjjt33 Trường Đại học Lao Động - Xã Hội University of Labor and Social Affairs'), (63702, 'https://ror.org/04evbhe06', 'en', 1, 'https://ror.org/04evbhe06 Arkhangelsk Children''s Clinical Hospital named P.G.Vyzhletsova Архангельская областная детская клиническая больница им. П.Г. Выжцовой'), (63703, 'https://ror.org/04evm3p62', 'en', 1, 'https://ror.org/04evm3p62 Nanjing Product Quality Supervision and Inspection Institute'), (63704, 'https://ror.org/04ew55674', 'en', 1, 'https://ror.org/04ew55674 Heart & Vascular Outcomes Research Institute'), (63705, 'https://ror.org/04ewmmy12', 'en', 1, 'https://ror.org/04ewmmy12 The Challenging Behaviour Foundation'), (63706, 'https://ror.org/04ex7c508', 'en', 1, 'https://ror.org/04ex7c508 Oshkosh Public Museum'), (63707, 'https://ror.org/04eynfz47', 'en', 1, 'https://ror.org/04eynfz47 Collier Neurologic Specialists'), (63708, 'https://ror.org/04f17kc16', 'it', 1, 'https://ror.org/04f17kc16 Ospedale S.Gennaro'), (63709, 'https://ror.org/04f2wf871', 'de', 1, 'https://ror.org/04f2wf871 Centrum für Integrierte Onkologie'), (63710, 'https://ror.org/04f2wpy12', 'no', 1, 'https://ror.org/04f2wpy12 Norsk Cøliakiforening'), (63711, 'https://ror.org/04f3x2j17', 'no_lang_code', 1, 'https://ror.org/04f3x2j17 Sofar (Italy)'), (63712, 'https://ror.org/04f6ttz68', 'no_lang_code', 1, 'https://ror.org/04f6ttz68 GeneTAG Technology (United States)'), (63713, 'https://ror.org/04f6tvf20', 'no_lang_code', 1, 'https://ror.org/04f6tvf20 PSI CRO (United Kingdom)'), (63714, 'https://ror.org/04fap3q60', 'en', 1, 'https://ror.org/04fap3q60 Pacific Rim Electrophysiology Research Institute'), (63715, 'https://ror.org/04fasw929', 'no_lang_code', 1, 'https://ror.org/04fasw929 MB Clinical Research and Consulting (United States)'), (63716, 'https://ror.org/04fb0r664', 'en', 1, 'https://ror.org/04fb0r664 National Foundation for the Elderly Stichting Nationaal Ouderenfonds'), (63717, 'https://ror.org/04fbjgg20', 'tr', 1, 'https://ror.org/04fbjgg20 Higher Specialization University Yüksek İhtisas Üniversitesi'), (63718, 'https://ror.org/04fdxtz57', 'no_lang_code', 1, 'https://ror.org/04fdxtz57 Far Eastern Shipping (United States)'), (63719, 'https://ror.org/04ffwr418', 'en', 1, 'https://ror.org/04ffwr418 City Clinical Hospital No15 named. O. M. Filatova Городская клиническая больница №15 n.a O.M. Филатов'), (63720, 'https://ror.org/04fgkvt12', 'no_lang_code', 1, 'https://ror.org/04fgkvt12 ScienceMedia (United States)'), (63721, 'https://ror.org/04fh1gw55', 'no_lang_code', 1, 'https://ror.org/04fh1gw55 Boehringer Ingelheim (Netherlands)'), (63722, 'https://ror.org/04fj57991', 'en', 1, 'https://ror.org/04fj57991 Westside Medical Associates of Los Angeles'), (63723, 'https://ror.org/04fn5zr38', 'en', 1, 'https://ror.org/04fn5zr38 American SIDS Institute'), (63724, 'https://ror.org/04fpkm116', 'no_lang_code', 1, 'https://ror.org/04fpkm116 Enanta Pharmaceuticals (United States)'), (63725, 'https://ror.org/04fqe7a64', 'no_lang_code', 1, 'https://ror.org/04fqe7a64 OrganOx (United Kingdom)'), (63726, 'https://ror.org/04fr6kc62', 'de', 1, 'https://ror.org/04fr6kc62 Schön Klinik Bad Aibling'), (63727, 'https://ror.org/04ft4my53', 'no_lang_code', 1, 'https://ror.org/04ft4my53 Filament Games (United States)'), (63728, 'https://ror.org/04ftscg80', 'pt', 1, 'https://ror.org/04ftscg80 Instituto Paulista de Estudos e Pesquisas em Oftalmologia'), (63729, 'https://ror.org/04fx78583', 'en', 1, 'https://ror.org/04fx78583 CalNeuro Research Group'), (63730, 'https://ror.org/04fxbva21', 'en', 1, 'https://ror.org/04fxbva21 Marine Corps – Law Enforcement Foundation'), (63731, 'https://ror.org/04g1f3s05', 'nl', 1, 'https://ror.org/04g1f3s05 Gemeente Leiden'), (63732, 'https://ror.org/04g1gk322', 'no_lang_code', 1, 'https://ror.org/04g1gk322 Pharmacosmos (Denmark)'), (63733, 'https://ror.org/04g22a016', 'en', 1, 'https://ror.org/04g22a016 Vision Research ROPARD Foundation'), (63734, 'https://ror.org/04g5zwy64', 'de', 1, 'https://ror.org/04g5zwy64 Clinic for Sleep Medicine Klinik für Schlafmedizin'), (63735, 'https://ror.org/04g6dp887', 'en', 1, 'https://ror.org/04g6dp887 NeuroCognitive Institute'), (63736, 'https://ror.org/04g9ryv67', 'en', 1, 'https://ror.org/04g9ryv67 Brooklyn Chest Hospital'), (63737, 'https://ror.org/04g9szr12', 'nl', 1, 'https://ror.org/04g9szr12 Marti-Keuning Eckhardt Stichting'), (63738, 'https://ror.org/04gbh9b75', 'no_lang_code', 1, 'https://ror.org/04gbh9b75 General Electric (Spain)'), (63739, 'https://ror.org/04gbkes05', 'en', 1, 'https://ror.org/04gbkes05 National Retina Institute'), (63740, 'https://ror.org/04gbqr315', 'de', 1, 'https://ror.org/04gbqr315 Forschungsgesellschaft Atemwegerkrankungen'), (63741, 'https://ror.org/04gc7k725', 'en', 1, 'https://ror.org/04gc7k725 Chesapeake Urology Associates'), (63742, 'https://ror.org/04gca2h74', 'no_lang_code', 1, 'https://ror.org/04gca2h74 UCB Pharma (Netherlands)'), (63743, 'https://ror.org/04gckzn88', 'no_lang_code', 1, 'https://ror.org/04gckzn88 PuraCath Medical (United States)'), (63744, 'https://ror.org/04ge4r742', 'en', 1, 'https://ror.org/04ge4r742 Capio Research Foundation'), (63745, 'https://ror.org/04gfyfa37', 'en', 1, 'https://ror.org/04gfyfa37 Boston Partners in Education'), (63746, 'https://ror.org/04gg6jm72', 'en', 1, 'https://ror.org/04gg6jm72 European Center for Peace and Development'), (63747, 'https://ror.org/04ggjpc96', 'nl', 1, 'https://ror.org/04ggjpc96 Reinier van Arkel'), (63748, 'https://ror.org/04gj3vw69', 'de', 1, 'https://ror.org/04gj3vw69 Physiotherapie und Lauftherapie Zentrum'), (63749, 'https://ror.org/04gk6ks26', 'nl', 1, 'https://ror.org/04gk6ks26 Mondriaan GGZ'), (63750, 'https://ror.org/04gm2d409', 'no_lang_code', 1, 'https://ror.org/04gm2d409 Cellulose Sciences International (United States)'), (63751, 'https://ror.org/04gnkpp77', 'en', 1, 'https://ror.org/04gnkpp77 Jingzhou Central Hospital 荆州市中心医院'), (63752, 'https://ror.org/04gpc6733', 'it', 1, 'https://ror.org/04gpc6733 Ospedale Santa Maria Goretti'), (63753, 'https://ror.org/04gpeah71', 'nl', 1, 'https://ror.org/04gpeah71 Zorggroep Kans'), (63754, 'https://ror.org/04gpj3340', 'de', 1, 'https://ror.org/04gpj3340 Poliklinik für Zahnerhaltung und Parodontologie'), (63755, 'https://ror.org/04gpmm421', 'en', 1, 'https://ror.org/04gpmm421 Invision Sally Jobe'), (63756, 'https://ror.org/04gqr8882', 'en', 1, 'https://ror.org/04gqr8882 Oncology Hematology Care'), (63757, 'https://ror.org/04gqrmc82', 'en', 1, 'https://ror.org/04gqrmc82 Australasian Gastro Intestinal Research Foundation'), (63758, 'https://ror.org/04gsrxt60', 'en', 1, 'https://ror.org/04gsrxt60 J.C. Blair Memorial Hospital'), (63759, 'https://ror.org/04gv1ap07', 'nl', 1, 'https://ror.org/04gv1ap07 Nederlandse Vereniging van Artsen voor Musculoskeletale Geneeskunde'), (63760, 'https://ror.org/04gw1ym87', 'pt', 1, 'https://ror.org/04gw1ym87 Instituto do Cérebro de Brasília'), (63761, 'https://ror.org/04gxk9y84', 'de', 1, 'https://ror.org/04gxk9y84 Kassenärztliche Vereinigung Baden-Württemberg'), (63762, 'https://ror.org/04gzrzz80', 'en', 1, 'https://ror.org/04gzrzz80 Apex Heart Institute'), (63763, 'https://ror.org/04h0t7y80', 'pt', 1, 'https://ror.org/04h0t7y80 Instituto de Implantologia'), (63764, 'https://ror.org/04h15t444', 'en', 1, 'https://ror.org/04h15t444 Bay Area Discovery Museum'), (63765, 'https://ror.org/04h30bj32', 'no_lang_code', 1, 'https://ror.org/04h30bj32 Boehringer Ingelheim (Portugal)'), (63766, 'https://ror.org/04h35xj16', 'en', 1, 'https://ror.org/04h35xj16 Alaska Breast Care & Surgery'), (63767, 'https://ror.org/04h3kb791', 'en', 1, 'https://ror.org/04h3kb791 Electrophysiology Research Foundation'), (63768, 'https://ror.org/04h3x0y40', 'en', 1, 'https://ror.org/04h3x0y40 Geisinger Lewistown Hospital'), (63769, 'https://ror.org/04h3xw934', 'en', 1, 'https://ror.org/04h3xw934 Western Sydney Community Forum'), (63770, 'https://ror.org/04h407e94', 'en', 1, 'https://ror.org/04h407e94 Chest Wall Injury Society'), (63771, 'https://ror.org/04h616z85', 'de', 1, 'https://ror.org/04h616z85 LVR-Klinik Bonn'), (63772, 'https://ror.org/04h6ep125', 'no_lang_code', 1, 'https://ror.org/04h6ep125 Synairgen (United Kingdom)'), (63773, 'https://ror.org/04h6ghc51', 'en', 1, 'https://ror.org/04h6ghc51 International WAGR Syndrome Association'), (63774, 'https://ror.org/04h6zzz03', 'no_lang_code', 1, 'https://ror.org/04h6zzz03 General Electric (Finland)'), (63775, 'https://ror.org/04h783r90', 'en', 1, 'https://ror.org/04h783r90 Lung Center of the Philippines'), (63776, 'https://ror.org/04h8ph678', 'en', 1, 'https://ror.org/04h8ph678 Cancer Care of Western North Carolina'), (63777, 'https://ror.org/04h92e089', 'no_lang_code', 1, 'https://ror.org/04h92e089 Sintact Medical Systems (United States)'), (63778, 'https://ror.org/04h9drp94', 'no_lang_code', 1, 'https://ror.org/04h9drp94 Leo Pharma (Germany)'), (63779, 'https://ror.org/04hb5tw27', 'no_lang_code', 1, 'https://ror.org/04hb5tw27 Jafco (Japan)'), (63780, 'https://ror.org/04hc0rs25', 'en', 1, 'https://ror.org/04hc0rs25 Providence Regional Cancer Partnership'), (63781, 'https://ror.org/04hc4vy44', 'en', 1, 'https://ror.org/04hc4vy44 Los Angeles Neurological Institute'), (63782, 'https://ror.org/04hd04g86', 'en', 1, 'https://ror.org/04hd04g86 Agaplesion Markus Hospital Agaplesion Markus Krankenhaus'), (63783, 'https://ror.org/04he90472', 'en', 1, 'https://ror.org/04he90472 American Association for Cancer Education'), (63784, 'https://ror.org/04hfec795', 'de', 1, 'https://ror.org/04hfec795 Österreichische Gesellschaft für Parodontologie'), (63785, 'https://ror.org/04hfn2h85', 'en', 1, 'https://ror.org/04hfn2h85 National Health Council'), (63786, 'https://ror.org/04hg8qq17', 'en', 1, 'https://ror.org/04hg8qq17 Royal Incorporation of Architects in Scotland'), (63787, 'https://ror.org/04hgg9s59', 'es', 1, 'https://ror.org/04hgg9s59 Fundacion Instituto de Reumatologia Fernando Chalem'), (63788, 'https://ror.org/04hgryz27', 'en', 1, 'https://ror.org/04hgryz27 American Professional Society of ADHD and Related Disorders'), (63789, 'https://ror.org/04hjayk14', 'no_lang_code', 1, 'https://ror.org/04hjayk14 Terumo (Germany)'), (63790, 'https://ror.org/04hk0mm26', 'en', 1, 'https://ror.org/04hk0mm26 Phoenix Neurological Associates'), (63791, 'https://ror.org/04hprbe92', 'en', 1, 'https://ror.org/04hprbe92 The Pelvic Floor Institute'), (63792, 'https://ror.org/04hqa8c89', 'en', 1, 'https://ror.org/04hqa8c89 Gansu Qilian Mountains Water Conservation Forest Research Institute 祁连山水源涵养林研究院'), (63793, 'https://ror.org/04hqw2h62', 'en', 1, 'https://ror.org/04hqw2h62 Kazakhstan Association on Sexual and Reproductive Health Казахстанская ассоциация по половому и репродуктивному здоровью'), (63794, 'https://ror.org/04hrwvd56', 'no_lang_code', 1, 'https://ror.org/04hrwvd56 Moximed (United States)'), (63795, 'https://ror.org/04htftw90', 'no_lang_code', 1, 'https://ror.org/04htftw90 Pluryn'), (63796, 'https://ror.org/04j032963', 'en', 1, 'https://ror.org/04j032963 New York School of Regional Anesthesia'), (63797, 'https://ror.org/04j2nkn49', 'no_lang_code', 1, 'https://ror.org/04j2nkn49 Educational Solutions (United States)'), (63798, 'https://ror.org/04j2vda74', 'en', 1, 'https://ror.org/04j2vda74 DuPage Children''s Museum'), (63799, 'https://ror.org/04j5wtv36', 'en', 1, 'https://ror.org/04j5wtv36 Centre commun de recherche Directorate-General Joint Research Centre Gemeinsame Forschungsstelle'), (63800, 'https://ror.org/04j7z5d67', 'no_lang_code', 1, 'https://ror.org/04j7z5d67 Aerospace Testing (United States)'), (63801, 'https://ror.org/04ja13179', 'no_lang_code', 1, 'https://ror.org/04ja13179 AQLANE Medical (Netherlands)'), (63802, 'https://ror.org/04janzm11', 'de', 1, 'https://ror.org/04janzm11 Rotkreuzklinikum München'), (63803, 'https://ror.org/04jbfxj71', 'no_lang_code', 1, 'https://ror.org/04jbfxj71 Kalwun (Australia)'), (63804, 'https://ror.org/04jbh8n08', 'en', 1, 'https://ror.org/04jbh8n08 Detroit Area Agency on Aging'), (63805, 'https://ror.org/04jcfwb48', 'en', 1, 'https://ror.org/04jcfwb48 Berman Center for Outcomes and Clinical Research'), (63806, 'https://ror.org/04jddfp89', 'no_lang_code', 1, 'https://ror.org/04jddfp89 Vision2Health (Netherlands)'), (63807, 'https://ror.org/04je70584', 'en', 1, 'https://ror.org/04je70584 Anhui Provincial Children''s Hospital 安徽省儿童医院'), (63808, 'https://ror.org/04jey9359', 'no_lang_code', 1, 'https://ror.org/04jey9359 M4 Sciences (United States)'), (63809, 'https://ror.org/04jf1d362', 'fr', 1, 'https://ror.org/04jf1d362 Hôpital Jean Jaurès'), (63810, 'https://ror.org/04jfsvb44', 'nl', 1, 'https://ror.org/04jfsvb44 Star Medisch Diagnostisch Centrum'), (63811, 'https://ror.org/04jgrem26', 'en', 1, 'https://ror.org/04jgrem26 Ospidéal Máithreachais na hOllscoile, Luimneach University Maternity Hospital Limerick'), (63812, 'https://ror.org/04jj1kk85', 'en', 1, 'https://ror.org/04jj1kk85 International Neuroethics Society'), (63813, 'https://ror.org/04jm04j52', 'en', 1, 'https://ror.org/04jm04j52 Black Hills Regional Eye Institute'), (63814, 'https://ror.org/04jntfm70', 'de', 1, 'https://ror.org/04jntfm70 Deutsche Lepra- und Tuberkulosehilfe'), (63815, 'https://ror.org/04jqt3k72', 'en', 1, 'https://ror.org/04jqt3k72 Minia University Hospital دليل الصحة المصري'), (63816, 'https://ror.org/04jqvgn14', 'no_lang_code', 1, 'https://ror.org/04jqvgn14 Rose Research Center (United States)'), (63817, 'https://ror.org/04jszep51', 'no_lang_code', 1, 'https://ror.org/04jszep51 Clinuvel Pharmaceuticals (Australia)'), (63818, 'https://ror.org/04jx2gq17', 'en', 1, 'https://ror.org/04jx2gq17 zyBooks'), (63819, 'https://ror.org/04jx66z14', 'pt', 1, 'https://ror.org/04jx66z14 Fundação Edson Queiroz'), (63820, 'https://ror.org/04jxcha86', 'nl', 1, 'https://ror.org/04jxcha86 Stichting Vooruit'), (63821, 'https://ror.org/04jxvq020', 'en', 1, 'https://ror.org/04jxvq020 Nurse Maude Association'), (63822, 'https://ror.org/04jzqr098', 'en', 1, 'https://ror.org/04jzqr098 Texas Institute for Hip & Knee Surgery'), (63823, 'https://ror.org/04k175063', 'en', 1, 'https://ror.org/04k175063 Nona Research Foundation'), (63824, 'https://ror.org/04k24ww57', 'en', 1, 'https://ror.org/04k24ww57 Capital Region Special Surgery'), (63825, 'https://ror.org/04k3a2264', 'en', 1, 'https://ror.org/04k3a2264 Turkish Ophthalmological Association Türk Oftalmoloji Derneği'), (63826, 'https://ror.org/04k3xq990', 'en', 1, 'https://ror.org/04k3xq990 Phoenixville Hospital'), (63827, 'https://ror.org/04k4egd33', 'fr', 1, 'https://ror.org/04k4egd33 Association Keoogo'), (63828, 'https://ror.org/04k5a4r11', 'en', 1, 'https://ror.org/04k5a4r11 Futurefish Foundation'), (63829, 'https://ror.org/04kazdy71', 'en', 1, 'https://ror.org/04kazdy71 Shaanxi Provincial Hospital of Traditional Chinese Medicine'), (63830, 'https://ror.org/04kb8af13', 'en', 1, 'https://ror.org/04kb8af13 Havana Research Institute'), (63831, 'https://ror.org/04kcgyj43', 'en', 1, 'https://ror.org/04kcgyj43 The Microsoft Research - University of Trento Centre for Computational and Systems Biology'), (63832, 'https://ror.org/04kej9b21', 'no_lang_code', 1, 'https://ror.org/04kej9b21 Ardeypharm (Germany)'), (63833, 'https://ror.org/04kf58w92', 'en', 1, 'https://ror.org/04kf58w92 Autonomous Healthcare'), (63834, 'https://ror.org/04khtec53', 'en', 1, 'https://ror.org/04khtec53 Paul Ruby Foundation for Parkinson’s Research'), (63835, 'https://ror.org/04kn1yz10', 'de', 1, 'https://ror.org/04kn1yz10 Rosenpark Klinik'), (63836, 'https://ror.org/04kqtxx50', 'en', 1, 'https://ror.org/04kqtxx50 Chang Hua Hospital 衛生福利部彰化醫院'), (63837, 'https://ror.org/04kqymn96', 'en', 1, 'https://ror.org/04kqymn96 Wild Salmon Center'), (63838, 'https://ror.org/04krek379', 'en', 1, 'https://ror.org/04krek379 Watching Over Mothers & Babies'), (63839, 'https://ror.org/04kt7f841', 'de', 1, 'https://ror.org/04kt7f841 Berufsgenossenschaftliche Unfallklinik Frankfurt am Main'), (63840, 'https://ror.org/04ktmrv21', 'en', 1, 'https://ror.org/04ktmrv21 Graham Boeckh Foundation'), (63841, 'https://ror.org/04kvtp152', 'no_lang_code', 1, 'https://ror.org/04kvtp152 Danone (Germany)'), (63842, 'https://ror.org/04kxpwr66', 'en', 1, 'https://ror.org/04kxpwr66 European Society for Diseases of the Esophagus'), (63843, 'https://ror.org/04kyvt253', 'no_lang_code', 1, 'https://ror.org/04kyvt253 ZeroUI (United States)'), (63844, 'https://ror.org/04kz28h20', 'no_lang_code', 1, 'https://ror.org/04kz28h20 Meril Life Sciences (India)'), (63845, 'https://ror.org/04kzcc298', 'en', 1, 'https://ror.org/04kzcc298 Cognitive Medical Systems'), (63846, 'https://ror.org/04m0x6q45', 'en', 1, 'https://ror.org/04m0x6q45 Republican Scientific and Practical Centre for Traumatology and Orthopedics'), (63847, 'https://ror.org/04m17xs91', 'en', 1, 'https://ror.org/04m17xs91 National Center of Cardiology and Internal Medicine'), (63848, 'https://ror.org/04m219c69', 'en', 1, 'https://ror.org/04m219c69 Medicina Specjalistyczne Centrum Diagnostyczno-Zabiegowe MEDICINA'), (63849, 'https://ror.org/04m27xb90', 'en', 1, 'https://ror.org/04m27xb90 Jiangsu Provincial Quality Supervision and Inspection Institute'), (63850, 'https://ror.org/04m55rk62', 'no_lang_code', 1, 'https://ror.org/04m55rk62 Archipel Zorggroep (Netherlands)'), (63851, 'https://ror.org/04m718665', 'no_lang_code', 1, 'https://ror.org/04m718665 Collaborations Pharmaceuticals (United States)'), (63852, 'https://ror.org/04m7qna91', 'en', 1, 'https://ror.org/04m7qna91 Sirindhorn National Medical Rehabilitation Institute สถาบันสิรินธรเพื่อการฟื้นฟูสมรรถภาพทางการแพทย์แห่งชาติ'), (63853, 'https://ror.org/04m8g8w48', 'no_lang_code', 1, 'https://ror.org/04m8g8w48 Certe'), (63854, 'https://ror.org/04mae1e30', 'de', 1, 'https://ror.org/04mae1e30 Deutsche Wirbelsäulengesellschaft'), (63855, 'https://ror.org/04masrj05', 'en', 1, 'https://ror.org/04masrj05 Salina Regional Health Center'), (63856, 'https://ror.org/04md5tc32', 'nl', 1, 'https://ror.org/04md5tc32 Entrea'), (63857, 'https://ror.org/04mddwq63', 'en', 1, 'https://ror.org/04mddwq63 Susan L. Bader Foundation of Hope'), (63858, 'https://ror.org/04mftqn06', 'no_lang_code', 1, 'https://ror.org/04mftqn06 Heimomed Heinze (Germany)'), (63859, 'https://ror.org/04mg7be43', 'no_lang_code', 1, 'https://ror.org/04mg7be43 Guna (Italy)'), (63860, 'https://ror.org/04mhcqm57', 'en', 1, 'https://ror.org/04mhcqm57 QMI Solutions'), (63861, 'https://ror.org/04mj3zw98', 'de', 1, 'https://ror.org/04mj3zw98 Klinikum Fürth'), (63862, 'https://ror.org/04mjm3795', 'en', 1, 'https://ror.org/04mjm3795 Jackson Medical Mall Thad Cochran Center'), (63863, 'https://ror.org/04mjpp490', 'en', 1, 'https://ror.org/04mjpp490 Finnish Medicines Agency Fimea'), (63864, 'https://ror.org/04mnk3a22', 'en', 1, 'https://ror.org/04mnk3a22 Lutheran SeniorLife'), (63865, 'https://ror.org/04mp3v976', 'no_lang_code', 1, 'https://ror.org/04mp3v976 Zur Rose Pharma (Germany)'), (63866, 'https://ror.org/04mpvkk30', 'no_lang_code', 1, 'https://ror.org/04mpvkk30 Sientra (United States)'), (63867, 'https://ror.org/04mqvep70', 'en', 1, 'https://ror.org/04mqvep70 Orange County Department of Education'), (63868, 'https://ror.org/04ms2sw50', 'nl', 1, 'https://ror.org/04ms2sw50 Dienst Gezondheid & Jeugd'), (63869, 'https://ror.org/04mz17v36', 'en', 1, 'https://ror.org/04mz17v36 Texas Physical Therapy Association'), (63870, 'https://ror.org/04n052q31', 'no_lang_code', 1, 'https://ror.org/04n052q31 Miha Bodytec (Germany)'), (63871, 'https://ror.org/04n0rde95', 'de', 1, 'https://ror.org/04n0rde95 Segeberger Kliniken'), (63872, 'https://ror.org/04n278m24', 'en', 1, 'https://ror.org/04n278m24 Hallym University Dongtan Sacred Heart Hospital'), (63873, 'https://ror.org/04n43dm09', 'en', 1, 'https://ror.org/04n43dm09 Colorado Sleep Institute'), (63874, 'https://ror.org/04n4wd093', 'en', 1, 'https://ror.org/04n4wd093 Institute for Respiratory Health'), (63875, 'https://ror.org/04n79vf04', 'en', 1, 'https://ror.org/04n79vf04 Northeast Radiation Oncology Center'), (63876, 'https://ror.org/04n7wm262', 'en', 1, 'https://ror.org/04n7wm262 Sickle Cell Disease Association of America'), (63877, 'https://ror.org/04n800n16', 'en', 1, 'https://ror.org/04n800n16 South Pointe Hospital'), (63878, 'https://ror.org/04n8nb568', 'da', 1, 'https://ror.org/04n8nb568 Universitetshospitalernes Center for Sundhedsfaglig Forskning'), (63879, 'https://ror.org/04n8xcj92', 'en', 1, 'https://ror.org/04n8xcj92 Alabama School of Fine Arts'), (63880, 'https://ror.org/04n8xnv74', 'pt', 1, 'https://ror.org/04n8xnv74 Sociedade Brasileira de Oncologia Clínica'), (63881, 'https://ror.org/04n9aye53', 'en', 1, 'https://ror.org/04n9aye53 Bundesverwaltungsamt Federal Office of Administration'), (63882, 'https://ror.org/04nfn2y71', 'en', 1, 'https://ror.org/04nfn2y71 Ferry County Memorial Hospital'), (63883, 'https://ror.org/04ngqwc75', 'en', 1, 'https://ror.org/04ngqwc75 Hilton Pond Center for Piedmont Natural History'), (63884, 'https://ror.org/04ngsnt90', 'en', 1, 'https://ror.org/04ngsnt90 The Baum Foundation'), (63885, 'https://ror.org/04ngt6a58', 'no_lang_code', 1, 'https://ror.org/04ngt6a58 Institute for Skin Research (Israel)'), (63886, 'https://ror.org/04njkp570', 'no_lang_code', 1, 'https://ror.org/04njkp570 Rahnuma'), (63887, 'https://ror.org/04njrx155', 'en', 1, 'https://ror.org/04njrx155 ELZA Institute'), (63888, 'https://ror.org/04nkwzq76', 'en', 1, 'https://ror.org/04nkwzq76 Anfomed Society for Applied Research in Medicine'), (63889, 'https://ror.org/04nmnyc35', 'en', 1, 'https://ror.org/04nmnyc35 Carolina Performance'), (63890, 'https://ror.org/04nqf3887', 'de', 1, 'https://ror.org/04nqf3887 Schön Klinik Nürnberg Fürth'), (63891, 'https://ror.org/04nqrq322', 'en', 1, 'https://ror.org/04nqrq322 Shenzhen Entry-Exit Inspection and Quarantine Bureau'), (63892, 'https://ror.org/04nv6s061', 'en', 1, 'https://ror.org/04nv6s061 Canadian Heart Research Centre'), (63893, 'https://ror.org/04nyjea81', 'en', 1, 'https://ror.org/04nyjea81 Capital Health'), (63894, 'https://ror.org/04nz0rp18', 'en', 1, 'https://ror.org/04nz0rp18 Riverton Hospital'), (63895, 'https://ror.org/04p16rp27', 'no_lang_code', 1, 'https://ror.org/04p16rp27 Slow Control (France)'), (63896, 'https://ror.org/04p31sb09', 'no_lang_code', 1, 'https://ror.org/04p31sb09 Myovant Sciences (United States)'), (63897, 'https://ror.org/04p3kfc87', 'no_lang_code', 1, 'https://ror.org/04p3kfc87 ClinAssess (Germany)'), (63898, 'https://ror.org/04p3m1723', 'en', 1, 'https://ror.org/04p3m1723 MultiCare Auburn Medical Center'), (63899, 'https://ror.org/04p56b975', 'no_lang_code', 1, 'https://ror.org/04p56b975 Medimate (Netherlands)'), (63900, 'https://ror.org/04p7je888', 'en', 1, 'https://ror.org/04p7je888 Alliance Integrative Medicine'), (63901, 'https://ror.org/04p7qvm31', 'en', 1, 'https://ror.org/04p7qvm31 Ministry of Health'), (63902, 'https://ror.org/04p94z953', 'de', 1, 'https://ror.org/04p94z953 Klinikum Rheine'), (63903, 'https://ror.org/04p9df934', 'en', 1, 'https://ror.org/04p9df934 Winnicott Foundation'), (63904, 'https://ror.org/04p9njy36', 'fr', 1, 'https://ror.org/04p9njy36 Association Française pour le Dépistage et la Prévention des Handicaps de l’Enfant'), (63905, 'https://ror.org/04pexwy87', 'it', 1, 'https://ror.org/04pexwy87 Consorzio Interuniversitario Nazionale EnSiEL, Consorzio Interuniversitario Nazionale per Energia e Sistemi Elettrici'), (63906, 'https://ror.org/04pfbqx48', 'en', 1, 'https://ror.org/04pfbqx48 South Health Campus'), (63907, 'https://ror.org/04pfm8b84', 'en', 1, 'https://ror.org/04pfm8b84 Acadia Hospital'), (63908, 'https://ror.org/04pgck314', 'en', 1, 'https://ror.org/04pgck314 Mount Carmel St. Ann''s'), (63909, 'https://ror.org/04pgw5133', 'en', 1, 'https://ror.org/04pgw5133 Charlotte Hungerford Hospital'), (63910, 'https://ror.org/04ph6g561', 'no_lang_code', 1, 'https://ror.org/04ph6g561 Brocacef Groep (Netherlands)'), (63911, 'https://ror.org/04phw6a61', 'nl', 1, 'https://ror.org/04phw6a61 de Posten'), (63912, 'https://ror.org/04phz6672', 'en', 1, 'https://ror.org/04phz6672 Old Colorado City Historical Society'), (63913, 'https://ror.org/04pj7f452', 'en', 1, 'https://ror.org/04pj7f452 Chirayu Medical College & Hospital'), (63914, 'https://ror.org/04pjs3n80', 'en', 1, 'https://ror.org/04pjs3n80 Cyclomed medical services & consulting'), (63915, 'https://ror.org/04pk7nd85', 'en', 1, 'https://ror.org/04pk7nd85 Providence Community Health Centers'), (63916, 'https://ror.org/04pkg4a74', 'en', 1, 'https://ror.org/04pkg4a74 Ludwig Boltzmann Cluster Arthritis and Rehabilitation'), (63917, 'https://ror.org/04pmb3j40', 'en', 1, 'https://ror.org/04pmb3j40 Hong Kong Lung Foundation'), (63918, 'https://ror.org/04pmj8905', 'no_lang_code', 1, 'https://ror.org/04pmj8905 CM Hospital'), (63919, 'https://ror.org/04pmrdd93', 'no_lang_code', 1, 'https://ror.org/04pmrdd93 ATP Clinical Research (United States)'), (63920, 'https://ror.org/04pnmxh23', 'en', 1, 'https://ror.org/04pnmxh23 Public Health Research Institute Of India'), (63921, 'https://ror.org/04pp96p75', 'no_lang_code', 1, 'https://ror.org/04pp96p75 MediWound (Israel)'), (63922, 'https://ror.org/04ppky291', 'en', 1, 'https://ror.org/04ppky291 Advanced Medical Research Institute'), (63923, 'https://ror.org/04ppvf629', 'no_lang_code', 1, 'https://ror.org/04ppvf629 Weleda (Switzerland)'), (63924, 'https://ror.org/04prh3p48', 'en', 1, 'https://ror.org/04prh3p48 Full Plate Living'), (63925, 'https://ror.org/04ps8kg42', 'en', 1, 'https://ror.org/04ps8kg42 Central and North West Queensland Medicare Local'), (63926, 'https://ror.org/04pse2556', 'de', 1, 'https://ror.org/04pse2556 Klinik und Poliklinik für Kinder- und Jugendpsychiatrie'), (63927, 'https://ror.org/04psvb108', 'de', 1, 'https://ror.org/04psvb108 Elbe Kliniken Stade-Buxtehude'), (63928, 'https://ror.org/04pxn5h75', 'en', 1, 'https://ror.org/04pxn5h75 Arab Foundation For Freedoms And Equality'), (63929, 'https://ror.org/04py26v74', 'en', 1, 'https://ror.org/04py26v74 Korean Society of Lipidology and Atherosclerosis 한국지질·동맥경화학회'), (63930, 'https://ror.org/04pz1vx14', 'en', 1, 'https://ror.org/04pz1vx14 Coastal Marine Biolabs'), (63931, 'https://ror.org/04q14s497', 'en', 1, 'https://ror.org/04q14s497 Peregrine Eye and Laser Institute'), (63932, 'https://ror.org/04q1tq423', 'en', 1, 'https://ror.org/04q1tq423 The Sandra A. Daugherty Foundation'), (63933, 'https://ror.org/04q2cc503', 'en', 1, 'https://ror.org/04q2cc503 Network of the Universities from the Capitals of Europe Réseau des universités des capitales de l''Europe'), (63934, 'https://ror.org/04q33ey84', 'fr', 1, 'https://ror.org/04q33ey84 Centre Hospitalier Charles Perrens'), (63935, 'https://ror.org/04q3h7t52', 'nl', 1, 'https://ror.org/04q3h7t52 Stichting Nationaal Fonds Het Gehandicapte Kind'), (63936, 'https://ror.org/04q43a127', 'no_lang_code', 1, 'https://ror.org/04q43a127 IPS Research (United States)'), (63937, 'https://ror.org/04q550429', 'de', 1, 'https://ror.org/04q550429 Sozialversicherung für Landwirtschaft, Forsten und Gartenbau'), (63938, 'https://ror.org/04q5vh665', 'no_lang_code', 1, 'https://ror.org/04q5vh665 Novindiet Clinic'), (63939, 'https://ror.org/04q7gws66', 'en', 1, 'https://ror.org/04q7gws66 Natural Philosophy Institute'), (63940, 'https://ror.org/04q81mh44', 'no_lang_code', 1, 'https://ror.org/04q81mh44 Piramal (United Kingdom)'), (63941, 'https://ror.org/04qb91x19', 'en', 1, 'https://ror.org/04qb91x19 Latin School of Chicago'), (63942, 'https://ror.org/04qc37m11', 'no_lang_code', 1, 'https://ror.org/04qc37m11 TeamAlert'), (63943, 'https://ror.org/04qczj105', 'en', 1, 'https://ror.org/04qczj105 American Association of Sensory Electrodiagnostic Medicine'), (63944, 'https://ror.org/04qd1fg21', 'en', 1, 'https://ror.org/04qd1fg21 Springfield Clinic'), (63945, 'https://ror.org/04qfvk625', 'en', 1, 'https://ror.org/04qfvk625 William P. Clements Jr. University Hospital'), (63946, 'https://ror.org/04qh1sk44', 'en', 1, 'https://ror.org/04qh1sk44 Stoke Mandeville Spinal Research'), (63947, 'https://ror.org/04qjgaa08', 'en', 1, 'https://ror.org/04qjgaa08 Foundation Children with Spinal Muscular Atrophy'); INSERT INTO `rors` VALUES (63948, 'https://ror.org/04qjz7g79', 'sr', 1, 'https://ror.org/04qjz7g79 Klinika za Psihijatrijske Bolesti Dr Laza Lazarević'), (63949, 'https://ror.org/04qkqhe87', 'en', 1, 'https://ror.org/04qkqhe87 Shandong Binzhou Pasturage Veterinary Academy 山东省滨州畜牧兽医研究院'), (63950, 'https://ror.org/04qkw0x88', 'en', 1, 'https://ror.org/04qkw0x88 International CTEPH Association'), (63951, 'https://ror.org/04qm5g479', 'en', 1, 'https://ror.org/04qm5g479 Thought Field Therapy Foundation'), (63952, 'https://ror.org/04qmeyd63', 'en', 1, 'https://ror.org/04qmeyd63 Association of Academic Professionals in Obstetrics and Gynaecology'), (63953, 'https://ror.org/04qmha372', 'en', 1, 'https://ror.org/04qmha372 British Association of Urological Surgeons'), (63954, 'https://ror.org/04qmnd212', 'en', 1, 'https://ror.org/04qmnd212 Ste. Genevieve County Memorial Hospital'), (63955, 'https://ror.org/04qnj3s85', 'en', 1, 'https://ror.org/04qnj3s85 InSpine'), (63956, 'https://ror.org/04qqn5v91', 'en', 1, 'https://ror.org/04qqn5v91 Hematology Oncology Consultants'), (63957, 'https://ror.org/04qqvvm35', 'no_lang_code', 1, 'https://ror.org/04qqvvm35 EyeSonix (United States)'), (63958, 'https://ror.org/04qr62034', 'no_lang_code', 1, 'https://ror.org/04qr62034 Roche (Romania)'), (63959, 'https://ror.org/04qs1qk86', 'de', 1, 'https://ror.org/04qs1qk86 Nord-Ostdeutsche Gesellschaft für Gynäkologische Onkologie'), (63960, 'https://ror.org/04qstxt95', 'no_lang_code', 1, 'https://ror.org/04qstxt95 Apomedica (Austria)'), (63961, 'https://ror.org/04qvenw96', 'fr', 1, 'https://ror.org/04qvenw96 Clinique Victor Hugo'), (63962, 'https://ror.org/04qvz3512', 'en', 1, 'https://ror.org/04qvz3512 Louisiana Hematology Oncology Associates'), (63963, 'https://ror.org/04qw37741', 'en', 1, 'https://ror.org/04qw37741 The Medical Center of Aurora'), (63964, 'https://ror.org/04qx49k93', 'no_lang_code', 1, 'https://ror.org/04qx49k93 Gehrlicher (Germany)'), (63965, 'https://ror.org/04qzmty18', 'en', 1, 'https://ror.org/04qzmty18 Saroj Gupta Cancer Centre & Research Institute'), (63966, 'https://ror.org/04r4esr16', 'es', 1, 'https://ror.org/04r4esr16 Hospital Odontológico Universidad de Barcelona'), (63967, 'https://ror.org/04r55zh03', 'fr', 1, 'https://ror.org/04r55zh03 Clinique Mutualiste de l''Estuaire'), (63968, 'https://ror.org/04r5abx10', 'en', 1, 'https://ror.org/04r5abx10 Territory Neurology & Research Institute'), (63969, 'https://ror.org/04r5kab60', 'no_lang_code', 1, 'https://ror.org/04r5kab60 Arteg (Netherlands)'), (63970, 'https://ror.org/04r796168', 'no_lang_code', 1, 'https://ror.org/04r796168 DiagNodus (United Kingdom)'), (63971, 'https://ror.org/04r7rm468', 'en', 1, 'https://ror.org/04r7rm468 The Center for Mind-Body Medicine'), (63972, 'https://ror.org/04r7wpm53', 'no_lang_code', 1, 'https://ror.org/04r7wpm53 HealthMyne (United States)'), (63973, 'https://ror.org/04r88rm51', 'no_lang_code', 1, 'https://ror.org/04r88rm51 Intersurgical (Germany)'), (63974, 'https://ror.org/04raj3421', 'es', 1, 'https://ror.org/04raj3421 Hospital El Escorial'), (63975, 'https://ror.org/04rcd2e35', 'de', 1, 'https://ror.org/04rcd2e35 Fachklinik St. Marienstift Dammer Berge'), (63976, 'https://ror.org/04rd2ca50', 'pt', 1, 'https://ror.org/04rd2ca50 Instituto Tropical de Medicina Reprodutiva'), (63977, 'https://ror.org/04rdhz191', 'es', 1, 'https://ror.org/04rdhz191 Hospital Comarcal de Inca'), (63978, 'https://ror.org/04rf3en62', 'no_lang_code', 1, 'https://ror.org/04rf3en62 El Instituto Hero de Nutrición Infantil Hero Institute for Infant Nutrition (Spain)'), (63979, 'https://ror.org/04rg77e64', 'fr', 1, 'https://ror.org/04rg77e64 Centre d''Etudes et de Recherches pour l''Intensification du Traitement du Diabète'), (63980, 'https://ror.org/04rh37t51', 'en', 1, 'https://ror.org/04rh37t51 Shafran Gastroenterology Center'), (63981, 'https://ror.org/04rhkcf19', 'no_lang_code', 1, 'https://ror.org/04rhkcf19 Santech (United States)'), (63982, 'https://ror.org/04rhwda32', 'en', 1, 'https://ror.org/04rhwda32 Heartland Hematology and Oncology'), (63983, 'https://ror.org/04rk3mm93', 'en', 1, 'https://ror.org/04rk3mm93 International Cannabinoid Research Society'), (63984, 'https://ror.org/04rkyw928', 'fr', 1, 'https://ror.org/04rkyw928 L''Hôpital Nord Franche-Comté'), (63985, 'https://ror.org/04rmmk750', 'no_lang_code', 1, 'https://ror.org/04rmmk750 GAIA (Germany)'), (63986, 'https://ror.org/04rr26086', 'de', 1, 'https://ror.org/04rr26086 Universitätskinderklinik'), (63987, 'https://ror.org/04rrktd29', 'en', 1, 'https://ror.org/04rrktd29 Joseph M. Still Research Foundation'), (63988, 'https://ror.org/04rtgxf38', 'en', 1, 'https://ror.org/04rtgxf38 Canadian Institute of Natural and Integrative Medicine'), (63989, 'https://ror.org/04rw83w19', 'en', 1, 'https://ror.org/04rw83w19 Avera McKennan Hospital & University Health Center'), (63990, 'https://ror.org/04rwyp244', 'de', 1, 'https://ror.org/04rwyp244 St. Maria-Hilf-Krankenhaus'), (63991, 'https://ror.org/04rwzz867', 'en', 1, 'https://ror.org/04rwzz867 Samara Regional Clinical Hospital named after V.D. Seredavina Самарская областная клиническая больница В.Д.Середавин'), (63992, 'https://ror.org/04s366p63', 'de', 1, 'https://ror.org/04s366p63 Klinikum Sindelfingen-Böblingen'), (63993, 'https://ror.org/04s3ast04', 'de', 1, 'https://ror.org/04s3ast04 Klinik und Poliklinik für Neurologie'), (63994, 'https://ror.org/04s4dtk79', 'no_lang_code', 1, 'https://ror.org/04s4dtk79 Mertiva (Sweden)'), (63995, 'https://ror.org/04s679e90', 'en', 1, 'https://ror.org/04s679e90 Western Foundation of Vertebrate Zoology'), (63996, 'https://ror.org/04s8yyn61', 'en', 1, 'https://ror.org/04s8yyn61 National Committee on United States China Relations'), (63997, 'https://ror.org/04sc54484', 'en', 1, 'https://ror.org/04sc54484 Cổng thông tin điện tử Viện Kiểm Định Quốc Gia Vắc Xin Và Sinh National Institute for Control of Vaccines and Biologicals'), (63998, 'https://ror.org/04sce8194', 'nl', 1, 'https://ror.org/04sce8194 Praktikon'), (63999, 'https://ror.org/04scta677', 'en', 1, 'https://ror.org/04scta677 Japan Clinical Cancer Research Organization 特定非営利活動法人 日本がん臨床試験推進機構'), (64000, 'https://ror.org/04sdeyq07', 'no_lang_code', 1, 'https://ror.org/04sdeyq07 B. Braun (Spain)'), (64001, 'https://ror.org/04sdwnk70', 'de', 1, 'https://ror.org/04sdwnk70 Werner und Erika Messmer Stiftung'), (64002, 'https://ror.org/04shda628', 'no_lang_code', 1, 'https://ror.org/04shda628 Biorasis (United States)'), (64003, 'https://ror.org/04sn1zv12', 'en', 1, 'https://ror.org/04sn1zv12 Global Biological Standards Institute'), (64004, 'https://ror.org/04snwz472', 'en', 1, 'https://ror.org/04snwz472 Southern Cross Fertility & IVF Centre'), (64005, 'https://ror.org/04sqj7m79', 'en', 1, 'https://ror.org/04sqj7m79 National Heart Foundation Hospital & Research Institute'), (64006, 'https://ror.org/04sr0hc76', 'de', 1, 'https://ror.org/04sr0hc76 Helios Kliniken Mittelweser'), (64007, 'https://ror.org/04ssr4v64', 'en', 1, 'https://ror.org/04ssr4v64 Research Institute for Child Psychology and Pathopsychology Vyskumny Ustav Detskej Psychologie a Patopsychologie'), (64008, 'https://ror.org/04st1y556', 'it', 1, 'https://ror.org/04st1y556 La Maddalena'), (64009, 'https://ror.org/04stq9b42', 'en', 1, 'https://ror.org/04stq9b42 Family Healthcare'), (64010, 'https://ror.org/04sv8h433', 'no_lang_code', 1, 'https://ror.org/04sv8h433 Activated Research Company (United States)'), (64011, 'https://ror.org/04svmxd14', 'en', 1, 'https://ror.org/04svmxd14 Changzhi University 长治学院'), (64012, 'https://ror.org/04sw4ge25', 'en', 1, 'https://ror.org/04sw4ge25 DSC Services'), (64013, 'https://ror.org/04swy5694', 'nl', 1, 'https://ror.org/04swy5694 Dokter Bosman'), (64014, 'https://ror.org/04sxdc114', 'en', 1, 'https://ror.org/04sxdc114 OhioHealth Mansfield Hospital'), (64015, 'https://ror.org/04sy1dy83', 'en', 1, 'https://ror.org/04sy1dy83 West Virginia Network'), (64016, 'https://ror.org/04t03ph12', 'en', 1, 'https://ror.org/04t03ph12 Danish Agency for Institutions and Educational Grants'), (64017, 'https://ror.org/04t1yja74', 'fr', 1, 'https://ror.org/04t1yja74 Association des Neuro-Oncologues d’Expression Française'), (64018, 'https://ror.org/04t2ed417', 'en', 1, 'https://ror.org/04t2ed417 Vitalis WoonZorg Group'), (64019, 'https://ror.org/04t455g84', 'en', 1, 'https://ror.org/04t455g84 Great Lakes Cancer Management Specialists'), (64020, 'https://ror.org/04t4g7j44', 'en', 1, 'https://ror.org/04t4g7j44 Changhua County Public Health Bureau 彰化縣衛生局'), (64021, 'https://ror.org/04t5pq748', 'en', 1, 'https://ror.org/04t5pq748 Delos Clinical'), (64022, 'https://ror.org/04t5qmm38', 'nl', 1, 'https://ror.org/04t5qmm38 Agora'), (64023, 'https://ror.org/04t69c375', 'en', 1, 'https://ror.org/04t69c375 Baoshan College 宝山学院'), (64024, 'https://ror.org/04t6gkr49', 'en', 1, 'https://ror.org/04t6gkr49 Alliance for Canadian Health Outcomes Research in Diabetes'), (64025, 'https://ror.org/04t7jet59', 'no_lang_code', 1, 'https://ror.org/04t7jet59 Stryker (Switzerland)'), (64026, 'https://ror.org/04t7xhp38', 'en', 1, 'https://ror.org/04t7xhp38 Side-Out Foundation'), (64027, 'https://ror.org/04t8gaz30', 'en', 1, 'https://ror.org/04t8gaz30 Ayurvedic Institute'), (64028, 'https://ror.org/04tagby45', 'en', 1, 'https://ror.org/04tagby45 Triodos Bank'), (64029, 'https://ror.org/04td0jm23', 'en', 1, 'https://ror.org/04td0jm23 Euromedic'), (64030, 'https://ror.org/04tf0ye64', 'en', 1, 'https://ror.org/04tf0ye64 Center for Psychiatry and Behavioral Medicine'), (64031, 'https://ror.org/04tg2rn58', 'no_lang_code', 1, 'https://ror.org/04tg2rn58 IQ Medical Ventures (Netherlands)'), (64032, 'https://ror.org/04tgkyt11', 'no_lang_code', 1, 'https://ror.org/04tgkyt11 Froceth (Lithuania)'), (64033, 'https://ror.org/04th56x69', 'en', 1, 'https://ror.org/04th56x69 THIM van der Laan University College Physiotherapy'), (64034, 'https://ror.org/04thvph49', 'en', 1, 'https://ror.org/04thvph49 Virginia Center for Reproductive Medicine'), (64035, 'https://ror.org/04tj2nz36', 'en', 1, 'https://ror.org/04tj2nz36 Northeast Center for Rehabilitation and Brain Injury'), (64036, 'https://ror.org/04tkkqy57', 'en', 1, 'https://ror.org/04tkkqy57 Nam Dinh University of Nursing'), (64037, 'https://ror.org/04trvzz06', 'en', 1, 'https://ror.org/04trvzz06 Ontario Rheumatology Association'), (64038, 'https://ror.org/04tsbxb91', 'no_lang_code', 1, 'https://ror.org/04tsbxb91 TAO Connect (United States)'), (64039, 'https://ror.org/04tv9yw85', 'en', 1, 'https://ror.org/04tv9yw85 C-AID Consultants'), (64040, 'https://ror.org/04tx7n689', 'en', 1, 'https://ror.org/04tx7n689 Chu Vision Institute'), (64041, 'https://ror.org/04typ7821', 'en', 1, 'https://ror.org/04typ7821 Tri Center'), (64042, 'https://ror.org/04tyx7m15', 'en', 1, 'https://ror.org/04tyx7m15 Carolinas Hospital System'), (64043, 'https://ror.org/04v1ay816', 'es', 1, 'https://ror.org/04v1ay816 Hospital Universitario San Rafael San Rafael University Hospital'), (64044, 'https://ror.org/04v2tad62', 'en', 1, 'https://ror.org/04v2tad62 Palm Beach Neurological Center'), (64045, 'https://ror.org/04v2xy120', 'no_lang_code', 1, 'https://ror.org/04v2xy120 Higher Education Services (United States)'), (64046, 'https://ror.org/04v5fn795', 'nl', 1, 'https://ror.org/04v5fn795 Stichting Apotheek der Haarlemse Ziekenhuizen'), (64047, 'https://ror.org/04v67sh61', 'en', 1, 'https://ror.org/04v67sh61 Centeno-Schultz Clinic'), (64048, 'https://ror.org/04v6y1533', 'nl', 1, 'https://ror.org/04v6y1533 Maurits en Anna de Kock Stichting'), (64049, 'https://ror.org/04v719x65', 'en', 1, 'https://ror.org/04v719x65 Beat Nb'), (64050, 'https://ror.org/04v77c541', 'en', 1, 'https://ror.org/04v77c541 Sierra Eye Associates'), (64051, 'https://ror.org/04v7c9d77', 'no_lang_code', 1, 'https://ror.org/04v7c9d77 SoundRocket (United States)'), (64052, 'https://ror.org/04v9dga39', 'en', 1, 'https://ror.org/04v9dga39 NOVO Cellular Medicine Institute'), (64053, 'https://ror.org/04v9hjm42', 'de', 1, 'https://ror.org/04v9hjm42 Juliusspital Foundation Stiftung Juliusspital'), (64054, 'https://ror.org/04vdm6x24', 'de', 1, 'https://ror.org/04vdm6x24 Senatsverwaltung für Gesundheit, Pflege und Gleichstellung'), (64055, 'https://ror.org/04vdzam19', 'en', 1, 'https://ror.org/04vdzam19 Ministry of Local Government, Rural Development and Co-operatives স্থানীয় সরকার, পল্লী উন্নয়ন ও সমবায় মন্ত্রণালয়'), (64056, 'https://ror.org/04vj7nb44', 'en', 1, 'https://ror.org/04vj7nb44 Mercy Fitzgerald Hospital'), (64057, 'https://ror.org/04vjj4994', 'en', 1, 'https://ror.org/04vjj4994 Nepal Family Development Foundation'), (64058, 'https://ror.org/04vjrjb03', 'en', 1, 'https://ror.org/04vjrjb03 Illawarra Women''s Health Centre'), (64059, 'https://ror.org/04vkz4w22', 'en', 1, 'https://ror.org/04vkz4w22 Rowe Neurology Institute'), (64060, 'https://ror.org/04vmpyg44', 'en', 1, 'https://ror.org/04vmpyg44 Fujian Academy of Medical Sciences 福建省医学科学院'), (64061, 'https://ror.org/04vnjb193', 'en', 1, 'https://ror.org/04vnjb193 Vascular Interventional Advances'), (64062, 'https://ror.org/04vpsne51', 'en', 1, 'https://ror.org/04vpsne51 Facial Pain Association'), (64063, 'https://ror.org/04vqtes97', 'en', 1, 'https://ror.org/04vqtes97 Creedmoor Psychiatric Center'), (64064, 'https://ror.org/04vr72n28', 'en', 1, 'https://ror.org/04vr72n28 Michigan Head and Spine Institute'), (64065, 'https://ror.org/04vs51a50', 'en', 1, 'https://ror.org/04vs51a50 Midtown Educational Foundation'), (64066, 'https://ror.org/04vs52k24', 'en', 1, 'https://ror.org/04vs52k24 Legacy International'), (64067, 'https://ror.org/04vt5s449', 'en', 1, 'https://ror.org/04vt5s449 Cure CP'), (64068, 'https://ror.org/04vvsta47', 'en', 1, 'https://ror.org/04vvsta47 National Institute for Health Care Reform'), (64069, 'https://ror.org/04vw6de50', 'en', 1, 'https://ror.org/04vw6de50 Seafood South Australia'), (64070, 'https://ror.org/04vxexg79', 'en', 1, 'https://ror.org/04vxexg79 MiiMi Aboriginal Corporation'), (64071, 'https://ror.org/04vxvsq82', 'no_lang_code', 1, 'https://ror.org/04vxvsq82 Spectrum Research (United States)'), (64072, 'https://ror.org/04vz2j713', 'no_lang_code', 1, 'https://ror.org/04vz2j713 Interpolis (Netherlands)'), (64073, 'https://ror.org/04vz3bz63', 'en', 1, 'https://ror.org/04vz3bz63 Inspired Spine'), (64074, 'https://ror.org/04w0g9c06', 'no_lang_code', 1, 'https://ror.org/04w0g9c06 RR Mechatronics (Netherlands)'), (64075, 'https://ror.org/04w3zd882', 'en', 1, 'https://ror.org/04w3zd882 Hematology Oncology Associates'), (64076, 'https://ror.org/04w47cg22', 'en', 1, 'https://ror.org/04w47cg22 Neosho Memorial Regional Medical Center'), (64077, 'https://ror.org/04w4jta18', 'de', 1, 'https://ror.org/04w4jta18 Acura Kliniken'), (64078, 'https://ror.org/04w65pb91', 'no_lang_code', 1, 'https://ror.org/04w65pb91 SIGVARIS Group (Switzerland)'), (64079, 'https://ror.org/04w70m307', 'en', 1, 'https://ror.org/04w70m307 Centro Intercultural de Estudios de Desiertos y Océanos Intercultural Center for the Study of Deserts and Oceans'), (64080, 'https://ror.org/04w87a187', 'fr', 1, 'https://ror.org/04w87a187 Adema 80'), (64081, 'https://ror.org/04w8qq712', 'es', 1, 'https://ror.org/04w8qq712 Instituto Ecuatoriano de Enfermedades Digestivas'), (64082, 'https://ror.org/04w908n49', 'en', 1, 'https://ror.org/04w908n49 Center for the Study of State and Society Centro para el Estudio del Estado y la Sociedad'), (64083, 'https://ror.org/04w9ddv64', 'de', 1, 'https://ror.org/04w9ddv64 Caritas-Krankenhaus St. Josef'), (64084, 'https://ror.org/04wbedy98', 'no_lang_code', 1, 'https://ror.org/04wbedy98 Storch und Beller'), (64085, 'https://ror.org/04we5xg30', 'en', 1, 'https://ror.org/04we5xg30 McFarland Clinic - Marshalltown'), (64086, 'https://ror.org/04wfwab40', 'no_lang_code', 1, 'https://ror.org/04wfwab40 Vion Food Group (Netherlands)'), (64087, 'https://ror.org/04wfzj177', 'en', 1, 'https://ror.org/04wfzj177 PeaceHealth St. Joseph Medical Center'), (64088, 'https://ror.org/04wh5hg83', 'no_lang_code', 1, 'https://ror.org/04wh5hg83 Caris Life Sciences (United States)'), (64089, 'https://ror.org/04whgpk43', 'nl', 1, 'https://ror.org/04whgpk43 Brijder, Brijder Verslavingszorg'), (64090, 'https://ror.org/04wk3wd50', 'fr', 1, 'https://ror.org/04wk3wd50 Académie de Nancy-Metz'), (64091, 'https://ror.org/04wkxh813', 'en', 1, 'https://ror.org/04wkxh813 Neurologique Foundation'), (64092, 'https://ror.org/04wnnpk31', 'no_lang_code', 1, 'https://ror.org/04wnnpk31 Pulmonx (United States)'), (64093, 'https://ror.org/04wnsdv29', 'en', 1, 'https://ror.org/04wnsdv29 Mandya Institute of Medical Sciences ಮಂಡ್ಯ ಇನ್ಸ್ಟಿಟ್ಯೂಟ್ ಆಫ್ ಮೆಡಿಕಲ್ ಸೈನ್ಸ್'), (64094, 'https://ror.org/04wpjg525', 'en', 1, 'https://ror.org/04wpjg525 Food & Nutrition'), (64095, 'https://ror.org/04wqn7h33', 'no_lang_code', 1, 'https://ror.org/04wqn7h33 AEGEA Medical (United States)'), (64096, 'https://ror.org/04wqvjr21', 'fr', 1, 'https://ror.org/04wqvjr21 Centre Hospitalier Intercommunal Toulon-La Seyne-sur-Mer'), (64097, 'https://ror.org/04wt3vp12', 'no_lang_code', 1, 'https://ror.org/04wt3vp12 Roivant Sciences (Bermuda)'), (64098, 'https://ror.org/04wwppp44', 'en', 1, 'https://ror.org/04wwppp44 The O.P. and W.E. Edwards Foundation'), (64099, 'https://ror.org/04wx5ek40', 'en', 1, 'https://ror.org/04wx5ek40 Tau Beta Pi Association'), (64100, 'https://ror.org/04x0cjk42', 'en', 1, 'https://ror.org/04x0cjk42 Greater Regional Medical Center'), (64101, 'https://ror.org/04x3fmq96', 'en', 1, 'https://ror.org/04x3fmq96 IVI Middle East Fertility Clinic'), (64102, 'https://ror.org/04x4dcg02', 'en', 1, 'https://ror.org/04x4dcg02 Thinkery'), (64103, 'https://ror.org/04x50ay81', 'no_lang_code', 1, 'https://ror.org/04x50ay81 Lambda Therapeutic Research (India)'), (64104, 'https://ror.org/04x5fjw90', 'en', 1, 'https://ror.org/04x5fjw90 OrthoCarolina Research Institute'), (64105, 'https://ror.org/04x747113', 'de', 1, 'https://ror.org/04x747113 Evangelisches Krankenhaus Hamm'), (64106, 'https://ror.org/04x7hfy59', 'en', 1, 'https://ror.org/04x7hfy59 Naples Community Hospital Healthcare System'), (64107, 'https://ror.org/04x80tf13', 'en', 1, 'https://ror.org/04x80tf13 Recfish Australia'), (64108, 'https://ror.org/04x814r93', 'de', 1, 'https://ror.org/04x814r93 Vinforce'), (64109, 'https://ror.org/04x84m665', 'de', 1, 'https://ror.org/04x84m665 Adipositas Zentrum Oberhausen'), (64110, 'https://ror.org/04x8czz63', 'no_lang_code', 1, 'https://ror.org/04x8czz63 Bracco (Germany)'), (64111, 'https://ror.org/04xbtey77', 'en', 1, 'https://ror.org/04xbtey77 National Institute for Public Safety Health'), (64112, 'https://ror.org/04xdas356', 'no_lang_code', 1, 'https://ror.org/04xdas356 Unfallkasse Rheinland-Pfalz (Germany)'), (64113, 'https://ror.org/04xer1p89', 'en', 1, 'https://ror.org/04xer1p89 Austrian Standards Österreichisches Normungsinstitut'), (64114, 'https://ror.org/04xfd0826', 'en', 1, 'https://ror.org/04xfd0826 Shanghai Research Center for Wireless Communications 上海无线通信研究中心'), (64115, 'https://ror.org/04xg96b46', 'pt', 1, 'https://ror.org/04xg96b46 Instituto de Oncologia do Paraná'), (64116, 'https://ror.org/04xg9g962', 'nl', 1, 'https://ror.org/04xg9g962 Condite'), (64117, 'https://ror.org/04xh4nj31', 'no_lang_code', 1, 'https://ror.org/04xh4nj31 EDAP TMS (Germany)'), (64118, 'https://ror.org/04xhn5b95', 'de', 1, 'https://ror.org/04xhn5b95 Universitätsklinik für Kinder und Jugendpsychiatrie'), (64119, 'https://ror.org/04xhnhj86', 'en', 1, 'https://ror.org/04xhnhj86 Grupo Español de Tratamiento de Tumores de Cabeza y Cuello Spanish Head & Neck Cancer Cooperative Group'), (64120, 'https://ror.org/04xj4zj95', 'en', 1, 'https://ror.org/04xj4zj95 Southeast Tech'), (64121, 'https://ror.org/04xj8xr09', 'de', 1, 'https://ror.org/04xj8xr09 Deutscher Psoriasis Bund'), (64122, 'https://ror.org/04xkbx134', 'en', 1, 'https://ror.org/04xkbx134 Providence Saint Joseph Medical Center'), (64123, 'https://ror.org/04xkx8s32', 'en', 1, 'https://ror.org/04xkx8s32 Nasser Institute hospital'), (64124, 'https://ror.org/04xpvy130', 'en', 1, 'https://ror.org/04xpvy130 Difficult Airways Society'), (64125, 'https://ror.org/04xqmb911', 'en', 1, 'https://ror.org/04xqmb911 Institut für Mikrobiologie und Hygiene Institute of Medical Microbiology and Hygiene'), (64126, 'https://ror.org/04xwcs454', 'en', 1, 'https://ror.org/04xwcs454 Inner Mongolia International Mongolian Hospital 内蒙古国际蒙医院官网'), (64127, 'https://ror.org/04xx57w85', 'no_lang_code', 1, 'https://ror.org/04xx57w85 Gelita (Germany)'), (64128, 'https://ror.org/04y18m106', 'de', 1, 'https://ror.org/04y18m106 Helios Klinikum Erfurt'), (64129, 'https://ror.org/04y1ahe28', 'en', 1, 'https://ror.org/04y1ahe28 EEC Institute'), (64130, 'https://ror.org/04y25zx85', 'en', 1, 'https://ror.org/04y25zx85 Taiwan Society of Thrombosis and Hemostasis'), (64131, 'https://ror.org/04y52eq55', 'en', 1, 'https://ror.org/04y52eq55 Federal Neuro Psychiatric Hospital'), (64132, 'https://ror.org/04y5tkt43', 'de', 1, 'https://ror.org/04y5tkt43 BIG Direkt Gesund'), (64133, 'https://ror.org/04y6cx804', 'en', 1, 'https://ror.org/04y6cx804 EGMONT – The Royal Institute for International Relations'), (64134, 'https://ror.org/04y8jf896', 'en', 1, 'https://ror.org/04y8jf896 Interventional Stroke Therapy Outcomes Registry'), (64135, 'https://ror.org/04y9b7t58', 'en', 1, 'https://ror.org/04y9b7t58 Italian Resuscitation Council'), (64136, 'https://ror.org/04y9nj467', 'en', 1, 'https://ror.org/04y9nj467 Healing Institute'), (64137, 'https://ror.org/04ybb1s66', 'en', 1, 'https://ror.org/04ybb1s66 Foundation Van Goethem-Brichant'), (64138, 'https://ror.org/04yctj498', 'en', 1, 'https://ror.org/04yctj498 Panhandle Eye Group'), (64139, 'https://ror.org/04yeh2x21', 'de', 1, 'https://ror.org/04yeh2x21 Refonet'), (64140, 'https://ror.org/04yjzvg70', 'en', 1, 'https://ror.org/04yjzvg70 Arizona Oncology Foundation'), (64141, 'https://ror.org/04ykj1118', 'no_lang_code', 1, 'https://ror.org/04ykj1118 Gynius (Sweden)'), (64142, 'https://ror.org/04ym85q78', 'es', 1, 'https://ror.org/04ym85q78 Hospital Plató'), (64143, 'https://ror.org/04yqk3j23', 'en', 1, 'https://ror.org/04yqk3j23 Seafood Industry Victoria'), (64144, 'https://ror.org/04yv75396', 'no_lang_code', 1, 'https://ror.org/04yv75396 Univé (Netherlands)'), (64145, 'https://ror.org/04yw4y185', 'en', 1, 'https://ror.org/04yw4y185 Entrada Institute'), (64146, 'https://ror.org/04yw93c88', 'en', 1, 'https://ror.org/04yw93c88 Lagos State Health Service Commission'), (64147, 'https://ror.org/04ywqtw26', 'en', 1, 'https://ror.org/04ywqtw26 Houston Methodist Sugar Land Hospital'), (64148, 'https://ror.org/04yx65w97', 'de', 1, 'https://ror.org/04yx65w97 Institut für Palliative Care'), (64149, 'https://ror.org/04yxf9085', 'en', 1, 'https://ror.org/04yxf9085 Maine Discovery Museum'), (64150, 'https://ror.org/04yxf9667', 'en', 1, 'https://ror.org/04yxf9667 European Society of Hypertension Società europea di ipertensione'), (64151, 'https://ror.org/04yy1mz94', 'en', 1, 'https://ror.org/04yy1mz94 Royal Belgian Society for Surgery'), (64152, 'https://ror.org/04z0aed53', 'en', 1, 'https://ror.org/04z0aed53 The Clay Minerals Society'), (64153, 'https://ror.org/04z0cdx68', 'en', 1, 'https://ror.org/04z0cdx68 SurgOne Foregut Institute'), (64154, 'https://ror.org/04z0csp04', 'en', 1, 'https://ror.org/04z0csp04 Primary Care Diabetes Society'), (64155, 'https://ror.org/04z256d90', 'en', 1, 'https://ror.org/04z256d90 Governor''s Office of Planning and Research'), (64156, 'https://ror.org/04z27mz17', 'fr', 1, 'https://ror.org/04z27mz17 Clinique Hartmann'), (64157, 'https://ror.org/04z28dj81', 'fr', 1, 'https://ror.org/04z28dj81 Institut Aguettant'), (64158, 'https://ror.org/04z3y3b74', 'en', 1, 'https://ror.org/04z3y3b74 Chicago Children’s Museum'), (64159, 'https://ror.org/04z435g27', 'en', 1, 'https://ror.org/04z435g27 South Asian Clinical Toxicology Research Collaboration'), (64160, 'https://ror.org/04z5c1995', 'it', 1, 'https://ror.org/04z5c1995 Istituto di Montecatone, Ospedale di Riabilitazione'), (64161, 'https://ror.org/04z5nag80', 'en', 1, 'https://ror.org/04z5nag80 Medirex Group Academy'), (64162, 'https://ror.org/04z5qk104', 'en', 1, 'https://ror.org/04z5qk104 Community Hospital'), (64163, 'https://ror.org/04z5qv209', 'en', 1, 'https://ror.org/04z5qv209 Kalispell Regional Medical Center'), (64164, 'https://ror.org/04z76wj11', 'no_lang_code', 1, 'https://ror.org/04z76wj11 Caribou Biosciences (United States)'), (64165, 'https://ror.org/04z8yvn47', 'en', 1, 'https://ror.org/04z8yvn47 Chinese Anti-Cancer Association 中国抗癌协会'), (64166, 'https://ror.org/04z99zb45', 'en', 1, 'https://ror.org/04z99zb45 Genesee Cancer & Blood Disease'), (64167, 'https://ror.org/04z9wzt26', 'en', 1, 'https://ror.org/04z9wzt26 Appalachia-Science in the Public Interest'), (64168, 'https://ror.org/04zame467', 'en', 1, 'https://ror.org/04zame467 Kulas Foundation'), (64169, 'https://ror.org/04zd8zs90', 'en', 1, 'https://ror.org/04zd8zs90 California Indian Museum and Cultural Center'), (64170, 'https://ror.org/04zdc2070', 'en', 1, 'https://ror.org/04zdc2070 Mountain Diabetes and Endocrine Center'), (64171, 'https://ror.org/04zdsga82', 'en', 1, 'https://ror.org/04zdsga82 Ruikang Affiliated Hospital of Guangxi Medical University 广西中医药大学附属瑞康医院'), (64172, 'https://ror.org/04zj53020', 'no_lang_code', 1, 'https://ror.org/04zj53020 Onkotrakt (Germany)'), (64173, 'https://ror.org/04zkhyt19', 'de', 1, 'https://ror.org/04zkhyt19 Deutsche Parkinson Vereinigung e.V'), (64174, 'https://ror.org/04zmc7w78', 'en', 1, 'https://ror.org/04zmc7w78 Netherlands Nutrition Centre Stichting Voedingscentrum'), (64175, 'https://ror.org/04zncpe92', 'en', 1, 'https://ror.org/04zncpe92 Access to Wholistic and Productive Living Institute'), (64176, 'https://ror.org/04zp4vp65', 'en', 1, 'https://ror.org/04zp4vp65 Institute of Mental Health Институт за ментално здравље'), (64177, 'https://ror.org/04zrd1t35', 'no_lang_code', 1, 'https://ror.org/04zrd1t35 Zambon (Switzerland)'), (64178, 'https://ror.org/04zs9v841', 'no_lang_code', 1, 'https://ror.org/04zs9v841 Multi Electrical System (Suriname)'), (64179, 'https://ror.org/04ztvxe73', 'de', 1, 'https://ror.org/04ztvxe73 Kreiskrankenhaus Emmendingen'), (64180, 'https://ror.org/04zv2wf02', 'no_lang_code', 1, 'https://ror.org/04zv2wf02 Damien Foundation'), (64181, 'https://ror.org/04zvdfd56', 'de', 1, 'https://ror.org/04zvdfd56 Universitätszahnklinik Wien'), (64182, 'https://ror.org/04zy2vv30', 'en', 1, 'https://ror.org/04zy2vv30 Gulf Heart Association'), (64183, 'https://ror.org/04zymc478', 'en', 1, 'https://ror.org/04zymc478 National Cancer Institute of Sri Lanka'), (64184, 'https://ror.org/04zys7342', 'de', 1, 'https://ror.org/04zys7342 Klinik und Poliklinik für Psychiatrie und Psychotherapie des Kindes- und Jugendalters'), (64185, 'https://ror.org/04zzrht05', 'en', 1, 'https://ror.org/04zzrht05 North Tees and Hartlepool NHS Foundation Trust'), (64186, 'https://ror.org/0501ptv55', 'no_lang_code', 1, 'https://ror.org/0501ptv55 nView Medical (United States)'), (64187, 'https://ror.org/0501yf769', 'en', 1, 'https://ror.org/0501yf769 George Huntington Institute George-Huntington-Institut'), (64188, 'https://ror.org/0503fq502', 'no_lang_code', 1, 'https://ror.org/0503fq502 Neuren Pharmaceuticals (New Zealand)'), (64189, 'https://ror.org/0505n3394', 'en', 1, 'https://ror.org/0505n3394 Pearl Producers Association'), (64190, 'https://ror.org/05069qg36', 'no_lang_code', 1, 'https://ror.org/05069qg36 Infinity HealthCare (United States)'), (64191, 'https://ror.org/050782b52', 'no_lang_code', 1, 'https://ror.org/050782b52 A-SKIN (Netherlands)'), (64192, 'https://ror.org/05090cn78', 'de', 1, 'https://ror.org/05090cn78 Onkozentrum Dresden'), (64193, 'https://ror.org/050ct8k07', 'en', 1, 'https://ror.org/050ct8k07 Beijing Institute of Labor Protection Science 北京市劳动保护科学研究所'), (64194, 'https://ror.org/050dmq329', 'en', 1, 'https://ror.org/050dmq329 The AIDS Institute'), (64195, 'https://ror.org/050ept838', 'en', 1, 'https://ror.org/050ept838 Road Safety Institute Panos Mylonas Ινστιτούτο Οδικής Ασφάλειας "Πάνος Μυλωνάς"'), (64196, 'https://ror.org/050eva982', 'en', 1, 'https://ror.org/050eva982 German Council for Scientific Information Infrastructures Rat für Informationsinfrastrukturen'), (64197, 'https://ror.org/050fgea76', 'no_lang_code', 1, 'https://ror.org/050fgea76 Kazahstanskoe Obshchestvo Bariatricheskih i Metabolicheskih Hirurgov Казахстанское общество бариатрических и метаболических хирургов РОО'), (64198, 'https://ror.org/050fh0z31', 'en', 1, 'https://ror.org/050fh0z31 Queen Giovanna Hospital болница Царица Йоанна'), (64199, 'https://ror.org/050fnhx85', 'en', 1, 'https://ror.org/050fnhx85 Great Falls Clinic'), (64200, 'https://ror.org/050g10a24', 'no_lang_code', 1, 'https://ror.org/050g10a24 Zimmer Biomet (Switzerland)'), (64201, 'https://ror.org/050g5gp35', 'no_lang_code', 1, 'https://ror.org/050g5gp35 Premaitha Health (United Kingdom)'), (64202, 'https://ror.org/050hmr449', 'en', 1, 'https://ror.org/050hmr449 Jackson Hole Wildlife Film Festival'), (64203, 'https://ror.org/050htcf02', 'en', 1, 'https://ror.org/050htcf02 Proliance Orthopedic Associates'), (64204, 'https://ror.org/050ja5z71', 'no_lang_code', 1, 'https://ror.org/050ja5z71 HausMed (Germany)'), (64205, 'https://ror.org/050k6mb72', 'no_lang_code', 1, 'https://ror.org/050k6mb72 PharmaCept (Germany)'), (64206, 'https://ror.org/050kj6p21', 'no_lang_code', 1, 'https://ror.org/050kj6p21 Alloheim (Germany)'), (64207, 'https://ror.org/050mwvy04', 'no_lang_code', 1, 'https://ror.org/050mwvy04 Admin Partners (Switzerland)'), (64208, 'https://ror.org/050p4bn34', 'en', 1, 'https://ror.org/050p4bn34 Oakland Colon and Rectal Associates'), (64209, 'https://ror.org/050p5yf06', 'en', 1, 'https://ror.org/050p5yf06 Open Medicine Institute'), (64210, 'https://ror.org/050pcsr04', 'en', 1, 'https://ror.org/050pcsr04 Dr. Becker Rhein-Sieg Clinic Dr. Becker Rhein-Sieg-Klinik'), (64211, 'https://ror.org/050qytm65', 'en', 1, 'https://ror.org/050qytm65 Qingdao Party School of CPC 中国共产党青岛市委员会党校'), (64212, 'https://ror.org/050t8nt82', 'no_lang_code', 1, 'https://ror.org/050t8nt82 Glycemicon (Switzerland)'), (64213, 'https://ror.org/050tgz329', 'en', 1, 'https://ror.org/050tgz329 Eastern Maine Community College'), (64214, 'https://ror.org/050wz9j65', 'de', 1, 'https://ror.org/050wz9j65 Rehazentrum Wilhelmshaven'), (64215, 'https://ror.org/050y6sw38', 'en', 1, 'https://ror.org/050y6sw38 Deutsche Stiftung Organtransplantation German Organ Transplantation Foundation'), (64216, 'https://ror.org/05110bn15', 'en', 1, 'https://ror.org/05110bn15 Euskoiker Foundation'), (64217, 'https://ror.org/05129cd91', 'no_lang_code', 1, 'https://ror.org/05129cd91 Dürr Dental (Germany)'), (64218, 'https://ror.org/0513wsw42', 'de', 1, 'https://ror.org/0513wsw42 Deutsche AIDS-Gesellschaft'), (64219, 'https://ror.org/0514yze14', 'no_lang_code', 1, 'https://ror.org/0514yze14 Huons (South Korea)'), (64220, 'https://ror.org/05157de90', 'en', 1, 'https://ror.org/05157de90 Philadelphia Eye Associates'), (64221, 'https://ror.org/0515efc31', 'no_lang_code', 1, 'https://ror.org/0515efc31 Danone (China)'), (64222, 'https://ror.org/05165er51', 'en', 1, 'https://ror.org/05165er51 Danish College of General Practitioners Dansk Selskab for Almen Medicin'), (64223, 'https://ror.org/0516ccm91', 'no_lang_code', 1, 'https://ror.org/0516ccm91 OIM Orthopedie (Netherlands)'), (64224, 'https://ror.org/0518w2v98', 'en', 1, 'https://ror.org/0518w2v98 Benjamin Banneker Association'), (64225, 'https://ror.org/051ay2y67', 'en', 1, 'https://ror.org/051ay2y67 Rashi Foundation קרן רש"י'), (64226, 'https://ror.org/051bqjh49', 'en', 1, 'https://ror.org/051bqjh49 European Society of Cutaneous Lupus Erythematosus Europäische Gesellschaft für kutanen Lupus erythematodes'), (64227, 'https://ror.org/051d1hf40', 'es', 1, 'https://ror.org/051d1hf40 Halitus Instituto Médico'), (64228, 'https://ror.org/051fvq837', 'en', 1, 'https://ror.org/051fvq837 Hospital General Universitario Santa Lucía Santa Lucía University General Hospital'), (64229, 'https://ror.org/051gnmd75', 'no_lang_code', 1, 'https://ror.org/051gnmd75 Musculoskeletal Clinical Regulatory Advisers (United States)'), (64230, 'https://ror.org/051jvhq51', 'no_lang_code', 1, 'https://ror.org/051jvhq51 Imbed Biosciences (United States)'), (64231, 'https://ror.org/051k3ba49', 'no_lang_code', 1, 'https://ror.org/051k3ba49 Minnesota HealthSolutions (United States)'), (64232, 'https://ror.org/051kb4j80', 'en', 1, 'https://ror.org/051kb4j80 Ludwig Boltzmann Institute of Osteology'), (64233, 'https://ror.org/051md9f18', 'de', 1, 'https://ror.org/051md9f18 Apothekerstiftung Westfalen-Lippe'), (64234, 'https://ror.org/051mqhp34', 'no_lang_code', 1, 'https://ror.org/051mqhp34 Psicon (United Kingdom)'), (64235, 'https://ror.org/051nkwd95', 'en', 1, 'https://ror.org/051nkwd95 New Renaissance Institute'), (64236, 'https://ror.org/051r8dh72', 'no_lang_code', 1, 'https://ror.org/051r8dh72 Nano3D Biosciences (United States)'), (64237, 'https://ror.org/051ws8490', 'en', 1, 'https://ror.org/051ws8490 Rogue Regional Medical Center'), (64238, 'https://ror.org/051y5hr89', 'no_lang_code', 1, 'https://ror.org/051y5hr89 Landsbond der Christelijke Mutualiteiten (Belgium)'), (64239, 'https://ror.org/051y66958', 'en', 1, 'https://ror.org/051y66958 Grinnell Regional Medical Center'), (64240, 'https://ror.org/052414247', 'en', 1, 'https://ror.org/052414247 Centre for Studies in Economics and Finance'), (64241, 'https://ror.org/05258cy55', 'no_lang_code', 1, 'https://ror.org/05258cy55 Genmab (United States)'), (64242, 'https://ror.org/0525jdx88', 'de', 1, 'https://ror.org/0525jdx88 Diakonie Kork'), (64243, 'https://ror.org/05262w896', 'en', 1, 'https://ror.org/05262w896 US Virtual Astronomical Observatory'), (64244, 'https://ror.org/0528hwm66', 'en', 1, 'https://ror.org/0528hwm66 The Japan-Multinational Trial Organization 日本・多国間臨床試験機構'), (64245, 'https://ror.org/0528jqb23', 'no_lang_code', 1, 'https://ror.org/0528jqb23 Inspire Medical Systems (United States)'), (64246, 'https://ror.org/052bwcm79', 'nl', 1, 'https://ror.org/052bwcm79 Capri Hartrevalidatie'), (64247, 'https://ror.org/052c2ng98', 'nl', 1, 'https://ror.org/052c2ng98 ROC Leeuwenborgh'), (64248, 'https://ror.org/052c7xn57', 'de', 1, 'https://ror.org/052c7xn57 Oberberg Stiftung'), (64249, 'https://ror.org/052e10e62', 'no_lang_code', 1, 'https://ror.org/052e10e62 IsoPlexis (United States)'), (64250, 'https://ror.org/052ec2555', 'en', 1, 'https://ror.org/052ec2555 HealthCare Partners Institute for Applied Research and Education'), (64251, 'https://ror.org/052eesz64', 'no_lang_code', 1, 'https://ror.org/052eesz64 Veeda Clinical Research (India)'), (64252, 'https://ror.org/052eqw254', 'en', 1, 'https://ror.org/052eqw254 Northwest Cancer Clinic'), (64253, 'https://ror.org/052farg34', 'en', 1, 'https://ror.org/052farg34 Trenholm State Community College'), (64254, 'https://ror.org/052hty126', 'no_lang_code', 1, 'https://ror.org/052hty126 Konpharma (Italy)'), (64255, 'https://ror.org/052hwbh23', 'no_lang_code', 1, 'https://ror.org/052hwbh23 Centerline Digital (United States)'), (64256, 'https://ror.org/052q1fv39', 'it', 1, 'https://ror.org/052q1fv39 Istituto Nazionale per le Ricerche Cardiovascolari'), (64257, 'https://ror.org/052s3m976', 'en', 1, 'https://ror.org/052s3m976 Neurosurgeons of New Jersey'), (64258, 'https://ror.org/052vdf235', 'en', 1, 'https://ror.org/052vdf235 Central Florida Neurosurgery Institute'), (64259, 'https://ror.org/052vnzp53', 'de', 1, 'https://ror.org/052vnzp53 Förderverein Hilfe bei Prostatakrebs'), (64260, 'https://ror.org/052w5jd94', 'en', 1, 'https://ror.org/052w5jd94 Microcirculatory Society'), (64261, 'https://ror.org/052w8rh87', 'no_lang_code', 1, 'https://ror.org/052w8rh87 Agunco'), (64262, 'https://ror.org/052ycjw90', 'en', 1, 'https://ror.org/052ycjw90 Corporation for Research and Educational Networking'), (64263, 'https://ror.org/052yr7741', 'no_lang_code', 1, 'https://ror.org/052yr7741 Azienda di Servizi alla Persona di Pavia (Italy)'), (64264, 'https://ror.org/052z1v370', 'en', 1, 'https://ror.org/052z1v370 Nebraska Cancer Specialists'), (64265, 'https://ror.org/052zacv77', 'pt', 1, 'https://ror.org/052zacv77 Hospital Regional Publico do Araguaia'), (64266, 'https://ror.org/0530nw968', 'en', 1, 'https://ror.org/0530nw968 The Prompt Institute'), (64267, 'https://ror.org/05319p535', 'no_lang_code', 1, 'https://ror.org/05319p535 SilverCloud (Ireland)'), (64268, 'https://ror.org/05321n235', 'nl', 1, 'https://ror.org/05321n235 Kenter Jeugdhulp'), (64269, 'https://ror.org/05340km55', 'no_lang_code', 1, 'https://ror.org/05340km55 Sterling International (United States)'), (64270, 'https://ror.org/05393h285', 'en', 1, 'https://ror.org/05393h285 Memorial Hermann Memorial City Medical Center'), (64271, 'https://ror.org/053a2h986', 'en', 1, 'https://ror.org/053a2h986 Saint Alphonsus Health System'), (64272, 'https://ror.org/053ad7843', 'nl', 1, 'https://ror.org/053ad7843 ZZG zorggroep'), (64273, 'https://ror.org/053ax5y02', 'no_lang_code', 1, 'https://ror.org/053ax5y02 Barry Callebaut (Belgium)'), (64274, 'https://ror.org/053dfbb70', 'en', 1, 'https://ror.org/053dfbb70 Immunology Research Institute in Gifu 岐阜县免疫学研究所'), (64275, 'https://ror.org/053gt7v47', 'en', 1, 'https://ror.org/053gt7v47 Association of Pediatric Program Directors'), (64276, 'https://ror.org/053gtbc96', 'no_lang_code', 1, 'https://ror.org/053gtbc96 QPS (United States)'), (64277, 'https://ror.org/053h97f78', 'no_lang_code', 1, 'https://ror.org/053h97f78 M’s Science Corporation (Japan)'), (64278, 'https://ror.org/053hn4213', 'en', 1, 'https://ror.org/053hn4213 North American Hair Research Society'), (64279, 'https://ror.org/053k58g56', 'de', 1, 'https://ror.org/053k58g56 Rückenzentrum am Michel'), (64280, 'https://ror.org/053kqnj57', 'no_lang_code', 1, 'https://ror.org/053kqnj57 SpringActive (United States)'), (64281, 'https://ror.org/053kvet57', 'en', 1, 'https://ror.org/053kvet57 Dolfinger-McMahon Foundation'), (64282, 'https://ror.org/053n8e896', 'pt', 1, 'https://ror.org/053n8e896 Instituto do Sono'), (64283, 'https://ror.org/053nf2720', 'no_lang_code', 1, 'https://ror.org/053nf2720 Inion (Finland)'), (64284, 'https://ror.org/053p3br36', 'no_lang_code', 1, 'https://ror.org/053p3br36 PharmaJet (United States)'), (64285, 'https://ror.org/053p3yh76', 'no_lang_code', 1, 'https://ror.org/053p3yh76 Walder Wyss (Switzerland)'), (64286, 'https://ror.org/053pqt666', 'en', 1, 'https://ror.org/053pqt666 Society for Modeling and Simulation International'), (64287, 'https://ror.org/053q96737', 'en', 1, 'https://ror.org/053q96737 International Renal Research Institute of Vicenza'), (64288, 'https://ror.org/053q9dm05', 'no_lang_code', 1, 'https://ror.org/053q9dm05 Progenitec (United States)'), (64289, 'https://ror.org/053qhtw56', 'no_lang_code', 1, 'https://ror.org/053qhtw56 Imam Hossein Hospital'), (64290, 'https://ror.org/053qwyf63', 'no_lang_code', 1, 'https://ror.org/053qwyf63 Japan Tobacco (United States)'), (64291, 'https://ror.org/053t8d971', 'en', 1, 'https://ror.org/053t8d971 Teaching Channel'), (64292, 'https://ror.org/053w4zz03', 'en', 1, 'https://ror.org/053w4zz03 Association for Academic Minority Physicians'), (64293, 'https://ror.org/053x0fn40', 'de', 1, 'https://ror.org/053x0fn40 IKK Classic'), (64294, 'https://ror.org/053xtf838', 'en', 1, 'https://ror.org/053xtf838 Mendocino Coast District Hospital'), (64295, 'https://ror.org/053y21h59', 'no_lang_code', 1, 'https://ror.org/053y21h59 Metcut Research (United States)'), (64296, 'https://ror.org/0540d1y92', 'nl', 1, 'https://ror.org/0540d1y92 AO Nederland'), (64297, 'https://ror.org/0540mv626', 'en', 1, 'https://ror.org/0540mv626 AHEC West'), (64298, 'https://ror.org/05415x202', 'en', 1, 'https://ror.org/05415x202 Caron'), (64299, 'https://ror.org/0541h6s03', 'es', 1, 'https://ror.org/0541h6s03 Fundación Universitaria Iberoamericana'), (64300, 'https://ror.org/0546e1p84', 'en', 1, 'https://ror.org/0546e1p84 Great Plains Regional Medical Center'), (64301, 'https://ror.org/0546j8a61', 'en', 1, 'https://ror.org/0546j8a61 Institute for Pulmonary Diseases of Vojvodina'), (64302, 'https://ror.org/0549yzf33', 'en', 1, 'https://ror.org/0549yzf33 Main Line Center for Laser Surgery'), (64303, 'https://ror.org/054a8d283', 'no_lang_code', 1, 'https://ror.org/054a8d283 Applied LifeSciences & Systems (United States)'), (64304, 'https://ror.org/054azm735', 'es', 1, 'https://ror.org/054azm735 Instituto de Oncología de Rosario'), (64305, 'https://ror.org/054bkqx30', 'pt', 1, 'https://ror.org/054bkqx30 Instituto de Terapia Integrada e Oriental'), (64306, 'https://ror.org/054c9y537', 'en', 1, 'https://ror.org/054c9y537 Bundeszentrale für Gesundheitliche Aufklärung Federal Centre for Health Education'), (64307, 'https://ror.org/054d83h93', 'nl', 1, 'https://ror.org/054d83h93 Cornelia-Stichting'), (64308, 'https://ror.org/054df3r05', 'no_lang_code', 1, 'https://ror.org/054df3r05 GlaxoSmithKline (Sweden)'), (64309, 'https://ror.org/054dhkd21', 'en', 1, 'https://ror.org/054dhkd21 Rheumatology Consultants'), (64310, 'https://ror.org/054dq1w53', 'en', 1, 'https://ror.org/054dq1w53 Sericulture and Agricultural Products Research Institute 广东省农业科学院蚕业与农产品加工研究所'), (64311, 'https://ror.org/054ey2125', 'de', 1, 'https://ror.org/054ey2125 Behandlungszentrum Aschau'), (64312, 'https://ror.org/054fev274', 'de', 1, 'https://ror.org/054fev274 Evangelisches Diakoniekrankenhaus'), (64313, 'https://ror.org/054gy5e97', 'en', 1, 'https://ror.org/054gy5e97 Agency for Integrated Care'), (64314, 'https://ror.org/054jcxz87', 'fr', 1, 'https://ror.org/054jcxz87 Groupe Hospitalier de la Région de Mulhouse et Sud Alsace'), (64315, 'https://ror.org/054jdkk48', 'en', 1, 'https://ror.org/054jdkk48 Hanoi Medical University Hospital'), (64316, 'https://ror.org/054khgx03', 'en', 1, 'https://ror.org/054khgx03 International Science and Technology Institute'), (64317, 'https://ror.org/054m0e665', 'en', 1, 'https://ror.org/054m0e665 Grupo Español de Investigación en Sarcomas Spanish Research Group on Sarcomas'), (64318, 'https://ror.org/054mtjm83', 'en', 1, 'https://ror.org/054mtjm83 NatureBridge'), (64319, 'https://ror.org/054p08670', 'en', 1, 'https://ror.org/054p08670 Regional Children''s Hospital No1'), (64320, 'https://ror.org/054q96n74', 'no_lang_code', 1, 'https://ror.org/054q96n74 AstraZeneca (Germany)'), (64321, 'https://ror.org/054rg6027', 'en', 1, 'https://ror.org/054rg6027 Port Kennedy Association'), (64322, 'https://ror.org/054svy457', 'no_lang_code', 1, 'https://ror.org/054svy457 SilverFit (Netherlands)'), (64323, 'https://ror.org/054vkyc79', 'de', 1, 'https://ror.org/054vkyc79 Evangelisches Krankenhaus Königin Elisabeth Herzberge'), (64324, 'https://ror.org/054wms778', 'fr', 1, 'https://ror.org/054wms778 Association pour l''Utilisation du Rein Artificiel'), (64325, 'https://ror.org/054zhk838', 'en', 1, 'https://ror.org/054zhk838 National Scientific Center "M.D. Strazhesko Institute of Cardiology" Національний науковий центр ''М.Д. Інститут кардіології ім. Стражеска'), (64326, 'https://ror.org/054zjpg49', 'no_lang_code', 1, 'https://ror.org/054zjpg49 OneVax (United States)'), (64327, 'https://ror.org/054zktz40', 'nl', 1, 'https://ror.org/054zktz40 TKI Treco'), (64328, 'https://ror.org/054zxwt86', 'de', 1, 'https://ror.org/054zxwt86 Evangelisches Krankenhaus Mettmann'), (64329, 'https://ror.org/0550wc655', 'en', 1, 'https://ror.org/0550wc655 Charles H. Hood Foundation'), (64330, 'https://ror.org/055273664', 'en', 1, 'https://ror.org/055273664 National Heart Institute'), (64331, 'https://ror.org/0552kvw18', 'en', 1, 'https://ror.org/0552kvw18 Australia New Zealand Gynaecological Oncology Group'), (64332, 'https://ror.org/05535a176', 'en', 1, 'https://ror.org/05535a176 Kaiser Permanente Orange County Irvine Medical Center'), (64333, 'https://ror.org/05540q762', 'en', 1, 'https://ror.org/05540q762 Northern Westchester Hospital'), (64334, 'https://ror.org/0555sjc23', 'no_lang_code', 1, 'https://ror.org/0555sjc23 Universal Dialog (United States)'), (64335, 'https://ror.org/0556qd820', 'en', 1, 'https://ror.org/0556qd820 Inland Empire Liver Foundation'), (64336, 'https://ror.org/0559vb332', 'en', 1, 'https://ror.org/0559vb332 D.A.V Centenary Dental College'), (64337, 'https://ror.org/055bjxf28', 'en', 1, 'https://ror.org/055bjxf28 Retina Clinic'), (64338, 'https://ror.org/055bwx684', 'en', 1, 'https://ror.org/055bwx684 Association for Utah Community Health'), (64339, 'https://ror.org/055cpj147', 'it', 1, 'https://ror.org/055cpj147 Centro Interuniversitario di Ricerca sui Peptidi Bioattivi'), (64340, 'https://ror.org/055g9vf08', 'en', 1, 'https://ror.org/055g9vf08 Human Development Research Foundation'), (64341, 'https://ror.org/055j6t743', 'en', 1, 'https://ror.org/055j6t743 Texas Institute of Dermatology Laser and Cosmetic Surgery'), (64342, 'https://ror.org/055jf3p69', 'de', 1, 'https://ror.org/055jf3p69 Wissenschaftliches Institut der AOK'), (64343, 'https://ror.org/055kjct22', 'en', 1, 'https://ror.org/055kjct22 Asante Three Rivers Medical Center'), (64344, 'https://ror.org/055kp8612', 'no_lang_code', 1, 'https://ror.org/055kp8612 Libbs (Brazil)'), (64345, 'https://ror.org/055kyaa64', 'de', 1, 'https://ror.org/055kyaa64 Rheinhessen-Fachklinik Mainz'), (64346, 'https://ror.org/055m95h02', 'en', 1, 'https://ror.org/055m95h02 Werlhof Institute'), (64347, 'https://ror.org/055papc77', 'en', 1, 'https://ror.org/055papc77 Tennessee Retina'), (64348, 'https://ror.org/055rf7657', 'no_lang_code', 1, 'https://ror.org/055rf7657 Roche (Sweden)'), (64349, 'https://ror.org/055ryq086', 'no_lang_code', 1, 'https://ror.org/055ryq086 TRC Companies (United States)'), (64350, 'https://ror.org/055tk9p53', 'de', 1, 'https://ror.org/055tk9p53 Asklepios'), (64351, 'https://ror.org/055tmjh12', 'en', 1, 'https://ror.org/055tmjh12 Asthma Association Асоциация Астма'), (64352, 'https://ror.org/055tvcv06', 'en', 1, 'https://ror.org/055tvcv06 Four Corners School of Outdoor Education'), (64353, 'https://ror.org/055vbz424', 'no_lang_code', 1, 'https://ror.org/055vbz424 Score (Netherlands)'), (64354, 'https://ror.org/055vkj473', 'no_lang_code', 1, 'https://ror.org/055vkj473 Cox Enterprises (United States)'), (64355, 'https://ror.org/055w00q26', 'de', 1, 'https://ror.org/055w00q26 Parkinson-Klinik Ortenau'), (64356, 'https://ror.org/055x1zb82', 'no_lang_code', 1, 'https://ror.org/055x1zb82 Osypka (Germany)'), (64357, 'https://ror.org/055zj4e19', 'en', 1, 'https://ror.org/055zj4e19 Centra Health'), (64358, 'https://ror.org/0560yf995', 'en', 1, 'https://ror.org/0560yf995 Feminist Majority Foundation'), (64359, 'https://ror.org/0561hjj97', 'en', 1, 'https://ror.org/0561hjj97 Milwaukee Health Department'), (64360, 'https://ror.org/0562b6777', 'en', 1, 'https://ror.org/0562b6777 Center for World Indigenous Studies'), (64361, 'https://ror.org/0564c7p76', 'nl', 1, 'https://ror.org/0564c7p76 Verslavingszorg Noord Nederland'), (64362, 'https://ror.org/0566emh82', 'en', 1, 'https://ror.org/0566emh82 KKT Orthopedic Spine Center'), (64363, 'https://ror.org/0567gec15', 'en', 1, 'https://ror.org/0567gec15 The Memory Clinic'), (64364, 'https://ror.org/056bmw021', 'hr', 1, 'https://ror.org/056bmw021 Opća Bolnica Varaždin'), (64365, 'https://ror.org/056efxn58', 'de', 1, 'https://ror.org/056efxn58 Klinik und Poliklinik für Urologie, Kinderurologie und Andrologie'), (64366, 'https://ror.org/056gvz809', 'de', 1, 'https://ror.org/056gvz809 Klinik und Poliklinik für Augenheilkunde am Universitätsklinikum Carl Gustav Carus'), (64367, 'https://ror.org/056ha9e61', 'de', 1, 'https://ror.org/056ha9e61 Urologische Klinik München'), (64368, 'https://ror.org/056jbdt18', 'no_lang_code', 1, 'https://ror.org/056jbdt18 Yakult (Netherlands)'), (64369, 'https://ror.org/056jvp908', 'en', 1, 'https://ror.org/056jvp908 Nebraska Independent College Foundation'), (64370, 'https://ror.org/056npsb07', 'en', 1, 'https://ror.org/056npsb07 Union City Public Schools'), (64371, 'https://ror.org/056p0fy66', 'no_lang_code', 1, 'https://ror.org/056p0fy66 Daval International (United Kingdom)'), (64372, 'https://ror.org/056pp8v93', 'en', 1, 'https://ror.org/056pp8v93 Monadnock Community Hospital'), (64373, 'https://ror.org/056tvxc50', 'en', 1, 'https://ror.org/056tvxc50 Baptist Health Paducah'), (64374, 'https://ror.org/056v13058', 'nl', 1, 'https://ror.org/056v13058 Fonds Verstandelijk Gehandicapten'), (64375, 'https://ror.org/056v2vw30', 'en', 1, 'https://ror.org/056v2vw30 The Orthopaedic Institute'), (64376, 'https://ror.org/056vah748', 'nl', 1, 'https://ror.org/056vah748 Federatie Medisch Specialisten'), (64377, 'https://ror.org/056w6an22', 'en', 1, 'https://ror.org/056w6an22 North Carolina Department of Administration'), (64378, 'https://ror.org/056xgt572', 'en', 1, 'https://ror.org/056xgt572 Colorado Springs Osteopathic Foundation'), (64379, 'https://ror.org/056xm2x07', 'ro', 1, 'https://ror.org/056xm2x07 Spitalul Clinic Judetean de Urgenta Sibiu'), (64380, 'https://ror.org/056y4sn81', 'de', 1, 'https://ror.org/056y4sn81 Evangelisches Krankenhaus Göttingen-Weende'), (64381, 'https://ror.org/05712eb04', 'en', 1, 'https://ror.org/05712eb04 Pacific Sociological Association'), (64382, 'https://ror.org/05724sa39', 'en', 1, 'https://ror.org/05724sa39 Fondation Sandra Schmirler Sandra Schmirler Foundation'), (64383, 'https://ror.org/0572qg377', 'en', 1, 'https://ror.org/0572qg377 Associated Neurologists of Southern Connecticut'), (64384, 'https://ror.org/057484769', 'no_lang_code', 1, 'https://ror.org/057484769 Fine Treatment (United Kingdom)'), (64385, 'https://ror.org/0575y1m09', 'es', 1, 'https://ror.org/0575y1m09 Instituto de Salud Musculoesquelética'), (64386, 'https://ror.org/057601z40', 'en', 1, 'https://ror.org/057601z40 Tidelands Health'), (64387, 'https://ror.org/0576xfs30', 'en', 1, 'https://ror.org/0576xfs30 Behman Hospital'), (64388, 'https://ror.org/057889117', 'de', 1, 'https://ror.org/057889117 Investitionsbank Sachsen-Anhalt'); INSERT INTO `rors` VALUES (64389, 'https://ror.org/0579h7m09', 'no_lang_code', 1, 'https://ror.org/0579h7m09 Creative Research Enterprises (United States)'), (64390, 'https://ror.org/057a13j38', 'nl', 1, 'https://ror.org/057a13j38 Mediant Geestelijke Gezondheidszorg'), (64391, 'https://ror.org/057b57860', 'en', 1, 'https://ror.org/057b57860 Dattoli Cancer Center and Brachytherapy Research Institute'), (64392, 'https://ror.org/057bhmh42', 'en', 1, 'https://ror.org/057bhmh42 Second Affiliated Hospital of Shandong University of TCM 山东中医药大学附属第二医院'), (64393, 'https://ror.org/057c4v611', 'en', 1, 'https://ror.org/057c4v611 International Brain Research Foundation'), (64394, 'https://ror.org/057e5kw77', 'en', 1, 'https://ror.org/057e5kw77 American Academy of Osteopathy'), (64395, 'https://ror.org/057hhh802', 'de', 1, 'https://ror.org/057hhh802 Verband Deutscher Mineralbrunnen'), (64396, 'https://ror.org/057hq8k55', 'en', 1, 'https://ror.org/057hq8k55 Texas Society of Allied Health Professions'), (64397, 'https://ror.org/057hv3t60', 'en', 1, 'https://ror.org/057hv3t60 Arkansas Children’s Foundation'), (64398, 'https://ror.org/057j2mw04', 'no_lang_code', 1, 'https://ror.org/057j2mw04 NanoHybrids (United States)'), (64399, 'https://ror.org/057kxm327', 'fr', 1, 'https://ror.org/057kxm327 Société Francophone d’Arthroscopie'), (64400, 'https://ror.org/057kybq87', 'en', 1, 'https://ror.org/057kybq87 Bridgewater Community Healthcare NHS Foundation Trust'), (64401, 'https://ror.org/057kz9b56', 'en', 1, 'https://ror.org/057kz9b56 Southern Oncology Specialists'), (64402, 'https://ror.org/057q38q18', 'en', 1, 'https://ror.org/057q38q18 Aurora BayCare Medical Center'), (64403, 'https://ror.org/057qnv003', 'en', 1, 'https://ror.org/057qnv003 Gaston Hematology & Oncology Associates'), (64404, 'https://ror.org/057r0z941', 'nl', 1, 'https://ror.org/057r0z941 Praktijkondersteuning Zuidoost-Brabant'), (64405, 'https://ror.org/057r18x87', 'no_lang_code', 1, 'https://ror.org/057r18x87 All Sum Research Center (Canada)'), (64406, 'https://ror.org/057s1m822', 'en', 1, 'https://ror.org/057s1m822 Florida Department of Citrus'), (64407, 'https://ror.org/057sba841', 'en', 1, 'https://ror.org/057sba841 Keloid Research Foundation'), (64408, 'https://ror.org/057schw20', 'de', 1, 'https://ror.org/057schw20 Schön Klinik Berchtesgadener Land'), (64409, 'https://ror.org/057w77e54', 'no_lang_code', 1, 'https://ror.org/057w77e54 Leo Pharma (United States)'), (64410, 'https://ror.org/057ybbc09', 'no_lang_code', 1, 'https://ror.org/057ybbc09 N. V. Pharma (India)'), (64411, 'https://ror.org/0580n4369', 'en', 1, 'https://ror.org/0580n4369 Minnesota Science Teachers Association'), (64412, 'https://ror.org/058196w54', 'en', 1, 'https://ror.org/058196w54 Carolina Urology Partners'), (64413, 'https://ror.org/0581as286', 'en', 1, 'https://ror.org/0581as286 Square Hospitals'), (64414, 'https://ror.org/0581hjr43', 'en', 1, 'https://ror.org/0581hjr43 Bendigo Hospital'), (64415, 'https://ror.org/0582awy59', 'en', 1, 'https://ror.org/0582awy59 Sparrow Thoracic Cardiovascular Institute'), (64416, 'https://ror.org/05841h928', 'en', 1, 'https://ror.org/05841h928 North Central London Research Consortium'), (64417, 'https://ror.org/0584knp84', 'no_lang_code', 1, 'https://ror.org/0584knp84 Nucleix (Israel)'), (64418, 'https://ror.org/0585bbm72', 'en', 1, 'https://ror.org/0585bbm72 Clinical Infectious Disease Hospital named after S.P. Botkin Клиническая инфекционная больница имени С. П. Боткина'), (64419, 'https://ror.org/0585r9546', 'en', 1, 'https://ror.org/0585r9546 Farr Institute'), (64420, 'https://ror.org/05887gz78', 'lt', 1, 'https://ror.org/05887gz78 Centro poliklinika'), (64421, 'https://ror.org/058ab9q40', 'en', 1, 'https://ror.org/058ab9q40 The Lynn Sage Foundation'), (64422, 'https://ror.org/058avwz62', 'en', 1, 'https://ror.org/058avwz62 CanRevive'), (64423, 'https://ror.org/058fx5466', 'en', 1, 'https://ror.org/058fx5466 University Radiology'), (64424, 'https://ror.org/058g4tt51', 'da', 1, 'https://ror.org/058g4tt51 Edgar Schnohr og hustru Gilberte Schnohr''s Fond'), (64425, 'https://ror.org/058g8jq83', 'no_lang_code', 1, 'https://ror.org/058g8jq83 Sanofi (Brazil)'), (64426, 'https://ror.org/058ma0d84', 'en', 1, 'https://ror.org/058ma0d84 Töölö Hospital'), (64427, 'https://ror.org/058n6ep94', 'de', 1, 'https://ror.org/058n6ep94 Bethlehem Gesundheitszentrum Stolberg'), (64428, 'https://ror.org/058nqnd90', 'en', 1, 'https://ror.org/058nqnd90 Japanese Society of CT Screening 日本CT検診学会'), (64429, 'https://ror.org/058q6bh20', 'en', 1, 'https://ror.org/058q6bh20 Sheridan Memorial Hospital'), (64430, 'https://ror.org/058rwr454', 'en', 1, 'https://ror.org/058rwr454 University of Ottawa Skills and Simulation Centre'), (64431, 'https://ror.org/058s7pp59', 'en', 1, 'https://ror.org/058s7pp59 Northcentral Arkansas Education Cooperative'), (64432, 'https://ror.org/058tkvp17', 'en', 1, 'https://ror.org/058tkvp17 University Resident Theatre Association'), (64433, 'https://ror.org/058wnr349', 'no_lang_code', 1, 'https://ror.org/058wnr349 Cardialysis (Netherlands)'), (64434, 'https://ror.org/058wr8j84', 'en', 1, 'https://ror.org/058wr8j84 China Academy of Fiscal Science 中国财政科学研究院'), (64435, 'https://ror.org/058x0nn53', 'nl', 1, 'https://ror.org/058x0nn53 Centrum Oosterwal'), (64436, 'https://ror.org/058x4qg04', 'en', 1, 'https://ror.org/058x4qg04 A Step Ahead Foundation'), (64437, 'https://ror.org/058yj6h98', 'en', 1, 'https://ror.org/058yj6h98 Respiratory Clinical Trials'), (64438, 'https://ror.org/05901gg63', 'en', 1, 'https://ror.org/05901gg63 Chemical Industry Press 化学工业出版社'), (64439, 'https://ror.org/05908bk79', 'en', 1, 'https://ror.org/05908bk79 Cancer Center of Western Wisconsin'), (64440, 'https://ror.org/0590c4t82', 'en', 1, 'https://ror.org/0590c4t82 Academic Research in Complementary and Integrative Medicine'), (64441, 'https://ror.org/0590fg074', 'en', 1, 'https://ror.org/0590fg074 Environmental Health'), (64442, 'https://ror.org/059151f39', 'pl', 1, 'https://ror.org/059151f39 Samodzielny Publiczny Szpital Kliniczny im. prof. W. Orłowskiego CMKP'), (64443, 'https://ror.org/05916vc09', 'no_lang_code', 1, 'https://ror.org/05916vc09 DMG (Germany)'), (64444, 'https://ror.org/0592a5f63', 'en', 1, 'https://ror.org/0592a5f63 Foundation for Spinal Cord Research Moelle Epinière et Motricité Québec'), (64445, 'https://ror.org/05955c602', 'de', 1, 'https://ror.org/05955c602 Hausärzteverband Sachsen-Anhalt'), (64446, 'https://ror.org/0595wzt18', 'en', 1, 'https://ror.org/0595wzt18 Guangdong 999 Brain Hospital 广东999脑科医院'), (64447, 'https://ror.org/05980vk77', 'en', 1, 'https://ror.org/05980vk77 Hernando Eye Institute'), (64448, 'https://ror.org/05988vk42', 'en', 1, 'https://ror.org/05988vk42 Korean Society of Coloproctology 대한대장항문학회'), (64449, 'https://ror.org/0598b8w92', 'nl', 1, 'https://ror.org/0598b8w92 Nederlandse Vereniging voor Hepatologie'), (64450, 'https://ror.org/0598gge11', 'en', 1, 'https://ror.org/0598gge11 Ridgewater College'), (64451, 'https://ror.org/059ape351', 'no_lang_code', 1, 'https://ror.org/059ape351 CCM Clinical Research Group (United States)'), (64452, 'https://ror.org/059b2sn04', 'no_lang_code', 1, 'https://ror.org/059b2sn04 Guangdong Inspection and Quarantine Technology Center (China)'), (64453, 'https://ror.org/059gavv29', 'nl', 1, 'https://ror.org/059gavv29 Rijnlands Revalidatie Centrum'), (64454, 'https://ror.org/059gjhp96', 'no_lang_code', 1, 'https://ror.org/059gjhp96 Adtec Plasma Technology (United Kingdom)'), (64455, 'https://ror.org/059gs6g36', 'en', 1, 'https://ror.org/059gs6g36 KSYOS TeleMedical Centre KSYOS TeleMedisch Centrum'), (64456, 'https://ror.org/059hprj06', 'es', 1, 'https://ror.org/059hprj06 Hospital Recoletas Campo Grande'), (64457, 'https://ror.org/059hsbq74', 'en', 1, 'https://ror.org/059hsbq74 Dearborn-Sah Institute For Joint Restoration'), (64458, 'https://ror.org/059j7sj66', 'no_lang_code', 1, 'https://ror.org/059j7sj66 Wockhardt (United States)'), (64459, 'https://ror.org/059rgaq66', 'sv', 1, 'https://ror.org/059rgaq66 Fertilitetscentrum'), (64460, 'https://ror.org/059rjv992', 'no_lang_code', 1, 'https://ror.org/059rjv992 EarlySense (Israel)'), (64461, 'https://ror.org/059vcy092', 'en', 1, 'https://ror.org/059vcy092 State Autonomous Institution of Health Interregional Clinical Diagnostic Center Политика конфиденциальности персональных данных сайта'), (64462, 'https://ror.org/059w81j32', 'en', 1, 'https://ror.org/059w81j32 Olathe Medical Center'), (64463, 'https://ror.org/05a3a1625', 'en', 1, 'https://ror.org/05a3a1625 Professional Footballers'' Association'), (64464, 'https://ror.org/05a3ksk07', 'en', 1, 'https://ror.org/05a3ksk07 GVK Emergency Management and Research Institute'), (64465, 'https://ror.org/05a4m8k76', 'es', 1, 'https://ror.org/05a4m8k76 Hospital de Especialidades José Carrasco Arteaga'), (64466, 'https://ror.org/05a4nj078', 'en', 1, 'https://ror.org/05a4nj078 Centro Común de Investigación Joint Research Center'), (64467, 'https://ror.org/05a55tn50', 'en', 1, 'https://ror.org/05a55tn50 Forbes Hospital'), (64468, 'https://ror.org/05a76fs70', 'en', 1, 'https://ror.org/05a76fs70 Sentara Virginia Beach General Hospital'), (64469, 'https://ror.org/05a8epj20', 'en', 1, 'https://ror.org/05a8epj20 Pension Fund for Care and Well-Being Stichting Pensioenfonds Zorg en Welzijn'), (64470, 'https://ror.org/05a90wj20', 'en', 1, 'https://ror.org/05a90wj20 Girl Scouts of NE Kansas and NW Missouri'), (64471, 'https://ror.org/05a92a023', 'en', 1, 'https://ror.org/05a92a023 Institut für Materialprüfung und Werkstofftechnik Institute for Materials Testing and Materials Technology Dr. Neubert'), (64472, 'https://ror.org/05a9k3463', 'en', 1, 'https://ror.org/05a9k3463 Kaiser Permanente Franklin Medical Offices'), (64473, 'https://ror.org/05a9rbd10', 'en', 1, 'https://ror.org/05a9rbd10 Sage Bariatric Institute'), (64474, 'https://ror.org/05aaaax52', 'en', 1, 'https://ror.org/05aaaax52 Alana''s Foundation'), (64475, 'https://ror.org/05aatnq11', 'en', 1, 'https://ror.org/05aatnq11 Respiratory and Meningeal Pathogens Research Unit'), (64476, 'https://ror.org/05abb3j67', 'en', 1, 'https://ror.org/05abb3j67 Croatian Society of Regional Anaesthesia and Analgesia Hrvatsko društvo regionalne anestezije i analgezije'), (64477, 'https://ror.org/05abkk781', 'en', 1, 'https://ror.org/05abkk781 Universities Scotland'), (64478, 'https://ror.org/05acg0e96', 'no_lang_code', 1, 'https://ror.org/05acg0e96 High Speed Sustainable Manufacturing Institute (United Kingdom)'), (64479, 'https://ror.org/05agddf32', 'de', 1, 'https://ror.org/05agddf32 MVZ - Kurfürstendamm'), (64480, 'https://ror.org/05akv3y05', 'en', 1, 'https://ror.org/05akv3y05 National Association of Conservation Districts'), (64481, 'https://ror.org/05am1q986', 'en', 1, 'https://ror.org/05am1q986 Pharmalog (Germany)'), (64482, 'https://ror.org/05am7x020', 'id', 1, 'https://ror.org/05am7x020 Dr. National Center General Hospital Cipto Mangunkusumo Rumah Sakit Umum Pusat Nasional Dr. Cipto Mangunkusumo'), (64483, 'https://ror.org/05amk1r13', 'en', 1, 'https://ror.org/05amk1r13 Children''s City Clinical Hospital №11'), (64484, 'https://ror.org/05ane1z80', 'en', 1, 'https://ror.org/05ane1z80 Sheth M. L. Vaduwala Charitable Eye Hospital and Dr. Thakorbhai V. Patel Eye Institute'), (64485, 'https://ror.org/05apf4k11', 'en', 1, 'https://ror.org/05apf4k11 Myanmar Liver Foundation'), (64486, 'https://ror.org/05aqc8c91', 'de', 1, 'https://ror.org/05aqc8c91 Gelenkpunkt'), (64487, 'https://ror.org/05arjk578', 'en', 1, 'https://ror.org/05arjk578 Trinity Health'), (64488, 'https://ror.org/05at6ra83', 'en', 1, 'https://ror.org/05at6ra83 Orange Regional Medical Center'), (64489, 'https://ror.org/05at6sw30', 'es', 1, 'https://ror.org/05at6sw30 Hospital Universitario Infantil San José University Children''s Hospital of San José'), (64490, 'https://ror.org/05atcw115', 'no_lang_code', 1, 'https://ror.org/05atcw115 GlaxoSmithKline (Netherlands)'), (64491, 'https://ror.org/05avj5s69', 'en', 1, 'https://ror.org/05avj5s69 Shenzhen Genoimmune Medical Institute'), (64492, 'https://ror.org/05aznfd39', 'en', 1, 'https://ror.org/05aznfd39 Network of European Foundations'), (64493, 'https://ror.org/05b0t4w03', 'en', 1, 'https://ror.org/05b0t4w03 Association of Microfinance Institutions in Rwanda'), (64494, 'https://ror.org/05b1whg73', 'en', 1, 'https://ror.org/05b1whg73 OSF St. Joseph Medical Center'), (64495, 'https://ror.org/05b58s093', 'no_lang_code', 1, 'https://ror.org/05b58s093 Pentracor (Germany)'), (64496, 'https://ror.org/05b6jwz86', 'no_lang_code', 1, 'https://ror.org/05b6jwz86 World of Medicine (Germany)'), (64497, 'https://ror.org/05b7by496', 'en', 1, 'https://ror.org/05b7by496 International Neuromodulation Society'), (64498, 'https://ror.org/05b8d3v21', 'en', 1, 'https://ror.org/05b8d3v21 Antalya IVF'), (64499, 'https://ror.org/05b9hfy12', 'en', 1, 'https://ror.org/05b9hfy12 Lifecenter Hospital'), (64500, 'https://ror.org/05baejf18', 'no_lang_code', 1, 'https://ror.org/05baejf18 PhylloTech (United States)'), (64501, 'https://ror.org/05be8g764', 'en', 1, 'https://ror.org/05be8g764 Public Responsibility in Medicine and Research'), (64502, 'https://ror.org/05beaz940', 'nl', 1, 'https://ror.org/05beaz940 Vereniging van Zorgaanbieders voor Zorgcommunicatie'), (64503, 'https://ror.org/05bfdfr32', 'en', 1, 'https://ror.org/05bfdfr32 Anoka-Hennepin School District'), (64504, 'https://ror.org/05bgdck98', 'pt', 1, 'https://ror.org/05bgdck98 Instituto Nefrológico de Campinas'), (64505, 'https://ror.org/05bgwpv79', 'no_lang_code', 1, 'https://ror.org/05bgwpv79 Bioenergy Life Science (United States)'), (64506, 'https://ror.org/05bmt9g57', 'no_lang_code', 1, 'https://ror.org/05bmt9g57 Hero Benelux (Netherlands)'), (64507, 'https://ror.org/05bn46e89', 'en', 1, 'https://ror.org/05bn46e89 Emory University Orthopaedics and Spine Hospital'), (64508, 'https://ror.org/05bp5yn81', 'en', 1, 'https://ror.org/05bp5yn81 Fiber Optic Association'), (64509, 'https://ror.org/05bq6d892', 'en', 1, 'https://ror.org/05bq6d892 Pamoja Tunaweza Women''s Centre'), (64510, 'https://ror.org/05bt97174', 'no_lang_code', 1, 'https://ror.org/05bt97174 enEvolv (United States)'), (64511, 'https://ror.org/05btveq09', 'de', 1, 'https://ror.org/05btveq09 SLK-Kliniken Heilbronn'), (64512, 'https://ror.org/05bvayz93', 'no_lang_code', 1, 'https://ror.org/05bvayz93 Muhimbili Orthopaedic Institute'), (64513, 'https://ror.org/05bw8dc26', 'en', 1, 'https://ror.org/05bw8dc26 Newfound Harbor Marine Institute'), (64514, 'https://ror.org/05bzbnj80', 'no_lang_code', 1, 'https://ror.org/05bzbnj80 Bifodan (Denmark)'), (64515, 'https://ror.org/05c06xk76', 'de', 1, 'https://ror.org/05c06xk76 Universitätsklinik für Stereotaktische Neurochirurgie'), (64516, 'https://ror.org/05c1xy536', 'en', 1, 'https://ror.org/05c1xy536 Arizona Oncology'), (64517, 'https://ror.org/05c25gm39', 'es', 1, 'https://ror.org/05c25gm39 Cardiovascular Institute of Rosario Instituto Cardiovascular de Rosario'), (64518, 'https://ror.org/05c3kx226', 'en', 1, 'https://ror.org/05c3kx226 First Alaskans Institute'), (64519, 'https://ror.org/05c3qep79', 'no_lang_code', 1, 'https://ror.org/05c3qep79 C-RAD (Sweden)'), (64520, 'https://ror.org/05c4jjy50', 'en', 1, 'https://ror.org/05c4jjy50 Medica Foundation'), (64521, 'https://ror.org/05c9r4685', 'en', 1, 'https://ror.org/05c9r4685 Dignity Health'), (64522, 'https://ror.org/05c9swc26', 'en', 1, 'https://ror.org/05c9swc26 Museum of New Zealand Te Papa Tongarewa'), (64523, 'https://ror.org/05cb6kb05', 'en', 1, 'https://ror.org/05cb6kb05 Penn Highlands DuBois'), (64524, 'https://ror.org/05cbe5r14', 'de', 1, 'https://ror.org/05cbe5r14 Zentrum für Psychiatrie Emmendingen'), (64525, 'https://ror.org/05cc53v60', 'de', 1, 'https://ror.org/05cc53v60 Fachverband SAPV Hessen'), (64526, 'https://ror.org/05ccbwp98', 'en', 1, 'https://ror.org/05ccbwp98 Premier Clinical Research Institute'), (64527, 'https://ror.org/05cdyhf91', 'en', 1, 'https://ror.org/05cdyhf91 Universiteit van Aruba University of Aruba'), (64528, 'https://ror.org/05ceh6345', 'no_lang_code', 1, 'https://ror.org/05ceh6345 Dukat (Croatia)'), (64529, 'https://ror.org/05cej7184', 'nl', 1, 'https://ror.org/05cej7184 SIDN Fonds'), (64530, 'https://ror.org/05cfhyk75', 'en', 1, 'https://ror.org/05cfhyk75 Neys-van Hoogstraten Foundation'), (64531, 'https://ror.org/05cga6x45', 'en', 1, 'https://ror.org/05cga6x45 Sports Surgery Clinic'), (64532, 'https://ror.org/05ch34p88', 'de', 1, 'https://ror.org/05ch34p88 Neurologisches Rehabilitationszentrum Leipzig'), (64533, 'https://ror.org/05cj0xg89', 'de', 1, 'https://ror.org/05cj0xg89 Akademie Für Osteopathie'), (64534, 'https://ror.org/05ctk4y92', 'en', 1, 'https://ror.org/05ctk4y92 William W Backus Hospital'), (64535, 'https://ror.org/05cvcn611', 'fr', 1, 'https://ror.org/05cvcn611 Clinique du Grand Large'), (64536, 'https://ror.org/05cvd1d02', 'no_lang_code', 1, 'https://ror.org/05cvd1d02 Diamed Medizintechnik (Germany)'), (64537, 'https://ror.org/05cven481', 'en', 1, 'https://ror.org/05cven481 UK Thalassaemia Society'), (64538, 'https://ror.org/05cxhm587', 'en', 1, 'https://ror.org/05cxhm587 Channel Islands Marine & Wildlife Institute'), (64539, 'https://ror.org/05cygvk74', 'en', 1, 'https://ror.org/05cygvk74 Pactive Motion'), (64540, 'https://ror.org/05czd8n07', 'en', 1, 'https://ror.org/05czd8n07 Illinois Retina Associates'), (64541, 'https://ror.org/05d0e9y67', 'no_lang_code', 1, 'https://ror.org/05d0e9y67 Eli Lilly (Italy)'), (64542, 'https://ror.org/05d0mtf30', 'en', 1, 'https://ror.org/05d0mtf30 Ministry of Public Health'), (64543, 'https://ror.org/05d0y1j25', 'en', 1, 'https://ror.org/05d0y1j25 Hubei Provincial Hospital of Integrative Medicine'), (64544, 'https://ror.org/05d14ax96', 'no_lang_code', 1, 'https://ror.org/05d14ax96 Gilead Sciences (France)'), (64545, 'https://ror.org/05d2j9p36', 'en', 1, 'https://ror.org/05d2j9p36 Texas Life Science Foundation'), (64546, 'https://ror.org/05d3c1829', 'no_lang_code', 1, 'https://ror.org/05d3c1829 Pfizer (India)'), (64547, 'https://ror.org/05d3qwz48', 'no_lang_code', 1, 'https://ror.org/05d3qwz48 Honey & Fox (Australia)'), (64548, 'https://ror.org/05d4yeg66', 'de', 1, 'https://ror.org/05d4yeg66 Ria & Arthur Dietschweiler Stiftung'), (64549, 'https://ror.org/05d585f89', 'en', 1, 'https://ror.org/05d585f89 Mahesh Bhattacharyya Homeopathic Medical College and Hospital'), (64550, 'https://ror.org/05d63m431', 'en', 1, 'https://ror.org/05d63m431 Carbohydrate Competence Center'), (64551, 'https://ror.org/05d788x61', 'en', 1, 'https://ror.org/05d788x61 Redmond Fire Department'), (64552, 'https://ror.org/05d7dmk69', 'en', 1, 'https://ror.org/05d7dmk69 ProHealth Care'), (64553, 'https://ror.org/05d854h51', 'en', 1, 'https://ror.org/05d854h51 Institut für Diabetes "Gerhardt Katsch" Karlsburg Institute for Diabetes Gerhardt Katsch'), (64554, 'https://ror.org/05d85fb80', 'en', 1, 'https://ror.org/05d85fb80 Hong Kong Island Women''s Association 香 港 島 婦 女 聯 會'), (64555, 'https://ror.org/05dc02738', 'en', 1, 'https://ror.org/05dc02738 International Society for Cellular Therapy'), (64556, 'https://ror.org/05dcdha72', 'en', 1, 'https://ror.org/05dcdha72 Canton-Potsdam Hospital'), (64557, 'https://ror.org/05dd14b17', 'no_lang_code', 1, 'https://ror.org/05dd14b17 Ketron Optimization (United States)'), (64558, 'https://ror.org/05dd2e480', 'en', 1, 'https://ror.org/05dd2e480 JEM Research Institute'), (64559, 'https://ror.org/05dd4dx68', 'es', 1, 'https://ror.org/05dd4dx68 Institute of Hematology and Immunology Instituto de Hematología e Inmunología'), (64560, 'https://ror.org/05dh8ar36', 'no_lang_code', 1, 'https://ror.org/05dh8ar36 Gilead Sciences (Germany)'), (64561, 'https://ror.org/05dhprc49', 'en', 1, 'https://ror.org/05dhprc49 Afeka College of Engineering אפקה - המכללה האקדמית להנדסה בתל אביב'), (64562, 'https://ror.org/05dp34n52', 'es', 1, 'https://ror.org/05dp34n52 Asociación Argentina de Tenis'), (64563, 'https://ror.org/05ds5vg25', 'hr', 1, 'https://ror.org/05ds5vg25 Opća Bolnica Zadar'), (64564, 'https://ror.org/05dshav68', 'en', 1, 'https://ror.org/05dshav68 Providence Regional Medical Center Everett'), (64565, 'https://ror.org/05dsxqn95', 'en', 1, 'https://ror.org/05dsxqn95 ELEPAP-Rehabilitation for The Disabled Ελληνική Εταιρία Προστασίας & Αποκαταστάσεως Αναπήρων Προσώπων-ΕΛΕΠΑΠ'), (64566, 'https://ror.org/05dtj8q67', 'en', 1, 'https://ror.org/05dtj8q67 Obesity Medicine Association'), (64567, 'https://ror.org/05dw0jd27', 'no_lang_code', 1, 'https://ror.org/05dw0jd27 Xendo (Netherlands)'), (64568, 'https://ror.org/05dweaz25', 'en', 1, 'https://ror.org/05dweaz25 Vision Education and Media'), (64569, 'https://ror.org/05dwehn62', 'no_lang_code', 1, 'https://ror.org/05dwehn62 Physiol (Belgium)'), (64570, 'https://ror.org/05dx5b564', 'de', 1, 'https://ror.org/05dx5b564 Immanuel Klinikum Bernau'), (64571, 'https://ror.org/05dyf1y62', 'no_lang_code', 1, 'https://ror.org/05dyf1y62 Byrraju Foundation'), (64572, 'https://ror.org/05dyfnr03', 'de', 1, 'https://ror.org/05dyfnr03 Park-Klinik Birkenwerder'), (64573, 'https://ror.org/05dyssa78', 'no_lang_code', 1, 'https://ror.org/05dyssa78 Provascular (Germany)'), (64574, 'https://ror.org/05e0am895', 'en', 1, 'https://ror.org/05e0am895 Mobile Area Education Foundation'), (64575, 'https://ror.org/05e2s1y16', 'no_lang_code', 1, 'https://ror.org/05e2s1y16 AngioDynamics (Netherlands)'), (64576, 'https://ror.org/05e2tvq95', 'en', 1, 'https://ror.org/05e2tvq95 Defense Contract Management Agency'), (64577, 'https://ror.org/05e9aes39', 'en', 1, 'https://ror.org/05e9aes39 Chelyabinsk Regional Clinical Oncology Center Челябинский областной клинический онкологический диспансер'), (64578, 'https://ror.org/05ea7a262', 'en', 1, 'https://ror.org/05ea7a262 Eat2Move'), (64579, 'https://ror.org/05ek56k41', 'en', 1, 'https://ror.org/05ek56k41 Kaiser Permanente Capitol Hill Medical Center'), (64580, 'https://ror.org/05ekyck71', 'no_lang_code', 1, 'https://ror.org/05ekyck71 KelaHealth (United States)'), (64581, 'https://ror.org/05enva623', 'en', 1, 'https://ror.org/05enva623 Stark Education Partnership'), (64582, 'https://ror.org/05ep1jp78', 'no_lang_code', 1, 'https://ror.org/05ep1jp78 SGS (Belgium)'), (64583, 'https://ror.org/05epcyx33', 'en', 1, 'https://ror.org/05epcyx33 Foundation for Education and Musculoskeletal Research'), (64584, 'https://ror.org/05epfm497', 'en', 1, 'https://ror.org/05epfm497 Hautok + Hautok Cosmetics'), (64585, 'https://ror.org/05eqpm581', 'no_lang_code', 1, 'https://ror.org/05eqpm581 LINK (Netherlands)'), (64586, 'https://ror.org/05evjvn31', 'en', 1, 'https://ror.org/05evjvn31 Bon Secours Liver Institute of Hampton Roads'), (64587, 'https://ror.org/05f0cz467', 'de', 1, 'https://ror.org/05f0cz467 Garmisch-Partenkirchen Medical Center, Klinikum Garmisch-Partenkirchen'), (64588, 'https://ror.org/05f1hc953', 'en', 1, 'https://ror.org/05f1hc953 Parkland Health Center'), (64589, 'https://ror.org/05f1s6j82', 'en', 1, 'https://ror.org/05f1s6j82 Association for Pediatric Pulmonary Hypertension'), (64590, 'https://ror.org/05f4jn380', 'no_lang_code', 1, 'https://ror.org/05f4jn380 Omni Med'), (64591, 'https://ror.org/05f508233', 'en', 1, 'https://ror.org/05f508233 Chan Heart Rhythm Institute'), (64592, 'https://ror.org/05f6hbt77', 'no_lang_code', 1, 'https://ror.org/05f6hbt77 AmebaGone (United States)'), (64593, 'https://ror.org/05f6zz720', 'no_lang_code', 1, 'https://ror.org/05f6zz720 SolRayo (United States)'), (64594, 'https://ror.org/05f8fxj66', 'pt', 1, 'https://ror.org/05f8fxj66 Hospital Risoleta Tolentino Neves'), (64595, 'https://ror.org/05f9vfg11', 'en', 1, 'https://ror.org/05f9vfg11 Huazhong University of Science and Technology Hospital'), (64596, 'https://ror.org/05fbm4611', 'en', 1, 'https://ror.org/05fbm4611 University Hospitals Geauga Medical Center'), (64597, 'https://ror.org/05fch8r16', 'en', 1, 'https://ror.org/05fch8r16 Specialized Clinical Psychiatric Hospital No. 1 Специализированная клиническая психиатрическая больница № 1'), (64598, 'https://ror.org/05fcjtk81', 'no_lang_code', 1, 'https://ror.org/05fcjtk81 Ethica (Canada)'), (64599, 'https://ror.org/05fdgz909', 'de', 1, 'https://ror.org/05fdgz909 Evangelische Kliniken Gelsenkirchen'), (64600, 'https://ror.org/05fep0t76', 'no_lang_code', 1, 'https://ror.org/05fep0t76 LogicMill Technology (United States)'), (64601, 'https://ror.org/05fmyxw97', 'no_lang_code', 1, 'https://ror.org/05fmyxw97 Fishwell Consulting (Australia)'), (64602, 'https://ror.org/05fnerq37', 'en', 1, 'https://ror.org/05fnerq37 Parks and Wildlife Service'), (64603, 'https://ror.org/05fnnp231', 'no_lang_code', 1, 'https://ror.org/05fnnp231 Revive Therapeutics (Canada)'), (64604, 'https://ror.org/05fp35w93', 'no_lang_code', 1, 'https://ror.org/05fp35w93 Ausvet (Australia)'), (64605, 'https://ror.org/05fp5vn06', 'en', 1, 'https://ror.org/05fp5vn06 Absenger Cancer Education Foundation'), (64606, 'https://ror.org/05fqhmm52', 'en', 1, 'https://ror.org/05fqhmm52 Chicago College of Oriental Medicine'), (64607, 'https://ror.org/05fqw3447', 'en', 1, 'https://ror.org/05fqw3447 Carter County Museum'), (64608, 'https://ror.org/05fr3nj53', 'en', 1, 'https://ror.org/05fr3nj53 Miller Orthopedic Specialist'), (64609, 'https://ror.org/05fstx905', 'sk', 1, 'https://ror.org/05fstx905 Národný Endokrinologický a Diabetologický Ústav'), (64610, 'https://ror.org/05fvh4506', 'en', 1, 'https://ror.org/05fvh4506 General Hospital of Filiates Γενικό Νοσοκομείο – Κ.Υ. Φιλιατών'), (64611, 'https://ror.org/05fwfqf82', 'en', 1, 'https://ror.org/05fwfqf82 Charlotte Eye Ear Nose & Throat Associates'), (64612, 'https://ror.org/05fwtr092', 'nl', 1, 'https://ror.org/05fwtr092 Arbo Unie'), (64613, 'https://ror.org/05fxqy444', 'no_lang_code', 1, 'https://ror.org/05fxqy444 Solarno (United States)'), (64614, 'https://ror.org/05fzfv584', 'en', 1, 'https://ror.org/05fzfv584 Berlin Center for Epidemiology and Health Research'), (64615, 'https://ror.org/05g0bc010', 'en', 1, 'https://ror.org/05g0bc010 Baltic Institute of Advanced Technology Baltijos pažangių technologijų institutas'), (64616, 'https://ror.org/05g1qrw85', 'no_lang_code', 1, 'https://ror.org/05g1qrw85 Yes Technologies (United States)'), (64617, 'https://ror.org/05g37hp80', 'en', 1, 'https://ror.org/05g37hp80 Institute of Applied Economics and Health Research ApS'), (64618, 'https://ror.org/05g3rxr48', 'en', 1, 'https://ror.org/05g3rxr48 Arizona Science Center'), (64619, 'https://ror.org/05g52s684', 'nl', 1, 'https://ror.org/05g52s684 Kijvelanden'), (64620, 'https://ror.org/05g6kcv24', 'nl', 1, 'https://ror.org/05g6kcv24 IZZ Zorgverzekering'), (64621, 'https://ror.org/05g6ncb39', 'de', 1, 'https://ror.org/05g6ncb39 Niederösterreichischer Gesundheits- und Sozialfond'), (64622, 'https://ror.org/05g7jpw53', 'no_lang_code', 1, 'https://ror.org/05g7jpw53 Cory Laboratories'), (64623, 'https://ror.org/05g8axa09', 'en', 1, 'https://ror.org/05g8axa09 Tri-County Community Mental Health Center'), (64624, 'https://ror.org/05g8gd021', 'en', 1, 'https://ror.org/05g8gd021 Cardiovascular Institute of Michigan P.C'), (64625, 'https://ror.org/05gag8m64', 'de', 1, 'https://ror.org/05gag8m64 Kreiskrankenhaus Dormagen'), (64626, 'https://ror.org/05gapbz32', 'de', 1, 'https://ror.org/05gapbz32 Klinik Bad Oexen'), (64627, 'https://ror.org/05gb36730', 'en', 1, 'https://ror.org/05gb36730 Levin Institute'), (64628, 'https://ror.org/05gctgr03', 'en', 1, 'https://ror.org/05gctgr03 Nebraska Hematology-Oncology'), (64629, 'https://ror.org/05gczn822', 'en', 1, 'https://ror.org/05gczn822 Hellenic Society of Hypertension Ελληνική Εταιρεία Υπέρτασης'), (64630, 'https://ror.org/05gdr4s75', 'en', 1, 'https://ror.org/05gdr4s75 Amerind Museum'), (64631, 'https://ror.org/05gdxv139', 'en', 1, 'https://ror.org/05gdxv139 Andros Clinica Day Surgery'), (64632, 'https://ror.org/05geszq97', 'en', 1, 'https://ror.org/05geszq97 The Speech and Stuttering Institute'), (64633, 'https://ror.org/05gff4a37', 'en', 1, 'https://ror.org/05gff4a37 Society for Invertebrate Pathology'), (64634, 'https://ror.org/05ggj5w37', 'en', 1, 'https://ror.org/05ggj5w37 Utah AIDS Foundation'), (64635, 'https://ror.org/05gjj8523', 'en', 1, 'https://ror.org/05gjj8523 Yellowstone Forever'), (64636, 'https://ror.org/05gkev856', 'en', 1, 'https://ror.org/05gkev856 European Society for Blood and Marrow Transplantation'), (64637, 'https://ror.org/05gqsqy69', 'de', 1, 'https://ror.org/05gqsqy69 Institut für Lungenforschung'), (64638, 'https://ror.org/05grhsk96', 'no_lang_code', 1, 'https://ror.org/05grhsk96 Vanderbilt Health'), (64639, 'https://ror.org/05grjt380', 'no_lang_code', 1, 'https://ror.org/05grjt380 Focal Meditech (Netherlands)'), (64640, 'https://ror.org/05gsbmf62', 'en', 1, 'https://ror.org/05gsbmf62 Herzig Eye Institute'), (64641, 'https://ror.org/05gshbf51', 'no_lang_code', 1, 'https://ror.org/05gshbf51 Sign Media (United States)'), (64642, 'https://ror.org/05gsvv626', 'en', 1, 'https://ror.org/05gsvv626 Dermatology Society of South Africa'), (64643, 'https://ror.org/05gsxqf59', 'en', 1, 'https://ror.org/05gsxqf59 European Society for Organ Transplantation Società europea per il trapianto di organi'), (64644, 'https://ror.org/05gt42d74', 'en', 1, 'https://ror.org/05gt42d74 Cardiovascular and Interventional Radiological Society of Europe'), (64645, 'https://ror.org/05gt5r361', 'de', 1, 'https://ror.org/05gt5r361 Marienhospital Osnabrück'), (64646, 'https://ror.org/05gtere25', 'no_lang_code', 1, 'https://ror.org/05gtere25 Vabiotech (Vietnam)'), (64647, 'https://ror.org/05gvf0x42', 'en', 1, 'https://ror.org/05gvf0x42 Bulgarian Neuromuscular Diseases Association БЪЛГАРСКА АСОЦИАЦИЯ ЗА НЕВРОМУСКУЛНИ ЗАБОЛЯВАНИЯ'), (64648, 'https://ror.org/05gxm7d74', 'en', 1, 'https://ror.org/05gxm7d74 Korea Pharmaceutical and Bio-Pharma Manufacturers Association 한국제약바이오협회'), (64649, 'https://ror.org/05gz5te09', 'no_lang_code', 1, 'https://ror.org/05gz5te09 Sepragen Corporation (United States)'), (64650, 'https://ror.org/05h3wd214', 'en', 1, 'https://ror.org/05h3wd214 Adventist Heart Institute'), (64651, 'https://ror.org/05h4bcs36', 'en', 1, 'https://ror.org/05h4bcs36 June E. Nylen Cancer Center'), (64652, 'https://ror.org/05h5s3f74', 'no_lang_code', 1, 'https://ror.org/05h5s3f74 Holtec International (United States)'), (64653, 'https://ror.org/05h876969', 'de', 1, 'https://ror.org/05h876969 Stiftung Mandacaru'), (64654, 'https://ror.org/05hadjh66', 'en', 1, 'https://ror.org/05hadjh66 Marshall Health'), (64655, 'https://ror.org/05hbymd96', 'de', 1, 'https://ror.org/05hbymd96 Hauschka Stiftung'), (64656, 'https://ror.org/05hc6gd57', 'en', 1, 'https://ror.org/05hc6gd57 C.I. Trials'), (64657, 'https://ror.org/05hcyxs26', 'nl', 1, 'https://ror.org/05hcyxs26 Fietsersbond'), (64658, 'https://ror.org/05hdpwb59', 'en', 1, 'https://ror.org/05hdpwb59 Fatmawati Hospital Rumah Sakit Umum Pusat Fatmawati'), (64659, 'https://ror.org/05hgh1g19', 'en', 1, 'https://ror.org/05hgh1g19 Helios Hospital Berlin-Buch Helios Klinikum Berlin-Buch'), (64660, 'https://ror.org/05hgkmq81', 'en', 1, 'https://ror.org/05hgkmq81 Servy Institute for Reproductive Endocrinology'), (64661, 'https://ror.org/05hgx8v86', 'no_lang_code', 1, 'https://ror.org/05hgx8v86 Elixir Medical (United States)'), (64662, 'https://ror.org/05hk5hv71', 'en', 1, 'https://ror.org/05hk5hv71 Stormont Vail Health'), (64663, 'https://ror.org/05hkjyh45', 'no_lang_code', 1, 'https://ror.org/05hkjyh45 Alexion Pharma (Switzerland)'), (64664, 'https://ror.org/05hm3dk81', 'en', 1, 'https://ror.org/05hm3dk81 Tennessee Orthopaedic Clinics'), (64665, 'https://ror.org/05hnk1p44', 'de', 1, 'https://ror.org/05hnk1p44 Klinik für Herzchirurgie Karlsruhe'), (64666, 'https://ror.org/05hnxef10', 'no_lang_code', 1, 'https://ror.org/05hnxef10 NinePoint Medical (United States)'), (64667, 'https://ror.org/05hqyp882', 'no_lang_code', 1, 'https://ror.org/05hqyp882 MedSkin Solutions (Germany)'), (64668, 'https://ror.org/05hr4m393', 'en', 1, 'https://ror.org/05hr4m393 Northwest Medical Specialties'), (64669, 'https://ror.org/05hrw6q11', 'en', 1, 'https://ror.org/05hrw6q11 Ovation Fertility'), (64670, 'https://ror.org/05hs5ga57', 'en', 1, 'https://ror.org/05hs5ga57 Qualitouch-HC Foundation'), (64671, 'https://ror.org/05htkf588', 'en', 1, 'https://ror.org/05htkf588 Shandong Eye Hospital'), (64672, 'https://ror.org/05htm1j67', 'en', 1, 'https://ror.org/05htm1j67 National Gardening Association'), (64673, 'https://ror.org/05hx1v477', 'en', 1, 'https://ror.org/05hx1v477 Moreton Bay Seafood Industry Association'), (64674, 'https://ror.org/05hzdqf47', 'en', 1, 'https://ror.org/05hzdqf47 Adirondack Area Network'), (64675, 'https://ror.org/05j0e3q89', 'en', 1, 'https://ror.org/05j0e3q89 Roparun Foundation Stichting Roparun'), (64676, 'https://ror.org/05j35jp78', 'en', 1, 'https://ror.org/05j35jp78 The Lok Sin Tong Benevolent Society Kowloon 九龍樂善堂'), (64677, 'https://ror.org/05j4tjy04', 'en', 1, 'https://ror.org/05j4tjy04 Ministry of Health and Social Welfare'), (64678, 'https://ror.org/05j54qh77', 'en', 1, 'https://ror.org/05j54qh77 Chagrin Highlands Health Center'), (64679, 'https://ror.org/05j6kar92', 'no_lang_code', 1, 'https://ror.org/05j6kar92 Omnicare Pharma (Germany)'), (64680, 'https://ror.org/05j8e7885', 'en', 1, 'https://ror.org/05j8e7885 St. Luke''s Hospital'), (64681, 'https://ror.org/05jb7jk98', 'en', 1, 'https://ror.org/05jb7jk98 Southeast Health District'), (64682, 'https://ror.org/05jd5rm48', 'en', 1, 'https://ror.org/05jd5rm48 Carolina Musculoskeletal Institute'), (64683, 'https://ror.org/05je0gs16', 'en', 1, 'https://ror.org/05je0gs16 San Diego Archaeological Center'), (64684, 'https://ror.org/05jfknj25', 'en', 1, 'https://ror.org/05jfknj25 Legacy Salmon Creek Medical Center'), (64685, 'https://ror.org/05jgnq975', 'en', 1, 'https://ror.org/05jgnq975 Early Childhood Initiative Foundation'), (64686, 'https://ror.org/05jhd9y87', 'no_lang_code', 1, 'https://ror.org/05jhd9y87 Biosignatures (United Kingdom)'), (64687, 'https://ror.org/05jjc0y03', 'no_lang_code', 1, 'https://ror.org/05jjc0y03 Alphamade (Berlin)'), (64688, 'https://ror.org/05jksah37', 'en', 1, 'https://ror.org/05jksah37 Asia Cornea Society'), (64689, 'https://ror.org/05jm48923', 'sv', 1, 'https://ror.org/05jm48923 Ryggkirurgiska Kliniken i Strängnäs'), (64690, 'https://ror.org/05jnah305', 'no_lang_code', 1, 'https://ror.org/05jnah305 novacare (Germany)'), (64691, 'https://ror.org/05jp2s596', 'en', 1, 'https://ror.org/05jp2s596 California Public Interest Research Group'), (64692, 'https://ror.org/05jpsw268', 'de', 1, 'https://ror.org/05jpsw268 Sächsische Krebsgesellschaft'), (64693, 'https://ror.org/05jpvp811', 'en', 1, 'https://ror.org/05jpvp811 Fortius Clinic'), (64694, 'https://ror.org/05jr0p734', 'en', 1, 'https://ror.org/05jr0p734 Joint Interoperability Test Command'), (64695, 'https://ror.org/05jrbdv26', 'en', 1, 'https://ror.org/05jrbdv26 Expertise Center Vocational Education Expertisecentrum Beroepsonderwijs'), (64696, 'https://ror.org/05jrvwk92', 'pt', 1, 'https://ror.org/05jrvwk92 Clínica e Instituto de Oftalmologia Ivo Corrêa Meyer'), (64697, 'https://ror.org/05js1ap63', 'en', 1, 'https://ror.org/05js1ap63 Prairie Vascular Institute'), (64698, 'https://ror.org/05jtxmk62', 'en', 1, 'https://ror.org/05jtxmk62 Baptist Health Corbin'), (64699, 'https://ror.org/05jxfq030', 'en', 1, 'https://ror.org/05jxfq030 Kidney Disease Association of Thailand'), (64700, 'https://ror.org/05jxxs868', 'en', 1, 'https://ror.org/05jxxs868 Tropical Disease Foundation'), (64701, 'https://ror.org/05jy2cf97', 'en', 1, 'https://ror.org/05jy2cf97 Science Center of Pinellas'), (64702, 'https://ror.org/05jy72h47', 'en', 1, 'https://ror.org/05jy72h47 The Fifth People’s Hospital of Suzhou 苏州市第五人民医院'), (64703, 'https://ror.org/05jyzkb74', 'en', 1, 'https://ror.org/05jyzkb74 Pennsylvania Allergy and Asthma Association'), (64704, 'https://ror.org/05k150873', 'en', 1, 'https://ror.org/05k150873 OASIS Clinic'), (64705, 'https://ror.org/05k2jeg48', 'en', 1, 'https://ror.org/05k2jeg48 North Suffolk Mental Health Association'), (64706, 'https://ror.org/05k3cv262', 'nl', 1, 'https://ror.org/05k3cv262 Willem Meindert de Hoop Stichting'), (64707, 'https://ror.org/05k3yhz56', 'en', 1, 'https://ror.org/05k3yhz56 Association Canadienne de Protection Médicale Canadian Medical Protective Association'), (64708, 'https://ror.org/05k40gs40', 'en', 1, 'https://ror.org/05k40gs40 University hospital Medical Information Network 大学病院医療情報ネットワーク'), (64709, 'https://ror.org/05k64t167', 'de', 1, 'https://ror.org/05k64t167 Lahntalklinik'), (64710, 'https://ror.org/05k71bz17', 'no_lang_code', 1, 'https://ror.org/05k71bz17 Biocinese (Brazil) Centro de Estudos Biofarmacêuticos'), (64711, 'https://ror.org/05k8f3f74', 'en', 1, 'https://ror.org/05k8f3f74 Utah Society for Environmental Education'), (64712, 'https://ror.org/05k9gkx37', 'nl', 1, 'https://ror.org/05k9gkx37 Erfelijke Stofwisselingsziekten Nederland'), (64713, 'https://ror.org/05kagrs11', 'no_lang_code', 1, 'https://ror.org/05kagrs11 Competence Centre on Health Technologies (Estonia) Tervisetehnoloogiate Arenduskeskus'), (64714, 'https://ror.org/05kaht993', 'en', 1, 'https://ror.org/05kaht993 Skin of Color Society'), (64715, 'https://ror.org/05kbg7k66', 'en', 1, 'https://ror.org/05kbg7k66 Berkeley Art Museum and Pacific Film Archive'), (64716, 'https://ror.org/05kbmt076', 'en', 1, 'https://ror.org/05kbmt076 Southeastern Health'), (64717, 'https://ror.org/05kcpxy10', 'en', 1, 'https://ror.org/05kcpxy10 Tula Regional Clinical Hospital Тульская областная клиническая больница'), (64718, 'https://ror.org/05kd3hv35', 'no_lang_code', 1, 'https://ror.org/05kd3hv35 V&R Energy Systems Research (United States)'), (64719, 'https://ror.org/05kfwsr87', 'de', 1, 'https://ror.org/05kfwsr87 Wirbelsäulen-Institut München'), (64720, 'https://ror.org/05kg2q446', 'en', 1, 'https://ror.org/05kg2q446 University Health Conway'), (64721, 'https://ror.org/05kgqvw68', 'en', 1, 'https://ror.org/05kgqvw68 University MRI & Diagnostic Imaging Centers'), (64722, 'https://ror.org/05khxfe53', 'en', 1, 'https://ror.org/05khxfe53 University of Bojnord دانشگاه بجنورد'), (64723, 'https://ror.org/05kj9dv08', 'en', 1, 'https://ror.org/05kj9dv08 The SHM Foundation'), (64724, 'https://ror.org/05kjrdd45', 'no_lang_code', 1, 'https://ror.org/05kjrdd45 Enable Biosciences (United States)'), (64725, 'https://ror.org/05kk2ma90', 'en', 1, 'https://ror.org/05kk2ma90 TobaccoFree Research Institute'), (64726, 'https://ror.org/05kkspf37', 'en', 1, 'https://ror.org/05kkspf37 CueThink'), (64727, 'https://ror.org/05kmpn815', 'no_lang_code', 1, 'https://ror.org/05kmpn815 Marigot (Ireland)'), (64728, 'https://ror.org/05kn06p84', 'en', 1, 'https://ror.org/05kn06p84 Michigan Reproductive Medicine'), (64729, 'https://ror.org/05knza467', 'en', 1, 'https://ror.org/05knza467 Central Australian Remote Health Development Services'), (64730, 'https://ror.org/05kp26h23', 'en', 1, 'https://ror.org/05kp26h23 National Nutrition Agency'), (64731, 'https://ror.org/05ks75x17', 'no_lang_code', 1, 'https://ror.org/05ks75x17 Suyash Hospital'), (64732, 'https://ror.org/05ksnhc43', 'en', 1, 'https://ror.org/05ksnhc43 Physical-Chemical Institute O. Bogatsky Фізико-хімічний інститут ім. О.В. Богатського НАН України'), (64733, 'https://ror.org/05ktfmr66', 'de', 1, 'https://ror.org/05ktfmr66 Helios Vogtland Klinikum Plauen'), (64734, 'https://ror.org/05ktmtk53', 'en', 1, 'https://ror.org/05ktmtk53 Kanagawa Prefecture Medical Association 神奈川県医師会'), (64735, 'https://ror.org/05kv4r135', 'en', 1, 'https://ror.org/05kv4r135 Regional State Budget Health Care Institution "Regional Clinical Hospital" Краевое государственное бюджетное учреждение здравоохранения «Краевая клиническая больница»'), (64736, 'https://ror.org/05kwbcj56', 'en', 1, 'https://ror.org/05kwbcj56 Legacy Meridian Park Medical Center'), (64737, 'https://ror.org/05kxwfj75', 'en', 1, 'https://ror.org/05kxwfj75 East Florida Eye Institute'), (64738, 'https://ror.org/05kzst346', 'en', 1, 'https://ror.org/05kzst346 Maricopa County Department of Public Health'), (64739, 'https://ror.org/05m074r21', 'en', 1, 'https://ror.org/05m074r21 Berkshire Health Systems'), (64740, 'https://ror.org/05m0fyt06', 'nl', 1, 'https://ror.org/05m0fyt06 Zorggroep Solis'), (64741, 'https://ror.org/05m54mx02', 'en', 1, 'https://ror.org/05m54mx02 Ohio Dermatological Association'), (64742, 'https://ror.org/05m94vg70', 'en', 1, 'https://ror.org/05m94vg70 National Association of Home Builders'), (64743, 'https://ror.org/05m9b9906', 'en', 1, 'https://ror.org/05m9b9906 Boise Kidney & Hypertension Institute'), (64744, 'https://ror.org/05ma3wj87', 'no_lang_code', 1, 'https://ror.org/05ma3wj87 Genoverde Biosciences (United States)'), (64745, 'https://ror.org/05maag353', 'en', 1, 'https://ror.org/05maag353 Providence Willamette Falls Medical Center'), (64746, 'https://ror.org/05mavg897', 'en', 1, 'https://ror.org/05mavg897 Society for Organizational Learning'), (64747, 'https://ror.org/05mb9sm33', 'en', 1, 'https://ror.org/05mb9sm33 Texas Cardiac Arrhythmia'), (64748, 'https://ror.org/05medrv10', 'de', 1, 'https://ror.org/05medrv10 Klinik und Poliklinik für Psychotherapie und Psychosomatik'), (64749, 'https://ror.org/05mg0j941', 'en', 1, 'https://ror.org/05mg0j941 Radiation Oncology Centers of Nevada'), (64750, 'https://ror.org/05mhs9m77', 'es', 1, 'https://ror.org/05mhs9m77 Instituto Privado de Hematología e Investigación Clínica'), (64751, 'https://ror.org/05mht2065', 'en', 1, 'https://ror.org/05mht2065 Chinese Gerontology Society 中国老年学和老年医学学会'), (64752, 'https://ror.org/05mm8r061', 'nl', 1, 'https://ror.org/05mm8r061 Heliomare'), (64753, 'https://ror.org/05mmjzg49', 'en', 1, 'https://ror.org/05mmjzg49 iResearch Atlanta'), (64754, 'https://ror.org/05mnrce88', 'el', 1, 'https://ror.org/05mnrce88 Iakentro'), (64755, 'https://ror.org/05mphpp98', 'en', 1, 'https://ror.org/05mphpp98 Saint Mary''s School'), (64756, 'https://ror.org/05mpph804', 'no_lang_code', 1, 'https://ror.org/05mpph804 Frisian Flag (Indonesia)'), (64757, 'https://ror.org/05mrk2t44', 'en', 1, 'https://ror.org/05mrk2t44 Center for Snow and Avalanche Studies'), (64758, 'https://ror.org/05mrmvf37', 'no_lang_code', 1, 'https://ror.org/05mrmvf37 Hanzhong Central Hospital 汉中市中心医院'), (64759, 'https://ror.org/05mrzft53', 'no_lang_code', 1, 'https://ror.org/05mrzft53 CSL (United Kingdom)'), (64760, 'https://ror.org/05msdft16', 'no_lang_code', 1, 'https://ror.org/05msdft16 PDX Pharmaceuticals (United States)'), (64761, 'https://ror.org/05mty4w15', 'en', 1, 'https://ror.org/05mty4w15 Paediatric Integrated Cancer Service'), (64762, 'https://ror.org/05mv0x382', 'no_lang_code', 1, 'https://ror.org/05mv0x382 Biebertaler Blutegelzucht (Germany)'), (64763, 'https://ror.org/05mv95n98', 'fr', 1, 'https://ror.org/05mv95n98 France Alzheimer et maladies apparentées France Alzheimer''s and related diseases'), (64764, 'https://ror.org/05mvyv273', 'de', 1, 'https://ror.org/05mvyv273 Das Onkologische und Palliativmedizinische Netzwerk Landshut'), (64765, 'https://ror.org/05mx1gf76', 'en', 1, 'https://ror.org/05mx1gf76 Kangdong Sacred Heart Hospital'), (64766, 'https://ror.org/05mx4yp68', 'en', 1, 'https://ror.org/05mx4yp68 Kennedy Clinic Hospital'), (64767, 'https://ror.org/05my1gr06', 'nl', 1, 'https://ror.org/05my1gr06 Stichting Toegepast Wetenschappelijk Instituut voor Neuromodulatie'), (64768, 'https://ror.org/05mz4e808', 'no_lang_code', 1, 'https://ror.org/05mz4e808 N-Gene (United States)'), (64769, 'https://ror.org/05n07wm39', 'en', 1, 'https://ror.org/05n07wm39 Colorado Community College System'), (64770, 'https://ror.org/05n521861', 'nl', 1, 'https://ror.org/05n521861 Vereniging van Groothandelaren in Bloemkwekerijprodukten'), (64771, 'https://ror.org/05nc6an52', 'en', 1, 'https://ror.org/05nc6an52 Saint Alphonsus Medical Center'), (64772, 'https://ror.org/05ncexg51', 'en', 1, 'https://ror.org/05ncexg51 Atos Medical'), (64773, 'https://ror.org/05ne0js61', 'en', 1, 'https://ror.org/05ne0js61 Modoc County Office of Education'), (64774, 'https://ror.org/05nf6pg47', 'en', 1, 'https://ror.org/05nf6pg47 European Inter-University Association of Society, Science and Technology'), (64775, 'https://ror.org/05ng03c96', 'pt', 1, 'https://ror.org/05ng03c96 Hospital São Domingos'), (64776, 'https://ror.org/05ng5j404', 'en', 1, 'https://ror.org/05ng5j404 Saratov City Clinical Hospital № 2 named. IN AND. Razumovsky'), (64777, 'https://ror.org/05ngdrj30', 'fr', 1, 'https://ror.org/05ngdrj30 Fondation Française pour la Recherche sur l''Epilepsie'), (64778, 'https://ror.org/05ngmaw16', 'no_lang_code', 1, 'https://ror.org/05ngmaw16 Certmedica (Germany)'), (64779, 'https://ror.org/05ngx7r22', 'es', 1, 'https://ror.org/05ngx7r22 Hospital de Guadarrama'), (64780, 'https://ror.org/05nh4qq71', 'en', 1, 'https://ror.org/05nh4qq71 Orchid'), (64781, 'https://ror.org/05nhtke22', 'de', 1, 'https://ror.org/05nhtke22 Vinzenzkrankenhaus Hannover'), (64782, 'https://ror.org/05nmdmf57', 'en', 1, 'https://ror.org/05nmdmf57 European Optical Society'), (64783, 'https://ror.org/05nmp7m26', 'no_lang_code', 1, 'https://ror.org/05nmp7m26 Laccure (Sweden)'), (64784, 'https://ror.org/05nqjs332', 'en', 1, 'https://ror.org/05nqjs332 Regeneris Medical'), (64785, 'https://ror.org/05ns7k858', 'nl', 1, 'https://ror.org/05ns7k858 Espérance, Stichting Esperance'), (64786, 'https://ror.org/05ntm4g04', 'en', 1, 'https://ror.org/05ntm4g04 eSwiss Medical and Surgical Center'), (64787, 'https://ror.org/05nvfzh19', 'de', 1, 'https://ror.org/05nvfzh19 Leppermühle'), (64788, 'https://ror.org/05nvpz682', 'en', 1, 'https://ror.org/05nvpz682 AI Access Foundation'), (64789, 'https://ror.org/05nvt9206', 'no_lang_code', 1, 'https://ror.org/05nvt9206 NutriLeads (Netherlands)'), (64790, 'https://ror.org/05nxrmr92', 'no_lang_code', 1, 'https://ror.org/05nxrmr92 Werk-Goed Bedrijfskleding alle rechten voorbehouden Werkgoed (Netherlands)'), (64791, 'https://ror.org/05p017741', 'en', 1, 'https://ror.org/05p017741 Centre of Excellence for Health, Immunity and Infections'), (64792, 'https://ror.org/05p1s7a78', 'no_lang_code', 1, 'https://ror.org/05p1s7a78 Napp Pharmaceuticals (United Kingdom)'), (64793, 'https://ror.org/05p20q348', 'pt', 1, 'https://ror.org/05p20q348 Sindicato Nacional dos Professores Licenciados pelos Politécnicos e Universidades'), (64794, 'https://ror.org/05p2gad32', 'en', 1, 'https://ror.org/05p2gad32 Malabam Health Board Aboriginal Corporation'), (64795, 'https://ror.org/05p5naa72', 'en', 1, 'https://ror.org/05p5naa72 IWK Foundation'), (64796, 'https://ror.org/05p7ffb87', 'en', 1, 'https://ror.org/05p7ffb87 Riyadh Fertility and Reproductive Health Center مركز الرياض للصحة الانجابية'), (64797, 'https://ror.org/05p9zq845', 'no_lang_code', 1, 'https://ror.org/05p9zq845 QPS (India)'), (64798, 'https://ror.org/05pa68763', 'en', 1, 'https://ror.org/05pa68763 Asan Foundation 아산사회복지재단'), (64799, 'https://ror.org/05pabx459', 'nl', 1, 'https://ror.org/05pabx459 STECR'), (64800, 'https://ror.org/05parng43', 'en', 1, 'https://ror.org/05parng43 Bethlehem Arab Society for Rehabilitation جمعية بيت لحم العربية للتأهيل'), (64801, 'https://ror.org/05pax0z40', 'no_lang_code', 1, 'https://ror.org/05pax0z40 Medi (Germany)'), (64802, 'https://ror.org/05pe6et34', 'no_lang_code', 1, 'https://ror.org/05pe6et34 Recuperat-ion (Spain)'), (64803, 'https://ror.org/05pegpf07', 'en', 1, 'https://ror.org/05pegpf07 Western Orthopedics Foundation'), (64804, 'https://ror.org/05pgfe605', 'no_lang_code', 1, 'https://ror.org/05pgfe605 Dansk Sundhedssikring'), (64805, 'https://ror.org/05pkc2853', 'no_lang_code', 1, 'https://ror.org/05pkc2853 SCHWIND eye-tech-solutions (Germany)'), (64806, 'https://ror.org/05pnggp67', 'en', 1, 'https://ror.org/05pnggp67 Oregon Urology Institute'), (64807, 'https://ror.org/05pnxjq94', 'no_lang_code', 1, 'https://ror.org/05pnxjq94 Kaali Institute Kaali Intezet'), (64808, 'https://ror.org/05pp3ka35', 'no_lang_code', 1, 'https://ror.org/05pp3ka35 Dr. Ausbüttel (Germany)'), (64809, 'https://ror.org/05ppn2f94', 'no_lang_code', 1, 'https://ror.org/05ppn2f94 Institute for Quality Indicators (Sweden) Institutet för kvalitetsindikatorer'), (64810, 'https://ror.org/05prbcv50', 'en', 1, 'https://ror.org/05prbcv50 Ruane Medical'), (64811, 'https://ror.org/05psxec48', 'en', 1, 'https://ror.org/05psxec48 Hunan Institute of Mental Health 湖南省心理卫生研究所'), (64812, 'https://ror.org/05pv0dd97', 'en', 1, 'https://ror.org/05pv0dd97 Florida Cancer Care'), (64813, 'https://ror.org/05pvs7q85', 'fr', 1, 'https://ror.org/05pvs7q85 Epicura'), (64814, 'https://ror.org/05pz4ws32', 'en', 1, 'https://ror.org/05pz4ws32 Children''s Hospital of Chongqing Medical University'), (64815, 'https://ror.org/05pzx1a74', 'no_lang_code', 1, 'https://ror.org/05pzx1a74 Lipogen (Israel)'), (64816, 'https://ror.org/05q0wnh95', 'no_lang_code', 1, 'https://ror.org/05q0wnh95 Actigen (Denmark)'), (64817, 'https://ror.org/05q11w119', 'en', 1, 'https://ror.org/05q11w119 Southeast Retina Center'), (64818, 'https://ror.org/05q2kbw66', 'en', 1, 'https://ror.org/05q2kbw66 The Heartburn Foundation'), (64819, 'https://ror.org/05q2w8v63', 'en', 1, 'https://ror.org/05q2w8v63 Salvadori Center'), (64820, 'https://ror.org/05q35d534', 'fr', 1, 'https://ror.org/05q35d534 Association pour l''Information et la Recherche sur les maladies rénales Génétiques'), (64821, 'https://ror.org/05q3jcj22', 'en', 1, 'https://ror.org/05q3jcj22 Miami Serpentarium Laboratories'), (64822, 'https://ror.org/05q3rkb48', 'en', 1, 'https://ror.org/05q3rkb48 Mile Bluff Medical Center'), (64823, 'https://ror.org/05q4r1796', 'de', 1, 'https://ror.org/05q4r1796 Evangelische Lungenklinik Berlin'), (64824, 'https://ror.org/05q4t9480', 'en', 1, 'https://ror.org/05q4t9480 Star Spine & Sport'); INSERT INTO `rors` VALUES (64825, 'https://ror.org/05q50g776', 'en', 1, 'https://ror.org/05q50g776 Republican Clinical Hospital named after G.G. Kuvatova Республиканская клиническая больница №. G.G. Куватов'), (64826, 'https://ror.org/05q6g7072', 'no_lang_code', 1, 'https://ror.org/05q6g7072 Laila Impex (India)'), (64827, 'https://ror.org/05q7twd40', 'de', 1, 'https://ror.org/05q7twd40 Zentrum für Psychiatrie Südwürttemberg'), (64828, 'https://ror.org/05qa66z68', 'en', 1, 'https://ror.org/05qa66z68 MISH Hospital and Clinics'), (64829, 'https://ror.org/05qaf7a32', 'nl', 1, 'https://ror.org/05qaf7a32 Dutch Society for Obstetrics and Gynecology Nederlandse Vereniging voor Obstetrie en Gynaecologie'), (64830, 'https://ror.org/05qce6816', 'no_lang_code', 1, 'https://ror.org/05qce6816 BioClin (Netherlands)'), (64831, 'https://ror.org/05qf3bt68', 'fr', 1, 'https://ror.org/05qf3bt68 Centre Hospitalo-Universitaire Bab El Oued'), (64832, 'https://ror.org/05qgkbs55', 'en', 1, 'https://ror.org/05qgkbs55 Belgian Hematological Society'), (64833, 'https://ror.org/05qkht728', 'no_lang_code', 1, 'https://ror.org/05qkht728 Credentis (Switzerland)'), (64834, 'https://ror.org/05qmfrv53', 'en', 1, 'https://ror.org/05qmfrv53 St John of God Murdoch Hospital'), (64835, 'https://ror.org/05qph7t17', 'en', 1, 'https://ror.org/05qph7t17 Bayit Balev Rehabilitation Hospital'), (64836, 'https://ror.org/05qqdh613', 'en', 1, 'https://ror.org/05qqdh613 Nebraska Cancer Research Center'), (64837, 'https://ror.org/05qsrmb73', 'en', 1, 'https://ror.org/05qsrmb73 Shanxi Institute of Endemic Diseases'), (64838, 'https://ror.org/05qtv1p74', 'de', 1, 'https://ror.org/05qtv1p74 Zentrum für Pathologie und Zytodiagnostik'), (64839, 'https://ror.org/05qtxj124', 'en', 1, 'https://ror.org/05qtxj124 National Academy of Public Administration'), (64840, 'https://ror.org/05qv09308', 'en', 1, 'https://ror.org/05qv09308 St. Petersburg School of Religion and Philosophy Центр научно-просветительских и религиозно-философских программ'), (64841, 'https://ror.org/05qvwyg13', 'de', 1, 'https://ror.org/05qvwyg13 Spitalzentrum Centre hospitalier Biel- Bienne'), (64842, 'https://ror.org/05qwpv987', 'nl', 1, 'https://ror.org/05qwpv987 VeiligheidNL'), (64843, 'https://ror.org/05qz4m566', 'en', 1, 'https://ror.org/05qz4m566 Regional Clinical Hospital named after II Mechnikov'), (64844, 'https://ror.org/05r0e4p82', 'en', 1, 'https://ror.org/05r0e4p82 Karl Landsteiner Gesellschaft Karl Landsteiner Society'), (64845, 'https://ror.org/05r2zqh89', 'no_lang_code', 1, 'https://ror.org/05r2zqh89 Nutricia (Germany)'), (64846, 'https://ror.org/05r52pz56', 'no_lang_code', 1, 'https://ror.org/05r52pz56 Ratrix Technologies (United States)'), (64847, 'https://ror.org/05r643345', 'en', 1, 'https://ror.org/05r643345 Women''s Resource Center'), (64848, 'https://ror.org/05r7sx321', 'en', 1, 'https://ror.org/05r7sx321 Workit Health'), (64849, 'https://ror.org/05r9t2t65', 'es', 1, 'https://ror.org/05r9t2t65 Fundación Teknon'), (64850, 'https://ror.org/05rezdz06', 'no_lang_code', 1, 'https://ror.org/05rezdz06 Heat Transfer Research & Development (United States)'), (64851, 'https://ror.org/05rg5xr95', 'en', 1, 'https://ror.org/05rg5xr95 University General Surgeons'), (64852, 'https://ror.org/05rg8gm93', 'en', 1, 'https://ror.org/05rg8gm93 Hôtel-Dieu Grace Healthcare'), (64853, 'https://ror.org/05rmea943', 'en', 1, 'https://ror.org/05rmea943 International Society for Heart Research'), (64854, 'https://ror.org/05rnrcn92', 'en', 1, 'https://ror.org/05rnrcn92 Counterpart'), (64855, 'https://ror.org/05rnt2n49', 'no_lang_code', 1, 'https://ror.org/05rnt2n49 National Power (United Kingdom)'), (64856, 'https://ror.org/05rpby975', 'en', 1, 'https://ror.org/05rpby975 Chios Mastiha Growers Association'), (64857, 'https://ror.org/05rpe4a45', 'en', 1, 'https://ror.org/05rpe4a45 Nebraska State College System'), (64858, 'https://ror.org/05rtjbe93', 'de', 1, 'https://ror.org/05rtjbe93 Asklepios Orthopädische Klinik Lindenlohe'), (64859, 'https://ror.org/05rtpzn26', 'pt', 1, 'https://ror.org/05rtpzn26 Centro Hospitalar do Baixo Vouga'), (64860, 'https://ror.org/05rtsqz84', 'en', 1, 'https://ror.org/05rtsqz84 Ben''s Dream'), (64861, 'https://ror.org/05s2x3814', 'en', 1, 'https://ror.org/05s2x3814 Recfishwest'), (64862, 'https://ror.org/05s409k40', 'en', 1, 'https://ror.org/05s409k40 University School of Nashville'), (64863, 'https://ror.org/05s432v08', 'en', 1, 'https://ror.org/05s432v08 Institute of Vaccine and Medical Biologicals'), (64864, 'https://ror.org/05sa02996', 'en', 1, 'https://ror.org/05sa02996 The Institute of Aesthetic Surgery'), (64865, 'https://ror.org/05sa2hd66', 'en', 1, 'https://ror.org/05sa2hd66 Academic Medical Research Institute'), (64866, 'https://ror.org/05scpew87', 'de', 1, 'https://ror.org/05scpew87 St. Josefskrankenhaus Freiburg'), (64867, 'https://ror.org/05sdkg034', 'no_lang_code', 1, 'https://ror.org/05sdkg034 Boehringer Ingelheim (Argentina)'), (64868, 'https://ror.org/05set4688', 'en', 1, 'https://ror.org/05set4688 Aria - Jefferson Health'), (64869, 'https://ror.org/05sf78r66', 'en', 1, 'https://ror.org/05sf78r66 Organizations Concerned About Rural Education'), (64870, 'https://ror.org/05sgvn942', 'en', 1, 'https://ror.org/05sgvn942 Valor Health'), (64871, 'https://ror.org/05sgz5r12', 'da', 1, 'https://ror.org/05sgz5r12 Ensomme Gamles Vaern'), (64872, 'https://ror.org/05sj77784', 'en', 1, 'https://ror.org/05sj77784 Dutch Hospital Association'), (64873, 'https://ror.org/05sjtd719', 'en', 1, 'https://ror.org/05sjtd719 Southern Oregon Public Television'), (64874, 'https://ror.org/05smc1464', 'fr', 1, 'https://ror.org/05smc1464 Association Nationale d’Aide aux personnes Handicapées'), (64875, 'https://ror.org/05sqsny02', 'no_lang_code', 1, 'https://ror.org/05sqsny02 Lophius Biosciences (Germany)'), (64876, 'https://ror.org/05svdww41', 'en', 1, 'https://ror.org/05svdww41 University Hospital Medical Center Bezanijska kosa'), (64877, 'https://ror.org/05sw1mq09', 'en', 1, 'https://ror.org/05sw1mq09 Clinical Research Center Kiel'), (64878, 'https://ror.org/05sxgd993', 'de', 1, 'https://ror.org/05sxgd993 Stiftung Leben mit Krebs'), (64879, 'https://ror.org/05syayg48', 'en', 1, 'https://ror.org/05syayg48 Wyoming Outdoor Council'), (64880, 'https://ror.org/05t04rb70', 'en', 1, 'https://ror.org/05t04rb70 National Consumer Law Center'), (64881, 'https://ror.org/05t1byf51', 'en', 1, 'https://ror.org/05t1byf51 Ohio Physical Therapy Association'), (64882, 'https://ror.org/05t3agv77', 'en', 1, 'https://ror.org/05t3agv77 American University of Beirut New York Office'), (64883, 'https://ror.org/05t3jtz40', 'en', 1, 'https://ror.org/05t3jtz40 Baltimore Symphony Orchestra'), (64884, 'https://ror.org/05t6cb670', 'no_lang_code', 1, 'https://ror.org/05t6cb670 MetaX - Institut für Diätetik (Germany)'), (64885, 'https://ror.org/05taw7c97', 'no_lang_code', 1, 'https://ror.org/05taw7c97 NanoCarrier (Japan) ナノキャリア株式会社'), (64886, 'https://ror.org/05tb20n61', 'no_lang_code', 1, 'https://ror.org/05tb20n61 AquaMatrix International (United States)'), (64887, 'https://ror.org/05teqzw32', 'tr', 1, 'https://ror.org/05teqzw32 Özel Ankara Umut Hastanesi'), (64888, 'https://ror.org/05teweq93', 'en', 1, 'https://ror.org/05teweq93 Androgen Excess and PCOS Society'), (64889, 'https://ror.org/05tfxp741', 'en', 1, 'https://ror.org/05tfxp741 Ocean Road Cancer Institute'), (64890, 'https://ror.org/05tg5qm65', 'en', 1, 'https://ror.org/05tg5qm65 Stiles Eyecare Excellence'), (64891, 'https://ror.org/05tgjcd06', 'en', 1, 'https://ror.org/05tgjcd06 National Institute of Brain and Rehabilitation Sciences'), (64892, 'https://ror.org/05tja9q19', 'no_lang_code', 1, 'https://ror.org/05tja9q19 Teva Pharmaceuticals (Spain)'), (64893, 'https://ror.org/05tkcx517', 'no_lang_code', 1, 'https://ror.org/05tkcx517 Töpfer (Germany)'), (64894, 'https://ror.org/05tma9m39', 'de', 1, 'https://ror.org/05tma9m39 An-Institut für Qualitätssicherung in der operativen Medizin'), (64895, 'https://ror.org/05tmk0k30', 'en', 1, 'https://ror.org/05tmk0k30 Massachusetts Health & Hospital Association'), (64896, 'https://ror.org/05tn6ve98', 'en', 1, 'https://ror.org/05tn6ve98 First Dayton CyberKnife'), (64897, 'https://ror.org/05tr65377', 'en', 1, 'https://ror.org/05tr65377 Associates in Women’s Health'), (64898, 'https://ror.org/05trqa150', 'en', 1, 'https://ror.org/05trqa150 CHRISTUS St. Frances Cabrini Hospital'), (64899, 'https://ror.org/05tt0dn44', 'en', 1, 'https://ror.org/05tt0dn44 Alesco Concepts'), (64900, 'https://ror.org/05tt58068', 'en', 1, 'https://ror.org/05tt58068 Nevin Scrimshaw International Nutrition Foundation'), (64901, 'https://ror.org/05ty23t08', 'en', 1, 'https://ror.org/05ty23t08 The Neurological Institute'), (64902, 'https://ror.org/05ty37s47', 'en', 1, 'https://ror.org/05ty37s47 Clinical Hospital No 122 named after. L.G.Sokolova'), (64903, 'https://ror.org/05v0wb549', 'en', 1, 'https://ror.org/05v0wb549 Kieve-Wavus Education'), (64904, 'https://ror.org/05v1v4z83', 'en', 1, 'https://ror.org/05v1v4z83 Jesse’s Journey – The Foundation for Gene and Cell Therapy'), (64905, 'https://ror.org/05v4fng20', 'fr', 1, 'https://ror.org/05v4fng20 Association Française pour la Recherche Thermale'), (64906, 'https://ror.org/05v54nj07', 'en', 1, 'https://ror.org/05v54nj07 Finnish Research Foundation for Orthopaedics and Traumatology Ortopedian ja traumatologian tutkimussäätiö'), (64907, 'https://ror.org/05v57yz73', 'en', 1, 'https://ror.org/05v57yz73 Against Abuse'), (64908, 'https://ror.org/05v5gb241', 'en', 1, 'https://ror.org/05v5gb241 Carolina Arthritis Associates'), (64909, 'https://ror.org/05v5gqt78', 'en', 1, 'https://ror.org/05v5gqt78 International Spine, Pain & Performance'), (64910, 'https://ror.org/05v6ze002', 'de', 1, 'https://ror.org/05v6ze002 Energieinstitut Vorarlberg'), (64911, 'https://ror.org/05v7vyj84', 'en', 1, 'https://ror.org/05v7vyj84 American Orthotic and Prosthetic Association'), (64912, 'https://ror.org/05v8dvy39', 'no_lang_code', 1, 'https://ror.org/05v8dvy39 Essentium Materials (United States)'), (64913, 'https://ror.org/05v8yha51', 'en', 1, 'https://ror.org/05v8yha51 Institute for Urban Indigenous Health'), (64914, 'https://ror.org/05vbevg81', 'en', 1, 'https://ror.org/05vbevg81 Kaiser Permanente San Jose Medical Center'), (64915, 'https://ror.org/05vbgdg34', 'en', 1, 'https://ror.org/05vbgdg34 Central Texas Spine Institute'), (64916, 'https://ror.org/05vcqrs05', 'de', 1, 'https://ror.org/05vcqrs05 Rehaklinik Zihlschlacht'), (64917, 'https://ror.org/05vctz765', 'en', 1, 'https://ror.org/05vctz765 Arthritis Northwest'), (64918, 'https://ror.org/05vfzkq36', 'en', 1, 'https://ror.org/05vfzkq36 National Association of Counties'), (64919, 'https://ror.org/05vg37x37', 'en', 1, 'https://ror.org/05vg37x37 Saint Alphonsus Medical Center'), (64920, 'https://ror.org/05vgtss27', 'en', 1, 'https://ror.org/05vgtss27 C Care Orthopedics'), (64921, 'https://ror.org/05vhw2a70', 'en', 1, 'https://ror.org/05vhw2a70 Institute of Kidney Lifescience Technologies'), (64922, 'https://ror.org/05vmsw483', 'en', 1, 'https://ror.org/05vmsw483 Minnesota Oncology'), (64923, 'https://ror.org/05vnpr825', 'en', 1, 'https://ror.org/05vnpr825 Linear Clinical Research'), (64924, 'https://ror.org/05vp7ha71', 'en', 1, 'https://ror.org/05vp7ha71 Thrombolysis in Myocardial Infarction Study Group'), (64925, 'https://ror.org/05vpy0b11', 'no_lang_code', 1, 'https://ror.org/05vpy0b11 Integrative Health Technologies (United States)'), (64926, 'https://ror.org/05vstp197', 'en', 1, 'https://ror.org/05vstp197 Association of American Cancer Institutes'), (64927, 'https://ror.org/05vtewd28', 'no_lang_code', 1, 'https://ror.org/05vtewd28 Chiasma (United States)'), (64928, 'https://ror.org/05vvd0y68', 'en', 1, 'https://ror.org/05vvd0y68 Alzheimer Society London Middlesex'), (64929, 'https://ror.org/05vvryp86', 'de', 1, 'https://ror.org/05vvryp86 Deutsches Zentrum für Musiktherapieforschung'), (64930, 'https://ror.org/05vx20690', 'es', 1, 'https://ror.org/05vx20690 Sociedad Española de Patología Digestiva'), (64931, 'https://ror.org/05vxg1z76', 'no_lang_code', 1, 'https://ror.org/05vxg1z76 Physeon (Switzerland)'), (64932, 'https://ror.org/05w107e31', 'en', 1, 'https://ror.org/05w107e31 Great Lakes Clinical Trials'), (64933, 'https://ror.org/05w1qwk94', 'en', 1, 'https://ror.org/05w1qwk94 Kaiser Permanente Vacaville Medical Center'), (64934, 'https://ror.org/05w3d1m46', 'de', 1, 'https://ror.org/05w3d1m46 Österreichische Gesellschaft für Anästhesiologie, Reanimation und Intensivmedizin'), (64935, 'https://ror.org/05w3mbc13', 'no_lang_code', 1, 'https://ror.org/05w3mbc13 Shenzhen Hanke Bioengineering (China)'), (64936, 'https://ror.org/05w7fem48', 'en', 1, 'https://ror.org/05w7fem48 South Bronx Overall Economic Development'), (64937, 'https://ror.org/05w8yzs02', 'es', 1, 'https://ror.org/05w8yzs02 Innpulsa'), (64938, 'https://ror.org/05w9jxk76', 'es', 1, 'https://ror.org/05w9jxk76 Nueva Opción'), (64939, 'https://ror.org/05wbdm460', 'en', 1, 'https://ror.org/05wbdm460 Swiss Ankylosing Spondylitis Association'), (64940, 'https://ror.org/05wcjxp35', 'no_lang_code', 1, 'https://ror.org/05wcjxp35 Great Minds in STEM (United States)'), (64941, 'https://ror.org/05wd4ca48', 'en', 1, 'https://ror.org/05wd4ca48 Nikiforov Russian Center of Emergency and Radiation Medicine Никифоров Российский центр экстренной и радиационной медицины'), (64942, 'https://ror.org/05wdzq856', 'en', 1, 'https://ror.org/05wdzq856 Institute for Atherosclerosis Research'), (64943, 'https://ror.org/05we0sj60', 'en', 1, 'https://ror.org/05we0sj60 Food Research and Development Institute Институт за изследване и развитие на храните'), (64944, 'https://ror.org/05wgs8j78', 'en', 1, 'https://ror.org/05wgs8j78 Northwest Oklahoma Osteopathic Foundation'), (64945, 'https://ror.org/05whcgs91', 'no_lang_code', 1, 'https://ror.org/05whcgs91 Picosense (United States)'), (64946, 'https://ror.org/05wk1qp57', 'ro', 1, 'https://ror.org/05wk1qp57 Fundaţia pentru Formare Profesională şi Învăţământ Preuniversitar - Viitor'), (64947, 'https://ror.org/05wk4ae67', 'no_lang_code', 1, 'https://ror.org/05wk4ae67 Servier (Germany)'), (64948, 'https://ror.org/05wry3s62', 'en', 1, 'https://ror.org/05wry3s62 Prader Willi Syndrome Association'), (64949, 'https://ror.org/05wsbcr05', 'de', 1, 'https://ror.org/05wsbcr05 Medprevent Ottobrunn'), (64950, 'https://ror.org/05wsh0y70', 'en', 1, 'https://ror.org/05wsh0y70 Williams Plastic Surgery Specialists'), (64951, 'https://ror.org/05wwhq151', 'de', 1, 'https://ror.org/05wwhq151 Technologiestiftung Berlin, Technologiestiftung Innovationszentrum Berlin'), (64952, 'https://ror.org/05wz0rz65', 'fr', 1, 'https://ror.org/05wz0rz65 Association Sahélienne de Recherche Appliquée pour le Développement Durable'), (64953, 'https://ror.org/05wzgbw88', 'en', 1, 'https://ror.org/05wzgbw88 Mitsukoshi Health and Welfare Foundation 財団法人三越厚生事業団'), (64954, 'https://ror.org/05x0bqw91', 'en', 1, 'https://ror.org/05x0bqw91 Infectious Diseases and the Research Institute'), (64955, 'https://ror.org/05x1ves75', 'en', 1, 'https://ror.org/05x1ves75 NHS Fife'), (64956, 'https://ror.org/05x4n5887', 'en', 1, 'https://ror.org/05x4n5887 Information Systems Audit and Control Association'), (64957, 'https://ror.org/05x5j6e28', 'en', 1, 'https://ror.org/05x5j6e28 The Hospital of Central Connecticut'), (64958, 'https://ror.org/05x6pvv95', 'en', 1, 'https://ror.org/05x6pvv95 Retina Institute'), (64959, 'https://ror.org/05x6vad86', 'en', 1, 'https://ror.org/05x6vad86 Save by Seva Foundation Stichting Save by Seva'), (64960, 'https://ror.org/05x9nc097', 'en', 1, 'https://ror.org/05x9nc097 Xiamen Maternal and Child Health Hospital 厦门妇幼保健院'), (64961, 'https://ror.org/05xc9cz73', 'en', 1, 'https://ror.org/05xc9cz73 Nutraveris'), (64962, 'https://ror.org/05xd60306', 'en', 1, 'https://ror.org/05xd60306 Yulin Orthopedics Hospital of Chinese and Western Medicine 玉林市中西医结合骨科医院是'), (64963, 'https://ror.org/05xenh663', 'en', 1, 'https://ror.org/05xenh663 Kaiser Permanente Tysons Corner Medical Center'), (64964, 'https://ror.org/05xet3f85', 'en', 1, 'https://ror.org/05xet3f85 Interlochen Center for the Arts'), (64965, 'https://ror.org/05xfh8p29', 'no_lang_code', 1, 'https://ror.org/05xfh8p29 Baoji City Central Hospital 宝鸡市中心医院'), (64966, 'https://ror.org/05xgv5563', 'de', 1, 'https://ror.org/05xgv5563 Tauern Hospital Zell am See, Tauernkrankenhaus Zell am See'), (64967, 'https://ror.org/05xn2x639', 'no_lang_code', 1, 'https://ror.org/05xn2x639 Curacyte (Germany)'), (64968, 'https://ror.org/05xp1nk14', 'no_lang_code', 1, 'https://ror.org/05xp1nk14 Isarna Therapeutics (Germany)'), (64969, 'https://ror.org/05xqrcz80', 'no_lang_code', 1, 'https://ror.org/05xqrcz80 Lundbeck (Italy)'), (64970, 'https://ror.org/05xrv5316', 'en', 1, 'https://ror.org/05xrv5316 Hellenic Osteoporosis Foundation Ελληνικό Ίδρυμα Οστεοπόρωσης'), (64971, 'https://ror.org/05xs81d10', 'no_lang_code', 1, 'https://ror.org/05xs81d10 "Hadji Dimitar" Hospital MHAT “Hadji Dimitar” МБАЛ "Хаджи Димитър"'), (64972, 'https://ror.org/05xte2s27', 'de', 1, 'https://ror.org/05xte2s27 Institut für Versorgungsforschung in der Onkologie'), (64973, 'https://ror.org/05xv38e59', 'no_lang_code', 1, 'https://ror.org/05xv38e59 Brf (Brazil)'), (64974, 'https://ror.org/05xvh6h11', 'es', 1, 'https://ror.org/05xvh6h11 Los Comuneros Hospital Universitario de Bucaramanga'), (64975, 'https://ror.org/05xwdg192', 'en', 1, 'https://ror.org/05xwdg192 Southern Ohio Medical Center'), (64976, 'https://ror.org/05xzd4n85', 'nl', 1, 'https://ror.org/05xzd4n85 Stichting Roomsch Catholyk Oude Armen kantoor'), (64977, 'https://ror.org/05xzsm645', 'en', 1, 'https://ror.org/05xzsm645 Trung Vuong University Đại học Trưng Vương'), (64978, 'https://ror.org/05y09dk26', 'en', 1, 'https://ror.org/05y09dk26 Samara Regional Clinical Oncology Center Самарский областной клинический онкологический диспансер'), (64979, 'https://ror.org/05y1zs562', 'en', 1, 'https://ror.org/05y1zs562 404 General Military Hospital 404 Γενικό Στρατιωτικό Νοσοκομείο'), (64980, 'https://ror.org/05y6ppz60', 'en', 1, 'https://ror.org/05y6ppz60 Don Harrington Discovery Center'), (64981, 'https://ror.org/05y6zv446', 'en', 1, 'https://ror.org/05y6zv446 Capio Clinic in the Park Capio Klinik im Park'), (64982, 'https://ror.org/05y75g627', 'fr', 1, 'https://ror.org/05y75g627 Association des Familles de Traumatisés Crâniens d''Alsace'), (64983, 'https://ror.org/05y7rdz72', 'sl', 1, 'https://ror.org/05y7rdz72 Očesna Klinika UKC Ljubljana'), (64984, 'https://ror.org/05y895e77', 'de', 1, 'https://ror.org/05y895e77 Landesuntersuchungsanstalt Sachsen'), (64985, 'https://ror.org/05y8mf384', 'it', 1, 'https://ror.org/05y8mf384 Centro Interuniversitario di Ricerca Per lo Sviluppo sostenibile'), (64986, 'https://ror.org/05y922z47', 'en', 1, 'https://ror.org/05y922z47 Leonardis Foundation'), (64987, 'https://ror.org/05y9nr091', 'en', 1, 'https://ror.org/05y9nr091 Arts OutWest'), (64988, 'https://ror.org/05ya6s054', 'en', 1, 'https://ror.org/05ya6s054 Canadian Foundation for Dental Hygiene Research and Education'), (64989, 'https://ror.org/05ya9gp75', 'no_lang_code', 1, 'https://ror.org/05ya9gp75 Winston Pharmaceuticals (United States)'), (64990, 'https://ror.org/05ye26511', 'no_lang_code', 1, 'https://ror.org/05ye26511 TechSolve (United States)'), (64991, 'https://ror.org/05yf87y86', 'en', 1, 'https://ror.org/05yf87y86 Juvenile Protective Association'), (64992, 'https://ror.org/05ygse102', 'no_lang_code', 1, 'https://ror.org/05ygse102 Shell (Germany)'), (64993, 'https://ror.org/05yh2yz22', 'de', 1, 'https://ror.org/05yh2yz22 Krankenhaus Jerusalem'), (64994, 'https://ror.org/05yh4az66', 'no_lang_code', 1, 'https://ror.org/05yh4az66 Instant Advice (Sweden)'), (64995, 'https://ror.org/05yhpvt92', 'en', 1, 'https://ror.org/05yhpvt92 IHA Hematology Oncology Consultants'), (64996, 'https://ror.org/05yjkn316', 'en', 1, 'https://ror.org/05yjkn316 Hamburg Institute for Therapy Research Hamburger Institut für Therapieforschung'), (64997, 'https://ror.org/05ykvn529', 'en', 1, 'https://ror.org/05ykvn529 Manhattan Psychiatric Center'), (64998, 'https://ror.org/05ymjt203', 'no_lang_code', 1, 'https://ror.org/05ymjt203 Kedrion (Italy)'), (64999, 'https://ror.org/05yp06a73', 'de', 1, 'https://ror.org/05yp06a73 Schweizerische Gesellschaft für Pulmonale Hypertonie'), (65000, 'https://ror.org/05ypvb778', 'no_lang_code', 1, 'https://ror.org/05ypvb778 Novintethical Pharma (Switzerland)'), (65001, 'https://ror.org/00008m859', 'no_lang_code', 1, 'https://ror.org/00008m859 3-Sci (United Kingdom)'), (65002, 'https://ror.org/0001g7380', 'en', 1, 'https://ror.org/0001g7380 Research Institute "Vector" Научно-исследовательский институт "Вектор"'), (65003, 'https://ror.org/000245824', 'en', 1, 'https://ror.org/000245824 Future Human Resources Research Institute 미래 인적 자원 연구소'), (65004, 'https://ror.org/000275q75', 'en', 1, 'https://ror.org/000275q75 Department of Public Service'), (65005, 'https://ror.org/00032t641', 'en', 1, 'https://ror.org/00032t641 Surya Hospitals सूर्या हॉस्पिटल्स'), (65006, 'https://ror.org/000372389', 'en', 1, 'https://ror.org/000372389 Intellectual Property Institute'), (65007, 'https://ror.org/0003ang68', 'en', 1, 'https://ror.org/0003ang68 Federal Forestry Agency of Russia Федеральная лесная служба России'), (65008, 'https://ror.org/0006wrh30', 'en', 1, 'https://ror.org/0006wrh30 Consejo Oleícola Internacional International Olive Council'), (65009, 'https://ror.org/0007q9r82', 'no_lang_code', 1, 'https://ror.org/0007q9r82 NiCADa Research & Development (China)'), (65010, 'https://ror.org/0009f0p28', 'en', 1, 'https://ror.org/0009f0p28 Wuxi Municipal Product Quality Supervision and Inspection Institute 无锡市产品质量监督检验院'), (65011, 'https://ror.org/000ak5281', 'en', 1, 'https://ror.org/000ak5281 Missouri Department of Public Safety'), (65012, 'https://ror.org/000exqh08', 'no_lang_code', 1, 'https://ror.org/000exqh08 Azis Mining Service (Poland)'), (65013, 'https://ror.org/000ffa622', 'en', 1, 'https://ror.org/000ffa622 Patriarchal Institute of Patristic Studies Πατριαρχικόν Ιδρυμα Πατερικών Μελετών'), (65014, 'https://ror.org/000h77t05', 'en', 1, 'https://ror.org/000h77t05 Songdo Hospital 서울송도병원'), (65015, 'https://ror.org/000hc5726', 'no_lang_code', 1, 'https://ror.org/000hc5726 First Design and Research Institute MI China (China) 中国第一设计研究院'), (65016, 'https://ror.org/000hew328', 'no_lang_code', 1, 'https://ror.org/000hew328 Knowles (United States)'), (65017, 'https://ror.org/000j5qy96', 'no_lang_code', 1, 'https://ror.org/000j5qy96 AdvanPro (China)'), (65018, 'https://ror.org/000jxr567', 'en', 1, 'https://ror.org/000jxr567 Association of Independent Museums'), (65019, 'https://ror.org/000m4se28', 'en', 1, 'https://ror.org/000m4se28 Aerospace Research Institute پژوهشگاه هوافضا'), (65020, 'https://ror.org/000n8h147', 'no_lang_code', 1, 'https://ror.org/000n8h147 Fripp Design (United Kingdom)'), (65021, 'https://ror.org/000p6eh83', 'en', 1, 'https://ror.org/000p6eh83 Rio Grande Council of Governments'), (65022, 'https://ror.org/000qm5821', 'no_lang_code', 1, 'https://ror.org/000qm5821 Chain Biotechnology (United Kingdom)'), (65023, 'https://ror.org/000qr7b45', 'en', 1, 'https://ror.org/000qr7b45 Directorate of Health'), (65024, 'https://ror.org/000tk0v89', 'no_lang_code', 1, 'https://ror.org/000tk0v89 Giprotyumenneftegaz (Russia) Гипротюменнефтегаз'), (65025, 'https://ror.org/000vg1h78', 'en', 1, 'https://ror.org/000vg1h78 Beijing Institute of Nutritional Sources 北京市营养源研究所'), (65026, 'https://ror.org/000wc3348', 'en', 1, 'https://ror.org/000wc3348 Guangdong Machinery Research Institute 广东省机械研究所'), (65027, 'https://ror.org/000z10w71', 'en', 1, 'https://ror.org/000z10w71 Boston Landmarks Commission'), (65028, 'https://ror.org/001398926', 'en', 1, 'https://ror.org/001398926 Balshaw’s Church of England High School'), (65029, 'https://ror.org/0013rer79', 'no_lang_code', 1, 'https://ror.org/0013rer79 Ningbo Transportation Planning and Design Institute (China)'), (65030, 'https://ror.org/00142p479', 'en', 1, 'https://ror.org/00142p479 Institute for Human Development'), (65031, 'https://ror.org/00146qx36', 'en', 1, 'https://ror.org/00146qx36 Jiujiang Vocational University 九江职业大学'), (65032, 'https://ror.org/0014sb331', 'en', 1, 'https://ror.org/0014sb331 Suncheon Jeil College 순천제일대학교'), (65033, 'https://ror.org/0014vc978', 'en', 1, 'https://ror.org/0014vc978 Shanxi Provincial Traffic Planning Survey and Design Institute 山西省交通规划勘察设计院'), (65034, 'https://ror.org/00153ex82', 'no_lang_code', 1, 'https://ror.org/00153ex82 Socotec (United Kingdom)'), (65035, 'https://ror.org/001561737', 'en', 1, 'https://ror.org/001561737 Research Institute Orion'), (65036, 'https://ror.org/00169v428', 'en', 1, 'https://ror.org/00169v428 The Sitia Development Organisation Ο Οργανισμός Ανάπτυξης Σητείας'), (65037, 'https://ror.org/0017thv62', 'en', 1, 'https://ror.org/0017thv62 The Korean Social and Personality Psychological Association 한국 사회 및 인성 심리 학회'), (65038, 'https://ror.org/0018yg518', 'en', 1, 'https://ror.org/0018yg518 Phoenix Bioinformatics'), (65039, 'https://ror.org/0018ymk77', 'no_lang_code', 1, 'https://ror.org/0018ymk77 Sibtsvetmetniiproekt СИБЦВЕТМЕТНИИПРОЕКТ'), (65040, 'https://ror.org/0019q7242', 'en', 1, 'https://ror.org/0019q7242 Ural Scientific Research Institute of Dermatovenerology and Immunopathology'), (65041, 'https://ror.org/001amex23', 'en', 1, 'https://ror.org/001amex23 Missouri Secretary of State''s Office'), (65042, 'https://ror.org/001d11g88', 'en', 1, 'https://ror.org/001d11g88 Agricultural Research Institute for South-East Region Научно-исследовательский институт сельского хозяйства Юго-Восточного'), (65043, 'https://ror.org/001dvnn52', 'en', 1, 'https://ror.org/001dvnn52 Financial Conduct Authority'), (65044, 'https://ror.org/001e26h79', 'en', 1, 'https://ror.org/001e26h79 All-Russian Scientific Research Institute of Soybean Всероссийский научно-исследовательский институт сои'), (65045, 'https://ror.org/001eccs90', 'no_lang_code', 1, 'https://ror.org/001eccs90 Amadeus Capital Partners (United Kingdom)'), (65046, 'https://ror.org/001ej4640', 'en', 1, 'https://ror.org/001ej4640 Dignitas International'), (65047, 'https://ror.org/001eqde88', 'en', 1, 'https://ror.org/001eqde88 Z.V.M.Unani Medical College & Hospital'), (65048, 'https://ror.org/001h7kn14', 'no_lang_code', 1, 'https://ror.org/001h7kn14 Hefei Design and Research Institute of Coal Industry (China) 煤炭工业合肥设计研究院'), (65049, 'https://ror.org/001hkh847', 'en', 1, 'https://ror.org/001hkh847 Sorabol College 서라벌대학'), (65050, 'https://ror.org/001hybk69', 'en', 1, 'https://ror.org/001hybk69 Association of German Banks Bundesverband deutscher Banken'), (65051, 'https://ror.org/001kca336', 'no_lang_code', 1, 'https://ror.org/001kca336 Encirc (United Kingdom)'), (65052, 'https://ror.org/001kj9s64', 'en', 1, 'https://ror.org/001kj9s64 Bristol Natural History Consortium'), (65053, 'https://ror.org/001ky3808', 'no_lang_code', 1, 'https://ror.org/001ky3808 Allford Hall Monaghan Morris (United Kingdom)'), (65054, 'https://ror.org/001rebv08', 'en', 1, 'https://ror.org/001rebv08 People''s Bank of China 中国人民银行'), (65055, 'https://ror.org/001x3nr42', 'en', 1, 'https://ror.org/001x3nr42 The BE Vedeneev All Russia Institute of Hydraulic Engineering Всероссийский научно-исследовательский институт гидротехники имени Б.Е. Веденеева'), (65056, 'https://ror.org/001x6t991', 'no_lang_code', 1, 'https://ror.org/001x6t991 Immaterial Labs (United Kingdom)'), (65057, 'https://ror.org/001xr1669', 'en', 1, 'https://ror.org/001xr1669 Gansu Provincial Academy of Membrane Science and Technology 甘肃省膜科学技术研究院'), (65058, 'https://ror.org/001xv6k34', 'no_lang_code', 1, 'https://ror.org/001xv6k34 Oran Pre-Cast (Ireland)'), (65059, 'https://ror.org/001z3ck59', 'no_lang_code', 1, 'https://ror.org/001z3ck59 Jiangsu Institute of Ecomones (China) 江苏省激素研究所'), (65060, 'https://ror.org/0020kar26', 'en', 1, 'https://ror.org/0020kar26 Galway Film Centre'), (65061, 'https://ror.org/00247dx40', 'no_lang_code', 1, 'https://ror.org/00247dx40 Tatung (Taiwan) 大同股份有限公司'), (65062, 'https://ror.org/0024e4j94', 'no_lang_code', 1, 'https://ror.org/0024e4j94 China Financial Services Holdings (China) 中國金融投資管理有限公司'), (65063, 'https://ror.org/00251mh42', 'no_lang_code', 1, 'https://ror.org/00251mh42 Amonics (China)'), (65064, 'https://ror.org/0025ycf95', 'no_lang_code', 1, 'https://ror.org/0025ycf95 Pivotal (Spain)'), (65065, 'https://ror.org/0026yhs27', 'no_lang_code', 1, 'https://ror.org/0026yhs27 China Resources (China) 華潤集團'), (65066, 'https://ror.org/0028eqh41', 'en', 1, 'https://ror.org/0028eqh41 Recovery Institute of Southwest Michigan'), (65067, 'https://ror.org/0029tjt59', 'no_lang_code', 1, 'https://ror.org/0029tjt59 Milescan Technologies (China)'), (65068, 'https://ror.org/002a2eq29', 'no_lang_code', 1, 'https://ror.org/002a2eq29 Zynga (United States)'), (65069, 'https://ror.org/002da4m58', 'en', 1, 'https://ror.org/002da4m58 Korean Bible Society 한국 성서 공회'), (65070, 'https://ror.org/002f4va27', 'no_lang_code', 1, 'https://ror.org/002f4va27 JW Shinyak (South Korea) JW신약'), (65071, 'https://ror.org/002fe3c26', 'no_lang_code', 1, 'https://ror.org/002fe3c26 VTRON (China) 威创'), (65072, 'https://ror.org/002fqzg39', 'en', 1, 'https://ror.org/002fqzg39 Military Institute Иркутское высшее военное авиационное инженерное училище'), (65073, 'https://ror.org/002gcqm12', 'en', 1, 'https://ror.org/002gcqm12 State Tax Inspectorate Valstybinė Mokesčių Inspekcija'), (65074, 'https://ror.org/002j3c366', 'en', 1, 'https://ror.org/002j3c366 Hong Kong Wireless Technology Industry Association 香港无线科技工业协会'), (65075, 'https://ror.org/002jr8r89', 'en', 1, 'https://ror.org/002jr8r89 Public Service Development Agency სახელმწიფო სერვისების განვითარების სააგენტო'), (65076, 'https://ror.org/002k1r174', 'en', 1, 'https://ror.org/002k1r174 State-owned Assets Supervision and Administration Commission of the State Council 国务院国有资产监督管理委员会'), (65077, 'https://ror.org/002mt0228', 'no_lang_code', 1, 'https://ror.org/002mt0228 Eltis Microelectronics (China)'), (65078, 'https://ror.org/002mzw222', 'en', 1, 'https://ror.org/002mzw222 Cape Coast Technical University'), (65079, 'https://ror.org/002nnaj78', 'no_lang_code', 1, 'https://ror.org/002nnaj78 Walgreens Boots Alliance (United States)'), (65080, 'https://ror.org/002pjp005', 'en', 1, 'https://ror.org/002pjp005 Baltic Marine Environment Protection Commission'), (65081, 'https://ror.org/002qybp75', 'en', 1, 'https://ror.org/002qybp75 National Institute of Measurement and Testing Technology 中国测试技术研究院'), (65082, 'https://ror.org/002r94d59', 'en', 1, 'https://ror.org/002r94d59 Mediolanum Cardio Research'), (65083, 'https://ror.org/002tj9208', 'en', 1, 'https://ror.org/002tj9208 Construction Industry Council'), (65084, 'https://ror.org/002xf8h28', 'en', 1, 'https://ror.org/002xf8h28 Tobacco Harm Reduction 4 Life'), (65085, 'https://ror.org/002xt1d94', 'en', 1, 'https://ror.org/002xt1d94 Korea Reformed Theological Society 한국 개혁 신학회'), (65086, 'https://ror.org/002ywyv05', 'no_lang_code', 1, 'https://ror.org/002ywyv05 Icax (United Kingdom)'), (65087, 'https://ror.org/002z7gg85', 'en', 1, 'https://ror.org/002z7gg85 Department of the Taoiseach Roinn an Taoisigh'), (65088, 'https://ror.org/002zm9348', 'no_lang_code', 1, 'https://ror.org/002zm9348 VNIIGIS исследовательский и проектно-конструкторский институт геофизических исследований геологоразведочных скважин['), (65089, 'https://ror.org/0032hsp73', 'no_lang_code', 1, 'https://ror.org/0032hsp73 Athenex (China)'), (65090, 'https://ror.org/0033kcc14', 'en', 1, 'https://ror.org/0033kcc14 Canadian Organization for Rare Disorders'), (65091, 'https://ror.org/0034dyb91', 'no_lang_code', 1, 'https://ror.org/0034dyb91 ThyssenKrupp (China) 蒂森克虏伯股份公司'), (65092, 'https://ror.org/00380qe69', 'fr', 1, 'https://ror.org/00380qe69 Comité Champagne, Comité Interprofessionnel du vin de Champagne'), (65093, 'https://ror.org/003cp7918', 'en', 1, 'https://ror.org/003cp7918 Shanghai Micro Satellite Engineering Center 上海微型卫星工程中心'), (65094, 'https://ror.org/003d4z032', 'en', 1, 'https://ror.org/003d4z032 World Music Institute'), (65095, 'https://ror.org/003da0193', 'no_lang_code', 1, 'https://ror.org/003da0193 Atlantis Resources (United Kingdom)'), (65096, 'https://ror.org/003dqz155', 'en', 1, 'https://ror.org/003dqz155 Indiana Professional Licensing Agency'), (65097, 'https://ror.org/003eds368', 'no_lang_code', 1, 'https://ror.org/003eds368 Samsung Pharm (South Korea) 삼성제약㈜'), (65098, 'https://ror.org/003f1a217', 'no_lang_code', 1, 'https://ror.org/003f1a217 Bizconline (China)'), (65099, 'https://ror.org/003f9k191', 'en', 1, 'https://ror.org/003f9k191 Gem Arts'), (65100, 'https://ror.org/003f9vj48', 'no_lang_code', 1, 'https://ror.org/003f9vj48 Bauman Lyons Architects (United Kingdom)'), (65101, 'https://ror.org/003gcpg05', 'en', 1, 'https://ror.org/003gcpg05 Institute of Superhigh-Frequency Semiconductor Electronics of the Russian Academy of Sciences Институт микроволновой полупроводниковой электроники РАН'), (65102, 'https://ror.org/003gy5515', 'en', 1, 'https://ror.org/003gy5515 Biology Institute of Shandong Academy of Sciences 山东省科学院生物研究所'), (65103, 'https://ror.org/003jehd84', 'en', 1, 'https://ror.org/003jehd84 Cromarty Firth Fishery Board'), (65104, 'https://ror.org/003k32q32', 'no_lang_code', 1, 'https://ror.org/003k32q32 Ctrip'), (65105, 'https://ror.org/003km8q97', 'en', 1, 'https://ror.org/003km8q97 Hong Kong Opto-Mechatronics Industries Association 香港中華眼鏡製造廠商會有限公司'), (65106, 'https://ror.org/003mgr108', 'de', 1, 'https://ror.org/003mgr108 Bundesverband Photovoltaic Austria'), (65107, 'https://ror.org/003mmwh92', 'en', 1, 'https://ror.org/003mmwh92 Korean Musicological Society 한국국악학회'), (65108, 'https://ror.org/003p49p42', 'no_lang_code', 1, 'https://ror.org/003p49p42 Fundamentproekt (Russia) Фундаментпроект'), (65109, 'https://ror.org/003rwad73', 'de', 1, 'https://ror.org/003rwad73 Bundesverband Herzkranke Kinder'), (65110, 'https://ror.org/003rwj896', 'no_lang_code', 1, 'https://ror.org/003rwj896 Ensol (Poland)'), (65111, 'https://ror.org/003tn6j35', 'en', 1, 'https://ror.org/003tn6j35 Shandong Institute of Agricultural Sustainable Development 山东农业可持续发展研究院'), (65112, 'https://ror.org/003vwv291', 'en', 1, 'https://ror.org/003vwv291 Asiantaeth Trwyddedu Gyrwyr a Cherbydau Driver and Vehicle Licensing Agency'), (65113, 'https://ror.org/003wpag88', 'es', 1, 'https://ror.org/003wpag88 Instituto Geofísico de la Escuela Politécnica Nacional'), (65114, 'https://ror.org/003xptq40', 'no_lang_code', 1, 'https://ror.org/003xptq40 Ex-Polon Kwieciński Fornalski Spółka Cywilna (Poland)'), (65115, 'https://ror.org/003ydcg07', 'no_lang_code', 1, 'https://ror.org/003ydcg07 Aidyia (China)'), (65116, 'https://ror.org/003yv5j54', 'en', 1, 'https://ror.org/003yv5j54 Canadian Association of Cardiovascular Prevention and Rehabilitation L''Association Canadienne pour la Prévention Cardiovasculaire et de Réadaptation'), (65117, 'https://ror.org/0041k0688', 'en', 1, 'https://ror.org/0041k0688 Institute of Food Safety, Animal Health and Environment “BIOR” Pārtikas drošības, dzīvnieku veselības un vides zinātniskais institūts „BIOR”'), (65118, 'https://ror.org/0041szh84', 'no_lang_code', 1, 'https://ror.org/0041szh84 Inner Mongolia Electric Power (China) 内蒙古电力'), (65119, 'https://ror.org/0042ng628', 'en', 1, 'https://ror.org/0042ng628 African Council on Narcotics'), (65120, 'https://ror.org/004427313', 'en', 1, 'https://ror.org/004427313 International Association of Comparative Korean Studies 국제비교한국학회'), (65121, 'https://ror.org/0045hhf36', 'no_lang_code', 1, 'https://ror.org/0045hhf36 Ashghal هيئة الأشغال العامة'), (65122, 'https://ror.org/0048j1p96', 'no_lang_code', 1, 'https://ror.org/0048j1p96 Janssen (France)'), (65123, 'https://ror.org/004b20975', 'en', 1, 'https://ror.org/004b20975 Changzhou Vocational Institute of Textile and Garment 常州纺织服装职业技术学院'), (65124, 'https://ror.org/004c4h916', 'en', 1, 'https://ror.org/004c4h916 Evaluation Support Scotland'), (65125, 'https://ror.org/004drsj12', 'en', 1, 'https://ror.org/004drsj12 Korean Institute of Interior Design 한국실내디자인학회는'), (65126, 'https://ror.org/004hsfv29', 'en', 1, 'https://ror.org/004hsfv29 Ministry for Finance'), (65127, 'https://ror.org/004hvek19', 'en', 1, 'https://ror.org/004hvek19 International League of Dermatological Societies'), (65128, 'https://ror.org/004kfs587', 'en', 1, 'https://ror.org/004kfs587 Moscow City Hospital No 29 Государственная клиническая больница №29 им. Н.Э.Баумана'), (65129, 'https://ror.org/004n78r59', 'no_lang_code', 1, 'https://ror.org/004n78r59 Hetman Petro Sahaidachnyi National Army Academy Національна академія сухопутних військ імені гетьмана Петра Сагайдачного'), (65130, 'https://ror.org/004q1d440', 'no_lang_code', 1, 'https://ror.org/004q1d440 HEL Group (United Kingdom)'), (65131, 'https://ror.org/004rbvh98', 'en', 1, 'https://ror.org/004rbvh98 Phi Delta Phi'), (65132, 'https://ror.org/004skt070', 'fi', 1, 'https://ror.org/004skt070 TTS Työtehoseura'), (65133, 'https://ror.org/004tf5h21', 'en', 1, 'https://ror.org/004tf5h21 Korea Radiation Industry Association 한국방사선산업학회'), (65134, 'https://ror.org/004v3gj87', 'en', 1, 'https://ror.org/004v3gj87 Ministry of Emergency Situations Төтенше жағдайлар министрлігі'), (65135, 'https://ror.org/004zrqc30', 'en', 1, 'https://ror.org/004zrqc30 Gangdong University 강동 대학교'), (65136, 'https://ror.org/004zxvq64', 'en', 1, 'https://ror.org/004zxvq64 Bundesministerium der Finanzen Federal Ministry of Finance'), (65137, 'https://ror.org/0050zy157', 'no_lang_code', 1, 'https://ror.org/0050zy157 Fresenius Kabi (South Korea) 프레지니우스카비코리아'), (65138, 'https://ror.org/005205v40', 'en', 1, 'https://ror.org/005205v40 Korean Society for Industrial and Organizational Psychology 한국산업및조직심리학회'), (65139, 'https://ror.org/0052whg11', 'en', 1, 'https://ror.org/0052whg11 Gansu Research Institute of Chemical Industry 甘肃省化工研究院有限责任公司'), (65140, 'https://ror.org/00540tm93', 'en', 1, 'https://ror.org/00540tm93 Conservative Institute of M. R. Štefánik Konzervatívny inštitút M. R. Štefánika'), (65141, 'https://ror.org/0054tdg51', 'en', 1, 'https://ror.org/0054tdg51 Shandong Academy of Pesticide Science 山东省农药科学研究院'), (65142, 'https://ror.org/0055bsh22', 'no_lang_code', 1, 'https://ror.org/0055bsh22 Burrenbeo Trust'), (65143, 'https://ror.org/0055vg673', 'en', 1, 'https://ror.org/0055vg673 Business History Conference'), (65144, 'https://ror.org/0055wm418', 'de', 1, 'https://ror.org/0055wm418 Ministerium der Finanzen des Landes Sachsen-Anhalt'), (65145, 'https://ror.org/005781837', 'en', 1, 'https://ror.org/005781837 Water Board of Lemesos Συμβούλιο Υδατοπρομήθειας Λεμεσού'), (65146, 'https://ror.org/0057p6x39', 'en', 1, 'https://ror.org/0057p6x39 International Risk Governance Council'), (65147, 'https://ror.org/0058b2697', 'en', 1, 'https://ror.org/0058b2697 All-Russian Scientific Research Institute of Lupine Всероссийский научно-исследовательский институт люпина'), (65148, 'https://ror.org/0058pdq21', 'no_lang_code', 1, 'https://ror.org/0058pdq21 Rodsum Wireless (China)'), (65149, 'https://ror.org/0058tb798', 'en', 1, 'https://ror.org/0058tb798 The Society for Teaching English through Media 영상영어교육학회'), (65150, 'https://ror.org/005bzjd21', 'no_lang_code', 1, 'https://ror.org/005bzjd21 Roche (India)'), (65151, 'https://ror.org/005ccd956', 'en', 1, 'https://ror.org/005ccd956 Korean Association for History of Modern Art 현대미술사학회'), (65152, 'https://ror.org/005ds8z67', 'en', 1, 'https://ror.org/005ds8z67 Nevada Department of Agriculture'), (65153, 'https://ror.org/005ep3598', 'no_lang_code', 1, 'https://ror.org/005ep3598 Zhejiang Chint Electrics (China) 浙江正泰电器股份有限公司'), (65154, 'https://ror.org/005g0ws49', 'en', 1, 'https://ror.org/005g0ws49 Tax Law Association'), (65155, 'https://ror.org/005gz3f76', 'fr', 1, 'https://ror.org/005gz3f76 Académie Nationale des Sciences et Techniques du Sénégal'), (65156, 'https://ror.org/005h0gs91', 'no_lang_code', 1, 'https://ror.org/005h0gs91 Enzolve Technologies (Ireland)'), (65157, 'https://ror.org/005hd0857', 'no_lang_code', 1, 'https://ror.org/005hd0857 Intergen Consulting Group (South Korea) 인터젠 컨설팅 그룹'), (65158, 'https://ror.org/005n3jc56', 'en', 1, 'https://ror.org/005n3jc56 Ministry of Water Resources and Meteorology ក្រសួងធនធានទឹកនិងឧតុនិយម'), (65159, 'https://ror.org/005n4rr58', 'en', 1, 'https://ror.org/005n4rr58 Scientific Research Institute of Introscopy Научно-исследовательский институт интроскопии'), (65160, 'https://ror.org/005n8c828', 'en', 1, 'https://ror.org/005n8c828 Science Gallery International'), (65161, 'https://ror.org/005qxjw75', 'en', 1, 'https://ror.org/005qxjw75 Habitat for Humanity of Collier County'), (65162, 'https://ror.org/005r9px72', 'no_lang_code', 1, 'https://ror.org/005r9px72 Qatar Mining (Qatar)'), (65163, 'https://ror.org/005rems48', 'en', 1, 'https://ror.org/005rems48 Interuniversity Center for Social Science Theory and Methodology'), (65164, 'https://ror.org/005ysj118', 'en', 1, 'https://ror.org/005ysj118 Changzhou Vocational Institute of Light Industry 常州轻工职业技术学院'), (65165, 'https://ror.org/005yy5d32', 'en', 1, 'https://ror.org/005yy5d32 Nantong Snake Treatment Research Institute'), (65166, 'https://ror.org/005yzhk58', 'en', 1, 'https://ror.org/005yzhk58 Hassle Free Clinic'), (65167, 'https://ror.org/005zkh270', 'en', 1, 'https://ror.org/005zkh270 American Risk and Insurance Association'), (65168, 'https://ror.org/006424y87', 'en', 1, 'https://ror.org/006424y87 Office of the Attorney General'), (65169, 'https://ror.org/00659aj19', 'en', 1, 'https://ror.org/00659aj19 Philanthropy New York'), (65170, 'https://ror.org/0067g4302', 'no_lang_code', 1, 'https://ror.org/0067g4302 Meizu (China) 魅族科技有限公司'), (65171, 'https://ror.org/0068m0j38', 'en', 1, 'https://ror.org/0068m0j38 Cancer Research UK Cambridge Center'), (65172, 'https://ror.org/0068qef60', 'en', 1, 'https://ror.org/0068qef60 Korean Broadcasters Association 한국방송협회'), (65173, 'https://ror.org/006bvz121', 'en', 1, 'https://ror.org/006bvz121 Korea Public Relations Consultancy Association 한국 홍보 상담회'), (65174, 'https://ror.org/006ec3357', 'en', 1, 'https://ror.org/006ec3357 Culinary Institute of Korea'), (65175, 'https://ror.org/006fm2278', 'no_lang_code', 1, 'https://ror.org/006fm2278 Midea Group (China) 美的集团'), (65176, 'https://ror.org/006g7b022', 'fr', 1, 'https://ror.org/006g7b022 ARCTIConnexion'), (65177, 'https://ror.org/006gmcn85', 'en', 1, 'https://ror.org/006gmcn85 Kelkar Education Trust''s Scientific Research Centre'), (65178, 'https://ror.org/006gwfr44', 'no_lang_code', 1, 'https://ror.org/006gwfr44 Sailun Jinyu Group (China) 赛轮金宇集团'), (65179, 'https://ror.org/006h3y937', 'en', 1, 'https://ror.org/006h3y937 MRA Group'), (65180, 'https://ror.org/006hdm859', 'fr', 1, 'https://ror.org/006hdm859 Parkinson Quebec'), (65181, 'https://ror.org/006j3m787', 'en', 1, 'https://ror.org/006j3m787 Specialized Scientific Research Institute of Instrument Engineering'), (65182, 'https://ror.org/006knem90', 'en', 1, 'https://ror.org/006knem90 Tatar Scientific Research Institute of Agrochemistry and Soil Science Татарский научно-исследовательский институт агрохимии и почвоведения - обособленное структурное подразделение Федерального государственного бюджетного учреждения науки'), (65183, 'https://ror.org/006npbt15', 'en', 1, 'https://ror.org/006npbt15 Veterinaar- ja Toiduamet Veterinary and Food Board'), (65184, 'https://ror.org/006pcz623', 'no_lang_code', 1, 'https://ror.org/006pcz623 Informatica (South Korea) 인포매티카'), (65185, 'https://ror.org/006pd7g98', 'no_lang_code', 1, 'https://ror.org/006pd7g98 Cell Guidance Systems (United Kingdom)'), (65186, 'https://ror.org/006qwan38', 'en', 1, 'https://ror.org/006qwan38 Guangdong Work Injury Rehabilitation Hospital 广东省工伤康复医院'), (65187, 'https://ror.org/006sbr164', 'no_lang_code', 1, 'https://ror.org/006sbr164 Gemalto (Netherlands)'), (65188, 'https://ror.org/006tkeh25', 'no_lang_code', 1, 'https://ror.org/006tkeh25 Icon (India) ஐகான் மருத்துவ ஆராய்ச்சி இந்தியா பிரைவேட்'), (65189, 'https://ror.org/0072bx170', 'no_lang_code', 1, 'https://ror.org/0072bx170 Compact Imaging (United States)'), (65190, 'https://ror.org/0072dwk79', 'en', 1, 'https://ror.org/0072dwk79 Hosan University 호산대학교'), (65191, 'https://ror.org/0072ngz93', 'no_lang_code', 1, 'https://ror.org/0072ngz93 Nectaerra'), (65192, 'https://ror.org/0072xr450', 'en', 1, 'https://ror.org/0072xr450 The Korean Association for Children with Special Needs 한국특수아동학회'), (65193, 'https://ror.org/0073p9c35', 'en', 1, 'https://ror.org/0073p9c35 National Board for Certified Counselors'), (65194, 'https://ror.org/00753dy67', 'en', 1, 'https://ror.org/00753dy67 Hunan Provincial Agricultural Machinery Authority 湖南省农业机械管理局'), (65195, 'https://ror.org/00771gx20', 'no_lang_code', 1, 'https://ror.org/00771gx20 Aisino (China) 航天信息股份有限公司'), (65196, 'https://ror.org/0077fwc46', 'no_lang_code', 1, 'https://ror.org/0077fwc46 Big White Wall (United Kingdom)'), (65197, 'https://ror.org/0077tey39', 'fr', 1, 'https://ror.org/0077tey39 Centre Jacques-Cartier'), (65198, 'https://ror.org/0078v1m45', 'en', 1, 'https://ror.org/0078v1m45 Government Ayurved College, Nanded'), (65199, 'https://ror.org/0078x3268', 'no_lang_code', 1, 'https://ror.org/0078x3268 Sinolight (China) 中国轻工集团有限公司'), (65200, 'https://ror.org/0079vgv93', 'en', 1, 'https://ror.org/0079vgv93 Edwards Air Force Base'), (65201, 'https://ror.org/007bw6q41', 'de', 1, 'https://ror.org/007bw6q41 Evangelische Hochschule Berlin'), (65202, 'https://ror.org/007d31z96', 'no_lang_code', 1, 'https://ror.org/007d31z96 All-Russian Institute of Light Alloys (Russia) Всероссийский институт лёгких сплавов «ВИЛС»'), (65203, 'https://ror.org/007dnkv23', 'en', 1, 'https://ror.org/007dnkv23 Presidential Executive Office Администрация Президента'), (65204, 'https://ror.org/007ecf642', 'en', 1, 'https://ror.org/007ecf642 Henan Province Quality and Technical Supervision Bureau 河南省质量技术监督局'), (65205, 'https://ror.org/007ffat30', 'no_lang_code', 1, 'https://ror.org/007ffat30 Ajanta Pharma (India) अजंता फार्मा लिमिटेड'), (65206, 'https://ror.org/007gr2e12', 'no_lang_code', 1, 'https://ror.org/007gr2e12 DRD Power (United Kingdom)'), (65207, 'https://ror.org/007h50662', 'no_lang_code', 1, 'https://ror.org/007h50662 Advanced Materials Enterprises (China) 先进材料企业'), (65208, 'https://ror.org/007ht4b44', 'en', 1, 'https://ror.org/007ht4b44 Financial Services Institute of Australasia'), (65209, 'https://ror.org/007mhqn04', 'en', 1, 'https://ror.org/007mhqn04 Songwon University 송원대학교'), (65210, 'https://ror.org/007mm3r71', 'no_lang_code', 1, 'https://ror.org/007mm3r71 Korea Petroleum Group (South Korea) 한국 석유 그룹'), (65211, 'https://ror.org/007n0ss86', 'en', 1, 'https://ror.org/007n0ss86 Desh Bhagat University ਦੇਸ਼ ਭਗਤ ਯੂਨੀਵਰਸਿਟੀ'), (65212, 'https://ror.org/007n4g377', 'no_lang_code', 1, 'https://ror.org/007n4g377 Pharmacosmos (United States)'), (65213, 'https://ror.org/007nzgd38', 'no_lang_code', 1, 'https://ror.org/007nzgd38 Expedition (United Kingdom)'), (65214, 'https://ror.org/007s1fv27', 'en', 1, 'https://ror.org/007s1fv27 Tianjin Municipal Engineering Design and Research Institute 天津市市政工程设计研究总院'), (65215, 'https://ror.org/007sv4q84', 'en', 1, 'https://ror.org/007sv4q84 Buxton Festival'), (65216, 'https://ror.org/007w7dm12', 'en', 1, 'https://ror.org/007w7dm12 Korean Studies Institute 한국국학진흥원'), (65217, 'https://ror.org/007wym039', 'en', 1, 'https://ror.org/007wym039 Henan University of Engineering 河南工程学院'), (65218, 'https://ror.org/007y7ej30', 'en', 1, 'https://ror.org/007y7ej30 Beijing Microelectronics Technology Institute'), (65219, 'https://ror.org/007yv1g81', 'no_lang_code', 1, 'https://ror.org/007yv1g81 Teijin (Netherlands)'); INSERT INTO `rors` VALUES (65220, 'https://ror.org/007zske95', 'en', 1, 'https://ror.org/007zske95 Ministerstwo Sprawiedliwośc Ministry of Justice of the Republic of Poland'), (65221, 'https://ror.org/00809fn97', 'en', 1, 'https://ror.org/00809fn97 Lietuvos Respublikos Aplinkos Ministerija Ministry of Environment of the Republic of Lithuania'), (65222, 'https://ror.org/0080szk49', 'en', 1, 'https://ror.org/0080szk49 Korean Cancer Study Group 대한항암요법연구회 입니다'), (65223, 'https://ror.org/00822yz63', 'en', 1, 'https://ror.org/00822yz63 Liaoning Planning and Design Institute of Post and Telecommunication 辽宁邮电规划设计院有限公司版'), (65224, 'https://ror.org/0086q4c12', 'no_lang_code', 1, 'https://ror.org/0086q4c12 Sino Biopharmaceutical (China) 中国生物制药'), (65225, 'https://ror.org/0086r2b45', 'no_lang_code', 1, 'https://ror.org/0086r2b45 Grupa Lotos (Poland)'), (65226, 'https://ror.org/0087dde40', 'no_lang_code', 1, 'https://ror.org/0087dde40 Taixing First Construction Group (China) 泰兴一建建设集团有限公司'), (65227, 'https://ror.org/008923h68', 'en', 1, 'https://ror.org/008923h68 Archives State Agency Държавна агенция "Архиви"'), (65228, 'https://ror.org/008cmt298', 'en', 1, 'https://ror.org/008cmt298 Sunlin University 선린 대학교'), (65229, 'https://ror.org/008d47791', 'no_lang_code', 1, 'https://ror.org/008d47791 Novem (Netherlands)'), (65230, 'https://ror.org/008dfd567', 'no_lang_code', 1, 'https://ror.org/008dfd567 Plasma (Russia)'), (65231, 'https://ror.org/008dffq15', 'hu', 1, 'https://ror.org/008dffq15 Nemzeti Szakképzési és Felnőttképzési Hivatal'), (65232, 'https://ror.org/008f0n203', 'no_lang_code', 1, 'https://ror.org/008f0n203 Care UK (United Kingdom)'), (65233, 'https://ror.org/008gn7430', 'en', 1, 'https://ror.org/008gn7430 Environment Agency of Iceland Umhverfisstofnun'), (65234, 'https://ror.org/008gsg955', 'en', 1, 'https://ror.org/008gsg955 Liga Portuguesa Contra a Epilepsia Portuguese League Against Epilepsy'), (65235, 'https://ror.org/008hpge95', 'no_lang_code', 1, 'https://ror.org/008hpge95 Shenzhen Metro (China) 深圳市地铁'), (65236, 'https://ror.org/008jsgk36', 'no_lang_code', 1, 'https://ror.org/008jsgk36 Fano Labs (China) 法诺实验室'), (65237, 'https://ror.org/008ke6x86', 'no_lang_code', 1, 'https://ror.org/008ke6x86 Chong Kun Dang Bio (South Korea) 종근당홀딩스'), (65238, 'https://ror.org/008khgq16', 'no_lang_code', 1, 'https://ror.org/008khgq16 Integra (Russia) ВНИИБТ-Буровой инструмент'), (65239, 'https://ror.org/008m7sk62', 'en', 1, 'https://ror.org/008m7sk62 Pavee Point'), (65240, 'https://ror.org/008pe8240', 'en', 1, 'https://ror.org/008pe8240 West Asia-North Africa Institute معهد غرب آسيا - شمال أفريقيا'), (65241, 'https://ror.org/008qws759', 'en', 1, 'https://ror.org/008qws759 Xinjiang Uygur Autonomous Region Product Quality Supervision and Inspection Institute 新疆维吾尔自治区产品质量监督检验研究院'), (65242, 'https://ror.org/008s4ef43', 'en', 1, 'https://ror.org/008s4ef43 European Federation of Agencies and Regions for Energy and Environment'), (65243, 'https://ror.org/008sxtj70', 'no_lang_code', 1, 'https://ror.org/008sxtj70 Manor Farm (Ireland)'), (65244, 'https://ror.org/008vv7y59', 'en', 1, 'https://ror.org/008vv7y59 The Korea Association of Foreign Language Education 한국 외국어 교육 협회'), (65245, 'https://ror.org/008z9pq26', 'no_lang_code', 1, 'https://ror.org/008z9pq26 Audi (Italy)'), (65246, 'https://ror.org/008ztbx56', 'no_lang_code', 1, 'https://ror.org/008ztbx56 Global Technic Enterprises (China)'), (65247, 'https://ror.org/00900hh96', 'no_lang_code', 1, 'https://ror.org/00900hh96 Washington Monthly (United States)'), (65248, 'https://ror.org/00905q798', 'en', 1, 'https://ror.org/00905q798 Hong Kong Metals Manufacturers Association 香港金屬製造業協會'), (65249, 'https://ror.org/0090cxj04', 'en', 1, 'https://ror.org/0090cxj04 Shandong Academy of Agricultural Machinery Sciences 山东省农业机械科学研究院始'), (65250, 'https://ror.org/00929bm89', 'en', 1, 'https://ror.org/00929bm89 Iberia Parish Government'), (65251, 'https://ror.org/009361291', 'en', 1, 'https://ror.org/009361291 Korean Scholars of Marketing Science 한국 마케팅 학자'), (65252, 'https://ror.org/0094xtm76', 'en', 1, 'https://ror.org/0094xtm76 Georgia Sakartvelos shromis, janmrtelobisa ads sotsialuri datsvis saministro Ministry of Labour, Health and Social Affairs'), (65253, 'https://ror.org/0095wvm02', 'no_lang_code', 1, 'https://ror.org/0095wvm02 Move4Parkinson’s'), (65254, 'https://ror.org/0096nz963', 'en', 1, 'https://ror.org/0096nz963 The Heritage Alliance'), (65255, 'https://ror.org/0097ttw21', 'no_lang_code', 1, 'https://ror.org/0097ttw21 Qingdao Installation & Construction (China) 青岛安装建设股份有限公司'), (65256, 'https://ror.org/00997qd48', 'en', 1, 'https://ror.org/00997qd48 Goverment Siddha Medical College அரசு சித்த மருத்துவ கல்லூரி'), (65257, 'https://ror.org/009a2jy80', 'no_lang_code', 1, 'https://ror.org/009a2jy80 Hexagon (Sweden)'), (65258, 'https://ror.org/009ba1g27', 'no_lang_code', 1, 'https://ror.org/009ba1g27 Bullion Tech (United Kingdom)'), (65259, 'https://ror.org/009bb4304', 'no_lang_code', 1, 'https://ror.org/009bb4304 Electricity North West (United Kingdom)'), (65260, 'https://ror.org/009cevv08', 'en', 1, 'https://ror.org/009cevv08 Institute of Research of Iron and Steel Shasteel 钢铁研究所研究所'), (65261, 'https://ror.org/009fecc06', 'no_lang_code', 1, 'https://ror.org/009fecc06 Staten Island Museum'), (65262, 'https://ror.org/009fkjn48', 'en', 1, 'https://ror.org/009fkjn48 Korea Moral Education Association 한국도덕교육학회'), (65263, 'https://ror.org/009hm2720', 'en', 1, 'https://ror.org/009hm2720 Laboratory for Biomedical Neurosciences'), (65264, 'https://ror.org/009j0tv77', 'en', 1, 'https://ror.org/009j0tv77 Guizhou Center for Disease Control and Prevention 贵州省疾病预防控制中心'), (65265, 'https://ror.org/009mwch30', 'en', 1, 'https://ror.org/009mwch30 Slovenian Nuclear Safety Administration Uprava Republike Slovenije za Jedrsko Varnost'), (65266, 'https://ror.org/009neaa43', 'en', 1, 'https://ror.org/009neaa43 Public Investment Development Agency Viešųjų investicijų plėtros agentūra'), (65267, 'https://ror.org/009nm7068', 'no_lang_code', 1, 'https://ror.org/009nm7068 Nanjing Zhongyi Architectural Design Institute (China) 南京中意建筑设计院'), (65268, 'https://ror.org/009qwp447', 'en', 1, 'https://ror.org/009qwp447 Suihua University 绥化学院'), (65269, 'https://ror.org/009rsan39', 'pt', 1, 'https://ror.org/009rsan39 Centro Universitário UNINOVAFAPI'), (65270, 'https://ror.org/009tmjw71', 'en', 1, 'https://ror.org/009tmjw71 Environmental Centre for Administration and Technology Viešoji įstaiga Aplinkosaugos valdymo ir technologijų'), (65271, 'https://ror.org/009v92n69', 'en', 1, 'https://ror.org/009v92n69 Hassan Usman Katsina Polytechnic'), (65272, 'https://ror.org/009x2yy51', 'en', 1, 'https://ror.org/009x2yy51 Busan Digital University 부산 디지털 대학교'), (65273, 'https://ror.org/009y9e888', 'no_lang_code', 1, 'https://ror.org/009y9e888 Pacific Satellite (China)'), (65274, 'https://ror.org/009ygqw67', 'no_lang_code', 1, 'https://ror.org/009ygqw67 Ecoenergia (Poland)'), (65275, 'https://ror.org/009ytmf35', 'en', 1, 'https://ror.org/009ytmf35 ACE Hospital'), (65276, 'https://ror.org/009zm7e81', 'no_lang_code', 1, 'https://ror.org/009zm7e81 Boditech Med (South Korea) 바디 텍 메드'), (65277, 'https://ror.org/009zsxc75', 'en', 1, 'https://ror.org/009zsxc75 Institute on Science for Global Policy'), (65278, 'https://ror.org/009ztd224', 'en', 1, 'https://ror.org/009ztd224 Re-shaping Development Institute 글로벌 개발 연구소'), (65279, 'https://ror.org/00a1a6c68', 'en', 1, 'https://ror.org/00a1a6c68 Committee on Capital Markets Regulation'), (65280, 'https://ror.org/00a21ek15', 'no_lang_code', 1, 'https://ror.org/00a21ek15 Delta Rafał Mikke (Poland)'), (65281, 'https://ror.org/00a2qtn46', 'en', 1, 'https://ror.org/00a2qtn46 Heilongjiang Provincial Metrology and Testing Institute 黑龙江省计量检定测试院 技'), (65282, 'https://ror.org/00a37dc87', 'en', 1, 'https://ror.org/00a37dc87 Pacific Standard'), (65283, 'https://ror.org/00a4qwj68', 'en', 1, 'https://ror.org/00a4qwj68 Shandong Institute of Metrology 山东省计量科学研究院'), (65284, 'https://ror.org/00a5fnb74', 'en', 1, 'https://ror.org/00a5fnb74 Perm Military Institute Пермский военный институт'), (65285, 'https://ror.org/00a671n16', 'no_lang_code', 1, 'https://ror.org/00a671n16 Ultimate Software (United States)'), (65286, 'https://ror.org/00a6g3p12', 'no_lang_code', 1, 'https://ror.org/00a6g3p12 Materials Engineers Group (Poland)'), (65287, 'https://ror.org/00a7jw027', 'fr', 1, 'https://ror.org/00a7jw027 Agence Française pour le Développement et la Promotion de l’Agriculture Biologique'), (65288, 'https://ror.org/00a9f8892', 'en', 1, 'https://ror.org/00a9f8892 Bishop Simeon Trust'), (65289, 'https://ror.org/00a9kc733', 'no_lang_code', 1, 'https://ror.org/00a9kc733 Tianjin Rubber Industry Institute (China) 天津市橡胶工业研究所'), (65290, 'https://ror.org/00a9n4r38', 'en', 1, 'https://ror.org/00a9n4r38 All-Union Scientific Research Institute of Plant Quarantine Всесоюзный научно-исследовательский институт карантина растений'), (65291, 'https://ror.org/00a9yh217', 'en', 1, 'https://ror.org/00a9yh217 Employees State Insurance Post Graduate Institute of Medical Sciences and Research'), (65292, 'https://ror.org/00aa87042', 'en', 1, 'https://ror.org/00aa87042 Consorcio para el Desarrollo Sostenible de la Ecoregión Andina Consortium for Sustainable Development of the Andean Ecoregion'), (65293, 'https://ror.org/00aakw318', 'en', 1, 'https://ror.org/00aakw318 Ministry of Foreign Affairs 新加坡外交部'), (65294, 'https://ror.org/00ab95029', 'en', 1, 'https://ror.org/00ab95029 Wuxi Institute of Technology 无锡理工学院'), (65295, 'https://ror.org/00ackcm59', 'no_lang_code', 1, 'https://ror.org/00ackcm59 Construction Development (Qatar)'), (65296, 'https://ror.org/00ad1c858', 'no_lang_code', 1, 'https://ror.org/00ad1c858 Botswana Vaccine Institute (Botswana)'), (65297, 'https://ror.org/00aekg328', 'en', 1, 'https://ror.org/00aekg328 Global Dryland Alliance التحالف العالمي للأراضي الجافة'), (65298, 'https://ror.org/00ag0hf75', 'en', 1, 'https://ror.org/00ag0hf75 Diagnostic and Prevention Research Institute for Human and Animal Diseases Научно-исследовательский институт диагностики и профилактики болезней человека и животных'), (65299, 'https://ror.org/00ag0s904', 'en', 1, 'https://ror.org/00ag0s904 The Boys'' & Girls'' Clubs Association of Hong Kong 香港小童群益會'), (65300, 'https://ror.org/00ag2q384', 'en', 1, 'https://ror.org/00ag2q384 Hebei Research Institute of Microbiology 河北省微生物研究所'), (65301, 'https://ror.org/00agtd172', 'no_lang_code', 1, 'https://ror.org/00agtd172 Jin Tech (South Korea) 진테크'), (65302, 'https://ror.org/00agxat90', 'en', 1, 'https://ror.org/00agxat90 Asia Foundation 아시아 재단'), (65303, 'https://ror.org/00ahg0572', 'no_lang_code', 1, 'https://ror.org/00ahg0572 Syneos Health (Germany)'), (65304, 'https://ror.org/00ahhj040', 'en', 1, 'https://ror.org/00ahhj040 Hangzhou Quality and Technical Supervision and Testing Institute 杭州市质量技术监督检测院'), (65305, 'https://ror.org/00ahxp428', 'no_lang_code', 1, 'https://ror.org/00ahxp428 Micom Tech (China)'), (65306, 'https://ror.org/00ar42c47', 'no_lang_code', 1, 'https://ror.org/00ar42c47 Fustec (China) 富達科技國際有限公司'), (65307, 'https://ror.org/00as6e892', 'en', 1, 'https://ror.org/00as6e892 Qatar Museums هيئة متاحف قطر'), (65308, 'https://ror.org/00at16584', 'no_lang_code', 1, 'https://ror.org/00at16584 Huafon Group (China) 华峰集团'), (65309, 'https://ror.org/00atn8q90', 'en', 1, 'https://ror.org/00atn8q90 Korean Geographical Society 한국지리학회'), (65310, 'https://ror.org/00avkj256', 'en', 1, 'https://ror.org/00avkj256 Interstate Commission for Water Coordination of Central Asia Межгосударственная координационная водохозяйственная комиссия'), (65311, 'https://ror.org/00ayy7n17', 'no_lang_code', 1, 'https://ror.org/00ayy7n17 Aston Particle Technologies (United Kingdom)'), (65312, 'https://ror.org/00az85j53', 'no_lang_code', 1, 'https://ror.org/00az85j53 Dongfang Electric Corporation (China)'), (65313, 'https://ror.org/00azevz34', 'en', 1, 'https://ror.org/00azevz34 Oyster & Pearl Hospital'), (65314, 'https://ror.org/00azprd50', 'no_lang_code', 1, 'https://ror.org/00azprd50 Omiberry (South Korea) 효종원'), (65315, 'https://ror.org/00b1efb93', 'en', 1, 'https://ror.org/00b1efb93 Lietuvos Respublikos energetikos ministerija Ministry of Energy of the Republic of Lithuania'), (65316, 'https://ror.org/00b1twa08', 'no_lang_code', 1, 'https://ror.org/00b1twa08 Scientific and Production Association of Electromechanics (Russia)'), (65317, 'https://ror.org/00b285s97', 'no_lang_code', 1, 'https://ror.org/00b285s97 ON Semiconductor (China)'), (65318, 'https://ror.org/00b2xm665', 'en', 1, 'https://ror.org/00b2xm665 Korean Society of Sport Psychology 한국스포츠심리학회'), (65319, 'https://ror.org/00b7g1a82', 'en', 1, 'https://ror.org/00b7g1a82 Reformed Theological Institute 개혁 신학 연구원'), (65320, 'https://ror.org/00b8t8z12', 'no_lang_code', 1, 'https://ror.org/00b8t8z12 CAV Advanced Technologies (United Kingdom)'), (65321, 'https://ror.org/00b9ktm87', 'no_lang_code', 1, 'https://ror.org/00b9ktm87 Amazon (Germany)'), (65322, 'https://ror.org/00bant556', 'en', 1, 'https://ror.org/00bant556 Charnwood Arts'), (65323, 'https://ror.org/00bazmd55', 'no_lang_code', 1, 'https://ror.org/00bazmd55 Well Being Digital (China)'), (65324, 'https://ror.org/00bbwmf07', 'en', 1, 'https://ror.org/00bbwmf07 International Council of Associations for Science Education'), (65325, 'https://ror.org/00bc51d88', 'it', 1, 'https://ror.org/00bc51d88 Istituto di Nanotecnologia'), (65326, 'https://ror.org/00bcsba68', 'pt', 1, 'https://ror.org/00bcsba68 Instituto das Tecnologias de Informação na Justiça'), (65327, 'https://ror.org/00bdbjn36', 'no_lang_code', 1, 'https://ror.org/00bdbjn36 Bennamann (United Kingdom)'), (65328, 'https://ror.org/00bh8v131', 'en', 1, 'https://ror.org/00bh8v131 Changjiang Institute of Survey, Planning, Design and Research 长江勘测规划设计研究院'), (65329, 'https://ror.org/00bh9qz66', 'en', 1, 'https://ror.org/00bh9qz66 Mavlyutov Institute of Mechanics Институт механики им Р.Р. Мавлютова'), (65330, 'https://ror.org/00bhqk118', 'en', 1, 'https://ror.org/00bhqk118 Terviseamet Health Board'), (65331, 'https://ror.org/00bhvbg93', 'no_lang_code', 1, 'https://ror.org/00bhvbg93 Sir Ivan Stedeford Hospital சர் ஐவன் ஸ்டெட்போர்ட ஹாஸ்பிடல்'), (65332, 'https://ror.org/00bjnxh67', 'en', 1, 'https://ror.org/00bjnxh67 Ministry of Economy'), (65333, 'https://ror.org/00bmszw78', 'no_lang_code', 1, 'https://ror.org/00bmszw78 Block Dox (United Kingdom)'), (65334, 'https://ror.org/00bnbwc20', 'en', 1, 'https://ror.org/00bnbwc20 Castlefield Gallery'), (65335, 'https://ror.org/00bngsg68', 'no_lang_code', 1, 'https://ror.org/00bngsg68 Kukdong Communication (South Korea) 극동통신'), (65336, 'https://ror.org/00bqgmr50', 'en', 1, 'https://ror.org/00bqgmr50 Svenska Institutet i Athen Swedish Institute at Athens'), (65337, 'https://ror.org/00bsgdw42', 'no_lang_code', 1, 'https://ror.org/00bsgdw42 Geomatic Ventures (United Kingdom)'), (65338, 'https://ror.org/00bsmqd31', 'en', 1, 'https://ror.org/00bsmqd31 Connecticut Public Broadcasting'), (65339, 'https://ror.org/00bwrgp93', 'no_lang_code', 1, 'https://ror.org/00bwrgp93 Waldi (Poland)'), (65340, 'https://ror.org/00bwzfm31', 'no_lang_code', 1, 'https://ror.org/00bwzfm31 Cascade Biosystems (United States)'), (65341, 'https://ror.org/00bz31e77', 'no_lang_code', 1, 'https://ror.org/00bz31e77 Waste & Environmental Technologies (China)'), (65342, 'https://ror.org/00c232088', 'en', 1, 'https://ror.org/00c232088 The Society of Service Science 서비스 과학회'), (65343, 'https://ror.org/00c2k1j60', 'en', 1, 'https://ror.org/00c2k1j60 Chongqing Bureau of Geology and Minerals Exploration 重庆市地质矿产勘查开发局'), (65344, 'https://ror.org/00c46pp52', 'no_lang_code', 1, 'https://ror.org/00c46pp52 3D Engineering Design (United Kingdom)'), (65345, 'https://ror.org/00c480063', 'en', 1, 'https://ror.org/00c480063 New Hampshire Association of Conservation Commissions'), (65346, 'https://ror.org/00c56ep98', 'en', 1, 'https://ror.org/00c56ep98 The Korean Society for the Economics and Finance of Education 한국교육재정경제학회'), (65347, 'https://ror.org/00c671n77', 'en', 1, 'https://ror.org/00c671n77 Hong Kong Small and Medium Enterprises Association 香港中小企业联会'), (65348, 'https://ror.org/00c6gyc33', 'no_lang_code', 1, 'https://ror.org/00c6gyc33 Everplant Technology (China)'), (65349, 'https://ror.org/00c6xam17', 'no_lang_code', 1, 'https://ror.org/00c6xam17 Gezhouba Group (China) 中国葛洲坝集团股份有限公司'), (65350, 'https://ror.org/00cafe722', 'en', 1, 'https://ror.org/00cafe722 The Korea Association for Han-Character and Classical Written Language Education 한국 한문학 및 고전 문어 교육 협회'), (65351, 'https://ror.org/00cd12q64', 'en', 1, 'https://ror.org/00cd12q64 Beijing Zhenxing Metrology & Measurement Institute 北京振兴计量测试研究所'), (65352, 'https://ror.org/00cdtmq09', 'en', 1, 'https://ror.org/00cdtmq09 North American Society for Sport Management'), (65353, 'https://ror.org/00ce2eb04', 'en', 1, 'https://ror.org/00ce2eb04 Georgia Emergency Management Agency'), (65354, 'https://ror.org/00cefgj13', 'no_lang_code', 1, 'https://ror.org/00cefgj13 Caredoc'), (65355, 'https://ror.org/00cgmem79', 'no_lang_code', 1, 'https://ror.org/00cgmem79 Power Roll (United Kingdom)'), (65356, 'https://ror.org/00ch65t46', 'en', 1, 'https://ror.org/00ch65t46 Auvergne-Rhone-Alpes Entreprises'), (65357, 'https://ror.org/00cjcx491', 'en', 1, 'https://ror.org/00cjcx491 Korean Academic Society of Taxation 조세 학회'), (65358, 'https://ror.org/00ckc8f91', 'no_lang_code', 1, 'https://ror.org/00ckc8f91 Mamata General Hospital మమత జనరల్ హాస్పిటల్'), (65359, 'https://ror.org/00cn4vr32', 'en', 1, 'https://ror.org/00cn4vr32 Wanda Cultural Tourism Planning and Research Institute 万达文化旅游规划研究院有限公司'), (65360, 'https://ror.org/00cnnb535', 'no_lang_code', 1, 'https://ror.org/00cnnb535 SIPN S.R.L. (Italy)'), (65361, 'https://ror.org/00cp1jc17', 'en', 1, 'https://ror.org/00cp1jc17 Java Clinical'), (65362, 'https://ror.org/00ctyfm67', 'en', 1, 'https://ror.org/00ctyfm67 Nanjing Institute of Railway Technology'), (65363, 'https://ror.org/00cw8st45', 'en', 1, 'https://ror.org/00cw8st45 Antiquities, Monuments and Museum Corporation'), (65364, 'https://ror.org/00cza2v51', 'en', 1, 'https://ror.org/00cza2v51 Casey House'), (65365, 'https://ror.org/00d01mn47', 'de', 1, 'https://ror.org/00d01mn47 ECOVIN Bundesverband Ökologischer Weinbau'), (65366, 'https://ror.org/00d0f1n88', 'no_lang_code', 1, 'https://ror.org/00d0f1n88 Carbograf (Poland)'), (65367, 'https://ror.org/00d1fsm72', 'no_lang_code', 1, 'https://ror.org/00d1fsm72 Dimensional Imaging (United Kingdom)'), (65368, 'https://ror.org/00d1vfe76', 'en', 1, 'https://ror.org/00d1vfe76 Child Welfare League of Canada Ligue pour le Bien-Être de l''Enfance du Canada'), (65369, 'https://ror.org/00d2q3517', 'no_lang_code', 1, 'https://ror.org/00d2q3517 Arcadis (United Kingdom)'), (65370, 'https://ror.org/00d2xk240', 'de', 1, 'https://ror.org/00d2xk240 Bayerisches Staatsministerium der Finanzen, für Landesentwicklung und Heimat'), (65371, 'https://ror.org/00d5asq22', 'no_lang_code', 1, 'https://ror.org/00d5asq22 Pansori Society 판소리학회는'), (65372, 'https://ror.org/00d6ce877', 'en', 1, 'https://ror.org/00d6ce877 National Council on Patient Information and Education'), (65373, 'https://ror.org/00d6gwq77', 'en', 1, 'https://ror.org/00d6gwq77 Extra Care Physiotherapy Centre'), (65374, 'https://ror.org/00d6pe324', 'en', 1, 'https://ror.org/00d6pe324 Neurobehavioral Research Laboratory and Clinic'), (65375, 'https://ror.org/00d6y7q19', 'no_lang_code', 1, 'https://ror.org/00d6y7q19 Avara Pharmaceutical Services (Ireland)'), (65376, 'https://ror.org/00d8yqt37', 'en', 1, 'https://ror.org/00d8yqt37 The Korean Association for Public Administration 한국 행정 학회'), (65377, 'https://ror.org/00d96ax77', 'en', 1, 'https://ror.org/00d96ax77 An Roinn Iompair, Turasóireachta agus Spóirt Department of Transport, Tourism and Sport'), (65378, 'https://ror.org/00dc5v408', 'en', 1, 'https://ror.org/00dc5v408 Research and Design and Technological Institute of Rolling Stock Научно-исследовательский и конструкторско-технологический институт подвижного состава'), (65379, 'https://ror.org/00dcyet50', 'no_lang_code', 1, 'https://ror.org/00dcyet50 S. Norton (United Kingdom)'), (65380, 'https://ror.org/00dd2be17', 'no_lang_code', 1, 'https://ror.org/00dd2be17 Kite Entertainment (Ireland)'), (65381, 'https://ror.org/00ddcgv12', 'en', 1, 'https://ror.org/00ddcgv12 State Phytosanitary Administration Státní Rostlinolékařská Správa'), (65382, 'https://ror.org/00dfw9p58', 'fr', 1, 'https://ror.org/00dfw9p58 Santé Publique France'), (65383, 'https://ror.org/00dfz6605', 'en', 1, 'https://ror.org/00dfz6605 Future Transport Systems'), (65384, 'https://ror.org/00dg6q264', 'en', 1, 'https://ror.org/00dg6q264 National Academy of Kinesiology'), (65385, 'https://ror.org/00dg9e448', 'en', 1, 'https://ror.org/00dg9e448 Isotherm Research Institute НИИ "Изотерм"'), (65386, 'https://ror.org/00dhaqb25', 'en', 1, 'https://ror.org/00dhaqb25 Yeongnam Archaeological Society 영남고고학회'), (65387, 'https://ror.org/00dj3pn18', 'no_lang_code', 1, 'https://ror.org/00dj3pn18 ExpreS2ion Biotechnologies (Denmark)'), (65388, 'https://ror.org/00dka4r75', 'en', 1, 'https://ror.org/00dka4r75 Zhejiang Academy of Building Research & Design 浙江省建筑科学研究院'), (65389, 'https://ror.org/00dkg9f08', 'nl', 1, 'https://ror.org/00dkg9f08 Royal Dirkzwager'), (65390, 'https://ror.org/00dqsh274', 'en', 1, 'https://ror.org/00dqsh274 Research Institute of Agriculture of Crimea Научно-исследовательский институт сельского хозяйства Крыма'), (65391, 'https://ror.org/00drjse70', 'en', 1, 'https://ror.org/00drjse70 Balaji Dental & Craniofacial Hospital'), (65392, 'https://ror.org/00dvybz66', 'en', 1, 'https://ror.org/00dvybz66 Korean Society for the Study of Obesity 대한비만학회 홈페'), (65393, 'https://ror.org/00dxjhh32', 'fr', 1, 'https://ror.org/00dxjhh32 Agence Nationale pour l''Emploi National Employment Agency'), (65394, 'https://ror.org/00dy5pp48', 'no_lang_code', 1, 'https://ror.org/00dy5pp48 Lanzhou Great Wall Electrical Corporation 兰州长城电工股份有限公司'), (65395, 'https://ror.org/00dzggj72', 'no_lang_code', 1, 'https://ror.org/00dzggj72 Takeda (Singapore)'), (65396, 'https://ror.org/00e02bd76', 'en', 1, 'https://ror.org/00e02bd76 European Marine Energy Centre'), (65397, 'https://ror.org/00e373235', 'en', 1, 'https://ror.org/00e373235 Korean Alliance for Health, Physical Education, Recreation, and Dance 한국체육학회'), (65398, 'https://ror.org/00e4n7b29', 'en', 1, 'https://ror.org/00e4n7b29 Institutet för Språk och Folkminnen Swedish Institute for Language and Folklore'), (65399, 'https://ror.org/00e7v1604', 'en', 1, 'https://ror.org/00e7v1604 Central Research Institute of Automation and Hydraulics Центральный научно-исследовательский институт автоматики и гидравлики'), (65400, 'https://ror.org/00e8eg742', 'no_lang_code', 1, 'https://ror.org/00e8eg742 LAMA (Italy)'), (65401, 'https://ror.org/00eb2vz50', 'en', 1, 'https://ror.org/00eb2vz50 Rail Delivery Group'), (65402, 'https://ror.org/00ebpsa72', 'en', 1, 'https://ror.org/00ebpsa72 Cyberport 數碼港'), (65403, 'https://ror.org/00ebq8d78', 'en', 1, 'https://ror.org/00ebq8d78 Catholic Agency for Overseas Development'), (65404, 'https://ror.org/00ed67a38', 'no_lang_code', 1, 'https://ror.org/00ed67a38 Chunlan (China) 春兰'), (65405, 'https://ror.org/00egzwg33', 'no_lang_code', 1, 'https://ror.org/00egzwg33 Cloughjordan Ecovillage'), (65406, 'https://ror.org/00emmzb12', 'no_lang_code', 1, 'https://ror.org/00emmzb12 Boehringer Ingelheim (Norway)'), (65407, 'https://ror.org/00eqa6a26', 'no_lang_code', 1, 'https://ror.org/00eqa6a26 Sichuan Provincial Architectural Design and Research Institute (China) 四川省建筑设计研究院'), (65408, 'https://ror.org/00eqzvz74', 'no_lang_code', 1, 'https://ror.org/00eqzvz74 Terrasun (South Korea) 테라 손'), (65409, 'https://ror.org/00erz7p38', 'no_lang_code', 1, 'https://ror.org/00erz7p38 Jellagen (United Kingdom)'), (65410, 'https://ror.org/00etvy980', 'en', 1, 'https://ror.org/00etvy980 Gloucestershire Guild of Craftsmen'), (65411, 'https://ror.org/00exf0825', 'en', 1, 'https://ror.org/00exf0825 Ministry of Agriculture and Food Министерство сельского хозяйства и продовольствия Республики Беларусь'), (65412, 'https://ror.org/00f0mbf46', 'no_lang_code', 1, 'https://ror.org/00f0mbf46 TPV Technology (China) 冠捷科技'), (65413, 'https://ror.org/00f11nx42', 'no_lang_code', 1, 'https://ror.org/00f11nx42 Belmehanobchermet (Russia)'), (65414, 'https://ror.org/00f23qy62', 'en', 1, 'https://ror.org/00f23qy62 Institute for Bulgarian Language Институт за български език'), (65415, 'https://ror.org/00f32vr09', 'en', 1, 'https://ror.org/00f32vr09 Guangxi South Subtropical Agricultural Research Institute 广西南亚热带农业科学研究所'), (65416, 'https://ror.org/00f5sa326', 'en', 1, 'https://ror.org/00f5sa326 Fujian Institute of Microbiology 福建省微生物研究所'), (65417, 'https://ror.org/00f65v533', 'en', 1, 'https://ror.org/00f65v533 Strategic Investment Board'), (65418, 'https://ror.org/00f6n1x59', 'en', 1, 'https://ror.org/00f6n1x59 Far Eastern Scientific Research Institute of Mechanization and Electrification of Agriculture Дальневосточный научно-исследовательский институт механизации и электрификации сельского хозяйства'), (65419, 'https://ror.org/00f7qfv03', 'en', 1, 'https://ror.org/00f7qfv03 Sujata Birla Hospital and Medical Research Center'), (65420, 'https://ror.org/00f89ms08', 'en', 1, 'https://ror.org/00f89ms08 Zhejiang Province Institute of Architectural Design and Research 浙江省建筑设计研究院'), (65421, 'https://ror.org/00f905c89', 'en', 1, 'https://ror.org/00f905c89 Leningrad branch Central Science Research Telecommunications Institute ЛЕНИНГРАДСКОЕ ОТДЕЛЕНИЕ ЦЕНТРАЛЬНОГО НАУЧНО-ИССЛЕДОВАТЕЛЬСКОГО ИНСТИТУТА СВЯЗИ'), (65422, 'https://ror.org/00f9bzb82', 'no_lang_code', 1, 'https://ror.org/00f9bzb82 OAO Giproniselprom (Russia)'), (65423, 'https://ror.org/00fagmh73', 'no_lang_code', 1, 'https://ror.org/00fagmh73 LiteMagic (China) 磊明科技'), (65424, 'https://ror.org/00fbs6k07', 'no_lang_code', 1, 'https://ror.org/00fbs6k07 Stronghold Technology (South Korea)'), (65425, 'https://ror.org/00fgwkr80', 'no_lang_code', 1, 'https://ror.org/00fgwkr80 Runze (China) 重庆润泽医药'), (65426, 'https://ror.org/00fhzqb79', 'en', 1, 'https://ror.org/00fhzqb79 Hong Kong Association for the Advancement of Science and Technology 香港科技協進會'), (65427, 'https://ror.org/00fp23a83', 'en', 1, 'https://ror.org/00fp23a83 Aras Nua-Ealaíne na hÉireann Irish Museum of Modern Art'), (65428, 'https://ror.org/00fp6fj05', 'no_lang_code', 1, 'https://ror.org/00fp6fj05 NetEase (China) 网易'), (65429, 'https://ror.org/00fpj7t66', 'no_lang_code', 1, 'https://ror.org/00fpj7t66 China General Nuclear Power Corporation (China) 中国广核集团'), (65430, 'https://ror.org/00fpwd955', 'en', 1, 'https://ror.org/00fpwd955 Bundesministerium des Innern Federal Ministry of the Interior'), (65431, 'https://ror.org/00fr05644', 'en', 1, 'https://ror.org/00fr05644 Institute for International Economic and Political Studies Институт международных экономических и политических исследований'), (65432, 'https://ror.org/00fr2wv68', 'en', 1, 'https://ror.org/00fr2wv68 "Professor Tsvetan Lazarov" Defence Institute'), (65433, 'https://ror.org/00fsz9s67', 'no_lang_code', 1, 'https://ror.org/00fsz9s67 Boehringer Ingelheim (Taiwan) 台灣百靈佳殷格翰股份有限公司'), (65434, 'https://ror.org/00fycd487', 'no_lang_code', 1, 'https://ror.org/00fycd487 Constellation Software (Canada)'), (65435, 'https://ror.org/00g1br919', 'en', 1, 'https://ror.org/00g1br919 Jeonbuk Development Institute 전북 개발원'), (65436, 'https://ror.org/00g2ec863', 'en', 1, 'https://ror.org/00g2ec863 Hong Kong Pharmaceutical Manufacturers Association 香港制药商协会有限公司'), (65437, 'https://ror.org/00g2kbc16', 'en', 1, 'https://ror.org/00g2kbc16 Shanghai Shipbuilding Technology Research Institute 上海造船技术研究院'), (65438, 'https://ror.org/00g2rx327', 'en', 1, 'https://ror.org/00g2rx327 All-Russian Research and Design Institute of Metallurgical Engineering Всесоюзный научно-исследовательский и проектно-конструкторский институт металлургического машиностроения'), (65439, 'https://ror.org/00g473r84', 'en', 1, 'https://ror.org/00g473r84 All-Russian Scientific Research Institute of Livestock Mechanization Федеральное государственное бюджетное научное учреждение Всероссийский научно-исследовательский институт механизации животноводства'), (65440, 'https://ror.org/00g4nz923', 'en', 1, 'https://ror.org/00g4nz923 All-Russian Scientific Research Institute of the Dairy Industry Всеросийский Научно-исследовательский Институт Молочной Промышленности'), (65441, 'https://ror.org/00g553t68', 'no_lang_code', 1, 'https://ror.org/00g553t68 Semler Research Center (India)'), (65442, 'https://ror.org/00g55y949', 'no_lang_code', 1, 'https://ror.org/00g55y949 BGI Europe (Denmark)'), (65443, 'https://ror.org/00g5s2979', 'en', 1, 'https://ror.org/00g5s2979 Ministry of Public Health وزارة الصحة العامة'), (65444, 'https://ror.org/00g7nbz02', 'no_lang_code', 1, 'https://ror.org/00g7nbz02 SZNIIMESH Северо-западный научно-исследовательский институт механизации и электрификации сельского хозяйства'), (65445, 'https://ror.org/00g98sq23', 'en', 1, 'https://ror.org/00g98sq23 Central Research Institute of Communications'), (65446, 'https://ror.org/00ga74481', 'en', 1, 'https://ror.org/00ga74481 Hollanda Araştırma Enstitüsü Netherlands Institute in Turkey'), (65447, 'https://ror.org/00gb9k226', 'no_lang_code', 1, 'https://ror.org/00gb9k226 DIPEx International (United Kingdom)'), (65448, 'https://ror.org/00gd17e24', 'no_lang_code', 1, 'https://ror.org/00gd17e24 Hanall Biopharma (South Korea) 한올바이오파마'), (65449, 'https://ror.org/00gef5g33', 'en', 1, 'https://ror.org/00gef5g33 Center for Beta Cell Therapy in Diabetes'), (65450, 'https://ror.org/00ggq9934', 'en', 1, 'https://ror.org/00ggq9934 European Conference of Transport Research Institutes'), (65451, 'https://ror.org/00gncg762', 'en', 1, 'https://ror.org/00gncg762 Hong Kong Plastic Machinery Association 香港塑料机械协会'), (65452, 'https://ror.org/00gpshd30', 'en', 1, 'https://ror.org/00gpshd30 Midcoast Watersheds Council'), (65453, 'https://ror.org/00gqs6306', 'no_lang_code', 1, 'https://ror.org/00gqs6306 Dolby (Sweden)'), (65454, 'https://ror.org/00grk8n10', 'en', 1, 'https://ror.org/00grk8n10 Scientific Research Institute of Computing Machinery Научно-исследовательский институт вычислительной техники'), (65455, 'https://ror.org/00gssft54', 'no_lang_code', 1, 'https://ror.org/00gssft54 Invicro (United Kingdom)'), (65456, 'https://ror.org/00gth1k53', 'en', 1, 'https://ror.org/00gth1k53 Chongqing Academy of Environmental Science 重庆市环境科学研究院'), (65457, 'https://ror.org/00gvfpz28', 'en', 1, 'https://ror.org/00gvfpz28 Beijing Automation Control Equipment Institute 北京自动化控制设备研究所创建于'), (65458, 'https://ror.org/00gxft621', 'en', 1, 'https://ror.org/00gxft621 Belgian Welding Institute Belgisch Instituut voor Lastechniek'), (65459, 'https://ror.org/00gxm5663', 'no_lang_code', 1, 'https://ror.org/00gxm5663 Craft Group (China)'), (65460, 'https://ror.org/00gxxdv05', 'en', 1, 'https://ror.org/00gxxdv05 Nizhniy Novgorod Research Institute of Epidemiology and Microbiology named after Academician I.N. Blokhina Академик И.Н. Блохина Нижегородский научно-исследовательский институт эпидемиологии и микробиологии'), (65461, 'https://ror.org/00gy01w86', 'en', 1, 'https://ror.org/00gy01w86 Heilongjiang Provincial Institute of Hydraulic Research 黑龙江省水利科学研究院'), (65462, 'https://ror.org/00gy54m79', 'en', 1, 'https://ror.org/00gy54m79 Tomsk Scientific Research Institute of Balneology and Physiotherapy Томский научно-исследовательский институт курортологии и физиотерапии'), (65463, 'https://ror.org/00gycng41', 'fr', 1, 'https://ror.org/00gycng41 Association des Radiologistes du Québec'), (65464, 'https://ror.org/00gznmy49', 'en', 1, 'https://ror.org/00gznmy49 Shaanxi Railway Institute 陕西铁道学院'), (65465, 'https://ror.org/00h05fc28', 'en', 1, 'https://ror.org/00h05fc28 Alabama Department of Economic and Community Affairs'), (65466, 'https://ror.org/00h4z8814', 'en', 1, 'https://ror.org/00h4z8814 Dr. Peter AIDS Foundation'), (65467, 'https://ror.org/00h644t73', 'no_lang_code', 1, 'https://ror.org/00h644t73 Green Island Chinese Medicine International Group (China)'), (65468, 'https://ror.org/00h64t852', 'no_lang_code', 1, 'https://ror.org/00h64t852 SAIC-GM (China) 上汽通用汽车'), (65469, 'https://ror.org/00h6s9634', 'no_lang_code', 1, 'https://ror.org/00h6s9634 Yfisoft (China)'), (65470, 'https://ror.org/00h7z1q27', 'en', 1, 'https://ror.org/00h7z1q27 Campus Notre-Dame-de-Foy'), (65471, 'https://ror.org/00h8mkp41', 'no_lang_code', 1, 'https://ror.org/00h8mkp41 Bloombase (China)'), (65472, 'https://ror.org/00hbkpf98', 'en', 1, 'https://ror.org/00hbkpf98 Commission de la Sante Mentale du Canada Mental Health Commission of Canada'), (65473, 'https://ror.org/00hbpmz47', 'no_lang_code', 1, 'https://ror.org/00hbpmz47 Bioalpha (Malaysia)'), (65474, 'https://ror.org/00hc2b418', 'en', 1, 'https://ror.org/00hc2b418 Wuxi Pneumatic Technology Research Institute'), (65475, 'https://ror.org/00hcsjz98', 'en', 1, 'https://ror.org/00hcsjz98 Agrarian Science Center "Donskoy" Аграрный научный центр «Донской»'), (65476, 'https://ror.org/00hd2sp32', 'no_lang_code', 1, 'https://ror.org/00hd2sp32 IntelliHep (United Kingdom)'), (65477, 'https://ror.org/00hfwa053', 'no_lang_code', 1, 'https://ror.org/00hfwa053 C4X Discovery (United Kingdom)'), (65478, 'https://ror.org/00hgh4525', 'no_lang_code', 1, 'https://ror.org/00hgh4525 Hetao College 河套学院'), (65479, 'https://ror.org/00hhh2m32', 'no_lang_code', 1, 'https://ror.org/00hhh2m32 Hochtief (Qatar)'), (65480, 'https://ror.org/00hk4sk41', 'en', 1, 'https://ror.org/00hk4sk41 The Korean Generative Grammar Circle 한국 문법 학회'), (65481, 'https://ror.org/00hn6vp12', 'no_lang_code', 1, 'https://ror.org/00hn6vp12 Indutherm (Spain)'), (65482, 'https://ror.org/00hqwyj63', 'en', 1, 'https://ror.org/00hqwyj63 Heilongjiang Academy of Sciences 黑龙江省科学院'), (65483, 'https://ror.org/00hr37w40', 'no_lang_code', 1, 'https://ror.org/00hr37w40 Kelada Pharmachem (Ireland)'), (65484, 'https://ror.org/00hs4m805', 'en', 1, 'https://ror.org/00hs4m805 Research Institute of Tire Industry Научно-исследовательский институт шинной промышленности'), (65485, 'https://ror.org/00hvq0c10', 'en', 1, 'https://ror.org/00hvq0c10 Shanghai Fire Research Institute'), (65486, 'https://ror.org/00hw06340', 'no_lang_code', 1, 'https://ror.org/00hw06340 Pedorthic Technology (China)'), (65487, 'https://ror.org/00hw5pa98', 'no_lang_code', 1, 'https://ror.org/00hw5pa98 Hunan Agricultural Products (China) 湖南农产品'), (65488, 'https://ror.org/00hwrpk97', 'no_lang_code', 1, 'https://ror.org/00hwrpk97 American Transmission Company (United States)'), (65489, 'https://ror.org/00hx3p021', 'en', 1, 'https://ror.org/00hx3p021 Regional Geographical Society of Korea 한국 지리 학회'), (65490, 'https://ror.org/00hy0ds89', 'en', 1, 'https://ror.org/00hy0ds89 The Society of Korean Performance Art and Culture 한국 공연 예술 학회'), (65491, 'https://ror.org/00hzd4z47', 'no_lang_code', 1, 'https://ror.org/00hzd4z47 Sharing and Technologies Incorporated (South Korea) 공유 및 기술법인의'), (65492, 'https://ror.org/00j0sx021', 'no_lang_code', 1, 'https://ror.org/00j0sx021 Johnson Controls (Ireland)'), (65493, 'https://ror.org/00j1gmf24', 'en', 1, 'https://ror.org/00j1gmf24 The Department of Arkansas Heritage'), (65494, 'https://ror.org/00j38z902', 'en', 1, 'https://ror.org/00j38z902 Malta Intelligent Energy Management Agency'), (65495, 'https://ror.org/00j4as432', 'en', 1, 'https://ror.org/00j4as432 Ministry of Education and Higher Education وزارة التعليم والتعليم العالي'), (65496, 'https://ror.org/00j4jtq38', 'en', 1, 'https://ror.org/00j4jtq38 Thelonious Monk Institute of Jazz'), (65497, 'https://ror.org/00j9f1256', 'no_lang_code', 1, 'https://ror.org/00j9f1256 Youngjin Technology (South Korea) 영진기술 주식회사'), (65498, 'https://ror.org/00j9g7s25', 'en', 1, 'https://ror.org/00j9g7s25 Kimmage Development Studies Centre'), (65499, 'https://ror.org/00jap5g05', 'en', 1, 'https://ror.org/00jap5g05 AO Foundation'), (65500, 'https://ror.org/00jb49g69', 'en', 1, 'https://ror.org/00jb49g69 JSC Federal Center for Geoecological Systems'), (65501, 'https://ror.org/00jcp4354', 'no_lang_code', 1, 'https://ror.org/00jcp4354 O-film (China) 欧菲科技'), (65502, 'https://ror.org/00je6d832', 'en', 1, 'https://ror.org/00je6d832 Scientific Research Engineering Institute НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНЖЕНЕРНЫЙ ИНСТИТУТ'), (65503, 'https://ror.org/00jg3eb36', 'en', 1, 'https://ror.org/00jg3eb36 Fischer Family Trust'), (65504, 'https://ror.org/00jhee281', 'en', 1, 'https://ror.org/00jhee281 Centre for Innovation Excellence in Livestock'), (65505, 'https://ror.org/00jkdkv87', 'no_lang_code', 1, 'https://ror.org/00jkdkv87 Zonhon Biopharma Institute 江苏众红生物工程创药研究院有限公司'), (65506, 'https://ror.org/00jkyke88', 'no_lang_code', 1, 'https://ror.org/00jkyke88 Novartis (South Korea) 노바티스'), (65507, 'https://ror.org/00jma7w30', 'en', 1, 'https://ror.org/00jma7w30 Wuxi Dongfang Environmental Engineering Design Institute 无锡市东方环境工程设计研究所有限公司'), (65508, 'https://ror.org/00jmt8d06', 'en', 1, 'https://ror.org/00jmt8d06 Agentschap Telecom Radiocommunications Agency'), (65509, 'https://ror.org/00jsa0k29', 'en', 1, 'https://ror.org/00jsa0k29 PBC Foundation'), (65510, 'https://ror.org/00jtr7j56', 'no_lang_code', 1, 'https://ror.org/00jtr7j56 Boris FX (United Kingdom)'), (65511, 'https://ror.org/00jvma136', 'no_lang_code', 1, 'https://ror.org/00jvma136 Shanghai Industrial Boiler Research Institute (China) 上海工业锅炉研究所'), (65512, 'https://ror.org/00jw46w75', 'fr', 1, 'https://ror.org/00jw46w75 Regroupement des Organismes Communautaires Québécoise de Lutte au Décrochage'), (65513, 'https://ror.org/00jwvx142', 'en', 1, 'https://ror.org/00jwvx142 State Scientific Center - Research Institute of Atomic Reactors Государственный научный центр — Научно-исследовательский институт атомных реакторов'), (65514, 'https://ror.org/00jz5ch17', 'no_lang_code', 1, 'https://ror.org/00jz5ch17 Jangan University 장안대학교'), (65515, 'https://ror.org/00jztws02', 'en', 1, 'https://ror.org/00jztws02 Defence Equipment and Support'), (65516, 'https://ror.org/00jzxnz73', 'en', 1, 'https://ror.org/00jzxnz73 The Third Institute of the Ministry of Public Security 公安部第三研究所'), (65517, 'https://ror.org/00k1mne41', 'en', 1, 'https://ror.org/00k1mne41 Korean Family Resource Management Association 한국가족자원경영학회'), (65518, 'https://ror.org/00k1vj692', 'en', 1, 'https://ror.org/00k1vj692 Dongyang Hanmoon Association 동양 한문 연합회'), (65519, 'https://ror.org/00k388f40', 'no_lang_code', 1, 'https://ror.org/00k388f40 NanoBioImaging (China)'), (65520, 'https://ror.org/00k722394', 'en', 1, 'https://ror.org/00k722394 Krasnodar Research Institute of Storage and Processing of Agricultural Products Краснодарский научно-исследовательский институт хранения и переработки сельскохозяйственной продукции'), (65521, 'https://ror.org/00k7bh212', 'no_lang_code', 1, 'https://ror.org/00k7bh212 Sengital (China)'), (65522, 'https://ror.org/00k852a29', 'en', 1, 'https://ror.org/00k852a29 West Virginia Division of Natural Resources'), (65523, 'https://ror.org/00k872414', 'en', 1, 'https://ror.org/00k872414 Korean Association for Radiation Application 한국방사선진흥협회'), (65524, 'https://ror.org/00kdtw736', 'no_lang_code', 1, 'https://ror.org/00kdtw736 Cambridge Carbon Capture (United Kingdom)'), (65525, 'https://ror.org/00kh8jx85', 'en', 1, 'https://ror.org/00kh8jx85 Learning Hub Limerick'), (65526, 'https://ror.org/00khsrq71', 'de', 1, 'https://ror.org/00khsrq71 Bundesverband Garten- Landschafts- und Sportplatzbau'), (65527, 'https://ror.org/00kn8e190', 'no_lang_code', 1, 'https://ror.org/00kn8e190 DHC Software (China)'), (65528, 'https://ror.org/00kpke984', 'en', 1, 'https://ror.org/00kpke984 Society for Korean Traditional Performing Arts 한국전통공연예술학회'), (65529, 'https://ror.org/00kq61997', 'no_lang_code', 1, 'https://ror.org/00kq61997 Arterius (United Kingdom)'), (65530, 'https://ror.org/00krjyc70', 'en', 1, 'https://ror.org/00krjyc70 Head Design Institute Chelyabinskgrazhdanproekt'), (65531, 'https://ror.org/00kskf856', 'no_lang_code', 1, 'https://ror.org/00kskf856 Chinatex Posts and Telecommunications Consulting and Design Institute (China) 中讯邮电咨询设计院有限公司'), (65532, 'https://ror.org/00ktvw306', 'en', 1, 'https://ror.org/00ktvw306 Ufa Research Institute of Occupational Health and Human Ecology Уфимский научно-исследовательский институт медицины труда и экологии человека'), (65533, 'https://ror.org/00kv86506', 'en', 1, 'https://ror.org/00kv86506 Korean Association for Archaeological Heritage 한국매장문화재협회'), (65534, 'https://ror.org/00kx5x153', 'no_lang_code', 1, 'https://ror.org/00kx5x153 Avixgen (South Korea) 에빅스젠'), (65535, 'https://ror.org/00ky61211', 'en', 1, 'https://ror.org/00ky61211 Shanghai Light Industry Research Institute 上海轻工业研究院'), (65536, 'https://ror.org/00kzfz874', 'en', 1, 'https://ror.org/00kzfz874 Latvijas Republikas Ekonomikas ministrija Ministry of Economics'), (65537, 'https://ror.org/00m0pp561', 'en', 1, 'https://ror.org/00m0pp561 National Board of Patents and Registration of Finland Patentti- ja rekisterihallitus'), (65538, 'https://ror.org/00m0rkq68', 'no_lang_code', 1, 'https://ror.org/00m0rkq68 Mascot Spincontrol (India)'), (65539, 'https://ror.org/00m2gz195', 'en', 1, 'https://ror.org/00m2gz195 Korean Society for Political Thought 한국정치사상학회'), (65540, 'https://ror.org/00m61xx36', 'no_lang_code', 1, 'https://ror.org/00m61xx36 Burelle (France)'), (65541, 'https://ror.org/00m8yma53', 'en', 1, 'https://ror.org/00m8yma53 Architectural Design Agency Архитектурно-Дизайнерска Агенция ООД'), (65542, 'https://ror.org/00mcf6y06', 'no_lang_code', 1, 'https://ror.org/00mcf6y06 Novosibirsk Tuberculosis Research Institute Новосибирский научно-исследовательский институт туберкулёза'), (65543, 'https://ror.org/00mdmxm79', 'fr', 1, 'https://ror.org/00mdmxm79 Collège de Rosemont'), (65544, 'https://ror.org/00mg6mc02', 'no_lang_code', 1, 'https://ror.org/00mg6mc02 China National Salt Industry Corporation (China) 中国盐业总公司'), (65545, 'https://ror.org/00mgrqp66', 'no_lang_code', 1, 'https://ror.org/00mgrqp66 Jiuquan Iron & Steel (China) 酒泉钢铁'), (65546, 'https://ror.org/00mh5ga26', 'no_lang_code', 1, 'https://ror.org/00mh5ga26 East Japan Railway (Japan) 東日本旅客鉄道株式会社'), (65547, 'https://ror.org/00mjzrw90', 'en', 1, 'https://ror.org/00mjzrw90 Ministarstvo Pravde u Vladi Crne Gore Ministry of Justice'), (65548, 'https://ror.org/00mmnvh11', 'no_lang_code', 1, 'https://ror.org/00mmnvh11 Asia Pacific Satellite (South Korea)'), (65549, 'https://ror.org/00mmxpv38', 'no_lang_code', 1, 'https://ror.org/00mmxpv38 Chongqing Yongda Precision Machinery (China) 重庆永达精密机械'), (65550, 'https://ror.org/00mpsrh50', 'en', 1, 'https://ror.org/00mpsrh50 Zhangjiakou Academy of Agricultural Sciences 张家口市农业科学院农业'), (65551, 'https://ror.org/00mr5jb15', 'no_lang_code', 1, 'https://ror.org/00mr5jb15 (주)에스티알바이오텍 STR Biotech (South Korea)'), (65552, 'https://ror.org/00mr5v348', 'no_lang_code', 1, 'https://ror.org/00mr5v348 Jinan Foundry and Metalforming Machinery Research Institute (China) 济南铸造锻压机械研究所'), (65553, 'https://ror.org/00mxc5141', 'no_lang_code', 1, 'https://ror.org/00mxc5141 Sehenstar Energy Technology (China) 苏州协宏泰节能科技有限公司'), (65554, 'https://ror.org/00myv8y06', 'no_lang_code', 1, 'https://ror.org/00myv8y06 Excivion (United Kingdom)'), (65555, 'https://ror.org/00mzd6670', 'no_lang_code', 1, 'https://ror.org/00mzd6670 Shenzhen Institute of Innovation Design (China) 深圳市创新设计研究院有限公司'), (65556, 'https://ror.org/00mzhwb11', 'no_lang_code', 1, 'https://ror.org/00mzhwb11 Ingersoll Rand (Ireland)'), (65557, 'https://ror.org/00n0egr15', 'en', 1, 'https://ror.org/00n0egr15 Development Agency of Serbia Развојна агенција Србије'), (65558, 'https://ror.org/00n0yt415', 'no_lang_code', 1, 'https://ror.org/00n0yt415 E4tech (United Kingdom)'), (65559, 'https://ror.org/00n1s7m36', 'no_lang_code', 1, 'https://ror.org/00n1s7m36 MosvodokanalNIIproject Institute (Russia) МосводоканалНИИпроект институт'), (65560, 'https://ror.org/00n2pkx76', 'en', 1, 'https://ror.org/00n2pkx76 Korea Invention Promotion Association 한국발명진흥회'), (65561, 'https://ror.org/00n5daa95', 'en', 1, 'https://ror.org/00n5daa95 Spectrum Healthcare स्पेक्ट्रम आरोग्य'), (65562, 'https://ror.org/00n6b8986', 'no_lang_code', 1, 'https://ror.org/00n6b8986 Guangdong Southern China Special Gas Institute (China) 广东南华特殊气体研究所'), (65563, 'https://ror.org/00n6y9334', 'no_lang_code', 1, 'https://ror.org/00n6y9334 Kanichi (United Kingdom)'), (65564, 'https://ror.org/00n7rz703', 'no_lang_code', 1, 'https://ror.org/00n7rz703 South China Municipal Engineering Design and Research Institute (China) 中国市政工程中南设计研究总院有限公'), (65565, 'https://ror.org/00n92fc55', 'en', 1, 'https://ror.org/00n92fc55 Danish Business Authority'), (65566, 'https://ror.org/00n99mq57', 'en', 1, 'https://ror.org/00n99mq57 Siberian Research, Design and Design Institute of Aluminum and Electrode Industry Сибирский научно-исследовательский, проектно-конструкторский институт алюминиевой и электродной промышленности'), (65567, 'https://ror.org/00n9q5753', 'en', 1, 'https://ror.org/00n9q5753 Cancer Trials Australia'), (65568, 'https://ror.org/00naggm49', 'en', 1, 'https://ror.org/00naggm49 Enable Ireland'), (65569, 'https://ror.org/00nczhw32', 'en', 1, 'https://ror.org/00nczhw32 Municipal Enterprise for Social Development Trikalon Διεύθυνση Καλαμπάκας 28 & Αμπάτη Τρίκαλα,'), (65570, 'https://ror.org/00nd3vv76', 'en', 1, 'https://ror.org/00nd3vv76 Scientific and Research Institute of Textile Materials Научно-исследовательский институт текстильных материалов'), (65571, 'https://ror.org/00ndnb620', 'en', 1, 'https://ror.org/00ndnb620 Energy Research Institute 山东省科学院能源研究所'), (65572, 'https://ror.org/00nf44j26', 'no_lang_code', 1, 'https://ror.org/00nf44j26 Zhejiang Runtu (China) 浙江闰土股份有限公司'), (65573, 'https://ror.org/00nhhef84', 'no_lang_code', 1, 'https://ror.org/00nhhef84 Sama Pharm (South Korea) 삼아제약'), (65574, 'https://ror.org/00nhtf127', 'no_lang_code', 1, 'https://ror.org/00nhtf127 InStream Fisheries Research (Canada)'), (65575, 'https://ror.org/00nhyfw74', 'en', 1, 'https://ror.org/00nhyfw74 Ministry of Justice Oikeusministeriö'), (65576, 'https://ror.org/00nkkk791', 'no_lang_code', 1, 'https://ror.org/00nkkk791 Shanghai Tunnel Engineering (China) 上海隧道工程'); INSERT INTO `rors` VALUES (65577, 'https://ror.org/00nna6j59', 'en', 1, 'https://ror.org/00nna6j59 Far Eastern Scientific Research Institute of Hydraulic Engineering and Reclamation Дальневосточный НИИ гидротехники и мелиорации'), (65578, 'https://ror.org/00npqj595', 'en', 1, 'https://ror.org/00npqj595 Cambridge Curiosity and Imagination'), (65579, 'https://ror.org/00nrddj33', 'en', 1, 'https://ror.org/00nrddj33 Luohe Academy of Agricultural Sciences 河南省漯河市农业科学研究所'), (65580, 'https://ror.org/00nsted34', 'no_lang_code', 1, 'https://ror.org/00nsted34 Calon Cardio (United Kingdom)'), (65581, 'https://ror.org/00nswcb05', 'no_lang_code', 1, 'https://ror.org/00nswcb05 Guangzhou Academy of Building Research (China)'), (65582, 'https://ror.org/00ntvge22', 'en', 1, 'https://ror.org/00ntvge22 M.B.Barvalia Foundation’s Spandan Organizations'), (65583, 'https://ror.org/00nv19w68', 'en', 1, 'https://ror.org/00nv19w68 International Council of Museums'), (65584, 'https://ror.org/00nw2x646', 'no_lang_code', 1, 'https://ror.org/00nw2x646 LG (India) लजी लाइफ साइंसेज इंडिया प्रा। लिमिटेड ಲೇಜಿ ಲೈಫ್ ಸೈನ್ಸಸ್ ಇಂಡಿಯಾ ಪ್ರೈ. ಲಿಮಿಟೆಡ್'), (65585, 'https://ror.org/00nwrzz95', 'no_lang_code', 1, 'https://ror.org/00nwrzz95 Beijing Founder Electronics (China) 北京北大方正电子有限公司'), (65586, 'https://ror.org/00nypd214', 'en', 1, 'https://ror.org/00nypd214 Bundesverband WindEnergie German Wind Energy Association'), (65587, 'https://ror.org/00nz1s384', 'no_lang_code', 1, 'https://ror.org/00nz1s384 Belorusneft (Belarus) Белоруснефть'), (65588, 'https://ror.org/00p0gp915', 'en', 1, 'https://ror.org/00p0gp915 Saudi Digital Library المكتبة الرقمية السعودية'), (65589, 'https://ror.org/00p10a639', 'no_lang_code', 1, 'https://ror.org/00p10a639 Drax (United Kingdom)'), (65590, 'https://ror.org/00p18a507', 'no_lang_code', 1, 'https://ror.org/00p18a507 China First Heavy Industries (China) 中国第一重型机械英'), (65591, 'https://ror.org/00p24re17', 'no_lang_code', 1, 'https://ror.org/00p24re17 Zhongji Test Equipment (China) 中机试验装备股份有限公司'), (65592, 'https://ror.org/00p285362', 'en', 1, 'https://ror.org/00p285362 The Society for Dance Documentation & History 무용 협회 문서 및 역사'), (65593, 'https://ror.org/00p2s1h75', 'en', 1, 'https://ror.org/00p2s1h75 Equality and Human Rights Commission'), (65594, 'https://ror.org/00p2smd09', 'en', 1, 'https://ror.org/00p2smd09 Manchester Climate Change Agency'), (65595, 'https://ror.org/00p3a2r17', 'en', 1, 'https://ror.org/00p3a2r17 Lietuvos automobilių kelių direkcija prie Susisiekimo ministerijos Lithuanian Road Administration under the Ministry of Transport and Communications'), (65596, 'https://ror.org/00p3qeq60', 'no_lang_code', 1, 'https://ror.org/00p3qeq60 YuYu Pharma (South Korea)'), (65597, 'https://ror.org/00p46pc96', 'no_lang_code', 1, 'https://ror.org/00p46pc96 (주)넥스바이오 Nex Bio (South Korea)'), (65598, 'https://ror.org/00p4rkj69', 'no_lang_code', 1, 'https://ror.org/00p4rkj69 Qihoo 360 (China) 奇虎360'), (65599, 'https://ror.org/00p4t5755', 'en', 1, 'https://ror.org/00p4t5755 Research Institute of Radio ФГУП Научно-исследовательский институт радио'), (65600, 'https://ror.org/00p544d65', 'no_lang_code', 1, 'https://ror.org/00p544d65 Cyclone Energy Group (United States)'), (65601, 'https://ror.org/00p5h5h82', 'en', 1, 'https://ror.org/00p5h5h82 ELI-HU Research and Development Non-Profit'), (65602, 'https://ror.org/00p6ghq98', 'en', 1, 'https://ror.org/00p6ghq98 Hong Kong Productivity Council 香港生產力促進局'), (65603, 'https://ror.org/00p6s4733', 'en', 1, 'https://ror.org/00p6s4733 Newton International School'), (65604, 'https://ror.org/00p7fct09', 'no_lang_code', 1, 'https://ror.org/00p7fct09 Oxford Drug Design (United Kingdom)'), (65605, 'https://ror.org/00pb9rf78', 'no_lang_code', 1, 'https://ror.org/00pb9rf78 GoDaddy (United States)'), (65606, 'https://ror.org/00pbt4z69', 'en', 1, 'https://ror.org/00pbt4z69 North Caucasian Zonal Scientific Research Veterinary Institute Северо-Кавказский Зональный научно-исследовательский ветеринарный институт'), (65607, 'https://ror.org/00pdf6q45', 'en', 1, 'https://ror.org/00pdf6q45 Xiamen Institute of Building Research Group 厦门建筑科学研究院'), (65608, 'https://ror.org/00pdq3d37', 'en', 1, 'https://ror.org/00pdq3d37 Center for State and Local Government Excellence'), (65609, 'https://ror.org/00pfnk039', 'no_lang_code', 1, 'https://ror.org/00pfnk039 ExxonMobil (Qatar) إكسون موبيل'), (65610, 'https://ror.org/00pgef156', 'en', 1, 'https://ror.org/00pgef156 End Domestic Abuse Wisconsin'), (65611, 'https://ror.org/00pgy4f30', 'no_lang_code', 1, 'https://ror.org/00pgy4f30 China Electric Equipment Group (China) 中电电气集团有限公司'), (65612, 'https://ror.org/00pmgap74', 'no_lang_code', 1, 'https://ror.org/00pmgap74 Dabur (India) डाबर'), (65613, 'https://ror.org/00ppf7x29', 'en', 1, 'https://ror.org/00ppf7x29 Institut sur la Gouvernance Institute on Governance'), (65614, 'https://ror.org/00pqj0a35', 'en', 1, 'https://ror.org/00pqj0a35 An Roinn Dlí agus Cirt Department of Justice'), (65615, 'https://ror.org/00pss1k50', 'no_lang_code', 1, 'https://ror.org/00pss1k50 Bloodaxe Books (United Kingdom)'), (65616, 'https://ror.org/00pthr413', 'fr', 1, 'https://ror.org/00pthr413 Hôpital Fleurimont'), (65617, 'https://ror.org/00pvegc36', 'no_lang_code', 1, 'https://ror.org/00pvegc36 Chevron (United Kingdom)'), (65618, 'https://ror.org/00pvmfq97', 'no_lang_code', 1, 'https://ror.org/00pvmfq97 Galamedia (Canada)'), (65619, 'https://ror.org/00pvxy857', 'no_lang_code', 1, 'https://ror.org/00pvxy857 Cargotec (Poland)'), (65620, 'https://ror.org/00pw5mk76', 'de', 1, 'https://ror.org/00pw5mk76 Bundesverband Naturkost Naturwaren'), (65621, 'https://ror.org/00pxdqq86', 'en', 1, 'https://ror.org/00pxdqq86 The T.S. Eliot Society of Korea 한국T.S.엘리엇학회'), (65622, 'https://ror.org/00pzjx720', 'no_lang_code', 1, 'https://ror.org/00pzjx720 Body Organ Biomedical (Taiwan)'), (65623, 'https://ror.org/00q03be40', 'fr', 1, 'https://ror.org/00q03be40 L’Institut Wallon de l’Évaluation, de la Prospective et de la Statistique'), (65624, 'https://ror.org/00q0cd663', 'no_lang_code', 1, 'https://ror.org/00q0cd663 Ooredoo (Qatar) أوريدو'), (65625, 'https://ror.org/00q167h80', 'no_lang_code', 1, 'https://ror.org/00q167h80 Phorest Salon Software (Ireland)'), (65626, 'https://ror.org/00q1ddg22', 'en', 1, 'https://ror.org/00q1ddg22 North-Caucasian Zonal Research Institute of Horticulture and Viticulture Северо-Кавказский Зональный научно-исследовательский институт садоводства и виноградарства'), (65627, 'https://ror.org/00q3w5456', 'en', 1, 'https://ror.org/00q3w5456 Hellenic Civil Aviation Authority Υπηρεσία Πολιτικής Αεροπορίας'), (65628, 'https://ror.org/00q650071', 'no_lang_code', 1, 'https://ror.org/00q650071 Korea Pharma (South Korea) 한국파마'), (65629, 'https://ror.org/00q7qmn76', 'en', 1, 'https://ror.org/00q7qmn76 Polish Air Navigation Services Agency Polska Agencja Żeglugi Powietrznej'), (65630, 'https://ror.org/00q9egp83', 'no_lang_code', 1, 'https://ror.org/00q9egp83 Rough Magic Theatre (Ireland)'), (65631, 'https://ror.org/00q9tch90', 'no_lang_code', 1, 'https://ror.org/00q9tch90 Amneal (India)'), (65632, 'https://ror.org/00qa3c235', 'no_lang_code', 1, 'https://ror.org/00qa3c235 Konka (China) 康佳集团'), (65633, 'https://ror.org/00qa68036', 'no_lang_code', 1, 'https://ror.org/00qa68036 Exactech (South Korea)'), (65634, 'https://ror.org/00qb33m26', 'en', 1, 'https://ror.org/00qb33m26 Research Institute of Scientific Research and Production Association Научно-исследовательский институт научно-исследовательского и производственного объединения'), (65635, 'https://ror.org/00qbcq685', 'no_lang_code', 1, 'https://ror.org/00qbcq685 Cavium (United States)'), (65636, 'https://ror.org/00qc4yc66', 'en', 1, 'https://ror.org/00qc4yc66 New Mexico Military Institute'), (65637, 'https://ror.org/00qdcrt37', 'en', 1, 'https://ror.org/00qdcrt37 Korean Constitutional Law Association 한국헌법학회'), (65638, 'https://ror.org/00qe7ms27', 'en', 1, 'https://ror.org/00qe7ms27 KG Hospital'), (65639, 'https://ror.org/00qe9bz64', 'en', 1, 'https://ror.org/00qe9bz64 Blackpool Council'), (65640, 'https://ror.org/00qj80m76', 'no_lang_code', 1, 'https://ror.org/00qj80m76 BIPVco (United Kingdom)'), (65641, 'https://ror.org/00qjpp897', 'en', 1, 'https://ror.org/00qjpp897 Centre Cyber-aide'), (65642, 'https://ror.org/00qmy0x85', 'en', 1, 'https://ror.org/00qmy0x85 Internationaal Instituut voor de stedelijke omgeving International Institute for the Urban Environment'), (65643, 'https://ror.org/00qq6rm15', 'en', 1, 'https://ror.org/00qq6rm15 The Zalman Shazar Center מרכז זלמן שזר'), (65644, 'https://ror.org/00qrd4818', 'no_lang_code', 1, 'https://ror.org/00qrd4818 Pharmbio Korea (South Korea)'), (65645, 'https://ror.org/00qrrpk64', 'en', 1, 'https://ror.org/00qrrpk64 International Health Central American Institute Foundation'), (65646, 'https://ror.org/00qt31k61', 'no_lang_code', 1, 'https://ror.org/00qt31k61 Fido Intelligence (Poland)'), (65647, 'https://ror.org/00qtezm52', 'no_lang_code', 1, 'https://ror.org/00qtezm52 HealthUnlocked (United Kingdom)'), (65648, 'https://ror.org/00qvayv53', 'en', 1, 'https://ror.org/00qvayv53 St Nicholas Trust'), (65649, 'https://ror.org/00qvnkt09', 'no_lang_code', 1, 'https://ror.org/00qvnkt09 True Films (Ireland)'), (65650, 'https://ror.org/00qvnyw14', 'no_lang_code', 1, 'https://ror.org/00qvnyw14 Jets Technics (China)'), (65651, 'https://ror.org/00r0vv945', 'en', 1, 'https://ror.org/00r0vv945 Voronezh State University of Forestry and Technologies Воронежский государственный лесотехнический университет им. Г.ф. Морозова'), (65652, 'https://ror.org/00r20e176', 'en', 1, 'https://ror.org/00r20e176 Cumann na nInnealtóirí Engineers Ireland'), (65653, 'https://ror.org/00r2cc364', 'no_lang_code', 1, 'https://ror.org/00r2cc364 REGEN Biotech (South Korea)'), (65654, 'https://ror.org/00r2js569', 'no_lang_code', 1, 'https://ror.org/00r2js569 Golden Concord Group (China) 金色 康科德集团'), (65655, 'https://ror.org/00r2s0s14', 'en', 1, 'https://ror.org/00r2s0s14 Shandong Institute of Food and Drug Inspection 山东省食品药品检验研究院'), (65656, 'https://ror.org/00r2ty054', 'no_lang_code', 1, 'https://ror.org/00r2ty054 Lively Impact (China)'), (65657, 'https://ror.org/00r7x5x17', 'en', 1, 'https://ror.org/00r7x5x17 Sunshine Hospitals సన్ షైన్ హాస్పిటల్స్'), (65658, 'https://ror.org/00rarg214', 'no_lang_code', 1, 'https://ror.org/00rarg214 Penza Electrotechnical Research Institute (Russia) Пензенский научно-исследовательский'), (65659, 'https://ror.org/00rarw420', 'no_lang_code', 1, 'https://ror.org/00rarw420 Harmonic (United States)'), (65660, 'https://ror.org/00razdc11', 'no_lang_code', 1, 'https://ror.org/00razdc11 Avantor (Poland)'), (65661, 'https://ror.org/00rbnn565', 'en', 1, 'https://ror.org/00rbnn565 Liaoning General Aviation Research Institute 辽宁通用航空研究院'), (65662, 'https://ror.org/00rbqbc98', 'en', 1, 'https://ror.org/00rbqbc98 Wellcome Centre of Cultures and Environments of Health'), (65663, 'https://ror.org/00rdb5f98', 'en', 1, 'https://ror.org/00rdb5f98 All-Russian Scientific Research Institute of Agrochemistry named after D.N. Pryanishnikova Всероссийский научно-исследовательский институт имени Д.Н.Прянишникова'), (65664, 'https://ror.org/00rdva175', 'en', 1, 'https://ror.org/00rdva175 Bundesagentur für Arbeit Federal Employment Agency'), (65665, 'https://ror.org/00rejsz57', 'en', 1, 'https://ror.org/00rejsz57 All-Russian Scientific and Research Institute of Brucellosis and Tuberculosis of Animals Всеросcийский научно-исcледовательский институт бруцеллеза и туберкулеза животных'), (65666, 'https://ror.org/00rhakp81', 'en', 1, 'https://ror.org/00rhakp81 GAM Investments'), (65667, 'https://ror.org/00rhats79', 'no_lang_code', 1, 'https://ror.org/00rhats79 Abbott (Singapore)'), (65668, 'https://ror.org/00rhvvr45', 'no_lang_code', 1, 'https://ror.org/00rhvvr45 China Railway Shanghai Design Institute Group (China) 中铁上海设计院集团'), (65669, 'https://ror.org/00rm5gm86', 'en', 1, 'https://ror.org/00rm5gm86 Exemplar Associates'), (65670, 'https://ror.org/00rm8g048', 'no_lang_code', 1, 'https://ror.org/00rm8g048 Bharat Biotech (India)'), (65671, 'https://ror.org/00rmh4k73', 'no_lang_code', 1, 'https://ror.org/00rmh4k73 Evotec (India)'), (65672, 'https://ror.org/00rn0j915', 'no_lang_code', 1, 'https://ror.org/00rn0j915 Geo Green Power (United Kingdom)'), (65673, 'https://ror.org/00rpc7954', 'en', 1, 'https://ror.org/00rpc7954 International Tuberculosis Research Center 국제결핵연구소'), (65674, 'https://ror.org/00rrtbd20', 'no_lang_code', 1, 'https://ror.org/00rrtbd20 EnerSys (United Kingdom)'), (65675, 'https://ror.org/00rs2nc95', 'en', 1, 'https://ror.org/00rs2nc95 Ministry of Transport, Maritime Affairs and Communications Ulaştırma, Denizcilik ve Haberleşme Bakanlığı'), (65676, 'https://ror.org/00rs3yk18', 'en', 1, 'https://ror.org/00rs3yk18 Korean Home Economics Education Association 한국가정과교육학회 회'), (65677, 'https://ror.org/00rtmek18', 'no_lang_code', 1, 'https://ror.org/00rtmek18 Nobel Academy'), (65678, 'https://ror.org/00rv22c87', 'de', 1, 'https://ror.org/00rv22c87 ift Rosenheim'), (65679, 'https://ror.org/00rwx5a44', 'en', 1, 'https://ror.org/00rwx5a44 National Directorate General for Disaster Management'), (65680, 'https://ror.org/00rxcx675', 'en', 1, 'https://ror.org/00rxcx675 Tianjin Heat Treatment Research Institute 天津市热处理研究所有限公司'), (65681, 'https://ror.org/00rxg5003', 'no_lang_code', 1, 'https://ror.org/00rxg5003 Nets (Denmark)'), (65682, 'https://ror.org/00s011v85', 'no_lang_code', 1, 'https://ror.org/00s011v85 Coal Industry Taiyuan Design and Research Institute (China) 煤炭工业太原设计研究院'), (65683, 'https://ror.org/00s50z725', 'en', 1, 'https://ror.org/00s50z725 Metamorphose VI AISBL'), (65684, 'https://ror.org/00s8enb31', 'no_lang_code', 1, 'https://ror.org/00s8enb31 Spectrum Clinical Research (India)'), (65685, 'https://ror.org/00s8pzv55', 'en', 1, 'https://ror.org/00s8pzv55 Ministry of Economic Development and Trade Міністерство економічного розвитку і торгівлі України'), (65686, 'https://ror.org/00sc0e019', 'en', 1, 'https://ror.org/00sc0e019 Shinhan University 신한 대학교'), (65687, 'https://ror.org/00sd4s212', 'fr', 1, 'https://ror.org/00sd4s212 Institut Supérieur des Études Technologiques de Nabeul المعهد العالي للدراسات التكنولوجية بتابل'), (65688, 'https://ror.org/00sdawb83', 'en', 1, 'https://ror.org/00sdawb83 Co-operatives of Innovative Intellectuals 创新知识分子合作社'), (65689, 'https://ror.org/00se45k92', 'en', 1, 'https://ror.org/00se45k92 Korea Open Association Early Childhood Education 한국열린유아교육학회'), (65690, 'https://ror.org/00sg0ja15', 'en', 1, 'https://ror.org/00sg0ja15 Amgueddfa Ceredigion Ceredigion Museum'), (65691, 'https://ror.org/00sg44t81', 'no_lang_code', 1, 'https://ror.org/00sg44t81 Houot Agencement (France)'), (65692, 'https://ror.org/00shp5f66', 'en', 1, 'https://ror.org/00shp5f66 Saratov Research Institute of Traumatology and Orthopedics Саратовский научно-исследовательский институт травматологии и ортопедии'), (65693, 'https://ror.org/00shsg218', 'no_lang_code', 1, 'https://ror.org/00shsg218 Daewon Pharm (South Korea) 대원제약'), (65694, 'https://ror.org/00sj61m74', 'en', 1, 'https://ror.org/00sj61m74 Institute of Marine Technology Problems of the Far-Eastern Branch of the Russian Academy of Sciences учреждение науки Институт проблем морских технологий Дальневосточного отделения Российской академии наук'), (65695, 'https://ror.org/00sn3eq47', 'en', 1, 'https://ror.org/00sn3eq47 All-Russian Horticultural Institute for Breeding, Agrotechnology and Nursery ВСЕРОССИЙСКИЙ СЕЛЕКЦИОННО-ТЕХНОЛОГИЧЕСКИЙ ИНСТИТУТ САДОВОДСТВА И ПИТОМНИКОВОДСТВА'), (65696, 'https://ror.org/00sp8me03', 'en', 1, 'https://ror.org/00sp8me03 Flemish Community'), (65697, 'https://ror.org/00st18g74', 'en', 1, 'https://ror.org/00st18g74 Hanoi Pedagogical University 2 Trường Đại học Sư phạm Hà Nội 2'), (65698, 'https://ror.org/00stcbe47', 'en', 1, 'https://ror.org/00stcbe47 Consortium Clinical Research'), (65699, 'https://ror.org/00sv3ym08', 'en', 1, 'https://ror.org/00sv3ym08 Institute of Precision Mechanics and Computer Science S.A. Lebedev Институт точной механики и вычислительной техники имени С. А. Лебедева РАН'), (65700, 'https://ror.org/00sveth74', 'en', 1, 'https://ror.org/00sveth74 Asian Community AIDS Services'), (65701, 'https://ror.org/00sw6qf69', 'en', 1, 'https://ror.org/00sw6qf69 Hong Kong Statistical Society 香港統計學會'), (65702, 'https://ror.org/00swjtf68', 'en', 1, 'https://ror.org/00swjtf68 Anhui Institute of Robotics Industrial Technology Research Institute 安徽工程大学机器人产业技术研究院'), (65703, 'https://ror.org/00sxe1e69', 'en', 1, 'https://ror.org/00sxe1e69 Citizens Committee for Historic Preservation'), (65704, 'https://ror.org/00sz56h79', 'en', 1, 'https://ror.org/00sz56h79 HKUST Shenzhen Research Institute'), (65705, 'https://ror.org/00szk3r18', 'no_lang_code', 1, 'https://ror.org/00szk3r18 IQVIA (India)'), (65706, 'https://ror.org/00t01w369', 'no_lang_code', 1, 'https://ror.org/00t01w369 Simcere Pharmaceutical (China) 先声药业'), (65707, 'https://ror.org/00t0bdg44', 'no_lang_code', 1, 'https://ror.org/00t0bdg44 Exosect Enabling Technologies'), (65708, 'https://ror.org/00t3nxd66', 'no_lang_code', 1, 'https://ror.org/00t3nxd66 Samjin Pharm (South Korea) 삼진제약'), (65709, 'https://ror.org/00t442a43', 'no_lang_code', 1, 'https://ror.org/00t442a43 UCB Pharma (Spain)'), (65710, 'https://ror.org/00t5sva18', 'en', 1, 'https://ror.org/00t5sva18 Center for Agricultural Resources Research 农业资源研究中心'), (65711, 'https://ror.org/00t6s9p18', 'en', 1, 'https://ror.org/00t6s9p18 Lloyd''s Maritime Academy'), (65712, 'https://ror.org/00t8fsx92', 'en', 1, 'https://ror.org/00t8fsx92 Korea Economic Development Institute 한국경제발전학회'), (65713, 'https://ror.org/00t8p6b60', 'en', 1, 'https://ror.org/00t8p6b60 Bapu Nature Cure Hospital & Yogashram'), (65714, 'https://ror.org/00t8tnj85', 'en', 1, 'https://ror.org/00t8tnj85 Korea Customs Trade Development Institute 한국 관세무역개발원'), (65715, 'https://ror.org/00t8z0x94', 'en', 1, 'https://ror.org/00t8z0x94 Hong Kong Information Technology Joint Council 香港資訊科技聯會'), (65716, 'https://ror.org/00tc3yz20', 'no_lang_code', 1, 'https://ror.org/00tc3yz20 Babcock International Group (United Kingdom)'), (65717, 'https://ror.org/00td86h58', 'fr', 1, 'https://ror.org/00td86h58 Michel-Sarrazin'), (65718, 'https://ror.org/00tem2640', 'en', 1, 'https://ror.org/00tem2640 Hyattsville Community Development Corporation'), (65719, 'https://ror.org/00tf0tc42', 'no_lang_code', 1, 'https://ror.org/00tf0tc42 Beiersdorf (Russia) Байерсдорф'), (65720, 'https://ror.org/00tha0b59', 'en', 1, 'https://ror.org/00tha0b59 Scholars at Risk'), (65721, 'https://ror.org/00tmwt177', 'en', 1, 'https://ror.org/00tmwt177 Agency of European innovations'), (65722, 'https://ror.org/00tn0fn37', 'no_lang_code', 1, 'https://ror.org/00tn0fn37 Jaywing (United Kingdom)'), (65723, 'https://ror.org/00tpb3x19', 'no_lang_code', 1, 'https://ror.org/00tpb3x19 Infrastructure Research & Development (Qatar)'), (65724, 'https://ror.org/00tpwmd46', 'en', 1, 'https://ror.org/00tpwmd46 China Household Electrical Appliances Research Institute 中国家用电器研究院'), (65725, 'https://ror.org/00tq75c95', 'en', 1, 'https://ror.org/00tq75c95 Korea Association for Social Welfare Studies'), (65726, 'https://ror.org/00tqqep04', 'en', 1, 'https://ror.org/00tqqep04 Jewish Agency for Israel הסוכנות היהודית לארץ ישראל'), (65727, 'https://ror.org/00tsc5z15', 'no_lang_code', 1, 'https://ror.org/00tsc5z15 Gazpromekt (Russia) ГазПроект'), (65728, 'https://ror.org/00txf1d86', 'no_lang_code', 1, 'https://ror.org/00txf1d86 Danyang Hengan Chemical (China) 丹阳市恒安化工有限公司是'), (65729, 'https://ror.org/00v025f24', 'no_lang_code', 1, 'https://ror.org/00v025f24 GDL (China)'), (65730, 'https://ror.org/00v2fq029', 'en', 1, 'https://ror.org/00v2fq029 Gangwon State University 강원도립대학교'), (65731, 'https://ror.org/00v70rk54', 'no_lang_code', 1, 'https://ror.org/00v70rk54 BBPOS (China)'), (65732, 'https://ror.org/00v85ww51', 'no_lang_code', 1, 'https://ror.org/00v85ww51 China Railway Signal & Communication (China) 中国铁路通信信号股份有限公司'), (65733, 'https://ror.org/00v8mj605', 'en', 1, 'https://ror.org/00v8mj605 American Friends of the Hebrew University'), (65734, 'https://ror.org/00v8t0x13', 'en', 1, 'https://ror.org/00v8t0x13 St. Petersburg Scientific Research Institute of Forestry Санкт-Петербургский научно-исследовательский институт лесного хозяйства'), (65735, 'https://ror.org/00vaeh811', 'en', 1, 'https://ror.org/00vaeh811 Institute for Environmental Security'), (65736, 'https://ror.org/00vcfn567', 'en', 1, 'https://ror.org/00vcfn567 Association of German Public Banks Bundesverband Öffentlicher Banken Deutschlands'), (65737, 'https://ror.org/00vdwj549', 'en', 1, 'https://ror.org/00vdwj549 Textile Council of Hong Kong'), (65738, 'https://ror.org/00vdwtt91', 'en', 1, 'https://ror.org/00vdwtt91 National Black Leadership Commission on AIDS'), (65739, 'https://ror.org/00ve9f380', 'de', 1, 'https://ror.org/00ve9f380 Ministerium des Innern des Landes Nordrhein-Westfalen'), (65740, 'https://ror.org/00vg14y34', 'no_lang_code', 1, 'https://ror.org/00vg14y34 UnionPay (China) 银联'), (65741, 'https://ror.org/00vg62x98', 'en', 1, 'https://ror.org/00vg62x98 Indian Education Society''s V. N. Sule Guruji English Medium School व्ही एन सुळे गुरुजी इंग्रजी माध्यम माध्यमिक शाळा'), (65742, 'https://ror.org/00vgqhr90', 'en', 1, 'https://ror.org/00vgqhr90 Federal State Budgetary Scientific Institution Caspian Fisheries Research Institute Дагестанский филиал ФГБНУ Каспийский научно-исследовательский институт рыбного хозяйства'), (65743, 'https://ror.org/00vn8k536', 'no_lang_code', 1, 'https://ror.org/00vn8k536 Fujian Star-net (China)'), (65744, 'https://ror.org/00vpqzk55', 'no_lang_code', 1, 'https://ror.org/00vpqzk55 SillaJen (South Korea) 젠 의자'), (65745, 'https://ror.org/00vs6f587', 'en', 1, 'https://ror.org/00vs6f587 Hong Kong Information Technology Federation 香港資訊科技商會'), (65746, 'https://ror.org/00vsv8c52', 'no_lang_code', 1, 'https://ror.org/00vsv8c52 China Electronics Corporation (China) 中國電子公司'), (65747, 'https://ror.org/00vtf4k85', 'no_lang_code', 1, 'https://ror.org/00vtf4k85 BioScientia (Poland)'), (65748, 'https://ror.org/00vvey578', 'en', 1, 'https://ror.org/00vvey578 Taiya Inlet Watershed Council'), (65749, 'https://ror.org/00vx4ds80', 'no_lang_code', 1, 'https://ror.org/00vx4ds80 Anhui Fuhuang Architectural Design Research (China)'), (65750, 'https://ror.org/00vx7p454', 'en', 1, 'https://ror.org/00vx7p454 Glencree'), (65751, 'https://ror.org/00vx9pd91', 'en', 1, 'https://ror.org/00vx9pd91 Hong Kong Cosmetic Association 香港化粧品同業協會有限公司'), (65752, 'https://ror.org/00vy04v88', 'en', 1, 'https://ror.org/00vy04v88 The Society of Korean Language and Culture 한국어와 한국 문화 학회'), (65753, 'https://ror.org/00w1qwz28', 'en', 1, 'https://ror.org/00w1qwz28 Ministerstwo Inwestycji i Rozwoju Ministry of Investment and Development'), (65754, 'https://ror.org/00w3s9s05', 'no_lang_code', 1, 'https://ror.org/00w3s9s05 CIDP Biotech (India)'), (65755, 'https://ror.org/00w43nz28', 'en', 1, 'https://ror.org/00w43nz28 Clean Air Task Force'), (65756, 'https://ror.org/00w4zfe96', 'no_lang_code', 1, 'https://ror.org/00w4zfe96 Chaowei Group (China)'), (65757, 'https://ror.org/00w6eec53', 'no_lang_code', 1, 'https://ror.org/00w6eec53 Medtronic (India)'), (65758, 'https://ror.org/00w85kx21', 'en', 1, 'https://ror.org/00w85kx21 Breast Cancer Care'), (65759, 'https://ror.org/00wa5fs40', 'no_lang_code', 1, 'https://ror.org/00wa5fs40 Shenzhen General Institute of Architectural Design and Research (China) 深圳市建筑设计研究总院有限公司'), (65760, 'https://ror.org/00wbknw54', 'no_lang_code', 1, 'https://ror.org/00wbknw54 Techworks Marine (Ireland)'), (65761, 'https://ror.org/00wc09b24', 'en', 1, 'https://ror.org/00wc09b24 The Korean Society of Eastern Art Studies 한국 동서양 학회'), (65762, 'https://ror.org/00wcc7f06', 'no_lang_code', 1, 'https://ror.org/00wcc7f06 Karmaveer Bhausaheb Hiray Dental College and Hospital'), (65763, 'https://ror.org/00wda1y42', 'en', 1, 'https://ror.org/00wda1y42 Scientific Research Institute of Agriculture of the Central Black Earth Zone named after V.V. Dokuchaeva Научно-исследовательский институт сельского хозяйства Центрально-Черноземной полосы имени В.В. Докучаева'), (65764, 'https://ror.org/00we2ka15', 'no_lang_code', 1, 'https://ror.org/00we2ka15 Haemair (United Kingdom)'), (65765, 'https://ror.org/00wg0ca52', 'no_lang_code', 1, 'https://ror.org/00wg0ca52 Beijing Longda Light Industry Holding (China) 北京隆达轻工控股有限责任公司'), (65766, 'https://ror.org/00wgtjd08', 'en', 1, 'https://ror.org/00wgtjd08 Guangdong Institute of Arts and Sciences 广东文理职业学院'), (65767, 'https://ror.org/00whypb06', 'no_lang_code', 1, 'https://ror.org/00whypb06 Supor (China)'), (65768, 'https://ror.org/00wja7n54', 'no_lang_code', 1, 'https://ror.org/00wja7n54 Fuyao Group (China)'), (65769, 'https://ror.org/00wjmqn02', 'en', 1, 'https://ror.org/00wjmqn02 Korean Logistics Research Association 한국물류학회'), (65770, 'https://ror.org/00wjyb955', 'no_lang_code', 1, 'https://ror.org/00wjyb955 Million Tech Development (China)'), (65771, 'https://ror.org/00wkv8m74', 'no_lang_code', 1, 'https://ror.org/00wkv8m74 Morrisons (United Kingdom)'), (65772, 'https://ror.org/00wkvrs75', 'en', 1, 'https://ror.org/00wkvrs75 State Scientific Research Institute of Biological Instrumentation ГОСУДАРСТВЕННЫЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ БИОЛОГИЧЕСКОГО ПРИБОРОСТРОЕНИЯ'), (65773, 'https://ror.org/00wm96095', 'en', 1, 'https://ror.org/00wm96095 24-й Центральный научно-исследовательский институт Министерства обороны России 24th Central Research Institute of the Russian Defence Ministry'), (65774, 'https://ror.org/00wmar339', 'no_lang_code', 1, 'https://ror.org/00wmar339 JSAB Technologies (China)'), (65775, 'https://ror.org/00wmyyg64', 'en', 1, 'https://ror.org/00wmyyg64 History & Policy'), (65776, 'https://ror.org/00wppnk92', 'en', 1, 'https://ror.org/00wppnk92 Assembly of First Nations'), (65777, 'https://ror.org/00wq2sy59', 'no_lang_code', 1, 'https://ror.org/00wq2sy59 Iggesund Paperboard (Sweden)'), (65778, 'https://ror.org/00wrskr85', 'no_lang_code', 1, 'https://ror.org/00wrskr85 Igeolise (United Kingdom)'), (65779, 'https://ror.org/00ws3fz89', 'en', 1, 'https://ror.org/00ws3fz89 Hong Kong Tourism Board 香港旅遊發展局'), (65780, 'https://ror.org/00wsvb073', 'no_lang_code', 1, 'https://ror.org/00wsvb073 "Institute" Energosetproject" «Институт «ЭНЕРГОСЕТЬПРОЕКТ»'), (65781, 'https://ror.org/00wt3rj94', 'no_lang_code', 1, 'https://ror.org/00wt3rj94 Technopolis (Finland)'), (65782, 'https://ror.org/00wtwe162', 'en', 1, 'https://ror.org/00wtwe162 John Dora Consulting'), (65783, 'https://ror.org/00wwj2d93', 'no_lang_code', 1, 'https://ror.org/00wwj2d93 CellaMedic Biotechnology (South Korea) 세라메딕 바이오테크놀러지'), (65784, 'https://ror.org/00wwk7w85', 'en', 1, 'https://ror.org/00wwk7w85 Federal Scientific Center for Agroecology, Integrated Land Reclamation and Protective Afforestation'), (65785, 'https://ror.org/00x0k1767', 'en', 1, 'https://ror.org/00x0k1767 Korean Consumption Culture Association 한국소비문화학회'), (65786, 'https://ror.org/00x4jvm44', 'no_lang_code', 1, 'https://ror.org/00x4jvm44 Flock (United Kingdom)'), (65787, 'https://ror.org/00x5f1424', 'no_lang_code', 1, 'https://ror.org/00x5f1424 Metrogiprotrans (Russia) Метрогипротранс'), (65788, 'https://ror.org/00x8he857', 'no_lang_code', 1, 'https://ror.org/00x8he857 Doncasters (United Kingdom)'), (65789, 'https://ror.org/00x935r91', 'no_lang_code', 1, 'https://ror.org/00x935r91 MoszhilNIIproekt МосжилНИИпроект'), (65790, 'https://ror.org/00x9re747', 'en', 1, 'https://ror.org/00x9re747 Scientific Research Institute for the Kursk Magnetic Anomaly named after L.D. Shevyakova Научно-исследовательский институт по проблемам Курской магнитной аномалии имени Л.Д. Шевякова'), (65791, 'https://ror.org/00xaj0b77', 'en', 1, 'https://ror.org/00xaj0b77 Indo-US Super Speciality Hospital భారత్-అమెరికా సూపర్ స్పెషాలిటీ హాస్పిటల్'), (65792, 'https://ror.org/00xb05e36', 'no_lang_code', 1, 'https://ror.org/00xb05e36 Advanced Micro Devices (United Kingdom)'), (65793, 'https://ror.org/00xbas612', 'en', 1, 'https://ror.org/00xbas612 Rabindranath Tagore International Institute of Cardiac Sciences'), (65794, 'https://ror.org/00xd7fg81', 'no_lang_code', 1, 'https://ror.org/00xd7fg81 Vedic Lifesciences (India)'), (65795, 'https://ror.org/00xdme738', 'en', 1, 'https://ror.org/00xdme738 Hunan Radio and Television University 湖南广播电视大学'), (65796, 'https://ror.org/00xe3w941', 'en', 1, 'https://ror.org/00xe3w941 Applied Energy Lab Εργαστήριο Εφαρμογών Ενέργειας'), (65797, 'https://ror.org/00xfr3x03', 'no_lang_code', 1, 'https://ror.org/00xfr3x03 Plusvital (Ireland)'), (65798, 'https://ror.org/00xgd4p18', 'no_lang_code', 1, 'https://ror.org/00xgd4p18 Knowledge Unlatched (Germany)'), (65799, 'https://ror.org/00xgj2b15', 'no_lang_code', 1, 'https://ror.org/00xgj2b15 Tianjin Food Group (China) 天津食品集团'), (65800, 'https://ror.org/00xgwej35', 'no_lang_code', 1, 'https://ror.org/00xgwej35 Vitalograph (Ireland)'), (65801, 'https://ror.org/00xh1ex65', 'en', 1, 'https://ror.org/00xh1ex65 Harbin Huade University 哈尔滨华德学院'), (65802, 'https://ror.org/00xhxgs05', 'no_lang_code', 1, 'https://ror.org/00xhxgs05 Oryx Publishing and Advertising (Qatar)'), (65803, 'https://ror.org/00xj9p276', 'no_lang_code', 1, 'https://ror.org/00xj9p276 GoPro (United States)'), (65804, 'https://ror.org/00xkt2t97', 'en', 1, 'https://ror.org/00xkt2t97 Animal Health Ireland'), (65805, 'https://ror.org/00xms2q31', 'en', 1, 'https://ror.org/00xms2q31 Institute of International Visual Arts'), (65806, 'https://ror.org/00xn1x092', 'no_lang_code', 1, 'https://ror.org/00xn1x092 Changchun Gold Research Institute (China)'), (65807, 'https://ror.org/00xn99b04', 'en', 1, 'https://ror.org/00xn99b04 Central Research Institute of Chemistry and Mechanics'), (65808, 'https://ror.org/00xnkp952', 'en', 1, 'https://ror.org/00xnkp952 Xinjiang Uygur Autonomous Region Institute Inspection of Special Equipment 新疆维吾尔自治区特种设备检验研究院'), (65809, 'https://ror.org/00xq2zb07', 'en', 1, 'https://ror.org/00xq2zb07 Institute of Nature Management Институт природопользования'), (65810, 'https://ror.org/00xqhy713', 'en', 1, 'https://ror.org/00xqhy713 Heilongjiang Vocational Institute of Ecological Engineering 黑龙江生态工程职业学院'), (65811, 'https://ror.org/00xr42905', 'no_lang_code', 1, 'https://ror.org/00xr42905 Activision Blizzard (United States)'), (65812, 'https://ror.org/00xtpf729', 'pt', 1, 'https://ror.org/00xtpf729 Ministério da Ciência e Tecnologia'), (65813, 'https://ror.org/00xts7a11', 'no_lang_code', 1, 'https://ror.org/00xts7a11 Elisha Systems (United Kingdom)'), (65814, 'https://ror.org/00xxrde38', 'no_lang_code', 1, 'https://ror.org/00xxrde38 Educated Change (United Kingdom)'), (65815, 'https://ror.org/00y05vn70', 'en', 1, 'https://ror.org/00y05vn70 Montreal Police Service Service de Police de la Ville de Montréal'), (65816, 'https://ror.org/00y22s337', 'en', 1, 'https://ror.org/00y22s337 Directia pentru Evidenta Persoanelor si Administrarea Bazelor de Date Directorate for Persons Record and Databases Management'), (65817, 'https://ror.org/00y245p24', 'en', 1, 'https://ror.org/00y245p24 Ural Institute of Traumatology and Orthopedics named after V.D. Chaklin Уральский институт травматологии и ортопедии имени В.Д. Чаклина'), (65818, 'https://ror.org/00y2naf12', 'no_lang_code', 1, 'https://ror.org/00y2naf12 Firesouls (United Kingdom)'), (65819, 'https://ror.org/00y34pm04', 'no_lang_code', 1, 'https://ror.org/00y34pm04 Fusion Software (South Korea)'), (65820, 'https://ror.org/00y6jnc55', 'fr', 1, 'https://ror.org/00y6jnc55 L''Accord Mauricie'), (65821, 'https://ror.org/00y7n3708', 'no_lang_code', 1, 'https://ror.org/00y7n3708 Atlassian (United Kingdom)'), (65822, 'https://ror.org/00y9w2r94', 'no_lang_code', 1, 'https://ror.org/00y9w2r94 Ta Solutions (China)'), (65823, 'https://ror.org/00ycgaj92', 'en', 1, 'https://ror.org/00ycgaj92 Association of Japanology in East Asia 동아시아일본학회'), (65824, 'https://ror.org/00ycq1k13', 'en', 1, 'https://ror.org/00ycq1k13 Wuhan Municipal Engineering Design & Research Institute 武汉市政工程设计研究院有限责任公司简介'), (65825, 'https://ror.org/00ydadx21', 'no_lang_code', 1, 'https://ror.org/00ydadx21 Cheonan Yonam College 천안연암대학'), (65826, 'https://ror.org/00ye1p368', 'en', 1, 'https://ror.org/00ye1p368 Habitat for Humanity'), (65827, 'https://ror.org/00yec5b88', 'no_lang_code', 1, 'https://ror.org/00yec5b88 Macronix International (China)'), (65828, 'https://ror.org/00yhnb286', 'no_lang_code', 1, 'https://ror.org/00yhnb286 Gnosys (United Kingdom)'), (65829, 'https://ror.org/00yjcvf23', 'en', 1, 'https://ror.org/00yjcvf23 40-й Государственный научно-исследовательский институт Министерства обороны Российской Федерации 40th State Research Institute of the Ministry of Defence of the Russian Federation'), (65830, 'https://ror.org/00yjk3k17', 'en', 1, 'https://ror.org/00yjk3k17 Ministry of Transport, Communications and Works Υπουργείο Μεταφορών, Επικοινωνιών και Έργων'), (65831, 'https://ror.org/00yk8z483', 'en', 1, 'https://ror.org/00yk8z483 Canadian Apheresis Group Groupe Canadien d''Aphérèse'), (65832, 'https://ror.org/00ykfqt39', 'en', 1, 'https://ror.org/00ykfqt39 European Nuclear Safety Training & Tutoring Institute'), (65833, 'https://ror.org/00ynr1103', 'en', 1, 'https://ror.org/00ynr1103 Houston Parks Board'), (65834, 'https://ror.org/00yqxqx15', 'no_lang_code', 1, 'https://ror.org/00yqxqx15 OKTECH (China) 海洋王照明科技股份有限公司'), (65835, 'https://ror.org/00ytg8k67', 'en', 1, 'https://ror.org/00ytg8k67 Hong Kong Principals’ Institute 香港校长会'), (65836, 'https://ror.org/00ytxpg21', 'no_lang_code', 1, 'https://ror.org/00ytxpg21 Applied Multilayers (United Kingdom)'), (65837, 'https://ror.org/00yy4hw75', 'de', 1, 'https://ror.org/00yy4hw75 Industrievereinigung Kunststoffverpackungen'), (65838, 'https://ror.org/00yzc7459', 'en', 1, 'https://ror.org/00yzc7459 Korea Entrepreneurship Foundation 한국청년기업가정신재단'), (65839, 'https://ror.org/00z0gd065', 'no_lang_code', 1, 'https://ror.org/00z0gd065 Idealand Electronics (China) 理想和电子'), (65840, 'https://ror.org/00z33z605', 'no_lang_code', 1, 'https://ror.org/00z33z605 Arthritis Ireland'), (65841, 'https://ror.org/00z46p261', 'no_lang_code', 1, 'https://ror.org/00z46p261 BBK Electronics (China) 广东步步高电子工业有限公司'), (65842, 'https://ror.org/00z4cvh19', 'en', 1, 'https://ror.org/00z4cvh19 Korean Association of Middle Eastern Studies 한국 중동 학회'), (65843, 'https://ror.org/00z6nt756', 'en', 1, 'https://ror.org/00z6nt756 Aberdeen Harbour Board'), (65844, 'https://ror.org/00z74rd31', 'no_lang_code', 1, 'https://ror.org/00z74rd31 Shanghai FRP Research Institute (China) 上海玻璃钢研究所'), (65845, 'https://ror.org/00z84ne79', 'en', 1, 'https://ror.org/00z84ne79 Canterbury City Council'), (65846, 'https://ror.org/00z8s7v19', 'no_lang_code', 1, 'https://ror.org/00z8s7v19 Fitbit (United States)'), (65847, 'https://ror.org/00z9txv30', 'en', 1, 'https://ror.org/00z9txv30 Investment and Development Agency of Latvia Latvijas Investīciju un attīstības aģentūra'), (65848, 'https://ror.org/00zbas770', 'en', 1, 'https://ror.org/00zbas770 Art History Association Of Korea 한국미술사학회'), (65849, 'https://ror.org/00zecgp48', 'en', 1, 'https://ror.org/00zecgp48 Scientific Research and Design Institute of Nitric Industry and Organic Synthesis Products Научно-исследовательский и проектный институт азотной промышленности и продуктов органического синтеза'), (65850, 'https://ror.org/00zgbag39', 'no_lang_code', 1, 'https://ror.org/00zgbag39 WiseSpot (China)'), (65851, 'https://ror.org/00zgs1h87', 'no_lang_code', 1, 'https://ror.org/00zgs1h87 Advanced Interconnect Technologies (China) 先进的互连技术'), (65852, 'https://ror.org/00zhe2a05', 'no_lang_code', 1, 'https://ror.org/00zhe2a05 TEI Korea (South Korea)'), (65853, 'https://ror.org/00zkpmz33', 'en', 1, 'https://ror.org/00zkpmz33 National Institute of Medical Statistics'), (65854, 'https://ror.org/00znysx20', 'no_lang_code', 1, 'https://ror.org/00znysx20 Optim Design (United States)'), (65855, 'https://ror.org/00zsjqa04', 'en', 1, 'https://ror.org/00zsjqa04 Light Industry Hangzhou Electromechanical Design Institute 轻工业杭州机电设计研究院'), (65856, 'https://ror.org/00ztg7b72', 'en', 1, 'https://ror.org/00ztg7b72 Historical Association'), (65857, 'https://ror.org/00zv9r340', 'no_lang_code', 1, 'https://ror.org/00zv9r340 Pan Asia Technical Automotive Center (China) 泛亚汽车技术中心'), (65858, 'https://ror.org/00zy1tg06', 'en', 1, 'https://ror.org/00zy1tg06 Learning through Landscapes'), (65859, 'https://ror.org/00zy60964', 'en', 1, 'https://ror.org/00zy60964 Jiangsu Province Special Equipment Safety Supervision and Inspection Institute 江苏省特种设备安全监督检验研究院无锡分院'), (65860, 'https://ror.org/00zymfp03', 'no_lang_code', 1, 'https://ror.org/00zymfp03 Electronics for Imaging (United States)'), (65861, 'https://ror.org/00zypna12', 'en', 1, 'https://ror.org/00zypna12 Korean Association For Studies of Philosophical Thought 한국 철학 연구회'), (65862, 'https://ror.org/00zyzhx45', 'no_lang_code', 1, 'https://ror.org/00zyzhx45 ELG Carbon Fibre (United Kingdom)'), (65863, 'https://ror.org/0100xdb42', 'no_lang_code', 1, 'https://ror.org/0100xdb42 Multichannel (China) 多通道'), (65864, 'https://ror.org/0104w4x66', 'en', 1, 'https://ror.org/0104w4x66 Institute of Engineering Physics Институт инженерной физики Российской Федерации'), (65865, 'https://ror.org/0105p2r38', 'en', 1, 'https://ror.org/0105p2r38 Bristol and Bath Science Park'), (65866, 'https://ror.org/01080h262', 'no_lang_code', 1, 'https://ror.org/01080h262 Research Institute of Cosmic and Aviation Materials (Russia) Научно – исследовательский институт космических и авиационных материалов'), (65867, 'https://ror.org/01085m037', 'no_lang_code', 1, 'https://ror.org/01085m037 Geolang (United Kingdom)'), (65868, 'https://ror.org/010azga70', 'en', 1, 'https://ror.org/010azga70 Tezpur Medical College & Hospital'), (65869, 'https://ror.org/010eqta40', 'en', 1, 'https://ror.org/010eqta40 Qatar Computer Emergency Response Team'), (65870, 'https://ror.org/010f98v62', 'no_lang_code', 1, 'https://ror.org/010f98v62 Encontech (Netherlands)'), (65871, 'https://ror.org/010fems46', 'en', 1, 'https://ror.org/010fems46 Guangzhou Design Institute 广州市设计院'), (65872, 'https://ror.org/010he8702', 'no_lang_code', 1, 'https://ror.org/010he8702 Beijing Enterprises Water Group (China)'), (65873, 'https://ror.org/010jaxs89', 'en', 1, 'https://ror.org/010jaxs89 European Molecular Biology Laboratory'), (65874, 'https://ror.org/010m1c258', 'fr', 1, 'https://ror.org/010m1c258 Agence eSanté'), (65875, 'https://ror.org/010pgs956', 'no_lang_code', 1, 'https://ror.org/010pgs956 Cambridge Reactor Design (United Kingdom)'), (65876, 'https://ror.org/010rhww45', 'en', 1, 'https://ror.org/010rhww45 Experimental Factory of Scientific Engineering and Special Design Department ЭКСПЕРИМЕНТАЛЬНЫЙ ЗАВОД НАУЧНОГО ПРИБОРОСТРОЕНИЯ СО СПЕЦИАЛЬНЫМ КОНСТРУКТОРСКИМ БЮРО'), (65877, 'https://ror.org/010ryc044', 'no_lang_code', 1, 'https://ror.org/010ryc044 Tianjin Research Institute of Electric Science (China) 天津电气科学研究院有限公司'), (65878, 'https://ror.org/010sks923', 'en', 1, 'https://ror.org/010sks923 The Mediterranean Science Commission'), (65879, 'https://ror.org/010t34638', 'no_lang_code', 1, 'https://ror.org/010t34638 Insight (China)'), (65880, 'https://ror.org/010v2ez92', 'no_lang_code', 1, 'https://ror.org/010v2ez92 F5 Networks (United States)'), (65881, 'https://ror.org/010x6sj87', 'en', 1, 'https://ror.org/010x6sj87 Ministry of Culture and Sport of the Republic of Kazakhstan Қазақстан Республикасының Мәдениет және спорт министрлігі'), (65882, 'https://ror.org/010zncz41', 'en', 1, 'https://ror.org/010zncz41 JEI University 인천재능대학교'), (65883, 'https://ror.org/010znyz59', 'en', 1, 'https://ror.org/010znyz59 Beijing Agricultural Machinery Research Institute 北京市农业机械研究所'), (65884, 'https://ror.org/01104nk81', 'en', 1, 'https://ror.org/01104nk81 Kulturdepartementet Ministry of Culture'), (65885, 'https://ror.org/0111fqb28', 'en', 1, 'https://ror.org/0111fqb28 (사)한국능률협회 Korea Management Association'), (65886, 'https://ror.org/0111grw10', 'no_lang_code', 1, 'https://ror.org/0111grw10 Graphitene (United Kingdom)'), (65887, 'https://ror.org/0112jky20', 'en', 1, 'https://ror.org/0112jky20 Vilnius City Municipality Administration'), (65888, 'https://ror.org/0113k2j28', 'no_lang_code', 1, 'https://ror.org/0113k2j28 Origin Enterprises (Ireland)'), (65889, 'https://ror.org/0113knn38', 'no_lang_code', 1, 'https://ror.org/0113knn38 Geopartner (Poland)'), (65890, 'https://ror.org/01144jm97', 'no_lang_code', 1, 'https://ror.org/01144jm97 Barrnon (United Kingdom)'), (65891, 'https://ror.org/0114hcc46', 'no_lang_code', 1, 'https://ror.org/0114hcc46 Guangzhou Mechanical Engineering Research Institute (China) 广州机械科学研究院有限公司'), (65892, 'https://ror.org/01158c721', 'en', 1, 'https://ror.org/01158c721 Estorick Collection of Modern Italian Art'), (65893, 'https://ror.org/0118x3091', 'en', 1, 'https://ror.org/0118x3091 The Society of Study for Korean Music Education 한국국악교육연구학회'), (65894, 'https://ror.org/0119xsz74', 'no_lang_code', 1, 'https://ror.org/0119xsz74 City Image Technology (China) 城市形象技术'), (65895, 'https://ror.org/011byjj52', 'no_lang_code', 1, 'https://ror.org/011byjj52 Troikaa (India)'), (65896, 'https://ror.org/011cs1z84', 'en', 1, 'https://ror.org/011cs1z84 Zhejiang Provincial Institute of Communications Planning,Design & Research 浙江省交通规划设计研究院'), (65897, 'https://ror.org/011f5zy27', 'no_lang_code', 1, 'https://ror.org/011f5zy27 Oceanpribor (Russia) Океанприбор'), (65898, 'https://ror.org/011fdmv87', 'no_lang_code', 1, 'https://ror.org/011fdmv87 InSysBio (Russia) Институт системной биологии'), (65899, 'https://ror.org/011fjjx45', 'en', 1, 'https://ror.org/011fjjx45 Azərbaycan Respublikası Fövqəladə Hallar Nazirliyi Ministry of Emergency Situations of the Republic of Azerbaijan'), (65900, 'https://ror.org/011hmms37', 'no_lang_code', 1, 'https://ror.org/011hmms37 Alliance Canadienne des Massothérapeutes Canadian Massage Therapy Aliance'), (65901, 'https://ror.org/011k1kc60', 'en', 1, 'https://ror.org/011k1kc60 Bundesverband der Deutschen Luft- und Raumfahrtindustrie German Aerospace Industries Association'), (65902, 'https://ror.org/011m4cv61', 'en', 1, 'https://ror.org/011m4cv61 Korea Atomic Industrial Forum 한국원자력산업회의'), (65903, 'https://ror.org/011mzb617', 'en', 1, 'https://ror.org/011mzb617 Masan University 마산 대학교'), (65904, 'https://ror.org/011nkhg51', 'no_lang_code', 1, 'https://ror.org/011nkhg51 Chromacity (United Kingdom)'), (65905, 'https://ror.org/011pysq56', 'no_lang_code', 1, 'https://ror.org/011pysq56 Laboclinic (Poland)'), (65906, 'https://ror.org/011qk9n39', 'en', 1, 'https://ror.org/011qk9n39 Hong Kong Electro-Plating Merchants Association'), (65907, 'https://ror.org/011rjve03', 'en', 1, 'https://ror.org/011rjve03 Health Education and Training Institute'), (65908, 'https://ror.org/011rk9932', 'no_lang_code', 1, 'https://ror.org/011rk9932 Prenetics (China)'), (65909, 'https://ror.org/011t9p927', 'en', 1, 'https://ror.org/011t9p927 China Internet Network Information Center 中国互联网络信息中心'), (65910, 'https://ror.org/011xqyx03', 'no_lang_code', 1, 'https://ror.org/011xqyx03 Hamsoa Pharmaceutical (South Korea) 함소아제약'), (65911, 'https://ror.org/01209ew92', 'fr', 1, 'https://ror.org/01209ew92 Fédération des Maisons D''Hébergement pour Femmes'), (65912, 'https://ror.org/0122c9a54', 'no_lang_code', 1, 'https://ror.org/0122c9a54 Suntek Computer Systems (China) 三江電腦科技'), (65913, 'https://ror.org/01243ws42', 'en', 1, 'https://ror.org/01243ws42 TianjinSino-German University of Applied Sciences 天津中德应用技术大学'), (65914, 'https://ror.org/0126xra53', 'en', 1, 'https://ror.org/0126xra53 Hellenic Agency for Local Development and Local Government Ελληνική Εταιρία Τοπικής Ανάπτυξης και Αυτοδιοίκησης'), (65915, 'https://ror.org/0128dte27', 'en', 1, 'https://ror.org/0128dte27 Labor Welfare Corporation 근로복지공단'), (65916, 'https://ror.org/0128g9342', 'no_lang_code', 1, 'https://ror.org/0128g9342 Storage Computer (China) 儲存電腦'), (65917, 'https://ror.org/012adm074', 'no_lang_code', 1, 'https://ror.org/012adm074 Multi Base (China)'), (65918, 'https://ror.org/012b6r490', 'no_lang_code', 1, 'https://ror.org/012b6r490 GeneMatrix (South Korea)'), (65919, 'https://ror.org/012czx379', 'en', 1, 'https://ror.org/012czx379 Jingdezhen University 景德镇学院'), (65920, 'https://ror.org/012ewnz96', 'en', 1, 'https://ror.org/012ewnz96 National Forum for the Enhancement of Teaching & Learning in Higher Education'), (65921, 'https://ror.org/012hbj192', 'en', 1, 'https://ror.org/012hbj192 Sichuan Highway Design and Research Institute 四川省交通运输厅公路规划勘察设计研究院'), (65922, 'https://ror.org/012hgcz59', 'en', 1, 'https://ror.org/012hgcz59 Korean Community Welfare Society 한국지역사회복지학회'), (65923, 'https://ror.org/012hhd379', 'en', 1, 'https://ror.org/012hhd379 The Anglican Church of Korea 대한성공회 관구 홈페이지'), (65924, 'https://ror.org/012pkqv60', 'no_lang_code', 1, 'https://ror.org/012pkqv60 Hikma Pharmaceuticals (United Kingdom)'), (65925, 'https://ror.org/012pz7r49', 'en', 1, 'https://ror.org/012pz7r49 Guangzhou Academy of Special Equipment Inspection and Testing 广州特种设备检测技术研究院'), (65926, 'https://ror.org/012q0kv84', 'en', 1, 'https://ror.org/012q0kv84 French Culture and Arts Society 프랑스문화예술학회'), (65927, 'https://ror.org/012q4vx20', 'en', 1, 'https://ror.org/012q4vx20 Korean Psychological Association of Culture and Social Issues 한국문화및사회문제심리학회'), (65928, 'https://ror.org/012qbtt58', 'en', 1, 'https://ror.org/012qbtt58 Korean Society of Interpretation and Translation Studies 우리 한국통역번역학회가'), (65929, 'https://ror.org/012r2dp17', 'ro', 1, 'https://ror.org/012r2dp17 Ministerul Comunicațiilor și Societății Informaționale'), (65930, 'https://ror.org/012rg8a11', 'en', 1, 'https://ror.org/012rg8a11 Icelandic Road and Coastal Administration Vegagerðin'), (65931, 'https://ror.org/012tba185', 'no_lang_code', 1, 'https://ror.org/012tba185 Cheng Shin Rubber (Taiwan) 正新橡膠工業股份有限公司'), (65932, 'https://ror.org/012x2n652', 'en', 1, 'https://ror.org/012x2n652 Australian Council for Educational Research'), (65933, 'https://ror.org/012xz1202', 'no_lang_code', 1, 'https://ror.org/012xz1202 Primax Electronics (China) 致伸科技'), (65934, 'https://ror.org/0131enr16', 'no_lang_code', 1, 'https://ror.org/0131enr16 CNR Services International (United Kingdom)'); INSERT INTO `rors` VALUES (65935, 'https://ror.org/0133gy754', 'en', 1, 'https://ror.org/0133gy754 Oglebay Institute'), (65936, 'https://ror.org/0135rsr71', 'en', 1, 'https://ror.org/0135rsr71 Meabhairshláinte na hÉireann Mental Health Ireland'), (65937, 'https://ror.org/0137z3b32', 'en', 1, 'https://ror.org/0137z3b32 Lietuvos Respublikos švietimo ir mokslo ministerija Ministry of Education and Science of the Republic of Lithuania'), (65938, 'https://ror.org/013acqk67', 'no_lang_code', 1, 'https://ror.org/013acqk67 AMS (United Kingdom)'), (65939, 'https://ror.org/013b8tn87', 'no_lang_code', 1, 'https://ror.org/013b8tn87 NetDragon (China)'), (65940, 'https://ror.org/013bmyp84', 'en', 1, 'https://ror.org/013bmyp84 Government of Himachal Pradesh हिमाचल प्रदेश सचिवालय'), (65941, 'https://ror.org/013bx1v37', 'no_lang_code', 1, 'https://ror.org/013bx1v37 Banedanmark (Denmark)'), (65942, 'https://ror.org/013crbb86', 'no_lang_code', 1, 'https://ror.org/013crbb86 Cellid (South Korea) 셀리드'), (65943, 'https://ror.org/013ctv878', 'fr', 1, 'https://ror.org/013ctv878 Centre d''étude des solidarités sociales'), (65944, 'https://ror.org/013dvfk22', 'en', 1, 'https://ror.org/013dvfk22 4-й Центральный научно-исследовательский институт Министерства обороны России 4th Central Research Institute of the Russian Defence Ministry'), (65945, 'https://ror.org/013eh1m30', 'no_lang_code', 1, 'https://ror.org/013eh1m30 Astellas Pharma (India)'), (65946, 'https://ror.org/013fj3d42', 'en', 1, 'https://ror.org/013fj3d42 State Enterprise "State Road Research Institute named M.P.Shulgina'), (65947, 'https://ror.org/013gmhc80', 'en', 1, 'https://ror.org/013gmhc80 Development Agency for Amvrakikos Αναπτυξιακός Οργανισμός Αμβρακικού'), (65948, 'https://ror.org/013kktc25', 'en', 1, 'https://ror.org/013kktc25 Tsehootsooi Medical Center'), (65949, 'https://ror.org/013kn0e57', 'en', 1, 'https://ror.org/013kn0e57 Farming & Wildlife Advisory Group'), (65950, 'https://ror.org/013pbgw67', 'fr', 1, 'https://ror.org/013pbgw67 ID Champagne-Ardenne'), (65951, 'https://ror.org/013q8p212', 'no_lang_code', 1, 'https://ror.org/013q8p212 Afimilk (United Kingdom)'), (65952, 'https://ror.org/013t7g336', 'en', 1, 'https://ror.org/013t7g336 Bioregional'), (65953, 'https://ror.org/013te4x73', 'no_lang_code', 1, 'https://ror.org/013te4x73 Vitzro Tech (South Korea) 비츠로 테크'), (65954, 'https://ror.org/014028r32', 'en', 1, 'https://ror.org/014028r32 Le Hong Phong High School for the Gifted Trường Trung học phổ thông chuyên Lê Hồng Phong, Nam Định'), (65955, 'https://ror.org/0142eak56', 'no_lang_code', 1, 'https://ror.org/0142eak56 Blueprint Medicines (United States)'), (65956, 'https://ror.org/0146h2h75', 'no_lang_code', 1, 'https://ror.org/0146h2h75 IBM (Ireland)'), (65957, 'https://ror.org/0146vv083', 'en', 1, 'https://ror.org/0146vv083 Shaanxi Xueqian Normal University'), (65958, 'https://ror.org/0147f9026', 'no_lang_code', 1, 'https://ror.org/0147f9026 BMI (South Korea)'), (65959, 'https://ror.org/0147q3t04', 'es', 1, 'https://ror.org/0147q3t04 Instituto Cubano de Investigaciones de los Derivados de la Caña de Azúcar'), (65960, 'https://ror.org/0148z7881', 'no_lang_code', 1, 'https://ror.org/0148z7881 Chengdu Guoke Haibo Information Technology (China) 成都国科海博信息技术有限公司'), (65961, 'https://ror.org/0149mnh61', 'no_lang_code', 1, 'https://ror.org/0149mnh61 Henan Energy & Chemical Industry Group (China) 河南能源化工集团有限公司'), (65962, 'https://ror.org/014aahx46', 'en', 1, 'https://ror.org/014aahx46 Central Research and Design Institute of Fuel Equipment for Automotive and Stationary Engines Центральный научно-исследовательский и конструкторский институт топливной аппаратуры автотракторных и стационарных двигателей'), (65963, 'https://ror.org/014bh6885', 'en', 1, 'https://ror.org/014bh6885 Association of Metropolitan Water Agencies'), (65964, 'https://ror.org/014cakb16', 'en', 1, 'https://ror.org/014cakb16 European Heart Network'), (65965, 'https://ror.org/014cnvs43', 'en', 1, 'https://ror.org/014cnvs43 Improvement Service'), (65966, 'https://ror.org/014d1nq39', 'en', 1, 'https://ror.org/014d1nq39 Hull History Centre'), (65967, 'https://ror.org/014dg3r13', 'en', 1, 'https://ror.org/014dg3r13 The Korean Society for Industrial Education 한국산업교육학회'), (65968, 'https://ror.org/014h86b15', 'en', 1, 'https://ror.org/014h86b15 Ministry of Shipping and Island Policy Υπουργείο Εμπορικής Ναυτιλίας'), (65969, 'https://ror.org/014m5jx39', 'en', 1, 'https://ror.org/014m5jx39 Scientific Research Institute of Mining Научно-исследовательский проектный институт Горного дела'), (65970, 'https://ror.org/014mmeq48', 'en', 1, 'https://ror.org/014mmeq48 Galway One World Centre'), (65971, 'https://ror.org/014nbfa48', 'en', 1, 'https://ror.org/014nbfa48 Dearbhú Cáilíochta agus Cáilíochtaí Éireann Quality and Qualifications Ireland'), (65972, 'https://ror.org/014nzyr79', 'en', 1, 'https://ror.org/014nzyr79 China Railway Economic and Planning Research Institute 中国铁路经济与规划研究院'), (65973, 'https://ror.org/014rxe718', 'en', 1, 'https://ror.org/014rxe718 Russian Scientific Research Institute of Traumatology and Orthopedics named after R.R. Vreden Научно-исследовательский институт травматологии и ортопедии им. Р.Р.Вредена'), (65974, 'https://ror.org/014v16267', 'en', 1, 'https://ror.org/014v16267 American Association for Agricultural Education'), (65975, 'https://ror.org/014vdg758', 'no_lang_code', 1, 'https://ror.org/014vdg758 Myungin Pharm (South Korea)'), (65976, 'https://ror.org/014x92w58', 'en', 1, 'https://ror.org/014x92w58 Irish Heritage Trust'), (65977, 'https://ror.org/014xkga58', 'no_lang_code', 1, 'https://ror.org/014xkga58 Research Institute for Oilfield Chemistry (Russia) НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ ХИМИИ'), (65978, 'https://ror.org/014y0b014', 'no_lang_code', 1, 'https://ror.org/014y0b014 NetScout (United States)'), (65979, 'https://ror.org/014yvnw28', 'en', 1, 'https://ror.org/014yvnw28 Project Arts Centre'), (65980, 'https://ror.org/01504bq84', 'no_lang_code', 1, 'https://ror.org/01504bq84 Inventya (United Kingdom)'), (65981, 'https://ror.org/0150cj610', 'en', 1, 'https://ror.org/0150cj610 Program for Appropriate Technology in Health'), (65982, 'https://ror.org/0150d1t62', 'no_lang_code', 1, 'https://ror.org/0150d1t62 Spiretronic (Egypt)'), (65983, 'https://ror.org/0152gf261', 'no_lang_code', 1, 'https://ror.org/0152gf261 Roche (Ireland)'), (65984, 'https://ror.org/01537rr61', 'en', 1, 'https://ror.org/01537rr61 JustGiving'), (65985, 'https://ror.org/0153x1x48', 'no_lang_code', 1, 'https://ror.org/0153x1x48 U-Casadh Project (Ireland)'), (65986, 'https://ror.org/0154kj662', 'no_lang_code', 1, 'https://ror.org/0154kj662 VGM Gastro Centre'), (65987, 'https://ror.org/01551ga11', 'en', 1, 'https://ror.org/01551ga11 Hunan International Economics University 湖南涉外经济学院'), (65988, 'https://ror.org/0157pp245', 'en', 1, 'https://ror.org/0157pp245 Ministry of Communications and Technology وزارة الإتصالات والتكنولوجيا'), (65989, 'https://ror.org/0158njk12', 'no_lang_code', 1, 'https://ror.org/0158njk12 Shanxi Industrial Equipment Installation Group (Taiwan) 山西省工业设备安装集团有限公司'), (65990, 'https://ror.org/0158zgz03', 'en', 1, 'https://ror.org/0158zgz03 International Longevity Centre'), (65991, 'https://ror.org/015966407', 'no_lang_code', 1, 'https://ror.org/015966407 Cryptomage (Poland)'), (65992, 'https://ror.org/01599zj86', 'en', 1, 'https://ror.org/01599zj86 Guangxi Hydraulic Power Machinery Research Institute 广西水利机械研究所'), (65993, 'https://ror.org/0159kpq91', 'no_lang_code', 1, 'https://ror.org/0159kpq91 Zydus Pharmaceuticals (United States)'), (65994, 'https://ror.org/0159q3366', 'en', 1, 'https://ror.org/0159q3366 Vancouver Infectious Diseases Centre'), (65995, 'https://ror.org/015aajy26', 'en', 1, 'https://ror.org/015aajy26 Ministry of Finance Министар за финансии'), (65996, 'https://ror.org/015b6zh04', 'en', 1, 'https://ror.org/015b6zh04 Cheshire West and Chester'), (65997, 'https://ror.org/015b9mz47', 'no_lang_code', 1, 'https://ror.org/015b9mz47 Artworks Cymru'), (65998, 'https://ror.org/015bwbz64', 'en', 1, 'https://ror.org/015bwbz64 Korea Cosmetic Association 대한화장품협회'), (65999, 'https://ror.org/015csvh80', 'no_lang_code', 1, 'https://ror.org/015csvh80 (주)태웅메디칼 Taewoong Medical (South Korea)'), (66000, 'https://ror.org/015ddje41', 'en', 1, 'https://ror.org/015ddje41 Jiangxi Fisheries Research Institute 江西省水产科学研究所'), (66001, 'https://ror.org/015drfm81', 'no_lang_code', 1, 'https://ror.org/015drfm81 Microsoft (Denmark)'), (66002, 'https://ror.org/015epak69', 'no_lang_code', 1, 'https://ror.org/015epak69 Hengtong Optoelectronic (China) 亨通光电'), (66003, 'https://ror.org/015ff4823', 'en', 1, 'https://ror.org/015ff4823 Sci-Tech Daresbury'), (66004, 'https://ror.org/015fr8y55', 'en', 1, 'https://ror.org/015fr8y55 Regent Park Community Health Centre'), (66005, 'https://ror.org/015ggv447', 'en', 1, 'https://ror.org/015ggv447 United Nations Economic Commission for Latin America and the Caribbean'), (66006, 'https://ror.org/015gyv119', 'no_lang_code', 1, 'https://ror.org/015gyv119 Austrian Federal Computing Centre Bundesrechenzentrum (Austria)'), (66007, 'https://ror.org/015jj1011', 'fr', 1, 'https://ror.org/015jj1011 Minister of the Interior Ministère de l''Intérieur'), (66008, 'https://ror.org/015m5qc77', 'en', 1, 'https://ror.org/015m5qc77 Expii'), (66009, 'https://ror.org/015nzpb92', 'no_lang_code', 1, 'https://ror.org/015nzpb92 Baldoyle Forum'), (66010, 'https://ror.org/015peq218', 'en', 1, 'https://ror.org/015peq218 Omsk Research Institute of Natural Focal Infections Омский научно-исследовательский институт естественных очаговых инфекций'), (66011, 'https://ror.org/015pwqr12', 'en', 1, 'https://ror.org/015pwqr12 National Sports Promotion Corporation 국민체육진흥공단'), (66012, 'https://ror.org/015qn9r22', 'no_lang_code', 1, 'https://ror.org/015qn9r22 Champion Technology Holdings (China)'), (66013, 'https://ror.org/015r8jj75', 'en', 1, 'https://ror.org/015r8jj75 The European Institute for Crime Prevention and Control, affiliated with the United Nations Yhdistyneiden Kansakuntien kanssa toimiva Euroopan rikoksentorjunta- ja torjuntaelin'), (66014, 'https://ror.org/015rkeq20', 'no_lang_code', 1, 'https://ror.org/015rkeq20 Innoverz (China)'), (66015, 'https://ror.org/015rsk965', 'no_lang_code', 1, 'https://ror.org/015rsk965 SiliconSapiens (South Korea) 실 리코 사피엔스'), (66016, 'https://ror.org/015sgx450', 'de', 1, 'https://ror.org/015sgx450 Richard-Strauss-Institut'), (66017, 'https://ror.org/015vve507', 'no_lang_code', 1, 'https://ror.org/015vve507 Colgate-Palmolive (India)'), (66018, 'https://ror.org/015ydew40', 'no_lang_code', 1, 'https://ror.org/015ydew40 Axess Technologies (United Kingdom)'), (66019, 'https://ror.org/016096484', 'en', 1, 'https://ror.org/016096484 Society of Korean Classical Woman Literature 한국고전여성문학회'), (66020, 'https://ror.org/0160dkh89', 'en', 1, 'https://ror.org/0160dkh89 All-Russian Research Institute of Biological Plant Protection ВСЕРОССИЙСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ БИОЛОГИЧЕСКОЙ ЗАЩИТЫ РАСТЕНИЙ'), (66021, 'https://ror.org/0160gm722', 'en', 1, 'https://ror.org/0160gm722 Gulf English School مدرسة الخليج الانجليزيه'), (66022, 'https://ror.org/0164s1237', 'no_lang_code', 1, 'https://ror.org/0164s1237 New A Innovation (China)'), (66023, 'https://ror.org/0165m4813', 'en', 1, 'https://ror.org/0165m4813 Research Institute of Radiology'), (66024, 'https://ror.org/0167cg095', 'no_lang_code', 1, 'https://ror.org/0167cg095 Daden (United Kingdom)'), (66025, 'https://ror.org/016bxe465', 'en', 1, 'https://ror.org/016bxe465 Ministry of Energy, Commerce, Industry and Tourism Υπουργείο Ενέργειας, Εμπορίου, Βιομηχανίας και Τουρισμού,'), (66026, 'https://ror.org/016d1vx88', 'en', 1, 'https://ror.org/016d1vx88 Institute Society and Technology Instituut Samenleving en Technologie'), (66027, 'https://ror.org/016d5wx23', 'no_lang_code', 1, 'https://ror.org/016d5wx23 Institute Giprostroymost Институт Гипростроймост'), (66028, 'https://ror.org/016dc7q50', 'no_lang_code', 1, 'https://ror.org/016dc7q50 Yonyou (China) 用友'), (66029, 'https://ror.org/016frx827', 'en', 1, 'https://ror.org/016frx827 Knowledge Centre for Materials Chemistry'), (66030, 'https://ror.org/016frzz57', 'en', 1, 'https://ror.org/016frzz57 Welding Technology Institute of Australia'), (66031, 'https://ror.org/016hga078', 'no_lang_code', 1, 'https://ror.org/016hga078 Infowise (China)'), (66032, 'https://ror.org/016jjeg55', 'no_lang_code', 1, 'https://ror.org/016jjeg55 LanzaTech (New Zealand)'), (66033, 'https://ror.org/016jvwb81', 'no_lang_code', 1, 'https://ror.org/016jvwb81 Octoly (France)'), (66034, 'https://ror.org/016k9q072', 'no_lang_code', 1, 'https://ror.org/016k9q072 Shandong Academy of Textile Science (China) 山东纺织科学研究院'), (66035, 'https://ror.org/016kjnf22', 'no_lang_code', 1, 'https://ror.org/016kjnf22 AstroTec Holding (Netherlands)'), (66036, 'https://ror.org/016ksqd60', 'en', 1, 'https://ror.org/016ksqd60 Hong Kong Institution of Engineers 香港工程师学会'), (66037, 'https://ror.org/016m9ee75', 'en', 1, 'https://ror.org/016m9ee75 Fatima Groups United'), (66038, 'https://ror.org/016p05413', 'es', 1, 'https://ror.org/016p05413 Ministerio de Salud Pública y Asistencia Social'), (66039, 'https://ror.org/016qr5362', 'no_lang_code', 1, 'https://ror.org/016qr5362 Pentair (United Kingdom)'), (66040, 'https://ror.org/016qtng06', 'en', 1, 'https://ror.org/016qtng06 Shangqiu Institute of Technology 商丘工学院简介'), (66041, 'https://ror.org/016ta0z75', 'en', 1, 'https://ror.org/016ta0z75 Institute of Agroengineering and Environmental Problems of Agricultural Production Федеральное государственное бюджетное научное учреждение "Институт агроинженерных и экологических проблем сельскохозяйственного производства'), (66042, 'https://ror.org/016v9qm56', 'no_lang_code', 1, 'https://ror.org/016v9qm56 GoerTek (China)'), (66043, 'https://ror.org/016vktt70', 'no_lang_code', 1, 'https://ror.org/016vktt70 Giprotruboprovod, JSC АО «Гипротрубопровод»'), (66044, 'https://ror.org/016w6xc44', 'en', 1, 'https://ror.org/016w6xc44 Bhaktivedanta Hospital & Research Institute'), (66045, 'https://ror.org/016wmdb91', 'en', 1, 'https://ror.org/016wmdb91 Korea Venture Business Association 벤처기업협회'), (66046, 'https://ror.org/016xf4y16', 'no_lang_code', 1, 'https://ror.org/016xf4y16 Dynamic Imaging (United Kingdom)'), (66047, 'https://ror.org/01712vn60', 'en', 1, 'https://ror.org/01712vn60 Medical Device Information & Technology Assistance Center'), (66048, 'https://ror.org/0172mzb45', 'en', 1, 'https://ror.org/0172mzb45 Wellcome Centre for Integrative Neuroimaging'), (66049, 'https://ror.org/0175bfp64', 'en', 1, 'https://ror.org/0175bfp64 Ministria e Shëndetësisë dhe Mbrojtjes Sociale Ministry of Health and Social Protection'), (66050, 'https://ror.org/0176h5851', 'en', 1, 'https://ror.org/0176h5851 Midnapore Homeopathic Medical College and Hospital মেদিনীপুর হোমিওপ্যাথিক মেডিকেল কলেজ এন্ড হসপিটাল'), (66051, 'https://ror.org/01793sb67', 'no_lang_code', 1, 'https://ror.org/01793sb67 Concern Granit-Electron (Russia) Концерн «Гранит-Электрон»'), (66052, 'https://ror.org/0179kd988', 'no_lang_code', 1, 'https://ror.org/0179kd988 Nipigormash (Russia) НИПИГОРМАШ'), (66053, 'https://ror.org/0179kz909', 'en', 1, 'https://ror.org/0179kz909 Korea Internet e-Commerce Association 한국인터넷전자상거래학회'), (66054, 'https://ror.org/017cark40', 'en', 1, 'https://ror.org/017cark40 Hopi Cultural Center'), (66055, 'https://ror.org/017h4eq96', 'en', 1, 'https://ror.org/017h4eq96 RG Stone Urology & Laparoscopy Hospital आरजी स्टोन यूरोलॉजी और लैप्रोस्कोपी अस्पताल'), (66056, 'https://ror.org/017hy4e72', 'en', 1, 'https://ror.org/017hy4e72 Crown Prosecution Service'), (66057, 'https://ror.org/017j78t37', 'en', 1, 'https://ror.org/017j78t37 Korea-China Science & Technology Cooperation Center 한중 과학 기술 협력 센터'), (66058, 'https://ror.org/017jvt967', 'en', 1, 'https://ror.org/017jvt967 Ministerul Sănătății, Muncii și Protecției Sociale Ministry of Health, Labour and Social Protection'), (66059, 'https://ror.org/017k7p668', 'en', 1, 'https://ror.org/017k7p668 Institute of Public Affairs Instytut Spraw Publicznych'), (66060, 'https://ror.org/017mwaf76', 'en', 1, 'https://ror.org/017mwaf76 British Water'), (66061, 'https://ror.org/017mxs556', 'en', 1, 'https://ror.org/017mxs556 Buglife'), (66062, 'https://ror.org/017swdm43', 'no_lang_code', 1, 'https://ror.org/017swdm43 Rosgeo (Russia) РосГео'), (66063, 'https://ror.org/017sz1f45', 'en', 1, 'https://ror.org/017sz1f45 ICLEI - Local Governments for Sustainability Canada'), (66064, 'https://ror.org/017veh155', 'en', 1, 'https://ror.org/017veh155 South China Robotics Innovative Research Institute 南华机器人创新研究院'), (66065, 'https://ror.org/017vypx03', 'no_lang_code', 1, 'https://ror.org/017vypx03 Qatar Biobank قطر بيوبنك'), (66066, 'https://ror.org/017xc4380', 'no_lang_code', 1, 'https://ror.org/017xc4380 Alexander Dennis (United Kingdom)'), (66067, 'https://ror.org/017xn7477', 'en', 1, 'https://ror.org/017xn7477 The Korean Rural Sociological Society 한국농촌사회학회'), (66068, 'https://ror.org/0181g3j87', 'no_lang_code', 1, 'https://ror.org/0181g3j87 Hybrid Air Vehicles (United Kingdom)'), (66069, 'https://ror.org/0181x9z82', 'en', 1, 'https://ror.org/0181x9z82 National Agency for Technological Development'), (66070, 'https://ror.org/01820fp17', 'en', 1, 'https://ror.org/01820fp17 Hong Kong Convention and Exhibition Centre 香港會議展覽中心'), (66071, 'https://ror.org/0182dgx25', 'en', 1, 'https://ror.org/0182dgx25 Woolf Institute'), (66072, 'https://ror.org/0184n6078', 'en', 1, 'https://ror.org/0184n6078 Central Scientific Research Radio Engineering Institute named after Academician A.I. Berg ЦНИРТИ им. aкадемика А.И.Берга'), (66073, 'https://ror.org/0184neg38', 'no_lang_code', 1, 'https://ror.org/0184neg38 Vita Actives (Ireland)'), (66074, 'https://ror.org/01859cw58', 'en', 1, 'https://ror.org/01859cw58 All-Russian Research Institute of Civil Defense Всесоюзного НИИ гражданской обороны'), (66075, 'https://ror.org/0185gt671', 'en', 1, 'https://ror.org/0185gt671 The English Modern School'), (66076, 'https://ror.org/0187f2d05', 'fr', 1, 'https://ror.org/0187f2d05 Hôpital Privé Marseille Beauregard'), (66077, 'https://ror.org/018caxa54', 'en', 1, 'https://ror.org/018caxa54 Embody Orthopaedic'), (66078, 'https://ror.org/018dqxd30', 'en', 1, 'https://ror.org/018dqxd30 Korea Thinking and Expression Society 한국 사고 표현 사회'), (66079, 'https://ror.org/018dzfz24', 'no_lang_code', 1, 'https://ror.org/018dzfz24 KiWi Power (United Kingdom)'), (66080, 'https://ror.org/018e02524', 'en', 1, 'https://ror.org/018e02524 Ministrstvo za Kmetijstvo, Gozdarstvo in Prehrano Ministry of Agriculture, Forestry and Food Security'), (66081, 'https://ror.org/018e2qw40', 'en', 1, 'https://ror.org/018e2qw40 Chongqing Metrology Quality Inspection and Research Institute 重庆市计量质量检测研究院'), (66082, 'https://ror.org/018ek4r92', 'no_lang_code', 1, 'https://ror.org/018ek4r92 Cosmact (China)'), (66083, 'https://ror.org/018g3kw79', 'en', 1, 'https://ror.org/018g3kw79 The Marigold Foundation'), (66084, 'https://ror.org/018g7an25', 'no_lang_code', 1, 'https://ror.org/018g7an25 Emart (South Korea) 이마트'), (66085, 'https://ror.org/018hb5750', 'en', 1, 'https://ror.org/018hb5750 European Aviation Safety Agency'), (66086, 'https://ror.org/018jxrz45', 'no_lang_code', 1, 'https://ror.org/018jxrz45 China Tianjin Tools Research Institute (China) 中国天津工具研究院'), (66087, 'https://ror.org/018k0qv55', 'no_lang_code', 1, 'https://ror.org/018k0qv55 Sozvezdie (Russia) Воронежский научно-исследовательский институт телекоммуникаций'), (66088, 'https://ror.org/018k88765', 'en', 1, 'https://ror.org/018k88765 Central Research Institute for the Pulp and Paper Industry организуется Центральный научно-исследовательский институт целлюлозно-бумажной пр'), (66089, 'https://ror.org/018mj3h16', 'en', 1, 'https://ror.org/018mj3h16 Seminary of the Southwest'), (66090, 'https://ror.org/018mykm19', 'no_lang_code', 1, 'https://ror.org/018mykm19 Dinona (South Korea) 다이노나'), (66091, 'https://ror.org/018x0pp27', 'en', 1, 'https://ror.org/018x0pp27 The Korean Urban Geographical Society 한국도시지리학회'), (66092, 'https://ror.org/018y30a94', 'en', 1, 'https://ror.org/018y30a94 Dutch Fish Marketing Board Nederlands Visbureau'), (66093, 'https://ror.org/019037b12', 'en', 1, 'https://ror.org/019037b12 The Korean Association for Local Government & Administration Studies 대한 지방 행정 학회'), (66094, 'https://ror.org/0191mq174', 'no_lang_code', 1, 'https://ror.org/0191mq174 Hanlim Pharm (South Korea) 한림제약'), (66095, 'https://ror.org/0191ymw19', 'en', 1, 'https://ror.org/0191ymw19 Russian Scientific Research Neurosurgical Institute Российский научно-исследовательский нейрохирургический институт им. проф. А.Л. Поленова'), (66096, 'https://ror.org/0192men59', 'en', 1, 'https://ror.org/0192men59 Changzhou Institute of Mechatronic Technology 常州机电职业技术学院'), (66097, 'https://ror.org/0193t3v82', 'en', 1, 'https://ror.org/0193t3v82 EmployAbility Galway'), (66098, 'https://ror.org/0195qz106', 'en', 1, 'https://ror.org/0195qz106 Korea Security Association 한국 증권업 협회'), (66099, 'https://ror.org/0197qw696', 'no_lang_code', 1, 'https://ror.org/0197qw696 Netflix (United States)'), (66100, 'https://ror.org/01989c577', 'no_lang_code', 1, 'https://ror.org/01989c577 EVRAZ (Russia)'), (66101, 'https://ror.org/0198za406', 'en', 1, 'https://ror.org/0198za406 Palm Research Center Pusat Penelitian Kelapa Sawit'), (66102, 'https://ror.org/0199ey615', 'no_lang_code', 1, 'https://ror.org/0199ey615 Truking (China)'), (66103, 'https://ror.org/0199vce98', 'en', 1, 'https://ror.org/0199vce98 Korean Society for Teaching English Literature 한국영미문학교육학회'), (66104, 'https://ror.org/0199wd076', 'en', 1, 'https://ror.org/0199wd076 Korean Library And Information Science Society 한국 도서관 정보 학회'), (66105, 'https://ror.org/019aqfx79', 'en', 1, 'https://ror.org/019aqfx79 The Japanese Culture Association of Korea 한국일본문화학회'), (66106, 'https://ror.org/019h3d096', 'no_lang_code', 1, 'https://ror.org/019h3d096 Hua Hong Semiconductor (China) 華虹半導體'), (66107, 'https://ror.org/019j1v294', 'en', 1, 'https://ror.org/019j1v294 "ФНПЦ "НИИ прикладной химии" FNPC Research Institute of Applied Chemistry'), (66108, 'https://ror.org/019jryw76', 'no_lang_code', 1, 'https://ror.org/019jryw76 Prexton Therapeutics (Switzerland)'), (66109, 'https://ror.org/019k9ma82', 'en', 1, 'https://ror.org/019k9ma82 Hunan Research Academy of Environmental Sciences 湖南省环境保护科学研究院'), (66110, 'https://ror.org/019rn2x79', 'en', 1, 'https://ror.org/019rn2x79 Kansas Board of Pharmacy'), (66111, 'https://ror.org/019taje90', 'en', 1, 'https://ror.org/019taje90 Institute of Technology of Metals ИНСТИТУТ ТЕХНОЛОГИИ МЕТАЛЛОВ'), (66112, 'https://ror.org/019w5wj36', 'no_lang_code', 1, 'https://ror.org/019w5wj36 (주)에어레인 Airrane (South Korea)'), (66113, 'https://ror.org/019xwzn44', 'no_lang_code', 1, 'https://ror.org/019xwzn44 Great Wall Motors (China) 长城汽车'), (66114, 'https://ror.org/019yg2621', 'en', 1, 'https://ror.org/019yg2621 Lady Tata Memorial Trust'), (66115, 'https://ror.org/01a00zk92', 'en', 1, 'https://ror.org/01a00zk92 Jeju Tourism University 제주관광대학교'), (66116, 'https://ror.org/01a19sv16', 'en', 1, 'https://ror.org/01a19sv16 Korean Social Science Data Center 한국사회과학데이터센터'), (66117, 'https://ror.org/01a1ft290', 'en', 1, 'https://ror.org/01a1ft290 Institute of Industry Technology Guangzhou 广州中国科学院工业技术研究院'), (66118, 'https://ror.org/01a1w0r26', 'en', 1, 'https://ror.org/01a1w0r26 Jiangsu Provincial Academy of Traditional Chinese Medicine 江苏省中医药研究院'), (66119, 'https://ror.org/01a3x3w60', 'en', 1, 'https://ror.org/01a3x3w60 Scientific and Practical Center of the National Academy of Sciences of Belarus on Animal Husbandry РУП «Научно-практический центр Национальной академии наук Беларуси по животноводству»'), (66120, 'https://ror.org/01aa0sx14', 'no_lang_code', 1, 'https://ror.org/01aa0sx14 Parc Technologique du Québec Métropolitain Québec Metro High Tech Park (Canada)'), (66121, 'https://ror.org/01aaarj75', 'no_lang_code', 1, 'https://ror.org/01aaarj75 Baboro'), (66122, 'https://ror.org/01abfdk81', 'en', 1, 'https://ror.org/01abfdk81 Korean Society for Biology Education'), (66123, 'https://ror.org/01aew1m62', 'en', 1, 'https://ror.org/01aew1m62 Jiangsu Vocational Institute of Commerce 江苏经贸职业技术学院'), (66124, 'https://ror.org/01af2ae87', 'no_lang_code', 1, 'https://ror.org/01af2ae87 Innopage (China)'), (66125, 'https://ror.org/01agawy76', 'no_lang_code', 1, 'https://ror.org/01agawy76 Beth Mardutho'), (66126, 'https://ror.org/01ahgf011', 'en', 1, 'https://ror.org/01ahgf011 Energy Systems Catapult'), (66127, 'https://ror.org/01ajch036', 'no_lang_code', 1, 'https://ror.org/01ajch036 Irgiredmet (Russia) Иркутский научно-исследовательский институт драгоценных и редких металлов и алмазов'), (66128, 'https://ror.org/01ak5f834', 'en', 1, 'https://ror.org/01ak5f834 Derbyshire County Council'), (66129, 'https://ror.org/01akqkg08', 'no_lang_code', 1, 'https://ror.org/01akqkg08 BrainWaveBank (United Kingdom)'), (66130, 'https://ror.org/01am91k72', 'en', 1, 'https://ror.org/01am91k72 Prospex Institute'), (66131, 'https://ror.org/01anfr786', 'en', 1, 'https://ror.org/01anfr786 International Area Studies Society 국제지역학회'), (66132, 'https://ror.org/01ankx725', 'en', 1, 'https://ror.org/01ankx725 Shanghai Electric Apparatus Research Institute 上海电器科学研究所'), (66133, 'https://ror.org/01apnjb23', 'no_lang_code', 1, 'https://ror.org/01apnjb23 Recipharm (Sweden)'), (66134, 'https://ror.org/01asjpz33', 'en', 1, 'https://ror.org/01asjpz33 Friends of the National Libraries'), (66135, 'https://ror.org/01aw03h30', 'en', 1, 'https://ror.org/01aw03h30 MItoCanada'), (66136, 'https://ror.org/01ayka222', 'en', 1, 'https://ror.org/01ayka222 Korea Children''s Rights Society 한국아동권리학회'), (66137, 'https://ror.org/01az28z25', 'no_lang_code', 1, 'https://ror.org/01az28z25 FutureChem (South Korea) 미래의 화학'), (66138, 'https://ror.org/01b04pq84', 'no_lang_code', 1, 'https://ror.org/01b04pq84 BAM Nuttall (United Kingdom)'), (66139, 'https://ror.org/01b0cs606', 'no_lang_code', 1, 'https://ror.org/01b0cs606 Unilever (China) 联合利华'), (66140, 'https://ror.org/01b30ww12', 'en', 1, 'https://ror.org/01b30ww12 Korea Drug Research Association 대한 마약 연구 학회'), (66141, 'https://ror.org/01b45e393', 'en', 1, 'https://ror.org/01b45e393 Samara Academy of State and Municipal Management Самарская академия государственного и муниципального управления'), (66142, 'https://ror.org/01b4h2w02', 'en', 1, 'https://ror.org/01b4h2w02 Seoul Institute of the Arts 서울 예술 대학'), (66143, 'https://ror.org/01b5g4110', 'en', 1, 'https://ror.org/01b5g4110 Yang Hospital 양병원'), (66144, 'https://ror.org/01b5yxj44', 'no_lang_code', 1, 'https://ror.org/01b5yxj44 Jiangxi Institute of Agricultural Machinery (Company) 江西农业机械研究所'), (66145, 'https://ror.org/01b7f0c49', 'no_lang_code', 1, 'https://ror.org/01b7f0c49 WCW Technology (China)'), (66146, 'https://ror.org/01ba3f557', 'en', 1, 'https://ror.org/01ba3f557 Chinese Manufacturers'' Association of Hong Kong 香港中華廠商聯合會'), (66147, 'https://ror.org/01bac4y65', 'en', 1, 'https://ror.org/01bac4y65 Beijing Tianheng Pharmaceutical Research Institute 北京天衡药物研究院有限公司'), (66148, 'https://ror.org/01bat0e72', 'no_lang_code', 1, 'https://ror.org/01bat0e72 Impact Solutions (United Kingdom)'), (66149, 'https://ror.org/01bax9607', 'no_lang_code', 1, 'https://ror.org/01bax9607 Hypha Discovery (United Kingdom)'), (66150, 'https://ror.org/01bctgj87', 'no_lang_code', 1, 'https://ror.org/01bctgj87 Hortonworks (United States)'), (66151, 'https://ror.org/01ber0266', 'fr', 1, 'https://ror.org/01ber0266 Institut D’Eco-Pédagogie'), (66152, 'https://ror.org/01bf03r65', 'en', 1, 'https://ror.org/01bf03r65 Jiangsu Provincial Urban Planning and Design Institute 江苏省城市规划设计研究院成'), (66153, 'https://ror.org/01bffta28', 'en', 1, 'https://ror.org/01bffta28 Zhejiang Institute of Freshwater Fisheries 浙江省淡水水产研究所'), (66154, 'https://ror.org/01bg7hf93', 'no_lang_code', 1, 'https://ror.org/01bg7hf93 Anhui Huizhou Geological Safety Research Institute (China)'), (66155, 'https://ror.org/01bgqbn96', 'en', 1, 'https://ror.org/01bgqbn96 Barbican Centre'), (66156, 'https://ror.org/01bjkqp85', 'no_lang_code', 1, 'https://ror.org/01bjkqp85 Maxful (China)'), (66157, 'https://ror.org/01bka6482', 'en', 1, 'https://ror.org/01bka6482 FOD Werkgelegenheid, Arbeid en Sociaal Overleg Federal Public Service Employment, Labour and Social Dialogue FÖD Beschäftigung, Arbeit und Soziale Konzertierung SPF Emploi, Travail et Concertation sociale'), (66158, 'https://ror.org/01bnchp17', 'no_lang_code', 1, 'https://ror.org/01bnchp17 Procter & Gamble (India)'), (66159, 'https://ror.org/01bnkw221', 'no_lang_code', 1, 'https://ror.org/01bnkw221 Magnitogorsk Gipromez (Russia) ОАО "МАГНИТОГОРСКИЙ ГИПРОМЕЗ"'), (66160, 'https://ror.org/01bp6g914', 'en', 1, 'https://ror.org/01bp6g914 Suwon Research Institute 수원 시립 연구소'), (66161, 'https://ror.org/01bq0yy21', 'no_lang_code', 1, 'https://ror.org/01bq0yy21 RediSem (China)'), (66162, 'https://ror.org/01bqq8340', 'no_lang_code', 1, 'https://ror.org/01bqq8340 Kunshan Govisionox Optoelectronic (China) 昆山国显光电有限公司'), (66163, 'https://ror.org/01bs84e19', 'no_lang_code', 1, 'https://ror.org/01bs84e19 CCCC Highway Consultants (China) 中交公路规划设计院有限公司'), (66164, 'https://ror.org/01bs8p952', 'no_lang_code', 1, 'https://ror.org/01bs8p952 Logifact (Poland) Systemy Logistyczne'), (66165, 'https://ror.org/01bt4t203', 'no_lang_code', 1, 'https://ror.org/01bt4t203 Synergation (United Kingdom)'), (66166, 'https://ror.org/01bwbfp70', 'en', 1, 'https://ror.org/01bwbfp70 Korean Society of Systematic Theology 한국 신학 대학원'), (66167, 'https://ror.org/01bx4e159', 'no_lang_code', 1, 'https://ror.org/01bx4e159 Shandong Xiehe University 山东协和学院'), (66168, 'https://ror.org/01bxb0563', 'en', 1, 'https://ror.org/01bxb0563 Kyung Hee Cyber University 경희사이버대학교/慶熙사이버大學校'), (66169, 'https://ror.org/01bxc9g71', 'no_lang_code', 1, 'https://ror.org/01bxc9g71 (주)지니스 JINIS Biopharmaceuticals (South Korea)'), (66170, 'https://ror.org/01bxcf222', 'no_lang_code', 1, 'https://ror.org/01bxcf222 EurasTech (South Korea) 유라스텍'), (66171, 'https://ror.org/01bypwr52', 'no_lang_code', 1, 'https://ror.org/01bypwr52 Aekyung (South Korea) 애경'), (66172, 'https://ror.org/01bz76d25', 'no_lang_code', 1, 'https://ror.org/01bz76d25 NextGen Federal Systems (United States)'), (66173, 'https://ror.org/01bzgqf33', 'en', 1, 'https://ror.org/01bzgqf33 Oifig na nOibreacha Poiblí The Office of Public Works'), (66174, 'https://ror.org/01c0n4952', 'en', 1, 'https://ror.org/01c0n4952 Institute of Mining of the North after N.V.Chersky Институт горного дела Севера после Н.В.Черского'), (66175, 'https://ror.org/01c3bft48', 'no_lang_code', 1, 'https://ror.org/01c3bft48 MainStream Aquaculture (Australia)'), (66176, 'https://ror.org/01c5bvd13', 'en', 1, 'https://ror.org/01c5bvd13 Dongguan South China Design and Innovation Institute 东莞华南设计创新研究院'), (66177, 'https://ror.org/01c75js78', 'en', 1, 'https://ror.org/01c75js78 Military Academy of Radiation, Chemical and Biological Protection Военная академия радиационной, химической и биологической защиты'), (66178, 'https://ror.org/01c8w8x70', 'en', 1, 'https://ror.org/01c8w8x70 Tianjin North Garden Ecological Environmental Engineering Research Institute 天津北园生态环境工程研究所'), (66179, 'https://ror.org/01c9d4e73', 'en', 1, 'https://ror.org/01c9d4e73 Mandalay University of Distance Education'), (66180, 'https://ror.org/01ca0jg10', 'en', 1, 'https://ror.org/01ca0jg10 Krasnoyarsk Research Institute of Animal Husbandry Красноярский научно-исследовательский институт животноводства'), (66181, 'https://ror.org/01caasa64', 'en', 1, 'https://ror.org/01caasa64 Comhairle Náisiúnta na nÓg, National Youth Council of Ireland'), (66182, 'https://ror.org/01cad8852', 'ga', 1, 'https://ror.org/01cad8852 Fáilte Ireland'), (66183, 'https://ror.org/01cdkgk90', 'en', 1, 'https://ror.org/01cdkgk90 Churches’ Commission for Migrants in Europe'), (66184, 'https://ror.org/01cg3ht11', 'en', 1, 'https://ror.org/01cg3ht11 Institutet för Kvalitetsutveckling Swedish Institute for Quality'), (66185, 'https://ror.org/01cg3n190', 'no_lang_code', 1, 'https://ror.org/01cg3n190 Inner Mongolia Electric Power Survey & Design Institute (China) 内蒙古电力勘测设计院'), (66186, 'https://ror.org/01ch1s087', 'en', 1, 'https://ror.org/01ch1s087 Russian Research Institute of Problems of Land Reclamation Российский научно-исследовательский институт проблем мелиорации земель'), (66187, 'https://ror.org/01cj13d80', 'no_lang_code', 1, 'https://ror.org/01cj13d80 Frutarom (Netherlands)'), (66188, 'https://ror.org/01cj5hx77', 'en', 1, 'https://ror.org/01cj5hx77 Atmiya University'), (66189, 'https://ror.org/01cj7ev47', 'en', 1, 'https://ror.org/01cj7ev47 All-Russian Research Institute of Reclaimed Lands Всероссийский НИИ мелиорированных земель'), (66190, 'https://ror.org/01cjdx044', 'no_lang_code', 1, 'https://ror.org/01cjdx044 Johnson & Johnson (Singapore)'), (66191, 'https://ror.org/01cjh3728', 'en', 1, 'https://ror.org/01cjh3728 Research Institute of Bakery Industry НИИ хлебопекарной промышленности'), (66192, 'https://ror.org/01cm9h109', 'en', 1, 'https://ror.org/01cm9h109 Disability Federation of Ireland'), (66193, 'https://ror.org/01cnhdd85', 'en', 1, 'https://ror.org/01cnhdd85 Hong Kong Association of Registered Tour Co-ordinators 香港註冊導遊協會'), (66194, 'https://ror.org/01cnxqz37', 'en', 1, 'https://ror.org/01cnxqz37 Jeddah Institute for Speech and Hearing مركز جدة للنطق والسمع'), (66195, 'https://ror.org/01cpeja57', 'no_lang_code', 1, 'https://ror.org/01cpeja57 Shenyang Aluminum & Magnesium Engineering & Research Institute (China) 沉阳铝镁设计研究院'), (66196, 'https://ror.org/01cqas505', 'en', 1, 'https://ror.org/01cqas505 Hong Kong General Chamber of Commerce'), (66197, 'https://ror.org/01cqv3m94', 'no_lang_code', 1, 'https://ror.org/01cqv3m94 Indear (Argentina)'), (66198, 'https://ror.org/01cscw292', 'en', 1, 'https://ror.org/01cscw292 The Korean Society for School Science 대한 학교 학회'), (66199, 'https://ror.org/01ctr6v45', 'no_lang_code', 1, 'https://ror.org/01ctr6v45 Wincas Technology (China)'), (66200, 'https://ror.org/01ctr9c93', 'en', 1, 'https://ror.org/01ctr9c93 European Science Communication Institute'), (66201, 'https://ror.org/01ctszf41', 'no_lang_code', 1, 'https://ror.org/01ctszf41 United Machinery Technologies (Russia)'), (66202, 'https://ror.org/01cv0qm48', 'en', 1, 'https://ror.org/01cv0qm48 Heilongjiang International University'), (66203, 'https://ror.org/01cv6t012', 'no_lang_code', 1, 'https://ror.org/01cv6t012 Board of Innovation (Belgium)'), (66204, 'https://ror.org/01cvj0j25', 'de', 1, 'https://ror.org/01cvj0j25 Ministerium des Innern und für Sport Rheinland-Pfalz'), (66205, 'https://ror.org/01cxrh590', 'en', 1, 'https://ror.org/01cxrh590 South China National Centre of Metrology 华南国家计量测试中心'), (66206, 'https://ror.org/01d070g46', 'en', 1, 'https://ror.org/01d070g46 Haringey Council'), (66207, 'https://ror.org/01d0mcn71', 'en', 1, 'https://ror.org/01d0mcn71 Croft Additive Manufacturing'), (66208, 'https://ror.org/01d41fy43', 'en', 1, 'https://ror.org/01d41fy43 International Society of Electrophysiology and Kinesiology'), (66209, 'https://ror.org/01d4y8v03', 'en', 1, 'https://ror.org/01d4y8v03 Jiangsu Vocational Institute of Architectural Technology 江苏建筑职业技术学院'), (66210, 'https://ror.org/01d550q37', 'en', 1, 'https://ror.org/01d550q37 Science World at Telus World of Science'), (66211, 'https://ror.org/01d7fe160', 'no_lang_code', 1, 'https://ror.org/01d7fe160 Sixin (China)'), (66212, 'https://ror.org/01d92aq70', 'no_lang_code', 1, 'https://ror.org/01d92aq70 InterDigital (United Kingdom)'), (66213, 'https://ror.org/01dbbht76', 'en', 1, 'https://ror.org/01dbbht76 National Center for PTSD'), (66214, 'https://ror.org/01dcb8p36', 'no_lang_code', 1, 'https://ror.org/01dcb8p36 Dai Han Pharm (South Korea) 대한약품공업주식회사'), (66215, 'https://ror.org/01dcg9845', 'no_lang_code', 1, 'https://ror.org/01dcg9845 Janssen (Ireland)'), (66216, 'https://ror.org/01de7qg49', 'en', 1, 'https://ror.org/01de7qg49 Cangzhou Normal University 沧州师范学院'), (66217, 'https://ror.org/01dhvqg75', 'no_lang_code', 1, 'https://ror.org/01dhvqg75 Rostov-on-Don Anti-plague Institute Rospotrebnadzor Ростовский научно-исследовательский противочумный институт'), (66218, 'https://ror.org/01dk6as53', 'en', 1, 'https://ror.org/01dk6as53 Korea Tourism College 한국관광대학교'), (66219, 'https://ror.org/01dkhme60', 'en', 1, 'https://ror.org/01dkhme60 First Research Institute of the Ministry of Public Security 公安部第一研究所'), (66220, 'https://ror.org/01dkjkq64', 'no_lang_code', 1, 'https://ror.org/01dkjkq64 Jingdong (China) 京东'), (66221, 'https://ror.org/01dmaez27', 'en', 1, 'https://ror.org/01dmaez27 Hong Kong Institute of Vocational Education 香港專業教育學院'), (66222, 'https://ror.org/01dnmm403', 'no_lang_code', 1, 'https://ror.org/01dnmm403 Ural Mining and Metallurgical Company (Russia) Открытое акционерное общество «Уральская горно-металлургическая компания'), (66223, 'https://ror.org/01dpe0a21', 'no_lang_code', 1, 'https://ror.org/01dpe0a21 Cell Biotech (South Korea) 쎌바이오텍'), (66224, 'https://ror.org/01dqs7f31', 'en', 1, 'https://ror.org/01dqs7f31 Guangdong Research Institute of Water Resources and Hydropower 广东省水利水电科学研究院'), (66225, 'https://ror.org/01dr6h017', 'no_lang_code', 1, 'https://ror.org/01dr6h017 Pega (United States)'), (66226, 'https://ror.org/01drdtp87', 'en', 1, 'https://ror.org/01drdtp87 Shree Krishna Hospital શ્રી કૃષ્ણ હોસ્પિટલ'), (66227, 'https://ror.org/01dsawn50', 'en', 1, 'https://ror.org/01dsawn50 Réseau de recherche en santé des populations du Québec The Quebec Population Health Research Network'), (66228, 'https://ror.org/01dshmj81', 'no_lang_code', 1, 'https://ror.org/01dshmj81 New Universe Environmental Group (China) 新宇國際實業(集團)有限公司'), (66229, 'https://ror.org/01dt03b80', 'no_lang_code', 1, 'https://ror.org/01dt03b80 Unilever (Japan)'), (66230, 'https://ror.org/01dt3rt55', 'en', 1, 'https://ror.org/01dt3rt55 Wuzhou Food and Drug Administration 梧州市食品药品监督管理局'), (66231, 'https://ror.org/01dwpz371', 'en', 1, 'https://ror.org/01dwpz371 All-Russian Scientific Research Institute of Grain and Products of its Processing Всероссийский Научно-Исследовательский Институт Зерна и продуктов его переработки'), (66232, 'https://ror.org/01dx9ap19', 'no_lang_code', 1, 'https://ror.org/01dx9ap19 Gameone Holdings (China) 智傲控股有限公司'), (66233, 'https://ror.org/01dxqkr82', 'en', 1, 'https://ror.org/01dxqkr82 Institute of Biophysics and Biomedical Engineering Институт по биофизика и биомедицинско инженерство'), (66234, 'https://ror.org/01dynsx63', 'en', 1, 'https://ror.org/01dynsx63 Xi''an Micromotor Research Institute 西安微电机研究所'), (66235, 'https://ror.org/01dz1nw58', 'no_lang_code', 1, 'https://ror.org/01dz1nw58 Bercanan (Poland)'), (66236, 'https://ror.org/01dznag44', 'en', 1, 'https://ror.org/01dznag44 Office of Washington Secretary of State'), (66237, 'https://ror.org/01dzptr68', 'no_lang_code', 1, 'https://ror.org/01dzptr68 Four Directions (China)'), (66238, 'https://ror.org/01e0e7p47', 'en', 1, 'https://ror.org/01e0e7p47 Positive Living North'), (66239, 'https://ror.org/01e0s4559', 'en', 1, 'https://ror.org/01e0s4559 Ministry of Labour and Social Protection Republic of Belarus Министерство труда и социальной защиты Республики Беларусь'), (66240, 'https://ror.org/01e2dpk50', 'no_lang_code', 1, 'https://ror.org/01e2dpk50 Yuntianhua Group (China)'), (66241, 'https://ror.org/01e6c7y89', 'en', 1, 'https://ror.org/01e6c7y89 Carlow County Council Comhairle Contae Cheatharlach'), (66242, 'https://ror.org/01e7kxc55', 'en', 1, 'https://ror.org/01e7kxc55 Children''s Scientific and Clinical Center for Infectious Diseases of the Federal Medical and Biological Agency Детский научно-клинический центр инфекционных заболеваний Федерального медико-биологического агентства'), (66243, 'https://ror.org/01e80cj48', 'no_lang_code', 1, 'https://ror.org/01e80cj48 Gulf Drilling International (Qatar)'), (66244, 'https://ror.org/01e8kt239', 'no_lang_code', 1, 'https://ror.org/01e8kt239 International Transport Information Systems (China)'), (66245, 'https://ror.org/01e8kye07', 'en', 1, 'https://ror.org/01e8kye07 All-Russian Scientific Research Institute of Hydraulic Engineering and Melioration named after A.N. Kostyakov Всероссийский научно-исследовательский институт гидротехники и мелиорации имени А. Н. Костякова'), (66246, 'https://ror.org/01eakvg09', 'en', 1, 'https://ror.org/01eakvg09 Global English Teachers Association 글로벌 영어 교사 협회'), (66247, 'https://ror.org/01eb0bw82', 'no_lang_code', 1, 'https://ror.org/01eb0bw82 Sahaj Hospital सहज हॉस्पिटल'), (66248, 'https://ror.org/01eb2ss72', 'no_lang_code', 1, 'https://ror.org/01eb2ss72 Stallergenes Greer (Australia)'), (66249, 'https://ror.org/01ebjwm20', 'no_lang_code', 1, 'https://ror.org/01ebjwm20 Springer Nature (Netherlands)'), (66250, 'https://ror.org/01eevfr57', 'no_lang_code', 1, 'https://ror.org/01eevfr57 Hankook Tire (South Korea) 한국타이어'), (66251, 'https://ror.org/01ef25a22', 'no_lang_code', 1, 'https://ror.org/01ef25a22 Shenwu Technology Group Corp (China) 神雾科技集团股份有限公司'), (66252, 'https://ror.org/01egb4878', 'no_lang_code', 1, 'https://ror.org/01egb4878 Beijing Enterprises (China)'), (66253, 'https://ror.org/01ehetm20', 'no_lang_code', 1, 'https://ror.org/01ehetm20 Dongwoodang (South Korea) 동우당제약'), (66254, 'https://ror.org/01ejgx395', 'no_lang_code', 1, 'https://ror.org/01ejgx395 GL PharmTech (South Korea)'), (66255, 'https://ror.org/01ejspd55', 'no_lang_code', 1, 'https://ror.org/01ejspd55 Ranheim Paper & Board (Norway)'), (66256, 'https://ror.org/01em1bx15', 'no_lang_code', 1, 'https://ror.org/01em1bx15 Inston (United States)'), (66257, 'https://ror.org/01em57323', 'en', 1, 'https://ror.org/01em57323 Guizhou Province Chemical Industry Research Institute'), (66258, 'https://ror.org/01en03795', 'no_lang_code', 1, 'https://ror.org/01en03795 Amasic (China)'), (66259, 'https://ror.org/01ep52038', 'no_lang_code', 1, 'https://ror.org/01ep52038 L&K Biomed (South Korea)'), (66260, 'https://ror.org/01eps0y04', 'en', 1, 'https://ror.org/01eps0y04 The Association of Korean Cultural and Historical Geographers 한국문화역사지리학회'), (66261, 'https://ror.org/01eq53z97', 'no_lang_code', 1, 'https://ror.org/01eq53z97 Chemoxy (United Kingdom)'), (66262, 'https://ror.org/01eqqdz04', 'en', 1, 'https://ror.org/01eqqdz04 Korea Association of Health Promotion 한국건강관리협회'), (66263, 'https://ror.org/01eskr961', 'en', 1, 'https://ror.org/01eskr961 ESI - Post Graduate Institute of Medical Science and Research'), (66264, 'https://ror.org/01et03p29', 'en', 1, 'https://ror.org/01et03p29 Kerry Education and Training Board'), (66265, 'https://ror.org/01etg0b86', 'en', 1, 'https://ror.org/01etg0b86 Korean Association For Housing Policy Studies 한국주택학회'), (66266, 'https://ror.org/01ett0051', 'no_lang_code', 1, 'https://ror.org/01ett0051 Research Institute of Precision Instruments (Russia) Научно-исследовательский институт прецизионных приборов'), (66267, 'https://ror.org/01ew95g57', 'no_lang_code', 1, 'https://ror.org/01ew95g57 Vir Biotechnology (Switzerland)'), (66268, 'https://ror.org/01ezqqb21', 'no_lang_code', 1, 'https://ror.org/01ezqqb21 Akilah Hospital مستشفى عاقله'), (66269, 'https://ror.org/01f0eaw14', 'en', 1, 'https://ror.org/01f0eaw14 The Global Alliance for LGBT Education'), (66270, 'https://ror.org/01f1xfq83', 'en', 1, 'https://ror.org/01f1xfq83 Tompkins Conservation'), (66271, 'https://ror.org/01f2k3r93', 'no_lang_code', 1, 'https://ror.org/01f2k3r93 Shenzhen Yihua Computer (China) 深圳怡化电脑股份有限公司'), (66272, 'https://ror.org/01f390f45', 'no_lang_code', 1, 'https://ror.org/01f390f45 Guangxi Yuchai Machinery Group (China) 玉柴集团'), (66273, 'https://ror.org/01f3b0g09', 'en', 1, 'https://ror.org/01f3b0g09 Technological Institute of Castilla y León'), (66274, 'https://ror.org/01f4ntp03', 'en', 1, 'https://ror.org/01f4ntp03 Material and Industrial Technology Research Institute Beijing 新材料与产业技术北京研究院'), (66275, 'https://ror.org/01f573w53', 'en', 1, 'https://ror.org/01f573w53 Korean Cognitive and Biological Psychology Society 한국인지및생물심리학회'), (66276, 'https://ror.org/01f6j5k03', 'en', 1, 'https://ror.org/01f6j5k03 Harbin Liushun Electric Automation Design Institute 哈尔滨市六顺电气自动化设计研究所'), (66277, 'https://ror.org/01f74qr97', 'en', 1, 'https://ror.org/01f74qr97 Shree O.H. Nazar Ayurved College Shree Swami Atmanand Saraswati Ayurved Hospital'), (66278, 'https://ror.org/01f7zsh14', 'en', 1, 'https://ror.org/01f7zsh14 Korean Theatre Education Association 한국연극교육학회'), (66279, 'https://ror.org/01f83ya71', 'en', 1, 'https://ror.org/01f83ya71 Royal Society for Asian Affairs'), (66280, 'https://ror.org/01f85g151', 'en', 1, 'https://ror.org/01f85g151 Creative Wick'), (66281, 'https://ror.org/01f91hj24', 'no_lang_code', 1, 'https://ror.org/01f91hj24 Xinjiang Machinery Research Institute (China) 新疆机械研究院股份有限公司'), (66282, 'https://ror.org/01fbkw579', 'no_lang_code', 1, 'https://ror.org/01fbkw579 Wuhan Institute of Geo-Environmental Industry and Technology (China) 武汉地质环境工程技术研究所'), (66283, 'https://ror.org/01fc2st08', 'no_lang_code', 1, 'https://ror.org/01fc2st08 Clear Water Revival (United Kingdom)'), (66284, 'https://ror.org/01fex4x77', 'no_lang_code', 1, 'https://ror.org/01fex4x77 VeriFone Systems (United States)'), (66285, 'https://ror.org/01fgam068', 'en', 1, 'https://ror.org/01fgam068 Rediscovery Centre'), (66286, 'https://ror.org/01fgay757', 'en', 1, 'https://ror.org/01fgay757 Guyana Forestry Commission'), (66287, 'https://ror.org/01fh2dk93', 'en', 1, 'https://ror.org/01fh2dk93 Montana Department of Justice'), (66288, 'https://ror.org/01fhjwb62', 'en', 1, 'https://ror.org/01fhjwb62 Chinese General Chamber of Commerce 香港中華總商會'), (66289, 'https://ror.org/01fmwwp26', 'en', 1, 'https://ror.org/01fmwwp26 China Special Equipment Inspection and Research Institute 中国特种设备检测研究院'), (66290, 'https://ror.org/01fp3t562', 'en', 1, 'https://ror.org/01fp3t562 Korea Digital Hospital Export Agency 한국디지털병원수출조합'), (66291, 'https://ror.org/01fqnwx40', 'en', 1, 'https://ror.org/01fqnwx40 M.V. Hospital and Research Centre'), (66292, 'https://ror.org/01fsnxq70', 'no_lang_code', 1, 'https://ror.org/01fsnxq70 Elite Antennas (United Kingdom)'), (66293, 'https://ror.org/01fst1562', 'no_lang_code', 1, 'https://ror.org/01fst1562 Sceptica Scientific (United Kingdom)'); INSERT INTO `rors` VALUES (66294, 'https://ror.org/01ftfrf48', 'no_lang_code', 1, 'https://ror.org/01ftfrf48 Gidropribor Гидроприбор'), (66295, 'https://ror.org/01fvvak72', 'en', 1, 'https://ror.org/01fvvak72 Russian Engineering Academy Российская инженерная академия'), (66296, 'https://ror.org/01fygw054', 'en', 1, 'https://ror.org/01fygw054 Lifetime Lab'), (66297, 'https://ror.org/01fz81h65', 'en', 1, 'https://ror.org/01fz81h65 Dagestan Scientific Center of the Russian Academy of Sciences Дагестанский научный центр Российской академии наук'), (66298, 'https://ror.org/01g08q774', 'no_lang_code', 1, 'https://ror.org/01g08q774 SAIC-GM-Wuling (China) 上汽通用五菱汽车股份有限公司'), (66299, 'https://ror.org/01g09cg68', 'en', 1, 'https://ror.org/01g09cg68 Health Physics Society'), (66300, 'https://ror.org/01g140v14', 'en', 1, 'https://ror.org/01g140v14 China Spallation Neutron Source 中国散裂中子源工程'), (66301, 'https://ror.org/01g34pr56', 'en', 1, 'https://ror.org/01g34pr56 Inclusion Ireland'), (66302, 'https://ror.org/01g37sx43', 'en', 1, 'https://ror.org/01g37sx43 The Korea Society for Chinese Studies 한국중국학회'), (66303, 'https://ror.org/01g3jyj45', 'no_lang_code', 1, 'https://ror.org/01g3jyj45 Fermion Government Services (United States)'), (66304, 'https://ror.org/01g4ecg56', 'no_lang_code', 1, 'https://ror.org/01g4ecg56 Sooriya Hospital சூரியா மருத்துவமனை'), (66305, 'https://ror.org/01g4vtd10', 'en', 1, 'https://ror.org/01g4vtd10 Keimyung College University 계명 문화 대학'), (66306, 'https://ror.org/01g5j9962', 'en', 1, 'https://ror.org/01g5j9962 Stoughton Youth Commission'), (66307, 'https://ror.org/01g81xd76', 'en', 1, 'https://ror.org/01g81xd76 Ministry of Culture and Communications Ministère de la Culture et des Communications'), (66308, 'https://ror.org/01g8e7412', 'es', 1, 'https://ror.org/01g8e7412 Instituto Interamericano de Cooperación para la Agricultura'), (66309, 'https://ror.org/01gacnq13', 'no_lang_code', 1, 'https://ror.org/01gacnq13 Quest Diagnostics (United Kingdom)'), (66310, 'https://ror.org/01gav0153', 'en', 1, 'https://ror.org/01gav0153 Bristol Green Capital Partnership'), (66311, 'https://ror.org/01ghdd484', 'no_lang_code', 1, 'https://ror.org/01ghdd484 Ervia (Ireland)'), (66312, 'https://ror.org/01gjt0k11', 'no_lang_code', 1, 'https://ror.org/01gjt0k11 Sina (China) 新浪'), (66313, 'https://ror.org/01gkngr03', 'no_lang_code', 1, 'https://ror.org/01gkngr03 ATG UV Technology (United Kingdom)'), (66314, 'https://ror.org/01gn3jg46', 'en', 1, 'https://ror.org/01gn3jg46 Sussex Wildlife Trust'), (66315, 'https://ror.org/01gnxgt70', 'no_lang_code', 1, 'https://ror.org/01gnxgt70 Cimpress (Netherlands)'), (66316, 'https://ror.org/01gpc7s59', 'es', 1, 'https://ror.org/01gpc7s59 Instituto Colombiano de Medicina Tropical'), (66317, 'https://ror.org/01gpd6e26', 'no_lang_code', 1, 'https://ror.org/01gpd6e26 Calix (United States)'), (66318, 'https://ror.org/01gpm9f56', 'no_lang_code', 1, 'https://ror.org/01gpm9f56 Jiangsu Provincial Water Survey & Design Institute (China) 江苏省水利勘测设计研究院有限公司'), (66319, 'https://ror.org/01gwe4v50', 'en', 1, 'https://ror.org/01gwe4v50 International Association for the Exchange of Students for Technical Experience Меѓународна асоцијација за размена на студенти за техничко искуство'), (66320, 'https://ror.org/01gwm2d88', 'en', 1, 'https://ror.org/01gwm2d88 Korean Society For Curriculum Studies 한국교육과정학회'), (66321, 'https://ror.org/01gxrv819', 'no_lang_code', 1, 'https://ror.org/01gxrv819 Vornia (Ireland)'), (66322, 'https://ror.org/01gy1fv44', 'en', 1, 'https://ror.org/01gy1fv44 Qinhuangdao Audio-Visual Machinery Research Institute 秦皇岛视听机械研究所'), (66323, 'https://ror.org/01gybxp05', 'no_lang_code', 1, 'https://ror.org/01gybxp05 Emteq (United Kingdom)'), (66324, 'https://ror.org/01h027j09', 'en', 1, 'https://ror.org/01h027j09 Shenzhen Academy of Robotics 临深圳市智能机器人研究院'), (66325, 'https://ror.org/01h1t5f62', 'en', 1, 'https://ror.org/01h1t5f62 Bulgarian Small and Medium Enterprises Promotion Agency'), (66326, 'https://ror.org/01h2zyy62', 'pt', 1, 'https://ror.org/01h2zyy62 Serviços Partilhados do Ministério da Saúde'), (66327, 'https://ror.org/01h3gvb78', 'en', 1, 'https://ror.org/01h3gvb78 Korean Society for History of Education 한국교육사학회'), (66328, 'https://ror.org/01h3wfb62', 'en', 1, 'https://ror.org/01h3wfb62 Trade and Industry Department 工業貿易署'), (66329, 'https://ror.org/01h527v58', 'en', 1, 'https://ror.org/01h527v58 GBS Leiden'), (66330, 'https://ror.org/01h6y6f73', 'en', 1, 'https://ror.org/01h6y6f73 The Korean Society of Contemporary European Studies 한국유럽학회'), (66331, 'https://ror.org/01h8pyj37', 'en', 1, 'https://ror.org/01h8pyj37 International Commission on Radiological Protection'), (66332, 'https://ror.org/01h8s5550', 'en', 1, 'https://ror.org/01h8s5550 Korea Intelligent Information Systems Society 한국 지능 정보 시스템 학회'), (66333, 'https://ror.org/01h9v1373', 'no_lang_code', 1, 'https://ror.org/01h9v1373 Language Science (South Korea) 언어과학'), (66334, 'https://ror.org/01hahzp71', 'en', 1, 'https://ror.org/01hahzp71 Shanxi Academy of Forestry 山西省林业科学研究院'), (66335, 'https://ror.org/01hb90y08', 'en', 1, 'https://ror.org/01hb90y08 Institutul Teologic Protestant Protestant Theological Institute of Cluj-Napoca Protestáns Teológiai Intézet'), (66336, 'https://ror.org/01hbaf921', 'en', 1, 'https://ror.org/01hbaf921 Hong Kong Medical and Healthcare Device Industries Association 香港醫療及保健器材行業協會'), (66337, 'https://ror.org/01hbex578', 'no_lang_code', 1, 'https://ror.org/01hbex578 Biosolution (South Korea) 바이오솔루션'), (66338, 'https://ror.org/01hf44t80', 'en', 1, 'https://ror.org/01hf44t80 Guangzhou Institute of Applied Software Technology, Chinese Academy of Sciences 广州中国科学院软件应用技术研究所'), (66339, 'https://ror.org/01hf8qc75', 'en', 1, 'https://ror.org/01hf8qc75 Hubei Provincial Water Resources and Hydropower Planning Survey and Design Institute 湖北省水利水电规划勘测设计院'), (66340, 'https://ror.org/01hg18f75', 'no_lang_code', 1, 'https://ror.org/01hg18f75 SynAgile (United States)'), (66341, 'https://ror.org/01hg8wj19', 'en', 1, 'https://ror.org/01hg8wj19 Migration Institute of Australia'), (66342, 'https://ror.org/01hh1mx02', 'no_lang_code', 1, 'https://ror.org/01hh1mx02 Beijing Guodaotong Highway Design & Research Institute (China) 北京国道通公路设计研究院'), (66343, 'https://ror.org/01hjn9g45', 'en', 1, 'https://ror.org/01hjn9g45 The Busan Metropolitan Simin Municipal Library 부산시립시민도서관'), (66344, 'https://ror.org/01hm87p08', 'no_lang_code', 1, 'https://ror.org/01hm87p08 Stop. Watch Television (Ireland)'), (66345, 'https://ror.org/01hp1ex72', 'en', 1, 'https://ror.org/01hp1ex72 Korean Association For Local Government Studies 한국지방자치학회는'), (66346, 'https://ror.org/01hpfvd96', 'no_lang_code', 1, 'https://ror.org/01hpfvd96 Unilever (Australia)'), (66347, 'https://ror.org/01hprsv49', 'en', 1, 'https://ror.org/01hprsv49 Joint Stock Company National Research Institute Electron «Центральный научно-исследовательский институт «Электрон»'), (66348, 'https://ror.org/01hqxj822', 'en', 1, 'https://ror.org/01hqxj822 Cybercommunication Academic Society'), (66349, 'https://ror.org/01hrwg648', 'en', 1, 'https://ror.org/01hrwg648 Avon Wildlife Trust'), (66350, 'https://ror.org/01hs54b18', 'en', 1, 'https://ror.org/01hs54b18 Centre Casa'), (66351, 'https://ror.org/01hvq8642', 'en', 1, 'https://ror.org/01hvq8642 Coalition for Research in Women''s Health'), (66352, 'https://ror.org/01hy56d90', 'no_lang_code', 1, 'https://ror.org/01hy56d90 Marafeq (Qatar)'), (66353, 'https://ror.org/01hy8fk80', 'en', 1, 'https://ror.org/01hy8fk80 Guizhou Electromechanical Research and Design Institute'), (66354, 'https://ror.org/01hyggk46', 'no_lang_code', 1, 'https://ror.org/01hyggk46 PSP Security (China)'), (66355, 'https://ror.org/01j0j2q95', 'en', 1, 'https://ror.org/01j0j2q95 The Society of Korean Language and Literature 국어국문학회'), (66356, 'https://ror.org/01j0jk666', 'no_lang_code', 1, 'https://ror.org/01j0jk666 ResMed (United States)'), (66357, 'https://ror.org/01j1w6v73', 'no_lang_code', 1, 'https://ror.org/01j1w6v73 Allscripts (United States)'), (66358, 'https://ror.org/01j2rpy06', 'en', 1, 'https://ror.org/01j2rpy06 Ajou Motor College 아주 자동차 대학'), (66359, 'https://ror.org/01j3dap11', 'en', 1, 'https://ror.org/01j3dap11 Cardiff West Community High School'), (66360, 'https://ror.org/01j3dkq17', 'fr', 1, 'https://ror.org/01j3dkq17 Institut de Recherches en Ingénierie des Surfaces'), (66361, 'https://ror.org/01j49yd81', 'en', 1, 'https://ror.org/01j49yd81 Korean Academy of Science and Technology 한국과학기술한림원'), (66362, 'https://ror.org/01j5rta38', 'es', 1, 'https://ror.org/01j5rta38 Ministerio de Salud'), (66363, 'https://ror.org/01j6bp769', 'en', 1, 'https://ror.org/01j6bp769 European Network of Building Research Institutes'), (66364, 'https://ror.org/01j6drw72', 'en', 1, 'https://ror.org/01j6drw72 Institute of Science and Technology for Ceramics Istituto di Scienza e Tecnologia dei Materiali Ceramici'), (66365, 'https://ror.org/01j71j305', 'en', 1, 'https://ror.org/01j71j305 Tianjin TDBH Naval Architecture & Ocean Engineering Academy 天津天大滨海船舶与海洋工程研究院'), (66366, 'https://ror.org/01j82jb67', 'en', 1, 'https://ror.org/01j82jb67 Frontline Dance'), (66367, 'https://ror.org/01j8bzd71', 'no_lang_code', 1, 'https://ror.org/01j8bzd71 Cambridge Microelectronics (United Kingdom)'), (66368, 'https://ror.org/01j8cv720', 'no_lang_code', 1, 'https://ror.org/01j8cv720 Changzhou Academy of Intelli-Ag Equipment (China) 常州智能化设备研究院'), (66369, 'https://ror.org/01j8s5338', 'no_lang_code', 1, 'https://ror.org/01j8s5338 Ilsung Pharmaceuticals (South Korea) 일성 제약'), (66370, 'https://ror.org/01j90hd50', 'en', 1, 'https://ror.org/01j90hd50 Korea Institute of Youth Facility and Environment'), (66371, 'https://ror.org/01j9g7106', 'no_lang_code', 1, 'https://ror.org/01j9g7106 Korea Innotech (South Korea) 고려이노테크'), (66372, 'https://ror.org/01jabqj59', 'en', 1, 'https://ror.org/01jabqj59 State Specialized Design Institute Государственный специализированный проектный институт'), (66373, 'https://ror.org/01jah5c57', 'no_lang_code', 1, 'https://ror.org/01jah5c57 ATK Holding Group (China)'), (66374, 'https://ror.org/01jajf911', 'en', 1, 'https://ror.org/01jajf911 Energy Research Partnership'), (66375, 'https://ror.org/01jb3sz14', 'en', 1, 'https://ror.org/01jb3sz14 Zhejiang Institute of Special Equipment Inspection 浙江省特种设备检验研究院'), (66376, 'https://ror.org/01jcqgb80', 'no_lang_code', 1, 'https://ror.org/01jcqgb80 Leshi Internet Information and Technology (China) 乐视网'), (66377, 'https://ror.org/01jpa7r59', 'en', 1, 'https://ror.org/01jpa7r59 West Africa Civil Society Institute'), (66378, 'https://ror.org/01jq9hd27', 'sv', 1, 'https://ror.org/01jq9hd27 National Agency for Special Needs Education and Schools Specialpedagogiska Skolmyndigheten'), (66379, 'https://ror.org/01jqa8y96', 'no_lang_code', 1, 'https://ror.org/01jqa8y96 Qatar Electricity & Water (Qatar)'), (66380, 'https://ror.org/01jr0rj76', 'en', 1, 'https://ror.org/01jr0rj76 Texas Department of Public Safety'), (66381, 'https://ror.org/01jsfh075', 'en', 1, 'https://ror.org/01jsfh075 Irish Refugee Council'), (66382, 'https://ror.org/01jsj3b27', 'no_lang_code', 1, 'https://ror.org/01jsj3b27 Suren Systems (China) 西榮科技有限公司'), (66383, 'https://ror.org/01jt38m64', 'en', 1, 'https://ror.org/01jt38m64 Institute for Energetics and Interphases Istituto per Energetica e Interfasi'), (66384, 'https://ror.org/01jwjz832', 'en', 1, 'https://ror.org/01jwjz832 Index Medical College, Hospital & Research Centre देवी अहिल्या विश्वविद्यालय प्रशासनिक कार्यालय, आर एन टी'), (66385, 'https://ror.org/01jwwa840', 'en', 1, 'https://ror.org/01jwwa840 Korea Soongsil Cyber University 한국사이버대학교 종로캠퍼스'), (66386, 'https://ror.org/01jxmb930', 'en', 1, 'https://ror.org/01jxmb930 Retina Care Specialists'), (66387, 'https://ror.org/01jz1e142', 'en', 1, 'https://ror.org/01jz1e142 Northwest Institute of Eco-Environment and Resources 中国科学院西北生态环境资源研究院'), (66388, 'https://ror.org/01jzaby46', 'en', 1, 'https://ror.org/01jzaby46 Chongqing Three Gorges Academy of Agricultural Sciences 重庆三峡农业科学院'), (66389, 'https://ror.org/01k184b43', 'no_lang_code', 1, 'https://ror.org/01k184b43 Onex (Canada)'), (66390, 'https://ror.org/01k218104', 'en', 1, 'https://ror.org/01k218104 Fjármála- og efnahagsráðuneytið Ministry of Finance and Economic Affairs'), (66391, 'https://ror.org/01k4fsz02', 'no_lang_code', 1, 'https://ror.org/01k4fsz02 Brainomix (United Kingdom)'), (66392, 'https://ror.org/01k722e67', 'en', 1, 'https://ror.org/01k722e67 The Korean Society for Literature and Religion 한국문학과종교학회'), (66393, 'https://ror.org/01k814a06', 'en', 1, 'https://ror.org/01k814a06 Coconut Industry Board'), (66394, 'https://ror.org/01kam1p04', 'en', 1, 'https://ror.org/01kam1p04 All-Russian Research Institute for Fire Protection Федеральное государственное бюджетное учреждение «Всероссийский ордена „Знак Почёта“ научно-исследовательский институт противопожарной обороны»'), (66395, 'https://ror.org/01kapv839', 'en', 1, 'https://ror.org/01kapv839 Korea Women''s Associations United 한국 여성 단체 연합'), (66396, 'https://ror.org/01kbeda11', 'en', 1, 'https://ror.org/01kbeda11 Rostov-on-Don Research Institute of Radio Communications РОСТОВСКИЙ-НА-ДОНУ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ РАДИОСВЯЗИ'), (66397, 'https://ror.org/01kbrc263', 'no_lang_code', 1, 'https://ror.org/01kbrc263 FUTRESynthesis (Poland)'), (66398, 'https://ror.org/01ke7y772', 'no_lang_code', 1, 'https://ror.org/01ke7y772 KO VNIIMETMASH Колпинский научно-исследовательский и проектно-конструкторский институт металлургического машиностроения'), (66399, 'https://ror.org/01kegt086', 'en', 1, 'https://ror.org/01kegt086 Korea Contents Association'), (66400, 'https://ror.org/01kfqj356', 'en', 1, 'https://ror.org/01kfqj356 Tula University Тульский университет'), (66401, 'https://ror.org/01kfzv427', 'no_lang_code', 1, 'https://ror.org/01kfzv427 Green Running (United Kingdom)'), (66402, 'https://ror.org/01kh6gx25', 'en', 1, 'https://ror.org/01kh6gx25 Sustainable Europe Research Institute'), (66403, 'https://ror.org/01khbav88', 'no_lang_code', 1, 'https://ror.org/01khbav88 Getech (United Kingdom)'), (66404, 'https://ror.org/01kp5ce13', 'en', 1, 'https://ror.org/01kp5ce13 Korean Sociological Association 한국사회학회'), (66405, 'https://ror.org/01kpcqp30', 'en', 1, 'https://ror.org/01kpcqp30 Men’s Development Network'), (66406, 'https://ror.org/01kstph72', 'no_lang_code', 1, 'https://ror.org/01kstph72 Emotech (United Kingdom)'), (66407, 'https://ror.org/01kvmmx47', 'no_lang_code', 1, 'https://ror.org/01kvmmx47 Han Kook Shin Yak Pharmaceutical (South Korea)'), (66408, 'https://ror.org/01m2ydy56', 'no_lang_code', 1, 'https://ror.org/01m2ydy56 Altaba (United States)'), (66409, 'https://ror.org/01m3vxn57', 'en', 1, 'https://ror.org/01m3vxn57 York Minster'), (66410, 'https://ror.org/01m52ey02', 'en', 1, 'https://ror.org/01m52ey02 Science Communication Institute'), (66411, 'https://ror.org/01m64ks43', 'en', 1, 'https://ror.org/01m64ks43 The Association of East Asian Ancient Studies 고대 아시아 학회'), (66412, 'https://ror.org/01m708z37', 'no_lang_code', 1, 'https://ror.org/01m708z37 Bio-Marine Ingredients (Ireland)'), (66413, 'https://ror.org/01m9skf34', 'en', 1, 'https://ror.org/01m9skf34 Central Research Institute "Course" Центральный научно-исследовательский институт "Курс"'), (66414, 'https://ror.org/01mbh6s37', 'no_lang_code', 1, 'https://ror.org/01mbh6s37 PricewaterhouseCoopers (South Korea)'), (66415, 'https://ror.org/01mcf1q28', 'en', 1, 'https://ror.org/01mcf1q28 Durham Cathedral'), (66416, 'https://ror.org/01mdgds23', 'en', 1, 'https://ror.org/01mdgds23 Sichuan Machinery Research and Design Institute 四川省机械研究设计院机'), (66417, 'https://ror.org/01me33t36', 'en', 1, 'https://ror.org/01me33t36 Korean Society of East-West Comparative Literature 한국동서비교문학학회'), (66418, 'https://ror.org/01mf87c05', 'de', 1, 'https://ror.org/01mf87c05 Paritätisches Bildungswerk Bundesverband'), (66419, 'https://ror.org/01mh12h63', 'en', 1, 'https://ror.org/01mh12h63 Gwangyang Health College 광양보건대학'), (66420, 'https://ror.org/01mj0je13', 'no_lang_code', 1, 'https://ror.org/01mj0je13 Shafallah Center مركز الشفلح'), (66421, 'https://ror.org/01mj1ap13', 'en', 1, 'https://ror.org/01mj1ap13 Xinjiang Industry Technical College 新疆轻工职业技术学院'), (66422, 'https://ror.org/01mkcqs35', 'en', 1, 'https://ror.org/01mkcqs35 Public Policy and Management Institute Viešosios politikos ir vadybos institutas'), (66423, 'https://ror.org/01mp4p403', 'en', 1, 'https://ror.org/01mp4p403 2-Spirited'), (66424, 'https://ror.org/01mp7gg57', 'en', 1, 'https://ror.org/01mp7gg57 All-Russian Scientific Research Institute of Irrigation and Agricultural Water Supply "Raduga" Всероссийский научно-исследовательский институт орошения и сельскохозяйственного водоснабжения «Радуга»'), (66425, 'https://ror.org/01mrfz775', 'en', 1, 'https://ror.org/01mrfz775 Jiaxing Hengchuang Electric Design and Research Institute 嘉兴恒创电力设计研究院有限公司明绘分公'), (66426, 'https://ror.org/01ms42351', 'no_lang_code', 1, 'https://ror.org/01ms42351 Leoni (Germany)'), (66427, 'https://ror.org/01mymm084', 'en', 1, 'https://ror.org/01mymm084 Technological Educational Institute of Western Greece Τεχνολογικό Εκπαιδευτικό Ίδρυμα Δυτικής Ελλάδας'), (66428, 'https://ror.org/01mzy1p82', 'no_lang_code', 1, 'https://ror.org/01mzy1p82 DaVinci Laboratories (United States)'), (66429, 'https://ror.org/01n2ba875', 'no_lang_code', 1, 'https://ror.org/01n2ba875 Tinno (China) 深圳天珑移动技术有限公司'), (66430, 'https://ror.org/01n4hda81', 'no_lang_code', 1, 'https://ror.org/01n4hda81 Shandong Huanneng Design Institute (China) 山东环能设计院'), (66431, 'https://ror.org/01n6k5w94', 'en', 1, 'https://ror.org/01n6k5w94 BEAM Society'), (66432, 'https://ror.org/01n78v775', 'de', 1, 'https://ror.org/01n78v775 Bundesverband Kalksandsteinindustrie'), (66433, 'https://ror.org/01n7byd59', 'en', 1, 'https://ror.org/01n7byd59 Chungkang College of Cultural Industries 청강문화산업대학교'), (66434, 'https://ror.org/01n94r461', 'en', 1, 'https://ror.org/01n94r461 Shandong Academy of Forestry 山东省林业科学院'), (66435, 'https://ror.org/01ncm8z56', 'no_lang_code', 1, 'https://ror.org/01ncm8z56 CET Opto (China)'), (66436, 'https://ror.org/01ne6ew22', 'no_lang_code', 1, 'https://ror.org/01ne6ew22 Xi''an Electric Furnace Research Institute (China) 西安电炉研究所有限公司'), (66437, 'https://ror.org/01nesd228', 'en', 1, 'https://ror.org/01nesd228 Russian Research Institute of the Sugar Industry Российский научно-исследовательский институт сахарной промышленности'), (66438, 'https://ror.org/01nfb0t34', 'no_lang_code', 1, 'https://ror.org/01nfb0t34 PAREXEL International (South Korea)'), (66439, 'https://ror.org/01nfbwg92', 'en', 1, 'https://ror.org/01nfbwg92 Northern Ireland Statistics and Research Agency'), (66440, 'https://ror.org/01nfhmh79', 'no_lang_code', 1, 'https://ror.org/01nfhmh79 E I L (China)'), (66441, 'https://ror.org/01ngg1n70', 'en', 1, 'https://ror.org/01ngg1n70 Korean Academy of International Business 한국국제경영학회'), (66442, 'https://ror.org/01nhsch47', 'no_lang_code', 1, 'https://ror.org/01nhsch47 Tianneng Power (China)'), (66443, 'https://ror.org/01njzma31', 'en', 1, 'https://ror.org/01njzma31 Mokpo Science University 목포과학대학교'), (66444, 'https://ror.org/01nm2rj64', 'fr', 1, 'https://ror.org/01nm2rj64 Agence pour la Coopération Scientifique Afrique Luxembourg'), (66445, 'https://ror.org/01nmnpy52', 'en', 1, 'https://ror.org/01nmnpy52 Ministry for Tourism'), (66446, 'https://ror.org/01nnzv715', 'no_lang_code', 1, 'https://ror.org/01nnzv715 Shutterfly (United States)'), (66447, 'https://ror.org/01npvq928', 'en', 1, 'https://ror.org/01npvq928 Korea International Trade Research Institute 한국 무역 연구원'), (66448, 'https://ror.org/01nq34e56', 'pt', 1, 'https://ror.org/01nq34e56 Instituto Nacional de Investigação Pesqueira'), (66449, 'https://ror.org/01nqeer97', 'en', 1, 'https://ror.org/01nqeer97 Anhui Special Equipment Inspection Institute'), (66450, 'https://ror.org/01nsk1909', 'no_lang_code', 1, 'https://ror.org/01nsk1909 Medifron (South Korea)'), (66451, 'https://ror.org/01nt4yq55', 'no_lang_code', 1, 'https://ror.org/01nt4yq55 Ekopoz (Poland)'), (66452, 'https://ror.org/01nvxm192', 'en', 1, 'https://ror.org/01nvxm192 Association Canadienne de Soins Palliatifs Canadian Hospice Palliative Care Association'), (66453, 'https://ror.org/01nx55p33', 'no_lang_code', 1, 'https://ror.org/01nx55p33 Temenos Group (Switzerland)'), (66454, 'https://ror.org/01nxbsb84', 'en', 1, 'https://ror.org/01nxbsb84 Ottawa Baffin Nunavut Health Services'), (66455, 'https://ror.org/01ny34961', 'no_lang_code', 1, 'https://ror.org/01ny34961 China Huarong Energy (China) 中国华融能源'), (66456, 'https://ror.org/01nyd3m56', 'en', 1, 'https://ror.org/01nyd3m56 The Korean Regional Development Association 한국지역개발학회'), (66457, 'https://ror.org/01nzkak21', 'no_lang_code', 1, 'https://ror.org/01nzkak21 Baby2Body (United Kingdom)'), (66458, 'https://ror.org/01nzt4j48', 'no_lang_code', 1, 'https://ror.org/01nzt4j48 SGIDI Engineering Consulting (China) 上海勘察设计研究院'), (66459, 'https://ror.org/01p0mtg35', 'en', 1, 'https://ror.org/01p0mtg35 The Society of Korean Practical Arts Education Research 한국실과교육연구학회'), (66460, 'https://ror.org/01p73k589', 'en', 1, 'https://ror.org/01p73k589 Ministry of Labour, Employment and Social Solidarity Ministère du Travail, de l’Emploi et de la Solidarité Sociale'), (66461, 'https://ror.org/01p85sc95', 'no_lang_code', 1, 'https://ror.org/01p85sc95 PJSC "VNIIPThimnefteapparatury" (Russia)'), (66462, 'https://ror.org/01p93xj71', 'en', 1, 'https://ror.org/01p93xj71 Danish Board of District Heating'), (66463, 'https://ror.org/01p9kdj82', 'no_lang_code', 1, 'https://ror.org/01p9kdj82 Sir Takhtasinhji General Hospital સર તખ્તસિંહજી જનરલ હોસ્પિટલ'), (66464, 'https://ror.org/01pcjfy81', 'en', 1, 'https://ror.org/01pcjfy81 Savantas Policy Institute'), (66465, 'https://ror.org/01pd36221', 'en', 1, 'https://ror.org/01pd36221 Police Department Policijos departamentas'), (66466, 'https://ror.org/01pdtb768', 'en', 1, 'https://ror.org/01pdtb768 Health Protection Agency'), (66467, 'https://ror.org/01pe06664', 'no_lang_code', 1, 'https://ror.org/01pe06664 Hunan Yonker Investment Group (China) 永清环境科技产业集团有限公司'), (66468, 'https://ror.org/01pgkb997', 'no_lang_code', 1, 'https://ror.org/01pgkb997 KG Chemical (South Korea)'), (66469, 'https://ror.org/01pgq0p78', 'en', 1, 'https://ror.org/01pgq0p78 Korea Fisheries Resources Agency 한국 수산 자원 공사'), (66470, 'https://ror.org/01pgtee18', 'en', 1, 'https://ror.org/01pgtee18 Active Norfolk'), (66471, 'https://ror.org/01phtp995', 'en', 1, 'https://ror.org/01phtp995 Institut royal du Patrimoine artistique Koninklijk Instituut voor het Kunstpatrimonium Königliches Institut für Denkmalschutz Royal Institute for Cultural Heritage'), (66472, 'https://ror.org/01pjqz574', 'no_lang_code', 1, 'https://ror.org/01pjqz574 Zibo Qixiang Petrochemical Industry Group (China) 淄博启祥石化工业集团'), (66473, 'https://ror.org/01pk2qg94', 'en', 1, 'https://ror.org/01pk2qg94 The Daedong Philosophical Association 대동 철학회'), (66474, 'https://ror.org/01pk4vy23', 'no_lang_code', 1, 'https://ror.org/01pk4vy23 Novanta (United Kingdom)'), (66475, 'https://ror.org/01pmqys24', 'en', 1, 'https://ror.org/01pmqys24 Tianjin Textile Machinery and Equipment Research Institute 天津纺织机械器材研究所'), (66476, 'https://ror.org/01ppbq689', 'no_lang_code', 1, 'https://ror.org/01ppbq689 WEBAGENCY E-Commerce (Germany)'), (66477, 'https://ror.org/01ppnms58', 'en', 1, 'https://ror.org/01ppnms58 Korea Medical Devices Industry Association 한국의료기기산업협회'), (66478, 'https://ror.org/01pr5e984', 'en', 1, 'https://ror.org/01pr5e984 New York State Coalition Against Domestic Violence'), (66479, 'https://ror.org/01prhbv23', 'en', 1, 'https://ror.org/01prhbv23 Korean Society for Eco Early Childhood Education 한국생태유아교육학회'), (66480, 'https://ror.org/01prjex52', 'en', 1, 'https://ror.org/01prjex52 Andong Science University 안동과학대학교'), (66481, 'https://ror.org/01pv18527', 'en', 1, 'https://ror.org/01pv18527 The Association of North-east Asian Cultures 동북아시아문화학회'), (66482, 'https://ror.org/01pv9g403', 'en', 1, 'https://ror.org/01pv9g403 Nacionaline mokejimo agentura National Paying Agency'), (66483, 'https://ror.org/01pva1129', 'bs', 1, 'https://ror.org/01pva1129 Ministarstvo Gospodarstva'), (66484, 'https://ror.org/01pw44479', 'en', 1, 'https://ror.org/01pw44479 Shanghai Power Equipment Research Institute 上海电力设备研究院'), (66485, 'https://ror.org/01px69d78', 'en', 1, 'https://ror.org/01px69d78 The Research Institute for the Care of Older People'), (66486, 'https://ror.org/01py2n540', 'no_lang_code', 1, 'https://ror.org/01py2n540 Guizhou Aerospace Power Science & Tech (China) 贵州航天动力技术'), (66487, 'https://ror.org/01q447526', 'fr', 1, 'https://ror.org/01q447526 Observatoire Régional de la Santé d’Alsace'), (66488, 'https://ror.org/01q4pmw61', 'de', 1, 'https://ror.org/01q4pmw61 Bundesverband Glaukom-Selbsthilfe'), (66489, 'https://ror.org/01q4rp502', 'en', 1, 'https://ror.org/01q4rp502 All-Russian Scientific Research Institute of Hydrocarbon Raw Materials Всероссийский научно-исследовательский институт углеводородного сырья'), (66490, 'https://ror.org/01q53cr93', 'en', 1, 'https://ror.org/01q53cr93 New York City Arts in Education Roundtable'), (66491, 'https://ror.org/01q6hrk40', 'en', 1, 'https://ror.org/01q6hrk40 Korean Association of Law Schools 한국 법대'), (66492, 'https://ror.org/01q6skw70', 'no_lang_code', 1, 'https://ror.org/01q6skw70 Shantui (China) 山推工程机械股份有限公司'), (66493, 'https://ror.org/01q8vz920', 'en', 1, 'https://ror.org/01q8vz920 Stavropol Research Institute of Animal Production and Feed Production Ставропольский НИИ животноводства и кормопроизводства'), (66494, 'https://ror.org/01q8yy239', 'no_lang_code', 1, 'https://ror.org/01q8yy239 Manicon Technology (China)'), (66495, 'https://ror.org/01qa6vq89', 'pl', 1, 'https://ror.org/01qa6vq89 Instytutu Melioracji i Użytków Zielonych'), (66496, 'https://ror.org/01qb3ks33', 'no_lang_code', 1, 'https://ror.org/01qb3ks33 Bellrock Technology (United Kingdom)'), (66497, 'https://ror.org/01qdggq75', 'cs', 1, 'https://ror.org/01qdggq75 Institut Restaurování a Konzervačních Technik'), (66498, 'https://ror.org/01qe70573', 'en', 1, 'https://ror.org/01qe70573 Families and Work Institute'), (66499, 'https://ror.org/01qf53178', 'no_lang_code', 1, 'https://ror.org/01qf53178 Jellybooks (United Kingdom)'), (66500, 'https://ror.org/01qgwck47', 'en', 1, 'https://ror.org/01qgwck47 Green Alliance'), (66501, 'https://ror.org/01qj7t912', 'en', 1, 'https://ror.org/01qj7t912 Polymer Research Institute НИИ полимеров'), (66502, 'https://ror.org/01qjhbg05', 'en', 1, 'https://ror.org/01qjhbg05 Guangzhou Railway Polytechnic 广州铁路职业技术学院'), (66503, 'https://ror.org/01qkhw706', 'no_lang_code', 1, 'https://ror.org/01qkhw706 Christian Dior (France)'), (66504, 'https://ror.org/01qm74v44', 'no_lang_code', 1, 'https://ror.org/01qm74v44 BIOCAD (India)'), (66505, 'https://ror.org/01qncxn10', 'en', 1, 'https://ror.org/01qncxn10 Television Research Institute НИИ телевидения'), (66506, 'https://ror.org/01qr4nw81', 'en', 1, 'https://ror.org/01qr4nw81 Suzhou Nonferrous Metals Research Institute 苏州有色金属研究院有限公司'), (66507, 'https://ror.org/01qs6m282', 'no_lang_code', 1, 'https://ror.org/01qs6m282 Mergon (Ireland)'), (66508, 'https://ror.org/01qtea582', 'no_lang_code', 1, 'https://ror.org/01qtea582 PAREXEL International (India)'), (66509, 'https://ror.org/01qv4nh82', 'no_lang_code', 1, 'https://ror.org/01qv4nh82 Cartap (United Kingdom)'), (66510, 'https://ror.org/01qvc7p18', 'en', 1, 'https://ror.org/01qvc7p18 The Japanese Language Literature Association of Korea 한국일본어문학회'), (66511, 'https://ror.org/01qvrd474', 'en', 1, 'https://ror.org/01qvrd474 Institutul National de Cercetare-Dezvoltare pentru Metale si Resurse Radioactive Research and Development National Institute for Metals and Radioactive Resources'), (66512, 'https://ror.org/01qw6et69', 'no_lang_code', 1, 'https://ror.org/01qw6et69 Xingx (China) 星星集团有限公司'), (66513, 'https://ror.org/01qxec746', 'no_lang_code', 1, 'https://ror.org/01qxec746 Renault (Russia) Рено'), (66514, 'https://ror.org/01qybkd90', 'en', 1, 'https://ror.org/01qybkd90 Sri Venkateshwaraa Medical College Hospital and Research Centre, ஸ்ரீ வெங்கடேஸ்வரா மருத்துவக்கல்லூரி மற்றும் ஆய்வு மையம்'), (66515, 'https://ror.org/01qypmk37', 'no_lang_code', 1, 'https://ror.org/01qypmk37 Abbott (Chile)'), (66516, 'https://ror.org/01qyrv456', 'no_lang_code', 1, 'https://ror.org/01qyrv456 Mettler-Toledo (United States)'), (66517, 'https://ror.org/01r0fjf28', 'en', 1, 'https://ror.org/01r0fjf28 European Institute of Education and Social Policy'), (66518, 'https://ror.org/01r15jk41', 'no_lang_code', 1, 'https://ror.org/01r15jk41 Biogelx (United Kingdom)'), (66519, 'https://ror.org/01r1k7826', 'en', 1, 'https://ror.org/01r1k7826 New Jersey Sports and Exposition Authority'), (66520, 'https://ror.org/01r4zz038', 'no_lang_code', 1, 'https://ror.org/01r4zz038 Thomson Reuters (Canada)'), (66521, 'https://ror.org/01r5tp796', 'en', 1, 'https://ror.org/01r5tp796 Research Institute of Measuring Equipment Научно-исследовательский институт измерительной техники'), (66522, 'https://ror.org/01r779962', 'en', 1, 'https://ror.org/01r779962 International Association of Research in Income and Wealth'), (66523, 'https://ror.org/01r7kys31', 'en', 1, 'https://ror.org/01r7kys31 Anhui DingHeng Manufacturing Industry Technology Research Institute 安徽鼎恒制造技术研究院'), (66524, 'https://ror.org/01r9x4p54', 'en', 1, 'https://ror.org/01r9x4p54 Bashkir Scientific Research Institute of Petroleum Refining АО "Институт нефтехимпереработки"'), (66525, 'https://ror.org/01ra2eg48', 'en', 1, 'https://ror.org/01ra2eg48 The Korea Society for Children''s Media 한국어린이미디어학회에 있습니다'), (66526, 'https://ror.org/01rakqm07', 'en', 1, 'https://ror.org/01rakqm07 General Directorate of Highways Türkiye Cumhuriyeti Karayolları Genel Müdürlüğü'), (66527, 'https://ror.org/01rb6gh35', 'en', 1, 'https://ror.org/01rb6gh35 China Railway Fifth Survey and Design Institute Group 中国铁路第五勘察设计研究院集团'), (66528, 'https://ror.org/01rbsaw22', 'en', 1, 'https://ror.org/01rbsaw22 Acoustic Institute named after NN Andreev Акустический институт имени Н. Н. Андреева'), (66529, 'https://ror.org/01rc3sz57', 'en', 1, 'https://ror.org/01rc3sz57 European Shippers'' Council'), (66530, 'https://ror.org/01rcev019', 'no_lang_code', 1, 'https://ror.org/01rcev019 Hybrid Instruments (United Kingdom)'), (66531, 'https://ror.org/01re5t323', 'en', 1, 'https://ror.org/01re5t323 Perry Maddocks Trollope Lawyers'), (66532, 'https://ror.org/01reqdm50', 'en', 1, 'https://ror.org/01reqdm50 Institute of Electron Physics Інститут електронної фізики Институт электронной физики'), (66533, 'https://ror.org/01rfqch15', 'en', 1, 'https://ror.org/01rfqch15 The Indonesian Institute, Center for Public Policy Research'), (66534, 'https://ror.org/01rg40y89', 'en', 1, 'https://ror.org/01rg40y89 Institute of Condensed Matter Chemistry and Technologies for Energy Istituto di Chimica della Materia Condensata e di Tecnologie per l''Energia'), (66535, 'https://ror.org/01rhasd23', 'no_lang_code', 1, 'https://ror.org/01rhasd23 Mettler-Toledo (China) 梅特勒-托利多'), (66536, 'https://ror.org/01rjhdz41', 'de', 1, 'https://ror.org/01rjhdz41 Hessisches Ministerium für Umwelt, Klimaschutz, Landwirtschaft und Verbraucherschutz'), (66537, 'https://ror.org/01rkf4y25', 'no_lang_code', 1, 'https://ror.org/01rkf4y25 Johnson Matthey Battery Systems (United Kingdom)'), (66538, 'https://ror.org/01rn6rn86', 'no_lang_code', 1, 'https://ror.org/01rn6rn86 Palo Alto Networks (United States)'), (66539, 'https://ror.org/01rqdcg33', 'pl', 1, 'https://ror.org/01rqdcg33 Laboratorium Datowań Bezwzględnych'), (66540, 'https://ror.org/01rqthp48', 'en', 1, 'https://ror.org/01rqthp48 The Korean Society for Anesthetic Pharmacology 대한마취약리학회'), (66541, 'https://ror.org/01rrttc44', 'no_lang_code', 1, 'https://ror.org/01rrttc44 Berry Gardens (United Kingdom)'), (66542, 'https://ror.org/01rs2d517', 'en', 1, 'https://ror.org/01rs2d517 Women in Nuclear Korea'), (66543, 'https://ror.org/01rt7y457', 'no_lang_code', 1, 'https://ror.org/01rt7y457 Baogang Group (China)'), (66544, 'https://ror.org/01rte3169', 'en', 1, 'https://ror.org/01rte3169 Podar Ayurved Medical College'), (66545, 'https://ror.org/01rvzsj56', 'en', 1, 'https://ror.org/01rvzsj56 Qingdao Aerospace Semiconductor Research Institute 青岛航天半导体研究所有限公司原'), (66546, 'https://ror.org/01rw44x65', 'en', 1, 'https://ror.org/01rw44x65 Korean Society of Design Science 한국디자인학회'), (66547, 'https://ror.org/01rwmh192', 'no_lang_code', 1, 'https://ror.org/01rwmh192 Excel Life Sciences (India)'), (66548, 'https://ror.org/01ryvqz49', 'en', 1, 'https://ror.org/01ryvqz49 The Korean Literature Association 한국문학회'), (66549, 'https://ror.org/01rz7nn73', 'no_lang_code', 1, 'https://ror.org/01rz7nn73 BrainTech (Poland)'), (66550, 'https://ror.org/01rzj1953', 'en', 1, 'https://ror.org/01rzj1953 Institute of Service and Entrepreneurship of DGTU Институт сферы обслуживания и предпринимательства ДГТУ в г. Шахты'), (66551, 'https://ror.org/01s1egc39', 'no_lang_code', 1, 'https://ror.org/01s1egc39 Dashboard (United Kingdom)'), (66552, 'https://ror.org/01s40r185', 'no_lang_code', 1, 'https://ror.org/01s40r185 Ubisoft (France)'), (66553, 'https://ror.org/01s41x998', 'no_lang_code', 1, 'https://ror.org/01s41x998 ATM (Poland)'), (66554, 'https://ror.org/01s50gs59', 'no_lang_code', 1, 'https://ror.org/01s50gs59 North Oil Company (Qatar)'), (66555, 'https://ror.org/01s5dew76', 'en', 1, 'https://ror.org/01s5dew76 Institute of Food Science and Technology 食品科学与技术研究所'), (66556, 'https://ror.org/01s5hh873', 'en', 1, 'https://ror.org/01s5hh873 Xinjiang Institute of Engineering 新疆工程学院'), (66557, 'https://ror.org/01s6fxv18', 'no_lang_code', 1, 'https://ror.org/01s6fxv18 Interactive Scientific (United Kingdom)'), (66558, 'https://ror.org/01s7tq402', 'en', 1, 'https://ror.org/01s7tq402 Hainan Provincial Academy of Marine Fisheries and Aquaculture 海南省海洋与渔业科学院'), (66559, 'https://ror.org/01s8ycx98', 'en', 1, 'https://ror.org/01s8ycx98 Flatpack Film Festival'), (66560, 'https://ror.org/01sa5tb56', 'en', 1, 'https://ror.org/01sa5tb56 Islamic Azad University, Aliabad Katoul جامعة آزاد الإسلامية ، علي أباد قطول'), (66561, 'https://ror.org/01sa95390', 'no_lang_code', 1, 'https://ror.org/01sa95390 Bernard Matthews (United Kingdom)'), (66562, 'https://ror.org/01sag2n63', 'no_lang_code', 1, 'https://ror.org/01sag2n63 Guangdong Meiyan Jixiang Hydropower (China) 广东梅雁吉祥水电股份有限公司'), (66563, 'https://ror.org/01sbnfq90', 'no_lang_code', 1, 'https://ror.org/01sbnfq90 IAC (United States)'), (66564, 'https://ror.org/01scdmg11', 'fr', 1, 'https://ror.org/01scdmg11 Agence des Systèmes d’information Partagés de Santé'), (66565, 'https://ror.org/01scevc62', 'en', 1, 'https://ror.org/01scevc62 Directorate of Fisheries Fiskeridirektoratet'), (66566, 'https://ror.org/01scxhk26', 'no_lang_code', 1, 'https://ror.org/01scxhk26 Fern (China)'), (66567, 'https://ror.org/01sdpjb75', 'no_lang_code', 1, 'https://ror.org/01sdpjb75 Geotermia Uniejów (Poland)'), (66568, 'https://ror.org/01sf33a48', 'en', 1, 'https://ror.org/01sf33a48 Guangzhou Fiber Products Inspection and Research Institute 广州纤维产品检测研究院'), (66569, 'https://ror.org/01sh85g09', 'no_lang_code', 1, 'https://ror.org/01sh85g09 Expedia Group (United States)'), (66570, 'https://ror.org/01shdwj89', 'en', 1, 'https://ror.org/01shdwj89 Korea Academic Society of Tourism Management 대한관광경영학회'), (66571, 'https://ror.org/01skxtv98', 'no_lang_code', 1, 'https://ror.org/01skxtv98 Citi Logik (United Kingdom)'), (66572, 'https://ror.org/01smd1r12', 'en', 1, 'https://ror.org/01smd1r12 Institute of Labour and Social Studies Instytut Pracy i Spraw Socjalnych'), (66573, 'https://ror.org/01snp8f97', 'no_lang_code', 1, 'https://ror.org/01snp8f97 The Russian Research Institute of the Tube & Pipe Industries (Russia) Российский научно–исследовательский институт трубной промышленности'), (66574, 'https://ror.org/01sph6713', 'en', 1, 'https://ror.org/01sph6713 The North South Institute'), (66575, 'https://ror.org/01srd9017', 'en', 1, 'https://ror.org/01srd9017 Korean Association of Southeast Asian Studies 한국동남아학회'), (66576, 'https://ror.org/01stnfn33', 'no_lang_code', 1, 'https://ror.org/01stnfn33 Kingsoft (China) 金山软件'), (66577, 'https://ror.org/01sv85c76', 'it', 1, 'https://ror.org/01sv85c76 Centro Studi GISED'), (66578, 'https://ror.org/01sx2d521', 'en', 1, 'https://ror.org/01sx2d521 Guangdong Shunde Innovative Design Institute 广东顺德创新设计院'), (66579, 'https://ror.org/01sxmq816', 'en', 1, 'https://ror.org/01sxmq816 J.P. Morgan'), (66580, 'https://ror.org/01sxvbm95', 'no_lang_code', 1, 'https://ror.org/01sxvbm95 10X Genomics (United States)'), (66581, 'https://ror.org/01syk7628', 'fr', 1, 'https://ror.org/01syk7628 Agence Nationale de Protection de l''Environnement'), (66582, 'https://ror.org/01sz7sf77', 'en', 1, 'https://ror.org/01sz7sf77 Korean Association of Real Estate Law 한국 부동산법 학회'), (66583, 'https://ror.org/01t0p7s78', 'en', 1, 'https://ror.org/01t0p7s78 Canadian Red Cross Society Croix Rouge canadienne'), (66584, 'https://ror.org/01t1hq354', 'en', 1, 'https://ror.org/01t1hq354 Soil and Fertilizer Institute of Hunan Province 湖南省土壤肥料研究所成'), (66585, 'https://ror.org/01t20fb17', 'en', 1, 'https://ror.org/01t20fb17 Society of Naval Architects and Marine Engineers'), (66586, 'https://ror.org/01t3xs363', 'en', 1, 'https://ror.org/01t3xs363 Institute for Governance & Sustainable Development'), (66587, 'https://ror.org/01t4th798', 'no_lang_code', 1, 'https://ror.org/01t4th798 Yeoju University 여주대학교'), (66588, 'https://ror.org/01t748q81', 'en', 1, 'https://ror.org/01t748q81 Korea Exercise Rehabilitation Association 한국운동재활협회'), (66589, 'https://ror.org/01t7bdx98', 'en', 1, 'https://ror.org/01t7bdx98 Korean Financial Management Association 한국 재무 관리 협회'), (66590, 'https://ror.org/01t81st47', 'en', 1, 'https://ror.org/01t81st47 Yantai Academy of Agricultural Sciences 烟台农业科学院'), (66591, 'https://ror.org/01t85ct65', 'en', 1, 'https://ror.org/01t85ct65 European Association of Research Managers and Administrators'), (66592, 'https://ror.org/01t8k0773', 'en', 1, 'https://ror.org/01t8k0773 Society for the Scientific Study of Sexuality'), (66593, 'https://ror.org/01t91mp11', 'no_lang_code', 1, 'https://ror.org/01t91mp11 Proofpoint (United States)'), (66594, 'https://ror.org/01tbd0258', 'no_lang_code', 1, 'https://ror.org/01tbd0258 Lexiwave Technology (China)'), (66595, 'https://ror.org/01tbkq861', 'no_lang_code', 1, 'https://ror.org/01tbkq861 Tianjin Geothermal Exploration, Development and Design Institute (China) 天津地热勘查开发设计院'), (66596, 'https://ror.org/01tbn4j76', 'en', 1, 'https://ror.org/01tbn4j76 Gumi University 구미 대학교'), (66597, 'https://ror.org/01te4n153', 'en', 1, 'https://ror.org/01te4n153 Government Medical College'), (66598, 'https://ror.org/01tevac66', 'no_lang_code', 1, 'https://ror.org/01tevac66 Agencja Rozwoju Przemysłu SA Industrial Development Agency JSC (Poland)'), (66599, 'https://ror.org/01tjqkz09', 'en', 1, 'https://ror.org/01tjqkz09 Institute for Government'), (66600, 'https://ror.org/01tn6aq30', 'no_lang_code', 1, 'https://ror.org/01tn6aq30 Da Tang Xi Shi Group (China)'), (66601, 'https://ror.org/01tnmcm04', 'en', 1, 'https://ror.org/01tnmcm04 Scientists and Engineers Without Borders 국경없는 과학 기술 사회'), (66602, 'https://ror.org/01tp0e450', 'en', 1, 'https://ror.org/01tp0e450 Drugs for Neglected Diseases Initiative India'), (66603, 'https://ror.org/01tp7ze67', 'fr', 1, 'https://ror.org/01tp7ze67 Energieagence'), (66604, 'https://ror.org/01tsmee46', 'en', 1, 'https://ror.org/01tsmee46 Shanghai Special Equipment Supervision and Inspection Institute 上海特种设备检测技术研究院'), (66605, 'https://ror.org/01ttqmm87', 'no_lang_code', 1, 'https://ror.org/01ttqmm87 CatScI (United Kingdom)'), (66606, 'https://ror.org/01txhcw25', 'no_lang_code', 1, 'https://ror.org/01txhcw25 Cell Technology (China)'), (66607, 'https://ror.org/01tys1796', 'en', 1, 'https://ror.org/01tys1796 Yunnan Supply and Marketing Cooperatives'), (66608, 'https://ror.org/01v0cwt49', 'no_lang_code', 1, 'https://ror.org/01v0cwt49 Sungae Hospital 성애병원'), (66609, 'https://ror.org/01v0e7752', 'en', 1, 'https://ror.org/01v0e7752 The Korean Educational Administration Society 한국 교육 행정 학회'), (66610, 'https://ror.org/01v1h2b88', 'en', 1, 'https://ror.org/01v1h2b88 The Society of Modern Literature Theory 현대 문학 이론 학회'), (66611, 'https://ror.org/01v434r56', 'es', 1, 'https://ror.org/01v434r56 Agencia Tributaria'), (66612, 'https://ror.org/01v67wf52', 'fr', 1, 'https://ror.org/01v67wf52 Centre des Aînés Côte-des-Neiges'), (66613, 'https://ror.org/01v6p2g18', 'no_lang_code', 1, 'https://ror.org/01v6p2g18 Ahold Delhaize (Netherlands) Koninklijke Ahold Delhaize N.V.'), (66614, 'https://ror.org/01v7ngj48', 'en', 1, 'https://ror.org/01v7ngj48 Ikon Gallery'), (66615, 'https://ror.org/01varr368', 'no_lang_code', 1, 'https://ror.org/01varr368 PowerChina (China) 中国电力建设集团公司'), (66616, 'https://ror.org/01vd5cb71', 'en', 1, 'https://ror.org/01vd5cb71 Scientific Research Institute Elpa «Научно-исследовательский институт «Элпа»'), (66617, 'https://ror.org/01vdscs87', 'en', 1, 'https://ror.org/01vdscs87 All-Russian Research Institute for Animal Health Всероссийский научно-исследовательский институт здоровья животных'), (66618, 'https://ror.org/01ve3tk51', 'en', 1, 'https://ror.org/01ve3tk51 Administrative Conference of the United States'), (66619, 'https://ror.org/01vg4mj91', 'no_lang_code', 1, 'https://ror.org/01vg4mj91 Jiangsu Provincial Posts & Telecommunications Planning & Design Institute (China) 江苏省邮电规划设计院有限责任公司'), (66620, 'https://ror.org/01vjf9109', 'no_lang_code', 1, 'https://ror.org/01vjf9109 Coolsure (China)'), (66621, 'https://ror.org/01vjps349', 'en', 1, 'https://ror.org/01vjps349 Research Institute of Medical Problems of the North Научно-исследовательский институт медицинских проблем Севера'), (66622, 'https://ror.org/01vn81v55', 'no_lang_code', 1, 'https://ror.org/01vn81v55 Numina Group (United States)'), (66623, 'https://ror.org/01vppps02', 'en', 1, 'https://ror.org/01vppps02 The Korean Association for the Study of English Language and Linguistics 한국영어학회'), (66624, 'https://ror.org/01vpvpx53', 'en', 1, 'https://ror.org/01vpvpx53 Technology Affinity Group'), (66625, 'https://ror.org/01vq8q751', 'en', 1, 'https://ror.org/01vq8q751 Korean Industrial Economic Association 한국산업경제학회'), (66626, 'https://ror.org/01vqbzy86', 'en', 1, 'https://ror.org/01vqbzy86 Shanghai Laser Technology Institute 上海市激光技术研究所'), (66627, 'https://ror.org/01vr2v714', 'no_lang_code', 1, 'https://ror.org/01vr2v714 International Moisture Analysers (United Kingdom)'), (66628, 'https://ror.org/01vrded44', 'en', 1, 'https://ror.org/01vrded44 Hotel Dieu Shaver Health and Rehabilitation Centre'), (66629, 'https://ror.org/01vw41f50', 'en', 1, 'https://ror.org/01vw41f50 Federal State Budget Scientific Institution "Nizhny Novgorod Research Institute of Agriculture"'), (66630, 'https://ror.org/01vw57x46', 'no_lang_code', 1, 'https://ror.org/01vw57x46 Rosneft (Russia) Росне́фть'), (66631, 'https://ror.org/01vzdsm24', 'no_lang_code', 1, 'https://ror.org/01vzdsm24 Medpace (India)'), (66632, 'https://ror.org/01w2py151', 'en', 1, 'https://ror.org/01w2py151 North Ossetian State Medical Academy Северо-Осетинская государственная медицинская академия'), (66633, 'https://ror.org/01w2qw957', 'no_lang_code', 1, 'https://ror.org/01w2qw957 Shanghai Research Institute of Building Sciences (China) 上海建筑科学研究院'), (66634, 'https://ror.org/01w34q495', 'de', 1, 'https://ror.org/01w34q495 Bundesvereinigung der Deutschen Ernährungsindustrie, Federation of German Food and Drink Industries'), (66635, 'https://ror.org/01w38z049', 'en', 1, 'https://ror.org/01w38z049 The Korean Language And Culture Education Society 한국언어문화교육학회'), (66636, 'https://ror.org/01w3c2c15', 'fr', 1, 'https://ror.org/01w3c2c15 Belga'), (66637, 'https://ror.org/01w4b7951', 'en', 1, 'https://ror.org/01w4b7951 Institute for Recent History of Serbia Институт за новију историју'), (66638, 'https://ror.org/01w723627', 'en', 1, 'https://ror.org/01w723627 Austrian Institute of Ecology Österreichische Ökologie Institut'), (66639, 'https://ror.org/01w7h4t60', 'en', 1, 'https://ror.org/01w7h4t60 Royal Hospital for Sick Children'), (66640, 'https://ror.org/01w7vxz02', 'no_lang_code', 1, 'https://ror.org/01w7vxz02 Wistron (China) 緯創資通股份有限公司'), (66641, 'https://ror.org/01w94b128', 'en', 1, 'https://ror.org/01w94b128 Korean Association of Comparative Criminal Law 한국비교형사법학회'), (66642, 'https://ror.org/01wcts620', 'en', 1, 'https://ror.org/01wcts620 Shandong Transportation Research Institute 山东省交通科学研究院'), (66643, 'https://ror.org/01wf22864', 'en', 1, 'https://ror.org/01wf22864 Seoil University 瑞逸大學校,'), (66644, 'https://ror.org/01wjb4152', 'no_lang_code', 1, 'https://ror.org/01wjb4152 Adoreboard (United Kingdom)'), (66645, 'https://ror.org/01wm2fy87', 'no_lang_code', 1, 'https://ror.org/01wm2fy87 Schlumberger (Qatar)'), (66646, 'https://ror.org/01wm3c497', 'en', 1, 'https://ror.org/01wm3c497 Prostate Cancer Research'), (66647, 'https://ror.org/01wmkgr68', 'no_lang_code', 1, 'https://ror.org/01wmkgr68 Link (Germany)'), (66648, 'https://ror.org/01wmprq78', 'no_lang_code', 1, 'https://ror.org/01wmprq78 eCountability (United Kingdom)'), (66649, 'https://ror.org/01wn5z925', 'en', 1, 'https://ror.org/01wn5z925 Horse Sport Ireland'), (66650, 'https://ror.org/01wrnz920', 'no_lang_code', 1, 'https://ror.org/01wrnz920 Arcadis (United States)'), (66651, 'https://ror.org/01wtjkn81', 'en', 1, 'https://ror.org/01wtjkn81 Guangdong Special Equipment Inspection and Research Institute 广东省特种设备检测研究院'), (66652, 'https://ror.org/01wtq2m33', 'no_lang_code', 1, 'https://ror.org/01wtq2m33 DSM (India)'), (66653, 'https://ror.org/01wx5br04', 'en', 1, 'https://ror.org/01wx5br04 Korean Strategic Marketing Association 한국 전략 마케팅 협회'), (66654, 'https://ror.org/01wxbtj35', 'en', 1, 'https://ror.org/01wxbtj35 All-Russian Scientific Research Institute of Butter and Cheese Making Всероссийский научно-исследовательский институт маслоделия и сыроделия'), (66655, 'https://ror.org/01wxsyf11', 'no_lang_code', 1, 'https://ror.org/01wxsyf11 Lupin Pharmaceuticals (United States)'), (66656, 'https://ror.org/01wxtxj33', 'no_lang_code', 1, 'https://ror.org/01wxtxj33 Shanghai Urban Transportation Design Institute (China) 上海市交通设计院'), (66657, 'https://ror.org/01x23ex04', 'no_lang_code', 1, 'https://ror.org/01x23ex04 CAS Logistics (China)'), (66658, 'https://ror.org/01x2aqm70', 'en', 1, 'https://ror.org/01x2aqm70 Tatar Scientific Research Institute of Agriculture Татарский НИИ сельского хозяйства'); INSERT INTO `rors` VALUES (66659, 'https://ror.org/01x4gae84', 'en', 1, 'https://ror.org/01x4gae84 Kovai Medical Center and Hospital'), (66660, 'https://ror.org/01x4jh294', 'fr', 1, 'https://ror.org/01x4jh294 ARPE PACA, Agence Régionale Pour l’Environnement & l’écodéveloppement Provence-Alpes-Côte d’Azur'), (66661, 'https://ror.org/01x7pyz19', 'no_lang_code', 1, 'https://ror.org/01x7pyz19 Boryung Pharma (South Korea) 보령제약의'), (66662, 'https://ror.org/01x87jt81', 'en', 1, 'https://ror.org/01x87jt81 Institute of Macromolecular Chemistry Інститут хімії високомолекулярних сполук'), (66663, 'https://ror.org/01xa8e295', 'en', 1, 'https://ror.org/01xa8e295 An Bord Árachais Sláinte Shaorálaigh Vhi Healthcare'), (66664, 'https://ror.org/01xbd6g65', 'en', 1, 'https://ror.org/01xbd6g65 Beijing Institute of Neurosurgery'), (66665, 'https://ror.org/01xdejb38', 'no_lang_code', 1, 'https://ror.org/01xdejb38 iNtRON (South Korea) 인트론바이오테크놀로지'), (66666, 'https://ror.org/01xhnny36', 'en', 1, 'https://ror.org/01xhnny36 Korean German Literature Society 한국 독일 문학회'), (66667, 'https://ror.org/01xhv6h58', 'no_lang_code', 1, 'https://ror.org/01xhv6h58 Sage (United Kingdom)'), (66668, 'https://ror.org/01xjdd789', 'no_lang_code', 1, 'https://ror.org/01xjdd789 Action in Caerau & Ely (United Kingdom)'), (66669, 'https://ror.org/01xje0t51', 'en', 1, 'https://ror.org/01xje0t51 Dongak Art History Association 동악미술사학회'), (66670, 'https://ror.org/01xm51j90', 'no_lang_code', 1, 'https://ror.org/01xm51j90 eCow Devon (United Kingdom)'), (66671, 'https://ror.org/01xp2eb39', 'en', 1, 'https://ror.org/01xp2eb39 The International Association for Korean Language Education 국제한국어교육학회'), (66672, 'https://ror.org/01xq1xt31', 'no_lang_code', 1, 'https://ror.org/01xq1xt31 Biotika'), (66673, 'https://ror.org/01xqtwj78', 'no_lang_code', 1, 'https://ror.org/01xqtwj78 Agilent Technologies (Ireland)'), (66674, 'https://ror.org/01xsvrg26', 'no_lang_code', 1, 'https://ror.org/01xsvrg26 Cascoda (United Kingdom)'), (66675, 'https://ror.org/01xw83c56', 'fr', 1, 'https://ror.org/01xw83c56 Registre général des cancers de Lille et de sa région'), (66676, 'https://ror.org/01xyf9430', 'no_lang_code', 1, 'https://ror.org/01xyf9430 Boehringer Ingelheim (India)'), (66677, 'https://ror.org/01y0vt648', 'no_lang_code', 1, 'https://ror.org/01y0vt648 Institute for Quality, Safety and Transportation (Germany)'), (66678, 'https://ror.org/01y335991', 'en', 1, 'https://ror.org/01y335991 Institute of Transport Engineering Всероссийский научно-исследовательский институт транспортного машиностроения'), (66679, 'https://ror.org/01y434d35', 'en', 1, 'https://ror.org/01y434d35 International Council of Marine Industry Associations'), (66680, 'https://ror.org/01y659x67', 'no_lang_code', 1, 'https://ror.org/01y659x67 LabGenius (United Kingdom)'), (66681, 'https://ror.org/01y69kh47', 'en', 1, 'https://ror.org/01y69kh47 Ministry of Environment and Physical Planning Министерство за животна средина и просторно планирање'), (66682, 'https://ror.org/01y6s8j60', 'en', 1, 'https://ror.org/01y6s8j60 Cyprus Post Kıbrıs Posta Ofisi'), (66683, 'https://ror.org/01y6x9f04', 'no_lang_code', 1, 'https://ror.org/01y6x9f04 ColVisTec (Germany)'), (66684, 'https://ror.org/01y9p8471', 'en', 1, 'https://ror.org/01y9p8471 Ministry of Labour, Social Insurance and Social Solidarity Υπουργείο Εργασίας και Κοινωνικής Ασφάλειας & Κοινωνικής Αλληλεγγύης'), (66685, 'https://ror.org/01yagnz59', 'en', 1, 'https://ror.org/01yagnz59 Korean Clinical Psychcological Association'), (66686, 'https://ror.org/01yarqc83', 'en', 1, 'https://ror.org/01yarqc83 Suwon Women’s University 수원 여자 대학교'), (66687, 'https://ror.org/01ycn3984', 'en', 1, 'https://ror.org/01ycn3984 Changchun Observatory 长春人造卫星观测站'), (66688, 'https://ror.org/01ydbqk02', 'no_lang_code', 1, 'https://ror.org/01ydbqk02 Fujian Academy of Building Research (China) 福建省建筑科学研究院'), (66689, 'https://ror.org/01ydvxb59', 'no_lang_code', 1, 'https://ror.org/01ydvxb59 Elgór + Hansen (Poland)'), (66690, 'https://ror.org/01yetjs28', 'en', 1, 'https://ror.org/01yetjs28 Kirov Research Institute of Hematology and Blood Transfusion FMBA Кировский научно-исследовательский институт гематологии и переливания крови Федерального медико-биологического агентства'), (66691, 'https://ror.org/01yfptf89', 'no_lang_code', 1, 'https://ror.org/01yfptf89 OAO Трубная Металлургическая Компания Pipe Metallurgical (Russia)'), (66692, 'https://ror.org/01ygra721', 'no_lang_code', 1, 'https://ror.org/01ygra721 Environmental Process Systems (United Kingdom)'), (66693, 'https://ror.org/01yj6y952', 'en', 1, 'https://ror.org/01yj6y952 Korean Society of Basic Design & Art 한국 디자인 기초 학회'), (66694, 'https://ror.org/01ykf3r31', 'no_lang_code', 1, 'https://ror.org/01ykf3r31 Elyson Pharm (South Korea) 에리슨제약(주)'), (66695, 'https://ror.org/01yknwh75', 'no_lang_code', 1, 'https://ror.org/01yknwh75 Cadila Pharmaceuticals (India)'), (66696, 'https://ror.org/01ykzp537', 'no_lang_code', 1, 'https://ror.org/01ykzp537 Institute of Electronic Measurements KVARZ (Russia) «ФНПЦ «ННИПИ «Кварц» имени А.П. Горшкова»'), (66697, 'https://ror.org/01ym0mb49', 'no_lang_code', 1, 'https://ror.org/01ym0mb49 Mikronika (Poland)'), (66698, 'https://ror.org/01ym1hq42', 'en', 1, 'https://ror.org/01ym1hq42 Federation of Environmental Trade Associations'), (66699, 'https://ror.org/01yn40g02', 'en', 1, 'https://ror.org/01yn40g02 Hong Kong Bar Association 香港大律師公會'), (66700, 'https://ror.org/01yr36w05', 'no_lang_code', 1, 'https://ror.org/01yr36w05 Key Organics (United Kingdom)'), (66701, 'https://ror.org/01yvzps21', 'en', 1, 'https://ror.org/01yvzps21 The Korean Association of Primary English Education 한국 초등 영어 교육 협회'), (66702, 'https://ror.org/01ywkr738', 'en', 1, 'https://ror.org/01ywkr738 Prince Mohammad Bin Salman College of Business and Entrepreneurship كلية الأمير محمد بن سلمان للإدارة وريادة الأعمال'), (66703, 'https://ror.org/01yx4gk53', 'en', 1, 'https://ror.org/01yx4gk53 Office of the Secretary of Natural Resources'), (66704, 'https://ror.org/01yxxqf96', 'en', 1, 'https://ror.org/01yxxqf96 Concern Worldwide UK'), (66705, 'https://ror.org/01yywym13', 'en', 1, 'https://ror.org/01yywym13 The Society for the Studies of Silla History 신라 역사 학회'), (66706, 'https://ror.org/01z230y48', 'en', 1, 'https://ror.org/01z230y48 Canadian National Institute Of Health'), (66707, 'https://ror.org/01zaaey39', 'no_lang_code', 1, 'https://ror.org/01zaaey39 Interregional Open Social Institute Межрегиональный открытый социальный институт'), (66708, 'https://ror.org/01zak2017', 'no_lang_code', 1, 'https://ror.org/01zak2017 MercadoLibre (Argentina)'), (66709, 'https://ror.org/01zbb0s29', 'en', 1, 'https://ror.org/01zbb0s29 Center for Art Studies 한국예술연구소'), (66710, 'https://ror.org/01zc60580', 'no_lang_code', 1, 'https://ror.org/01zc60580 Heiwa (Japan) 株式会社平和'), (66711, 'https://ror.org/01zd5r820', 'no_lang_code', 1, 'https://ror.org/01zd5r820 Energostal (Ukraine) УКРАИНСКИЙ НАУЧНО-ТЕХНИЧЕСКИЙ ЦЕНТР МЕТАЛЛУРГИЧЕСКОЙ ПРОМЫШЛЕННОСТИ'), (66712, 'https://ror.org/01zd6tj24', 'no_lang_code', 1, 'https://ror.org/01zd6tj24 Ineos (Belgium)'), (66713, 'https://ror.org/01zdajg53', 'de', 1, 'https://ror.org/01zdajg53 Österreichische Lateinamerika-Institut'), (66714, 'https://ror.org/01zeqwe54', 'en', 1, 'https://ror.org/01zeqwe54 Bridgepoint Active Healthcare'), (66715, 'https://ror.org/01zfjxa58', 'no_lang_code', 1, 'https://ror.org/01zfjxa58 Covance (India)'), (66716, 'https://ror.org/01zfykz78', 'en', 1, 'https://ror.org/01zfykz78 Network of Schools of Public Policy, Affairs, and Administration'), (66717, 'https://ror.org/01zgghk09', 'no_lang_code', 1, 'https://ror.org/01zgghk09 CoderDojo Foundation'), (66718, 'https://ror.org/01zh21529', 'no_lang_code', 1, 'https://ror.org/01zh21529 Daegu TechnoPark 대구테크노파크'), (66719, 'https://ror.org/01zn9ea79', 'fr', 1, 'https://ror.org/01zn9ea79 Ministère de la Production Animale et des Ressources Halieutiques'), (66720, 'https://ror.org/01zq0ty45', 'en', 1, 'https://ror.org/01zq0ty45 Public Waste Agency of Flanders'), (66721, 'https://ror.org/01zqjg022', 'en', 1, 'https://ror.org/01zqjg022 United States Association for Computational Mechanics'), (66722, 'https://ror.org/01zs00411', 'en', 1, 'https://ror.org/01zs00411 Korea Testing Certification 한국기계전기전자시험연구원'), (66723, 'https://ror.org/01zvw4x71', 'en', 1, 'https://ror.org/01zvw4x71 Ministry of Ecology and Natural Resources of Ukraine Міністерство екології та природних ресурсів України'), (66724, 'https://ror.org/01zyz5223', 'no_lang_code', 1, 'https://ror.org/01zyz5223 Bonyf (Liechtenstein)'), (66725, 'https://ror.org/01zzk8a60', 'no_lang_code', 1, 'https://ror.org/01zzk8a60 Instorff (Russia) Инсторфа'), (66726, 'https://ror.org/01zzq1m54', 'en', 1, 'https://ror.org/01zzq1m54 Central Scientific and Research Institute of the Sewing Industry ОАО "Центральный Научно-Исследовательский Институт Швейной Промышленности"'), (66727, 'https://ror.org/0200k4z47', 'no_lang_code', 1, 'https://ror.org/0200k4z47 Amneal (Switzerland)'), (66728, 'https://ror.org/0201w0c54', 'en', 1, 'https://ror.org/0201w0c54 Shijiazhuang Academy of Agriculture and Forestry Sciences 石家庄市农林科学研究院'), (66729, 'https://ror.org/0203r7m17', 'no_lang_code', 1, 'https://ror.org/0203r7m17 Yarsintez ОАО НИИ «Ярсинтез»'), (66730, 'https://ror.org/0204q4d57', 'en', 1, 'https://ror.org/0204q4d57 Texas Wheat Producers Board and Association'), (66731, 'https://ror.org/02069m354', 'en', 1, 'https://ror.org/02069m354 East Ayrshire Council'), (66732, 'https://ror.org/020a0s966', 'en', 1, 'https://ror.org/020a0s966 Bodyline Hospitals'), (66733, 'https://ror.org/020a52n70', 'en', 1, 'https://ror.org/020a52n70 Department of Planning & Building'), (66734, 'https://ror.org/020b78451', 'en', 1, 'https://ror.org/020b78451 Sejong Cyber University 세종사이버대학교'), (66735, 'https://ror.org/020dfcj86', 'no_lang_code', 1, 'https://ror.org/020dfcj86 Manhattan Theatre Club (United States)'), (66736, 'https://ror.org/020h7tk57', 'en', 1, 'https://ror.org/020h7tk57 Lafourche Parish School District'), (66737, 'https://ror.org/020js1x50', 'no_lang_code', 1, 'https://ror.org/020js1x50 Baxter (India)'), (66738, 'https://ror.org/020jz8z49', 'en', 1, 'https://ror.org/020jz8z49 Thermal Power Research Institute 西安热工研究院'), (66739, 'https://ror.org/020kx6615', 'en', 1, 'https://ror.org/020kx6615 Cultural Enterprise Office'), (66740, 'https://ror.org/020n6f578', 'en', 1, 'https://ror.org/020n6f578 MaRS'), (66741, 'https://ror.org/020ng9892', 'en', 1, 'https://ror.org/020ng9892 Canadian Society of Microbiologists Société Canadienne des Microbiologistes'), (66742, 'https://ror.org/020nwtk72', 'en', 1, 'https://ror.org/020nwtk72 Korean Society for Digital Policy 한국디지털정책학회'), (66743, 'https://ror.org/020p5zy41', 'en', 1, 'https://ror.org/020p5zy41 Xinjiang Uygur Autonomous Region Institute of Metrology and Measurement 新疆维吾尔自治区计量测试研究院'), (66744, 'https://ror.org/020tka774', 'no_lang_code', 1, 'https://ror.org/020tka774 Irish Horseracing Regulatory Board (Ireland)'), (66745, 'https://ror.org/020tqff86', 'no_lang_code', 1, 'https://ror.org/020tqff86 Ebiche (South Korea) 이비채'), (66746, 'https://ror.org/020vamp96', 'en', 1, 'https://ror.org/020vamp96 Family Carers Ireland'), (66747, 'https://ror.org/020whct63', 'no_lang_code', 1, 'https://ror.org/020whct63 Research Institute "Pilot" (Russia)'), (66748, 'https://ror.org/020y5qm10', 'en', 1, 'https://ror.org/020y5qm10 Ministry of Health of the Republic of Lithuania'), (66749, 'https://ror.org/0210g9419', 'no_lang_code', 1, 'https://ror.org/0210g9419 Åre Skidfabrik (Sweden)'), (66750, 'https://ror.org/0211fbv71', 'en', 1, 'https://ror.org/0211fbv71 Academy of Engineering Sciences أكاديمية العلوم الهندسية'), (66751, 'https://ror.org/0212cyj75', 'no_lang_code', 1, 'https://ror.org/0212cyj75 Micro Focus (United Kingdom)'), (66752, 'https://ror.org/02133fc38', 'no_lang_code', 1, 'https://ror.org/02133fc38 Stinger Ghaffarian Technologies (United States)'), (66753, 'https://ror.org/021393933', 'en', 1, 'https://ror.org/021393933 Airmid Healthgroup'), (66754, 'https://ror.org/0214mhn29', 'en', 1, 'https://ror.org/0214mhn29 The Korea institute for Religion and Culture 한국종교문화연구소'), (66755, 'https://ror.org/021923v79', 'en', 1, 'https://ror.org/021923v79 Institute of Marine Geology and Geophysics Институт морской геологии и геофизики'), (66756, 'https://ror.org/0219db520', 'en', 1, 'https://ror.org/0219db520 All-Russian Research Institute "Signal" Всероссийский научно-исследовательский институт «Сигнал»'), (66757, 'https://ror.org/0219e8j10', 'no_lang_code', 1, 'https://ror.org/0219e8j10 Vast Solar (Australia)'), (66758, 'https://ror.org/021a9n650', 'en', 1, 'https://ror.org/021a9n650 Institute of Technology and Development Foundation'), (66759, 'https://ror.org/021c9ha45', 'en', 1, 'https://ror.org/021c9ha45 Vasantdada Patil Ayurvedic Medical College & Institute Of Yoga'), (66760, 'https://ror.org/021dst456', 'en', 1, 'https://ror.org/021dst456 Derby Museums'), (66761, 'https://ror.org/021es5e59', 'en', 1, 'https://ror.org/021es5e59 Moscow Institute of Thermal Technology Корпорация Московский институт теплотехники'), (66762, 'https://ror.org/021h96b10', 'en', 1, 'https://ror.org/021h96b10 Korean Association Of Business Education 한국 경영 교육 학회'), (66763, 'https://ror.org/021m1ad11', 'de', 1, 'https://ror.org/021m1ad11 AWO Bundesverband, Arbeiterwohlfahrt Bundesverband'), (66764, 'https://ror.org/021peq975', 'no_lang_code', 1, 'https://ror.org/021peq975 Bramble Energy (United Kingdom)'), (66765, 'https://ror.org/021pght82', 'en', 1, 'https://ror.org/021pght82 An Roinn Caiteachais Phoiblí agus Athchóirithe Department of Public Expenditure and Reform'), (66766, 'https://ror.org/021scha67', 'en', 1, 'https://ror.org/021scha67 Institute of Biological Problems of the North Институт биологических проблем Севера ДВО'), (66767, 'https://ror.org/021vwsa16', 'no_lang_code', 1, 'https://ror.org/021vwsa16 Wockhardt (Switzerland)'), (66768, 'https://ror.org/021wgs783', 'en', 1, 'https://ror.org/021wgs783 Nutrition Metabolism Aquaculture'), (66769, 'https://ror.org/021yk7r24', 'no_lang_code', 1, 'https://ror.org/021yk7r24 Shanghai Textile Holdings (China) 上海纺织控股集团公司'), (66770, 'https://ror.org/021ywyg68', 'en', 1, 'https://ror.org/021ywyg68 Korea Infrastructure Organization for Nanotechnology 국가나노인프라협의체'), (66771, 'https://ror.org/021z1mz76', 'en', 1, 'https://ror.org/021z1mz76 Institute of Organic Synthesis and Photoreactivity Istituto di Sintesi Organica e Fotoreattività'), (66772, 'https://ror.org/0220p2586', 'en', 1, 'https://ror.org/0220p2586 Guizhou Institute of Biology 贵州省生物研究所'), (66773, 'https://ror.org/0221fhj86', 'en', 1, 'https://ror.org/0221fhj86 Heihe University 黑河学院'), (66774, 'https://ror.org/0221g4j08', 'no_lang_code', 1, 'https://ror.org/0221g4j08 OBERMEYER Planen + Beraten (Germany)'), (66775, 'https://ror.org/0221pe749', 'en', 1, 'https://ror.org/0221pe749 Pakistan Council of Research in Water Resources'), (66776, 'https://ror.org/0222rn292', 'no_lang_code', 1, 'https://ror.org/0222rn292 Hypetex (United Kingdom)'), (66777, 'https://ror.org/0222tsk12', 'en', 1, 'https://ror.org/0222tsk12 Shanghai Electric Tool Research Institute 上海电动工具研究所'), (66778, 'https://ror.org/022352x20', 'no_lang_code', 1, 'https://ror.org/022352x20 Getinge (Sweden)'), (66779, 'https://ror.org/022535b24', 'no_lang_code', 1, 'https://ror.org/022535b24 Korea Sensor Technology (South Korea) 한국 센서 기술'), (66780, 'https://ror.org/0225rdk98', 'en', 1, 'https://ror.org/0225rdk98 Institute of Materials Science of the Khabarovsk Scientific Center Институт материаловедения Дальневосточного отделения Российской академии наук'), (66781, 'https://ror.org/0226gmk97', 'en', 1, 'https://ror.org/0226gmk97 Bristol Museum & Art Gallery'), (66782, 'https://ror.org/02275hy54', 'no_lang_code', 1, 'https://ror.org/02275hy54 Scientific Research Institute of Semiconductor Mechanical Engineering (Russia)'), (66783, 'https://ror.org/022772y06', 'no_lang_code', 1, 'https://ror.org/022772y06 Abnoba (South Korea) 아브노바'), (66784, 'https://ror.org/02278he04', 'no_lang_code', 1, 'https://ror.org/02278he04 JSR Farming (United Kingdom)'), (66785, 'https://ror.org/0228dfp95', 'en', 1, 'https://ror.org/0228dfp95 MAB-Mackay Rehabilitation Centre'), (66786, 'https://ror.org/022em9m61', 'en', 1, 'https://ror.org/022em9m61 Association Canadienne de Médecine Physique et de Réadaptation Canadian Association of Physical Medicine and Rehabilitation'), (66787, 'https://ror.org/022ftcx89', 'no_lang_code', 1, 'https://ror.org/022ftcx89 Zimmer Biomet (India)'), (66788, 'https://ror.org/022g12y09', 'en', 1, 'https://ror.org/022g12y09 Sustainable Energy Development Agency'), (66789, 'https://ror.org/022haww92', 'no_lang_code', 1, 'https://ror.org/022haww92 ICURE Pharm (South Korea) 아이큐어'), (66790, 'https://ror.org/022k2qy30', 'en', 1, 'https://ror.org/022k2qy30 Guilin Tea Research Institute 桂林茶叶研究所'), (66791, 'https://ror.org/022m1me97', 'en', 1, 'https://ror.org/022m1me97 Merchants Quay Ireland'), (66792, 'https://ror.org/022ppya26', 'en', 1, 'https://ror.org/022ppya26 Cork Alliance Centre'), (66793, 'https://ror.org/022prt504', 'en', 1, 'https://ror.org/022prt504 Air Force Academy named after Professor NE Zhukovsky and Yu.A. Gagarin Военно-воздушная академия имени профессора Н. Е. Жуковского и Ю. А. Гагарина'), (66794, 'https://ror.org/022qbnw53', 'en', 1, 'https://ror.org/022qbnw53 Guangdong Province Welding Technology Institute'), (66795, 'https://ror.org/022sn6h14', 'no_lang_code', 1, 'https://ror.org/022sn6h14 Alvant (United Kingdom)'), (66796, 'https://ror.org/022t97w40', 'en', 1, 'https://ror.org/022t97w40 Guomao Engineering Design Institute 国贸工程设计院'), (66797, 'https://ror.org/022tsv947', 'no_lang_code', 1, 'https://ror.org/022tsv947 Fiberight (United Kingdom)'), (66798, 'https://ror.org/022vzex26', 'no_lang_code', 1, 'https://ror.org/022vzex26 Taiyuan Heavy Industry (China) 太原重工股份有限公司'), (66799, 'https://ror.org/022yj5z48', 'en', 1, 'https://ror.org/022yj5z48 Critical Sociological Association of Korea 한국 중요 사회 학회'), (66800, 'https://ror.org/022ypyz07', 'no_lang_code', 1, 'https://ror.org/022ypyz07 (주)중앙산업 Chungang Industry (South Korea)'), (66801, 'https://ror.org/022zaft65', 'ga', 1, 'https://ror.org/022zaft65 Doras Luimní'), (66802, 'https://ror.org/0231kk931', 'en', 1, 'https://ror.org/0231kk931 African Institute for Mathematical Sciences Ghana'), (66803, 'https://ror.org/0232zj786', 'no_lang_code', 1, 'https://ror.org/0232zj786 Focus Innovation (United Kingdom)'), (66804, 'https://ror.org/0233jyt67', 'en', 1, 'https://ror.org/0233jyt67 Fujian Electric Power Survey & Design Institute 福建省电力勘测设计院'), (66805, 'https://ror.org/0233w8s77', 'no_lang_code', 1, 'https://ror.org/0233w8s77 Playnote (China)'), (66806, 'https://ror.org/0236s9n59', 'en', 1, 'https://ror.org/0236s9n59 East Sussex County Council'), (66807, 'https://ror.org/0237g7h29', 'en', 1, 'https://ror.org/0237g7h29 Moulana Hospital മൗലാന ഹോസ്പിറ്റൽ'), (66808, 'https://ror.org/023a7m452', 'en', 1, 'https://ror.org/023a7m452 Jewish Community Centre Association of North America'), (66809, 'https://ror.org/023b14j50', 'en', 1, 'https://ror.org/023b14j50 Shri Sathya Sai Medical College and Research Institute ஸ்ரீ சத்ய சாய் மருத்துவக் கல்லூரி மற்றும் ஆராய்ச்சி நிறுவனம்'), (66810, 'https://ror.org/023b3v773', 'en', 1, 'https://ror.org/023b3v773 Busan Development Institute 부산발전연구원'), (66811, 'https://ror.org/023byrq13', 'en', 1, 'https://ror.org/023byrq13 Guangdong Province Special Equipment Testing and Research Institute Zhuhai Testing Institute 广东省特种设备检测研究院珠海检测院'), (66812, 'https://ror.org/023c92218', 'en', 1, 'https://ror.org/023c92218 Korea Leisure and Recreation Association 한국 레저 레크리에이션 협회'), (66813, 'https://ror.org/023es3c27', 'no_lang_code', 1, 'https://ror.org/023es3c27 Anheuser-Busch InBev (Belgium)'), (66814, 'https://ror.org/023fgyc14', 'no_lang_code', 1, 'https://ror.org/023fgyc14 Halliburton (Qatar)'), (66815, 'https://ror.org/023fyxd70', 'en', 1, 'https://ror.org/023fyxd70 Panzhihua Academy of Agriculture and Forestry Sciences 攀枝花市农林科学研究院是由'), (66816, 'https://ror.org/023gs4b42', 'en', 1, 'https://ror.org/023gs4b42 Korean Association of Sport Pedagogy 한국스포츠교육학회'), (66817, 'https://ror.org/023h03q35', 'en', 1, 'https://ror.org/023h03q35 National Institute for Lifelong Education 국가평생교육진흥원'), (66818, 'https://ror.org/023j0tg36', 'en', 1, 'https://ror.org/023j0tg36 United States Association for Energy Economics'), (66819, 'https://ror.org/023jrwe36', 'no_lang_code', 1, 'https://ror.org/023jrwe36 Sany (China) 三一重工股份有限公司'), (66820, 'https://ror.org/023jx0404', 'no_lang_code', 1, 'https://ror.org/023jx0404 Coal Industry Jinan Design & Research Institute (China) 煤炭工业济南设计研究院有限公司'), (66821, 'https://ror.org/023kz8918', 'en', 1, 'https://ror.org/023kz8918 Ningbo Product Quality Supervision and Inspection Institute 宁波产品质量监督检验研究院'), (66822, 'https://ror.org/023p2b446', 'en', 1, 'https://ror.org/023p2b446 Dutch Art Institute'), (66823, 'https://ror.org/023p4rz42', 'no_lang_code', 1, 'https://ror.org/023p4rz42 AstraZeneca (Singapore)'), (66824, 'https://ror.org/023s0f257', 'no_lang_code', 1, 'https://ror.org/023s0f257 42 Technology (United Kingdom)'), (66825, 'https://ror.org/023t03t27', 'en', 1, 'https://ror.org/023t03t27 Shandong Ocean and Fisheries Department 山东省海洋与渔业厅'), (66826, 'https://ror.org/023w7hq91', 'en', 1, 'https://ror.org/023w7hq91 General Commission for Scientific Agricultural Research الهيئة العامة للبحوث العلمية الزراعية'), (66827, 'https://ror.org/023wbge51', 'en', 1, 'https://ror.org/023wbge51 Korean German Language and Literature Society 한국독어독문학회'), (66828, 'https://ror.org/0240hhb81', 'en', 1, 'https://ror.org/0240hhb81 Konsumentverket Swedish Consumer Agency'), (66829, 'https://ror.org/0242z8y86', 'no_lang_code', 1, 'https://ror.org/0242z8y86 Gridsum (China) 国双科技有限公司'), (66830, 'https://ror.org/0243az357', 'no_lang_code', 1, 'https://ror.org/0243az357 LifeForce Homoeopathy (India)'), (66831, 'https://ror.org/0246b6g90', 'en', 1, 'https://ror.org/0246b6g90 Kansas Coalition Against Sexual and Domestic Violence'), (66832, 'https://ror.org/0246ppj64', 'en', 1, 'https://ror.org/0246ppj64 Korea Music Educators Society 한국음악교육학회'), (66833, 'https://ror.org/0246q4714', 'no_lang_code', 1, 'https://ror.org/0246q4714 Comba (China) 京信通信'), (66834, 'https://ror.org/0246sc786', 'no_lang_code', 1, 'https://ror.org/0246sc786 Kontel Microsystems (China)'), (66835, 'https://ror.org/0247e9n34', 'no_lang_code', 1, 'https://ror.org/0247e9n34 Cellucomp (United Kingdom)'), (66836, 'https://ror.org/024aa1608', 'en', 1, 'https://ror.org/024aa1608 Shanghai Pesticide Research Institute 上海市农药研究所有限公司'), (66837, 'https://ror.org/024an9j41', 'en', 1, 'https://ror.org/024an9j41 Ministry of Immigration, Diversity and Inclusion Ministère de l’Immigration, de la Diversité et de l’Inclusion'), (66838, 'https://ror.org/024ay6y96', 'en', 1, 'https://ror.org/024ay6y96 The Anam Society for the Study Of Education 아남 교육 학회'), (66839, 'https://ror.org/024b0tx86', 'it', 1, 'https://ror.org/024b0tx86 Scuola Nazionale dell''Amministrazione'), (66840, 'https://ror.org/024bc3e07', 'no_lang_code', 1, 'https://ror.org/024bc3e07 Google (United Kingdom)'), (66841, 'https://ror.org/024cyxm63', 'fr', 1, 'https://ror.org/024cyxm63 Bruxelles-Propreté'), (66842, 'https://ror.org/024emcc52', 'en', 1, 'https://ror.org/024emcc52 The Korean Institute of Communications and Information Sciences 한국 통신 정보 학회'), (66843, 'https://ror.org/024h8zy86', 'en', 1, 'https://ror.org/024h8zy86 Schothorst Feed Research'), (66844, 'https://ror.org/024hh3630', 'no_lang_code', 1, 'https://ror.org/024hh3630 Dracaena Life (China) 龙血树生命技术'), (66845, 'https://ror.org/024hrs294', 'no_lang_code', 1, 'https://ror.org/024hrs294 Eutechnyx (United Kingdom)'), (66846, 'https://ror.org/024jtk794', 'en', 1, 'https://ror.org/024jtk794 Munson-Williams-Proctor Arts Institute'), (66847, 'https://ror.org/024kww824', 'no_lang_code', 1, 'https://ror.org/024kww824 AlphaFox Systems (United Kingdom)'), (66848, 'https://ror.org/024nvcs33', 'en', 1, 'https://ror.org/024nvcs33 Military Space Academy named after AF Mozhaisky Военно-космическая академия имени А. Ф. Можайского'), (66849, 'https://ror.org/024qq7b50', 'en', 1, 'https://ror.org/024qq7b50 The Korean Society for Brain and Neural Sciences 한국뇌신경과학회'), (66850, 'https://ror.org/024rmbk85', 'en', 1, 'https://ror.org/024rmbk85 The Yeats Society of Korea 한국예이츠학회'), (66851, 'https://ror.org/024swd842', 'no_lang_code', 1, 'https://ror.org/024swd842 KuboTek (South Korea) 쿠보 텍'), (66852, 'https://ror.org/024t3b967', 'no_lang_code', 1, 'https://ror.org/024t3b967 TQ Pharma (Jordan) شركة التقدم للصناعات الدوائية'), (66853, 'https://ror.org/024tkjg80', 'no_lang_code', 1, 'https://ror.org/024tkjg80 Aeirtec (United Kingdom)'), (66854, 'https://ror.org/024xby240', 'no_lang_code', 1, 'https://ror.org/024xby240 Airport Facilities Management (South Korea) 공항 시설 관리 (주)'), (66855, 'https://ror.org/025162850', 'en', 1, 'https://ror.org/025162850 The Korean Society Of Western Civilization 한국 서양 문명 학회'), (66856, 'https://ror.org/0251z6a72', 'en', 1, 'https://ror.org/0251z6a72 Sri Sathya Sai Institute of Higher Medical Sciences శ్రీ సత్య సాయి ఇన్స్టిట్యూట్ ఆఫ్ హయ్యర్ మెడికల్ సైన్సెస్'), (66857, 'https://ror.org/0252z0n87', 'no_lang_code', 1, 'https://ror.org/0252z0n87 Peer Intelligence Technology (China)'), (66858, 'https://ror.org/0253bfw77', 'en', 1, 'https://ror.org/0253bfw77 The National Institute for Strategic Studies Національний інститут стратегічних досліджень'), (66859, 'https://ror.org/02558jz83', 'en', 1, 'https://ror.org/02558jz83 Shenzhen Terahertz Technology Innovation Research Institute 深圳市太赫兹科技创新研究院'), (66860, 'https://ror.org/0256gay97', 'en', 1, 'https://ror.org/0256gay97 Korean Society for Consumer Studies 한국소비자학회'), (66861, 'https://ror.org/02587ed69', 'no_lang_code', 1, 'https://ror.org/02587ed69 Bucher Industries (Switzerland)'), (66862, 'https://ror.org/0259eer23', 'en', 1, 'https://ror.org/0259eer23 Khabarovsk Scientific Research Institute of Epidemiology and Microbiology Хабаровский научно-исследовательский институт эпидемиологии и микробиологии'), (66863, 'https://ror.org/025bqp693', 'en', 1, 'https://ror.org/025bqp693 Korean Association Of Rusists 한국 루시스트 협회'), (66864, 'https://ror.org/025c3rs34', 'en', 1, 'https://ror.org/025c3rs34 Akademia im. Jakuba z Paradyża w Gorzowie Wielkopolskim The Jacob of Paradies University'), (66865, 'https://ror.org/025c9az97', 'en', 1, 'https://ror.org/025c9az97 Hunan Nonferrous Metal Research Institute 湖南有色金属研究院创建'), (66866, 'https://ror.org/025cyqr27', 'no_lang_code', 1, 'https://ror.org/025cyqr27 Molloy Environmental Systems (Ireland)'), (66867, 'https://ror.org/025dn7p74', 'uk', 1, 'https://ror.org/025dn7p74 Ukrnaftokhimproect'), (66868, 'https://ror.org/025g2vb69', 'en', 1, 'https://ror.org/025g2vb69 All-Russian Research Institute of Irrigation Vegetable and Melon Crops Всероссийский научно-исследовательский институт орошаемого овощеводства и бахчеводства'), (66869, 'https://ror.org/025hrcs91', 'en', 1, 'https://ror.org/025hrcs91 Hefei Urban Planning & Design Institute 合肥市规划设计院'), (66870, 'https://ror.org/025hs2285', 'no_lang_code', 1, 'https://ror.org/025hs2285 Hilong (China) 海隆集团第'), (66871, 'https://ror.org/025j9qd03', 'en', 1, 'https://ror.org/025j9qd03 Lu’ma Native Housing Society'), (66872, 'https://ror.org/025jpkh15', 'fr', 1, 'https://ror.org/025jpkh15 Institut Eco-Conseil'), (66873, 'https://ror.org/025kvpn26', 'en', 1, 'https://ror.org/025kvpn26 International Institute for Humanistic Studies'), (66874, 'https://ror.org/025maj953', 'no_lang_code', 1, 'https://ror.org/025maj953 LyondellBasell (Germany)'), (66875, 'https://ror.org/025mfxt76', 'en', 1, 'https://ror.org/025mfxt76 Human Resources Agency of New Britain'), (66876, 'https://ror.org/025mpfp07', 'en', 1, 'https://ror.org/025mpfp07 Tianjin Special Equipment Supervision and Inspection Technology Research Institute 天津市特种设备监督检查检验技术研究院'), (66877, 'https://ror.org/025n3m882', 'no_lang_code', 1, 'https://ror.org/025n3m882 CCm Technologies (United Kingdom)'), (66878, 'https://ror.org/025ny0a47', 'en', 1, 'https://ror.org/025ny0a47 Global Education and Culture Institute 글로벌교육문화연구원'), (66879, 'https://ror.org/025pqy228', 'en', 1, 'https://ror.org/025pqy228 YIJUN Institute of International Law 이준 국제법 학원'), (66880, 'https://ror.org/025ptz228', 'en', 1, 'https://ror.org/025ptz228 Korean Marketing Association 한국마케팅학회'), (66881, 'https://ror.org/025s0zm80', 'no_lang_code', 1, 'https://ror.org/025s0zm80 MS Clinical Research (India)'), (66882, 'https://ror.org/025sfcn53', 'en', 1, 'https://ror.org/025sfcn53 Pioneer Valley Planning Commission'), (66883, 'https://ror.org/025v5g975', 'en', 1, 'https://ror.org/025v5g975 Korean Music Therapy Association 한국 음악 치료 협회'), (66884, 'https://ror.org/025vxa670', 'es', 1, 'https://ror.org/025vxa670 Instituto Interamericano de Cooperación para la Agricultura'), (66885, 'https://ror.org/025x5jh64', 'en', 1, 'https://ror.org/025x5jh64 Daedong Han Literary Society 대동한문학회'), (66886, 'https://ror.org/025x7xq24', 'no_lang_code', 1, 'https://ror.org/025x7xq24 Cerbios (Switzerland)'), (66887, 'https://ror.org/025yaka09', 'en', 1, 'https://ror.org/025yaka09 Lietuvos Socialinių Tyrimų Centras Lithuanian Social Research Centre'), (66888, 'https://ror.org/025yhyr08', 'en', 1, 'https://ror.org/025yhyr08 Directorate of Fisheries Fiskistofa'), (66889, 'https://ror.org/025ypjv50', 'en', 1, 'https://ror.org/025ypjv50 Community Water and Sanitation Agency'), (66890, 'https://ror.org/025z7st22', 'en', 1, 'https://ror.org/025z7st22 Hong Kong Printed Circuit Association 香港印制电路协会'), (66891, 'https://ror.org/025zvp446', 'no_lang_code', 1, 'https://ror.org/025zvp446 Elektromontaż-Lublin (Poland)'), (66892, 'https://ror.org/0262wvq91', 'no_lang_code', 1, 'https://ror.org/0262wvq91 Celerity (United States)'), (66893, 'https://ror.org/0263vns04', 'no_lang_code', 1, 'https://ror.org/0263vns04 Veeva Systems (United States)'), (66894, 'https://ror.org/0265k7q42', 'no_lang_code', 1, 'https://ror.org/0265k7q42 Triumph Group (United States)'), (66895, 'https://ror.org/02667ne44', 'en', 1, 'https://ror.org/02667ne44 Korea Housing Association'), (66896, 'https://ror.org/0266pt959', 'lt', 1, 'https://ror.org/0266pt959 Klaipėdos Miesto Savivaldybė'), (66897, 'https://ror.org/026737t17', 'en', 1, 'https://ror.org/026737t17 Saratov Research Institute of Rural Hygiene Саратовский научно-исследовательский институт сельской гигиены'), (66898, 'https://ror.org/0267beb34', 'en', 1, 'https://ror.org/0267beb34 BECTU (United Kingdom)'), (66899, 'https://ror.org/0268c6h94', 'en', 1, 'https://ror.org/0268c6h94 Medfit Proactive Healthcare'), (66900, 'https://ror.org/0269t5q92', 'no_lang_code', 1, 'https://ror.org/0269t5q92 Electronic Arts (United States)'), (66901, 'https://ror.org/0269yjk51', 'en', 1, 'https://ror.org/0269yjk51 The Musicological Society of Korea 한국 음악 학회'), (66902, 'https://ror.org/026afmr97', 'en', 1, 'https://ror.org/026afmr97 Korean Comparative Education Society 한국 비교 교육 학회'), (66903, 'https://ror.org/026ajc257', 'no_lang_code', 1, 'https://ror.org/026ajc257 iHorizons (Qatar)'), (66904, 'https://ror.org/026bgaz55', 'en', 1, 'https://ror.org/026bgaz55 Louisiana Organ Procurement Agency'), (66905, 'https://ror.org/026c0g860', 'no_lang_code', 1, 'https://ror.org/026c0g860 Samil Industry (South Korea)'), (66906, 'https://ror.org/026cpqs41', 'en', 1, 'https://ror.org/026cpqs41 Graphic Arts Association of Hong Kong'), (66907, 'https://ror.org/026f8z808', 'en', 1, 'https://ror.org/026f8z808 Shandong Academy of Building Research 山东省建筑科学研究院'), (66908, 'https://ror.org/026fzn952', 'no_lang_code', 1, 'https://ror.org/026fzn952 Guangzhou Automobile Group (China) 广州汽车集团股份有限公司'), (66909, 'https://ror.org/026h0ny75', 'en', 1, 'https://ror.org/026h0ny75 Igazságügyi Minisztérium Ministry of Justice'), (66910, 'https://ror.org/026hfx847', 'no_lang_code', 1, 'https://ror.org/026hfx847 Electrosonic (United Kingdom)'), (66911, 'https://ror.org/026hkgb56', 'de', 1, 'https://ror.org/026hkgb56 HBLFA Raumberg-Gumpenstein, Höhere Bundeslehr- und Forschungsanstalt Raumberg-Gumpenstein'), (66912, 'https://ror.org/026kkn784', 'en', 1, 'https://ror.org/026kkn784 Columbus Consolidated Government'), (66913, 'https://ror.org/026p9k915', 'pl', 1, 'https://ror.org/026p9k915 Agencja Rozwoju Miasta'), (66914, 'https://ror.org/026pdm559', 'no_lang_code', 1, 'https://ror.org/026pdm559 Il-Yang Pharmaceutical (South Korea) 일양약품'), (66915, 'https://ror.org/026ppbb29', 'fr', 1, 'https://ror.org/026ppbb29 Fédération des Comités de Parents du Québec'), (66916, 'https://ror.org/026rmwf78', 'no_lang_code', 1, 'https://ror.org/026rmwf78 Aesi (China) 光一系統(香港)'), (66917, 'https://ror.org/026sr2a55', 'no_lang_code', 1, 'https://ror.org/026sr2a55 Encounters Arts (United Kingdom)'), (66918, 'https://ror.org/026vx6939', 'no_lang_code', 1, 'https://ror.org/026vx6939 Tanvir Hospital తన్వీర్ హాస్పిటల్'), (66919, 'https://ror.org/026w3f849', 'no_lang_code', 1, 'https://ror.org/026w3f849 Jiangsu Yonggang Group (China)'), (66920, 'https://ror.org/026wyr849', 'en', 1, 'https://ror.org/026wyr849 Economic Geographical Society of Korea 한국경제지리학회'), (66921, 'https://ror.org/026xfzp73', 'no_lang_code', 1, 'https://ror.org/026xfzp73 Siemens (Qatar)'), (66922, 'https://ror.org/026xvz038', 'no_lang_code', 1, 'https://ror.org/026xvz038 iQIYI (China) 爱奇艺'), (66923, 'https://ror.org/026z05h78', 'no_lang_code', 1, 'https://ror.org/026z05h78 Shinawil (Ireland)'), (66924, 'https://ror.org/026z6mp76', 'en', 1, 'https://ror.org/026z6mp76 Guizhou Water Conservancy and Hydropower Survey and Design Institute 贵州水利水电勘测设计院'), (66925, 'https://ror.org/0271pep11', 'en', 1, 'https://ror.org/0271pep11 Beck Institute for Cognitive Behavior Therapy'), (66926, 'https://ror.org/02738s524', 'de', 1, 'https://ror.org/02738s524 Bundesverband der Deutschen Ziegelindustrie'), (66927, 'https://ror.org/0274zyn92', 'en', 1, 'https://ror.org/0274zyn92 Binzhou Technician College 滨州市技师学院'), (66928, 'https://ror.org/027714w23', 'no_lang_code', 1, 'https://ror.org/027714w23 Zhejiang Shangfeng Industry (China) 浙江上海工业'), (66929, 'https://ror.org/0279ce674', 'no_lang_code', 1, 'https://ror.org/0279ce674 Econboard (Italy)'), (66930, 'https://ror.org/027adfw95', 'no_lang_code', 1, 'https://ror.org/027adfw95 Chongqing Sinstar Packaging Machinery (China) 重庆新星包装机械'), (66931, 'https://ror.org/027cccy65', 'en', 1, 'https://ror.org/027cccy65 All-Russian Scientific Research Institute of Refrigeration Industry Всероссийский научно-исследовательский Институт Холодильной Промышленности'), (66932, 'https://ror.org/027cwk965', 'no_lang_code', 1, 'https://ror.org/027cwk965 Bühler (Austria)'), (66933, 'https://ror.org/027g02171', 'ru', 1, 'https://ror.org/027g02171 Zarubezhneft, Зарубежнефть'), (66934, 'https://ror.org/027g7ga88', 'en', 1, 'https://ror.org/027g7ga88 All-Russian Research Institute Gradient Всероссийский научно-исследовательский институт «Градиент»'), (66935, 'https://ror.org/027g9mf44', 'en', 1, 'https://ror.org/027g9mf44 Government of the Philippines'), (66936, 'https://ror.org/027gawg81', 'en', 1, 'https://ror.org/027gawg81 Kharkiv State Veterinary Academy Харківська державна зооветеринарна академія'), (66937, 'https://ror.org/027k9ac11', 'en', 1, 'https://ror.org/027k9ac11 Energy Networks Association'), (66938, 'https://ror.org/027m4q536', 'no_lang_code', 1, 'https://ror.org/027m4q536 Bolmet (Poland)'), (66939, 'https://ror.org/027m81w73', 'no_lang_code', 1, 'https://ror.org/027m81w73 Barco (United Kingdom)'), (66940, 'https://ror.org/027mcbx14', 'en', 1, 'https://ror.org/027mcbx14 Parachute'), (66941, 'https://ror.org/027n77q19', 'no', 1, 'https://ror.org/027n77q19 Institutt for Eksperimentell Medisinsk Forskning'), (66942, 'https://ror.org/027qg8776', 'en', 1, 'https://ror.org/027qg8776 Assembly of Manitoba Chiefs'), (66943, 'https://ror.org/027rn2111', 'en', 1, 'https://ror.org/027rn2111 Suzhou Vocational Institute of Industrial Technology 有 苏州工业职业技术学院'), (66944, 'https://ror.org/027s3ss22', 'en', 1, 'https://ror.org/027s3ss22 Korea Industrial Technology Association 한국 산업 기술 진흥 협회'), (66945, 'https://ror.org/027shs254', 'en', 1, 'https://ror.org/027shs254 Development Agency of Thessaloniki Αναπτυξιακή Νομού Θεσσαλονίκης Α.Ε'), (66946, 'https://ror.org/027szw220', 'no_lang_code', 1, 'https://ror.org/027szw220 Inphi (United States)'), (66947, 'https://ror.org/027tx3c52', 'en', 1, 'https://ror.org/027tx3c52 Korea Medical Devices Industrial Cooperative Association 한국 의료 기기 산업 조합'), (66948, 'https://ror.org/027xb9s90', 'no_lang_code', 1, 'https://ror.org/027xb9s90 Alteogen (South Korea) 알테오젠'), (66949, 'https://ror.org/027yjc737', 'en', 1, 'https://ror.org/027yjc737 United States Preventive Services Task Force'), (66950, 'https://ror.org/0280brb18', 'en', 1, 'https://ror.org/0280brb18 Southington Public School'), (66951, 'https://ror.org/02888dy92', 'en', 1, 'https://ror.org/02888dy92 HelpAge International'), (66952, 'https://ror.org/0288css53', 'en', 1, 'https://ror.org/0288css53 Chengdu Documentation and Information Center 成都文献情报中心'), (66953, 'https://ror.org/0289qmg93', 'en', 1, 'https://ror.org/0289qmg93 Ministarstvo Pravosuđa Ministry of Justice'), (66954, 'https://ror.org/028bgy326', 'en', 1, 'https://ror.org/028bgy326 Westminster Graduate School of Theology 웨스트민스터신학대학원대학교'), (66955, 'https://ror.org/028casa56', 'no_lang_code', 1, 'https://ror.org/028casa56 GridDuck (United Kingdom)'), (66956, 'https://ror.org/028dztp68', 'en', 1, 'https://ror.org/028dztp68 The Korean Society of British and American Fiction 한국근대영미소설학회'), (66957, 'https://ror.org/028e4ya74', 'no_lang_code', 1, 'https://ror.org/028e4ya74 Maersk (Qatar)'), (66958, 'https://ror.org/028hjhm59', 'en', 1, 'https://ror.org/028hjhm59 The Korean Society for the Philosophy of Science 한국 철학 학회'), (66959, 'https://ror.org/028jhf333', 'fr', 1, 'https://ror.org/028jhf333 Regroupement Provincial en Santé et Bien-Être des Hommes'), (66960, 'https://ror.org/028kjem67', 'en', 1, 'https://ror.org/028kjem67 Solar Energy Research Institute of Sun Yat-sen University 顺德中山大学太阳能研究院由'), (66961, 'https://ror.org/028ngh465', 'en', 1, 'https://ror.org/028ngh465 Young Entrepreneurs Development Council'), (66962, 'https://ror.org/028v17202', 'no_lang_code', 1, 'https://ror.org/028v17202 Compound Semiconductor Centre (United Kingdom)'), (66963, 'https://ror.org/028v1x030', 'en', 1, 'https://ror.org/028v1x030 Reverse Rett'), (66964, 'https://ror.org/028vnkj24', 'en', 1, 'https://ror.org/028vnkj24 Korea Lift College 한국승강기대학교'), (66965, 'https://ror.org/028xc0m13', 'no_lang_code', 1, 'https://ror.org/028xc0m13 Dhathri Ayurveda (India)'), (66966, 'https://ror.org/028xtjj97', 'no_lang_code', 1, 'https://ror.org/028xtjj97 Chengdu Design & Research Institute of Building Materials Industry (China) 成都建筑材料工业设计研究院有限公'), (66967, 'https://ror.org/028yfvv72', 'no_lang_code', 1, 'https://ror.org/028yfvv72 Equipmake (United Kingdom)'), (66968, 'https://ror.org/028zc6k33', 'en', 1, 'https://ror.org/028zc6k33 Office of the Minister of State for Administrative Reform مكتب وزير الدولة لشؤون التنمية الإدارية'), (66969, 'https://ror.org/02929hv86', 'en', 1, 'https://ror.org/02929hv86 The Korean Society of Design Culture 한국디자인문화학회'), (66970, 'https://ror.org/02929xv98', 'no_lang_code', 1, 'https://ror.org/02929xv98 Ildong (South Korea) 일동제약'), (66971, 'https://ror.org/0292bdr58', 'en', 1, 'https://ror.org/0292bdr58 Research Institute of Disinfectology Rospotrebnadzor Научно-исследовательский институт дезинфектологии Роспотребнадзора'), (66972, 'https://ror.org/02930yz47', 'no_lang_code', 1, 'https://ror.org/02930yz47 Korea Kacoh (South Korea) 코리아카코'), (66973, 'https://ror.org/02936ek65', 'fr', 1, 'https://ror.org/02936ek65 Institut Pierre Vernier'), (66974, 'https://ror.org/0294ypw92', 'en', 1, 'https://ror.org/0294ypw92 Coast to Capital'), (66975, 'https://ror.org/0297e7684', 'no_lang_code', 1, 'https://ror.org/0297e7684 Sanhua Holding Group (China) 三华控股集团'), (66976, 'https://ror.org/029bb7n62', 'no_lang_code', 1, 'https://ror.org/029bb7n62 Industrias Peñoles Peñoles (Mexico)'), (66977, 'https://ror.org/029bt1211', 'en', 1, 'https://ror.org/029bt1211 Sudan Academy for Banking and Financial Sciences أكاديمية السودان للعلوم المصرفية والمالية'), (66978, 'https://ror.org/029crhw36', 'no_lang_code', 1, 'https://ror.org/029crhw36 Siberian Research and Design Institute (Russia) Сибирский научно-исследовательский и проектный институт'), (66979, 'https://ror.org/029db8m77', 'no_lang_code', 1, 'https://ror.org/029db8m77 Dynavolt Tech (China) 广东猛狮新能源科技股份有限公司'), (66980, 'https://ror.org/029dhqq81', 'en', 1, 'https://ror.org/029dhqq81 All-Russian Research Institute of Food Additives Всероссийский НИИ пищевых добавок'), (66981, 'https://ror.org/029dmf820', 'no_lang_code', 1, 'https://ror.org/029dmf820 Shandong Iron and Steel Group (China) 山东钢铁集团'), (66982, 'https://ror.org/029drer02', 'de', 1, 'https://ror.org/029drer02 Institut für Chemo- und Biosensorik'), (66983, 'https://ror.org/029eyr524', 'en', 1, 'https://ror.org/029eyr524 Hong Kong Food Council 香港食品委員會'), (66984, 'https://ror.org/029jy4332', 'en', 1, 'https://ror.org/029jy4332 Military University Военный университет'), (66985, 'https://ror.org/029kkqw66', 'en', 1, 'https://ror.org/029kkqw66 Democratic Commission for Human Development'), (66986, 'https://ror.org/029m34v77', 'en', 1, 'https://ror.org/029m34v77 Irkutsk Regional Clinical Hospital Иркутская областная клиническая больница'), (66987, 'https://ror.org/029ma5383', 'en', 1, 'https://ror.org/029ma5383 Care International'), (66988, 'https://ror.org/029pvsr13', 'en', 1, 'https://ror.org/029pvsr13 Barnsley Metropolitan Borough Council'), (66989, 'https://ror.org/029rkvw49', 'en', 1, 'https://ror.org/029rkvw49 The Korean Society for Sociology of Education 한국 사회 학회'), (66990, 'https://ror.org/029rs5v28', 'en', 1, 'https://ror.org/029rs5v28 Mental Health, Drug & Alcohol Services Board of Logan and Champaign'), (66991, 'https://ror.org/029ssav87', 'en', 1, 'https://ror.org/029ssav87 DSMS Group of Institutions দুর্গাপুর সোসাইটি অফ ম্যানেজমেন্ট সাইন্স'), (66992, 'https://ror.org/029t9vk58', 'no_lang_code', 1, 'https://ror.org/029t9vk58 Yonker Environmental Protection (China) 永清环保股份有限公司'), (66993, 'https://ror.org/029v0q071', 'en', 1, 'https://ror.org/029v0q071 Korean Society for Education through Art 한국국제미술교육학회'), (66994, 'https://ror.org/029v5kx43', 'en', 1, 'https://ror.org/029v5kx43 Bahá''í Agency for Social and Economic Development'), (66995, 'https://ror.org/029wn1m36', 'no_lang_code', 1, 'https://ror.org/029wn1m36 Geotermia Mazowiecka (Poland)'), (66996, 'https://ror.org/029z1nr51', 'fr', 1, 'https://ror.org/029z1nr51 Réseau Français des Instituts d''Études Avancées'), (66997, 'https://ror.org/029z8r738', 'en', 1, 'https://ror.org/029z8r738 Olympic Council of Ireland'), (66998, 'https://ror.org/02a0rnh86', 'en', 1, 'https://ror.org/02a0rnh86 Qingdao Academy of Intelligent Industries 青岛智能产业技术研究院'), (66999, 'https://ror.org/02a3mcc29', 'en', 1, 'https://ror.org/02a3mcc29 Wiltshire and Swindon History Centre'), (67000, 'https://ror.org/02a3p3j66', 'en', 1, 'https://ror.org/02a3p3j66 Institute for Creation Research'), (67001, 'https://ror.org/02a62fq70', 'en', 1, 'https://ror.org/02a62fq70 Susquehanna River Basin Commission'), (67002, 'https://ror.org/02a71hb33', 'en', 1, 'https://ror.org/02a71hb33 Azov Scientific Research Institute of Fisheries Азовский НИИ Рыбного Хозяйства'), (67003, 'https://ror.org/02a7a3437', 'no_lang_code', 1, 'https://ror.org/02a7a3437 DiagCor (China)'), (67004, 'https://ror.org/02a7e9x96', 'en', 1, 'https://ror.org/02a7e9x96 Federation of German Consumer Organisations Verbraucherzentrale Bundesverband'), (67005, 'https://ror.org/02a8tfk85', 'en', 1, 'https://ror.org/02a8tfk85 Centre d’innovation sociale en agriculture Centre of Social Innovation in Agriculture'), (67006, 'https://ror.org/02a98s891', 'en', 1, 'https://ror.org/02a98s891 Helmholtz Institute for RNA-based Infection Research Helmholtz-Institut für RNA-basierte Infektionsforschung'), (67007, 'https://ror.org/02abbq608', 'en', 1, 'https://ror.org/02abbq608 Suzhou Thermal Engineering Research Institute 苏州热工研究院有限公司'), (67008, 'https://ror.org/02adfx268', 'en', 1, 'https://ror.org/02adfx268 Native Youth Sexual Health Network'), (67009, 'https://ror.org/02admgw40', 'no_lang_code', 1, 'https://ror.org/02admgw40 Sulzer (Ireland)'), (67010, 'https://ror.org/02ajr4b89', 'en', 1, 'https://ror.org/02ajr4b89 Korean Society of Comparision Labor Law 한국비교노동법학회'), (67011, 'https://ror.org/02ammvg77', 'en', 1, 'https://ror.org/02ammvg77 Westminster Schools'), (67012, 'https://ror.org/02an5qv02', 'en', 1, 'https://ror.org/02an5qv02 Seoul University of Buddhism 서울불교대학원대학교'), (67013, 'https://ror.org/02an66777', 'en', 1, 'https://ror.org/02an66777 International Network for Korean Language and Culture 국제한국언어문화학회'), (67014, 'https://ror.org/02ap03539', 'no_lang_code', 1, 'https://ror.org/02ap03539 Rosinformagrotekh Российский научно-исследовательский институт информации и технико-экономических обоснований для инженерно-технического обеспечения агропромышленного комплекса'), (67015, 'https://ror.org/02apbtx51', 'en', 1, 'https://ror.org/02apbtx51 Hong Kong Printers Association 香港印刷業商會'), (67016, 'https://ror.org/02apbz725', 'en', 1, 'https://ror.org/02apbz725 Korean Society of Civil Engineers 대한 토목 학회'), (67017, 'https://ror.org/02ard0m30', 'en', 1, 'https://ror.org/02ard0m30 American School of Doha المدرسة الأمريكية بالدوحة'), (67018, 'https://ror.org/02arm0y30', 'en', 1, 'https://ror.org/02arm0y30 VA Center for Clinical Management Research'), (67019, 'https://ror.org/02at8py67', 'en', 1, 'https://ror.org/02at8py67 Sparsh Hospital'), (67020, 'https://ror.org/02atexs87', 'no_lang_code', 1, 'https://ror.org/02atexs87 Kangmei Pharmaceutical (China) 康美药业股份有限公司'), (67021, 'https://ror.org/02atm6p71', 'en', 1, 'https://ror.org/02atm6p71 Marches Energy Agency'), (67022, 'https://ror.org/02axkfm22', 'no_lang_code', 1, 'https://ror.org/02axkfm22 Alarsin (India)'), (67023, 'https://ror.org/02azzxw19', 'en', 1, 'https://ror.org/02azzxw19 Liaoning Water Conservancy Society 辽宁省水利学会'); INSERT INTO `rors` VALUES (67024, 'https://ror.org/02b12qx63', 'en', 1, 'https://ror.org/02b12qx63 SAGA Heavy Ion Medical Accelerator in Tosu 九州国際重粒子線がん治療センタ'), (67025, 'https://ror.org/02b1w8773', 'no_lang_code', 1, 'https://ror.org/02b1w8773 Giproniiaviaprom ГипроНИИавиапром'), (67026, 'https://ror.org/02b3h4622', 'no_lang_code', 1, 'https://ror.org/02b3h4622 Cambridge Nanotherm (United Kingdom)'), (67027, 'https://ror.org/02b3rrn27', 'no_lang_code', 1, 'https://ror.org/02b3rrn27 JSS Medical Research (India) जेएसएस मेडिकल रिसर्च इंडिया प्रा। लिमिटेड ಜೆಎಸ್ಎಸ್ ವೈದ್ಯಕೀಯ ಸಂಶೋಧನಾ ಭಾರತ ಪ್ರೈ. ಲಿಮಿಟೆಡ್'), (67028, 'https://ror.org/02b49vz59', 'en', 1, 'https://ror.org/02b49vz59 Dr. Panjabrao Deshmukh Memorial Medical College'), (67029, 'https://ror.org/02b5y2p11', 'en', 1, 'https://ror.org/02b5y2p11 Department of Fisheries and Marine Research Τμήματος Αλιείας και Θαλασσίων Ερευνών'), (67030, 'https://ror.org/02b9rcr39', 'en', 1, 'https://ror.org/02b9rcr39 Harbin Institute of Petroleum 哈尔滨石油学院'), (67031, 'https://ror.org/02ba86714', 'en', 1, 'https://ror.org/02ba86714 Surrey Board of Trade'), (67032, 'https://ror.org/02bb52086', 'no_lang_code', 1, 'https://ror.org/02bb52086 Mundipharma (South Korea)'), (67033, 'https://ror.org/02bb56y97', 'en', 1, 'https://ror.org/02bb56y97 Daegu Visually Impaired Culture Center 대구시각장애인문화원'), (67034, 'https://ror.org/02bbj5z24', 'en', 1, 'https://ror.org/02bbj5z24 Division of Energy'), (67035, 'https://ror.org/02be8ew78', 'no_lang_code', 1, 'https://ror.org/02be8ew78 SCIVIC Engineering Corporation (China) 机械工业第四设计研究院'), (67036, 'https://ror.org/02benpk44', 'fr', 1, 'https://ror.org/02benpk44 Ministère de la Famille, de l''Intégration et à la Grande Région'), (67037, 'https://ror.org/02bfrg439', 'en', 1, 'https://ror.org/02bfrg439 Heilongjiang Academy of Forestry 黑龙江省林业科学院'), (67038, 'https://ror.org/02bh71182', 'no_lang_code', 1, 'https://ror.org/02bh71182 Chuang''s Consortium International (China) 庄氏国际财团'), (67039, 'https://ror.org/02bn1dj67', 'fr', 1, 'https://ror.org/02bn1dj67 Centre d''Épidémiologie sur les Causes Médicales de Décès'), (67040, 'https://ror.org/02bnzce68', 'en', 1, 'https://ror.org/02bnzce68 Radiation Safety Directorate Дирекција за радијациона сигурност'), (67041, 'https://ror.org/02bv86w93', 'en', 1, 'https://ror.org/02bv86w93 Danish Ministry of Justice Justitsministeriet'), (67042, 'https://ror.org/02bvdyv86', 'no_lang_code', 1, 'https://ror.org/02bvdyv86 Equilume (Ireland)'), (67043, 'https://ror.org/02bw9ra57', 'no_lang_code', 1, 'https://ror.org/02bw9ra57 Corium Solutions (United Kingdom)'), (67044, 'https://ror.org/02bwhra22', 'no_lang_code', 1, 'https://ror.org/02bwhra22 Cloudera (United States)'), (67045, 'https://ror.org/02bwjed35', 'en', 1, 'https://ror.org/02bwjed35 Central Design and Technology Institute of Valve Construction Центральный конструкторско-технологический институт арматуростроения'), (67046, 'https://ror.org/02c2anw65', 'en', 1, 'https://ror.org/02c2anw65 East Belfast Mission'), (67047, 'https://ror.org/02c2tat87', 'no_lang_code', 1, 'https://ror.org/02c2tat87 Intoinworld 인투인월드는'), (67048, 'https://ror.org/02c38ff88', 'en', 1, 'https://ror.org/02c38ff88 Central Research Textile Institute Центральный научно-исследовательский текстильный институт'), (67049, 'https://ror.org/02c3k5572', 'no_lang_code', 1, 'https://ror.org/02c3k5572 AP Photonics (China) 愛佩儀光電技術有限公司'), (67050, 'https://ror.org/02c451b44', 'en', 1, 'https://ror.org/02c451b44 The English Linguistics Society of Korea 한국영어학학회'), (67051, 'https://ror.org/02c5w4v13', 'en', 1, 'https://ror.org/02c5w4v13 Gateshead Council'), (67052, 'https://ror.org/02c5y9t85', 'no_lang_code', 1, 'https://ror.org/02c5y9t85 Positec (China) 宝时得科技'), (67053, 'https://ror.org/02c67p367', 'no_lang_code', 1, 'https://ror.org/02c67p367 Array Information Technology (United States)'), (67054, 'https://ror.org/02c85tn61', 'en', 1, 'https://ror.org/02c85tn61 Goodball Academy 굿볼힐링센터'), (67055, 'https://ror.org/02c97sq75', 'en', 1, 'https://ror.org/02c97sq75 Liaoning Provincial Institute of Agricultural Mechanization 辽宁省农业机械化研究所'), (67056, 'https://ror.org/02cabnz35', 'no_lang_code', 1, 'https://ror.org/02cabnz35 Elytt Energy (Spain)'), (67057, 'https://ror.org/02cb9fc76', 'en', 1, 'https://ror.org/02cb9fc76 Federal Agrarian Scientific Center of the North-East named after NV Rudnitsky Федеральный аграрный научный центр Северо-Востока имени Н.В. Рудницкого'), (67058, 'https://ror.org/02ccc7d21', 'no_lang_code', 1, 'https://ror.org/02ccc7d21 Albatern (United Kingdom)'), (67059, 'https://ror.org/02ce9zg48', 'en', 1, 'https://ror.org/02ce9zg48 The Association of Comparative Study of World Literature 세계문학비교학회'), (67060, 'https://ror.org/02cfws461', 'no_lang_code', 1, 'https://ror.org/02cfws461 Actimass (United Kingdom)'), (67061, 'https://ror.org/02cgrtm37', 'en', 1, 'https://ror.org/02cgrtm37 East-Siberian Institute of Medical and Ecological Research Восточно-Сибирский институт медико-экологических исследований'), (67062, 'https://ror.org/02cme9q04', 'en', 1, 'https://ror.org/02cme9q04 NHS Forth Valley'), (67063, 'https://ror.org/02cmtfp09', 'no_lang_code', 1, 'https://ror.org/02cmtfp09 European Recycling Platform (Ireland)'), (67064, 'https://ror.org/02cnr9p90', 'en', 1, 'https://ror.org/02cnr9p90 Asian Pacific Society of Cardiology'), (67065, 'https://ror.org/02cpxnn28', 'en', 1, 'https://ror.org/02cpxnn28 Wilmington Public Library'), (67066, 'https://ror.org/02cq13n41', 'en', 1, 'https://ror.org/02cq13n41 Kentucky Commission on Human Rights'), (67067, 'https://ror.org/02crg7060', 'en', 1, 'https://ror.org/02crg7060 Guangzhou Urban Planning Survey & Design Institute 广州市城市规划勘测设计研究院'), (67068, 'https://ror.org/02csy5q06', 'no_lang_code', 1, 'https://ror.org/02csy5q06 LIT-PHONON (Russia)'), (67069, 'https://ror.org/02ct9ew61', 'en', 1, 'https://ror.org/02ct9ew61 Korean Urban Management Association 한국도시행정학회'), (67070, 'https://ror.org/02d0ewh10', 'en', 1, 'https://ror.org/02d0ewh10 Florida Department of Economic Opportunity'), (67071, 'https://ror.org/02d0fkx94', 'en', 1, 'https://ror.org/02d0fkx94 Taiyuan Institute of Technology'), (67072, 'https://ror.org/02d4rx016', 'en', 1, 'https://ror.org/02d4rx016 International Ginseng & Herb Research Institute 금산국제인삼약초연구소'), (67073, 'https://ror.org/02d4waw41', 'no_lang_code', 1, 'https://ror.org/02d4waw41 Lirsot (Russia) Лирсот'), (67074, 'https://ror.org/02d4zgx43', 'no_lang_code', 1, 'https://ror.org/02d4zgx43 AP Systems (South Korea) 에이피시스템(주)'), (67075, 'https://ror.org/02d5jky69', 'en', 1, 'https://ror.org/02d5jky69 Ministry of Communication and Information Technology ዓ.ም የመገናኛና ኢንፎርሜሽን ቴክኖሎጂ ሚኒስቴር'), (67076, 'https://ror.org/02d5yh638', 'en', 1, 'https://ror.org/02d5yh638 Korean Association for Public Security Administration 한국 공안 관리 협회'), (67077, 'https://ror.org/02d8efy02', 'en', 1, 'https://ror.org/02d8efy02 Institute of Neurosciences Kolkata ইনস্টিটিউট অফ নিউরোসাইন্সেস'), (67078, 'https://ror.org/02d9xx252', 'en', 1, 'https://ror.org/02d9xx252 Bilquis Postgraduate College For Women خواتین کے لئے بلقیس ایجوکیشن کالج'), (67079, 'https://ror.org/02dcxvm61', 'de', 1, 'https://ror.org/02dcxvm61 Ministerium für Umwelt, Energie, Ernährung und Forsten Rheinland Pfalz'), (67080, 'https://ror.org/02djm4k77', 'no_lang_code', 1, 'https://ror.org/02djm4k77 Wowiwe Instruction (United States)'), (67081, 'https://ror.org/02dmx2h89', 'en', 1, 'https://ror.org/02dmx2h89 Korean Family studies Association 한국가족학회'), (67082, 'https://ror.org/02dnmrq53', 'en', 1, 'https://ror.org/02dnmrq53 Jiangxi Provincial Institute of Water Sciences 江西省水利科学研究院'), (67083, 'https://ror.org/02dnrfk87', 'en', 1, 'https://ror.org/02dnrfk87 Chechen Scientific Research Institute of Agriculture Чеченский научно-исследовательский институт сельского хозяйства'), (67084, 'https://ror.org/02dp0cj52', 'en', 1, 'https://ror.org/02dp0cj52 Dundee Contemporary Arts'), (67085, 'https://ror.org/02dp69877', 'no_lang_code', 1, 'https://ror.org/02dp69877 Corepharmbio (South Korea)'), (67086, 'https://ror.org/02dpm0z59', 'no_lang_code', 1, 'https://ror.org/02dpm0z59 Kyungdong Pharmaceutical (South Korea) 경동제약'), (67087, 'https://ror.org/02dszyb81', 'en', 1, 'https://ror.org/02dszyb81 Scientific Research Institute for Standardization and Unification Научно исследовательский институт стандартизации и унификации'), (67088, 'https://ror.org/02dw6dx51', 'no_lang_code', 1, 'https://ror.org/02dw6dx51 Sinograin (China) 中储粮'), (67089, 'https://ror.org/02dwzga38', 'en', 1, 'https://ror.org/02dwzga38 The Korean Economic Association 한국경제학회'), (67090, 'https://ror.org/02dxc4q15', 'en', 1, 'https://ror.org/02dxc4q15 Korean Japanese Association 한일협회'), (67091, 'https://ror.org/02dzv6j38', 'en', 1, 'https://ror.org/02dzv6j38 Yulchon Foundation 율촌재단'), (67092, 'https://ror.org/02dzzqz47', 'en', 1, 'https://ror.org/02dzzqz47 Mount Fuji Research Institute 富士総合研究所'), (67093, 'https://ror.org/02e1zdz48', 'en', 1, 'https://ror.org/02e1zdz48 Guangxi Special Equipment Inspection Institute 广西壮族自治区特种设备检验研究院'), (67094, 'https://ror.org/02e246391', 'en', 1, 'https://ror.org/02e246391 Korean Mathematical Society 한국 수학회'), (67095, 'https://ror.org/02e2v3t76', 'en', 1, 'https://ror.org/02e2v3t76 Korea Medicine Research Institute 한국 의약 연구원'), (67096, 'https://ror.org/02e58j402', 'no_lang_code', 1, 'https://ror.org/02e58j402 Bioseutica (Netherlands)'), (67097, 'https://ror.org/02e6k9z27', 'en', 1, 'https://ror.org/02e6k9z27 Wellcome Centre for Anti-Infectives Research'), (67098, 'https://ror.org/02e8xmx84', 'en', 1, 'https://ror.org/02e8xmx84 China International Engineering Design & Research Institute 中机国际工程设计研究院'), (67099, 'https://ror.org/02e8y3865', 'en', 1, 'https://ror.org/02e8y3865 Keskkonnaministeerium Ministry of the Environment'), (67100, 'https://ror.org/02ebrh849', 'en', 1, 'https://ror.org/02ebrh849 Gansu Academy of Machinery Science 甘肃省机械科学研究院'), (67101, 'https://ror.org/02ed4cj64', 'no_lang_code', 1, 'https://ror.org/02ed4cj64 Creative Commons'), (67102, 'https://ror.org/02ee49b39', 'no_lang_code', 1, 'https://ror.org/02ee49b39 Sibur (Russia)'), (67103, 'https://ror.org/02eez3a27', 'en', 1, 'https://ror.org/02eez3a27 The Nautical Institute'), (67104, 'https://ror.org/02eh06394', 'no_lang_code', 1, 'https://ror.org/02eh06394 Made in Sense (China)'), (67105, 'https://ror.org/02eh7bh87', 'no_lang_code', 1, 'https://ror.org/02eh7bh87 Tebian Electric Apparatus (China) 特变电工股份有限公司'), (67106, 'https://ror.org/02emh6z37', 'no_lang_code', 1, 'https://ror.org/02emh6z37 Changzhou Institute of Printed Electronics Industry 常州印刷电子产业研究院页'), (67107, 'https://ror.org/02en0fr62', 'en', 1, 'https://ror.org/02en0fr62 Korean Society of Interventional Neuroradiology 대한신경중재치료의학회'), (67108, 'https://ror.org/02en1qh26', 'no_lang_code', 1, 'https://ror.org/02en1qh26 Creative Concern (United Kingdom)'), (67109, 'https://ror.org/02en5gq32', 'fr', 1, 'https://ror.org/02en5gq32 Commission Scolaire des Hautes Rivières'), (67110, 'https://ror.org/02epwnv39', 'no_lang_code', 1, 'https://ror.org/02epwnv39 ILJIN Group (South Korea) 일진 그룹'), (67111, 'https://ror.org/02erc6n26', 'no_lang_code', 1, 'https://ror.org/02erc6n26 Information Technology for Market Leadership (Greece)'), (67112, 'https://ror.org/02ernp878', 'en', 1, 'https://ror.org/02ernp878 Korea Engineering Consultants Corporation 한국종합기술'), (67113, 'https://ror.org/02esmse85', 'en', 1, 'https://ror.org/02esmse85 Nulife Hospital'), (67114, 'https://ror.org/02esr1a07', 'en', 1, 'https://ror.org/02esr1a07 Saint Joseph’s Translational Research Institute'), (67115, 'https://ror.org/02etm4q91', 'pl', 1, 'https://ror.org/02etm4q91 Europejski Instytut Miedzi'), (67116, 'https://ror.org/02ew2ks20', 'no_lang_code', 1, 'https://ror.org/02ew2ks20 SoftBank Group (Japan) ソフトバンクグループ株式会社'), (67117, 'https://ror.org/02ewh7078', 'en', 1, 'https://ror.org/02ewh7078 Clothing Industry Training Authority 制衣业训练局'), (67118, 'https://ror.org/02ey7f844', 'no_lang_code', 1, 'https://ror.org/02ey7f844 Pacific Medical (China)'), (67119, 'https://ror.org/02eyayb49', 'en', 1, 'https://ror.org/02eyayb49 Northern Lighthouse Board'), (67120, 'https://ror.org/02eytr588', 'no_lang_code', 1, 'https://ror.org/02eytr588 Phison (Taiwan)'), (67121, 'https://ror.org/02eyz9636', 'en', 1, 'https://ror.org/02eyz9636 The Korean Society for Practical Theology 한국 실천 신학회'), (67122, 'https://ror.org/02f0tm013', 'id', 1, 'https://ror.org/02f0tm013 Direktorat Jenderal Peternakan dan Kesehatan Hewan'), (67123, 'https://ror.org/02f1ve384', 'no_lang_code', 1, 'https://ror.org/02f1ve384 Helia Photonics (United Kingdom)'), (67124, 'https://ror.org/02f59zk81', 'no_lang_code', 1, 'https://ror.org/02f59zk81 Occidental Petroleum (Qatar)'), (67125, 'https://ror.org/02f66ex89', 'no_lang_code', 1, 'https://ror.org/02f66ex89 Bio bean (United Kingdom)'), (67126, 'https://ror.org/02f713g11', 'en', 1, 'https://ror.org/02f713g11 All-Russian Research and Development Technological Institute for the Repair and Operation of the Machine and Tractor Park Всероссийский научно-исследовательский институт технического ремонта и обслуживания тракторного парка'), (67127, 'https://ror.org/02f83md58', 'en', 1, 'https://ror.org/02f83md58 Zhejiang Library 浙江图书馆'), (67128, 'https://ror.org/02f8fjx04', 'en', 1, 'https://ror.org/02f8fjx04 Ashtabula County Mental Health & Recovery Services Board'), (67129, 'https://ror.org/02f9nks69', 'es', 1, 'https://ror.org/02f9nks69 Instituto Tecnico Agronómico Provincial'), (67130, 'https://ror.org/02f9qkk54', 'no_lang_code', 1, 'https://ror.org/02f9qkk54 Korea Smart Manufacturing Industry Association (South Korea) 한국 스마트 제조업 협회'), (67131, 'https://ror.org/02f9z7g16', 'en', 1, 'https://ror.org/02f9z7g16 The Society Of Modern Grammar 현대 문법 학회'), (67132, 'https://ror.org/02fakmn72', 'en', 1, 'https://ror.org/02fakmn72 Korea Academic Society of Industrial Organization 한국 산업 학회'), (67133, 'https://ror.org/02fjd2454', 'en', 1, 'https://ror.org/02fjd2454 Decom North Sea'), (67134, 'https://ror.org/02fn9fg65', 'en', 1, 'https://ror.org/02fn9fg65 Korean Educational Idea Association 한국교육사상연구회'), (67135, 'https://ror.org/02fnwm920', 'en', 1, 'https://ror.org/02fnwm920 Conference Board'), (67136, 'https://ror.org/02fp12092', 'no_lang_code', 1, 'https://ror.org/02fp12092 CeGaT (Germany)'), (67137, 'https://ror.org/02fpeer60', 'no_lang_code', 1, 'https://ror.org/02fpeer60 2-DTech (United Kingdom)'), (67138, 'https://ror.org/02fq4hx73', 'no_lang_code', 1, 'https://ror.org/02fq4hx73 Syneos Health (South Korea)'), (67139, 'https://ror.org/02fqh4r06', 'en', 1, 'https://ror.org/02fqh4r06 Jiangsu Provincial Marine and Fisheries Bureau 江苏省海洋与渔业局 地址'), (67140, 'https://ror.org/02fqjqj75', 'fr', 1, 'https://ror.org/02fqjqj75 Hôpital Clinique Claude-Bernard'), (67141, 'https://ror.org/02frmqt72', 'no_lang_code', 1, 'https://ror.org/02frmqt72 Korea Information System (South Korea) 한국 정보 시스템'), (67142, 'https://ror.org/02fse8e52', 'en', 1, 'https://ror.org/02fse8e52 Federation of Sri Lankan Local Government Authorities'), (67143, 'https://ror.org/02ftn0461', 'en', 1, 'https://ror.org/02ftn0461 Ryazan Higher Airborne Command School named after. V. F. Margelov Рязанское высшее воздушно-десантное командное училище им. В. Ф. Маргелов'), (67144, 'https://ror.org/02fttt453', 'no_lang_code', 1, 'https://ror.org/02fttt453 VCAST (China)'), (67145, 'https://ror.org/02fx3wf30', 'de', 1, 'https://ror.org/02fx3wf30 Bundesverband IT-Mittelstand'), (67146, 'https://ror.org/02g0sqt82', 'en', 1, 'https://ror.org/02g0sqt82 Social Care Institute for Excellence'), (67147, 'https://ror.org/02g4n2f85', 'en', 1, 'https://ror.org/02g4n2f85 Shanxi Academy of Building Research 山西省建筑科学研究院'), (67148, 'https://ror.org/02g8v2v69', 'en', 1, 'https://ror.org/02g8v2v69 National Cancer Registry'), (67149, 'https://ror.org/02gbmxj61', 'no_lang_code', 1, 'https://ror.org/02gbmxj61 Certizen (China) 翹晉電子商務有限公司'), (67150, 'https://ror.org/02gdmz419', 'en', 1, 'https://ror.org/02gdmz419 Liaoning Provincial Bureau of Quality and Technical Supervision 辽宁省质量技术监督局'), (67151, 'https://ror.org/02gdweq07', 'en', 1, 'https://ror.org/02gdweq07 Suzhou Institute of Trade & Commerce 苏州市商贸学院'), (67152, 'https://ror.org/02gefwx29', 'en', 1, 'https://ror.org/02gefwx29 Department of Metropolitan Development'), (67153, 'https://ror.org/02gegry54', 'en', 1, 'https://ror.org/02gegry54 Asia-Pacific Centre of Education for International Understanding 유네스코의 지원하에 아시아 태평양 국제 이해 교육 센터'), (67154, 'https://ror.org/02gf6fa33', 'en', 1, 'https://ror.org/02gf6fa33 Forschungsinstitut für Musiktheater Research Institute for Music Theater Studies'), (67155, 'https://ror.org/02gg0at36', 'en', 1, 'https://ror.org/02gg0at36 Council of European Aerospace Societies'), (67156, 'https://ror.org/02ghdcm41', 'en', 1, 'https://ror.org/02ghdcm41 Man Up Campaign'), (67157, 'https://ror.org/02ghs8a63', 'en', 1, 'https://ror.org/02ghs8a63 Federation of Busan Science and Technology 부산과학기술협의회'), (67158, 'https://ror.org/02gn6qq35', 'no_lang_code', 1, 'https://ror.org/02gn6qq35 Bladon Jets (United Kingdom)'), (67159, 'https://ror.org/02gp9tw76', 'no_lang_code', 1, 'https://ror.org/02gp9tw76 Delta Motorsport (United Kingdom)'), (67160, 'https://ror.org/02gqm6h10', 'no_lang_code', 1, 'https://ror.org/02gqm6h10 Centerprogramsystems Центрпрограммсистем'), (67161, 'https://ror.org/02gr2xd08', 'en', 1, 'https://ror.org/02gr2xd08 Lietuvos geologijos tarnyba Lithuanian Geological Survey'), (67162, 'https://ror.org/02grzhe48', 'en', 1, 'https://ror.org/02grzhe48 Yangzhou Polytechnic Institute 扬州工业职业技术学院'), (67163, 'https://ror.org/02gs73d02', 'en', 1, 'https://ror.org/02gs73d02 Antich & Sons (United Kingdom)'), (67164, 'https://ror.org/02gsggh97', 'en', 1, 'https://ror.org/02gsggh97 Korea Tourism Organization 한국관광공사'), (67165, 'https://ror.org/02gt4vn57', 'en', 1, 'https://ror.org/02gt4vn57 Kaywon University of Art & Design 케이원 미술 대학'), (67166, 'https://ror.org/02gteh527', 'en', 1, 'https://ror.org/02gteh527 European Mentoring Coaching Council'), (67167, 'https://ror.org/02gtpap31', 'en', 1, 'https://ror.org/02gtpap31 Institute of Industrial Engineers 工业工程师学会'), (67168, 'https://ror.org/02gvdqg22', 'en', 1, 'https://ror.org/02gvdqg22 Changzhou Changchao Electronic Research Institute 常州市常超电子研究所'), (67169, 'https://ror.org/02gww2486', 'bs', 1, 'https://ror.org/02gww2486 Federalni hidrometeorološki zavod'), (67170, 'https://ror.org/02gynz496', 'en', 1, 'https://ror.org/02gynz496 MCC Huatian Engineering and Technology Corporation 中冶华天工程技术公司'), (67171, 'https://ror.org/02gzaeb51', 'no_lang_code', 1, 'https://ror.org/02gzaeb51 Alliance Data (United States)'), (67172, 'https://ror.org/02gze7m48', 'en', 1, 'https://ror.org/02gze7m48 Hong Kong Biotechnology Organization 香港生物科技協會'), (67173, 'https://ror.org/02h07sr78', 'no_lang_code', 1, 'https://ror.org/02h07sr78 Luxshare ICT (China) 立讯精密工业股份有限公司'), (67174, 'https://ror.org/02h0gy831', 'en', 1, 'https://ror.org/02h0gy831 Institute of Transportation Engineers'), (67175, 'https://ror.org/02h0nxr45', 'no_lang_code', 1, 'https://ror.org/02h0nxr45 The Debajehmujig Creation Centre (Canada)'), (67176, 'https://ror.org/02h221462', 'en', 1, 'https://ror.org/02h221462 Korean Association of Public Safety and Criminal Justice 한국공안행정학회'), (67177, 'https://ror.org/02h6hms35', 'no_lang_code', 1, 'https://ror.org/02h6hms35 Anhui Transport Consulting & Design Institute (China) 安徽交通咨询设计院'), (67178, 'https://ror.org/02h812s98', 'en', 1, 'https://ror.org/02h812s98 Korea Social Science Research Council 한국사회과학연구협의회'), (67179, 'https://ror.org/02h91ww72', 'en', 1, 'https://ror.org/02h91ww72 Institute for Research and Innovation in Social Services'), (67180, 'https://ror.org/02habex41', 'en', 1, 'https://ror.org/02habex41 Tianjin Plastics Research Institute 天津市塑料研究所有限公司'), (67181, 'https://ror.org/02hbjae69', 'en', 1, 'https://ror.org/02hbjae69 Gyeonggi Research Institute 경기연구원'), (67182, 'https://ror.org/02hbtf857', 'en', 1, 'https://ror.org/02hbtf857 Hong Kong Design Centre 香港設計中心'), (67183, 'https://ror.org/02hcww794', 'no_lang_code', 1, 'https://ror.org/02hcww794 Suning (China)'), (67184, 'https://ror.org/02hf3eh91', 'no_lang_code', 1, 'https://ror.org/02hf3eh91 Eska (Netherlands)'), (67185, 'https://ror.org/02hgfj293', 'en', 1, 'https://ror.org/02hgfj293 Siberian Research Institute of Agricultural Economics Сибирский научно-исследовательский институт экономики сельского хозяйства СФНЦА РАН'), (67186, 'https://ror.org/02hn5dg93', 'en', 1, 'https://ror.org/02hn5dg93 Vaidyaratnam P.S. Varier Ayurveda College'), (67187, 'https://ror.org/02hnfym30', 'no_lang_code', 1, 'https://ror.org/02hnfym30 Platysens (China)'), (67188, 'https://ror.org/02hp59b61', 'no_lang_code', 1, 'https://ror.org/02hp59b61 Folium Optics (United Kingdom)'), (67189, 'https://ror.org/02hp6vh93', 'en', 1, 'https://ror.org/02hp6vh93 New Jersey Pinelands Commission'), (67190, 'https://ror.org/02hpa6r82', 'no_lang_code', 1, 'https://ror.org/02hpa6r82 Zhejiang Zhe Kuang Heavy Industries (China) 浙矿重工'), (67191, 'https://ror.org/02hqs8f63', 'en', 1, 'https://ror.org/02hqs8f63 Nanjing Institute of Mechatronic Technology 南京机电技术研究所'), (67192, 'https://ror.org/02hw5jq67', 'en', 1, 'https://ror.org/02hw5jq67 Dr. Syamala Reddy Dental College Hospital & Research Center'), (67193, 'https://ror.org/02hw94g08', 'no_lang_code', 1, 'https://ror.org/02hw94g08 Ballyhoura Development (Ireland)'), (67194, 'https://ror.org/02hwfmb37', 'no_lang_code', 1, 'https://ror.org/02hwfmb37 Hundsun (China) 恒生科技'), (67195, 'https://ror.org/02hx87760', 'no_lang_code', 1, 'https://ror.org/02hx87760 Canary Wharf Group (United Kingdom)'), (67196, 'https://ror.org/02hxk7x55', 'no_lang_code', 1, 'https://ror.org/02hxk7x55 Beijing Institute of Power Machinery (China) 北京动力机械研究所'), (67197, 'https://ror.org/02hzqtm46', 'pl', 1, 'https://ror.org/02hzqtm46 Ministerstwo Infrastruktury'), (67198, 'https://ror.org/02j0mrt81', 'no_lang_code', 1, 'https://ror.org/02j0mrt81 Pharmicell (South Korea) 파미셀'), (67199, 'https://ror.org/02j0x3x48', 'en', 1, 'https://ror.org/02j0x3x48 The Shakespeare Association of Korea 한국셰익스피어학회'), (67200, 'https://ror.org/02j29rq40', 'en', 1, 'https://ror.org/02j29rq40 Arab Medical Association Against Cancer الجمعية الطبية العربية لمكافحة السرطان'), (67201, 'https://ror.org/02j488654', 'no_lang_code', 1, 'https://ror.org/02j488654 Abbott (China) 雅培'), (67202, 'https://ror.org/02j64yq05', 'en', 1, 'https://ror.org/02j64yq05 Auckland Castle Trust'), (67203, 'https://ror.org/02j6dqk07', 'no_lang_code', 1, 'https://ror.org/02j6dqk07 Coletex (Russia) Колетекс'), (67204, 'https://ror.org/02j6s3h86', 'no_lang_code', 1, 'https://ror.org/02j6s3h86 Otsuka (South Korea) 한국오츠카제약'), (67205, 'https://ror.org/02j79w189', 'en', 1, 'https://ror.org/02j79w189 Ram Poly Clinic'), (67206, 'https://ror.org/02jfjpx40', 'no_lang_code', 1, 'https://ror.org/02jfjpx40 Kabe (Poland)'), (67207, 'https://ror.org/02jfw5430', 'en', 1, 'https://ror.org/02jfw5430 Powys Dance'), (67208, 'https://ror.org/02jgyee30', 'en', 1, 'https://ror.org/02jgyee30 The Society of Korean Traditional Costume 한복문화학회'), (67209, 'https://ror.org/02jh1bj14', 'no_lang_code', 1, 'https://ror.org/02jh1bj14 Oshkosh (United States)'), (67210, 'https://ror.org/02jmf0570', 'en', 1, 'https://ror.org/02jmf0570 Changsha Mineral Resources Exploration Center 长沙矿产资源勘查中心'), (67211, 'https://ror.org/02jnvb825', 'en', 1, 'https://ror.org/02jnvb825 Department of Cultural Heritage Kultūros paveldo departamentas'), (67212, 'https://ror.org/02jpkw737', 'no_lang_code', 1, 'https://ror.org/02jpkw737 Acidophil (United Kingdom)'), (67213, 'https://ror.org/02jpsw347', 'no_lang_code', 1, 'https://ror.org/02jpsw347 Kelun Group (China) 四川科伦药业股份有限公司'), (67214, 'https://ror.org/02jqc2b23', 'no_lang_code', 1, 'https://ror.org/02jqc2b23 Zhen Ding Technology (Taiwan)'), (67215, 'https://ror.org/02jr9jv46', 'en', 1, 'https://ror.org/02jr9jv46 Hong Kong Federation of Youth Groups 香港青年協會'), (67216, 'https://ror.org/02jv1px47', 'en', 1, 'https://ror.org/02jv1px47 Kyungnam College of Information and Technology 경남정보대학교'), (67217, 'https://ror.org/02jwva135', 'no_lang_code', 1, 'https://ror.org/02jwva135 Piramal (United States)'), (67218, 'https://ror.org/02jwva620', 'no_lang_code', 1, 'https://ror.org/02jwva620 Gelexir Healthcare (United Kingdom)'), (67219, 'https://ror.org/02jx32965', 'en', 1, 'https://ror.org/02jx32965 Department of Science & Technology'), (67220, 'https://ror.org/02jy5y626', 'en', 1, 'https://ror.org/02jy5y626 Voronezh Research Institute Vega Воронежский научно-исследовательский институт'), (67221, 'https://ror.org/02k2g5975', 'no_lang_code', 1, 'https://ror.org/02k2g5975 PowerELab (China)'), (67222, 'https://ror.org/02k550c65', 'en', 1, 'https://ror.org/02k550c65 VNU Central Institute for Natural Resources and Environmental Studies Viện Tài Nguyên và Môi Trường'), (67223, 'https://ror.org/02k6fy602', 'no_lang_code', 1, 'https://ror.org/02k6fy602 Guangdong Hiway Integrated Circuit Technology (China)'), (67224, 'https://ror.org/02k8k3617', 'no_lang_code', 1, 'https://ror.org/02k8k3617 Actelion (South Korea)'), (67225, 'https://ror.org/02k9fzh35', 'no_lang_code', 1, 'https://ror.org/02k9fzh35 Cooper Standard (United States)'), (67226, 'https://ror.org/02k9k1t09', 'pt', 1, 'https://ror.org/02k9k1t09 Administração e Gestão de Sistemas de Salubridade'), (67227, 'https://ror.org/02k9pct19', 'en', 1, 'https://ror.org/02k9pct19 Institute of Physiology, Komi Science Center Институт экологической физиологии Уральского отделения'), (67228, 'https://ror.org/02kd16s45', 'no_lang_code', 1, 'https://ror.org/02kd16s45 OPKO Health (Ireland)'), (67229, 'https://ror.org/02kk3jn69', 'en', 1, 'https://ror.org/02kk3jn69 Institute of Women and Ethnic Studies'), (67230, 'https://ror.org/02kkn9893', 'en', 1, 'https://ror.org/02kkn9893 Advocates for Children of New York'), (67231, 'https://ror.org/02kmbbe05', 'en', 1, 'https://ror.org/02kmbbe05 Hong Kong Surface Finishing Society 香港表面处理学会'), (67232, 'https://ror.org/02kn1p956', 'en', 1, 'https://ror.org/02kn1p956 Korea Institute for Industrial Economics and Trade 산업연구원은 국내외 산업과 무역통상 분야를 서로 연계하여'), (67233, 'https://ror.org/02knxf196', 'no_lang_code', 1, 'https://ror.org/02knxf196 TAKE Solutions (India)'), (67234, 'https://ror.org/02kp07769', 'en', 1, 'https://ror.org/02kp07769 American Conference of Governmental Industrial Hygienists'), (67235, 'https://ror.org/02kqpay82', 'no_lang_code', 1, 'https://ror.org/02kqpay82 Scientific Research Institute of Sanitary Technology (Russia) Научно-исследовательский институт сантехники'), (67236, 'https://ror.org/02kqsaj20', 'en', 1, 'https://ror.org/02kqsaj20 Krishna Maternity and Surgical Nursing Home'), (67237, 'https://ror.org/02kras730', 'no_lang_code', 1, 'https://ror.org/02kras730 Prexton Therapeutics (Netherlands)'), (67238, 'https://ror.org/02ktcfe74', 'en', 1, 'https://ror.org/02ktcfe74 Kimpo University 김포 대학교'), (67239, 'https://ror.org/02ktw5c97', 'no_lang_code', 1, 'https://ror.org/02ktw5c97 Walgreens Boots Alliance (United Kingdom)'), (67240, 'https://ror.org/02kxkje75', 'en', 1, 'https://ror.org/02kxkje75 Association for the Study of Literature & Environment 문학 및 환경 학회'), (67241, 'https://ror.org/02kxkxq59', 'en', 1, 'https://ror.org/02kxkxq59 Working Men’s Institute'), (67242, 'https://ror.org/02ky5cy15', 'no_lang_code', 1, 'https://ror.org/02ky5cy15 Nuritas (Ireland)'), (67243, 'https://ror.org/02kyk8452', 'en', 1, 'https://ror.org/02kyk8452 Shine Center for Autism'), (67244, 'https://ror.org/02m014756', 'en', 1, 'https://ror.org/02m014756 Irish Council for Civil Liberties'), (67245, 'https://ror.org/02m0d9n15', 'de', 1, 'https://ror.org/02m0d9n15 Bundesverband der Deutschen Binnenschiffahrt'), (67246, 'https://ror.org/02m2pq682', 'en', 1, 'https://ror.org/02m2pq682 Open Space Institute'), (67247, 'https://ror.org/02m3rv513', 'en', 1, 'https://ror.org/02m3rv513 Shingu College 신구대학교'), (67248, 'https://ror.org/02m4v1f10', 'no_lang_code', 1, 'https://ror.org/02m4v1f10 Energy Transitions (United Kingdom)'), (67249, 'https://ror.org/02m679f68', 'en', 1, 'https://ror.org/02m679f68 Tula Artillery Engineering Institute Тульский артиллерийский инженерный институт'), (67250, 'https://ror.org/02m7bcm44', 'no_lang_code', 1, 'https://ror.org/02m7bcm44 Medtronic (China) 美敦力'), (67251, 'https://ror.org/02m7v0022', 'no_lang_code', 1, 'https://ror.org/02m7v0022 Fusion Innovations (United Kingdom)'), (67252, 'https://ror.org/02m9wbt95', 'en', 1, 'https://ror.org/02m9wbt95 European Coil Coating Association'), (67253, 'https://ror.org/02m9zj664', 'no_lang_code', 1, 'https://ror.org/02m9zj664 Quest Integrity (New Zealand)'), (67254, 'https://ror.org/02mad9e91', 'en', 1, 'https://ror.org/02mad9e91 Think-tank for Action on Social Change'), (67255, 'https://ror.org/02mag1e82', 'en', 1, 'https://ror.org/02mag1e82 Full Fact'), (67256, 'https://ror.org/02mcdae06', 'en', 1, 'https://ror.org/02mcdae06 Wuhan Ship Development & Design Institute 武汉船舶设计研究院'), (67257, 'https://ror.org/02mfx6g88', 'no_lang_code', 1, 'https://ror.org/02mfx6g88 Cardiocity (United Kingdom)'), (67258, 'https://ror.org/02mgny734', 'en', 1, 'https://ror.org/02mgny734 AIDS Vancouver'), (67259, 'https://ror.org/02mnaa826', 'no_lang_code', 1, 'https://ror.org/02mnaa826 China Design Group (China) 中设设计集团股份'), (67260, 'https://ror.org/02mndw455', 'fr', 1, 'https://ror.org/02mndw455 Société Québécoise de Néphrologie'), (67261, 'https://ror.org/02mq35511', 'en', 1, 'https://ror.org/02mq35511 British Cycling'), (67262, 'https://ror.org/02mt26r85', 'en', 1, 'https://ror.org/02mt26r85 Transportation Research Board'), (67263, 'https://ror.org/02mts0a81', 'en', 1, 'https://ror.org/02mts0a81 Institut de Recherches Sociales Internationales Institute for International Social Research'), (67264, 'https://ror.org/02n2dfg29', 'en', 1, 'https://ror.org/02n2dfg29 Sichuan Fire Research Institute'), (67265, 'https://ror.org/02n5fqy27', 'en', 1, 'https://ror.org/02n5fqy27 Siberian Aeronautical Research Institute Named After S.A. Chaplygin Сибирский научно-исследовательский институт авиации им. С. А. Чаплыгина'), (67266, 'https://ror.org/02n5gsq82', 'no_lang_code', 1, 'https://ror.org/02n5gsq82 Giprokoks (Ukraine) ГИПРОКОКС'), (67267, 'https://ror.org/02n6dhr29', 'en', 1, 'https://ror.org/02n6dhr29 Zhejiang Water Conservancy and Hydropower Survey and Design Institute 浙江省水利水电勘测设计院'), (67268, 'https://ror.org/02n6fv369', 'en', 1, 'https://ror.org/02n6fv369 Jinhua Academy of Agricultural Sciences'), (67269, 'https://ror.org/02n76vp69', 'en', 1, 'https://ror.org/02n76vp69 Changzhou Zhiye Medical Devices Institute 常州市智业医疗仪器研究所有'), (67270, 'https://ror.org/02na80n77', 'en', 1, 'https://ror.org/02na80n77 Zhangjiagang Smartgrid Fanghua Electrical Energy Storage Research Institute 张家港智能电网方华电能储能研究所'), (67271, 'https://ror.org/02nbbm116', 'no_lang_code', 1, 'https://ror.org/02nbbm116 Changchun Municipal Engineering Design and Research Institute (China) 长春市市政工程设计研究院 联系电话'), (67272, 'https://ror.org/02nbv7m70', 'no_lang_code', 1, 'https://ror.org/02nbv7m70 Biogen (India)'), (67273, 'https://ror.org/02ndpzr30', 'en', 1, 'https://ror.org/02ndpzr30 The Korean Physical Society 한국물리학회'), (67274, 'https://ror.org/02ne61390', 'es', 1, 'https://ror.org/02ne61390 Universidad Politécnica Metropolitana de Hidalgo'), (67275, 'https://ror.org/02nee2y72', 'en', 1, 'https://ror.org/02nee2y72 Buein Zahra Technical University'), (67276, 'https://ror.org/02nfvkt86', 'no_lang_code', 1, 'https://ror.org/02nfvkt86 Digitalia (Poland)'), (67277, 'https://ror.org/02ng64w29', 'en', 1, 'https://ror.org/02ng64w29 Dobrich Local Agency for Energy Management Добрич Агенция за управление на енергията'), (67278, 'https://ror.org/02ngyjm59', 'en', 1, 'https://ror.org/02ngyjm59 Marine Renewables Industry Association'), (67279, 'https://ror.org/02nh1m314', 'no_lang_code', 1, 'https://ror.org/02nh1m314 Ravenbhel Healthcare (India)'), (67280, 'https://ror.org/02nhpf205', 'fr', 1, 'https://ror.org/02nhpf205 Cancéropôle Lyon Auvergne-Rhône-Alpes'), (67281, 'https://ror.org/02nj97t48', 'en', 1, 'https://ror.org/02nj97t48 Adesh University'), (67282, 'https://ror.org/02nkezr98', 'no_lang_code', 1, 'https://ror.org/02nkezr98 (주)신화의료기 Shinhwa Medical (South Korea)'), (67283, 'https://ror.org/02nkkj123', 'en', 1, 'https://ror.org/02nkkj123 Danish Ministry of Taxation Skatteministeriet'), (67284, 'https://ror.org/02nn1vm89', 'no_lang_code', 1, 'https://ror.org/02nn1vm89 Workday (United States)'), (67285, 'https://ror.org/02nncgd63', 'no_lang_code', 1, 'https://ror.org/02nncgd63 BNP Paribas (United Kingdom)'), (67286, 'https://ror.org/02npqkq54', 'en', 1, 'https://ror.org/02npqkq54 Human Factors and Ergonomics Society'), (67287, 'https://ror.org/02ns8zp42', 'no_lang_code', 1, 'https://ror.org/02ns8zp42 Numerical Method (China)'), (67288, 'https://ror.org/02nsc9n54', 'en', 1, 'https://ror.org/02nsc9n54 Local Enterprise Office Cork North & West'), (67289, 'https://ror.org/02nv0e913', 'en', 1, 'https://ror.org/02nv0e913 Bristol Health Partners'), (67290, 'https://ror.org/02nyad521', 'no_lang_code', 1, 'https://ror.org/02nyad521 CHTC Fong’s Industries (China)'), (67291, 'https://ror.org/02p1cew82', 'en', 1, 'https://ror.org/02p1cew82 Korean Society for Engineering Education 한국공학교육학회'), (67292, 'https://ror.org/02p3n3q94', 'no_lang_code', 1, 'https://ror.org/02p3n3q94 Fiberpro (South Korea) 파이버프로'), (67293, 'https://ror.org/02p3w0b60', 'en', 1, 'https://ror.org/02p3w0b60 Koguryeo College 고구려 대학'), (67294, 'https://ror.org/02p50nh51', 'en', 1, 'https://ror.org/02p50nh51 Korea-China Humanities Society 한중인문학회'), (67295, 'https://ror.org/02p5pfd82', 'pt', 1, 'https://ror.org/02p5pfd82 Instituto de Gestão Financeira e Equipamentos da Justiça'), (67296, 'https://ror.org/02pcqkp81', 'no_lang_code', 1, 'https://ror.org/02pcqkp81 Artstor'), (67297, 'https://ror.org/02pgg0p54', 'en', 1, 'https://ror.org/02pgg0p54 Russian Union of Refrigeration Enterprises Российский союз предприятий холодильной промышленности'), (67298, 'https://ror.org/02phqhd85', 'en', 1, 'https://ror.org/02phqhd85 Research Institute of Hermes НИИ "ГЕРМЕС"'), (67299, 'https://ror.org/02phz7j25', 'no_lang_code', 1, 'https://ror.org/02phz7j25 3Brain (Switzerland)'), (67300, 'https://ror.org/02pjk8429', 'en', 1, 'https://ror.org/02pjk8429 The Sisters of Charity of Ottawa les Soeurs de la Charité d’Ottawa'), (67301, 'https://ror.org/02pjxh370', 'en', 1, 'https://ror.org/02pjxh370 Medieval and Early Modern English Studies Association of Korea 한국중세르네상스영문학회'), (67302, 'https://ror.org/02pk6rm23', 'en', 1, 'https://ror.org/02pk6rm23 Chengdu Surveying Geotechnical Research Institute 中冶成都勘察研究总院有限公司'), (67303, 'https://ror.org/02pn2hw69', 'no_lang_code', 1, 'https://ror.org/02pn2hw69 Neuromod (Ireland)'), (67304, 'https://ror.org/02pn32n10', 'en', 1, 'https://ror.org/02pn32n10 British High Commission Singapore'), (67305, 'https://ror.org/02pn5rj08', 'en', 1, 'https://ror.org/02pn5rj08 State Key Laboratory of Cryptology 密码科学技术国家重点实验室由国家密码管理局主管'), (67306, 'https://ror.org/02pnqx643', 'en', 1, 'https://ror.org/02pnqx643 Shanxi Electromechanical Design and Research Institute 山西机械设计研究院'), (67307, 'https://ror.org/02pps8d22', 'en', 1, 'https://ror.org/02pps8d22 Anhui 3D Printing Intelligent Equipment Industry Technology Research Institute 安徽省春谷3D打印智能装备产业技术研究院有限公司'), (67308, 'https://ror.org/02pqag031', 'en', 1, 'https://ror.org/02pqag031 Partnership for Dengue Control'), (67309, 'https://ror.org/02pqvpt18', 'no_lang_code', 1, 'https://ror.org/02pqvpt18 Cambridge Intellectual Property (United Kingdom)'), (67310, 'https://ror.org/02pr5zn71', 'no_lang_code', 1, 'https://ror.org/02pr5zn71 Wisers (China)'), (67311, 'https://ror.org/02prs4262', 'no_lang_code', 1, 'https://ror.org/02prs4262 Dr.Chung’s Food (South Korea)'), (67312, 'https://ror.org/02ps68973', 'no_lang_code', 1, 'https://ror.org/02ps68973 Vodafone (Qatar)'), (67313, 'https://ror.org/02ptkm873', 'no_lang_code', 1, 'https://ror.org/02ptkm873 Jiangyin Traffic Planning Survey & Design Institute (China) 江阴市交通规划勘察设计院有限公司前'), (67314, 'https://ror.org/02ptmys64', 'en', 1, 'https://ror.org/02ptmys64 Korean Nuclear Society 한국원자력학회'), (67315, 'https://ror.org/02pvd9627', 'no_lang_code', 1, 'https://ror.org/02pvd9627 Barratt Developments (United Kingdom)'), (67316, 'https://ror.org/02pvf2m42', 'no_lang_code', 1, 'https://ror.org/02pvf2m42 Progressive Technology (China)'), (67317, 'https://ror.org/02pwhra18', 'no_lang_code', 1, 'https://ror.org/02pwhra18 LakePharma (United States)'), (67318, 'https://ror.org/02px07p57', 'no_lang_code', 1, 'https://ror.org/02px07p57 Siniat (United Kingdom)'), (67319, 'https://ror.org/02pxqb184', 'no_lang_code', 1, 'https://ror.org/02pxqb184 Dalian Synthetic Fiber Research and Design Institute (China) 大连合成纤维研究设计院股份有限公司'), (67320, 'https://ror.org/02pxwy266', 'no_lang_code', 1, 'https://ror.org/02pxwy266 (주)캐리마 Carima (South Korea)'), (67321, 'https://ror.org/02pyy0k06', 'en', 1, 'https://ror.org/02pyy0k06 Interactive Systems & Technologies'), (67322, 'https://ror.org/02pzg9066', 'no_lang_code', 1, 'https://ror.org/02pzg9066 China Railway Major Bridge Reconnaissance & Design Institute (China) 中国铁路大桥勘察设计院'), (67323, 'https://ror.org/02q3pze66', 'en', 1, 'https://ror.org/02q3pze66 Age Action Alliance'), (67324, 'https://ror.org/02q5b4225', 'en', 1, 'https://ror.org/02q5b4225 Hong Kong Association For Integration Of Chinese-Western Medicine'), (67325, 'https://ror.org/02q5y6156', 'en', 1, 'https://ror.org/02q5y6156 Nanchang Institute of Science & Technology'), (67326, 'https://ror.org/02q7gp705', 'en', 1, 'https://ror.org/02q7gp705 Ministry of Science and Technology ሳይንስ እና ቴክኖሎጂ ሚኒስቴር'), (67327, 'https://ror.org/02q9rf286', 'en', 1, 'https://ror.org/02q9rf286 Sustainable Development Institute'), (67328, 'https://ror.org/02qby5382', 'en', 1, 'https://ror.org/02qby5382 Anhui Institute of Architectural Research and Design'), (67329, 'https://ror.org/02qcmfw42', 'fr', 1, 'https://ror.org/02qcmfw42 Relais Femmes'), (67330, 'https://ror.org/02qcpmn35', 'en', 1, 'https://ror.org/02qcpmn35 Northwest Institute of Mining and Metallurgy 西北矿冶研究院'), (67331, 'https://ror.org/02qd73916', 'no_lang_code', 1, 'https://ror.org/02qd73916 Brigit''s Garden'), (67332, 'https://ror.org/02qd8zg55', 'no_lang_code', 1, 'https://ror.org/02qd8zg55 McCormick Advanced Marcomm Services (Ireland)'), (67333, 'https://ror.org/02qe51g80', 'en', 1, 'https://ror.org/02qe51g80 The Eden Rivers Trust'), (67334, 'https://ror.org/02qgeqz65', 'no_lang_code', 1, 'https://ror.org/02qgeqz65 Alcove (United Kingdom)'), (67335, 'https://ror.org/02qgskp52', 'en', 1, 'https://ror.org/02qgskp52 Institute of Medical Cell Technologies Институт медицинских клеточных технологий'), (67336, 'https://ror.org/02qh6my57', 'en', 1, 'https://ror.org/02qh6my57 Skogsstyrelsen Swedish Forest Agency'), (67337, 'https://ror.org/02qhbts44', 'en', 1, 'https://ror.org/02qhbts44 Vernadsky State Geological Museum Государственный Геологический Музей им. В.И. Вернадского РАН'), (67338, 'https://ror.org/02qjrh386', 'en', 1, 'https://ror.org/02qjrh386 Korea Association of japanology 한국일본학회'), (67339, 'https://ror.org/02qk9nj07', 'en', 1, 'https://ror.org/02qk9nj07 Ministero delle Infrastrutture e dei Trasporti Ministry of Infrastructures and Transport'), (67340, 'https://ror.org/02qmdtn88', 'no_lang_code', 1, 'https://ror.org/02qmdtn88 Scientific Research Institute of Polymer Material (Russia) Научно-исследовательский институт полимерных материалов'), (67341, 'https://ror.org/02qms3512', 'no_lang_code', 1, 'https://ror.org/02qms3512 Assist Mi (United Kingdom)'), (67342, 'https://ror.org/02qp22n14', 'en', 1, 'https://ror.org/02qp22n14 Association for Supply Chain Management, Procurement and Logistics Bundesverband Materialwirtschaft, Einkauf und Logistik'), (67343, 'https://ror.org/02qqdvw36', 'en', 1, 'https://ror.org/02qqdvw36 Korea Communication Association 한국 통신 협회'), (67344, 'https://ror.org/02qrd8y65', 'en', 1, 'https://ror.org/02qrd8y65 Euro-Centrum'), (67345, 'https://ror.org/02qtf7714', 'no_lang_code', 1, 'https://ror.org/02qtf7714 KoreaBio 코리아 바이오'), (67346, 'https://ror.org/02qv38g46', 'no_lang_code', 1, 'https://ror.org/02qv38g46 RBio (South Korea)'), (67347, 'https://ror.org/02qv8f649', 'en', 1, 'https://ror.org/02qv8f649 Research Institute of Mining Geomechanics and Mine Surveying Научно-исследовательский институт горно'), (67348, 'https://ror.org/02qv9b386', 'en', 1, 'https://ror.org/02qv9b386 Korean Housing Association 대한 주택 조합'), (67349, 'https://ror.org/02qwdgg40', 'no_lang_code', 1, 'https://ror.org/02qwdgg40 VDE Prüf- und Zertifizierungsinstitut (Germany)'), (67350, 'https://ror.org/02qwr8r69', 'en', 1, 'https://ror.org/02qwr8r69 S Nijalingappa Medical College and HSK Hospital & Research Centre'), (67351, 'https://ror.org/02qwswa66', 'no_lang_code', 1, 'https://ror.org/02qwswa66 Genoss (South Korea)'), (67352, 'https://ror.org/02qx4d724', 'en', 1, 'https://ror.org/02qx4d724 Bangalore Medical Center'), (67353, 'https://ror.org/02qy75381', 'no_lang_code', 1, 'https://ror.org/02qy75381 Cisco Systems (China)'), (67354, 'https://ror.org/02qyqxk84', 'no_lang_code', 1, 'https://ror.org/02qyqxk84 Qiagen (Netherlands)'), (67355, 'https://ror.org/02qze4h25', 'no_lang_code', 1, 'https://ror.org/02qze4h25 Caching Technology (China)'), (67356, 'https://ror.org/02r21h126', 'en', 1, 'https://ror.org/02r21h126 The Society for Chinese Cultural Studies 중국문화연구학회'), (67357, 'https://ror.org/02r4hr462', 'en', 1, 'https://ror.org/02r4hr462 Istituto Virtuale dei Nano Film Virtual Institute of Nano Films'), (67358, 'https://ror.org/02r4j2j30', 'en', 1, 'https://ror.org/02r4j2j30 Korean Society for Child Education 한국아동교육학회'), (67359, 'https://ror.org/02r57zt28', 'en', 1, 'https://ror.org/02r57zt28 Qingdao Academy of Agricultural Sciences'), (67360, 'https://ror.org/02r7hdt50', 'en', 1, 'https://ror.org/02r7hdt50 Gwangmyeong Mental Health Welfare Center 광명시정신건강복지센터'), (67361, 'https://ror.org/02r82ad48', 'en', 1, 'https://ror.org/02r82ad48 Hong Kong Retail Management Association 香港零售管理协会'), (67362, 'https://ror.org/02ra22j36', 'en', 1, 'https://ror.org/02ra22j36 Nano Technology Research Association 나노융합산업연구조합'), (67363, 'https://ror.org/02ra28290', 'en', 1, 'https://ror.org/02ra28290 Irkutsk Research Institute of the Forestry Industry Иркутский научно-исследовательский институт лесной промышленности'), (67364, 'https://ror.org/02rake840', 'no_lang_code', 1, 'https://ror.org/02rake840 Esquel Group (China)'), (67365, 'https://ror.org/02rb7k030', 'no_lang_code', 1, 'https://ror.org/02rb7k030 AI Factory (United Kingdom)'), (67366, 'https://ror.org/02rcz2a29', 'no_lang_code', 1, 'https://ror.org/02rcz2a29 Bio Pharm Dongsung (South Korea) 동성제약주식회사'), (67367, 'https://ror.org/02ree3t31', 'no_lang_code', 1, 'https://ror.org/02ree3t31 Zigong Light Industry Design Institute (China) 自贡市轻工业设计研究院'), (67368, 'https://ror.org/02rehe313', 'en', 1, 'https://ror.org/02rehe313 China Communications Tianjin Port Exploration & Design Institute 中交天和机械设备制造'), (67369, 'https://ror.org/02rf2nk31', 'no_lang_code', 1, 'https://ror.org/02rf2nk31 ADTRAN (United States)'), (67370, 'https://ror.org/02rh42t66', 'no_lang_code', 1, 'https://ror.org/02rh42t66 JK (Poland)'), (67371, 'https://ror.org/02rkpd451', 'en', 1, 'https://ror.org/02rkpd451 Saoirse Foundation'), (67372, 'https://ror.org/02rpbcj12', 'en', 1, 'https://ror.org/02rpbcj12 Scientific Research Institute of Technology named after AP Aleksandrov Научно-исследовательский технологический институт А. П. Александров'), (67373, 'https://ror.org/02rqvg733', 'en', 1, 'https://ror.org/02rqvg733 Hong Kong Organic Waste Recycling Centre 香港有機資源再生中'), (67374, 'https://ror.org/02rr12038', 'de', 1, 'https://ror.org/02rr12038 LVR-Institut für Landeskunde und Regionalgeschichte'), (67375, 'https://ror.org/02rzqa255', 'no_lang_code', 1, 'https://ror.org/02rzqa255 KT&G (South Korea) 주식회사 케이티앤지'), (67376, 'https://ror.org/02s0pv682', 'en', 1, 'https://ror.org/02s0pv682 Hong Kong Exporters’ Association 香港出口商协会'), (67377, 'https://ror.org/02s2m5c86', 'de', 1, 'https://ror.org/02s2m5c86 Bundesverband Reifenhandel und Vulkaniseur-Handwerk'), (67378, 'https://ror.org/02s322r10', 'en', 1, 'https://ror.org/02s322r10 Narodowy Instytut Audiowizualny National Audiovisual Institute'), (67379, 'https://ror.org/02s3fnw45', 'no_lang_code', 1, 'https://ror.org/02s3fnw45 Advanced Technology & Materials (China)'), (67380, 'https://ror.org/02s48dm85', 'en', 1, 'https://ror.org/02s48dm85 Centre de Recherche en Numérique de Sfax Digital Research Centre of Sfax'), (67381, 'https://ror.org/02s5nq722', 'en', 1, 'https://ror.org/02s5nq722 All-Russian Research Institute of Relay Engineering Всероссийский научно-исследовательский институт релейной инженерии'), (67382, 'https://ror.org/02s6y7k21', 'en', 1, 'https://ror.org/02s6y7k21 Central Research Institute of Materials Центральный научно-исследовательский институт материалов'), (67383, 'https://ror.org/02s7bv320', 'es', 1, 'https://ror.org/02s7bv320 Instituto Navarro de Tecnología e Infraestructuras Agroalimentarias'), (67384, 'https://ror.org/02s8kjs61', 'no_lang_code', 1, 'https://ror.org/02s8kjs61 Ensemble Studio Theatre (United States)'), (67385, 'https://ror.org/02s97qm42', 'en', 1, 'https://ror.org/02s97qm42 European Consortium for Ocean Research Drilling'), (67386, 'https://ror.org/02sb0kr07', 'no_lang_code', 1, 'https://ror.org/02sb0kr07 Ayush Arihant (India) आयुष अरिहंत इंडस्ट्रीज'), (67387, 'https://ror.org/02scqqt19', 'en', 1, 'https://ror.org/02scqqt19 Institutul National de Cercetare – Dezvoltare pentru Ecologie Industriala National Institute for Research and Development for Industrial Ecology'), (67388, 'https://ror.org/02se2k984', 'en', 1, 'https://ror.org/02se2k984 All-Russian Scientific Research Institute of Technical Physics Всероссийский научно-исследовательский институт технической физики'), (67389, 'https://ror.org/02sfdh709', 'no_lang_code', 1, 'https://ror.org/02sfdh709 Sohu (China) 搜狐'), (67390, 'https://ror.org/02sfk5x26', 'no_lang_code', 1, 'https://ror.org/02sfk5x26 Byotrol (United Kingdom)'), (67391, 'https://ror.org/02shrfh49', 'no_lang_code', 1, 'https://ror.org/02shrfh49 Yutong (China)'), (67392, 'https://ror.org/02smtnw54', 'no_lang_code', 1, 'https://ror.org/02smtnw54 Tatneft (Russia) Татнефть'), (67393, 'https://ror.org/02srhtt90', 'en', 1, 'https://ror.org/02srhtt90 Ukrainian Institute for Public Policy'), (67394, 'https://ror.org/02ssta106', 'en', 1, 'https://ror.org/02ssta106 Cục Thú y Việt Nam Department of Animal Health'); INSERT INTO `rors` VALUES (67395, 'https://ror.org/02svsbh35', 'no_lang_code', 1, 'https://ror.org/02svsbh35 Wix.com (Israel)'), (67396, 'https://ror.org/02swpkm89', 'en', 1, 'https://ror.org/02swpkm89 HIV Community Link'), (67397, 'https://ror.org/02swqvf47', 'en', 1, 'https://ror.org/02swqvf47 PTEN Hamartoma Tumor Syndrome Foundation'), (67398, 'https://ror.org/02szepc22', 'en', 1, 'https://ror.org/02szepc22 Suzhou Institute of Systems Medicine 苏州市系统医学研究所'), (67399, 'https://ror.org/02t09mq75', 'no_lang_code', 1, 'https://ror.org/02t09mq75 SEI (United States)'), (67400, 'https://ror.org/02t0g3v76', 'en', 1, 'https://ror.org/02t0g3v76 The Korean Association of Language Studies 한국언어연구학회'), (67401, 'https://ror.org/02t3k2v42', 'no_lang_code', 1, 'https://ror.org/02t3k2v42 Suga International Holdings (China)'), (67402, 'https://ror.org/02t3qgb38', 'no_lang_code', 1, 'https://ror.org/02t3qgb38 China GreatWall Technology Group (China) 中国长城科技集团股份有限公司'), (67403, 'https://ror.org/02t40d841', 'no_lang_code', 1, 'https://ror.org/02t40d841 Serdia Pharmaceuticals (India)'), (67404, 'https://ror.org/02t41e292', 'en', 1, 'https://ror.org/02t41e292 Russian Space Systems Российские космические системы'), (67405, 'https://ror.org/02t4g5c48', 'en', 1, 'https://ror.org/02t4g5c48 Arab Civil Aviation Commission الهيئة العربية للطيران المدني'), (67406, 'https://ror.org/02t6vd455', 'en', 1, 'https://ror.org/02t6vd455 Hội đồng Chính sách KH&CN quốc gia National Council for Science and Technology Policy'), (67407, 'https://ror.org/02t835g30', 'en', 1, 'https://ror.org/02t835g30 Shanghai Architectural Design & Research Institute 上海建筑设计研究院有限公司'), (67408, 'https://ror.org/02t8wny28', 'no_lang_code', 1, 'https://ror.org/02t8wny28 Tianjin Ganghang Installation Engineering (China) 天津港航安装工程有限责任公司'), (67409, 'https://ror.org/02t9r5804', 'en', 1, 'https://ror.org/02t9r5804 Korea Institute of Theological Information 한국신학정보연구원'), (67410, 'https://ror.org/02tawe219', 'en', 1, 'https://ror.org/02tawe219 Ministry of Environment and Water Министерство на околната среда и водите'), (67411, 'https://ror.org/02tdp6375', 'en', 1, 'https://ror.org/02tdp6375 Korean Association Of Social Welfare Policy 한국 사회 복지 정책 학회'), (67412, 'https://ror.org/02tdv0r69', 'no_lang_code', 1, 'https://ror.org/02tdv0r69 "Зенит Трейдинг" Zenit Trading (Russia)'), (67413, 'https://ror.org/02tf3z094', 'en', 1, 'https://ror.org/02tf3z094 British Board of Film Classification'), (67414, 'https://ror.org/02tfjqk24', 'no_lang_code', 1, 'https://ror.org/02tfjqk24 Stalproekt (Russia) Стальпроект'), (67415, 'https://ror.org/02thf7b44', 'no_lang_code', 1, 'https://ror.org/02thf7b44 SillyCube Technology (China)'), (67416, 'https://ror.org/02thsp703', 'no_lang_code', 1, 'https://ror.org/02thsp703 ASV (United Kingdom)'), (67417, 'https://ror.org/02tn9qe75', 'en', 1, 'https://ror.org/02tn9qe75 Accreditation and Quality Assurance Commission لجنة الاعتماد وضمان الجودة'), (67418, 'https://ror.org/02trvhh22', 'no_lang_code', 1, 'https://ror.org/02trvhh22 Korea Accounting Standards Board 한국 회계 기준 원'), (67419, 'https://ror.org/02tszw848', 'en', 1, 'https://ror.org/02tszw848 European Energy Research Alliance Europese Alliantie voor Energieonderzoek'), (67420, 'https://ror.org/02tt9pw11', 'en', 1, 'https://ror.org/02tt9pw11 Ministarstvo Zaštite Okoliša i Energetike Ministry of Environmental Protection and Energy'), (67421, 'https://ror.org/02tthqe19', 'en', 1, 'https://ror.org/02tthqe19 Tianjin Institute of Advanced Technology 天津中科先进技术研究院'), (67422, 'https://ror.org/02tzdnt26', 'no_lang_code', 1, 'https://ror.org/02tzdnt26 Sante Mernaud (India)'), (67423, 'https://ror.org/02tzmrb07', 'en', 1, 'https://ror.org/02tzmrb07 Guodian Institute of Science and Technology 国电科学技术研究院'), (67424, 'https://ror.org/02v72s867', 'no_lang_code', 1, 'https://ror.org/02v72s867 Jasco (United Kingdom)'), (67425, 'https://ror.org/02v74rx67', 'en', 1, 'https://ror.org/02v74rx67 Chengdu Pump Application Technology Research Institute'), (67426, 'https://ror.org/02v8tah71', 'ga', 1, 'https://ror.org/02v8tah71 Aiséirí'), (67427, 'https://ror.org/02vdh2x09', 'en', 1, 'https://ror.org/02vdh2x09 City College of Dongguan University of Technology 东莞理工学院城市学院'), (67428, 'https://ror.org/02vdn6c95', 'en', 1, 'https://ror.org/02vdn6c95 Cluid Housing'), (67429, 'https://ror.org/02vef8c56', 'no_lang_code', 1, 'https://ror.org/02vef8c56 Opto Circuits (India)'), (67430, 'https://ror.org/02vf30q73', 'en', 1, 'https://ror.org/02vf30q73 Ministry of Health Эрүүл мэндийн яам'), (67431, 'https://ror.org/02vfbts58', 'en', 1, 'https://ror.org/02vfbts58 Ministerstwo Finansów Ministry of Finance'), (67432, 'https://ror.org/02vg9gp47', 'en', 1, 'https://ror.org/02vg9gp47 Guangzhou Building Materials Institute 广州建筑材料研究所'), (67433, 'https://ror.org/02vh2ts72', 'no_lang_code', 1, 'https://ror.org/02vh2ts72 Goodwin (United Kingdom)'), (67434, 'https://ror.org/02vhnq558', 'sq', 1, 'https://ror.org/02vhnq558 Instituti Kombëtar i Shëndetësisë Publike'), (67435, 'https://ror.org/02vj92h59', 'en', 1, 'https://ror.org/02vj92h59 IAM RoadSmart'), (67436, 'https://ror.org/02vjrna94', 'fr', 1, 'https://ror.org/02vjrna94 Ministère de la Fonction Publique et de la Réforme Administrative'), (67437, 'https://ror.org/02vm8jd66', 'no_lang_code', 1, 'https://ror.org/02vm8jd66 RT-RK Institute for Computer Based Systems (Serbia)'), (67438, 'https://ror.org/02vmc0j64', 'no_lang_code', 1, 'https://ror.org/02vmc0j64 D-RisQ (United Kingdom)'), (67439, 'https://ror.org/02vmmpc69', 'en', 1, 'https://ror.org/02vmmpc69 Fairfax-Falls Church Community Services Board'), (67440, 'https://ror.org/02vn18x32', 'en', 1, 'https://ror.org/02vn18x32 The Textlinguistic Society of Korea 한국텍스트언어학회'), (67441, 'https://ror.org/02vnfe476', 'no_lang_code', 1, 'https://ror.org/02vnfe476 Zhe jiang Research Institute of Traditional Chinese Medicine (China) 浙江省中医药研究院'), (67442, 'https://ror.org/02vptss42', 'en', 1, 'https://ror.org/02vptss42 Hebrew SeniorLife'), (67443, 'https://ror.org/02vtcpw89', 'en', 1, 'https://ror.org/02vtcpw89 The Korean Society for German History 한국독일사학회'), (67444, 'https://ror.org/02vx4zx98', 'en', 1, 'https://ror.org/02vx4zx98 Beijing Jingshida Electromechanical Equipment Research Institute 北京市警视达机电设备研究所有限'), (67445, 'https://ror.org/02vxhn688', 'en', 1, 'https://ror.org/02vxhn688 Chenguang Research Institute of Chemical Industry'), (67446, 'https://ror.org/02vxnkm75', 'no_lang_code', 1, 'https://ror.org/02vxnkm75 GaitSmart (United Kingdom)'), (67447, 'https://ror.org/02vy0w981', 'no_lang_code', 1, 'https://ror.org/02vy0w981 ESP Technology (United Kingdom)'), (67448, 'https://ror.org/02vy6fy03', 'no_lang_code', 1, 'https://ror.org/02vy6fy03 GeoCento (United Kingdom)'), (67449, 'https://ror.org/02vy7sg87', 'en', 1, 'https://ror.org/02vy7sg87 Hunan Rice Research Institute 湖南省水稻研究所'), (67450, 'https://ror.org/02w083059', 'en', 1, 'https://ror.org/02w083059 Immigrant Institute Immigrant-institutet'), (67451, 'https://ror.org/02w1g8568', 'en', 1, 'https://ror.org/02w1g8568 The Academy of Sciences of Hong Kong 香港科学院'), (67452, 'https://ror.org/02w1tnr53', 'en', 1, 'https://ror.org/02w1tnr53 Scientific Institute of Pearl River Water Resources Protection 珠江水资源保护科学研究所'), (67453, 'https://ror.org/02w2qw090', 'no_lang_code', 1, 'https://ror.org/02w2qw090 Charles River Laboratories (Germany)'), (67454, 'https://ror.org/02w3ejv56', 'no_lang_code', 1, 'https://ror.org/02w3ejv56 Eclipse Research Consultants (United Kingdom)'), (67455, 'https://ror.org/02w4f0s33', 'no_lang_code', 1, 'https://ror.org/02w4f0s33 Larkfleet (United Kingdom)'), (67456, 'https://ror.org/02w4hck30', 'no_lang_code', 1, 'https://ror.org/02w4hck30 JW Pharmaceutical (South Korea) JW중외제약'), (67457, 'https://ror.org/02w5vdf29', 'en', 1, 'https://ror.org/02w5vdf29 Caribbean Health Research Council'), (67458, 'https://ror.org/02w5yvv06', 'no_lang_code', 1, 'https://ror.org/02w5yvv06 Neo Access (South Korea) 네오엑세스'), (67459, 'https://ror.org/02w6cg233', 'en', 1, 'https://ror.org/02w6cg233 Central Research Institute of Building Constructions named after VA Kucherenko Центральный научно-исследовательский институт строительных конструкций имени В.А. Кучеренко'), (67460, 'https://ror.org/02w82cx27', 'en', 1, 'https://ror.org/02w82cx27 Korean Social History Association 한국 사회사 협회'), (67461, 'https://ror.org/02w8vq828', 'en', 1, 'https://ror.org/02w8vq828 Hong Kong International Arbitration Centre 香港国际仲裁中心'), (67462, 'https://ror.org/02w9cqe69', 'en', 1, 'https://ror.org/02w9cqe69 Guangxi Transportation Research Institute 广西交通科学研究院'), (67463, 'https://ror.org/02waqvh82', 'no_lang_code', 1, 'https://ror.org/02waqvh82 China Building Standard Design and Research Institute (China) 中国建筑标准设计研究院'), (67464, 'https://ror.org/02wazkc54', 'en', 1, 'https://ror.org/02wazkc54 Ivanovo State Agricultural Academy named after D.K. Belyaev Ивановская государственная сельскохозяйственная академия имени Д.К. Беляева'), (67465, 'https://ror.org/02wbfy710', 'no_lang_code', 1, 'https://ror.org/02wbfy710 Xeolas Pharmaceuticals (Ireland)'), (67466, 'https://ror.org/02wdyv422', 'en', 1, 'https://ror.org/02wdyv422 Ministry for Transport, Infrastructure and Capital Projects'), (67467, 'https://ror.org/02wgmby61', 'no_lang_code', 1, 'https://ror.org/02wgmby61 GreenCross Medical Science (South Korea)'), (67468, 'https://ror.org/02wj1da11', 'en', 1, 'https://ror.org/02wj1da11 Dagestan Scientific Research Institute of Agriculture Named After F.G. Kysriev ФГБНУ ДАГЕСТАНСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ СЕЛЬСКОГО ХОЗЯЙСТВА ИМЕНИ Ф.Г.КИСРИЕВА'), (67469, 'https://ror.org/02wk38057', 'no_lang_code', 1, 'https://ror.org/02wk38057 2DHeat (United Kingdom)'), (67470, 'https://ror.org/02wkqjs50', 'no_lang_code', 1, 'https://ror.org/02wkqjs50 Exerscout (Ireland)'), (67471, 'https://ror.org/02wks8h31', 'no_lang_code', 1, 'https://ror.org/02wks8h31 MixSemi (China)'), (67472, 'https://ror.org/02wn4vf74', 'en', 1, 'https://ror.org/02wn4vf74 Korean Association for Political Economy 한국사회경제학회'), (67473, 'https://ror.org/02wnznw20', 'no_lang_code', 1, 'https://ror.org/02wnznw20 Boliden Tara Mines (Ireland)'), (67474, 'https://ror.org/02wv4rx62', 'ga', 1, 'https://ror.org/02wv4rx62 Foróige'), (67475, 'https://ror.org/02wvj4674', 'pl', 1, 'https://ror.org/02wvj4674 Kardio-Med Silesia'), (67476, 'https://ror.org/02wwrad14', 'en', 1, 'https://ror.org/02wwrad14 Anhui Water Conservancy and Hydropower Survey and Design Institute 安徽省水利水电勘测设计院'), (67477, 'https://ror.org/02wxyms40', 'no_lang_code', 1, 'https://ror.org/02wxyms40 Roquette Frères (India)'), (67478, 'https://ror.org/02wy00t81', 'no_lang_code', 1, 'https://ror.org/02wy00t81 Hanpoong Pharm (South Korea) 한풍제약'), (67479, 'https://ror.org/02wy0xt13', 'en', 1, 'https://ror.org/02wy0xt13 European Council on Refugees and Exiles'), (67480, 'https://ror.org/02x6qh956', 'no_lang_code', 1, 'https://ror.org/02x6qh956 Cybersys Computer (China)'), (67481, 'https://ror.org/02x76rz89', 'en', 1, 'https://ror.org/02x76rz89 United States Anti-Doping Agency'), (67482, 'https://ror.org/02x9rq768', 'en', 1, 'https://ror.org/02x9rq768 Vitalant'), (67483, 'https://ror.org/02xab7z06', 'no_lang_code', 1, 'https://ror.org/02xab7z06 Chery Automobile (China) 奇瑞'), (67484, 'https://ror.org/02xaygw50', 'no_lang_code', 1, 'https://ror.org/02xaygw50 Aqdot (United Kingdom)'), (67485, 'https://ror.org/02xcbvq61', 'en', 1, 'https://ror.org/02xcbvq61 Public Limited Company for Radioactive Waste Management Radioaktív Hulladékokat Kezelő Közhasznú'), (67486, 'https://ror.org/02xd1z741', 'no_lang_code', 1, 'https://ror.org/02xd1z741 ACI Worldwide (United States)'), (67487, 'https://ror.org/02xd7sw67', 'en', 1, 'https://ror.org/02xd7sw67 Autism Canada Société canadienne de l’autisme'), (67488, 'https://ror.org/02xdxcj12', 'en', 1, 'https://ror.org/02xdxcj12 The Korean Drama Society 한국드라마학회'), (67489, 'https://ror.org/02xdygm42', 'en', 1, 'https://ror.org/02xdygm42 Prevention Institute'), (67490, 'https://ror.org/02xfvtk67', 'en', 1, 'https://ror.org/02xfvtk67 Mechanics'' Institute'), (67491, 'https://ror.org/02xfypx32', 'en', 1, 'https://ror.org/02xfypx32 Sustainable Economic Development Agency'), (67492, 'https://ror.org/02xgad785', 'en', 1, 'https://ror.org/02xgad785 Maryland Commission on African American History and Culture'), (67493, 'https://ror.org/02xh5g973', 'en', 1, 'https://ror.org/02xh5g973 Ministry of Healthcare Հայաստանի Հանրապետության առողջապահության նախարարություն'), (67494, 'https://ror.org/02xm3a386', 'en', 1, 'https://ror.org/02xm3a386 Korean Calligraphy Association 한국서예협회'), (67495, 'https://ror.org/02xq34z61', 'en', 1, 'https://ror.org/02xq34z61 (사)한국디지털디자인협의회 Korea Digital Design Council'), (67496, 'https://ror.org/02xq4xp48', 'en', 1, 'https://ror.org/02xq4xp48 State Agency for Metrological and Technical Surveillance Държавна агенция за метрологичен и технически надзор'), (67497, 'https://ror.org/02xs6t089', 'en', 1, 'https://ror.org/02xs6t089 SupBuyer (China)'), (67498, 'https://ror.org/02xshzv74', 'en', 1, 'https://ror.org/02xshzv74 Kazan Research Institute of Epidemiology and Microbiology'), (67499, 'https://ror.org/02xyaf767', 'en', 1, 'https://ror.org/02xyaf767 Transnational University Limburg'), (67500, 'https://ror.org/02xyxjs42', 'no_lang_code', 1, 'https://ror.org/02xyxjs42 Cthulhu Ventures (United States)'), (67501, 'https://ror.org/02xzsz056', 'no_lang_code', 1, 'https://ror.org/02xzsz056 Masquelier’s (Netherlands)'), (67502, 'https://ror.org/02y0e7413', 'en', 1, 'https://ror.org/02y0e7413 Scientific Research Institute of Biochemistry Научно-исследовательский институт биохимии'), (67503, 'https://ror.org/02y0st784', 'en', 1, 'https://ror.org/02y0st784 The Korean Archeological Society 한국고고학회라 한다'), (67504, 'https://ror.org/02y20t868', 'no_lang_code', 1, 'https://ror.org/02y20t868 Kinesis Health Technologies (Ireland)'), (67505, 'https://ror.org/02y5xjh56', 'en', 1, 'https://ror.org/02y5xjh56 International Neuroinformatics Coordinating Facility'), (67506, 'https://ror.org/02y8hcw86', 'en', 1, 'https://ror.org/02y8hcw86 Korean Psychological Association 한국심리학회'), (67507, 'https://ror.org/02y8m9y76', 'en', 1, 'https://ror.org/02y8m9y76 Beijing Institute of Water 北京水研究所'), (67508, 'https://ror.org/02y8rvp52', 'en', 1, 'https://ror.org/02y8rvp52 Korean Language Institute 연세대학교 한국어학당은'), (67509, 'https://ror.org/02yaqge44', 'en', 1, 'https://ror.org/02yaqge44 I Wish'), (67510, 'https://ror.org/02ybby158', 'en', 1, 'https://ror.org/02ybby158 International Institute of Industrial Property МЕЖДУНАРОДНЫЙ ИНСТИТУТ ПРОМЫШЛЕННОЙ СОБСТВЕННОСТИ'), (67511, 'https://ror.org/02ybk0k36', 'en', 1, 'https://ror.org/02ybk0k36 Ministarstvo komunikacija i prometa Ministry of Communication and Transport'), (67512, 'https://ror.org/02yd1fb92', 'no_lang_code', 1, 'https://ror.org/02yd1fb92 Fes Trading (Poland)'), (67513, 'https://ror.org/02ydbtz72', 'no_lang_code', 1, 'https://ror.org/02ydbtz72 Chengdu Industrial Equipment Installation (China) 成都市工业设备安装公司 版权所有'), (67514, 'https://ror.org/02ye0gt70', 'en', 1, 'https://ror.org/02ye0gt70 All-Russian Research Institute of Chemical Technology Всероссийский научно-исследовательский институт химической технологии'), (67515, 'https://ror.org/02yhdrk95', 'en', 1, 'https://ror.org/02yhdrk95 Mississippi Blues Trail'), (67516, 'https://ror.org/02yjcwm21', 'no_lang_code', 1, 'https://ror.org/02yjcwm21 Daiichi-Sankyo (South Korea) 한국다이이찌산쿄주식회사'), (67517, 'https://ror.org/02yjfp753', 'no_lang_code', 1, 'https://ror.org/02yjfp753 Donlim (China) 广东新宝电器股份有限公司'), (67518, 'https://ror.org/02yjv7f10', 'en', 1, 'https://ror.org/02yjv7f10 Population Services International'), (67519, 'https://ror.org/02ykbvm42', 'en', 1, 'https://ror.org/02ykbvm42 Centre for Materials for Electronics Technology'), (67520, 'https://ror.org/02ykcjw41', 'en', 1, 'https://ror.org/02ykcjw41 James Joyce Society of Korea 한국제임스조이스학회'), (67521, 'https://ror.org/02yx0ge43', 'en', 1, 'https://ror.org/02yx0ge43 Eesti Sotsiaalministeerium Ministry of Social Affairs'), (67522, 'https://ror.org/02yxyb555', 'fr', 1, 'https://ror.org/02yxyb555 Table de Concertation en Violence Conjugale de Montréal'), (67523, 'https://ror.org/02yxzrq46', 'no_lang_code', 1, 'https://ror.org/02yxzrq46 Diamond Photofoil (United Kingdom)'), (67524, 'https://ror.org/02yz5ze35', 'no_lang_code', 1, 'https://ror.org/02yz5ze35 Critical Solutions International (United States)'), (67525, 'https://ror.org/02yzb5728', 'no_lang_code', 1, 'https://ror.org/02yzb5728 Awsaj Academy أكاديمية أوساج'), (67526, 'https://ror.org/02z02sq57', 'en', 1, 'https://ror.org/02z02sq57 Maine Central Institute'), (67527, 'https://ror.org/02z23mj13', 'en', 1, 'https://ror.org/02z23mj13 Kazakh Eye Research Institute Казахский НИИ глазных болезней Көз аурулары Қазақ ғылыми зерттеу институты'), (67528, 'https://ror.org/02z2b4x26', 'no_lang_code', 1, 'https://ror.org/02z2b4x26 UCB Pharma (India)'), (67529, 'https://ror.org/02z2gfm30', 'en', 1, 'https://ror.org/02z2gfm30 Data Assurance and Communication Security 中国科学院数据与通信保护研究教育中心'), (67530, 'https://ror.org/02z2n2043', 'en', 1, 'https://ror.org/02z2n2043 Kent Wildlife Trust'), (67531, 'https://ror.org/02z3r7t23', 'en', 1, 'https://ror.org/02z3r7t23 Edinburgh Genomics'), (67532, 'https://ror.org/02z491a27', 'pt', 1, 'https://ror.org/02z491a27 Sindicato Dos Trabalhadores Da Administração Pública e de Entidades com Fins Públicos'), (67533, 'https://ror.org/02z4pnd66', 'no_lang_code', 1, 'https://ror.org/02z4pnd66 Zhejiang Modern Chinese Medicine and Natural Medicine Research Institute (China) 浙江现代中药与天然药物研究院有限公司于'), (67534, 'https://ror.org/02z6x1r54', 'en', 1, 'https://ror.org/02z6x1r54 Dandelion Medical Welfare Social Cooperative 민들레 의료 복지 사회 협동 조합'), (67535, 'https://ror.org/02z7d4y66', 'no_lang_code', 1, 'https://ror.org/02z7d4y66 Keylane (Netherlands)'), (67536, 'https://ror.org/02z8dkq59', 'en', 1, 'https://ror.org/02z8dkq59 Russian Research Institute of Hematology and Transfusiology Российский НИИ гематологии и трансфузиологии'), (67537, 'https://ror.org/02z9np441', 'no_lang_code', 1, 'https://ror.org/02z9np441 CGA Simulations (United Kingdom)'), (67538, 'https://ror.org/02zawmw51', 'en', 1, 'https://ror.org/02zawmw51 BC Mental Health & Substance Use Services'), (67539, 'https://ror.org/02zc6h894', 'en', 1, 'https://ror.org/02zc6h894 Institute of Physico-Technical Problems of the North named VP Larionov Институт физико-технических проблем Севера В.П. Ларионов'), (67540, 'https://ror.org/02zc84r97', 'no_lang_code', 1, 'https://ror.org/02zc84r97 Neusoft (China) 东软公司'), (67541, 'https://ror.org/02ze37p54', 'en', 1, 'https://ror.org/02ze37p54 Chosun College of Science & Technology 조선이공대학교'), (67542, 'https://ror.org/02zgswx90', 'en', 1, 'https://ror.org/02zgswx90 Athletic Edge Sports Medicine'), (67543, 'https://ror.org/02zh3z112', 'en', 1, 'https://ror.org/02zh3z112 Korea Association of Chinese Language Education 한국 언어 교육 학회'), (67544, 'https://ror.org/02zjbky29', 'en', 1, 'https://ror.org/02zjbky29 Korea Advertising Society 한국 광고 학회'), (67545, 'https://ror.org/02zjnfj90', 'en', 1, 'https://ror.org/02zjnfj90 Barnardo''s'), (67546, 'https://ror.org/02zk30t14', 'no_lang_code', 1, 'https://ror.org/02zk30t14 Wolong Electric Group Hangzhou Research Institute (China)'), (67547, 'https://ror.org/02zmk8084', 'en', 1, 'https://ror.org/02zmk8084 John von Neumann Institute for Computing John von Neumann-Institut für Computing'), (67548, 'https://ror.org/02zn0w908', 'no_lang_code', 1, 'https://ror.org/02zn0w908 Auvi (China)'), (67549, 'https://ror.org/02zpms144', 'en', 1, 'https://ror.org/02zpms144 Korean Society of Alchol Science and Health Behavior 한국 알코올 중독 학회'), (67550, 'https://ror.org/02zscxh03', 'en', 1, 'https://ror.org/02zscxh03 Hollywood Orthopaedic Group'), (67551, 'https://ror.org/02ztwrd91', 'no_lang_code', 1, 'https://ror.org/02ztwrd91 JAC Motors (China) 江淮汽车'), (67552, 'https://ror.org/02zty9d43', 'en', 1, 'https://ror.org/02zty9d43 FAO/IAEA Agriculture and Biotechnology Laboratories'), (67553, 'https://ror.org/02zw2vm28', 'en', 1, 'https://ror.org/02zw2vm28 EastSide Partnership'), (67554, 'https://ror.org/02zwzx824', 'en', 1, 'https://ror.org/02zwzx824 Urban Design Institute of Korea 한국 도시 디자인 학원'), (67555, 'https://ror.org/02zxg0r06', 'en', 1, 'https://ror.org/02zxg0r06 Institute of Applied Dermatology'), (67556, 'https://ror.org/02zz6x768', 'en', 1, 'https://ror.org/02zz6x768 Fundación Biomédica Neurounion Neurounion Biomedical Foundation'), (67557, 'https://ror.org/02zznv955', 'en', 1, 'https://ror.org/02zznv955 Shanghai Tunnel Engineering Rail Transit Design & Research Institute 上海市隧道工程轨道交通设计研究院'), (67558, 'https://ror.org/0300wj933', 'en', 1, 'https://ror.org/0300wj933 Korean History Society 한국역사연구회'), (67559, 'https://ror.org/0301h4330', 'it', 1, 'https://ror.org/0301h4330 Federazione Medico Sportiva Italiana'), (67560, 'https://ror.org/03039yw27', 'no_lang_code', 1, 'https://ror.org/03039yw27 Corestem (South Korea) 코아스템(주)'), (67561, 'https://ror.org/0304ak089', 'en', 1, 'https://ror.org/0304ak089 Korean Pancreatobiliary Association 대한췌담도학회'), (67562, 'https://ror.org/0304ps964', 'en', 1, 'https://ror.org/0304ps964 Dermot Foley Landscape Architects (Ireland)'), (67563, 'https://ror.org/0305q1250', 'en', 1, 'https://ror.org/0305q1250 Wuhan Modern Urban Agriculture Planning and Design Institute 武汉现代都市农业规划设计院股份有限公'), (67564, 'https://ror.org/030d9pd22', 'en', 1, 'https://ror.org/030d9pd22 International Academy of Ecology, Human and Nature Safety Международная академия наук экологии, безопасности человека и природы'), (67565, 'https://ror.org/030dg0748', 'no_lang_code', 1, 'https://ror.org/030dg0748 Navitas Life Sciences (India)'), (67566, 'https://ror.org/030mq9680', 'no_lang_code', 1, 'https://ror.org/030mq9680 State Development & Investment Corporation (China) 国家开发投资公司'), (67567, 'https://ror.org/030nd5313', 'no_lang_code', 1, 'https://ror.org/030nd5313 Coventry (United Kingdom)'), (67568, 'https://ror.org/030nky627', 'no_lang_code', 1, 'https://ror.org/030nky627 Roche (South Korea) 한국로슈'), (67569, 'https://ror.org/030nw5b81', 'en', 1, 'https://ror.org/030nw5b81 ActionAid Ireland'), (67570, 'https://ror.org/030q87z73', 'en', 1, 'https://ror.org/030q87z73 Loughs Agency'), (67571, 'https://ror.org/030qwwd12', 'no_lang_code', 1, 'https://ror.org/030qwwd12 The Springboard Consultancy (United Kingdom)'), (67572, 'https://ror.org/030v00e77', 'en', 1, 'https://ror.org/030v00e77 Institute for the International Education of Students'), (67573, 'https://ror.org/030vc9997', 'no_lang_code', 1, 'https://ror.org/030vc9997 Eagle Genomics (United Kingdom)'), (67574, 'https://ror.org/030wgts54', 'en', 1, 'https://ror.org/030wgts54 Hong Kong Electrical Appliances Manufacturers Association 香港电器制造商协会'), (67575, 'https://ror.org/0310e9d31', 'en', 1, 'https://ror.org/0310e9d31 Institute of Biotechnology and Veterinary Medicine Институт биотехнологии и ветеринарной медицины'), (67576, 'https://ror.org/031194929', 'no_lang_code', 1, 'https://ror.org/031194929 Chrysalis Health & Beauty (United Kingdom)'), (67577, 'https://ror.org/0312bsv17', 'en', 1, 'https://ror.org/0312bsv17 Guangdong Urban & Rural Planning and Design Institute 广东省城乡规划设计院'), (67578, 'https://ror.org/0314qy595', 'no_lang_code', 1, 'https://ror.org/0314qy595 Shanghai Electric (China) 上海电气集团'), (67579, 'https://ror.org/0315e7x57', 'no_lang_code', 1, 'https://ror.org/0315e7x57 GL Assessment (United Kingdom)'), (67580, 'https://ror.org/0317nyv30', 'en', 1, 'https://ror.org/0317nyv30 Hong Kong Export Credit Insurance Corporation'), (67581, 'https://ror.org/0317tcf14', 'no_lang_code', 1, 'https://ror.org/0317tcf14 Vesuvius (United States)'), (67582, 'https://ror.org/0317vtg57', 'no_lang_code', 1, 'https://ror.org/0317vtg57 Advanced Card Systems (China) 先进的卡片系统'), (67583, 'https://ror.org/0318jmw72', 'hu', 1, 'https://ror.org/0318jmw72 Magyar Tehetségsegítő Szervezetek Szövetsége'), (67584, 'https://ror.org/0319gez47', 'en', 1, 'https://ror.org/0319gez47 Korean Women''s Association for Communication Studies 한국 여성 학회'), (67585, 'https://ror.org/031dc4703', 'no_lang_code', 1, 'https://ror.org/031dc4703 BlackRock (United States)'), (67586, 'https://ror.org/031eaaa87', 'en', 1, 'https://ror.org/031eaaa87 Association des Pharmaciens du Canada Canadian Pharmacists Association'), (67587, 'https://ror.org/031ebne21', 'en', 1, 'https://ror.org/031ebne21 National Measurement Laboratory'), (67588, 'https://ror.org/031hazy16', 'en', 1, 'https://ror.org/031hazy16 Springboard'), (67589, 'https://ror.org/031mxty05', 'no_lang_code', 1, 'https://ror.org/031mxty05 Activ8rlives (United Kingdom)'), (67590, 'https://ror.org/031nqzs81', 'en', 1, 'https://ror.org/031nqzs81 Horological Research Institute of Light Industry 轻工业钟表研究所'), (67591, 'https://ror.org/031p8aq28', 'en', 1, 'https://ror.org/031p8aq28 Stavya Spine Hospital & Research Institute, स्ताल्य स्पाइन अस्पताल और अनुसंधान संस्थान'), (67592, 'https://ror.org/031q99e43', 'fr', 1, 'https://ror.org/031q99e43 Institut PrépaVogt'), (67593, 'https://ror.org/031vvza93', 'no_lang_code', 1, 'https://ror.org/031vvza93 Mabo (Poland)'), (67594, 'https://ror.org/031x5nm39', 'no_lang_code', 1, 'https://ror.org/031x5nm39 Bühler (China)'), (67595, 'https://ror.org/0320mrm05', 'no_lang_code', 1, 'https://ror.org/0320mrm05 Academician V.P.Makeyev State Rocket Centre (Russia) Государственный ракетный центр имени академика В.П. Макеева'), (67596, 'https://ror.org/032331w61', 'en', 1, 'https://ror.org/032331w61 Development Agency of Karditsa'), (67597, 'https://ror.org/032412d97', 'en', 1, 'https://ror.org/032412d97 Seoul Business Agency'), (67598, 'https://ror.org/0324mr378', 'en', 1, 'https://ror.org/0324mr378 Borne Foundation'), (67599, 'https://ror.org/0324qh176', 'en', 1, 'https://ror.org/0324qh176 Institute of Biology Ufa Science Center Институт биологии Уфимского научного центра'), (67600, 'https://ror.org/0326a4r74', 'en', 1, 'https://ror.org/0326a4r74 The Art History Research Institute of Korea 한국 미술 사학 연구소'), (67601, 'https://ror.org/0329dzd04', 'no_lang_code', 1, 'https://ror.org/0329dzd04 Vanke (China) 萬科'), (67602, 'https://ror.org/032a11168', 'de', 1, 'https://ror.org/032a11168 Arbeitsgemeinschaft Mauerziegel'), (67603, 'https://ror.org/032ab1973', 'en', 1, 'https://ror.org/032ab1973 Geological Survey Department'), (67604, 'https://ror.org/032btfw79', 'en', 1, 'https://ror.org/032btfw79 Ural Scientific Research Institute of Composite Materials Уральский научно-исследовательский институт композиционных материалов'), (67605, 'https://ror.org/032cggj38', 'en', 1, 'https://ror.org/032cggj38 Institute of Alcohol Studies'), (67606, 'https://ror.org/032dfqd82', 'no_lang_code', 1, 'https://ror.org/032dfqd82 Precise (India)'), (67607, 'https://ror.org/032dmkq14', 'en', 1, 'https://ror.org/032dmkq14 The Korean Society of Christian Religious Education 한국 기독교 교육 학회'), (67608, 'https://ror.org/032eb5z33', 'en', 1, 'https://ror.org/032eb5z33 Guizhou Academy of Testing & Analysis 贵州省分析测试研究院'), (67609, 'https://ror.org/032fx1s95', 'no_lang_code', 1, 'https://ror.org/032fx1s95 Xi''an Peihua University 西安培华学院'), (67610, 'https://ror.org/032ge1s57', 'no_lang_code', 1, 'https://ror.org/032ge1s57 YY (China)'), (67611, 'https://ror.org/032j0jn37', 'en', 1, 'https://ror.org/032j0jn37 National Institute of Korean History 한국 역사 연구소'), (67612, 'https://ror.org/032sv7e28', 'no_lang_code', 1, 'https://ror.org/032sv7e28 AiGameDev.com (Austria)'), (67613, 'https://ror.org/032sv9d33', 'en', 1, 'https://ror.org/032sv9d33 Jiyang College of Zhejiang A&F University'), (67614, 'https://ror.org/032ttbd57', 'en', 1, 'https://ror.org/032ttbd57 Ministry of Security of Bosnia and Herzegovina'), (67615, 'https://ror.org/032w21978', 'en', 1, 'https://ror.org/032w21978 Korean Association for Lifelong Education 한국 생애 교육 협회'), (67616, 'https://ror.org/032w4ep19', 'no_lang_code', 1, 'https://ror.org/032w4ep19 IDAP Technology (Poland)'), (67617, 'https://ror.org/032wy5y42', 'no_lang_code', 1, 'https://ror.org/032wy5y42 Innovative Cryogenic Engineering (United Kingdom)'), (67618, 'https://ror.org/032x61x06', 'no_lang_code', 1, 'https://ror.org/032x61x06 Astrimmune (United Kingdom)'), (67619, 'https://ror.org/032y2wk86', 'en', 1, 'https://ror.org/032y2wk86 Georgia Public Broadcasting'), (67620, 'https://ror.org/0330hwr77', 'en', 1, 'https://ror.org/0330hwr77 AO Foundation'), (67621, 'https://ror.org/0330st597', 'en', 1, 'https://ror.org/0330st597 Fujian Special Equipment Inspection Institute 福建省特种设备检验研究院'), (67622, 'https://ror.org/033403863', 'no_lang_code', 1, 'https://ror.org/033403863 Micro-Star International (Taiwan)'), (67623, 'https://ror.org/03346b772', 'no_lang_code', 1, 'https://ror.org/03346b772 Daiichi Sankyo (India)'), (67624, 'https://ror.org/03349yg63', 'en', 1, 'https://ror.org/03349yg63 Mediterranean Institute for Primary Care'), (67625, 'https://ror.org/0335k6h22', 'en', 1, 'https://ror.org/0335k6h22 International Security and Emergency Management Institute Inštitút pre medzinárodnú bezpečnosť a krízové riadenie'), (67626, 'https://ror.org/0336k1122', 'en', 1, 'https://ror.org/0336k1122 The Reading Agency'), (67627, 'https://ror.org/0338x2357', 'pl', 1, 'https://ror.org/0338x2357 Kutnowska Hodowla Buraka Cukrowego'), (67628, 'https://ror.org/0339jm562', 'en', 1, 'https://ror.org/0339jm562 The Linguistic Society of Korea 한국언어학회'), (67629, 'https://ror.org/0339vxy90', 'no_lang_code', 1, 'https://ror.org/0339vxy90 Becton Dickinson (India)'), (67630, 'https://ror.org/033aqz496', 'no_lang_code', 1, 'https://ror.org/033aqz496 Biotronik (India)'), (67631, 'https://ror.org/033bjbc43', 'en', 1, 'https://ror.org/033bjbc43 Korea Baduk Association 한국기원'), (67632, 'https://ror.org/033dqre27', 'en', 1, 'https://ror.org/033dqre27 Brand Design Association of Korea'), (67633, 'https://ror.org/033famg97', 'en', 1, 'https://ror.org/033famg97 Association for Regional and International Underground Storage'), (67634, 'https://ror.org/033fj2y02', 'en', 1, 'https://ror.org/033fj2y02 Liaoning Petroleum Equipment Institute 辽宁陆海石油装备研究院有限公司'), (67635, 'https://ror.org/033mgm122', 'no_lang_code', 1, 'https://ror.org/033mgm122 China Datang Corporation (China) 中国大唐集团科技研究院有限公司'), (67636, 'https://ror.org/033p8v660', 'no_lang_code', 1, 'https://ror.org/033p8v660 Wita Proteomics (Germany)'), (67637, 'https://ror.org/033ptv654', 'no_lang_code', 1, 'https://ror.org/033ptv654 Objective Solutions (China)'), (67638, 'https://ror.org/033r7gh92', 'en', 1, 'https://ror.org/033r7gh92 Korea Society Of IT Services 한국IT서비스학회'), (67639, 'https://ror.org/033s51991', 'en', 1, 'https://ror.org/033s51991 Comunità Scientifica Italiana in Canada Italian Scientific Community in Canada'), (67640, 'https://ror.org/033sdmz09', 'no_lang_code', 1, 'https://ror.org/033sdmz09 ITS (United Kingdom)'), (67641, 'https://ror.org/033sqvz45', 'no_lang_code', 1, 'https://ror.org/033sqvz45 Industrial Phycology (United Kingdom)'), (67642, 'https://ror.org/033vexm94', 'no_lang_code', 1, 'https://ror.org/033vexm94 Econotherm (United Kingdom)'), (67643, 'https://ror.org/033w89p27', 'en', 1, 'https://ror.org/033w89p27 Kansas Health Institute'), (67644, 'https://ror.org/033wz4y55', 'no_lang_code', 1, 'https://ror.org/033wz4y55 Anhui East China Institute of Optoelectronic Technology (China)'), (67645, 'https://ror.org/033z65h39', 'en', 1, 'https://ror.org/033z65h39 Ministry of Higher and Tertiary Education'), (67646, 'https://ror.org/033zvg385', 'no_lang_code', 1, 'https://ror.org/033zvg385 Kab Bygge-Og Boligadministration (Denmark)'), (67647, 'https://ror.org/0340bsg82', 'no_lang_code', 1, 'https://ror.org/0340bsg82 Hyundai Pharm (South Korea)'), (67648, 'https://ror.org/0341fmf68', 'no_lang_code', 1, 'https://ror.org/0341fmf68 Lucky Technology (China) 幸运技术'), (67649, 'https://ror.org/03428zt70', 'en', 1, 'https://ror.org/03428zt70 Bangladesh Medical Research Council'), (67650, 'https://ror.org/0344txx64', 'en', 1, 'https://ror.org/0344txx64 Medtronic (South Korea)'), (67651, 'https://ror.org/0344v8a35', 'fr', 1, 'https://ror.org/0344v8a35 à coeur d''homme'), (67652, 'https://ror.org/03471w967', 'fr', 1, 'https://ror.org/03471w967 Hôpital Larrey'), (67653, 'https://ror.org/0347rqq77', 'no_lang_code', 1, 'https://ror.org/0347rqq77 OceanX Technology (China)'), (67654, 'https://ror.org/0348jjn37', 'es', 1, 'https://ror.org/0348jjn37 Redit'), (67655, 'https://ror.org/034ad8717', 'en', 1, 'https://ror.org/034ad8717 Chaithanya Eye Hospital and Research Institute'), (67656, 'https://ror.org/034ahxs15', 'en', 1, 'https://ror.org/034ahxs15 The State Scientific Research Institute of Civil Aviation Федеральное государственное унитарное предприятие Государственный научно-исследовательский институт гражданской авиации'), (67657, 'https://ror.org/034c6t134', 'de', 1, 'https://ror.org/034c6t134 Pathodiagnostik Berlin'), (67658, 'https://ror.org/034dme430', 'no_lang_code', 1, 'https://ror.org/034dme430 Euros Energy (Poland)'), (67659, 'https://ror.org/034ee8p26', 'no_lang_code', 1, 'https://ror.org/034ee8p26 ZeClinics (Spain)'), (67660, 'https://ror.org/034fcx588', 'en', 1, 'https://ror.org/034fcx588 Central Council for Research in Unani Medicine'), (67661, 'https://ror.org/034jmpk69', 'en', 1, 'https://ror.org/034jmpk69 North China Municipal Engineering Design & Research Institute 中国市政工程华北设计研究总院有限公司'), (67662, 'https://ror.org/034kyps37', 'en', 1, 'https://ror.org/034kyps37 Ministry of Information Society and Administration'), (67663, 'https://ror.org/034kzpn81', 'en', 1, 'https://ror.org/034kzpn81 Vermont Department of Libraries'), (67664, 'https://ror.org/034mx6v37', 'en', 1, 'https://ror.org/034mx6v37 L.A. Theatre Works'), (67665, 'https://ror.org/034q8g297', 'en', 1, 'https://ror.org/034q8g297 University of Brain Education 국제뇌교육종합대학원대학교 홈페이지'), (67666, 'https://ror.org/034qbvs38', 'no_lang_code', 1, 'https://ror.org/034qbvs38 Kora Healthcare (Ireland)'), (67667, 'https://ror.org/034twfm68', 'en', 1, 'https://ror.org/034twfm68 Hong Kong Jewellery & Jade Manufacturers Association 香港珠宝玉石厂商会'), (67668, 'https://ror.org/034vp3v91', 'no_lang_code', 1, 'https://ror.org/034vp3v91 Research Institute "Pulsar" (Russia) НАУЧНО-ПРОИЗВОДСТВЕННОЕ ПРЕДПРИЯТИЕ "ПУЛЬСАР"'), (67669, 'https://ror.org/034wjng68', 'en', 1, 'https://ror.org/034wjng68 Nuclear and Radiation Safety Center 核与辐射安全中心'), (67670, 'https://ror.org/034x52m63', 'no_lang_code', 1, 'https://ror.org/034x52m63 VNIPIvzryvgeofizika ВНИПИвзрывгеофизика'), (67671, 'https://ror.org/034yf9p50', 'no_lang_code', 1, 'https://ror.org/034yf9p50 Nanjing Water Conservancy Planning & Design Institute (China) 南京市水利规划设计院股份有限公司'), (67672, 'https://ror.org/034yp9n83', 'no_lang_code', 1, 'https://ror.org/034yp9n83 Ecometrica (United Kingdom)'), (67673, 'https://ror.org/035198g37', 'en', 1, 'https://ror.org/035198g37 All-Russian Scientific Research Institute of Floriculture and Subtropical Crops Всероссийский научно-исследовательский институт цветоводства и субтропических культур'), (67674, 'https://ror.org/03519pp33', 'en', 1, 'https://ror.org/03519pp33 Agenţia Naţională Antidrog National Anti-drug Agency'), (67675, 'https://ror.org/0352k4r92', 'en', 1, 'https://ror.org/0352k4r92 Indian Nations Council of Governments'), (67676, 'https://ror.org/035397c59', 'en', 1, 'https://ror.org/035397c59 Atlantic Research Institute of Fisheries and Oceanography Атлантический научно-исследовательский институт рыбного хозяйства и океанографии'), (67677, 'https://ror.org/0353dhs61', 'en', 1, 'https://ror.org/0353dhs61 Hubei Polytechnic Institute 湖 北 职 业 技 术 学 院 简 介'), (67678, 'https://ror.org/0353t4m91', 'no_lang_code', 1, 'https://ror.org/0353t4m91 First Automotive Works (China)'), (67679, 'https://ror.org/035598n44', 'no_lang_code', 1, 'https://ror.org/035598n44 DCC Health & Beauty Solutions'), (67680, 'https://ror.org/0355rmf69', 'en', 1, 'https://ror.org/0355rmf69 Northeast Asian Forest Forum 동북아 산림포럼'), (67681, 'https://ror.org/0356p2h35', 'no_lang_code', 1, 'https://ror.org/0356p2h35 Total (Qatar)'), (67682, 'https://ror.org/03573kt53', 'no_lang_code', 1, 'https://ror.org/03573kt53 Mosway Semiconductor (China)'), (67683, 'https://ror.org/0358qh338', 'en', 1, 'https://ror.org/0358qh338 Costume Culture Association 의상 문화 협회'), (67684, 'https://ror.org/035a15991', 'es', 1, 'https://ror.org/035a15991 Instituto Argentino de Radioastronomía'), (67685, 'https://ror.org/035br3k73', 'no_lang_code', 1, 'https://ror.org/035br3k73 China Aluminum International Engineering Corporation Limited (China) 中国铝业国际工程有限公司'), (67686, 'https://ror.org/035brg434', 'no_lang_code', 1, 'https://ror.org/035brg434 Guizhou Magic Pharmaceutical (China)'), (67687, 'https://ror.org/035c0tw34', 'no_lang_code', 1, 'https://ror.org/035c0tw34 GS1 Hong Kong'), (67688, 'https://ror.org/035cs2n55', 'en', 1, 'https://ror.org/035cs2n55 Association for Nutrition'), (67689, 'https://ror.org/035dq5k54', 'en', 1, 'https://ror.org/035dq5k54 Institut für sozial-ökologische Forschung Institute for Social-Ecological Research'), (67690, 'https://ror.org/035f7jt30', 'no_lang_code', 1, 'https://ror.org/035f7jt30 A.M.P Rose (United Kingdom)'), (67691, 'https://ror.org/035few730', 'en', 1, 'https://ror.org/035few730 International Society of Indoor Air Quality and Climate'), (67692, 'https://ror.org/035g2m198', 'no_lang_code', 1, 'https://ror.org/035g2m198 ÉireComposites (Ireland)'), (67693, 'https://ror.org/035gcxp73', 'no_lang_code', 1, 'https://ror.org/035gcxp73 Foxlink (China) 正崴精密工业'), (67694, 'https://ror.org/035ggpk09', 'en', 1, 'https://ror.org/035ggpk09 Tlicho Community Services Agency'), (67695, 'https://ror.org/035h0ne50', 'en', 1, 'https://ror.org/035h0ne50 Meher Hospitals'), (67696, 'https://ror.org/035hazd92', 'en', 1, 'https://ror.org/035hazd92 Jiangsu Institute of Metrology 江苏省计量科学研究院'), (67697, 'https://ror.org/035hyrv04', 'en', 1, 'https://ror.org/035hyrv04 Korean Association of Feminist Philosophers 한국 여성 철학자 협회'), (67698, 'https://ror.org/035jb5191', 'en', 1, 'https://ror.org/035jb5191 Nova Scotia Advisory Commission on AIDS'), (67699, 'https://ror.org/035mna818', 'en', 1, 'https://ror.org/035mna818 Wuhan Academy of Agricultural Sciences 武汉市农业科学院'), (67700, 'https://ror.org/035qztk95', 'en', 1, 'https://ror.org/035qztk95 Riga Energy Agency Rīgas enerģētikas aģentūra'), (67701, 'https://ror.org/035rc4w74', 'no_lang_code', 1, 'https://ror.org/035rc4w74 PanGen Biotech (South Korea) 주식회사 팬젠'), (67702, 'https://ror.org/035seyp42', 'en', 1, 'https://ror.org/035seyp42 Institut de Mathématiques et de Sciences Physiques Institute of Mathematics and Physics'), (67703, 'https://ror.org/035t6ww14', 'en', 1, 'https://ror.org/035t6ww14 National Museum of Ireland'), (67704, 'https://ror.org/035tncn14', 'no_lang_code', 1, 'https://ror.org/035tncn14 Grupa Wolff Wolff Group (Poland)'), (67705, 'https://ror.org/035ttr831', 'no_lang_code', 1, 'https://ror.org/035ttr831 Pantarei Design (China)'), (67706, 'https://ror.org/035w30858', 'en', 1, 'https://ror.org/035w30858 Kaliningrad Frontier Institute of the Federal Security Service of Russia Калининградский пограничный институт ФСБ России'), (67707, 'https://ror.org/035x0zb38', 'en', 1, 'https://ror.org/035x0zb38 Federal Scientific Center for Vegetable Growing Всероссийский научно-исследовательский институт селекции и семеноводства овощных культур'), (67708, 'https://ror.org/035ybn758', 'en', 1, 'https://ror.org/035ybn758 Korean Finance Association 한국재무학회'), (67709, 'https://ror.org/036246q84', 'no_lang_code', 1, 'https://ror.org/036246q84 Box (United States)'), (67710, 'https://ror.org/0362f0p45', 'en', 1, 'https://ror.org/0362f0p45 National Archives of India, राष्ट्रीय अभिलेखागार'), (67711, 'https://ror.org/03651dk72', 'no_lang_code', 1, 'https://ror.org/03651dk72 Gipronickel Institute Институт Гипроникель'), (67712, 'https://ror.org/03654w628', 'en', 1, 'https://ror.org/03654w628 Shanghai Research Institute of Sports Science 上海体育科学研究所'), (67713, 'https://ror.org/0367rr790', 'no_lang_code', 1, 'https://ror.org/0367rr790 Eurotech (Poland)'), (67714, 'https://ror.org/0368h0402', 'no_lang_code', 1, 'https://ror.org/0368h0402 Sophos Group (United Kingdom)'), (67715, 'https://ror.org/0369eb468', 'en', 1, 'https://ror.org/0369eb468 Hainan Meteorology Administration 海南省气象局'), (67716, 'https://ror.org/0369p0616', 'en', 1, 'https://ror.org/0369p0616 HealthCareCAN'), (67717, 'https://ror.org/036b14153', 'no_lang_code', 1, 'https://ror.org/036b14153 Elsta Elektronika (Poland)'), (67718, 'https://ror.org/036b8s592', 'en', 1, 'https://ror.org/036b8s592 The Folklore Society'), (67719, 'https://ror.org/036cy3843', 'en', 1, 'https://ror.org/036cy3843 Film Independent'), (67720, 'https://ror.org/036f01c07', 'no_lang_code', 1, 'https://ror.org/036f01c07 Pacific World Industrial (China)'), (67721, 'https://ror.org/036grzb86', 'no_lang_code', 1, 'https://ror.org/036grzb86 Voysis (Ireland)'), (67722, 'https://ror.org/036gs9v48', 'en', 1, 'https://ror.org/036gs9v48 North East Atlantic Fisheries Commission'), (67723, 'https://ror.org/036j7gs78', 'en', 1, 'https://ror.org/036j7gs78 Nevada Dairy Commission'), (67724, 'https://ror.org/036kvqx88', 'no_lang_code', 1, 'https://ror.org/036kvqx88 Jiangsu Provincial Architectural Design and Research Institute (China) 江苏省建筑设计研究院有限公司'), (67725, 'https://ror.org/036n3de45', 'en', 1, 'https://ror.org/036n3de45 The Korean Society of Management Information Systems 한국 경영 정보 학회'), (67726, 'https://ror.org/036n8hs79', 'en', 1, 'https://ror.org/036n8hs79 Guangzhou Institute of Mechanical Design 广州机械设计研究所简介'), (67727, 'https://ror.org/036p9e334', 'en', 1, 'https://ror.org/036p9e334 Yunnan Water Conservancy and Hydropower Survey and Design Institute'), (67728, 'https://ror.org/036qa5g72', 'en', 1, 'https://ror.org/036qa5g72 Coachella Valley Association of Governments'), (67729, 'https://ror.org/036qc8g42', 'en', 1, 'https://ror.org/036qc8g42 Siberian Research Institute of Agriculture and Peat'), (67730, 'https://ror.org/036rtm992', 'en', 1, 'https://ror.org/036rtm992 Taegu Science University 대구 과학 대학교'), (67731, 'https://ror.org/036rv4s60', 'en', 1, 'https://ror.org/036rv4s60 Scientific and Research Institute of High-Voltage Apparatus Научно-исследовательский институт высоковольтного оборудования'), (67732, 'https://ror.org/036s8jq11', 'en', 1, 'https://ror.org/036s8jq11 Association Canadienne de la Médecine du Travail et de l’environnement Occupational and Environmental Medical Association of Canada'), (67733, 'https://ror.org/036vxpt10', 'en', 1, 'https://ror.org/036vxpt10 Gama (United Kingdom)'), (67734, 'https://ror.org/036wd5777', 'no_lang_code', 1, 'https://ror.org/036wd5777 Group Sense (China) 權智集團'), (67735, 'https://ror.org/036xccj73', 'en', 1, 'https://ror.org/036xccj73 Institute for Research and Development “Utrip” Inštitut za raziskave in razvoj "Utrip"'), (67736, 'https://ror.org/036xtjy06', 'en', 1, 'https://ror.org/036xtjy06 Shanghai Xiandai Architectural Design 上海现代建筑设计'), (67737, 'https://ror.org/0371s1r94', 'en', 1, 'https://ror.org/0371s1r94 Canadian Rural Health Research Society Société Canadienne de Recherche en Santé Rurale'), (67738, 'https://ror.org/03751qd82', 'en', 1, 'https://ror.org/03751qd82 The Alaska Sea Otter and Steller Sea Lion Commission'), (67739, 'https://ror.org/0376fv627', 'en', 1, 'https://ror.org/0376fv627 Department of Public Works Τμήμα Δημοσίων Έργων'), (67740, 'https://ror.org/037b6wy35', 'no_lang_code', 1, 'https://ror.org/037b6wy35 CITIC Group (China)'), (67741, 'https://ror.org/037e82q62', 'en', 1, 'https://ror.org/037e82q62 The Korean Association for Christian Ethics 한국 기독교 윤리학회'), (67742, 'https://ror.org/037fbyh64', 'en', 1, 'https://ror.org/037fbyh64 Israel Antiquities Authority רשות העתיקות داﺌرة الآثار'), (67743, 'https://ror.org/037fm9770', 'fr', 1, 'https://ror.org/037fm9770 Société d''Habitation du Québec'), (67744, 'https://ror.org/037g0v202', 'en', 1, 'https://ror.org/037g0v202 Bristol Hospitality Network'), (67745, 'https://ror.org/037g7hc89', 'en', 1, 'https://ror.org/037g7hc89 National Statistical Service of the Republic of Armenia Ազգային վիճակագրական ծառայություն'), (67746, 'https://ror.org/037hasf44', 'no_lang_code', 1, 'https://ror.org/037hasf44 Bastik (Poland)'), (67747, 'https://ror.org/037jwt041', 'no_lang_code', 1, 'https://ror.org/037jwt041 Clover Seed (China) 高華種子'), (67748, 'https://ror.org/037mxx572', 'no_lang_code', 1, 'https://ror.org/037mxx572 Aridhia (United Kingdom)'), (67749, 'https://ror.org/037nsm974', 'no_lang_code', 1, 'https://ror.org/037nsm974 Landcatch (United Kingdom)'), (67750, 'https://ror.org/037p5ng50', 'en', 1, 'https://ror.org/037p5ng50 Bolivian Forest Research Institute Instituto Boliviano de Investigación Forestal'), (67751, 'https://ror.org/037qebp73', 'no_lang_code', 1, 'https://ror.org/037qebp73 Ram-Chem (China)'), (67752, 'https://ror.org/037qvtm25', 'de', 1, 'https://ror.org/037qvtm25 Hessisches Kultusministerium'), (67753, 'https://ror.org/037sg1398', 'no_lang_code', 1, 'https://ror.org/037sg1398 Nymbl Science (United Kingdom)'), (67754, 'https://ror.org/037t5k894', 'en', 1, 'https://ror.org/037t5k894 Russian Research and Design Institute of Titanium and Magnesium РОССИЙСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ И ПРОЕКТНЫЙ ИНСТИТУТ ТИТАНА И МАГНИЯ'), (67755, 'https://ror.org/037tmrg70', 'no_lang_code', 1, 'https://ror.org/037tmrg70 Anton Paar (United Kingdom)'), (67756, 'https://ror.org/037wd0n12', 'no_lang_code', 1, 'https://ror.org/037wd0n12 Farm Energy and Control Services (United Kingdom)'), (67757, 'https://ror.org/037xt3w76', 'en', 1, 'https://ror.org/037xt3w76 Bicester Town Council'), (67758, 'https://ror.org/037z0v527', 'en', 1, 'https://ror.org/037z0v527 Institute of Oceanographic Instrumentation 山东省科学院海洋仪器仪表研究所 地址'), (67759, 'https://ror.org/038105c92', 'no_lang_code', 1, 'https://ror.org/038105c92 Marine Projects (Poland)'), (67760, 'https://ror.org/0381np041', 'en', 1, 'https://ror.org/0381np041 Kent and Medway NHS and Social Care Partnership Trust'), (67761, 'https://ror.org/0384jmk48', 'en', 1, 'https://ror.org/0384jmk48 Citizens Advice'), (67762, 'https://ror.org/038631f57', 'en', 1, 'https://ror.org/038631f57 Ministry of Economy of the Republic of Bulgaria Министерство на икономиката на Република България'), (67763, 'https://ror.org/0386abs67', 'no_lang_code', 1, 'https://ror.org/0386abs67 Automatic Data Processing (United States)'), (67764, 'https://ror.org/03884sd33', 'en', 1, 'https://ror.org/03884sd33 Rape Crisis Network Ireland'), (67765, 'https://ror.org/03890pj38', 'no_lang_code', 1, 'https://ror.org/03890pj38 Axiom (China)'), (67766, 'https://ror.org/038dn8481', 'en', 1, 'https://ror.org/038dn8481 United Nations Economic Commission for Europe'), (67767, 'https://ror.org/038j07x88', 'en', 1, 'https://ror.org/038j07x88 Dr. Vitthalrao Vikhe Patil Foundation’s Medical College'); INSERT INTO `rors` VALUES (67768, 'https://ror.org/038jzt119', 'en', 1, 'https://ror.org/038jzt119 Scientific Research Institute "Kulon" Научно-исследовательскому институту «Кулон»'), (67769, 'https://ror.org/038ksq075', 'no_lang_code', 1, 'https://ror.org/038ksq075 Niiteplopribor (Russia) НИИТеплоприбор'), (67770, 'https://ror.org/038m16120', 'en', 1, 'https://ror.org/038m16120 Military Academy of Strategic Missile Forces named after Peter the Great ВОЕННАЯ АКАДЕМИЯ РВСН ИМЕНИ ПЕТРА ВЕЛИКОГО'), (67771, 'https://ror.org/038m7b802', 'no_lang_code', 1, 'https://ror.org/038m7b802 Pandora (United States)'), (67772, 'https://ror.org/038ntq021', 'en', 1, 'https://ror.org/038ntq021 European Biodiesel Board'), (67773, 'https://ror.org/038nz7z72', 'en', 1, 'https://ror.org/038nz7z72 Ballymun Job Centre'), (67774, 'https://ror.org/038pmte38', 'no_lang_code', 1, 'https://ror.org/038pmte38 AC Goatham & Son (United Kingdom)'), (67775, 'https://ror.org/038ravk06', 'en', 1, 'https://ror.org/038ravk06 Abraham Lincoln Bicentennial Foundation'), (67776, 'https://ror.org/038rd9v60', 'no_lang_code', 1, 'https://ror.org/038rd9v60 Janssen (Germany)'), (67777, 'https://ror.org/038smd132', 'no_lang_code', 1, 'https://ror.org/038smd132 HiLight Semiconductor (United Kingdom)'), (67778, 'https://ror.org/038t6hw46', 'en', 1, 'https://ror.org/038t6hw46 Al Emadi Hospital مستشفى العمادي'), (67779, 'https://ror.org/038vs8686', 'en', 1, 'https://ror.org/038vs8686 Iraqi Association for Psychotherapy الجمعية العراقية للعلاج النفسي'), (67780, 'https://ror.org/038vtqc18', 'no_lang_code', 1, 'https://ror.org/038vtqc18 Acoustic Arc (China) 声波国际有限公司'), (67781, 'https://ror.org/038wddm10', 'en', 1, 'https://ror.org/038wddm10 Gyeongnam Provincial Geochang College 경남도립거창대학'), (67782, 'https://ror.org/038wqs208', 'en', 1, 'https://ror.org/038wqs208 National Agency for Education Skolverket'), (67783, 'https://ror.org/038wz3345', 'en', 1, 'https://ror.org/038wz3345 European Association of Development Research and Training Institutes association Européenne des Instituts de Recherche et de Formation en Matière de Développement'), (67784, 'https://ror.org/038xegj08', 'no_lang_code', 1, 'https://ror.org/038xegj08 TPC (China)'), (67785, 'https://ror.org/038z8c944', 'en', 1, 'https://ror.org/038z8c944 WiseEuropa'), (67786, 'https://ror.org/03900bm02', 'en', 1, 'https://ror.org/03900bm02 Institute for Public Relations'), (67787, 'https://ror.org/0391e9v93', 'no_lang_code', 1, 'https://ror.org/0391e9v93 Minch Malt (Ireland)'), (67788, 'https://ror.org/0391pty66', 'no_lang_code', 1, 'https://ror.org/0391pty66 Hunan Xiangdian Test Research Institute (China) 湖南湘电测试研究所'), (67789, 'https://ror.org/0392kk689', 'en', 1, 'https://ror.org/0392kk689 Eisenbahn-Bundesamt Federal Railway Authority'), (67790, 'https://ror.org/0393akr92', 'no_lang_code', 1, 'https://ror.org/0393akr92 Buijs Advice and Consultancy (Netherlands)'), (67791, 'https://ror.org/0393kd737', 'en', 1, 'https://ror.org/0393kd737 Ministry of Health'), (67792, 'https://ror.org/03945f733', 'no_lang_code', 1, 'https://ror.org/03945f733 Autolus (United Kingdom)'), (67793, 'https://ror.org/0394d5w22', 'no_lang_code', 1, 'https://ror.org/0394d5w22 SMA Magnetics (Poland)'), (67794, 'https://ror.org/0394wsn58', 'no_lang_code', 1, 'https://ror.org/0394wsn58 Harbin Electric Corporation (China) 哈尔滨电气集团有限公司'), (67795, 'https://ror.org/0398c6388', 'no_lang_code', 1, 'https://ror.org/0398c6388 BGT Materials (United Kingdom)'), (67796, 'https://ror.org/03994m394', 'no_lang_code', 1, 'https://ror.org/03994m394 Tech Valley (South Korea) 테크밸리'), (67797, 'https://ror.org/039ac0z09', 'en', 1, 'https://ror.org/039ac0z09 Social Justice Ireland'), (67798, 'https://ror.org/039dc8c42', 'en', 1, 'https://ror.org/039dc8c42 Korean Academy of Speech-Language Pathology and Audiology'), (67799, 'https://ror.org/039e7pd44', 'no_lang_code', 1, 'https://ror.org/039e7pd44 Pharmaceutical Product Development (India)'), (67800, 'https://ror.org/039exhw19', 'no_lang_code', 1, 'https://ror.org/039exhw19 Federalimentare (Italy)'), (67801, 'https://ror.org/039ezad24', 'en', 1, 'https://ror.org/039ezad24 Child, Adolescent and Family Mental Health'), (67802, 'https://ror.org/039grkz57', 'no_lang_code', 1, 'https://ror.org/039grkz57 The Behaviouralist (United Kingdom)'), (67803, 'https://ror.org/039jt6988', 'en', 1, 'https://ror.org/039jt6988 Ministrstvo za infrastrukturo Ministry of Infrastructure'), (67804, 'https://ror.org/039k9vd92', 'en', 1, 'https://ror.org/039k9vd92 Ministry of Education and Culture Υπουργείο Παιδείας και Πολιτισμού'), (67805, 'https://ror.org/039me2320', 'no_lang_code', 1, 'https://ror.org/039me2320 ValiRx (United Kingdom)'), (67806, 'https://ror.org/039n5wp46', 'no_lang_code', 1, 'https://ror.org/039n5wp46 Qinhuangdao Glass Industry Research and Design Institute (China) 秦皇岛玻璃工业研究设计院有限公司'), (67807, 'https://ror.org/039p5as73', 'en', 1, 'https://ror.org/039p5as73 NHS Eastern Cheshire Clinical Commissioning Group'), (67808, 'https://ror.org/039t1kw64', 'en', 1, 'https://ror.org/039t1kw64 The Korean Society for Culture and Arts Education Studies 한국 문화 예술 교육 학회'), (67809, 'https://ror.org/039vb7e80', 'no_lang_code', 1, 'https://ror.org/039vb7e80 Lars Lighting (Poland)'), (67810, 'https://ror.org/039vmy627', 'en', 1, 'https://ror.org/039vmy627 Lawn Tennis Association'), (67811, 'https://ror.org/039vtca92', 'en', 1, 'https://ror.org/039vtca92 Research And Design Institute of Electric Coal Products НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ И ПРОЕКТНО-ТЕХНОЛОГИЧЕСКИЙ ИНСТИТУТ ЭЛЕКТРОУГОЛЬНЫХ ИЗДЕЛИЙ'), (67812, 'https://ror.org/039vzrf55', 'no_lang_code', 1, 'https://ror.org/039vzrf55 Shenzhen Institute of Building Research (China) 深圳市建筑科学研究院股份有限公司'), (67813, 'https://ror.org/039wxfg33', 'en', 1, 'https://ror.org/039wxfg33 The Association for Historical Studies on Korean National Movement 한국민족운동사학회'), (67814, 'https://ror.org/039xg1481', 'no_lang_code', 1, 'https://ror.org/039xg1481 Gateway (United Kingdom)'), (67815, 'https://ror.org/039zvkm26', 'en', 1, 'https://ror.org/039zvkm26 Central Scientific Research Institute of Geology of Non-metallic Minerals'), (67816, 'https://ror.org/03a0vt050', 'en', 1, 'https://ror.org/03a0vt050 Institute of Inorganic Methodologies and Plasmas Istituto di Metodologie Inorganiche e dei Plasmi'), (67817, 'https://ror.org/03a2tkf74', 'no_lang_code', 1, 'https://ror.org/03a2tkf74 Zhejiang Energy Group (China) 浙江省能源集团有限公司'), (67818, 'https://ror.org/03a3t8q93', 'en', 1, 'https://ror.org/03a3t8q93 The Hearing Foundation of Canada'), (67819, 'https://ror.org/03a53n517', 'en', 1, 'https://ror.org/03a53n517 Jeju participation environmental solidarity 제주 참여 환경 연대'), (67820, 'https://ror.org/03acf5r27', 'no_lang_code', 1, 'https://ror.org/03acf5r27 Siemens (Russia) Сименс'), (67821, 'https://ror.org/03acn2870', 'en', 1, 'https://ror.org/03acn2870 Executive Agency Electronic Communication Networks and Information Systems'), (67822, 'https://ror.org/03ad6jw85', 'en', 1, 'https://ror.org/03ad6jw85 State Research Institute of Highly Pure Biopreparations Государственный научно‑исследовательский институт особо чистых биопрепаратов'), (67823, 'https://ror.org/03aearw79', 'en', 1, 'https://ror.org/03aearw79 Devon Guild of Craftsmen'), (67824, 'https://ror.org/03aeycp46', 'no_lang_code', 1, 'https://ror.org/03aeycp46 Meyer (China) 美亞廚具旗艦店'), (67825, 'https://ror.org/03ag4ep03', 'no_lang_code', 1, 'https://ror.org/03ag4ep03 Pixel Magic Systems (China)'), (67826, 'https://ror.org/03agg4249', 'en', 1, 'https://ror.org/03agg4249 Amnesty International Ireland'), (67827, 'https://ror.org/03agtxq40', 'en', 1, 'https://ror.org/03agtxq40 Genetic Factors for Osteoporosis Consortium'), (67828, 'https://ror.org/03an6e694', 'en', 1, 'https://ror.org/03an6e694 Myeongji Chunhye Hospital 명지춘혜병원'), (67829, 'https://ror.org/03anhbw86', 'en', 1, 'https://ror.org/03anhbw86 Regional Energy Agency Регионална енергийна агенция - Русе'), (67830, 'https://ror.org/03antem13', 'fr', 1, 'https://ror.org/03antem13 Association Québécoise des Enseignantes et des Enseignants du Primaire'), (67831, 'https://ror.org/03aqaa732', 'en', 1, 'https://ror.org/03aqaa732 Yunnan Machinery Research and Design Institute 云南省机械研究设计院'), (67832, 'https://ror.org/03aqz1r62', 'en', 1, 'https://ror.org/03aqz1r62 British High Commission Nairobi'), (67833, 'https://ror.org/03artrq79', 'en', 1, 'https://ror.org/03artrq79 Association of Western Art History 한국서양미술사학회 회'), (67834, 'https://ror.org/03asfqn77', 'en', 1, 'https://ror.org/03asfqn77 Zhoukou City Academy of Agricultural Sciences 周口市农业科学院'), (67835, 'https://ror.org/03aw27j10', 'en', 1, 'https://ror.org/03aw27j10 Contact Theatre'), (67836, 'https://ror.org/03awp8j69', 'en', 1, 'https://ror.org/03awp8j69 Galway Education Centre'), (67837, 'https://ror.org/03awxm844', 'en', 1, 'https://ror.org/03awxm844 Saint-Petersburg I. I. Dzhanelidze Research Institute of Emergency Medicine Санкт-Петербург И. И. Джанелидзе НИИ экстренной медицины'), (67838, 'https://ror.org/03ax0vt93', 'en', 1, 'https://ror.org/03ax0vt93 Korea Society of Strategic Management 한국전략경영학회'), (67839, 'https://ror.org/03axtnh73', 'en', 1, 'https://ror.org/03axtnh73 Qatar Green Building Council'), (67840, 'https://ror.org/03b092790', 'no_lang_code', 1, 'https://ror.org/03b092790 NeuMed (United States)'), (67841, 'https://ror.org/03b0cj417', 'no_lang_code', 1, 'https://ror.org/03b0cj417 Almaz-Antey (Russia) Концерн ВКО "Алмаз-Антей'), (67842, 'https://ror.org/03b2atp15', 'en', 1, 'https://ror.org/03b2atp15 Shaanxi Coal Chemical Industry Technology Research Institute 陕西煤业化工技术研究院有限责任公司'), (67843, 'https://ror.org/03b2mxf68', 'en', 1, 'https://ror.org/03b2mxf68 European Transport Safety Council'), (67844, 'https://ror.org/03b3aa119', 'en', 1, 'https://ror.org/03b3aa119 Quebec Automobile Insurance Corporation Société de l''Assurance Automobile du Québec'), (67845, 'https://ror.org/03b58r953', 'en', 1, 'https://ror.org/03b58r953 Bộ Lao động, Thương binh và Xã hội Ministry of Labour, Invalids and Social Affairs'), (67846, 'https://ror.org/03b5k1h67', 'en', 1, 'https://ror.org/03b5k1h67 Guangdong Food Industry Research Institute 广东省食品工业研究所'), (67847, 'https://ror.org/03b68tz43', 'en', 1, 'https://ror.org/03b68tz43 Institut für Bau- Umwelt- und Solarforschung Institute for Construction, Environmental and Solar Research'), (67848, 'https://ror.org/03b6dwx17', 'no_lang_code', 1, 'https://ror.org/03b6dwx17 Tricomed (Poland)'), (67849, 'https://ror.org/03b7av255', 'en', 1, 'https://ror.org/03b7av255 CMC Research Institutes'), (67850, 'https://ror.org/03b7gey53', 'no_lang_code', 1, 'https://ror.org/03b7gey53 Tianma Microelectronics (China) 天 马微电子股份有限公司'), (67851, 'https://ror.org/03b8swz18', 'de', 1, 'https://ror.org/03b8swz18 Thüringer Ministerium für Umwelt, Energie und Naturschutz'), (67852, 'https://ror.org/03b9tt486', 'en', 1, 'https://ror.org/03b9tt486 Ananthapuri Hospitals and Research Institute'), (67853, 'https://ror.org/03baef921', 'no_lang_code', 1, 'https://ror.org/03baef921 Kwangdong Pharmaceutical 광동제약'), (67854, 'https://ror.org/03bd8jh67', 'en', 1, 'https://ror.org/03bd8jh67 Vancouver Coastal Health'), (67855, 'https://ror.org/03bdrtb23', 'en', 1, 'https://ror.org/03bdrtb23 Wuxi Vocational Institute of Commerce 无锡商业职业技术学院'), (67856, 'https://ror.org/03bftdb85', 'en', 1, 'https://ror.org/03bftdb85 Dr. B.R.K.R. Government Ayurvedic College'), (67857, 'https://ror.org/03bhmb905', 'no_lang_code', 1, 'https://ror.org/03bhmb905 Amgen (Belgium)'), (67858, 'https://ror.org/03bkmgf03', 'en', 1, 'https://ror.org/03bkmgf03 Guangdong Hydropower Planning & Design Institute'), (67859, 'https://ror.org/03bmc1y32', 'en', 1, 'https://ror.org/03bmc1y32 Hope and Homes for Children'), (67860, 'https://ror.org/03bmmqp43', 'en', 1, 'https://ror.org/03bmmqp43 Cell Stress Discoveries'), (67861, 'https://ror.org/03bn62179', 'en', 1, 'https://ror.org/03bn62179 Vilnius Higher Command School of Radioelectronics Air Defense Вильнюсского высшего командного училища радиоэлектроники ПВО'), (67862, 'https://ror.org/03bpcr835', 'en', 1, 'https://ror.org/03bpcr835 Tianjin Fire Research Institute 公安部天津消防研究所简介'), (67863, 'https://ror.org/03bsery98', 'en', 1, 'https://ror.org/03bsery98 Bundesministerium für Soziales, Gesundheit, Pflege und Konsumentenschutz Federal Ministry of Social Affairs, Health, Care and Consumer Protection'), (67864, 'https://ror.org/03bw4fh67', 'no_lang_code', 1, 'https://ror.org/03bw4fh67 Zhejiang Seahead Ship Design And Research Institute (China) 浙江欣海船舶设计研究院有限公司'), (67865, 'https://ror.org/03c0kvc14', 'en', 1, 'https://ror.org/03c0kvc14 Kavli Energy NanoScience Institute'), (67866, 'https://ror.org/03c1m8990', 'no_lang_code', 1, 'https://ror.org/03c1m8990 Institute Tsvetmetobrabotka Институт Цветметобработка'), (67867, 'https://ror.org/03c4brc68', 'no_lang_code', 1, 'https://ror.org/03c4brc68 Nantong Tongbo Equipment Installation Engineering (China) 南通通博设备安装工程有限公司'), (67868, 'https://ror.org/03c4tjd54', 'no_lang_code', 1, 'https://ror.org/03c4tjd54 Neonutra (South Korea)'), (67869, 'https://ror.org/03c57q417', 'en', 1, 'https://ror.org/03c57q417 Hong Kong Policy Research Institute 香港願景'), (67870, 'https://ror.org/03c5c0a39', 'no_lang_code', 1, 'https://ror.org/03c5c0a39 Genomics Medicine (Ireland)'), (67871, 'https://ror.org/03c6vy245', 'en', 1, 'https://ror.org/03c6vy245 Action for Children'), (67872, 'https://ror.org/03ca37b25', 'en', 1, 'https://ror.org/03ca37b25 Hong Kong Institute of Biotechnology 香港生物科技学院'), (67873, 'https://ror.org/03cb4jc22', 'en', 1, 'https://ror.org/03cb4jc22 SCIVP of Veterinary Medicinal Products and Feed Additives Державний науково-дослідний контрольний інститут ветеринарних препаратів та кормових добавок.'), (67874, 'https://ror.org/03cdkd641', 'en', 1, 'https://ror.org/03cdkd641 Institute of Social and Economic Studies of Population'), (67875, 'https://ror.org/03cej8561', 'en', 1, 'https://ror.org/03cej8561 Ministarstvo unutarnjih poslova Republike Hrvatske Ministry of the Interior'), (67876, 'https://ror.org/03cg2g747', 'en', 1, 'https://ror.org/03cg2g747 Korea Counseling Psychology Association 한국 상담 심리 학회'), (67877, 'https://ror.org/03chexd92', 'es', 1, 'https://ror.org/03chexd92 Clinica Rotger'), (67878, 'https://ror.org/03cky5d09', 'no_lang_code', 1, 'https://ror.org/03cky5d09 Amgen (Australia)'), (67879, 'https://ror.org/03cmpa045', 'en', 1, 'https://ror.org/03cmpa045 Altai Scientific Research Institute of Machine Building Technology Алтайский научно-исследовательский институт технологии машиностроения'), (67880, 'https://ror.org/03cmt3942', 'en', 1, 'https://ror.org/03cmt3942 National Museum New Delhi'), (67881, 'https://ror.org/03cterj73', 'no_lang_code', 1, 'https://ror.org/03cterj73 Aquila Bioscience (Ireland)'), (67882, 'https://ror.org/03cthg118', 'en', 1, 'https://ror.org/03cthg118 Istituto di ricerca Santa Marinella Santa Marinella Research Institute'), (67883, 'https://ror.org/03cv88167', 'en', 1, 'https://ror.org/03cv88167 Korea Social Science Data Archive 한국사회과학자료원'), (67884, 'https://ror.org/03cvbjc43', 'it', 1, 'https://ror.org/03cvbjc43 I.R.C.C.S. Oasi Maria SS'), (67885, 'https://ror.org/03cvn7e55', 'en', 1, 'https://ror.org/03cvn7e55 Women In Technology International'), (67886, 'https://ror.org/03cw0ad25', 'no_lang_code', 1, 'https://ror.org/03cw0ad25 Beijing Urban Construction Design & Development Group (China)'), (67887, 'https://ror.org/03cwgd676', 'en', 1, 'https://ror.org/03cwgd676 National Information Standards Organization'), (67888, 'https://ror.org/03cyrwm25', 'en', 1, 'https://ror.org/03cyrwm25 National Council on Family Relations'), (67889, 'https://ror.org/03cz3xh96', 'lt', 1, 'https://ror.org/03cz3xh96 Marijampolė municipality, Marijampolės savivaldybė'), (67890, 'https://ror.org/03czddz67', 'en', 1, 'https://ror.org/03czddz67 Gasóga na hÉireann Scouting Ireland'), (67891, 'https://ror.org/03cznfh76', 'en', 1, 'https://ror.org/03cznfh76 London Mathematical Laboratory'), (67892, 'https://ror.org/03d1xjg58', 'en', 1, 'https://ror.org/03d1xjg58 William Osler Health System'), (67893, 'https://ror.org/03d3d5f32', 'en', 1, 'https://ror.org/03d3d5f32 Kyungmin University 경민대학교'), (67894, 'https://ror.org/03d3w4k14', 'en', 1, 'https://ror.org/03d3w4k14 Azərbaycan Respublikasının Səhiyyə Nazirliyi Ministry of Healthcare'), (67895, 'https://ror.org/03d4vn886', 'it', 1, 'https://ror.org/03d4vn886 Consorzio Mipa'), (67896, 'https://ror.org/03d6pk735', 'en', 1, 'https://ror.org/03d6pk735 World Rugby'), (67897, 'https://ror.org/03d73se48', 'no_lang_code', 1, 'https://ror.org/03d73se48 EC Systems (Poland)'), (67898, 'https://ror.org/03d8xcp24', 'en', 1, 'https://ror.org/03d8xcp24 VA Afanasyev Research Institute of Fur-breeding and Rabbit breeding'), (67899, 'https://ror.org/03d9hbb17', 'en', 1, 'https://ror.org/03d9hbb17 All-Russian Research Institute of Brewing, Non-Alcoholic and Wine Industry Всероссийский научно-исследовательский Институт Пивоваренной, Безалкогольной И Винодельческой Промышленности'), (67900, 'https://ror.org/03d9yvx07', 'no_lang_code', 1, 'https://ror.org/03d9yvx07 Medinstill (United States)'), (67901, 'https://ror.org/03ddkyw71', 'en', 1, 'https://ror.org/03ddkyw71 Bulgarian Food Safety Agency Българска Агенция по Безопасност на Храните'), (67902, 'https://ror.org/03dhkf841', 'no_lang_code', 1, 'https://ror.org/03dhkf841 Hangzhou West-Lake Fountain Installation Serials (China) 杭州西湖喷泉设备成套有限公司'), (67903, 'https://ror.org/03djtgh02', 'en', 1, 'https://ror.org/03djtgh02 Primary Health Care مؤسسة الرعاية الصحية الأولية'), (67904, 'https://ror.org/03dkatp24', 'no_lang_code', 1, 'https://ror.org/03dkatp24 Longchang Group (China)'), (67905, 'https://ror.org/03dkhv024', 'en', 1, 'https://ror.org/03dkhv024 Korean Cinema Association 한국 영화 협회'), (67906, 'https://ror.org/03dmmx952', 'en', 1, 'https://ror.org/03dmmx952 Israel-Europe R&D Directorate'), (67907, 'https://ror.org/03dn9ew70', 'en', 1, 'https://ror.org/03dn9ew70 WAMITAB'), (67908, 'https://ror.org/03dnebc81', 'en', 1, 'https://ror.org/03dnebc81 Bundesverband der Deutschen Volksbanken und Raiffeisenbanken National Association of German Cooperative Bank'), (67909, 'https://ror.org/03dnk5950', 'no_lang_code', 1, 'https://ror.org/03dnk5950 Canberra (United Kingdom)'), (67910, 'https://ror.org/03dnkwm40', 'no_lang_code', 1, 'https://ror.org/03dnkwm40 Anacail (United Kingdom)'), (67911, 'https://ror.org/03dnqre85', 'no_lang_code', 1, 'https://ror.org/03dnqre85 FireEye (United States)'), (67912, 'https://ror.org/03dp0nd82', 'en', 1, 'https://ror.org/03dp0nd82 British Board of Agrément'), (67913, 'https://ror.org/03dpx8939', 'no_lang_code', 1, 'https://ror.org/03dpx8939 Bayer (South Korea) 바이엘'), (67914, 'https://ror.org/03drbv102', 'pt', 1, 'https://ror.org/03drbv102 Escola de Negócios e Administração'), (67915, 'https://ror.org/03ds52424', 'no_lang_code', 1, 'https://ror.org/03ds52424 Electromechanical Device Installation (China) 机电设备安装有限公司'), (67916, 'https://ror.org/03dt4rv96', 'en', 1, 'https://ror.org/03dt4rv96 Korean Society for Emotion and Sensibility 한국감성과학회'), (67917, 'https://ror.org/03dtb8870', 'no_lang_code', 1, 'https://ror.org/03dtb8870 Speechmatics (United Kingdom)'), (67918, 'https://ror.org/03dvyec47', 'no_lang_code', 1, 'https://ror.org/03dvyec47 Lambda Films (United Kingdom)'), (67919, 'https://ror.org/03dyavz10', 'en', 1, 'https://ror.org/03dyavz10 Institute for National Security Strategy 국가안보전략연구원'), (67920, 'https://ror.org/03dys8z83', 'no_lang_code', 1, 'https://ror.org/03dys8z83 Bexel (South Korea) 벡셀'), (67921, 'https://ror.org/03dzbma55', 'en', 1, 'https://ror.org/03dzbma55 Western Development Commission'), (67922, 'https://ror.org/03dzmbv89', 'en', 1, 'https://ror.org/03dzmbv89 Cambridgeshire County Council'), (67923, 'https://ror.org/03e0kkv22', 'fr', 1, 'https://ror.org/03e0kkv22 Office des Personnes Handicapées du Québec'), (67924, 'https://ror.org/03e14yd37', 'en', 1, 'https://ror.org/03e14yd37 Korea Christian Educational Information Society 기독교교육정보학회'), (67925, 'https://ror.org/03e3kzq14', 'no_lang_code', 1, 'https://ror.org/03e3kzq14 Hubbard Products (United Kingdom)'), (67926, 'https://ror.org/03e3mtv29', 'en', 1, 'https://ror.org/03e3mtv29 Frank and Rosemary Iovieno Caring for Children Foundation'), (67927, 'https://ror.org/03e6wzs70', 'no_lang_code', 1, 'https://ror.org/03e6wzs70 Unisen Group (China)'), (67928, 'https://ror.org/03e8v6h48', 'en', 1, 'https://ror.org/03e8v6h48 The Korean Society for Microbiology and Biotechnology 한국미생물생명공학회'), (67929, 'https://ror.org/03e92b619', 'en', 1, 'https://ror.org/03e92b619 3-й Центральный научно-исследовательский институт Минобороны России 3rd Central Research Institute of the Russian Defence Ministry'), (67930, 'https://ror.org/03e9p3c51', 'no_lang_code', 1, 'https://ror.org/03e9p3c51 Boehringer Ingelheim (South Korea) 한국베링거인겔하임'), (67931, 'https://ror.org/03ec9a810', 'en', 1, 'https://ror.org/03ec9a810 Mahatma Gandhi Mission''s Dental College and Hospital मजीएम डेंटल कॉलेज अँड हॉस्पिटल'), (67932, 'https://ror.org/03eewsq17', 'no_lang_code', 1, 'https://ror.org/03eewsq17 DNEG (United Kingdom)'), (67933, 'https://ror.org/03efra385', 'no_lang_code', 1, 'https://ror.org/03efra385 Manchurian Society 만주 사회'), (67934, 'https://ror.org/03eg3xh26', 'no_lang_code', 1, 'https://ror.org/03eg3xh26 Bleepbleeps (United Kingdom)'), (67935, 'https://ror.org/03egtq807', 'en', 1, 'https://ror.org/03egtq807 Korean Otological Society 대한이과학회'), (67936, 'https://ror.org/03eh9sb92', 'en', 1, 'https://ror.org/03eh9sb92 Historians Against Slavery'), (67937, 'https://ror.org/03ej4ab68', 'no_lang_code', 1, 'https://ror.org/03ej4ab68 Partron (South Korea) 파트론'), (67938, 'https://ror.org/03ekz9c12', 'no_lang_code', 1, 'https://ror.org/03ekz9c12 Guizhou Winstar Hydraulic Transmission Machinery (China) 贵州凯星液力传动机械有限公司'), (67939, 'https://ror.org/03emyb266', 'en', 1, 'https://ror.org/03emyb266 Active Aging Canada'), (67940, 'https://ror.org/03enb9971', 'en', 1, 'https://ror.org/03enb9971 Korean International Maritime Law Association 한국해사법학회'), (67941, 'https://ror.org/03ep0t884', 'no_lang_code', 1, 'https://ror.org/03ep0t884 ANGA Mechanical Seals (Poland) ANGA Uszczelnienia Mechaniczne'), (67942, 'https://ror.org/03epkyk81', 'en', 1, 'https://ror.org/03epkyk81 Kahnawake Education Center'), (67943, 'https://ror.org/03eszxk44', 'en', 1, 'https://ror.org/03eszxk44 Berkeley-Charleston-Dorchester Council of Governments'), (67944, 'https://ror.org/03ew4ty82', 'no_lang_code', 1, 'https://ror.org/03ew4ty82 Celiko (Poland)'), (67945, 'https://ror.org/03ey31514', 'no_lang_code', 1, 'https://ror.org/03ey31514 CliniRx (India)'), (67946, 'https://ror.org/03eyba682', 'no_lang_code', 1, 'https://ror.org/03eyba682 3DX-Ray (United Kingdom)'), (67947, 'https://ror.org/03f1dy734', 'en', 1, 'https://ror.org/03f1dy734 Korean Society of Mathematical Education 사단법인 한국수학교육학회 정관'), (67948, 'https://ror.org/03f20tk20', 'no_lang_code', 1, 'https://ror.org/03f20tk20 Pixelworks (China)'), (67949, 'https://ror.org/03f2t9x29', 'en', 1, 'https://ror.org/03f2t9x29 Research Institute of Semiconductor Devices Научно-исследовательский институт полупроводниковых приборов'), (67950, 'https://ror.org/03f3afg04', 'en', 1, 'https://ror.org/03f3afg04 Uttarakhand Ayurved University'), (67951, 'https://ror.org/03f53yd09', 'fr', 1, 'https://ror.org/03f53yd09 Certifer'), (67952, 'https://ror.org/03f5qdn26', 'pt', 1, 'https://ror.org/03f5qdn26 Fundace, Fundação para Pesquisa e Desenvolvimento da Administração, Contabilidade e Economia'), (67953, 'https://ror.org/03f617c76', 'no_lang_code', 1, 'https://ror.org/03f617c76 ASD Technology (China)'), (67954, 'https://ror.org/03f668467', 'no_lang_code', 1, 'https://ror.org/03f668467 Supermicro (United States)'), (67955, 'https://ror.org/03fbzmy04', 'no_lang_code', 1, 'https://ror.org/03fbzmy04 22q11 Ireland'), (67956, 'https://ror.org/03fc5a179', 'no_lang_code', 1, 'https://ror.org/03fc5a179 BTM Cluster (Poland)'), (67957, 'https://ror.org/03fcc9n48', 'no_lang_code', 1, 'https://ror.org/03fcc9n48 Celbius (United Kingdom)'), (67958, 'https://ror.org/03fdkrb80', 'en', 1, 'https://ror.org/03fdkrb80 The Sociolinguistic Society of Korea 한국 사회 언어 학회'), (67959, 'https://ror.org/03feknn04', 'en', 1, 'https://ror.org/03feknn04 The Korean Society of Modern Chinese Literature 한국중국현대문학학회'), (67960, 'https://ror.org/03feqng50', 'en', 1, 'https://ror.org/03feqng50 Hopewell Fund'), (67961, 'https://ror.org/03ff82720', 'no_lang_code', 1, 'https://ror.org/03ff82720 Johnson Electric (China) 德昌電機控股有限公司'), (67962, 'https://ror.org/03ffr1d28', 'no_lang_code', 1, 'https://ror.org/03ffr1d28 Claims (India)'), (67963, 'https://ror.org/03fgnpp77', 'no_lang_code', 1, 'https://ror.org/03fgnpp77 Syneos Health (India)'), (67964, 'https://ror.org/03fgrnr69', 'en', 1, 'https://ror.org/03fgrnr69 Irish Penal Reform Trust'), (67965, 'https://ror.org/03fgw4s80', 'no_lang_code', 1, 'https://ror.org/03fgw4s80 Scientific Research Institute of Marine Systems (Russia) Научно-исследовательский институт морских систем'), (67966, 'https://ror.org/03fhvyq37', 'en', 1, 'https://ror.org/03fhvyq37 Korean Technical Management Institute 한국기술경영연구원'), (67967, 'https://ror.org/03fkhvq16', 'en', 1, 'https://ror.org/03fkhvq16 Desh Bhagat Ayurvedic College and Hospital'), (67968, 'https://ror.org/03fmdyk54', 'no_lang_code', 1, 'https://ror.org/03fmdyk54 Cutting & Wear (United Kingdom)'), (67969, 'https://ror.org/03fmpbg41', 'en', 1, 'https://ror.org/03fmpbg41 Reformed Graduate University'), (67970, 'https://ror.org/03fps1283', 'no_lang_code', 1, 'https://ror.org/03fps1283 Sky (United Kingdom)'), (67971, 'https://ror.org/03fqhrc68', 'no_lang_code', 1, 'https://ror.org/03fqhrc68 Verint Systems (United States)'), (67972, 'https://ror.org/03fqhsr33', 'no_lang_code', 1, 'https://ror.org/03fqhsr33 Breathing Buildings (United Kingdom)'), (67973, 'https://ror.org/03ft28352', 'no_lang_code', 1, 'https://ror.org/03ft28352 Innovation Performance Group (South Korea) 아이피그룹'), (67974, 'https://ror.org/03fvsys22', 'lt', 1, 'https://ror.org/03fvsys22 Jonavos Rajono Savivaldybė'), (67975, 'https://ror.org/03fvze758', 'en', 1, 'https://ror.org/03fvze758 Research Institute of Comprehensive Exploitation of Mineral Resources Институт проблем комплексного освоения недр РАН'), (67976, 'https://ror.org/03fxjr266', 'no_lang_code', 1, 'https://ror.org/03fxjr266 Impression Technologies (United Kingdom)'), (67977, 'https://ror.org/03fxqrk78', 'no_lang_code', 1, 'https://ror.org/03fxqrk78 AiSoft Technology (China)'), (67978, 'https://ror.org/03g01jm12', 'fr', 1, 'https://ror.org/03g01jm12 Institut Français de Séoul'), (67979, 'https://ror.org/03g45bs43', 'en', 1, 'https://ror.org/03g45bs43 The History of Korean Society 대중서사학회'), (67980, 'https://ror.org/03g4p4m13', 'en', 1, 'https://ror.org/03g4p4m13 Association Nationale Autochtone du Diabète National Aboriginal Diabetes Association'), (67981, 'https://ror.org/03g4zd952', 'no_lang_code', 1, 'https://ror.org/03g4zd952 Emag Serwis (Poland)'), (67982, 'https://ror.org/03g7k3c05', 'en', 1, 'https://ror.org/03g7k3c05 Art of Problem Solving Initiative'), (67983, 'https://ror.org/03g7p4332', 'no_lang_code', 1, 'https://ror.org/03g7p4332 Geologorazvedka (Russia) Геологоразведка'), (67984, 'https://ror.org/03g7px163', 'en', 1, 'https://ror.org/03g7px163 Blackrock Castle Observatory'), (67985, 'https://ror.org/03gaznv39', 'en', 1, 'https://ror.org/03gaznv39 Bundesministerium für Justiz Federal Ministry of Justice'), (67986, 'https://ror.org/03gb38m78', 'en', 1, 'https://ror.org/03gb38m78 Shanghai Tongji Urban Planning and Design Institute 上海同济城市规划设计研究院在同'), (67987, 'https://ror.org/03gh3xj41', 'en', 1, 'https://ror.org/03gh3xj41 Institut ekonomskih nauka Institute of Economic Sciences'), (67988, 'https://ror.org/03gkdzy47', 'en', 1, 'https://ror.org/03gkdzy47 Commission communautaire française French Community Commission'), (67989, 'https://ror.org/03gpgyd64', 'no_lang_code', 1, 'https://ror.org/03gpgyd64 GeneHarbor (China)'), (67990, 'https://ror.org/03gq7nj97', 'en', 1, 'https://ror.org/03gq7nj97 Community Action for Safe Alternatives'), (67991, 'https://ror.org/03gsqqb61', 'de', 1, 'https://ror.org/03gsqqb61 Institut für Soziale Infrastruktur'), (67992, 'https://ror.org/03gtecx53', 'en', 1, 'https://ror.org/03gtecx53 Commonwealth Secretariat'), (67993, 'https://ror.org/03gtgjs38', 'no_lang_code', 1, 'https://ror.org/03gtgjs38 Retraction (China)'), (67994, 'https://ror.org/03gtnj176', 'no_lang_code', 1, 'https://ror.org/03gtnj176 Diagnostic Sonar (United Kingdom)'), (67995, 'https://ror.org/03gwaxw53', 'en', 1, 'https://ror.org/03gwaxw53 Services Australia'), (67996, 'https://ror.org/03gwmvd28', 'en', 1, 'https://ror.org/03gwmvd28 The Caspian Scientific Research Institute of Arid Aarming Прикаспийский научно-исследовательский институт аридного земледелия'), (67997, 'https://ror.org/03gy09487', 'no_lang_code', 1, 'https://ror.org/03gy09487 CN Bio Innovations (United Kingdom)'), (67998, 'https://ror.org/03gyssm79', 'no_lang_code', 1, 'https://ror.org/03gyssm79 China Railway Construction Corporation (China) 中国铁路建设总公司'), (67999, 'https://ror.org/03gzkvf55', 'no_lang_code', 1, 'https://ror.org/03gzkvf55 PeopleBio (South Korea)'), (68000, 'https://ror.org/03h1fpd36', 'no_lang_code', 1, 'https://ror.org/03h1fpd36 Nubia Technology (China) 努比亞技術有限公司'), (68001, 'https://ror.org/03h2jvh82', 'no_lang_code', 1, 'https://ror.org/03h2jvh82 Amethyst Research (United Kingdom)'), (68002, 'https://ror.org/03h3tha15', 'en', 1, 'https://ror.org/03h3tha15 Chungbuk Provincial College 충북도립대학'), (68003, 'https://ror.org/03h65g504', 'no_lang_code', 1, 'https://ror.org/03h65g504 Advanced Blast & Ballistic Systems (United Kingdom)'), (68004, 'https://ror.org/03h6a8753', 'en', 1, 'https://ror.org/03h6a8753 Education and Early Childhood Development'), (68005, 'https://ror.org/03h8vnd21', 'no_lang_code', 1, 'https://ror.org/03h8vnd21 Mind the Gap Films (Ireland)'), (68006, 'https://ror.org/03h9jqz26', 'en', 1, 'https://ror.org/03h9jqz26 Free Legal Advice Centres'), (68007, 'https://ror.org/03h9pej87', 'no_lang_code', 1, 'https://ror.org/03h9pej87 Geranti (South Korea) 게란티'), (68008, 'https://ror.org/03har1q80', 'no_lang_code', 1, 'https://ror.org/03har1q80 Yelp (United States)'), (68009, 'https://ror.org/03har5c20', 'no_lang_code', 1, 'https://ror.org/03har5c20 Roszheldorproject (Russia) Росжелдорпроект'), (68010, 'https://ror.org/03hcmsw69', 'en', 1, 'https://ror.org/03hcmsw69 Cardiff Tourist Information Centre'), (68011, 'https://ror.org/03hebkk07', 'ga', 1, 'https://ror.org/03hebkk07 Áiseanna Tacaíochta'), (68012, 'https://ror.org/03hfst573', 'en', 1, 'https://ror.org/03hfst573 Arizona Secretary of State''s Office'), (68013, 'https://ror.org/03hhghr21', 'en', 1, 'https://ror.org/03hhghr21 The Korean Social Security Association 한국 사회 보장 협회'), (68014, 'https://ror.org/03hhzh088', 'no_lang_code', 1, 'https://ror.org/03hhzh088 C-Tex (United Kingdom)'), (68015, 'https://ror.org/03hmm9666', 'no_lang_code', 1, 'https://ror.org/03hmm9666 Tianjin Energy Investment Group (China) 天津能源投资集团有限公司'), (68016, 'https://ror.org/03hrca821', 'no_lang_code', 1, 'https://ror.org/03hrca821 Interplastik (Poland)'), (68017, 'https://ror.org/03ht1rb73', 'en', 1, 'https://ror.org/03ht1rb73 Aurous HealthCare'), (68018, 'https://ror.org/03ht6cj06', 'en', 1, 'https://ror.org/03ht6cj06 Bahrain Center for Strategic International and Energy Studies'), (68019, 'https://ror.org/03hw64936', 'no_lang_code', 1, 'https://ror.org/03hw64936 Campbell Soup (United States)'), (68020, 'https://ror.org/03hye4039', 'en', 1, 'https://ror.org/03hye4039 Federal Scientific Center of Physical Culture and Sports Всероссийский научно-исследовательский Институт Физической Культуры И Спорта'), (68021, 'https://ror.org/03j057g08', 'no_lang_code', 1, 'https://ror.org/03j057g08 Shenyang Academy of Environmental Sciences (China) 沈阳环境科学研究院'), (68022, 'https://ror.org/03j1pdd39', 'en', 1, 'https://ror.org/03j1pdd39 Shanghai Industrial Technology Institute 上海工业技术学院'), (68023, 'https://ror.org/03j3raf08', 'no_lang_code', 1, 'https://ror.org/03j3raf08 Medzone Healthcare (China)'), (68024, 'https://ror.org/03j7v1b32', 'en', 1, 'https://ror.org/03j7v1b32 Multiple Sclerosis Society of Ireland'), (68025, 'https://ror.org/03j8jac95', 'no_lang_code', 1, 'https://ror.org/03j8jac95 Norbain (United Kingdom)'), (68026, 'https://ror.org/03j9rnw13', 'en', 1, 'https://ror.org/03j9rnw13 The Korean Folklore Society 한국 민속 학회'), (68027, 'https://ror.org/03jfezp45', 'no_lang_code', 1, 'https://ror.org/03jfezp45 Parameter Space (Ireland)'), (68028, 'https://ror.org/03jgnzt20', 'no_lang_code', 1, 'https://ror.org/03jgnzt20 China Telecom (China) 中国电信'), (68029, 'https://ror.org/03jgxy838', 'en', 1, 'https://ror.org/03jgxy838 Institute of Reproductive Medicine রিপ্রোডাকটিভ মেডিসিন ইনস্টিটিউট'), (68030, 'https://ror.org/03jhs6a31', 'en', 1, 'https://ror.org/03jhs6a31 Institute for Community Living'), (68031, 'https://ror.org/03jm70514', 'en', 1, 'https://ror.org/03jm70514 Ministry of Foreign Affairs Министерство на външните работи'), (68032, 'https://ror.org/03jm8py90', 'en', 1, 'https://ror.org/03jm8py90 Dongbang Culture University 동방 문화 대학교'), (68033, 'https://ror.org/03jn38r85', 'en', 1, 'https://ror.org/03jn38r85 Collaborative Innovation Center of Quantum Matter 量子物质科学协同创新中心'), (68034, 'https://ror.org/03jnm8t41', 'no_lang_code', 1, 'https://ror.org/03jnm8t41 Alltech (Ireland)'), (68035, 'https://ror.org/03jpdh152', 'no_lang_code', 1, 'https://ror.org/03jpdh152 Well Synergy International (China)'), (68036, 'https://ror.org/03jpstz64', 'en', 1, 'https://ror.org/03jpstz64 Ministry of Science and Technology ກະຊວງວິທະຍາສາດ ແລະເຕັກໂນໂລຊີ'), (68037, 'https://ror.org/03jqpht28', 'no_lang_code', 1, 'https://ror.org/03jqpht28 Ferrovial (United Kingdom)'), (68038, 'https://ror.org/03jraf938', 'en', 1, 'https://ror.org/03jraf938 The Piegan Institute'), (68039, 'https://ror.org/03jrrs135', 'en', 1, 'https://ror.org/03jrrs135 National Disability Authority'), (68040, 'https://ror.org/03jswvp59', 'en', 1, 'https://ror.org/03jswvp59 Ministry for Health'), (68041, 'https://ror.org/03jt3fb13', 'en', 1, 'https://ror.org/03jt3fb13 BiofoodCRO (South Korea) 바이오푸드 CRO'), (68042, 'https://ror.org/03jw91041', 'no_lang_code', 1, 'https://ror.org/03jw91041 Jindal Naturecure Institute जिंदल नेचरचर इंस्टीट्यूट'), (68043, 'https://ror.org/03jwdnh41', 'no_lang_code', 1, 'https://ror.org/03jwdnh41 Arbro Pharmaceuticals (India)'), (68044, 'https://ror.org/03jyeqt59', 'no_lang_code', 1, 'https://ror.org/03jyeqt59 Korea Bio Solution (South Korea) 한국바이오솔루션'), (68045, 'https://ror.org/03jzw9k83', 'no_lang_code', 1, 'https://ror.org/03jzw9k83 Torrent Pharma (India)'), (68046, 'https://ror.org/03k3ymr68', 'en', 1, 'https://ror.org/03k3ymr68 Mental Health and Recovery Services Board of Seneca, Sandusky and Wyandot Counties'), (68047, 'https://ror.org/03k52at40', 'en', 1, 'https://ror.org/03k52at40 Academy of Philosophy 철학 아카데미'), (68048, 'https://ror.org/03k6gyz62', 'en', 1, 'https://ror.org/03k6gyz62 The Korean Association of Literature and Film 한국 문학 영화 학회'), (68049, 'https://ror.org/03k7e2020', 'no_lang_code', 1, 'https://ror.org/03k7e2020 Ironfly Technologies (China)'), (68050, 'https://ror.org/03k8nq416', 'en', 1, 'https://ror.org/03k8nq416 Asian Comparative Folklore Society 아시아 비교 민간 사회'), (68051, 'https://ror.org/03kb01078', 'en', 1, 'https://ror.org/03kb01078 Hong Kong Green Building Council 香港綠色建築議會'), (68052, 'https://ror.org/03kb9y492', 'en', 1, 'https://ror.org/03kb9y492 SDM College of Medical Science and Hospital ಎಸ್ ಡಿ ಎಮ್ ವೈದ್ಯಕೀಯ ಮಹಾವಿದ್ಯಾಲಯ ಮತ್ತು ಆಸ್ಪತ್ರೆ'), (68053, 'https://ror.org/03kcd5067', 'en', 1, 'https://ror.org/03kcd5067 Donggwon Science and Technology University 동원과학기술대학교'), (68054, 'https://ror.org/03kcfmk89', 'en', 1, 'https://ror.org/03kcfmk89 Suzhou Academy of Agricultural Sciences 苏州市农业科学院'), (68055, 'https://ror.org/03kgapk50', 'no_lang_code', 1, 'https://ror.org/03kgapk50 MAGJ Hospital'), (68056, 'https://ror.org/03kj2mz58', 'en', 1, 'https://ror.org/03kj2mz58 Hong Kong Far Infrared Rays Association 香港遠紅外線協會'), (68057, 'https://ror.org/03kjbs929', 'en', 1, 'https://ror.org/03kjbs929 Rural Payments Agency'), (68058, 'https://ror.org/03kjkfb75', 'no_lang_code', 1, 'https://ror.org/03kjkfb75 It’s Fresh (United Kingdom)'), (68059, 'https://ror.org/03kk81v06', 'en', 1, 'https://ror.org/03kk81v06 International Slavery Museum'), (68060, 'https://ror.org/03kke0n21', 'en', 1, 'https://ror.org/03kke0n21 Stockholm Environment Institute'), (68061, 'https://ror.org/03knart10', 'fr', 1, 'https://ror.org/03knart10 Agence France-Presse'), (68062, 'https://ror.org/03knd6b36', 'en', 1, 'https://ror.org/03knd6b36 Amnesty International'), (68063, 'https://ror.org/03kpa8902', 'en', 1, 'https://ror.org/03kpa8902 Coalition on Violence Against Women'), (68064, 'https://ror.org/03kq7m969', 'no_lang_code', 1, 'https://ror.org/03kq7m969 Advanced Innovative Engineering (United Kingdom)'), (68065, 'https://ror.org/03krv7d59', 'en', 1, 'https://ror.org/03krv7d59 All-Russian Research and Design Institute of Nuclear and Power Engineering Всероссийский научно-исследовательский и проектно-конструкторский институт атомного и энергетического машиностроения'), (68066, 'https://ror.org/03kt9pk73', 'en', 1, 'https://ror.org/03kt9pk73 Ionad Cearta Imirceach na hÉireann Migrant Rights Centre Ireland'), (68067, 'https://ror.org/03kx1j711', 'no_lang_code', 1, 'https://ror.org/03kx1j711 Future Voice System (Poland)'), (68068, 'https://ror.org/03kx7xv57', 'no_lang_code', 1, 'https://ror.org/03kx7xv57 Little Swan (China)'), (68069, 'https://ror.org/03kxtax58', 'en', 1, 'https://ror.org/03kxtax58 Sichuan Institute of Building Research 四川省建筑科学研究院'), (68070, 'https://ror.org/03kzhbn97', 'no_lang_code', 1, 'https://ror.org/03kzhbn97 Fotile (China) 方太'), (68071, 'https://ror.org/03m002728', 'no_lang_code', 1, 'https://ror.org/03m002728 Jiangsu Gaoke Applied Science Research Institute (China) 江苏高科应用科学研究院有限公司'), (68072, 'https://ror.org/03m0n3c07', 'it', 1, 'https://ror.org/03m0n3c07 Institute of Applied Mathematics and Information Technologies, Istituto di Matematica Applicata e Tecnologie Informatiche'), (68073, 'https://ror.org/03m3ca021', 'en', 1, 'https://ror.org/03m3ca021 RMIT Europe'), (68074, 'https://ror.org/03m3za047', 'en', 1, 'https://ror.org/03m3za047 Pecan Street'), (68075, 'https://ror.org/03m6cnv16', 'no_lang_code', 1, 'https://ror.org/03m6cnv16 NTST Forestry Machine Manufacture Installation (China) NTST 林业机械制造安装'), (68076, 'https://ror.org/03m7d0s87', 'en', 1, 'https://ror.org/03m7d0s87 Medilink East Midlands'), (68077, 'https://ror.org/03mbmmk80', 'no_lang_code', 1, 'https://ror.org/03mbmmk80 Crop Intellect (United Kingdom)'), (68078, 'https://ror.org/03mbt7q53', 'en', 1, 'https://ror.org/03mbt7q53 Wuxi Wind Power Design and Research Institute 无锡风电设计研究院有限公司'), (68079, 'https://ror.org/03mbybz64', 'en', 1, 'https://ror.org/03mbybz64 Research and Design Institute of the Equipment for Tyre Industry Научно-исследовательский и конструкторский институт по оборудованию для шинной промышленности'), (68080, 'https://ror.org/03md1xx44', 'en', 1, 'https://ror.org/03md1xx44 Geological Exploration Technology Institute of Jiangsu Province 地质勘查技术院'), (68081, 'https://ror.org/03mdx1k69', 'en', 1, 'https://ror.org/03mdx1k69 Greater Portland Council of Governments'), (68082, 'https://ror.org/03metqd67', 'no_lang_code', 1, 'https://ror.org/03metqd67 eNano Health (China)'), (68083, 'https://ror.org/03mjn8x60', 'en', 1, 'https://ror.org/03mjn8x60 Moscow Scientific-Research Television Institute Московский научно-исследовательский телевизионный институт'), (68084, 'https://ror.org/03mjzvj44', 'no_lang_code', 1, 'https://ror.org/03mjzvj44 Optimum Nano (China)'), (68085, 'https://ror.org/03mmctw95', 'no_lang_code', 1, 'https://ror.org/03mmctw95 MSN Laboratories (India)'), (68086, 'https://ror.org/03ms5pa94', 'no_lang_code', 1, 'https://ror.org/03ms5pa94 IrkutskNIIHimmash (Russia)'), (68087, 'https://ror.org/03ms7da52', 'de', 1, 'https://ror.org/03ms7da52 Niedersächsisches Ministerium für Inneres und Sport'), (68088, 'https://ror.org/03mwc5x18', 'no_lang_code', 1, 'https://ror.org/03mwc5x18 Chunghwa Medipower (South Korea) 청화메디파워(주)'), (68089, 'https://ror.org/03mxyhv84', 'no_lang_code', 1, 'https://ror.org/03mxyhv84 Kuhnil Pharma (South Korea) 건일제약'), (68090, 'https://ror.org/03myvh511', 'en', 1, 'https://ror.org/03myvh511 Zhangzhou Vocational and Technical College 漳州职业技术学院'), (68091, 'https://ror.org/03mz26918', 'no_lang_code', 1, 'https://ror.org/03mz26918 Cargotec (Finland)'), (68092, 'https://ror.org/03mzdta96', 'en', 1, 'https://ror.org/03mzdta96 Sanjivani Super Speciality Hospitals'), (68093, 'https://ror.org/03mzdwb95', 'en', 1, 'https://ror.org/03mzdwb95 Guangzhou Quality Supervision, Inspection and Research Institute 广州质量监督检测研究院'), (68094, 'https://ror.org/03n01va58', 'en', 1, 'https://ror.org/03n01va58 Korean Association of Family Therapy'), (68095, 'https://ror.org/03n1kz237', 'en', 1, 'https://ror.org/03n1kz237 New Zealand Christians in Science Te Kāhui Whakapono ki Nga Kaipūtaiao o Te Motu'), (68096, 'https://ror.org/03n4ayy20', 'en', 1, 'https://ror.org/03n4ayy20 RAFT'), (68097, 'https://ror.org/03n603b32', 'de', 1, 'https://ror.org/03n603b32 Bundesverband der Selbständigen Deutscher Gewerbeverband'), (68098, 'https://ror.org/03n6ptv32', 'en', 1, 'https://ror.org/03n6ptv32 Coastal Watershed Council'), (68099, 'https://ror.org/03n86v874', 'no_lang_code', 1, 'https://ror.org/03n86v874 Zillow Group (United States)'), (68100, 'https://ror.org/03n8g4g56', 'no_lang_code', 1, 'https://ror.org/03n8g4g56 Baxendale (United Kingdom)'), (68101, 'https://ror.org/03n90de98', 'en', 1, 'https://ror.org/03n90de98 Canadian Institute of Child Health'), (68102, 'https://ror.org/03n983v14', 'en', 1, 'https://ror.org/03n983v14 Federal Aviation Office Luftfahrt-Bundesamt'), (68103, 'https://ror.org/03n9kt276', 'en', 1, 'https://ror.org/03n9kt276 The Audience Agency'), (68104, 'https://ror.org/03n9t0w02', 'fr', 1, 'https://ror.org/03n9t0w02 Association des Doyennes et des Doyens des Études Supérieures au Québec'), (68105, 'https://ror.org/03n9xd583', 'en', 1, 'https://ror.org/03n9xd583 Xinjiang Academy of Forestry 有 新疆林业科学院'), (68106, 'https://ror.org/03na4j812', 'no_lang_code', 1, 'https://ror.org/03na4j812 CreaPhys (Germany)'), (68107, 'https://ror.org/03ngwn840', 'en', 1, 'https://ror.org/03ngwn840 Rainbow Health Ontario Santé arc-en-ciel Ontario'), (68108, 'https://ror.org/03nh4nw42', 'no_lang_code', 1, 'https://ror.org/03nh4nw42 Dem Dx (United Kingdom)'), (68109, 'https://ror.org/03nhp6a75', 'en', 1, 'https://ror.org/03nhp6a75 Canadian Dental Hygienists Association'), (68110, 'https://ror.org/03njbda75', 'en', 1, 'https://ror.org/03njbda75 Danish Ministry of Finance Finansministeriet'), (68111, 'https://ror.org/03nkgv042', 'en', 1, 'https://ror.org/03nkgv042 Korean Historical Folklore Institute 한국역사민속학회'), (68112, 'https://ror.org/03nm59d75', 'en', 1, 'https://ror.org/03nm59d75 Hong Kong R&D Centre for Logistics and Supply Chain Management Enabling Technologies 香港物流及供应链管理应用技术研发中心'), (68113, 'https://ror.org/03nnrh396', 'no_lang_code', 1, 'https://ror.org/03nnrh396 Housing Quality Network (United Kingdom)'), (68114, 'https://ror.org/03np7fg50', 'en', 1, 'https://ror.org/03np7fg50 Pyatigorsk State Scientific Research Institute of Balneology Пятигорский государственный научно-исследовательский институт курортологии'), (68115, 'https://ror.org/03nvser95', 'no_lang_code', 1, 'https://ror.org/03nvser95 ASM Pacific Technology (China)'), (68116, 'https://ror.org/03nwbtx86', 'no_lang_code', 1, 'https://ror.org/03nwbtx86 Libra Trading Company (Qatar)'), (68117, 'https://ror.org/03nwyka65', 'en', 1, 'https://ror.org/03nwyka65 International Association of Korean Literary and Cultural Studies 국제한국문학문화학회'), (68118, 'https://ror.org/03nz9nk15', 'no_lang_code', 1, 'https://ror.org/03nz9nk15 Selekt Výskumný a Šľachtiteľský Ústav (Slovakia)'), (68119, 'https://ror.org/03p6bmy35', 'no_lang_code', 1, 'https://ror.org/03p6bmy35 Biocera (South Korea) 바이오 에라'), (68120, 'https://ror.org/03p7qab35', 'en', 1, 'https://ror.org/03p7qab35 Atlantic Arc Commission'), (68121, 'https://ror.org/03p928666', 'no_lang_code', 1, 'https://ror.org/03p928666 RedT Energy Storage (United Kingdom)'), (68122, 'https://ror.org/03pbjsf94', 'en', 1, 'https://ror.org/03pbjsf94 Danish Ministry of Industry, Business and Financial Affairs Erhvervsministeriets opgave'), (68123, 'https://ror.org/03pch7e04', 'en', 1, 'https://ror.org/03pch7e04 CAG Consultants'), (68124, 'https://ror.org/03pcp9q42', 'no_lang_code', 1, 'https://ror.org/03pcp9q42 PharmacoGenetics (China)'), (68125, 'https://ror.org/03pdr1e82', 'en', 1, 'https://ror.org/03pdr1e82 Ministarstvo graditeljstva i prostornoga uređenja Ministry of Construction and Physical Planning'), (68126, 'https://ror.org/03pengj43', 'es', 1, 'https://ror.org/03pengj43 Asociación de Comunidades Forestales de Peten'), (68127, 'https://ror.org/03ph7q594', 'no_lang_code', 1, 'https://ror.org/03ph7q594 KLE Ayur World'), (68128, 'https://ror.org/03pj17v68', 'en', 1, 'https://ror.org/03pj17v68 Jeonnam Bioindustry Foundation 전남 바이오 산업 재단'), (68129, 'https://ror.org/03pm9cy40', 'it', 1, 'https://ror.org/03pm9cy40 Agenzia Energetica Della Provincia Di Livorno'), (68130, 'https://ror.org/03pmvdv44', 'no_lang_code', 1, 'https://ror.org/03pmvdv44 IDT Biologika (Germany)'), (68131, 'https://ror.org/03ppy8d91', 'en', 1, 'https://ror.org/03ppy8d91 International Institute for Mesopotamian Area Studies'), (68132, 'https://ror.org/03pr7ft13', 'en', 1, 'https://ror.org/03pr7ft13 State Research Center for Dermatovenereology and Cosmetology'), (68133, 'https://ror.org/03psvch52', 'en', 1, 'https://ror.org/03psvch52 Dr. BMN College of Home Science Dr. BMN कॉलेज ऑफ़ होम साइंस'), (68134, 'https://ror.org/03ptfj749', 'en', 1, 'https://ror.org/03ptfj749 Korea Petroleum Quality & Distribution Authority 한국 석유 품질 관리국'), (68135, 'https://ror.org/03pttjv50', 'en', 1, 'https://ror.org/03pttjv50 Glamorgan Archives'), (68136, 'https://ror.org/03pw0zs24', 'no_lang_code', 1, 'https://ror.org/03pw0zs24 Jilin Electric Power Research Institute (China) 吉林省电力科学研究院有限公司'), (68137, 'https://ror.org/03pydxa09', 'en', 1, 'https://ror.org/03pydxa09 Tianjin Institute of Metrological Supervision Testing 天津计量监督检测科学研究院'), (68138, 'https://ror.org/03q0nr592', 'no_lang_code', 1, 'https://ror.org/03q0nr592 Hankuk Carbon (South Korea) 한국 카본'), (68139, 'https://ror.org/03q1bec86', 'en', 1, 'https://ror.org/03q1bec86 Slovak Governance Institute'), (68140, 'https://ror.org/03q29n119', 'en', 1, 'https://ror.org/03q29n119 Ottawa Public Health Santé Publique Ottawa'), (68141, 'https://ror.org/03q2d8x50', 'en', 1, 'https://ror.org/03q2d8x50 Digestive CARE'), (68142, 'https://ror.org/03q2s0610', 'no_lang_code', 1, 'https://ror.org/03q2s0610 Edgewater Federal Solutions (United States)'), (68143, 'https://ror.org/03q3een69', 'no_lang_code', 1, 'https://ror.org/03q3een69 China Communications Construction Company (China) 中国交通建设公司'); INSERT INTO `rors` VALUES (68144, 'https://ror.org/03q4mza74', 'no_lang_code', 1, 'https://ror.org/03q4mza74 NCSOFT (South Korea)'), (68145, 'https://ror.org/03q4yat34', 'no_lang_code', 1, 'https://ror.org/03q4yat34 Guangdong Taibao Medical Technology (China) 广东泰宝医疗科技股份有限公司'), (68146, 'https://ror.org/03q57f308', 'no_lang_code', 1, 'https://ror.org/03q57f308 Nizhny Novgorod Research Institute of Radio Engineering (Russia) «Федеральный научно-производственный центр «Нижегородский научно-исследовательский институт радиотехники»'), (68147, 'https://ror.org/03q5f3h16', 'en', 1, 'https://ror.org/03q5f3h16 National Women''s Studies Association'), (68148, 'https://ror.org/03q5grb87', 'fr', 1, 'https://ror.org/03q5grb87 Académie des Sciences et des Technologies d''Algérie'), (68149, 'https://ror.org/03q6e5e49', 'no_lang_code', 1, 'https://ror.org/03q6e5e49 Stempeutics (India)'), (68150, 'https://ror.org/03q78z367', 'en', 1, 'https://ror.org/03q78z367 The Genetics Society of Korea 한국유전학회'), (68151, 'https://ror.org/03qb1ht73', 'no_lang_code', 1, 'https://ror.org/03qb1ht73 Lishen (China) 天津力神电池股份有限公司'), (68152, 'https://ror.org/03qbvh110', 'en', 1, 'https://ror.org/03qbvh110 Korean Christian Society 한국기독교학회'), (68153, 'https://ror.org/03qc6zh37', 'en', 1, 'https://ror.org/03qc6zh37 Research Institute "Agat"'), (68154, 'https://ror.org/03qckzp50', 'no_lang_code', 1, 'https://ror.org/03qckzp50 AAC Technologies (China)'), (68155, 'https://ror.org/03qe1mf77', 'en', 1, 'https://ror.org/03qe1mf77 Scientific and Production Association. S.A. Lavochkin'), (68156, 'https://ror.org/03qfd7n96', 'en', 1, 'https://ror.org/03qfd7n96 3G''S Development Trust'), (68157, 'https://ror.org/03qffpf96', 'fr', 1, 'https://ror.org/03qffpf96 Agence pour l''Observation de la Réunion'), (68158, 'https://ror.org/03qfpb645', 'en', 1, 'https://ror.org/03qfpb645 Cloyne Diocesan Youth Services'), (68159, 'https://ror.org/03qfrnd98', 'no_lang_code', 1, 'https://ror.org/03qfrnd98 BC World Pharm (South Korea)'), (68160, 'https://ror.org/03qgxqd23', 'fr', 1, 'https://ror.org/03qgxqd23 Ministère de l''Agriculture, de l''Elevage et de l''Hydraulique'), (68161, 'https://ror.org/03qhca141', 'en', 1, 'https://ror.org/03qhca141 All Nations Hope Network'), (68162, 'https://ror.org/03qjg1411', 'en', 1, 'https://ror.org/03qjg1411 Maryland-National Capital Park and Planning Commission'), (68163, 'https://ror.org/03qn8zy63', 'en', 1, 'https://ror.org/03qn8zy63 Xi''an Aeronautical University 西安航空学院'), (68164, 'https://ror.org/03qqw3m37', 'no_lang_code', 1, 'https://ror.org/03qqw3m37 United Imaging Healthcare (China)'), (68165, 'https://ror.org/03qranw91', 'en', 1, 'https://ror.org/03qranw91 Korean Philosophical Association 한국 철학회'), (68166, 'https://ror.org/03qs3qx17', 'no_lang_code', 1, 'https://ror.org/03qs3qx17 Sejong Institute 세종연구소'), (68167, 'https://ror.org/03qsja474', 'no_lang_code', 1, 'https://ror.org/03qsja474 Radica Systems (China)'), (68168, 'https://ror.org/03qvhaa35', 'en', 1, 'https://ror.org/03qvhaa35 The Korean Association for Mongolian Studies 한국 몽골 연구 협회'), (68169, 'https://ror.org/03qw6d546', 'no_lang_code', 1, 'https://ror.org/03qw6d546 Lanzhou Nonferrous Metals Design and Research Institute (China)'), (68170, 'https://ror.org/03qxezw14', 'en', 1, 'https://ror.org/03qxezw14 Korea Integrated Logistics Association 한국통합물류협회'), (68171, 'https://ror.org/03r0gs027', 'no_lang_code', 1, 'https://ror.org/03r0gs027 CrystecPharma (United Kingdom)'), (68172, 'https://ror.org/03r0hka23', 'no_lang_code', 1, 'https://ror.org/03r0hka23 RediCare (Ireland)'), (68173, 'https://ror.org/03r0j3j15', 'no_lang_code', 1, 'https://ror.org/03r0j3j15 Amway (South Korea) 암웨'), (68174, 'https://ror.org/03r1dwc49', 'no_lang_code', 1, 'https://ror.org/03r1dwc49 Harsco (United Kingdom)'), (68175, 'https://ror.org/03r2hkg16', 'no_lang_code', 1, 'https://ror.org/03r2hkg16 Chungnam Group (China) 忠南集团'), (68176, 'https://ror.org/03r55ca96', 'no_lang_code', 1, 'https://ror.org/03r55ca96 Hourglass Group (United Kingdom)'), (68177, 'https://ror.org/03r5t9q47', 'no_lang_code', 1, 'https://ror.org/03r5t9q47 Benchmark Animal Health (United Kingdom)'), (68178, 'https://ror.org/03r6fm605', 'en', 1, 'https://ror.org/03r6fm605 Japanese Language & Culture Association of Korea 일본언어문화학회를'), (68179, 'https://ror.org/03r78y930', 'en', 1, 'https://ror.org/03r78y930 Siberian Research Institute of Geology, Geophysics and Mineral Resources Сибирский научно-исследовательский институт Геологии, Геофизики и Минерального сырья'), (68180, 'https://ror.org/03r7nme33', 'de', 1, 'https://ror.org/03r7nme33 Bundesverband Sekundärrohstoffe und Entsorgung'), (68181, 'https://ror.org/03r7ya547', 'de', 1, 'https://ror.org/03r7ya547 Der Österreichische Weinbauverband'), (68182, 'https://ror.org/03r86y726', 'no_lang_code', 1, 'https://ror.org/03r86y726 Fresenius Kabi (China)'), (68183, 'https://ror.org/03r8s5d09', 'en', 1, 'https://ror.org/03r8s5d09 Coimisean nan Croitearan Crofting Commission'), (68184, 'https://ror.org/03r97zp68', 'pt', 1, 'https://ror.org/03r97zp68 Direcção dos Serviços da Reforma Jurídica e do Direito Internacional'), (68185, 'https://ror.org/03r9dgm57', 'en', 1, 'https://ror.org/03r9dgm57 Alaska Native Health Board'), (68186, 'https://ror.org/03r9sb108', 'no_lang_code', 1, 'https://ror.org/03r9sb108 LinkPowerTechnology (China)'), (68187, 'https://ror.org/03ra80q23', 'no_lang_code', 1, 'https://ror.org/03ra80q23 (주)제욱 Jeuk (South Korea)'), (68188, 'https://ror.org/03rb53j96', 'en', 1, 'https://ror.org/03rb53j96 Directorate for Inland Waterways Direkcija za vodne puteve Plovput Дирекција за водне путеве Пловпут'), (68189, 'https://ror.org/03rc6pz65', 'ga', 1, 'https://ror.org/03rc6pz65 Croí'), (68190, 'https://ror.org/03rcmhq47', 'en', 1, 'https://ror.org/03rcmhq47 Apollo Hospitals अपोलो अस्पताल'), (68191, 'https://ror.org/03rd9h303', 'en', 1, 'https://ror.org/03rd9h303 Delaware River Basin Commission'), (68192, 'https://ror.org/03re7j391', 'no_lang_code', 1, 'https://ror.org/03re7j391 Osmotica Pharmaceutical (Hungary)'), (68193, 'https://ror.org/03reqkm68', 'no_lang_code', 1, 'https://ror.org/03reqkm68 Blendology (United Kingdom)'), (68194, 'https://ror.org/03rf8vd59', 'de', 1, 'https://ror.org/03rf8vd59 Bundesverband Freier Radios'), (68195, 'https://ror.org/03rfc8789', 'en', 1, 'https://ror.org/03rfc8789 Foundation for Art and Creative Technology'), (68196, 'https://ror.org/03rfn7203', 'no_lang_code', 1, 'https://ror.org/03rfn7203 Vesuvius (Belgium)'), (68197, 'https://ror.org/03rfsht69', 'no_lang_code', 1, 'https://ror.org/03rfsht69 Jason Medical Holdings (China) 傑森醫療控股'), (68198, 'https://ror.org/03rkn9a03', 'en', 1, 'https://ror.org/03rkn9a03 Federation of Hong Kong Industries'), (68199, 'https://ror.org/03rkqvk58', 'en', 1, 'https://ror.org/03rkqvk58 Capital Enterprise'), (68200, 'https://ror.org/03rm3gk43', 'en', 1, 'https://ror.org/03rm3gk43 National Cancer Center Hospital East 国立がん研究センター東病院'), (68201, 'https://ror.org/03rr58081', 'en', 1, 'https://ror.org/03rr58081 Karnataka Medical Council'), (68202, 'https://ror.org/03rs7hg63', 'no_lang_code', 1, 'https://ror.org/03rs7hg63 Escort (Poland)'), (68203, 'https://ror.org/03rtrf513', 'en', 1, 'https://ror.org/03rtrf513 New Energy Coalition'), (68204, 'https://ror.org/03rv77e70', 'no_lang_code', 1, 'https://ror.org/03rv77e70 Scientific Research Institute of Parachute Construction (Russia) НИИ парашютостроения'), (68205, 'https://ror.org/03rw2rj66', 'no_lang_code', 1, 'https://ror.org/03rw2rj66 JXTG Holdings (Japan) JXホールディングス'), (68206, 'https://ror.org/03ry0z171', 'no_lang_code', 1, 'https://ror.org/03ry0z171 Koofy Development (China)'), (68207, 'https://ror.org/03rywge40', 'no_lang_code', 1, 'https://ror.org/03rywge40 Beijing Institute of Architectural Design (China)'), (68208, 'https://ror.org/03s0pk098', 'fr', 1, 'https://ror.org/03s0pk098 École Supérieure en Sciences Appliquées de Tlemcen'), (68209, 'https://ror.org/03s0s8j32', 'en', 1, 'https://ror.org/03s0s8j32 Centre for Modelling & Simulation'), (68210, 'https://ror.org/03s2thv57', 'en', 1, 'https://ror.org/03s2thv57 Newford Research Institute of Advanced Technology 纽福德先进技术研究所'), (68211, 'https://ror.org/03s3cgk74', 'fr', 1, 'https://ror.org/03s3cgk74 Laboratoire de Mesure du Carbone 14'), (68212, 'https://ror.org/03s3e1h32', 'en', 1, 'https://ror.org/03s3e1h32 Korean Society for Indian Philosophy 인도철학회'), (68213, 'https://ror.org/03s6z8117', 'en', 1, 'https://ror.org/03s6z8117 Institution of Chemical Engineers'), (68214, 'https://ror.org/03s87dw57', 'en', 1, 'https://ror.org/03s87dw57 Korean Counseling Association 한국상담학회'), (68215, 'https://ror.org/03s9q6118', 'no_lang_code', 1, 'https://ror.org/03s9q6118 ICBio (India)'), (68216, 'https://ror.org/03s9rtw86', 'en', 1, 'https://ror.org/03s9rtw86 National Adult Literacy Agency'), (68217, 'https://ror.org/03sbjj951', 'no_lang_code', 1, 'https://ror.org/03sbjj951 Gravitricity (United Kingdom)'), (68218, 'https://ror.org/03sc9rz48', 'en', 1, 'https://ror.org/03sc9rz48 25-й Государственный научно-исследовательский институт чехтотологии Министерства обороны Российской Федерации 25th State Research Institute of Chemmotology of the Ministry of Defence of the Russian Federation'), (68219, 'https://ror.org/03sgkc956', 'en', 1, 'https://ror.org/03sgkc956 All-Russian Rice Research Institute Всероссийский научно-исследовательский институт риса'), (68220, 'https://ror.org/03sh73423', 'en', 1, 'https://ror.org/03sh73423 State Environmental Service Valsts vides dienests'), (68221, 'https://ror.org/03sjfbk05', 'en', 1, 'https://ror.org/03sjfbk05 National Environment Commission'), (68222, 'https://ror.org/03sjwka68', 'no_lang_code', 1, 'https://ror.org/03sjwka68 Realtek (China) 瑞昱半導體股份有限公司'), (68223, 'https://ror.org/03sk2bs13', 'en', 1, 'https://ror.org/03sk2bs13 European Foundation for the Improvement of Living and Working Conditions Fondúireacht Eorpach chun Dálaí Maireachtála agus Oibre a Fheabhsú'), (68224, 'https://ror.org/03skdv165', 'en', 1, 'https://ror.org/03skdv165 Institute of Educational Policy Ινστιτούτο Εκπαιδευτικής Πολιτικής'), (68225, 'https://ror.org/03skfnn63', 'no_lang_code', 1, 'https://ror.org/03skfnn63 Ruselprom (Russia)'), (68226, 'https://ror.org/03snx9z92', 'en', 1, 'https://ror.org/03snx9z92 Wuxi Fuel Injection Equipment Research Institute 中国第一汽车股份有限公司无锡油泵油嘴研究所'), (68227, 'https://ror.org/03sqtr018', 'no_lang_code', 1, 'https://ror.org/03sqtr018 Qatalum (Qatar)'), (68228, 'https://ror.org/03ssqhs45', 'en', 1, 'https://ror.org/03ssqhs45 Qingdao Institute of Animal Husbandry and Veterinary Medicine 青岛市畜牧兽医研究所'), (68229, 'https://ror.org/03sw09b87', 'no_lang_code', 1, 'https://ror.org/03sw09b87 SFC (South Korea)'), (68230, 'https://ror.org/03sxsay12', 'en', 1, 'https://ror.org/03sxsay12 Yangzhou Vocational University 扬州市职业大学'), (68231, 'https://ror.org/03t07pn25', 'no_lang_code', 1, 'https://ror.org/03t07pn25 Ecosense (South Korea) 에코센스'), (68232, 'https://ror.org/03t25gb93', 'en', 1, 'https://ror.org/03t25gb93 Pamiatkový úrad Slovenskej republiky The Monuments Board of the Slovak Republic'), (68233, 'https://ror.org/03t2ahc57', 'no_lang_code', 1, 'https://ror.org/03t2ahc57 Eozone Group (United Kingdom)'), (68234, 'https://ror.org/03t4ypp04', 'es', 1, 'https://ror.org/03t4ypp04 Instituto de Medicina Genómica'), (68235, 'https://ror.org/03t4zvk50', 'en', 1, 'https://ror.org/03t4zvk50 Laser Research Institute 山东省科学院激光研究所'), (68236, 'https://ror.org/03t5ky459', 'no_lang_code', 1, 'https://ror.org/03t5ky459 Tech Dragon Limited (China)'), (68237, 'https://ror.org/03t5r4496', 'no_lang_code', 1, 'https://ror.org/03t5r4496 Zvezda (Russia) Звезда'), (68238, 'https://ror.org/03t6vm274', 'no_lang_code', 1, 'https://ror.org/03t6vm274 Wonkwang Digital University 원광디지털대학교'), (68239, 'https://ror.org/03t6zfb73', 'en', 1, 'https://ror.org/03t6zfb73 Idaho State Department of Agriculture'), (68240, 'https://ror.org/03t6zvf73', 'en', 1, 'https://ror.org/03t6zvf73 National Academy of Inventors'), (68241, 'https://ror.org/03t85np98', 'en', 1, 'https://ror.org/03t85np98 Cyber University of Korea 사이버 대학교'), (68242, 'https://ror.org/03t8e0d04', 'en', 1, 'https://ror.org/03t8e0d04 YMT Ayurvedic Medical College & Hospital. P.G.Institute'), (68243, 'https://ror.org/03t8xys90', 'en', 1, 'https://ror.org/03t8xys90 Shakhty Scientific Research and Design Coal Institute Шахтинский Научно-Исследовательский Угольный Институт'), (68244, 'https://ror.org/03t8yea54', 'en', 1, 'https://ror.org/03t8yea54 The Korean-German Society for the Educational Studies 한독 교육 학회'), (68245, 'https://ror.org/03t9vst72', 'no_lang_code', 1, 'https://ror.org/03t9vst72 Icahn Enterprises (United States)'), (68246, 'https://ror.org/03tarb191', 'no_lang_code', 1, 'https://ror.org/03tarb191 Akamai (United States)'), (68247, 'https://ror.org/03taw0g66', 'en', 1, 'https://ror.org/03taw0g66 Agency for Social Analyses Агенцията за социални анализи'), (68248, 'https://ror.org/03taw9026', 'en', 1, 'https://ror.org/03taw9026 Korean Association of Physical Education and Sport for Girls and Women 한국 체육 체육 스포츠 협회'), (68249, 'https://ror.org/03tb73372', 'en', 1, 'https://ror.org/03tb73372 Chongqing Academy of Forestry 重庆林业科学研究院'), (68250, 'https://ror.org/03tc50h17', 'no_lang_code', 1, 'https://ror.org/03tc50h17 Korea Yakult (South Korea) 한국야쿠르트'), (68251, 'https://ror.org/03tc6sd86', 'en', 1, 'https://ror.org/03tc6sd86 Target Institute of Medical Education & Research टार्गेट इंस्टिट्यूट ऑफ़ मेडिकल एजूकेशन & रिसर्च'), (68252, 'https://ror.org/03tcqv962', 'fr', 1, 'https://ror.org/03tcqv962 Aids Moncton'), (68253, 'https://ror.org/03tfwa394', 'en', 1, 'https://ror.org/03tfwa394 Hampshire Constabulary'), (68254, 'https://ror.org/03thvaw95', 'en', 1, 'https://ror.org/03thvaw95 International Fiscal Association Korea 국제조세협회'), (68255, 'https://ror.org/03tkqz180', 'no_lang_code', 1, 'https://ror.org/03tkqz180 Cipla (United States)'), (68256, 'https://ror.org/03tks8n61', 'en', 1, 'https://ror.org/03tks8n61 Korean Ethics Education Association 한국윤리교육학회'), (68257, 'https://ror.org/03tmyjv73', 'no_lang_code', 1, 'https://ror.org/03tmyjv73 Fiserv (United States)'), (68258, 'https://ror.org/03tqbke55', 'en', 1, 'https://ror.org/03tqbke55 Ministarstvo nauke i Tehnologije Ministry of Science and Technology'), (68259, 'https://ror.org/03tx11h32', 'no_lang_code', 1, 'https://ror.org/03tx11h32 Kuca (Poland)'), (68260, 'https://ror.org/03tx9q361', 'no_lang_code', 1, 'https://ror.org/03tx9q361 Fortis Hospital ফোর্টিস হসপিটাল'), (68261, 'https://ror.org/03txtgw38', 'no_lang_code', 1, 'https://ror.org/03txtgw38 2iC (United Kingdom)'), (68262, 'https://ror.org/03tzzx112', 'en', 1, 'https://ror.org/03tzzx112 E-Car Club'), (68263, 'https://ror.org/03v27je35', 'no_lang_code', 1, 'https://ror.org/03v27je35 (주)셀루메드는 Cellumed (South Korea)'), (68264, 'https://ror.org/03v2qmr34', 'fr', 1, 'https://ror.org/03v2qmr34 Agence pour le développement de l''emploi'), (68265, 'https://ror.org/03v4ccn82', 'en', 1, 'https://ror.org/03v4ccn82 Fortis Escorts Hospital फोर्टिस एस्कॉर्ट्स अस्पताल'), (68266, 'https://ror.org/03v5azw70', 'en', 1, 'https://ror.org/03v5azw70 Qatar Olympic Committee اللجنة الأولمبية القطرية'), (68267, 'https://ror.org/03v60jr94', 'no_lang_code', 1, 'https://ror.org/03v60jr94 Springer Nature (Switzerland)'), (68268, 'https://ror.org/03vabkb23', 'en', 1, 'https://ror.org/03vabkb23 Korea Institute of Human Resources Development 국가과학기술인력개발원'), (68269, 'https://ror.org/03vapwt48', 'en', 1, 'https://ror.org/03vapwt48 Lietuvos Respublikos ūkio ministerija Ministry of Economy of the Republic of Lithuania'), (68270, 'https://ror.org/03vbs1928', 'no_lang_code', 1, 'https://ror.org/03vbs1928 Transpharmation (Ireland)'), (68271, 'https://ror.org/03vcpp131', 'en', 1, 'https://ror.org/03vcpp131 21st Century Foreign Language Academy 21세기 외국어 학원'), (68272, 'https://ror.org/03ve00c59', 'no_lang_code', 1, 'https://ror.org/03ve00c59 Industrial Light & Magic (United Kingdom)'), (68273, 'https://ror.org/03vfggs20', 'en', 1, 'https://ror.org/03vfggs20 One Earth Designs'), (68274, 'https://ror.org/03vfz6856', 'en', 1, 'https://ror.org/03vfz6856 Institute for Public Policy Research'), (68275, 'https://ror.org/03vhfjx86', 'no_lang_code', 1, 'https://ror.org/03vhfjx86 Kimal (United Kingdom)'), (68276, 'https://ror.org/03vhksx27', 'en', 1, 'https://ror.org/03vhksx27 Research Institute of Instrument named after V.V. Tikhomirova НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ ПРИБОРОСТРОЕНИЯ ИМЕНИ В.В. ТИХОМИРОВА'), (68277, 'https://ror.org/03vhyy859', 'en', 1, 'https://ror.org/03vhyy859 Korea Tourism Research Association 한국관광연구학회'), (68278, 'https://ror.org/03vnkwk82', 'en', 1, 'https://ror.org/03vnkwk82 The Mussar Institute'), (68279, 'https://ror.org/03vnpf028', 'en', 1, 'https://ror.org/03vnpf028 Joel Samson Ruvugo Traders'), (68280, 'https://ror.org/03vnxht79', 'no_lang_code', 1, 'https://ror.org/03vnxht79 Medipost (South Korea) 메디 포스트'), (68281, 'https://ror.org/03vqgax46', 'no_lang_code', 1, 'https://ror.org/03vqgax46 Scientific and Production Association of Automatics named after Academician N.A.Semikhatov (Russia) НПО автоматики имени академика Н. А. Семихатова'), (68282, 'https://ror.org/03vtyfv85', 'en', 1, 'https://ror.org/03vtyfv85 Manitoba Harm Reduction Network'), (68283, 'https://ror.org/03w12qr69', 'no_lang_code', 1, 'https://ror.org/03w12qr69 Clinipace (South Korea)'), (68284, 'https://ror.org/03w3tb520', 'en', 1, 'https://ror.org/03w3tb520 National Commission on Correctional Health Care'), (68285, 'https://ror.org/03w4e6p22', 'no_lang_code', 1, 'https://ror.org/03w4e6p22 Meiji (India)'), (68286, 'https://ror.org/03w4n2z21', 'de', 1, 'https://ror.org/03w4n2z21 Bundesamt für Weinbau'), (68287, 'https://ror.org/03w7z8f72', 'no_lang_code', 1, 'https://ror.org/03w7z8f72 GP Batteries (China)'), (68288, 'https://ror.org/03w9cnt37', 'en', 1, 'https://ror.org/03w9cnt37 Gansu Normal University for Nationalities 甘肃民族师范学院'), (68289, 'https://ror.org/03wb8cw02', 'no_lang_code', 1, 'https://ror.org/03wb8cw02 Skyworth (China) 创维'), (68290, 'https://ror.org/03wbses72', 'no_lang_code', 1, 'https://ror.org/03wbses72 Polyus Research Institute of M.F.Stelmakh (Russia)'), (68291, 'https://ror.org/03wc7j405', 'no_lang_code', 1, 'https://ror.org/03wc7j405 Adient (Ireland)'), (68292, 'https://ror.org/03wcmbn72', 'en', 1, 'https://ror.org/03wcmbn72 Kims Bibi Hospital'), (68293, 'https://ror.org/03wcmj821', 'no_lang_code', 1, 'https://ror.org/03wcmj821 Lola Group (United Kingdom)'), (68294, 'https://ror.org/03wdfwr71', 'en', 1, 'https://ror.org/03wdfwr71 Guangdong Testing Institute for Product Quality Supervision 广东省产品质量监督检验研究院'), (68295, 'https://ror.org/03wfdhy86', 'en', 1, 'https://ror.org/03wfdhy86 The Modern Linguistic Society Of Korea 한국 현대 언어 학회'), (68296, 'https://ror.org/03wgebb29', 'en', 1, 'https://ror.org/03wgebb29 Beijing Nonferrous Metals and Rare Earth Applications Institute 北京有色金属与稀土应用研究所'), (68297, 'https://ror.org/03wgjx693', 'no_lang_code', 1, 'https://ror.org/03wgjx693 Maya Clinicals (India)'), (68298, 'https://ror.org/03wj3bs34', 'no_lang_code', 1, 'https://ror.org/03wj3bs34 Hai Kang Life (China) 海康生命科技有限公司'), (68299, 'https://ror.org/03wj9h986', 'no_lang_code', 1, 'https://ror.org/03wj9h986 China Huadian Corporation (China) 中国华电集团公司'), (68300, 'https://ror.org/03wjb5650', 'no_lang_code', 1, 'https://ror.org/03wjb5650 China International Marine Containers (China) 中国国际海运集装箱'), (68301, 'https://ror.org/03wjek566', 'en', 1, 'https://ror.org/03wjek566 Nasc The Irish Immigrant Support Centre'), (68302, 'https://ror.org/03wjy4481', 'no_lang_code', 1, 'https://ror.org/03wjy4481 Westin Limousine (Canada)'), (68303, 'https://ror.org/03wn3aq07', 'no_lang_code', 1, 'https://ror.org/03wn3aq07 Scientific Research Institute "Girikond" (Russia)'), (68304, 'https://ror.org/03wpcjb05', 'no_lang_code', 1, 'https://ror.org/03wpcjb05 Samoo Architects & Engineers (South Korea)'), (68305, 'https://ror.org/03wr30131', 'en', 1, 'https://ror.org/03wr30131 Laban/Bartenieff Institute of Movement Studies'), (68306, 'https://ror.org/03wsc5672', 'no_lang_code', 1, 'https://ror.org/03wsc5672 Digital Catapult (United Kingdom)'), (68307, 'https://ror.org/03wscj685', 'en', 1, 'https://ror.org/03wscj685 Sri Kalabyraveshwara Swamy Ayurvedic Medical College, Hospital and Research Center ಶ್ರೀ ಕಲಾಭರಣವೇಶ್ವರ ಸ್ವಾಮಿ ಆಯುರ್ವೇದಿಕ್ ಆಸ್ಪತ್ರೆ ಮತ್ತು ಸಂಶೋಧನಾ ಕೇಂದ್ರ'), (68308, 'https://ror.org/03wtw1749', 'en', 1, 'https://ror.org/03wtw1749 Shanghai Zhaozhan Metal Materials 上海金屬材料有限公司'), (68309, 'https://ror.org/03ww67x72', 'no_lang_code', 1, 'https://ror.org/03ww67x72 FlyingBinary (United Kingdom)'), (68310, 'https://ror.org/03wyr0j06', 'no_lang_code', 1, 'https://ror.org/03wyr0j06 Iberdrola (Qatar)'), (68311, 'https://ror.org/03x1j8d96', 'no_lang_code', 1, 'https://ror.org/03x1j8d96 China Railway Design Corporation (China) 中国铁路设计集团有限公司'), (68312, 'https://ror.org/03x21fh86', 'en', 1, 'https://ror.org/03x21fh86 Biblioteka Śląska Silesian Library'), (68313, 'https://ror.org/03x2b6b27', 'en', 1, 'https://ror.org/03x2b6b27 Gyeongnam Provincial Namhae College 경남도립남해대학'), (68314, 'https://ror.org/03x35bg73', 'en', 1, 'https://ror.org/03x35bg73 Wyoming Department of Agriculture'), (68315, 'https://ror.org/03x36kh13', 'en', 1, 'https://ror.org/03x36kh13 New Testament Society of Korea 한국신약학회'), (68316, 'https://ror.org/03x3py878', 'en', 1, 'https://ror.org/03x3py878 Association of Local Public Health Agencies'), (68317, 'https://ror.org/03x542r19', 'en', 1, 'https://ror.org/03x542r19 Business France'), (68318, 'https://ror.org/03x58gj82', 'en', 1, 'https://ror.org/03x58gj82 Alabama Bicentennial Commission'), (68319, 'https://ror.org/03x68sb69', 'en', 1, 'https://ror.org/03x68sb69 "VNIINM" named after AA Bochvar "Высокотехнологический научно-исследовательский институт неорганических материалов имени академика А.А. Бочвара"'), (68320, 'https://ror.org/03x7gzh76', 'en', 1, 'https://ror.org/03x7gzh76 The Design Museum'), (68321, 'https://ror.org/03x92hw77', 'no_lang_code', 1, 'https://ror.org/03x92hw77 Beijing Municipal Engineering Design and Research Institute (China) 北京市政工程设计研究院'), (68322, 'https://ror.org/03xabzk72', 'en', 1, 'https://ror.org/03xabzk72 Galway Clinic'), (68323, 'https://ror.org/03xdgrg08', 'no_lang_code', 1, 'https://ror.org/03xdgrg08 Academician M.F. Reshetnev Information Satellite Systems (Russia) «ИНФОРМАЦИОННЫЕ СПУТНИКОВЫЕ СИСТЕМЫ» имени академика М.Ф. Решетнёва»'), (68324, 'https://ror.org/03xgzn792', 'en', 1, 'https://ror.org/03xgzn792 Beijing Polytechnic 北京电子科技职业学院'), (68325, 'https://ror.org/03xh8em43', 'fr', 1, 'https://ror.org/03xh8em43 OSEntreprendre'), (68326, 'https://ror.org/03xjh0j86', 'en', 1, 'https://ror.org/03xjh0j86 National Institute of Aviation Technologies Национальный институт авиационных технологий'), (68327, 'https://ror.org/03xk2yz39', 'en', 1, 'https://ror.org/03xk2yz39 Shandong Institute of Commerce & Technology 山东商业职业技术学院'), (68328, 'https://ror.org/03xkdt868', 'en', 1, 'https://ror.org/03xkdt868 Research Institute of Nonwoven Materials'), (68329, 'https://ror.org/03xkqe691', 'no_lang_code', 1, 'https://ror.org/03xkqe691 Sweco (United Kingdom)'), (68330, 'https://ror.org/03xxysc72', 'no_lang_code', 1, 'https://ror.org/03xxysc72 SensorTec (South Korea)'), (68331, 'https://ror.org/03xygbe46', 'en', 1, 'https://ror.org/03xygbe46 All-Russian Research Institute for Silviculture and Mechanization of Forestry ФБУ ВНИИЛМ'), (68332, 'https://ror.org/03xyxqq59', 'en', 1, 'https://ror.org/03xyxqq59 Korean Association for the Society of Religion 한국 종교 사회'), (68333, 'https://ror.org/03xzqa656', 'en', 1, 'https://ror.org/03xzqa656 Pembina Institute'), (68334, 'https://ror.org/03y008h18', 'en', 1, 'https://ror.org/03y008h18 Vermont Judiciary'), (68335, 'https://ror.org/03y1kax64', 'en', 1, 'https://ror.org/03y1kax64 Micro & Nano Research Institute 微纳米研究所'), (68336, 'https://ror.org/03y2sw318', 'no_lang_code', 1, 'https://ror.org/03y2sw318 EuBiologics (South Korea) 유바이오로직스'), (68337, 'https://ror.org/03y32jh60', 'en', 1, 'https://ror.org/03y32jh60 Gyeongbuk Marine Bio-Industry Research Institute 경북 해양 생물 산업 연구원'), (68338, 'https://ror.org/03y5ebv30', 'en', 1, 'https://ror.org/03y5ebv30 Regulatory Agency for Electronic Communications and Postal Services Регулаторна агенција за електронске комуникације и поштанске услуге'), (68339, 'https://ror.org/03y5fjm90', 'en', 1, 'https://ror.org/03y5fjm90 Special Design Bureau for Automation of Marine Research Федерального государственного бюджетного учреждения науки Специального конструкторского бюро средств автоматизации морских исследований Дальневосточного отделения Российской академии наук'), (68340, 'https://ror.org/03y5ndk86', 'no_lang_code', 1, 'https://ror.org/03y5ndk86 Western EcoSystems Technology (United States)'), (68341, 'https://ror.org/03y5s5n06', 'no_lang_code', 1, 'https://ror.org/03y5s5n06 Smartec-Group (Egypt)'), (68342, 'https://ror.org/03y64fn77', 'en', 1, 'https://ror.org/03y64fn77 The Korean Academic Society of Business Administration And Law 한국 경영 학회'), (68343, 'https://ror.org/03y8xgp13', 'es', 1, 'https://ror.org/03y8xgp13 Instituto Nacional de Higiene, Epidemiología y Microbiología'), (68344, 'https://ror.org/03y9jct87', 'en', 1, 'https://ror.org/03y9jct87 Ministry of Finance מִשְׂרַד הַאוֹצָר'), (68345, 'https://ror.org/03ya3p525', 'en', 1, 'https://ror.org/03ya3p525 Nizhny Novgorod State University of Engineering and Economics Нижегородский государственный инженерно-экономический университет'), (68346, 'https://ror.org/03yccxk95', 'en', 1, 'https://ror.org/03yccxk95 Sponsors for Educational Opportunity'), (68347, 'https://ror.org/03ydpmt51', 'no_lang_code', 1, 'https://ror.org/03ydpmt51 ffei (United Kingdom)'), (68348, 'https://ror.org/03ydr6t04', 'en', 1, 'https://ror.org/03ydr6t04 Maritime Institute of Eastern Mediterranean'), (68349, 'https://ror.org/03yepnj33', 'no_lang_code', 1, 'https://ror.org/03yepnj33 ALP Technologies (United Kingdom)'), (68350, 'https://ror.org/03yfxxf37', 'no_lang_code', 1, 'https://ror.org/03yfxxf37 Air Black Box (United Kingdom)'), (68351, 'https://ror.org/03ygfng20', 'en', 1, 'https://ror.org/03ygfng20 The Society Eastern Philosophy 동양철학연구회'), (68352, 'https://ror.org/03yhtwa63', 'en', 1, 'https://ror.org/03yhtwa63 Magadan Research Institute of Agriculture Магаданский научно-исследовательский институт сельского хозяйства'), (68353, 'https://ror.org/03ypsgm65', 'en', 1, 'https://ror.org/03ypsgm65 Institute of Information Technologies ИНСТИТУТ ПО ИНФОРМАЦИОННИ ТЕХНОЛОГИИ'), (68354, 'https://ror.org/03ypwqc95', 'en', 1, 'https://ror.org/03ypwqc95 Ministry of Interior of the Republic of Serbia Mинистарство унутрашњих послова'), (68355, 'https://ror.org/03yq9y457', 'no_lang_code', 1, 'https://ror.org/03yq9y457 Bharat Serums and Vaccines (India)'), (68356, 'https://ror.org/03yqhkg72', 'no_lang_code', 1, 'https://ror.org/03yqhkg72 Hy-Line (United States)'), (68357, 'https://ror.org/03yqjpf13', 'en', 1, 'https://ror.org/03yqjpf13 Icelandic Institute for Intelligent Machines'), (68358, 'https://ror.org/03yt10624', 'en', 1, 'https://ror.org/03yt10624 Loretto Community'), (68359, 'https://ror.org/03ytd3n75', 'en', 1, 'https://ror.org/03ytd3n75 All-Russian Research Institute of Oil Crops by V.S. Pustovoit Всероссийский научно-исследовательский институт масличных культур имени В. С. Пустовойта'), (68360, 'https://ror.org/03ytyhv33', 'no_lang_code', 1, 'https://ror.org/03ytyhv33 Intel (United Arab Emirates)'), (68361, 'https://ror.org/03ywvs716', 'en', 1, 'https://ror.org/03ywvs716 Suzhou Polytechnic Institute of Agriculture 苏州工业职业技术学院'), (68362, 'https://ror.org/03yyvfk78', 'no_lang_code', 1, 'https://ror.org/03yyvfk78 Milo''s Knitwear (China) 米洛的针织品'), (68363, 'https://ror.org/03yzcrs31', 'en', 1, 'https://ror.org/03yzcrs31 Bradford District Care NHS Foundation Trust'), (68364, 'https://ror.org/03z4z1b55', 'en', 1, 'https://ror.org/03z4z1b55 Guangdong Iron and Steel Research Institute 广东省钢铁研究所'), (68365, 'https://ror.org/03z7s4z65', 'en', 1, 'https://ror.org/03z7s4z65 Inspiring Scotland'), (68366, 'https://ror.org/03zb2mt61', 'no_lang_code', 1, 'https://ror.org/03zb2mt61 Bukwang Pharmaceutical (South Korea) 부광약품'), (68367, 'https://ror.org/03zdtbn70', 'en', 1, 'https://ror.org/03zdtbn70 Northwood'), (68368, 'https://ror.org/03zj4hg45', 'en', 1, 'https://ror.org/03zj4hg45 Military Academy of Air-Space Defense named after Marshal of the Soviet Union GK Zhukov Военная академия воздушно-космической обороны имени маршала Советского Союза Г.К. Жукова'), (68369, 'https://ror.org/03zmfa837', 'en', 1, 'https://ror.org/03zmfa837 Rochester Institute of Technology - Dubai معهد روتشستر للتكنولوجيا - دبي'), (68370, 'https://ror.org/03zp29z47', 'no_lang_code', 1, 'https://ror.org/03zp29z47 Bioleaders (South Korea) 바이오리더스'), (68371, 'https://ror.org/03zp7sq53', 'no_lang_code', 1, 'https://ror.org/03zp7sq53 Hefei Municipal Design and Research Institute (China) 合肥市市政设计研究总院有限公司'), (68372, 'https://ror.org/03zp9j082', 'no_lang_code', 1, 'https://ror.org/03zp9j082 ISKRA Zakłady Precyzyjne (Poland)'), (68373, 'https://ror.org/03zpdjb80', 'en', 1, 'https://ror.org/03zpdjb80 Korean Literature Theory and Criticism Society 한국문학이론과 비평학회'), (68374, 'https://ror.org/03zqt7766', 'de', 1, 'https://ror.org/03zqt7766 Bundesverband der Deutschen Tourismuswirtschaft, Federal Association of the German Tourism Industry'), (68375, 'https://ror.org/03zrdpv47', 'en', 1, 'https://ror.org/03zrdpv47 Institute of Molecular Biology and Biotechnology'), (68376, 'https://ror.org/03zscq151', 'en', 1, 'https://ror.org/03zscq151 Suwon Science College 수원 과학 대학'), (68377, 'https://ror.org/03zv9wh20', 'no_lang_code', 1, 'https://ror.org/03zv9wh20 Scientific Research Institute of Precision Mechanics (Russia)'), (68378, 'https://ror.org/03zw9ym67', 'no_lang_code', 1, 'https://ror.org/03zw9ym67 Electricity Storage Network (United Kingdom)'), (68379, 'https://ror.org/03zx5da06', 'en', 1, 'https://ror.org/03zx5da06 Government of Nova Scotia'), (68380, 'https://ror.org/03zzxst70', 'en', 1, 'https://ror.org/03zzxst70 Thunderbird Partnership Foundation'), (68381, 'https://ror.org/0405fd303', 'no_lang_code', 1, 'https://ror.org/0405fd303 Medica (United States)'), (68382, 'https://ror.org/04060wh35', 'no_lang_code', 1, 'https://ror.org/04060wh35 Advanced Microwave Technologies (United Kingdom)'), (68383, 'https://ror.org/040696g13', 'no_lang_code', 1, 'https://ror.org/040696g13 PI Photovoltaik-Institut (Germany)'), (68384, 'https://ror.org/0406egb04', 'no_lang_code', 1, 'https://ror.org/0406egb04 Adbiotech (South Korea)'), (68385, 'https://ror.org/0408v1a31', 'fr', 1, 'https://ror.org/0408v1a31 Ministère de la Santé'), (68386, 'https://ror.org/040a2d739', 'no_lang_code', 1, 'https://ror.org/040a2d739 Seagate (Ireland)'), (68387, 'https://ror.org/040b19m18', 'en', 1, 'https://ror.org/040b19m18 Wellcome Centre for Infectious Diseases Research in Africa'), (68388, 'https://ror.org/040c9hz12', 'no_lang_code', 1, 'https://ror.org/040c9hz12 Tozer Seeds (United Kingdom)'), (68389, 'https://ror.org/040cjb096', 'en', 1, 'https://ror.org/040cjb096 Korea Art Education Association 한국 미술 교육 학회'), (68390, 'https://ror.org/040eyrz23', 'no_lang_code', 1, 'https://ror.org/040eyrz23 Domino (United Kingdom)'), (68391, 'https://ror.org/040f9jx84', 'no_lang_code', 1, 'https://ror.org/040f9jx84 Acumen Environmental Engineering & Technologies (China) 敏锐环境工程与技术'), (68392, 'https://ror.org/040hdea82', 'en', 1, 'https://ror.org/040hdea82 Coolidge Corner Theatre'), (68393, 'https://ror.org/040hegx59', 'en', 1, 'https://ror.org/040hegx59 Guangxi Agricultural Machinery Research Institute 广西农业机械研究院'), (68394, 'https://ror.org/040kksw48', 'no_lang_code', 1, 'https://ror.org/040kksw48 Rehab-Robotics (China)'), (68395, 'https://ror.org/040mkk956', 'en', 1, 'https://ror.org/040mkk956 Energy Institute named after G.M. Krzhizhanovsky Энергетический институт им. Г.М. Кржижановского'), (68396, 'https://ror.org/040nzs042', 'en', 1, 'https://ror.org/040nzs042 Shenyang Fire Research Institute'), (68397, 'https://ror.org/040pyq062', 'no_lang_code', 1, 'https://ror.org/040pyq062 Shandong Lianxing Energy Group (China) 山东联星能源集团'), (68398, 'https://ror.org/040qnm310', 'no_lang_code', 1, 'https://ror.org/040qnm310 TES Global (United Kingdom)'), (68399, 'https://ror.org/040xkwz97', 'en', 1, 'https://ror.org/040xkwz97 Military Academy of Material and Technical Support them General of the Army A.V. Khruleva Военная академия материально-технического обеспечения им. генерала армии А.В. Хрулёва'), (68400, 'https://ror.org/04104tq92', 'fr', 1, 'https://ror.org/04104tq92 Institut de Recherche Sur L’Intégration Professionnelle des Immigrants'), (68401, 'https://ror.org/0410sm148', 'en', 1, 'https://ror.org/0410sm148 Federal Management Partners'), (68402, 'https://ror.org/0410wtw69', 'fr', 1, 'https://ror.org/0410wtw69 Gouvernement de la Nouvelle-Calédonie'), (68403, 'https://ror.org/0412x6661', 'en', 1, 'https://ror.org/0412x6661 Korea Research Institute of Mechanical Facilities Industry 대한기계설비산업연구원'), (68404, 'https://ror.org/0412z8048', 'no_lang_code', 1, 'https://ror.org/0412z8048 Jiangsu Kawei Auto Industrial Group (China) 江苏卡威汽车工业集团股份有限公司'), (68405, 'https://ror.org/04132ev69', 'nl', 1, 'https://ror.org/04132ev69 Nederlands Instituut voor Lastechniek'), (68406, 'https://ror.org/0415vh479', 'en', 1, 'https://ror.org/0415vh479 Ministry of Interior Mинистерство на вътрешните работи'), (68407, 'https://ror.org/0416ygn80', 'en', 1, 'https://ror.org/0416ygn80 National Development Institute of Korean Medicine'), (68408, 'https://ror.org/04172zb59', 'no_lang_code', 1, 'https://ror.org/04172zb59 IDEXX Laboratories (United States)'), (68409, 'https://ror.org/041azcz03', 'en', 1, 'https://ror.org/041azcz03 Cultural Heritage & Education'), (68410, 'https://ror.org/041cran12', 'en', 1, 'https://ror.org/041cran12 National House Building Council'), (68411, 'https://ror.org/041dptm21', 'en', 1, 'https://ror.org/041dptm21 Sofia Energy Agency АСОЦИАЦИЯ НА АГЕНЦИЯТА ЗА ЕНЕРГИЙНА СОФИЯ'), (68412, 'https://ror.org/041e3g390', 'no_lang_code', 1, 'https://ror.org/041e3g390 Crypta Labs (United Kingdom)'), (68413, 'https://ror.org/041f9mm95', 'fr', 1, 'https://ror.org/041f9mm95 Gay Line Interligne'), (68414, 'https://ror.org/041g7ma18', 'no_lang_code', 1, 'https://ror.org/041g7ma18 Course Hero (United States)'), (68415, 'https://ror.org/041ga0r52', 'no_lang_code', 1, 'https://ror.org/041ga0r52 GyroGear (United Kingdom)'), (68416, 'https://ror.org/041gbt667', 'en', 1, 'https://ror.org/041gbt667 Institute of Semitic Studies'), (68417, 'https://ror.org/041hf3v66', 'fr', 1, 'https://ror.org/041hf3v66 Ministre de la Forêt,de la Mer et de l''Environnement'), (68418, 'https://ror.org/041hn9r79', 'en', 1, 'https://ror.org/041hn9r79 Ministry of Agriculture and Agrarian Reform وزارة الزراعة والإصلاح الزراعي'), (68419, 'https://ror.org/041mxqs23', 'no_lang_code', 1, 'https://ror.org/041mxqs23 Figshare (United Kingdom)'), (68420, 'https://ror.org/041sejv93', 'no_lang_code', 1, 'https://ror.org/041sejv93 Boeing (United Kingdom)'), (68421, 'https://ror.org/041t08q89', 'no_lang_code', 1, 'https://ror.org/041t08q89 Handley Heating Services (United Kingdom)'), (68422, 'https://ror.org/041t9rh23', 'en', 1, 'https://ror.org/041t9rh23 People of Color Against AIDS Network'), (68423, 'https://ror.org/041tqx430', 'en', 1, 'https://ror.org/041tqx430 Ningbo College of Health Sciences 宁波卫生职业技术学院'), (68424, 'https://ror.org/041v5wj47', 'en', 1, 'https://ror.org/041v5wj47 Institute of Mineralogy, Geochemistry and Crystallochemistry of Rare Elements Институт минералогии и геохимии редких элементов'), (68425, 'https://ror.org/041wbs441', 'it', 1, 'https://ror.org/041wbs441 Commissione Nazionale per le Società e la Borsa'), (68426, 'https://ror.org/041zqvj62', 'no_lang_code', 1, 'https://ror.org/041zqvj62 Toray (China) 东丽'), (68427, 'https://ror.org/0421np737', 'en', 1, 'https://ror.org/0421np737 Réseau de sensibilisation de sciences et technologie Science and Technology Awareness Network'), (68428, 'https://ror.org/04250rf44', 'en', 1, 'https://ror.org/04250rf44 JSC Institute Hydroproject АО «Институт Гидропроект»'), (68429, 'https://ror.org/04254vt45', 'no_lang_code', 1, 'https://ror.org/04254vt45 Klinera (India) क्लीरिया निगम भारत ક્લિએરા કોર્પોરેશન ઇન્ડિયા ಕ್ಲಿನ್ಇರಾ ಕಾರ್ಪೊರೇಷನ್ ಇಂಡಿಯಾ'), (68430, 'https://ror.org/0425zsq43', 'no_lang_code', 1, 'https://ror.org/0425zsq43 NutraPharm Tech (South Korea)'), (68431, 'https://ror.org/0427ccd45', 'no_lang_code', 1, 'https://ror.org/0427ccd45 Forge (United Kingdom)'), (68432, 'https://ror.org/0428w4157', 'no_lang_code', 1, 'https://ror.org/0428w4157 Change Agents (Australia)'), (68433, 'https://ror.org/042b06r32', 'en', 1, 'https://ror.org/042b06r32 The Society of Gynecologic Oncology of Canada'), (68434, 'https://ror.org/042b0hg67', 'no_lang_code', 1, 'https://ror.org/042b0hg67 PepsiCo (India)'), (68435, 'https://ror.org/042h3jc15', 'en', 1, 'https://ror.org/042h3jc15 Suzhou Electronic Products Inspection 苏州电子产品检验所'), (68436, 'https://ror.org/042hg5r91', 'en', 1, 'https://ror.org/042hg5r91 Institute of Quantum Materials Science ЗАО "Институт квантового материаловедения"'), (68437, 'https://ror.org/042k0ht81', 'en', 1, 'https://ror.org/042k0ht81 Manhattan District Attorney''s Office'), (68438, 'https://ror.org/042n1mt30', 'en', 1, 'https://ror.org/042n1mt30 Friends For Life'), (68439, 'https://ror.org/042n9zw97', 'en', 1, 'https://ror.org/042n9zw97 Military Academy of the Air Defense Forces Named after Marshal of the Soviet Union А.М. Vasilevsky Военная академия Воздушно-десантных войск Вооруженных Сил Российской Федерации им. Маршала Советского Союза А.М. Василевский'), (68440, 'https://ror.org/042pabj96', 'en', 1, 'https://ror.org/042pabj96 Shandong Institute of Quantum Science and Technology 山东量子科学技术研究院'), (68441, 'https://ror.org/042pg9146', 'no_lang_code', 1, 'https://ror.org/042pg9146 Micro Labs (India) ಮೈಕ್ರೋ ಲ್ಯಾಬ್ಸ್ ಲಿಮಿಟೆಡ್'), (68442, 'https://ror.org/042q4h794', 'no_lang_code', 1, 'https://ror.org/042q4h794 Ferenc Rákóczi II Transcarpathian Hungarian Institute Rákóczi Ferenc Kárpátaljai Magyar Főiskola Закарпатський угорський інститут імені Ференца Ракоці II'), (68443, 'https://ror.org/042qxra19', 'en', 1, 'https://ror.org/042qxra19 Lietuvos saugios laivybos administracija The Lithuanian Maritime Safety Administration'), (68444, 'https://ror.org/042rnq234', 'en', 1, 'https://ror.org/042rnq234 Institute of Engineering Science and Metallurgy Far Eastern Branch of the Russian Academy of Sciences Институт машиноведения и металлургии Дальневосточного отделения Российской академии наук'), (68445, 'https://ror.org/042t78q04', 'no_lang_code', 1, 'https://ror.org/042t78q04 Nanjing Surveying and Mapping Research Institute (China) 南京市测绘勘察研究院股份有限公司'), (68446, 'https://ror.org/042tbn311', 'en', 1, 'https://ror.org/042tbn311 Department of Defence'), (68447, 'https://ror.org/042v5ej15', 'en', 1, 'https://ror.org/042v5ej15 Agencija za lijekove i medicinske proizvode. Sva prava pridržana Agency for Medicinal Products and Medical Devices of Croatia'), (68448, 'https://ror.org/042wg4g29', 'en', 1, 'https://ror.org/042wg4g29 Agricultural Industries Confederation'), (68449, 'https://ror.org/042zedv06', 'fr', 1, 'https://ror.org/042zedv06 Société Québécoise de Lipidologie, de Nutrition et de Métabolisme'), (68450, 'https://ror.org/04320sq35', 'en', 1, 'https://ror.org/04320sq35 Yeongnam Chinese Literature Society 영남중국어문학회'), (68451, 'https://ror.org/0432aqd92', 'en', 1, 'https://ror.org/0432aqd92 Andrew Faulkner Associates'), (68452, 'https://ror.org/0433ct737', 'no_lang_code', 1, 'https://ror.org/0433ct737 NIIAS Научно-исследовательский и проектно-конструкторский институт информатизации, автоматизации и связи на железнодорожном транспорте'), (68453, 'https://ror.org/04340b392', 'no_lang_code', 1, 'https://ror.org/04340b392 Agency9 (Sweden)'), (68454, 'https://ror.org/0435jga27', 'en', 1, 'https://ror.org/0435jga27 Taganrog Research Institute of Communications Таганрогский научно-исследовательский институт связи'), (68455, 'https://ror.org/0435vfk93', 'no_lang_code', 1, 'https://ror.org/0435vfk93 Philips (India)'), (68456, 'https://ror.org/0437bmy49', 'no_lang_code', 1, 'https://ror.org/0437bmy49 Admomo Media (China)'), (68457, 'https://ror.org/043axjc63', 'no_lang_code', 1, 'https://ror.org/043axjc63 Kingfisher (United Kingdom)'), (68458, 'https://ror.org/043ca0x76', 'no_lang_code', 1, 'https://ror.org/043ca0x76 Nam Kwong Electric (China) 南光電品有限公司'), (68459, 'https://ror.org/043ch9202', 'de', 1, 'https://ror.org/043ch9202 Ministerium der Justiz Nordrhein-Westfalen'), (68460, 'https://ror.org/043d97677', 'en', 1, 'https://ror.org/043d97677 Junior Achievement'), (68461, 'https://ror.org/043gbyv69', 'en', 1, 'https://ror.org/043gbyv69 Korean Academy of Social Welfare 한국 사회 복지'), (68462, 'https://ror.org/043k84k36', 'no_lang_code', 1, 'https://ror.org/043k84k36 Enovate Biolife (India)'), (68463, 'https://ror.org/043kg1637', 'no_lang_code', 1, 'https://ror.org/043kg1637 Chambroad Chemical Industry Research Institute (China) 香港化学工业研究所有限公司'), (68464, 'https://ror.org/043my4k18', 'en', 1, 'https://ror.org/043my4k18 Jiangxi Provincial Institute of Water Resources Planning and Design 江西省水利规划设计研究院 版权所有'), (68465, 'https://ror.org/043njxm98', 'fr', 1, 'https://ror.org/043njxm98 Table Carrefour Violence Conjugale Québec Métro'), (68466, 'https://ror.org/043qcaa25', 'en', 1, 'https://ror.org/043qcaa25 The Joint Institute of Mechanical Engineering'), (68467, 'https://ror.org/043qm9c80', 'es', 1, 'https://ror.org/043qm9c80 Instituto tecnológico de Matemática Industrial'), (68468, 'https://ror.org/043s7kq40', 'no_lang_code', 1, 'https://ror.org/043s7kq40 Kingfa (China)'), (68469, 'https://ror.org/043smqe02', 'no_lang_code', 1, 'https://ror.org/043smqe02 Unilever (Indonesia)'), (68470, 'https://ror.org/043smtf02', 'en', 1, 'https://ror.org/043smtf02 Ministry of Health'), (68471, 'https://ror.org/043sy2j95', 'no_lang_code', 1, 'https://ror.org/043sy2j95 Devro (United Kingdom)'), (68472, 'https://ror.org/043tdpj13', 'no_lang_code', 1, 'https://ror.org/043tdpj13 Karm Research Group (United Kingdom)'), (68473, 'https://ror.org/043xhrz72', 'en', 1, 'https://ror.org/043xhrz72 Badan Meteorologi, Klimatologi, dan Geofisika Meteorological, Climatological, And Geophysical Agency'), (68474, 'https://ror.org/043xmfp89', 'en', 1, 'https://ror.org/043xmfp89 Indravati Hospital & Research Centre इंद्रावती हॉस्पिटल एंड रिसर्च सेंटर'), (68475, 'https://ror.org/043z96f51', 'en', 1, 'https://ror.org/043z96f51 International League Against Epilepsy'), (68476, 'https://ror.org/043zsj038', 'no_lang_code', 1, 'https://ror.org/043zsj038 Sanofi (India) सनोफी'), (68477, 'https://ror.org/0442x7317', 'en', 1, 'https://ror.org/0442x7317 Siberian State Order of the Red Banner of Labor Research Institute of Metrology Сибирский государственный ордена Трудового Красного Знамени научно- исследовательский институт метрологии'), (68478, 'https://ror.org/0444szm67', 'en', 1, 'https://ror.org/0444szm67 Stockholm Institute of Communication Science'), (68479, 'https://ror.org/0445snd35', 'en', 1, 'https://ror.org/0445snd35 Federal Motor Transport Authority Kraftfahrt-Bundesamt'), (68480, 'https://ror.org/0447hq607', 'no_lang_code', 1, 'https://ror.org/0447hq607 (주)씨티씨바이오 CTCBio (South Korea)'), (68481, 'https://ror.org/044a9d018', 'en', 1, 'https://ror.org/044a9d018 Jiangsu Industry Technology Research Institute 江苏工业技术研究院'), (68482, 'https://ror.org/044b5hs67', 'en', 1, 'https://ror.org/044b5hs67 Greater Lafourche Port Commission'), (68483, 'https://ror.org/044bvzh33', 'no_lang_code', 1, 'https://ror.org/044bvzh33 Sanwa Technologies (China)'), (68484, 'https://ror.org/044bzs788', 'no_lang_code', 1, 'https://ror.org/044bzs788 ATDBio (United Kingdom)'), (68485, 'https://ror.org/044d15d71', 'en', 1, 'https://ror.org/044d15d71 Qatar Tourism Authority الهيئة العامة للسياحة'), (68486, 'https://ror.org/044d6nj38', 'en', 1, 'https://ror.org/044d6nj38 Ministry of Agriculture'), (68487, 'https://ror.org/044dmqn91', 'en', 1, 'https://ror.org/044dmqn91 Centre for Sustainable Healthcare'), (68488, 'https://ror.org/044f58834', 'no_lang_code', 1, 'https://ror.org/044f58834 Shanghai Huayi Group (China) 上海华谊(集团)公司'), (68489, 'https://ror.org/044kv7f59', 'en', 1, 'https://ror.org/044kv7f59 Bishopsgate Institute'), (68490, 'https://ror.org/044qfk433', 'en', 1, 'https://ror.org/044qfk433 Institute of public health of Republic of Macedonia Instituti i Shëndetit Publik i Republikës së Maqedonisë Институт за јавно здравје на Република Македонија'), (68491, 'https://ror.org/044qm0e47', 'en', 1, 'https://ror.org/044qm0e47 Ministry of Petroleum and Energy Olje- og energidepartementet'), (68492, 'https://ror.org/044w2a375', 'no_lang_code', 1, 'https://ror.org/044w2a375 Inspection Technologies (United Kingdom)'), (68493, 'https://ror.org/044wmmj34', 'en', 1, 'https://ror.org/044wmmj34 Hefei Institute of Technology Innovation'), (68494, 'https://ror.org/044wnr609', 'en', 1, 'https://ror.org/044wnr609 The Korean Association of Ethics 한국윤리학회'), (68495, 'https://ror.org/044y4ky78', 'en', 1, 'https://ror.org/044y4ky78 Northern Ireland Tourist Board'), (68496, 'https://ror.org/044y8xw28', 'en', 1, 'https://ror.org/044y8xw28 Fundacja Itaka ITAKA Foundation'), (68497, 'https://ror.org/044yb1859', 'en', 1, 'https://ror.org/044yb1859 Shandong Academy of Environmental Science 山东省环境保护科学研究设计院地'), (68498, 'https://ror.org/044z1kj72', 'en', 1, 'https://ror.org/044z1kj72 Internet Professional Association 互聯網專業協會'), (68499, 'https://ror.org/044zwsy33', 'en', 1, 'https://ror.org/044zwsy33 Suzhou Industrial Park Vocational Technical College 苏州工业园区职业技术学院'), (68500, 'https://ror.org/045029d66', 'en', 1, 'https://ror.org/045029d66 John Muir Trust'), (68501, 'https://ror.org/045195s13', 'no_lang_code', 1, 'https://ror.org/045195s13 Nara Controls (South Korea)'), (68502, 'https://ror.org/045272c39', 'no_lang_code', 1, 'https://ror.org/045272c39 Samyoung Unitech (South Korea)'), (68503, 'https://ror.org/0452w5362', 'no_lang_code', 1, 'https://ror.org/0452w5362 Phicomm (China) 斐讯'); INSERT INTO `rors` VALUES (68504, 'https://ror.org/0453axf13', 'en', 1, 'https://ror.org/0453axf13 Financial Management Association International'), (68505, 'https://ror.org/0453gw346', 'no_lang_code', 1, 'https://ror.org/0453gw346 Agrimetrics (United Kingdom)'), (68506, 'https://ror.org/0454xt523', 'es', 1, 'https://ror.org/0454xt523 Seminario Bíblico de Colombia Fundación Universitaria'), (68507, 'https://ror.org/0455j8q41', 'en', 1, 'https://ror.org/0455j8q41 Korea Dance Association 사단법인 한국무용협회'), (68508, 'https://ror.org/0455ncp47', 'en', 1, 'https://ror.org/0455ncp47 Association for Language Learning'), (68509, 'https://ror.org/0455r8m48', 'no_lang_code', 1, 'https://ror.org/0455r8m48 IT Channel (China) 科技导航'), (68510, 'https://ror.org/04570m236', 'en', 1, 'https://ror.org/04570m236 Landsbókasafn Íslands Háskólabókasafn National and University Library of Iceland'), (68511, 'https://ror.org/04598a202', 'en', 1, 'https://ror.org/04598a202 The Korean Historical Association 역사학회'), (68512, 'https://ror.org/0459zan02', 'no_lang_code', 1, 'https://ror.org/0459zan02 CL Pharm (South Korea)'), (68513, 'https://ror.org/045che656', 'en', 1, 'https://ror.org/045che656 Research Institute of Fur Industry НИИ МехПром'), (68514, 'https://ror.org/045dsac53', 'en', 1, 'https://ror.org/045dsac53 Korean Association of Women''s History 한국 여성사 협회'), (68515, 'https://ror.org/045embs06', 'en', 1, 'https://ror.org/045embs06 Fundacja Idea Rozwoju IDEA of Development Foundation'), (68516, 'https://ror.org/045kyae46', 'en', 1, 'https://ror.org/045kyae46 Ministry of Agriculture and Fisheries'), (68517, 'https://ror.org/045pm7d82', 'en', 1, 'https://ror.org/045pm7d82 Peace Action, Training and Research Institute of Romania'), (68518, 'https://ror.org/045t4ag71', 'en', 1, 'https://ror.org/045t4ag71 Hong Kong Hotels Association 香港酒店业协会'), (68519, 'https://ror.org/045tbyy79', 'no_lang_code', 1, 'https://ror.org/045tbyy79 Dr. Bidari’s Ashwini Hospital'), (68520, 'https://ror.org/045vmw703', 'en', 1, 'https://ror.org/045vmw703 Tatar Scientific Research And Design Institute of Petroleum Engineering ТАТАРСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ И ПРОЕКТНО-КОНСТРУКТОРСКИЙ ИНСТИТУТ НЕФТЯНОГО МАШИНОСТРОЕНИЯ'), (68521, 'https://ror.org/045wfpr34', 'en', 1, 'https://ror.org/045wfpr34 Comhairle Cathrach Chorcaí Cork City Council'), (68522, 'https://ror.org/045x5zp74', 'no_lang_code', 1, 'https://ror.org/045x5zp74 NSilico (Ireland)'), (68523, 'https://ror.org/045yv2772', 'no_lang_code', 1, 'https://ror.org/045yv2772 Virchow BioTech (India)'), (68524, 'https://ror.org/045z49291', 'en', 1, 'https://ror.org/045z49291 Ministerul Apărării Naționale Ministry of National Defence'), (68525, 'https://ror.org/046268q59', 'no_lang_code', 1, 'https://ror.org/046268q59 Foshan Ceramics Research Institute (China) 佛山市陶瓷研究所有限'), (68526, 'https://ror.org/0462w7z59', 'en', 1, 'https://ror.org/0462w7z59 German Agency for Quality in Medicine Ärztliches Zentrum für Qualität in der Medizin (ÄZQ)'), (68527, 'https://ror.org/0467xn953', 'en', 1, 'https://ror.org/0467xn953 Balhousie Care Group'), (68528, 'https://ror.org/0468j3t74', 'no_lang_code', 1, 'https://ror.org/0468j3t74 Panasonic (Russia)'), (68529, 'https://ror.org/0468tse97', 'en', 1, 'https://ror.org/0468tse97 The Canadian Scientific & Christian Affiliation'), (68530, 'https://ror.org/046916w66', 'no_lang_code', 1, 'https://ror.org/046916w66 XTC (China) 小天才'), (68531, 'https://ror.org/046bz5635', 'en', 1, 'https://ror.org/046bz5635 Ministry of Economy of the Republic of Belarus Міністэрства эканомікі Рэспублікі Беларусь'), (68532, 'https://ror.org/046ec1h37', 'de', 1, 'https://ror.org/046ec1h37 Bundesverband Baustoffe - Steine und Erden, German Building Materials Association'), (68533, 'https://ror.org/046fag481', 'no_lang_code', 1, 'https://ror.org/046fag481 China Shenhua Energy (China) 神华能源'), (68534, 'https://ror.org/046fssx10', 'no_lang_code', 1, 'https://ror.org/046fssx10 Sun Cupid Technology (China) 太阳丘比特科技'), (68535, 'https://ror.org/046h96256', 'tr', 1, 'https://ror.org/046h96256 İstanbul Pendik Veteriner Kontrol Enstitüsü'), (68536, 'https://ror.org/046hgyp50', 'en', 1, 'https://ror.org/046hgyp50 Cowlitz-Wahkiakum Council of Governments'), (68537, 'https://ror.org/046j5g483', 'no_lang_code', 1, 'https://ror.org/046j5g483 Pegatron (Taiwan) 和碩聯合科技股份有限公司'), (68538, 'https://ror.org/046mdph26', 'no_lang_code', 1, 'https://ror.org/046mdph26 Vitelic Technology (China)'), (68539, 'https://ror.org/046nzts54', 'no_lang_code', 1, 'https://ror.org/046nzts54 Environmental Monitoring Solutions (United Kingdom)'), (68540, 'https://ror.org/046qfjt27', 'en', 1, 'https://ror.org/046qfjt27 National Evaluation and Accreditation Agency Национална агенция за оценяване и акредитация'), (68541, 'https://ror.org/046qpde88', 'en', 1, 'https://ror.org/046qpde88 Scientific Research Institute of Horticulture of Siberia named after М.А. Lisavenko'), (68542, 'https://ror.org/046qqhz73', 'en', 1, 'https://ror.org/046qqhz73 Korea Research Institute for Construction Policy 한국건설기술연구원'), (68543, 'https://ror.org/046ra5d44', 'en', 1, 'https://ror.org/046ra5d44 Institut für angewandte Bauinformatik Institute of Applied Building Informatics'), (68544, 'https://ror.org/046rj3t65', 'en', 1, 'https://ror.org/046rj3t65 Lembaga Warisan Negara National Heritage Board தேசிய மரபுடைமைக் கழகம் 国家文物局'), (68545, 'https://ror.org/046s87c39', 'en', 1, 'https://ror.org/046s87c39 The Lewy Body Society'), (68546, 'https://ror.org/046tg4t13', 'en', 1, 'https://ror.org/046tg4t13 Zhangjiagang Intelligent Power Research Institute 张家港智能电力科学研究院'), (68547, 'https://ror.org/046vsfw69', 'en', 1, 'https://ror.org/046vsfw69 Korea Economic History Society 경제사학회'), (68548, 'https://ror.org/046w98q07', 'pt', 1, 'https://ror.org/046w98q07 Ministério da Saúde'), (68549, 'https://ror.org/046wacp46', 'en', 1, 'https://ror.org/046wacp46 South-Russian State Polytechnic University named after MI Platov'), (68550, 'https://ror.org/046xx9480', 'en', 1, 'https://ror.org/046xx9480 Korea Counseling Graduate University 한국상담대학원대학교'), (68551, 'https://ror.org/046yjt975', 'en', 1, 'https://ror.org/046yjt975 Focus Ireland'), (68552, 'https://ror.org/046zes997', 'en', 1, 'https://ror.org/046zes997 Men Overcoming Violence'), (68553, 'https://ror.org/0470cr695', 'no_lang_code', 1, 'https://ror.org/0470cr695 AKT II (United Kingdom)'), (68554, 'https://ror.org/0470pce88', 'en', 1, 'https://ror.org/0470pce88 Smolensk Scientific Research Institute of Agriculture Смоленский научно-исследовательский институт сельского хозяйства'), (68555, 'https://ror.org/04724nx69', 'en', 1, 'https://ror.org/04724nx69 Comhairle Contae Mhaigh Eo, Mayo County Council'), (68556, 'https://ror.org/0474e7473', 'no_lang_code', 1, 'https://ror.org/0474e7473 Hong Kong Blind Union 香港失明人協進會'), (68557, 'https://ror.org/0474p4r72', 'no_lang_code', 1, 'https://ror.org/0474p4r72 Inspur (China) 浪潮'), (68558, 'https://ror.org/0475cs869', 'no_lang_code', 1, 'https://ror.org/0475cs869 Wuxi Industrial Equipment Installation (China) 无锡市工业设备安装有限公司'), (68559, 'https://ror.org/047bk8v58', 'no_lang_code', 1, 'https://ror.org/047bk8v58 Cast Metals Federation (United Kingdom)'), (68560, 'https://ror.org/047by7h51', 'no_lang_code', 1, 'https://ror.org/047by7h51 Luoyang Sanlong Installation and Maintenance (China) 洛阳三隆安装检修有限公司'), (68561, 'https://ror.org/047k73g37', 'no_lang_code', 1, 'https://ror.org/047k73g37 Mikron (Russia) Микрон'), (68562, 'https://ror.org/047mfz132', 'en', 1, 'https://ror.org/047mfz132 Siberian Scientific Research Institute of Oil Industry'), (68563, 'https://ror.org/047qkza04', 'no_lang_code', 1, 'https://ror.org/047qkza04 Jiangsu Yanjiang Chemical Resources Development Research Institute (China) 江苏沿江化学资源开发研究院'), (68564, 'https://ror.org/047qrwb61', 'no_lang_code', 1, 'https://ror.org/047qrwb61 Amos Enterprise (China) 阿莫斯企业有限公司'), (68565, 'https://ror.org/047rxfg53', 'en', 1, 'https://ror.org/047rxfg53 Tianjin Stomatological Hospital 天津市口腔医院'), (68566, 'https://ror.org/047tgb953', 'en', 1, 'https://ror.org/047tgb953 Federal Scientific Center for Medical and Preventive Health Risk Management Technologies Любое использование материалов допускается только с согласия правообладателя'), (68567, 'https://ror.org/047xkn445', 'en', 1, 'https://ror.org/047xkn445 Geological Society of Korea 대한지질학회'), (68568, 'https://ror.org/047xt4p04', 'fr', 1, 'https://ror.org/047xt4p04 Centre Intégré de Santé et de Services Sociaux du Bas-Saint-Laurent'), (68569, 'https://ror.org/047ygyr49', 'en', 1, 'https://ror.org/047ygyr49 The Korean Association for Dialectology 한국방언학회'), (68570, 'https://ror.org/047zg7c19', 'en', 1, 'https://ror.org/047zg7c19 K. J. Somaiya Hospital & Research Centre के. जे. सोमय्या हॉस्पिटल अँन्ड रिसर्च सेंटर के। जे। सोमैया हॉस्पिटल एंड रिसर्च सेंटर'), (68571, 'https://ror.org/0480smc83', 'en', 1, 'https://ror.org/0480smc83 Lietuvos agrarinių ir miškų mokslų centro filialas Lithuanian Research Centre for Agriculture and Forestry'), (68572, 'https://ror.org/0483jcr74', 'no_lang_code', 1, 'https://ror.org/0483jcr74 British Precast (United Kingdom)'), (68573, 'https://ror.org/0486wce04', 'en', 1, 'https://ror.org/0486wce04 Black Cultural Archives'), (68574, 'https://ror.org/04896fz93', 'fr', 1, 'https://ror.org/04896fz93 Commission Internationale pour la Protection des Alpes'), (68575, 'https://ror.org/0489td242', 'en', 1, 'https://ror.org/0489td242 Korean Spanish Literature Society 한국스페인어문학회'), (68576, 'https://ror.org/048b33h38', 'en', 1, 'https://ror.org/048b33h38 JBI International'), (68577, 'https://ror.org/048byev10', 'no_lang_code', 1, 'https://ror.org/048byev10 MotherApp (China)'), (68578, 'https://ror.org/048cxnx33', 'no_lang_code', 1, 'https://ror.org/048cxnx33 Quality Systems (United States)'), (68579, 'https://ror.org/048d2bt95', 'en', 1, 'https://ror.org/048d2bt95 Shandong Institute for Product Quality Inspection 山东省产品质量检验研究院'), (68580, 'https://ror.org/048db4454', 'en', 1, 'https://ror.org/048db4454 National Platform of Self Advocates'), (68581, 'https://ror.org/048favk11', 'no_lang_code', 1, 'https://ror.org/048favk11 Isastur (Spain)'), (68582, 'https://ror.org/048gxh623', 'no_lang_code', 1, 'https://ror.org/048gxh623 Dalim (South Korea)'), (68583, 'https://ror.org/048gya260', 'no_lang_code', 1, 'https://ror.org/048gya260 Kerry Group (Ireland)'), (68584, 'https://ror.org/048j6j578', 'no_lang_code', 1, 'https://ror.org/048j6j578 Synchronoss (United States)'), (68585, 'https://ror.org/048jfe862', 'en', 1, 'https://ror.org/048jfe862 Nanjing Architecture Design and Research Institute 南京市建筑设计研究院有限责任公司'), (68586, 'https://ror.org/048kbkr42', 'en', 1, 'https://ror.org/048kbkr42 Federal Service for Technical and Export Control Федеральная служба по техническому и экспортному контролю'), (68587, 'https://ror.org/048m5jb39', 'en', 1, 'https://ror.org/048m5jb39 Extreme Light Infrastructure - Nuclear Physics'), (68588, 'https://ror.org/048mf0j29', 'en', 1, 'https://ror.org/048mf0j29 Business West'), (68589, 'https://ror.org/048n5zk82', 'en', 1, 'https://ror.org/048n5zk82 Onnuri Smile Eye Clinic'), (68590, 'https://ror.org/048nyba16', 'en', 1, 'https://ror.org/048nyba16 Ministry of Mines and Geology Ministère des Mines et de la Géologie'), (68591, 'https://ror.org/048p60388', 'no_lang_code', 1, 'https://ror.org/048p60388 Beijing Railway Institute of Mechanical & Electrical Engineering Group (China) 北京铁道工程机电技术研究所股份有限公'), (68592, 'https://ror.org/048rar163', 'no_lang_code', 1, 'https://ror.org/048rar163 Reprodoc (Ireland)'), (68593, 'https://ror.org/048shx058', 'no_lang_code', 1, 'https://ror.org/048shx058 Wuxi Taiji industry (China) 无锡市太极实业股份有限公司'), (68594, 'https://ror.org/048snpq13', 'en', 1, 'https://ror.org/048snpq13 Resource Management Agency'), (68595, 'https://ror.org/048tmw498', 'no_lang_code', 1, 'https://ror.org/048tmw498 Viogem Всероссийский научно-исследовательский институт по осушению месторождений полезных ископаемых, защите инженерных сооружений от обводнения, специальным горным работам, геомеханике, геофизике, гидротехнике, геологии и маркшейдерскому делу'), (68596, 'https://ror.org/048vxvs85', 'fr', 1, 'https://ror.org/048vxvs85 Regroupement des Maisons pour Femmes Victimes de Violence Conjugale'), (68597, 'https://ror.org/048wp8t87', 'no_lang_code', 1, 'https://ror.org/048wp8t87 Jiangsu Province Metallurgical Design Institute (China) 江苏省冶金设计院有限公司'), (68598, 'https://ror.org/048wwkz81', 'en', 1, 'https://ror.org/048wwkz81 Henan Provincial Academy of Building Research 河南省建筑科学研究院有'), (68599, 'https://ror.org/048xn9q22', 'en', 1, 'https://ror.org/048xn9q22 China National Petroleum and Chemical Planning Institute 石油和化学工业规划院'), (68600, 'https://ror.org/048xprg90', 'en', 1, 'https://ror.org/048xprg90 Bertalanffy Center for the Study of Systems Science Bertalanffy Zentrum für das Studium der Systemwissenschaften'), (68601, 'https://ror.org/048yeyk79', 'no_lang_code', 1, 'https://ror.org/048yeyk79 Guzhou Transportation Planning Survey & Design Academe (China) 贵州交通规划勘察设计院有限公司'), (68602, 'https://ror.org/048z7ap74', 'en', 1, 'https://ror.org/048z7ap74 Canadian Sleep Society Société Canadienne du Sommeil'), (68603, 'https://ror.org/048zkw057', 'no_lang_code', 1, 'https://ror.org/048zkw057 Korea Financial Engineering Consulting (South Korea) 한국 금융 공학 컨설팅'), (68604, 'https://ror.org/0491qs096', 'en', 1, 'https://ror.org/0491qs096 The Third Affiliated Hospital of Zhejiang Chinese Medical University 浙江中医药大学附属第三医院莫'), (68605, 'https://ror.org/0493mnj50', 'no_lang_code', 1, 'https://ror.org/0493mnj50 Clovergreen (China)'), (68606, 'https://ror.org/04951gp18', 'en', 1, 'https://ror.org/04951gp18 Alabama Historical Commission'), (68607, 'https://ror.org/0497jkw73', 'no_lang_code', 1, 'https://ror.org/0497jkw73 Olive Lifesciences (India)'), (68608, 'https://ror.org/04980ww45', 'no_lang_code', 1, 'https://ror.org/04980ww45 Nemo Partners (South Korea) 네모파트너즈'), (68609, 'https://ror.org/04982zn36', 'en', 1, 'https://ror.org/04982zn36 Anhui Academy of Coal Science 安徽省煤炭科学研究院'), (68610, 'https://ror.org/0498wda10', 'en', 1, 'https://ror.org/0498wda10 European Writers'' Council'), (68611, 'https://ror.org/0498x1v76', 'en', 1, 'https://ror.org/0498x1v76 Texoma Council of Governments'), (68612, 'https://ror.org/049986y36', 'en', 1, 'https://ror.org/049986y36 Chinese Literature Society 중국인문학회'), (68613, 'https://ror.org/0499b1896', 'en', 1, 'https://ror.org/0499b1896 Yantai Nanshan University 烟台南山学院'), (68614, 'https://ror.org/0499kfe57', 'en', 1, 'https://ror.org/0499kfe57 Department for Work and Pensions'), (68615, 'https://ror.org/049b8gm87', 'en', 1, 'https://ror.org/049b8gm87 Teerthanker Mahaveer Medical College & Research Centre तीर्थंकर महावीर मेडिकल कॉलेज एंड रिसर्च सेंटर'), (68616, 'https://ror.org/049ck3c19', 'en', 1, 'https://ror.org/049ck3c19 Childminding Ireland'), (68617, 'https://ror.org/049cw4s75', 'en', 1, 'https://ror.org/049cw4s75 North Caucasian Research Institute of Mountain and Foothill Agriculture Северо-Кавказский НИИ горного и предгорного сельского хозяйства'), (68618, 'https://ror.org/049d7dw39', 'en', 1, 'https://ror.org/049d7dw39 Youth Theatre Ireland'), (68619, 'https://ror.org/049e30b03', 'en', 1, 'https://ror.org/049e30b03 Complex Scientific Research Institute. H.I. Ibrahimov Комплексный научно-исследовательский институт им. Х. И. Ибрагимова Российской академии наук'), (68620, 'https://ror.org/049gvs161', 'en', 1, 'https://ror.org/049gvs161 National Allergy Asthma Bronchitis Institute'), (68621, 'https://ror.org/049j4jr36', 'en', 1, 'https://ror.org/049j4jr36 "Московский НИИСХ «Немчиновка», Moscow Research Institute" Nemchinovka "'), (68622, 'https://ror.org/049jpjz09', 'en', 1, 'https://ror.org/049jpjz09 Guangdong Institute of Intelligent Manufacturing 广东省智能制造研究所成'), (68623, 'https://ror.org/049kc3j58', 'en', 1, 'https://ror.org/049kc3j58 PRA Health Sciences'), (68624, 'https://ror.org/049kk5y54', 'en', 1, 'https://ror.org/049kk5y54 Siobhan Davies Studios'), (68625, 'https://ror.org/049n5v408', 'en', 1, 'https://ror.org/049n5v408 Qatar Financial Centre Authority'), (68626, 'https://ror.org/049naj365', 'no_lang_code', 1, 'https://ror.org/049naj365 B-Free Technology (China)'), (68627, 'https://ror.org/049r2ed34', 'en', 1, 'https://ror.org/049r2ed34 Swim Ireland'), (68628, 'https://ror.org/049r93771', 'no_lang_code', 1, 'https://ror.org/049r93771 DNA Electronics (United Kingdom)'), (68629, 'https://ror.org/049ragm77', 'de', 1, 'https://ror.org/049ragm77 Ministerium für Verkehr des Landes Nordrhein-Westfalen'), (68630, 'https://ror.org/049rajq70', 'en', 1, 'https://ror.org/049rajq70 Qatar Natural History Group'), (68631, 'https://ror.org/049rnt984', 'no_lang_code', 1, 'https://ror.org/049rnt984 Tyson Foods (United Kingdom)'), (68632, 'https://ror.org/049sf4b15', 'de', 1, 'https://ror.org/049sf4b15 Finanzministerium des Landes Schleswig-Holstein'), (68633, 'https://ror.org/049tttq19', 'en', 1, 'https://ror.org/049tttq19 Tula Institute of Design & Technology Проектно-Конструкторский Технологический Институт машиностроения'), (68634, 'https://ror.org/049ve2f77', 'no_lang_code', 1, 'https://ror.org/049ve2f77 Al Sulaiteen Agricultural & Industrial Complex (Qatar)'), (68635, 'https://ror.org/049w4dp92', 'en', 1, 'https://ror.org/049w4dp92 Wuhu Hit Robot Technology Research Institute 哈特机器人研究院'), (68636, 'https://ror.org/049weg966', 'en', 1, 'https://ror.org/049weg966 ESI - Post Graduate Institute of Medical Science and Research'), (68637, 'https://ror.org/049x6dn19', 'en', 1, 'https://ror.org/049x6dn19 Irish Blood Transfusion Service, Seirbhís Fuilaistriúcháin na hÉireann'), (68638, 'https://ror.org/049yh6j39', 'no_lang_code', 1, 'https://ror.org/049yh6j39 CMCL Innovations (United Kingdom)'), (68639, 'https://ror.org/049zdyf95', 'en', 1, 'https://ror.org/049zdyf95 Yongin Mental Hospital 용인도정신병원'), (68640, 'https://ror.org/049zrr195', 'en', 1, 'https://ror.org/049zrr195 S.R. Kalla Memorial Gastro and General Hospital एस आर कल्ला मेमोरियल गैस्ट्रो एंड जनरल अस्पताल'), (68641, 'https://ror.org/04a0ct255', 'en', 1, 'https://ror.org/04a0ct255 Democracy Center'), (68642, 'https://ror.org/04a0env39', 'no_lang_code', 1, 'https://ror.org/04a0env39 Catalytic Innovations (United States)'), (68643, 'https://ror.org/04a19s309', 'en', 1, 'https://ror.org/04a19s309 Academician Pilyugin Center Федеральное государственное унитарное предприятие «Научно-производственный центр автоматики и приборостроения имени академика Н. А. Пилюгина'), (68644, 'https://ror.org/04a21y403', 'no_lang_code', 1, 'https://ror.org/04a21y403 Irish Home Energy Rating Energy Services (Ireland)'), (68645, 'https://ror.org/04a35vw13', 'no_lang_code', 1, 'https://ror.org/04a35vw13 Janssen (India)'), (68646, 'https://ror.org/04a3nbd69', 'en', 1, 'https://ror.org/04a3nbd69 Institut za jadranske kulture i melioraciju krša Institute for Adriatic Crops and Karst Reclamation'), (68647, 'https://ror.org/04a44dr33', 'en', 1, 'https://ror.org/04a44dr33 Korean Society of Educational Technology 한국교육공학회'), (68648, 'https://ror.org/04a6pz225', 'de', 1, 'https://ror.org/04a6pz225 HBLFA Tirol, Höhere Bundeslehr- und Forschungsanstalt für Landwirtschaft und Ernährung, Lebensmittel- und Biotechnologie Tirol'), (68649, 'https://ror.org/04a8px331', 'en', 1, 'https://ror.org/04a8px331 Russian Institute of Radionavigation and Time Российский институт радионавигации и времени'), (68650, 'https://ror.org/04a91ra66', 'no_lang_code', 1, 'https://ror.org/04a91ra66 Heathrow Airport Holdings (United Kingdom)'), (68651, 'https://ror.org/04a9d3847', 'en', 1, 'https://ror.org/04a9d3847 Alton Towers Resort'), (68652, 'https://ror.org/04aa0zm65', 'en', 1, 'https://ror.org/04aa0zm65 Cloud Computing Center 云计算中心'), (68653, 'https://ror.org/04aa9an38', 'ro', 1, 'https://ror.org/04aa9an38 Institutul Naţional al Patrimoniului'), (68654, 'https://ror.org/04aax7b26', 'en', 1, 'https://ror.org/04aax7b26 The Health Care Science Institute ヘルスケア科学研究所'), (68655, 'https://ror.org/04acgky61', 'en', 1, 'https://ror.org/04acgky61 Luoyang Cement Engineering Design and Research Institute 洛阳水泥工程设计研究院'), (68656, 'https://ror.org/04acy3777', 'en', 1, 'https://ror.org/04acy3777 Science Council'), (68657, 'https://ror.org/04aexvn38', 'no_lang_code', 1, 'https://ror.org/04aexvn38 Stallergenes Greer (Spain)'), (68658, 'https://ror.org/04ah1mm76', 'en', 1, 'https://ror.org/04ah1mm76 State Research Institute of Mechanical Engineering Государственный научно-исследовательский институт машиностроения" им. В.В. Бахирева'), (68659, 'https://ror.org/04ahbgg16', 'en', 1, 'https://ror.org/04ahbgg16 Culinary Society of Korea 한국조리학회'), (68660, 'https://ror.org/04ahnh094', 'no_lang_code', 1, 'https://ror.org/04ahnh094 Lattice Government Services (United States)'), (68661, 'https://ror.org/04am0wd41', 'en', 1, 'https://ror.org/04am0wd41 Korean Technology Education Association 한국기술교육학회'), (68662, 'https://ror.org/04apk3g44', 'en', 1, 'https://ror.org/04apk3g44 International St. Mary''s Hospital 가톨릭관동대학교'), (68663, 'https://ror.org/04asgtj30', 'en', 1, 'https://ror.org/04asgtj30 Baoding University'), (68664, 'https://ror.org/04astfq33', 'en', 1, 'https://ror.org/04astfq33 Youth Society Opening the Future 청소년 사회 미래를 여는'), (68665, 'https://ror.org/04atm1047', 'no_lang_code', 1, 'https://ror.org/04atm1047 Lubawa (Poland)'), (68666, 'https://ror.org/04aycct37', 'no_lang_code', 1, 'https://ror.org/04aycct37 Shinva (China) 山东新华医疗器械股份有限公司'), (68667, 'https://ror.org/04azzhq34', 'no_lang_code', 1, 'https://ror.org/04azzhq34 Shanghai Construction Group (China) 上海建工集团'), (68668, 'https://ror.org/04b0d8j03', 'en', 1, 'https://ror.org/04b0d8j03 Boardmatch'), (68669, 'https://ror.org/04b1e4w55', 'en', 1, 'https://ror.org/04b1e4w55 Business to Arts'), (68670, 'https://ror.org/04b2d5d26', 'en', 1, 'https://ror.org/04b2d5d26 Providence Health Care Research Institute'), (68671, 'https://ror.org/04b2w5n94', 'no_lang_code', 1, 'https://ror.org/04b2w5n94 Lotus Labs (India)'), (68672, 'https://ror.org/04b305x04', 'en', 1, 'https://ror.org/04b305x04 Institue of the History of Christianity in Korea 한국교회사학회'), (68673, 'https://ror.org/04b3c9h40', 'no_lang_code', 1, 'https://ror.org/04b3c9h40 Dalian Academy of Reconnaissance and Mapping (China) 大连勘测测绘研究院'), (68674, 'https://ror.org/04b3dps61', 'no_lang_code', 1, 'https://ror.org/04b3dps61 CapitaLogic (China)'), (68675, 'https://ror.org/04b4psm33', 'no_lang_code', 1, 'https://ror.org/04b4psm33 Anpac Semiconductor (China) 安帕克半导体有限公司'), (68676, 'https://ror.org/04b4yfd09', 'no_lang_code', 1, 'https://ror.org/04b4yfd09 DSP4YOU (China)'), (68677, 'https://ror.org/04b5qs470', 'no_lang_code', 1, 'https://ror.org/04b5qs470 SinoCDN (China)'), (68678, 'https://ror.org/04b6wfh41', 'no_lang_code', 1, 'https://ror.org/04b6wfh41 Alford Industries (China) 阿尔福德工业'), (68679, 'https://ror.org/04b78z783', 'en', 1, 'https://ror.org/04b78z783 Ministerstvo hospodárstva Slovenskej republiky Ministry of Economy of the Slovak Republic'), (68680, 'https://ror.org/04b7phn87', 'en', 1, 'https://ror.org/04b7phn87 Kursk Research Institute of Agricultural Production КУРСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ АГРОПРОМЫШЛЕННОГО ПРОИЗВОДСТВА'), (68681, 'https://ror.org/04b855715', 'en', 1, 'https://ror.org/04b855715 Pakistan Environmental Protection Agency'), (68682, 'https://ror.org/04b8rvg36', 'en', 1, 'https://ror.org/04b8rvg36 Ministero del lavoro e delle politiche sociali Ministry of Labour and Social Policies'), (68683, 'https://ror.org/04bc14p57', 'no_lang_code', 1, 'https://ror.org/04bc14p57 Eurofins (Ireland)'), (68684, 'https://ror.org/04bcbnh21', 'no_lang_code', 1, 'https://ror.org/04bcbnh21 Zensis (China)'), (68685, 'https://ror.org/04bddhf44', 'en', 1, 'https://ror.org/04bddhf44 American Medical Writers Association'), (68686, 'https://ror.org/04bfex435', 'en', 1, 'https://ror.org/04bfex435 Scientific Research Institute of Optoelectronic Instrumentation Научно-исследовательский институт оптико-электронного приборостроения'), (68687, 'https://ror.org/04bfk3375', 'en', 1, 'https://ror.org/04bfk3375 Fedcap'), (68688, 'https://ror.org/04bfwec56', 'en', 1, 'https://ror.org/04bfwec56 East Asia Institute 재단법인 동아시아연구원'), (68689, 'https://ror.org/04bgfj122', 'no_lang_code', 1, 'https://ror.org/04bgfj122 Edelman (United Kingdom)'), (68690, 'https://ror.org/04bhbcm79', 'no_lang_code', 1, 'https://ror.org/04bhbcm79 TOTVS (Brazil)'), (68691, 'https://ror.org/04bj5db66', 'en', 1, 'https://ror.org/04bj5db66 Ningbo Intelligent Manufacturing Industry Research Institute 宁波智能制造业研究所'), (68692, 'https://ror.org/04bkx5428', 'en', 1, 'https://ror.org/04bkx5428 The Korean Association of Small Buisness Studies 한국중소기업학회'), (68693, 'https://ror.org/04bnxk453', 'en', 1, 'https://ror.org/04bnxk453 Sport Ireland, Spórt Éireann'), (68694, 'https://ror.org/04bpz1v84', 'es', 1, 'https://ror.org/04bpz1v84 FC Barcelona'), (68695, 'https://ror.org/04brysy78', 'no_lang_code', 1, 'https://ror.org/04brysy78 Masteel (China) 马钢集团'), (68696, 'https://ror.org/04bsc7n50', 'no_lang_code', 1, 'https://ror.org/04bsc7n50 CoControl (United Kingdom)'), (68697, 'https://ror.org/04bv2e296', 'es', 1, 'https://ror.org/04bv2e296 Instituto Valenciano de la Edificación'), (68698, 'https://ror.org/04bv4nc40', 'no_lang_code', 1, 'https://ror.org/04bv4nc40 Q4 Public Relations (Ireland)'), (68699, 'https://ror.org/04c10vw97', 'no_lang_code', 1, 'https://ror.org/04c10vw97 Myungmoon Pharm (South Korea)'), (68700, 'https://ror.org/04c2c2109', 'de', 1, 'https://ror.org/04c2c2109 Kunststoff-Institut Lüdenscheid, Kunststoff-Institut für das mittelständische Wirtschaft NRW GmbH'), (68701, 'https://ror.org/04c31he75', 'en', 1, 'https://ror.org/04c31he75 Central Research Institute of Starch-and-Vaccine Industry and Non-Carrageenaceous Saccharose Всероссийский научно-исследовательский институт крахмала'), (68702, 'https://ror.org/04c3g7r30', 'en', 1, 'https://ror.org/04c3g7r30 ICLEI - Local Governments for Sustainability'), (68703, 'https://ror.org/04c3q9n71', 'no_lang_code', 1, 'https://ror.org/04c3q9n71 Truly International Holdings (China)'), (68704, 'https://ror.org/04c54tg88', 'en', 1, 'https://ror.org/04c54tg88 IBA Lifesciences'), (68705, 'https://ror.org/04c5hmr86', 'no_lang_code', 1, 'https://ror.org/04c5hmr86 Highway Resource Solutions (United Kingdom)'), (68706, 'https://ror.org/04c5wp027', 'no_lang_code', 1, 'https://ror.org/04c5wp027 Bandai Namco (Japan) 株式会社バンダイナムコホールディングス'), (68707, 'https://ror.org/04c6m2d57', 'no_lang_code', 1, 'https://ror.org/04c6m2d57 Wuxi Guolian Development (China) 无锡国联发展集团'), (68708, 'https://ror.org/04c77tp80', 'en', 1, 'https://ror.org/04c77tp80 Yunnan Institute of Tropical Crops 云南热带作物研究所'), (68709, 'https://ror.org/04c7f6285', 'en', 1, 'https://ror.org/04c7f6285 Irkutsk State Agrarian University named after A.A. Ezhevsky Иркутский государственный аграрный университет имени А.А. Ежевского'), (68710, 'https://ror.org/04c8qrb95', 'en', 1, 'https://ror.org/04c8qrb95 Korea Environmental Education Association 한국 환경 교육 연합회'), (68711, 'https://ror.org/04c99ac72', 'no_lang_code', 1, 'https://ror.org/04c99ac72 Xi''an UniIC Semiconductors (China)'), (68712, 'https://ror.org/04c9j0t17', 'en', 1, 'https://ror.org/04c9j0t17 Collingswood Public Schools'), (68713, 'https://ror.org/04ccgt898', 'en', 1, 'https://ror.org/04ccgt898 Daejeon Health Institute of Technology 대전보건대학교'), (68714, 'https://ror.org/04cegfm62', 'en', 1, 'https://ror.org/04cegfm62 The Rivers Trust'), (68715, 'https://ror.org/04ceqst84', 'no_lang_code', 1, 'https://ror.org/04ceqst84 China XD Group (China) 中国西电集团'), (68716, 'https://ror.org/04cf0ca19', 'en', 1, 'https://ror.org/04cf0ca19 The Society of Living Environment System 한국생활환경학회'), (68717, 'https://ror.org/04cfbcn47', 'en', 1, 'https://ror.org/04cfbcn47 Mikhailovsky Military Artillery Academy Михайловская военная артиллерийская академия'), (68718, 'https://ror.org/04chh0y17', 'en', 1, 'https://ror.org/04chh0y17 Korean Continence Society 대한배뇨장애요실금학회'), (68719, 'https://ror.org/04cka6191', 'en', 1, 'https://ror.org/04cka6191 Chethana Special School'), (68720, 'https://ror.org/04ckzvj54', 'en', 1, 'https://ror.org/04ckzvj54 Consumer Protection Commission Комисия за защита на потребителите'), (68721, 'https://ror.org/04cnfv189', 'en', 1, 'https://ror.org/04cnfv189 State Research Institute of Applied Problems Государственный научно-исследовательский институт прикладных проблем»'), (68722, 'https://ror.org/04cpcxa22', 'no_lang_code', 1, 'https://ror.org/04cpcxa22 Equipe Group (United Kingdom)'), (68723, 'https://ror.org/04cqfv685', 'no_lang_code', 1, 'https://ror.org/04cqfv685 Leeds City Region Enterprise Partnership (United Kingdom)'), (68724, 'https://ror.org/04cqpym76', 'en', 1, 'https://ror.org/04cqpym76 Hyoja Geriatric Hospital'), (68725, 'https://ror.org/04crchr76', 'en', 1, 'https://ror.org/04crchr76 Military Academy of Communications named after Marshal of the Soviet Union SM Budennogo Военная академия связи имени Маршала Советского Союза С. М. Будённого'), (68726, 'https://ror.org/04crq6e59', 'en', 1, 'https://ror.org/04crq6e59 State Consumer Rights Protection Authority Valstybinė ne maisto Produktų Inspekcija prie Ūkio Ministerijos'), (68727, 'https://ror.org/04cv9th75', 'en', 1, 'https://ror.org/04cv9th75 Autism Initiatives'), (68728, 'https://ror.org/04cxegr21', 'no_lang_code', 1, 'https://ror.org/04cxegr21 Janssen (Netherlands)'), (68729, 'https://ror.org/04cyde307', 'en', 1, 'https://ror.org/04cyde307 Guangdong Southern Telecommunication Planning Consulting & Design Institute 广东南方电信规划咨询设计院有限公司'), (68730, 'https://ror.org/04cykn118', 'es', 1, 'https://ror.org/04cykn118 Instituto Mayor Campesino'), (68731, 'https://ror.org/04d0xbz55', 'en', 1, 'https://ror.org/04d0xbz55 Behavioral Science & Policy Association'), (68732, 'https://ror.org/04d0zy231', 'no_lang_code', 1, 'https://ror.org/04d0zy231 Grant Technology (China)'), (68733, 'https://ror.org/04d1kva62', 'no_lang_code', 1, 'https://ror.org/04d1kva62 YD Global Life Science (South Korea) 와이디생명과학'), (68734, 'https://ror.org/04d6d4n84', 'en', 1, 'https://ror.org/04d6d4n84 Korean Beauty Society 한국 뷰티 학회'), (68735, 'https://ror.org/04d7gd791', 'en', 1, 'https://ror.org/04d7gd791 Institute of Monitoring of Climatic and Ecological Systems Главный корпус Института Федеральное государственное бюджетное учреждение науки Институт мониторинга климатических и экологических систем Сибирского отделения Российской академии наук'), (68736, 'https://ror.org/04d7w6g53', 'no_lang_code', 1, 'https://ror.org/04d7w6g53 Playtech (Isle of Man)'), (68737, 'https://ror.org/04dagd274', 'en', 1, 'https://ror.org/04dagd274 Subharti Medical College नेताजी सुभाष चंद्रा बोस सुभारती मेडिकल कॉलेज'), (68738, 'https://ror.org/04ddf4k47', 'en', 1, 'https://ror.org/04ddf4k47 Benefits Data Trust'), (68739, 'https://ror.org/04dgkhg68', 'no_lang_code', 1, 'https://ror.org/04dgkhg68 Snap (United States)'), (68740, 'https://ror.org/04dh4pw96', 'en', 1, 'https://ror.org/04dh4pw96 Gdansk Water Foundation Gdańska Fundacja Wody'), (68741, 'https://ror.org/04dmkfz43', 'no_lang_code', 1, 'https://ror.org/04dmkfz43 Decai Decoration (China) 德才裝飾股份有限公'), (68742, 'https://ror.org/04dnw3t97', 'no_lang_code', 1, 'https://ror.org/04dnw3t97 Ionoptika (United Kingdom)'), (68743, 'https://ror.org/04dnx8c79', 'en', 1, 'https://ror.org/04dnx8c79 American Council on Exercise'), (68744, 'https://ror.org/04dpyhy23', 'en', 1, 'https://ror.org/04dpyhy23 Association of American Veterinary Medical Colleges'), (68745, 'https://ror.org/04dqc4x73', 'en', 1, 'https://ror.org/04dqc4x73 Osan University 오산대학'), (68746, 'https://ror.org/04dr8r009', 'no_lang_code', 1, 'https://ror.org/04dr8r009 Technologisches Gewerbemuseum Tgm'), (68747, 'https://ror.org/04dt6nf05', 'en', 1, 'https://ror.org/04dt6nf05 European Plasticisers'), (68748, 'https://ror.org/04dtdfx84', 'no_lang_code', 1, 'https://ror.org/04dtdfx84 Exploristics (United Kingdom)'), (68749, 'https://ror.org/04dtz3153', 'en', 1, 'https://ror.org/04dtz3153 Green Life Knowledge Economy Research Institute 녹색 생활 지식 경제 연구소'), (68750, 'https://ror.org/04dvm6828', 'en', 1, 'https://ror.org/04dvm6828 Human Service Agency'), (68751, 'https://ror.org/04dwb2s30', 'en', 1, 'https://ror.org/04dwb2s30 Father Muller Charitable Institutions ಫಾದರ್ ಮುಲ್ಲರ್ ಚಾರಿಟಬಲ್ ಇನ್ಸ್ಟಿಟ್ಯೂಷನ್ಸ್'), (68752, 'https://ror.org/04e116f14', 'no_lang_code', 1, 'https://ror.org/04e116f14 Cargill (Belgium)'), (68753, 'https://ror.org/04e2ayg86', 'no_lang_code', 1, 'https://ror.org/04e2ayg86 Diagnostics for the Real World (United Kingdom)'), (68754, 'https://ror.org/04e2hkj02', 'en', 1, 'https://ror.org/04e2hkj02 Homewood Research Institute'), (68755, 'https://ror.org/04e2kfy26', 'en', 1, 'https://ror.org/04e2kfy26 Scientific Research Clinical Institute. L.I. Sverzhevsky Научно-исследовательский клинический институт. Л.И. Свержевского'), (68756, 'https://ror.org/04e3xe586', 'fr', 1, 'https://ror.org/04e3xe586 Institut National d''Excellence en Santé et en Services Sociaux'), (68757, 'https://ror.org/04e5z5943', 'en', 1, 'https://ror.org/04e5z5943 Tasan Cultural Foundation 다산학술문화재단은 근세'), (68758, 'https://ror.org/04e6xnh25', 'en', 1, 'https://ror.org/04e6xnh25 Intelligent Image and Information System 지능형 이미지 및 정보 시스템'), (68759, 'https://ror.org/04e91sk65', 'en', 1, 'https://ror.org/04e91sk65 The Westminster Historical Society'), (68760, 'https://ror.org/04ea9m912', 'no_lang_code', 1, 'https://ror.org/04ea9m912 Cellular Therapeutics (United Kingdom)'), (68761, 'https://ror.org/04eacrz46', 'en', 1, 'https://ror.org/04eacrz46 Eversole Associates'), (68762, 'https://ror.org/04ebkyp66', 'en', 1, 'https://ror.org/04ebkyp66 National Council of Teachers of English'), (68763, 'https://ror.org/04ee9p839', 'en', 1, 'https://ror.org/04ee9p839 American Marketing Association'), (68764, 'https://ror.org/04eftem11', 'en', 1, 'https://ror.org/04eftem11 Irish Society for the Prevention of Cruelty to Animals'), (68765, 'https://ror.org/04egk7864', 'en', 1, 'https://ror.org/04egk7864 Yunnan Open University 云南开放大学'), (68766, 'https://ror.org/04egvzv93', 'en', 1, 'https://ror.org/04egvzv93 National Institute of Research and Development for Electrochemistry and Condensed'), (68767, 'https://ror.org/04egyjm03', 'en', 1, 'https://ror.org/04egyjm03 Nevada Department of Education'), (68768, 'https://ror.org/04ehmzv20', 'en', 1, 'https://ror.org/04ehmzv20 COPE Galway'), (68769, 'https://ror.org/04ejrv182', 'en', 1, 'https://ror.org/04ejrv182 All-Russia Research Institute of Legumes and Groat Crops FGBNU "Vserossijskij Nauchno-Issledovatel''skij Institut Zernobobovyh i Krupyanyh Kul''tur"'), (68770, 'https://ror.org/04ekj9p57', 'no_lang_code', 1, 'https://ror.org/04ekj9p57 GlenDimplex (United Kingdom)'), (68771, 'https://ror.org/04emf4852', 'en', 1, 'https://ror.org/04emf4852 Xi''an Railway Survey and Design Institute 西安铁路勘测设计院'), (68772, 'https://ror.org/04eq28s42', 'en', 1, 'https://ror.org/04eq28s42 Scientific Research Institute of Computer Complexes. M.A. Kartsev Научно-исследовательский институт вычислительных комплексов'), (68773, 'https://ror.org/04esbsa15', 'no_lang_code', 1, 'https://ror.org/04esbsa15 Samvedna Hospital संवेदना हॉस्पिटल'), (68774, 'https://ror.org/04esny758', 'en', 1, 'https://ror.org/04esny758 Hong Kong Cytogenetics and Medical Genetics Centre 医疗基因中心有限公司'), (68775, 'https://ror.org/04et4nb32', 'en', 1, 'https://ror.org/04et4nb32 Infinity Vision Dallas'), (68776, 'https://ror.org/04exgja93', 'en', 1, 'https://ror.org/04exgja93 Institute of Optoelectronic Information Technologies Открытое акционерное общество "Институт оптико-электронных информационных технологий"'), (68777, 'https://ror.org/04f3qs775', 'no_lang_code', 1, 'https://ror.org/04f3qs775 iThera Medical (Germany)'), (68778, 'https://ror.org/04f41jv37', 'en', 1, 'https://ror.org/04f41jv37 Flanders Environment Agency Vlaamse Milieumaatschappij'), (68779, 'https://ror.org/04f49yt17', 'en', 1, 'https://ror.org/04f49yt17 The Wiener Library'), (68780, 'https://ror.org/04f5a5m96', 'no_lang_code', 1, 'https://ror.org/04f5a5m96 Apotex (India)'), (68781, 'https://ror.org/04f5mrw23', 'en', 1, 'https://ror.org/04f5mrw23 Commission de la santé et des services sociaux des Premières Nations du Québec et du Labrador First Nations of Quebec and Labrador Health and Social Services Commission'), (68782, 'https://ror.org/04f63ne57', 'no_lang_code', 1, 'https://ror.org/04f63ne57 Chongqing Construction Engineering Investment Holding (China) 重庆建工投资控股'), (68783, 'https://ror.org/04f68cb23', 'en', 1, 'https://ror.org/04f68cb23 Patanjali Research Foundation'), (68784, 'https://ror.org/04f81me03', 'no_lang_code', 1, 'https://ror.org/04f81me03 Constellium (France)'), (68785, 'https://ror.org/04fak9718', 'en', 1, 'https://ror.org/04fak9718 All-Russian Scientific - Research Institute of Horse Breeding Всероссийский научно-исследовательский институт коневодства'), (68786, 'https://ror.org/04fc1vj20', 'en', 1, 'https://ror.org/04fc1vj20 International Commission for the Hydrology of the Rhine Basin Internationale Kommission für die Hydrologie des Rheingebietes'), (68787, 'https://ror.org/04fd00748', 'en', 1, 'https://ror.org/04fd00748 Central Research Institute" Dolphin " Центральный научно-исследовательский институт "Дельфин"'), (68788, 'https://ror.org/04ff87f07', 'no_lang_code', 1, 'https://ror.org/04ff87f07 Gene Tech (China)'), (68789, 'https://ror.org/04ffj1463', 'no_lang_code', 1, 'https://ror.org/04ffj1463 Kingdee (China)'), (68790, 'https://ror.org/04fg7ry98', 'no_lang_code', 1, 'https://ror.org/04fg7ry98 Arista (United States)'), (68791, 'https://ror.org/04fgq7x14', 'no_lang_code', 1, 'https://ror.org/04fgq7x14 Smith & Nephew (Australia)'), (68792, 'https://ror.org/04fjx8e69', 'en', 1, 'https://ror.org/04fjx8e69 The Deputy Prime Minister''s Office'), (68793, 'https://ror.org/04fkpdv59', 'no_lang_code', 1, 'https://ror.org/04fkpdv59 Nexteer Automotive (United States)'), (68794, 'https://ror.org/04fmkfb67', 'no_lang_code', 1, 'https://ror.org/04fmkfb67 Dà-Jiāng Innovations Science and Technology (China) 大疆创新科技有限公司'), (68795, 'https://ror.org/04fndbe13', 'no_lang_code', 1, 'https://ror.org/04fndbe13 Woo Young Medical (South Korea) 우 영 의료'), (68796, 'https://ror.org/04fnybk57', 'no_lang_code', 1, 'https://ror.org/04fnybk57 Wabco (Belgium)'), (68797, 'https://ror.org/04fr2ec26', 'fr', 1, 'https://ror.org/04fr2ec26 UC-Institut inter Régional pour la SAnté'), (68798, 'https://ror.org/04frvwq31', 'en', 1, 'https://ror.org/04frvwq31 International Research Society for Public Management'), (68799, 'https://ror.org/04fs1av96', 'en', 1, 'https://ror.org/04fs1av96 Public Health Accreditation Board'), (68800, 'https://ror.org/04fsntv73', 'no_lang_code', 1, 'https://ror.org/04fsntv73 Koguryo Bohai Society 고구려 발해 학회'), (68801, 'https://ror.org/04fwng791', 'no_lang_code', 1, 'https://ror.org/04fwng791 Castolin Eutectic (Ireland)'), (68802, 'https://ror.org/04fxnt467', 'en', 1, 'https://ror.org/04fxnt467 Guangdong Institute of Rare Metals'), (68803, 'https://ror.org/04g1tx361', 'no_lang_code', 1, 'https://ror.org/04g1tx361 AppoTech (China) 卓榮集成電路科技有限公司'), (68804, 'https://ror.org/04g2esr52', 'en', 1, 'https://ror.org/04g2esr52 Seth Nandlal Dhoot Hospital'), (68805, 'https://ror.org/04g4hv039', 'en', 1, 'https://ror.org/04g4hv039 Shaanxi Research Design Institute of Petroleum and Chemical Industry 陕西省石油化工研究设计院'), (68806, 'https://ror.org/04g4j1336', 'nl', 1, 'https://ror.org/04g4j1336 Vlaams Instituut Gezond Leven'), (68807, 'https://ror.org/04g526d38', 'en', 1, 'https://ror.org/04g526d38 European Utilities Telecom Council'), (68808, 'https://ror.org/04g67gh56', 'no_lang_code', 1, 'https://ror.org/04g67gh56 Studio-R'), (68809, 'https://ror.org/04g81mm64', 'no_lang_code', 1, 'https://ror.org/04g81mm64 Keysight Technologies (United Kingdom)'), (68810, 'https://ror.org/04gdd6b52', 'en', 1, 'https://ror.org/04gdd6b52 European Youth Information and Counselling Agency Europäesch Jugendinformatioun an Berodungsassistent'), (68811, 'https://ror.org/04gea5y49', 'en', 1, 'https://ror.org/04gea5y49 Cork’s Technology Network'), (68812, 'https://ror.org/04gf2dg91', 'no_lang_code', 1, 'https://ror.org/04gf2dg91 Epicardio (United Kingdom)'), (68813, 'https://ror.org/04gfm7t49', 'no_lang_code', 1, 'https://ror.org/04gfm7t49 Lifan (China) 力帆集团'), (68814, 'https://ror.org/04gfyef21', 'no_lang_code', 1, 'https://ror.org/04gfyef21 Guangzhou Metro Group (China)'), (68815, 'https://ror.org/04gjr7b93', 'de', 1, 'https://ror.org/04gjr7b93 Ministerium für Kinder, Familie, Flüchtlinge und Integration des Landes Nordrhein-Westfalen'), (68816, 'https://ror.org/04gjwsq09', 'en', 1, 'https://ror.org/04gjwsq09 European Association for Local Democracy'), (68817, 'https://ror.org/04gkr8m24', 'en', 1, 'https://ror.org/04gkr8m24 "Костромской научно-исследовательский институт сельского хозяйства" Kostroma Research Institute of Agriculture'), (68818, 'https://ror.org/04gm1dg38', 'en', 1, 'https://ror.org/04gm1dg38 The Daegu Historical Association 대구 역사 학회'), (68819, 'https://ror.org/04gpq6y25', 'en', 1, 'https://ror.org/04gpq6y25 Kildare Education Centre'), (68820, 'https://ror.org/04gs82x94', 'no_lang_code', 1, 'https://ror.org/04gs82x94 Brandon Bioscience (Ireland)'), (68821, 'https://ror.org/04gsz9w64', 'en', 1, 'https://ror.org/04gsz9w64 Reef Check Foundation'), (68822, 'https://ror.org/04gtfsy04', 'en', 1, 'https://ror.org/04gtfsy04 Atlantic Environmental Research Center Centro de Investigaciones Medioambientales del Atlántico'), (68823, 'https://ror.org/04gwfmd61', 'en', 1, 'https://ror.org/04gwfmd61 Department of Livestock Development กรมปศุสัตว์'), (68824, 'https://ror.org/04gzzzx19', 'en', 1, 'https://ror.org/04gzzzx19 Korean Language and Literature Society 한국언어문학회'), (68825, 'https://ror.org/04h002109', 'no_lang_code', 1, 'https://ror.org/04h002109 Space Solutions (South Korea) 우주 솔루션'), (68826, 'https://ror.org/04h0ns222', 'en', 1, 'https://ror.org/04h0ns222 Korean Society of Child Welfare 한국아동복지학회'), (68827, 'https://ror.org/04h1h5j74', 'no_lang_code', 1, 'https://ror.org/04h1h5j74 NDT Engineering & Aerospace (South Korea) 비파괴 엔지니어링 및 항공 우주 유한 공사'), (68828, 'https://ror.org/04h2nqb04', 'en', 1, 'https://ror.org/04h2nqb04 Food Standards Scotland Inbhe-Bidhe Alba'), (68829, 'https://ror.org/04h411m05', 'no_lang_code', 1, 'https://ror.org/04h411m05 Transneft (Russia) Транснефть'), (68830, 'https://ror.org/04h48jk55', 'no_lang_code', 1, 'https://ror.org/04h48jk55 Ford Otosan (Turkey)'), (68831, 'https://ror.org/04h4zjp06', 'en', 1, 'https://ror.org/04h4zjp06 Dongguan LungCheong Institute of Intelligent Technology 东莞龙昌智能技术研究院简介'), (68832, 'https://ror.org/04h534k32', 'no_lang_code', 1, 'https://ror.org/04h534k32 Chiaro (United Kingdom)'), (68833, 'https://ror.org/04h6dc762', 'en', 1, 'https://ror.org/04h6dc762 State Board of Education'), (68834, 'https://ror.org/04h6rvh11', 'no_lang_code', 1, 'https://ror.org/04h6rvh11 Kai Biotech (South Korea) 바이오 테크 주식 회사 카이'), (68835, 'https://ror.org/04h7sxq81', 'no_lang_code', 1, 'https://ror.org/04h7sxq81 Winus Technology (South Korea) 위너스 과학 기술'), (68836, 'https://ror.org/04h9hnm31', 'en', 1, 'https://ror.org/04h9hnm31 Tianjin Metallurgical Vocational Technical College 天津冶金职业技术学院'), (68837, 'https://ror.org/04hbyjq58', 'no_lang_code', 1, 'https://ror.org/04hbyjq58 Embecosm (United Kingdom)'), (68838, 'https://ror.org/04hc0ps23', 'no_lang_code', 1, 'https://ror.org/04hc0ps23 G-Volution (United Kingdom)'), (68839, 'https://ror.org/04hc7z719', 'en', 1, 'https://ror.org/04hc7z719 International Theatre Institute'), (68840, 'https://ror.org/04hf4he50', 'no_lang_code', 1, 'https://ror.org/04hf4he50 Ukrainian Research Institute of Cable Industry (Ukraine)'), (68841, 'https://ror.org/04hfnps81', 'en', 1, 'https://ror.org/04hfnps81 Canadian Arthritis Patient Alliance L’Alliance Canadienne des Arthritiques'), (68842, 'https://ror.org/04hhsd771', 'no_lang_code', 1, 'https://ror.org/04hhsd771 Solomon Systech (China)'), (68843, 'https://ror.org/04hjc2592', 'en', 1, 'https://ror.org/04hjc2592 Kazan Research Institute of Aviation Technologies Казанский научно-исследовательский институт авиационных технологий'), (68844, 'https://ror.org/04hjzh827', 'no_lang_code', 1, 'https://ror.org/04hjzh827 First Solar (United States)'), (68845, 'https://ror.org/04hpnke04', 'en', 1, 'https://ror.org/04hpnke04 Tusla - Child and Family Agency'), (68846, 'https://ror.org/04hqk4797', 'en', 1, 'https://ror.org/04hqk4797 The Korean Society of Art Theories 한국미술이론학회'), (68847, 'https://ror.org/04hqxxp09', 'en', 1, 'https://ror.org/04hqxxp09 ICS Skills'), (68848, 'https://ror.org/04hwz0a59', 'de', 1, 'https://ror.org/04hwz0a59 Bundesverband mittelständische Wirtschaft'), (68849, 'https://ror.org/04hxfpp72', 'no_lang_code', 1, 'https://ror.org/04hxfpp72 Ocean FM (Ireland)'), (68850, 'https://ror.org/04hz7m473', 'no_lang_code', 1, 'https://ror.org/04hz7m473 Evonik (Switzerland)'), (68851, 'https://ror.org/04hzt6a67', 'no_lang_code', 1, 'https://ror.org/04hzt6a67 Hefei Meiling (China) 合肥美菱股份有限公司'), (68852, 'https://ror.org/04j4jwe91', 'en', 1, 'https://ror.org/04j4jwe91 Jiangsu Institute of Hydraulic Science and Technology 江苏省水利科学研究院'), (68853, 'https://ror.org/04j7c2756', 'en', 1, 'https://ror.org/04j7c2756 The Korean Society for Gifted and Talented 한국영재교육학회'), (68854, 'https://ror.org/04j8mbe63', 'en', 1, 'https://ror.org/04j8mbe63 Nevada State Board of Pharmacy'), (68855, 'https://ror.org/04jadnp30', 'en', 1, 'https://ror.org/04jadnp30 Korean Classics Research Society 한국 고전 학회'), (68856, 'https://ror.org/04jf04g79', 'en', 1, 'https://ror.org/04jf04g79 International Foundation for Integrated Care'), (68857, 'https://ror.org/04jg36w98', 'no_lang_code', 1, 'https://ror.org/04jg36w98 Saint-Petersburg Research Institute of Phthisiopulmonology Санкт-Петербургский НИИ фтизиопульмонологии'), (68858, 'https://ror.org/04jj4c328', 'no_lang_code', 1, 'https://ror.org/04jj4c328 AECOM (China)'), (68859, 'https://ror.org/04jmg2j77', 'no_lang_code', 1, 'https://ror.org/04jmg2j77 Edwards Lifesciences (South Korea)'), (68860, 'https://ror.org/04jr4g753', 'en', 1, 'https://ror.org/04jr4g753 Osong Medical Innovation Foundation 오송첨단의료산업진흥재단'); INSERT INTO `rors` VALUES (68861, 'https://ror.org/04jrjqp75', 'en', 1, 'https://ror.org/04jrjqp75 National Institute of Grape and Wine "Magarach" Институт виноградарства и виноделия «Магарач»'), (68862, 'https://ror.org/04js16v38', 'en', 1, 'https://ror.org/04js16v38 Hubei Academy of Environmental Sciences 湖北省环境科学研究院'), (68863, 'https://ror.org/04jsqtz71', 'fr', 1, 'https://ror.org/04jsqtz71 Centre d''aide Pour Hommes de Lanaudière'), (68864, 'https://ror.org/04jstcr77', 'en', 1, 'https://ror.org/04jstcr77 Ministry of Transport and Communications وزارة المواصلات والاتصالات- المبنى الرئيسي'), (68865, 'https://ror.org/04jvr6m30', 'no_lang_code', 1, 'https://ror.org/04jvr6m30 China Post (China) 中国邮政'), (68866, 'https://ror.org/04jx53751', 'no_lang_code', 1, 'https://ror.org/04jx53751 ConvenientPower Systems (China)'), (68867, 'https://ror.org/04jxank96', 'en', 1, 'https://ror.org/04jxank96 Hunan Non-ferrous Metallurgical Labor Protection Institute 湖南省有色金属劳动保护研究所'), (68868, 'https://ror.org/04jxbkz90', 'en', 1, 'https://ror.org/04jxbkz90 Institute for Programming research and Algorithmics'), (68869, 'https://ror.org/04jxxfd37', 'fr', 1, 'https://ror.org/04jxxfd37 Réseau National d''Expertise en Trouble du Spectre de l''Autisme'), (68870, 'https://ror.org/04jyhzm90', 'no_lang_code', 1, 'https://ror.org/04jyhzm90 FirsTune (China)'), (68871, 'https://ror.org/04k1aj657', 'en', 1, 'https://ror.org/04k1aj657 The Korea Society of Fashion Design 한국패션디자인학회'), (68872, 'https://ror.org/04k31nk35', 'en', 1, 'https://ror.org/04k31nk35 American International School in Egypt المدرسة الامريكية الدولية'), (68873, 'https://ror.org/04k3kqt10', 'en', 1, 'https://ror.org/04k3kqt10 Battersea Arts Centre'), (68874, 'https://ror.org/04k414517', 'en', 1, 'https://ror.org/04k414517 Lietuvos Respublikos teisingumo ministerija Ministry of Justice of the Republic of Lithuania'), (68875, 'https://ror.org/04k7c8d26', 'no_lang_code', 1, 'https://ror.org/04k7c8d26 Shanghai Institute of Process Automation Instrumentation (China) 上海工业自动化仪表研究院有限公司'), (68876, 'https://ror.org/04k7seg51', 'en', 1, 'https://ror.org/04k7seg51 Alberta Kidney Disease Network'), (68877, 'https://ror.org/04k7xq042', 'no_lang_code', 1, 'https://ror.org/04k7xq042 Jiangxi Copper (China) 江西铜业'), (68878, 'https://ror.org/04k8w6g96', 'en', 1, 'https://ror.org/04k8w6g96 National Tax Association'), (68879, 'https://ror.org/04k92fs76', 'no_lang_code', 1, 'https://ror.org/04k92fs76 Amgen (India)'), (68880, 'https://ror.org/04k9aq609', 'en', 1, 'https://ror.org/04k9aq609 ECDL Foundation'), (68881, 'https://ror.org/04k9ktn61', 'no_lang_code', 1, 'https://ror.org/04k9ktn61 Dahua Technology (China)'), (68882, 'https://ror.org/04kbbd545', 'en', 1, 'https://ror.org/04kbbd545 Shri Bhausaheb Hire Government Medical College & Hospital'), (68883, 'https://ror.org/04kd20m98', 'en', 1, 'https://ror.org/04kd20m98 Department for Economic Affairs Volkswirtschaftsdirektion'), (68884, 'https://ror.org/04kddx345', 'en', 1, 'https://ror.org/04kddx345 Hong Kong Business Angel Network 香港商业天使网'), (68885, 'https://ror.org/04kdp2897', 'en', 1, 'https://ror.org/04kdp2897 Tourism Management Research Organization 관광경영학회'), (68886, 'https://ror.org/04kfnx806', 'no_lang_code', 1, 'https://ror.org/04kfnx806 K+S (Germany)'), (68887, 'https://ror.org/04kfpsj04', 'en', 1, 'https://ror.org/04kfpsj04 Business in the Community'), (68888, 'https://ror.org/04kfvhz20', 'no_lang_code', 1, 'https://ror.org/04kfvhz20 LivaNova (United States)'), (68889, 'https://ror.org/04kg4fr36', 'en', 1, 'https://ror.org/04kg4fr36 Saint-Petersburg Research Institute of Ear, Throat, Nose and Speech Санкт-Петербургский НИИ уха, горла, носа и речи'), (68890, 'https://ror.org/04kgekf96', 'no_lang_code', 1, 'https://ror.org/04kgekf96 Sputnik Спутник'), (68891, 'https://ror.org/04kgxe034', 'en', 1, 'https://ror.org/04kgxe034 Korean Association of Exercise Physiology 한국운동생리학회'), (68892, 'https://ror.org/04khvmp61', 'no_lang_code', 1, 'https://ror.org/04khvmp61 Fanuc (United Kingdom)'), (68893, 'https://ror.org/04km3ca65', 'no_lang_code', 1, 'https://ror.org/04km3ca65 Intercommunale Waterleidingsmaatschappij van Veurne-Ambacht Intermunicipal Water Company of Veurne-Craft (Belgium)'), (68894, 'https://ror.org/04kmk1j57', 'no_lang_code', 1, 'https://ror.org/04kmk1j57 Inventia (India)'), (68895, 'https://ror.org/04kpjf880', 'en', 1, 'https://ror.org/04kpjf880 Mexican Cultural Institute'), (68896, 'https://ror.org/04kpqtt03', 'no_lang_code', 1, 'https://ror.org/04kpqtt03 i3D Robotics (United Kingdom)'), (68897, 'https://ror.org/04kpxf456', 'en', 1, 'https://ror.org/04kpxf456 The Korean History Education Society 한국사 교육 학회'), (68898, 'https://ror.org/04krrjy26', 'en', 1, 'https://ror.org/04krrjy26 All-Russian Scientific Research Institute of Pulp and Paper Industry ВСЕРОССИЙСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ ЦЕЛЛЮЛОЗНО-БУМАЖНОЙ ПРОМЫШЛЕННОСТИ'), (68899, 'https://ror.org/04ktfyy52', 'no_lang_code', 1, 'https://ror.org/04ktfyy52 Pfizer (China) 辉瑞公司'), (68900, 'https://ror.org/04kvstc88', 'en', 1, 'https://ror.org/04kvstc88 Yiwu Science and Technology Research Institute 浙江工业大学义乌科学技术研究院'), (68901, 'https://ror.org/04kwv3995', 'en', 1, 'https://ror.org/04kwv3995 Council of Professional Associations on Federal Statistics'), (68902, 'https://ror.org/04kwy9224', 'no_lang_code', 1, 'https://ror.org/04kwy9224 Alkem (India)'), (68903, 'https://ror.org/04kxcwc73', 'en', 1, 'https://ror.org/04kxcwc73 Law Society of Hong Kong 香港律師會'), (68904, 'https://ror.org/04kzytq43', 'en', 1, 'https://ror.org/04kzytq43 Centre d''excellence pour la santé des femmes - région des Prairies Prairie Women''s Health Centre of Excellence'), (68905, 'https://ror.org/04m123659', 'no_lang_code', 1, 'https://ror.org/04m123659 Daewoo Pharma (South Korea) 대우제약'), (68906, 'https://ror.org/04m20rz92', 'en', 1, 'https://ror.org/04m20rz92 Advanced Manufacturing Research Centre'), (68907, 'https://ror.org/04m2bcn74', 'no_lang_code', 1, 'https://ror.org/04m2bcn74 System Equipment (China) 系统设备'), (68908, 'https://ror.org/04m4kv128', 'en', 1, 'https://ror.org/04m4kv128 Institute of Plastics named after G. Petrov Акционерное общество «Институт пластмасс имени Г.С.Петрова»'), (68909, 'https://ror.org/04m5qh397', 'en', 1, 'https://ror.org/04m5qh397 Church of England'), (68910, 'https://ror.org/04m6cjv19', 'en', 1, 'https://ror.org/04m6cjv19 Development Research Center 水利部发展研究中心'), (68911, 'https://ror.org/04m6gem67', 'en', 1, 'https://ror.org/04m6gem67 Ministry of Education and Science of Georgia საქართველოს განათლებისა და მეცნიერების სამინისტრო'), (68912, 'https://ror.org/04m8qbk11', 'en', 1, 'https://ror.org/04m8qbk11 Urals Research Institute for the Protection of Maternity and Infancy Уральский НИИ охраны материнства и младенчества'), (68913, 'https://ror.org/04m97pf61', 'en', 1, 'https://ror.org/04m97pf61 First Nations Health and Social Secretariat of Manitoba'), (68914, 'https://ror.org/04marmm60', 'no_lang_code', 1, 'https://ror.org/04marmm60 D2NA (United Kingdom)'), (68915, 'https://ror.org/04matqb57', 'no_lang_code', 1, 'https://ror.org/04matqb57 Gamaplast (Poland)'), (68916, 'https://ror.org/04mf01f43', 'no_lang_code', 1, 'https://ror.org/04mf01f43 Wanda Group (China) 万达集团'), (68917, 'https://ror.org/04mfdcn64', 'en', 1, 'https://ror.org/04mfdcn64 Comhairle Contae Mhuineacháin Monaghan County Council'), (68918, 'https://ror.org/04mfdzp80', 'no_lang_code', 1, 'https://ror.org/04mfdzp80 YAMSU Technologies (Ireland)'), (68919, 'https://ror.org/04mja2r14', 'it', 1, 'https://ror.org/04mja2r14 Pontificia commissione di archeologia sacra, Pontificium consilium archaeologiae sacrae'), (68920, 'https://ror.org/04mk8hf46', 'en', 1, 'https://ror.org/04mk8hf46 Amgueddfa Stori Caerdydd Cardiff Story Museum'), (68921, 'https://ror.org/04mnty788', 'es', 1, 'https://ror.org/04mnty788 Servicio Diabetología Hospital Córdoba'), (68922, 'https://ror.org/04mq2mh67', 'en', 1, 'https://ror.org/04mq2mh67 Ontario Long Term Care Association'), (68923, 'https://ror.org/04mrd1117', 'no_lang_code', 1, 'https://ror.org/04mrd1117 ServusNet Informatics (Ireland)'), (68924, 'https://ror.org/04mrvfq25', 'fr', 1, 'https://ror.org/04mrvfq25 Agence pour l’Entreprise & l’Innovation'), (68925, 'https://ror.org/04mtmfz79', 'en', 1, 'https://ror.org/04mtmfz79 Korea Regional Economic Reserach institute 한국 지역 경제 연구원'), (68926, 'https://ror.org/04mw2ty13', 'en', 1, 'https://ror.org/04mw2ty13 Anhui Institute of Information Technology 有 安徽信息工程学院'), (68927, 'https://ror.org/04mwczr65', 'en', 1, 'https://ror.org/04mwczr65 Markham Museum'), (68928, 'https://ror.org/04n0kdq05', 'en', 1, 'https://ror.org/04n0kdq05 Samsø Energiakademi Samsø Energy Academy'), (68929, 'https://ror.org/04n0xnb78', 'no_lang_code', 1, 'https://ror.org/04n0xnb78 Latvian Environment, Geology and Meteorology Centre (Latvia) Latvijas Vides, ģeoloģijas un meteoroloģijas centrs'), (68930, 'https://ror.org/04n11fv55', 'no_lang_code', 1, 'https://ror.org/04n11fv55 Cerner (Austria)'), (68931, 'https://ror.org/04n2kvd60', 'en', 1, 'https://ror.org/04n2kvd60 Conseil des Académies Canadiennes Council of Canadian Academies'), (68932, 'https://ror.org/04n3n8t23', 'no_lang_code', 1, 'https://ror.org/04n3n8t23 U-Tel (South Korea) 유텔'), (68933, 'https://ror.org/04n3x5g15', 'en', 1, 'https://ror.org/04n3x5g15 Huzhou Academy of Agricultural Sciences 湖州农业科学'), (68934, 'https://ror.org/04n5ac152', 'en', 1, 'https://ror.org/04n5ac152 Quebec Network on Suicide, Mood Disorders and Related Disorders'), (68935, 'https://ror.org/04n5pyx79', 'en', 1, 'https://ror.org/04n5pyx79 Korean Elementary Moral Education Society 한국초등도덕교육학회'), (68936, 'https://ror.org/04n6ern89', 'no_lang_code', 1, 'https://ror.org/04n6ern89 Concern Energomera (Russia)'), (68937, 'https://ror.org/04n7qr785', 'en', 1, 'https://ror.org/04n7qr785 Stavropol Research Institute of Agriculture Ставропольского научно-исследовательского института сельского хозяйства'), (68938, 'https://ror.org/04n7s1j93', 'en', 1, 'https://ror.org/04n7s1j93 Research Institute for Aquaculture No1 Viện Nghiên cứu Nuôi trồng Thủy sản I'), (68939, 'https://ror.org/04n99ng06', 'no_lang_code', 1, 'https://ror.org/04n99ng06 eLearning Studios (United Kingdom)'), (68940, 'https://ror.org/04nars592', 'en', 1, 'https://ror.org/04nars592 Ministrstvo za okolje in prostor Ministry of the Environment and Spatial Planning'), (68941, 'https://ror.org/04nexjf43', 'en', 1, 'https://ror.org/04nexjf43 Korean Language Society 한글 학회'), (68942, 'https://ror.org/04nfvqg35', 'es', 1, 'https://ror.org/04nfvqg35 Barcelona Energia'), (68943, 'https://ror.org/04ng8qp45', 'pt', 1, 'https://ror.org/04ng8qp45 Instituto da Habitação e da Reabilitação Urbana'), (68944, 'https://ror.org/04nga4641', 'no_lang_code', 1, 'https://ror.org/04nga4641 Diodes (China)'), (68945, 'https://ror.org/04nh45n53', 'no_lang_code', 1, 'https://ror.org/04nh45n53 Reasonable Software House (China)'), (68946, 'https://ror.org/04nhsym74', 'no_lang_code', 1, 'https://ror.org/04nhsym74 Avatr (United Kingdom)'), (68947, 'https://ror.org/04nk2tb51', 'en', 1, 'https://ror.org/04nk2tb51 Shandong Special Equipment Inspection Institute 山东省特种设备检验研究院有限公司'), (68948, 'https://ror.org/04nn86d34', 'no_lang_code', 1, 'https://ror.org/04nn86d34 Mondelēz International (India)'), (68949, 'https://ror.org/04npq0213', 'en', 1, 'https://ror.org/04npq0213 Contact Helpline'), (68950, 'https://ror.org/04nqpys93', 'no_lang_code', 1, 'https://ror.org/04nqpys93 Check Point (Israel)'), (68951, 'https://ror.org/04nrp9v23', 'en', 1, 'https://ror.org/04nrp9v23 Korea Society of Translators 한국번역가협회'), (68952, 'https://ror.org/04nsjct52', 'no_lang_code', 1, 'https://ror.org/04nsjct52 VNIIPelkhozkhim Рязани был организован Всесоюзный научно-исследовательский и проектный институт по технологии и экономике хранения и использования в сельском хозяйстве минеральных удобрений и химических средств защиты растений'), (68953, 'https://ror.org/04ntr0v89', 'en', 1, 'https://ror.org/04ntr0v89 Dongguan Frontier Technology Research Institute 东莞前沿技术研究院'), (68954, 'https://ror.org/04nvd1261', 'en', 1, 'https://ror.org/04nvd1261 Canadian MPS Society for Mucopolysaccharide and Related Diseases Société Canadienne des Mucopolysaccharidoses et des Maladies Apparentées'), (68955, 'https://ror.org/04nwskz42', 'en', 1, 'https://ror.org/04nwskz42 Korea Economic Law Association 한국경제법학회'), (68956, 'https://ror.org/04nxxn125', 'no_lang_code', 1, 'https://ror.org/04nxxn125 Amadeus (Spain)'), (68957, 'https://ror.org/04nzfkq05', 'no_lang_code', 1, 'https://ror.org/04nzfkq05 Exor (Netherlands)'), (68958, 'https://ror.org/04nzrnx83', 'no_lang_code', 1, 'https://ror.org/04nzrnx83 Naver (South Korea) 네이버'), (68959, 'https://ror.org/04p1qqj97', 'en', 1, 'https://ror.org/04p1qqj97 Hunan Communications Research Institute 湖南交通研究院'), (68960, 'https://ror.org/04p4jbz48', 'de', 1, 'https://ror.org/04p4jbz48 Ministerium für Umwelt und Verbraucherschutz'), (68961, 'https://ror.org/04p6nsn05', 'no_lang_code', 1, 'https://ror.org/04p6nsn05 Kolmar Korea (South Korea) 한국 콜마'), (68962, 'https://ror.org/04p7mex89', 'no_lang_code', 1, 'https://ror.org/04p7mex89 Jagoda JPS (Poland)'), (68963, 'https://ror.org/04pb98034', 'no_lang_code', 1, 'https://ror.org/04pb98034 TFI Digital Media Limited (China)'), (68964, 'https://ror.org/04pc4cw42', 'en', 1, 'https://ror.org/04pc4cw42 Research Institute Submicron НИИ Субмикрон'), (68965, 'https://ror.org/04pchp455', 'no_lang_code', 1, 'https://ror.org/04pchp455 Astellas Pharma (South Korea) 아스텔라스'), (68966, 'https://ror.org/04pdjr931', 'no_lang_code', 1, 'https://ror.org/04pdjr931 Xinxing Pipes International Development (China) 新兴铸管股份有限公司'), (68967, 'https://ror.org/04pdkbc41', 'de', 1, 'https://ror.org/04pdkbc41 VAF Bundesverband Telekommunikation'), (68968, 'https://ror.org/04pe7qe08', 'no_lang_code', 1, 'https://ror.org/04pe7qe08 Aero Engine Corporation of China (China) 中国航空发动机集团'), (68969, 'https://ror.org/04pekda06', 'no_lang_code', 1, 'https://ror.org/04pekda06 Jiangsu Maritime Institute 国际教育交流与服务中心'), (68970, 'https://ror.org/04pfhpy42', 'no_lang_code', 1, 'https://ror.org/04pfhpy42 Beijing Drainage Group (China) 北京排水集团'), (68971, 'https://ror.org/04pgsn829', 'en', 1, 'https://ror.org/04pgsn829 Ministry of Justice of the Republic of Kazakhstan Қазақстан Республикасы Әділет министрлігі'), (68972, 'https://ror.org/04phk2284', 'en', 1, 'https://ror.org/04phk2284 Dolphin (PG) Institute of Bio Medical and Natural Science'), (68973, 'https://ror.org/04pms6p91', 'en', 1, 'https://ror.org/04pms6p91 Ivan Vazov National Library Народна библиотека "Иван Вазов"'), (68974, 'https://ror.org/04pq7rm89', 'no_lang_code', 1, 'https://ror.org/04pq7rm89 Deutsche Börse (Germany)'), (68975, 'https://ror.org/04pqc7b65', 'en', 1, 'https://ror.org/04pqc7b65 Granite Falls Family Medical Care Center'), (68976, 'https://ror.org/04pr3cf18', 'no_lang_code', 1, 'https://ror.org/04pr3cf18 Bmvitek (South Korea) 비엠바이텍'), (68977, 'https://ror.org/04ptgyz27', 'en', 1, 'https://ror.org/04ptgyz27 Korean Academic Society for Public Relations 한국PR학회'), (68978, 'https://ror.org/04ptvr660', 'no_lang_code', 1, 'https://ror.org/04ptvr660 Gene (China) 香港基因有限公司'), (68979, 'https://ror.org/04pv2qa77', 'en', 1, 'https://ror.org/04pv2qa77 Center of Excellence in Wireless & Information Technology'), (68980, 'https://ror.org/04pw43593', 'no_lang_code', 1, 'https://ror.org/04pw43593 British Glass'), (68981, 'https://ror.org/04pwn6a43', 'no_lang_code', 1, 'https://ror.org/04pwn6a43 China National Chemical Engineering (China) 中国化学工程股份有限公司'), (68982, 'https://ror.org/04pwwk213', 'no_lang_code', 1, 'https://ror.org/04pwwk213 HIC (South Korea)'), (68983, 'https://ror.org/04pxj3v44', 'en', 1, 'https://ror.org/04pxj3v44 Agency for Innovation and Technology Transfer Agenția pentru Inovare și Transfer Tehnologic Агентство по Иновации и Технологическому'), (68984, 'https://ror.org/04pxsa259', 'no_lang_code', 1, 'https://ror.org/04pxsa259 EpiGear (Australia)'), (68985, 'https://ror.org/04q19fq93', 'en', 1, 'https://ror.org/04q19fq93 Korea IT Developer Cooperative 한국 아이티 (IT) 개발자 협동 조합'), (68986, 'https://ror.org/04q1k6w98', 'no_lang_code', 1, 'https://ror.org/04q1k6w98 ATM PP (Poland)'), (68987, 'https://ror.org/04q38p245', 'en', 1, 'https://ror.org/04q38p245 Restore'), (68988, 'https://ror.org/04q4xms21', 'en', 1, 'https://ror.org/04q4xms21 Independent Expert Consulting Board to Promote Scientific Research Activity in Kazakhstan Қазақстандағы ғылыми-зерттеу қызметін дамытуға арналған тәуелсіз сараптамалық кеңес беру кеңесі'), (68989, 'https://ror.org/04q50hn29', 'no_lang_code', 1, 'https://ror.org/04q50hn29 Whipsmart Media (Ireland)'), (68990, 'https://ror.org/04q57k124', 'en', 1, 'https://ror.org/04q57k124 Hong Kong New Generation Cultural Association 香港新一代文化協會'), (68991, 'https://ror.org/04q586p77', 'en', 1, 'https://ror.org/04q586p77 Choonhae College of Health Sciences 충해 건강 과학 대학'), (68992, 'https://ror.org/04q6c1q57', 'en', 1, 'https://ror.org/04q6c1q57 Shandong Academy of Pharmaceutical Sciences 山东省药学科学院'), (68993, 'https://ror.org/04q9fd590', 'en', 1, 'https://ror.org/04q9fd590 British Council'), (68994, 'https://ror.org/04qbrde71', 'en', 1, 'https://ror.org/04qbrde71 Siberian Research Institute of Mechanization and Electrification of Agriculture Сибирский научно-исследовательский институт механизации и электрификации сельского хозяйства'), (68995, 'https://ror.org/04qbvap43', 'en', 1, 'https://ror.org/04qbvap43 Future Earth'), (68996, 'https://ror.org/04qbxvw09', 'no_lang_code', 1, 'https://ror.org/04qbxvw09 MAMA-86'), (68997, 'https://ror.org/04qc4xv44', 'en', 1, 'https://ror.org/04qc4xv44 Institute for Strategic Dialogue'), (68998, 'https://ror.org/04qd74z60', 'en', 1, 'https://ror.org/04qd74z60 Society for Personality Assessment'), (68999, 'https://ror.org/04qgd6703', 'no_lang_code', 1, 'https://ror.org/04qgd6703 Hyundai Engineering (South Korea) 현대엔지니어링'), (69000, 'https://ror.org/04qh86j58', 'en', 1, 'https://ror.org/04qh86j58 Korean Association Of Science and Technology Studies 한국 과학 기술 학회'), (69001, 'https://ror.org/04qhq0392', 'no_lang_code', 1, 'https://ror.org/04qhq0392 D.V.Efremov Institute of Electrophysical Apparatus (Russia)'), (69002, 'https://ror.org/04qkwfk36', 'en', 1, 'https://ror.org/04qkwfk36 Icelandic Transport Authority Samgönguráðuneytið'), (69003, 'https://ror.org/04qn48008', 'no_lang_code', 1, 'https://ror.org/04qn48008 BioSense Institute'), (69004, 'https://ror.org/04qnq8c95', 'en', 1, 'https://ror.org/04qnq8c95 Korean Social Theory Association 한국사회이론학회'), (69005, 'https://ror.org/04qpssw85', 'en', 1, 'https://ror.org/04qpssw85 State Research Center of the Russian Federation ЦНИИ Электроприбор'), (69006, 'https://ror.org/04qq4mg80', 'no_lang_code', 1, 'https://ror.org/04qq4mg80 ITC (India)'), (69007, 'https://ror.org/04qs09z04', 'en', 1, 'https://ror.org/04qs09z04 Florida Certification Board'), (69008, 'https://ror.org/04qtsfp18', 'no_lang_code', 1, 'https://ror.org/04qtsfp18 Inteco (Poland)'), (69009, 'https://ror.org/04r0s7h58', 'en', 1, 'https://ror.org/04r0s7h58 Korean Society for Western Medieval History 한국 서양 중세사 학회'), (69010, 'https://ror.org/04r2ex566', 'no_lang_code', 1, 'https://ror.org/04r2ex566 Cypress (China)'), (69011, 'https://ror.org/04r3bfv41', 'en', 1, 'https://ror.org/04r3bfv41 Native Women''s Shelter of Montreal'), (69012, 'https://ror.org/04r3tf602', 'no_lang_code', 1, 'https://ror.org/04r3tf602 Joshua Mqabuko Nkomo Polytechnic'), (69013, 'https://ror.org/04r4vyn58', 'no_lang_code', 1, 'https://ror.org/04r4vyn58 State Scientific - Research Institute of Chemical Products (Russia) Государственный научно-исследовательский институт химических продуктов'), (69014, 'https://ror.org/04r6pf442', 'no_lang_code', 1, 'https://ror.org/04r6pf442 Logital (China)'), (69015, 'https://ror.org/04r85yt40', 'no_lang_code', 1, 'https://ror.org/04r85yt40 Cojac (United Kingdom)'), (69016, 'https://ror.org/04r9c8c47', 'en', 1, 'https://ror.org/04r9c8c47 Hong Kong Computer Society'), (69017, 'https://ror.org/04rafa332', 'en', 1, 'https://ror.org/04rafa332 Institut za tehnologiju nuklearnih i drugih mineralnih sirovina Institute for Technology of Nuclear and other Mineral Raw Materials'), (69018, 'https://ror.org/04re28h79', 'en', 1, 'https://ror.org/04re28h79 Shaanxi Institute of International Trade & Commerce 陕西国际商贸学院'), (69019, 'https://ror.org/04rezdf48', 'no_lang_code', 1, 'https://ror.org/04rezdf48 Dycotec Materials (United Kingdom)'), (69020, 'https://ror.org/04rf2w592', 'fr', 1, 'https://ror.org/04rf2w592 Sercovie'), (69021, 'https://ror.org/04rg8xb30', 'en', 1, 'https://ror.org/04rg8xb30 American Institute of Mining, Metallurgical, and Petroleum Engineers'), (69022, 'https://ror.org/04rh1ph29', 'no_lang_code', 1, 'https://ror.org/04rh1ph29 Kompol (Poland)'), (69023, 'https://ror.org/04rhf8d87', 'fr', 1, 'https://ror.org/04rhf8d87 Cancéropôle Nord-Ouest'), (69024, 'https://ror.org/04rjcfg43', 'no_lang_code', 1, 'https://ror.org/04rjcfg43 Star Vision (China)'), (69025, 'https://ror.org/04rnk3y84', 'en', 1, 'https://ror.org/04rnk3y84 All-Russian Scientific Research Institute of Experimental Veterinary Sciences. Ya.R. Kovalenko ФГБНУ Всероссийский научно-исследовательский институт экспериментальной ветеринарии им. Я.Р. Коваленко'), (69026, 'https://ror.org/04rp1yr92', 'en', 1, 'https://ror.org/04rp1yr92 Yancheng Vocational Institute of Industry Technology 盐城工业职业技术学院'), (69027, 'https://ror.org/04rppdm80', 'en', 1, 'https://ror.org/04rppdm80 European and American Osteosarcoma Study Group'), (69028, 'https://ror.org/04rt77q92', 'no_lang_code', 1, 'https://ror.org/04rt77q92 Eaton (Ireland)'), (69029, 'https://ror.org/04rttan30', 'no_lang_code', 1, 'https://ror.org/04rttan30 Tech Pro (China)'), (69030, 'https://ror.org/04rv2he23', 'no_lang_code', 1, 'https://ror.org/04rv2he23 G''s Fresh (United Kingdom)'), (69031, 'https://ror.org/04rveb346', 'no_lang_code', 1, 'https://ror.org/04rveb346 China State Shipbuilding (China) 中国船舶工业集团公司'), (69032, 'https://ror.org/04rxxfz69', 'en', 1, 'https://ror.org/04rxxfz69 Genomics England'), (69033, 'https://ror.org/04s0cpt97', 'en', 1, 'https://ror.org/04s0cpt97 Latin American Studies Association of Korea 한국라틴아메리카학회'), (69034, 'https://ror.org/04s1wfe13', 'en', 1, 'https://ror.org/04s1wfe13 Jewish Historical Institute Żydowski Instytut Historyczny im. Emanuela Ringelbluma'), (69035, 'https://ror.org/04s21va03', 'en', 1, 'https://ror.org/04s21va03 Mythopoeic Society'), (69036, 'https://ror.org/04s3ttr38', 'no_lang_code', 1, 'https://ror.org/04s3ttr38 Maspex (Poland)'), (69037, 'https://ror.org/04s4yxp35', 'es', 1, 'https://ror.org/04s4yxp35 Asociación de Informáticos del Uruguay'), (69038, 'https://ror.org/04s5hmf73', 'en', 1, 'https://ror.org/04s5hmf73 The Hunterian'), (69039, 'https://ror.org/04s5pra58', 'no_lang_code', 1, 'https://ror.org/04s5pra58 Nestlé (India)'), (69040, 'https://ror.org/04s69jg60', 'en', 1, 'https://ror.org/04s69jg60 International Organisation for Knowledge Economy and Enterprise Development'), (69041, 'https://ror.org/04s8r5v20', 'no_lang_code', 1, 'https://ror.org/04s8r5v20 Alvogen (South Korea)'), (69042, 'https://ror.org/04sbhzq93', 'en', 1, 'https://ror.org/04sbhzq93 China Nonferrous Metals Changsha Investigation Design Institute 中国有色金属长沙勘察设计院'), (69043, 'https://ror.org/04sbmz064', 'no_lang_code', 1, 'https://ror.org/04sbmz064 BH Consulting (Ireland)'), (69044, 'https://ror.org/04sbx8232', 'en', 1, 'https://ror.org/04sbx8232 Shanghai Research Institute of Materials 上海材料研究所'), (69045, 'https://ror.org/04sbypa54', 'no_lang_code', 1, 'https://ror.org/04sbypa54 Tsinghua Holdings (China) 清华控股有限公司'), (69046, 'https://ror.org/04scxn396', 'hu', 1, 'https://ror.org/04scxn396 Közbeszerzési és Ellátási Főigazgatóság'), (69047, 'https://ror.org/04sdv1b42', 'no_lang_code', 1, 'https://ror.org/04sdv1b42 JSpectrum (China)'), (69048, 'https://ror.org/04sfxnf28', 'no_lang_code', 1, 'https://ror.org/04sfxnf28 Active Text (Poland)'), (69049, 'https://ror.org/04sgnw557', 'no_lang_code', 1, 'https://ror.org/04sgnw557 Novartis (Ireland)'), (69050, 'https://ror.org/04sgsjj39', 'en', 1, 'https://ror.org/04sgsjj39 Korean Society for the Study of Social Education 한국 사회 교육 학회'), (69051, 'https://ror.org/04shyvf77', 'no_lang_code', 1, 'https://ror.org/04shyvf77 Amalyst (United Kingdom)'), (69052, 'https://ror.org/04sjk7a65', 'no_lang_code', 1, 'https://ror.org/04sjk7a65 LinkedTech Solutions (China)'), (69053, 'https://ror.org/04skrt813', 'en', 1, 'https://ror.org/04skrt813 Gwynedd Council'), (69054, 'https://ror.org/04skssb35', 'en', 1, 'https://ror.org/04skssb35 The Federal State Budgetary Scientific Institution "Izmerov Research Institute of Occupational Health" Федеральное государственное бюджетное научное учреждение «Научно-исследовательский институт медицины труда имени академика Н.Ф. Измерова»'), (69055, 'https://ror.org/04smcbj26', 'en', 1, 'https://ror.org/04smcbj26 Council of Educators in Landscape Architecture'), (69056, 'https://ror.org/04smgsr53', 'en', 1, 'https://ror.org/04smgsr53 Canal and River Trust'), (69057, 'https://ror.org/04spkws63', 'no_lang_code', 1, 'https://ror.org/04spkws63 Botamedi (South Korea)'), (69058, 'https://ror.org/04sqtxy36', 'en', 1, 'https://ror.org/04sqtxy36 Research Institute "Quantum" Научно-исследовательский институт Квант'), (69059, 'https://ror.org/04stpnd16', 'ro', 1, 'https://ror.org/04stpnd16 Institutul de Cercetari Biologice Cluj-Napoca'), (69060, 'https://ror.org/04stwsr82', 'fr', 1, 'https://ror.org/04stwsr82 Agence pour la Promotion de la Création Industrielle'), (69061, 'https://ror.org/04sx9wp33', 'en', 1, 'https://ror.org/04sx9wp33 CSIRO Manufacturing'), (69062, 'https://ror.org/04sy98p67', 'en', 1, 'https://ror.org/04sy98p67 Lishui Academy of Agricultural Sciences'), (69063, 'https://ror.org/04syg0e16', 'en', 1, 'https://ror.org/04syg0e16 Nederlands Instituut voor Meerpartijendemocratie Netherlands Institute for Multiparty Democracy'), (69064, 'https://ror.org/04t17k048', 'en', 1, 'https://ror.org/04t17k048 Society for Korean Ancient History 한국 고대사 학회'), (69065, 'https://ror.org/04t5t5q13', 'en', 1, 'https://ror.org/04t5t5q13 State of Ohio Board of Pharmacy'), (69066, 'https://ror.org/04t7p9y73', 'no_lang_code', 1, 'https://ror.org/04t7p9y73 (재)포항테크노파크 Pohang TechnoPark (South Korea)'), (69067, 'https://ror.org/04t7q4g45', 'no_lang_code', 1, 'https://ror.org/04t7q4g45 Andrychowska Fabryka Maszyn DEFUM (Poland)'), (69068, 'https://ror.org/04t8zgm64', 'no_lang_code', 1, 'https://ror.org/04t8zgm64 BAIC Motor (China)'), (69069, 'https://ror.org/04t98sb97', 'en', 1, 'https://ror.org/04t98sb97 Daejeon Technopark 대전테크노파크'), (69070, 'https://ror.org/04tadm242', 'en', 1, 'https://ror.org/04tadm242 Korean Association of Geography and Environmental Education 한국지리환경교육학회'), (69071, 'https://ror.org/04tdzkh55', 'en', 1, 'https://ror.org/04tdzkh55 The Korean Society for the Study of Elementary Education 한국초등교육학회'), (69072, 'https://ror.org/04th5gf24', 'no_lang_code', 1, 'https://ror.org/04th5gf24 China Nerin Engineering (China)'), (69073, 'https://ror.org/04thcs884', 'en', 1, 'https://ror.org/04thcs884 Korean Society of Modern Philosophy 서양근대철학회'), (69074, 'https://ror.org/04tkgz835', 'en', 1, 'https://ror.org/04tkgz835 Agricultural Engineering Precision Innovation Centre'), (69075, 'https://ror.org/04tmm4t39', 'en', 1, 'https://ror.org/04tmm4t39 Creative Carbon Scotland'), (69076, 'https://ror.org/04trmce08', 'no_lang_code', 1, 'https://ror.org/04trmce08 Energy Delivery Solutions (United States)'), (69077, 'https://ror.org/04ttbbx73', 'no_lang_code', 1, 'https://ror.org/04ttbbx73 Innovation Team (China) 創新團隊有限公司'), (69078, 'https://ror.org/04tttpd30', 'no_lang_code', 1, 'https://ror.org/04tttpd30 Changhong (China) 四川长虹电器股份有限公司'), (69079, 'https://ror.org/04ttwb316', 'en', 1, 'https://ror.org/04ttwb316 Northwest Research Institute of Chemical Industry 西北化工研究院'), (69080, 'https://ror.org/04tv6gw72', 'en', 1, 'https://ror.org/04tv6gw72 Hyundai Research Institute 현대경제연구원'), (69081, 'https://ror.org/04twmwz92', 'en', 1, 'https://ror.org/04twmwz92 Korean Association for Religious Education 한국 종교 교육 협회'), (69082, 'https://ror.org/04txdsx22', 'de', 1, 'https://ror.org/04txdsx22 Allgemeiner Deutscher Fahrrad-Club'), (69083, 'https://ror.org/04ty5pz05', 'en', 1, 'https://ror.org/04ty5pz05 Jiangsu Provincial Academy of Forestry Science and Management 江苏省林业科学研究院'), (69084, 'https://ror.org/04ty7jx71', 'en', 1, 'https://ror.org/04ty7jx71 Kalawati Saran Children''s Hospital'), (69085, 'https://ror.org/04tz2xx73', 'no_lang_code', 1, 'https://ror.org/04tz2xx73 Nutanix (United States)'), (69086, 'https://ror.org/04v15r068', 'no_lang_code', 1, 'https://ror.org/04v15r068 Shin Poong Pharm (South Korea) 신풍제약주식회사'), (69087, 'https://ror.org/04v3ce875', 'en', 1, 'https://ror.org/04v3ce875 ICAR-Indian Institute of Maize Research'), (69088, 'https://ror.org/04v6xjb97', 'en', 1, 'https://ror.org/04v6xjb97 The Society of Philosophical Studies 철학연구회'), (69089, 'https://ror.org/04v9w1q77', 'no_lang_code', 1, 'https://ror.org/04v9w1q77 Kraft Heinz (India)'), (69090, 'https://ror.org/04vazsk69', 'en', 1, 'https://ror.org/04vazsk69 Carbon Capture & Storage Association'), (69091, 'https://ror.org/04vbm7a71', 'en', 1, 'https://ror.org/04vbm7a71 Nederlands Instituut voor Internationale Betrekkingen Clingendael Netherlands Institute of International Relations Clingendael'), (69092, 'https://ror.org/04vbsjz82', 'en', 1, 'https://ror.org/04vbsjz82 Danish Ministry of Children and Education Undervisningsministeriet'), (69093, 'https://ror.org/04vccma76', 'en', 1, 'https://ror.org/04vccma76 Korea Advanced Nano Fab Center 한국 고급 나노 팹 센터'), (69094, 'https://ror.org/04vdhyw52', 'en', 1, 'https://ror.org/04vdhyw52 All-Russian Scientific Research Institute of high-frequency currents named after VP Vologdin “Всероссийский научно-исследовательский институт токов высокой частоты” им. В.П. Вологдина'), (69095, 'https://ror.org/04veg0s53', 'en', 1, 'https://ror.org/04veg0s53 International Institute for Information Design'), (69096, 'https://ror.org/04vg0e805', 'en', 1, 'https://ror.org/04vg0e805 The Polis Project'), (69097, 'https://ror.org/04vgmy976', 'en', 1, 'https://ror.org/04vgmy976 Russian Scientific Center "Applied Chemistry" Российский научный центр «Прикладная химия»'), (69098, 'https://ror.org/04vje9y05', 'en', 1, 'https://ror.org/04vje9y05 Research Institute of Development and Operation of oil-field Pipes Научно-исследовательский институт разработки и эксплуатации OCTG'), (69099, 'https://ror.org/04vkaka98', 'en', 1, 'https://ror.org/04vkaka98 Ministry of Foreign Affairs Міністерство закордонних справ України'), (69100, 'https://ror.org/04vkyz392', 'en', 1, 'https://ror.org/04vkyz392 Hangzhou Special Equipment Inspection and Research Institute 杭州市特种设备检测研究院'), (69101, 'https://ror.org/04vm99k83', 'en', 1, 'https://ror.org/04vm99k83 Ministerul Tineretului şi Sportului Ministry of Youth and Sports'), (69102, 'https://ror.org/04vmegd74', 'en', 1, 'https://ror.org/04vmegd74 Shanghai Landscape Architectural Design Research institute 上海园林建筑设计研究院有限公司'), (69103, 'https://ror.org/04vncya87', 'no_lang_code', 1, 'https://ror.org/04vncya87 Laterit Productions (France)'), (69104, 'https://ror.org/04vptn707', 'en', 1, 'https://ror.org/04vptn707 Shanghai Institute of Quality Inspection and Technical Research 上海市质量监督检验技术研究院'), (69105, 'https://ror.org/04vpw5755', 'en', 1, 'https://ror.org/04vpw5755 Heilongjiang Institute of Wood Science 黑龙江省木材科学研究所'), (69106, 'https://ror.org/04vq10619', 'no_lang_code', 1, 'https://ror.org/04vq10619 Analytics Engines (United Kingdom)'), (69107, 'https://ror.org/04vrkaw11', 'en', 1, 'https://ror.org/04vrkaw11 Jiangxi Institute of Red Soil 江西省红壤研究所'), (69108, 'https://ror.org/04vrn7932', 'en', 1, 'https://ror.org/04vrn7932 Hunan Software Vocational Institute 湖南软件职业学院'), (69109, 'https://ror.org/04vrwc094', 'no_lang_code', 1, 'https://ror.org/04vrwc094 Biome Technologies (United Kingdom)'), (69110, 'https://ror.org/04vs0j422', 'en', 1, 'https://ror.org/04vs0j422 Hospice UK'), (69111, 'https://ror.org/04vsybf69', 'no_lang_code', 1, 'https://ror.org/04vsybf69 ADGS (Qatar)'), (69112, 'https://ror.org/04vv86192', 'en', 1, 'https://ror.org/04vv86192 Doncaster Council'), (69113, 'https://ror.org/04vv9sb16', 'no_lang_code', 1, 'https://ror.org/04vv9sb16 Lasertex (Poland)'), (69114, 'https://ror.org/04vvag751', 'en', 1, 'https://ror.org/04vvag751 Sichuan Food Fermentation Industry Research and Design Institute 四川省食品发酵工业研究设计院'), (69115, 'https://ror.org/04vvqct18', 'en', 1, 'https://ror.org/04vvqct18 Cancer Clinical Research Trust'), (69116, 'https://ror.org/04vw91v95', 'no_lang_code', 1, 'https://ror.org/04vw91v95 Cheongam College 청암대학교'), (69117, 'https://ror.org/04vwkmg79', 'en', 1, 'https://ror.org/04vwkmg79 Child Development Center مركز تنمية الأطفال'), (69118, 'https://ror.org/04vxnz547', 'en', 1, 'https://ror.org/04vxnz547 (주)한국유통과학연구소 Korea Distribution Science Institute'), (69119, 'https://ror.org/04vyg0r47', 'no_lang_code', 1, 'https://ror.org/04vyg0r47 Criteo (France)'), (69120, 'https://ror.org/04w19j463', 'en', 1, 'https://ror.org/04w19j463 European Alliance Against Depression'), (69121, 'https://ror.org/04w1svb78', 'no_lang_code', 1, 'https://ror.org/04w1svb78 Brother International (United Kingdom)'), (69122, 'https://ror.org/04w38db16', 'no_lang_code', 1, 'https://ror.org/04w38db16 Inca Digital Printers (United Kingdom)'), (69123, 'https://ror.org/04w38zs89', 'no_lang_code', 1, 'https://ror.org/04w38zs89 Tver Wagon Building Institute (Russia) Научная организация «Тверской институт каретки»'), (69124, 'https://ror.org/04w3zk015', 'no_lang_code', 1, 'https://ror.org/04w3zk015 IDEXX Laboratories (France)'), (69125, 'https://ror.org/04w41nt03', 'no_lang_code', 1, 'https://ror.org/04w41nt03 Kalloc Studios (China)'), (69126, 'https://ror.org/04w4yzw62', 'no_lang_code', 1, 'https://ror.org/04w4yzw62 Fujitsu (China)'), (69127, 'https://ror.org/04w54p329', 'en', 1, 'https://ror.org/04w54p329 International College of Nutrition इंटरनेशनल कॉलेज ऑफ़ नुत्रितिओं'), (69128, 'https://ror.org/04w5hf447', 'en', 1, 'https://ror.org/04w5hf447 Future Early Childhood Education Society 미래유아교육학회'), (69129, 'https://ror.org/04w5qyg24', 'en', 1, 'https://ror.org/04w5qyg24 Maryland Emergency Management Agency'), (69130, 'https://ror.org/04w6b5d66', 'no_lang_code', 1, 'https://ror.org/04w6b5d66 Informatica Qatar (Qatar)'), (69131, 'https://ror.org/04w6mhj60', 'no_lang_code', 1, 'https://ror.org/04w6mhj60 JSM Technology Korea (South Korea) 제이에스엠테크놀러지코리아'), (69132, 'https://ror.org/04wbhnv17', 'no_lang_code', 1, 'https://ror.org/04wbhnv17 Aptcore (United Kingdom)'), (69133, 'https://ror.org/04wgdr728', 'en', 1, 'https://ror.org/04wgdr728 Guangzhou Research Institute of Synthetic Materials'), (69134, 'https://ror.org/04wgf7387', 'no_lang_code', 1, 'https://ror.org/04wgf7387 Beijing Building Construction Research Institute (China) 北京建筑科学研究院有限公司'), (69135, 'https://ror.org/04wgrw793', 'en', 1, 'https://ror.org/04wgrw793 All-Russian Scientific Research Institute of Radio Engineering Всероссийский НИИ Радиотехники'), (69136, 'https://ror.org/04wm6mg86', 'en', 1, 'https://ror.org/04wm6mg86 Private Capital Research Institute'), (69137, 'https://ror.org/04wmbjv17', 'en', 1, 'https://ror.org/04wmbjv17 Seoul Sleep Center 서울수면클리닉'), (69138, 'https://ror.org/04wmqsp35', 'no_lang_code', 1, 'https://ror.org/04wmqsp35 The Ural Scientific-Research Institute of Architecture and Construction (Russia)'), (69139, 'https://ror.org/04wmrj902', 'no_lang_code', 1, 'https://ror.org/04wmrj902 Guangdong Baiyun University 광동백운대학교는'), (69140, 'https://ror.org/04wqtzp08', 'no_lang_code', 1, 'https://ror.org/04wqtzp08 Henan Provincial Institute of Communications Planning Survey & Design (China) 河南省交通规划设计研究院股份有限公司'), (69141, 'https://ror.org/04wsa7713', 'en', 1, 'https://ror.org/04wsa7713 All-Russian Scientific-Research Institute Of Mineral Resources named after N.M. Fedorovsky Всероссийский НИИ минерального сырья имени Н. М. Федоровского'), (69142, 'https://ror.org/04wtt0690', 'no_lang_code', 1, 'https://ror.org/04wtt0690 Suzhou Institute of Building Science Group (China) 苏州市建筑科学研究院集团股份有限公司'), (69143, 'https://ror.org/04wyd3784', 'en', 1, 'https://ror.org/04wyd3784 Philosophy Of Education Society Of Korea 한국 교육 철학회'), (69144, 'https://ror.org/04x5g9003', 'en', 1, 'https://ror.org/04x5g9003 Hong Kong Plastics Manufacturers Association 香港塑膠業廠商有限公司'), (69145, 'https://ror.org/04x5v4156', 'en', 1, 'https://ror.org/04x5v4156 Korean Arabic Arabic Literature Society 아랍어 아랍어 문학회'), (69146, 'https://ror.org/04xbnb295', 'en', 1, 'https://ror.org/04xbnb295 Korean Elementary Art Education Association 한국초등미술교육학회'), (69147, 'https://ror.org/04xe4ne75', 'en', 1, 'https://ror.org/04xe4ne75 Gouvernement de Maurice Government of Mauritius'), (69148, 'https://ror.org/04xf9tg94', 'en', 1, 'https://ror.org/04xf9tg94 Sewerage Board of Limassol – Amathus Συμβούλιο Αποχετεύσεων Λεμεσού - Αμαθούντας'), (69149, 'https://ror.org/04xgx9819', 'en', 1, 'https://ror.org/04xgx9819 Krasnodar Research Institute of Fishery Краснодарский научно-исследовательский институт рыбного хозяйства'), (69150, 'https://ror.org/04xhs0x67', 'no_lang_code', 1, 'https://ror.org/04xhs0x67 Beijing Survey and Design Institute (China) 北京市勘察设计研究院有限'), (69151, 'https://ror.org/04xkyrk98', 'no_lang_code', 1, 'https://ror.org/04xkyrk98 OJSC VNIIST (Russia) Всероссийский научно-исследовательский институт по строительству и эксплуатации трубопроводов, объектов'), (69152, 'https://ror.org/04xnk9j36', 'no_lang_code', 1, 'https://ror.org/04xnk9j36 Fujifilm (South Korea) 한국후지필름'), (69153, 'https://ror.org/04xpgws89', 'no_lang_code', 1, 'https://ror.org/04xpgws89 Toshiba Mitsubishi-Electric Industrial Systems Corporation (Japan) 東芝三菱電機産業システム株式会社'), (69154, 'https://ror.org/04xrcx824', 'no_lang_code', 1, 'https://ror.org/04xrcx824 NEC (China) 日本電気株式会社'), (69155, 'https://ror.org/04xrq1760', 'en', 1, 'https://ror.org/04xrq1760 Jurong Jinghou Machinery Research Institute 句容京侯机械研究所'), (69156, 'https://ror.org/04xrvq619', 'en', 1, 'https://ror.org/04xrvq619 StoryCorps'), (69157, 'https://ror.org/04xskva03', 'en', 1, 'https://ror.org/04xskva03 Maekyung Institute for Safety and Environment 매경 안전환경연구원'), (69158, 'https://ror.org/04xtdqy92', 'no_lang_code', 1, 'https://ror.org/04xtdqy92 Gumi Electronics & Information Technology Research Institute (South Korea) 구미전자정보기술원'), (69159, 'https://ror.org/04xxknx59', 'en', 1, 'https://ror.org/04xxknx59 Council on Health Research for Development'), (69160, 'https://ror.org/04xxm7a37', 'en', 1, 'https://ror.org/04xxm7a37 Korea Association of Information Systems 한국정보시스템학회'), (69161, 'https://ror.org/04xxxza58', 'en', 1, 'https://ror.org/04xxxza58 Wenzhou Institute of Technology Testing & Calibration 温州理工学院测试与校准'), (69162, 'https://ror.org/04xytpa07', 'en', 1, 'https://ror.org/04xytpa07 European Council for an Energy Efficient Economy'), (69163, 'https://ror.org/04xzvj604', 'no_lang_code', 1, 'https://ror.org/04xzvj604 Monaghan Biosciences (Ireland)'), (69164, 'https://ror.org/04y08pq82', 'no_lang_code', 1, 'https://ror.org/04y08pq82 CCCC Wuhan Harbour Engineering Design and Research (China) 中交武汉港湾工程设计研究院'), (69165, 'https://ror.org/04y0apy28', 'en', 1, 'https://ror.org/04y0apy28 The Korean Society for Early Childhood Education 한국유아교육학회'), (69166, 'https://ror.org/04y3hfp43', 'en', 1, 'https://ror.org/04y3hfp43 Ministry of Agriculture of the Russian Federation Министерство сельского хозяйства Российской Федерации'), (69167, 'https://ror.org/04y76yy92', 'no_lang_code', 1, 'https://ror.org/04y76yy92 Zheng yan Seed (China) 郑燕种子'), (69168, 'https://ror.org/04y85rv20', 'en', 1, 'https://ror.org/04y85rv20 Honam Archaeological Society 호남고고학회'), (69169, 'https://ror.org/04y922n71', 'no_lang_code', 1, 'https://ror.org/04y922n71 Daiseung Medics (South Korea) 대승의료기기(주)'), (69170, 'https://ror.org/04y9x6j75', 'en', 1, 'https://ror.org/04y9x6j75 All-Russian Research Geological Oil Institute Всероссийский научно-исследовательский геологический институт нефти'), (69171, 'https://ror.org/04ya8jc69', 'en', 1, 'https://ror.org/04ya8jc69 All-Russian Research Institute of Agriculture and Soil Protection from erosion'), (69172, 'https://ror.org/04yabfc65', 'en', 1, 'https://ror.org/04yabfc65 Gansu Institute of Mechanical and Electrical Technology 甘肃机电职业技术学院 地址'), (69173, 'https://ror.org/04yajxs70', 'en', 1, 'https://ror.org/04yajxs70 Frank P Matthews'), (69174, 'https://ror.org/04ye58e76', 'pl', 1, 'https://ror.org/04ye58e76 Instytut Europy Środkowo-Wschodniej'), (69175, 'https://ror.org/04yek5g30', 'no_lang_code', 1, 'https://ror.org/04yek5g30 FSUE FNPTS NIIIS named after Yu.Sedakov (Russia)'), (69176, 'https://ror.org/04yep8s05', 'no_lang_code', 1, 'https://ror.org/04yep8s05 Fujian Petrochemical Group (China) 福建石油化工集团有限责任公司'), (69177, 'https://ror.org/04yfe8169', 'no_lang_code', 1, 'https://ror.org/04yfe8169 Mindray (China) 深圳迈瑞生物医疗电子股份有限公司 版权所有'), (69178, 'https://ror.org/04yj3me46', 'no_lang_code', 1, 'https://ror.org/04yj3me46 Iljin Radiation Engineering (South Korea) 일진방사선엔지니어링'), (69179, 'https://ror.org/04ymawg89', 'no_lang_code', 1, 'https://ror.org/04ymawg89 Ketonex (United Kingdom)'), (69180, 'https://ror.org/04ynn1b95', 'en', 1, 'https://ror.org/04ynn1b95 Astronomy and Space'), (69181, 'https://ror.org/04ynzkj24', 'no_lang_code', 1, 'https://ror.org/04ynzkj24 Blackboard (United States)'), (69182, 'https://ror.org/04ypjrs34', 'en', 1, 'https://ror.org/04ypjrs34 National Supercomputing Center in Wuxi 无锡国家超级计算中心'), (69183, 'https://ror.org/04yq0fn97', 'no_lang_code', 1, 'https://ror.org/04yq0fn97 Yueyang Changling Equipment Research Institute (China) 岳阳长岭设备研究所有限公司'), (69184, 'https://ror.org/04yq6yj22', 'no_lang_code', 1, 'https://ror.org/04yq6yj22 AgSpace (United Kingdom)'), (69185, 'https://ror.org/04yr0q610', 'no_lang_code', 1, 'https://ror.org/04yr0q610 Chengdu Tiger Microwave Technology (China) 成都泰格微波技术股份有限公司'), (69186, 'https://ror.org/04yt00889', 'no_lang_code', 1, 'https://ror.org/04yt00889 Samsung (China) 三星电子中国'), (69187, 'https://ror.org/04ytn9a85', 'no_lang_code', 1, 'https://ror.org/04ytn9a85 General Electric (Poland)'), (69188, 'https://ror.org/04yvash73', 'en', 1, 'https://ror.org/04yvash73 International Commission on Non-Ionizing Radiation Protection'), (69189, 'https://ror.org/04yvkkx28', 'en', 1, 'https://ror.org/04yvkkx28 Korean Educational Research Association 한국교육학회'), (69190, 'https://ror.org/04ywg4h07', 'en', 1, 'https://ror.org/04ywg4h07 Seoul Media Institute of Technology 서울미디어대학원대학교'), (69191, 'https://ror.org/04ywpy664', 'no_lang_code', 1, 'https://ror.org/04ywpy664 Ekoinwentyka (Poland)'), (69192, 'https://ror.org/04yydwx07', 'nl', 1, 'https://ror.org/04yydwx07 Ministerie van Volksgezondheid'), (69193, 'https://ror.org/04yzwa804', 'no_lang_code', 1, 'https://ror.org/04yzwa804 Sega Sammy (Japan) 株式会社セガサミーホールディングス'), (69194, 'https://ror.org/04z0vgz60', 'en', 1, 'https://ror.org/04z0vgz60 Dhanvantari Ayurveda College Hospital and Research Centre'), (69195, 'https://ror.org/04z11gw67', 'no_lang_code', 1, 'https://ror.org/04z11gw67 Fresenius Medical Care (India)'), (69196, 'https://ror.org/04z1ghe08', 'en', 1, 'https://ror.org/04z1ghe08 Korean Publishing Science Society 한국 출판 학회'), (69197, 'https://ror.org/04z27kp43', 'no_lang_code', 1, 'https://ror.org/04z27kp43 Juthis (South Korea)'), (69198, 'https://ror.org/04z3rz137', 'no_lang_code', 1, 'https://ror.org/04z3rz137 ANKO (Greece) Αναπτυξιακή Δυτικής Μακεδονίας'), (69199, 'https://ror.org/04z4aan47', 'en', 1, 'https://ror.org/04z4aan47 Fédération Internationale de Médecine du Sport International Federation of Sports Medicine'), (69200, 'https://ror.org/04z4hje09', 'en', 1, 'https://ror.org/04z4hje09 Early Childhood Ireland'), (69201, 'https://ror.org/04z4kzf83', 'no_lang_code', 1, 'https://ror.org/04z4kzf83 A.P. Krylov All-Russian Oil and Gas Research Institute (Russia) Акционерное общество «Всероссийский нефтегазовый научно-исследовательский институт имени академика А.П. Крылова»'), (69202, 'https://ror.org/04z4pf693', 'en', 1, 'https://ror.org/04z4pf693 Sholem Aleichem Amur State University Приамурский государственный университет имени Шолом-Алейхема'), (69203, 'https://ror.org/04z6dh903', 'no_lang_code', 1, 'https://ror.org/04z6dh903 Wonkwang Pharmaceutical (South Korea) 원광제약'), (69204, 'https://ror.org/04z77bq11', 'no_lang_code', 1, 'https://ror.org/04z77bq11 Pieta House'), (69205, 'https://ror.org/04z9e1z18', 'en', 1, 'https://ror.org/04z9e1z18 Scientific Research Institute of Industrial Television Rastr Научно-исследовательский институт промышленного телевидения Растр'), (69206, 'https://ror.org/04z9hzj86', 'no_lang_code', 1, 'https://ror.org/04z9hzj86 Jeil Pharmaceutical (South Korea) 제일약품 주식회사'), (69207, 'https://ror.org/04zg20k47', 'en', 1, 'https://ror.org/04zg20k47 Public.Resource.Org'), (69208, 'https://ror.org/04zh2hd39', 'no_lang_code', 1, 'https://ror.org/04zh2hd39 Yunnan Investment Group (China) 云投集团'), (69209, 'https://ror.org/04zhz8n61', 'en', 1, 'https://ror.org/04zhz8n61 Hong Kong Optical Manufacturers Association 香港光学制造商协会'), (69210, 'https://ror.org/04zjdjq28', 'no_lang_code', 1, 'https://ror.org/04zjdjq28 Hutchinson (United Kingdom)'), (69211, 'https://ror.org/04zk0zd97', 'en', 1, 'https://ror.org/04zk0zd97 Georgia Department of Juvenile Justice'), (69212, 'https://ror.org/04zpnp088', 'en', 1, 'https://ror.org/04zpnp088 Southern States Energy Board'), (69213, 'https://ror.org/04zpwwx37', 'en', 1, 'https://ror.org/04zpwwx37 Korean Brecht Society 한국브레히트학회'), (69214, 'https://ror.org/04zr3n007', 'no_lang_code', 1, 'https://ror.org/04zr3n007 Green Energy Engineering Consultancy (China)'), (69215, 'https://ror.org/04zrq7c15', 'en', 1, 'https://ror.org/04zrq7c15 Ministria e Financave dhe Ekonomisë Ministry of Finance'), (69216, 'https://ror.org/04zsrq347', 'en', 1, 'https://ror.org/04zsrq347 St. Paul''s Co-educational College 聖保羅男女中學'), (69217, 'https://ror.org/04ztb5g16', 'no_lang_code', 1, 'https://ror.org/04ztb5g16 Shanxi Provincial Institute of Chemical Industry (China) 山西省化工研究所'); INSERT INTO `rors` VALUES (69218, 'https://ror.org/04zv3rp09', 'en', 1, 'https://ror.org/04zv3rp09 Shenzhen Academy of Metrology and Quality Inspection 深圳市计量质量检测研究院'), (69219, 'https://ror.org/04zvdhe55', 'en', 1, 'https://ror.org/04zvdhe55 Institute of Nuclear Power Operations'), (69220, 'https://ror.org/04zvt6r42', 'en', 1, 'https://ror.org/04zvt6r42 Outreach Scout Foundation'), (69221, 'https://ror.org/04zw7qt81', 'no_lang_code', 1, 'https://ror.org/04zw7qt81 VNIIStrudormash (Russia) ВНИИстройдормаш'), (69222, 'https://ror.org/04zxd7e56', 'en', 1, 'https://ror.org/04zxd7e56 Ministarstvo finansija-uprava carina Ministry of Finance and Economy'), (69223, 'https://ror.org/04zxtq045', 'en', 1, 'https://ror.org/04zxtq045 Xiamen Nanyang University 厦门南洋学院'), (69224, 'https://ror.org/04zyrd219', 'cs', 1, 'https://ror.org/04zyrd219 Agentura pro podporu podnikání a investic, CzechInvest'), (69225, 'https://ror.org/0503q8b31', 'no_lang_code', 1, 'https://ror.org/0503q8b31 II-VI (China)'), (69226, 'https://ror.org/0505b0847', 'no_lang_code', 1, 'https://ror.org/0505b0847 Joyson Electronics (China) 均胜电子'), (69227, 'https://ror.org/0506qpg95', 'no_lang_code', 1, 'https://ror.org/0506qpg95 Impedans (Ireland)'), (69228, 'https://ror.org/050777m95', 'en', 1, 'https://ror.org/050777m95 Hebei Semiconductor Research Institute'), (69229, 'https://ror.org/0507jm035', 'no_lang_code', 1, 'https://ror.org/0507jm035 Umbo Computer Vision (United Kingdom)'), (69230, 'https://ror.org/05093ss78', 'no_lang_code', 1, 'https://ror.org/05093ss78 Lens Technology (China) 蓝思科技'), (69231, 'https://ror.org/050acz986', 'no_lang_code', 1, 'https://ror.org/050acz986 Gogo (United States)'), (69232, 'https://ror.org/050bxqn58', 'en', 1, 'https://ror.org/050bxqn58 Xihu Institute of Electronic Research 杭州西湖电子研究所'), (69233, 'https://ror.org/050d32d16', 'no_lang_code', 1, 'https://ror.org/050d32d16 Hong Kong Telecommunications Limited (China)'), (69234, 'https://ror.org/050f6zs19', 'en', 1, 'https://ror.org/050f6zs19 Krasnodar Research Institute of Agriculture named after P. Lukyanenko Краснодарский НИИ сельского хозяйства имени П. П. Лукьяненко'), (69235, 'https://ror.org/050g87e49', 'en', 1, 'https://ror.org/050g87e49 Henan Forestry Vocational College 河南林业职业学院'), (69236, 'https://ror.org/050gfgn67', 'en', 1, 'https://ror.org/050gfgn67 Institute of Lithuanian Literature and Folklore Lietuvių Literatūros ir Tautosakos Institutas'), (69237, 'https://ror.org/050jrfq68', 'en', 1, 'https://ror.org/050jrfq68 Research Institute of Metallurgy «Научно-исследовательский институт металлургии»'), (69238, 'https://ror.org/050m8a892', 'en', 1, 'https://ror.org/050m8a892 Commodity Futures Trading Commission'), (69239, 'https://ror.org/050r87w51', 'en', 1, 'https://ror.org/050r87w51 North Atlantic Salmon Conservation Organization'), (69240, 'https://ror.org/050s4mf29', 'en', 1, 'https://ror.org/050s4mf29 Danish Nature Agency Naturstyrelsen'), (69241, 'https://ror.org/050s80f40', 'en', 1, 'https://ror.org/050s80f40 Korea Agricultural Economics Association 한국농업경제학회'), (69242, 'https://ror.org/050scpn75', 'en', 1, 'https://ror.org/050scpn75 Ural Scientific Research and Design Institute of Galurgy Уральский научно-исследовательский и проектный институт галургии'), (69243, 'https://ror.org/050skmv85', 'en', 1, 'https://ror.org/050skmv85 Ural research Institute of Phthisiopulmonology Уральский научно-исследовательский институт фтизиопульмонологии'), (69244, 'https://ror.org/050w2w956', 'no_lang_code', 1, 'https://ror.org/050w2w956 inStream Media (United States)'), (69245, 'https://ror.org/050wsc124', 'en', 1, 'https://ror.org/050wsc124 Institute of Licensing'), (69246, 'https://ror.org/050yrsr44', 'en', 1, 'https://ror.org/050yrsr44 All-Russian Scientific Research Institute of Confectionery Industry ФГБНУ Всероссийский Научно-исследовательский институт Кондитерской Промышленности'), (69247, 'https://ror.org/0510xwc60', 'no_lang_code', 1, 'https://ror.org/0510xwc60 Oursky (China)'), (69248, 'https://ror.org/05113d564', 'en', 1, 'https://ror.org/05113d564 Akademia Sztuki Wojennej War Studies Academy'), (69249, 'https://ror.org/051451b66', 'no_lang_code', 1, 'https://ror.org/051451b66 Finima Innovations (China)'), (69250, 'https://ror.org/0514g5649', 'no_lang_code', 1, 'https://ror.org/0514g5649 Bodle Technologies (United Kingdom)'), (69251, 'https://ror.org/0515gyd10', 'no_lang_code', 1, 'https://ror.org/0515gyd10 Accoson (United Kingdom)'), (69252, 'https://ror.org/0516brw47', 'en', 1, 'https://ror.org/0516brw47 Indian Institute of Wheat and Barley Research भारतीय गेहूं और जौ अनुसंधान संस्थान'), (69253, 'https://ror.org/0516ekw41', 'en', 1, 'https://ror.org/0516ekw41 Federal Protective Service Федеральная служба охраны'), (69254, 'https://ror.org/0517atn92', 'no_lang_code', 1, 'https://ror.org/0517atn92 (주)심유 Symyoo'), (69255, 'https://ror.org/0518zn197', 'en', 1, 'https://ror.org/0518zn197 International Commission on Radiation Units and Measurements'), (69256, 'https://ror.org/051awps38', 'en', 1, 'https://ror.org/051awps38 Soongeui Women''s College 숭의여자대학교'), (69257, 'https://ror.org/051b9ta18', 'no_lang_code', 1, 'https://ror.org/051b9ta18 SAIC Motor (China) 上汽集团'), (69258, 'https://ror.org/051d61326', 'no_lang_code', 1, 'https://ror.org/051d61326 Tata Consulting Engineers (Qatar)'), (69259, 'https://ror.org/051dx4d56', 'no_lang_code', 1, 'https://ror.org/051dx4d56 Bryant Symons Technologies (United Kingdom)'), (69260, 'https://ror.org/051eb2f11', 'fr', 1, 'https://ror.org/051eb2f11 Centre Hospitalier de la Dracénie'), (69261, 'https://ror.org/051h3ee29', 'no_lang_code', 1, 'https://ror.org/051h3ee29 M-Gen Mobile Technology (China)'), (69262, 'https://ror.org/051hnz082', 'no_lang_code', 1, 'https://ror.org/051hnz082 Silvapa (Portugal)'), (69263, 'https://ror.org/051kc3x78', 'en', 1, 'https://ror.org/051kc3x78 Heze Academy of Agricultural Sciences 菏泽农科院'), (69264, 'https://ror.org/051mxsx19', 'no_lang_code', 1, 'https://ror.org/051mxsx19 SP Technology (South Korea) 에스피텍'), (69265, 'https://ror.org/051pt2g47', 'en', 1, 'https://ror.org/051pt2g47 Korean-German Vocational College 한독직업전문학교'), (69266, 'https://ror.org/051qgy342', 'no_lang_code', 1, 'https://ror.org/051qgy342 CDK Global (United States)'), (69267, 'https://ror.org/051wgfj58', 'en', 1, 'https://ror.org/051wgfj58 Institute of Biological, Environmental and Rural Sciences'), (69268, 'https://ror.org/051x0xg08', 'en', 1, 'https://ror.org/051x0xg08 Natura Foundation'), (69269, 'https://ror.org/051xxew12', 'no_lang_code', 1, 'https://ror.org/051xxew12 Coship (China) 深圳市同洲电子股份有限公司'), (69270, 'https://ror.org/051y11y24', 'en', 1, 'https://ror.org/051y11y24 Justitiedepartementet Ministry of Justice'), (69271, 'https://ror.org/051yzyq64', 'no_lang_code', 1, 'https://ror.org/051yzyq64 Techtra (Poland)'), (69272, 'https://ror.org/0520y8c54', 'no_lang_code', 1, 'https://ror.org/0520y8c54 SverdNIIhimmash Свердловский научно-исследовательский институт химического машиностроения'), (69273, 'https://ror.org/0522a8916', 'no_lang_code', 1, 'https://ror.org/0522a8916 Print-Rite (China) 天威 (安捷)'), (69274, 'https://ror.org/0522zz544', 'en', 1, 'https://ror.org/0522zz544 Gorta Self Help Africa'), (69275, 'https://ror.org/0526r9902', 'en', 1, 'https://ror.org/0526r9902 Kenya Forest Service'), (69276, 'https://ror.org/0528jzf19', 'en', 1, 'https://ror.org/0528jzf19 Korean Association of French Language and Literature 한국 불어 학회'), (69277, 'https://ror.org/0529ecj14', 'no_lang_code', 1, 'https://ror.org/0529ecj14 Institut für Solartechnologien (Germany)'), (69278, 'https://ror.org/0529wwy54', 'en', 1, 'https://ror.org/0529wwy54 Institute of New Carbon Materials and Technologies'), (69279, 'https://ror.org/052bj1e57', 'no_lang_code', 1, 'https://ror.org/052bj1e57 Contamac (United Kingdom)'), (69280, 'https://ror.org/052bj9b74', 'en', 1, 'https://ror.org/052bj9b74 The Korean Ceramic Society 대한 도자 학회'), (69281, 'https://ror.org/052fc5r55', 'en', 1, 'https://ror.org/052fc5r55 International Water Institute'), (69282, 'https://ror.org/052gbj065', 'en', 1, 'https://ror.org/052gbj065 Mississippi Board of Pharmacy'), (69283, 'https://ror.org/052h3h832', 'en', 1, 'https://ror.org/052h3h832 Guangxi Institute of Oceanography 广西海洋研究所'), (69284, 'https://ror.org/052hz8t89', 'en', 1, 'https://ror.org/052hz8t89 Lietuvos Istorijos Institutas Lithuanian Institute of History'), (69285, 'https://ror.org/052qbca19', 'en', 1, 'https://ror.org/052qbca19 Ministrstvo za javno upravo Ministry of Public Administration'), (69286, 'https://ror.org/052rh9n35', 'fr', 1, 'https://ror.org/052rh9n35 Centrale des Syndicats du Québec'), (69287, 'https://ror.org/052td7g28', 'en', 1, 'https://ror.org/052td7g28 Korea Peace Institute 한국 평화 연구소'), (69288, 'https://ror.org/052w5r042', 'en', 1, 'https://ror.org/052w5r042 Ministry of Natural Resources and Environment Министерство природных ресурсов и экологии Российской Федерации'), (69289, 'https://ror.org/052wkga64', 'no_lang_code', 1, 'https://ror.org/052wkga64 APT Electronics (China)'), (69290, 'https://ror.org/052ww7470', 'no_lang_code', 1, 'https://ror.org/052ww7470 General Mills (United Kingdom)'), (69291, 'https://ror.org/052x5qt17', 'no_lang_code', 1, 'https://ror.org/052x5qt17 Baltic Ceramics Investments (Poland)'), (69292, 'https://ror.org/052z4cr88', 'en', 1, 'https://ror.org/052z4cr88 Chemins de fer fédéraux suisses Schweizerische Bundesbahnen Swiss Federal Railways'), (69293, 'https://ror.org/0532vhk36', 'no_lang_code', 1, 'https://ror.org/0532vhk36 MODUS (Qatar)'), (69294, 'https://ror.org/0534xfc33', 'en', 1, 'https://ror.org/0534xfc33 Khanty-Mansiysk State Medical Academy Ханты-Мансийская государственная медицинская академия'), (69295, 'https://ror.org/0536ax941', 'en', 1, 'https://ror.org/0536ax941 Copenhagen Institute of Interaction Design'), (69296, 'https://ror.org/05370es03', 'en', 1, 'https://ror.org/05370es03 British Columbia Academic Health Science Network'), (69297, 'https://ror.org/0537cyx03', 'en', 1, 'https://ror.org/0537cyx03 Agricultural Farmer''s Policy Institute 농업농민정책연구소 녀름'), (69298, 'https://ror.org/05388c580', 'en', 1, 'https://ror.org/05388c580 United Nations Children''s Fund India'), (69299, 'https://ror.org/0538yth83', 'en', 1, 'https://ror.org/0538yth83 Korea Association of Teachers of English 한국영어교육학회'), (69300, 'https://ror.org/053afye15', 'no_lang_code', 1, 'https://ror.org/053afye15 iMusicTech (China)'), (69301, 'https://ror.org/053ahvv37', 'en', 1, 'https://ror.org/053ahvv37 Esoterix'), (69302, 'https://ror.org/053amty26', 'en', 1, 'https://ror.org/053amty26 Delaware Heritage Commission'), (69303, 'https://ror.org/053e3ts04', 'en', 1, 'https://ror.org/053e3ts04 Research Institute of Problems of Storage Rosrezerva Научно-исследовательский институт проблем хранения Федерального агентства по государственным резервам'), (69304, 'https://ror.org/053f7j738', 'en', 1, 'https://ror.org/053f7j738 Institute for Knowledge Mobilization l''Institut pour la Mobilisation des Connaissances'), (69305, 'https://ror.org/053fj3b72', 'en', 1, 'https://ror.org/053fj3b72 27-й Центральный научно-исследовательский институт Министерства обороны Российской Федерации 27th Central Research Institute of the Ministry of Defence of the Russian Federation'), (69306, 'https://ror.org/053gsyk62', 'en', 1, 'https://ror.org/053gsyk62 Dagestan Center of Eye Microsurgery Дагестанский центр микрохирургии глаза'), (69307, 'https://ror.org/053k9rz58', 'en', 1, 'https://ror.org/053k9rz58 National Association of Regional Game Councils'), (69308, 'https://ror.org/053prtv35', 'en', 1, 'https://ror.org/053prtv35 Physicians East'), (69309, 'https://ror.org/053sg5d59', 'no_lang_code', 1, 'https://ror.org/053sg5d59 Arconic (United Kingdom)'), (69310, 'https://ror.org/053ss9y09', 'pt', 1, 'https://ror.org/053ss9y09 Associação Kuyper para Estudos Transdisciplinares'), (69311, 'https://ror.org/053t6pj86', 'en', 1, 'https://ror.org/053t6pj86 Povolzhsky Research Institute of Ecological and Meliorative Technologies Волжский научно-исследовательский институт эколого-мелиоративных технологий'), (69312, 'https://ror.org/053t76350', 'no_lang_code', 1, 'https://ror.org/053t76350 Wellbeing LS (South Korea) 웰빙엘에스'), (69313, 'https://ror.org/053v5e348', 'no_lang_code', 1, 'https://ror.org/053v5e348 Tableau Software (United States)'), (69314, 'https://ror.org/053v9t488', 'no_lang_code', 1, 'https://ror.org/053v9t488 Daqo (China) 大全'), (69315, 'https://ror.org/053w2fj59', 'en', 1, 'https://ror.org/053w2fj59 Glass-House Community Led Design'), (69316, 'https://ror.org/053y4qc63', 'en', 1, 'https://ror.org/053y4qc63 United Cancer Support Foundation'), (69317, 'https://ror.org/053z9ab73', 'de', 1, 'https://ror.org/053z9ab73 Johanniter-Krankenhaus Bonn'), (69318, 'https://ror.org/053zb8g23', 'en', 1, 'https://ror.org/053zb8g23 Plaquemines Parish Government'), (69319, 'https://ror.org/053zgay46', 'en', 1, 'https://ror.org/053zgay46 Zhejiang Institute of Modern Textile Industry 浙江省现代纺织工业研究院'), (69320, 'https://ror.org/05411zh25', 'en', 1, 'https://ror.org/05411zh25 The Korea Association of Yeolin Education 한국열린교육학회'), (69321, 'https://ror.org/0541hzv22', 'no_lang_code', 1, 'https://ror.org/0541hzv22 K-UTEC Salt Technologies (Germany)'), (69322, 'https://ror.org/05451aa47', 'no_lang_code', 1, 'https://ror.org/05451aa47 DSV (United Kingdom)'), (69323, 'https://ror.org/0546h2150', 'en', 1, 'https://ror.org/0546h2150 Department of Disaster Prevention and Mitigation กรมป้องกันและบรรเทาสาธารณภัย'), (69324, 'https://ror.org/0548hz093', 'en', 1, 'https://ror.org/0548hz093 Russian State Agrarian Correspondence University Российский государственный аграрный заочный университет'), (69325, 'https://ror.org/05495v729', 'en', 1, 'https://ror.org/05495v729 Luliang University 吕梁学院'), (69326, 'https://ror.org/0549hdw45', 'en', 1, 'https://ror.org/0549hdw45 Abbottabad University of Science and Technology'), (69327, 'https://ror.org/054atdn20', 'en', 1, 'https://ror.org/054atdn20 King Abdullah Medical City مدينة الملك عبدالله الطبية'), (69328, 'https://ror.org/054deg252', 'no_lang_code', 1, 'https://ror.org/054deg252 Shanghai Huali Microelectronics (China) 上海华力微电子有限公司'), (69329, 'https://ror.org/054ep4r90', 'en', 1, 'https://ror.org/054ep4r90 Federal Scientific Center for Feed Production and Agroecology named after V.R. Williams Всероссийский НИИ кормов имени В. Р. Вильямса'), (69330, 'https://ror.org/054hffs36', 'en', 1, 'https://ror.org/054hffs36 Global Cultural Contents Association 세계 문화 콘텐츠 학회'), (69331, 'https://ror.org/054hrx607', 'no_lang_code', 1, 'https://ror.org/054hrx607 ShaoLin Microsystems (China)'), (69332, 'https://ror.org/054m6hn21', 'en', 1, 'https://ror.org/054m6hn21 Center for Inquiry'), (69333, 'https://ror.org/054q52n39', 'no_lang_code', 1, 'https://ror.org/054q52n39 Stallergenes Greer (United States)'), (69334, 'https://ror.org/054vdk688', 'no_lang_code', 1, 'https://ror.org/054vdk688 KanHan Technologies (China)'), (69335, 'https://ror.org/054wntq63', 'en', 1, 'https://ror.org/054wntq63 Suzhou Chien-Shiung Institute of Technology 苏州健雄职业技术学院'), (69336, 'https://ror.org/054z4z240', 'en', 1, 'https://ror.org/054z4z240 Korea International Understanding Education Society 한국 국제 이해 교육 학회'), (69337, 'https://ror.org/05500xy74', 'no_lang_code', 1, 'https://ror.org/05500xy74 Guangdong Industrial Equipment Installation (China) 广东省工业设备安装有限公司'), (69338, 'https://ror.org/0550dmh35', 'fr', 1, 'https://ror.org/0550dmh35 Centre Interdisciplinaire de Nanoscience de Marseille'), (69339, 'https://ror.org/05518k367', 'en', 1, 'https://ror.org/05518k367 Institute of Applied Physics Акционерного Общества Институт прикладной физики'), (69340, 'https://ror.org/0553r0192', 'no_lang_code', 1, 'https://ror.org/0553r0192 Ionix Advanced Technologies (United Kingdom)'), (69341, 'https://ror.org/0554q2022', 'en', 1, 'https://ror.org/0554q2022 Ministry of Transport, Information Technology and Communications Министерство на транспорта, информационните технологии и съобщенията на Република България'), (69342, 'https://ror.org/0554tsp75', 'en', 1, 'https://ror.org/0554tsp75 Zhejiang Modern Architectural Design & Research Institute 浙江省现代建筑设计研究院'), (69343, 'https://ror.org/0555rbr45', 'no_lang_code', 1, 'https://ror.org/0555rbr45 Hygienic Research Institute (India) स्वच्छंद संशोधन संस्था'), (69344, 'https://ror.org/0555zm156', 'en', 1, 'https://ror.org/0555zm156 Middle East Research Institute'), (69345, 'https://ror.org/0556k3d61', 'hu', 1, 'https://ror.org/0556k3d61 Puskás Tivadar Távközlési Technikum'), (69346, 'https://ror.org/0557f3j69', 'fr', 1, 'https://ror.org/0557f3j69 Communautique'), (69347, 'https://ror.org/0557kgc34', 'en', 1, 'https://ror.org/0557kgc34 Computing Center Вычислительный центр'), (69348, 'https://ror.org/0557n0d79', 'en', 1, 'https://ror.org/0557n0d79 The Association For Korean Law Of Property 한국 법상 협회'), (69349, 'https://ror.org/05582kr93', 'no_lang_code', 1, 'https://ror.org/05582kr93 Analog Devices (Ireland)'), (69350, 'https://ror.org/0559jvv76', 'no_lang_code', 1, 'https://ror.org/0559jvv76 Tango Telecom (Ireland)'), (69351, 'https://ror.org/055ar4y96', 'no_lang_code', 1, 'https://ror.org/055ar4y96 Dongfeng Motor Group (China)'), (69352, 'https://ror.org/055be5309', 'en', 1, 'https://ror.org/055be5309 Enshi Tujia and Miao Autonomous Prefecture Academy of Agricultural Sciences 恩施土家族苗族自治州农业科学院'), (69353, 'https://ror.org/055bsnv14', 'no_lang_code', 1, 'https://ror.org/055bsnv14 Clean Energy Prospector (United Kingdom)'), (69354, 'https://ror.org/055e0ds53', 'en', 1, 'https://ror.org/055e0ds53 Electoral Commission'), (69355, 'https://ror.org/055ehs005', 'no_lang_code', 1, 'https://ror.org/055ehs005 Bundesverbandes Keramische Industrie (Germany)'), (69356, 'https://ror.org/055f13495', 'en', 1, 'https://ror.org/055f13495 Guizhou Electric Power Design and Research Institute 贵州电力设计研究院'), (69357, 'https://ror.org/055f7gc82', 'no_lang_code', 1, 'https://ror.org/055f7gc82 Dragonchip (China)'), (69358, 'https://ror.org/055ff4r96', 'no_lang_code', 1, 'https://ror.org/055ff4r96 AutoTrip (United Kingdom)'), (69359, 'https://ror.org/055gtbq27', 'en', 1, 'https://ror.org/055gtbq27 Tennessee Emergency Management Agency'), (69360, 'https://ror.org/055h6f484', 'no_lang_code', 1, 'https://ror.org/055h6f484 Tekno Surgical (Ireland)'), (69361, 'https://ror.org/055jj1035', 'no_lang_code', 1, 'https://ror.org/055jj1035 Tile Films (Ireland)'), (69362, 'https://ror.org/055n6t614', 'en', 1, 'https://ror.org/055n6t614 City of Dublin Skin and Cancer Hospital Charity'), (69363, 'https://ror.org/055q8rh54', 'en', 1, 'https://ror.org/055q8rh54 Institute of Information Science Inštitut za informacijske znanosti'), (69364, 'https://ror.org/055qdna38', 'en', 1, 'https://ror.org/055qdna38 Shanghai Harbour Engineering Design & Research Institute 上海海湾工程设计研究院'), (69365, 'https://ror.org/055sgbp02', 'en', 1, 'https://ror.org/055sgbp02 Live Art Development Agency'), (69366, 'https://ror.org/055vcsm02', 'no_lang_code', 1, 'https://ror.org/055vcsm02 Risun (China) 旭陽集團'), (69367, 'https://ror.org/055yqn475', 'en', 1, 'https://ror.org/055yqn475 Yonsei Proteome Research Center 연세 프로테옴 연구원 단백체 분석'), (69368, 'https://ror.org/055zc7842', 'en', 1, 'https://ror.org/055zc7842 Rockaway Waterfront Alliance'), (69369, 'https://ror.org/0560xy784', 'en', 1, 'https://ror.org/0560xy784 The Korea English Education Society 한국 영어 교육 학회'), (69370, 'https://ror.org/05610bc49', 'en', 1, 'https://ror.org/05610bc49 Partnerships in Environmental Management for the Seas of East Asia'), (69371, 'https://ror.org/0564cmz62', 'no_lang_code', 1, 'https://ror.org/0564cmz62 MCO (Ireland)'), (69372, 'https://ror.org/0564t2w16', 'no_lang_code', 1, 'https://ror.org/0564t2w16 BG Research (United Kingdom)'), (69373, 'https://ror.org/0564x6103', 'en', 1, 'https://ror.org/0564x6103 Council of Scientific Society Presidents'), (69374, 'https://ror.org/05673tf87', 'en', 1, 'https://ror.org/05673tf87 Irkutsk Antiplague Research Institute of Siberia and Far East Иркутский научно-исследовательский противочумный институт Сибири и Дальнего Востока'), (69375, 'https://ror.org/0567jx130', 'en', 1, 'https://ror.org/0567jx130 Combined Arms Academy of the Armed Forces of the Russian Federation Общевойсковая академия Вооружённых Сил Российской Федерации'), (69376, 'https://ror.org/056840095', 'en', 1, 'https://ror.org/056840095 Korea Economic Research Institute 한국경제연구원'), (69377, 'https://ror.org/0569x1756', 'en', 1, 'https://ror.org/0569x1756 Guangdong Provincial Architectural Design and Research Institute 广东省建筑设计研究院'), (69378, 'https://ror.org/056acjt11', 'no_lang_code', 1, 'https://ror.org/056acjt11 Research Institute of Technology (Russia)'), (69379, 'https://ror.org/056ct2144', 'en', 1, 'https://ror.org/056ct2144 Federal Scientific Center for the Rehabilitation of the Disabled by G.A. Albrecht of the Ministry of Labor and Social Protection of the Russian Federation'), (69380, 'https://ror.org/056eew379', 'no_lang_code', 1, 'https://ror.org/056eew379 Shanghai Micro Electronics Equipment (China) 上海微电子装备'), (69381, 'https://ror.org/056k8rb32', 'no_lang_code', 1, 'https://ror.org/056k8rb32 OGT Amenity (Ireland)'), (69382, 'https://ror.org/056kqr545', 'fr', 1, 'https://ror.org/056kqr545 Agence Locale de l''Energie et du Climat de la Métropole de Lyon'), (69383, 'https://ror.org/056n9vg63', 'en', 1, 'https://ror.org/056n9vg63 Research Institute Ekran Научно-исследовательский институт'), (69384, 'https://ror.org/056pc6w59', 'en', 1, 'https://ror.org/056pc6w59 Guilin Electrical Equipment Research Institute 桂林电器科学研究院有限'), (69385, 'https://ror.org/056q45x47', 'en', 1, 'https://ror.org/056q45x47 Korea Bio Polytechnic College 한국폴리텍바이오대학'), (69386, 'https://ror.org/056s60883', 'en', 1, 'https://ror.org/056s60883 Hong Kong Hide & Leather Traders'' Association 香港皮業商會有限公司'), (69387, 'https://ror.org/056sbyc67', 'en', 1, 'https://ror.org/056sbyc67 Bristol Robotics Laboratory'), (69388, 'https://ror.org/056te6132', 'en', 1, 'https://ror.org/056te6132 Ceemet'), (69389, 'https://ror.org/056thpa20', 'en', 1, 'https://ror.org/056thpa20 International Drug Development'), (69390, 'https://ror.org/056tm2d87', 'en', 1, 'https://ror.org/056tm2d87 Suzhou Electrical Apparatus Science Academy 苏州电器科学研究院股份有限公司'), (69391, 'https://ror.org/056v3aw45', 'en', 1, 'https://ror.org/056v3aw45 Korean Economic and Business Association 한국경제통상학회'), (69392, 'https://ror.org/056wwd598', 'ga', 1, 'https://ror.org/056wwd598 DeafHear'), (69393, 'https://ror.org/056yydt13', 'no_lang_code', 1, 'https://ror.org/056yydt13 ZTT (China) 江苏中天科技股份有限公司'), (69394, 'https://ror.org/056zvrd21', 'en', 1, 'https://ror.org/056zvrd21 The Korean Criminal Law Association 한국 형법 협회'), (69395, 'https://ror.org/05763y646', 'en', 1, 'https://ror.org/05763y646 General Directorate for National Roads and Motorways Generalna Dyrekcja Dróg Krajowych i Autostrad'), (69396, 'https://ror.org/0576zak10', 'no_lang_code', 1, 'https://ror.org/0576zak10 Intelligent Health (United Kingdom)'), (69397, 'https://ror.org/0577v7f42', 'en', 1, 'https://ror.org/0577v7f42 Crop Health and Protection'), (69398, 'https://ror.org/0578b5015', 'no_lang_code', 1, 'https://ror.org/0578b5015 Indestructible Paint (United Kingdom)'), (69399, 'https://ror.org/057dje809', 'en', 1, 'https://ror.org/057dje809 KBP Instrument Design Bureau Конструкторское бюро приборостроения им. академика А. Г. Шипунова'), (69400, 'https://ror.org/057h57w33', 'en', 1, 'https://ror.org/057h57w33 Qiqihar Institute of Engineering 齐齐哈尔工程学院'), (69401, 'https://ror.org/057hps485', 'no_lang_code', 1, 'https://ror.org/057hps485 Atpath Technologies (China)'), (69402, 'https://ror.org/057hqh897', 'no_lang_code', 1, 'https://ror.org/057hqh897 Lundbeck (South Korea) 한국룬드벡'), (69403, 'https://ror.org/057hzyr27', 'en', 1, 'https://ror.org/057hzyr27 Korean Society For Philosophy East-West 한국동서철학회'), (69404, 'https://ror.org/057kr8834', 'no_lang_code', 1, 'https://ror.org/057kr8834 JIT Solutions (Poland)'), (69405, 'https://ror.org/057kvja37', 'tr', 1, 'https://ror.org/057kvja37 TUBITAK BILGEM, TÜBİTAK Bilişim ve Bilgi Güvenliği İleri Teknolojiler Araştırma Merkezi'), (69406, 'https://ror.org/057mvkb89', 'en', 1, 'https://ror.org/057mvkb89 Agência de Empreendedores Sociais Social Entrepreneurs Agency'), (69407, 'https://ror.org/057n4jt40', 'en', 1, 'https://ror.org/057n4jt40 All-Russian Scientific Research Institute for Irrigated Agriculture'), (69408, 'https://ror.org/057najf71', 'no_lang_code', 1, 'https://ror.org/057najf71 Kahramaa (Qatar)'), (69409, 'https://ror.org/057ngkn52', 'no_lang_code', 1, 'https://ror.org/057ngkn52 Xianyang Research and Design Institute of Ceramics (China) 咸阳陶瓷研究设计院有限公司'), (69410, 'https://ror.org/057nkx415', 'no_lang_code', 1, 'https://ror.org/057nkx415 Historic Futures (United Kingdom)'), (69411, 'https://ror.org/057q47t40', 'en', 1, 'https://ror.org/057q47t40 Jeju Regional Business Evaluation Foundation 제주 지역 사업 평가 재단'), (69412, 'https://ror.org/057qdm128', 'no_lang_code', 1, 'https://ror.org/057qdm128 LendingClub (United States)'), (69413, 'https://ror.org/057r0bm85', 'en', 1, 'https://ror.org/057r0bm85 Zhejiang Sorfa Life Science Research 浙江硕华生命科学研究股份有限公司'), (69414, 'https://ror.org/057rgnq16', 'en', 1, 'https://ror.org/057rgnq16 Aberdeenshire Council'), (69415, 'https://ror.org/057t9t071', 'en', 1, 'https://ror.org/057t9t071 Kyung-in Women''s University 경 여자 대학교'), (69416, 'https://ror.org/057tmwv53', 'no_lang_code', 1, 'https://ror.org/057tmwv53 Comet (Russia) комета'), (69417, 'https://ror.org/057wj6q87', 'en', 1, 'https://ror.org/057wj6q87 East Renfrewshire Council'), (69418, 'https://ror.org/057wrv854', 'en', 1, 'https://ror.org/057wrv854 International Minerals Innovation Institute'), (69419, 'https://ror.org/057z7x668', 'no_lang_code', 1, 'https://ror.org/057z7x668 Dialog Semiconductor (United Kingdom)'), (69420, 'https://ror.org/057zxk877', 'no_lang_code', 1, 'https://ror.org/057zxk877 Tianjin Aolian Special Steel Structure Installation Engineering (China) 天津市奥联特钢结构安装工程有限公司'), (69421, 'https://ror.org/0580q1236', 'en', 1, 'https://ror.org/0580q1236 Alaska Department of Commerce, Community and Economic Development'), (69422, 'https://ror.org/0582kjq67', 'no_lang_code', 1, 'https://ror.org/0582kjq67 Antikor (United Kingdom)'), (69423, 'https://ror.org/0587yj467', 'no_lang_code', 1, 'https://ror.org/0587yj467 MicroGen Biotech (Ireland)'), (69424, 'https://ror.org/0588fx246', 'no_lang_code', 1, 'https://ror.org/0588fx246 Rongsheng Petrochemical (China) 荣盛石化股份有限公司'), (69425, 'https://ror.org/058atjp47', 'en', 1, 'https://ror.org/058atjp47 Ministry of Energy of the Republic of Bulgaria Министерство на енергетиката на Република България'), (69426, 'https://ror.org/058awzy03', 'en', 1, 'https://ror.org/058awzy03 Scientific Research Institute of Flax Mechanization Всероссийский научно-исследовательский, проектно-технологический институт механизации возделывания льна'), (69427, 'https://ror.org/058bqqp10', 'no_lang_code', 1, 'https://ror.org/058bqqp10 Qatargas (Qatar)'), (69428, 'https://ror.org/058bqw857', 'no_lang_code', 1, 'https://ror.org/058bqw857 Sam Chun Dang Pharm (South Korea)'), (69429, 'https://ror.org/058ddgs73', 'en', 1, 'https://ror.org/058ddgs73 Center for Art and Media Karlsruhe Zentrum für Kunst und Medien'), (69430, 'https://ror.org/058fm6761', 'en', 1, 'https://ror.org/058fm6761 Ministrstvo za Obrambo Republike Slovenije Ministry of Defence'), (69431, 'https://ror.org/058h5ns38', 'fr', 1, 'https://ror.org/058h5ns38 Cancéropôle Grand Sud-Ouest'), (69432, 'https://ror.org/058jpya11', 'fr', 1, 'https://ror.org/058jpya11 Société Québécoise d''Hypertension Artérielle'), (69433, 'https://ror.org/058n0ks92', 'ro', 1, 'https://ror.org/058n0ks92 Institutul Naţional de Cercetare-Dezvoltare pentru Mecatronică si Tehnica Masurării'), (69434, 'https://ror.org/058qcqm21', 'en', 1, 'https://ror.org/058qcqm21 Early Intervention Foundation'), (69435, 'https://ror.org/058snr381', 'fr', 1, 'https://ror.org/058snr381 Observatoire Régional de la Santé et du Social'), (69436, 'https://ror.org/058stpv70', 'no_lang_code', 1, 'https://ror.org/058stpv70 Huainan Mining Industry Group (China) 淮南矿业集团'), (69437, 'https://ror.org/058t64323', 'pt', 1, 'https://ror.org/058t64323 CSEM'), (69438, 'https://ror.org/058t7m662', 'en', 1, 'https://ror.org/058t7m662 Ivanovo State Polytechnic University Ивановского государственного политехнического университета'), (69439, 'https://ror.org/058ttvb80', 'no_lang_code', 1, 'https://ror.org/058ttvb80 Goodbaby (China) 好孩子国际控股有限公司'), (69440, 'https://ror.org/058v1h521', 'no_lang_code', 1, 'https://ror.org/058v1h521 Cloudnine'), (69441, 'https://ror.org/058v8m457', 'no_lang_code', 1, 'https://ror.org/058v8m457 Exergyn (Ireland)'), (69442, 'https://ror.org/058x40223', 'no_lang_code', 1, 'https://ror.org/058x40223 Pure Storage (United States)'), (69443, 'https://ror.org/058y6z954', 'no_lang_code', 1, 'https://ror.org/058y6z954 Exagenica (United Kingdom)'), (69444, 'https://ror.org/058yas979', 'en', 1, 'https://ror.org/058yas979 Technology Management Economics Society 기술경영경제학회'), (69445, 'https://ror.org/0590nw084', 'no_lang_code', 1, 'https://ror.org/0590nw084 Crossing the Line (Ireland)'), (69446, 'https://ror.org/0593bs311', 'en', 1, 'https://ror.org/0593bs311 Vernadsky National Library of Ukraine Національна бібліотека України імені В. І. Вернадського'), (69447, 'https://ror.org/05941t046', 'en', 1, 'https://ror.org/05941t046 Cymdeithas Llywodraeth Leol Cymru Welsh Local Government Association'), (69448, 'https://ror.org/0594xf543', 'no_lang_code', 1, 'https://ror.org/0594xf543 Agrola (Poland)'), (69449, 'https://ror.org/0597afe55', 'no_lang_code', 1, 'https://ror.org/0597afe55 BIOCAD (Russia)'), (69450, 'https://ror.org/0597zww19', 'en', 1, 'https://ror.org/0597zww19 African Literature Association'), (69451, 'https://ror.org/05998tm92', 'en', 1, 'https://ror.org/05998tm92 Fujian Inspection and Research Institute for Product Quality 福建省产品质量检验研究院'), (69452, 'https://ror.org/0599fy865', 'en', 1, 'https://ror.org/0599fy865 Pan-Korea English Teachers Association 팬코리아영어교육학회'), (69453, 'https://ror.org/059aht397', 'en', 1, 'https://ror.org/059aht397 Institute of Oil and Gas Problems of the Siberian Branch of the RAS Институт проблем нефти и газа Сибирского отделения Российской академии наук'), (69454, 'https://ror.org/059ccn340', 'en', 1, 'https://ror.org/059ccn340 Korea International Accounting Association 한국국제회계학회'), (69455, 'https://ror.org/059d8kr95', 'en', 1, 'https://ror.org/059d8kr95 Centre for Family Medicine'), (69456, 'https://ror.org/059fafs66', 'no_lang_code', 1, 'https://ror.org/059fafs66 Allergan (South Korea) 엘러간'), (69457, 'https://ror.org/059jjdh21', 'en', 1, 'https://ror.org/059jjdh21 Nanjing Boiler and Pressure Vessel Inspection Institute 南京市锅炉压力容器检验研究院'), (69458, 'https://ror.org/059kpjd26', 'en', 1, 'https://ror.org/059kpjd26 Greater Shankill Partnership'), (69459, 'https://ror.org/059mggq50', 'en', 1, 'https://ror.org/059mggq50 Hunan Coal Science Research Institute 湖南省煤炭科学研究院有限公司'), (69460, 'https://ror.org/059n2nf73', 'no_lang_code', 1, 'https://ror.org/059n2nf73 Hong Kong RFID (China)'), (69461, 'https://ror.org/059p3be55', 'en', 1, 'https://ror.org/059p3be55 All-Russian Research and Design Institute of Hard Alloys and Refractory Metals Всероссийский научно-исследовательский и проектный институт твердых сплавов и тугоплавких металлов'), (69462, 'https://ror.org/059q78r10', 'en', 1, 'https://ror.org/059q78r10 Ministry of Health'), (69463, 'https://ror.org/059rsrh95', 'en', 1, 'https://ror.org/059rsrh95 FORZA, Agency For Sustainable Development of The Carpathian Region Агентство сприяння сталому розвитку Карпатського регіону ФОРЗА'), (69464, 'https://ror.org/059s9d453', 'en', 1, 'https://ror.org/059s9d453 Liming Vocational University 黎明职业大学'), (69465, 'https://ror.org/059twtp92', 'no_lang_code', 1, 'https://ror.org/059twtp92 Entropea Labs (United Kingdom)'), (69466, 'https://ror.org/059vazt48', 'no_lang_code', 1, 'https://ror.org/059vazt48 Halo Labs (United States)'), (69467, 'https://ror.org/059vdg789', 'no_lang_code', 1, 'https://ror.org/059vdg789 nwStor (China)'), (69468, 'https://ror.org/059wdnr97', 'no_lang_code', 1, 'https://ror.org/059wdnr97 Lotus Innovative Health (China)'), (69469, 'https://ror.org/059wz2726', 'no_lang_code', 1, 'https://ror.org/059wz2726 Archipelago Technology (United Kingdom)'), (69470, 'https://ror.org/059ya5h17', 'no_lang_code', 1, 'https://ror.org/059ya5h17 Bluetomation (Poland)'), (69471, 'https://ror.org/059zjse65', 'en', 1, 'https://ror.org/059zjse65 Glasgow Housing Association'), (69472, 'https://ror.org/05a1zjh88', 'en', 1, 'https://ror.org/05a1zjh88 Korean Literature Research Society 한국문학연구학회'), (69473, 'https://ror.org/05a2wb866', 'no_lang_code', 1, 'https://ror.org/05a2wb866 Boryszew (Poland)'), (69474, 'https://ror.org/05a4qc136', 'en', 1, 'https://ror.org/05a4qc136 The Modern English Education Society'), (69475, 'https://ror.org/05a67cs45', 'en', 1, 'https://ror.org/05a67cs45 Central Council for Research in Siddha'), (69476, 'https://ror.org/05a8e5154', 'en', 1, 'https://ror.org/05a8e5154 Tianjin Academy of Environmental Sciences 天津市环境保护科学研究院'), (69477, 'https://ror.org/05aaad433', 'no_lang_code', 1, 'https://ror.org/05aaad433 Heartisans (China)'), (69478, 'https://ror.org/05aana297', 'no_lang_code', 1, 'https://ror.org/05aana297 Glory Sky Group (China)'), (69479, 'https://ror.org/05acyge75', 'no_lang_code', 1, 'https://ror.org/05acyge75 Shantou Light Industrial Machinery Factory (China) 汕头轻工机械厂有限公司'), (69480, 'https://ror.org/05ad53425', 'en', 1, 'https://ror.org/05ad53425 Maryland Department of General Services'), (69481, 'https://ror.org/05adk8w18', 'no_lang_code', 1, 'https://ror.org/05adk8w18 Kaliskie Zakłady Przemysłu Terenowego (Poland)'), (69482, 'https://ror.org/05af73403', 'no_lang_code', 1, 'https://ror.org/05af73403 Janssen (United States)'), (69483, 'https://ror.org/05agwvf41', 'en', 1, 'https://ror.org/05agwvf41 All-Union Scientific Research Institute of Woodworking Industry Всесоюзный научно-исследовательский институт деревообрабатывающей промышленности'), (69484, 'https://ror.org/05agz2w73', 'en', 1, 'https://ror.org/05agz2w73 The Korean Society of Sports Science 대한 체육 학회'), (69485, 'https://ror.org/05ajbr617', 'en', 1, 'https://ror.org/05ajbr617 Zhejiang Fashion Institute of Technology 浙江纺织服装职业技术学院'), (69486, 'https://ror.org/05apznb79', 'no_lang_code', 1, 'https://ror.org/05apznb79 Zeus Entertainment (China) 大连天神娱乐股份有限公司'), (69487, 'https://ror.org/05atyq880', 'en', 1, 'https://ror.org/05atyq880 ProPublica'), (69488, 'https://ror.org/05atzd126', 'no_lang_code', 1, 'https://ror.org/05atzd126 Joyoung (China) 九阳'), (69489, 'https://ror.org/05av4bp24', 'no_lang_code', 1, 'https://ror.org/05av4bp24 Shougang (China) 首钢集团'), (69490, 'https://ror.org/05aw74s61', 'en', 1, 'https://ror.org/05aw74s61 Commission Internationale des Examens de Conduite Automobile The International Commission for Driver Testing'), (69491, 'https://ror.org/05ay2w302', 'en', 1, 'https://ror.org/05ay2w302 Society of Korean Classical Literature Education 한국고전문학교육학회'), (69492, 'https://ror.org/05aykjy67', 'en', 1, 'https://ror.org/05aykjy67 Korea Testing Laboratory 한국 실험 연구원'), (69493, 'https://ror.org/05azkwn61', 'en', 1, 'https://ror.org/05azkwn61 National Board of Customs Tullihallitus'), (69494, 'https://ror.org/05b0gd358', 'en', 1, 'https://ror.org/05b0gd358 Detroit Rescue Mission Ministries'), (69495, 'https://ror.org/05b0zb254', 'no_lang_code', 1, 'https://ror.org/05b0zb254 Far (United Kingdom)'), (69496, 'https://ror.org/05b2nvq86', 'no_lang_code', 1, 'https://ror.org/05b2nvq86 Hotblock Onboard (France)'), (69497, 'https://ror.org/05b2ydd02', 'en', 1, 'https://ror.org/05b2ydd02 Executive Agency Maritime Administration Изпълнителна агенция "Морска Администрация"'), (69498, 'https://ror.org/05b4q6y22', 'en', 1, 'https://ror.org/05b4q6y22 Hong Kong Jewelry Manufacturers'' Association 香港珠寶製造業廠商會'), (69499, 'https://ror.org/05b4xvt53', 'no_lang_code', 1, 'https://ror.org/05b4xvt53 Wonbiogen (South Korea) 원바이오젠'), (69500, 'https://ror.org/05b7yq612', 'en', 1, 'https://ror.org/05b7yq612 Ukrainian Institute for the Design of Metallurgical Plants Украинский институт по проектированию металлургических заводов'), (69501, 'https://ror.org/05b887v59', 'no_lang_code', 1, 'https://ror.org/05b887v59 Flowgroup (United Kingdom)'), (69502, 'https://ror.org/05b9wad22', 'en', 1, 'https://ror.org/05b9wad22 Flint Institute Of Arts'), (69503, 'https://ror.org/05ba3vx21', 'en', 1, 'https://ror.org/05ba3vx21 Modern Korean Literature Assocation 한국 근대 문학회'), (69504, 'https://ror.org/05ba5yp12', 'no_lang_code', 1, 'https://ror.org/05ba5yp12 Daeduk University 대덕 대학교'), (69505, 'https://ror.org/05ban5b47', 'en', 1, 'https://ror.org/05ban5b47 Shenzhen Special Equipment Safety Inspection Institute 深圳市特种设备安全检验研究院'), (69506, 'https://ror.org/05baxg638', 'no_lang_code', 1, 'https://ror.org/05baxg638 Ningbo Putian Information Industry (China) 宁波普天信息产业'), (69507, 'https://ror.org/05bbfjb19', 'en', 1, 'https://ror.org/05bbfjb19 Balakovo Engineering and Technology Institute Балаковский инженерно-технологический институт'), (69508, 'https://ror.org/05bbfzp96', 'en', 1, 'https://ror.org/05bbfzp96 Harbin Welding Institute 哈尔滨焊接研究院有限公司'), (69509, 'https://ror.org/05bbyvt75', 'en', 1, 'https://ror.org/05bbyvt75 Shantou Ultrasonic Instrument Research Institute 汕头超声仪器研究所'), (69510, 'https://ror.org/05bcwh715', 'en', 1, 'https://ror.org/05bcwh715 Alba Trees'), (69511, 'https://ror.org/05bdngh08', 'fr', 1, 'https://ror.org/05bdngh08 ECAM-EPMI'), (69512, 'https://ror.org/05be7j249', 'no_lang_code', 1, 'https://ror.org/05be7j249 Eye Tech Care (France)'), (69513, 'https://ror.org/05bfb6c92', 'no_lang_code', 1, 'https://ror.org/05bfb6c92 Zetakey Solutions (China)'), (69514, 'https://ror.org/05bfe1413', 'no_lang_code', 1, 'https://ror.org/05bfe1413 NPO Energomash (Russia) НПО Энергомаш'), (69515, 'https://ror.org/05bfjdn05', 'en', 1, 'https://ror.org/05bfjdn05 Learning and Skills Development Agency'), (69516, 'https://ror.org/05bjekg60', 'no_lang_code', 1, 'https://ror.org/05bjekg60 Bristol Water (United Kingdom)'), (69517, 'https://ror.org/05bjfv051', 'no_lang_code', 1, 'https://ror.org/05bjfv051 Changshu Switch Manufacturing (China) 常熟开关制造有限公司'), (69518, 'https://ror.org/05bk3hg51', 'en', 1, 'https://ror.org/05bk3hg51 Montana Department of Labor & Industry'), (69519, 'https://ror.org/05bnagb09', 'no_lang_code', 1, 'https://ror.org/05bnagb09 All-Russian Research and Design Institute of Electric Locomotive Industry (Russia) Всероссийский научно-исследовательский и проектно-конструкторский институт электровозостроения'), (69520, 'https://ror.org/05bqqpf42', 'no_lang_code', 1, 'https://ror.org/05bqqpf42 Ambarella (United States)'), (69521, 'https://ror.org/05bqsm828', 'no_lang_code', 1, 'https://ror.org/05bqsm828 Cambridge Nanolitic (United Kingdom)'), (69522, 'https://ror.org/05bshbg41', 'en', 1, 'https://ror.org/05bshbg41 The Korean Society of Special Education 한국특수교육학회'), (69523, 'https://ror.org/05bsykf80', 'no_lang_code', 1, 'https://ror.org/05bsykf80 Hyperdrive Innovation (United Kingdom)'), (69524, 'https://ror.org/05bwm9830', 'en', 1, 'https://ror.org/05bwm9830 Telegraph Museum'), (69525, 'https://ror.org/05bx22c71', 'no_lang_code', 1, 'https://ror.org/05bx22c71 Intel (Poland)'), (69526, 'https://ror.org/05bxe2n40', 'no_lang_code', 1, 'https://ror.org/05bxe2n40 Pilot Photonics (Ireland)'), (69527, 'https://ror.org/05byjjz14', 'en', 1, 'https://ror.org/05byjjz14 Ural Scientific Research Veterinary Institute Уральский научно-исследовательский ветеринарный институт'), (69528, 'https://ror.org/05bywcp64', 'en', 1, 'https://ror.org/05bywcp64 Austrian Centre for Electron Microscopy and Nanoanalysis'), (69529, 'https://ror.org/05bz3n751', 'en', 1, 'https://ror.org/05bz3n751 Fighting Blindness'), (69530, 'https://ror.org/05c1vs952', 'en', 1, 'https://ror.org/05c1vs952 Open Cyber University of Korea 한국열린사이버대학교'), (69531, 'https://ror.org/05c2g3729', 'en', 1, 'https://ror.org/05c2g3729 Ministarstvo vanjskih poslova Ministarstvo vanjskih poslova Ministry of Foreign Affairs Министарство иностраних послова'), (69532, 'https://ror.org/05c45t605', 'en', 1, 'https://ror.org/05c45t605 Internationale Lignin-Institut The International Lignin Institute'), (69533, 'https://ror.org/05c4ffc05', 'en', 1, 'https://ror.org/05c4ffc05 Lancashire Fire and Rescue Service'), (69534, 'https://ror.org/05c658986', 'no_lang_code', 1, 'https://ror.org/05c658986 Jeju TechnoPark 제주테크노파크'), (69535, 'https://ror.org/05cb67q54', 'no_lang_code', 1, 'https://ror.org/05cb67q54 Anshar Studios (Poland)'), (69536, 'https://ror.org/05cbc2019', 'no_lang_code', 1, 'https://ror.org/05cbc2019 Al-Wataniya Concrete (Qatar)'), (69537, 'https://ror.org/05cc0x492', 'no_lang_code', 1, 'https://ror.org/05cc0x492 Hewlett Packard Enterprise (Ireland)'), (69538, 'https://ror.org/05cc6ax93', 'en', 1, 'https://ror.org/05cc6ax93 American College of Theriogenologists'), (69539, 'https://ror.org/05cctmc18', 'en', 1, 'https://ror.org/05cctmc18 Institute of Transport and Communications Институт по транспорт и комуникации'), (69540, 'https://ror.org/05cdfm144', 'it', 1, 'https://ror.org/05cdfm144 Istituto di Cibernetica “Eduardo Caianiello”'), (69541, 'https://ror.org/05cdh3h43', 'en', 1, 'https://ror.org/05cdh3h43 The Korean Association of General Education 대한 교육 총회'), (69542, 'https://ror.org/05cendc56', 'en', 1, 'https://ror.org/05cendc56 East Baton Rouge Parish School System'), (69543, 'https://ror.org/05ceqm842', 'no_lang_code', 1, 'https://ror.org/05ceqm842 CNEX (China)'), (69544, 'https://ror.org/05cf80b72', 'en', 1, 'https://ror.org/05cf80b72 Cochrane'), (69545, 'https://ror.org/05cg6gz18', 'no_lang_code', 1, 'https://ror.org/05cg6gz18 Ibex Innovations (United Kingdom)'), (69546, 'https://ror.org/05cgcnt36', 'en', 1, 'https://ror.org/05cgcnt36 Saint-Vincent Hospital'), (69547, 'https://ror.org/05ch0my81', 'no_lang_code', 1, 'https://ror.org/05ch0my81 Change of Paradigm (United Kingdom)'), (69548, 'https://ror.org/05cjv8495', 'en', 1, 'https://ror.org/05cjv8495 Korea Association of Chinese Language and Literature 한국중어중문학회'), (69549, 'https://ror.org/05ck6jr09', 'de', 1, 'https://ror.org/05ck6jr09 Universum Bremen'), (69550, 'https://ror.org/05cmc6v40', 'no_lang_code', 1, 'https://ror.org/05cmc6v40 Kirloskar Hospital'), (69551, 'https://ror.org/05cmpp263', 'en', 1, 'https://ror.org/05cmpp263 Hunan Vocational College of Safety Technology 湖南安全技术职业学院'), (69552, 'https://ror.org/05cq2am04', 'no_lang_code', 1, 'https://ror.org/05cq2am04 Merck (Singapore)'), (69553, 'https://ror.org/05crdvn36', 'en', 1, 'https://ror.org/05crdvn36 Wellcome Centre for Ethics and Humanities'), (69554, 'https://ror.org/05cv5pe55', 'en', 1, 'https://ror.org/05cv5pe55 Fujian Fisheries Research Institute 福建省水产研究所'), (69555, 'https://ror.org/05cvya303', 'en', 1, 'https://ror.org/05cvya303 Harbin FRP Research Institute 哈尔滨玻璃钢研究院'), (69556, 'https://ror.org/05cx42j02', 'en', 1, 'https://ror.org/05cx42j02 Korea University of International Studies 한반도국제대학원대학교'), (69557, 'https://ror.org/05cx6qq72', 'en', 1, 'https://ror.org/05cx6qq72 La Société des obstétriciens et gynécologues du Canada The Society of Obstetricians and Gynaecologists of Canada'), (69558, 'https://ror.org/05cxhgh47', 'en', 1, 'https://ror.org/05cxhgh47 China Aircraft Services Limited 中國飛機服務有限公司'), (69559, 'https://ror.org/05d0pa414', 'en', 1, 'https://ror.org/05d0pa414 Bundesverband Solarwirtschaft German Solar Association'), (69560, 'https://ror.org/05d2jmv32', 'en', 1, 'https://ror.org/05d2jmv32 Institute of Health Studies and Rehabilitation'), (69561, 'https://ror.org/05d34xs41', 'en', 1, 'https://ror.org/05d34xs41 The Korean Association for Multicultural Education 한국 다문화 교육 협회'), (69562, 'https://ror.org/05d5kcc69', 'en', 1, 'https://ror.org/05d5kcc69 Jiangxi College of Applied Technology 江西应用技术职业学院'), (69563, 'https://ror.org/05d5mtz58', 'no_lang_code', 1, 'https://ror.org/05d5mtz58 Hansol Chemical (South Korea) 한솔케미칼'), (69564, 'https://ror.org/05d5yxq17', 'no_lang_code', 1, 'https://ror.org/05d5yxq17 Bayer (China) 拜耳中国'), (69565, 'https://ror.org/05d6m6x98', 'en', 1, 'https://ror.org/05d6m6x98 Kaluga Research Institute of Telemechanical Devices Калужский научно-исследовательский институт телемеханических устройств'), (69566, 'https://ror.org/05d8tdk47', 'en', 1, 'https://ror.org/05d8tdk47 Doha International Center for Interfaith Dialogue مركز الدوحة الدولي لحوار الأديان'), (69567, 'https://ror.org/05d8z4d22', 'en', 1, 'https://ror.org/05d8z4d22 PHS Community Services Society'), (69568, 'https://ror.org/05damwn69', 'en', 1, 'https://ror.org/05damwn69 Naval Academy named after Admiral of the Fleet of the Soviet Union NG Kuznetsov Морская академия им. Адмирала флота Советского Союза Н. Г. Кузнецов'), (69569, 'https://ror.org/05datqy35', 'en', 1, 'https://ror.org/05datqy35 Changzhou City Planning and Design Institute 常州市规划设计院'), (69570, 'https://ror.org/05datya05', 'en', 1, 'https://ror.org/05datya05 Hunan Institute of Energy Storage Materials and Devices 湖南省储能材料与器件研究所'), (69571, 'https://ror.org/05db7s640', 'en', 1, 'https://ror.org/05db7s640 Korean Accounting Association 한국회계학회'), (69572, 'https://ror.org/05dbddb11', 'en', 1, 'https://ror.org/05dbddb11 Northern Cheyenne Tribal Board of Health'), (69573, 'https://ror.org/05dbmr667', 'en', 1, 'https://ror.org/05dbmr667 Entidade de Serviços Partilhados da Administração Pública Government Shared Services Entity'), (69574, 'https://ror.org/05dec7653', 'en', 1, 'https://ror.org/05dec7653 Children in Scotland'), (69575, 'https://ror.org/05dhs6t85', 'en', 1, 'https://ror.org/05dhs6t85 Krasnodar Higher Military School named after General of the Army S. Shtemenko Краснодарское высшее военное училище имени генерала армии С.М.Штеменко'), (69576, 'https://ror.org/05dk70562', 'en', 1, 'https://ror.org/05dk70562 Scientific and Research Institute Voskhod НИИ Восход'), (69577, 'https://ror.org/05dm7fw62', 'no_lang_code', 1, 'https://ror.org/05dm7fw62 Katcon (Poland)'), (69578, 'https://ror.org/05dng9k37', 'no_lang_code', 1, 'https://ror.org/05dng9k37 NAURA (China) 北方华创'), (69579, 'https://ror.org/05drjse03', 'no_lang_code', 1, 'https://ror.org/05drjse03 Thermionix Energy (United Kingdom)'); INSERT INTO `rors` VALUES (69580, 'https://ror.org/05dtnxd20', 'en', 1, 'https://ror.org/05dtnxd20 Israel Olive Oil Board'), (69581, 'https://ror.org/05dv2rg34', 'no_lang_code', 1, 'https://ror.org/05dv2rg34 2P-Info (Poland)'), (69582, 'https://ror.org/05dw07152', 'no_lang_code', 1, 'https://ror.org/05dw07152 Novo Nordisk (India)'), (69583, 'https://ror.org/05dx52749', 'en', 1, 'https://ror.org/05dx52749 Ministry of Health and Wellness'), (69584, 'https://ror.org/05dzk5241', 'en', 1, 'https://ror.org/05dzk5241 Bern Economic Development Agency Standortförderung Kanton Bern'), (69585, 'https://ror.org/05e0we980', 'no_lang_code', 1, 'https://ror.org/05e0we980 Good Homes Alliance (United Kingdom)'), (69586, 'https://ror.org/05e189971', 'en', 1, 'https://ror.org/05e189971 Heilongjiang Vocational College of Art 黑龙江艺术职业学院'), (69587, 'https://ror.org/05e2j7v98', 'en', 1, 'https://ror.org/05e2j7v98 The Modern English Society of Korea 현대 한국 영어 학회'), (69588, 'https://ror.org/05e59pk11', 'no_lang_code', 1, 'https://ror.org/05e59pk11 Green Tomato (China)'), (69589, 'https://ror.org/05e5vsw78', 'no_lang_code', 1, 'https://ror.org/05e5vsw78 Lukoil (Russia) История'), (69590, 'https://ror.org/05e5xw908', 'no_lang_code', 1, 'https://ror.org/05e5xw908 Advanced Digital Innovation (United Kingdom)'), (69591, 'https://ror.org/05e6vta90', 'no_lang_code', 1, 'https://ror.org/05e6vta90 Cypralis (United Kingdom)'), (69592, 'https://ror.org/05e7fdz72', 'no_lang_code', 1, 'https://ror.org/05e7fdz72 Futuregov (United Kingdom)'), (69593, 'https://ror.org/05e81p556', 'en', 1, 'https://ror.org/05e81p556 Korea Corporate Education Center 한국기업교육센터'), (69594, 'https://ror.org/05e8j1012', 'en', 1, 'https://ror.org/05e8j1012 The Modern English Drama Association of Korea 현대 한국 연극 학회'), (69595, 'https://ror.org/05e91m220', 'no_lang_code', 1, 'https://ror.org/05e91m220 NC bit (South Korea)'), (69596, 'https://ror.org/05e948p44', 'en', 1, 'https://ror.org/05e948p44 Native Mental Health Association of Canada'), (69597, 'https://ror.org/05e9zkt34', 'en', 1, 'https://ror.org/05e9zkt34 Freshfields Bruckhaus Deringer'), (69598, 'https://ror.org/05eaeap32', 'en', 1, 'https://ror.org/05eaeap32 Korean Speech-Language & Hearing Association'), (69599, 'https://ror.org/05ec5ky31', 'no_lang_code', 1, 'https://ror.org/05ec5ky31 Eternal East Group (China)'), (69600, 'https://ror.org/05ecd4168', 'no_lang_code', 1, 'https://ror.org/05ecd4168 Chongqing Electromechanical Holdings (China) 重庆机电控股'), (69601, 'https://ror.org/05ee18g42', 'en', 1, 'https://ror.org/05ee18g42 Lionra na hÉireann um Chomhionanns Transinscne Transgender Equality Network Ireland'), (69602, 'https://ror.org/05eg09m10', 'en', 1, 'https://ror.org/05eg09m10 Fujian Province Science and Technology Association 福建省科学技术协会'), (69603, 'https://ror.org/05eg7b102', 'no_lang_code', 1, 'https://ror.org/05eg7b102 BeoCare (United States)'), (69604, 'https://ror.org/05egxdg81', 'en', 1, 'https://ror.org/05egxdg81 Institute of Advanced Manufacturing Technology'), (69605, 'https://ror.org/05egxm427', 'no_lang_code', 1, 'https://ror.org/05egxm427 +H2O (Poland)'), (69606, 'https://ror.org/05es75p31', 'en', 1, 'https://ror.org/05es75p31 Korea Environmental Policy and Administration Society 한국 환경 정책 관리 학회'), (69607, 'https://ror.org/05espyj63', 'en', 1, 'https://ror.org/05espyj63 Irish Human Rights and Equality Commission'), (69608, 'https://ror.org/05etjgx39', 'en', 1, 'https://ror.org/05etjgx39 Council for International Exchange of Scholars'), (69609, 'https://ror.org/05etzsm06', 'en', 1, 'https://ror.org/05etzsm06 Shenzhen Academy of Aerospace Technology 深圳航天科技研究院'), (69610, 'https://ror.org/05evttw71', 'es', 1, 'https://ror.org/05evttw71 Ministerio de Salud - Provincia de Buenos Aires'), (69611, 'https://ror.org/05ez11m68', 'en', 1, 'https://ror.org/05ez11m68 Kahoolawe Island Reserve Commission'), (69612, 'https://ror.org/05f399j69', 'en', 1, 'https://ror.org/05f399j69 Zhejiang Metallurgical Research Institute 浙江冶金研究院'), (69613, 'https://ror.org/05f6z3f65', 'no_lang_code', 1, 'https://ror.org/05f6z3f65 Spiretronic (United States)'), (69614, 'https://ror.org/05f71tw16', 'no_lang_code', 1, 'https://ror.org/05f71tw16 Ipsos (United Kingdom)'), (69615, 'https://ror.org/05f7d9x89', 'en', 1, 'https://ror.org/05f7d9x89 NYC H2O'), (69616, 'https://ror.org/05f96jg21', 'it', 1, 'https://ror.org/05f96jg21 PromoFirenze, PromoFirenze Azienda Speciale della Camera di Commercio di Firenze'), (69617, 'https://ror.org/05far8k50', 'en', 1, 'https://ror.org/05far8k50 The French Society of Korea 한국프랑스학회'), (69618, 'https://ror.org/05fbfky85', 'en', 1, 'https://ror.org/05fbfky85 Sichuan Dongpo China Kimchi Industrial Technology Research Institute 四川东坡中国泡菜产业技术研究院是应泡'), (69619, 'https://ror.org/05fc6mp70', 'en', 1, 'https://ror.org/05fc6mp70 General Directorate of Forestry ORMAN GENEL MÜDÜRLÜĞÜ'), (69620, 'https://ror.org/05fd8mt79', 'no_lang_code', 1, 'https://ror.org/05fd8mt79 Casale (Switzerland)'), (69621, 'https://ror.org/05fg5ca88', 'no', 1, 'https://ror.org/05fg5ca88 Vest-Agder fylkeskommune'), (69622, 'https://ror.org/05fgdse54', 'en', 1, 'https://ror.org/05fgdse54 Korea Association for Nondestructive Testing 한국 비파괴 검사 협회'), (69623, 'https://ror.org/05fhdzx69', 'en', 1, 'https://ror.org/05fhdzx69 Federal Scientific Agroengineering Center VIM Федеральное государственное бюджетное научное учреждение "Федеральный научный агроинженерный центр ВИМ"'), (69624, 'https://ror.org/05fhjra85', 'en', 1, 'https://ror.org/05fhjra85 Ailtearachd is Dealbhadh na h-Alba Architecture and Design Scotland'), (69625, 'https://ror.org/05fj2by39', 'en', 1, 'https://ror.org/05fj2by39 Cairnmillar Institute'), (69626, 'https://ror.org/05fn69a96', 'en', 1, 'https://ror.org/05fn69a96 Irish Equine Centre'), (69627, 'https://ror.org/05ft43x45', 'no_lang_code', 1, 'https://ror.org/05ft43x45 Themis (India)'), (69628, 'https://ror.org/05fxdte78', 'no_lang_code', 1, 'https://ror.org/05fxdte78 Ceva Animal Health (United Kingdom)'), (69629, 'https://ror.org/05fyggb33', 'no_lang_code', 1, 'https://ror.org/05fyggb33 Research Institute VOLGA (Russia) НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ «ВОЛГА»'), (69630, 'https://ror.org/05fz3xt27', 'en', 1, 'https://ror.org/05fz3xt27 Institute of Polymer Materials and Technologies Институт физиологии растений, генетики и биоинженерии'), (69631, 'https://ror.org/05g0b2873', 'no_lang_code', 1, 'https://ror.org/05g0b2873 Cogent (United Kingdom)'), (69632, 'https://ror.org/05g0va229', 'no_lang_code', 1, 'https://ror.org/05g0va229 Hana Pharm (South Korea) 하나제약주식회사'), (69633, 'https://ror.org/05g1fka72', 'de', 1, 'https://ror.org/05g1fka72 Ministerium der Deutschsprachigen Gemeinschaft'), (69634, 'https://ror.org/05g3b0q91', 'en', 1, 'https://ror.org/05g3b0q91 Kahnawake Schools Diabetes Prevention Project'), (69635, 'https://ror.org/05g7ye804', 'en', 1, 'https://ror.org/05g7ye804 Fota Wildlife Park'), (69636, 'https://ror.org/05g8xd728', 'en', 1, 'https://ror.org/05g8xd728 Jason Burges Studio'), (69637, 'https://ror.org/05g9k3k07', 'en', 1, 'https://ror.org/05g9k3k07 Nethradhama Superspeciality Eye Hospital ನೇತ್ರಧಾಮ ಸೂಪರ್ ಸ್ಪೆಶಾಲಿಟಿ ಕಣ್ಣಿನ ಆಸ್ಪತ್ರೆ'), (69638, 'https://ror.org/05gc25a42', 'no_lang_code', 1, 'https://ror.org/05gc25a42 Keyence (Japan) キーエンス'), (69639, 'https://ror.org/05gcdb333', 'no_lang_code', 1, 'https://ror.org/05gcdb333 DataTalk (United Kingdom)'), (69640, 'https://ror.org/05ge22856', 'en', 1, 'https://ror.org/05ge22856 All-Russian Research Institute of Veterinary Sanitation, Hygiene and Ecology Всероссийский научно-исследовательский институт ветеринарной санитарии, гигиены и экологии'), (69641, 'https://ror.org/05gennv44', 'en', 1, 'https://ror.org/05gennv44 Korea Service Management Society 한국서비스경영학회'), (69642, 'https://ror.org/05gfq0q56', 'no_lang_code', 1, 'https://ror.org/05gfq0q56 Global optical communication (South Korea) 글로벌광통신'), (69643, 'https://ror.org/05gftfe97', 'no_lang_code', 1, 'https://ror.org/05gftfe97 China Mobile (China) 中国移动'), (69644, 'https://ror.org/05gga8159', 'en', 1, 'https://ror.org/05gga8159 Yakut Scientific Research Institute of Agriculture Якутский научно-исследовательский институт сельского хозяйства имени М.Г. Сафронова'), (69645, 'https://ror.org/05gjb9r34', 'en', 1, 'https://ror.org/05gjb9r34 Siberian Research and Technological Institute for Processing Agricultural Products Сибирскому научно-исследовательскому институту переработки сельскохозяйственной продукции'), (69646, 'https://ror.org/05gjkvy96', 'en', 1, 'https://ror.org/05gjkvy96 Institute of Cultural Affairs'), (69647, 'https://ror.org/05gk6fr31', 'en', 1, 'https://ror.org/05gk6fr31 Traffic Management Research Institute'), (69648, 'https://ror.org/05gk7hr65', 'no_lang_code', 1, 'https://ror.org/05gk7hr65 CrystalGenomics (South Korea) 크리스탈 유전체학'), (69649, 'https://ror.org/05gkpvg94', 'en', 1, 'https://ror.org/05gkpvg94 Korean Institute of Southeast Asian Studies 사단법인 한국동남아연구소'), (69650, 'https://ror.org/05gkt5054', 'no_lang_code', 1, 'https://ror.org/05gkt5054 Agilent Technologies (Switzerland)'), (69651, 'https://ror.org/05gn27172', 'en', 1, 'https://ror.org/05gn27172 Society for Asian Philosophy in Korea 한국동양철학회'), (69652, 'https://ror.org/05gq6gs51', 'en', 1, 'https://ror.org/05gq6gs51 Korean Association for Radiation Protection 대한방사선방어학회'), (69653, 'https://ror.org/05gsrqd02', 'en', 1, 'https://ror.org/05gsrqd02 International Crisis Group'), (69654, 'https://ror.org/05gwh5f13', 'no_lang_code', 1, 'https://ror.org/05gwh5f13 Sistema (Russia)'), (69655, 'https://ror.org/05gxd5275', 'en', 1, 'https://ror.org/05gxd5275 Association Canadienne pour la Prévention du Suicide Canadian Association for Suicide Prevention'), (69656, 'https://ror.org/05h0pr162', 'fr', 1, 'https://ror.org/05h0pr162 Fédération des Commissions Scolaires du Québec'), (69657, 'https://ror.org/05h37xr68', 'en', 1, 'https://ror.org/05h37xr68 Asha Hospital'), (69658, 'https://ror.org/05h577t51', 'en', 1, 'https://ror.org/05h577t51 Korean Family Welfare Society 한국가족사회복지학회의'), (69659, 'https://ror.org/05h57he97', 'en', 1, 'https://ror.org/05h57he97 Ningbo Entry-Exit Inspection And Quarantine Bureau 宁波出入境检验检疫局'), (69660, 'https://ror.org/05h63pk13', 'en', 1, 'https://ror.org/05h63pk13 Baltic and International Maritime Council'), (69661, 'https://ror.org/05h8mcx43', 'en', 1, 'https://ror.org/05h8mcx43 Korean Association of Architectural History 건축역사학회'), (69662, 'https://ror.org/05h8w0m23', 'en', 1, 'https://ror.org/05h8w0m23 Leukaemia & Lymphoma NI'), (69663, 'https://ror.org/05h9fft46', 'en', 1, 'https://ror.org/05h9fft46 North Carolina Coalition Against Domestic Violence'), (69664, 'https://ror.org/05h9jst55', 'no_lang_code', 1, 'https://ror.org/05h9jst55 Dae Hwa Pharm (South Korea)'), (69665, 'https://ror.org/05h9ndr48', 'en', 1, 'https://ror.org/05h9ndr48 Institute Of Historic Building Conservation'), (69666, 'https://ror.org/05hadht38', 'no_lang_code', 1, 'https://ror.org/05hadht38 National Informatics Corporation (Iran) ي شرکت ملي انفورماتيک'), (69667, 'https://ror.org/05hamn538', 'en', 1, 'https://ror.org/05hamn538 Bundesanstalt für Agrarwirtschaft Federal Institute of Agricultural Economics'), (69668, 'https://ror.org/05hatgd07', 'no_lang_code', 1, 'https://ror.org/05hatgd07 Smartbay Ireland'), (69669, 'https://ror.org/05hb5sg68', 'no_lang_code', 1, 'https://ror.org/05hb5sg68 Johnson & Johnson (India) जॉन्सन आणि जॉन्सन प्रायव्हेट लिमिटेड जॉन्सन और जॉन्सन प्रायोजित लिमिटेड ಜಾನ್ಸನ್ ಮತ್ತು ಜಾನ್ಸನ್ ಪ್ರೈವೇಟ್ ಲಿಮಿಟೆಡ್'), (69670, 'https://ror.org/05hczvf86', 'no_lang_code', 1, 'https://ror.org/05hczvf86 Boehringer Ingelheim (China) 勃林格殷格翰'), (69671, 'https://ror.org/05he9zt43', 'en', 1, 'https://ror.org/05he9zt43 Korean Association for Religious Studies 한국 종교 학회'), (69672, 'https://ror.org/05hf6yg30', 'no_lang_code', 1, 'https://ror.org/05hf6yg30 Central Research Institute for Special Machinery (Russia) Центральный научно-исследовательский институт специального машиностроения'), (69673, 'https://ror.org/05hfj9732', 'en', 1, 'https://ror.org/05hfj9732 Minsk Regional Institute of Education Development Минский областной институт развития образования'), (69674, 'https://ror.org/05hfx5z17', 'en', 1, 'https://ror.org/05hfx5z17 Public Radio Exchange'), (69675, 'https://ror.org/05hjg3r73', 'en', 1, 'https://ror.org/05hjg3r73 Hong Kong Federation of Innovative Technologies and Manufacturing Industries 香港創新科技及製造業聯合總會'), (69676, 'https://ror.org/05hky6p02', 'en', 1, 'https://ror.org/05hky6p02 Institute of Atmospheric Pollution Research Istituto sull’Inquinamento Atmosferico'), (69677, 'https://ror.org/05hmph265', 'en', 1, 'https://ror.org/05hmph265 The Korean Association of Sports and Entertainment Law 한국스포츠엔터테인먼트법학회'), (69678, 'https://ror.org/05hn8j260', 'no_lang_code', 1, 'https://ror.org/05hn8j260 Administrația Porturilor Maritime Constantza Port (Romania)'), (69679, 'https://ror.org/05hnet169', 'en', 1, 'https://ror.org/05hnet169 Chennai Skin Foundation & Yesudian Research Institute'), (69680, 'https://ror.org/05hrf7s75', 'en', 1, 'https://ror.org/05hrf7s75 All-Russian State Scientific Research Institute for Control, Standardization and Certification of Veterinary Preparations Всероссийский государственный научно-исследовательский институт контроля, стандартизации и сертификации ветеринарных препаратов'), (69681, 'https://ror.org/05hrscm27', 'fr', 1, 'https://ror.org/05hrscm27 CRIIRAD, Commission de Recherche et d’Information Indépendantes sur la Radioactivité'), (69682, 'https://ror.org/05htczx02', 'no_lang_code', 1, 'https://ror.org/05htczx02 Prada (Italy)'), (69683, 'https://ror.org/05hte8b97', 'en', 1, 'https://ror.org/05hte8b97 Institute on Social Theory and Dynamics 社会理論・動態研究所'), (69684, 'https://ror.org/05hthhc05', 'en', 1, 'https://ror.org/05hthhc05 State Institute for the Design of Non-Ferrous Metallurgy Enterprises Государственный институт по проектированию предприятий цветной металлургии'), (69685, 'https://ror.org/05hwkqh71', 'no_lang_code', 1, 'https://ror.org/05hwkqh71 Frenzoo (China)'), (69686, 'https://ror.org/05hxcq922', 'en', 1, 'https://ror.org/05hxcq922 Heilongjiang Electric Power Workers University 黑龙江电力职工大学'), (69687, 'https://ror.org/05hxzkx81', 'es', 1, 'https://ror.org/05hxzkx81 Instituto Canario de Investigaciones Agrarias'), (69688, 'https://ror.org/05hzjar70', 'no_lang_code', 1, 'https://ror.org/05hzjar70 Bristol-Myers Squibb (South Korea) 브리스톨-마이어스 스큅'), (69689, 'https://ror.org/05j0ypg59', 'en', 1, 'https://ror.org/05j0ypg59 Gansu Great Wall Electrical and Electronics Engineering Research Institute 甘肃长城电工电器工程研究院'), (69690, 'https://ror.org/05j1c1r74', 'no_lang_code', 1, 'https://ror.org/05j1c1r74 Ionotec (United Kingdom)'), (69691, 'https://ror.org/05j1wft12', 'no_lang_code', 1, 'https://ror.org/05j1wft12 Taube Koret Center'), (69692, 'https://ror.org/05j26dk60', 'no_lang_code', 1, 'https://ror.org/05j26dk60 AviChina Industry & Technology (China) 中国航空科技工业股份有限公司'), (69693, 'https://ror.org/05j2cg215', 'en', 1, 'https://ror.org/05j2cg215 Cambridge Housing Society'), (69694, 'https://ror.org/05j2z6f89', 'en', 1, 'https://ror.org/05j2z6f89 Delhi State Cancer Institute'), (69695, 'https://ror.org/05j4s2c10', 'en', 1, 'https://ror.org/05j4s2c10 Northern Ireland Commissioner for Children and Young People'), (69696, 'https://ror.org/05j5wde68', 'en', 1, 'https://ror.org/05j5wde68 Eterna Massive Open Laboratory'), (69697, 'https://ror.org/05j84vd61', 'en', 1, 'https://ror.org/05j84vd61 Korean Association of Space & Environment Research 한국 우주 환경 연구 학회'), (69698, 'https://ror.org/05j88yh83', 'no_lang_code', 1, 'https://ror.org/05j88yh83 Qiagen (India)'), (69699, 'https://ror.org/05j918z43', 'en', 1, 'https://ror.org/05j918z43 Hunan Institute of Nuclear Agronomy and Space Breeding 湖南省核农学与航天育种研究所'), (69700, 'https://ror.org/05j9mt277', 'fr', 1, 'https://ror.org/05j9mt277 Réseau Solidarité Itinérance du Québec'), (69701, 'https://ror.org/05jaz3369', 'no_lang_code', 1, 'https://ror.org/05jaz3369 Indian Immunologicals (India)'), (69702, 'https://ror.org/05jbr3j48', 'no_lang_code', 1, 'https://ror.org/05jbr3j48 Lakma (Poland)'), (69703, 'https://ror.org/05jca5f53', 'en', 1, 'https://ror.org/05jca5f53 Heilongjiang Academy of Agricultural Machinery Engineering 黑龙江省农业机械工程科学研究院'), (69704, 'https://ror.org/05jct2b89', 'en', 1, 'https://ror.org/05jct2b89 Ekaterinburg Research Institute of Viral Infections Екатеринбургский НИИ вирусных инфекций'), (69705, 'https://ror.org/05jd85x98', 'en', 1, 'https://ror.org/05jd85x98 Korean Cultural Dynamics 동양문화연구원'), (69706, 'https://ror.org/05jdqs103', 'en', 1, 'https://ror.org/05jdqs103 Interior Health'), (69707, 'https://ror.org/05jg7y437', 'no_lang_code', 1, 'https://ror.org/05jg7y437 Desktop Genetics (United Kingdom)'), (69708, 'https://ror.org/05jhaqb62', 'no_lang_code', 1, 'https://ror.org/05jhaqb62 (주)장성E.P.S에 오신것을 환영합니다 Jangsung (South Korea)'), (69709, 'https://ror.org/05jnpxa89', 'no_lang_code', 1, 'https://ror.org/05jnpxa89 AnaBio Technologies (Ireland)'), (69710, 'https://ror.org/05jnsc004', 'fr', 1, 'https://ror.org/05jnsc004 Association Québécoise du Personnel de Direction des Écoles'), (69711, 'https://ror.org/05jrea685', 'en', 1, 'https://ror.org/05jrea685 Center for Agricultural Research 农业技术中心'), (69712, 'https://ror.org/05jrpd556', 'de', 1, 'https://ror.org/05jrpd556 Niedersächsisches Ministerium für Wirtschaft, Arbeit und Verkehr'), (69713, 'https://ror.org/05jsb4h04', 'en', 1, 'https://ror.org/05jsb4h04 Korea Association of Vocational Education 한국직업능력교육협회'), (69714, 'https://ror.org/05jsj3p18', 'en', 1, 'https://ror.org/05jsj3p18 National Agricultural Research Institute'), (69715, 'https://ror.org/05jsss136', 'en', 1, 'https://ror.org/05jsss136 Central Research Institute of Engineering Troops of the Ministry of Defense of the Russian Federation Центральный научно-исследовательский институт инженерных войск Министерства обороны Российской Федерации'), (69716, 'https://ror.org/05jt2eq53', 'en', 1, 'https://ror.org/05jt2eq53 Korea Nuclear International Cooperation Foundation 한국원자력협력재단'), (69717, 'https://ror.org/05jv1dg95', 'no_lang_code', 1, 'https://ror.org/05jv1dg95 eSpot Lighting (China)'), (69718, 'https://ror.org/05jvc9976', 'no_lang_code', 1, 'https://ror.org/05jvc9976 ENBIO (Ireland)'), (69719, 'https://ror.org/05jxkdk91', 'en', 1, 'https://ror.org/05jxkdk91 Charity Commission for England and Wales'), (69720, 'https://ror.org/05jzn3892', 'de', 1, 'https://ror.org/05jzn3892 Bundesverband Flachglas Federal Flat Glass Association'), (69721, 'https://ror.org/05jzxm583', 'no_lang_code', 1, 'https://ror.org/05jzxm583 Williams (United Kingdom)'), (69722, 'https://ror.org/05k05ta39', 'no_lang_code', 1, 'https://ror.org/05k05ta39 Guidewire (United States)'), (69723, 'https://ror.org/05k1bk987', 'no_lang_code', 1, 'https://ror.org/05k1bk987 Hiflux (United Kingdom)'), (69724, 'https://ror.org/05k1xe006', 'no_lang_code', 1, 'https://ror.org/05k1xe006 Shandong Provincial Communications Planning and Design Institute (China) 山东省交通规划设计院'), (69725, 'https://ror.org/05k2dce86', 'en', 1, 'https://ror.org/05k2dce86 Donga Broadcasting University of Arts 동아방송예술대학교'), (69726, 'https://ror.org/05k2j8e48', 'en', 1, 'https://ror.org/05k2j8e48 Jiangxi University of Technology 江西科技学院'), (69727, 'https://ror.org/05k2sh226', 'en', 1, 'https://ror.org/05k2sh226 Bard College Berlin'), (69728, 'https://ror.org/05k393r70', 'en', 1, 'https://ror.org/05k393r70 Hunan Energy Research Institute 湖南省能源研究所'), (69729, 'https://ror.org/05k460e55', 'en', 1, 'https://ror.org/05k460e55 Planetwork'), (69730, 'https://ror.org/05k58k622', 'no_lang_code', 1, 'https://ror.org/05k58k622 Sunonwealth Electric Machine Industry (China)'), (69731, 'https://ror.org/05k5h6g73', 'no_lang_code', 1, 'https://ror.org/05k5h6g73 Bodywhys'), (69732, 'https://ror.org/05k7qec05', 'fr', 1, 'https://ror.org/05k7qec05 Ministère de l''Education Nationale de Côte d''Ivoire'), (69733, 'https://ror.org/05k7yfd33', 'en', 1, 'https://ror.org/05k7yfd33 Korea Lifelong Education Center 한국평생교육원'), (69734, 'https://ror.org/05k8rth88', 'en', 1, 'https://ror.org/05k8rth88 ESIC Hospital इंदिरा गांधी ईएसआई अस्पताल'), (69735, 'https://ror.org/05k953v63', 'no_lang_code', 1, 'https://ror.org/05k953v63 Gionee (China) 金立'), (69736, 'https://ror.org/05kb58m03', 'en', 1, 'https://ror.org/05kb58m03 21st Century Political Science Association 21세기정치학회'), (69737, 'https://ror.org/05kbfwb79', 'en', 1, 'https://ror.org/05kbfwb79 Center for Disease Analysis'), (69738, 'https://ror.org/05kch1b73', 'en', 1, 'https://ror.org/05kch1b73 Institute of Justice 학회 정의의'), (69739, 'https://ror.org/05kemy048', 'en', 1, 'https://ror.org/05kemy048 European Forest Institute'), (69740, 'https://ror.org/05kextd02', 'no_lang_code', 1, 'https://ror.org/05kextd02 Holsin Engineering Consulting Group (China) 合诚工程咨询集团股份有限公司'), (69741, 'https://ror.org/05kh3e232', 'en', 1, 'https://ror.org/05kh3e232 Korea Academy of Mental Health Social Work 한국정신보건사회복지학회'), (69742, 'https://ror.org/05kh7ew82', 'no_lang_code', 1, 'https://ror.org/05kh7ew82 NexusCRO (India)'), (69743, 'https://ror.org/05kp0wh78', 'en', 1, 'https://ror.org/05kp0wh78 Sagamore Institute'), (69744, 'https://ror.org/05kqdk687', 'en', 1, 'https://ror.org/05kqdk687 Xiangyang Hospital of Traditional Chinese Medicine 襄阳中医医院'), (69745, 'https://ror.org/05krfyb07', 'no_lang_code', 1, 'https://ror.org/05krfyb07 MEMS RIGHT (China)'), (69746, 'https://ror.org/05kt30h71', 'no_lang_code', 1, 'https://ror.org/05kt30h71 Laser 2000 (United Kingdom)'), (69747, 'https://ror.org/05kt4a843', 'no_lang_code', 1, 'https://ror.org/05kt4a843 Owens Corning (Finland)'), (69748, 'https://ror.org/05kt6fp70', 'no_lang_code', 1, 'https://ror.org/05kt6fp70 Sumana Hospital సుమానా హాస్పిటల్'), (69749, 'https://ror.org/05kvfm871', 'no_lang_code', 1, 'https://ror.org/05kvfm871 Fibercore (United Kingdom)'), (69750, 'https://ror.org/05kvt2j84', 'no_lang_code', 1, 'https://ror.org/05kvt2j84 C4 Carbides (United Kingdom)'), (69751, 'https://ror.org/05kxkht56', 'en', 1, 'https://ror.org/05kxkht56 The Gemmological Association of Hong Kong'), (69752, 'https://ror.org/05m4yff41', 'en', 1, 'https://ror.org/05m4yff41 Guangdong Institute of New Materials 广东省新材料研究所'), (69753, 'https://ror.org/05m5d6945', 'en', 1, 'https://ror.org/05m5d6945 Human Development Institute 인간 개발 연구소'), (69754, 'https://ror.org/05m9b8032', 'fr', 1, 'https://ror.org/05m9b8032 Agence Luxembourgeoise d''Action Culturelle'), (69755, 'https://ror.org/05mag7924', 'en', 1, 'https://ror.org/05mag7924 State Scientific Research Navigation and Hydrographic Institute Государственного научно-исследовательского навигационно-гидрографического института'), (69756, 'https://ror.org/05mfwdr57', 'en', 1, 'https://ror.org/05mfwdr57 Gyeongbuk IT Convergence Industrial Technology Institute 경북IT융합산업기술원'), (69757, 'https://ror.org/05mk8j583', 'en', 1, 'https://ror.org/05mk8j583 Ministry of Labour, Employment and the Social and Solidarity Economy Ministère du Travail, de l''Emploi et de l''Économie Sociale et Solidaire'), (69758, 'https://ror.org/05mmqpp85', 'en', 1, 'https://ror.org/05mmqpp85 Acharya Shri Chander College of Medical Sciences and Hospital'), (69759, 'https://ror.org/05mp1w822', 'no_lang_code', 1, 'https://ror.org/05mp1w822 Cathay Photonics (China) 國泰光電有限公司'), (69760, 'https://ror.org/05mq0z459', 'no_lang_code', 1, 'https://ror.org/05mq0z459 Jiangsu Radio Scientific Research Institute (China) 江苏省无线电科学研究所有限公司'), (69761, 'https://ror.org/05mr5xg41', 'en', 1, 'https://ror.org/05mr5xg41 Shinsung University 신성 대학교'), (69762, 'https://ror.org/05mvt5123', 'no_lang_code', 1, 'https://ror.org/05mvt5123 Hyster-Yale Materials Handling (United States)'), (69763, 'https://ror.org/05mw5z210', 'no_lang_code', 1, 'https://ror.org/05mw5z210 (재단)부산테크노파크 Busan TechnoPark'), (69764, 'https://ror.org/05n083m46', 'no_lang_code', 1, 'https://ror.org/05n083m46 Innovation Zed (Ireland)'), (69765, 'https://ror.org/05n1bhg28', 'no_lang_code', 1, 'https://ror.org/05n1bhg28 Kazancompressormash Казанькомпрессормаш'), (69766, 'https://ror.org/05n3q1w80', 'no_lang_code', 1, 'https://ror.org/05n3q1w80 Reyon Pharmaceutical (South Korea) 이연제약'), (69767, 'https://ror.org/05n4dxt42', 'en', 1, 'https://ror.org/05n4dxt42 Wayne-Finger Lakes BOCES'), (69768, 'https://ror.org/05n6r8r02', 'no_lang_code', 1, 'https://ror.org/05n6r8r02 Ukrainian Center of Environmental and Water Projects (Ukraine)'), (69769, 'https://ror.org/05n6vhy89', 'en', 1, 'https://ror.org/05n6vhy89 Jacobs Levy Equity Management'), (69770, 'https://ror.org/05n6zrm60', 'en', 1, 'https://ror.org/05n6zrm60 SWOG Cancer Research Network'), (69771, 'https://ror.org/05ndtje96', 'no_lang_code', 1, 'https://ror.org/05ndtje96 LaVision (United Kingdom)'), (69772, 'https://ror.org/05nh9ky12', 'en', 1, 'https://ror.org/05nh9ky12 Irish Archaeology Field School'), (69773, 'https://ror.org/05nhh6248', 'en', 1, 'https://ror.org/05nhh6248 Ministry of the Interior Υπουργείο Εσωτερικών'), (69774, 'https://ror.org/05nm1mt28', 'de', 1, 'https://ror.org/05nm1mt28 DBI - Gastechnologisches Institut'), (69775, 'https://ror.org/05npd2m35', 'no_lang_code', 1, 'https://ror.org/05npd2m35 Overstock (United States)'), (69776, 'https://ror.org/05npt9421', 'no_lang_code', 1, 'https://ror.org/05npt9421 Ancon (United Kingdom)'), (69777, 'https://ror.org/05nqkcp91', 'no_lang_code', 1, 'https://ror.org/05nqkcp91 WengFu Group (China)'), (69778, 'https://ror.org/05ntybz92', 'en', 1, 'https://ror.org/05ntybz92 Guangdong Provincial Academy of Building Research Group 广东省建筑科学研究院集团'), (69779, 'https://ror.org/05nvwdp14', 'no_lang_code', 1, 'https://ror.org/05nvwdp14 AM Technology (United Kingdom)'), (69780, 'https://ror.org/05nwd8d95', 'no_lang_code', 1, 'https://ror.org/05nwd8d95 Kowsar Medical (Netherlands)'), (69781, 'https://ror.org/05p0jfk72', 'no_lang_code', 1, 'https://ror.org/05p0jfk72 Infas Institut für Angewandte Sozialwissenschaft (Germany)'), (69782, 'https://ror.org/05p0krc37', 'en', 1, 'https://ror.org/05p0krc37 The Korean Society of Greco-Roman Studies 한국서양고전학회'), (69783, 'https://ror.org/05p3nte65', 'en', 1, 'https://ror.org/05p3nte65 The Korean Society for the Study of Career Education 한국 직업 교육 연구회'), (69784, 'https://ror.org/05p5dcf94', 'fr', 1, 'https://ror.org/05p5dcf94 Réseau des Centres de Ressources Périnatales'), (69785, 'https://ror.org/05p859a12', 'no_lang_code', 1, 'https://ror.org/05p859a12 Ferrari (Italy)'), (69786, 'https://ror.org/05pagb310', 'en', 1, 'https://ror.org/05pagb310 Korean Women''s Literature 고려 사항'), (69787, 'https://ror.org/05pd8ej68', 'no_lang_code', 1, 'https://ror.org/05pd8ej68 Crossword Cybersecurity (United Kingdom)'), (69788, 'https://ror.org/05penet29', 'en', 1, 'https://ror.org/05penet29 Dr. Humeira Badsha Medical Center'), (69789, 'https://ror.org/05pf6rt98', 'en', 1, 'https://ror.org/05pf6rt98 Black Coalition for AIDS Prevention'), (69790, 'https://ror.org/05pf8rm83', 'en', 1, 'https://ror.org/05pf8rm83 Modernized Chinese Medicine International Association 国际现代化中药'), (69791, 'https://ror.org/05pgmek29', 'en', 1, 'https://ror.org/05pgmek29 Nizhny Tagil Institute for Testing Metals Нижнетагильский институт испытания металлов'), (69792, 'https://ror.org/05phhyq88', 'no_lang_code', 1, 'https://ror.org/05phhyq88 CSSC Offshore & Marine Engineering Company (China)'), (69793, 'https://ror.org/05pjvcp59', 'no_lang_code', 1, 'https://ror.org/05pjvcp59 Ewha Biomedics (South Korea) 이화바이오메딕스'), (69794, 'https://ror.org/05pntjg19', 'en', 1, 'https://ror.org/05pntjg19 Amur Scientific Center Амурский научный центр'), (69795, 'https://ror.org/05psg6c12', 'no_lang_code', 1, 'https://ror.org/05psg6c12 Sensata Technologies (Netherlands)'), (69796, 'https://ror.org/05pwe3434', 'en', 1, 'https://ror.org/05pwe3434 The Federal Trust'), (69797, 'https://ror.org/05pxcg049', 'no_lang_code', 1, 'https://ror.org/05pxcg049 Take-Two Interactive (United States)'), (69798, 'https://ror.org/05py8xn22', 'no_lang_code', 1, 'https://ror.org/05py8xn22 Janssen (Hungary)'), (69799, 'https://ror.org/05pz9kz68', 'en', 1, 'https://ror.org/05pz9kz68 All-Russian Scientific Research Institute of Horticulture named after IV Michurin Всероссийский НИИ садоводства имени И. В. Мичурина'), (69800, 'https://ror.org/05q13b263', 'no_lang_code', 1, 'https://ror.org/05q13b263 NIIhimmash (Russia)'), (69801, 'https://ror.org/05q23ne91', 'en', 1, 'https://ror.org/05q23ne91 State Research Institute "Crystal" Государственный научно-исследовательский институт «Кристалл»'), (69802, 'https://ror.org/05q7ass71', 'en', 1, 'https://ror.org/05q7ass71 Immigrant Council of Ireland'), (69803, 'https://ror.org/05q8mqd91', 'en', 1, 'https://ror.org/05q8mqd91 Hong Kong Science and Technology Parks Corporation 香港科技园公司'), (69804, 'https://ror.org/05q950e27', 'en', 1, 'https://ror.org/05q950e27 English Language and Literature Association of Korea 한국영어영문학회'), (69805, 'https://ror.org/05qapvh61', 'en', 1, 'https://ror.org/05qapvh61 The Korean Association of Slavic Eurasian Studies'), (69806, 'https://ror.org/05qb29e48', 'no_lang_code', 1, 'https://ror.org/05qb29e48 Komipharm International (South Korea) 코미팜'), (69807, 'https://ror.org/05qc7mv40', 'fr', 1, 'https://ror.org/05qc7mv40 De Veber'), (69808, 'https://ror.org/05qcfb174', 'en', 1, 'https://ror.org/05qcfb174 Henan Province Water Conservancy Survey and Design Research 河南省水利勘测设计研究有限公司'), (69809, 'https://ror.org/05qcvps09', 'en', 1, 'https://ror.org/05qcvps09 Respond Housing Association'), (69810, 'https://ror.org/05qf0w940', 'no_lang_code', 1, 'https://ror.org/05qf0w940 Tongling Nonferrous Metals Group Holding (China) 铜陵有色金属集团控股有限公司'), (69811, 'https://ror.org/05qfv6h82', 'no_lang_code', 1, 'https://ror.org/05qfv6h82 Nanjing Lishui Electronics Research Institute (China) 南京丽水电子研究所'), (69812, 'https://ror.org/05qm21180', 'en', 1, 'https://ror.org/05qm21180 Beijing Advanced Sciences and Innovation Center 北京综合研究中心'), (69813, 'https://ror.org/05qm99d82', 'en', 1, 'https://ror.org/05qm99d82 Nihon University Itabashi Hospital 日本大学板橋病院'), (69814, 'https://ror.org/05qp95904', 'en', 1, 'https://ror.org/05qp95904 Korean Society for Journalism and Communication Studies 한국 저널리즘 커뮤니케이션 학회'), (69815, 'https://ror.org/05qtmcx34', 'en', 1, 'https://ror.org/05qtmcx34 Environmental Justice Foundation'), (69816, 'https://ror.org/05qw0wj36', 'fr', 1, 'https://ror.org/05qw0wj36 Cercle Finance du Québec'), (69817, 'https://ror.org/05qw2ag88', 'no_lang_code', 1, 'https://ror.org/05qw2ag88 Congenomics (United States)'), (69818, 'https://ror.org/05qw55b97', 'en', 1, 'https://ror.org/05qw55b97 China Railway Construction Machinery Research & Design Institute 中铁工程机械研究设计院有限公司院简介'), (69819, 'https://ror.org/05qw5qh97', 'en', 1, 'https://ror.org/05qw5qh97 Macedonian Information Agency Македонска информативна агенција'), (69820, 'https://ror.org/05qwvj556', 'no_lang_code', 1, 'https://ror.org/05qwvj556 China National Heavy Duty Truck Group (China) 中国重型汽车集团有限公司'), (69821, 'https://ror.org/05qxkh644', 'no_lang_code', 1, 'https://ror.org/05qxkh644 INSEAD'), (69822, 'https://ror.org/05qzes018', 'en', 1, 'https://ror.org/05qzes018 Active Healthy Kids'), (69823, 'https://ror.org/05r0sb604', 'en', 1, 'https://ror.org/05r0sb604 Kyungbok University 경복대학교'), (69824, 'https://ror.org/05r1f9v61', 'en', 1, 'https://ror.org/05r1f9v61 Guizhou Provincial Institute of Mountain Agricultural Machinery'), (69825, 'https://ror.org/05r2fn790', 'en', 1, 'https://ror.org/05r2fn790 Korean Educational Psychology Association 한국교육심리학회'), (69826, 'https://ror.org/05r3yzq04', 'en', 1, 'https://ror.org/05r3yzq04 All-Russian Scientific Research Institute for Operation of Nuclear Power Plants Всероссийский Научно-исследовательский институт по эксплуатации атомных электростанций'), (69827, 'https://ror.org/05r783042', 'no_lang_code', 1, 'https://ror.org/05r783042 Vitargent (China)'), (69828, 'https://ror.org/05r85wx35', 'no_lang_code', 1, 'https://ror.org/05r85wx35 Optrace (Ireland)'), (69829, 'https://ror.org/05rb1p829', 'no_lang_code', 1, 'https://ror.org/05rb1p829 Chenming Group (China) 晨鸣集团'), (69830, 'https://ror.org/05rbhdv87', 'en', 1, 'https://ror.org/05rbhdv87 Central Scientific Research Institute of Measuring Equipment Центральный НИИ измерительной аппаратуры'), (69831, 'https://ror.org/05rbhw377', 'no_lang_code', 1, 'https://ror.org/05rbhw377 Hanjin (South Korea) 한진 그룹'), (69832, 'https://ror.org/05rdw5k78', 'no_lang_code', 1, 'https://ror.org/05rdw5k78 Biocarbon Engineering (United Kingdom)'), (69833, 'https://ror.org/05re20904', 'en', 1, 'https://ror.org/05re20904 Westminster Cathedral'), (69834, 'https://ror.org/05reefs64', 'en', 1, 'https://ror.org/05reefs64 Noble Hospital'), (69835, 'https://ror.org/05rekxz26', 'en', 1, 'https://ror.org/05rekxz26 Hallym University of Graduate Studies 한림국제대학원대학교'), (69836, 'https://ror.org/05rf8fe56', 'en', 1, 'https://ror.org/05rf8fe56 Liuzhou Institute of Automation Science'), (69837, 'https://ror.org/05rfv2111', 'en', 1, 'https://ror.org/05rfv2111 All-Russian Research Institute of Radio Equipment Ордена Трудового Красного Знамени Всероссийский научно-исследовательский институт радиоаппаратуры'), (69838, 'https://ror.org/05rg3v683', 'en', 1, 'https://ror.org/05rg3v683 West Virginia Coalition Against Domestic Violence'), (69839, 'https://ror.org/05rgt3j80', 'en', 1, 'https://ror.org/05rgt3j80 International Institute of Refrigeration'), (69840, 'https://ror.org/05rjfmp35', 'no_lang_code', 1, 'https://ror.org/05rjfmp35 Alexium (United States)'), (69841, 'https://ror.org/05rmdvv71', 'no_lang_code', 1, 'https://ror.org/05rmdvv71 Worldwide Intellectual Property Service (South Korea) 전세계 지적 재산권 서비스'), (69842, 'https://ror.org/05rmpy443', 'en', 1, 'https://ror.org/05rmpy443 Institute of Navigation'), (69843, 'https://ror.org/05rn7n590', 'no_lang_code', 1, 'https://ror.org/05rn7n590 HeidelbergCement (Italy)'), (69844, 'https://ror.org/05rpz9w55', 'no_lang_code', 1, 'https://ror.org/05rpz9w55 Gowell (China)'), (69845, 'https://ror.org/05rr45446', 'de', 1, 'https://ror.org/05rr45446 Bundesverband CarSharing'), (69846, 'https://ror.org/05rsjde41', 'no_lang_code', 1, 'https://ror.org/05rsjde41 Drukpol (Poland)'), (69847, 'https://ror.org/05ryb2603', 'en', 1, 'https://ror.org/05ryb2603 Ministerstwo Rodziny, Pracy i Polityki Społecznej Ministry of Family, Labour and Social Policy'), (69848, 'https://ror.org/05s6qms04', 'fr', 1, 'https://ror.org/05s6qms04 Institut Jacques Delors'), (69849, 'https://ror.org/05s6v6872', 'en', 1, 'https://ror.org/05s6v6872 Chengdu Academy of Agriculture and Forestry Sciences 成都市农林科学院'), (69850, 'https://ror.org/05s7r0436', 'en', 1, 'https://ror.org/05s7r0436 The Society of Korean Language Education 한국어교육학회'), (69851, 'https://ror.org/05sc3yb31', 'en', 1, 'https://ror.org/05sc3yb31 Sunyani Technical University'), (69852, 'https://ror.org/05scsxp22', 'en', 1, 'https://ror.org/05scsxp22 Growth Networks Uganda'), (69853, 'https://ror.org/05scw8a36', 'no_lang_code', 1, 'https://ror.org/05scw8a36 Na Eun Hospital 나은 병원'), (69854, 'https://ror.org/05scxdt25', 'en', 1, 'https://ror.org/05scxdt25 Drake Music'), (69855, 'https://ror.org/05sdrja69', 'no_lang_code', 1, 'https://ror.org/05sdrja69 Janssen (Italy)'), (69856, 'https://ror.org/05sg01b25', 'en', 1, 'https://ror.org/05sg01b25 Minnan University of Science and Technology'), (69857, 'https://ror.org/05sgs4n22', 'en', 1, 'https://ror.org/05sgs4n22 Jilin Academy of Agricultural Machinery 吉林省农业机械研究院'), (69858, 'https://ror.org/05shez493', 'en', 1, 'https://ror.org/05shez493 Employment and Economic Development Office Työ- ja elinkeinotoimisto'), (69859, 'https://ror.org/05sj3q575', 'en', 1, 'https://ror.org/05sj3q575 European Union Agency for Law Enforcement Cooperation'), (69860, 'https://ror.org/05sjd4488', 'en', 1, 'https://ror.org/05sjd4488 The Linguistic Science Society 언어과학회'), (69861, 'https://ror.org/05skt5b53', 'en', 1, 'https://ror.org/05skt5b53 Korean Infant and Child Care Society 한국 유아 보육 학회'), (69862, 'https://ror.org/05sn2dp47', 'en', 1, 'https://ror.org/05sn2dp47 The Society of Korean Language And Literature 우리어문학회'), (69863, 'https://ror.org/05spnqq37', 'en', 1, 'https://ror.org/05spnqq37 The Society of Korean Literary Criticism 한국비평문학회는'), (69864, 'https://ror.org/05sqbw136', 'no_lang_code', 1, 'https://ror.org/05sqbw136 Panasonic (China) 松下电器'), (69865, 'https://ror.org/05sshc517', 'en', 1, 'https://ror.org/05sshc517 Kunshan Industrial Technology Research Institute 昆山市工业技术研究院'), (69866, 'https://ror.org/05t0r7338', 'pl', 1, 'https://ror.org/05t0r7338 Centrum Gamma Knife'), (69867, 'https://ror.org/05t4mrn89', 'no_lang_code', 1, 'https://ror.org/05t4mrn89 Scientific Research Institute of Metallurgical Technology (Russia)'), (69868, 'https://ror.org/05t7cak84', 'en', 1, 'https://ror.org/05t7cak84 Scientific and Research Technological Institute Progress Научно-исследовательский технологический институт «Прогресс'), (69869, 'https://ror.org/05t869972', 'no_lang_code', 1, 'https://ror.org/05t869972 Shell (Qatar)'), (69870, 'https://ror.org/05t86wg70', 'en', 1, 'https://ror.org/05t86wg70 Agartala Government Medical College'), (69871, 'https://ror.org/05ta4fp83', 'no_lang_code', 1, 'https://ror.org/05ta4fp83 Quanta Computer (China) 广达电脑'), (69872, 'https://ror.org/05taf4c66', 'en', 1, 'https://ror.org/05taf4c66 The Korean Society Of Literary Education 한국 문학 교육 학회'), (69873, 'https://ror.org/05tb49488', 'en', 1, 'https://ror.org/05tb49488 Korea Institute of Finance 한국금융연구원은 지난'), (69874, 'https://ror.org/05tb8hj85', 'no_lang_code', 1, 'https://ror.org/05tb8hj85 Arya Vaidya Sala'), (69875, 'https://ror.org/05tbpks29', 'no_lang_code', 1, 'https://ror.org/05tbpks29 TradeCity Cybersoft (China)'), (69876, 'https://ror.org/05tedyt08', 'no_lang_code', 1, 'https://ror.org/05tedyt08 Everbright International (China) 中国光大国际有限公司'), (69877, 'https://ror.org/05teyj036', 'no_lang_code', 1, 'https://ror.org/05teyj036 Karl Mayer (China) 卡尔迈耶'), (69878, 'https://ror.org/05tf3bx05', 'en', 1, 'https://ror.org/05tf3bx05 Korea-American Association 한미 협회'), (69879, 'https://ror.org/05thd7q59', 'no_lang_code', 1, 'https://ror.org/05thd7q59 AtoGen (South Korea) 에이투젠'), (69880, 'https://ror.org/05thgmv59', 'en', 1, 'https://ror.org/05thgmv59 Research Institute "Argon" НИИ "Аргон"'), (69881, 'https://ror.org/05tj70371', 'en', 1, 'https://ror.org/05tj70371 International Council on Clean Transportation Internationaler Rat für sauberen Verkehr'), (69882, 'https://ror.org/05tk02106', 'en', 1, 'https://ror.org/05tk02106 Suas Educational Development'), (69883, 'https://ror.org/05tk66d69', 'en', 1, 'https://ror.org/05tk66d69 Human Rights Solidarity 인권연대는'), (69884, 'https://ror.org/05tm3n275', 'no_lang_code', 1, 'https://ror.org/05tm3n275 ARTS Group (China) 艺术 组'), (69885, 'https://ror.org/05tnntp68', 'en', 1, 'https://ror.org/05tnntp68 Commission de Formation de l''Est Ontarien Eastern Ontario Training Board'), (69886, 'https://ror.org/05tq31x39', 'no_lang_code', 1, 'https://ror.org/05tq31x39 Beijing Automotive Group (China) 北京汽车工业控股有限责任公司'), (69887, 'https://ror.org/05tr8ks89', 'no_lang_code', 1, 'https://ror.org/05tr8ks89 Splunk (United States)'), (69888, 'https://ror.org/05tt6ka81', 'en', 1, 'https://ror.org/05tt6ka81 Associated Radiologists'), (69889, 'https://ror.org/05tt6m403', 'en', 1, 'https://ror.org/05tt6m403 Nanjing Polytechnic Institute 南京工业职业技术学院'), (69890, 'https://ror.org/05ttdgs63', 'en', 1, 'https://ror.org/05ttdgs63 Heilbronn Institute for Mathematical Research'), (69891, 'https://ror.org/05ttqxn20', 'en', 1, 'https://ror.org/05ttqxn20 The Society Of Korean Literary Therapy 한국 문학 치료 학회'), (69892, 'https://ror.org/05ttsx632', 'no_lang_code', 1, 'https://ror.org/05ttsx632 C&T Elmech (Poland)'), (69893, 'https://ror.org/05txhgq68', 'en', 1, 'https://ror.org/05txhgq68 Vlaams Kenniscentrum Water Vlakwa'), (69894, 'https://ror.org/05ty9g711', 'tr', 1, 'https://ror.org/05ty9g711 Çevre ve Şehircilik Bakanlığı'), (69895, 'https://ror.org/05tzavc93', 'no_lang_code', 1, 'https://ror.org/05tzavc93 Bakkavor (United Kingdom)'), (69896, 'https://ror.org/05v0b3r22', 'en', 1, 'https://ror.org/05v0b3r22 Institute for Public Affairs Inštitút pre verejné otázky'), (69897, 'https://ror.org/05v15sz79', 'no_lang_code', 1, 'https://ror.org/05v15sz79 58.com (China)'), (69898, 'https://ror.org/05v384f19', 'pt', 1, 'https://ror.org/05v384f19 Instituto dos Vinhos do Douro e Porto'), (69899, 'https://ror.org/05v6zeb66', 'en', 1, 'https://ror.org/05v6zeb66 Koninklijk Nederlands Instituut te Rome Royal Netherlands Institute in Rome'), (69900, 'https://ror.org/05v791212', 'en', 1, 'https://ror.org/05v791212 International Food & Agricultural Trade Policy Council'), (69901, 'https://ror.org/05v7z3142', 'en', 1, 'https://ror.org/05v7z3142 Jiangmen Polytechnic 江门职业技术学院'), (69902, 'https://ror.org/05v8ead08', 'no_lang_code', 1, 'https://ror.org/05v8ead08 Magaza (Qatar)'), (69903, 'https://ror.org/05v9der98', 'no_lang_code', 1, 'https://ror.org/05v9der98 Bridge Interpreting (Ireland)'), (69904, 'https://ror.org/05v9hkc73', 'no_lang_code', 1, 'https://ror.org/05v9hkc73 Covnetics (United Kingdom)'), (69905, 'https://ror.org/05vd34735', 'en', 1, 'https://ror.org/05vd34735 National Centre for Immunisation Research & Surveillance'), (69906, 'https://ror.org/05vdz3s03', 'no_lang_code', 1, 'https://ror.org/05vdz3s03 Ningxia Machinery Research Institute (China)'), (69907, 'https://ror.org/05vft1j67', 'no_lang_code', 1, 'https://ror.org/05vft1j67 Cordis Automation (Netherlands)'), (69908, 'https://ror.org/05vn8sm27', 'no_lang_code', 1, 'https://ror.org/05vn8sm27 IPG Transport (United Kingdom)'), (69909, 'https://ror.org/05vndtw67', 'pl', 1, 'https://ror.org/05vndtw67 Instytut Wzornictwa Przemyslowego'), (69910, 'https://ror.org/05vqf7304', 'en', 1, 'https://ror.org/05vqf7304 Panhellenic Confederation of Unions of Agricultural Cooperatives Πανελλήνια Συνομοσπονδία Ενώσεων Αγροτικών Συνεταιρισμών'), (69911, 'https://ror.org/05vr8kn83', 'en', 1, 'https://ror.org/05vr8kn83 Ministry of Agriculture, Food and Forestry Министерство на земеделието и горите, Ministerstvo na zemedelieto i gorite'), (69912, 'https://ror.org/05vtgxb02', 'no_lang_code', 1, 'https://ror.org/05vtgxb02 Jinan Municipal Engineering Design & Research Institute (China) 济南市市政工程设计研究院'), (69913, 'https://ror.org/05vw7gr61', 'en', 1, 'https://ror.org/05vw7gr61 The Korean Association for Policy Analysis and Evaluation 년 출범한 한국정책분석평가학회는 지금까지'), (69914, 'https://ror.org/05vxe5982', 'no_lang_code', 1, 'https://ror.org/05vxe5982 Read-Gene (Poland)'), (69915, 'https://ror.org/05w0gd052', 'en', 1, 'https://ror.org/05w0gd052 Mada Assistive Technology Centre مركز قطر للتكنلوجيا المساعدة مدى'), (69916, 'https://ror.org/05w0m3461', 'no_lang_code', 1, 'https://ror.org/05w0m3461 Autech Group (South Korea) 오텍그룹은'), (69917, 'https://ror.org/05w1w8291', 'en', 1, 'https://ror.org/05w1w8291 High Peak Community Arts'), (69918, 'https://ror.org/05w23xy58', 'en', 1, 'https://ror.org/05w23xy58 Guangxi Machinery Industry Research Institute'), (69919, 'https://ror.org/05w2j5k62', 'en', 1, 'https://ror.org/05w2j5k62 International Commission on Illumination Internationale Beleuchtungskommission'), (69920, 'https://ror.org/05w61r586', 'en', 1, 'https://ror.org/05w61r586 St. Ignatius Loyola College Šv. Ignaco Lojolos Kolegija'), (69921, 'https://ror.org/05w9aqz69', 'no_lang_code', 1, 'https://ror.org/05w9aqz69 Tern (United Kingdom)'), (69922, 'https://ror.org/05wad7k45', 'en', 1, 'https://ror.org/05wad7k45 Sichuan Academy of Traditional Chinese Medicine 四川省中医药科学院'), (69923, 'https://ror.org/05wany963', 'en', 1, 'https://ror.org/05wany963 Hong Kong Footwear Federation'), (69924, 'https://ror.org/05waykt95', 'no_lang_code', 1, 'https://ror.org/05waykt95 Schlumberger (Russia)'), (69925, 'https://ror.org/05wbeav13', 'en', 1, 'https://ror.org/05wbeav13 Hunan Rare Earth Metal Material Research Institute 湖南稀土金属材料研究所'), (69926, 'https://ror.org/05wbxb284', 'de', 1, 'https://ror.org/05wbxb284 Bifa Umweltinstitut'), (69927, 'https://ror.org/05wd2ky28', 'en', 1, 'https://ror.org/05wd2ky28 Tianjin Academy for Intelligent Recognition Technologies 天津中科智能识别产业技术研究院'), (69928, 'https://ror.org/05wd8bb75', 'en', 1, 'https://ror.org/05wd8bb75 Iraq Virtual Science Library'), (69929, 'https://ror.org/05wdqnb80', 'en', 1, 'https://ror.org/05wdqnb80 Construction Industry Training Board'), (69930, 'https://ror.org/05we3nb76', 'en', 1, 'https://ror.org/05we3nb76 China Fishery Machinery and Instrument Research Institute 渔业机械仪器研究所创'), (69931, 'https://ror.org/05weh2538', 'en', 1, 'https://ror.org/05weh2538 Henan Radio and Television University 河南广播电视大学'), (69932, 'https://ror.org/05wenf776', 'no_lang_code', 1, 'https://ror.org/05wenf776 Marico (India)'), (69933, 'https://ror.org/05wfkgx98', 'en', 1, 'https://ror.org/05wfkgx98 All-Russian Scientific Research Institute of Canned Food Technology Всероссийский научно-исследовательский институт консервной промышленности'), (69934, 'https://ror.org/05wgqxk32', 'en', 1, 'https://ror.org/05wgqxk32 Hong Kong Electronic Industries Association 香港電子業商會'), (69935, 'https://ror.org/05whnha37', 'en', 1, 'https://ror.org/05whnha37 Institute Belniis Научно-исследовательское республиканское унитарное предприятие по строительству "Институт БелНИИС"'), (69936, 'https://ror.org/05wjcp323', 'no_lang_code', 1, 'https://ror.org/05wjcp323 Enza Zaden (Netherlands)'), (69937, 'https://ror.org/05wjeww18', 'en', 1, 'https://ror.org/05wjeww18 BuildingSMART Korea 서울 스마트 빌딩'), (69938, 'https://ror.org/05wmm6h38', 'en', 1, 'https://ror.org/05wmm6h38 The Korean Society for the Study of Teacher Education 한국교원교육학회'), (69939, 'https://ror.org/05wnrmt13', 'en', 1, 'https://ror.org/05wnrmt13 Hong Kong Watch Manufacturers Association 香港表廠商會有限公司'), (69940, 'https://ror.org/05wnvb372', 'en', 1, 'https://ror.org/05wnvb372 Research Institute of Medical Climatology and Rehabilitation Институт медицинской климатологии и восстановительного лечения'), (69941, 'https://ror.org/05wnw8q41', 'en', 1, 'https://ror.org/05wnw8q41 San Francisco Bay Conservation and Development Commission'), (69942, 'https://ror.org/05wp4m669', 'no_lang_code', 1, 'https://ror.org/05wp4m669 Korea Educational Broadcasting System 한국교육방송공사'), (69943, 'https://ror.org/05wp72p02', 'en', 1, 'https://ror.org/05wp72p02 Korea Marketing Management Association 한국 마케팅 경영 학회'), (69944, 'https://ror.org/05wp9f048', 'en', 1, 'https://ror.org/05wp9f048 Al Kawther Secondary Independent School for Girls مدرسة الكوثر الثانوية للبنات'); INSERT INTO `rors` VALUES (69945, 'https://ror.org/05wtd8w10', 'no_lang_code', 1, 'https://ror.org/05wtd8w10 CEG International (Qatar)'), (69946, 'https://ror.org/05wvzc243', 'en', 1, 'https://ror.org/05wvzc243 (사)한국정보통신기술산업협회- Korea Information & Communication Technology Industry Association'), (69947, 'https://ror.org/05wwazp63', 'no_lang_code', 1, 'https://ror.org/05wwazp63 Adone (South Korea) 주식회사 에드원'), (69948, 'https://ror.org/05wwj0f18', 'no_lang_code', 1, 'https://ror.org/05wwj0f18 Greengineering (United Kingdom)'), (69949, 'https://ror.org/05wwp6197', 'de', 1, 'https://ror.org/05wwp6197 Bundeswehrzentralkrankenhaus Koblenz'), (69950, 'https://ror.org/05wx2c490', 'en', 1, 'https://ror.org/05wx2c490 NHS Bradford Districts Clinical Commissioning Group'), (69951, 'https://ror.org/05wz8q607', 'en', 1, 'https://ror.org/05wz8q607 Apollo Cradle For Women & Children'), (69952, 'https://ror.org/05wzmn116', 'en', 1, 'https://ror.org/05wzmn116 Shandong Huanghe Delta Institute of Textile Science and Technology 山东黄河三角洲纺织科技研究院于'), (69953, 'https://ror.org/05wzyqm87', 'en', 1, 'https://ror.org/05wzyqm87 Guizhou Institute of Building Materials Science Research and Design Institute'), (69954, 'https://ror.org/05x0baj11', 'en', 1, 'https://ror.org/05x0baj11 Tianyi Institute of Biological Technology 合肥天一生物技术研究所成'), (69955, 'https://ror.org/05x0rwj57', 'no_lang_code', 1, 'https://ror.org/05x0rwj57 Changzhou Architectural Research Institute Group (China) 常州市建筑科学研究院集团股份有限公司'), (69956, 'https://ror.org/05x4ndx32', 'en', 1, 'https://ror.org/05x4ndx32 Korea Communications Industry Cooperative 한국방송통신산업협동조합 조합소개 인사말 안내입니다'), (69957, 'https://ror.org/05x5psy30', 'en', 1, 'https://ror.org/05x5psy30 Research Institute of Molecular Electronics НИИ молекулярной электроники'), (69958, 'https://ror.org/05x5sjp46', 'no_lang_code', 1, 'https://ror.org/05x5sjp46 VolgoUralNIPIgaz (Russia)'), (69959, 'https://ror.org/05x7v0b39', 'en', 1, 'https://ror.org/05x7v0b39 Ministry of Agriculture and Forestry ກະຊວງ ກະສິກຳ ແລະ ປ່າໄມ້'), (69960, 'https://ror.org/05x8k4a38', 'en', 1, 'https://ror.org/05x8k4a38 Health Insurance Institute of Slovenia Zavod za zdravstveno zavarovanje Slovenije'), (69961, 'https://ror.org/05x9xyq11', 'en', 1, 'https://ror.org/05x9xyq11 Kyung Hee University Hospital at Gangdong 강동경희대학교병원'), (69962, 'https://ror.org/05xabex37', 'en', 1, 'https://ror.org/05xabex37 Research Institute of Refining and Petrochemical Industry" MASMA " Науково-дослідний інститут нафтопереробки "МАСМА"'), (69963, 'https://ror.org/05xaptb67', 'no_lang_code', 1, 'https://ror.org/05xaptb67 Uralniti (Russia) УралНИТИ'), (69964, 'https://ror.org/05xb0z813', 'en', 1, 'https://ror.org/05xb0z813 Government Vidarbha Institute of Science and Humanities'), (69965, 'https://ror.org/05xcp0f40', 'no_lang_code', 1, 'https://ror.org/05xcp0f40 Heidelberg (Poland)'), (69966, 'https://ror.org/05xd3cs50', 'en', 1, 'https://ror.org/05xd3cs50 Shanghai Water Conservancy Engineering Design & Research Institute 上海市水利工程设计研究院有限'), (69967, 'https://ror.org/05xdfr133', 'en', 1, 'https://ror.org/05xdfr133 North-West Public Health Research Center'), (69968, 'https://ror.org/05xg3zg64', 'no_lang_code', 1, 'https://ror.org/05xg3zg64 Sensory (United States)'), (69969, 'https://ror.org/05xh4v485', 'en', 1, 'https://ror.org/05xh4v485 Korean Political Science Association 한국정치학회'), (69970, 'https://ror.org/05xhh0z05', 'no_lang_code', 1, 'https://ror.org/05xhh0z05 CCFEB Industrial Equipment Installation (China) 中建五局工业设备安装有限公司'), (69971, 'https://ror.org/05xnfc553', 'ro', 1, 'https://ror.org/05xnfc553 Colegiul National Mihai Eminescu'), (69972, 'https://ror.org/05xnw5k32', 'en', 1, 'https://ror.org/05xnw5k32 Center for Non-Communicable Diseases'), (69973, 'https://ror.org/05xpjer51', 'en', 1, 'https://ror.org/05xpjer51 Centre for Arab Genomic Studies'), (69974, 'https://ror.org/05xpxhd51', 'no_lang_code', 1, 'https://ror.org/05xpxhd51 Portable Innovation Technology (China)'), (69975, 'https://ror.org/05xqdb208', 'no_lang_code', 1, 'https://ror.org/05xqdb208 Frontier Advanced Technology (China)'), (69976, 'https://ror.org/05xr0bc04', 'no_lang_code', 1, 'https://ror.org/05xr0bc04 ServiceNow (United States)'), (69977, 'https://ror.org/05xrp5e17', 'en', 1, 'https://ror.org/05xrp5e17 TheMuseum'), (69978, 'https://ror.org/05xs8j551', 'no_lang_code', 1, 'https://ror.org/05xs8j551 Institute of Technology and Production Organization (Russia)'), (69979, 'https://ror.org/05xsa6v37', 'en', 1, 'https://ror.org/05xsa6v37 Government Ayurvedic College and Hospital Osmanabad सरकारी आयुर्वेद महाविद्यालय आणि रुग्णालय उस्मानाबाद'), (69980, 'https://ror.org/05xsbq070', 'en', 1, 'https://ror.org/05xsbq070 Institute of Medical Ethics and Bioethics, n. f Ústav medicínskej etiky a bioetiky'), (69981, 'https://ror.org/05xt21n42', 'no_lang_code', 1, 'https://ror.org/05xt21n42 Zhejiang Yuhua Electronics (China) 浙江裕华电器有限公司'), (69982, 'https://ror.org/05xwtrp65', 'en', 1, 'https://ror.org/05xwtrp65 Suzhou Industrial Park Institute of Services Outsourcing 苏州工业园区服务外包职业学院'), (69983, 'https://ror.org/05xx7en86', 'en', 1, 'https://ror.org/05xx7en86 Division of Fossil Fuels Energy'), (69984, 'https://ror.org/05xxaa629', 'en', 1, 'https://ror.org/05xxaa629 Ministry of Culture and Sports وزارة الثقافه والرياضه'), (69985, 'https://ror.org/05xyc2351', 'en', 1, 'https://ror.org/05xyc2351 All-Russian Scientific Research Institute of Freshwater Fisheries Всероссийский научно-исследовательский институт пресноводного рыбного хозяйствa'), (69986, 'https://ror.org/05xzn7m56', 'en', 1, 'https://ror.org/05xzn7m56 Guangdong Provincial Institute of Grain Science and Technology 广东省粮食科学研究所'), (69987, 'https://ror.org/05y0rb755', 'no_lang_code', 1, 'https://ror.org/05y0rb755 Dalian Plastics Research Institute (China) 大连塑料研究所'), (69988, 'https://ror.org/05y3xma86', 'no_lang_code', 1, 'https://ror.org/05y3xma86 Coolpad (China)'), (69989, 'https://ror.org/05y57mm42', 'en', 1, 'https://ror.org/05y57mm42 All-Russian Scientific Research Institute of Flax Всероссийский научно-исследовательский институт льна'), (69990, 'https://ror.org/05y5s3t98', 'en', 1, 'https://ror.org/05y5s3t98 Scientific Research Institute of Agrarian Problems of Khakassia'), (69991, 'https://ror.org/05y6t7072', 'lt', 1, 'https://ror.org/05y6t7072 Birštono Savivaldybė'), (69992, 'https://ror.org/05y7veh17', 'en', 1, 'https://ror.org/05y7veh17 Shanxi Transportation Research Institute 山西省交通科学研究院'), (69993, 'https://ror.org/05yaab071', 'no_lang_code', 1, 'https://ror.org/05yaab071 Googol Technology (China)'), (69994, 'https://ror.org/05yay3q52', 'en', 1, 'https://ror.org/05yay3q52 Ministry of Education and Higher Education'), (69995, 'https://ror.org/05ybbth24', 'en', 1, 'https://ror.org/05ybbth24 National Youth Agency'), (69996, 'https://ror.org/05yd2zc58', 'en', 1, 'https://ror.org/05yd2zc58 Ministry of Industry, Commerce, Agriculture and Fisheries'), (69997, 'https://ror.org/05ymqz659', 'es', 1, 'https://ror.org/05ymqz659 Instituto Nacional de Silicosis'), (69998, 'https://ror.org/05ynabk26', 'en', 1, 'https://ror.org/05ynabk26 Avon and Somerset Police Authority'), (69999, 'https://ror.org/05ynh7w25', 'no_lang_code', 1, 'https://ror.org/05ynh7w25 ZheJiang East Crystal Electronic (China) 浙江东晶电子股份有限公司'), (70000, 'https://ror.org/05ypnbp35', 'no_lang_code', 1, 'https://ror.org/05ypnbp35 Anhui Provincial Urban Construction Design & Research Institute (China)'), (70001, 'https://ror.org/00003g016', 'en', 1, 'https://ror.org/00003g016 World Water Watch'), (70002, 'https://ror.org/00033n668', 'en', 1, 'https://ror.org/00033n668 Universiteti për Biznes dhe Teknologji University for Business and Technology'), (70003, 'https://ror.org/0005q3137', 'en', 1, 'https://ror.org/0005q3137 Ultach Trust'), (70004, 'https://ror.org/0009dkt68', 'no_lang_code', 1, 'https://ror.org/0009dkt68 Arrhythmotech (United States)'), (70005, 'https://ror.org/0009sdg88', 'no_lang_code', 1, 'https://ror.org/0009sdg88 Elways (Sweden)'), (70006, 'https://ror.org/000a82508', 'no_lang_code', 1, 'https://ror.org/000a82508 Blue Therapeutics (United States)'), (70007, 'https://ror.org/000c2p832', 'en', 1, 'https://ror.org/000c2p832 South London Healthcare NHS Trust'), (70008, 'https://ror.org/000c5n539', 'no_lang_code', 1, 'https://ror.org/000c5n539 Exensor Technology (Sweden)'), (70009, 'https://ror.org/000dpyn16', 'no_lang_code', 1, 'https://ror.org/000dpyn16 Zenuity (Sweden)'), (70010, 'https://ror.org/000ecmj40', 'no_lang_code', 1, 'https://ror.org/000ecmj40 Evorx (United States)'), (70011, 'https://ror.org/000eh9340', 'en', 1, 'https://ror.org/000eh9340 California Budget & Policy Center'), (70012, 'https://ror.org/000erc082', 'en', 1, 'https://ror.org/000erc082 Conway Hall Ethical Society'), (70013, 'https://ror.org/000kw4c48', 'en', 1, 'https://ror.org/000kw4c48 South Cheshire Astronomical Society'), (70014, 'https://ror.org/000m0gv46', 'no_lang_code', 1, 'https://ror.org/000m0gv46 SolAero Technologies (United States)'), (70015, 'https://ror.org/000nw4a65', 'no_lang_code', 1, 'https://ror.org/000nw4a65 Polish Aviation Works Polskie Zakłady Lotnicze (Poland)'), (70016, 'https://ror.org/000rmdf62', 'no_lang_code', 1, 'https://ror.org/000rmdf62 BioLite (United States)'), (70017, 'https://ror.org/000s5ry87', 'en', 1, 'https://ror.org/000s5ry87 Glasgow West Housing Association'), (70018, 'https://ror.org/000sec356', 'no_lang_code', 1, 'https://ror.org/000sec356 Epizone'), (70019, 'https://ror.org/000ymg434', 'no_lang_code', 1, 'https://ror.org/000ymg434 Amplification Technologies (United States)'), (70020, 'https://ror.org/001000g32', 'en', 1, 'https://ror.org/001000g32 Tullie House Museum and Art Gallery'), (70021, 'https://ror.org/00135x916', 'no_lang_code', 1, 'https://ror.org/00135x916 Inkubera (Sweden)'), (70022, 'https://ror.org/0013pnn31', 'no_lang_code', 1, 'https://ror.org/0013pnn31 Ocean Harvesting Technologies (Sweden)'), (70023, 'https://ror.org/0013qma95', 'en', 1, 'https://ror.org/0013qma95 Diseworth Heritage Centre'), (70024, 'https://ror.org/0013ssk40', 'no_lang_code', 1, 'https://ror.org/0013ssk40 Microtech Instruments (United States)'), (70025, 'https://ror.org/0013y6044', 'en', 1, 'https://ror.org/0013y6044 Irish Jewish Museum'), (70026, 'https://ror.org/00147y550', 'en', 1, 'https://ror.org/00147y550 Caribbean Institute for Meteorology and Hydrology'), (70027, 'https://ror.org/0016std27', 'en', 1, 'https://ror.org/0016std27 International Maritime Organization'), (70028, 'https://ror.org/00186j916', 'en', 1, 'https://ror.org/00186j916 Scottish Music Industry Association'), (70029, 'https://ror.org/001a3sv78', 'no_lang_code', 1, 'https://ror.org/001a3sv78 Cognitopia (United States)'), (70030, 'https://ror.org/001a7dw94', 'de', 1, 'https://ror.org/001a7dw94 Krankenhaus der Barmherzigen Brüder Trier'), (70031, 'https://ror.org/001aba497', 'pt', 1, 'https://ror.org/001aba497 Instituto Brasil Estados Unidos'), (70032, 'https://ror.org/001ajv156', 'no_lang_code', 1, 'https://ror.org/001ajv156 EES Research (United Kingdom)'), (70033, 'https://ror.org/001engn06', 'no_lang_code', 1, 'https://ror.org/001engn06 BRS Aerospace (United States)'), (70034, 'https://ror.org/001fg0044', 'en', 1, 'https://ror.org/001fg0044 London Rebuilding Society'), (70035, 'https://ror.org/001j88k95', 'no_lang_code', 1, 'https://ror.org/001j88k95 Alico Systems (United States)'), (70036, 'https://ror.org/001m3mk55', 'no_lang_code', 1, 'https://ror.org/001m3mk55 Healthcare over Internet Protocol Community Interest Company (United Kingdom)'), (70037, 'https://ror.org/001qkb777', 'no_lang_code', 1, 'https://ror.org/001qkb777 Creative Technologies (United States)'), (70038, 'https://ror.org/001v02q16', 'no_lang_code', 1, 'https://ror.org/001v02q16 RenFuel (Sweden)'), (70039, 'https://ror.org/001v0e970', 'no_lang_code', 1, 'https://ror.org/001v0e970 Movexum (Sweden)'), (70040, 'https://ror.org/001wkh665', 'no_lang_code', 1, 'https://ror.org/001wkh665 Kelenn Technology (France)'), (70041, 'https://ror.org/001ykgy03', 'fr', 1, 'https://ror.org/001ykgy03 Ministère de l’Enseignement Supérieur et de la Recherche Scientifique'), (70042, 'https://ror.org/001zq7k15', 'en', 1, 'https://ror.org/001zq7k15 Nigerian Meteorological Agency'), (70043, 'https://ror.org/0020g8f52', 'sv', 1, 'https://ror.org/0020g8f52 Datorn I Utbildningen'), (70044, 'https://ror.org/0020mxe10', 'en', 1, 'https://ror.org/0020mxe10 Shevchenko Institute of Literature Інститут літератури імені Тараса Шевченка НАН України'), (70045, 'https://ror.org/0020qzt72', 'no_lang_code', 1, 'https://ror.org/0020qzt72 Mabou Mines (United States)'), (70046, 'https://ror.org/00216ta13', 'en', 1, 'https://ror.org/00216ta13 Center for the Study of Social Policy'), (70047, 'https://ror.org/0021w4337', 'en', 1, 'https://ror.org/0021w4337 Scottish Fisheries Museum'), (70048, 'https://ror.org/0022jb369', 'en', 1, 'https://ror.org/0022jb369 Institute for Molecular Manufacturing'), (70049, 'https://ror.org/00235xz29', 'no_lang_code', 1, 'https://ror.org/00235xz29 BKF Systems (United States)'), (70050, 'https://ror.org/00244rn76', 'en', 1, 'https://ror.org/00244rn76 Zanzibar School of Health'), (70051, 'https://ror.org/00259sq91', 'en', 1, 'https://ror.org/00259sq91 MS Training Centre for Development Cooperation'), (70052, 'https://ror.org/00290ns09', 'en', 1, 'https://ror.org/00290ns09 Société des Eiders de l’Arctique The Arctic Eider Society'), (70053, 'https://ror.org/002a9y532', 'fr', 1, 'https://ror.org/002a9y532 Unité de Recherche Technologie et Analyses Laitières'), (70054, 'https://ror.org/002aev204', 'en', 1, 'https://ror.org/002aev204 African Institute for Leaders and Leadership'), (70055, 'https://ror.org/002ba7a80', 'en', 1, 'https://ror.org/002ba7a80 Pakistan and Kashmir Welfare Association'), (70056, 'https://ror.org/002bahc84', 'en', 1, 'https://ror.org/002bahc84 Institute of Materials Finishing'), (70057, 'https://ror.org/002ffx508', 'en', 1, 'https://ror.org/002ffx508 Make the Road New York'), (70058, 'https://ror.org/002kr4405', 'en', 1, 'https://ror.org/002kr4405 Delhi Foundation of Deaf Women'), (70059, 'https://ror.org/002m2fe15', 'en', 1, 'https://ror.org/002m2fe15 Telecommunications Industry Association'), (70060, 'https://ror.org/002nebm43', 'no_lang_code', 1, 'https://ror.org/002nebm43 Pharem Biotech (Sweden)'), (70061, 'https://ror.org/002pa2q48', 'en', 1, 'https://ror.org/002pa2q48 National Immigration Law Center'), (70062, 'https://ror.org/002pdme92', 'en', 1, 'https://ror.org/002pdme92 Centre for Environment Concerns'), (70063, 'https://ror.org/002pnw495', 'en', 1, 'https://ror.org/002pnw495 Singapore-HUJ Alliance for Research and Enterprise'), (70064, 'https://ror.org/002rnrf69', 'no_lang_code', 1, 'https://ror.org/002rnrf69 NORDIC BioEngineering (Sweden)'), (70065, 'https://ror.org/002tst934', 'en', 1, 'https://ror.org/002tst934 Institute for International Urban Development'), (70066, 'https://ror.org/002v8sr80', 'no_lang_code', 1, 'https://ror.org/002v8sr80 Aptek (United States)'), (70067, 'https://ror.org/002wpgj09', 'no_lang_code', 1, 'https://ror.org/002wpgj09 Spaceworks'), (70068, 'https://ror.org/0030fkc22', 'en', 1, 'https://ror.org/0030fkc22 Wandle'), (70069, 'https://ror.org/0031tkh25', 'en', 1, 'https://ror.org/0031tkh25 International Genetically Engineered Machine Foundation'), (70070, 'https://ror.org/0033qx680', 'fi', 1, 'https://ror.org/0033qx680 Vamia'), (70071, 'https://ror.org/0037jxv73', 'en', 1, 'https://ror.org/0037jxv73 Mophradat'), (70072, 'https://ror.org/0039c1624', 'en', 1, 'https://ror.org/0039c1624 The Bhandarkar Oriental Research Institute भांडारकर ओरिएंटल रिसर्च इन्स्टिट्यूट'), (70073, 'https://ror.org/0039f4626', 'en', 1, 'https://ror.org/0039f4626 Royal Engineers Museum'), (70074, 'https://ror.org/003aa7r63', 'en', 1, 'https://ror.org/003aa7r63 Uganda Red Cross Society'), (70075, 'https://ror.org/003aw4c90', 'en', 1, 'https://ror.org/003aw4c90 Institut für Binnenfischerei e.V. Potsdam-Sacrow Institute of Inland Fisheries in Potsdam-Sacrow'), (70076, 'https://ror.org/003c8wq34', 'en', 1, 'https://ror.org/003c8wq34 UK Music'), (70077, 'https://ror.org/003cyvv46', 'no_lang_code', 1, 'https://ror.org/003cyvv46 h2med (United States)'), (70078, 'https://ror.org/003dca267', 'en', 1, 'https://ror.org/003dca267 Stevenage Bioscience Catalyst'), (70079, 'https://ror.org/003f4e996', 'en', 1, 'https://ror.org/003f4e996 Sir John Soane''s Museum'), (70080, 'https://ror.org/003gh6294', 'no_lang_code', 1, 'https://ror.org/003gh6294 Ejenta (United States)'), (70081, 'https://ror.org/003hksp74', 'no_lang_code', 1, 'https://ror.org/003hksp74 BWA (United Kingdom)'), (70082, 'https://ror.org/003hx7248', 'es', 1, 'https://ror.org/003hx7248 Instituto Nicaragüense de Cultura'), (70083, 'https://ror.org/003kr8v19', 'en', 1, 'https://ror.org/003kr8v19 Linen Hall Library'), (70084, 'https://ror.org/003mg4e46', 'no_lang_code', 1, 'https://ror.org/003mg4e46 Radosys (Hungary)'), (70085, 'https://ror.org/003s4zv17', 'no_lang_code', 1, 'https://ror.org/003s4zv17 EaglePicher Technologies (United States)'), (70086, 'https://ror.org/003t9wy25', 'no_lang_code', 1, 'https://ror.org/003t9wy25 Sweekaar'), (70087, 'https://ror.org/003td8q57', 'pt', 1, 'https://ror.org/003td8q57 Faesa Centro Universitario'), (70088, 'https://ror.org/003v0x852', 'en', 1, 'https://ror.org/003v0x852 Aliansi Masyarakat Adat Nusantara Indigenous Peoples'' Alliance of the Archipelago'), (70089, 'https://ror.org/003w3ym70', 'en', 1, 'https://ror.org/003w3ym70 FCT College of Education'), (70090, 'https://ror.org/003yky459', 'no_lang_code', 1, 'https://ror.org/003yky459 RentPath (United States)'), (70091, 'https://ror.org/00408kc71', 'en', 1, 'https://ror.org/00408kc71 Education Authority'), (70092, 'https://ror.org/0041aya12', 'es', 1, 'https://ror.org/0041aya12 Centro de Investigación de Métodos Computacionales'), (70093, 'https://ror.org/0042dc077', 'en', 1, 'https://ror.org/0042dc077 Peterborough City Council'), (70094, 'https://ror.org/0042x6d59', 'de', 1, 'https://ror.org/0042x6d59 Zentrum für Seelische Gesundheit'), (70095, 'https://ror.org/00442nv52', 'no_lang_code', 1, 'https://ror.org/00442nv52 Globe Composite (United States)'), (70096, 'https://ror.org/0045cz905', 'en', 1, 'https://ror.org/0045cz905 Portobello High School'), (70097, 'https://ror.org/0045hsd50', 'en', 1, 'https://ror.org/0045hsd50 United States Educational Foundation in Pakistan'), (70098, 'https://ror.org/0045nra89', 'no_lang_code', 1, 'https://ror.org/0045nra89 Arkham Technology (United States)'), (70099, 'https://ror.org/0047fgf79', 'no_lang_code', 1, 'https://ror.org/0047fgf79 Micro-Leads (United States)'), (70100, 'https://ror.org/0048qgt65', 'en', 1, 'https://ror.org/0048qgt65 BKForensics'), (70101, 'https://ror.org/004b2nf78', 'en', 1, 'https://ror.org/004b2nf78 Jewish Museum of Greece Εβραϊκό Μουσείο Ελλάδος'), (70102, 'https://ror.org/004bdfx91', 'no_lang_code', 1, 'https://ror.org/004bdfx91 American Engineering Group (United States)'), (70103, 'https://ror.org/004ee9657', 'en', 1, 'https://ror.org/004ee9657 Colwyn Bay Community Hospital'), (70104, 'https://ror.org/004fa4s18', 'fr', 1, 'https://ror.org/004fa4s18 Ecole Nationale d’Ingénieurs – Abderhamane Baba Touré'), (70105, 'https://ror.org/004jq5c54', 'no_lang_code', 1, 'https://ror.org/004jq5c54 Brighter (Sweden)'), (70106, 'https://ror.org/004mh3p35', 'en', 1, 'https://ror.org/004mh3p35 Keystone Research Center'), (70107, 'https://ror.org/004mwvw05', 'en', 1, 'https://ror.org/004mwvw05 AfriChild Centre'), (70108, 'https://ror.org/004n44f83', 'en', 1, 'https://ror.org/004n44f83 New Zealand Law Society'), (70109, 'https://ror.org/004qqsw05', 'en', 1, 'https://ror.org/004qqsw05 Glasgow Centre for Inclusive Living'), (70110, 'https://ror.org/004rh7a97', 'en', 1, 'https://ror.org/004rh7a97 Public Health Institute of Malawi'), (70111, 'https://ror.org/004x6m349', 'en', 1, 'https://ror.org/004x6m349 Centre for Communication and Development Studies'), (70112, 'https://ror.org/004y5mm20', 'en', 1, 'https://ror.org/004y5mm20 ACCE Institute'), (70113, 'https://ror.org/004z3ar85', 'no_lang_code', 1, 'https://ror.org/004z3ar85 Active Medicine (United Kingdom)'), (70114, 'https://ror.org/004z5ps61', 'de', 1, 'https://ror.org/004z5ps61 Gesundheitszentrum Oberndorf'), (70115, 'https://ror.org/004zjze34', 'en', 1, 'https://ror.org/004zjze34 Institute for Security Studies'), (70116, 'https://ror.org/004zmp616', 'en', 1, 'https://ror.org/004zmp616 National Institute of Ecology'), (70117, 'https://ror.org/0051af203', 'en', 1, 'https://ror.org/0051af203 The Lindsay Leg Club Foundation'), (70118, 'https://ror.org/005278833', 'en', 1, 'https://ror.org/005278833 Maxwell Air Force Base'), (70119, 'https://ror.org/0053bzc32', 'no_lang_code', 1, 'https://ror.org/0053bzc32 Proton (Malaysia)'), (70120, 'https://ror.org/0055gxg92', 'en', 1, 'https://ror.org/0055gxg92 New Jersey Institute for Social Justice'), (70121, 'https://ror.org/0056a1265', 'en', 1, 'https://ror.org/0056a1265 Bank Information Center'), (70122, 'https://ror.org/00586yd41', 'en', 1, 'https://ror.org/00586yd41 National Skills Coalition'), (70123, 'https://ror.org/005898f12', 'en', 1, 'https://ror.org/005898f12 Project on Organizing, Development, Education, and Research'), (70124, 'https://ror.org/0059vsf77', 'no_lang_code', 1, 'https://ror.org/0059vsf77 1st Edge (United States)'), (70125, 'https://ror.org/005a3qv04', 'en', 1, 'https://ror.org/005a3qv04 Illinois Primary Health Care Association'), (70126, 'https://ror.org/005b2xe71', 'no_lang_code', 1, 'https://ror.org/005b2xe71 WntResearch (Sweden)'), (70127, 'https://ror.org/005d5fb76', 'en', 1, 'https://ror.org/005d5fb76 Kent State University Geauga'), (70128, 'https://ror.org/005gnk787', 'no_lang_code', 1, 'https://ror.org/005gnk787 Fort Environmental Laboratories (United States)'), (70129, 'https://ror.org/005mzjw74', 'en', 1, 'https://ror.org/005mzjw74 Permian Research Foundation'), (70130, 'https://ror.org/005n3yy14', 'en', 1, 'https://ror.org/005n3yy14 Institute of Physics and Technology науки Физико-технологический институт'), (70131, 'https://ror.org/005p07d97', 'en', 1, 'https://ror.org/005p07d97 Consejo de Monumentos Nacionales National Monuments Council'), (70132, 'https://ror.org/005pgmf34', 'pt', 1, 'https://ror.org/005pgmf34 Associação Cultural de Mulheres Negras'), (70133, 'https://ror.org/005q1n430', 'it', 1, 'https://ror.org/005q1n430 Osservativa di Campo Imperatore'), (70134, 'https://ror.org/005q59x71', 'no_lang_code', 1, 'https://ror.org/005q59x71 Ebb Therapeutics (United States)'), (70135, 'https://ror.org/005rgra64', 'en', 1, 'https://ror.org/005rgra64 Israeli Cultural Institute Izraeli Kulturális Intézet'), (70136, 'https://ror.org/005rnqt78', 'no_lang_code', 1, 'https://ror.org/005rnqt78 Invenia (Canada)'), (70137, 'https://ror.org/005smnq10', 'en', 1, 'https://ror.org/005smnq10 The Welsh Black Cattle Society'), (70138, 'https://ror.org/005sn8a68', 'no_lang_code', 1, 'https://ror.org/005sn8a68 Blue Marble Health (United States)'), (70139, 'https://ror.org/005trhy70', 'en', 1, 'https://ror.org/005trhy70 Young Women''s Trust'), (70140, 'https://ror.org/005y6yz11', 'en', 1, 'https://ror.org/005y6yz11 Zoological Society of East Anglia'), (70141, 'https://ror.org/00635kd98', 'en', 1, 'https://ror.org/00635kd98 Queen Elizabeth Hospital Birmingham Charity'), (70142, 'https://ror.org/00648sd60', 'no_lang_code', 1, 'https://ror.org/00648sd60 Entanglement Technologies (United States)'), (70143, 'https://ror.org/00666kk80', 'en', 1, 'https://ror.org/00666kk80 European Molecular Biology Conference'), (70144, 'https://ror.org/0067znv39', 'no_lang_code', 1, 'https://ror.org/0067znv39 Aditus Science (Sweden)'), (70145, 'https://ror.org/006a5r035', 'nl', 1, 'https://ror.org/006a5r035 Stedelijk Museum Amsterdam'), (70146, 'https://ror.org/006agn966', 'en', 1, 'https://ror.org/006agn966 Tor Lodge and Applecross Trust'), (70147, 'https://ror.org/006de3561', 'no_lang_code', 1, 'https://ror.org/006de3561 Mindconnect (Sweden)'), (70148, 'https://ror.org/006fhby04', 'fr', 1, 'https://ror.org/006fhby04 Animal, Santé, Territoires, Risques et Ecosystèmes'), (70149, 'https://ror.org/006gdfw37', 'en', 1, 'https://ror.org/006gdfw37 Southern Association of Colleges and Schools'), (70150, 'https://ror.org/006h33619', 'no_lang_code', 1, 'https://ror.org/006h33619 Keleketla Library'), (70151, 'https://ror.org/006j9rn47', 'en', 1, 'https://ror.org/006j9rn47 Hypatia of Alexandria Institute for Reflexion and Studies'), (70152, 'https://ror.org/006js8r49', 'en', 1, 'https://ror.org/006js8r49 Crop Protection Association'), (70153, 'https://ror.org/006m3k312', 'en', 1, 'https://ror.org/006m3k312 Museo de la Memoria y los Derechos Humanos Museum of Memory and Human Rights'), (70154, 'https://ror.org/006pcm806', 'en', 1, 'https://ror.org/006pcm806 The Philippine Women Centre of BC'), (70155, 'https://ror.org/006pekx06', 'en', 1, 'https://ror.org/006pekx06 Emmanuel Schools Foundation'), (70156, 'https://ror.org/006qepw66', 'no_lang_code', 1, 'https://ror.org/006qepw66 Moco (United States)'), (70157, 'https://ror.org/006qrkk22', 'en', 1, 'https://ror.org/006qrkk22 Hymers College'), (70158, 'https://ror.org/006s3gt16', 'no_lang_code', 1, 'https://ror.org/006s3gt16 Hearst (United States)'), (70159, 'https://ror.org/006s9cd49', 'no_lang_code', 1, 'https://ror.org/006s9cd49 European Willow Breeding (Sweden)'), (70160, 'https://ror.org/006t3b628', 'cs', 1, 'https://ror.org/006t3b628 Nadace České Architektury'), (70161, 'https://ror.org/006w74372', 'no_lang_code', 1, 'https://ror.org/006w74372 Landec (United States)'), (70162, 'https://ror.org/006wjwp03', 'nl', 1, 'https://ror.org/006wjwp03 National Museum Nationale Kunstgalerij’, Rijksmuseum'), (70163, 'https://ror.org/006xcew27', 'en', 1, 'https://ror.org/006xcew27 Doğa Koruma Merkezi Nature Conservation Centre'), (70164, 'https://ror.org/006y2wa23', 'en', 1, 'https://ror.org/006y2wa23 The Foundation for a Civil Society'), (70165, 'https://ror.org/006y63v75', 'es', 1, 'https://ror.org/006y63v75 Museo de Historia Natural Noel Kempff Mercado'), (70166, 'https://ror.org/0070nd560', 'en', 1, 'https://ror.org/0070nd560 Comprehensive OBGYN'), (70167, 'https://ror.org/0071w5f09', 'no_lang_code', 1, 'https://ror.org/0071w5f09 Quintus Technologies (Sweden)'), (70168, 'https://ror.org/0073twa91', 'en', 1, 'https://ror.org/0073twa91 Interdisciplinary Scientific Center J.-V. Poncelet'), (70169, 'https://ror.org/0076fay17', 'en', 1, 'https://ror.org/0076fay17 Ocala Research Institute'), (70170, 'https://ror.org/0077tt432', 'en', 1, 'https://ror.org/0077tt432 Freud Museum'), (70171, 'https://ror.org/00795nv73', 'no_lang_code', 1, 'https://ror.org/00795nv73 Care Progress (United States)'), (70172, 'https://ror.org/007b1fc92', 'no_lang_code', 1, 'https://ror.org/007b1fc92 INTAR'), (70173, 'https://ror.org/007f72038', 'en', 1, 'https://ror.org/007f72038 Coordinating Ministry for Human Development and Cultural Affairs Kementerian Koordinator Bidang Pembangunan Manusia dan Kebudayaan'), (70174, 'https://ror.org/007hz9242', 'no_lang_code', 1, 'https://ror.org/007hz9242 Clinical & Biomedical Computing (United Kingdom)'), (70175, 'https://ror.org/007pepr06', 'en', 1, 'https://ror.org/007pepr06 Sanskriti Foundation संस्कृति'), (70176, 'https://ror.org/007ppd810', 'no_lang_code', 1, 'https://ror.org/007ppd810 Science Navigation Group (United Kingdom)'), (70177, 'https://ror.org/007q9sw85', 'en', 1, 'https://ror.org/007q9sw85 Institute for Law and Environmental Governance'), (70178, 'https://ror.org/007s2zd20', 'no_lang_code', 1, 'https://ror.org/007s2zd20 Nanosc (Sweden)'), (70179, 'https://ror.org/007s7nj58', 'en', 1, 'https://ror.org/007s7nj58 Landesregierung von Nordrhein-Westfalen State Government of North Rhine Westphalia'), (70180, 'https://ror.org/007tpha30', 'en', 1, 'https://ror.org/007tpha30 Barber Institute of Fine Arts'), (70181, 'https://ror.org/007vees71', 'no_lang_code', 1, 'https://ror.org/007vees71 Gyan Data (India)'), (70182, 'https://ror.org/007vw4k42', 'en', 1, 'https://ror.org/007vw4k42 Ag Innovations'), (70183, 'https://ror.org/007whsh62', 'no_lang_code', 1, 'https://ror.org/007whsh62 Intertek (United States)'), (70184, 'https://ror.org/007wjj235', 'en', 1, 'https://ror.org/007wjj235 2Blades Foundation'), (70185, 'https://ror.org/007z06v19', 'en', 1, 'https://ror.org/007z06v19 Global Impact'), (70186, 'https://ror.org/007zp0p53', 'en', 1, 'https://ror.org/007zp0p53 Canadian Institute of Technology Instituti Kanadez i Teknologjisë'), (70187, 'https://ror.org/007zz7317', 'no_lang_code', 1, 'https://ror.org/007zz7317 Health Action Partnership International (United Kingdom)'), (70188, 'https://ror.org/0080qw039', 'no_lang_code', 1, 'https://ror.org/0080qw039 Horus Energia (Poland)'), (70189, 'https://ror.org/0083kgt80', 'en', 1, 'https://ror.org/0083kgt80 Guildhall Library'), (70190, 'https://ror.org/0084xy061', 'no_lang_code', 1, 'https://ror.org/0084xy061 Vishuo Biomedical (Singapore)'), (70191, 'https://ror.org/0086j2x90', 'no_lang_code', 1, 'https://ror.org/0086j2x90 Aerotech Research (United States)'), (70192, 'https://ror.org/0086x0p73', 'no_lang_code', 1, 'https://ror.org/0086x0p73 Rouillard (Canada)'), (70193, 'https://ror.org/008892w10', 'en', 1, 'https://ror.org/008892w10 Everyday Democracy'), (70194, 'https://ror.org/0089yx556', 'en', 1, 'https://ror.org/0089yx556 Lawyers Collective'), (70195, 'https://ror.org/008aazg21', 'no_lang_code', 1, 'https://ror.org/008aazg21 Predicare (Sweden)'), (70196, 'https://ror.org/008cg6v69', 'en', 1, 'https://ror.org/008cg6v69 Erdiston Teachers'' Training College'), (70197, 'https://ror.org/008dq1c96', 'en', 1, 'https://ror.org/008dq1c96 Buccleuch Living Heritage Trust'), (70198, 'https://ror.org/008ehzy31', 'en', 1, 'https://ror.org/008ehzy31 World Academy of Art and Science'), (70199, 'https://ror.org/008fjbg42', 'en', 1, 'https://ror.org/008fjbg42 Institute for Sustainable Plant Protection Istituto per la Protezione Sostenibile delle Piante'), (70200, 'https://ror.org/008hq2e16', 'no_lang_code', 1, 'https://ror.org/008hq2e16 Andritz (United Kingdom)'), (70201, 'https://ror.org/008kjzh81', 'en', 1, 'https://ror.org/008kjzh81 UK Irrigation Association'), (70202, 'https://ror.org/008m0sk32', 'no_lang_code', 1, 'https://ror.org/008m0sk32 Shandong Museum 山东博物馆'), (70203, 'https://ror.org/008ntxv25', 'en', 1, 'https://ror.org/008ntxv25 National Subsea Research Initiative'), (70204, 'https://ror.org/008nvwa10', 'en', 1, 'https://ror.org/008nvwa10 International Centre for Women Playwrights'), (70205, 'https://ror.org/008p4q226', 'en', 1, 'https://ror.org/008p4q226 Central State Archive of the Republic of Kazakhstan Центральный государственный архив Республики Казахстан Қазақстан Республикасы Орталық мемлекеттік мұрағаты'), (70206, 'https://ror.org/008pyv383', 'no_lang_code', 1, 'https://ror.org/008pyv383 i2r Medical (United Kingdom)'), (70207, 'https://ror.org/008qv2m62', 'id', 1, 'https://ror.org/008qv2m62 Lembaga Gemawan'), (70208, 'https://ror.org/008tjs116', 'no_lang_code', 1, 'https://ror.org/008tjs116 Porvair (United Kingdom)'), (70209, 'https://ror.org/008vf9155', 'en', 1, 'https://ror.org/008vf9155 The Donaldson Trust'), (70210, 'https://ror.org/008w6ry40', 'no_lang_code', 1, 'https://ror.org/008w6ry40 Rigaku (United States)'), (70211, 'https://ror.org/008y34898', 'en', 1, 'https://ror.org/008y34898 Guangdong Association of STD and AIDS Prevention and Control 广东省性病艾滋病防治协会'), (70212, 'https://ror.org/009261g92', 'en', 1, 'https://ror.org/009261g92 Celtic FC Foundation'), (70213, 'https://ror.org/00936xm65', 'en', 1, 'https://ror.org/00936xm65 Ajmal College of Arts and Science'), (70214, 'https://ror.org/0093ddg91', 'de', 1, 'https://ror.org/0093ddg91 Niedersächsisches Landesgesundheitsamt'), (70215, 'https://ror.org/0093qrn19', 'en', 1, 'https://ror.org/0093qrn19 Salzburg Global Seminar'), (70216, 'https://ror.org/0093y5e51', 'no_lang_code', 1, 'https://ror.org/0093y5e51 PanNature Trung tâm Con người và Thiên nhiên'), (70217, 'https://ror.org/0094qg225', 'no_lang_code', 1, 'https://ror.org/0094qg225 Advanced Design Consulting USA (United States)'), (70218, 'https://ror.org/0094wp003', 'en', 1, 'https://ror.org/0094wp003 Ecological Sequestration Trust'), (70219, 'https://ror.org/0095m0q98', 'no_lang_code', 1, 'https://ror.org/0095m0q98 Eddy (United States)'), (70220, 'https://ror.org/0096pft28', 'fr', 1, 'https://ror.org/0096pft28 Espoir Vie-Togo'), (70221, 'https://ror.org/0096z2k33', 'en', 1, 'https://ror.org/0096z2k33 Luxembourg School of Business'), (70222, 'https://ror.org/00976p334', 'no_lang_code', 1, 'https://ror.org/00976p334 Calando Pharmaceuticals (United States)'), (70223, 'https://ror.org/009778y68', 'en', 1, 'https://ror.org/009778y68 Project On Government Oversight'), (70224, 'https://ror.org/0097v3890', 'fr', 1, 'https://ror.org/0097v3890 Bibliothèque d''étude et du patrimoine, Bibliothèque de Toulouse'), (70225, 'https://ror.org/009bgdw98', 'en', 1, 'https://ror.org/009bgdw98 North Yorkshire County Council'), (70226, 'https://ror.org/009c3m506', 'no_lang_code', 1, 'https://ror.org/009c3m506 Gamma HealthCare (United States)'), (70227, 'https://ror.org/009d3ws08', 'es', 1, 'https://ror.org/009d3ws08 Instituto de Investigaciones Físicas de Mar del Plata'), (70228, 'https://ror.org/009dhvf97', 'en', 1, 'https://ror.org/009dhvf97 South Western Ambulance Service NHS Foundation Trust'), (70229, 'https://ror.org/009k4kq70', 'no_lang_code', 1, 'https://ror.org/009k4kq70 Cardialen (United States)'), (70230, 'https://ror.org/009kqey70', 'no_lang_code', 1, 'https://ror.org/009kqey70 Kennon (United States)'), (70231, 'https://ror.org/009mm8209', 'no_lang_code', 1, 'https://ror.org/009mm8209 nanoMAG (United States)'), (70232, 'https://ror.org/009n4zx75', 'en', 1, 'https://ror.org/009n4zx75 Conseil Européen de Remanufacture European Remanufacturing Council'), (70233, 'https://ror.org/009ne2259', 'no_lang_code', 1, 'https://ror.org/009ne2259 For Robin (United States)'), (70234, 'https://ror.org/009njsq50', 'en', 1, 'https://ror.org/009njsq50 Yunnan Vocational College of Mechanical and Electrical Technology 云南机电职业技术学院'), (70235, 'https://ror.org/009prqx82', 'no_lang_code', 1, 'https://ror.org/009prqx82 Jaybridge Robotics (United States)'), (70236, 'https://ror.org/009rcpx96', 'en', 1, 'https://ror.org/009rcpx96 Feminist Archive North'), (70237, 'https://ror.org/009rr6x76', 'es', 1, 'https://ror.org/009rr6x76 Instituto Tecnológico Superior de Xalapa'), (70238, 'https://ror.org/009sjag78', 'en', 1, 'https://ror.org/009sjag78 Education Group Akron Аркон'), (70239, 'https://ror.org/009vmn503', 'en', 1, 'https://ror.org/009vmn503 National AIDS Housing Coalition'), (70240, 'https://ror.org/009vrft62', 'no_lang_code', 1, 'https://ror.org/009vrft62 Cole Engineering Services (United States)'), (70241, 'https://ror.org/009x3z174', 'en', 1, 'https://ror.org/009x3z174 Butetown Community Centre'), (70242, 'https://ror.org/009xbxr65', 'en', 1, 'https://ror.org/009xbxr65 Beloved Community Center'), (70243, 'https://ror.org/00a07ag07', 'no_lang_code', 1, 'https://ror.org/00a07ag07 Conjugon (United States)'), (70244, 'https://ror.org/00a0wam85', 'en', 1, 'https://ror.org/00a0wam85 Arizona School for the Arts'), (70245, 'https://ror.org/00a1grh69', 'en', 1, 'https://ror.org/00a1grh69 Medicon Village'), (70246, 'https://ror.org/00a2pr463', 'en', 1, 'https://ror.org/00a2pr463 National Agricultural Genotyping Center'), (70247, 'https://ror.org/00a43hv69', 'no_lang_code', 1, 'https://ror.org/00a43hv69 Benchmark (United Kingdom)'), (70248, 'https://ror.org/00a4e3a70', 'no', 1, 'https://ror.org/00a4e3a70 Trondheim Hjertesenter'), (70249, 'https://ror.org/00a4rps73', 'no_lang_code', 1, 'https://ror.org/00a4rps73 Profu (Sweden)'), (70250, 'https://ror.org/00a91y272', 'en', 1, 'https://ror.org/00a91y272 Redress'), (70251, 'https://ror.org/00aahmr77', 'en', 1, 'https://ror.org/00aahmr77 City of Asylum'), (70252, 'https://ror.org/00ab8jq38', 'en', 1, 'https://ror.org/00ab8jq38 The DaCapo Music Foundation'), (70253, 'https://ror.org/00ad9p542', 'no_lang_code', 1, 'https://ror.org/00ad9p542 Ferric (United States)'), (70254, 'https://ror.org/00aejbn34', 'en', 1, 'https://ror.org/00aejbn34 Polish Cultural Festival Association'), (70255, 'https://ror.org/00ah0qh32', 'en', 1, 'https://ror.org/00ah0qh32 Climate Outreach'), (70256, 'https://ror.org/00akavp61', 'en', 1, 'https://ror.org/00akavp61 Reading Museum'), (70257, 'https://ror.org/00amyy824', 'no_lang_code', 1, 'https://ror.org/00amyy824 In Vitro Admet Laboratories (United States)'), (70258, 'https://ror.org/00an5hx75', 'en', 1, 'https://ror.org/00an5hx75 Bennett University'), (70259, 'https://ror.org/00aqrhw18', 'pt', 1, 'https://ror.org/00aqrhw18 Associação Centro de Estudos de Economia Solidária do Atlântico'), (70260, 'https://ror.org/00aqt1c17', 'no_lang_code', 1, 'https://ror.org/00aqt1c17 Klaria Pharma Holding (Sweden)'), (70261, 'https://ror.org/00awv0k06', 'es', 1, 'https://ror.org/00awv0k06 Instituto de Liderazgo Simone de Beauvoir'), (70262, 'https://ror.org/00axw4v72', 'no_lang_code', 1, 'https://ror.org/00axw4v72 Cerahelix (United States)'), (70263, 'https://ror.org/00axz0e09', 'no_lang_code', 1, 'https://ror.org/00axz0e09 E7 Ventures (United States)'), (70264, 'https://ror.org/00aywxq66', 'ro', 1, 'https://ror.org/00aywxq66 Spitalul Clinic Judeţean de Urgenţă "Pius Brînzeu" Timişoara'), (70265, 'https://ror.org/00az65y50', 'en', 1, 'https://ror.org/00az65y50 Research Organization for Information Science and Technology 高度情報科学技術研究機構'), (70266, 'https://ror.org/00b4tnh45', 'en', 1, 'https://ror.org/00b4tnh45 Campaign Legal Center'), (70267, 'https://ror.org/00b9t3w70', 'no_lang_code', 1, 'https://ror.org/00b9t3w70 TerraGo (United States)'), (70268, 'https://ror.org/00bb5xg53', 'en', 1, 'https://ror.org/00bb5xg53 Minnesota Council of Nonprofits'), (70269, 'https://ror.org/00bcg1285', 'en', 1, 'https://ror.org/00bcg1285 Low Income Investment Fund'), (70270, 'https://ror.org/00bdk5051', 'no_lang_code', 1, 'https://ror.org/00bdk5051 Polar Light Technologies (Sweden)'), (70271, 'https://ror.org/00be2g057', 'en', 1, 'https://ror.org/00be2g057 King Faisal Center for Research and Islamic Studies مركز الملك فيصل للبحوث والدراسات الإسلامية'), (70272, 'https://ror.org/00be4s518', 'en', 1, 'https://ror.org/00be4s518 Theodore Roosevelt Association'), (70273, 'https://ror.org/00bev4j15', 'en', 1, 'https://ror.org/00bev4j15 Sveriges Olympiska Kommitté Swedish Olympic Committee'), (70274, 'https://ror.org/00bhp9x86', 'sv', 1, 'https://ror.org/00bhp9x86 Föreningen Universitetsholdingbolag i Sverige'), (70275, 'https://ror.org/00bhzer06', 'no_lang_code', 1, 'https://ror.org/00bhzer06 Akrotome Imaging (United States)'), (70276, 'https://ror.org/00bk62d14', 'no_lang_code', 1, 'https://ror.org/00bk62d14 Accudyne Systems (United States)'), (70277, 'https://ror.org/00bndmb79', 'no_lang_code', 1, 'https://ror.org/00bndmb79 TecnoBio (Brazil)'), (70278, 'https://ror.org/00bq3m385', 'en', 1, 'https://ror.org/00bq3m385 Arise Citizens'' Policy Project'), (70279, 'https://ror.org/00brf2d87', 'en', 1, 'https://ror.org/00brf2d87 Institute of Acoustics and Sensors "Orso Mario Corbino" Istituto di Acustica e Sensoristica “Orso Mario Corbino”'), (70280, 'https://ror.org/00bshqd32', 'no_lang_code', 1, 'https://ror.org/00bshqd32 Briteseed (United States)'), (70281, 'https://ror.org/00btw3p03', 'no_lang_code', 1, 'https://ror.org/00btw3p03 Nippon Television (Japan) 日本テレビホールディングス株式会社'), (70282, 'https://ror.org/00bv27459', 'es', 1, 'https://ror.org/00bv27459 Instituto Superior de Investigaciones Biológicas'), (70283, 'https://ror.org/00bvkj141', 'no_lang_code', 1, 'https://ror.org/00bvkj141 GS Caltex (South Korea)'), (70284, 'https://ror.org/00bw0hk14', 'en', 1, 'https://ror.org/00bw0hk14 Center for Medical Technology Policy'), (70285, 'https://ror.org/00bw9fz70', 'en', 1, 'https://ror.org/00bw9fz70 The Royal Anglian Regiment Museum'), (70286, 'https://ror.org/00c0kg894', 'en', 1, 'https://ror.org/00c0kg894 Royal Pavilion'), (70287, 'https://ror.org/00c1dss11', 'en', 1, 'https://ror.org/00c1dss11 Pearl Harbor Aviation Museum'), (70288, 'https://ror.org/00c393w57', 'no_lang_code', 1, 'https://ror.org/00c393w57 Intematix (United States)'), (70289, 'https://ror.org/00c4rqe71', 'en', 1, 'https://ror.org/00c4rqe71 Watermans'), (70290, 'https://ror.org/00c6b0n10', 'en', 1, 'https://ror.org/00c6b0n10 J. Paul Getty Museum'), (70291, 'https://ror.org/00c89gb03', 'no_lang_code', 1, 'https://ror.org/00c89gb03 Deveryware (France)'), (70292, 'https://ror.org/00cadqf40', 'en', 1, 'https://ror.org/00cadqf40 The Sophie Lancaster Foundation'), (70293, 'https://ror.org/00cdbmd44', 'en', 1, 'https://ror.org/00cdbmd44 Wired Sussex'), (70294, 'https://ror.org/00cgyrr09', 'en', 1, 'https://ror.org/00cgyrr09 Sussex Recovery College'), (70295, 'https://ror.org/00chcy438', 'en', 1, 'https://ror.org/00chcy438 Pau Costa Foundation'), (70296, 'https://ror.org/00chs5h02', 'en', 1, 'https://ror.org/00chs5h02 Whitechapel Gallery'), (70297, 'https://ror.org/00cjejy66', 'no_lang_code', 1, 'https://ror.org/00cjejy66 iXBlue (France)'), (70298, 'https://ror.org/00cjhgf11', 'no_lang_code', 1, 'https://ror.org/00cjhgf11 FoVI3D (United States)'), (70299, 'https://ror.org/00cmk9h73', 'en', 1, 'https://ror.org/00cmk9h73 Smart Growth America'), (70300, 'https://ror.org/00cmvzh60', 'en', 1, 'https://ror.org/00cmvzh60 The Portico Library'), (70301, 'https://ror.org/00cpnjf66', 'en', 1, 'https://ror.org/00cpnjf66 Kathimerini Publishing (Greece) Oι ΚΑΘΗΜΕΡΙΝΕΣ ΕΚΔΟΣΕΙΣ'), (70302, 'https://ror.org/00cr13h95', 'no_lang_code', 1, 'https://ror.org/00cr13h95 MillenniTek (United States)'), (70303, 'https://ror.org/00ctx3180', 'en', 1, 'https://ror.org/00ctx3180 Anveshi Research Centre for Women''s Studies'), (70304, 'https://ror.org/00cw00f88', 'en', 1, 'https://ror.org/00cw00f88 Media Council of Kenya'), (70305, 'https://ror.org/00cx7pr70', 'no_lang_code', 1, 'https://ror.org/00cx7pr70 Tiri (United Kingdom)'), (70306, 'https://ror.org/00cx9zc82', 'en', 1, 'https://ror.org/00cx9zc82 Hill House Association'), (70307, 'https://ror.org/00czf4z07', 'en', 1, 'https://ror.org/00czf4z07 Pearl Medical Centre'), (70308, 'https://ror.org/00d0y9x67', 'no_lang_code', 1, 'https://ror.org/00d0y9x67 Unlimited Group (United Kingdom)'), (70309, 'https://ror.org/00d2cdk21', 'no_lang_code', 1, 'https://ror.org/00d2cdk21 ReVibe Energy (Sweden)'), (70310, 'https://ror.org/00d32rn51', 'pl', 1, 'https://ror.org/00d32rn51 Centrum Badań Jakości Quality Research Center'), (70311, 'https://ror.org/00d58r705', 'en', 1, 'https://ror.org/00d58r705 Namgyal Tantric College नामग्याल मोनास्ट्री'), (70312, 'https://ror.org/00d6gc809', 'en', 1, 'https://ror.org/00d6gc809 Northampton General Hospital NHS Trust'), (70313, 'https://ror.org/00dah2077', 'en', 1, 'https://ror.org/00dah2077 Consejo Nacional de Areas Protegidas National Council for Protected Areas'), (70314, 'https://ror.org/00darb407', 'en', 1, 'https://ror.org/00darb407 West Of Scotland Housing Association'), (70315, 'https://ror.org/00darzp70', 'no_lang_code', 1, 'https://ror.org/00darzp70 Health Innovations (United States)'), (70316, 'https://ror.org/00dbps023', 'no_lang_code', 1, 'https://ror.org/00dbps023 Éolane (France)'), (70317, 'https://ror.org/00de4mp23', 'no_lang_code', 1, 'https://ror.org/00de4mp23 Marko-Kolor (Poland)'), (70318, 'https://ror.org/00dfkj427', 'no_lang_code', 1, 'https://ror.org/00dfkj427 Summit Associates (United States)'), (70319, 'https://ror.org/00dgyys91', 'en', 1, 'https://ror.org/00dgyys91 Qatar Mobility Innovations Center'), (70320, 'https://ror.org/00djmfe91', 'en', 1, 'https://ror.org/00djmfe91 Schumacher College'), (70321, 'https://ror.org/00dmpd885', 'no_lang_code', 1, 'https://ror.org/00dmpd885 John Tiller Software (United States)'), (70322, 'https://ror.org/00dnwkf25', 'no_lang_code', 1, 'https://ror.org/00dnwkf25 Blue Line Engineering (United States)'), (70323, 'https://ror.org/00dp5t753', 'no_lang_code', 1, 'https://ror.org/00dp5t753 Innoveering (United States)'), (70324, 'https://ror.org/00dpzpk69', 'no_lang_code', 1, 'https://ror.org/00dpzpk69 Ilya Pharma (Sweden)'), (70325, 'https://ror.org/00dqx9006', 'no_lang_code', 1, 'https://ror.org/00dqx9006 MicroVide (United States)'), (70326, 'https://ror.org/00dsaey03', 'en', 1, 'https://ror.org/00dsaey03 New Economy Project'), (70327, 'https://ror.org/00dw32w32', 'en', 1, 'https://ror.org/00dw32w32 The Healthy Pizza Company'), (70328, 'https://ror.org/00dw3s236', 'en', 1, 'https://ror.org/00dw3s236 Tearfund'), (70329, 'https://ror.org/00dwnzj85', 'en', 1, 'https://ror.org/00dwnzj85 Newbattle Abbey College'), (70330, 'https://ror.org/00dxccz84', 'en', 1, 'https://ror.org/00dxccz84 Mpumalanga Deparment of Health'), (70331, 'https://ror.org/00dy9nm84', 'no_lang_code', 1, 'https://ror.org/00dy9nm84 Automated Precision (United States)'), (70332, 'https://ror.org/00dyj9f84', 'en', 1, 'https://ror.org/00dyj9f84 Communities Unlimited'), (70333, 'https://ror.org/00e0czp98', 'en', 1, 'https://ror.org/00e0czp98 Sir Bobby Robson Foundation'), (70334, 'https://ror.org/00e2y6338', 'en', 1, 'https://ror.org/00e2y6338 Centre for Nursing Innovation'), (70335, 'https://ror.org/00e30wp67', 'en', 1, 'https://ror.org/00e30wp67 Northern Ireland Advanced Composites and Engineering Centre'), (70336, 'https://ror.org/00e3esm33', 'en', 1, 'https://ror.org/00e3esm33 National Civil War Centre'), (70337, 'https://ror.org/00e3gp542', 'en', 1, 'https://ror.org/00e3gp542 National Library of New Zealand'), (70338, 'https://ror.org/00e3s7s61', 'no_lang_code', 1, 'https://ror.org/00e3s7s61 BPR Medical (United Kingdom)'), (70339, 'https://ror.org/00e452s52', 'en', 1, 'https://ror.org/00e452s52 Highlanes Gallery'), (70340, 'https://ror.org/00e633366', 'en', 1, 'https://ror.org/00e633366 Scottish Cancer Foundation'), (70341, 'https://ror.org/00e6aar40', 'no_lang_code', 1, 'https://ror.org/00e6aar40 Illumisonics (Canada)'), (70342, 'https://ror.org/00e7yhp68', 'no_lang_code', 1, 'https://ror.org/00e7yhp68 SR Research (Canada)'), (70343, 'https://ror.org/00e8byk21', 'en', 1, 'https://ror.org/00e8byk21 Soldiers of Oxfordshire Museum'), (70344, 'https://ror.org/00e8f1a50', 'de', 1, 'https://ror.org/00e8f1a50 Theologische Fakultät Paderborn'), (70345, 'https://ror.org/00e965d05', 'no_lang_code', 1, 'https://ror.org/00e965d05 Dfuzion (United States)'), (70346, 'https://ror.org/00eb43c50', 'en', 1, 'https://ror.org/00eb43c50 Institute for Justice & Democracy in Haiti'), (70347, 'https://ror.org/00ebf6w66', 'en', 1, 'https://ror.org/00ebf6w66 Americas Media Initiative'), (70348, 'https://ror.org/00ecnfg66', 'en', 1, 'https://ror.org/00ecnfg66 Political Research Associates'), (70349, 'https://ror.org/00ed5y156', 'en', 1, 'https://ror.org/00ed5y156 Koninklijke Maatschappij voor Dierkunde Antwerpen Royal Zoological Society of Antwerp'), (70350, 'https://ror.org/00eep5m87', 'en', 1, 'https://ror.org/00eep5m87 International Association of Forensic Nurses'), (70351, 'https://ror.org/00efjzq30', 'sv', 1, 'https://ror.org/00efjzq30 Kalmar Läns Museum'), (70352, 'https://ror.org/00ej43w89', 'en', 1, 'https://ror.org/00ej43w89 Dallas Office of Emergency Management'), (70353, 'https://ror.org/00ejkk087', 'en', 1, 'https://ror.org/00ejkk087 Baroness Warsi Foundation'), (70354, 'https://ror.org/00ek25n05', 'no_lang_code', 1, 'https://ror.org/00ek25n05 Advanced Medical Solutions Group (United Kingdom)'), (70355, 'https://ror.org/00ekkwn87', 'no_lang_code', 1, 'https://ror.org/00ekkwn87 Sedibeng TVET College'), (70356, 'https://ror.org/00em2ph88', 'no_lang_code', 1, 'https://ror.org/00em2ph88 Catalent (United Kingdom)'), (70357, 'https://ror.org/00erpmf75', 'en', 1, 'https://ror.org/00erpmf75 Institute of Geography Named after Academician Hasan Aliyev'), (70358, 'https://ror.org/00esg0r84', 'en', 1, 'https://ror.org/00esg0r84 Abilities United'), (70359, 'https://ror.org/00f1wmk62', 'es', 1, 'https://ror.org/00f1wmk62 Universidad Iberoamericana León'), (70360, 'https://ror.org/00f20ws83', 'es', 1, 'https://ror.org/00f20ws83 Hospital Angeles Clinica Londres'), (70361, 'https://ror.org/00f21ds03', 'en', 1, 'https://ror.org/00f21ds03 L''Istituto dei Sordi di Torino Turin Institute for the Deaf'), (70362, 'https://ror.org/00f2tck44', 'fr', 1, 'https://ror.org/00f2tck44 Ministère de l''Agriculture et des Aménagements Hydrauliques'), (70363, 'https://ror.org/00f4q6m47', 'en', 1, 'https://ror.org/00f4q6m47 British Screen Advisory Council'), (70364, 'https://ror.org/00f5a7a07', 'en', 1, 'https://ror.org/00f5a7a07 Rural Development Agency ສູນພັດທະນາຊົນນະບົດ'), (70365, 'https://ror.org/00fb17655', 'en', 1, 'https://ror.org/00fb17655 DJ Academy of Design'), (70366, 'https://ror.org/00fb7th39', 'no_lang_code', 1, 'https://ror.org/00fb7th39 Elsit (Poland)'), (70367, 'https://ror.org/00fc9de56', 'no_lang_code', 1, 'https://ror.org/00fc9de56 Dog Star Technologies (United States)'), (70368, 'https://ror.org/00fd8gy33', 'en', 1, 'https://ror.org/00fd8gy33 Yorkshire Dales Millennium Trust'), (70369, 'https://ror.org/00feqrp17', 'no_lang_code', 1, 'https://ror.org/00feqrp17 Hydronalix (United States)'), (70370, 'https://ror.org/00fgx8j22', 'no_lang_code', 1, 'https://ror.org/00fgx8j22 Montfort Social Institute మోంట్ఫోర్ట్ సోషల్ ఇన్స్టిట్యూట్'); INSERT INTO `rors` VALUES (70371, 'https://ror.org/00fkta435', 'no_lang_code', 1, 'https://ror.org/00fkta435 1928 Diagnostics (Sweden)'), (70372, 'https://ror.org/00fq2kn23', 'no_lang_code', 1, 'https://ror.org/00fq2kn23 Associated Research (United States)'), (70373, 'https://ror.org/00fv3qf02', 'no_lang_code', 1, 'https://ror.org/00fv3qf02 Lyndra Therapeutics (United States)'), (70374, 'https://ror.org/00fvsrz77', 'en', 1, 'https://ror.org/00fvsrz77 Society for Clinical Trials'), (70375, 'https://ror.org/00fwfdb54', 'no_lang_code', 1, 'https://ror.org/00fwfdb54 Telesystem (Poland)'), (70376, 'https://ror.org/00fyaz829', 'en', 1, 'https://ror.org/00fyaz829 Catholics for Choice'), (70377, 'https://ror.org/00fymn945', 'en', 1, 'https://ror.org/00fymn945 Pan-African Association'), (70378, 'https://ror.org/00fz3d156', 'no_lang_code', 1, 'https://ror.org/00fz3d156 SmugMug (United States)'), (70379, 'https://ror.org/00fzeeb88', 'de', 1, 'https://ror.org/00fzeeb88 Landesamt für Soziales und Versorgung des Landes Brandenburg'), (70380, 'https://ror.org/00fzv2y47', 'en', 1, 'https://ror.org/00fzv2y47 Maynard Institute'), (70381, 'https://ror.org/00g04a530', 'es', 1, 'https://ror.org/00g04a530 Instituto de Física del Sur'), (70382, 'https://ror.org/00g18j041', 'no_lang_code', 1, 'https://ror.org/00g18j041 CM-Tec (United States)'), (70383, 'https://ror.org/00g3bkn86', 'ms', 1, 'https://ror.org/00g3bkn86 Sarawak Biodiversity Centre'), (70384, 'https://ror.org/00g5g8212', 'no_lang_code', 1, 'https://ror.org/00g5g8212 Ipsos (United States)'), (70385, 'https://ror.org/00g65m314', 'no_lang_code', 1, 'https://ror.org/00g65m314 Applied Optronics (United States)'), (70386, 'https://ror.org/00g71t343', 'no_lang_code', 1, 'https://ror.org/00g71t343 Greinon (Sweden)'), (70387, 'https://ror.org/00g732a62', 'en', 1, 'https://ror.org/00g732a62 Calorx Teachers'' University'), (70388, 'https://ror.org/00g78ej16', 'en', 1, 'https://ror.org/00g78ej16 Research Institute for Disabled Consumers'), (70389, 'https://ror.org/00g7h8w74', 'en', 1, 'https://ror.org/00g7h8w74 Africa Centre for Energy Policy'), (70390, 'https://ror.org/00g832k89', 'pt', 1, 'https://ror.org/00g832k89 Grupo Montecitrus'), (70391, 'https://ror.org/00g96hn54', 'no_lang_code', 1, 'https://ror.org/00g96hn54 Bio Alternative Medical Devices (United Kingdom)'), (70392, 'https://ror.org/00gc37a46', 'no_lang_code', 1, 'https://ror.org/00gc37a46 Mowi (United Kingdom)'), (70393, 'https://ror.org/00gc8q349', 'no_lang_code', 1, 'https://ror.org/00gc8q349 Nalu Scientific (United States)'), (70394, 'https://ror.org/00gd30v42', 'no_lang_code', 1, 'https://ror.org/00gd30v42 Infinia ML (United States)'), (70395, 'https://ror.org/00gd4j561', 'en', 1, 'https://ror.org/00gd4j561 West Virginia Bureau of Senior Services'), (70396, 'https://ror.org/00gdary87', 'en', 1, 'https://ror.org/00gdary87 Mt Albert Primary School'), (70397, 'https://ror.org/00gesww49', 'en', 1, 'https://ror.org/00gesww49 Archivo nacional del Ecuador National Archives of Ecuador'), (70398, 'https://ror.org/00gfzq956', 'en', 1, 'https://ror.org/00gfzq956 The McMinn Centre'), (70399, 'https://ror.org/00ghwyh51', 'en', 1, 'https://ror.org/00ghwyh51 Environmental Grantmakers Association'), (70400, 'https://ror.org/00gkr8739', 'en', 1, 'https://ror.org/00gkr8739 Psychoanalytical Association Психоаналитическая Ассоциация'), (70401, 'https://ror.org/00gm4dn95', 'no_lang_code', 1, 'https://ror.org/00gm4dn95 Richard Carter and Associates (United Kingdom)'), (70402, 'https://ror.org/00gpd0h05', 'no_lang_code', 1, 'https://ror.org/00gpd0h05 Omnikon (Poland)'), (70403, 'https://ror.org/00gsd6w43', 'en', 1, 'https://ror.org/00gsd6w43 Scarborough Archaeological and Historical Society'), (70404, 'https://ror.org/00gvdzs88', 'en', 1, 'https://ror.org/00gvdzs88 Color Of Change'), (70405, 'https://ror.org/00gwr4a27', 'en', 1, 'https://ror.org/00gwr4a27 Polismyndigheten Swedish Police Authority'), (70406, 'https://ror.org/00gxhds15', 'no_lang_code', 1, 'https://ror.org/00gxhds15 Ndifuna Ukwazi'), (70407, 'https://ror.org/00gy7w809', 'en', 1, 'https://ror.org/00gy7w809 Dronah Foundation'), (70408, 'https://ror.org/00gyqqh04', 'no_lang_code', 1, 'https://ror.org/00gyqqh04 Fiber Optic Manufacturing in Space (United States)'), (70409, 'https://ror.org/00gzp0b21', 'en', 1, 'https://ror.org/00gzp0b21 Association on Higher Education And Disability'), (70410, 'https://ror.org/00h0z3d69', 'en', 1, 'https://ror.org/00h0z3d69 Exeter Northcott Theatre'), (70411, 'https://ror.org/00h2d3028', 'no_lang_code', 1, 'https://ror.org/00h2d3028 Umalusi'), (70412, 'https://ror.org/00h2xqq06', 'no_lang_code', 1, 'https://ror.org/00h2xqq06 Nano Control (Sweden)'), (70413, 'https://ror.org/00h33cn96', 'no_lang_code', 1, 'https://ror.org/00h33cn96 Genendeavor (United States)'), (70414, 'https://ror.org/00h63w240', 'en', 1, 'https://ror.org/00h63w240 Universal University Универсальный университет'), (70415, 'https://ror.org/00h6bkr27', 'en', 1, 'https://ror.org/00h6bkr27 Museum Ethnographers Group'), (70416, 'https://ror.org/00h9tn549', 'en', 1, 'https://ror.org/00h9tn549 Missenden Centre'), (70417, 'https://ror.org/00hc2mf91', 'no_lang_code', 1, 'https://ror.org/00hc2mf91 Microsoft (Brazil)'), (70418, 'https://ror.org/00hc63q81', 'en', 1, 'https://ror.org/00hc63q81 Belfast Charitable Society'), (70419, 'https://ror.org/00hcdm003', 'en', 1, 'https://ror.org/00hcdm003 Curatio International Foundation'), (70420, 'https://ror.org/00hdpb239', 'en', 1, 'https://ror.org/00hdpb239 The Tree Council'), (70421, 'https://ror.org/00hhkje33', 'en', 1, 'https://ror.org/00hhkje33 Royal Horticultural Society'), (70422, 'https://ror.org/00hpx8e31', 'en', 1, 'https://ror.org/00hpx8e31 Asia Pacific Forum on Women, Law and Development'), (70423, 'https://ror.org/00hqts921', 'en', 1, 'https://ror.org/00hqts921 New Virginia Majority Education Fund'), (70424, 'https://ror.org/00htbzg76', 'en', 1, 'https://ror.org/00htbzg76 Saxon Memorial Foundation Stiftung Sächsische Gedenkstätten zur Erinnerung an die Opfer politischer Gewaltherrschaft'), (70425, 'https://ror.org/00htsfa41', 'en', 1, 'https://ror.org/00htsfa41 Consumer Council for Water'), (70426, 'https://ror.org/00hty4y33', 'en', 1, 'https://ror.org/00hty4y33 Headlands Center for the Arts'), (70427, 'https://ror.org/00hy04j04', 'en', 1, 'https://ror.org/00hy04j04 The Judicial General Council of Mongolia Монгол Улсын Шүүхийн Ерөнхий Зөвлөл'), (70428, 'https://ror.org/00hyx3015', 'no_lang_code', 1, 'https://ror.org/00hyx3015 Frequency Management International (United States)'), (70429, 'https://ror.org/00hzz2423', 'en', 1, 'https://ror.org/00hzz2423 National Gamete Donation Trust'), (70430, 'https://ror.org/00j1bpb72', 'no_lang_code', 1, 'https://ror.org/00j1bpb72 Johnson Engineering (United States)'), (70431, 'https://ror.org/00j1hxb77', 'en', 1, 'https://ror.org/00j1hxb77 Scottish Wildlife Trust'), (70432, 'https://ror.org/00j3vdq65', 'no_lang_code', 1, 'https://ror.org/00j3vdq65 Applied BioMath (United States)'), (70433, 'https://ror.org/00j4kjd92', 'no_lang_code', 1, 'https://ror.org/00j4kjd92 PocketLab (United States)'), (70434, 'https://ror.org/00j557793', 'en', 1, 'https://ror.org/00j557793 Western Organization of Resource Councils'), (70435, 'https://ror.org/00j5fn448', 'en', 1, 'https://ror.org/00j5fn448 Loden Foundation'), (70436, 'https://ror.org/00j5pc081', 'en', 1, 'https://ror.org/00j5pc081 The UK Sepsis Trust'), (70437, 'https://ror.org/00j71tm53', 'en', 1, 'https://ror.org/00j71tm53 Beijing Yilian Legal Aid and Research Center of Labor 北京义联劳动法援助与研究中心'), (70438, 'https://ror.org/00j75nc06', 'en', 1, 'https://ror.org/00j75nc06 First Floor Gallery Harare'), (70439, 'https://ror.org/00j7d4t09', 'fr', 1, 'https://ror.org/00j7d4t09 Institut Européen De La Qualité Totale'), (70440, 'https://ror.org/00j7mmn70', 'en', 1, 'https://ror.org/00j7mmn70 Science on Stage Europe'), (70441, 'https://ror.org/00j82ww20', 'en', 1, 'https://ror.org/00j82ww20 Low Gillerthwaite Field Centre'), (70442, 'https://ror.org/00ja58288', 'en', 1, 'https://ror.org/00ja58288 Wheal Martyn'), (70443, 'https://ror.org/00ja8fs25', 'en', 1, 'https://ror.org/00ja8fs25 Institute for Society, Population and Nature Instituto Sociedade População Natureza'), (70444, 'https://ror.org/00jd4hc03', 'en', 1, 'https://ror.org/00jd4hc03 Chomhairle Náisiúnta Eacnamaíoch Shóialta National Economic and Social Council'), (70445, 'https://ror.org/00je08x63', 'en', 1, 'https://ror.org/00je08x63 Tygerberg Children’s Hospital'), (70446, 'https://ror.org/00je6er82', 'en', 1, 'https://ror.org/00je6er82 Mississippi Division of Medicaid'), (70447, 'https://ror.org/00jeph960', 'pt', 1, 'https://ror.org/00jeph960 Museu do Samba'), (70448, 'https://ror.org/00jet1p36', 'en', 1, 'https://ror.org/00jet1p36 Indian Institute of Forest Management भारतीय वन प्रबन्धन संस्थान'), (70449, 'https://ror.org/00jfgw542', 'ms', 1, 'https://ror.org/00jfgw542 Hospital Sultanah Nur Zahirah'), (70450, 'https://ror.org/00jgjke27', 'no_lang_code', 1, 'https://ror.org/00jgjke27 Coating Systems Laboratories (United States)'), (70451, 'https://ror.org/00jgz5a53', 'en', 1, 'https://ror.org/00jgz5a53 Sigmund Freud Museum'), (70452, 'https://ror.org/00jh87v98', 'en', 1, 'https://ror.org/00jh87v98 International Lesbian, Gay, Bisexual, Trans and Intersex Association'), (70453, 'https://ror.org/00jhfm416', 'pt', 1, 'https://ror.org/00jhfm416 Associação Brasileira de Esclerose Lateral Amiotrófica'), (70454, 'https://ror.org/00jhpn059', 'en', 1, 'https://ror.org/00jhpn059 American University of Mongolia Монгол дахь Америк Их Сургууль'), (70455, 'https://ror.org/00jmssa97', 'en', 1, 'https://ror.org/00jmssa97 National Legal Aid & Defender Association'), (70456, 'https://ror.org/00jmvpm31', 'en', 1, 'https://ror.org/00jmvpm31 Institution of Engineering Designers'), (70457, 'https://ror.org/00jpxw560', 'no_lang_code', 1, 'https://ror.org/00jpxw560 Antheia (United States)'), (70458, 'https://ror.org/00jreav89', 'es', 1, 'https://ror.org/00jreav89 Hospital Base'), (70459, 'https://ror.org/00jxnw682', 'ms', 1, 'https://ror.org/00jxnw682 Hospital Tuanku Ja’afar'), (70460, 'https://ror.org/00k1jzy36', 'en', 1, 'https://ror.org/00k1jzy36 Carnegie UK Trust'), (70461, 'https://ror.org/00k2j2d15', 'no_lang_code', 1, 'https://ror.org/00k2j2d15 Dirac Research (Sweden)'), (70462, 'https://ror.org/00k2ybc23', 'no_lang_code', 1, 'https://ror.org/00k2ybc23 Cavis Technologies (Sweden)'), (70463, 'https://ror.org/00k2ykm07', 'no_lang_code', 1, 'https://ror.org/00k2ykm07 Industrial & Biomedical Sensors (United States)'), (70464, 'https://ror.org/00k64aw37', 'en', 1, 'https://ror.org/00k64aw37 Scottish Family Business Association'), (70465, 'https://ror.org/00k6qmq88', 'en', 1, 'https://ror.org/00k6qmq88 Association of North East Councils'), (70466, 'https://ror.org/00k7xg884', 'en', 1, 'https://ror.org/00k7xg884 World Energy Council'), (70467, 'https://ror.org/00k8d8f82', 'en', 1, 'https://ror.org/00k8d8f82 The Bowes Museum'), (70468, 'https://ror.org/00k8f0f41', 'en', 1, 'https://ror.org/00k8f0f41 National Institute of Technical Teachers’ Training and Research'), (70469, 'https://ror.org/00k8r3g38', 'no_lang_code', 1, 'https://ror.org/00k8r3g38 TPK (United States)'), (70470, 'https://ror.org/00k8rrx20', 'pt', 1, 'https://ror.org/00k8rrx20 Centro de Estudos das Relações de Trabalho e Desigualdades'), (70471, 'https://ror.org/00k8z3892', 'en', 1, 'https://ror.org/00k8z3892 Leicestershire Fire and Rescue Service'), (70472, 'https://ror.org/00kbh2120', 'no_lang_code', 1, 'https://ror.org/00kbh2120 Herbal Apothecary (United Kingdom)'), (70473, 'https://ror.org/00kdkx513', 'en', 1, 'https://ror.org/00kdkx513 African Heritage and Educational Centre'), (70474, 'https://ror.org/00kdmt348', 'no_lang_code', 1, 'https://ror.org/00kdmt348 Cellar Door Labs (United States)'), (70475, 'https://ror.org/00ke1nc44', 'de', 1, 'https://ror.org/00ke1nc44 Deutscher Beton- und Bautechnik-Verein'), (70476, 'https://ror.org/00kewvc41', 'fr', 1, 'https://ror.org/00kewvc41 Laboratoire D''étude des Résidus et Contaminants Dans les Aliments'), (70477, 'https://ror.org/00kf1a996', 'pt', 1, 'https://ror.org/00kf1a996 Casa Fluminense'), (70478, 'https://ror.org/00kgt0r22', 'no_lang_code', 1, 'https://ror.org/00kgt0r22 Studi'), (70479, 'https://ror.org/00kgx1e52', 'en', 1, 'https://ror.org/00kgx1e52 Caledonia Housing Association'), (70480, 'https://ror.org/00khkb614', 'en', 1, 'https://ror.org/00khkb614 Laboratory of Excellence for Financial Regulation'), (70481, 'https://ror.org/00knfed84', 'en', 1, 'https://ror.org/00knfed84 Bangladesh Institute of International and Strategic Studies বাংলাদেশ ইনস্টিটিউট অফ ইন্টারন্যাশনাল এন্ড স্ট্রাটেজিক স্টাডিজ'), (70482, 'https://ror.org/00kqgxx94', 'en', 1, 'https://ror.org/00kqgxx94 African Studies Association of India'), (70483, 'https://ror.org/00krgnp64', 'en', 1, 'https://ror.org/00krgnp64 London Sinfonietta'), (70484, 'https://ror.org/00ksfyn98', 'en', 1, 'https://ror.org/00ksfyn98 Centre for Investigative Journalism'), (70485, 'https://ror.org/00kvy8r73', 'en', 1, 'https://ror.org/00kvy8r73 The Mountain Institute'), (70486, 'https://ror.org/00m0sd163', 'en', 1, 'https://ror.org/00m0sd163 Religious Coalition for Reproductive Choice'), (70487, 'https://ror.org/00m1hwg25', 'en', 1, 'https://ror.org/00m1hwg25 English & Media Centre'), (70488, 'https://ror.org/00m1t4240', 'en', 1, 'https://ror.org/00m1t4240 National Library of Laos ຫໍສະໝຸດແຫ່ງຊາດ'), (70489, 'https://ror.org/00m48be82', 'en', 1, 'https://ror.org/00m48be82 National Council for Voluntary Youth Services'), (70490, 'https://ror.org/00m6ag204', 'en', 1, 'https://ror.org/00m6ag204 Pulitzer Arts Foundation'), (70491, 'https://ror.org/00mddz208', 'no_lang_code', 1, 'https://ror.org/00mddz208 And Technology Research (United Kingdom)'), (70492, 'https://ror.org/00mezra25', 'en', 1, 'https://ror.org/00mezra25 The Hans Gál Society'), (70493, 'https://ror.org/00mg9qs62', 'no_lang_code', 1, 'https://ror.org/00mg9qs62 GC Systems (United States)'), (70494, 'https://ror.org/00mhw7g56', 'no_lang_code', 1, 'https://ror.org/00mhw7g56 Tulana'), (70495, 'https://ror.org/00mja9e27', 'en', 1, 'https://ror.org/00mja9e27 Kyrgyzskaya State Academy of Physical Culture and Sports Кыргызская государственная академия физической культуры и спорта'), (70496, 'https://ror.org/00mkb4d14', 'hu', 1, 'https://ror.org/00mkb4d14 Lechner Tudásközpont'), (70497, 'https://ror.org/00mkdy143', 'no_lang_code', 1, 'https://ror.org/00mkdy143 Vicore Pharma (Sweden)'), (70498, 'https://ror.org/00mm8xk76', 'it', 1, 'https://ror.org/00mm8xk76 Istituto di Istruzione Secondaria Superiore "V. Lilla" Francavilla Fontana - Oria'), (70499, 'https://ror.org/00mmb0c67', 'en', 1, 'https://ror.org/00mmb0c67 Human Resource Development Center Център за развитие на човешките ресурси'), (70500, 'https://ror.org/00mmkx194', 'en', 1, 'https://ror.org/00mmkx194 Progress Michigan'), (70501, 'https://ror.org/00mnsjn75', 'en', 1, 'https://ror.org/00mnsjn75 Institute of Forensic Sciences Instituto de Ciencias Forenses de Puerto Rico'), (70502, 'https://ror.org/00mp54j66', 'en', 1, 'https://ror.org/00mp54j66 Bryansk Regional Scientific Universal Library. F. I. Tyutchev'), (70503, 'https://ror.org/00mqaf442', 'no_lang_code', 1, 'https://ror.org/00mqaf442 GTS (Denmark)'), (70504, 'https://ror.org/00ms2qt30', 'no_lang_code', 1, 'https://ror.org/00ms2qt30 IntelliWheels (United States)'), (70505, 'https://ror.org/00mvdnr09', 'no_lang_code', 1, 'https://ror.org/00mvdnr09 Mach Diamond Propulsion (United States)'), (70506, 'https://ror.org/00mx4ey95', 'no_lang_code', 1, 'https://ror.org/00mx4ey95 Innovative Imaging and Research (United States)'), (70507, 'https://ror.org/00mycjp45', 'no_lang_code', 1, 'https://ror.org/00mycjp45 Custom Electronics (United States)'), (70508, 'https://ror.org/00mz2b614', 'en', 1, 'https://ror.org/00mz2b614 The Culture Capital Exchange'), (70509, 'https://ror.org/00n03f122', 'pt', 1, 'https://ror.org/00n03f122 Malungu'), (70510, 'https://ror.org/00n0f0m43', 'no_lang_code', 1, 'https://ror.org/00n0f0m43 Praxis (United Kingdom)'), (70511, 'https://ror.org/00n1h4322', 'pl', 1, 'https://ror.org/00n1h4322 Wojewódzki Szpital Specjalistyczny we Wrocławiu'), (70512, 'https://ror.org/00n1qg914', 'en', 1, 'https://ror.org/00n1qg914 Methodology and Quality of Life Unit in Oncology Unité de Méthodologie et de Qualité de Vie en Cancérologie'), (70513, 'https://ror.org/00n29yx59', 'no_lang_code', 1, 'https://ror.org/00n29yx59 Brockmann Geomatics (Sweden)'), (70514, 'https://ror.org/00n3bma30', 'en', 1, 'https://ror.org/00n3bma30 The Operational Research Society'), (70515, 'https://ror.org/00n3xk635', 'en', 1, 'https://ror.org/00n3xk635 Libraries Tasmania'), (70516, 'https://ror.org/00n6bec83', 'no_lang_code', 1, 'https://ror.org/00n6bec83 Guernsey Coating Laboratories (United States)'), (70517, 'https://ror.org/00n860n87', 'en', 1, 'https://ror.org/00n860n87 St. Vrain Valley School District'), (70518, 'https://ror.org/00n9dn158', 'fr', 1, 'https://ror.org/00n9dn158 Institut Franco-Chinois de l''Energie Nucléaire 中法核工程与技术学院'), (70519, 'https://ror.org/00n9sjd15', 'en', 1, 'https://ror.org/00n9sjd15 Center for Human Rights and Conflict Resolution'), (70520, 'https://ror.org/00nbvsp70', 'en', 1, 'https://ror.org/00nbvsp70 Pretrial Services Agency for the District of Columbia'), (70521, 'https://ror.org/00nc5nv80', 'no_lang_code', 1, 'https://ror.org/00nc5nv80 Midsummer (Sweden)'), (70522, 'https://ror.org/00nc9jd53', 'no_lang_code', 1, 'https://ror.org/00nc9jd53 Kharkiv Lit Museum Харківський літературний музей'), (70523, 'https://ror.org/00nge9944', 'en', 1, 'https://ror.org/00nge9944 Law & Society Trust'), (70524, 'https://ror.org/00nh4sd73', 'en', 1, 'https://ror.org/00nh4sd73 UK Quality Ash Association'), (70525, 'https://ror.org/00nj4dw70', 'en', 1, 'https://ror.org/00nj4dw70 Action Against Medical Accidents'), (70526, 'https://ror.org/00nmjtf96', 'no_lang_code', 1, 'https://ror.org/00nmjtf96 Catalina (United States)'), (70527, 'https://ror.org/00nmq2g35', 'no_lang_code', 1, 'https://ror.org/00nmq2g35 Integrative Research Laboratories'), (70528, 'https://ror.org/00nmsgd25', 'en', 1, 'https://ror.org/00nmsgd25 Keith Khan Associates'), (70529, 'https://ror.org/00nn13598', 'no_lang_code', 1, 'https://ror.org/00nn13598 Edge One (United States)'), (70530, 'https://ror.org/00nn27y59', 'en', 1, 'https://ror.org/00nn27y59 World Policy Institute'), (70531, 'https://ror.org/00nnrh863', 'en', 1, 'https://ror.org/00nnrh863 Tajik State Institute of Languages ДОНИШКАДАИ ДАВЛАТИИ ЗАБОЩОИ тодикистон БА номи сотим УЛУГЗОДА'), (70532, 'https://ror.org/00nrdj674', 'en', 1, 'https://ror.org/00nrdj674 Columbia Global Centers'), (70533, 'https://ror.org/00nsfc592', 'no_lang_code', 1, 'https://ror.org/00nsfc592 Atrogi (Sweden)'), (70534, 'https://ror.org/00nwdkz22', 'en', 1, 'https://ror.org/00nwdkz22 Institute of Philosophy Інстытут філасофіі Нацыянальнай акадэміі навук Беларусі Институт философии Национальной академии наук Беларуси'), (70535, 'https://ror.org/00nwkxv42', 'en', 1, 'https://ror.org/00nwkxv42 McCrone Research Institute'), (70536, 'https://ror.org/00nx8qv29', 'en', 1, 'https://ror.org/00nx8qv29 Siena School for Liberal Arts'), (70537, 'https://ror.org/00nxm0568', 'en', 1, 'https://ror.org/00nxm0568 Lillstreet Art Center'), (70538, 'https://ror.org/00nz6vc25', 'en', 1, 'https://ror.org/00nz6vc25 Middle Rio Grande Development Council'), (70539, 'https://ror.org/00p1gt488', 'en', 1, 'https://ror.org/00p1gt488 European Association for the Defence of Human Rights'), (70540, 'https://ror.org/00p3qg519', 'en', 1, 'https://ror.org/00p3qg519 Exact Sports'), (70541, 'https://ror.org/00p5gtp56', 'no_lang_code', 1, 'https://ror.org/00p5gtp56 Patriksson Communication (Sweden)'), (70542, 'https://ror.org/00p65td76', 'en', 1, 'https://ror.org/00p65td76 Royal Pigeon Racing Association'), (70543, 'https://ror.org/00p6c9322', 'no_lang_code', 1, 'https://ror.org/00p6c9322 Ngami Data Services (Botswana)'), (70544, 'https://ror.org/00p7ztx41', 'en', 1, 'https://ror.org/00p7ztx41 Belarusian Economic Research and Outreach Center'), (70545, 'https://ror.org/00p957h13', 'en', 1, 'https://ror.org/00p957h13 Institute for Social Development Studies Viện nghiên cứu phát triển xã hội'), (70546, 'https://ror.org/00p9qs658', 'en', 1, 'https://ror.org/00p9qs658 Teller Madsen'), (70547, 'https://ror.org/00pahkj72', 'no_lang_code', 1, 'https://ror.org/00pahkj72 Xilinx (Ireland)'), (70548, 'https://ror.org/00panym11', 'no_lang_code', 1, 'https://ror.org/00panym11 Cairn Biosciences (United States)'), (70549, 'https://ror.org/00pcg1863', 'en', 1, 'https://ror.org/00pcg1863 Booksellers Association'), (70550, 'https://ror.org/00pcsg584', 'en', 1, 'https://ror.org/00pcsg584 Turkiye Diyanet Foundation'), (70551, 'https://ror.org/00pf88j43', 'no_lang_code', 1, 'https://ror.org/00pf88j43 WilderShares (United States)'), (70552, 'https://ror.org/00pftgq30', 'en', 1, 'https://ror.org/00pftgq30 DST Centre for Policy Research'), (70553, 'https://ror.org/00pg29k97', 'en', 1, 'https://ror.org/00pg29k97 Intercultural Dialogue Foundation Interkulturális Párbeszéd Alapítvány'), (70554, 'https://ror.org/00pj4py55', 'no_lang_code', 1, 'https://ror.org/00pj4py55 American Systems (United States)'), (70555, 'https://ror.org/00pjvg681', 'no_lang_code', 1, 'https://ror.org/00pjvg681 Global Aircraft (United States)'), (70556, 'https://ror.org/00pk8w333', 'en', 1, 'https://ror.org/00pk8w333 Bolton Library and Museum Services'), (70557, 'https://ror.org/00pkccj03', 'no_lang_code', 1, 'https://ror.org/00pkccj03 Magna-Tech P/M Labs (United States)'), (70558, 'https://ror.org/00pkkjm33', 'no_lang_code', 1, 'https://ror.org/00pkkjm33 Mistral Security (United States)'), (70559, 'https://ror.org/00pkp3a47', 'en', 1, 'https://ror.org/00pkp3a47 Nkuzi Development Association'), (70560, 'https://ror.org/00pvp5q54', 'en', 1, 'https://ror.org/00pvp5q54 State Cryptography Administration 国家密码管理局'), (70561, 'https://ror.org/00pvy5f43', 'en', 1, 'https://ror.org/00pvy5f43 Da Nang Institute For Socio - Economic Development VIỆN NGHIÊN CỨU PHÁT TRIỂN KINH TẾ - XÃ HỘI ĐÀ NẴNG'), (70562, 'https://ror.org/00pyvsn14', 'en', 1, 'https://ror.org/00pyvsn14 British Association of Social Workers'), (70563, 'https://ror.org/00q0e7f94', 'no_lang_code', 1, 'https://ror.org/00q0e7f94 Tập đoàn Bưu chính Viễn thông Việt Nam Vietnam Posts and Telecommunications Group (Vietnam)'), (70564, 'https://ror.org/00q1sca35', 'en', 1, 'https://ror.org/00q1sca35 Carnegie Moscow Center Московский Центр Карнеги'), (70565, 'https://ror.org/00q29t979', 'no_lang_code', 1, 'https://ror.org/00q29t979 American Engineering & Manufacturing (United States)'), (70566, 'https://ror.org/00q4d6m68', 'no_lang_code', 1, 'https://ror.org/00q4d6m68 Glider Factory in Jeżów (Poland) Zakład Szybowcowy Jeźów Henryk Mynarski'), (70567, 'https://ror.org/00q5t6695', 'no_lang_code', 1, 'https://ror.org/00q5t6695 Harland Medical Systems (United States)'), (70568, 'https://ror.org/00q6vbk50', 'en', 1, 'https://ror.org/00q6vbk50 Southern Mutual Help Association'), (70569, 'https://ror.org/00q80jg86', 'en', 1, 'https://ror.org/00q80jg86 Champs Public Health Collaborative'), (70570, 'https://ror.org/00q89h712', 'no_lang_code', 1, 'https://ror.org/00q89h712 Chem-Master International (United States)'), (70571, 'https://ror.org/00q8ds557', 'en', 1, 'https://ror.org/00q8ds557 The State Historical and Cultural Reserve "Trypillya Culture" Державний історико-культурний заповідник «Трипільська культура»'), (70572, 'https://ror.org/00q8xtg52', 'en', 1, 'https://ror.org/00q8xtg52 Palmetto Research Center'), (70573, 'https://ror.org/00q9x4d93', 'no_lang_code', 1, 'https://ror.org/00q9x4d93 Eureka Aerospace (United States)'), (70574, 'https://ror.org/00qavst65', 'en', 1, 'https://ror.org/00qavst65 Wuhan Puai Hospital 武汉普爱医院'), (70575, 'https://ror.org/00qb7v529', 'it', 1, 'https://ror.org/00qb7v529 Archivio di Stato di Roma'), (70576, 'https://ror.org/00qbdg904', 'en', 1, 'https://ror.org/00qbdg904 Road Clinical Hospital on Novosibirsk-Main JSC Russian Railways НУЗ "Дорожная клиническая больница на ст Новосибирск-Главный ОАО "РЖД"'), (70577, 'https://ror.org/00qbns296', 'no_lang_code', 1, 'https://ror.org/00qbns296 Crestone (United States)'), (70578, 'https://ror.org/00qdxv953', 'no_lang_code', 1, 'https://ror.org/00qdxv953 Praktika Publishing House Практика'), (70579, 'https://ror.org/00qerf253', 'en', 1, 'https://ror.org/00qerf253 Belgrade Open School Beogradska Otvorena Skola'), (70580, 'https://ror.org/00qfydg61', 'en', 1, 'https://ror.org/00qfydg61 Centre for Policy Dialogue'), (70581, 'https://ror.org/00qg3d075', 'no_lang_code', 1, 'https://ror.org/00qg3d075 Ajelis (France)'), (70582, 'https://ror.org/00qjnpe47', 'no_lang_code', 1, 'https://ror.org/00qjnpe47 PatentVantage (United States)'), (70583, 'https://ror.org/00qkegp41', 'de', 1, 'https://ror.org/00qkegp41 cts CaritasKlinikum Saarbrücken'), (70584, 'https://ror.org/00qmr3w93', 'no_lang_code', 1, 'https://ror.org/00qmr3w93 Fabrico Technology (United States)'), (70585, 'https://ror.org/00qnj9c09', 'no_lang_code', 1, 'https://ror.org/00qnj9c09 Zakłady Energetyki Cieplnej (Poland)'), (70586, 'https://ror.org/00qsjqq12', 'en', 1, 'https://ror.org/00qsjqq12 Greenland National Museum & Archives Nunatta Katersugaasivia Allagaateqarfialu'), (70587, 'https://ror.org/00qt5t304', 'en', 1, 'https://ror.org/00qt5t304 Automated Regional Justice Information System'), (70588, 'https://ror.org/00qvjvf51', 'en', 1, 'https://ror.org/00qvjvf51 Catalyst'), (70589, 'https://ror.org/00qw0ej89', 'no_lang_code', 1, 'https://ror.org/00qw0ej89 Vigo (Poland)'), (70590, 'https://ror.org/00qxn6s10', 'no_lang_code', 1, 'https://ror.org/00qxn6s10 Nordic BioAnalyis (Sweden)'), (70591, 'https://ror.org/00r071h34', 'en', 1, 'https://ror.org/00r071h34 Smith-Magenis Syndrome Foundation'), (70592, 'https://ror.org/00r18kp26', 'bs', 1, 'https://ror.org/00r18kp26 OKC Abrašević The Youth Cultural Centre Abrašević'), (70593, 'https://ror.org/00r2sd878', 'no_lang_code', 1, 'https://ror.org/00r2sd878 ISTEQ (Netherlands)'), (70594, 'https://ror.org/00r3k2f05', 'no_lang_code', 1, 'https://ror.org/00r3k2f05 Grainflow Dynamics (United States)'), (70595, 'https://ror.org/00r492z79', 'no_lang_code', 1, 'https://ror.org/00r492z79 OikosLab Future Solutions (Sweden)'), (70596, 'https://ror.org/00r80fz20', 'en', 1, 'https://ror.org/00r80fz20 Quantum Gravity Research'), (70597, 'https://ror.org/00r838687', 'no_lang_code', 1, 'https://ror.org/00r838687 Inscope International (United States)'), (70598, 'https://ror.org/00ragt065', 'en', 1, 'https://ror.org/00ragt065 Trent Rivers Trust'), (70599, 'https://ror.org/00rcg3441', 'en', 1, 'https://ror.org/00rcg3441 Shamakhy Astrophysical Observatory named after Nasraddin Tusi'), (70600, 'https://ror.org/00rcv1209', 'en', 1, 'https://ror.org/00rcv1209 The Crucible'), (70601, 'https://ror.org/00rdsdk57', 'pt', 1, 'https://ror.org/00rdsdk57 Agência Patrícia Galvão'), (70602, 'https://ror.org/00rfg3b85', 'en', 1, 'https://ror.org/00rfg3b85 Working Class Movement Library'), (70603, 'https://ror.org/00rjqge87', 'sv', 1, 'https://ror.org/00rjqge87 Tesch-Övermo stiftelsen'), (70604, 'https://ror.org/00rkc1204', 'en', 1, 'https://ror.org/00rkc1204 Crichton Carbon Centre'), (70605, 'https://ror.org/00rkfts56', 'no_lang_code', 1, 'https://ror.org/00rkfts56 Gismo Therapeutics (United States)'), (70606, 'https://ror.org/00rmabh56', 'en', 1, 'https://ror.org/00rmabh56 Lower East Side Printshop'), (70607, 'https://ror.org/00rn98z33', 'no_lang_code', 1, 'https://ror.org/00rn98z33 Suntory (United Kingdom)'), (70608, 'https://ror.org/00rnjpt59', 'en', 1, 'https://ror.org/00rnjpt59 Bulacan Agricultural State College'), (70609, 'https://ror.org/00rq4rf45', 'no_lang_code', 1, 'https://ror.org/00rq4rf45 Zeto (Poland)'), (70610, 'https://ror.org/00rve9x39', 'en', 1, 'https://ror.org/00rve9x39 Shannon Applied Biotechnology Centre'), (70611, 'https://ror.org/00rwrt808', 'en', 1, 'https://ror.org/00rwrt808 Tekniska Museet The National Museum of Science and Technology'), (70612, 'https://ror.org/00rxtaa07', 'en', 1, 'https://ror.org/00rxtaa07 Thai-German Institute สถาบันไทย-เยอรมัน'), (70613, 'https://ror.org/00s0qnx27', 'en', 1, 'https://ror.org/00s0qnx27 Apeejay Stya University'), (70614, 'https://ror.org/00s11fs62', 'no_lang_code', 1, 'https://ror.org/00s11fs62 iDEAL Technology (United States)'), (70615, 'https://ror.org/00s4y3439', 'no_lang_code', 1, 'https://ror.org/00s4y3439 Cemet (Poland)'), (70616, 'https://ror.org/00s78tb81', 'no_lang_code', 1, 'https://ror.org/00s78tb81 Blaze Bioscience (United States)'), (70617, 'https://ror.org/00sbgyf60', 'fr', 1, 'https://ror.org/00sbgyf60 Laboratoire de Recherche Scientifique'), (70618, 'https://ror.org/00sbkq582', 'en', 1, 'https://ror.org/00sbkq582 Futuro'), (70619, 'https://ror.org/00sch3b34', 'en', 1, 'https://ror.org/00sch3b34 Plymouth City Council'), (70620, 'https://ror.org/00scy5291', 'en', 1, 'https://ror.org/00scy5291 Centre for Contemporary Art and the Natural World'), (70621, 'https://ror.org/00se8ng51', 'no_lang_code', 1, 'https://ror.org/00se8ng51 CSL Materials (United States)'), (70622, 'https://ror.org/00semp387', 'no_lang_code', 1, 'https://ror.org/00semp387 Murphy Oil Corporation (United States)'), (70623, 'https://ror.org/00sgv1989', 'en', 1, 'https://ror.org/00sgv1989 Concurrent Technologies Corporation'), (70624, 'https://ror.org/00sh5y950', 'en', 1, 'https://ror.org/00sh5y950 Yantai Automobile Engineering Professional College 烟台汽车工程职业学院'), (70625, 'https://ror.org/00shbds80', 'en', 1, 'https://ror.org/00shbds80 Dartington Service Design Lab'), (70626, 'https://ror.org/00shyvc62', 'no_lang_code', 1, 'https://ror.org/00shyvc62 Icosystem (United States)'), (70627, 'https://ror.org/00sj73q02', 'no_lang_code', 1, 'https://ror.org/00sj73q02 CoorsTek (United States)'), (70628, 'https://ror.org/00smxfq50', 'en', 1, 'https://ror.org/00smxfq50 Bulgarian Association for the Promotion of Citizens Initiative Българско сдружение за насърчаване на гражданската инициатива'), (70629, 'https://ror.org/00sp0xc53', 'no_lang_code', 1, 'https://ror.org/00sp0xc53 Blackfynn (United States)'), (70630, 'https://ror.org/00sqz4v59', 'no_lang_code', 1, 'https://ror.org/00sqz4v59 Innovatech (United States)'), (70631, 'https://ror.org/00sr3jx98', 'sv', 1, 'https://ror.org/00sr3jx98 Vårdcentralen Silentzvägen'), (70632, 'https://ror.org/00srfk182', 'no_lang_code', 1, 'https://ror.org/00srfk182 Magicom (United States)'), (70633, 'https://ror.org/00sv6gs75', 'en', 1, 'https://ror.org/00sv6gs75 Shenyang Sujiatun District Central Hospital 沈阳市苏家屯区中心医院'), (70634, 'https://ror.org/00sxaat11', 'en', 1, 'https://ror.org/00sxaat11 King Abdulaziz Foundation For Research And Archives'), (70635, 'https://ror.org/00sxv8m86', 'no_lang_code', 1, 'https://ror.org/00sxv8m86 Centre of Technology Transfer Emag (Poland)'), (70636, 'https://ror.org/00sy58v94', 'en', 1, 'https://ror.org/00sy58v94 Chung-Hwa Institute of Buddhist Studies 中華佛學研究所'), (70637, 'https://ror.org/00sydr738', 'no_lang_code', 1, 'https://ror.org/00sydr738 Electro-Medical Measurement Systems (United Kingdom)'), (70638, 'https://ror.org/00szj4f14', 'en', 1, 'https://ror.org/00szj4f14 Austrumeiropas Politikas Pētījumu Centrs Centre for Eastern European Policy Studies'), (70639, 'https://ror.org/00t0v7w29', 'en', 1, 'https://ror.org/00t0v7w29 Min-On Concert Association 民主音楽協会'), (70640, 'https://ror.org/00t1n6362', 'no_lang_code', 1, 'https://ror.org/00t1n6362 OMV Petrom (Romania)'), (70641, 'https://ror.org/00t3e3c13', 'en', 1, 'https://ror.org/00t3e3c13 Steel Charitable Trust'), (70642, 'https://ror.org/00t3h6w64', 'en', 1, 'https://ror.org/00t3h6w64 Science Media Centre'), (70643, 'https://ror.org/00t3j9c50', 'en', 1, 'https://ror.org/00t3j9c50 The Heart House'), (70644, 'https://ror.org/00t5yad55', 'en', 1, 'https://ror.org/00t5yad55 Isis-WICCE'), (70645, 'https://ror.org/00t5ymp38', 'en', 1, 'https://ror.org/00t5ymp38 Scientific Center of Zoology and Hydroecology Կենդանաբանության և հիդրոէկոլոգիայի գիտական կենտրոն'), (70646, 'https://ror.org/00t6eqy44', 'no_lang_code', 1, 'https://ror.org/00t6eqy44 MP Technologies (United States)'), (70647, 'https://ror.org/00t87a490', 'no_lang_code', 1, 'https://ror.org/00t87a490 21st Century Systems (United States)'), (70648, 'https://ror.org/00tasa398', 'en', 1, 'https://ror.org/00tasa398 Society for Longitudinal and Lifecourse Studies'), (70649, 'https://ror.org/00tay8944', 'es', 1, 'https://ror.org/00tay8944 Instituto Nacional de Derechos Humanos'), (70650, 'https://ror.org/00tcejj11', 'no_lang_code', 1, 'https://ror.org/00tcejj11 Azərbaycan Respublikası Dövlət Neft Şirkəti State Oil Company of Azerbaijan Republic (Azerbaijan)'), (70651, 'https://ror.org/00tcrzw23', 'no_lang_code', 1, 'https://ror.org/00tcrzw23 Tawata Productions (New Zealand)'), (70652, 'https://ror.org/00td3vg19', 'en', 1, 'https://ror.org/00td3vg19 British Dam Society'), (70653, 'https://ror.org/00tey2378', 'no_lang_code', 1, 'https://ror.org/00tey2378 Stem Cells Spin (Poland)'), (70654, 'https://ror.org/00tgp6q68', 'no_lang_code', 1, 'https://ror.org/00tgp6q68 Voestalpine (Brazil)'), (70655, 'https://ror.org/00tjrva09', 'no_lang_code', 1, 'https://ror.org/00tjrva09 Envirochem (United States)'), (70656, 'https://ror.org/00tmbfm47', 'en', 1, 'https://ror.org/00tmbfm47 Ocean Tracking Network'), (70657, 'https://ror.org/00tn5yw94', 'es', 1, 'https://ror.org/00tn5yw94 Red Argentina de Instituciones de Microcrédito'), (70658, 'https://ror.org/00tntqs89', 'en', 1, 'https://ror.org/00tntqs89 Wonder Foundation'), (70659, 'https://ror.org/00tpb5981', 'pt', 1, 'https://ror.org/00tpb5981 Conectas, Conectas Direitos Humanos'), (70660, 'https://ror.org/00tpdkh38', 'en', 1, 'https://ror.org/00tpdkh38 Ross School'), (70661, 'https://ror.org/00tq4sv71', 'no_lang_code', 1, 'https://ror.org/00tq4sv71 Cynvec (United States)'), (70662, 'https://ror.org/00ts92x19', 'de', 1, 'https://ror.org/00ts92x19 Bürgerhospital Frankfurt am Main'), (70663, 'https://ror.org/00tsh7c40', 'en', 1, 'https://ror.org/00tsh7c40 Ukrainian Association of Specialists on Overcoming the Consequences of Traumatic Events'), (70664, 'https://ror.org/00ttwjh54', 'de', 1, 'https://ror.org/00ttwjh54 Georesearch Forschungsgesellschaft'), (70665, 'https://ror.org/00twd4s32', 'en', 1, 'https://ror.org/00twd4s32 Great North Museum Hancock'), (70666, 'https://ror.org/00twy1r91', 'en', 1, 'https://ror.org/00twy1r91 National Association of British and Irish Millers'), (70667, 'https://ror.org/00txb3a66', 'en', 1, 'https://ror.org/00txb3a66 Christchurch City Council'), (70668, 'https://ror.org/00txmyx33', 'no_lang_code', 1, 'https://ror.org/00txmyx33 InnaVasc Medical (United States)'), (70669, 'https://ror.org/00tzfk251', 'en', 1, 'https://ror.org/00tzfk251 Centre for Youth & Criminal Justice'), (70670, 'https://ror.org/00v140q16', 'en', 1, 'https://ror.org/00v140q16 MIT University МИТ Универзитет'), (70671, 'https://ror.org/00v1wvp38', 'no_lang_code', 1, 'https://ror.org/00v1wvp38 Flashback Technologies (United States)'), (70672, 'https://ror.org/00v2nch62', 'no_lang_code', 1, 'https://ror.org/00v2nch62 Barnstorm Research (United States)'), (70673, 'https://ror.org/00v2zc821', 'es', 1, 'https://ror.org/00v2zc821 Colegio Árula'), (70674, 'https://ror.org/00v3n0x68', 'no_lang_code', 1, 'https://ror.org/00v3n0x68 Bio-Works (Sweden)'), (70675, 'https://ror.org/00v3tje97', 'en', 1, 'https://ror.org/00v3tje97 The Faith & Politics Institute'), (70676, 'https://ror.org/00v4msg57', 'en', 1, 'https://ror.org/00v4msg57 African Network for Internationalization of Education'), (70677, 'https://ror.org/00v8ry163', 'en', 1, 'https://ror.org/00v8ry163 European Centre for Ecotoxicology and Toxicology of Chemicals'), (70678, 'https://ror.org/00v907w21', 'en', 1, 'https://ror.org/00v907w21 Dubbo Hospital'), (70679, 'https://ror.org/00v9mrx93', 'en', 1, 'https://ror.org/00v9mrx93 Energy and Utility Skills'), (70680, 'https://ror.org/00v9sab02', 'no_lang_code', 1, 'https://ror.org/00v9sab02 Iteratec (Germany)'), (70681, 'https://ror.org/00vaaes23', 'en', 1, 'https://ror.org/00vaaes23 Northwest Professional Consortium'), (70682, 'https://ror.org/00vacpg25', 'no_lang_code', 1, 'https://ror.org/00vacpg25 Alba-Technic (United States)'), (70683, 'https://ror.org/00varvj20', 'no_lang_code', 1, 'https://ror.org/00varvj20 SAIC Motor (United Kingdom)'), (70684, 'https://ror.org/00vbd8v64', 'no_lang_code', 1, 'https://ror.org/00vbd8v64 Episensors (United States)'), (70685, 'https://ror.org/00vbej866', 'en', 1, 'https://ror.org/00vbej866 Kalakshetra Foundation'), (70686, 'https://ror.org/00vf0sw72', 'no_lang_code', 1, 'https://ror.org/00vf0sw72 B M Birla Science Centre'), (70687, 'https://ror.org/00vf59397', 'no_lang_code', 1, 'https://ror.org/00vf59397 Neosense Technologies (Sweden)'), (70688, 'https://ror.org/00vfdyp26', 'en', 1, 'https://ror.org/00vfdyp26 Finlands Nationalgalleri Finnish National Gallery Suomen Kansallisgalleria'), (70689, 'https://ror.org/00vjz3318', 'en', 1, 'https://ror.org/00vjz3318 Leksikografski zavod Miroslav Krleža Miroslav Krleža Institute of Lexicography'), (70690, 'https://ror.org/00vk4n496', 'no_lang_code', 1, 'https://ror.org/00vk4n496 Assuage Pharmaceuticals (United States)'), (70691, 'https://ror.org/00vkfxn17', 'en', 1, 'https://ror.org/00vkfxn17 Mongolia International University'), (70692, 'https://ror.org/00vm5qp33', 'no_lang_code', 1, 'https://ror.org/00vm5qp33 Integrated Optical Circuit Consultants (United States)'), (70693, 'https://ror.org/00vp3mb10', 'en', 1, 'https://ror.org/00vp3mb10 Byron Museum of History'), (70694, 'https://ror.org/00vrf8x48', 'en', 1, 'https://ror.org/00vrf8x48 Alamire Foundation'), (70695, 'https://ror.org/00vtapt19', 'en', 1, 'https://ror.org/00vtapt19 The Mauritius Chamber of Commerce and Industry'), (70696, 'https://ror.org/00vtb6v32', 'en', 1, 'https://ror.org/00vtb6v32 Institute of Educational Sciences Institutul de Ştiinţe ale Educaţiei'), (70697, 'https://ror.org/00vvpe721', 'en', 1, 'https://ror.org/00vvpe721 La Jolla Alcohol Research'), (70698, 'https://ror.org/00vyhrf09', 'no_lang_code', 1, 'https://ror.org/00vyhrf09 DEI Holdings (United States)'), (70699, 'https://ror.org/00w074307', 'no_lang_code', 1, 'https://ror.org/00w074307 GoofyFoot Labs (United States)'), (70700, 'https://ror.org/00w0b1y51', 'en', 1, 'https://ror.org/00w0b1y51 Global Press'), (70701, 'https://ror.org/00w0zag63', 'en', 1, 'https://ror.org/00w0zag63 National Council for Palliative Care'), (70702, 'https://ror.org/00w3sh282', 'en', 1, 'https://ror.org/00w3sh282 Six Nations Indian Museum'), (70703, 'https://ror.org/00w46h989', 'en', 1, 'https://ror.org/00w46h989 Asian American Legal Defense and Education Fund'), (70704, 'https://ror.org/00w4q6f22', 'no_lang_code', 1, 'https://ror.org/00w4q6f22 Kontron (France)'), (70705, 'https://ror.org/00w60d804', 'en', 1, 'https://ror.org/00w60d804 International Network for Economic, Social and Cultural Rights Red Internacional para los Derechos Económicos, Sociales y Culturales Réseau International pour les Droits Economiques, Sociaux et Culturels'), (70706, 'https://ror.org/00w6sdm89', 'en', 1, 'https://ror.org/00w6sdm89 Institute for Cultural Diplomacy'), (70707, 'https://ror.org/00w7fsy96', 'no_lang_code', 1, 'https://ror.org/00w7fsy96 AVT Simulation (United States)'), (70708, 'https://ror.org/00w7r8d30', 'en', 1, 'https://ror.org/00w7r8d30 The Hepatitis C Trust'), (70709, 'https://ror.org/00w9dm031', 'en', 1, 'https://ror.org/00w9dm031 Institute on Taxation and Economic Policy'), (70710, 'https://ror.org/00wbxbw73', 'en', 1, 'https://ror.org/00wbxbw73 Pre School Learning Alliance'), (70711, 'https://ror.org/00we63k03', 'no_lang_code', 1, 'https://ror.org/00we63k03 Kiyatec (United States)'), (70712, 'https://ror.org/00wfb0t96', 'no_lang_code', 1, 'https://ror.org/00wfb0t96 Holoeye (United States)'), (70713, 'https://ror.org/00wjvk964', 'no_lang_code', 1, 'https://ror.org/00wjvk964 RAB Microfluidics (United Kingdom)'), (70714, 'https://ror.org/00wjwzs60', 'en', 1, 'https://ror.org/00wjwzs60 Institute for Sound & Music'), (70715, 'https://ror.org/00wngta72', 'en', 1, 'https://ror.org/00wngta72 Bumblebee Conservation Trust'), (70716, 'https://ror.org/00wp30s27', 'no_lang_code', 1, 'https://ror.org/00wp30s27 Keywords Studios (United States)'), (70717, 'https://ror.org/00wqws496', 'fr', 1, 'https://ror.org/00wqws496 Institut Français de Rabat'), (70718, 'https://ror.org/00wtq5187', 'en', 1, 'https://ror.org/00wtq5187 Design and Artists Copyright Society'), (70719, 'https://ror.org/00wvn7664', 'no_lang_code', 1, 'https://ror.org/00wvn7664 Digital Proteomics (United States)'), (70720, 'https://ror.org/00wvz2203', 'en', 1, 'https://ror.org/00wvz2203 Higher Learning Commission'), (70721, 'https://ror.org/00ww76c39', 'en', 1, 'https://ror.org/00ww76c39 Muzeum Narodowe w Warszawie National Museum in Warsaw'), (70722, 'https://ror.org/00wybgv46', 'no_lang_code', 1, 'https://ror.org/00wybgv46 Enformia (United States)'), (70723, 'https://ror.org/00x0hb616', 'no_lang_code', 1, 'https://ror.org/00x0hb616 Mapei (United States)'), (70724, 'https://ror.org/00x0x6v41', 'en', 1, 'https://ror.org/00x0x6v41 Co-operative College'), (70725, 'https://ror.org/00x0xxx58', 'en', 1, 'https://ror.org/00x0xxx58 British Institute of Non-Destructive Testing'), (70726, 'https://ror.org/00x3qgf57', 'hu', 1, 'https://ror.org/00x3qgf57 Eötvös József Gimnázium'), (70727, 'https://ror.org/00x43vj55', 'en', 1, 'https://ror.org/00x43vj55 Foundation Scotland'), (70728, 'https://ror.org/00x5wpm25', 'en', 1, 'https://ror.org/00x5wpm25 Institute for Archaeological and Monumental Heritage Istituto per i Beni Archeologici e Monumentali'), (70729, 'https://ror.org/00x6bxz91', 'no_lang_code', 1, 'https://ror.org/00x6bxz91 Companhia Siderúrgica Nacional (Brazil)'), (70730, 'https://ror.org/00x8nv804', 'en', 1, 'https://ror.org/00x8nv804 National Employment Law Project'), (70731, 'https://ror.org/00x8y2776', 'no_lang_code', 1, 'https://ror.org/00x8y2776 Dynalene (United States)'), (70732, 'https://ror.org/00xa7zj26', 'en', 1, 'https://ror.org/00xa7zj26 Lambeth Council'), (70733, 'https://ror.org/00xc55195', 'en', 1, 'https://ror.org/00xc55195 The African Safari Foundation'), (70734, 'https://ror.org/00xfbtw98', 'no_lang_code', 1, 'https://ror.org/00xfbtw98 EnSolve Biosystems (United States)'), (70735, 'https://ror.org/00xg4w305', 'en', 1, 'https://ror.org/00xg4w305 Outcomes Based Healthcare'), (70736, 'https://ror.org/00xg85119', 'no_lang_code', 1, 'https://ror.org/00xg85119 Bite Technologies (United States)'), (70737, 'https://ror.org/00xka5v70', 'no_lang_code', 1, 'https://ror.org/00xka5v70 Raziskovalna Genetika in Agrokemija Research Genetics and Agrochemistry (Slovenia)'), (70738, 'https://ror.org/00xky7n51', 'no_lang_code', 1, 'https://ror.org/00xky7n51 Lawrie Technology (United States)'), (70739, 'https://ror.org/00xm1m223', 'no_lang_code', 1, 'https://ror.org/00xm1m223 The Washington Times (United States)'), (70740, 'https://ror.org/00xpayr72', 'es', 1, 'https://ror.org/00xpayr72 Planta Piloto de Ingeniería Química'), (70741, 'https://ror.org/00xq4r679', 'en', 1, 'https://ror.org/00xq4r679 Veterinarians Without Borders Vétérinaires Sans Frontières'), (70742, 'https://ror.org/00xqr8q70', 'en', 1, 'https://ror.org/00xqr8q70 Fountainbridge Library'), (70743, 'https://ror.org/00xr7fv60', 'en', 1, 'https://ror.org/00xr7fv60 Social Science Baha'), (70744, 'https://ror.org/00xr8z771', 'en', 1, 'https://ror.org/00xr8z771 Institute of Public Health Osijek-Baranja County Zavod za Javno Zdravstvo Osječko-Baranjske Županije'), (70745, 'https://ror.org/00xrtc164', 'en', 1, 'https://ror.org/00xrtc164 Shetland Arts'), (70746, 'https://ror.org/00xsqes49', 'no_lang_code', 1, 'https://ror.org/00xsqes49 BioInvenu (United States)'), (70747, 'https://ror.org/00xws5c14', 'es', 1, 'https://ror.org/00xws5c14 Centro Cultural de España en El Salvador, Cooperación Española Cultura'), (70748, 'https://ror.org/00xwvfm64', 'en', 1, 'https://ror.org/00xwvfm64 Australian Centre for Plant Functional Genomics'), (70749, 'https://ror.org/00xyype02', 'en', 1, 'https://ror.org/00xyype02 Community Woodlands Association'), (70750, 'https://ror.org/00xzb4g06', 'en', 1, 'https://ror.org/00xzb4g06 Center for Strategic Research Центр стратегических разработок'), (70751, 'https://ror.org/00y0dba52', 'no_lang_code', 1, 'https://ror.org/00y0dba52 Gedea Biotech (Sweden)'), (70752, 'https://ror.org/00y0mtz34', 'no_lang_code', 1, 'https://ror.org/00y0mtz34 BTB Pharma (Sweden)'), (70753, 'https://ror.org/00y1ncc66', 'no_lang_code', 1, 'https://ror.org/00y1ncc66 Idaho Scientific (United States)'), (70754, 'https://ror.org/00y1npz19', 'en', 1, 'https://ror.org/00y1npz19 Bridgeman Images'), (70755, 'https://ror.org/00y2cjt87', 'en', 1, 'https://ror.org/00y2cjt87 Royal Opera House'), (70756, 'https://ror.org/00y3b8e38', 'en', 1, 'https://ror.org/00y3b8e38 Lorna Young Foundation'), (70757, 'https://ror.org/00y4jkk21', 'en', 1, 'https://ror.org/00y4jkk21 Pensions and Lifetime Savings Association'), (70758, 'https://ror.org/00y4w6s19', 'no_lang_code', 1, 'https://ror.org/00y4w6s19 Parabola (United Kingdom)'), (70759, 'https://ror.org/00y8a5g73', 'en', 1, 'https://ror.org/00y8a5g73 Sabah Environmental Trust'), (70760, 'https://ror.org/00y8fja70', 'no_lang_code', 1, 'https://ror.org/00y8fja70 Ekomarine Paint (Sweden)'), (70761, 'https://ror.org/00y8xx462', 'no_lang_code', 1, 'https://ror.org/00y8xx462 Credit Data Research (United Kingdom)'), (70762, 'https://ror.org/00ya5ka53', 'en', 1, 'https://ror.org/00ya5ka53 Indus Resource Centre'), (70763, 'https://ror.org/00yak9133', 'no_lang_code', 1, 'https://ror.org/00yak9133 Yangtze Optical Electronic (China)'), (70764, 'https://ror.org/00ybgpf59', 'en', 1, 'https://ror.org/00ybgpf59 National Council of Juvenile and Family Court Judges'), (70765, 'https://ror.org/00yc8p775', 'en', 1, 'https://ror.org/00yc8p775 International Federation of Television Archives'), (70766, 'https://ror.org/00ycry713', 'en', 1, 'https://ror.org/00ycry713 Trường Đại Học Tài Chính - Marketing University of Finance - Marketing'), (70767, 'https://ror.org/00yd8np83', 'en', 1, 'https://ror.org/00yd8np83 National University System'), (70768, 'https://ror.org/00yenz435', 'en', 1, 'https://ror.org/00yenz435 AURA-J'), (70769, 'https://ror.org/00yf53d07', 'en', 1, 'https://ror.org/00yf53d07 The Bill Douglas Cinema Museum'), (70770, 'https://ror.org/00ygaqv05', 'no_lang_code', 1, 'https://ror.org/00ygaqv05 MetaMorph (United States)'), (70771, 'https://ror.org/00yjxga86', 'no_lang_code', 1, 'https://ror.org/00yjxga86 AnaBios (United States)'), (70772, 'https://ror.org/00yk3tm64', 'fr', 1, 'https://ror.org/00yk3tm64 Université des Sciences de la Santé'), (70773, 'https://ror.org/00ykyfn41', 'no_lang_code', 1, 'https://ror.org/00ykyfn41 CB Healthcare (India)'), (70774, 'https://ror.org/00yn65598', 'en', 1, 'https://ror.org/00yn65598 Environmental Simulation Center'), (70775, 'https://ror.org/00ynqbp15', 'no_lang_code', 1, 'https://ror.org/00ynqbp15 Integra (United States)'), (70776, 'https://ror.org/00ysde465', 'no_lang_code', 1, 'https://ror.org/00ysde465 Cenna Biosciences (United States)'), (70777, 'https://ror.org/00ysy8y40', 'en', 1, 'https://ror.org/00ysy8y40 Cleveland FES Center'), (70778, 'https://ror.org/00ytw6m58', 'en', 1, 'https://ror.org/00ytw6m58 Institute of Environmental Geology and Geoengineering Istituto di Geologia Ambientale e Geoingegneria'), (70779, 'https://ror.org/00ywmky87', 'no_lang_code', 1, 'https://ror.org/00ywmky87 Flightware (United States)'), (70780, 'https://ror.org/00ywywm58', 'en', 1, 'https://ror.org/00ywywm58 Bevan Foundation'), (70781, 'https://ror.org/00yy0tx50', 'no_lang_code', 1, 'https://ror.org/00yy0tx50 Hefei CAS Ion Medical and Technical Devices (China) 合肥中科离子医学技术装备'), (70782, 'https://ror.org/00z1z4s30', 'no_lang_code', 1, 'https://ror.org/00z1z4s30 EpiBone (United States)'), (70783, 'https://ror.org/00z28s026', 'en', 1, 'https://ror.org/00z28s026 Partnership for African Social & Governance Research'), (70784, 'https://ror.org/00z57gh96', 'en', 1, 'https://ror.org/00z57gh96 Uganda National NGO Forum'), (70785, 'https://ror.org/00z58gx92', 'en', 1, 'https://ror.org/00z58gx92 Wai Yin Society'), (70786, 'https://ror.org/00z5a4134', 'es', 1, 'https://ror.org/00z5a4134 Hospital Naval Almirante Adriazola de Talcahuano'), (70787, 'https://ror.org/00z610a60', 'en', 1, 'https://ror.org/00z610a60 Archivo y Biblioteca Nacionales de Bolivia National Archive and Library of Bolivia'), (70788, 'https://ror.org/00z7p5142', 'en', 1, 'https://ror.org/00z7p5142 North Devon Biosphere Foundation'), (70789, 'https://ror.org/00z8qb234', 'en', 1, 'https://ror.org/00z8qb234 Country Land and Business Association'), (70790, 'https://ror.org/00z94ps04', 'en', 1, 'https://ror.org/00z94ps04 State Institute for Art Studies Государственный институт искусствознания'), (70791, 'https://ror.org/00za55k91', 'no_lang_code', 1, 'https://ror.org/00za55k91 Roper Technologies (United Kingdom)'), (70792, 'https://ror.org/00za70p44', 'da', 1, 'https://ror.org/00za70p44 Museum Sønderjylland'), (70793, 'https://ror.org/00zam7c12', 'de', 1, 'https://ror.org/00zam7c12 Deutsche Initiative für Netzwerkinformation German Initiative for Network Information'), (70794, 'https://ror.org/00zay1847', 'no_lang_code', 1, 'https://ror.org/00zay1847 GTD Unlimited (United States)'); INSERT INTO `rors` VALUES (70795, 'https://ror.org/00zb61d94', 'en', 1, 'https://ror.org/00zb61d94 The Kenya Alliance of Resident Associations'), (70796, 'https://ror.org/00zb6xd25', 'en', 1, 'https://ror.org/00zb6xd25 British Gear Association'), (70797, 'https://ror.org/00zbqep42', 'en', 1, 'https://ror.org/00zbqep42 U.S. Embassy in Burma'), (70798, 'https://ror.org/00zc49422', 'en', 1, 'https://ror.org/00zc49422 Nexus Community Partners'), (70799, 'https://ror.org/00ze9yt51', 'no_lang_code', 1, 'https://ror.org/00ze9yt51 SP Industries (United States)'), (70800, 'https://ror.org/00zenaa75', 'en', 1, 'https://ror.org/00zenaa75 Beijing Academy of Smart Economy 北京智能经济研究院'), (70801, 'https://ror.org/00zhc6r97', 'en', 1, 'https://ror.org/00zhc6r97 Partners for the Common Good'), (70802, 'https://ror.org/00zhdk214', 'no_lang_code', 1, 'https://ror.org/00zhdk214 Axenis (France)'), (70803, 'https://ror.org/00zjk7642', 'en', 1, 'https://ror.org/00zjk7642 Larkin University'), (70804, 'https://ror.org/00zphcv39', 'en', 1, 'https://ror.org/00zphcv39 UK Green Building Council'), (70805, 'https://ror.org/00zpw7s04', 'en', 1, 'https://ror.org/00zpw7s04 Pacific Arts Association'), (70806, 'https://ror.org/00zq3ce72', 'en', 1, 'https://ror.org/00zq3ce72 QuSoft'), (70807, 'https://ror.org/00zqvjm52', 'en', 1, 'https://ror.org/00zqvjm52 Global Action Project'), (70808, 'https://ror.org/00zr60y65', 'no_lang_code', 1, 'https://ror.org/00zr60y65 Jariet Technologies (United States)'), (70809, 'https://ror.org/00zs92e71', 'en', 1, 'https://ror.org/00zs92e71 National Museum of History 國立歷史博物館'), (70810, 'https://ror.org/00ztk9j52', 'en', 1, 'https://ror.org/00ztk9j52 Elders of Newscastle Upon Tyne'), (70811, 'https://ror.org/00zx4bg33', 'en', 1, 'https://ror.org/00zx4bg33 School of Social Work Roshni Nilaya'), (70812, 'https://ror.org/00zyky634', 'en', 1, 'https://ror.org/00zyky634 Institute of Family Therapy'), (70813, 'https://ror.org/00zznvx80', 'en', 1, 'https://ror.org/00zznvx80 The Linenhall Arts Centre'), (70814, 'https://ror.org/00zzvzy79', 'no_lang_code', 1, 'https://ror.org/00zzvzy79 Novetta (United States)'), (70815, 'https://ror.org/01006t419', 'no_lang_code', 1, 'https://ror.org/01006t419 Corrected Electron Optical Systems (Germany)'), (70816, 'https://ror.org/0100dqc22', 'en', 1, 'https://ror.org/0100dqc22 Action Canada for Sexual Health and Rights'), (70817, 'https://ror.org/0102cs330', 'da', 1, 'https://ror.org/0102cs330 Landsorganisation af Kvindekrisecentre'), (70818, 'https://ror.org/0102z1w54', 'en', 1, 'https://ror.org/0102z1w54 Association of Industrial Laser Users'), (70819, 'https://ror.org/0105eee18', 'no_lang_code', 1, 'https://ror.org/0105eee18 Ariamis (France)'), (70820, 'https://ror.org/0106nad04', 'en', 1, 'https://ror.org/0106nad04 Snack, Nut and Crisp Manufacturers Association'), (70821, 'https://ror.org/010719r63', 'en', 1, 'https://ror.org/010719r63 Atmospheric Observatory of Austral Patagonia Observatorio Atmosférico de la Patagonia Austral'), (70822, 'https://ror.org/01077pm86', 'en', 1, 'https://ror.org/01077pm86 UK Centre for Moisture in Buildings'), (70823, 'https://ror.org/0107ykj49', 'no_lang_code', 1, 'https://ror.org/0107ykj49 Extreme Diagnostics (United States)'), (70824, 'https://ror.org/0108dmg51', 'en', 1, 'https://ror.org/0108dmg51 The Hakluyt Society'), (70825, 'https://ror.org/0109q6556', 'en', 1, 'https://ror.org/0109q6556 Tim Parry Johnathan Ball Peace Foundation'), (70826, 'https://ror.org/010c3p773', 'no_lang_code', 1, 'https://ror.org/010c3p773 Pure Biologics (Poland)'), (70827, 'https://ror.org/010depv31', 'no_lang_code', 1, 'https://ror.org/010depv31 inTACT (United States)'), (70828, 'https://ror.org/010e6zk56', 'en', 1, 'https://ror.org/010e6zk56 Urban Big Data Centre'), (70829, 'https://ror.org/010fz6j15', 'no_lang_code', 1, 'https://ror.org/010fz6j15 Equipalcool (Brazil)'), (70830, 'https://ror.org/010gf6775', 'no_lang_code', 1, 'https://ror.org/010gf6775 Katam (Sweden)'), (70831, 'https://ror.org/010h6a642', 'en', 1, 'https://ror.org/010h6a642 Topsham Museum'), (70832, 'https://ror.org/010jran45', 'en', 1, 'https://ror.org/010jran45 Carers Trust'), (70833, 'https://ror.org/010ktw632', 'en', 1, 'https://ror.org/010ktw632 National Centre for Writing'), (70834, 'https://ror.org/010npae67', 'en', 1, 'https://ror.org/010npae67 The Honourable Society of Lincoln''s Inn'), (70835, 'https://ror.org/010pg4y69', 'no_lang_code', 1, 'https://ror.org/010pg4y69 Genapsys (United States)'), (70836, 'https://ror.org/010rd4p08', 'no_lang_code', 1, 'https://ror.org/010rd4p08 OTJ Architects (United States)'), (70837, 'https://ror.org/010rh0d62', 'en', 1, 'https://ror.org/010rh0d62 Scottish Refugee Council'), (70838, 'https://ror.org/010t2jv54', 'es', 1, 'https://ror.org/010t2jv54 Columbus Theatre, Teatro Colón'), (70839, 'https://ror.org/010tqdr51', 'en', 1, 'https://ror.org/010tqdr51 The Institute for Bird Populations'), (70840, 'https://ror.org/010tw2j24', 'en', 1, 'https://ror.org/010tw2j24 Winnipeg Institute for Theoretical Physics'), (70841, 'https://ror.org/010vm1c33', 'en', 1, 'https://ror.org/010vm1c33 American Institute of Indian Studies अमेरिकन इंस्टीट्यूट ऑफ इंडियन स्टडीज'), (70842, 'https://ror.org/010vz8719', 'no_lang_code', 1, 'https://ror.org/010vz8719 Seen Semiconductors (Poland)'), (70843, 'https://ror.org/010xxn679', 'no_lang_code', 1, 'https://ror.org/010xxn679 Linguastat (United States)'), (70844, 'https://ror.org/010zs2155', 'no_lang_code', 1, 'https://ror.org/010zs2155 K Lab (United States)'), (70845, 'https://ror.org/01108tk20', 'en', 1, 'https://ror.org/01108tk20 Deutsche Vereinigung für Sportwissenschaft German Society of Sport Science'), (70846, 'https://ror.org/0110z5t35', 'no_lang_code', 1, 'https://ror.org/0110z5t35 Telemetry Associates (United Kingdom)'), (70847, 'https://ror.org/0111f0b05', 'en', 1, 'https://ror.org/0111f0b05 Centre for Historical Research and Documentation on War and Contemporary Society'), (70848, 'https://ror.org/0113crs96', 'no_lang_code', 1, 'https://ror.org/0113crs96 BryCoat (United States)'), (70849, 'https://ror.org/011494s34', 'en', 1, 'https://ror.org/011494s34 Large Synoptic Survey Telescope Corporation'), (70850, 'https://ror.org/0114n8z16', 'en', 1, 'https://ror.org/0114n8z16 International Brecht Society'), (70851, 'https://ror.org/0116x8861', 'en', 1, 'https://ror.org/0116x8861 Safe & Justice Michigan'), (70852, 'https://ror.org/0117czb70', 'en', 1, 'https://ror.org/0117czb70 European Academy for Standardisation'), (70853, 'https://ror.org/011akm672', 'no_lang_code', 1, 'https://ror.org/011akm672 dbS Productions (United States)'), (70854, 'https://ror.org/011b4c141', 'en', 1, 'https://ror.org/011b4c141 Australian Council of Social Service'), (70855, 'https://ror.org/011bk2q57', 'no_lang_code', 1, 'https://ror.org/011bk2q57 IonField Systems (United States)'), (70856, 'https://ror.org/011bspp78', 'no_lang_code', 1, 'https://ror.org/011bspp78 Behavioral Pharma (United States)'), (70857, 'https://ror.org/011cev627', 'en', 1, 'https://ror.org/011cev627'), (70858, 'https://ror.org/011fkt075', 'en', 1, 'https://ror.org/011fkt075 Nanjing Museum 南京博物院'), (70859, 'https://ror.org/011gdes44', 'en', 1, 'https://ror.org/011gdes44 Centre for Window and Cladding Technology'), (70860, 'https://ror.org/011gmce08', 'en', 1, 'https://ror.org/011gmce08 National Association for Latino Community Asset Builders'), (70861, 'https://ror.org/011hfx640', 'en', 1, 'https://ror.org/011hfx640 Center For Policy Research'), (70862, 'https://ror.org/011hgk177', 'no_lang_code', 1, 'https://ror.org/011hgk177 Thusanani Foundation'), (70863, 'https://ror.org/011hj0222', 'en', 1, 'https://ror.org/011hj0222'), (70864, 'https://ror.org/011jh0j93', 'no_lang_code', 1, 'https://ror.org/011jh0j93 4IT I (Sweden)'), (70865, 'https://ror.org/011m7rj02', 'no_lang_code', 1, 'https://ror.org/011m7rj02 Brandon Medical (United Kingdom)'), (70866, 'https://ror.org/011n2hw53', 'it', 1, 'https://ror.org/011n2hw53 Istituto per il Lessico Intellettuale Europeo e la Storia delle Idee'), (70867, 'https://ror.org/011qz6c59', 'en', 1, 'https://ror.org/011qz6c59 Houston-Galveston Area Council'), (70868, 'https://ror.org/011rh1x94', 'en', 1, 'https://ror.org/011rh1x94 Alternative Law Forum'), (70869, 'https://ror.org/011rkfr90', 'en', 1, 'https://ror.org/011rkfr90 National Videogame Museum'), (70870, 'https://ror.org/011swmr49', 'no_lang_code', 1, 'https://ror.org/011swmr49 Durbin Group (United States)'), (70871, 'https://ror.org/011tecf62', 'fr', 1, 'https://ror.org/011tecf62 Université des Lettres et des Sciences Humaines de Bamako'), (70872, 'https://ror.org/011v30d49', 'en', 1, 'https://ror.org/011v30d49 Knowle West Healthy Living Centre'), (70873, 'https://ror.org/011x0jf73', 'no_lang_code', 1, 'https://ror.org/011x0jf73 Razumkov Centre Центр Разумкова'), (70874, 'https://ror.org/011yqtc07', 'en', 1, 'https://ror.org/011yqtc07 Turks and Caicos National Museum'), (70875, 'https://ror.org/01201q996', 'en', 1, 'https://ror.org/01201q996 Sexuality Information and Education Council of the United States'), (70876, 'https://ror.org/0121pvy84', 'en', 1, 'https://ror.org/0121pvy84 Scottish Social Services Council'), (70877, 'https://ror.org/01235bb77', 'fr', 1, 'https://ror.org/01235bb77 Banque Nationale de Gènes'), (70878, 'https://ror.org/0123gbz78', 'en', 1, 'https://ror.org/0123gbz78 CarbonCo-op'), (70879, 'https://ror.org/0123m1q26', 'no_lang_code', 1, 'https://ror.org/0123m1q26 Nordvästra Skånes Vatten och Avlopp (Sweden)'), (70880, 'https://ror.org/0126z0220', 'en', 1, 'https://ror.org/0126z0220 Midlands Arts Centre'), (70881, 'https://ror.org/01286xj85', 'no_lang_code', 1, 'https://ror.org/01286xj85 FocusStart (United States)'), (70882, 'https://ror.org/0128g3b12', 'en', 1, 'https://ror.org/0128g3b12 LGBT Youth Scotland'), (70883, 'https://ror.org/0129pxj69', 'en', 1, 'https://ror.org/0129pxj69 British Industrial Design Association'), (70884, 'https://ror.org/012a4r663', 'en', 1, 'https://ror.org/012a4r663 Autoridad del Canal de Panamá Panama Canal Authority'), (70885, 'https://ror.org/012c60617', 'en', 1, 'https://ror.org/012c60617 The Spectrum Centre'), (70886, 'https://ror.org/012cr4712', 'en', 1, 'https://ror.org/012cr4712 Cedarwood Trust'), (70887, 'https://ror.org/012g5w926', 'en', 1, 'https://ror.org/012g5w926 Universal Rights Group'), (70888, 'https://ror.org/012hyjz28', 'en', 1, 'https://ror.org/012hyjz28 Riverside Community Health Project'), (70889, 'https://ror.org/012mrz395', 'no_lang_code', 1, 'https://ror.org/012mrz395 Walker Associates Architects (United Kingdom)'), (70890, 'https://ror.org/012nzs861', 'no_lang_code', 1, 'https://ror.org/012nzs861 Taps (Poland)'), (70891, 'https://ror.org/012pegt90', 'it', 1, 'https://ror.org/012pegt90 Det Danske Institut i Rom - Accademia di Danimarca'), (70892, 'https://ror.org/012q2m618', 'no_lang_code', 1, 'https://ror.org/012q2m618 Bosmal (Poland)'), (70893, 'https://ror.org/012r7dj92', 'no_lang_code', 1, 'https://ror.org/012r7dj92 Silikony (Poland)'), (70894, 'https://ror.org/012rxy285', 'no_lang_code', 1, 'https://ror.org/012rxy285 Greenely (Sweden)'), (70895, 'https://ror.org/012shwn84', 'en', 1, 'https://ror.org/012shwn84 Jordan Media Institute معهد الإعلام الأردني'), (70896, 'https://ror.org/012tyys59', 'sq', 1, 'https://ror.org/012tyys59 Kolegji Dardania'), (70897, 'https://ror.org/012wmev19', 'no_lang_code', 1, 'https://ror.org/012wmev19 Arava Institute معهد العرفة'), (70898, 'https://ror.org/012xd9119', 'no_lang_code', 1, 'https://ror.org/012xd9119 WestCon Medical (United States)'), (70899, 'https://ror.org/012yc1x46', 'en', 1, 'https://ror.org/012yc1x46 Botanika İnstitutu Institute of Botany'), (70900, 'https://ror.org/012zsv435', 'no_lang_code', 1, 'https://ror.org/012zsv435 Academic Rights Press (United Kingdom)'), (70901, 'https://ror.org/0130dgg46', 'en', 1, 'https://ror.org/0130dgg46 China-Britain Business Council'), (70902, 'https://ror.org/01315ff40', 'en', 1, 'https://ror.org/01315ff40 English Language Teachers Association of India'), (70903, 'https://ror.org/0131as255', 'en', 1, 'https://ror.org/0131as255 Auditory Valley'), (70904, 'https://ror.org/0131ydd68', 'nl', 1, 'https://ror.org/0131ydd68 De Tijd'), (70905, 'https://ror.org/01324gs33', 'no_lang_code', 1, 'https://ror.org/01324gs33 Elladam Consulting (Hungary)'), (70906, 'https://ror.org/0132eaf86', 'no_lang_code', 1, 'https://ror.org/0132eaf86 CRO Laboratories (United States)'), (70907, 'https://ror.org/0132q8e84', 'no_lang_code', 1, 'https://ror.org/0132q8e84 Longenecker and Associates (United States)'), (70908, 'https://ror.org/0134kq024', 'en', 1, 'https://ror.org/0134kq024 Cell and Gene Therapy Catapult'), (70909, 'https://ror.org/01368p749', 'en', 1, 'https://ror.org/01368p749 Lincolnshire County Council'), (70910, 'https://ror.org/0136rmr23', 'es', 1, 'https://ror.org/0136rmr23 Programa Venezolano de Educación Acción en Derechos Humanos'), (70911, 'https://ror.org/0137nq929', 'de', 1, 'https://ror.org/0137nq929 Nephrologisches Zentrum Villingen-Schwenningen'), (70912, 'https://ror.org/0139hgh75', 'no_lang_code', 1, 'https://ror.org/0139hgh75 Meissa Vaccines (United States)'), (70913, 'https://ror.org/013b0x867', 'en', 1, 'https://ror.org/013b0x867 Florida Policy Institute'), (70914, 'https://ror.org/013cbkm39', 'en', 1, 'https://ror.org/013cbkm39 Luing Cattle Society'), (70915, 'https://ror.org/013d7vw46', 'en', 1, 'https://ror.org/013d7vw46 Nottinghamshire Deaf Society'), (70916, 'https://ror.org/013fwa311', 'en', 1, 'https://ror.org/013fwa311 Sakhnin College كلية سخنين لتأهيل المعلمين'), (70917, 'https://ror.org/013h5z577', 'en', 1, 'https://ror.org/013h5z577 Riksidrottsförbundet Swedish Sports Confederation'), (70918, 'https://ror.org/013md5775', 'no_lang_code', 1, 'https://ror.org/013md5775 Centre for Factories of the Future (United Kingdom)'), (70919, 'https://ror.org/013nqbx98', 'en', 1, 'https://ror.org/013nqbx98 Type Media Center'), (70920, 'https://ror.org/013pphq47', 'no_lang_code', 1, 'https://ror.org/013pphq47 Metria Innovation (United States)'), (70921, 'https://ror.org/013pta043', 'en', 1, 'https://ror.org/013pta043 Noise Abatement Society'), (70922, 'https://ror.org/013r0t984', 'no_lang_code', 1, 'https://ror.org/013r0t984 Fabryka Łożysk Tocznych Kraśnik Polish Bearings Factory (Poland)'), (70923, 'https://ror.org/013rhnj14', 'pt', 1, 'https://ror.org/013rhnj14 Instituto de Estudos de Saúde Suplementar'), (70924, 'https://ror.org/013vjwn12', 'fr', 1, 'https://ror.org/013vjwn12 Biopolymères Interactions Assemblages'), (70925, 'https://ror.org/013vwky05', 'en', 1, 'https://ror.org/013vwky05 Henriette-Bathily Women''s Museum'), (70926, 'https://ror.org/013w7en88', 'no_lang_code', 1, 'https://ror.org/013w7en88 Military Aviation Works No. 4 (Poland) Wojskowe Zakłady Lotnicze Nr 4'), (70927, 'https://ror.org/013ypha33', 'es', 1, 'https://ror.org/013ypha33 Asociación Nacional de Afrocolombianos Desplazados'), (70928, 'https://ror.org/013ysep90', 'no_lang_code', 1, 'https://ror.org/013ysep90 Isandla Institute'), (70929, 'https://ror.org/014077748', 'da', 1, 'https://ror.org/014077748 Dansk Standard'), (70930, 'https://ror.org/0141vn777', 'en', 1, 'https://ror.org/0141vn777 Institute of Chemistry of Molecular Recognition Istituto di Chimica del Riconoscimento Molecolare'), (70931, 'https://ror.org/0144ggd58', 'en', 1, 'https://ror.org/0144ggd58 International Research and Development Actions'), (70932, 'https://ror.org/0146jt667', 'en', 1, 'https://ror.org/0146jt667 Academic Health Science Network North East and North Cumbria'), (70933, 'https://ror.org/0147mxz16', 'no_lang_code', 1, 'https://ror.org/0147mxz16 Swedish Adrenaline (Sweden)'), (70934, 'https://ror.org/014a3e682', 'no_lang_code', 1, 'https://ror.org/014a3e682 Arima Genomics (United States)'), (70935, 'https://ror.org/014bnza38', 'en', 1, 'https://ror.org/014bnza38 Texas Housers'), (70936, 'https://ror.org/014c4zc27', 'no_lang_code', 1, 'https://ror.org/014c4zc27 Liuman Technologies (United States)'), (70937, 'https://ror.org/014cjsd78', 'en', 1, 'https://ror.org/014cjsd78 Ministry of Defence of Armenia Հայաստանի պաշտպանության նախարարություն'), (70938, 'https://ror.org/014e1k160', 'no_lang_code', 1, 'https://ror.org/014e1k160 Stockbridge Technology Centre (United Kingdom)'), (70939, 'https://ror.org/014eqv775', 'no_lang_code', 1, 'https://ror.org/014eqv775 International Therapeutics (United States)'), (70940, 'https://ror.org/014femp80', 'en', 1, 'https://ror.org/014femp80 University of Trans-Disciplinary Health Sciences and Technology'), (70941, 'https://ror.org/014fqyj02', 'en', 1, 'https://ror.org/014fqyj02 The National Allotment Society'), (70942, 'https://ror.org/014gfpc04', 'no_lang_code', 1, 'https://ror.org/014gfpc04 DCN (United States)'), (70943, 'https://ror.org/014jakh31', 'en', 1, 'https://ror.org/014jakh31 Society of Energy Engineers and Managers'), (70944, 'https://ror.org/014p3wd44', 'no_lang_code', 1, 'https://ror.org/014p3wd44 Creative Light Source (United States)'), (70945, 'https://ror.org/014p7yd77', 'no_lang_code', 1, 'https://ror.org/014p7yd77 Altius Space Machines (United States)'), (70946, 'https://ror.org/014pnnx80', 'en', 1, 'https://ror.org/014pnnx80 Myanmar Environment Institute'), (70947, 'https://ror.org/014txmb23', 'en', 1, 'https://ror.org/014txmb23 Grace Mutual'), (70948, 'https://ror.org/014vs5452', 'en', 1, 'https://ror.org/014vs5452 Shakespeare Behind Bars'), (70949, 'https://ror.org/014wwcs49', 'en', 1, 'https://ror.org/014wwcs49 Naturskyddsföreningen Swedish Society for Nature Conservation'), (70950, 'https://ror.org/014xb2303', 'pl', 1, 'https://ror.org/014xb2303 Wojewódzki Szpital Specjalistyczny nr 4 w Bytomiu'), (70951, 'https://ror.org/014ypdf93', 'en', 1, 'https://ror.org/014ypdf93 Fettes College'), (70952, 'https://ror.org/014zfzp17', 'sk', 1, 'https://ror.org/014zfzp17 Hvezdáreň a Planetárium M.R. Štefánika'), (70953, 'https://ror.org/01504hb29', 'no_lang_code', 1, 'https://ror.org/01504hb29 Cytovale (United States)'), (70954, 'https://ror.org/0151ap895', 'en', 1, 'https://ror.org/0151ap895 Institute for Transportation and Development Policy'), (70955, 'https://ror.org/0151zbe59', 'no_lang_code', 1, 'https://ror.org/0151zbe59 Q2 Solutions (United States)'), (70956, 'https://ror.org/0153h6k87', 'en', 1, 'https://ror.org/0153h6k87 Feminist Institute for Democracy'), (70957, 'https://ror.org/015480z05', 'en', 1, 'https://ror.org/015480z05 All-Russian Institute of Agrarian Problems and Informatics A.A.Nikonova Всероссийский институт аграрных проблем и информатики им. А.А.Никонова'), (70958, 'https://ror.org/015a03w85', 'no_lang_code', 1, 'https://ror.org/015a03w85 Aero Thermo Technology (United States)'), (70959, 'https://ror.org/015dvxx67', 'en', 1, 'https://ror.org/015dvxx67 Institute of Mental Health'), (70960, 'https://ror.org/015jwe732', 'en', 1, 'https://ror.org/015jwe732 South Belfast Partnership Board'), (70961, 'https://ror.org/015mb8g48', 'en', 1, 'https://ror.org/015mb8g48 Royal Institute for Inter-Faith Studies المعهد الملكي للدراسات الدينية'), (70962, 'https://ror.org/015mspw86', 'en', 1, 'https://ror.org/015mspw86 Western Forensic Law Enforcement Training Center'), (70963, 'https://ror.org/015pscp08', 'cs', 1, 'https://ror.org/015pscp08 Cesta Domu'), (70964, 'https://ror.org/015v8md60', 'en', 1, 'https://ror.org/015v8md60 PIR Center ПИР-Центр'), (70965, 'https://ror.org/015w40490', 'es', 1, 'https://ror.org/015w40490 Liceo Jubilar Juan Pablo II'), (70966, 'https://ror.org/015y4yq74', 'en', 1, 'https://ror.org/015y4yq74 Language and Learning Foundation भाषा और सीखना फाउंडेशन'), (70967, 'https://ror.org/015zzsp20', 'en', 1, 'https://ror.org/015zzsp20 Kirkgate Centre'), (70968, 'https://ror.org/016055452', 'en', 1, 'https://ror.org/016055452 Scottish Association of the Teachers of History'), (70969, 'https://ror.org/0160tym22', 'en', 1, 'https://ror.org/0160tym22 Ouseburn Trust'), (70970, 'https://ror.org/0163j0p86', 'no_lang_code', 1, 'https://ror.org/0163j0p86 BlackBox Biometrics (United States)'), (70971, 'https://ror.org/016411e09', 'en', 1, 'https://ror.org/016411e09 Centre for Justice Innovation'), (70972, 'https://ror.org/01643wd06', 'en', 1, 'https://ror.org/01643wd06 Institute for Globally Distributed Open Research and Education'), (70973, 'https://ror.org/0165cfe41', 'en', 1, 'https://ror.org/0165cfe41 Bộ Tư pháp Ministry of Justice'), (70974, 'https://ror.org/0167k2h60', 'en', 1, 'https://ror.org/0167k2h60 Development Network of Indigenous Voluntary Associations'), (70975, 'https://ror.org/01680n352', 'no_lang_code', 1, 'https://ror.org/01680n352 Lithium Innovations (United States)'), (70976, 'https://ror.org/016a6yb46', 'en', 1, 'https://ror.org/016a6yb46 Dundee Heritage Trust'), (70977, 'https://ror.org/016agrs27', 'en', 1, 'https://ror.org/016agrs27 Crescent City Community Land Trust'), (70978, 'https://ror.org/016ata990', 'no_lang_code', 1, 'https://ror.org/016ata990 Immuno Technologies (United States)'), (70979, 'https://ror.org/016azcq16', 'en', 1, 'https://ror.org/016azcq16 Meditest Niepubliczny Zakład Opieki Zdrowotnej Meditest. Diagnostyka Medyczna'), (70980, 'https://ror.org/016bfm023', 'no_lang_code', 1, 'https://ror.org/016bfm023 MLabs (Poland)'), (70981, 'https://ror.org/016cmyf08', 'no_lang_code', 1, 'https://ror.org/016cmyf08 Advanced Fiber Sensors (United States)'), (70982, 'https://ror.org/016ftxq46', 'en', 1, 'https://ror.org/016ftxq46 New Orleans Workers’ Center for Racial Justice'), (70983, 'https://ror.org/016g45z27', 'no_lang_code', 1, 'https://ror.org/016g45z27 Integran (United States)'), (70984, 'https://ror.org/016gda025', 'en', 1, 'https://ror.org/016gda025 Dundee Blind and Partially Sighted Society'), (70985, 'https://ror.org/016gn8k28', 'en', 1, 'https://ror.org/016gn8k28 The Reader'), (70986, 'https://ror.org/016grqh48', 'en', 1, 'https://ror.org/016grqh48 Mentor'), (70987, 'https://ror.org/016haaa50', 'no_lang_code', 1, 'https://ror.org/016haaa50 Metalgráfica Rojek (Brazil)'), (70988, 'https://ror.org/016hmeh62', 'en', 1, 'https://ror.org/016hmeh62 Migrant Center For Human Rights'), (70989, 'https://ror.org/016hpv675', 'en', 1, 'https://ror.org/016hpv675 Westgate Hall'), (70990, 'https://ror.org/016ja5m69', 'no_lang_code', 1, 'https://ror.org/016ja5m69 Investa (Australia)'), (70991, 'https://ror.org/016k9n555', 'en', 1, 'https://ror.org/016k9n555 Centre for Cities'), (70992, 'https://ror.org/016kk7667', 'no_lang_code', 1, 'https://ror.org/016kk7667 ClearMotion (United States)'), (70993, 'https://ror.org/016metk38', 'en', 1, 'https://ror.org/016metk38 Russian Museum of Ethnography Российский этнографический музей'), (70994, 'https://ror.org/016nc1s82', 'en', 1, 'https://ror.org/016nc1s82 British Association for Immediate Care Scotland'), (70995, 'https://ror.org/016skwe97', 'en', 1, 'https://ror.org/016skwe97 The Gate'), (70996, 'https://ror.org/016tbft40', 'no_lang_code', 1, 'https://ror.org/016tbft40 INTER Materials (United States)'), (70997, 'https://ror.org/016tee698', 'en', 1, 'https://ror.org/016tee698 Resolution Fundation'), (70998, 'https://ror.org/016tt0b65', 'en', 1, 'https://ror.org/016tt0b65 The Archaeological Society at Athens Εν Αθήναις Αρχαιολογική Εταιρεία'), (70999, 'https://ror.org/016vd5517', 'no_lang_code', 1, 'https://ror.org/016vd5517 Dillen Associates (United States)'), (71000, 'https://ror.org/016wmhd89', 'en', 1, 'https://ror.org/016wmhd89 WORLDwrite'), (71001, 'https://ror.org/016xq8366', 'en', 1, 'https://ror.org/016xq8366 Arts & Science Council'), (71002, 'https://ror.org/01709et08', 'sv', 1, 'https://ror.org/01709et08 Östergötland Museum'), (71003, 'https://ror.org/0171ejg62', 'en', 1, 'https://ror.org/0171ejg62 Sonoma Ecology Center'), (71004, 'https://ror.org/0173e2k48', 'no_lang_code', 1, 'https://ror.org/0173e2k48 Sol Voltaics (Sweden)'), (71005, 'https://ror.org/0173en609', 'en', 1, 'https://ror.org/0173en609 In Flanders Fields Museum'), (71006, 'https://ror.org/0173qy615', 'en', 1, 'https://ror.org/0173qy615 Jordan Radio and Television Corporation مؤسسة الإذاعة والتلفزيون الأردني'), (71007, 'https://ror.org/0173tje75', 'no_lang_code', 1, 'https://ror.org/0173tje75 Compass Manufacturing Services (United States)'), (71008, 'https://ror.org/0174crz24', 'en', 1, 'https://ror.org/0174crz24 Quip'), (71009, 'https://ror.org/0174fcn41', 'no_lang_code', 1, 'https://ror.org/0174fcn41 Maas Biolab (United States)'), (71010, 'https://ror.org/017747t25', 'no_lang_code', 1, 'https://ror.org/017747t25 Inovex (United States)'), (71011, 'https://ror.org/0177wgn41', 'no_lang_code', 1, 'https://ror.org/0177wgn41 Stoney Forensic (United States)'), (71012, 'https://ror.org/017a2g404', 'no_lang_code', 1, 'https://ror.org/017a2g404 Hexicon (Sweden)'), (71013, 'https://ror.org/017ebm718', 'no_lang_code', 1, 'https://ror.org/017ebm718 Inclusiv (United States)'), (71014, 'https://ror.org/017ez5470', 'no_lang_code', 1, 'https://ror.org/017ez5470 I-Tech (Sweden)'), (71015, 'https://ror.org/017g8gb14', 'no_lang_code', 1, 'https://ror.org/017g8gb14 Prime Discoveries (United States)'), (71016, 'https://ror.org/017jrd082', 'no_lang_code', 1, 'https://ror.org/017jrd082 Eclipse Bioinnovations (United States)'), (71017, 'https://ror.org/017kp0447', 'en', 1, 'https://ror.org/017kp0447 Cheshire Archives and Local Studies'), (71018, 'https://ror.org/017na5t98', 'en', 1, 'https://ror.org/017na5t98 Scruggs & Associates'), (71019, 'https://ror.org/017p3r607', 'en', 1, 'https://ror.org/017p3r607 International Network of Civil Liberties Organizations'), (71020, 'https://ror.org/017pcb882', 'no_lang_code', 1, 'https://ror.org/017pcb882 Framtidens Företag (Sweden)'), (71021, 'https://ror.org/017ppge98', 'en', 1, 'https://ror.org/017ppge98 CO2 Technology Centre Mongstad Teknologisenteret på Mongstad'), (71022, 'https://ror.org/017s7a786', 'en', 1, 'https://ror.org/017s7a786 Renaissance Life Therapies'), (71023, 'https://ror.org/017sc6v85', 'en', 1, 'https://ror.org/017sc6v85 Glasgow and West of Scotland Forum of Housing Associations'), (71024, 'https://ror.org/017sdfy20', 'en', 1, 'https://ror.org/017sdfy20 Medieval Settlement Research Group'), (71025, 'https://ror.org/017snwk31', 'en', 1, 'https://ror.org/017snwk31 Jerusalem Film and Television School'), (71026, 'https://ror.org/017t6mt61', 'sv', 1, 'https://ror.org/017t6mt61 VA Syd'), (71027, 'https://ror.org/017vb4h92', 'no_lang_code', 1, 'https://ror.org/017vb4h92 Seabased (Sweden)'), (71028, 'https://ror.org/017vsz909', 'da', 1, 'https://ror.org/017vsz909 EUC Nordvestsjaelland, ErhvervsUddannelses Center Nordvestsjaelland'), (71029, 'https://ror.org/017wf3d91', 'no_lang_code', 1, 'https://ror.org/017wf3d91 Case Engineering (United States)'), (71030, 'https://ror.org/017ycry73', 'no_lang_code', 1, 'https://ror.org/017ycry73 Bhungroo (India)'), (71031, 'https://ror.org/017z7ha20', 'en', 1, 'https://ror.org/017z7ha20 Doc Society'), (71032, 'https://ror.org/017zq4f19', 'en', 1, 'https://ror.org/017zq4f19 Espoo Music Institute Espoon Musiikkiopisto'), (71033, 'https://ror.org/018112f03', 'en', 1, 'https://ror.org/018112f03 Parenting Across Scotland'), (71034, 'https://ror.org/0183bsj57', 'en', 1, 'https://ror.org/0183bsj57 Chartered Insurance Institute'), (71035, 'https://ror.org/01844pt54', 'en', 1, 'https://ror.org/01844pt54 Shantou Broadcasting and Television University 汕头广播电视大学'), (71036, 'https://ror.org/0186mhr93', 'en', 1, 'https://ror.org/0186mhr93 European Society for Paediatric Oncology'), (71037, 'https://ror.org/0186pgv50', 'no_lang_code', 1, 'https://ror.org/0186pgv50 iFIT Prosthetics (United States)'), (71038, 'https://ror.org/0187g4p12', 'en', 1, 'https://ror.org/0187g4p12 Down Syndrome Society of Kenya'), (71039, 'https://ror.org/018bg7z10', 'en', 1, 'https://ror.org/018bg7z10 Bangladesh Institute of Bank Management বাংলাদেশ ইন্সটিটিউট অফ ব্যাংক মেনেজমেন্ট'), (71040, 'https://ror.org/018bj7h19', 'no_lang_code', 1, 'https://ror.org/018bj7h19 A J Tuck (United States)'), (71041, 'https://ror.org/018df9d45', 'no_lang_code', 1, 'https://ror.org/018df9d45 Zhongzhu Healthcare (China)'), (71042, 'https://ror.org/018gn4336', 'en', 1, 'https://ror.org/018gn4336 Online Dating Association'), (71043, 'https://ror.org/018h4tb29', 'no_lang_code', 1, 'https://ror.org/018h4tb29 Ivan Honchar Museum Музей Івана Гончара'), (71044, 'https://ror.org/018j6fe30', 'en', 1, 'https://ror.org/018j6fe30 Mission Asset Fund'), (71045, 'https://ror.org/018jnkm11', 'no_lang_code', 1, 'https://ror.org/018jnkm11 Blacktrace (United States)'), (71046, 'https://ror.org/018kbgx06', 'en', 1, 'https://ror.org/018kbgx06 Oretha Castle Haley Boulevard Merchants & Business Association'), (71047, 'https://ror.org/018mc6y79', 'no_lang_code', 1, 'https://ror.org/018mc6y79 Fimbrion Therapeutics (United States)'), (71048, 'https://ror.org/018rrky13', 'no_lang_code', 1, 'https://ror.org/018rrky13 Lanarkshire Enterprise Services Limited (United Kingdom)'), (71049, 'https://ror.org/018smbg70', 'no_lang_code', 1, 'https://ror.org/018smbg70 Angstrom Designs (United States)'), (71050, 'https://ror.org/018sp9t05', 'en', 1, 'https://ror.org/018sp9t05 Irish World Heritage Centre'), (71051, 'https://ror.org/018t0g992', 'en', 1, 'https://ror.org/018t0g992 York, North Yorkshire and East Riding Enterprise Partnership'), (71052, 'https://ror.org/018z2vp10', 'da', 1, 'https://ror.org/018z2vp10 Rybners'), (71053, 'https://ror.org/018z6vq38', 'en', 1, 'https://ror.org/018z6vq38 CdLS Foundation UK & Ireland'), (71054, 'https://ror.org/0190epk64', 'no_lang_code', 1, 'https://ror.org/0190epk64 C-Green Technology (Sweden)'), (71055, 'https://ror.org/0190s7p04', 'en', 1, 'https://ror.org/0190s7p04 Académie de France à Rome French Academy in Rome'), (71056, 'https://ror.org/0192srs23', 'en', 1, 'https://ror.org/0192srs23 Caribbean Electric Utility Services Corporation'), (71057, 'https://ror.org/01949f364', 'en', 1, 'https://ror.org/01949f364 Northeastern Illinois Regional Crime Laboratory'), (71058, 'https://ror.org/0194gma78', 'no_lang_code', 1, 'https://ror.org/0194gma78 MosquitoMate (United States)'), (71059, 'https://ror.org/0195q2562', 'no_lang_code', 1, 'https://ror.org/0195q2562 Eon Corporation (United States)'), (71060, 'https://ror.org/01974bd32', 'no_lang_code', 1, 'https://ror.org/01974bd32 CytoInformatics (United States)'), (71061, 'https://ror.org/01994hy95', 'en', 1, 'https://ror.org/01994hy95 Islington Museum'), (71062, 'https://ror.org/019btxj82', 'no_lang_code', 1, 'https://ror.org/019btxj82 Ajjer (United States)'), (71063, 'https://ror.org/019enq229', 'no_lang_code', 1, 'https://ror.org/019enq229 Folio Photonics (United States)'), (71064, 'https://ror.org/019hmfn94', 'en', 1, 'https://ror.org/019hmfn94 Centre for Movement Disorders'), (71065, 'https://ror.org/019hsqt53', 'en', 1, 'https://ror.org/019hsqt53 Healing Fields Foundation హీలింగ్ ఫీల్డ్స్ ఫౌండేషన్'), (71066, 'https://ror.org/019j5vb98', 'no_lang_code', 1, 'https://ror.org/019j5vb98 ArrayFire (United States)'), (71067, 'https://ror.org/019jheb81', 'en', 1, 'https://ror.org/019jheb81 Future Health Biobank'), (71068, 'https://ror.org/019jndt66', 'en', 1, 'https://ror.org/019jndt66 Textile Centre of Excellence'), (71069, 'https://ror.org/019jswg45', 'no_lang_code', 1, 'https://ror.org/019jswg45 Berkeley Air Monitoring Group (United States)'), (71070, 'https://ror.org/019kg0t44', 'en', 1, 'https://ror.org/019kg0t44 Legatum Institute'), (71071, 'https://ror.org/019kjv407', 'no_lang_code', 1, 'https://ror.org/019kjv407 Gougeon Brothers (United States)'), (71072, 'https://ror.org/019msr682', 'en', 1, 'https://ror.org/019msr682 Colmar Inra Research Centre Le Centre Inra de Colmar'), (71073, 'https://ror.org/019n3pt49', 'no_lang_code', 1, 'https://ror.org/019n3pt49 4SC (Germany)'), (71074, 'https://ror.org/019qntf91', 'en', 1, 'https://ror.org/019qntf91 Article 19 Artigo 19'), (71075, 'https://ror.org/019qwdy63', 'en', 1, 'https://ror.org/019qwdy63 American Center Yangon'), (71076, 'https://ror.org/019rrzp31', 'en', 1, 'https://ror.org/019rrzp31 Institute for Linguistic Evidence'), (71077, 'https://ror.org/019w0b107', 'no_lang_code', 1, 'https://ror.org/019w0b107 Choshu Industry (Japan) 長州産業'), (71078, 'https://ror.org/019ybb567', 'no_lang_code', 1, 'https://ror.org/019ybb567 LightLine Technologies (United States)'), (71079, 'https://ror.org/019yfmw38', 'no_lang_code', 1, 'https://ror.org/019yfmw38 Bryne (Sweden)'), (71080, 'https://ror.org/019yha079', 'en', 1, 'https://ror.org/019yha079 Sustainable Food Trust'), (71081, 'https://ror.org/019yq4944', 'no_lang_code', 1, 'https://ror.org/019yq4944 LumenRadio (Sweden)'), (71082, 'https://ror.org/01a0mkb65', 'en', 1, 'https://ror.org/01a0mkb65 Archiv Hlavního Města Prahy Prague City Archives'), (71083, 'https://ror.org/01a1vdv95', 'en', 1, 'https://ror.org/01a1vdv95 British Safety Council'), (71084, 'https://ror.org/01a402j88', 'en', 1, 'https://ror.org/01a402j88 National HIV/AIDS Secretariat'), (71085, 'https://ror.org/01a4m6398', 'no_lang_code', 1, 'https://ror.org/01a4m6398 Fahe'), (71086, 'https://ror.org/01a4v4q66', 'en', 1, 'https://ror.org/01a4v4q66 SNV Netherlands Development Organisation'), (71087, 'https://ror.org/01a5k3514', 'no_lang_code', 1, 'https://ror.org/01a5k3514 Anchor Technology (United States)'), (71088, 'https://ror.org/01a5ymr35', 'no_lang_code', 1, 'https://ror.org/01a5ymr35 Global Science & Technology (United States)'), (71089, 'https://ror.org/01a7xtr20', 'no_lang_code', 1, 'https://ror.org/01a7xtr20 InnoVentum (Sweden)'), (71090, 'https://ror.org/01a9bcw11', 'no_lang_code', 1, 'https://ror.org/01a9bcw11 Mira Dx (United States)'), (71091, 'https://ror.org/01aary583', 'en', 1, 'https://ror.org/01aary583 Verbal Arts Centre'), (71092, 'https://ror.org/01ab9wf13', 'en', 1, 'https://ror.org/01ab9wf13 Argentine Senate Honorable Senado de la Nación Argentina'), (71093, 'https://ror.org/01abd8q97', 'en', 1, 'https://ror.org/01abd8q97 Potato Processors Association'), (71094, 'https://ror.org/01ad0ky70', 'no_lang_code', 1, 'https://ror.org/01ad0ky70 Mikel (United States)'), (71095, 'https://ror.org/01adn4a11', 'no_lang_code', 1, 'https://ror.org/01adn4a11 LodeSpin Labs (United States)'), (71096, 'https://ror.org/01adw2y76', 'pt', 1, 'https://ror.org/01adw2y76 Osso'), (71097, 'https://ror.org/01agawv85', 'en', 1, 'https://ror.org/01agawv85 Plymouth City Museum and Art Gallery'), (71098, 'https://ror.org/01ame3c61', 'no_lang_code', 1, 'https://ror.org/01ame3c61 Innovital Systems (United States)'), (71099, 'https://ror.org/01amnkg95', 'en', 1, 'https://ror.org/01amnkg95 Refugee Action'), (71100, 'https://ror.org/01anktx53', 'no_lang_code', 1, 'https://ror.org/01anktx53 Sealed Air (Brazil)'), (71101, 'https://ror.org/01aptsm66', 'en', 1, 'https://ror.org/01aptsm66 Institute for In Vitro Sciences'), (71102, 'https://ror.org/01apxt611', 'en', 1, 'https://ror.org/01apxt611 Medway NHS Foundation Trust'), (71103, 'https://ror.org/01aq5nz90', 'en', 1, 'https://ror.org/01aq5nz90 China Development Brief 中国发展简报'), (71104, 'https://ror.org/01ar8m914', 'en', 1, 'https://ror.org/01ar8m914 Polish Platform for Homeland Security Polska Platforma Bezpieczeństwa Wewnętrznego'), (71105, 'https://ror.org/01avd5833', 'pl', 1, 'https://ror.org/01avd5833 Narodowy Instytut Muzealnictwa i Ochrony Zbiorów'), (71106, 'https://ror.org/01axqd881', 'en', 1, 'https://ror.org/01axqd881 Swarnabhoomi Academy of Music'), (71107, 'https://ror.org/01ayxmp98', 'de', 1, 'https://ror.org/01ayxmp98 GFO Kliniken Bonn, St. Marien-Hospital Bonn'), (71108, 'https://ror.org/01az4vq35', 'en', 1, 'https://ror.org/01az4vq35 Society for Education Welfare and Action Rural'), (71109, 'https://ror.org/01azp7v94', 'no_lang_code', 1, 'https://ror.org/01azp7v94 Glactone Pharma (Sweden)'), (71110, 'https://ror.org/01b003q34', 'no_lang_code', 1, 'https://ror.org/01b003q34 Sokrat'), (71111, 'https://ror.org/01b0e9p06', 'en', 1, 'https://ror.org/01b0e9p06 East Sweden Energy Agency Energikontoret Östergötland'), (71112, 'https://ror.org/01b0sfz46', 'en', 1, 'https://ror.org/01b0sfz46 National Centre for Contemporary Arts Государственный центр современного искусства'), (71113, 'https://ror.org/01b0x7m05', 'no_lang_code', 1, 'https://ror.org/01b0x7m05 BST Systems (United States)'), (71114, 'https://ror.org/01b2xn187', 'no_lang_code', 1, 'https://ror.org/01b2xn187 CloneOpt (Sweden)'), (71115, 'https://ror.org/01b30v774', 'no_lang_code', 1, 'https://ror.org/01b30v774 Sakata (Brazil)'), (71116, 'https://ror.org/01b385s60', 'en', 1, 'https://ror.org/01b385s60 Suffolk Sheep Society'), (71117, 'https://ror.org/01b3ygz78', 'de', 1, 'https://ror.org/01b3ygz78 Institut Kurz'), (71118, 'https://ror.org/01b6p7v84', 'no_lang_code', 1, 'https://ror.org/01b6p7v84 Platod (France)'), (71119, 'https://ror.org/01b9jms40', 'pt', 1, 'https://ror.org/01b9jms40 Centro de Estudos de Segurança e Cidadania'), (71120, 'https://ror.org/01bby3105', 'no_lang_code', 1, 'https://ror.org/01bby3105 DexMat (United States)'), (71121, 'https://ror.org/01bchpm90', 'en', 1, 'https://ror.org/01bchpm90 Instituto Nacional de Lenguas Indígenas National Indigenous Languages Institute'), (71122, 'https://ror.org/01bdg0p84', 'pl', 1, 'https://ror.org/01bdg0p84 Wojewódzki Szpital Specjalistyczny nr 5 im. św. Barbary w Sosnowcu'), (71123, 'https://ror.org/01bdvsc06', 'sv', 1, 'https://ror.org/01bdvsc06 Swerim'), (71124, 'https://ror.org/01bfjbb09', 'no_lang_code', 1, 'https://ror.org/01bfjbb09 Akuru Pharma (Sweden)'), (71125, 'https://ror.org/01bjs1d88', 'en', 1, 'https://ror.org/01bjs1d88 Helsingfors Konstmuseum Helsingin Taidemuseo Helsinki Art Museum'), (71126, 'https://ror.org/01bkzhn35', 'en', 1, 'https://ror.org/01bkzhn35 Angling Trust'), (71127, 'https://ror.org/01bq72s38', 'no_lang_code', 1, 'https://ror.org/01bq72s38 Astrileux (United States)'), (71128, 'https://ror.org/01bqdbm60', 'pl', 1, 'https://ror.org/01bqdbm60 Szkoła Aspirantów Państwowej Straży Pożarnej'), (71129, 'https://ror.org/01bqqes77', 'no_lang_code', 1, 'https://ror.org/01bqqes77 Fluorescence Innovations (United States)'), (71130, 'https://ror.org/01bqrhe48', 'en', 1, 'https://ror.org/01bqrhe48 Institute of Genetics and Hospital for Genetic Diseases ఇన్స్టిట్యూట్ ఆఫ్ జెనిటిక్స్ అండ్ హాస్పిటల్ ఫర్ జెనెటిక్ డిసీజెస్'), (71131, 'https://ror.org/01bqshg74', 'no_lang_code', 1, 'https://ror.org/01bqshg74 Watty (Sweden)'), (71132, 'https://ror.org/01br0tv80', 'no_lang_code', 1, 'https://ror.org/01br0tv80 Brains4Drones (United States)'), (71133, 'https://ror.org/01brhxa96', 'en', 1, 'https://ror.org/01brhxa96 Library of the Russian Academy of Sciences Библиотека Российской академии наук'), (71134, 'https://ror.org/01bs3vx31', 'en', 1, 'https://ror.org/01bs3vx31 Centro di Documentazione Ebraica Contemporanea Foundation Jewish Contemporary Documentation Center La Fondazione Centro di Documentazione Ebraica Contemporanea'), (71135, 'https://ror.org/01bsx7b24', 'es', 1, 'https://ror.org/01bsx7b24 Fundación ProYungas'), (71136, 'https://ror.org/01bv0ma93', 'no_lang_code', 1, 'https://ror.org/01bv0ma93 Artemis (United States)'), (71137, 'https://ror.org/01bxfeh72', 'en', 1, 'https://ror.org/01bxfeh72 American Correctional Association'), (71138, 'https://ror.org/01bya3q34', 'no_lang_code', 1, 'https://ror.org/01bya3q34 SGL Carbon (Poland)'), (71139, 'https://ror.org/01bycfv98', 'no_lang_code', 1, 'https://ror.org/01bycfv98 Ideas Engineering & Technology (United States)'), (71140, 'https://ror.org/01bye2s58', 'en', 1, 'https://ror.org/01bye2s58 Breakthrough Science Society'), (71141, 'https://ror.org/01bynsf44', 'de', 1, 'https://ror.org/01bynsf44 Deutsche Akademie für Kinder- und Jugendmedizin'), (71142, 'https://ror.org/01byxa330', 'no_lang_code', 1, 'https://ror.org/01byxa330 Navdanya'), (71143, 'https://ror.org/01byxcr66', 'en', 1, 'https://ror.org/01byxcr66 Learning and Work Institute'), (71144, 'https://ror.org/01bz5gk50', 'no_lang_code', 1, 'https://ror.org/01bz5gk50 PHI'), (71145, 'https://ror.org/01c1sry94', 'en', 1, 'https://ror.org/01c1sry94 International Solid Waste Association'), (71146, 'https://ror.org/01c366927', 'no_lang_code', 1, 'https://ror.org/01c366927 BoroPharm (United States)'), (71147, 'https://ror.org/01c85sy27', 'en', 1, 'https://ror.org/01c85sy27 Philanthropy West Virginia'), (71148, 'https://ror.org/01c961y89', 'en', 1, 'https://ror.org/01c961y89 International Broadcasting Trust'), (71149, 'https://ror.org/01cahbt32', 'no_lang_code', 1, 'https://ror.org/01cahbt32 Centre Régional Songhaï Songhai'), (71150, 'https://ror.org/01cb4q924', 'en', 1, 'https://ror.org/01cb4q924 London Arts in Health Forum'), (71151, 'https://ror.org/01cbfpq42', 'no_lang_code', 1, 'https://ror.org/01cbfpq42 Braxton (United States)'), (71152, 'https://ror.org/01cc0qc38', 'en', 1, 'https://ror.org/01cc0qc38 Victorian Bar'), (71153, 'https://ror.org/01cdys993', 'en', 1, 'https://ror.org/01cdys993 Manchester Health and Wellbeing Service'), (71154, 'https://ror.org/01cjtcc19', 'pt', 1, 'https://ror.org/01cjtcc19 Uma Gota no Oceano'), (71155, 'https://ror.org/01cjyw781', 'en', 1, 'https://ror.org/01cjyw781 St Ethelburga’s Centre for Reconciliation and Peace'), (71156, 'https://ror.org/01cjzrq61', 'en', 1, 'https://ror.org/01cjzrq61 Media Matters for America'), (71157, 'https://ror.org/01cm1jq76', 'no_lang_code', 1, 'https://ror.org/01cm1jq76 Kerberos International (United States)'), (71158, 'https://ror.org/01cntn905', 'no_lang_code', 1, 'https://ror.org/01cntn905 BorgWarner (United Kingdom)'), (71159, 'https://ror.org/01cregx09', 'en', 1, 'https://ror.org/01cregx09 Ceiba Foundation for Tropical Conservation'), (71160, 'https://ror.org/01crhk777', 'en', 1, 'https://ror.org/01crhk777 LGBT Foundation'), (71161, 'https://ror.org/01cs5d441', 'no_lang_code', 1, 'https://ror.org/01cs5d441 E-Line Media (United States)'), (71162, 'https://ror.org/01cwznr13', 'no_lang_code', 1, 'https://ror.org/01cwznr13 IBI Group (United Kingdom)'), (71163, 'https://ror.org/01cxdpf04', 'no_lang_code', 1, 'https://ror.org/01cxdpf04 Cambridge Electronics (United States)'), (71164, 'https://ror.org/01d016e60', 'en', 1, 'https://ror.org/01d016e60 Jonathan A Law & Associates'), (71165, 'https://ror.org/01d20y590', 'de', 1, 'https://ror.org/01d20y590 Spiekermann and Wegener'), (71166, 'https://ror.org/01d4cy209', 'no_lang_code', 1, 'https://ror.org/01d4cy209 NanoRidge (United States)'), (71167, 'https://ror.org/01dashf18', 'en', 1, 'https://ror.org/01dashf18 Wuhan College'), (71168, 'https://ror.org/01de12660', 'no_lang_code', 1, 'https://ror.org/01de12660 Cell Podium (United States)'), (71169, 'https://ror.org/01de1bn24', 'no_lang_code', 1, 'https://ror.org/01de1bn24 Dextra Laboratories (United Kingdom)'), (71170, 'https://ror.org/01dfmc653', 'de', 1, 'https://ror.org/01dfmc653 Krankenhaus Sachsenhausen'), (71171, 'https://ror.org/01dg1k785', 'no_lang_code', 1, 'https://ror.org/01dg1k785 Alliance for Multispecialty Research (United States)'), (71172, 'https://ror.org/01dg8r335', 'en', 1, 'https://ror.org/01dg8r335 Ministry of Economy of the Republic of Uzbekistan O''zbekiston Respublikasi Iqtisodiyot Vazirligi'), (71173, 'https://ror.org/01dgmv528', 'en', 1, 'https://ror.org/01dgmv528 Institute of History of Ukraine Інститут історії України НАН України'), (71174, 'https://ror.org/01dgyad16', 'en', 1, 'https://ror.org/01dgyad16 Partnership for Working Families'), (71175, 'https://ror.org/01dkdqg26', 'no_lang_code', 1, 'https://ror.org/01dkdqg26 Mote Research (United Kingdom)'), (71176, 'https://ror.org/01dkvcs48', 'en', 1, 'https://ror.org/01dkvcs48 North Somerset Council'), (71177, 'https://ror.org/01dmy1650', 'no_lang_code', 1, 'https://ror.org/01dmy1650 Odlewnie Polskie (Poland)'), (71178, 'https://ror.org/01dp90d46', 'en', 1, 'https://ror.org/01dp90d46 Peggy Dodd Centre'), (71179, 'https://ror.org/01dqh8j58', 'en', 1, 'https://ror.org/01dqh8j58 National Institute of Disaster Management राष्ट्रीय आपदा प्रबंधन संस्थान'), (71180, 'https://ror.org/01dsgkd63', 'en', 1, 'https://ror.org/01dsgkd63 Asian Americans/Pacific Islanders in Philanthropy'), (71181, 'https://ror.org/01dsgn298', 'no_lang_code', 1, 'https://ror.org/01dsgn298 Al-Kasaba Theatre & Cinematheque مسرح وسينماتك القصبة'), (71182, 'https://ror.org/01dt0bh70', 'en', 1, 'https://ror.org/01dt0bh70 Akademi Seni Budaya Dan Warisan Kebangsaan National Academy of Arts, Culture and Heritage'), (71183, 'https://ror.org/01dtas649', 'no_lang_code', 1, 'https://ror.org/01dtas649 Norstel (Sweden)'), (71184, 'https://ror.org/01dtngx32', 'no_lang_code', 1, 'https://ror.org/01dtngx32 Bioendev (Sweden)'), (71185, 'https://ror.org/01dwh3q17', 'pt', 1, 'https://ror.org/01dwh3q17 Centro de Estudos e Pesquisa em Saúde Coletiva'), (71186, 'https://ror.org/01dwwr847', 'en', 1, 'https://ror.org/01dwwr847 Filantropi Indonesia Indonesia Philanthropy Association'), (71187, 'https://ror.org/01dx39x96', 'en', 1, 'https://ror.org/01dx39x96 Institut društvenih nauka Institute of Social Sciences'), (71188, 'https://ror.org/01dy6j730', 'no_lang_code', 1, 'https://ror.org/01dy6j730 Diamir (United States)'), (71189, 'https://ror.org/01e10kr47', 'en', 1, 'https://ror.org/01e10kr47 Museum of the Order of St John'), (71190, 'https://ror.org/01e10rp58', 'en', 1, 'https://ror.org/01e10rp58 Interfaith Worker Justice'), (71191, 'https://ror.org/01e15cb45', 'no_lang_code', 1, 'https://ror.org/01e15cb45 Bova (Taiwan)'), (71192, 'https://ror.org/01e17wh10', 'no_lang_code', 1, 'https://ror.org/01e17wh10 Vikas Samvad'), (71193, 'https://ror.org/01e3mhx02', 'en', 1, 'https://ror.org/01e3mhx02 Japan Institute for Labour Policy and Training 独立行政法人労働政策研究・研修機構'), (71194, 'https://ror.org/01e47g017', 'no_lang_code', 1, 'https://ror.org/01e47g017 FirstPass Engineering (United States)'), (71195, 'https://ror.org/01e4h3c94', 'no_lang_code', 1, 'https://ror.org/01e4h3c94 Tony Coll and Associates (United Kingdom)'), (71196, 'https://ror.org/01e8m9d21', 'en', 1, 'https://ror.org/01e8m9d21 Ministry of Foreign Affairs وزارة الخارجية المصرية'), (71197, 'https://ror.org/01e8xap89', 'no_lang_code', 1, 'https://ror.org/01e8xap89 Peptide Protein Research (United Kingdom)'), (71198, 'https://ror.org/01e9djz97', 'en', 1, 'https://ror.org/01e9djz97 International Bluegrass Music Association'), (71199, 'https://ror.org/01eb6s760', 'no_lang_code', 1, 'https://ror.org/01eb6s760 Electric Propulsion Laboratory (United States)'), (71200, 'https://ror.org/01ecdm936', 'en', 1, 'https://ror.org/01ecdm936 Brighton Museum'), (71201, 'https://ror.org/01eeqkr30', 'en', 1, 'https://ror.org/01eeqkr30 The Ministry of Education and Science of the Kyrgyz Republic Кыргыз Республикасынын билим берүү жана илим министрлиги Министерство образования и науки Кыргызской Республики'), (71202, 'https://ror.org/01egfqj98', 'no_lang_code', 1, 'https://ror.org/01egfqj98 Sanskriti Samvardhan Mandal'), (71203, 'https://ror.org/01eggt963', 'de', 1, 'https://ror.org/01eggt963 Klinikum Lüdenscheid'), (71204, 'https://ror.org/01ekv6k42', 'en', 1, 'https://ror.org/01ekv6k42 Green Camel Bell 绿驼铃'), (71205, 'https://ror.org/01em2a424', 'no_lang_code', 1, 'https://ror.org/01em2a424 Land Sea Air Autonomy (United States)'), (71206, 'https://ror.org/01em88r57', 'en', 1, 'https://ror.org/01em88r57 Community Connect Foundation'), (71207, 'https://ror.org/01emaft25', 'no_lang_code', 1, 'https://ror.org/01emaft25 Avantherm (Sweden)'), (71208, 'https://ror.org/01emkn494', 'en', 1, 'https://ror.org/01emkn494 DC Arts & Humanities Education Collaborative'), (71209, 'https://ror.org/01enkn839', 'en', 1, 'https://ror.org/01enkn839 The Aquatic Coleoptera Conservation Trust'), (71210, 'https://ror.org/01epkyf81', 'no_lang_code', 1, 'https://ror.org/01epkyf81 Astrox (United States)'), (71211, 'https://ror.org/01esz2741', 'no_lang_code', 1, 'https://ror.org/01esz2741 UIT Solutions (South Korea) 유아이티'), (71212, 'https://ror.org/01etbpd39', 'en', 1, 'https://ror.org/01etbpd39 St. Scholastica''s College'), (71213, 'https://ror.org/01ex19q32', 'en', 1, 'https://ror.org/01ex19q32 Kingswood Oxford'), (71214, 'https://ror.org/01eydjf18', 'en', 1, 'https://ror.org/01eydjf18 The Beles Group'), (71215, 'https://ror.org/01f0ym620', 'en', 1, 'https://ror.org/01f0ym620 Teylers Museum'), (71216, 'https://ror.org/01f3jm010', 'en', 1, 'https://ror.org/01f3jm010 Canadian Foundation for the Americas'), (71217, 'https://ror.org/01f4evc04', 'en', 1, 'https://ror.org/01f4evc04 Culture Coventry'), (71218, 'https://ror.org/01f4st973', 'no_lang_code', 1, 'https://ror.org/01f4st973 Biocentre Technology (United Kingdom)'), (71219, 'https://ror.org/01f5kte17', 'en', 1, 'https://ror.org/01f5kte17 I Choose Life'), (71220, 'https://ror.org/01f6x5c85', 'no_lang_code', 1, 'https://ror.org/01f6x5c85 Dynamic Systems Integration (United States)'), (71221, 'https://ror.org/01f7ac059', 'no_lang_code', 1, 'https://ror.org/01f7ac059 Inertial Labs (United States)'), (71222, 'https://ror.org/01f83vs23', 'no_lang_code', 1, 'https://ror.org/01f83vs23 C&A Foundation (Switzerland)'), (71223, 'https://ror.org/01f8qyw75', 'en', 1, 'https://ror.org/01f8qyw75 Indian Institute of Information Technology, Pune भारतीय सूचना प्रौद्योगिकी संस्थान,पुणे'), (71224, 'https://ror.org/01faqmz67', 'no_lang_code', 1, 'https://ror.org/01faqmz67 Kepley BioSystems (United States)'), (71225, 'https://ror.org/01fbez228', 'no_lang_code', 1, 'https://ror.org/01fbez228 Sprint Bioscience (Sweden)'), (71226, 'https://ror.org/01fcbp662', 'en', 1, 'https://ror.org/01fcbp662 Institute for Cultural Inquiry'), (71227, 'https://ror.org/01fddvx19', 'en', 1, 'https://ror.org/01fddvx19 West Lothian Council'), (71228, 'https://ror.org/01fe85m15', 'en', 1, 'https://ror.org/01fe85m15 Eyebeam'); INSERT INTO `rors` VALUES (71229, 'https://ror.org/01ffkb584', 'en', 1, 'https://ror.org/01ffkb584 Sustainable Livelihoods Foundation'), (71230, 'https://ror.org/01ffr8256', 'no_lang_code', 1, 'https://ror.org/01ffr8256 Annexon Biosciences (United States)'), (71231, 'https://ror.org/01fgzfp87', 'en', 1, 'https://ror.org/01fgzfp87 US Embassy in Turkmenistan'), (71232, 'https://ror.org/01fkztr60', 'en', 1, 'https://ror.org/01fkztr60 Glasgow Women''s Library'), (71233, 'https://ror.org/01fm8t129', 'en', 1, 'https://ror.org/01fm8t129 Scientific Studies Association İlmi Etüdler Derneğ'), (71234, 'https://ror.org/01fn3sj65', 'en', 1, 'https://ror.org/01fn3sj65 Institute for Intergovernmental Research'), (71235, 'https://ror.org/01fn7y155', 'no_lang_code', 1, 'https://ror.org/01fn7y155 Pharmaron (United Kingdom)'), (71236, 'https://ror.org/01fns9c92', 'en', 1, 'https://ror.org/01fns9c92 Black Country Living Museum'), (71237, 'https://ror.org/01fq8hw04', 'en', 1, 'https://ror.org/01fq8hw04 Evangelical Church Winning All'), (71238, 'https://ror.org/01fr1mq46', 'en', 1, 'https://ror.org/01fr1mq46 Balor Arts Centre'), (71239, 'https://ror.org/01fr7xq53', 'en', 1, 'https://ror.org/01fr7xq53 Adaptive Design Association'), (71240, 'https://ror.org/01ftj8q07', 'en', 1, 'https://ror.org/01ftj8q07 College of St George'), (71241, 'https://ror.org/01fv2q409', 'en', 1, 'https://ror.org/01fv2q409 Horniman Museum and Gardens'), (71242, 'https://ror.org/01fxfr158', 'en', 1, 'https://ror.org/01fxfr158 Anna Lindh Foundation'), (71243, 'https://ror.org/01fztcv40', 'en', 1, 'https://ror.org/01fztcv40 Kenya School of Government'), (71244, 'https://ror.org/01g0bw002', 'no_lang_code', 1, 'https://ror.org/01g0bw002 Tretyakov Gallery Государственная Третьяковская Галерея'), (71245, 'https://ror.org/01g26n816', 'en', 1, 'https://ror.org/01g26n816 Saffron Walden Museum'), (71246, 'https://ror.org/01g36xg54', 'en', 1, 'https://ror.org/01g36xg54 Trees and Design Action Group'), (71247, 'https://ror.org/01g3gak55', 'en', 1, 'https://ror.org/01g3gak55 The National Autistic Society'), (71248, 'https://ror.org/01g5nae47', 'en', 1, 'https://ror.org/01g5nae47 Texas Association Against Sexual Assault'), (71249, 'https://ror.org/01g6mxs55', 'no_lang_code', 1, 'https://ror.org/01g6mxs55 Inteligistics (United States)'), (71250, 'https://ror.org/01g75py92', 'no_lang_code', 1, 'https://ror.org/01g75py92 MAST Technologies (United States)'), (71251, 'https://ror.org/01g78rb53', 'fr', 1, 'https://ror.org/01g78rb53 Alliance Citoyenne'), (71252, 'https://ror.org/01g7a7y43', 'no_lang_code', 1, 'https://ror.org/01g7a7y43 Noravank Foundation Նորավանք» հիմնադրամ'), (71253, 'https://ror.org/01g8p7e44', 'no_lang_code', 1, 'https://ror.org/01g8p7e44 Publicis Groupe (France)'), (71254, 'https://ror.org/01g9gaq76', 'en', 1, 'https://ror.org/01g9gaq76 Xuzhou Cancer Hospital'), (71255, 'https://ror.org/01gamcy45', 'no_lang_code', 1, 'https://ror.org/01gamcy45 Brain (Germany)'), (71256, 'https://ror.org/01garp273', 'no_lang_code', 1, 'https://ror.org/01garp273 Fulcrum Composites (United States)'), (71257, 'https://ror.org/01gat1y32', 'no_lang_code', 1, 'https://ror.org/01gat1y32 No Picnic (Sweden)'), (71258, 'https://ror.org/01gf4c669', 'en', 1, 'https://ror.org/01gf4c669 The Elizabeth Foundation for the Arts'), (71259, 'https://ror.org/01gh80505', 'en', 1, 'https://ror.org/01gh80505 Coventry and Warwickshire Partnership NHS Trust'), (71260, 'https://ror.org/01gjnjy30', 'no_lang_code', 1, 'https://ror.org/01gjnjy30 Medical Diagnostic Laboratories (United States)'), (71261, 'https://ror.org/01gjnzx46', 'es', 1, 'https://ror.org/01gjnzx46 Cultura, Instituto de Cultura, Turismo y Arte de Mazatlan'), (71262, 'https://ror.org/01gp9yw74', 'en', 1, 'https://ror.org/01gp9yw74 Open Society Otevřená Společnost'), (71263, 'https://ror.org/01gr3kq91', 'en', 1, 'https://ror.org/01gr3kq91 Interamerican Society of Cardiology Sociedad Interamericana de Cardiología'), (71264, 'https://ror.org/01grm4y17', 'en', 1, 'https://ror.org/01grm4y17 Bavarian State Research Center for Agriculture Bayerische Landesanstalt für Landwirtschaft'), (71265, 'https://ror.org/01gspzg10', 'no_lang_code', 1, 'https://ror.org/01gspzg10 TV Asahi (Japan) 株式会社テレビ朝日'), (71266, 'https://ror.org/01gw2fq77', 'en', 1, 'https://ror.org/01gw2fq77 Shetland Museum and Archives'), (71267, 'https://ror.org/01gxrbz31', 'en', 1, 'https://ror.org/01gxrbz31 Rodrigues Economic Chamber and Industry'), (71268, 'https://ror.org/01h3j2d14', 'en', 1, 'https://ror.org/01h3j2d14 Detroit Economic Growth Corporation'), (71269, 'https://ror.org/01h4b6a51', 'pt', 1, 'https://ror.org/01h4b6a51 Observatório do Meio Rural'), (71270, 'https://ror.org/01h4n0g56', 'no_lang_code', 1, 'https://ror.org/01h4n0g56 Amydis (United States)'), (71271, 'https://ror.org/01h4rra97', 'fr', 1, 'https://ror.org/01h4rra97 Gouvernance, Risque, Environnement, Développement'), (71272, 'https://ror.org/01h5wyd82', 'en', 1, 'https://ror.org/01h5wyd82 Taiwan Public Television Service Foundation 財團法人公共電視文化事業基金會'), (71273, 'https://ror.org/01h6ebv15', 'en', 1, 'https://ror.org/01h6ebv15 mySociety'), (71274, 'https://ror.org/01h79xg57', 'no_lang_code', 1, 'https://ror.org/01h79xg57 Applied Graphene Materials (United Kingdom)'), (71275, 'https://ror.org/01h814g24', 'no_lang_code', 1, 'https://ror.org/01h814g24 Lanka Hydraulic Institute (Sri Lanka)'), (71276, 'https://ror.org/01h9cfp35', 'no_lang_code', 1, 'https://ror.org/01h9cfp35 Connecticut Analytical Corporation (United States)'), (71277, 'https://ror.org/01hc68e22', 'en', 1, 'https://ror.org/01hc68e22 Association of Baltimore Area Grantmakers'), (71278, 'https://ror.org/01hcawk58', 'en', 1, 'https://ror.org/01hcawk58 Seoyeong University'), (71279, 'https://ror.org/01heyg366', 'fr', 1, 'https://ror.org/01heyg366 Musée d''Orsay'), (71280, 'https://ror.org/01hg6wr34', 'es', 1, 'https://ror.org/01hg6wr34 Instituto de Lengua y Cultura Aymara'), (71281, 'https://ror.org/01hg97084', 'en', 1, 'https://ror.org/01hg97084 New York Theatre Workshop'), (71282, 'https://ror.org/01hg9sk45', 'no_lang_code', 1, 'https://ror.org/01hg9sk45 BSC Associates (United States)'), (71283, 'https://ror.org/01hj7gk80', 'en', 1, 'https://ror.org/01hj7gk80 One-Handed Musical Instrument'), (71284, 'https://ror.org/01hptbr11', 'en', 1, 'https://ror.org/01hptbr11 Equal Rights Trust'), (71285, 'https://ror.org/01hqnxa62', 'en', 1, 'https://ror.org/01hqnxa62 Te Wānanga o Raukawa'), (71286, 'https://ror.org/01hr74d22', 'no_lang_code', 1, 'https://ror.org/01hr74d22 Boehringer Ingelheim (Brazil)'), (71287, 'https://ror.org/01hsjdk31', 'no_lang_code', 1, 'https://ror.org/01hsjdk31 McClatchy (United States)'), (71288, 'https://ror.org/01hsyq967', 'en', 1, 'https://ror.org/01hsyq967 Choithram College of Nursing चोइथराम कॉलेज ऑफ़ नर्सिंग'), (71289, 'https://ror.org/01hthk989', 'en', 1, 'https://ror.org/01hthk989 World Endometriosis Research Foundation'), (71290, 'https://ror.org/01hxaqe16', 'en', 1, 'https://ror.org/01hxaqe16 King Fahd Security College كلية الملك فهد الأمنية'), (71291, 'https://ror.org/01hxz7b02', 'no_lang_code', 1, 'https://ror.org/01hxz7b02 Advent Systems (United States)'), (71292, 'https://ror.org/01hz1eb30', 'en', 1, 'https://ror.org/01hz1eb30 Lloyd''s'), (71293, 'https://ror.org/01hzg6v66', 'en', 1, 'https://ror.org/01hzg6v66 London Social Science'), (71294, 'https://ror.org/01j0mz257', 'no_lang_code', 1, 'https://ror.org/01j0mz257 CyberOptics (United States)'), (71295, 'https://ror.org/01j1yd322', 'en', 1, 'https://ror.org/01j1yd322 Foundation for Revitalisation of Local Health Traditions'), (71296, 'https://ror.org/01j2pmk70', 'en', 1, 'https://ror.org/01j2pmk70 Time-Line computer Archive'), (71297, 'https://ror.org/01j4nab63', 'no_lang_code', 1, 'https://ror.org/01j4nab63 Kereval (France)'), (71298, 'https://ror.org/01j4y5573', 'no_lang_code', 1, 'https://ror.org/01j4y5573 Biomarker Profiles (United States)'), (71299, 'https://ror.org/01j5kbq18', 'no_lang_code', 1, 'https://ror.org/01j5kbq18 EcoTech (Sweden)'), (71300, 'https://ror.org/01j5w9y89', 'en', 1, 'https://ror.org/01j5w9y89 The IARS International Institute'), (71301, 'https://ror.org/01ja22q26', 'no_lang_code', 1, 'https://ror.org/01ja22q26 Liquidmetal Technologies (United States)'), (71302, 'https://ror.org/01jc6t452', 'no_lang_code', 1, 'https://ror.org/01jc6t452 Dar al Athar al Islamiyyah مركز الأمريكاني الثقافي - دار الآثار الإسلامية'), (71303, 'https://ror.org/01je6ev79', 'en', 1, 'https://ror.org/01je6ev79 Manor Gardens Welfare Trust'), (71304, 'https://ror.org/01jet5112', 'en', 1, 'https://ror.org/01jet5112 Say Yes to Education'), (71305, 'https://ror.org/01jgm3705', 'en', 1, 'https://ror.org/01jgm3705 Autism at Kingwood'), (71306, 'https://ror.org/01jjrv674', 'en', 1, 'https://ror.org/01jjrv674 Shakespeare Birthplace Trust'), (71307, 'https://ror.org/01jjvj470', 'en', 1, 'https://ror.org/01jjvj470 Centre for Polar Observation and Modelling'), (71308, 'https://ror.org/01jk98t54', 'no_lang_code', 1, 'https://ror.org/01jk98t54 DoseOptics (United States)'), (71309, 'https://ror.org/01jkb7292', 'no_lang_code', 1, 'https://ror.org/01jkb7292 Cheyney (United Kingdom)'), (71310, 'https://ror.org/01jkbqt36', 'no_lang_code', 1, 'https://ror.org/01jkbqt36 Lankard Materials Laboratory (United States)'), (71311, 'https://ror.org/01jkn7h76', 'no_lang_code', 1, 'https://ror.org/01jkn7h76 Qamcom Research and Technology (Sweden)'), (71312, 'https://ror.org/01jp0wp57', 'no_lang_code', 1, 'https://ror.org/01jp0wp57 AccessData (United States)'), (71313, 'https://ror.org/01jpyha72', 'en', 1, 'https://ror.org/01jpyha72 The Heather Trust'), (71314, 'https://ror.org/01jq58g75', 'no_lang_code', 1, 'https://ror.org/01jq58g75 Micron Corporation (United States)'), (71315, 'https://ror.org/01jttce46', 'en', 1, 'https://ror.org/01jttce46 Federal State Budget Scientific Institution Institute of Applied Mathematics and Automation ИНСТИТУТ ПРИКЛАДНОЙ МАТЕМАТИКИ И АВТОМАТИЗАЦИИ'), (71316, 'https://ror.org/01jv0yc68', 'no_lang_code', 1, 'https://ror.org/01jv0yc68 Digital Native Academy (United Kingdom)'), (71317, 'https://ror.org/01jwwe165', 'en', 1, 'https://ror.org/01jwwe165 Association of London Environmental Health Managers'), (71318, 'https://ror.org/01jx84k94', 'no_lang_code', 1, 'https://ror.org/01jx84k94 Millennium Dynamics (United States)'), (71319, 'https://ror.org/01jyjxa35', 'en', 1, 'https://ror.org/01jyjxa35 Open Health Systems Laboratory'), (71320, 'https://ror.org/01jyr6y47', 'pl', 1, 'https://ror.org/01jyr6y47 Polskie Stowarzyszenie Terapii Behawioralnej'), (71321, 'https://ror.org/01jysap10', 'en', 1, 'https://ror.org/01jysap10 West Yorkshire Joint Services'), (71322, 'https://ror.org/01jyzgn17', 'en', 1, 'https://ror.org/01jyzgn17 Stockholm University College of Music Education Stockholms Musikpedagogiska Institut'), (71323, 'https://ror.org/01jzvc390', 'no_lang_code', 1, 'https://ror.org/01jzvc390 Sweden Water Research (Sweden)'), (71324, 'https://ror.org/01k101787', 'no_lang_code', 1, 'https://ror.org/01k101787 Idhelio (France)'), (71325, 'https://ror.org/01k1gfz56', 'no_lang_code', 1, 'https://ror.org/01k1gfz56 Hays Innovations (United States)'), (71326, 'https://ror.org/01k3bjh49', 'en', 1, 'https://ror.org/01k3bjh49 British Machine Vision Association'), (71327, 'https://ror.org/01k3phj09', 'no_lang_code', 1, 'https://ror.org/01k3phj09 Infrascan (United States)'), (71328, 'https://ror.org/01k469x92', 'en', 1, 'https://ror.org/01k469x92 St Albans and Hertfordshire Architectural and Archaeological Society'), (71329, 'https://ror.org/01k645a92', 'no_lang_code', 1, 'https://ror.org/01k645a92 Forward Photonics (United States)'), (71330, 'https://ror.org/01k6zmz35', 'en', 1, 'https://ror.org/01k6zmz35 Refugee Council'), (71331, 'https://ror.org/01k9d6864', 'en', 1, 'https://ror.org/01k9d6864 Digital Curation Centre'), (71332, 'https://ror.org/01ka1xt91', 'en', 1, 'https://ror.org/01ka1xt91 York Theatre Royal'), (71333, 'https://ror.org/01ka62b75', 'en', 1, 'https://ror.org/01ka62b75 Office of Governor'), (71334, 'https://ror.org/01kbwt308', 'en', 1, 'https://ror.org/01kbwt308 International Planned Parenthood Federation'), (71335, 'https://ror.org/01kck2n84', 'en', 1, 'https://ror.org/01kck2n84 San Gabriel Pomona Regional Center'), (71336, 'https://ror.org/01kde9c12', 'en', 1, 'https://ror.org/01kde9c12 Council on Higher Education'), (71337, 'https://ror.org/01kegck15', 'en', 1, 'https://ror.org/01kegck15 Rotherham United Community Sports Trust'), (71338, 'https://ror.org/01kh56070', 'fr', 1, 'https://ror.org/01kh56070 Conseil Départemental de la Creuse'), (71339, 'https://ror.org/01kj6qf31', 'en', 1, 'https://ror.org/01kj6qf31 Ministry of Welfare Velferðarráðuneytið'), (71340, 'https://ror.org/01kqhzq55', 'pt', 1, 'https://ror.org/01kqhzq55 Associação Nacional de Direitos Humanos, Pesquisa e Pós-Graduação'), (71341, 'https://ror.org/01kr8fz72', 'en', 1, 'https://ror.org/01kr8fz72 Muslim Women''s Research and Action Forum'), (71342, 'https://ror.org/01krfhk43', 'no_lang_code', 1, 'https://ror.org/01krfhk43 Norrköping Visualisering (Sweden)'), (71343, 'https://ror.org/01ks5xj83', 'en', 1, 'https://ror.org/01ks5xj83 The Parks Trust'), (71344, 'https://ror.org/01kvaek42', 'en', 1, 'https://ror.org/01kvaek42 Thomas Mann Cultural Centre Thomo Manno Kultūros Centras'), (71345, 'https://ror.org/01kw4bf10', 'en', 1, 'https://ror.org/01kw4bf10 Medicines Patent Pool'), (71346, 'https://ror.org/01kwnqg78', 'en', 1, 'https://ror.org/01kwnqg78 Northern Ireland Council for Voluntary Action'), (71347, 'https://ror.org/01kz8wz75', 'en', 1, 'https://ror.org/01kz8wz75 Abaseen Foundation'), (71348, 'https://ror.org/01m06zm04', 'en', 1, 'https://ror.org/01m06zm04 Quakers'), (71349, 'https://ror.org/01m081680', 'en', 1, 'https://ror.org/01m081680 Thomas Pocklington Trust'), (71350, 'https://ror.org/01m08sy32', 'en', 1, 'https://ror.org/01m08sy32 The Association of Early Pregnancy Units'), (71351, 'https://ror.org/01m0rks68', 'en', 1, 'https://ror.org/01m0rks68 City Year'), (71352, 'https://ror.org/01m1ej943', 'en', 1, 'https://ror.org/01m1ej943 United Nations Children''s Fund Kosovo'), (71353, 'https://ror.org/01m2mh218', 'en', 1, 'https://ror.org/01m2mh218 Dhow Countries Music Academy'), (71354, 'https://ror.org/01m3mp859', 'en', 1, 'https://ror.org/01m3mp859 The Wye & Usk Foundation'), (71355, 'https://ror.org/01m3qwn25', 'no_lang_code', 1, 'https://ror.org/01m3qwn25 Guidestar Optical Systems (United States)'), (71356, 'https://ror.org/01m5b4t98', 'no_lang_code', 1, 'https://ror.org/01m5b4t98 Hoh Aeronautics (United States)'), (71357, 'https://ror.org/01m5n8597', 'no_lang_code', 1, 'https://ror.org/01m5n8597 ReproCELL (United Kingdom)'), (71358, 'https://ror.org/01m7cyk91', 'no_lang_code', 1, 'https://ror.org/01m7cyk91 PolymemTech (Poland)'), (71359, 'https://ror.org/01m82kt84', 'en', 1, 'https://ror.org/01m82kt84 Durham Dales Health Federation'), (71360, 'https://ror.org/01m8g2q39', 'no_lang_code', 1, 'https://ror.org/01m8g2q39 Noviga Research (Sweden)'), (71361, 'https://ror.org/01m965f91', 'it', 1, 'https://ror.org/01m965f91 Museo Civico di Zoologia'), (71362, 'https://ror.org/01m96mc18', 'no_lang_code', 1, 'https://ror.org/01m96mc18 Pragma Therapeutics (France)'), (71363, 'https://ror.org/01m9jpy59', 'no_lang_code', 1, 'https://ror.org/01m9jpy59 Greensea Systems (United States)'), (71364, 'https://ror.org/01mb4vz12', 'en', 1, 'https://ror.org/01mb4vz12 Tripura State Pollution Control Board'), (71365, 'https://ror.org/01mb5fa95', 'en', 1, 'https://ror.org/01mb5fa95 Institute of Modern Knowledge named after A.M. Shirokova Інстытут сучасных ведаў імя А. М. Шырокава Институт современных знаний имени А. М. Широкова'), (71366, 'https://ror.org/01mbqee76', 'no_lang_code', 1, 'https://ror.org/01mbqee76 Agile RF Systems (United States)'), (71367, 'https://ror.org/01mcrzq55', 'en', 1, 'https://ror.org/01mcrzq55 Oral History Society'), (71368, 'https://ror.org/01md5nh91', 'en', 1, 'https://ror.org/01md5nh91 Centre for Research and Technology Development'), (71369, 'https://ror.org/01mdxbf79', 'en', 1, 'https://ror.org/01mdxbf79 International Centre on Space Technologies for Natural and Cultural Heritage 国际自然与文化遗产空间技术中心'), (71370, 'https://ror.org/01mesrv79', 'en', 1, 'https://ror.org/01mesrv79 Center for Neighborhood Technology'), (71371, 'https://ror.org/01mey5f62', 'no_lang_code', 1, 'https://ror.org/01mey5f62 Meva Energy (Sweden)'), (71372, 'https://ror.org/01mfyt667', 'no_lang_code', 1, 'https://ror.org/01mfyt667 Celtic Research (United Kingdom)'), (71373, 'https://ror.org/01mgxxq41', 'no_lang_code', 1, 'https://ror.org/01mgxxq41 Clean Motion (Sweden)'), (71374, 'https://ror.org/01mhhtp02', 'en', 1, 'https://ror.org/01mhhtp02 J P French Associates'), (71375, 'https://ror.org/01mhrge46', 'en', 1, 'https://ror.org/01mhrge46 Professional Publishers Association'), (71376, 'https://ror.org/01mj2ze90', 'en', 1, 'https://ror.org/01mj2ze90 Tyne Rivers Trust'), (71377, 'https://ror.org/01mj57h56', 'no_lang_code', 1, 'https://ror.org/01mj57h56 NanoSD (United States)'), (71378, 'https://ror.org/01mm16571', 'de', 1, 'https://ror.org/01mm16571 Nawi Graz'), (71379, 'https://ror.org/01mnn1775', 'no_lang_code', 1, 'https://ror.org/01mnn1775 Caktus Group (United States)'), (71380, 'https://ror.org/01mqnjq55', 'en', 1, 'https://ror.org/01mqnjq55 Houston Galveston Institute'), (71381, 'https://ror.org/01mqrn417', 'en', 1, 'https://ror.org/01mqrn417 Coram'), (71382, 'https://ror.org/01mryv087', 'en', 1, 'https://ror.org/01mryv087 The K.R. Cama Oriental Institute'), (71383, 'https://ror.org/01msk4m94', 'en', 1, 'https://ror.org/01msk4m94 Education Law Center'), (71384, 'https://ror.org/01msn1v37', 'en', 1, 'https://ror.org/01msn1v37 Tostan'), (71385, 'https://ror.org/01msx8j36', 'en', 1, 'https://ror.org/01msx8j36 Respons'), (71386, 'https://ror.org/01mtztp63', 'en', 1, 'https://ror.org/01mtztp63 YoungMinds'), (71387, 'https://ror.org/01mvkzd56', 'pt', 1, 'https://ror.org/01mvkzd56 Fundepag'), (71388, 'https://ror.org/01mvvkn82', 'no_lang_code', 1, 'https://ror.org/01mvvkn82 Svenskt fjäll- och samemuseum Ájtte'), (71389, 'https://ror.org/01mwk7t47', 'en', 1, 'https://ror.org/01mwk7t47 Quality of Life Partnership'), (71390, 'https://ror.org/01myp4b02', 'en', 1, 'https://ror.org/01myp4b02 Migrants Rights Network'), (71391, 'https://ror.org/01n1ayq61', 'en', 1, 'https://ror.org/01n1ayq61 Institute for Research on Population and Social Policies Istituto di Ricerche sulla Popolazione e le Politiche Sociali'), (71392, 'https://ror.org/01n2ebv18', 'en', 1, 'https://ror.org/01n2ebv18 Ukrainian State Employment Service Training Institute Інститут підготовки кадрів'), (71393, 'https://ror.org/01n2ss077', 'no_lang_code', 1, 'https://ror.org/01n2ss077 Stri (Sweden)'), (71394, 'https://ror.org/01n3xc149', 'es', 1, 'https://ror.org/01n3xc149 Oxfam México'), (71395, 'https://ror.org/01n6r0d03', 'en', 1, 'https://ror.org/01n6r0d03 PPMA Group of Associations'), (71396, 'https://ror.org/01n6ss875', 'no_lang_code', 1, 'https://ror.org/01n6ss875 Glosten (United States)'), (71397, 'https://ror.org/01n6xge79', 'tr', 1, 'https://ror.org/01n6xge79 Türk Eğitim Vakfı'), (71398, 'https://ror.org/01n93gn67', 'en', 1, 'https://ror.org/01n93gn67 Center for Quantum Nanoscience 양자나노과학연구단'), (71399, 'https://ror.org/01n95pm43', 'en', 1, 'https://ror.org/01n95pm43 Foundation for the Advancement of Social Theory'), (71400, 'https://ror.org/01nb27779', 'no_lang_code', 1, 'https://ror.org/01nb27779 Capgemini (United Kingdom)'), (71401, 'https://ror.org/01nd71k14', 'en', 1, 'https://ror.org/01nd71k14 Edinburgh City of Literature'), (71402, 'https://ror.org/01ndq3682', 'en', 1, 'https://ror.org/01ndq3682 United States Courts'), (71403, 'https://ror.org/01neznn74', 'en', 1, 'https://ror.org/01neznn74 Honolulu Theatre for Youth'), (71404, 'https://ror.org/01ng1nj07', 'no_lang_code', 1, 'https://ror.org/01ng1nj07 Bio-Bras'), (71405, 'https://ror.org/01ngfjj64', 'no_lang_code', 1, 'https://ror.org/01ngfjj64 PharmChem (United States)'), (71406, 'https://ror.org/01nh1pn53', 'no_lang_code', 1, 'https://ror.org/01nh1pn53 StereoVision Imaging (United States)'), (71407, 'https://ror.org/01nj7ae17', 'en', 1, 'https://ror.org/01nj7ae17 National Organizations for Youth Safety'), (71408, 'https://ror.org/01njpm937', 'no_lang_code', 1, 'https://ror.org/01njpm937 Seva Mandir'), (71409, 'https://ror.org/01nke7b10', 'no_lang_code', 1, 'https://ror.org/01nke7b10 Soliya'), (71410, 'https://ror.org/01nmjw537', 'en', 1, 'https://ror.org/01nmjw537 Constituency for Africa'), (71411, 'https://ror.org/01nmtfv20', 'en', 1, 'https://ror.org/01nmtfv20 National Defense University សាកលវិទ្យាល័យការពារជាតិ'), (71412, 'https://ror.org/01nnh1n81', 'fr', 1, 'https://ror.org/01nnh1n81 CIEP'), (71413, 'https://ror.org/01nnqk936', 'en', 1, 'https://ror.org/01nnqk936 Gulf Coast Housing Partnership'), (71414, 'https://ror.org/01ns4tv82', 'no_lang_code', 1, 'https://ror.org/01ns4tv82 GPD Optoelectronics (United States)'), (71415, 'https://ror.org/01nsyw318', 'en', 1, 'https://ror.org/01nsyw318 Portsmouth Museum'), (71416, 'https://ror.org/01nt99q97', 'en', 1, 'https://ror.org/01nt99q97 Aston Reinvestment Trust'), (71417, 'https://ror.org/01ntfzr17', 'no_lang_code', 1, 'https://ror.org/01ntfzr17 La Strada'), (71418, 'https://ror.org/01nvxbj32', 'no_lang_code', 1, 'https://ror.org/01nvxbj32 JBS Technologies (United States)'), (71419, 'https://ror.org/01nwj0553', 'en', 1, 'https://ror.org/01nwj0553 Scottish Association of Meat Wholesalers'), (71420, 'https://ror.org/01nxjag84', 'ro', 1, 'https://ror.org/01nxjag84 Institutul Medicina de Urgenta'), (71421, 'https://ror.org/01p35vs79', 'no_lang_code', 1, 'https://ror.org/01p35vs79 Echandia Marine (Sweden)'), (71422, 'https://ror.org/01p5xff03', 'no_lang_code', 1, 'https://ror.org/01p5xff03 Gorgias Press (United States)'), (71423, 'https://ror.org/01p8akv10', 'no_lang_code', 1, 'https://ror.org/01p8akv10 Polish Security Printing Works (Poland) Polska Wytwornia Papierow Wartosciowych'), (71424, 'https://ror.org/01pbfbp48', 'en', 1, 'https://ror.org/01pbfbp48 Abhivyakti Media for Development'), (71425, 'https://ror.org/01pbz1b98', 'en', 1, 'https://ror.org/01pbz1b98 Norfolk Record Office'), (71426, 'https://ror.org/01pdb1x94', 'en', 1, 'https://ror.org/01pdb1x94 Central Road Research Institute'), (71427, 'https://ror.org/01pfmmr39', 'en', 1, 'https://ror.org/01pfmmr39 Kotka Maritime Research Centre Meriturvallisuuden ja -liikenteen Tutkimuskeskus'), (71428, 'https://ror.org/01pg0y117', 'en', 1, 'https://ror.org/01pg0y117 The Institute for Food Brain and Behaviour'), (71429, 'https://ror.org/01phdew02', 'en', 1, 'https://ror.org/01phdew02 National Central Library 國家圖書館'), (71430, 'https://ror.org/01phse664', 'en', 1, 'https://ror.org/01phse664 Azərbaycan Respublikasının Mərkəzi Bankı Central Bank of the Republic of Azerbaijan'), (71431, 'https://ror.org/01pme5r05', 'no_lang_code', 1, 'https://ror.org/01pme5r05 DiSTI (United States)'), (71432, 'https://ror.org/01ppqae48', 'en', 1, 'https://ror.org/01ppqae48 The Golden Bridges Foundation'), (71433, 'https://ror.org/01pqjya71', 'en', 1, 'https://ror.org/01pqjya71 Ministerul Afacerilor Externe Ministry of Foreign Affairs'), (71434, 'https://ror.org/01pqxf729', 'pt', 1, 'https://ror.org/01pqxf729 Instituto Eqüit – Gênero, Economia e Cidadania Global'), (71435, 'https://ror.org/01ps6tc76', 'no_lang_code', 1, 'https://ror.org/01ps6tc76 Leaflabs (United States)'), (71436, 'https://ror.org/01psmkn05', 'en', 1, 'https://ror.org/01psmkn05 Institut de Recherche en Santé, de Surveillance Épidémiologique et de Formation Institute of Health Research, Epidemiological Surveillance and Training'), (71437, 'https://ror.org/01pz7ej14', 'en', 1, 'https://ror.org/01pz7ej14 UK Carbon Capture and Research Centre'), (71438, 'https://ror.org/01q0egy64', 'no_lang_code', 1, 'https://ror.org/01q0egy64 Hanson & Associates (United Kingdom)'), (71439, 'https://ror.org/01q0h5a15', 'en', 1, 'https://ror.org/01q0h5a15 Media Rights Agenda'), (71440, 'https://ror.org/01q0r1k14', 'en', 1, 'https://ror.org/01q0r1k14 Office of National Intelligence'), (71441, 'https://ror.org/01q15xv46', 'no_lang_code', 1, 'https://ror.org/01q15xv46 Financial Network Analytics (United Kingdom)'), (71442, 'https://ror.org/01q3p9d41', 'fr', 1, 'https://ror.org/01q3p9d41 Arteria, Association Arteria Médiation'), (71443, 'https://ror.org/01q4spz53', 'en', 1, 'https://ror.org/01q4spz53 National AIDS Trust'), (71444, 'https://ror.org/01q5qmy44', 'en', 1, 'https://ror.org/01q5qmy44 Institute of Translation and Interpreting'), (71445, 'https://ror.org/01q78gf04', 'no_lang_code', 1, 'https://ror.org/01q78gf04 MJ Medical (United Kingdom)'), (71446, 'https://ror.org/01q9c3q09', 'en', 1, 'https://ror.org/01q9c3q09 Buffs Social Club'), (71447, 'https://ror.org/01qajny58', 'en', 1, 'https://ror.org/01qajny58 Capital Impact Partners'), (71448, 'https://ror.org/01qc0qt89', 'en', 1, 'https://ror.org/01qc0qt89 Archiv Výtvarného Umění The Fine Art Archive'), (71449, 'https://ror.org/01qdnge68', 'no_lang_code', 1, 'https://ror.org/01qdnge68 Fluent (United States)'), (71450, 'https://ror.org/01qegt208', 'en', 1, 'https://ror.org/01qegt208 Armenian Genocide Museum-Institute Foundation'), (71451, 'https://ror.org/01qgv9s91', 'no_lang_code', 1, 'https://ror.org/01qgv9s91 ATSP Innovations (United States)'), (71452, 'https://ror.org/01qmska07', 'no_lang_code', 1, 'https://ror.org/01qmska07 Kabar'), (71453, 'https://ror.org/01qnwjk32', 'en', 1, 'https://ror.org/01qnwjk32 National Women''s Health Network'), (71454, 'https://ror.org/01qqqf422', 'en', 1, 'https://ror.org/01qqqf422 British Arts Festivals Association'), (71455, 'https://ror.org/01qqvwg30', 'en', 1, 'https://ror.org/01qqvwg30 Sampad'), (71456, 'https://ror.org/01qsj4k11', 'no_lang_code', 1, 'https://ror.org/01qsj4k11 Energesis Pharmaceuticals (United States)'), (71457, 'https://ror.org/01qte9y06', 'no_lang_code', 1, 'https://ror.org/01qte9y06 Proboscis'), (71458, 'https://ror.org/01qvanv50', 'en', 1, 'https://ror.org/01qvanv50 Ashé'), (71459, 'https://ror.org/01qvbxx84', 'no_lang_code', 1, 'https://ror.org/01qvbxx84 Medical Moulded Products (United Kingdom)'), (71460, 'https://ror.org/01qvnjw08', 'no_lang_code', 1, 'https://ror.org/01qvnjw08 Flow Neuroscience (Sweden)'), (71461, 'https://ror.org/01qxe7a32', 'en', 1, 'https://ror.org/01qxe7a32 The Investment Association'), (71462, 'https://ror.org/01qxrj975', 'no_lang_code', 1, 'https://ror.org/01qxrj975 Ellison Laboratories (United States)'), (71463, 'https://ror.org/01qxx5k95', 'no_lang_code', 1, 'https://ror.org/01qxx5k95 Botswana Open University'), (71464, 'https://ror.org/01qyb4t36', 'en', 1, 'https://ror.org/01qyb4t36 Interaction Institute for Social Change'), (71465, 'https://ror.org/01qynw361', 'ms', 1, 'https://ror.org/01qynw361 Hospital Raja Perempuan Zainab II'), (71466, 'https://ror.org/01r0enz48', 'no_lang_code', 1, 'https://ror.org/01r0enz48 Oxford MicroMedical (United Kingdom)'), (71467, 'https://ror.org/01r3ct535', 'no_lang_code', 1, 'https://ror.org/01r3ct535 Kheiron Medical Technologies (United Kingdom)'), (71468, 'https://ror.org/01r5zkn17', 'en', 1, 'https://ror.org/01r5zkn17 Angmering Community Centre'), (71469, 'https://ror.org/01r7ewj84', 'en', 1, 'https://ror.org/01r7ewj84 Nerve Centre'), (71470, 'https://ror.org/01r7xf702', 'no_lang_code', 1, 'https://ror.org/01r7xf702 Fedor-Bis (Poland)'), (71471, 'https://ror.org/01rbf3264', 'az', 1, 'https://ror.org/01rbf3264 Azərbaycan Milli Elmlər Akademiyası Abbasqulu Ağa Bakıxanov Adina Tarix Institutu'), (71472, 'https://ror.org/01rbmj730', 'en', 1, 'https://ror.org/01rbmj730 York Castle Museum'), (71473, 'https://ror.org/01rfnpk52', 'no_lang_code', 1, 'https://ror.org/01rfnpk52 bioMérieux (Brazil)'), (71474, 'https://ror.org/01rjqh621', 'en', 1, 'https://ror.org/01rjqh621 Ministry of Social Justice and Empowerment'), (71475, 'https://ror.org/01rkbf580', 'en', 1, 'https://ror.org/01rkbf580 Economic and Social Research Foundation'), (71476, 'https://ror.org/01rmwzy37', 'no_lang_code', 1, 'https://ror.org/01rmwzy37 Digital First Media (United States)'), (71477, 'https://ror.org/01rng5a32', 'en', 1, 'https://ror.org/01rng5a32 New City College'), (71478, 'https://ror.org/01rt6qg79', 'no_lang_code', 1, 'https://ror.org/01rt6qg79 Suzano (Brazil)'), (71479, 'https://ror.org/01rvq6e84', 'no_lang_code', 1, 'https://ror.org/01rvq6e84 The McCrone Group (United States)'), (71480, 'https://ror.org/01rwgmd28', 'no_lang_code', 1, 'https://ror.org/01rwgmd28 Sempre (Poland)'), (71481, 'https://ror.org/01rwgzt97', 'no_lang_code', 1, 'https://ror.org/01rwgzt97 CMA Technologies (United States)'), (71482, 'https://ror.org/01rxfp867', 'no_lang_code', 1, 'https://ror.org/01rxfp867 Spirit AeroSystems (United Kingdom)'), (71483, 'https://ror.org/01rys6g13', 'no_lang_code', 1, 'https://ror.org/01rys6g13 Advent Life Sciences (United Kingdom)'), (71484, 'https://ror.org/01rz1yn84', 'en', 1, 'https://ror.org/01rz1yn84 Law Centres Network'), (71485, 'https://ror.org/01s0fdm87', 'de', 1, 'https://ror.org/01s0fdm87 Malteser Waldkrankenhaus Erlangen'), (71486, 'https://ror.org/01s1h9f22', 'no_lang_code', 1, 'https://ror.org/01s1h9f22 SoletAer (Sweden)'), (71487, 'https://ror.org/01s1jrd75', 'sv', 1, 'https://ror.org/01s1jrd75 Bergslagssjukhuset'), (71488, 'https://ror.org/01s2wtj48', 'pt', 1, 'https://ror.org/01s2wtj48 Instituto Sou da Paz'), (71489, 'https://ror.org/01s3pkg06', 'en', 1, 'https://ror.org/01s3pkg06 Diplomatic Academy of Vienna Diplomatische Akademie Wien'), (71490, 'https://ror.org/01s6jvm36', 'en', 1, 'https://ror.org/01s6jvm36 ExpandED Schools'), (71491, 'https://ror.org/01s78ww38', 'en', 1, 'https://ror.org/01s78ww38 Border Network for Human Rights'), (71492, 'https://ror.org/01s897575', 'en', 1, 'https://ror.org/01s897575 Leadership Conference Education Fund'), (71493, 'https://ror.org/01s8e3v68', 'en', 1, 'https://ror.org/01s8e3v68 American Society for Yad Vashem'), (71494, 'https://ror.org/01s8h3924', 'no_lang_code', 1, 'https://ror.org/01s8h3924 Luxbright (Sweden)'), (71495, 'https://ror.org/01sas2f78', 'es', 1, 'https://ror.org/01sas2f78 Instituto de Ciencias Astronómicas, de la Tierra y del Espacio'), (71496, 'https://ror.org/01scpqc23', 'en', 1, 'https://ror.org/01scpqc23 Mapungubwe Institute for Strategic Reflection'), (71497, 'https://ror.org/01sg0nk94', 'en', 1, 'https://ror.org/01sg0nk94 CR Rao Advanced Institute of Mathematics, Statistics and Computer Science'), (71498, 'https://ror.org/01shrfv13', 'en', 1, 'https://ror.org/01shrfv13 International Association for the History of Religions'), (71499, 'https://ror.org/01shzby30', 'en', 1, 'https://ror.org/01shzby30 Industry and Parliament Trust'), (71500, 'https://ror.org/01sjyas66', 'no_lang_code', 1, 'https://ror.org/01sjyas66 Orphelia Pharma (France)'), (71501, 'https://ror.org/01sm4nm47', 'en', 1, 'https://ror.org/01sm4nm47 Boromarajonani College of Nursing วิทยาลัยพยาบาลบรมราชชนนี เชียงใหม่'), (71502, 'https://ror.org/01smzda60', 'en', 1, 'https://ror.org/01smzda60 Global Canopy'), (71503, 'https://ror.org/01snh9k23', 'en', 1, 'https://ror.org/01snh9k23 NeighborWorks America'), (71504, 'https://ror.org/01ssng043', 'en', 1, 'https://ror.org/01ssng043 Gurkha Welfare Trust'), (71505, 'https://ror.org/01st8zv03', 'es', 1, 'https://ror.org/01st8zv03 ConCuerpos'), (71506, 'https://ror.org/01svaca56', 'no_lang_code', 1, 'https://ror.org/01svaca56 Songklanagarind Hospital โรงพยาบาลสงขลานครินทร์'), (71507, 'https://ror.org/01sxva348', 'es', 1, 'https://ror.org/01sxva348 Hospital d''Igualada'), (71508, 'https://ror.org/01sxy8636', 'no_lang_code', 1, 'https://ror.org/01sxy8636 LightPointe (United States)'), (71509, 'https://ror.org/01sy7jy68', 'nl', 1, 'https://ror.org/01sy7jy68 Stichting Hester'), (71510, 'https://ror.org/01sz34q98', 'en', 1, 'https://ror.org/01sz34q98 Anciens Combattants Canada Veterans Affairs Canada'), (71511, 'https://ror.org/01szy6y70', 'no_lang_code', 1, 'https://ror.org/01szy6y70 Aili Innovations (Sweden)'), (71512, 'https://ror.org/01t03c617', 'en', 1, 'https://ror.org/01t03c617 Newark Trust for Education'), (71513, 'https://ror.org/01t263c97', 'en', 1, 'https://ror.org/01t263c97 Scottish Public Pensions Agency'), (71514, 'https://ror.org/01t2seb40', 'en', 1, 'https://ror.org/01t2seb40 National Disability Rights Network'), (71515, 'https://ror.org/01t3wc318', 'en', 1, 'https://ror.org/01t3wc318 All India Artisans and Craftworkers Welfare Association'), (71516, 'https://ror.org/01t41r490', 'en', 1, 'https://ror.org/01t41r490 National Hispanic Leadership Agenda'), (71517, 'https://ror.org/01t4ana66', 'no_lang_code', 1, 'https://ror.org/01t4ana66 Flexsys (United States)'), (71518, 'https://ror.org/01t4t8r38', 'no_lang_code', 1, 'https://ror.org/01t4t8r38 Gen-9 (United States)'), (71519, 'https://ror.org/01t5hzs18', 'en', 1, 'https://ror.org/01t5hzs18 Association of Chief Executives of Voluntary Organisations'), (71520, 'https://ror.org/01t8am602', 'en', 1, 'https://ror.org/01t8am602 Creative & Cultural Skills'), (71521, 'https://ror.org/01tbsny88', 'no_lang_code', 1, 'https://ror.org/01tbsny88 Advratech (United States)'), (71522, 'https://ror.org/01tc7df88', 'no_lang_code', 1, 'https://ror.org/01tc7df88 Manufacturing Laboratories (United States)'), (71523, 'https://ror.org/01tcx0921', 'sv', 1, 'https://ror.org/01tcx0921 Länsstyrelsen Västra Götalands län'), (71524, 'https://ror.org/01tftde85', 'cy', 1, 'https://ror.org/01tftde85 Cymdeithas Thomas Pennant'), (71525, 'https://ror.org/01tgg8632', 'en', 1, 'https://ror.org/01tgg8632 Asian Arts Initiative'), (71526, 'https://ror.org/01tgsx068', 'no_lang_code', 1, 'https://ror.org/01tgsx068 Microsonic Systems (United States)'), (71527, 'https://ror.org/01tje5w07', 'no_lang_code', 1, 'https://ror.org/01tje5w07 Hydroacoustics (United States)'), (71528, 'https://ror.org/01tkrhw05', 'es', 1, 'https://ror.org/01tkrhw05 Hospital Clínico FUSAT'), (71529, 'https://ror.org/01tm6bj89', 'en', 1, 'https://ror.org/01tm6bj89 Mazatlan Professional School of Dance'), (71530, 'https://ror.org/01tmhf305', 'en', 1, 'https://ror.org/01tmhf305 Living Cities'), (71531, 'https://ror.org/01tmm2z04', 'en', 1, 'https://ror.org/01tmm2z04 National Association of British Market Authorities'), (71532, 'https://ror.org/01tmmd981', 'en', 1, 'https://ror.org/01tmmd981 Action Health Incorporated'), (71533, 'https://ror.org/01tmwk758', 'en', 1, 'https://ror.org/01tmwk758 Museum of Contemporary African Diasporan Arts'), (71534, 'https://ror.org/01tpj7340', 'en', 1, 'https://ror.org/01tpj7340 Institute of Geology, Komi Science Centre Институт геологии Коми НЦ УрО РАН'), (71535, 'https://ror.org/01tpz3h22', 'no_lang_code', 1, 'https://ror.org/01tpz3h22 Electric Funstuff (United States)'), (71536, 'https://ror.org/01tqtaq02', 'no_lang_code', 1, 'https://ror.org/01tqtaq02 Fauji Fertilizer (Pakistan)'), (71537, 'https://ror.org/01ts47345', 'cy', 1, 'https://ror.org/01ts47345 Comunn Eachdraidh na Pairc'), (71538, 'https://ror.org/01tw5qz74', 'en', 1, 'https://ror.org/01tw5qz74 Aitchison College ایچیسن کالج'), (71539, 'https://ror.org/01twkx136', 'no_lang_code', 1, 'https://ror.org/01twkx136 Ecome (France)'), (71540, 'https://ror.org/01tx8tm66', 'en', 1, 'https://ror.org/01tx8tm66 New Florida Majority'), (71541, 'https://ror.org/01txftm96', 'en', 1, 'https://ror.org/01txftm96 Hertford County Hospital'), (71542, 'https://ror.org/01tyxje26', 'en', 1, 'https://ror.org/01tyxje26 Regional Water Management Authority in Warsaw Regionalny Zarząd Gospodarki Wodnej w Warszawie'), (71543, 'https://ror.org/01tz3nb36', 'da', 1, 'https://ror.org/01tz3nb36 Museum Salling'), (71544, 'https://ror.org/01tzf7a21', 'en', 1, 'https://ror.org/01tzf7a21 Public Interest Research and Advocacy Center'), (71545, 'https://ror.org/01v01s839', 'en', 1, 'https://ror.org/01v01s839 The GoDown Arts Centre'), (71546, 'https://ror.org/01v49q824', 'en', 1, 'https://ror.org/01v49q824 Tianjin Internal Combustion Engine Research Institute 天津内燃机研究所'), (71547, 'https://ror.org/01v4jae87', 'no_lang_code', 1, 'https://ror.org/01v4jae87 BTS Software Solutions (United States)'), (71548, 'https://ror.org/01v6svm30', 'en', 1, 'https://ror.org/01v6svm30 Neighborhood Funders Group'), (71549, 'https://ror.org/01v7z1116', 'it', 1, 'https://ror.org/01v7z1116 Istituto storico italiano per il Medio Evo'), (71550, 'https://ror.org/01v801w64', 'en', 1, 'https://ror.org/01v801w64 Observatories and Research Facilities for European Seismology'), (71551, 'https://ror.org/01v9w5g84', 'en', 1, 'https://ror.org/01v9w5g84 Seattle Film Institute'), (71552, 'https://ror.org/01vbszv89', 'en', 1, 'https://ror.org/01vbszv89 The Institute for Southern Studies'), (71553, 'https://ror.org/01vexk157', 'no_lang_code', 1, 'https://ror.org/01vexk157 Centralny Ośrodek Badawczo Rozwojowy Aparatury Badawczej i Dydaktycznej (Poland)'), (71554, 'https://ror.org/01vf6n447', 'en', 1, 'https://ror.org/01vf6n447 Midlands Partnership NHS Foundation Trust'), (71555, 'https://ror.org/01vj91x16', 'no_lang_code', 1, 'https://ror.org/01vj91x16 Defense Engineering Corporation (United States)'), (71556, 'https://ror.org/01vjge728', 'no_lang_code', 1, 'https://ror.org/01vjge728 Enika (Poland)'), (71557, 'https://ror.org/01vpeym60', 'no_lang_code', 1, 'https://ror.org/01vpeym60 Apple (United Kingdom)'), (71558, 'https://ror.org/01vph1q21', 'no_lang_code', 1, 'https://ror.org/01vph1q21 Eltraf (Poland)'), (71559, 'https://ror.org/01vqq1j88', 'en', 1, 'https://ror.org/01vqq1j88 Community Voices Heard'), (71560, 'https://ror.org/01vqq8440', 'no_lang_code', 1, 'https://ror.org/01vqq8440 ERA Software Systems (United States)'), (71561, 'https://ror.org/01vr3ck92', 'en', 1, 'https://ror.org/01vr3ck92 Matheny'), (71562, 'https://ror.org/01vr3s065', 'en', 1, 'https://ror.org/01vr3s065 West Dunbartonshire Council'), (71563, 'https://ror.org/01vspjx51', 'tl', 1, 'https://ror.org/01vspjx51 De La Salle Lipa'), (71564, 'https://ror.org/01vxe0k23', 'en', 1, 'https://ror.org/01vxe0k23 Wales Co-operative Centre'), (71565, 'https://ror.org/01w3qd511', 'en', 1, 'https://ror.org/01w3qd511 NEO Philanthropy'), (71566, 'https://ror.org/01w3syr35', 'en', 1, 'https://ror.org/01w3syr35 Iseal Alliance'), (71567, 'https://ror.org/01w3yjx71', 'en', 1, 'https://ror.org/01w3yjx71 Rome International Center for Materials Science'), (71568, 'https://ror.org/01w56ba43', 'en', 1, 'https://ror.org/01w56ba43 Council on Energy, Environment and Water'), (71569, 'https://ror.org/01w74v812', 'en', 1, 'https://ror.org/01w74v812 Environmental Council of the States'), (71570, 'https://ror.org/01w7zp604', 'en', 1, 'https://ror.org/01w7zp604 Azerbaijan State Agricultural University Azərbaycan Dövlət Aqrar Universiteti'), (71571, 'https://ror.org/01w90vg65', 'no_lang_code', 1, 'https://ror.org/01w90vg65 Sarissa Biomedical (United Kingdom)'), (71572, 'https://ror.org/01w975c85', 'en', 1, 'https://ror.org/01w975c85 Brighton Peace and Environment Centre'), (71573, 'https://ror.org/01wa67h94', 'en', 1, 'https://ror.org/01wa67h94 Metropolitan Arts Centre'), (71574, 'https://ror.org/01wag9e37', 'en', 1, 'https://ror.org/01wag9e37 Westford Academy'), (71575, 'https://ror.org/01wb8ph33', 'en', 1, 'https://ror.org/01wb8ph33 Center for Social Sciences სოციალურ მეცნიერებათა ცენტრი'), (71576, 'https://ror.org/01wbay932', 'en', 1, 'https://ror.org/01wbay932 SOVA Center for Information and Analysis Информационно-аналитического центра Сова'), (71577, 'https://ror.org/01wey0b22', 'en', 1, 'https://ror.org/01wey0b22 West Cumbria Rivers Trust'), (71578, 'https://ror.org/01wfbns29', 'pl', 1, 'https://ror.org/01wfbns29 Powszechna Kasa Oszczędności Bank Polski Spółka Akcyjna'), (71579, 'https://ror.org/01wfg7444', 'no_lang_code', 1, 'https://ror.org/01wfg7444 Grid Logic (United States)'), (71580, 'https://ror.org/01wfksv89', 'en', 1, 'https://ror.org/01wfksv89 Centre on Dynamics of Ethnicity'), (71581, 'https://ror.org/01wg0wd65', 'en', 1, 'https://ror.org/01wg0wd65 The Center for Arts Education'), (71582, 'https://ror.org/01whfyx68', 'no_lang_code', 1, 'https://ror.org/01whfyx68 Codex Biosolutions (United States)'), (71583, 'https://ror.org/01whqqg65', 'en', 1, 'https://ror.org/01whqqg65 Community Development Advocates of Detroit'), (71584, 'https://ror.org/01wm51k08', 'es', 1, 'https://ror.org/01wm51k08 Consejo Estatal Para la Cultura y las Artes de Hidalgo'), (71585, 'https://ror.org/01wn6mq04', 'en', 1, 'https://ror.org/01wn6mq04 Museum of London'), (71586, 'https://ror.org/01wt3hp81', 'en', 1, 'https://ror.org/01wt3hp81 21st Century Education Research Institute 21世纪教育研究院'), (71587, 'https://ror.org/01wtyr048', 'no_lang_code', 1, 'https://ror.org/01wtyr048 Auger Communications (United States)'), (71588, 'https://ror.org/01wvejv85', 'de', 1, 'https://ror.org/01wvejv85 Kliniken Maria Hilf'), (71589, 'https://ror.org/01wvgx920', 'no_lang_code', 1, 'https://ror.org/01wvgx920 Mavenoid (Sweden)'), (71590, 'https://ror.org/01wwsba50', 'de', 1, 'https://ror.org/01wwsba50 Zentrum für Rhinologie und Allergologie'), (71591, 'https://ror.org/01wy0hc37', 'fr', 1, 'https://ror.org/01wy0hc37 Alistore'), (71592, 'https://ror.org/01wy67352', 'en', 1, 'https://ror.org/01wy67352 Città di Castello Hospital'), (71593, 'https://ror.org/01wz1pj13', 'no_lang_code', 1, 'https://ror.org/01wz1pj13 Zaslaw (Poland)'), (71594, 'https://ror.org/01wze2x85', 'en', 1, 'https://ror.org/01wze2x85 Watsonville Community Hospital'), (71595, 'https://ror.org/01x1wtd34', 'en', 1, 'https://ror.org/01x1wtd34 China Port Museum 中国港口博物馆'), (71596, 'https://ror.org/01x3ftb23', 'en', 1, 'https://ror.org/01x3ftb23 Biology of Infection Département Biologie Cellulaire et Infection'), (71597, 'https://ror.org/01x41eb05', 'en', 1, 'https://ror.org/01x41eb05 University of Neyshabur دانشگاه نیشابور'), (71598, 'https://ror.org/01x48j266', 'en', 1, 'https://ror.org/01x48j266 Hainan Modern Women and Children''s Hospital 海南现代妇女儿童医院'), (71599, 'https://ror.org/01x4yvt28', 'pt', 1, 'https://ror.org/01x4yvt28 Fundação Raquel e Martin Sain'), (71600, 'https://ror.org/01x5kbv02', 'hu', 1, 'https://ror.org/01x5kbv02 Budapesti Fazekas Mihály Gyakorló Általános Iskola és Gimnázium'), (71601, 'https://ror.org/01x81ey67', 'es', 1, 'https://ror.org/01x81ey67 Instituto Oceanográfico de la Armada del Ecuador'), (71602, 'https://ror.org/01x9n7m08', 'en', 1, 'https://ror.org/01x9n7m08 Govanhill Housing Association'), (71603, 'https://ror.org/01x9xr535', 'en', 1, 'https://ror.org/01x9xr535 International School of Dakar'), (71604, 'https://ror.org/01xaac745', 'en', 1, 'https://ror.org/01xaac745 Chai Found Music Workshop'), (71605, 'https://ror.org/01xdqzr09', 'en', 1, 'https://ror.org/01xdqzr09 The Geffrye Museum of the Home'), (71606, 'https://ror.org/01xehft43', 'en', 1, 'https://ror.org/01xehft43 Delaware Youth Center'), (71607, 'https://ror.org/01xfdgh94', 'no_lang_code', 1, 'https://ror.org/01xfdgh94 Motivational Educational Entertainment Productions (United States)'), (71608, 'https://ror.org/01xfv7487', 'no_lang_code', 1, 'https://ror.org/01xfv7487 Electric Ant Lab (Netherlands)'), (71609, 'https://ror.org/01xgj3b22', 'en', 1, 'https://ror.org/01xgj3b22 Northern Ireland Office Oifig Thuaisceart Éireann'), (71610, 'https://ror.org/01xhhwe60', 'en', 1, 'https://ror.org/01xhhwe60 Bundesministerium der Justiz und für Verbraucherschutz Federal Ministry of Justice and Consumer Protection'), (71611, 'https://ror.org/01xj9hs08', 'id', 1, 'https://ror.org/01xj9hs08 HuMA, Perkumpulan HuMa Indonesia'), (71612, 'https://ror.org/01xkrj909', 'no_lang_code', 1, 'https://ror.org/01xkrj909 L-Nutra (United States)'), (71613, 'https://ror.org/01xnh6j48', 'en', 1, 'https://ror.org/01xnh6j48 United Learning'), (71614, 'https://ror.org/01xpndd58', 'en', 1, 'https://ror.org/01xpndd58 GeoEnergy Research Centre'), (71615, 'https://ror.org/01xpreq28', 'fr', 1, 'https://ror.org/01xpreq28 Laboratoire Archéomatériaux et Prévision de l''Altération'), (71616, 'https://ror.org/01xtb7181', 'en', 1, 'https://ror.org/01xtb7181 Lviv State University of Internal Affairs Львівський державний університет внутрішніх справ'), (71617, 'https://ror.org/01xth0e33', 'en', 1, 'https://ror.org/01xth0e33 Asian Women Lone Parent Association'), (71618, 'https://ror.org/01xvefs70', 'en', 1, 'https://ror.org/01xvefs70 Ministry of Health and Sports'), (71619, 'https://ror.org/01xwy3t39', 'no_lang_code', 1, 'https://ror.org/01xwy3t39 Northvolt (Sweden)'), (71620, 'https://ror.org/01xy18563', 'no_lang_code', 1, 'https://ror.org/01xy18563 Cardax (United States)'), (71621, 'https://ror.org/01xz13x40', 'en', 1, 'https://ror.org/01xz13x40 New Walk Museum and Art Gallery'), (71622, 'https://ror.org/01xzfht26', 'en', 1, 'https://ror.org/01xzfht26 Guide Dogs'), (71623, 'https://ror.org/01xzsbn64', 'en', 1, 'https://ror.org/01xzsbn64 Dutch Foundation for Literature Nederlands Letterenfonds'), (71624, 'https://ror.org/01y36md93', 'de', 1, 'https://ror.org/01y36md93 Christoph-Dornier-Stiftung für Klinische Psychologie'), (71625, 'https://ror.org/01y3m2562', 'en', 1, 'https://ror.org/01y3m2562 Tyne & Wear Building Preservation Trust'), (71626, 'https://ror.org/01y5haq28', 'en', 1, 'https://ror.org/01y5haq28 Intercultural Institute Timisoara'), (71627, 'https://ror.org/01y6sx232', 'sr', 1, 'https://ror.org/01y6sx232 Institut za savremenu istoriju'), (71628, 'https://ror.org/01y9tmc90', 'no_lang_code', 1, 'https://ror.org/01y9tmc90 DecImmune Therapeutics (United States)'), (71629, 'https://ror.org/01ycfmb97', 'en', 1, 'https://ror.org/01ycfmb97 Foundation for Water Research'), (71630, 'https://ror.org/01ye8de62', 'en', 1, 'https://ror.org/01ye8de62 Athens Clarke County Police Department'), (71631, 'https://ror.org/01yeg0z60', 'no_lang_code', 1, 'https://ror.org/01yeg0z60 MDA Engineering (United States)'), (71632, 'https://ror.org/01yfdk227', 'en', 1, 'https://ror.org/01yfdk227 Wigston College'), (71633, 'https://ror.org/01yjtde78', 'en', 1, 'https://ror.org/01yjtde78 Historický Ústav Slovenskej Akadémie Vied Institute of History of the Slovak Academy of Sciences'), (71634, 'https://ror.org/01ynbhc61', 'no_lang_code', 1, 'https://ror.org/01ynbhc61 SageTech Medical Equipment (United Kingdom)'), (71635, 'https://ror.org/01yq1rp20', 'en', 1, 'https://ror.org/01yq1rp20 Comann Eachdraidh Bharabhais Agus Bhrù'), (71636, 'https://ror.org/01yrdw043', 'en', 1, 'https://ror.org/01yrdw043 Huntington''s Disease Association'), (71637, 'https://ror.org/01yt2xt13', 'en', 1, 'https://ror.org/01yt2xt13 Youth Junction'), (71638, 'https://ror.org/01yth3h09', 'en', 1, 'https://ror.org/01yth3h09 Vietnam National Institute of Culture and Arts Studies Viện Văn hóa Nghệ thuật quốc gia Việt Nam'), (71639, 'https://ror.org/01ywq4g22', 'no_lang_code', 1, 'https://ror.org/01ywq4g22 CytoLumina Technologies (United States)'), (71640, 'https://ror.org/01yymmk41', 'no_lang_code', 1, 'https://ror.org/01yymmk41 Maximus (United States)'), (71641, 'https://ror.org/01z1azz52', 'en', 1, 'https://ror.org/01z1azz52 AIR'), (71642, 'https://ror.org/01z28z523', 'en', 1, 'https://ror.org/01z28z523 Trinity House Community Resource Centre'), (71643, 'https://ror.org/01z2dq675', 'no_lang_code', 1, 'https://ror.org/01z2dq675 Chhandam School of Kathak'), (71644, 'https://ror.org/01z2j4m77', 'no_lang_code', 1, 'https://ror.org/01z2j4m77 MC Power (United States)'), (71645, 'https://ror.org/01z2yst76', 'en', 1, 'https://ror.org/01z2yst76 Alaska Department of Public Safety'), (71646, 'https://ror.org/01z48vg94', 'en', 1, 'https://ror.org/01z48vg94 Central Adoption Resource Authority केन्द्रीय दत्तक ग्रहण संसाधन प्राधिकरण'), (71647, 'https://ror.org/01z654s56', 'en', 1, 'https://ror.org/01z654s56 Kharadar General Hospital کھارادر جنرل ہسپتال'), (71648, 'https://ror.org/01z6gyk64', 'no_lang_code', 1, 'https://ror.org/01z6gyk64 Flight Works (United States)'), (71649, 'https://ror.org/01z6qfp70', 'no_lang_code', 1, 'https://ror.org/01z6qfp70 Neural Analytics (United States)'), (71650, 'https://ror.org/01z6vsq11', 'en', 1, 'https://ror.org/01z6vsq11 Heritage Medical Research Clinic'), (71651, 'https://ror.org/01z8avt53', 'no_lang_code', 1, 'https://ror.org/01z8avt53 Fibralign (United States)'), (71652, 'https://ror.org/01zbsa271', 'en', 1, 'https://ror.org/01zbsa271 UK Centre for Tobacco & Alcohol Studies'), (71653, 'https://ror.org/01zd2ew48', 'en', 1, 'https://ror.org/01zd2ew48 Hlanganisa Institute for Development Southern Africa'), (71654, 'https://ror.org/01zdwy980', 'en', 1, 'https://ror.org/01zdwy980 Goldsmiths Community Centre'), (71655, 'https://ror.org/01zepqe17', 'en', 1, 'https://ror.org/01zepqe17 The Jerusalem Academy of Music and Dance האקדמיה למוסיקה ולמחול בירושלים'), (71656, 'https://ror.org/01zfe1g78', 'en', 1, 'https://ror.org/01zfe1g78 The Interuniversity Institute for Research and Development'), (71657, 'https://ror.org/01zg6vj90', 'en', 1, 'https://ror.org/01zg6vj90 Tanzania Meteorological Agency'), (71658, 'https://ror.org/01zgjgk72', 'en', 1, 'https://ror.org/01zgjgk72 Bexhill Museum'), (71659, 'https://ror.org/01zhys576', 'en', 1, 'https://ror.org/01zhys576 Institute of Practitioners in Advertising'), (71660, 'https://ror.org/01zjqjw24', 'en', 1, 'https://ror.org/01zjqjw24 Buckinghamshire Military Museum Trust'), (71661, 'https://ror.org/01zpqtc05', 'en', 1, 'https://ror.org/01zpqtc05 Portsmouth City Council'), (71662, 'https://ror.org/01zpte707', 'en', 1, 'https://ror.org/01zpte707 Infrastructure Transitions Research Consortium'), (71663, 'https://ror.org/01zs7ak06', 'pt', 1, 'https://ror.org/01zs7ak06 Geledés Instituto da Mulher Negra'), (71664, 'https://ror.org/01zsng323', 'en', 1, 'https://ror.org/01zsng323 European Network of Guardianship Institutions'); INSERT INTO `rors` VALUES (71665, 'https://ror.org/01zstqa72', 'no_lang_code', 1, 'https://ror.org/01zstqa72 Kalyra Pharmaceuticals (United States)'), (71666, 'https://ror.org/01ztenz65', 'fr', 1, 'https://ror.org/01ztenz65 Centre Hospitalier de Mouscron'), (71667, 'https://ror.org/01ztwdy23', 'no_lang_code', 1, 'https://ror.org/01ztwdy23 CI&T (Brasil)'), (71668, 'https://ror.org/01zvnqb17', 'no_lang_code', 1, 'https://ror.org/01zvnqb17 Organic Electronics Saxony (Germany)'), (71669, 'https://ror.org/01zxrsb29', 'en', 1, 'https://ror.org/01zxrsb29 Virginia Center for Policing Innovation'), (71670, 'https://ror.org/0201v2f15', 'en', 1, 'https://ror.org/0201v2f15 Cromarty Courthouse Museum'), (71671, 'https://ror.org/020ap9s27', 'en', 1, 'https://ror.org/020ap9s27 United Kingdom Petroleum Industry Association'), (71672, 'https://ror.org/020bgk265', 'no_lang_code', 1, 'https://ror.org/020bgk265 D-2 Incorporated (United States)'), (71673, 'https://ror.org/020emvx88', 'no_lang_code', 1, 'https://ror.org/020emvx88 EP Analytics (United States)'), (71674, 'https://ror.org/020esa803', 'es', 1, 'https://ror.org/020esa803 Club Matador'), (71675, 'https://ror.org/020esap58', 'no_lang_code', 1, 'https://ror.org/020esap58 Valve (United States)'), (71676, 'https://ror.org/020fcm936', 'no_lang_code', 1, 'https://ror.org/020fcm936 MixZon (United States)'), (71677, 'https://ror.org/020fdd961', 'en', 1, 'https://ror.org/020fdd961 Nautilus Institute'), (71678, 'https://ror.org/020gf2z05', 'en', 1, 'https://ror.org/020gf2z05 King County Council'), (71679, 'https://ror.org/020jcq616', 'en', 1, 'https://ror.org/020jcq616 Institute of Social Studies Trust'), (71680, 'https://ror.org/020jzvw77', 'no_lang_code', 1, 'https://ror.org/020jzvw77 NDE Technologies (United States)'), (71681, 'https://ror.org/020k77x19', 'no_lang_code', 1, 'https://ror.org/020k77x19 Callen Lenz (United Kingdom)'), (71682, 'https://ror.org/020nbej04', 'fr', 1, 'https://ror.org/020nbej04 Laboratoire National de Référence'), (71683, 'https://ror.org/020p1sa64', 'en', 1, 'https://ror.org/020p1sa64 L.V. Prasad Film & TV Academy'), (71684, 'https://ror.org/020pnfy52', 'en', 1, 'https://ror.org/020pnfy52 University Alliance'), (71685, 'https://ror.org/020q2cx80', 'en', 1, 'https://ror.org/020q2cx80 Centre for Social Sciences and Humanities'), (71686, 'https://ror.org/020qa8h77', 'en', 1, 'https://ror.org/020qa8h77 Coalition Against Trafficking Women'), (71687, 'https://ror.org/020wewy68', 'no_lang_code', 1, 'https://ror.org/020wewy68 Wind Power Engineering (Japan)'), (71688, 'https://ror.org/020x1hr04', 'en', 1, 'https://ror.org/020x1hr04 Community Health And Information Network'), (71689, 'https://ror.org/020x5hh56', 'en', 1, 'https://ror.org/020x5hh56 Council of Urban Professionals'), (71690, 'https://ror.org/020yenx75', 'en', 1, 'https://ror.org/020yenx75 Museums Sheffield'), (71691, 'https://ror.org/020yyec49', 'no_lang_code', 1, 'https://ror.org/020yyec49 Bally Ribbon Mills (United States)'), (71692, 'https://ror.org/020znap72', 'ro', 1, 'https://ror.org/020znap72 Asociația Română de Artă Contemporană'), (71693, 'https://ror.org/020zz6y73', 'en', 1, 'https://ror.org/020zz6y73 Smart Water Networks Forum'), (71694, 'https://ror.org/02169sk90', 'en', 1, 'https://ror.org/02169sk90 National Drug Addiction Center'), (71695, 'https://ror.org/02191ha15', 'no_lang_code', 1, 'https://ror.org/02191ha15 Sysnav (France)'), (71696, 'https://ror.org/0219smt59', 'en', 1, 'https://ror.org/0219smt59 The Justice Research Center'), (71697, 'https://ror.org/021c2nt68', 'no_lang_code', 1, 'https://ror.org/021c2nt68 Emmune (United States)'), (71698, 'https://ror.org/021cmds57', 'no_lang_code', 1, 'https://ror.org/021cmds57 Life Services (United States)'), (71699, 'https://ror.org/021d2w304', 'no_lang_code', 1, 'https://ror.org/021d2w304 Vivo Smart Medical Devices (United Kingdom)'), (71700, 'https://ror.org/021e6jr16', 'sv', 1, 'https://ror.org/021e6jr16 Vetenskap I Skolan'), (71701, 'https://ror.org/021ebxe23', 'no_lang_code', 1, 'https://ror.org/021ebxe23 Mi-Tech (United States)'), (71702, 'https://ror.org/021eps607', 'de', 1, 'https://ror.org/021eps607 Hans-Bredow-Institut, Hans-Bredow-Institute'), (71703, 'https://ror.org/021ez5n36', 'en', 1, 'https://ror.org/021ez5n36 College of Science, Technology and Applied Arts of Trinidad and Tobago'), (71704, 'https://ror.org/021fwfm07', 'en', 1, 'https://ror.org/021fwfm07 National Survivor User Network'), (71705, 'https://ror.org/021g78m61', 'en', 1, 'https://ror.org/021g78m61 Social Progress Imperative'), (71706, 'https://ror.org/021j6vs44', 'en', 1, 'https://ror.org/021j6vs44 Iceland Symphony Orchestra Sinfóníuhljómsveit Íslands'), (71707, 'https://ror.org/021k8e418', 'no_lang_code', 1, 'https://ror.org/021k8e418 Calibrant Digital (United States)'), (71708, 'https://ror.org/021kyym11', 'en', 1, 'https://ror.org/021kyym11 Bradford Museums and Galleries'), (71709, 'https://ror.org/021p0r140', 'no_lang_code', 1, 'https://ror.org/021p0r140 CLEARink (Canada)'), (71710, 'https://ror.org/021rm5384', 'no_lang_code', 1, 'https://ror.org/021rm5384 eMagin (United States)'), (71711, 'https://ror.org/021rrz441', 'en', 1, 'https://ror.org/021rrz441 BMCC Tribeca Performing Arts Center'), (71712, 'https://ror.org/021trq250', 'no_lang_code', 1, 'https://ror.org/021trq250 Ceebus Technologies (United States)'), (71713, 'https://ror.org/021v42516', 'en', 1, 'https://ror.org/021v42516 Glastonbury Abbey'), (71714, 'https://ror.org/021w6ye38', 'en', 1, 'https://ror.org/021w6ye38 Blueberry Academy'), (71715, 'https://ror.org/021wayr39', 'en', 1, 'https://ror.org/021wayr39 Big Sky Institute'), (71716, 'https://ror.org/021wky884', 'de', 1, 'https://ror.org/021wky884 St. Vincentius-Kliniken'), (71717, 'https://ror.org/021xnk312', 'sq', 1, 'https://ror.org/021xnk312 Stacion'), (71718, 'https://ror.org/021yz3w04', 'en', 1, 'https://ror.org/021yz3w04 Los Angeles Area Chamber of Commerce'), (71719, 'https://ror.org/0220er837', 'no_lang_code', 1, 'https://ror.org/0220er837 Intraband (United States)'), (71720, 'https://ror.org/0220t3t55', 'no_lang_code', 1, 'https://ror.org/0220t3t55 Nikkei Business Publications (Japan) 株式会社日経'), (71721, 'https://ror.org/0221agg28', 'en', 1, 'https://ror.org/0221agg28 Construction Technologies Institute Istituto per le Tecnologie della Costruzione'), (71722, 'https://ror.org/0221z8061', 'en', 1, 'https://ror.org/0221z8061 Settlement Centre Waikato'), (71723, 'https://ror.org/0222kcs48', 'no_lang_code', 1, 'https://ror.org/0222kcs48 Applied Sonics (United States)'), (71724, 'https://ror.org/0223xwb92', 'en', 1, 'https://ror.org/0223xwb92 The Pevensey Court House Museum and Gaol'), (71725, 'https://ror.org/0225s8473', 'no_lang_code', 1, 'https://ror.org/0225s8473 LaserGuide (United States)'), (71726, 'https://ror.org/02297eg71', 'en', 1, 'https://ror.org/02297eg71 Democracy Development Centre Розвиток демократії'), (71727, 'https://ror.org/0229g8886', 'en', 1, 'https://ror.org/0229g8886 Warsaw School of Computer Science Warszawska Wyższa Szkoła Informatyki'), (71728, 'https://ror.org/0229h7141', 'no_lang_code', 1, 'https://ror.org/0229h7141 Centre Culturel Bactria'), (71729, 'https://ror.org/0229rjp19', 'en', 1, 'https://ror.org/0229rjp19 Health Action International'), (71730, 'https://ror.org/0229sfh63', 'en', 1, 'https://ror.org/0229sfh63 Sri Lanka Foundation'), (71731, 'https://ror.org/022a78s92', 'en', 1, 'https://ror.org/022a78s92 Nafici Environmental Research'), (71732, 'https://ror.org/022aez802', 'en', 1, 'https://ror.org/022aez802 Shenyang First People''s Hospital 沈阳市第一人民医院'), (71733, 'https://ror.org/022axmn44', 'en', 1, 'https://ror.org/022axmn44 Detroit River International Wildlife Refuge'), (71734, 'https://ror.org/022cj9d07', 'en', 1, 'https://ror.org/022cj9d07 Ladies College'), (71735, 'https://ror.org/022d66a71', 'pt', 1, 'https://ror.org/022d66a71 Hospital Araújo Jorge'), (71736, 'https://ror.org/022d92k39', 'en', 1, 'https://ror.org/022d92k39 SETsquared Partnership'), (71737, 'https://ror.org/022fw8624', 'en', 1, 'https://ror.org/022fw8624 Oil & Gas Innovation Centre'), (71738, 'https://ror.org/022gg8876', 'no_lang_code', 1, 'https://ror.org/022gg8876 MIE Medical Research (United Kingdom)'), (71739, 'https://ror.org/022gx5t47', 'en', 1, 'https://ror.org/022gx5t47 Contemporary Dance Center Центр современного танца'), (71740, 'https://ror.org/022gyr952', 'en', 1, 'https://ror.org/022gyr952 Article 19'), (71741, 'https://ror.org/022jej057', 'en', 1, 'https://ror.org/022jej057 Institute of Economic Development'), (71742, 'https://ror.org/022k78750', 'no_lang_code', 1, 'https://ror.org/022k78750 ECD for the Masses (United States)'), (71743, 'https://ror.org/022ka4k09', 'es', 1, 'https://ror.org/022ka4k09 Museo De Arte Contemporaneo'), (71744, 'https://ror.org/022kcpx61', 'en', 1, 'https://ror.org/022kcpx61 The Bewdley School'), (71745, 'https://ror.org/022ma3798', 'en', 1, 'https://ror.org/022ma3798 World Travel and Tourism Council'), (71746, 'https://ror.org/022mgyj90', 'no_lang_code', 1, 'https://ror.org/022mgyj90 Kennen Technologies (United States)'), (71747, 'https://ror.org/022mnpm42', 'en', 1, 'https://ror.org/022mnpm42 Ministry of Natural Resources and Environmental Conservation'), (71748, 'https://ror.org/022n30916', 'en', 1, 'https://ror.org/022n30916 Economic Policy Research Centre'), (71749, 'https://ror.org/022nyvr86', 'en', 1, 'https://ror.org/022nyvr86 V.M. Koretsky Institute of State and Law Інститут держави і права імені В. М. Корецького НАН України Институт государства и права имени В. М. Корецкого НАН Украины'), (71750, 'https://ror.org/022pve491', 'no_lang_code', 1, 'https://ror.org/022pve491 Aura Technologies (United States)'), (71751, 'https://ror.org/022qrts95', 'no_lang_code', 1, 'https://ror.org/022qrts95 Tecomet (United Kingdom)'), (71752, 'https://ror.org/022rh5p10', 'no_lang_code', 1, 'https://ror.org/022rh5p10 Black Swift Technologies (United States)'), (71753, 'https://ror.org/022s4gs38', 'en', 1, 'https://ror.org/022s4gs38 Parliamentary Advisory Council for Transport Safety'), (71754, 'https://ror.org/022wdbc37', 'en', 1, 'https://ror.org/022wdbc37 Uganda Media Women’s Association'), (71755, 'https://ror.org/022wfhc10', 'en', 1, 'https://ror.org/022wfhc10 Royal Institution of Naval Architects'), (71756, 'https://ror.org/022wja523', 'en', 1, 'https://ror.org/022wja523 Security Council Report'), (71757, 'https://ror.org/022xz9e77', 'en', 1, 'https://ror.org/022xz9e77 Bangladesh Bank বাংলাদেশ ব্যাংক'), (71758, 'https://ror.org/022y13z84', 'en', 1, 'https://ror.org/022y13z84 ZanaAfrica Foundation'), (71759, 'https://ror.org/022z6jk58', 'en', 1, 'https://ror.org/022z6jk58 MIT Lincoln Laboratory'), (71760, 'https://ror.org/022z7sg09', 'en', 1, 'https://ror.org/022z7sg09 The Potteries Museum and Art Gallery'), (71761, 'https://ror.org/0230prd66', 'no_lang_code', 1, 'https://ror.org/0230prd66 Cox & Company (United States)'), (71762, 'https://ror.org/0235g7a39', 'en', 1, 'https://ror.org/0235g7a39 Framework'), (71763, 'https://ror.org/0238mgj23', 'es', 1, 'https://ror.org/0238mgj23 Hospital Regional de Antofagasta'), (71764, 'https://ror.org/023a61k53', 'en', 1, 'https://ror.org/023a61k53 Centre for Excellence for Looked After Children in Scotland'), (71765, 'https://ror.org/023fje098', 'en', 1, 'https://ror.org/023fje098 Canolfan y Dechnoleg Amgen Centre for Alternative Technology'), (71766, 'https://ror.org/023fnpq36', 'en', 1, 'https://ror.org/023fnpq36 Gweld Gwyddoniaeth See Science'), (71767, 'https://ror.org/023gd8d44', 'en', 1, 'https://ror.org/023gd8d44 Perth and Kinross Heritage Trust'), (71768, 'https://ror.org/023gtz231', 'en', 1, 'https://ror.org/023gtz231 Elderly Accommodation Counsel'), (71769, 'https://ror.org/023h7p541', 'en', 1, 'https://ror.org/023h7p541 Business Technology Incubator of Technical Faculties Belgrade'), (71770, 'https://ror.org/023j15q26', 'en', 1, 'https://ror.org/023j15q26 Maine Center for Economic Policy'), (71771, 'https://ror.org/023m6zy08', 'no_lang_code', 1, 'https://ror.org/023m6zy08 Lokadharmi'), (71772, 'https://ror.org/023n14c26', 'no_lang_code', 1, 'https://ror.org/023n14c26 Integrity Systems (United States)'), (71773, 'https://ror.org/023nbxm56', 'en', 1, 'https://ror.org/023nbxm56 Green Liberty Zaļā brīvība'), (71774, 'https://ror.org/023qjpe11', 'en', 1, 'https://ror.org/023qjpe11 LEAP Africa'), (71775, 'https://ror.org/02411h917', 'no_lang_code', 1, 'https://ror.org/02411h917 Bauer Associates (United States)'), (71776, 'https://ror.org/02451fm04', 'en', 1, 'https://ror.org/02451fm04 Kyrgyz State Law Academy Кыргызская государственная юридическая академия'), (71777, 'https://ror.org/0245g4145', 'en', 1, 'https://ror.org/0245g4145 Houston Forensic Science Center'), (71778, 'https://ror.org/0245zq547', 'en', 1, 'https://ror.org/0245zq547 Programme on Women’s Economic, Social and Cultural Rights'), (71779, 'https://ror.org/0246dm313', 'en', 1, 'https://ror.org/0246dm313 South Downs National Park Authority'), (71780, 'https://ror.org/0249a2s92', 'no_lang_code', 1, 'https://ror.org/0249a2s92 Ginger (France) Groupe Ginger'), (71781, 'https://ror.org/024arph56', 'no_lang_code', 1, 'https://ror.org/024arph56 MorganFranklin (United States)'), (71782, 'https://ror.org/024bajv16', 'en', 1, 'https://ror.org/024bajv16 The Northwest School'), (71783, 'https://ror.org/024e7ek05', 'no_lang_code', 1, 'https://ror.org/024e7ek05 Kaleidoscopio'), (71784, 'https://ror.org/024f22429', 'en', 1, 'https://ror.org/024f22429 Ministry of Justice and Public Security Ministério da Justiça e Segurança Pública'), (71785, 'https://ror.org/024gr5317', 'no_lang_code', 1, 'https://ror.org/024gr5317 Blueenergy'), (71786, 'https://ror.org/024h4bk68', 'no_lang_code', 1, 'https://ror.org/024h4bk68 American Xtal Technology (United States)'), (71787, 'https://ror.org/024hme737', 'no_lang_code', 1, 'https://ror.org/024hme737 Mirage Systems (United States)'), (71788, 'https://ror.org/024jszt17', 'no_lang_code', 1, 'https://ror.org/024jszt17 Mgenuity (United States)'), (71789, 'https://ror.org/024m3bm98', 'ro', 1, 'https://ror.org/024m3bm98 Biblioteca Metropolitană București'), (71790, 'https://ror.org/024m9cy67', 'en', 1, 'https://ror.org/024m9cy67 Funders'' Network for Smart Growth and Livable Communities'), (71791, 'https://ror.org/024n0w036', 'no_lang_code', 1, 'https://ror.org/024n0w036 Nine Health CIC (United Kingdom)'), (71792, 'https://ror.org/024ng9141', 'en', 1, 'https://ror.org/024ng9141 Transport Analysis'), (71793, 'https://ror.org/024p6za61', 'no_lang_code', 1, 'https://ror.org/024p6za61 Solvay (Brazil)'), (71794, 'https://ror.org/024ps9968', 'no_lang_code', 1, 'https://ror.org/024ps9968 AI Signal Research (United States)'), (71795, 'https://ror.org/024srtw61', 'pt', 1, 'https://ror.org/024srtw61 Redes da Maré'), (71796, 'https://ror.org/024vwmq15', 'en', 1, 'https://ror.org/024vwmq15 Nonprofit Finance Fund'), (71797, 'https://ror.org/024w3dd68', 'no_lang_code', 1, 'https://ror.org/024w3dd68 Tetra Pak (Brazil)'), (71798, 'https://ror.org/024x1z891', 'en', 1, 'https://ror.org/024x1z891 Gloucestershire Wildlife Trust'), (71799, 'https://ror.org/024z18394', 'es', 1, 'https://ror.org/024z18394 Banco Central del Uruguay Central Bank of Uruguay'), (71800, 'https://ror.org/0250p1d07', 'no_lang_code', 1, 'https://ror.org/0250p1d07 Phenikaa (Vietnam)'), (71801, 'https://ror.org/0251n1a38', 'no_lang_code', 1, 'https://ror.org/0251n1a38 Amprion (United States)'), (71802, 'https://ror.org/025314t43', 'en', 1, 'https://ror.org/025314t43 EngageMedia'), (71803, 'https://ror.org/02542wh83', 'en', 1, 'https://ror.org/02542wh83 Mull and Iona Community Trust'), (71804, 'https://ror.org/02547f863', 'no_lang_code', 1, 'https://ror.org/02547f863 TeXtreme (Sweden)'), (71805, 'https://ror.org/0254e9x24', 'en', 1, 'https://ror.org/0254e9x24 Friends of Cumbria Archives'), (71806, 'https://ror.org/02557nd11', 'en', 1, 'https://ror.org/02557nd11 Jinan Institute of Quantum Technology 济南量子技术研究院'), (71807, 'https://ror.org/0255b1449', 'en', 1, 'https://ror.org/0255b1449 Planet Earth Institute'), (71808, 'https://ror.org/0256tf124', 'en', 1, 'https://ror.org/0256tf124 Association for the Prevention of Torture'), (71809, 'https://ror.org/0257m1m09', 'no_lang_code', 1, 'https://ror.org/0257m1m09 Vere Software (United States)'), (71810, 'https://ror.org/025a6yk46', 'en', 1, 'https://ror.org/025a6yk46 Rhondda Cynon Taff Library Service'), (71811, 'https://ror.org/025a7c117', 'en', 1, 'https://ror.org/025a7c117 Federation of Small Businesses'), (71812, 'https://ror.org/025apse83', 'fr', 1, 'https://ror.org/025apse83 Binche Musée International du Carnaval et du Masque'), (71813, 'https://ror.org/025ardq11', 'en', 1, 'https://ror.org/025ardq11 Forest Trends'), (71814, 'https://ror.org/025c20538', 'en', 1, 'https://ror.org/025c20538 America''s Voice'), (71815, 'https://ror.org/025emxq18', 'no_lang_code', 1, 'https://ror.org/025emxq18 DZYNE Technologies (United States)'), (71816, 'https://ror.org/025jccm67', 'no_lang_code', 1, 'https://ror.org/025jccm67 Kobe Shimbun (Japan) 神戸新聞'), (71817, 'https://ror.org/025je7089', 'no_lang_code', 1, 'https://ror.org/025je7089 Atvos (Brazil)'), (71818, 'https://ror.org/025je9g43', 'en', 1, 'https://ror.org/025je9g43 Glossop Heritage Trust'), (71819, 'https://ror.org/025jtyf63', 'en', 1, 'https://ror.org/025jtyf63 International Energy Research Centre'), (71820, 'https://ror.org/025kjws23', 'no_lang_code', 1, 'https://ror.org/025kjws23 Advanced Energy Dynamics (United States)'), (71821, 'https://ror.org/025mrej82', 'en', 1, 'https://ror.org/025mrej82 Public Religion Research Institute'), (71822, 'https://ror.org/025q9pc81', 'no_lang_code', 1, 'https://ror.org/025q9pc81 AgileDelta (United States)'), (71823, 'https://ror.org/025s7rk09', 'en', 1, 'https://ror.org/025s7rk09 Wessex Chalk Stream and Rivers Trust'), (71824, 'https://ror.org/025t58v56', 'no_lang_code', 1, 'https://ror.org/025t58v56 Iguacu'), (71825, 'https://ror.org/025tf0837', 'en', 1, 'https://ror.org/025tf0837 South Yorkshire Fire and Rescue'), (71826, 'https://ror.org/025y1an67', 'no_lang_code', 1, 'https://ror.org/025y1an67 Kerala Museum കേരള ചരിത്ര മ്യൂസിയം'), (71827, 'https://ror.org/025z1qv19', 'no_lang_code', 1, 'https://ror.org/025z1qv19 Child Watabaran Center'), (71828, 'https://ror.org/026031778', 'en', 1, 'https://ror.org/026031778 Saudi Heritage Preservation Society'), (71829, 'https://ror.org/02606x514', 'en', 1, 'https://ror.org/02606x514 Chilled Food Association'), (71830, 'https://ror.org/0260evc53', 'de', 1, 'https://ror.org/0260evc53 Maschinenbauschule Ansbach'), (71831, 'https://ror.org/0260rem45', 'no_lang_code', 1, 'https://ror.org/0260rem45 Kinetic Art & Technology (United States)'), (71832, 'https://ror.org/0261n2w64', 'no_lang_code', 1, 'https://ror.org/0261n2w64 HS Owen (United States)'), (71833, 'https://ror.org/0261w0b46', 'no_lang_code', 1, 'https://ror.org/0261w0b46 Micro-Precision Technologies (United States)'), (71834, 'https://ror.org/0261y3y56', 'sv', 1, 'https://ror.org/0261y3y56 Konsthantverkscentrum'), (71835, 'https://ror.org/0263zy895', 'it', 1, 'https://ror.org/0263zy895 Istituto di Metodologie Chimiche'), (71836, 'https://ror.org/026537666', 'en', 1, 'https://ror.org/026537666 Helen Storey Foundation'), (71837, 'https://ror.org/0265f5c42', 'en', 1, 'https://ror.org/0265f5c42 Minshar School of Art מנשר לאמנות'), (71838, 'https://ror.org/02677zc17', 'no_lang_code', 1, 'https://ror.org/02677zc17 Balcones Technologies (United States)'), (71839, 'https://ror.org/02694zd26', 'es', 1, 'https://ror.org/02694zd26 Centro de Recursos Educativos Avanzados'), (71840, 'https://ror.org/0269jcv25', 'no_lang_code', 1, 'https://ror.org/0269jcv25 Esensors (United States)'), (71841, 'https://ror.org/0269x8842', 'no_lang_code', 1, 'https://ror.org/0269x8842 AsclepiX Therapeutics (United States)'), (71842, 'https://ror.org/026dj7w39', 'en', 1, 'https://ror.org/026dj7w39 Bellahouston Academy'), (71843, 'https://ror.org/026e7vh85', 'no_lang_code', 1, 'https://ror.org/026e7vh85 Goodmark Medical (United States)'), (71844, 'https://ror.org/026f02s60', 'en', 1, 'https://ror.org/026f02s60 Sir Arthur Lewis Community College'), (71845, 'https://ror.org/026fx4095', 'en', 1, 'https://ror.org/026fx4095 National Theatre Wales'), (71846, 'https://ror.org/026hn9a19', 'en', 1, 'https://ror.org/026hn9a19 New York Musical Festival'), (71847, 'https://ror.org/026m9xy48', 'no_lang_code', 1, 'https://ror.org/026m9xy48 AstraZeneca (Brazil)'), (71848, 'https://ror.org/026ped584', 'es', 1, 'https://ror.org/026ped584 Hospital Santiago Oriente - Dr. Luis Tisne Brousse'), (71849, 'https://ror.org/026q0wa78', 'en', 1, 'https://ror.org/026q0wa78 Uppsala Innovation Centre'), (71850, 'https://ror.org/026rd5w83', 'en', 1, 'https://ror.org/026rd5w83 Maharashtra Association of Anthropological Sciences मानवशास्त्र विज्ञान महाराष्ट्र असोसिएशन'), (71851, 'https://ror.org/026s4w053', 'no_lang_code', 1, 'https://ror.org/026s4w053 Poznańska Hodowla Roślin (Poland)'), (71852, 'https://ror.org/026t78k29', 'en', 1, 'https://ror.org/026t78k29 Eastbridge Hospital'), (71853, 'https://ror.org/026xf4k55', 'en', 1, 'https://ror.org/026xf4k55 MeetFactory'), (71854, 'https://ror.org/02700b480', 'no_lang_code', 1, 'https://ror.org/02700b480 MicroConnex (United States)'), (71855, 'https://ror.org/0270vwd61', 'en', 1, 'https://ror.org/0270vwd61 American Museum and Gardens'), (71856, 'https://ror.org/027218r60', 'no_lang_code', 1, 'https://ror.org/027218r60 CounterPath (United States)'), (71857, 'https://ror.org/0273d1w91', 'no_lang_code', 1, 'https://ror.org/0273d1w91 Intan Technologies (United States)'), (71858, 'https://ror.org/027441620', 'en', 1, 'https://ror.org/027441620 Florence English Language Theatre Artists'), (71859, 'https://ror.org/0276e3d41', 'en', 1, 'https://ror.org/0276e3d41 Học viện Âm nhạc Quốc gia Việt Nam Viet Nam National Academy of Music'), (71860, 'https://ror.org/0276h0a46', 'en', 1, 'https://ror.org/0276h0a46 St Monica Trust'), (71861, 'https://ror.org/0279ae125', 'en', 1, 'https://ror.org/0279ae125 Fordingbridge Museum Trust'), (71862, 'https://ror.org/027c34053', 'en', 1, 'https://ror.org/027c34053 Safe Motherhood Ladies Association'), (71863, 'https://ror.org/027ckgt14', 'no_lang_code', 1, 'https://ror.org/027ckgt14 Flex Force Enterprises (United States)'), (71864, 'https://ror.org/027d29w93', 'no_lang_code', 1, 'https://ror.org/027d29w93 InnovaPrep (United States)'), (71865, 'https://ror.org/027esmb72', 'no_lang_code', 1, 'https://ror.org/027esmb72 Attainment (United States)'), (71866, 'https://ror.org/027f5c287', 'en', 1, 'https://ror.org/027f5c287 Citizen University'), (71867, 'https://ror.org/027fw3f96', 'en', 1, 'https://ror.org/027fw3f96 Arab Education Forum الملتقى التربوي العربي'), (71868, 'https://ror.org/027h4hn14', 'no_lang_code', 1, 'https://ror.org/027h4hn14 Alma Media (Finland) Alma Media Oyj'), (71869, 'https://ror.org/027jtmq90', 'en', 1, 'https://ror.org/027jtmq90 Statens musikverk Swedish Performing Arts Agency'), (71870, 'https://ror.org/027nc8m92', 'en', 1, 'https://ror.org/027nc8m92 Northshore Education Consortium'), (71871, 'https://ror.org/027nnzv91', 'es', 1, 'https://ror.org/027nnzv91 Hospital Italiano La Plata'), (71872, 'https://ror.org/027p78k86', 'no_lang_code', 1, 'https://ror.org/027p78k86 Ligand Pharmaceuticals (United Kingdom)'), (71873, 'https://ror.org/027q5ca10', 'es', 1, 'https://ror.org/027q5ca10 Instituto Nacional de Patrimonio Cultural'), (71874, 'https://ror.org/027qvm849', 'en', 1, 'https://ror.org/027qvm849 Future Earth'), (71875, 'https://ror.org/027s2rg16', 'no_lang_code', 1, 'https://ror.org/027s2rg16 Machakos School'), (71876, 'https://ror.org/027xc7098', 'en', 1, 'https://ror.org/027xc7098 Liverpool College'), (71877, 'https://ror.org/027xnhd66', 'no_lang_code', 1, 'https://ror.org/027xnhd66 Grier Forensics (United States)'), (71878, 'https://ror.org/027y5z534', 'en', 1, 'https://ror.org/027y5z534 Roja Muthiah Research Library'), (71879, 'https://ror.org/027yhxh89', 'no_lang_code', 1, 'https://ror.org/027yhxh89 Magzor (United States)'), (71880, 'https://ror.org/027yyz170', 'en', 1, 'https://ror.org/027yyz170 Himalayan Environmental Studies and Conservation Organization'), (71881, 'https://ror.org/027zjnr49', 'en', 1, 'https://ror.org/027zjnr49 International New Town Institute'), (71882, 'https://ror.org/02802hm84', 'no_lang_code', 1, 'https://ror.org/02802hm84 Tecplot (United States)'), (71883, 'https://ror.org/0280epy55', 'en', 1, 'https://ror.org/0280epy55 Arab Educational Information Network شبكة المعلومات العربية التربوية'), (71884, 'https://ror.org/028310354', 'no_lang_code', 1, 'https://ror.org/028310354 Social Policy Research Associates (United States)'), (71885, 'https://ror.org/02857w585', 'no_lang_code', 1, 'https://ror.org/02857w585 Hdm Systems (United States)'), (71886, 'https://ror.org/0285kfv02', 'no_lang_code', 1, 'https://ror.org/0285kfv02 Biodesigns (United States)'), (71887, 'https://ror.org/02861vh07', 'en', 1, 'https://ror.org/02861vh07 The Poetry Society'), (71888, 'https://ror.org/0286v3284', 'en', 1, 'https://ror.org/0286v3284 Institute of Hydrogeology and Geoecology. Ahmedsafina Институт гидрогеологии и геоэкологии им. Ахмедсафина'), (71889, 'https://ror.org/0287y3s68', 'en', 1, 'https://ror.org/0287y3s68 Echo Network Africa'), (71890, 'https://ror.org/028ata669', 'no_lang_code', 1, 'https://ror.org/028ata669 IR Dynamics (United States)'), (71891, 'https://ror.org/028awrr93', 'en', 1, 'https://ror.org/028awrr93 Woodbrooke'), (71892, 'https://ror.org/028chwx32', 'en', 1, 'https://ror.org/028chwx32 Ministry of Culture'), (71893, 'https://ror.org/028e1nz03', 'no_lang_code', 1, 'https://ror.org/028e1nz03 Nitroerg (Poland)'), (71894, 'https://ror.org/028g3cv81', 'no_lang_code', 1, 'https://ror.org/028g3cv81 Interphase Materials (United States)'), (71895, 'https://ror.org/028g3pe33', 'en', 1, 'https://ror.org/028g3pe33 Institute for Computational Linguistics “A. Zampolli” Istituto di Linguistica Computazionale "A. Zampolli"'), (71896, 'https://ror.org/028j88e93', 'en', 1, 'https://ror.org/028j88e93 Shaw Trust'), (71897, 'https://ror.org/028k2a581', 'no_lang_code', 1, 'https://ror.org/028k2a581 Meloq (Sweden)'), (71898, 'https://ror.org/028mtkm91', 'en', 1, 'https://ror.org/028mtkm91 San Francisco Police Department'), (71899, 'https://ror.org/028n3wq88', 'no_lang_code', 1, 'https://ror.org/028n3wq88 EndoProtech (United States)'), (71900, 'https://ror.org/028pb7349', 'en', 1, 'https://ror.org/028pb7349 Green Circle Zelený kruh'), (71901, 'https://ror.org/028pznd91', 'no_lang_code', 1, 'https://ror.org/028pznd91 Chromafora (Sweden)'), (71902, 'https://ror.org/028qge085', 'no_lang_code', 1, 'https://ror.org/028qge085 Century (United States)'), (71903, 'https://ror.org/028v2q832', 'en', 1, 'https://ror.org/028v2q832 Wear Rivers Trust'), (71904, 'https://ror.org/028vs0284', 'en', 1, 'https://ror.org/028vs0284 Academy of Ancient Music'), (71905, 'https://ror.org/028wrtm78', 'en', 1, 'https://ror.org/028wrtm78 Hong Kong America Center'), (71906, 'https://ror.org/028x4en59', 'en', 1, 'https://ror.org/028x4en59 Climate Centre'), (71907, 'https://ror.org/028ypwr15', 'en', 1, 'https://ror.org/028ypwr15 Albury Wodonga Health'), (71908, 'https://ror.org/028yxzq51', 'en', 1, 'https://ror.org/028yxzq51 Lourdes Health System'), (71909, 'https://ror.org/0291ys696', 'en', 1, 'https://ror.org/0291ys696 Michigan United'), (71910, 'https://ror.org/0293c7e71', 'fr', 1, 'https://ror.org/0293c7e71 Conservatoire des Arts et Métiers Multimédia'), (71911, 'https://ror.org/029587y03', 'en', 1, 'https://ror.org/029587y03 Ilfracombe Museum'), (71912, 'https://ror.org/029768m78', 'no_lang_code', 1, 'https://ror.org/029768m78 Maskpol (Poland)'), (71913, 'https://ror.org/0297mhz17', 'en', 1, 'https://ror.org/0297mhz17 Baria Vungtau University Trường Đại học Bà Rịa - Vũng Tàu'), (71914, 'https://ror.org/02980ky18', 'en', 1, 'https://ror.org/02980ky18 West of England Academic Health Science Network'), (71915, 'https://ror.org/0299hrs54', 'en', 1, 'https://ror.org/0299hrs54 Enlightened Myanmar Research Foundation'), (71916, 'https://ror.org/029a61c63', 'en', 1, 'https://ror.org/029a61c63 Academy of Policy and Development'), (71917, 'https://ror.org/029agyb27', 'en', 1, 'https://ror.org/029agyb27 Centre de Recherches pour le Développement International International Development Research Centre'), (71918, 'https://ror.org/029ajv121', 'en', 1, 'https://ror.org/029ajv121 United Philanthropy Forum'), (71919, 'https://ror.org/029b7sx25', 'en', 1, 'https://ror.org/029b7sx25 Sydney Jewish Museum'), (71920, 'https://ror.org/029bmhr60', 'no_lang_code', 1, 'https://ror.org/029bmhr60 Amastan Technologies (United States)'), (71921, 'https://ror.org/029e72445', 'en', 1, 'https://ror.org/029e72445 Childhood Bereavement Network'), (71922, 'https://ror.org/029fsgw35', 'en', 1, 'https://ror.org/029fsgw35 Association for Democratic Reforms'), (71923, 'https://ror.org/029g0ec14', 'en', 1, 'https://ror.org/029g0ec14 Cyngor Sir Fynwy Monmouthshire County Council'), (71924, 'https://ror.org/029jmc311', 'no_lang_code', 1, 'https://ror.org/029jmc311 Amjet Turbine System (United States)'), (71925, 'https://ror.org/029mydn95', 'no_lang_code', 1, 'https://ror.org/029mydn95 Fischer Imaging (United States)'), (71926, 'https://ror.org/029n3ke88', 'no_lang_code', 1, 'https://ror.org/029n3ke88 Wyld (United Kingdom)'), (71927, 'https://ror.org/029vth897', 'en', 1, 'https://ror.org/029vth897 Association for India’s Development'), (71928, 'https://ror.org/029w2ds07', 'en', 1, 'https://ror.org/029w2ds07 Foundation for International Cooperation In Higher Education of Taiwan 財團法人高等教育國際合作基金會'), (71929, 'https://ror.org/029whta60', 'no_lang_code', 1, 'https://ror.org/029whta60 PBG (Poland)'), (71930, 'https://ror.org/02a0gmf29', 'en', 1, 'https://ror.org/02a0gmf29 Biomedical Research Institute of Southern California'), (71931, 'https://ror.org/02a2anr16', 'en', 1, 'https://ror.org/02a2anr16 Regional Education Centre for the area of primary care'), (71932, 'https://ror.org/02a3zx434', 'pt', 1, 'https://ror.org/02a3zx434 Conservatório Pernambucano de Música'), (71933, 'https://ror.org/02a497926', 'en', 1, 'https://ror.org/02a497926 American Indian Development Associates'), (71934, 'https://ror.org/02a4rtb34', 'en', 1, 'https://ror.org/02a4rtb34 Taiwan Design Center 台灣創意設計中心'), (71935, 'https://ror.org/02a4rw748', 'no_lang_code', 1, 'https://ror.org/02a4rw748 Kosovo Telecom (Kosovo) Telekomi i Kosovës Телеком Косова'), (71936, 'https://ror.org/02a7s3141', 'en', 1, 'https://ror.org/02a7s3141 Contemporary Art Society'), (71937, 'https://ror.org/02a8fvh42', 'en', 1, 'https://ror.org/02a8fvh42 Useful Simple Trust'), (71938, 'https://ror.org/02a91xk32', 'da', 1, 'https://ror.org/02a91xk32 Dansk Filosofisk Selskab'), (71939, 'https://ror.org/02aaavs63', 'en', 1, 'https://ror.org/02aaavs63 Anglo-Boer War Museum'), (71940, 'https://ror.org/02abp7362', 'no_lang_code', 1, 'https://ror.org/02abp7362 358 (Finland)'), (71941, 'https://ror.org/02acf6r22', 'no_lang_code', 1, 'https://ror.org/02acf6r22 Maroon Biotech (United States)'), (71942, 'https://ror.org/02acrm202', 'no_lang_code', 1, 'https://ror.org/02acrm202 Ampersand (Sweden)'), (71943, 'https://ror.org/02act3e13', 'no_lang_code', 1, 'https://ror.org/02act3e13 BGI (United States)'), (71944, 'https://ror.org/02actgg20', 'no_lang_code', 1, 'https://ror.org/02actgg20 Adroit Science (Sweden)'), (71945, 'https://ror.org/02ad86n55', 'en', 1, 'https://ror.org/02ad86n55 More Associates'), (71946, 'https://ror.org/02ae15t63', 'es', 1, 'https://ror.org/02ae15t63 Centro de Implementación de Políticas Públicas para la Equidad y el Crecimiento'), (71947, 'https://ror.org/02aebf083', 'no_lang_code', 1, 'https://ror.org/02aebf083 Melink (United States)'), (71948, 'https://ror.org/02af2ve13', 'en', 1, 'https://ror.org/02af2ve13 Orkney Library and Archive'), (71949, 'https://ror.org/02af40965', 'no_lang_code', 1, 'https://ror.org/02af40965 Crecare (United States)'), (71950, 'https://ror.org/02afwny15', 'en', 1, 'https://ror.org/02afwny15 Tiree Community Development Trust'), (71951, 'https://ror.org/02agf1x24', 'no_lang_code', 1, 'https://ror.org/02agf1x24 AlzeCure Pharma (Sweden)'), (71952, 'https://ror.org/02agte379', 'sv', 1, 'https://ror.org/02agte379 Medeon'), (71953, 'https://ror.org/02an8as91', 'en', 1, 'https://ror.org/02an8as91 British Egg Industry Council'), (71954, 'https://ror.org/02app9g37', 'en', 1, 'https://ror.org/02app9g37 Cool Farm Alliance'), (71955, 'https://ror.org/02ar1p116', 'es', 1, 'https://ror.org/02ar1p116 Hospital de Referencia La Equina'), (71956, 'https://ror.org/02arr6933', 'en', 1, 'https://ror.org/02arr6933 Centre for Contemporary Arts'), (71957, 'https://ror.org/02awtmh12', 'en', 1, 'https://ror.org/02awtmh12 Centre for Rural Studies and Development'), (71958, 'https://ror.org/02awzpt50', 'de', 1, 'https://ror.org/02awzpt50 Agaplesion Frankfurter Diakonie Kliniken'), (71959, 'https://ror.org/02axp7z77', 'no_lang_code', 1, 'https://ror.org/02axp7z77 Termetal (Poland)'), (71960, 'https://ror.org/02b028e39', 'en', 1, 'https://ror.org/02b028e39 National Historical Museums Statens Historiska Museer'), (71961, 'https://ror.org/02b0gsr86', 'en', 1, 'https://ror.org/02b0gsr86 Southwestern Association for Indian Arts'), (71962, 'https://ror.org/02b27r753', 'en', 1, 'https://ror.org/02b27r753 Royal Education Council'), (71963, 'https://ror.org/02b58rv90', 'en', 1, 'https://ror.org/02b58rv90 Defence Electronics History Society'), (71964, 'https://ror.org/02b5ra378', 'no_lang_code', 1, 'https://ror.org/02b5ra378 Microwave Applications Group (United States)'), (71965, 'https://ror.org/02b7a2y37', 'fr', 1, 'https://ror.org/02b7a2y37 Musée du Quai Branly – Jacques Chirac'), (71966, 'https://ror.org/02b8fww89', 'en', 1, 'https://ror.org/02b8fww89 Pen International'), (71967, 'https://ror.org/02b9c3t28', 'no_lang_code', 1, 'https://ror.org/02b9c3t28 Solibro Research (Sweden)'), (71968, 'https://ror.org/02bchz941', 'es', 1, 'https://ror.org/02bchz941 Instituto para la Seguridad y Democracia'), (71969, 'https://ror.org/02bdk9r92', 'no_lang_code', 1, 'https://ror.org/02bdk9r92 Advaita (United States)'), (71970, 'https://ror.org/02bf21z15', 'no_lang_code', 1, 'https://ror.org/02bf21z15 All Street Research (United Kingdom)'), (71971, 'https://ror.org/02bggcy46', 'en', 1, 'https://ror.org/02bggcy46 Transport and Health Study Group'), (71972, 'https://ror.org/02bm86575', 'en', 1, 'https://ror.org/02bm86575 Mason Perkins Deafness Fund Onlus'), (71973, 'https://ror.org/02bmxkm36', 'en', 1, 'https://ror.org/02bmxkm36 Deepak Foundation'), (71974, 'https://ror.org/02bn6gq21', 'no_lang_code', 1, 'https://ror.org/02bn6gq21 FGH Biotech (United States)'), (71975, 'https://ror.org/02bnwry33', 'en', 1, 'https://ror.org/02bnwry33 Karnataka Health Promotion Trust'), (71976, 'https://ror.org/02bpt5c58', 'en', 1, 'https://ror.org/02bpt5c58 Bush Heritage Australia'), (71977, 'https://ror.org/02bq53250', 'no_lang_code', 1, 'https://ror.org/02bq53250 Comfort Talk (United States)'), (71978, 'https://ror.org/02brk6173', 'no_lang_code', 1, 'https://ror.org/02brk6173 Biomass and Fossil Fuel Research Alliance (United Kingdom)'), (71979, 'https://ror.org/02bv7qz69', 'en', 1, 'https://ror.org/02bv7qz69 Center for Large Landscape Conservation'), (71980, 'https://ror.org/02bx3wt69', 'no_lang_code', 1, 'https://ror.org/02bx3wt69 Moller International (United States)'), (71981, 'https://ror.org/02bymqz65', 'no_lang_code', 1, 'https://ror.org/02bymqz65 Dassault Systèmes (Japan)'), (71982, 'https://ror.org/02byrdn19', 'en', 1, 'https://ror.org/02byrdn19 Surfers Against Sewage'), (71983, 'https://ror.org/02bz1zq28', 'en', 1, 'https://ror.org/02bz1zq28 Tenet Healthcare'), (71984, 'https://ror.org/02bze1z02', 'en', 1, 'https://ror.org/02bze1z02 Luton Culture'), (71985, 'https://ror.org/02c10cc21', 'en', 1, 'https://ror.org/02c10cc21 Hft'), (71986, 'https://ror.org/02c237f60', 'no_lang_code', 1, 'https://ror.org/02c237f60 Scotia Gas Networks (United Kingdom)'), (71987, 'https://ror.org/02c289w86', 'pl', 1, 'https://ror.org/02c289w86 Słodownia Soufflet Polska'), (71988, 'https://ror.org/02c2c0k38', 'en', 1, 'https://ror.org/02c2c0k38 The Parks Agency'), (71989, 'https://ror.org/02c39fv84', 'en', 1, 'https://ror.org/02c39fv84 Road Haulage Association'), (71990, 'https://ror.org/02c8ckq78', 'en', 1, 'https://ror.org/02c8ckq78 Svenskt Demenscentrum Swedish Dementia Centre'), (71991, 'https://ror.org/02c8fyq88', 'no_lang_code', 1, 'https://ror.org/02c8fyq88 Antagen Pharmaceuticals (United States)'), (71992, 'https://ror.org/02c8pt668', 'en', 1, 'https://ror.org/02c8pt668 Auroville Foundation'), (71993, 'https://ror.org/02ca9pg17', 'no_lang_code', 1, 'https://ror.org/02ca9pg17 Inovatia Laboratories (United States)'), (71994, 'https://ror.org/02cbaqx65', 'en', 1, 'https://ror.org/02cbaqx65 State of Rhode Island General Assembly'), (71995, 'https://ror.org/02cby3y03', 'no_lang_code', 1, 'https://ror.org/02cby3y03 ScrewFast Foundations (United Kingdom)'), (71996, 'https://ror.org/02ccaw114', 'en', 1, 'https://ror.org/02ccaw114 International Ceramics Studio Nemzetközi Kerámia Stúdió'), (71997, 'https://ror.org/02ce15590', 'no_lang_code', 1, 'https://ror.org/02ce15590 Mood Media (United States)'), (71998, 'https://ror.org/02cfsj843', 'no_lang_code', 1, 'https://ror.org/02cfsj843 Envention (United States)'), (71999, 'https://ror.org/02cfw5538', 'no_lang_code', 1, 'https://ror.org/02cfw5538 Spectronic (Sweden)'), (72000, 'https://ror.org/02cg7h320', 'en', 1, 'https://ror.org/02cg7h320 Salford Museum and Art Gallery'), (72001, 'https://ror.org/02cgy3m12', 'en', 1, 'https://ror.org/02cgy3m12 CSIRO Scientific Computing'), (72002, 'https://ror.org/02cmcyy37', 'no_lang_code', 1, 'https://ror.org/02cmcyy37 Exos (United States)'), (72003, 'https://ror.org/02cpbjg46', 'no_lang_code', 1, 'https://ror.org/02cpbjg46 Fuse (United States)'), (72004, 'https://ror.org/02cqajj62', 'sv', 1, 'https://ror.org/02cqajj62 Marin Biogas'), (72005, 'https://ror.org/02cqmj630', 'es', 1, 'https://ror.org/02cqmj630 Fundacion Arriarán'), (72006, 'https://ror.org/02ctd9k17', 'no_lang_code', 1, 'https://ror.org/02ctd9k17 Aereon (United States)'), (72007, 'https://ror.org/02cvnka73', 'en', 1, 'https://ror.org/02cvnka73 Norfolk Rivers Trust'), (72008, 'https://ror.org/02cxa8527', 'en', 1, 'https://ror.org/02cxa8527 iCivics'), (72009, 'https://ror.org/02cy8w246', 'en', 1, 'https://ror.org/02cy8w246 European Association of Archaeologists Evropská asociace archeologů'), (72010, 'https://ror.org/02cyenj86', 'en', 1, 'https://ror.org/02cyenj86 Ashwell Museum'), (72011, 'https://ror.org/02cyn4444', 'en', 1, 'https://ror.org/02cyn4444 Birmingham Museums Trust'), (72012, 'https://ror.org/02d16vp83', 'en', 1, 'https://ror.org/02d16vp83 Biblioteka Kombëtare e Kosovës National Library of Kosovo Народна библиотека Косова'), (72013, 'https://ror.org/02d6ntk65', 'en', 1, 'https://ror.org/02d6ntk65 Whitecliffe College of Arts and Design'), (72014, 'https://ror.org/02d77hg59', 'no_lang_code', 1, 'https://ror.org/02d77hg59 ID Genomics (United States)'), (72015, 'https://ror.org/02d7ecg84', 'no_lang_code', 1, 'https://ror.org/02d7ecg84 EnginZyme (Sweden)'), (72016, 'https://ror.org/02d807218', 'no_lang_code', 1, 'https://ror.org/02d807218 Peak Associates (United Kingdom)'), (72017, 'https://ror.org/02d894j61', 'hi', 1, 'https://ror.org/02d894j61 Bhasha'), (72018, 'https://ror.org/02d8xcv03', 'en', 1, 'https://ror.org/02d8xcv03 Chwaraeon Cymru Sport Wales'), (72019, 'https://ror.org/02d9p5295', 'en', 1, 'https://ror.org/02d9p5295 Rail Research UK Association'), (72020, 'https://ror.org/02davjz41', 'en', 1, 'https://ror.org/02davjz41 Gunnersbury'), (72021, 'https://ror.org/02dbpdq51', 'no_lang_code', 1, 'https://ror.org/02dbpdq51 DATA4 (France)'), (72022, 'https://ror.org/02dg2kf02', 'en', 1, 'https://ror.org/02dg2kf02 Học viện Hành chính Quốc gia National Academy of Public Administration'), (72023, 'https://ror.org/02djg6z12', 'en', 1, 'https://ror.org/02djg6z12 Institute for Science and International Security'), (72024, 'https://ror.org/02djy5m07', 'no_lang_code', 1, 'https://ror.org/02djy5m07 Les Kurbas Center ЦЕНТР ЛЕСЯ КУРБАСА'), (72025, 'https://ror.org/02dn4tb64', 'cs', 1, 'https://ror.org/02dn4tb64 Nemocnice Kutná Hora'), (72026, 'https://ror.org/02dnkgs07', 'en', 1, 'https://ror.org/02dnkgs07 Studio in a School'), (72027, 'https://ror.org/02dnv4714', 'en', 1, 'https://ror.org/02dnv4714 The Ark'), (72028, 'https://ror.org/02dpfs211', 'sv', 1, 'https://ror.org/02dpfs211 Svenska Nationalkommittén för kemi'), (72029, 'https://ror.org/02dqn4533', 'en', 1, 'https://ror.org/02dqn4533 Halsway Manor National Centre for Folk Arts'), (72030, 'https://ror.org/02dr5rf50', 'no_lang_code', 1, 'https://ror.org/02dr5rf50 Maxon Motor (Switzerland)'), (72031, 'https://ror.org/02dswfg52', 'no_lang_code', 1, 'https://ror.org/02dswfg52 Cellf BIO (United States)'), (72032, 'https://ror.org/02dt6mc98', 'es', 1, 'https://ror.org/02dt6mc98 Pronatura Noroeste'), (72033, 'https://ror.org/02dv7rd88', 'no_lang_code', 1, 'https://ror.org/02dv7rd88 Primetals Technologies (United Kingdom)'), (72034, 'https://ror.org/02dz3j209', 'no_lang_code', 1, 'https://ror.org/02dz3j209 First Wave Technologies (United States)'), (72035, 'https://ror.org/02e00fb34', 'en', 1, 'https://ror.org/02e00fb34 Cooper''s Ferry Partnership'), (72036, 'https://ror.org/02e2v3e15', 'es', 1, 'https://ror.org/02e2v3e15 Instituto de Química del Noroeste Argentino'), (72037, 'https://ror.org/02e4d0d63', 'en', 1, 'https://ror.org/02e4d0d63 Alabama Department of Forensic Sciences'), (72038, 'https://ror.org/02e4kxk72', 'no_lang_code', 1, 'https://ror.org/02e4kxk72 Kupiec (Poland)'), (72039, 'https://ror.org/02e5d6e23', 'en', 1, 'https://ror.org/02e5d6e23 The Western Front Association'), (72040, 'https://ror.org/02e5tmt29', 'en', 1, 'https://ror.org/02e5tmt29 Rural Development Foundation of Pakistan'), (72041, 'https://ror.org/02e6s3r40', 'es', 1, 'https://ror.org/02e6s3r40 Escuela Superior de Artes de Yucatán'), (72042, 'https://ror.org/02e7g3z76', 'no_lang_code', 1, 'https://ror.org/02e7g3z76 Curoverse (United States)'), (72043, 'https://ror.org/02e7nyv81', 'en', 1, 'https://ror.org/02e7nyv81 Associates Research'), (72044, 'https://ror.org/02easm151', 'no_lang_code', 1, 'https://ror.org/02easm151 Albion (United States)'), (72045, 'https://ror.org/02eazqp86', 'en', 1, 'https://ror.org/02eazqp86 Stornoway Historical Society'), (72046, 'https://ror.org/02eb2vj04', 'no_lang_code', 1, 'https://ror.org/02eb2vj04 Mitek Analytics (United States)'), (72047, 'https://ror.org/02edgp803', 'en', 1, 'https://ror.org/02edgp803 Grace Eyre'), (72048, 'https://ror.org/02efpnz39', 'fr', 1, 'https://ror.org/02efpnz39 Académie de Versailles'), (72049, 'https://ror.org/02eg9wt87', 'en', 1, 'https://ror.org/02eg9wt87 Community Catalyst'), (72050, 'https://ror.org/02egea792', 'en', 1, 'https://ror.org/02egea792 United Way of Greater Houston'), (72051, 'https://ror.org/02egkac43', 'en', 1, 'https://ror.org/02egkac43 TechSoup'), (72052, 'https://ror.org/02egnep81', 'no_lang_code', 1, 'https://ror.org/02egnep81 CRE Consulting (Poland)'), (72053, 'https://ror.org/02ehf4193', 'no_lang_code', 1, 'https://ror.org/02ehf4193 Block Engineering (United States)'), (72054, 'https://ror.org/02ehgd331', 'no_lang_code', 1, 'https://ror.org/02ehgd331 Allvivo Vascular (United States)'), (72055, 'https://ror.org/02ekas647', 'no_lang_code', 1, 'https://ror.org/02ekas647 SDL (United States)'), (72056, 'https://ror.org/02enjva13', 'no_lang_code', 1, 'https://ror.org/02enjva13 BitPlus (United States)'), (72057, 'https://ror.org/02enpd448', 'en', 1, 'https://ror.org/02enpd448 Centre for Regeneration Excellence Wales'), (72058, 'https://ror.org/02epwv805', 'no_lang_code', 1, 'https://ror.org/02epwv805 Tekceleo (France)'), (72059, 'https://ror.org/02eqy2w38', 'en', 1, 'https://ror.org/02eqy2w38 Association for Decentralised Energy'), (72060, 'https://ror.org/02er1v340', 'en', 1, 'https://ror.org/02er1v340 Mourne Heritage Trust'), (72061, 'https://ror.org/02ere1c15', 'en', 1, 'https://ror.org/02ere1c15 Brick Development Association'), (72062, 'https://ror.org/02erzes48', 'en', 1, 'https://ror.org/02erzes48 NIHR MindTech MedTech Co-operative'), (72063, 'https://ror.org/02evg2181', 'en', 1, 'https://ror.org/02evg2181 Bennetts Associates'), (72064, 'https://ror.org/02eyqgr24', 'en', 1, 'https://ror.org/02eyqgr24 Russian State Archive of Literature and Arts Государственный архив литературы и искусства'), (72065, 'https://ror.org/02f1wt137', 'no_lang_code', 1, 'https://ror.org/02f1wt137 Nanoshell Company (United States)'), (72066, 'https://ror.org/02f2s6657', 'en', 1, 'https://ror.org/02f2s6657 Noida Deaf Society'), (72067, 'https://ror.org/02f3zfv55', 'no_lang_code', 1, 'https://ror.org/02f3zfv55 Adeptrix (United States)'), (72068, 'https://ror.org/02f443s15', 'en', 1, 'https://ror.org/02f443s15 Institut Khimii Imeni V.i.nikitina Akademii Nauk Respubliki Tajikistan Institute of Chemistry named after V.I. Nikitin Институти кимиёи ба номи В.И.Никитини Академияи илмҳои Ҷумҳурии Тоҷикистон'), (72069, 'https://ror.org/02f7edq28', 'en', 1, 'https://ror.org/02f7edq28 Section 27'), (72070, 'https://ror.org/02f85ye32', 'no_lang_code', 1, 'https://ror.org/02f85ye32 Vultus (Sweden)'), (72071, 'https://ror.org/02f8pzn71', 'en', 1, 'https://ror.org/02f8pzn71 American Mandarin Society'), (72072, 'https://ror.org/02f9ma297', 'no_lang_code', 1, 'https://ror.org/02f9ma297 Tecna (Poland)'), (72073, 'https://ror.org/02fa1wt71', 'en', 1, 'https://ror.org/02fa1wt71 The Incorporated Council of Law Reporting for England & Wales'), (72074, 'https://ror.org/02facmr33', 'en', 1, 'https://ror.org/02facmr33'), (72075, 'https://ror.org/02fcqpe40', 'en', 1, 'https://ror.org/02fcqpe40 Municipal Association of Victoria'), (72076, 'https://ror.org/02fddhv21', 'en', 1, 'https://ror.org/02fddhv21 Institute of Healthcare Engineering and Estate Management'), (72077, 'https://ror.org/02fgmdx09', 'no_lang_code', 1, 'https://ror.org/02fgmdx09 ACF-Metals (United States)'), (72078, 'https://ror.org/02fkkph87', 'en', 1, 'https://ror.org/02fkkph87 CASA CASA de Maryland'), (72079, 'https://ror.org/02fkxw270', 'en', 1, 'https://ror.org/02fkxw270 African Centre for Global Health and Social Transformation'), (72080, 'https://ror.org/02fn8bv93', 'en', 1, 'https://ror.org/02fn8bv93 Ambasciata d''Italia Embassy of Italy in Tel Aviv'), (72081, 'https://ror.org/02fnw1n62', 'en', 1, 'https://ror.org/02fnw1n62 Budapest Centre for Mass Atrocities Prevention'), (72082, 'https://ror.org/02fnwfw55', 'no_lang_code', 1, 'https://ror.org/02fnwfw55 AeroStream Communications (United States)'), (72083, 'https://ror.org/02fqfwd96', 'en', 1, 'https://ror.org/02fqfwd96 FreeBSD Foundation'), (72084, 'https://ror.org/02frgyp60', 'pt', 1, 'https://ror.org/02frgyp60 Instituto Nupef'), (72085, 'https://ror.org/02ft9z011', 'en', 1, 'https://ror.org/02ft9z011 Royal College of Speech and Language Therapists'), (72086, 'https://ror.org/02ftc0e34', 'en', 1, 'https://ror.org/02ftc0e34 Innovative Housing Institute'), (72087, 'https://ror.org/02fvbz323', 'en', 1, 'https://ror.org/02fvbz323 Dearne Valley College'), (72088, 'https://ror.org/02fw2tr12', 'no_lang_code', 1, 'https://ror.org/02fw2tr12 Concepts to Systems (United States)'), (72089, 'https://ror.org/02fwchg56', 'en', 1, 'https://ror.org/02fwchg56 Documentation Center of Cambodia'), (72090, 'https://ror.org/02fwrmp37', 'no_lang_code', 1, 'https://ror.org/02fwrmp37 Lifespan Associates (United States)'), (72091, 'https://ror.org/02fxg2r05', 'en', 1, 'https://ror.org/02fxg2r05'), (72092, 'https://ror.org/02fyvxt44', 'no_lang_code', 1, 'https://ror.org/02fyvxt44 Drive DeVilbiss Healthcare (United Kingdom)'), (72093, 'https://ror.org/02fzzq880', 'en', 1, 'https://ror.org/02fzzq880 Bath Social and Development Research'), (72094, 'https://ror.org/02g2dpz81', 'no_lang_code', 1, 'https://ror.org/02g2dpz81 Pottstown Medical Specialists (United States)'), (72095, 'https://ror.org/02g451n39', 'en', 1, 'https://ror.org/02g451n39 Musée royal de Mariemont Royal Museum of Mariemont'), (72096, 'https://ror.org/02g6p0656', 'no_lang_code', 1, 'https://ror.org/02g6p0656 Harp Engineering (United States)'), (72097, 'https://ror.org/02g6z1s94', 'en', 1, 'https://ror.org/02g6z1s94 St Johns Theatre'), (72098, 'https://ror.org/02g7f1v18', 'en', 1, 'https://ror.org/02g7f1v18 The Center for Public Integrity'), (72099, 'https://ror.org/02g861y66', 'no_lang_code', 1, 'https://ror.org/02g861y66 Againity (Sweden)'), (72100, 'https://ror.org/02g8fqy85', 'no_lang_code', 1, 'https://ror.org/02g8fqy85 CoolCad Electronics (United States)'), (72101, 'https://ror.org/02g918154', 'en', 1, 'https://ror.org/02g918154 Kent Archaeological Society'), (72102, 'https://ror.org/02gcshf78', 'no_lang_code', 1, 'https://ror.org/02gcshf78 Natura (Brazil)'), (72103, 'https://ror.org/02gcxw165', 'it', 1, 'https://ror.org/02gcxw165 Istituto di Studi sul Mediterraneo Antico'), (72104, 'https://ror.org/02gdxv606', 'no_lang_code', 1, 'https://ror.org/02gdxv606 Insect Research Systems (United Kingdom)'), (72105, 'https://ror.org/02ge9wf73', 'no_lang_code', 1, 'https://ror.org/02ge9wf73 Juteborg (Sweden)'), (72106, 'https://ror.org/02gemh168', 'id', 1, 'https://ror.org/02gemh168 Asosiasi Perempuan Indonesia untuk Keadilan'), (72107, 'https://ror.org/02gfwnc58', 'en', 1, 'https://ror.org/02gfwnc58 Prague Film School'), (72108, 'https://ror.org/02ghr1636', 'en', 1, 'https://ror.org/02ghr1636 Museo Nacional de Arqueología de Bolivia National Museum of Archaeology'), (72109, 'https://ror.org/02gjn0z15', 'en', 1, 'https://ror.org/02gjn0z15 Nationwide Building Society'), (72110, 'https://ror.org/02gk9xs23', 'no_lang_code', 1, 'https://ror.org/02gk9xs23 Investigators Research Group (United States)'); INSERT INTO `rors` VALUES (72111, 'https://ror.org/02gkgnb87', 'en', 1, 'https://ror.org/02gkgnb87 Supreme Arbitration Court of the Russian Federation Высший Арбитражный суд Российской Федерации'), (72112, 'https://ror.org/02gkmwf16', 'en', 1, 'https://ror.org/02gkmwf16 Pentucket Medical'), (72113, 'https://ror.org/02gmjfa08', 'no_lang_code', 1, 'https://ror.org/02gmjfa08 Bhagat Phool Singh Mahila Vishwavidyalaya भगत फूल सिंह महिला विश्वविद्यालय'), (72114, 'https://ror.org/02gn97s12', 'en', 1, 'https://ror.org/02gn97s12 Scottish Civic Trust'), (72115, 'https://ror.org/02gnftn41', 'en', 1, 'https://ror.org/02gnftn41 Saras Environment Consultant'), (72116, 'https://ror.org/02gnws810', 'en', 1, 'https://ror.org/02gnws810 Irish Cultural Centre'), (72117, 'https://ror.org/02gq3ch54', 'en', 1, 'https://ror.org/02gq3ch54 Observational & Pragmatic Research Institute'), (72118, 'https://ror.org/02gqfbn37', 'no_lang_code', 1, 'https://ror.org/02gqfbn37 Analytic Measures (United States)'), (72119, 'https://ror.org/02gs82g24', 'en', 1, 'https://ror.org/02gs82g24 Runway of Dreams Foundation'), (72120, 'https://ror.org/02gse4n09', 'en', 1, 'https://ror.org/02gse4n09 L. A. Orbeli Institute of Physiology NAS RA ՀՀ ԳԱԱ Ակադ. Լ. Ա. Օրբելու անվան Ֆիզիոլոգիայի Ինստիտուտ'), (72121, 'https://ror.org/02gwwbd68', 'en', 1, 'https://ror.org/02gwwbd68 Capital Cardiology Associates'), (72122, 'https://ror.org/02gx09e94', 'en', 1, 'https://ror.org/02gx09e94 Surrey Police'), (72123, 'https://ror.org/02gy8t657', 'no_lang_code', 1, 'https://ror.org/02gy8t657 Function Promoting Therapies (United States)'), (72124, 'https://ror.org/02h0a0v43', 'en', 1, 'https://ror.org/02h0a0v43 Institute for Development and Economic Analysis Perhimpunan IDEA'), (72125, 'https://ror.org/02h26j898', 'en', 1, 'https://ror.org/02h26j898 Kings Foundation'), (72126, 'https://ror.org/02h3d3t16', 'en', 1, 'https://ror.org/02h3d3t16 Cadence Performance'), (72127, 'https://ror.org/02h3fax78', 'en', 1, 'https://ror.org/02h3fax78 National library of Uzbekistan Национальна библиотека Узбекистана'), (72128, 'https://ror.org/02h4ptt90', 'en', 1, 'https://ror.org/02h4ptt90 Taiwan Miaoli District Court 臺灣苗栗地方法院'), (72129, 'https://ror.org/02h6a5d26', 'no_lang_code', 1, 'https://ror.org/02h6a5d26 Codar Ocean Sensors (United States)'), (72130, 'https://ror.org/02h8yps76', 'no_lang_code', 1, 'https://ror.org/02h8yps76 Chadwick Optical (United States)'), (72131, 'https://ror.org/02h9s3z30', 'no_lang_code', 1, 'https://ror.org/02h9s3z30 Airflow Sciences (United States)'), (72132, 'https://ror.org/02ha7nd65', 'en', 1, 'https://ror.org/02ha7nd65 Indian Institute of Journalism and New Media'), (72133, 'https://ror.org/02hc8ze18', 'no_lang_code', 1, 'https://ror.org/02hc8ze18 Advanced Life Technologies (United States)'), (72134, 'https://ror.org/02hcvme33', 'de', 1, 'https://ror.org/02hcvme33 Institut für Nichtklassische Chemie'), (72135, 'https://ror.org/02hd3s336', 'no_lang_code', 1, 'https://ror.org/02hd3s336 AuSIM (United States)'), (72136, 'https://ror.org/02he69d43', 'en', 1, 'https://ror.org/02he69d43 Kyiv Institute of Music. R. Glier Київський інститут музики ім. Р.М.Глієра'), (72137, 'https://ror.org/02he8hw70', 'en', 1, 'https://ror.org/02he8hw70 Instytut Śląski w Opolu Silesian Institute in Opole'), (72138, 'https://ror.org/02heqf923', 'no_lang_code', 1, 'https://ror.org/02heqf923 Panasonic (Poland)'), (72139, 'https://ror.org/02hg7p914', 'en', 1, 'https://ror.org/02hg7p914 Catalyst Science Discovery Centre'), (72140, 'https://ror.org/02hj84f21', 'en', 1, 'https://ror.org/02hj84f21 World Sugar Research Organisation'), (72141, 'https://ror.org/02hjmkw90', 'en', 1, 'https://ror.org/02hjmkw90 Accademia internazionale di Scienze Ambientali International Academy of Environmental Sciences'), (72142, 'https://ror.org/02hm6a795', 'no_lang_code', 1, 'https://ror.org/02hm6a795 Tropical Marine Centre (United Kingdom)'), (72143, 'https://ror.org/02hnqr243', 'en', 1, 'https://ror.org/02hnqr243 Arab NGO Network for Development شبكة المنظمات العربية غير الحكومية للتنمية'), (72144, 'https://ror.org/02hpv2m52', 'en', 1, 'https://ror.org/02hpv2m52 Charles Rennie Mackintosh Society'), (72145, 'https://ror.org/02hpzh255', 'no_lang_code', 1, 'https://ror.org/02hpzh255 Lindo Catsystem (Poland)'), (72146, 'https://ror.org/02hqgbq45', 'no_lang_code', 1, 'https://ror.org/02hqgbq45 Unchained Labs (United States)'), (72147, 'https://ror.org/02hqm2v55', 'en', 1, 'https://ror.org/02hqm2v55 Mahatma Gandhi Institute'), (72148, 'https://ror.org/02hr94v50', 'no_lang_code', 1, 'https://ror.org/02hr94v50 Office of the Ombudsman for Bermuda'), (72149, 'https://ror.org/02hrnt925', 'en', 1, 'https://ror.org/02hrnt925 Samuel Johnson Birthplace Museum'), (72150, 'https://ror.org/02hs9bv14', 'en', 1, 'https://ror.org/02hs9bv14 Committee to Protect Journalists'), (72151, 'https://ror.org/02hv72q61', 'en', 1, 'https://ror.org/02hv72q61 Center for Rural Strategies'), (72152, 'https://ror.org/02hvh2w75', 'pt', 1, 'https://ror.org/02hvh2w75 Comissão Pastoral da Terra'), (72153, 'https://ror.org/02hvmpx91', 'es', 1, 'https://ror.org/02hvmpx91 ACICAFOC'), (72154, 'https://ror.org/02hw7mf60', 'en', 1, 'https://ror.org/02hw7mf60 Alfred Gillett Trust'), (72155, 'https://ror.org/02hwd6186', 'no_lang_code', 1, 'https://ror.org/02hwd6186 Waelzholz (Brasil) Waelzholz Brasmetal Laminação'), (72156, 'https://ror.org/02hzhm878', 'no_lang_code', 1, 'https://ror.org/02hzhm878 Spitfire Spark Change (United States)'), (72157, 'https://ror.org/02j1gpv02', 'en', 1, 'https://ror.org/02j1gpv02 Great Lakes Institute for Strategic Studies'), (72158, 'https://ror.org/02j3g5e35', 'en', 1, 'https://ror.org/02j3g5e35 Centre for the Study of Labour and Mobility'), (72159, 'https://ror.org/02j5kt108', 'it', 1, 'https://ror.org/02j5kt108 Ospedale Veris Delli Ponti Scorrano'), (72160, 'https://ror.org/02j79g662', 'en', 1, 'https://ror.org/02j79g662 Holocaust Educational Trust'), (72161, 'https://ror.org/02j7asw37', 'en', 1, 'https://ror.org/02j7asw37 Moray Art Centre'), (72162, 'https://ror.org/02j9vtb62', 'en', 1, 'https://ror.org/02j9vtb62 Perth & Kinross Association of Voluntary Service'), (72163, 'https://ror.org/02ja16p07', 'no_lang_code', 1, 'https://ror.org/02ja16p07 Accumed Systems (United States)'), (72164, 'https://ror.org/02ja69h88', 'en', 1, 'https://ror.org/02ja69h88 The Society of Portrait Sculptors'), (72165, 'https://ror.org/02jcdkn30', 'no_lang_code', 1, 'https://ror.org/02jcdkn30 Forum 2000'), (72166, 'https://ror.org/02jcjsk08', 'no_lang_code', 1, 'https://ror.org/02jcjsk08 DRG Undersea Consulting (United States)'), (72167, 'https://ror.org/02jek3571', 'no_lang_code', 1, 'https://ror.org/02jek3571 Fluoresprobe Sciences (United States)'), (72168, 'https://ror.org/02jfkxh18', 'en', 1, 'https://ror.org/02jfkxh18 Vietnam National University of Forestry'), (72169, 'https://ror.org/02jgmf723', 'en', 1, 'https://ror.org/02jgmf723 National Health Insurance Fund'), (72170, 'https://ror.org/02jk5za03', 'en', 1, 'https://ror.org/02jk5za03 Women''s Rights International'), (72171, 'https://ror.org/02jqq3312', 'en', 1, 'https://ror.org/02jqq3312 Maidstone Museum'), (72172, 'https://ror.org/02jqsv109', 'en', 1, 'https://ror.org/02jqsv109 Margarita Rudomino All-Russia State Library for Foreign Literature Библиотека иностранной литературы'), (72173, 'https://ror.org/02jqwk197', 'en', 1, 'https://ror.org/02jqwk197 National Centre for Product Design and Development Research'), (72174, 'https://ror.org/02jv6dk34', 'en', 1, 'https://ror.org/02jv6dk34 Southern Environmental Law Center'), (72175, 'https://ror.org/02jvvnm32', 'no_lang_code', 1, 'https://ror.org/02jvvnm32 Cortus Energy (Sweden)'), (72176, 'https://ror.org/02jwd3a38', 'no_lang_code', 1, 'https://ror.org/02jwd3a38 Minerva Laboratories (United Kingdom)'), (72177, 'https://ror.org/02jwx1966', 'en', 1, 'https://ror.org/02jwx1966 Good Jobs First'), (72178, 'https://ror.org/02jyhs326', 'en', 1, 'https://ror.org/02jyhs326 Ukrainian National Museum'), (72179, 'https://ror.org/02k0b2995', 'en', 1, 'https://ror.org/02k0b2995 Novita'), (72180, 'https://ror.org/02k0mqf95', 'en', 1, 'https://ror.org/02k0mqf95 Campaign to End Loneliness'), (72181, 'https://ror.org/02k1g2k85', 'no_lang_code', 1, 'https://ror.org/02k1g2k85 Sunwave Solutions (China)'), (72182, 'https://ror.org/02k1py847', 'en', 1, 'https://ror.org/02k1py847 Conservation through Poverty Alleviation International'), (72183, 'https://ror.org/02k2w4w13', 'en', 1, 'https://ror.org/02k2w4w13 Rama Hospital & Research Centre'), (72184, 'https://ror.org/02k35v311', 'es', 1, 'https://ror.org/02k35v311 Benemerito Hospital General con Especialidades "Juan Maria de Salvatierra"'), (72185, 'https://ror.org/02k3c5b92', 'en', 1, 'https://ror.org/02k3c5b92 Bee Farmers Association'), (72186, 'https://ror.org/02k3cg524', 'fi', 1, 'https://ror.org/02k3cg524 Demos Helsinki'), (72187, 'https://ror.org/02k3grx88', 'no_lang_code', 1, 'https://ror.org/02k3grx88 KazMunayGas (Kazakhstan) ҚазМұнайГаз'), (72188, 'https://ror.org/02k6hnt94', 'pt', 1, 'https://ror.org/02k6hnt94 Hospital Napoleão Laureano'), (72189, 'https://ror.org/02k6zwz49', 'no_lang_code', 1, 'https://ror.org/02k6zwz49 Zakłady Magnezytowe (Poland)'), (72190, 'https://ror.org/02k7ex914', 'pl', 1, 'https://ror.org/02k7ex914 Institute of Law Studies Instytut Nauk Prawnych'), (72191, 'https://ror.org/02k8em959', 'en', 1, 'https://ror.org/02k8em959 Housing Studies Association'), (72192, 'https://ror.org/02kb5g732', 'no_lang_code', 1, 'https://ror.org/02kb5g732 Aurelia Bioscience (United Kingdom)'), (72193, 'https://ror.org/02kchqd71', 'en', 1, 'https://ror.org/02kchqd71 Milnbank Housing Association'), (72194, 'https://ror.org/02kdshq54', 'en', 1, 'https://ror.org/02kdshq54 Connecticut Statistical Analysis Center'), (72195, 'https://ror.org/02kf03x09', 'en', 1, 'https://ror.org/02kf03x09 National Center for Tuberculosis and Lung Disease'), (72196, 'https://ror.org/02kg10n19', 'no_lang_code', 1, 'https://ror.org/02kg10n19 Design Intelligence (United States)'), (72197, 'https://ror.org/02kgjbk95', 'no_lang_code', 1, 'https://ror.org/02kgjbk95 Advanced Media Research (United States)'), (72198, 'https://ror.org/02kgsyn41', 'no_lang_code', 1, 'https://ror.org/02kgsyn41 Vacuumschmelze (Germany)'), (72199, 'https://ror.org/02kh9xe88', 'no_lang_code', 1, 'https://ror.org/02kh9xe88 Western Energy Support & Technology (United States)'), (72200, 'https://ror.org/02kje8711', 'en', 1, 'https://ror.org/02kje8711 National Slate Museum'), (72201, 'https://ror.org/02kjm5h73', 'no_lang_code', 1, 'https://ror.org/02kjm5h73 Velez College'), (72202, 'https://ror.org/02kkwr259', 'it', 1, 'https://ror.org/02kkwr259 Ospedale Ferdinando Veneziale di Isernia'), (72203, 'https://ror.org/02kmv2v81', 'no_lang_code', 1, 'https://ror.org/02kmv2v81 Innovia Medical (United Kingdom)'), (72204, 'https://ror.org/02kn8f882', 'no_lang_code', 1, 'https://ror.org/02kn8f882 Taiwan Futures Exchange (Taiwan) 臺灣期貨交易所'), (72205, 'https://ror.org/02kpprd93', 'de', 1, 'https://ror.org/02kpprd93 Gesellschaft zur Förderung von Medizin-, Bio- und Umwelttechnologien'), (72206, 'https://ror.org/02kswk287', 'en', 1, 'https://ror.org/02kswk287 Isles of Scilly Museum'), (72207, 'https://ror.org/02kxj7753', 'no_lang_code', 1, 'https://ror.org/02kxj7753 Creative MicroSystems (United States)'), (72208, 'https://ror.org/02kydsx93', 'en', 1, 'https://ror.org/02kydsx93 San Francisco County Transportation Authority'), (72209, 'https://ror.org/02kzjed53', 'no_lang_code', 1, 'https://ror.org/02kzjed53 Value Chain Lab (United Kingdom)'), (72210, 'https://ror.org/02m23a643', 'no_lang_code', 1, 'https://ror.org/02m23a643 Fallbrook Engineering (United States)'), (72211, 'https://ror.org/02m2edj71', 'no_lang_code', 1, 'https://ror.org/02m2edj71 Aldatu Biosciences (United States)'), (72212, 'https://ror.org/02m2ek616', 'no_lang_code', 1, 'https://ror.org/02m2ek616 N&N Pharmaceuticals (United States)'), (72213, 'https://ror.org/02m2t8v35', 'no_lang_code', 1, 'https://ror.org/02m2t8v35 Mahle (Brazil)'), (72214, 'https://ror.org/02m4de687', 'no_lang_code', 1, 'https://ror.org/02m4de687 Reed Medical (United Kingdom)'), (72215, 'https://ror.org/02m51bd24', 'en', 1, 'https://ror.org/02m51bd24 British Bobsleigh and Skeleton Association'), (72216, 'https://ror.org/02m528480', 'no_lang_code', 1, 'https://ror.org/02m528480 Cythelia (France)'), (72217, 'https://ror.org/02m633z80', 'en', 1, 'https://ror.org/02m633z80 National Education Union'), (72218, 'https://ror.org/02m7qex15', 'en', 1, 'https://ror.org/02m7qex15 South West Yorkshire Partnership NHS Foundation Trust'), (72219, 'https://ror.org/02m8wcg72', 'da', 1, 'https://ror.org/02m8wcg72 Kroppedal Museum'), (72220, 'https://ror.org/02m93y750', 'en', 1, 'https://ror.org/02m93y750 Center for Family Policy and Practice'), (72221, 'https://ror.org/02m9cpr85', 'en', 1, 'https://ror.org/02m9cpr85 Dag Hammarskjöld Foundation'), (72222, 'https://ror.org/02ma9m113', 'it', 1, 'https://ror.org/02ma9m113 Humanitas Castelli'), (72223, 'https://ror.org/02mb6z761', 'en', 1, 'https://ror.org/02mb6z761 Myanmar Institute of Theology'), (72224, 'https://ror.org/02md98x79', 'en', 1, 'https://ror.org/02md98x79 National White Collar Crime Center'), (72225, 'https://ror.org/02mdvw277', 'no_lang_code', 1, 'https://ror.org/02mdvw277 Hanby Environmental (United States)'), (72226, 'https://ror.org/02mf18m55', 'en', 1, 'https://ror.org/02mf18m55 Beijing Administration Institute 北京行政学院'), (72227, 'https://ror.org/02mjbb212', 'ga', 1, 'https://ror.org/02mjbb212 Glór'), (72228, 'https://ror.org/02mjd7y85', 'en', 1, 'https://ror.org/02mjd7y85 Homeland Security and Emergency Management'), (72229, 'https://ror.org/02mjj7x54', 'en', 1, 'https://ror.org/02mjj7x54 Sussex Police'), (72230, 'https://ror.org/02mjvaa14', 'no_lang_code', 1, 'https://ror.org/02mjvaa14 Arctic Business Incubator (Sweden)'), (72231, 'https://ror.org/02mpe3v47', 'en', 1, 'https://ror.org/02mpe3v47 Fund for Constitutional Government'), (72232, 'https://ror.org/02mpfyr18', 'no_lang_code', 1, 'https://ror.org/02mpfyr18 AxoSim (United States)'), (72233, 'https://ror.org/02mpx2r50', 'en', 1, 'https://ror.org/02mpx2r50 The Alexander Centre'), (72234, 'https://ror.org/02mq6af82', 'en', 1, 'https://ror.org/02mq6af82 Rockwood Leadership Institute'), (72235, 'https://ror.org/02mqmfa65', 'no_lang_code', 1, 'https://ror.org/02mqmfa65 Liberty Ammunition (United States)'), (72236, 'https://ror.org/02mrr4460', 'en', 1, 'https://ror.org/02mrr4460 Institute for Education in International Media'), (72237, 'https://ror.org/02mt5f456', 'en', 1, 'https://ror.org/02mt5f456 Regional Centre of Advanced Technologies and Materials Regionální Centrum Pokrocilych Technologií a Materiálů'), (72238, 'https://ror.org/02mwnrf70', 'en', 1, 'https://ror.org/02mwnrf70 Race Equality Foundation'), (72239, 'https://ror.org/02mwtkt95', 'en', 1, 'https://ror.org/02mwtkt95 Deutschen Zentrums für Kinder- und Jugendrheumatologie German Center for Pediatric and Adolescent Rheumatology'), (72240, 'https://ror.org/02mwx3w72', 'en', 1, 'https://ror.org/02mwx3w72 Food and Finance High School'), (72241, 'https://ror.org/02mx3q756', 'en', 1, 'https://ror.org/02mx3q756 Better Life Association for Comprehensive Development'), (72242, 'https://ror.org/02n0t1662', 'no_lang_code', 1, 'https://ror.org/02n0t1662 Airborne Innovations (United States)'), (72243, 'https://ror.org/02n56bb75', 'en', 1, 'https://ror.org/02n56bb75 Ministry of Scientific Research and Innovation Ministère de la Recherche Scientifique et de l''Innovation'), (72244, 'https://ror.org/02n57gs70', 'en', 1, 'https://ror.org/02n57gs70 Holocaust Survivors Friendship Association'), (72245, 'https://ror.org/02n5j7g52', 'en', 1, 'https://ror.org/02n5j7g52 R&G Associates'), (72246, 'https://ror.org/02n6c2636', 'en', 1, 'https://ror.org/02n6c2636 The Constitution Society'), (72247, 'https://ror.org/02n7f7n49', 'en', 1, 'https://ror.org/02n7f7n49 Diplomatic Academy of Vietnam Học viện Ngoại giao Việt Nam'), (72248, 'https://ror.org/02n7nje79', 'no_lang_code', 1, 'https://ror.org/02n7nje79 Creative Aero Engineering Solutions (United States)'), (72249, 'https://ror.org/02n82df02', 'no_lang_code', 1, 'https://ror.org/02n82df02 Argil (United States)'), (72250, 'https://ror.org/02na2cx67', 'no_lang_code', 1, 'https://ror.org/02na2cx67 Miltran (United States)'), (72251, 'https://ror.org/02nart969', 'en', 1, 'https://ror.org/02nart969 International Aluminium Institute'), (72252, 'https://ror.org/02nd24c78', 'en', 1, 'https://ror.org/02nd24c78 Men''s Health Forum'), (72253, 'https://ror.org/02ndp2s95', 'en', 1, 'https://ror.org/02ndp2s95 The UK Cards Association'), (72254, 'https://ror.org/02ndpa275', 'no_lang_code', 1, 'https://ror.org/02ndpa275 Pilloxa (Sweden)'), (72255, 'https://ror.org/02ngckp60', 'en', 1, 'https://ror.org/02ngckp60 Citizens’ Housing and Planning Association'), (72256, 'https://ror.org/02njsw853', 'no_lang_code', 1, 'https://ror.org/02njsw853 AAVogen (United States)'), (72257, 'https://ror.org/02nmjb623', 'no_lang_code', 1, 'https://ror.org/02nmjb623 Xi''an City Planning&Design Institute (China) 西安市城市规划设计研究院'), (72258, 'https://ror.org/02nmtzc87', 'no_lang_code', 1, 'https://ror.org/02nmtzc87 Bitlink (Australia)'), (72259, 'https://ror.org/02nnx0145', 'en', 1, 'https://ror.org/02nnx0145 Ekaterinburg Academy of Contemporary Art Екатеринбургская академия современного искусства'), (72260, 'https://ror.org/02np7f480', 'en', 1, 'https://ror.org/02np7f480 Pham Van Dong University Trường Đại học Phạm Văn Đồng'), (72261, 'https://ror.org/02nq2ye56', 'no_lang_code', 1, 'https://ror.org/02nq2ye56 Colorado Power Electronics (United States)'), (72262, 'https://ror.org/02nq88n11', 'en', 1, 'https://ror.org/02nq88n11 Gamaliel'), (72263, 'https://ror.org/02nqa0m70', 'en', 1, 'https://ror.org/02nqa0m70 Schieffelin Institute of Health Research and Leprosy Centre'), (72264, 'https://ror.org/02nqa6n73', 'no_lang_code', 1, 'https://ror.org/02nqa6n73 Eskra Technical Products (United States)'), (72265, 'https://ror.org/02nr4yf74', 'en', 1, 'https://ror.org/02nr4yf74 Copenhagen Consensus Center'), (72266, 'https://ror.org/02nr9m172', 'en', 1, 'https://ror.org/02nr9m172 Sheffield & Rotherham Wildlife Trust'), (72267, 'https://ror.org/02nrznb68', 'en', 1, 'https://ror.org/02nrznb68 Energy Programs Consortium'), (72268, 'https://ror.org/02ns8e576', 'en', 1, 'https://ror.org/02ns8e576 Naval Dockyards Society'), (72269, 'https://ror.org/02nstsj42', 'en', 1, 'https://ror.org/02nstsj42 BayMark Health Services'), (72270, 'https://ror.org/02nsvrr55', 'en', 1, 'https://ror.org/02nsvrr55 Centre for Conservation Biology & Sustainable Development'), (72271, 'https://ror.org/02nwxkn91', 'no_lang_code', 1, 'https://ror.org/02nwxkn91 Solkompaniet (Sweden)'), (72272, 'https://ror.org/02nxjx545', 'en', 1, 'https://ror.org/02nxjx545 The Sentencing Project'), (72273, 'https://ror.org/02nz60c10', 'en', 1, 'https://ror.org/02nz60c10 Action Center on Race and the Economy'), (72274, 'https://ror.org/02nzb0q40', 'fr', 1, 'https://ror.org/02nzb0q40 Sécurité des Aliments et Microbiologie'), (72275, 'https://ror.org/02p12t634', 'no_lang_code', 1, 'https://ror.org/02p12t634 Karnataka Chitrakala Parishath ಕರ್ನಾಟಕ ಚಿತ್ರಕಲಾ ಪರಿಷತ್'), (72276, 'https://ror.org/02p1e8c91', 'en', 1, 'https://ror.org/02p1e8c91 National Phenotypic Screening Centre'), (72277, 'https://ror.org/02p6hd207', 'no_lang_code', 1, 'https://ror.org/02p6hd207 MMR Technologies (United States)'), (72278, 'https://ror.org/02p6rwd19', 'no_lang_code', 1, 'https://ror.org/02p6rwd19 Shalom Hartman Institute'), (72279, 'https://ror.org/02p6xqb83', 'en', 1, 'https://ror.org/02p6xqb83 Deaf Studies Trust'), (72280, 'https://ror.org/02p7tyt03', 'no_lang_code', 1, 'https://ror.org/02p7tyt03 SenSanna (United States)'), (72281, 'https://ror.org/02paymf25', 'no_lang_code', 1, 'https://ror.org/02paymf25 Veterinærmedicinsk Industriforening'), (72282, 'https://ror.org/02pbw4p75', 'en', 1, 'https://ror.org/02pbw4p75 Association of Illustrators'), (72283, 'https://ror.org/02pctja18', 'no_lang_code', 1, 'https://ror.org/02pctja18 Ascilion (Sweden)'), (72284, 'https://ror.org/02pd2vd80', 'en', 1, 'https://ror.org/02pd2vd80 Chicago Arts Partnerships in Education'), (72285, 'https://ror.org/02pep9116', 'no_lang_code', 1, 'https://ror.org/02pep9116 GlyTech (United States)'), (72286, 'https://ror.org/02pf3fv69', 'en', 1, 'https://ror.org/02pf3fv69 Central Bank of Turkmenistan Türkmenistanyň Merkezi Banky'), (72287, 'https://ror.org/02pgyqd67', 'en', 1, 'https://ror.org/02pgyqd67 Asian Arts Agency'), (72288, 'https://ror.org/02pheq715', 'no_lang_code', 1, 'https://ror.org/02pheq715 Applied Engineering Management (United States)'), (72289, 'https://ror.org/02pk1eg59', 'en', 1, 'https://ror.org/02pk1eg59 Cromarty History Society'), (72290, 'https://ror.org/02pr1pc58', 'no_lang_code', 1, 'https://ror.org/02pr1pc58 Inhibrx (United States)'), (72291, 'https://ror.org/02ptdcx04', 'en', 1, 'https://ror.org/02ptdcx04 West Midlands Police'), (72292, 'https://ror.org/02pv3ns50', 'no_lang_code', 1, 'https://ror.org/02pv3ns50 Go Sheng'), (72293, 'https://ror.org/02pvd8a14', 'en', 1, 'https://ror.org/02pvd8a14 The Schumacher Institute'), (72294, 'https://ror.org/02pvnr704', 'en', 1, 'https://ror.org/02pvnr704 Parliamentary Office of Science and Technology'), (72295, 'https://ror.org/02pvvhr41', 'no_lang_code', 1, 'https://ror.org/02pvvhr41 Carrera Bioscience (United States)'), (72296, 'https://ror.org/02pvz5132', 'en', 1, 'https://ror.org/02pvz5132 Cumberland and Westmorland Antiquarian and Archaeological Society'), (72297, 'https://ror.org/02pzza935', 'en', 1, 'https://ror.org/02pzza935 Culture Resource المورد الثقافي'), (72298, 'https://ror.org/02q0p6x28', 'en', 1, 'https://ror.org/02q0p6x28 Institute of Literary Research Instytut Badań Literackich Polskiej Akademii Nauk'), (72299, 'https://ror.org/02q189e70', 'no_lang_code', 1, 'https://ror.org/02q189e70 OptiBiotix (United Kingdom)'), (72300, 'https://ror.org/02q27pq78', 'en', 1, 'https://ror.org/02q27pq78 South East Rivers Trust'), (72301, 'https://ror.org/02q284937', 'no_lang_code', 1, 'https://ror.org/02q284937 Corrdesa (United States)'), (72302, 'https://ror.org/02q2kw246', 'en', 1, 'https://ror.org/02q2kw246 The Institute of Concrete Technology'), (72303, 'https://ror.org/02q3gyw25', 'no_lang_code', 1, 'https://ror.org/02q3gyw25 Lipigon Pharmaceuticals (Sweden)'), (72304, 'https://ror.org/02q53zc57', 'en', 1, 'https://ror.org/02q53zc57 Hackney Museum'), (72305, 'https://ror.org/02q58a426', 'en', 1, 'https://ror.org/02q58a426 African Leadership Institute'), (72306, 'https://ror.org/02q5pvy25', 'en', 1, 'https://ror.org/02q5pvy25 National Hispanic Media Coalition'), (72307, 'https://ror.org/02qa6e442', 'no_lang_code', 1, 'https://ror.org/02qa6e442 Men-Tsee-Khang'), (72308, 'https://ror.org/02qar2r61', 'no_lang_code', 1, 'https://ror.org/02qar2r61 Enigio Time (Sweden)'), (72309, 'https://ror.org/02qb49x49', 'en', 1, 'https://ror.org/02qb49x49 Changes Community Health Project'), (72310, 'https://ror.org/02qc0yf38', 'no_lang_code', 1, 'https://ror.org/02qc0yf38 LiveSchool (United States)'), (72311, 'https://ror.org/02qcr0t64', 'no_lang_code', 1, 'https://ror.org/02qcr0t64 Endomimetics (United States)'), (72312, 'https://ror.org/02qesd198', 'en', 1, 'https://ror.org/02qesd198 Public Media Alliance'), (72313, 'https://ror.org/02qfrzf96', 'en', 1, 'https://ror.org/02qfrzf96 Isha Foundation'), (72314, 'https://ror.org/02qgkae69', 'es', 1, 'https://ror.org/02qgkae69 Projazz Instituto Profesional'), (72315, 'https://ror.org/02qhn8518', 'en', 1, 'https://ror.org/02qhn8518 Santa Fe Art Institute'), (72316, 'https://ror.org/02qj00s11', 'en', 1, 'https://ror.org/02qj00s11 Center for International Policy'), (72317, 'https://ror.org/02qjz4v31', 'no_lang_code', 1, 'https://ror.org/02qjz4v31 Arctan (United States)'), (72318, 'https://ror.org/02qnz4080', 'en', 1, 'https://ror.org/02qnz4080 The Churches Conservation Trust'), (72319, 'https://ror.org/02qp5k481', 'en', 1, 'https://ror.org/02qp5k481 In-Q-Tel'), (72320, 'https://ror.org/02qpnf892', 'en', 1, 'https://ror.org/02qpnf892 Czech Association for the Study of Religions Česká společnost pro religionistiku'), (72321, 'https://ror.org/02qq5pa23', 'no_lang_code', 1, 'https://ror.org/02qq5pa23 Geospatial Research (United Kingdom)'), (72322, 'https://ror.org/02qqz2g41', 'en', 1, 'https://ror.org/02qqz2g41 Welsh Refugee Council'), (72323, 'https://ror.org/02qst3a08', 'en', 1, 'https://ror.org/02qst3a08 Crimea University of Culture Art and Tourism'), (72324, 'https://ror.org/02qvc4v06', 'en', 1, 'https://ror.org/02qvc4v06 Massachusetts Budget and Policy Center'), (72325, 'https://ror.org/02qvs5504', 'no_lang_code', 1, 'https://ror.org/02qvs5504 Artwork Conversion Software (United States)'), (72326, 'https://ror.org/02qwv6g90', 'no_lang_code', 1, 'https://ror.org/02qwv6g90 Chab Dai'), (72327, 'https://ror.org/02qwy8e97', 'it', 1, 'https://ror.org/02qwy8e97 Institute for Research on Engines Istituto Motori'), (72328, 'https://ror.org/02r06d562', 'en', 1, 'https://ror.org/02r06d562 National Institute of Arts l''Institut National des Arts'), (72329, 'https://ror.org/02r1dkx80', 'en', 1, 'https://ror.org/02r1dkx80 Học viện Y Dược học Cổ truyền Việt Nam Viet Nam University Of Traditional Medicine'), (72330, 'https://ror.org/02r3mzm63', 'en', 1, 'https://ror.org/02r3mzm63 Center for Civic Policy'), (72331, 'https://ror.org/02r4h2g04', 'en', 1, 'https://ror.org/02r4h2g04 Association for Prevention and Control of Rabies in India'), (72332, 'https://ror.org/02r4q7v71', 'en', 1, 'https://ror.org/02r4q7v71 Association of Child Psychotherapists'), (72333, 'https://ror.org/02r4tgk06', 'en', 1, 'https://ror.org/02r4tgk06 International Renaissance Foundation Міжнародний фонд "Відродження'), (72334, 'https://ror.org/02r6bnp18', 'en', 1, 'https://ror.org/02r6bnp18 Chance for Education Šance na vzdělání'), (72335, 'https://ror.org/02r6vy896', 'no_lang_code', 1, 'https://ror.org/02r6vy896 Adams Business Associates (United Kingdom)'), (72336, 'https://ror.org/02r802v31', 'no_lang_code', 1, 'https://ror.org/02r802v31 Fortem Technologies (United States)'), (72337, 'https://ror.org/02r895s37', 'no_lang_code', 1, 'https://ror.org/02r895s37 Kibow Biotech (United States)'), (72338, 'https://ror.org/02raw1z52', 'no_lang_code', 1, 'https://ror.org/02raw1z52 Countervail Corporation (United States)'), (72339, 'https://ror.org/02rd7vq77', 'en', 1, 'https://ror.org/02rd7vq77 Berkhamsted and District Archaeological Society'), (72340, 'https://ror.org/02reydp80', 'no_lang_code', 1, 'https://ror.org/02reydp80 Glucan Biorenewables (United States)'), (72341, 'https://ror.org/02rfbsc53', 'fr', 1, 'https://ror.org/02rfbsc53 Institut Supérieur des Études Technologiques en Communications de Tunis لمعهد العالي للدراسات التكنولوجية في المواصلات بتونس'), (72342, 'https://ror.org/02rjrfe33', 'en', 1, 'https://ror.org/02rjrfe33 Earthjustice'), (72343, 'https://ror.org/02rmnz491', 'en', 1, 'https://ror.org/02rmnz491 Magna'), (72344, 'https://ror.org/02rpeh167', 'en', 1, 'https://ror.org/02rpeh167 Green Innovation and Development Centre Trung tâm Phát triển Sáng tạo Xanh'), (72345, 'https://ror.org/02rr7cf98', 'no_lang_code', 1, 'https://ror.org/02rr7cf98 Registry Trust (United Kingdom)'), (72346, 'https://ror.org/02rr9hy25', 'no_lang_code', 1, 'https://ror.org/02rr9hy25 AMPAC (United States)'), (72347, 'https://ror.org/02rrq9749', 'en', 1, 'https://ror.org/02rrq9749 Amnesty International Brazil'), (72348, 'https://ror.org/02rs65g13', 'no_lang_code', 1, 'https://ror.org/02rs65g13 Creavo (United Kingdom)'), (72349, 'https://ror.org/02rshjz42', 'en', 1, 'https://ror.org/02rshjz42 Northumbria Police'), (72350, 'https://ror.org/02rtcze97', 'en', 1, 'https://ror.org/02rtcze97 Dansk Byplanlaboratorium The Danish Town Planning Institute'), (72351, 'https://ror.org/02rx89054', 'de', 1, 'https://ror.org/02rx89054 Die Paracelsus Heilpraktikerschulen'), (72352, 'https://ror.org/02rzxrg25', 'it', 1, 'https://ror.org/02rzxrg25 Opera del Vocabolario Italiano'), (72353, 'https://ror.org/02s01qb70', 'en', 1, 'https://ror.org/02s01qb70 Scarborough Museums Trust'), (72354, 'https://ror.org/02s03gc27', 'en', 1, 'https://ror.org/02s03gc27 Metta Development Foundation'), (72355, 'https://ror.org/02s040f34', 'es', 1, 'https://ror.org/02s040f34 Instituto de Investigaciones en Ciencias Agrarias de Rosario'), (72356, 'https://ror.org/02s1nfr38', 'en', 1, 'https://ror.org/02s1nfr38 GDP Ayurvedic University'), (72357, 'https://ror.org/02s29db36', 'fr', 1, 'https://ror.org/02s29db36 Kahuzi-Biéga National Park'), (72358, 'https://ror.org/02s3m2561', 'en', 1, 'https://ror.org/02s3m2561 Health Services and Performance Research Laboratory'), (72359, 'https://ror.org/02s437n13', 'en', 1, 'https://ror.org/02s437n13 The Textile Institute'), (72360, 'https://ror.org/02s5mpe65', 'en', 1, 'https://ror.org/02s5mpe65 The Intercultural Communication Institute'), (72361, 'https://ror.org/02s6awq69', 'en', 1, 'https://ror.org/02s6awq69 Institute for Nonprofit News'), (72362, 'https://ror.org/02s6maw65', 'pt', 1, 'https://ror.org/02s6maw65 Faculdades Guarulhos, Faculdades Integradas de Ciências Humanas, Saúde e Educação de Guarulhos'), (72363, 'https://ror.org/02s6z4m47', 'en', 1, 'https://ror.org/02s6z4m47 Warwickshire Wildlife Trust'), (72364, 'https://ror.org/02s7vda12', 'en', 1, 'https://ror.org/02s7vda12 Association of Breastfeeding Mothers'), (72365, 'https://ror.org/02s7xpw31', 'de', 1, 'https://ror.org/02s7xpw31 St. Josef Krankenhaus'), (72366, 'https://ror.org/02s9xjj68', 'en', 1, 'https://ror.org/02s9xjj68 Hansard Society'), (72367, 'https://ror.org/02sbgzg70', 'en', 1, 'https://ror.org/02sbgzg70 Vine Trust'), (72368, 'https://ror.org/02sc13d13', 'en', 1, 'https://ror.org/02sc13d13 Pakistan Muslim Centre'), (72369, 'https://ror.org/02scqxw19', 'en', 1, 'https://ror.org/02scqxw19 Art UK'), (72370, 'https://ror.org/02sdyzy02', 'no_lang_code', 1, 'https://ror.org/02sdyzy02 Moxtek (United States)'), (72371, 'https://ror.org/02seb1k33', 'en', 1, 'https://ror.org/02seb1k33 Freight Transport Association'), (72372, 'https://ror.org/02sfgx138', 'en', 1, 'https://ror.org/02sfgx138 Abogados y Abogadas del NOA en Derechos Humanos y Estudios Sociales Lawyers and Advocates of Northwest and Human Rights Studies Social'), (72373, 'https://ror.org/02sgc5k80', 'no_lang_code', 1, 'https://ror.org/02sgc5k80 Grinm Advanced Materials (China) 有研新材料股份有限公司'), (72374, 'https://ror.org/02sgg7t92', 'en', 1, 'https://ror.org/02sgg7t92 Scottish Hydrogen and Fuel Cell Association'), (72375, 'https://ror.org/02sgk6k14', 'en', 1, 'https://ror.org/02sgk6k14 Local Government Association'), (72376, 'https://ror.org/02sgs5a38', 'no_lang_code', 1, 'https://ror.org/02sgs5a38 Elcon (United States)'), (72377, 'https://ror.org/02shbjh24', 'en', 1, 'https://ror.org/02shbjh24 Kazakh Research Institute of Plant Protection and Quarantine казахский научно-исследовательский институт защиты и карантина растений'), (72378, 'https://ror.org/02sjm2q41', 'no_lang_code', 1, 'https://ror.org/02sjm2q41 Ecofiltration (Sweden)'), (72379, 'https://ror.org/02sjwx878', 'en', 1, 'https://ror.org/02sjwx878 Condensed Matter Physics Research Center'), (72380, 'https://ror.org/02sk64d67', 'de', 1, 'https://ror.org/02sk64d67 Inn-Salzach-Klinikum'), (72381, 'https://ror.org/02sksqx64', 'en', 1, 'https://ror.org/02sksqx64 Division of Public Defender Services'), (72382, 'https://ror.org/02skssx66', 'en', 1, 'https://ror.org/02skssx66 The School of Visual Theatre בית הספר לתיאטרון חזותי'), (72383, 'https://ror.org/02skwfk85', 'en', 1, 'https://ror.org/02skwfk85 United States Court of Appeals for the Ninth Circuit'), (72384, 'https://ror.org/02sncd318', 'en', 1, 'https://ror.org/02sncd318 The Reed Institute'), (72385, 'https://ror.org/02spn2261', 'no_lang_code', 1, 'https://ror.org/02spn2261 Netzsch (United Kingdom)'), (72386, 'https://ror.org/02spn6s93', 'en', 1, 'https://ror.org/02spn6s93 National Energy Action'), (72387, 'https://ror.org/02sqcyb22', 'en', 1, 'https://ror.org/02sqcyb22 The Bronx Academy of Arts and Dance'), (72388, 'https://ror.org/02sqn1q51', 'en', 1, 'https://ror.org/02sqn1q51 Karakalpakstan State Museum of Art named after I.V. Savitsky Государственный музей искусств имени И. В. Савицкого'), (72389, 'https://ror.org/02ss0eq82', 'en', 1, 'https://ror.org/02ss0eq82 Cognitive Engineering Research Institute'), (72390, 'https://ror.org/02st6h303', 'en', 1, 'https://ror.org/02st6h303 Archives Nationales du Sénégal National Archives of Senegal'), (72391, 'https://ror.org/02st7ck79', 'en', 1, 'https://ror.org/02st7ck79 Museo Archeologico Nazionale di Napoli National Archaeological Museum'), (72392, 'https://ror.org/02sv3ne29', 'en', 1, 'https://ror.org/02sv3ne29 Kaivalya Education Foundation'), (72393, 'https://ror.org/02svwkx06', 'sv', 1, 'https://ror.org/02svwkx06 Svebio, Svenska Bioenergiföreningen'), (72394, 'https://ror.org/02svwte58', 'en', 1, 'https://ror.org/02svwte58 Places for People'), (72395, 'https://ror.org/02sw18145', 'no_lang_code', 1, 'https://ror.org/02sw18145 Sveriges Television (Sweden)'), (72396, 'https://ror.org/02sxph104', 'no_lang_code', 1, 'https://ror.org/02sxph104 Orsus Medical (United Kingdom)'), (72397, 'https://ror.org/02sxtj815', 'sv', 1, 'https://ror.org/02sxtj815 Stockholms Stadsmission'), (72398, 'https://ror.org/02szhc144', 'en', 1, 'https://ror.org/02szhc144 London Irish Centre'), (72399, 'https://ror.org/02t2xcx21', 'en', 1, 'https://ror.org/02t2xcx21 Social Science Research and Evaluation'), (72400, 'https://ror.org/02t3fqk56', 'no_lang_code', 1, 'https://ror.org/02t3fqk56 Digital Wave (United States)'), (72401, 'https://ror.org/02t84ww49', 'en', 1, 'https://ror.org/02t84ww49 Pastoral Women''s Council'), (72402, 'https://ror.org/02t975260', 'no_lang_code', 1, 'https://ror.org/02t975260 Metrum (Sweden)'), (72403, 'https://ror.org/02tahzf33', 'en', 1, 'https://ror.org/02tahzf33 Centre for Human Rights and Policy Studies'), (72404, 'https://ror.org/02tbvzj10', 'en', 1, 'https://ror.org/02tbvzj10 Ministry of Culture وزارة الثقافة'), (72405, 'https://ror.org/02td76a59', 'no_lang_code', 1, 'https://ror.org/02td76a59 Cassia (United States)'), (72406, 'https://ror.org/02tdmp521', 'no_lang_code', 1, 'https://ror.org/02tdmp521 Health Solutions (Sweden)'), (72407, 'https://ror.org/02teqse50', 'en', 1, 'https://ror.org/02teqse50 Yorkshire & Humber Academic Health Science Network'), (72408, 'https://ror.org/02tf15f56', 'en', 1, 'https://ror.org/02tf15f56 Gregson Arts & Community Centre'), (72409, 'https://ror.org/02tg4ba33', 'en', 1, 'https://ror.org/02tg4ba33 Aarno Labs'), (72410, 'https://ror.org/02tgy3j57', 'en', 1, 'https://ror.org/02tgy3j57 Uttarakhand Government'), (72411, 'https://ror.org/02tjeq988', 'en', 1, 'https://ror.org/02tjeq988 Association of Media Women in Kenya'), (72412, 'https://ror.org/02tjpr954', 'en', 1, 'https://ror.org/02tjpr954 Scottish Poetry Library'), (72413, 'https://ror.org/02tkzjy36', 'no_lang_code', 1, 'https://ror.org/02tkzjy36 Sphere Medical (United Kingdom)'), (72414, 'https://ror.org/02tn23649', 'no_lang_code', 1, 'https://ror.org/02tn23649 Litecom (United States)'), (72415, 'https://ror.org/02tshe095', 'en', 1, 'https://ror.org/02tshe095 The National Trust'), (72416, 'https://ror.org/02ttgy424', 'no_lang_code', 1, 'https://ror.org/02ttgy424 Innovative Materials Testing Technologies (United States)'), (72417, 'https://ror.org/02twwc510', 'fr', 1, 'https://ror.org/02twwc510 Association des Journalistes Lesbiennes'), (72418, 'https://ror.org/02v1vde28', 'no_lang_code', 1, 'https://ror.org/02v1vde28 MGT Capital Investments (United Kingdom)'), (72419, 'https://ror.org/02v351s66', 'en', 1, 'https://ror.org/02v351s66 Australian Energy Council'), (72420, 'https://ror.org/02v856y35', 'en', 1, 'https://ror.org/02v856y35 Association of British Orchestras'), (72421, 'https://ror.org/02v857h75', 'no_lang_code', 1, 'https://ror.org/02v857h75 Deregallera (United Kingdom)'), (72422, 'https://ror.org/02v9x8e34', 'no_lang_code', 1, 'https://ror.org/02v9x8e34 Ocunexus Therapeutics (United States)'), (72423, 'https://ror.org/02vaea525', 'no_lang_code', 1, 'https://ror.org/02vaea525 Akston Biosciences (United States)'), (72424, 'https://ror.org/02vd17947', 'no_lang_code', 1, 'https://ror.org/02vd17947 Thornhill Medical (Canada)'), (72425, 'https://ror.org/02vdga848', 'no_lang_code', 1, 'https://ror.org/02vdga848 Neon Century (United Kingdom)'), (72426, 'https://ror.org/02vdz8162', 'no_lang_code', 1, 'https://ror.org/02vdz8162 Natama'), (72427, 'https://ror.org/02ve9pj54', 'no_lang_code', 1, 'https://ror.org/02ve9pj54 McCormick Stevenson (United States)'), (72428, 'https://ror.org/02veev176', 'es', 1, 'https://ror.org/02veev176 Instituto Nacional de Biodiversidad'), (72429, 'https://ror.org/02vhbqj87', 'no_lang_code', 1, 'https://ror.org/02vhbqj87 Arborsense (United States)'), (72430, 'https://ror.org/02vhzww23', 'no_lang_code', 1, 'https://ror.org/02vhzww23 Aizu Hokurei High School'), (72431, 'https://ror.org/02vjrjn58', 'no_lang_code', 1, 'https://ror.org/02vjrjn58 Logistic Gliders (United States)'), (72432, 'https://ror.org/02vjtn770', 'en', 1, 'https://ror.org/02vjtn770 Internews'), (72433, 'https://ror.org/02vkaxr54', 'en', 1, 'https://ror.org/02vkaxr54 Library of Tibetan Works and Archives'), (72434, 'https://ror.org/02vmy5t39', 'en', 1, 'https://ror.org/02vmy5t39 Egyptian Foundation for Refugee Rights'), (72435, 'https://ror.org/02vn97859', 'en', 1, 'https://ror.org/02vn97859 Arbejdermuseet The Workers Museum'), (72436, 'https://ror.org/02vp3n735', 'en', 1, 'https://ror.org/02vp3n735 National Museum of Natural History राष्ट्रीय प्राकृतिक इतिहास संग्रहालय, नई दिल्ली'), (72437, 'https://ror.org/02vp84g54', 'no_lang_code', 1, 'https://ror.org/02vp84g54 Sebastian Conran Associates (United Kingdom)'), (72438, 'https://ror.org/02vparz93', 'no_lang_code', 1, 'https://ror.org/02vparz93 Hexagon Interactive (United States)'), (72439, 'https://ror.org/02vpqn405', 'en', 1, 'https://ror.org/02vpqn405 North Lanarkshire Council'), (72440, 'https://ror.org/02vqmr172', 'en', 1, 'https://ror.org/02vqmr172 Baltic Sea Cultural Centre in Gdańsk Nadbałtyckie Centrum Kultury'), (72441, 'https://ror.org/02vrphe47', 'en', 1, 'https://ror.org/02vrphe47 Swaziland National Trust Commission'), (72442, 'https://ror.org/02vrtbq45', 'en', 1, 'https://ror.org/02vrtbq45 Gailearaidhean Nàiseanta na h-Alba National Galleries of Scotland'), (72443, 'https://ror.org/02vt6dp03', 'it', 1, 'https://ror.org/02vt6dp03 Fondazione Studio Marangoni'), (72444, 'https://ror.org/02vt7ey12', 'en', 1, 'https://ror.org/02vt7ey12 FenArch'), (72445, 'https://ror.org/02vw9ek23', 'pl', 1, 'https://ror.org/02vw9ek23 Dolnośląskie Centrum Onkologii'), (72446, 'https://ror.org/02vx6cf88', 'en', 1, 'https://ror.org/02vx6cf88 What Works Network'), (72447, 'https://ror.org/02vxq2c49', 'en', 1, 'https://ror.org/02vxq2c49 Royal Academy of Arts'), (72448, 'https://ror.org/02vywq223', 'no_lang_code', 1, 'https://ror.org/02vywq223 Thinfilm (Sweden)'), (72449, 'https://ror.org/02w00g107', 'en', 1, 'https://ror.org/02w00g107 World Education Services'), (72450, 'https://ror.org/02w2g9n75', 'en', 1, 'https://ror.org/02w2g9n75 Stonebridge Trust'), (72451, 'https://ror.org/02w3bxb19', 'es', 1, 'https://ror.org/02w3bxb19 Asociación Herpetológica Española'), (72452, 'https://ror.org/02w9ngz08', 'no_lang_code', 1, 'https://ror.org/02w9ngz08 Verdesian (United Kingdom)'), (72453, 'https://ror.org/02wbkeq74', 'en', 1, 'https://ror.org/02wbkeq74 Restoke'), (72454, 'https://ror.org/02wbvek51', 'en', 1, 'https://ror.org/02wbvek51 Edna Manley College of the Visual and Performing Arts'), (72455, 'https://ror.org/02wc3s860', 'no_lang_code', 1, 'https://ror.org/02wc3s860 Administración Nacional de Usinas y Trasmisiones Eléctricas National Administration of Power Plants and Electrical Transmissions (Uruguay)'), (72456, 'https://ror.org/02wcg0z91', 'en', 1, 'https://ror.org/02wcg0z91 Quebec Labrador Foundation'), (72457, 'https://ror.org/02wfk0r79', 'en', 1, 'https://ror.org/02wfk0r79 IWW Water Centre IWW Zentrum Wasser'), (72458, 'https://ror.org/02wfpbs86', 'en', 1, 'https://ror.org/02wfpbs86 China Family Planning Association 中国计划生育协会'), (72459, 'https://ror.org/02wgwcd78', 'en', 1, 'https://ror.org/02wgwcd78 Ribble Rivers Trust'), (72460, 'https://ror.org/02wgxhz61', 'no_lang_code', 1, 'https://ror.org/02wgxhz61 Arradiance (United States)'), (72461, 'https://ror.org/02wgzkd84', 'no_lang_code', 1, 'https://ror.org/02wgzkd84 Graf Research (United States)'), (72462, 'https://ror.org/02whsfz82', 'en', 1, 'https://ror.org/02whsfz82 Ministry of Defence'), (72463, 'https://ror.org/02wkq6598', 'no_lang_code', 1, 'https://ror.org/02wkq6598 Rezonansi რეზონანსი'), (72464, 'https://ror.org/02wkzzr31', 'en', 1, 'https://ror.org/02wkzzr31 Mikroskopie im Nanometerbereich und Molekularphysiologie des Gehirns Exzellenzcluster 171 — DFG Forschungszentrum 103 Nanoscale Microscopy and Molecular Physiology of the Brain Cluster of Excellence 171 — DFG Research Center 103'), (72465, 'https://ror.org/02wmgyv80', 'no_lang_code', 1, 'https://ror.org/02wmgyv80 Brain Wellness and Biofeedback Center (United States)'), (72466, 'https://ror.org/02wp5bm32', 'en', 1, 'https://ror.org/02wp5bm32 The National Holocaust Centre & Museum'), (72467, 'https://ror.org/02wpzhj03', 'en', 1, 'https://ror.org/02wpzhj03 National Centre for Advocacy Studies'), (72468, 'https://ror.org/02wq0b665', 'no_lang_code', 1, 'https://ror.org/02wq0b665 Short and Associates (United States)'), (72469, 'https://ror.org/02wq53r66', 'no_lang_code', 1, 'https://ror.org/02wq53r66 Tpa (Poland)'), (72470, 'https://ror.org/02wqcra62', 'es', 1, 'https://ror.org/02wqcra62 Fundación para el Desarrollo Integral del Valle del Cauca, ProPacífico'), (72471, 'https://ror.org/02wrp2347', 'en', 1, 'https://ror.org/02wrp2347 International Bar Association'), (72472, 'https://ror.org/02wtkky92', 'en', 1, 'https://ror.org/02wtkky92 The Emergency Planning Society'), (72473, 'https://ror.org/02wvbw668', 'en', 1, 'https://ror.org/02wvbw668 The Marie Collins Foundation'), (72474, 'https://ror.org/02wvrc195', 'no_lang_code', 1, 'https://ror.org/02wvrc195 Ahmic Aerospace (United States)'), (72475, 'https://ror.org/02wvyyg66', 'en', 1, 'https://ror.org/02wvyyg66 Automotive Council UK'), (72476, 'https://ror.org/02wwq2595', 'en', 1, 'https://ror.org/02wwq2595 Social Research Association'), (72477, 'https://ror.org/02wxpbn78', 'en', 1, 'https://ror.org/02wxpbn78 Findhorn Foundation'), (72478, 'https://ror.org/02wype295', 'no_lang_code', 1, 'https://ror.org/02wype295 Keystone Automation (United States)'), (72479, 'https://ror.org/02x0dpr51', 'en', 1, 'https://ror.org/02x0dpr51 Intellectual Property Watch'), (72480, 'https://ror.org/02x2r7t05', 'no_lang_code', 1, 'https://ror.org/02x2r7t05 Nitrochem (Poland)'), (72481, 'https://ror.org/02x30pp94', 'en', 1, 'https://ror.org/02x30pp94 Royal Society for the Prevention of Accidents'), (72482, 'https://ror.org/02x6wmw65', 'en', 1, 'https://ror.org/02x6wmw65 The National Centre for Early Music'), (72483, 'https://ror.org/02x7tr046', 'no_lang_code', 1, 'https://ror.org/02x7tr046 China Regenerative Medicine International (China) 中國再生醫學國際有限公司'), (72484, 'https://ror.org/02x9fwx10', 'en', 1, 'https://ror.org/02x9fwx10 Ethiopian Space Science and Technology Institute የኢትዮጵያ ስፔስ ሳይንስ እና ቴክኖሎጂ ተቋም'), (72485, 'https://ror.org/02x9mk733', 'es', 1, 'https://ror.org/02x9mk733 Consejo Civil Mexicano para la Silvicultura Sostenible'), (72486, 'https://ror.org/02xc11d36', 'en', 1, 'https://ror.org/02xc11d36 Chama cha Wanahabari Wanawake Tanzania Tanzania Media Women''s Association'), (72487, 'https://ror.org/02xct9y17', 'en', 1, 'https://ror.org/02xct9y17 Amical Veterinary Centre'), (72488, 'https://ror.org/02xd41x41', 'de', 1, 'https://ror.org/02xd41x41 Forio'), (72489, 'https://ror.org/02xe5e906', 'no_lang_code', 1, 'https://ror.org/02xe5e906 Lupine Labs (United States)'), (72490, 'https://ror.org/02xey9634', 'no_lang_code', 1, 'https://ror.org/02xey9634 Amazon (United Kingdom)'), (72491, 'https://ror.org/02xf24951', 'en', 1, 'https://ror.org/02xf24951 Folkestone College'), (72492, 'https://ror.org/02xf6ts56', 'en', 1, 'https://ror.org/02xf6ts56 National Flood Forum'), (72493, 'https://ror.org/02xfc1977', 'no_lang_code', 1, 'https://ror.org/02xfc1977 Enthought (United States)'), (72494, 'https://ror.org/02xhnj226', 'en', 1, 'https://ror.org/02xhnj226 Mobox Foundation'), (72495, 'https://ror.org/02xkae269', 'no_lang_code', 1, 'https://ror.org/02xkae269 AptaMatrix (United States)'), (72496, 'https://ror.org/02xkrvb18', 'en', 1, 'https://ror.org/02xkrvb18 Institute of Economic and Social Development Instituto de Desarrollo Económico y Social'), (72497, 'https://ror.org/02xqbzx59', 'no_lang_code', 1, 'https://ror.org/02xqbzx59 SLE (United Kingdom)'), (72498, 'https://ror.org/02xs8bd02', 'no_lang_code', 1, 'https://ror.org/02xs8bd02 Bergoz Instrumentation (France)'), (72499, 'https://ror.org/02xvpd793', 'no_lang_code', 1, 'https://ror.org/02xvpd793 Heureka (United States)'), (72500, 'https://ror.org/02xvpn995', 'no_lang_code', 1, 'https://ror.org/02xvpn995 Hawaii Hydrogen Carriers (United States)'), (72501, 'https://ror.org/02xxmdw74', 'en', 1, 'https://ror.org/02xxmdw74 The Modernist Society'), (72502, 'https://ror.org/02xy8q226', 'no_lang_code', 1, 'https://ror.org/02xy8q226 Composites Automation (United States)'), (72503, 'https://ror.org/02xz4xc25', 'it', 1, 'https://ror.org/02xz4xc25 Istituto per le Tecnologie Didattiche'), (72504, 'https://ror.org/02y0c7m95', 'en', 1, 'https://ror.org/02y0c7m95 United Nations University Institute on Computing and Society 聯合國大學計算與社會研究所'), (72505, 'https://ror.org/02y14pt84', 'en', 1, 'https://ror.org/02y14pt84 Constitution and Reform Education Consortium'), (72506, 'https://ror.org/02y2kap36', 'en', 1, 'https://ror.org/02y2kap36 Center for Global Policy Solutions'), (72507, 'https://ror.org/02y5w9a36', 'en', 1, 'https://ror.org/02y5w9a36 United States Public Interest Research Group Education Fund'), (72508, 'https://ror.org/02y7qqd86', 'no_lang_code', 1, 'https://ror.org/02y7qqd86 A123 Systems (United States)'), (72509, 'https://ror.org/02y83px33', 'no_lang_code', 1, 'https://ror.org/02y83px33 UNNATI उन्नति'), (72510, 'https://ror.org/02ya7hp91', 'en', 1, 'https://ror.org/02ya7hp91 ALZHIR Museum and Memorial Complex Музейно-мемориальный комплекс "АЛЖИР" Мұражай мен «АЛЖИР» мемориалды кешенінің'), (72511, 'https://ror.org/02yay2r30', 'no_lang_code', 1, 'https://ror.org/02yay2r30 Zurad (Poland)'), (72512, 'https://ror.org/02yczqn06', 'en', 1, 'https://ror.org/02yczqn06 UbonRatchathani Rice Research Center ศูนย์วิจัยข้าวอุบลราชธานี'), (72513, 'https://ror.org/02ydg9890', 'en', 1, 'https://ror.org/02ydg9890 The Angelou Centre'), (72514, 'https://ror.org/02yf26450', 'no_lang_code', 1, 'https://ror.org/02yf26450 InterVision Media (United States)'), (72515, 'https://ror.org/02yghr808', 'en', 1, 'https://ror.org/02yghr808 Asian Institute of Medical Sciences'), (72516, 'https://ror.org/02yj18485', 'no_lang_code', 1, 'https://ror.org/02yj18485 Engineering Matters (United States)'), (72517, 'https://ror.org/02yjnch11', 'en', 1, 'https://ror.org/02yjnch11 Japanese Foundation for Multidisciplinary Treatment of Cancer がん集学的治療研究財団'), (72518, 'https://ror.org/02ykpj445', 'en', 1, 'https://ror.org/02ykpj445 Windrush Foundation'), (72519, 'https://ror.org/02ykxyy09', 'en', 1, 'https://ror.org/02ykxyy09 Southwest Florida Research'), (72520, 'https://ror.org/02ynrme92', 'en', 1, 'https://ror.org/02ynrme92 Institute for the Conservation and Valorization of Cultural Heritage Istituto per la Conservazione e la Valorizzazione dei Beni Culturali'), (72521, 'https://ror.org/02yq4nm28', 'en', 1, 'https://ror.org/02yq4nm28 New Horizon Association for Social Development مؤسسة أفاق جديدة للتنمية الاجتماعية'), (72522, 'https://ror.org/02yqafw93', 'en', 1, 'https://ror.org/02yqafw93 Eurasia Foundation of Central Asia Фонд Евразия Центральной Азии'), (72523, 'https://ror.org/02yqvqf05', 'en', 1, 'https://ror.org/02yqvqf05 Tranby National Indigenous Adult Education and Training'), (72524, 'https://ror.org/02yqzy864', 'en', 1, 'https://ror.org/02yqzy864 Islamic Foundation for Ecology and Environmental Science'), (72525, 'https://ror.org/02yt07f63', 'en', 1, 'https://ror.org/02yt07f63 Kent History and Library Centre'), (72526, 'https://ror.org/02yv9pn14', 'en', 1, 'https://ror.org/02yv9pn14 Department of Finance'), (72527, 'https://ror.org/02yvdyk59', 'no_lang_code', 1, 'https://ror.org/02yvdyk59 Ksaria (United States)'), (72528, 'https://ror.org/02yvf4f12', 'en', 1, 'https://ror.org/02yvf4f12 Allied Media Projects'), (72529, 'https://ror.org/02yw4ce16', 'no_lang_code', 1, 'https://ror.org/02yw4ce16 Surgical Energetics (United States)'), (72530, 'https://ror.org/02yx0p576', 'no_lang_code', 1, 'https://ror.org/02yx0p576 Rantor (Sweden)'), (72531, 'https://ror.org/02yy7ck11', 'no_lang_code', 1, 'https://ror.org/02yy7ck11 Metstat (United States)'), (72532, 'https://ror.org/02z1j6f46', 'en', 1, 'https://ror.org/02z1j6f46 National Association of Eco-Friendly Salons and Spas'), (72533, 'https://ror.org/02z1jjz10', 'no_lang_code', 1, 'https://ror.org/02z1jjz10 Ohmedics (United Kingdom)'), (72534, 'https://ror.org/02z50b706', 'en', 1, 'https://ror.org/02z50b706 Mauritian Wildlife Foundation'), (72535, 'https://ror.org/02z5b5082', 'en', 1, 'https://ror.org/02z5b5082 Belfast Healthy Cities'); INSERT INTO `rors` VALUES (72536, 'https://ror.org/02z66xs22', 'en', 1, 'https://ror.org/02z66xs22 Institute of Travel & Tourism'), (72537, 'https://ror.org/02z85gz67', 'en', 1, 'https://ror.org/02z85gz67 Institut Mittag-Leffler Mittag-Leffler Institute'), (72538, 'https://ror.org/02zb0z080', 'no_lang_code', 1, 'https://ror.org/02zb0z080 Expektra (Sweden)'), (72539, 'https://ror.org/02zcam055', 'en', 1, 'https://ror.org/02zcam055 Canfranc Underground Laboratory Laboratorio Subterráneo de Canfranc'), (72540, 'https://ror.org/02zdtxx58', 'en', 1, 'https://ror.org/02zdtxx58 Wheat Trust'), (72541, 'https://ror.org/02zfxwc21', 'en', 1, 'https://ror.org/02zfxwc21 Derbyshire Community Health Services NHS Foundation Trust'), (72542, 'https://ror.org/02zggew82', 'en', 1, 'https://ror.org/02zggew82 Museum Of Modern Art'), (72543, 'https://ror.org/02zgtky13', 'en', 1, 'https://ror.org/02zgtky13 Center for the Study of Childhood and Adolescence'), (72544, 'https://ror.org/02zhx9s71', 'no_lang_code', 1, 'https://ror.org/02zhx9s71 Coltene (United States)'), (72545, 'https://ror.org/02zm6bn93', 'en', 1, 'https://ror.org/02zm6bn93 Connections for Abused Women and their Children'), (72546, 'https://ror.org/02znmjj29', 'no_lang_code', 1, 'https://ror.org/02znmjj29 High Force Research (United Kingdom)'), (72547, 'https://ror.org/02zp3yd51', 'en', 1, 'https://ror.org/02zp3yd51 ARC Centre of Excellence for Gravitational Wave Discovery'), (72548, 'https://ror.org/02ztp3208', 'no_lang_code', 1, 'https://ror.org/02ztp3208 Ashton Security Laboratories (United States)'), (72549, 'https://ror.org/02zwdks66', 'no_lang_code', 1, 'https://ror.org/02zwdks66 Arete (United Kingdom)'), (72550, 'https://ror.org/02zyhyh46', 'no_lang_code', 1, 'https://ror.org/02zyhyh46 Scottish Canals (United Kingdom)'), (72551, 'https://ror.org/02zzhpq74', 'en', 1, 'https://ror.org/02zzhpq74 Kungliga Akademien för de fria konsterna Royal Academy of Fine Arts'), (72552, 'https://ror.org/030192654', 'en', 1, 'https://ror.org/030192654 National Museum of Korea 국립중앙박물관'), (72553, 'https://ror.org/0303trx77', 'en', 1, 'https://ror.org/0303trx77 Green and Seidner Family Practice Associates'), (72554, 'https://ror.org/0305p8k71', 'en', 1, 'https://ror.org/0305p8k71 East Suffolk Council'), (72555, 'https://ror.org/03060mz76', 'en', 1, 'https://ror.org/03060mz76 Greater Boston Interfaith Organization'), (72556, 'https://ror.org/0306jdn93', 'en', 1, 'https://ror.org/0306jdn93 The Ethical Small Traders Association'), (72557, 'https://ror.org/0307m3652', 'en', 1, 'https://ror.org/0307m3652 African Migration and Development Policy Centre'), (72558, 'https://ror.org/0307tfa50', 'no_lang_code', 1, 'https://ror.org/0307tfa50 Cambia'), (72559, 'https://ror.org/0308a9489', 'no_lang_code', 1, 'https://ror.org/0308a9489 Bristol Maid (United Kingdom)'), (72560, 'https://ror.org/030ajmr16', 'en', 1, 'https://ror.org/030ajmr16 Royal Society for the Conservation of Nature'), (72561, 'https://ror.org/030b5a298', 'en', 1, 'https://ror.org/030b5a298 Japan Institute of International Affairs 日本国際問題研究所'), (72562, 'https://ror.org/030dxdj56', 'en', 1, 'https://ror.org/030dxdj56 Nanjing Collaborator Community Development Center 南京市协作者社区发展中心'), (72563, 'https://ror.org/030f1e584', 'no_lang_code', 1, 'https://ror.org/030f1e584 Cortrol Services (United States)'), (72564, 'https://ror.org/030gh7x86', 'no_lang_code', 1, 'https://ror.org/030gh7x86 Immunosciences Lab (United States)'), (72565, 'https://ror.org/030j6jf89', 'no_lang_code', 1, 'https://ror.org/030j6jf89 Trusted Information Consulting (Poland)'), (72566, 'https://ror.org/030jahg19', 'no_lang_code', 1, 'https://ror.org/030jahg19 Intuidex (United States)'), (72567, 'https://ror.org/030mda749', 'en', 1, 'https://ror.org/030mda749 San Diego Housing Federation'), (72568, 'https://ror.org/030p2g996', 'en', 1, 'https://ror.org/030p2g996 Habib University حبيب يونيورسٽي'), (72569, 'https://ror.org/030pt9011', 'en', 1, 'https://ror.org/030pt9011 Swansea Museum'), (72570, 'https://ror.org/030qgq632', 'en', 1, 'https://ror.org/030qgq632 Her Majesty''s Inspectorate of Probation'), (72571, 'https://ror.org/030rrr070', 'en', 1, 'https://ror.org/030rrr070 West African Research Center'), (72572, 'https://ror.org/030v2bt19', 'en', 1, 'https://ror.org/030v2bt19 Centro Intercultural de Estudios de Desiertos y Océanos Intercultural Center for the Study of Deserts and Oceans'), (72573, 'https://ror.org/030v3z925', 'en', 1, 'https://ror.org/030v3z925 Newcastle United Foundation'), (72574, 'https://ror.org/030vnt817', 'en', 1, 'https://ror.org/030vnt817 Goree Institute L’Institut Gorée – Centre pour la Démocratie, le Dévéloppement et la Culture en Afrique'), (72575, 'https://ror.org/030w0d671', 'en', 1, 'https://ror.org/030w0d671 Chetham’s Library'), (72576, 'https://ror.org/030xj3f82', 'en', 1, 'https://ror.org/030xj3f82 Xingyi Normal University for Nationalities 兴义民族师范学院'), (72577, 'https://ror.org/030ypsd98', 'en', 1, 'https://ror.org/030ypsd98 Free Word'), (72578, 'https://ror.org/030z00d05', 'en', 1, 'https://ror.org/030z00d05 China Association for NGO Cooperation 中国国际民间组织合作促进会'), (72579, 'https://ror.org/0311bpv57', 'en', 1, 'https://ror.org/0311bpv57 Lisburn & Castlereagh City Council'), (72580, 'https://ror.org/0311x9y29', 'no_lang_code', 1, 'https://ror.org/0311x9y29 National Milk Records (United Kingdom)'), (72581, 'https://ror.org/0316mxt43', 'no_lang_code', 1, 'https://ror.org/0316mxt43 Shanghai Museum 上海博物馆'), (72582, 'https://ror.org/0317wv817', 'en', 1, 'https://ror.org/0317wv817 British and Irish Association of Zoos and Aquariums'), (72583, 'https://ror.org/031bfdk61', 'no_lang_code', 1, 'https://ror.org/031bfdk61 LM Group (United States)'), (72584, 'https://ror.org/031bpj056', 'no_lang_code', 1, 'https://ror.org/031bpj056 Sea Level Research (United Kingdom)'), (72585, 'https://ror.org/031bw2b05', 'en', 1, 'https://ror.org/031bw2b05 The New World Foundation'), (72586, 'https://ror.org/031cp3483', 'no_lang_code', 1, 'https://ror.org/031cp3483 Gastops (United States)'), (72587, 'https://ror.org/031exbw60', 'no_lang_code', 1, 'https://ror.org/031exbw60 Agilent Technologies (Brazil)'), (72588, 'https://ror.org/031fg5f22', 'no_lang_code', 1, 'https://ror.org/031fg5f22 Cofactor Genomics (United States)'), (72589, 'https://ror.org/031ftjj55', 'en', 1, 'https://ror.org/031ftjj55 Northumberland and Durham Family History Society'), (72590, 'https://ror.org/031gwf224', 'en', 1, 'https://ror.org/031gwf224 Center For Biomarker Research In Medicine'), (72591, 'https://ror.org/031h6k742', 'no_lang_code', 1, 'https://ror.org/031h6k742 Numedicus (United Kingdom)'), (72592, 'https://ror.org/031hre343', 'en', 1, 'https://ror.org/031hre343 Emirates Center for Strategic Studies and Research'), (72593, 'https://ror.org/031kmgt53', 'en', 1, 'https://ror.org/031kmgt53 Central Illinois Neuroscience Foundation'), (72594, 'https://ror.org/031kpa286', 'en', 1, 'https://ror.org/031kpa286 Q & T Recherche Sherbrooke Q & T Research'), (72595, 'https://ror.org/031ncfw92', 'no_lang_code', 1, 'https://ror.org/031ncfw92 PNDetector (Germany)'), (72596, 'https://ror.org/031pan754', 'no_lang_code', 1, 'https://ror.org/031pan754 SentiOne (Poland)'), (72597, 'https://ror.org/031r1z972', 'en', 1, 'https://ror.org/031r1z972 Fetal Care Research Foundation'), (72598, 'https://ror.org/031r9ct64', 'no_lang_code', 1, 'https://ror.org/031r9ct64 Metastable Instruments (United States)'), (72599, 'https://ror.org/031rh4g51', 'no_lang_code', 1, 'https://ror.org/031rh4g51 Soley (Poland)'), (72600, 'https://ror.org/031rhbf61', 'en', 1, 'https://ror.org/031rhbf61 Philanthropy Northwest'), (72601, 'https://ror.org/031s3hp40', 'es', 1, 'https://ror.org/031s3hp40 Stael Ruffinelli de Ortiz'), (72602, 'https://ror.org/031v20w81', 'en', 1, 'https://ror.org/031v20w81 Blueenergy'), (72603, 'https://ror.org/031w8tq77', 'no_lang_code', 1, 'https://ror.org/031w8tq77 Atrex Energy (United States)'), (72604, 'https://ror.org/031xn1a76', 'no_lang_code', 1, 'https://ror.org/031xn1a76 Partners in Development for Research, Consulting and Training (Egypt) شركاء التنمية للبحوث والاستشارات والتدريب'), (72605, 'https://ror.org/031zahk15', 'en', 1, 'https://ror.org/031zahk15 Royal National Theatre'), (72606, 'https://ror.org/0321hn990', 'no_lang_code', 1, 'https://ror.org/0321hn990 Ad-Tech (United States)'), (72607, 'https://ror.org/0323bjj73', 'en', 1, 'https://ror.org/0323bjj73 Centre for Women’s Research'), (72608, 'https://ror.org/0323znp25', 'fr', 1, 'https://ror.org/0323znp25 Bibliothèque Universitaire des Langues et Civilisations'), (72609, 'https://ror.org/03247t449', 'en', 1, 'https://ror.org/03247t449 Campbell College'), (72610, 'https://ror.org/0327fb755', 'no_lang_code', 1, 'https://ror.org/0327fb755 Heat Management (Sweden)'), (72611, 'https://ror.org/0327qwp89', 'no_lang_code', 1, 'https://ror.org/0327qwp89 Annexin Pharmaceuticals (Sweden)'), (72612, 'https://ror.org/03283qn83', 'en', 1, 'https://ror.org/03283qn83 Society for Community Health Awareness Research and Action'), (72613, 'https://ror.org/03286xn88', 'no_lang_code', 1, 'https://ror.org/03286xn88 Microprobes (United States)'), (72614, 'https://ror.org/0328qyd75', 'en', 1, 'https://ror.org/0328qyd75 The Equality Trust'), (72615, 'https://ror.org/032cpcp20', 'no_lang_code', 1, 'https://ror.org/032cpcp20 ETI Instrument Systems (United States)'), (72616, 'https://ror.org/032dvkh62', 'en', 1, 'https://ror.org/032dvkh62 Thanhtay University Trường Đại học Thành Tây'), (72617, 'https://ror.org/032jca185', 'en', 1, 'https://ror.org/032jca185 Institute for Human Rights and Development in Africa'), (72618, 'https://ror.org/032jd4h63', 'es', 1, 'https://ror.org/032jd4h63 Fundación Pro Vivienda Social'), (72619, 'https://ror.org/032ns4d39', 'en', 1, 'https://ror.org/032ns4d39 Arab Institute for Human Rights معهد العربي لحقوق الانسان'), (72620, 'https://ror.org/032pxea46', 'no_lang_code', 1, 'https://ror.org/032pxea46 Geost (United States)'), (72621, 'https://ror.org/032q63062', 'en', 1, 'https://ror.org/032q63062 Equitas - International Centre for Human Rights Education'), (72622, 'https://ror.org/032qdxd79', 'no_lang_code', 1, 'https://ror.org/032qdxd79 Invisense (Sweden)'), (72623, 'https://ror.org/032t23b63', 'no_lang_code', 1, 'https://ror.org/032t23b63 Search (Poland)'), (72624, 'https://ror.org/032xxp947', 'en', 1, 'https://ror.org/032xxp947 Geo Explore Foundation'), (72625, 'https://ror.org/032y8tg91', 'en', 1, 'https://ror.org/032y8tg91 Mediciti Institute of Medical Sciences మెడిసిటి వైద్య విజ్ఞాన సంస్థ'), (72626, 'https://ror.org/0330j9a35', 'en', 1, 'https://ror.org/0330j9a35 University of Science and Technology, Meghalaya, विज्ञान एवं प्रौद्योगिकी विश्वविद्यालय, मेघालय'), (72627, 'https://ror.org/0331wa828', 'en', 1, 'https://ror.org/0331wa828 Universiti Xiamen Malaysia Xiamen University Malaysia'), (72628, 'https://ror.org/0331xj092', 'en', 1, 'https://ror.org/0331xj092 Institute for Technologies Applied to Cultural Heritage Istituto per le Tecnologie Applicate ai Beni Culturali'), (72629, 'https://ror.org/0332r9t93', 'en', 1, 'https://ror.org/0332r9t93 Children and War Foundation'), (72630, 'https://ror.org/0334ajr59', 'no_lang_code', 1, 'https://ror.org/0334ajr59 Development Services Group (United States)'), (72631, 'https://ror.org/03356tk08', 'en', 1, 'https://ror.org/03356tk08 Newfoundland and Labrador Centre for Applied Health Research'), (72632, 'https://ror.org/0336yfm40', 'no_lang_code', 1, 'https://ror.org/0336yfm40 In Depth Engineering (United States)'), (72633, 'https://ror.org/0337b1h63', 'no_lang_code', 1, 'https://ror.org/0337b1h63 Juneteenth Productions (United States)'), (72634, 'https://ror.org/033893t28', 'no_lang_code', 1, 'https://ror.org/033893t28 Martin Chautari मार्टिन चौतारी'), (72635, 'https://ror.org/0338yqm59', 'en', 1, 'https://ror.org/0338yqm59 Kinetica Museum'), (72636, 'https://ror.org/033anq036', 'no_lang_code', 1, 'https://ror.org/033anq036 GreenTech Consultants (Sri Lanka)'), (72637, 'https://ror.org/033bdbr41', 'es', 1, 'https://ror.org/033bdbr41 Dejusticia'), (72638, 'https://ror.org/033c33n67', 'no_lang_code', 1, 'https://ror.org/033c33n67 Marine Design Dynamics (United States)'), (72639, 'https://ror.org/033d2dh14', 'en', 1, 'https://ror.org/033d2dh14 Wolverhampton Art Gallery'), (72640, 'https://ror.org/033ensv76', 'en', 1, 'https://ror.org/033ensv76 Lowry Memorial College & Group of Institutions'), (72641, 'https://ror.org/033hdxa37', 'en', 1, 'https://ror.org/033hdxa37 Brockhouse Institute for Materials Research'), (72642, 'https://ror.org/033kh6571', 'en', 1, 'https://ror.org/033kh6571 Consejo Nacional de Evaluación de la Política de Desarrollo Social National Council for the Evaluation of Social Development Policy'), (72643, 'https://ror.org/033mdbt36', 'no_lang_code', 1, 'https://ror.org/033mdbt36 Aggamin (United States)'), (72644, 'https://ror.org/033mfbr09', 'no_lang_code', 1, 'https://ror.org/033mfbr09 Ubuntu Institute'), (72645, 'https://ror.org/033mhgr78', 'en', 1, 'https://ror.org/033mhgr78 Srishti Institute of Art Design and Technology'), (72646, 'https://ror.org/033mn5m13', 'en', 1, 'https://ror.org/033mn5m13 Pasargad Institute for Advanced Innovative Solutions معهد باسارجاد للحلول المبتكرة المتقدمة'), (72647, 'https://ror.org/033ny7f81', 'fr', 1, 'https://ror.org/033ny7f81 Laboratoire d''Anthropologie et de Psychologie Cognitives et Sociales'), (72648, 'https://ror.org/033pj6j32', 'en', 1, 'https://ror.org/033pj6j32 Konjunkturinstitutet National Institute of Economic Research'), (72649, 'https://ror.org/033rcy608', 'no_lang_code', 1, 'https://ror.org/033rcy608 Aechelon Technology (United States)'), (72650, 'https://ror.org/033t2dn25', 'en', 1, 'https://ror.org/033t2dn25 Oxleas NHS Foundation Trust'), (72651, 'https://ror.org/033vfvr15', 'en', 1, 'https://ror.org/033vfvr15 Polish Chamber of Packaging Polska Izba Opakowań'), (72652, 'https://ror.org/033wxp778', 'en', 1, 'https://ror.org/033wxp778 photo.circle'), (72653, 'https://ror.org/033xmtn97', 'en', 1, 'https://ror.org/033xmtn97 Crimean Republican Institute of Post-Decisive Pedagogical Education Крымский республиканский институт постдипломного педагогического образования'), (72654, 'https://ror.org/033y2mr45', 'it', 1, 'https://ror.org/033y2mr45 Archivio di Stato di Venezia'), (72655, 'https://ror.org/033z00p21', 'en', 1, 'https://ror.org/033z00p21 Centre for Social Research and Development Trung tâm Nghiên cứu và Phát triển xã hội'), (72656, 'https://ror.org/0342vn940', 'no_lang_code', 1, 'https://ror.org/0342vn940 Tromp Medical (Netherlands)'), (72657, 'https://ror.org/0344fac35', 'no_lang_code', 1, 'https://ror.org/0344fac35 A&P Technology (United States)'), (72658, 'https://ror.org/034515739', 'no_lang_code', 1, 'https://ror.org/034515739 Jacobi Consulting (New Zealand)'), (72659, 'https://ror.org/0345vzk85', 'en', 1, 'https://ror.org/0345vzk85 Equality Now'), (72660, 'https://ror.org/03496sr93', 'no_lang_code', 1, 'https://ror.org/03496sr93 ArteEast'), (72661, 'https://ror.org/03497yd66', 'en', 1, 'https://ror.org/03497yd66 Association of British Insurers'), (72662, 'https://ror.org/034a0hk59', 'en', 1, 'https://ror.org/034a0hk59 Health Innovation Manchester'), (72663, 'https://ror.org/034b8wj92', 'en', 1, 'https://ror.org/034b8wj92 Yorkshire Dales Rivers Trust'), (72664, 'https://ror.org/034bnq460', 'no_lang_code', 1, 'https://ror.org/034bnq460 Solelia Greentech (Sweden)'), (72665, 'https://ror.org/034ca5920', 'no_lang_code', 1, 'https://ror.org/034ca5920 TSI (United States)'), (72666, 'https://ror.org/034dfmd43', 'en', 1, 'https://ror.org/034dfmd43 The Data Lab'), (72667, 'https://ror.org/034dmsh02', 'en', 1, 'https://ror.org/034dmsh02 Insight Center for Community Economic Development'), (72668, 'https://ror.org/034ds6p31', 'en', 1, 'https://ror.org/034ds6p31 Yunnan Archaeology 云南省文物考古研究所成立于'), (72669, 'https://ror.org/034egr366', 'no_lang_code', 1, 'https://ror.org/034egr366 Cortest (United States)'), (72670, 'https://ror.org/034fv3460', 'no_lang_code', 1, 'https://ror.org/034fv3460 Procosi'), (72671, 'https://ror.org/034j2a896', 'en', 1, 'https://ror.org/034j2a896 Rainforest Foundation Norway Regnskogfondet'), (72672, 'https://ror.org/034j4sq33', 'no_lang_code', 1, 'https://ror.org/034j4sq33 Dispomedical (United Kingdom)'), (72673, 'https://ror.org/034k42q64', 'no_lang_code', 1, 'https://ror.org/034k42q64 Beyond Photonics (United States)'), (72674, 'https://ror.org/034mzgy05', 'fr', 1, 'https://ror.org/034mzgy05 Ashkal Alwan أشكال ألوان'), (72675, 'https://ror.org/034n9ps55', 'no_lang_code', 1, 'https://ror.org/034n9ps55 Intelli-Firewall (United States)'), (72676, 'https://ror.org/034p3rp25', 'en', 1, 'https://ror.org/034p3rp25 Kazakhstan Medical University Қазақстандық медицина университеті'), (72677, 'https://ror.org/034qcqw57', 'no_lang_code', 1, 'https://ror.org/034qcqw57 Hf Designworks (United States)'), (72678, 'https://ror.org/034r98c48', 'en', 1, 'https://ror.org/034r98c48 British Computer Association of the Blind'), (72679, 'https://ror.org/034v70z81', 'en', 1, 'https://ror.org/034v70z81 Medical Education Cooperation with Cuba'), (72680, 'https://ror.org/03525gg68', 'no_lang_code', 1, 'https://ror.org/03525gg68 Entropic Systems (United States)'), (72681, 'https://ror.org/0353nx598', 'en', 1, 'https://ror.org/0353nx598 Instituto Cultural Steve Biko'), (72682, 'https://ror.org/03546qf24', 'en', 1, 'https://ror.org/03546qf24 China Law Society'), (72683, 'https://ror.org/03580ka59', 'en', 1, 'https://ror.org/03580ka59 Fulbright Japan 日米教育委員会'), (72684, 'https://ror.org/0358rk857', 'no_lang_code', 1, 'https://ror.org/0358rk857 Hexagon (United States)'), (72685, 'https://ror.org/035ayvm38', 'no_lang_code', 1, 'https://ror.org/035ayvm38 Delaware Diamond Knives (United States)'), (72686, 'https://ror.org/035az3a76', 'en', 1, 'https://ror.org/035az3a76 China Arms Control and Disarmament Association 中国军控与裁军协会'), (72687, 'https://ror.org/035drqx74', 'no_lang_code', 1, 'https://ror.org/035drqx74 Argonide (United States)'), (72688, 'https://ror.org/035dzbx92', 'en', 1, 'https://ror.org/035dzbx92 Community Aid International'), (72689, 'https://ror.org/035f28x45', 'en', 1, 'https://ror.org/035f28x45 Zhicheng Public Interest Lawyers 致诚公益律师'), (72690, 'https://ror.org/035hns865', 'no_lang_code', 1, 'https://ror.org/035hns865 Boehringer Ingelheim (Egypt)'), (72691, 'https://ror.org/035hx4w46', 'no_lang_code', 1, 'https://ror.org/035hx4w46 Bristol-Myers Squibb (Sweden)'), (72692, 'https://ror.org/035jk1734', 'es', 1, 'https://ror.org/035jk1734 Forum Solidaridad Perú'), (72693, 'https://ror.org/035pc1920', 'en', 1, 'https://ror.org/035pc1920 German National Bone Marrow Donor Registry Zentrale Knochenmarkspender-Register Deutschland'), (72694, 'https://ror.org/035pvn644', 'no_lang_code', 1, 'https://ror.org/035pvn644 Cooltech Applications (France)'), (72695, 'https://ror.org/035q3vc94', 'en', 1, 'https://ror.org/035q3vc94 Royal Television Society'), (72696, 'https://ror.org/035rpst33', 'pt', 1, 'https://ror.org/035rpst33 Hospital das Clínicas da Universidade Federal de Minas Gerais'), (72697, 'https://ror.org/035tvak16', 'no_lang_code', 1, 'https://ror.org/035tvak16 Experiad (United States)'), (72698, 'https://ror.org/035wa3p49', 'no_lang_code', 1, 'https://ror.org/035wa3p49 Dream Laboratory (United Kingdom)'), (72699, 'https://ror.org/035x03e98', 'no_lang_code', 1, 'https://ror.org/035x03e98 InEnTec (United States)'), (72700, 'https://ror.org/035x64r67', 'en', 1, 'https://ror.org/035x64r67 Down''s Syndrome Association'), (72701, 'https://ror.org/035y5td47', 'en', 1, 'https://ror.org/035y5td47 Institute for International Legal Studies Istituto di Studi Giuridici Internazionali'), (72702, 'https://ror.org/035zr6437', 'es', 1, 'https://ror.org/035zr6437 Hospital Dipreca'), (72703, 'https://ror.org/0360xnj30', 'no_lang_code', 1, 'https://ror.org/0360xnj30 Strainlabs (Sweden)'), (72704, 'https://ror.org/0363ne177', 'en', 1, 'https://ror.org/0363ne177 ABFE'), (72705, 'https://ror.org/036515p55', 'en', 1, 'https://ror.org/036515p55 Museum of the History of Science'), (72706, 'https://ror.org/0365n9z90', 'es', 1, 'https://ror.org/0365n9z90 Sisma Mujer'), (72707, 'https://ror.org/03666dk92', 'en', 1, 'https://ror.org/03666dk92 The Bingo Association'), (72708, 'https://ror.org/036791a63', 'no_lang_code', 1, 'https://ror.org/036791a63 S&C Electric Company (United States)'), (72709, 'https://ror.org/0367sm721', 'en', 1, 'https://ror.org/0367sm721 Caribbean Disaster Emergency Management Agency'), (72710, 'https://ror.org/03688j326', 'en', 1, 'https://ror.org/03688j326 Centre for Policy Alternatives'), (72711, 'https://ror.org/036ak6q26', 'en', 1, 'https://ror.org/036ak6q26 Cloud Innovation Centre'), (72712, 'https://ror.org/036d5sh68', 'en', 1, 'https://ror.org/036d5sh68 Institute of Food Science & Technology'), (72713, 'https://ror.org/036dda554', 'en', 1, 'https://ror.org/036dda554 Particulate Solid Research (United States)'), (72714, 'https://ror.org/036g36489', 'en', 1, 'https://ror.org/036g36489 British Limousin Cattle Society'), (72715, 'https://ror.org/036hc2148', 'no_lang_code', 1, 'https://ror.org/036hc2148 Advanced Systems Technology (United States)'), (72716, 'https://ror.org/036j7xe27', 'de', 1, 'https://ror.org/036j7xe27 Augusta-Kranken-Anstalt'), (72717, 'https://ror.org/036pz8x72', 'en', 1, 'https://ror.org/036pz8x72 UNITE-LA'), (72718, 'https://ror.org/036vvw903', 'en', 1, 'https://ror.org/036vvw903 Blackwood'), (72719, 'https://ror.org/036w35554', 'en', 1, 'https://ror.org/036w35554 African Centre for Advanced Studies'), (72720, 'https://ror.org/036wb1d88', 'no_lang_code', 1, 'https://ror.org/036wb1d88 Conspiro (Sweden)'), (72721, 'https://ror.org/036wgjt32', 'en', 1, 'https://ror.org/036wgjt32 Institute for Research in Schools'), (72722, 'https://ror.org/036y1an55', 'no_lang_code', 1, 'https://ror.org/036y1an55 Keysight Technologies (Austria)'), (72723, 'https://ror.org/036y4q615', 'no_lang_code', 1, 'https://ror.org/036y4q615 Vector (United States)'), (72724, 'https://ror.org/03718pw44', 'en', 1, 'https://ror.org/03718pw44 The Hindu Group (India)'), (72725, 'https://ror.org/03723ft34', 'en', 1, 'https://ror.org/03723ft34 Legal Policy Research Centre Центр исследования правовой политики'), (72726, 'https://ror.org/0372j2579', 'en', 1, 'https://ror.org/0372j2579 Cambodian Institute for Cooperation and Peace វិទ្យាស្ថានខ្មែរសម្រាប់សហប្រតិបត្តិការនិងសន្តិភាព'), (72727, 'https://ror.org/03730gy78', 'no_lang_code', 1, 'https://ror.org/03730gy78 Agile Scientific (Canada)'), (72728, 'https://ror.org/0373nkv83', 'en', 1, 'https://ror.org/0373nkv83 The Soar Foundation'), (72729, 'https://ror.org/03755pe12', 'en', 1, 'https://ror.org/03755pe12 Satyajit Ray Film and Television Institute'), (72730, 'https://ror.org/037668223', 'no_lang_code', 1, 'https://ror.org/037668223 cPacket (United States)'), (72731, 'https://ror.org/0377cab50', 'en', 1, 'https://ror.org/0377cab50 The Samdhana Institute'), (72732, 'https://ror.org/03781qc53', 'no_lang_code', 1, 'https://ror.org/03781qc53 Frontier Energy (United States)'), (72733, 'https://ror.org/0378sf364', 'fr', 1, 'https://ror.org/0378sf364 Laboratoire Structure et Dynamique par Résonance Magnétique'), (72734, 'https://ror.org/037a1dk33', 'no_lang_code', 1, 'https://ror.org/037a1dk33 Medical Architecture (United Kingdom)'), (72735, 'https://ror.org/037a35y56', 'en', 1, 'https://ror.org/037a35y56 Moving the GoalPosts'), (72736, 'https://ror.org/037a3hd22', 'en', 1, 'https://ror.org/037a3hd22 Aberlour'), (72737, 'https://ror.org/037aan677', 'en', 1, 'https://ror.org/037aan677 New Zealand eScience Infrastructure'), (72738, 'https://ror.org/037e7x320', 'no_lang_code', 1, 'https://ror.org/037e7x320 Actar (Spain)'), (72739, 'https://ror.org/037ef6262', 'en', 1, 'https://ror.org/037ef6262 Architects for Health'), (72740, 'https://ror.org/037g37s09', 'no_lang_code', 1, 'https://ror.org/037g37s09 Concentris Systems (United States)'), (72741, 'https://ror.org/037hv9r60', 'en', 1, 'https://ror.org/037hv9r60 Efficient Energy Centre'), (72742, 'https://ror.org/037nqez35', 'en', 1, 'https://ror.org/037nqez35 Myanmar Geosciences Society'), (72743, 'https://ror.org/037q25y47', 'en', 1, 'https://ror.org/037q25y47 The Lewis Carroll Society'), (72744, 'https://ror.org/037s2cq86', 'en', 1, 'https://ror.org/037s2cq86 British Chambers of Commerce'), (72745, 'https://ror.org/037trk629', 'en', 1, 'https://ror.org/037trk629 Volunteer Dundee'), (72746, 'https://ror.org/037y0zy96', 'en', 1, 'https://ror.org/037y0zy96 Studies in Poverty and Inequality Institute'), (72747, 'https://ror.org/037yg6j37', 'en', 1, 'https://ror.org/037yg6j37 Norfolk Archaeological Trust'), (72748, 'https://ror.org/0381acm07', 'no_lang_code', 1, 'https://ror.org/0381acm07 Samsung (Poland)'), (72749, 'https://ror.org/0382h3v61', 'cs', 1, 'https://ror.org/0382h3v61 Základní škola a Praktická škola Svítání'), (72750, 'https://ror.org/0383d6s93', 'no_lang_code', 1, 'https://ror.org/0383d6s93 Blekinge Business Incubator (Sweden)'), (72751, 'https://ror.org/038a3t246', 'en', 1, 'https://ror.org/038a3t246 International Center for Transitional Justice'), (72752, 'https://ror.org/038c5v419', 'no_lang_code', 1, 'https://ror.org/038c5v419 NMAS Group (United States)'), (72753, 'https://ror.org/038cgya65', 'en', 1, 'https://ror.org/038cgya65 International Center for Advanced Research and Training'), (72754, 'https://ror.org/038ec0d06', 'no_lang_code', 1, 'https://ror.org/038ec0d06 Sri Caitanya Prema Samsthana'), (72755, 'https://ror.org/038es3z80', 'pt', 1, 'https://ror.org/038es3z80 Clínica de Psiquiatria Psiquimei'), (72756, 'https://ror.org/038gr4r81', 'en', 1, 'https://ror.org/038gr4r81 Hawley Collection'), (72757, 'https://ror.org/038jgf307', 'en', 1, 'https://ror.org/038jgf307 National Army Museum'), (72758, 'https://ror.org/038jw0f49', 'en', 1, 'https://ror.org/038jw0f49 The German Marshall Fund of the United States'), (72759, 'https://ror.org/038jwkk56', 'no_lang_code', 1, 'https://ror.org/038jwkk56 Copersucar (Brazil)'), (72760, 'https://ror.org/038mavt60', 'en', 1, 'https://ror.org/038mavt60 Astana Medical University Медицинский университет Астана'), (72761, 'https://ror.org/038mf7084', 'en', 1, 'https://ror.org/038mf7084 Institute of Directors'), (72762, 'https://ror.org/038n2xa05', 'en', 1, 'https://ror.org/038n2xa05 Supreme Court of the Republic of Slovenia Vrhovno sodišče Republike Slovenije'), (72763, 'https://ror.org/038rkt253', 'en', 1, 'https://ror.org/038rkt253 Kelvingrove Art Gallery and Museum'), (72764, 'https://ror.org/038rpgw61', 'de', 1, 'https://ror.org/038rpgw61 Bayerische Landesanstalt für Wald und Forstwirtschaft'), (72765, 'https://ror.org/038rpm246', 'no_lang_code', 1, 'https://ror.org/038rpm246 GHKN Engineering (United States)'), (72766, 'https://ror.org/038smxt70', 'en', 1, 'https://ror.org/038smxt70 Myanmar Institute of Information Technology'), (72767, 'https://ror.org/038swrn45', 'no_lang_code', 1, 'https://ror.org/038swrn45 Critical Imaging (United States)'), (72768, 'https://ror.org/038t8cx05', 'en', 1, 'https://ror.org/038t8cx05 Northern Architecture'), (72769, 'https://ror.org/038tbvr34', 'pt', 1, 'https://ror.org/038tbvr34 Instituto Papai'), (72770, 'https://ror.org/038v0bj29', 'en', 1, 'https://ror.org/038v0bj29 Pomfret School'), (72771, 'https://ror.org/038v45r36', 'no_lang_code', 1, 'https://ror.org/038v45r36 Vèringer (Spain)'), (72772, 'https://ror.org/038x31d44', 'no_lang_code', 1, 'https://ror.org/038x31d44 Anagin (United States)'), (72773, 'https://ror.org/038xhby63', 'en', 1, 'https://ror.org/038xhby63 Comprehensive Cardiovascular'), (72774, 'https://ror.org/038y41363', 'cs', 1, 'https://ror.org/038y41363 Nadace Neziskovky'), (72775, 'https://ror.org/038zk4221', 'no_lang_code', 1, 'https://ror.org/038zk4221 Chip Scan (United States)'), (72776, 'https://ror.org/0390vgx68', 'en', 1, 'https://ror.org/0390vgx68 European Theoretical Spectroscopy Facility'), (72777, 'https://ror.org/0391mhw96', 'en', 1, 'https://ror.org/0391mhw96 The David Hume Institute'), (72778, 'https://ror.org/0394gje76', 'no_lang_code', 1, 'https://ror.org/0394gje76 Command and Control Technologies Corporation (United States)'), (72779, 'https://ror.org/03953th04', 'no_lang_code', 1, 'https://ror.org/03953th04 American Metal Processing (United States)'), (72780, 'https://ror.org/0397m3490', 'no_lang_code', 1, 'https://ror.org/0397m3490 Ash Access Technology (United States)'), (72781, 'https://ror.org/03989be61', 'en', 1, 'https://ror.org/03989be61 National Association of Cider Makers'), (72782, 'https://ror.org/039ahdn18', 'en', 1, 'https://ror.org/039ahdn18 Slovak Rectors´Conference Slovenská rektorská konferencia'), (72783, 'https://ror.org/039cmfe51', 'en', 1, 'https://ror.org/039cmfe51 Vienna Institute for Urban Sustainability'), (72784, 'https://ror.org/039d0ar12', 'no_lang_code', 1, 'https://ror.org/039d0ar12 Hattaway Communications (United States)'), (72785, 'https://ror.org/039dvf662', 'en', 1, 'https://ror.org/039dvf662 Kenya Community Development Foundation'), (72786, 'https://ror.org/039e9be94', 'en', 1, 'https://ror.org/039e9be94 Garden Street Academy'), (72787, 'https://ror.org/039fs9a88', 'no_lang_code', 1, 'https://ror.org/039fs9a88 CMGI (Poland)'), (72788, 'https://ror.org/039fta733', 'en', 1, 'https://ror.org/039fta733 West of England Centre for Inclusive Living'), (72789, 'https://ror.org/039g88209', 'no', 1, 'https://ror.org/039g88209 Kongsberg sykehus'), (72790, 'https://ror.org/039jhgf83', 'en', 1, 'https://ror.org/039jhgf83 China Automotive Engineering Research Institute 中国汽车工程研究院有限公司'), (72791, 'https://ror.org/039mm4q57', 'no_lang_code', 1, 'https://ror.org/039mm4q57 Eaton (Brazil)'), (72792, 'https://ror.org/039n1nw87', 'en', 1, 'https://ror.org/039n1nw87 New York City Council'), (72793, 'https://ror.org/039psj505', 'no_lang_code', 1, 'https://ror.org/039psj505 Lightening Energy (United States)'), (72794, 'https://ror.org/039qtbx12', 'en', 1, 'https://ror.org/039qtbx12 Kidney Associates'), (72795, 'https://ror.org/039r16z31', 'no_lang_code', 1, 'https://ror.org/039r16z31 Stratec (Germany)'), (72796, 'https://ror.org/039txbb33', 'no_lang_code', 1, 'https://ror.org/039txbb33 Nanogen (United States)'), (72797, 'https://ror.org/039v1f004', 'no_lang_code', 1, 'https://ror.org/039v1f004 Centrum Badawczo - Produkcyjne DGT (Poland)'), (72798, 'https://ror.org/039wwq736', 'en', 1, 'https://ror.org/039wwq736 Public Affairs Research Institute'), (72799, 'https://ror.org/039xsf007', 'en', 1, 'https://ror.org/039xsf007 Otharlann Chontae Thír Eoghain Tyrone County Hospital'), (72800, 'https://ror.org/039y2jb71', 'en', 1, 'https://ror.org/039y2jb71 Lawyers'' Committee for Civil Rights Under Law'), (72801, 'https://ror.org/039y9ma09', 'no_lang_code', 1, 'https://ror.org/039y9ma09 Laser & Plasma Technologies (United States)'), (72802, 'https://ror.org/039zhwx76', 'en', 1, 'https://ror.org/039zhwx76 Buddhist Digital Resource Center'), (72803, 'https://ror.org/03a111314', 'en', 1, 'https://ror.org/03a111314 Institute of History of Mediterranean Europe Istituto di Storia dell''Europa Mediterranea'), (72804, 'https://ror.org/03a1ecb29', 'no_lang_code', 1, 'https://ror.org/03a1ecb29 Fidesmo (Sweden)'), (72805, 'https://ror.org/03a3rm692', 'en', 1, 'https://ror.org/03a3rm692 Museum of Australian Democracy'), (72806, 'https://ror.org/03a3z0217', 'en', 1, 'https://ror.org/03a3z0217 Institute for Research and Empowerment'), (72807, 'https://ror.org/03a8ase89', 'en', 1, 'https://ror.org/03a8ase89 Institute of Physics of Molecules and Crystals Институт физики молекул и кристаллов'), (72808, 'https://ror.org/03aamfw77', 'en', 1, 'https://ror.org/03aamfw77 Freedman Consulting'), (72809, 'https://ror.org/03ab9ve27', 'en', 1, 'https://ror.org/03ab9ve27 Mental Health America'), (72810, 'https://ror.org/03aeskr81', 'en', 1, 'https://ror.org/03aeskr81 European Association for Biometrics'), (72811, 'https://ror.org/03af8y353', 'no_lang_code', 1, 'https://ror.org/03af8y353 Hermes Medical Solutions (United Kingdom)'), (72812, 'https://ror.org/03ahp4j53', 'en', 1, 'https://ror.org/03ahp4j53 Restaurant Opportunities Centers United'), (72813, 'https://ror.org/03ajz9454', 'en', 1, 'https://ror.org/03ajz9454 China Society for Urban Studies'), (72814, 'https://ror.org/03ak5rf34', 'en', 1, 'https://ror.org/03ak5rf34 The Colebrooke Centre'), (72815, 'https://ror.org/03ak5tq12', 'no_lang_code', 1, 'https://ror.org/03ak5tq12 Microscale (United States)'), (72816, 'https://ror.org/03akcxx27', 'en', 1, 'https://ror.org/03akcxx27 District of Columbia Department of Forensic Sciences'), (72817, 'https://ror.org/03akdaa97', 'no_lang_code', 1, 'https://ror.org/03akdaa97 Inossia (Sweden)'), (72818, 'https://ror.org/03amggk32', 'en', 1, 'https://ror.org/03amggk32 Dupuytren Research Group'), (72819, 'https://ror.org/03amnyx79', 'no_lang_code', 1, 'https://ror.org/03amnyx79 Ecoat (France)'), (72820, 'https://ror.org/03an8gd42', 'no_lang_code', 1, 'https://ror.org/03an8gd42 intuVision (United States)'), (72821, 'https://ror.org/03ang6a06', 'en', 1, 'https://ror.org/03ang6a06 The Fermanagh Trust'), (72822, 'https://ror.org/03apry564', 'en', 1, 'https://ror.org/03apry564 Oak Field School and Sports College'), (72823, 'https://ror.org/03aqxew96', 'no_lang_code', 1, 'https://ror.org/03aqxew96 ChM (Poland)'), (72824, 'https://ror.org/03ar4yr57', 'en', 1, 'https://ror.org/03ar4yr57 Alliance for Justice'), (72825, 'https://ror.org/03ast5668', 'no_lang_code', 1, 'https://ror.org/03ast5668 TetraScience (United States)'), (72826, 'https://ror.org/03atnhf44', 'no_lang_code', 1, 'https://ror.org/03atnhf44 Archimage (United States)'), (72827, 'https://ror.org/03aw8az69', 'no_lang_code', 1, 'https://ror.org/03aw8az69 Biomedical Research Laboratories (United States)'), (72828, 'https://ror.org/03ay16t61', 'en', 1, 'https://ror.org/03ay16t61 National Gugak Center 국립국악원'), (72829, 'https://ror.org/03b0cap52', 'en', 1, 'https://ror.org/03b0cap52 Fundação Roberto Marinho Roberto Marinho Foundation'), (72830, 'https://ror.org/03b4e1389', 'no_lang_code', 1, 'https://ror.org/03b4e1389 Fiore Industries (United States)'), (72831, 'https://ror.org/03b51p242', 'no_lang_code', 1, 'https://ror.org/03b51p242 Canget BioTekpharma (United States)'), (72832, 'https://ror.org/03b5pw144', 'en', 1, 'https://ror.org/03b5pw144 Centre for the Study of Culture and Society ಸಂಸ್ಕೃತಿ ಮತ್ತು ಸಮಾಜ ಅಧ್ಯಯನ ಕೇಂದ್ರದ'), (72833, 'https://ror.org/03b6bz334', 'no_lang_code', 1, 'https://ror.org/03b6bz334 Voltaiq (United States)'), (72834, 'https://ror.org/03b6wpc57', 'no_lang_code', 1, 'https://ror.org/03b6wpc57 Tech-X (United Kingdom)'), (72835, 'https://ror.org/03b8fd746', 'en', 1, 'https://ror.org/03b8fd746 Chief Fire Officers Association'), (72836, 'https://ror.org/03b8sbf49', 'en', 1, 'https://ror.org/03b8sbf49 Industrie, Tourisme et Investissement Industry, Tourism and Investment'), (72837, 'https://ror.org/03b9dsq97', 'en', 1, 'https://ror.org/03b9dsq97 Xcellon School of Business'), (72838, 'https://ror.org/03b9pqg16', 'en', 1, 'https://ror.org/03b9pqg16 The Wahid Institute'), (72839, 'https://ror.org/03bdktf45', 'no_lang_code', 1, 'https://ror.org/03bdktf45 Fracsun (United States)'), (72840, 'https://ror.org/03bfpw005', 'en', 1, 'https://ror.org/03bfpw005 Sheffield Beekeepers'' Association'), (72841, 'https://ror.org/03bgw1x40', 'en', 1, 'https://ror.org/03bgw1x40 Institute of Epidemiology, Disease Control and Research ইনস্টিটিউট অব এপিডেমোলোজি ডিজিজ কন্ট্রোল এন্ড রিসার্চ আইইডিসিআর'), (72842, 'https://ror.org/03bjdat74', 'no_lang_code', 1, 'https://ror.org/03bjdat74 Design Science (United Kingdom)'), (72843, 'https://ror.org/03bm1r569', 'en', 1, 'https://ror.org/03bm1r569 Medical Prescription Services'), (72844, 'https://ror.org/03bnq5z51', 'en', 1, 'https://ror.org/03bnq5z51 Palestinian Center for Research and Cultural Dialogue المركز الفلسطيني للدراسات وحوار'), (72845, 'https://ror.org/03bpswy98', 'en', 1, 'https://ror.org/03bpswy98 Alliance for a Just Society'), (72846, 'https://ror.org/03br5ck68', 'no_lang_code', 1, 'https://ror.org/03br5ck68 Absorption Systems (United States)'), (72847, 'https://ror.org/03bsbp090', 'no_lang_code', 1, 'https://ror.org/03bsbp090 Minitube (United States)'), (72848, 'https://ror.org/03bvswz74', 'no_lang_code', 1, 'https://ror.org/03bvswz74 Telesis Corporation (United States)'), (72849, 'https://ror.org/03bxpek11', 'en', 1, 'https://ror.org/03bxpek11 Colonial Society of Massachusetts'), (72850, 'https://ror.org/03c33cs95', 'en', 1, 'https://ror.org/03c33cs95 National Sheep Association'), (72851, 'https://ror.org/03c388s57', 'en', 1, 'https://ror.org/03c388s57 United Kingdom Antarctic Heritage Trust'), (72852, 'https://ror.org/03c71f034', 'en', 1, 'https://ror.org/03c71f034 Los Angeles Police Department'), (72853, 'https://ror.org/03c782j94', 'no_lang_code', 1, 'https://ror.org/03c782j94 Judd Systems Technologies (United States)'), (72854, 'https://ror.org/03c7nm582', 'no_lang_code', 1, 'https://ror.org/03c7nm582 Innovimmune Biotherapeutics (United States)'), (72855, 'https://ror.org/03c87q579', 'en', 1, 'https://ror.org/03c87q579 The Point of Care Foundation'), (72856, 'https://ror.org/03c9pj817', 'en', 1, 'https://ror.org/03c9pj817 Tanganyika Law Society'), (72857, 'https://ror.org/03c9tb453', 'en', 1, 'https://ror.org/03c9tb453 Swadhinata Trust'), (72858, 'https://ror.org/03caes622', 'en', 1, 'https://ror.org/03caes622 Colchester + Ipswich Museums'), (72859, 'https://ror.org/03cbybs32', 'no_lang_code', 1, 'https://ror.org/03cbybs32 Jericho Sciences (United States)'), (72860, 'https://ror.org/03cfe5t18', 'en', 1, 'https://ror.org/03cfe5t18 The Mainichi 株式会社毎日新聞社'), (72861, 'https://ror.org/03cgw6h63', 'no_lang_code', 1, 'https://ror.org/03cgw6h63 Elveflow (France)'), (72862, 'https://ror.org/03ch48z85', 'en', 1, 'https://ror.org/03ch48z85 American Visionary Art Museum'), (72863, 'https://ror.org/03chj8432', 'en', 1, 'https://ror.org/03chj8432 Regen'), (72864, 'https://ror.org/03cj4xr84', 'no_lang_code', 1, 'https://ror.org/03cj4xr84 Newind (Poland)'), (72865, 'https://ror.org/03cn5zn95', 'en', 1, 'https://ror.org/03cn5zn95 Occupational Research and Assessment'), (72866, 'https://ror.org/03cnk2k35', 'no_lang_code', 1, 'https://ror.org/03cnk2k35 TCC Group (United States)'), (72867, 'https://ror.org/03cnkgk49', 'en', 1, 'https://ror.org/03cnkgk49 Erie Arts and Culture'), (72868, 'https://ror.org/03cnz7c57', 'en', 1, 'https://ror.org/03cnz7c57 Ministry of Culture وزارة الثقافة'), (72869, 'https://ror.org/03cp8z405', 'fr', 1, 'https://ror.org/03cp8z405 Comportement et Écologie de la Faune Sauvage'), (72870, 'https://ror.org/03cph9p23', 'en', 1, 'https://ror.org/03cph9p23 Leonard Cheshire'), (72871, 'https://ror.org/03ct9r646', 'no_lang_code', 1, 'https://ror.org/03ct9r646 DBV Technology (United States)'), (72872, 'https://ror.org/03cv0r897', 'en', 1, 'https://ror.org/03cv0r897 Dallas Theological Seminary'), (72873, 'https://ror.org/03cwrs750', 'no_lang_code', 1, 'https://ror.org/03cwrs750 Allen (United States)'), (72874, 'https://ror.org/03cxfcp49', 'en', 1, 'https://ror.org/03cxfcp49 Bangladesh Islamic Foundation ইসলামিক ফাউন্ডেশন বাংলাদেশ'), (72875, 'https://ror.org/03cxgaw61', 'no_lang_code', 1, 'https://ror.org/03cxgaw61 K-Rep Development Agency (Kenya)'), (72876, 'https://ror.org/03cybp342', 'en', 1, 'https://ror.org/03cybp342 Media Design School'), (72877, 'https://ror.org/03cync167', 'en', 1, 'https://ror.org/03cync167 International Summer School of Photography'), (72878, 'https://ror.org/03cz45f13', 'no', 1, 'https://ror.org/03cz45f13 Skedsmo Medisinske Senter'), (72879, 'https://ror.org/03d022g94', 'en', 1, 'https://ror.org/03d022g94 Indonesian Coffee and Cocoa Research Institute'), (72880, 'https://ror.org/03d17d270', 'en', 1, 'https://ror.org/03d17d270 University of Washington Applied Physics Laboratory'), (72881, 'https://ror.org/03d2jk391', 'fr', 1, 'https://ror.org/03d2jk391 Laboratoire de Génie Civil, Diagnostic et Durabilité'), (72882, 'https://ror.org/03d3dj187', 'no_lang_code', 1, 'https://ror.org/03d3dj187 Protected Trust Services (United Kingdom)'), (72883, 'https://ror.org/03d4czf80', 'en', 1, 'https://ror.org/03d4czf80 United Nations System Staff College'), (72884, 'https://ror.org/03d5t5j62', 'en', 1, 'https://ror.org/03d5t5j62 Rare Breeds Survival Trust'), (72885, 'https://ror.org/03d6kfv69', 'no_lang_code', 1, 'https://ror.org/03d6kfv69 Centripetal (United States)'), (72886, 'https://ror.org/03daz6p93', 'de', 1, 'https://ror.org/03daz6p93 Evangelisches Klinikum Köln Weyertal'), (72887, 'https://ror.org/03dbje387', 'no_lang_code', 1, 'https://ror.org/03dbje387 Austral Engineering and Software (United States)'), (72888, 'https://ror.org/03dbpxy52', 'de', 1, 'https://ror.org/03dbpxy52 DRK Kliniken Berlin'), (72889, 'https://ror.org/03dg97q02', 'en', 1, 'https://ror.org/03dg97q02 Center for Economic Progress'), (72890, 'https://ror.org/03dhgb547', 'no_lang_code', 1, 'https://ror.org/03dhgb547 TOMSAD Tomasz Sadowski (Poland)'), (72891, 'https://ror.org/03dj32m19', 'en', 1, 'https://ror.org/03dj32m19 Local Area Research & Intelligence Association'), (72892, 'https://ror.org/03djana98', 'no_lang_code', 1, 'https://ror.org/03djana98 LaCell (United States)'), (72893, 'https://ror.org/03djjyk45', 'en', 1, 'https://ror.org/03djjyk45 Center for Effective Global Action'), (72894, 'https://ror.org/03dkq2191', 'en', 1, 'https://ror.org/03dkq2191 Ministry of Internal Affairs МИНИСТЕРСТВО ЗА ВНАТРЕШНИ РАБОТИ'), (72895, 'https://ror.org/03dnwsa64', 'no_lang_code', 1, 'https://ror.org/03dnwsa64 Opegieka (Poland)'), (72896, 'https://ror.org/03dq65642', 'es', 1, 'https://ror.org/03dq65642 Instituto Mora, Instituto de Investigaciones Dr. José María Luis Mora'), (72897, 'https://ror.org/03dqgwy22', 'sv', 1, 'https://ror.org/03dqgwy22 Funka Nu'), (72898, 'https://ror.org/03dsf5v84', 'en', 1, 'https://ror.org/03dsf5v84 Partick Housing Association'), (72899, 'https://ror.org/03dwcee04', 'en', 1, 'https://ror.org/03dwcee04 Co.As.It.'), (72900, 'https://ror.org/03dyp1558', 'no_lang_code', 1, 'https://ror.org/03dyp1558 MPTS (Poland)'), (72901, 'https://ror.org/03dywr773', 'en', 1, 'https://ror.org/03dywr773 Community-Campus Partnerships for Health'), (72902, 'https://ror.org/03e14gy69', 'no_lang_code', 1, 'https://ror.org/03e14gy69 GenomeDesigns Lab (United States)'), (72903, 'https://ror.org/03e5mh597', 'en', 1, 'https://ror.org/03e5mh597 Broadstairs College'), (72904, 'https://ror.org/03ebpdd69', 'no_lang_code', 1, 'https://ror.org/03ebpdd69 Liquids Research (United Kingdom)'), (72905, 'https://ror.org/03ee4bv96', 'en', 1, 'https://ror.org/03ee4bv96 New York City Bar Association'), (72906, 'https://ror.org/03efa2608', 'en', 1, 'https://ror.org/03efa2608 National Indigenous Organization of Colombia Organización Nacional Indígena de Colombia'), (72907, 'https://ror.org/03efpdt52', 'no_lang_code', 1, 'https://ror.org/03efpdt52 Applied Tissue Technologies (United States)'), (72908, 'https://ror.org/03eg1sw22', 'en', 1, 'https://ror.org/03eg1sw22 Sheppey College'), (72909, 'https://ror.org/03egje930', 'en', 1, 'https://ror.org/03egje930 Association for Learning Technology'), (72910, 'https://ror.org/03ekrpq59', 'en', 1, 'https://ror.org/03ekrpq59 Dubai International Financial Centre'), (72911, 'https://ror.org/03evgp013', 'en', 1, 'https://ror.org/03evgp013 Centre for Rural Legal Studies'), (72912, 'https://ror.org/03ey1ct92', 'en', 1, 'https://ror.org/03ey1ct92 Wildfowl & Wetlands Trust'), (72913, 'https://ror.org/03eykm948', 'en', 1, 'https://ror.org/03eykm948 Islamic Azad University, Buin-Zahra'), (72914, 'https://ror.org/03ezj6665', 'sv', 1, 'https://ror.org/03ezj6665 NyföretagarCentrum'), (72915, 'https://ror.org/03ezkck64', 'en', 1, 'https://ror.org/03ezkck64 Chartered Management Institute'), (72916, 'https://ror.org/03ezrv005', 'no_lang_code', 1, 'https://ror.org/03ezrv005 AgroBio Associação das Empresas de Biotecnologia na Agricultura e Agroindústria'), (72917, 'https://ror.org/03f0f5j83', 'en', 1, 'https://ror.org/03f0f5j83 Communications Consortium Media Center'), (72918, 'https://ror.org/03f2hv234', 'no_lang_code', 1, 'https://ror.org/03f2hv234 AVL (Sweden)'), (72919, 'https://ror.org/03f2nzb42', 'en', 1, 'https://ror.org/03f2nzb42 The LGBT Centre ЛГБТ Төв'), (72920, 'https://ror.org/03f2wzg57', 'en', 1, 'https://ror.org/03f2wzg57 Asian-Pacific Resource and Research Centre for Women'), (72921, 'https://ror.org/03f358370', 'en', 1, 'https://ror.org/03f358370 Institute of Environmental Management and Assessment'), (72922, 'https://ror.org/03f3pxe20', 'en', 1, 'https://ror.org/03f3pxe20 Shenyang Fifth People Hospital 沈阳市第五人民医院'), (72923, 'https://ror.org/03f78hn46', 'no_lang_code', 1, 'https://ror.org/03f78hn46 Search'), (72924, 'https://ror.org/03f8ja864', 'en', 1, 'https://ror.org/03f8ja864 British Council'), (72925, 'https://ror.org/03f9hxz36', 'no_lang_code', 1, 'https://ror.org/03f9hxz36 Companhia Brasileira de Aluminio'), (72926, 'https://ror.org/03fb51s41', 'no_lang_code', 1, 'https://ror.org/03fb51s41 Biorecro (Sweden)'), (72927, 'https://ror.org/03fdaw896', 'en', 1, 'https://ror.org/03fdaw896 Learning Spaces Collaboratory'), (72928, 'https://ror.org/03fdvjw85', 'en', 1, 'https://ror.org/03fdvjw85 Ahmad Dahlan School of Economics Sekolah Tinggi Ilmu Ekonomi Ahmad Dahlan Jakarta'), (72929, 'https://ror.org/03fg3n924', 'no_lang_code', 1, 'https://ror.org/03fg3n924 Mobile Foundations (United States)'), (72930, 'https://ror.org/03fgzbf19', 'no_lang_code', 1, 'https://ror.org/03fgzbf19 Concordance Health Solutions (United States)'), (72931, 'https://ror.org/03fjx1y08', 'no_lang_code', 1, 'https://ror.org/03fjx1y08 Gesynta Pharma (Sweden)'), (72932, 'https://ror.org/03fjysk97', 'en', 1, 'https://ror.org/03fjysk97 V&A Museum of Childhood'), (72933, 'https://ror.org/03fka6907', 'no_lang_code', 1, 'https://ror.org/03fka6907 Hyperion Technology Group (United States)'), (72934, 'https://ror.org/03fmbdf82', 'en', 1, 'https://ror.org/03fmbdf82 United States Court of Appeals for the Seventh Circuit'), (72935, 'https://ror.org/03fnt7n10', 'no_lang_code', 1, 'https://ror.org/03fnt7n10 BrightSpec'), (72936, 'https://ror.org/03fr3nn32', 'en', 1, 'https://ror.org/03fr3nn32 National Centre for Resilience'), (72937, 'https://ror.org/03fs9z545', 'en', 1, 'https://ror.org/03fs9z545 Mahidol Oxford Tropical Medicine Research Unit'), (72938, 'https://ror.org/03ftfv496', 'no_lang_code', 1, 'https://ror.org/03ftfv496 Applied Decision Science (United States)'), (72939, 'https://ror.org/03fxa2376', 'en', 1, 'https://ror.org/03fxa2376 Shenzhen Baoan High School Group 深圳市宝安中学'), (72940, 'https://ror.org/03fxxfx37', 'en', 1, 'https://ror.org/03fxxfx37 Social Market Foundation'), (72941, 'https://ror.org/03g016n94', 'no_lang_code', 1, 'https://ror.org/03g016n94 AlyXan (France)'), (72942, 'https://ror.org/03g0fjg84', 'en', 1, 'https://ror.org/03g0fjg84 Saint Louis Zoo'), (72943, 'https://ror.org/03g1d8888', 'en', 1, 'https://ror.org/03g1d8888 Institute of Town Planners, Sri lanka'), (72944, 'https://ror.org/03g24h954', 'en', 1, 'https://ror.org/03g24h954 MRS Training & Rescue'), (72945, 'https://ror.org/03g26ah87', 'fr', 1, 'https://ror.org/03g26ah87 Hôpital Universitaire International Cheikh Khalifa المستشفى الجامعي الدولي الشيخ زايد'), (72946, 'https://ror.org/03g2atw04', 'no_lang_code', 1, 'https://ror.org/03g2atw04 Mind (Poland)'), (72947, 'https://ror.org/03g343n58', 'no_lang_code', 1, 'https://ror.org/03g343n58 FSCX (United States)'), (72948, 'https://ror.org/03g4bhz29', 'en', 1, 'https://ror.org/03g4bhz29 Canterbury College'), (72949, 'https://ror.org/03g5wrk88', 'no_lang_code', 1, 'https://ror.org/03g5wrk88 Simerics (United States)'), (72950, 'https://ror.org/03g64g296', 'en', 1, 'https://ror.org/03g64g296 The Christian and Missionary Alliance'), (72951, 'https://ror.org/03g658126', 'no_lang_code', 1, 'https://ror.org/03g658126 Imaxio (France)'), (72952, 'https://ror.org/03g8he721', 'no_lang_code', 1, 'https://ror.org/03g8he721 EUV Labs (Russia)'), (72953, 'https://ror.org/03g8mjq73', 'en', 1, 'https://ror.org/03g8mjq73 London Fire Brigade'), (72954, 'https://ror.org/03g93g135', 'en', 1, 'https://ror.org/03g93g135 Azerbaijan Social Work Public Union Azərbaycan Sosial İş İctimai Birliyi'), (72955, 'https://ror.org/03g9ft432', 'en', 1, 'https://ror.org/03g9ft432 The Hearth'), (72956, 'https://ror.org/03gbabd35', 'en', 1, 'https://ror.org/03gbabd35 Institute of Coal Chemistry and Material Science Института углехимии и химического материаловедения'), (72957, 'https://ror.org/03gdwf180', 'en', 1, 'https://ror.org/03gdwf180 National Film and Sound Archive of Australia'), (72958, 'https://ror.org/03ges2v44', 'no_lang_code', 1, 'https://ror.org/03ges2v44 CytaCoat (Sweden)'), (72959, 'https://ror.org/03gf6ma44', 'en', 1, 'https://ror.org/03gf6ma44 Shaanxi Research Association for Women and Family 陕西省妇女理论婚姻家庭研究会'), (72960, 'https://ror.org/03gg0m324', 'en', 1, 'https://ror.org/03gg0m324 Danish Institute at Athens Ινστιτούτο της Δανίας στην Αθήνα'), (72961, 'https://ror.org/03gjvye03', 'en', 1, 'https://ror.org/03gjvye03 Our Lady of Maryknoll Hospital 聖母醫院'), (72962, 'https://ror.org/03gk5bm92', 'en', 1, 'https://ror.org/03gk5bm92 Kazakh-American Free University Қазақстан-Американдық еркін университеті'), (72963, 'https://ror.org/03grydy67', 'no_lang_code', 1, 'https://ror.org/03grydy67 Pelago Bioscience (Sweden)'); INSERT INTO `rors` VALUES (72964, 'https://ror.org/03gs68n54', 'fr', 1, 'https://ror.org/03gs68n54 Aide et Recherche en Cancérologie Digestive, Fondation ARCAD'), (72965, 'https://ror.org/03gs9sh82', 'no_lang_code', 1, 'https://ror.org/03gs9sh82 BioVentures (United States)'), (72966, 'https://ror.org/03gxz3j07', 'en', 1, 'https://ror.org/03gxz3j07 Polish Society of Oriental Art Polski Instytut Studiów nad Sztuką Świata'), (72967, 'https://ror.org/03gyt6j98', 'pt', 1, 'https://ror.org/03gyt6j98 Coopercitrus Cooperativa de Produtores Rurais'), (72968, 'https://ror.org/03gzqe894', 'en', 1, 'https://ror.org/03gzqe894 Niels Brock'), (72969, 'https://ror.org/03h1s0z86', 'en', 1, 'https://ror.org/03h1s0z86 Transparency International'), (72970, 'https://ror.org/03h20ca94', 'en', 1, 'https://ror.org/03h20ca94 Walk Free Foundation'), (72971, 'https://ror.org/03h3p2g48', 'en', 1, 'https://ror.org/03h3p2g48 SolarAid'), (72972, 'https://ror.org/03h41b845', 'no_lang_code', 1, 'https://ror.org/03h41b845 Royal Shakespeare Company (United Kingdom)'), (72973, 'https://ror.org/03h7pxc12', 'no_lang_code', 1, 'https://ror.org/03h7pxc12 Iceotope Technologies (United Kingdom)'), (72974, 'https://ror.org/03h7rjb68', 'en', 1, 'https://ror.org/03h7rjb68 Botswana Institute for Technology Research and Innovation'), (72975, 'https://ror.org/03h837345', 'nl', 1, 'https://ror.org/03h837345 Astronomisch Fysisch Onderzoek Nederland'), (72976, 'https://ror.org/03h8kn192', 'en', 1, 'https://ror.org/03h8kn192 International Union of Police Associations'), (72977, 'https://ror.org/03h8nf250', 'no_lang_code', 1, 'https://ror.org/03h8nf250 Binergy Scientific (United States)'), (72978, 'https://ror.org/03h8wyx14', 'pt', 1, 'https://ror.org/03h8wyx14 Instituto Paulo Gontijo'), (72979, 'https://ror.org/03haheq63', 'no_lang_code', 1, 'https://ror.org/03haheq63 Engineering Technologies and Developments (Ukraine)'), (72980, 'https://ror.org/03ham4v40', 'it', 1, 'https://ror.org/03ham4v40 Opificio delle Pietre Dure'), (72981, 'https://ror.org/03hbejw10', 'en', 1, 'https://ror.org/03hbejw10 Collaborative Laboratory Services'), (72982, 'https://ror.org/03hbksy74', 'no_lang_code', 1, 'https://ror.org/03hbksy74 Airbus (United States)'), (72983, 'https://ror.org/03hbnfz28', 'en', 1, 'https://ror.org/03hbnfz28 Nautical Archaeology Society'), (72984, 'https://ror.org/03hd9pr71', 'no_lang_code', 1, 'https://ror.org/03hd9pr71 Palumed (France)'), (72985, 'https://ror.org/03hensb66', 'en', 1, 'https://ror.org/03hensb66 Witness'), (72986, 'https://ror.org/03hgy0s07', 'en', 1, 'https://ror.org/03hgy0s07 Ho Chi Minh National Academy of Politics Học viện Chính trị Quốc gia Hồ Chí Minh'), (72987, 'https://ror.org/03hh6sn09', 'en', 1, 'https://ror.org/03hh6sn09 Yunnan Building Materials Research & Design Institute 云南大学建筑与规划学院'), (72988, 'https://ror.org/03hhqgr50', 'en', 1, 'https://ror.org/03hhqgr50 Peace Through Folk'), (72989, 'https://ror.org/03hjaw451', 'no_lang_code', 1, 'https://ror.org/03hjaw451 Daico Industries (United States)'), (72990, 'https://ror.org/03hjbp089', 'en', 1, 'https://ror.org/03hjbp089 Wallace Kelsey Research Foundation'), (72991, 'https://ror.org/03hqbt751', 'en', 1, 'https://ror.org/03hqbt751 Angela Ash Associates'), (72992, 'https://ror.org/03hqq6242', 'es', 1, 'https://ror.org/03hqq6242 Plan Ceibal'), (72993, 'https://ror.org/03hqz0977', 'no_lang_code', 1, 'https://ror.org/03hqz0977 Microtrace (United States)'), (72994, 'https://ror.org/03hr98c08', 'en', 1, 'https://ror.org/03hr98c08 The History Teachers'' Association of Australia'), (72995, 'https://ror.org/03hrkx094', 'no_lang_code', 1, 'https://ror.org/03hrkx094 Gadusol Laboratories (United States)'), (72996, 'https://ror.org/03htrq259', 'en', 1, 'https://ror.org/03htrq259 Camino Public Relations'), (72997, 'https://ror.org/03hxch322', 'en', 1, 'https://ror.org/03hxch322 1947 Partition Archive'), (72998, 'https://ror.org/03hxhpz06', 'en', 1, 'https://ror.org/03hxhpz06 Wildlife Conservation Society United Kingdom'), (72999, 'https://ror.org/03hxrwp69', 'no_lang_code', 1, 'https://ror.org/03hxrwp69 Shopping Live (Russia)'), (73000, 'https://ror.org/03hzr9w43', 'en', 1, 'https://ror.org/03hzr9w43 Club & Institute Union'), (73001, 'https://ror.org/03j0tz946', 'no_lang_code', 1, 'https://ror.org/03j0tz946 Detector Technology (United States)'), (73002, 'https://ror.org/03j2yjz09', 'en', 1, 'https://ror.org/03j2yjz09 North Norfolk Clinical Commissioning Group'), (73003, 'https://ror.org/03j3q6b81', 'ro', 1, 'https://ror.org/03j3q6b81 Spitalul Clinic Dr. Victor Babes'), (73004, 'https://ror.org/03ja1tq30', 'no_lang_code', 1, 'https://ror.org/03ja1tq30 HOPE Innovations (Canada)'), (73005, 'https://ror.org/03ja7dr12', 'en', 1, 'https://ror.org/03ja7dr12 International Air Transport Association'), (73006, 'https://ror.org/03jaxrf75', 'en', 1, 'https://ror.org/03jaxrf75 Cumberland County Historical Society'), (73007, 'https://ror.org/03jbvpa78', 'en', 1, 'https://ror.org/03jbvpa78 Association for Play Therapy'), (73008, 'https://ror.org/03jcfvc38', 'no_lang_code', 1, 'https://ror.org/03jcfvc38 Multibeam (United States)'), (73009, 'https://ror.org/03jdaez56', 'en', 1, 'https://ror.org/03jdaez56 Africa Research Institute'), (73010, 'https://ror.org/03jdn7e64', 'en', 1, 'https://ror.org/03jdn7e64 Association of University Research Parks'), (73011, 'https://ror.org/03jf1cp95', 'en', 1, 'https://ror.org/03jf1cp95 Social Tech Trust'), (73012, 'https://ror.org/03jjc4667', 'en', 1, 'https://ror.org/03jjc4667 Ministry of Agriculture and Fisheries وزارة الزراعة والثروة السمكية - سلطنة عُمان'), (73013, 'https://ror.org/03jjj8766', 'en', 1, 'https://ror.org/03jjj8766 Green Technology'), (73014, 'https://ror.org/03jjzp129', 'en', 1, 'https://ror.org/03jjzp129 Los Angeles County Superior Court'), (73015, 'https://ror.org/03jn9cy69', 'en', 1, 'https://ror.org/03jn9cy69 Harry S. Truman Presidential Library and Museum'), (73016, 'https://ror.org/03jpft613', 'no_lang_code', 1, 'https://ror.org/03jpft613 Metal Storm (United States)'), (73017, 'https://ror.org/03jqv7547', 'no_lang_code', 1, 'https://ror.org/03jqv7547 Lumibird (France)'), (73018, 'https://ror.org/03jr24865', 'en', 1, 'https://ror.org/03jr24865 Blackpool Better Start'), (73019, 'https://ror.org/03jr6e130', 'no_lang_code', 1, 'https://ror.org/03jr6e130 Zębiec (Poland)'), (73020, 'https://ror.org/03jrg4537', 'en', 1, 'https://ror.org/03jrg4537 British Association for South Asian Studies'), (73021, 'https://ror.org/03js0ja63', 'en', 1, 'https://ror.org/03js0ja63 Havering College of Further and Higher Education'), (73022, 'https://ror.org/03jtvc520', 'en', 1, 'https://ror.org/03jtvc520 Energiewirtschaftliches Institut an der Universität zu Köln Institute of Energy Economics at the University of Cologne'), (73023, 'https://ror.org/03jxrtv34', 'no_lang_code', 1, 'https://ror.org/03jxrtv34 Alaskanativetech (United States)'), (73024, 'https://ror.org/03k3mtb84', 'en', 1, 'https://ror.org/03k3mtb84 Kino Klassika Foundation'), (73025, 'https://ror.org/03k434963', 'pt', 1, 'https://ror.org/03k434963 Instituto de Estudos do Trabalho e Sociedade'), (73026, 'https://ror.org/03k4hy467', 'en', 1, 'https://ror.org/03k4hy467 Virgin Care'), (73027, 'https://ror.org/03k5dtn35', 'en', 1, 'https://ror.org/03k5dtn35 One Text Initiative'), (73028, 'https://ror.org/03k7v4244', 'no_lang_code', 1, 'https://ror.org/03k7v4244 Infinity (United States)'), (73029, 'https://ror.org/03k85sj46', 'en', 1, 'https://ror.org/03k85sj46 Learning Policy Institute'), (73030, 'https://ror.org/03kcznq08', 'en', 1, 'https://ror.org/03kcznq08 Convergence'), (73031, 'https://ror.org/03kd8zx94', 'en', 1, 'https://ror.org/03kd8zx94 Council of State Administrators of Vocational Rehabilitation'), (73032, 'https://ror.org/03kecmv77', 'en', 1, 'https://ror.org/03kecmv77 Consumer Federation of America'), (73033, 'https://ror.org/03kfjwh70', 'nl', 1, 'https://ror.org/03kfjwh70 College voor de Rechten van de Mens'), (73034, 'https://ror.org/03kfmyx03', 'en', 1, 'https://ror.org/03kfmyx03 Canterbury Museums and Galleries'), (73035, 'https://ror.org/03kg58a97', 'no_lang_code', 1, 'https://ror.org/03kg58a97 Diassess (United States)'), (73036, 'https://ror.org/03kg5d423', 'en', 1, 'https://ror.org/03kg5d423 PRS Legislative Research'), (73037, 'https://ror.org/03khf9f69', 'en', 1, 'https://ror.org/03khf9f69 Turnaround for Children'), (73038, 'https://ror.org/03kky0014', 'en', 1, 'https://ror.org/03kky0014 Community Development and Health Network'), (73039, 'https://ror.org/03kmk3010', 'no_lang_code', 1, 'https://ror.org/03kmk3010 Inanovate (United States)'), (73040, 'https://ror.org/03knmxa92', 'en', 1, 'https://ror.org/03knmxa92 Dynamic Object Language Labs'), (73041, 'https://ror.org/03kpvz984', 'en', 1, 'https://ror.org/03kpvz984 Jobs With Justice'), (73042, 'https://ror.org/03ktp1v56', 'no_lang_code', 1, 'https://ror.org/03ktp1v56 NuSep (United States)'), (73043, 'https://ror.org/03ktsar73', 'en', 1, 'https://ror.org/03ktsar73 AARP Foundation'), (73044, 'https://ror.org/03kwqy112', 'no_lang_code', 1, 'https://ror.org/03kwqy112 GPB Scientific (United States)'), (73045, 'https://ror.org/03ky9yn97', 'en', 1, 'https://ror.org/03ky9yn97 Structural Timber Association'), (73046, 'https://ror.org/03kyeae64', 'en', 1, 'https://ror.org/03kyeae64 Nile University'), (73047, 'https://ror.org/03m252h72', 'no_lang_code', 1, 'https://ror.org/03m252h72 Bashpole Software (United States)'), (73048, 'https://ror.org/03m2a9c60', 'en', 1, 'https://ror.org/03m2a9c60 UK Health Forum'), (73049, 'https://ror.org/03m2raa30', 'en', 1, 'https://ror.org/03m2raa30 Beijing Gender Health Education Institute 北京纪安德咨询中心'), (73050, 'https://ror.org/03m2tmd95', 'en', 1, 'https://ror.org/03m2tmd95 National Institute for Pharmaceutical Technology & Education'), (73051, 'https://ror.org/03m3bzv26', 'no_lang_code', 1, 'https://ror.org/03m3bzv26 Kytaro (United States)'), (73052, 'https://ror.org/03m3kst85', 'en', 1, 'https://ror.org/03m3kst85 Wales Council for Voluntary Action'), (73053, 'https://ror.org/03m56sb16', 'en', 1, 'https://ror.org/03m56sb16 Gloag Foundation'), (73054, 'https://ror.org/03m659k95', 'en', 1, 'https://ror.org/03m659k95 Alfred Williams Heritage Society'), (73055, 'https://ror.org/03m91y886', 'no_lang_code', 1, 'https://ror.org/03m91y886 Shirkat Gah'), (73056, 'https://ror.org/03m92j615', 'no_lang_code', 1, 'https://ror.org/03m92j615 Axiom (United States)'), (73057, 'https://ror.org/03m9tj704', 'en', 1, 'https://ror.org/03m9tj704 The Kauri Museum'), (73058, 'https://ror.org/03mc4hv80', 'en', 1, 'https://ror.org/03mc4hv80 California Latinas for Reproductive Justice'), (73059, 'https://ror.org/03md19g63', 'en', 1, 'https://ror.org/03md19g63 Lapido Media'), (73060, 'https://ror.org/03meb1477', 'en', 1, 'https://ror.org/03meb1477 Oswestry Town Museum'), (73061, 'https://ror.org/03med0831', 'en', 1, 'https://ror.org/03med0831 Al-Ahram Center for Political and Strategic Studies مركز الأهرام للدراسات السياسية والاستراتيجية'), (73062, 'https://ror.org/03mf8nk10', 'en', 1, 'https://ror.org/03mf8nk10 DanChurchAid'), (73063, 'https://ror.org/03mfwzh84', 'en', 1, 'https://ror.org/03mfwzh84 The Work Foundation'), (73064, 'https://ror.org/03mj23d77', 'en', 1, 'https://ror.org/03mj23d77 Institute of Livelihood Research and Training లైవ్లీహుడ్ రీసెర్చ్ అండ్ ట్రైనింగ్ ఇన్స్టిట్యూట్'), (73065, 'https://ror.org/03mk3w518', 'en', 1, 'https://ror.org/03mk3w518 Seattle Psychoanalytic Society and Institute'), (73066, 'https://ror.org/03mmb0d82', 'fr', 1, 'https://ror.org/03mmb0d82 Bases, Corpus, Langage'), (73067, 'https://ror.org/03mpmj050', 'no_lang_code', 1, 'https://ror.org/03mpmj050 Torkapparater (Sweden)'), (73068, 'https://ror.org/03mq02m67', 'en', 1, 'https://ror.org/03mq02m67 Limón Institute'), (73069, 'https://ror.org/03mqht986', 'no_lang_code', 1, 'https://ror.org/03mqht986 LogMeIn (United Kingdom)'), (73070, 'https://ror.org/03mr6bx04', 'en', 1, 'https://ror.org/03mr6bx04 Zayed Higher Organization for Humanitarian Care and Special Needs سسة زايد العليا مؤسسة زايد العليا للرعاية الإنسانية والإحتياجات الخاصة'), (73071, 'https://ror.org/03mrd4308', 'en', 1, 'https://ror.org/03mrd4308 Salem City Schools'), (73072, 'https://ror.org/03mrdtb06', 'en', 1, 'https://ror.org/03mrdtb06 International Association of Teachers of English as a Foreign Language'), (73073, 'https://ror.org/03mrs5c75', 'no_lang_code', 1, 'https://ror.org/03mrs5c75 Kuźnia Stalowa Wola (Poland)'), (73074, 'https://ror.org/03msnc432', 'no_lang_code', 1, 'https://ror.org/03msnc432 SpectraCure (Sweden)'), (73075, 'https://ror.org/03mt2tp20', 'en', 1, 'https://ror.org/03mt2tp20 Federation for Self Financing Tertiary Education 自資高等教育聯盟'), (73076, 'https://ror.org/03mv13182', 'en', 1, 'https://ror.org/03mv13182 Ways to Wellness'), (73077, 'https://ror.org/03mv51c78', 'en', 1, 'https://ror.org/03mv51c78 Airport Services Association'), (73078, 'https://ror.org/03mvw5b45', 'en', 1, 'https://ror.org/03mvw5b45 Sheffield Industrial Museums Trust'), (73079, 'https://ror.org/03mw0xn70', 'no_lang_code', 1, 'https://ror.org/03mw0xn70 Royal London Group (United Kingdom)'), (73080, 'https://ror.org/03mwh5n08', 'no_lang_code', 1, 'https://ror.org/03mwh5n08 Jonas (United States)'), (73081, 'https://ror.org/03mxmdc96', 'en', 1, 'https://ror.org/03mxmdc96 Institute of Religious Studies Instituto de Estudos da Religião'), (73082, 'https://ror.org/03mxt3314', 'en', 1, 'https://ror.org/03mxt3314 Family Mediation Council'), (73083, 'https://ror.org/03n103c50', 'en', 1, 'https://ror.org/03n103c50 Habitat for Humanity'), (73084, 'https://ror.org/03n1csv23', 'en', 1, 'https://ror.org/03n1csv23 Institute of Criminology of the Polish Forensic Association Polskie Towarzystwo Kryminalistyczne'), (73085, 'https://ror.org/03n1jcy96', 'de', 1, 'https://ror.org/03n1jcy96 DRK Krankenhaus Altenkirchen-Hachenburg'), (73086, 'https://ror.org/03n3d2997', 'en', 1, 'https://ror.org/03n3d2997 Paediatric Emergency Research in the United Kingdom & Ireland'), (73087, 'https://ror.org/03n3erz85', 'en', 1, 'https://ror.org/03n3erz85 Koshish Charitable Trust कोशिश'), (73088, 'https://ror.org/03n3xvs04', 'en', 1, 'https://ror.org/03n3xvs04 Solar Fuels Institute'), (73089, 'https://ror.org/03n4dkj44', 'no_lang_code', 1, 'https://ror.org/03n4dkj44 Chhandam School of Kathak'), (73090, 'https://ror.org/03n4e9s45', 'en', 1, 'https://ror.org/03n4e9s45 Human Services Coalition'), (73091, 'https://ror.org/03n8a0v21', 'en', 1, 'https://ror.org/03n8a0v21 Coalition for Community Schools'), (73092, 'https://ror.org/03n8g5s30', 'no_lang_code', 1, 'https://ror.org/03n8g5s30 Carbon Carbon Advanced Technologies (United States)'), (73093, 'https://ror.org/03nfq0y30', 'en', 1, 'https://ror.org/03nfq0y30 Association for Robots in Architecture'), (73094, 'https://ror.org/03nj9bh85', 'no_lang_code', 1, 'https://ror.org/03nj9bh85 Corgenix (United States)'), (73095, 'https://ror.org/03nkk3987', 'en', 1, 'https://ror.org/03nkk3987 Worcestershire Health and Care NHS Trust'), (73096, 'https://ror.org/03nm0d152', 'en', 1, 'https://ror.org/03nm0d152 Media Archive for Central England'), (73097, 'https://ror.org/03nm8wc96', 'en', 1, 'https://ror.org/03nm8wc96 Glenbow Museum'), (73098, 'https://ror.org/03nm9bt69', 'no_lang_code', 1, 'https://ror.org/03nm9bt69 Howell Laboratories (United States)'), (73099, 'https://ror.org/03nnaq439', 'en', 1, 'https://ror.org/03nnaq439 One to One Development Trust'), (73100, 'https://ror.org/03nq9vg83', 'no_lang_code', 1, 'https://ror.org/03nq9vg83 Getica (Sweden)'), (73101, 'https://ror.org/03nqaj348', 'no_lang_code', 1, 'https://ror.org/03nqaj348 Bell Biosystems (United States)'), (73102, 'https://ror.org/03nr7d398', 'en', 1, 'https://ror.org/03nr7d398 Center for Evaluation and Development Mannheimer Zentrum für Evaluation und Entwicklungsforschung'), (73103, 'https://ror.org/03ns2gd62', 'no_lang_code', 1, 'https://ror.org/03ns2gd62 C-2 Innovations (United States)'), (73104, 'https://ror.org/03nt2n936', 'no_lang_code', 1, 'https://ror.org/03nt2n936 SilMach (France)'), (73105, 'https://ror.org/03nt6qk39', 'no_lang_code', 1, 'https://ror.org/03nt6qk39 CheckUp & Choices (United States)'), (73106, 'https://ror.org/03ntwd790', 'en', 1, 'https://ror.org/03ntwd790 Xavier Institute of Communications ज़ेवियर इंस्टिट्यूट ऑफ़ कम्युनिकेशन्स'), (73107, 'https://ror.org/03nv0w254', 'no_lang_code', 1, 'https://ror.org/03nv0w254 Acorn Science & Innovation (United States)'), (73108, 'https://ror.org/03p13vc55', 'no_lang_code', 1, 'https://ror.org/03p13vc55 Insilixa (United States)'), (73109, 'https://ror.org/03p61g771', 'en', 1, 'https://ror.org/03p61g771 Toniic Institute'), (73110, 'https://ror.org/03p7n1480', 'no_lang_code', 1, 'https://ror.org/03p7n1480 Cardiosolv Ablation Technologies (United States)'), (73111, 'https://ror.org/03p878384', 'en', 1, 'https://ror.org/03p878384 Association of English Cathedrals'), (73112, 'https://ror.org/03p8djp35', 'no_lang_code', 1, 'https://ror.org/03p8djp35 Uttarakhand Seva Nidhi Paryavaran Shiksha Sansthan'), (73113, 'https://ror.org/03p8mx045', 'no_lang_code', 1, 'https://ror.org/03p8mx045 Curl Bio (United States)'), (73114, 'https://ror.org/03p9ccw33', 'en', 1, 'https://ror.org/03p9ccw33 American Jazz Institute'), (73115, 'https://ror.org/03p9zdb14', 'no_lang_code', 1, 'https://ror.org/03p9zdb14 ISCO International (United States)'), (73116, 'https://ror.org/03pbq8185', 'en', 1, 'https://ror.org/03pbq8185 National Council for Black Studies'), (73117, 'https://ror.org/03pesqc02', 'en', 1, 'https://ror.org/03pesqc02 Center for Whale Research'), (73118, 'https://ror.org/03phkpc68', 'no_lang_code', 1, 'https://ror.org/03phkpc68 LightStanza (United States)'), (73119, 'https://ror.org/03pk2ae02', 'en', 1, 'https://ror.org/03pk2ae02 Amani Institute Uganda'), (73120, 'https://ror.org/03pkrh852', 'no_lang_code', 1, 'https://ror.org/03pkrh852 Tauron Wytwarzanie (Poland)'), (73121, 'https://ror.org/03pm3k527', 'no_lang_code', 1, 'https://ror.org/03pm3k527 AlphaTRAC (United States)'), (73122, 'https://ror.org/03pm6jn74', 'en', 1, 'https://ror.org/03pm6jn74 Health Nest Uganda'), (73123, 'https://ror.org/03pm74b25', 'en', 1, 'https://ror.org/03pm74b25 Arkansas Community Colleges'), (73124, 'https://ror.org/03pm82185', 'no_lang_code', 1, 'https://ror.org/03pm82185 Lingua et Machina (France)'), (73125, 'https://ror.org/03pmk4927', 'no_lang_code', 1, 'https://ror.org/03pmk4927 Emerald Sky Technologies'), (73126, 'https://ror.org/03pp91130', 'no_lang_code', 1, 'https://ror.org/03pp91130 Heliospectra (Sweden)'), (73127, 'https://ror.org/03pr6f932', 'en', 1, 'https://ror.org/03pr6f932 Darbar'), (73128, 'https://ror.org/03pr7sz08', 'en', 1, 'https://ror.org/03pr7sz08 International Association of Plumbing and Mechanical Officials'), (73129, 'https://ror.org/03preh705', 'sv', 1, 'https://ror.org/03preh705 WeMind'), (73130, 'https://ror.org/03prq2784', 'en', 1, 'https://ror.org/03prq2784 Zhuzhou Central Hospital 株洲市中心医院'), (73131, 'https://ror.org/03prqps50', 'no_lang_code', 1, 'https://ror.org/03prqps50 4Power (United States)'), (73132, 'https://ror.org/03ps8mj31', 'en', 1, 'https://ror.org/03ps8mj31 Watershed Support Services and Activities Network'), (73133, 'https://ror.org/03psr8197', 'no_lang_code', 1, 'https://ror.org/03psr8197 AsystBio (United States)'), (73134, 'https://ror.org/03pvzeb17', 'en', 1, 'https://ror.org/03pvzeb17 Kansas City Public Schools'), (73135, 'https://ror.org/03px6cm72', 'no_lang_code', 1, 'https://ror.org/03px6cm72 NBL Technovator Group (Japan)'), (73136, 'https://ror.org/03q1m1j52', 'en', 1, 'https://ror.org/03q1m1j52 IST Research'), (73137, 'https://ror.org/03q3g6770', 'no_lang_code', 1, 'https://ror.org/03q3g6770 RIKA (Austria)'), (73138, 'https://ror.org/03q4ccx33', 'en', 1, 'https://ror.org/03q4ccx33 Acropolis Museum Μουσείο Ακρόπολης'), (73139, 'https://ror.org/03q51r998', 'no_lang_code', 1, 'https://ror.org/03q51r998 Valero Energy (United States)'), (73140, 'https://ror.org/03q5h1s54', 'no_lang_code', 1, 'https://ror.org/03q5h1s54 Eicosis (United States)'), (73141, 'https://ror.org/03q674f15', 'en', 1, 'https://ror.org/03q674f15 Polish Academy of Learning Polska Akademia Umiejętności'), (73142, 'https://ror.org/03q8mf789', 'no_lang_code', 1, 'https://ror.org/03q8mf789 Goleta Engineering (United States)'), (73143, 'https://ror.org/03q8q9685', 'en', 1, 'https://ror.org/03q8q9685 Academia de Administrare Publică Academy of Public Administration'), (73144, 'https://ror.org/03qa33147', 'en', 1, 'https://ror.org/03qa33147 Gladstone Pottery Museum'), (73145, 'https://ror.org/03qbv1q25', 'en', 1, 'https://ror.org/03qbv1q25 China Institutes of Contemporary International Relations 中国现代国际关系研究院'), (73146, 'https://ror.org/03qc0jc41', 'no_lang_code', 1, 'https://ror.org/03qc0jc41 Saratoga Cardiology Associates (United States)'), (73147, 'https://ror.org/03qdg6h95', 'no_lang_code', 1, 'https://ror.org/03qdg6h95 Inscopix (United States)'), (73148, 'https://ror.org/03qe16108', 'en', 1, 'https://ror.org/03qe16108 Directorate General of Training'), (73149, 'https://ror.org/03qe43686', 'no_lang_code', 1, 'https://ror.org/03qe43686 HNU Photonics (United States)'), (73150, 'https://ror.org/03qgydn21', 'es', 1, 'https://ror.org/03qgydn21 Escuela Nacional Superior de Ballet'), (73151, 'https://ror.org/03qj46y39', 'en', 1, 'https://ror.org/03qj46y39 Ministry of Labour, Social Security and Services'), (73152, 'https://ror.org/03qkv5w58', 'en', 1, 'https://ror.org/03qkv5w58 Inward Bound Mindfulness Education'), (73153, 'https://ror.org/03qrymy45', 'no_lang_code', 1, 'https://ror.org/03qrymy45 Medsleuth (United States)'), (73154, 'https://ror.org/03qs0wq41', 'no_lang_code', 1, 'https://ror.org/03qs0wq41 Cervantes Institute'), (73155, 'https://ror.org/03qsj7h32', 'no_lang_code', 1, 'https://ror.org/03qsj7h32 Danpet (Sweden)'), (73156, 'https://ror.org/03qsnan22', 'en', 1, 'https://ror.org/03qsnan22 Alaska Community Action on Toxics'), (73157, 'https://ror.org/03qyybc26', 'no_lang_code', 1, 'https://ror.org/03qyybc26 Kyocera (United Kingdom)'), (73158, 'https://ror.org/03r1eja77', 'no_lang_code', 1, 'https://ror.org/03r1eja77 Accacia International (United States)'), (73159, 'https://ror.org/03r32j025', 'no_lang_code', 1, 'https://ror.org/03r32j025 NeuroProof (Germany)'), (73160, 'https://ror.org/03r4xtg30', 'en', 1, 'https://ror.org/03r4xtg30 Cat Tien National Park Vườn Quốc Gia Cát Tiên'), (73161, 'https://ror.org/03r79dj18', 'pt', 1, 'https://ror.org/03r79dj18 Anis'), (73162, 'https://ror.org/03r9xyh10', 'no_lang_code', 1, 'https://ror.org/03r9xyh10 Inproel (Poland)'), (73163, 'https://ror.org/03rab9n37', 'en', 1, 'https://ror.org/03rab9n37 Indonesia International Institute for Life Sciences'), (73164, 'https://ror.org/03rc7sa66', 'no_lang_code', 1, 'https://ror.org/03rc7sa66 Automation, Information, and Management Systems (United States)'), (73165, 'https://ror.org/03rdg0s47', 'en', 1, 'https://ror.org/03rdg0s47 British Ports Association'), (73166, 'https://ror.org/03rkfnq75', 'en', 1, 'https://ror.org/03rkfnq75 Equal Education Law Centre'), (73167, 'https://ror.org/03rqs0g29', 'en', 1, 'https://ror.org/03rqs0g29 Hội Nhà báo Việt Nam Vietnam Journalists Association'), (73168, 'https://ror.org/03rw4ty96', 'en', 1, 'https://ror.org/03rw4ty96 Beijing Social Work Development Center for Facilitators 北京市协作者社会工作发展中心'), (73169, 'https://ror.org/03rx9tc73', 'sv', 1, 'https://ror.org/03rx9tc73 Västtrafik'), (73170, 'https://ror.org/03rz1c626', 'en', 1, 'https://ror.org/03rz1c626 The Carbon Monoxide and Gas Safety Society'), (73171, 'https://ror.org/03rzjkf65', 'no_lang_code', 1, 'https://ror.org/03rzjkf65 Apptronik (United States)'), (73172, 'https://ror.org/03s13k126', 'pt', 1, 'https://ror.org/03s13k126 Hospital das Clínicas Samuel Libânio'), (73173, 'https://ror.org/03s1pjm91', 'no_lang_code', 1, 'https://ror.org/03s1pjm91 LatinoJustice PRLDEF'), (73174, 'https://ror.org/03s2zgf58', 'en', 1, 'https://ror.org/03s2zgf58 Polish Stem Cell Bank Polski Bank Komórek Macierzystych'), (73175, 'https://ror.org/03s3a5s78', 'en', 1, 'https://ror.org/03s3a5s78 Bulgarian Helsinki Committee'), (73176, 'https://ror.org/03s84bz47', 'fr', 1, 'https://ror.org/03s84bz47 Centre Lavallois de Ressources Technologiques, Clarte'), (73177, 'https://ror.org/03s9q3c79', 'en', 1, 'https://ror.org/03s9q3c79 Poetry International Foundation'), (73178, 'https://ror.org/03sax3264', 'en', 1, 'https://ror.org/03sax3264 Southern Technical University الجامعة التقنية الجنوبية'), (73179, 'https://ror.org/03saz4k78', 'no_lang_code', 1, 'https://ror.org/03saz4k78 TeleMedic Systems (United Kingdom)'), (73180, 'https://ror.org/03sbkjp44', 'no_lang_code', 1, 'https://ror.org/03sbkjp44 Cognionics (United States)'), (73181, 'https://ror.org/03sc8dz05', 'en', 1, 'https://ror.org/03sc8dz05 Ministry of Land Management, Urban Planning and Construction ក្រសួងរៀបចំដែនដី នគរូបនីយកម្ម និងសំណង់'), (73182, 'https://ror.org/03scfd225', 'en', 1, 'https://ror.org/03scfd225 Arab Center for International Humanitarian Law and Human Rights Education Centre Arabe pour l''Education au Droit International Humanitaire et aux Droits Humains'), (73183, 'https://ror.org/03schyf67', 'no_lang_code', 1, 'https://ror.org/03schyf67 CLEARink (United States)'), (73184, 'https://ror.org/03sd3yf61', 'de', 1, 'https://ror.org/03sd3yf61 Senckenberg am Meer'), (73185, 'https://ror.org/03sdvv968', 'en', 1, 'https://ror.org/03sdvv968 Marine Science Coordination Committee'), (73186, 'https://ror.org/03se4em19', 'no_lang_code', 1, 'https://ror.org/03se4em19 Axillium Research (United Kingdom)'), (73187, 'https://ror.org/03sezsp15', 'en', 1, 'https://ror.org/03sezsp15 Cohen Medical Associates'), (73188, 'https://ror.org/03snh5g40', 'de', 1, 'https://ror.org/03snh5g40 Ameos Klinikum Inntal'), (73189, 'https://ror.org/03snzra40', 'en', 1, 'https://ror.org/03snzra40 Institute of Information Security Professionals'), (73190, 'https://ror.org/03sp64371', 'en', 1, 'https://ror.org/03sp64371 British Council'), (73191, 'https://ror.org/03spr2751', 'en', 1, 'https://ror.org/03spr2751 Empower Schools'), (73192, 'https://ror.org/03sq05k80', 'en', 1, 'https://ror.org/03sq05k80 Red Poll Cattle Society'), (73193, 'https://ror.org/03sqqkw27', 'en', 1, 'https://ror.org/03sqqkw27 Society for Labour & Development'), (73194, 'https://ror.org/03sr9xs40', 'de', 1, 'https://ror.org/03sr9xs40 Dermatopathologie Friedrichshafen'), (73195, 'https://ror.org/03ss3kc28', 'en', 1, 'https://ror.org/03ss3kc28 HealthWORKS Newcastle'), (73196, 'https://ror.org/03ssym444', 'en', 1, 'https://ror.org/03ssym444 Publishers Licensing Services'), (73197, 'https://ror.org/03stctc86', 'no_lang_code', 1, 'https://ror.org/03stctc86 Enetjärn Natur (Sweden)'), (73198, 'https://ror.org/03stza714', 'no_lang_code', 1, 'https://ror.org/03stza714 Shanxi Museum 山西博物院'), (73199, 'https://ror.org/03sz41d72', 'de', 1, 'https://ror.org/03sz41d72 Südharz Klinikum'), (73200, 'https://ror.org/03t0jaj83', 'en', 1, 'https://ror.org/03t0jaj83 British Association for Islamic Studies'), (73201, 'https://ror.org/03t0w9n05', 'no_lang_code', 1, 'https://ror.org/03t0w9n05 Sama (Brazil)'), (73202, 'https://ror.org/03t35rn28', 'en', 1, 'https://ror.org/03t35rn28 National Engineering and Scientific Commission'), (73203, 'https://ror.org/03t3fww40', 'no_lang_code', 1, 'https://ror.org/03t3fww40 CellSight Technologies (United States)'), (73204, 'https://ror.org/03t6v9748', 'en', 1, 'https://ror.org/03t6v9748 The Communication Trust'), (73205, 'https://ror.org/03t7fe423', 'en', 1, 'https://ror.org/03t7fe423 East Belfast Community Development Agency'), (73206, 'https://ror.org/03t9eke74', 'en', 1, 'https://ror.org/03t9eke74 Corrymeela Community'), (73207, 'https://ror.org/03tcray14', 'no_lang_code', 1, 'https://ror.org/03tcray14 Peppy Pals (Sweden)'), (73208, 'https://ror.org/03tdwc870', 'no_lang_code', 1, 'https://ror.org/03tdwc870 Compositex (United States)'), (73209, 'https://ror.org/03tecy818', 'no_lang_code', 1, 'https://ror.org/03tecy818 Aché (Brazil)'), (73210, 'https://ror.org/03tf2ww78', 'en', 1, 'https://ror.org/03tf2ww78 Jammu and Kashmir Academy of Art, Culture and Languages'), (73211, 'https://ror.org/03tfjft98', 'en', 1, 'https://ror.org/03tfjft98 American Bible Society'), (73212, 'https://ror.org/03tht7k87', 'no_lang_code', 1, 'https://ror.org/03tht7k87 Dendris (France)'), (73213, 'https://ror.org/03tkmjj17', 'en', 1, 'https://ror.org/03tkmjj17 Indian Law Resource Center'), (73214, 'https://ror.org/03tmyej96', 'en', 1, 'https://ror.org/03tmyej96 Centro de Investigación en Ecosistemas de la Patagonia Patagonian Ecosystems Investigation Research Center'), (73215, 'https://ror.org/03tny0b60', 'no_lang_code', 1, 'https://ror.org/03tny0b60 Hesperos (United States)'), (73216, 'https://ror.org/03tp6qw94', 'no_lang_code', 1, 'https://ror.org/03tp6qw94 Ceryx Medical (United Kingdom)'), (73217, 'https://ror.org/03tqm1w89', 'no_lang_code', 1, 'https://ror.org/03tqm1w89 Erallo Technologies (United States)'), (73218, 'https://ror.org/03trz9s27', 'en', 1, 'https://ror.org/03trz9s27 Centre for Social Innovation'), (73219, 'https://ror.org/03tv6h054', 'en', 1, 'https://ror.org/03tv6h054 Police Executive Research Forum'), (73220, 'https://ror.org/03tvfd726', 'no_lang_code', 1, 'https://ror.org/03tvfd726 Marin Miljöanalys Marine Environmental Analysis (Sweden)'), (73221, 'https://ror.org/03tw07585', 'no_lang_code', 1, 'https://ror.org/03tw07585 Jackson and Tull (United States)'), (73222, 'https://ror.org/03twde329', 'no_lang_code', 1, 'https://ror.org/03twde329 CellOptic (United States)'), (73223, 'https://ror.org/03twgdg85', 'de', 1, 'https://ror.org/03twgdg85 Medizinische Zentrum für Gesundheit'), (73224, 'https://ror.org/03tzxbr55', 'en', 1, 'https://ror.org/03tzxbr55 Georgian Arts and Culture Center ქართული ხელოვნების ინსტიტუტი წამყვანი მეცნიერი'), (73225, 'https://ror.org/03v0pfp89', 'en', 1, 'https://ror.org/03v0pfp89 WATCH'), (73226, 'https://ror.org/03v4d6h23', 'en', 1, 'https://ror.org/03v4d6h23 The National Institute for Latino Policy'), (73227, 'https://ror.org/03v50hq42', 'no_lang_code', 1, 'https://ror.org/03v50hq42 Coapt (United States)'), (73228, 'https://ror.org/03v78xj45', 'en', 1, 'https://ror.org/03v78xj45 Public Health Research Consortium'), (73229, 'https://ror.org/03v80r862', 'no_lang_code', 1, 'https://ror.org/03v80r862 Governo (Sweden)'), (73230, 'https://ror.org/03vagve85', 'no_lang_code', 1, 'https://ror.org/03vagve85 Alector (United States)'), (73231, 'https://ror.org/03vc6ep30', 'en', 1, 'https://ror.org/03vc6ep30 Center for Urban History of East Central Europe Центр міської історії центрально-східної Європи'), (73232, 'https://ror.org/03vd0wp03', 'en', 1, 'https://ror.org/03vd0wp03 DDR Museum'), (73233, 'https://ror.org/03vd5n125', 'no_lang_code', 1, 'https://ror.org/03vd5n125 FringeArts'), (73234, 'https://ror.org/03vebqe40', 'en', 1, 'https://ror.org/03vebqe40 Software Carpentry'), (73235, 'https://ror.org/03vewy051', 'en', 1, 'https://ror.org/03vewy051 Bay Area Cardiology and Vascular Associates'), (73236, 'https://ror.org/03vg1zh21', 'no_lang_code', 1, 'https://ror.org/03vg1zh21 Brinks Gilson & Lione (United States)'), (73237, 'https://ror.org/03vgw1v49', 'en', 1, 'https://ror.org/03vgw1v49 Bundesamt für Migration und Flüchtlinge Federal Office for Migration and Refugees'), (73238, 'https://ror.org/03vj16b25', 'en', 1, 'https://ror.org/03vj16b25 Money Advice Trust'), (73239, 'https://ror.org/03vqhcv86', 'no_lang_code', 1, 'https://ror.org/03vqhcv86 Gamma Therapeutics (United States)'), (73240, 'https://ror.org/03vr3gq96', 'en', 1, 'https://ror.org/03vr3gq96 Institute of Chartered Financial Analysts of India University, Jaipur'), (73241, 'https://ror.org/03vrs3080', 'en', 1, 'https://ror.org/03vrs3080 National Management Degree College'), (73242, 'https://ror.org/03vt7za95', 'en', 1, 'https://ror.org/03vt7za95 Xi''an High Tech University 西安高新科技职业学院'), (73243, 'https://ror.org/03vw5v747', 'en', 1, 'https://ror.org/03vw5v747 Toft Historical Society'), (73244, 'https://ror.org/03vwaan51', 'en', 1, 'https://ror.org/03vwaan51 PetroVietnam University Trường Đại học Dầu khí Việt Nam'), (73245, 'https://ror.org/03vx81s20', 'en', 1, 'https://ror.org/03vx81s20 Mamta Health Institute for Mother and Child'), (73246, 'https://ror.org/03w0gh820', 'en', 1, 'https://ror.org/03w0gh820 Bletchley Park Trust'), (73247, 'https://ror.org/03w1yvq02', 'no_lang_code', 1, 'https://ror.org/03w1yvq02 PressCise (Sweden)'), (73248, 'https://ror.org/03w2bez90', 'en', 1, 'https://ror.org/03w2bez90 National Mining Museum Scotland'), (73249, 'https://ror.org/03w343k42', 'no_lang_code', 1, 'https://ror.org/03w343k42 Gleechi (Sweden)'), (73250, 'https://ror.org/03w764380', 'no_lang_code', 1, 'https://ror.org/03w764380 Amercom (United States)'), (73251, 'https://ror.org/03w7tz659', 'en', 1, 'https://ror.org/03w7tz659 Ishara Puppet Theatre Trust'), (73252, 'https://ror.org/03w836z53', 'no_lang_code', 1, 'https://ror.org/03w836z53 Adient Medical (United States)'), (73253, 'https://ror.org/03w8ev131', 'en', 1, 'https://ror.org/03w8ev131 British Olympic Association'), (73254, 'https://ror.org/03w8g0847', 'en', 1, 'https://ror.org/03w8g0847 West Virginia Department of Military Affairs and Public Safety'), (73255, 'https://ror.org/03w8kgm26', 'en', 1, 'https://ror.org/03w8kgm26 SB Science Management'), (73256, 'https://ror.org/03w8qvw44', 'no_lang_code', 1, 'https://ror.org/03w8qvw44 4D (United Kingdom)'), (73257, 'https://ror.org/03wb5j481', 'en', 1, 'https://ror.org/03wb5j481 The Facilities Society'), (73258, 'https://ror.org/03wcjpf37', 'en', 1, 'https://ror.org/03wcjpf37 The Hellenic Centre'), (73259, 'https://ror.org/03wcq4p61', 'en', 1, 'https://ror.org/03wcq4p61 Britannia Panopticon'), (73260, 'https://ror.org/03wdrwf95', 'en', 1, 'https://ror.org/03wdrwf95 Shaoguan Railway Hospital 韶关市铁路医院'), (73261, 'https://ror.org/03wfbz902', 'en', 1, 'https://ror.org/03wfbz902 Foster Care Associates Scotland'), (73262, 'https://ror.org/03wgnxg62', 'no_lang_code', 1, 'https://ror.org/03wgnxg62 Cytonics (United States)'), (73263, 'https://ror.org/03whr7s66', 'en', 1, 'https://ror.org/03whr7s66 Center for Interdisciplinary Studies'), (73264, 'https://ror.org/03wjazp93', 'no_lang_code', 1, 'https://ror.org/03wjazp93 Express Medicals (United Kingdom)'), (73265, 'https://ror.org/03wjhyh40', 'no_lang_code', 1, 'https://ror.org/03wjhyh40 Oxford Applied Research (United Kingdom)'), (73266, 'https://ror.org/03wkg1w97', 'en', 1, 'https://ror.org/03wkg1w97 Center for Democracy in the Americas'), (73267, 'https://ror.org/03wkr8v72', 'en', 1, 'https://ror.org/03wkr8v72 Serendib Foundation for Music and Performing Arts'), (73268, 'https://ror.org/03wm0sn72', 'en', 1, 'https://ror.org/03wm0sn72 Barbados Community College'), (73269, 'https://ror.org/03wpmcv13', 'en', 1, 'https://ror.org/03wpmcv13 Education Through Music'), (73270, 'https://ror.org/03wpswf31', 'no_lang_code', 1, 'https://ror.org/03wpswf31 Richard Allitt Associates (United Kingdom)'), (73271, 'https://ror.org/03wqmmj05', 'no_lang_code', 1, 'https://ror.org/03wqmmj05 Furukawa Electric (Denmark)'), (73272, 'https://ror.org/03wqzz907', 'en', 1, 'https://ror.org/03wqzz907 Topos'), (73273, 'https://ror.org/03wt59215', 'en', 1, 'https://ror.org/03wt59215 Torbay Council'), (73274, 'https://ror.org/03wts3073', 'en', 1, 'https://ror.org/03wts3073 Centre for Fine Arts Palais des Beaux-Arts Paleis voor Schone Kunsten'), (73275, 'https://ror.org/03wvwbe92', 'en', 1, 'https://ror.org/03wvwbe92 Nanjing Foreign Language School 南京外国语学校'), (73276, 'https://ror.org/03ww5we09', 'no_lang_code', 1, 'https://ror.org/03ww5we09 CMM Energy (United States)'), (73277, 'https://ror.org/03wwnte34', 'en', 1, 'https://ror.org/03wwnte34 South West Vineyards Association'), (73278, 'https://ror.org/03wxe4k21', 'no_lang_code', 1, 'https://ror.org/03wxe4k21 Ketebul Music'), (73279, 'https://ror.org/03wyyd750', 'no_lang_code', 1, 'https://ror.org/03wyyd750 Menard (Poland)'), (73280, 'https://ror.org/03x0jax93', 'no_lang_code', 1, 'https://ror.org/03x0jax93 SpaceX (United States)'), (73281, 'https://ror.org/03x3nyk13', 'en', 1, 'https://ror.org/03x3nyk13 HAT Community Foundation'), (73282, 'https://ror.org/03x58jg90', 'no_lang_code', 1, 'https://ror.org/03x58jg90 Mikronatura Środowisko (Poland)'), (73283, 'https://ror.org/03x5d0y93', 'en', 1, 'https://ror.org/03x5d0y93 Royal Liverpool Philharmonic'), (73284, 'https://ror.org/03x6nht44', 'en', 1, 'https://ror.org/03x6nht44 Torquay Museum'), (73285, 'https://ror.org/03x89f523', 'no_lang_code', 1, 'https://ror.org/03x89f523 Model Driven Solutions (United States)'), (73286, 'https://ror.org/03x8p5f11', 'en', 1, 'https://ror.org/03x8p5f11 Molecular Sciences Software Institute'), (73287, 'https://ror.org/03x9t5820', 'en', 1, 'https://ror.org/03x9t5820 Working Families'), (73288, 'https://ror.org/03xa44945', 'en', 1, 'https://ror.org/03xa44945 Bavarian National Museum Bayerisches Nationalmuseum'), (73289, 'https://ror.org/03xae5975', 'sv', 1, 'https://ror.org/03xae5975 Aleris Hälsocentral Bollnäs'), (73290, 'https://ror.org/03xepm880', 'no_lang_code', 1, 'https://ror.org/03xepm880 Fourth State (United Kingdom)'), (73291, 'https://ror.org/03xfg5k88', 'en', 1, 'https://ror.org/03xfg5k88 Center for Responsible Enterprise And Trade'), (73292, 'https://ror.org/03xg97b41', 'en', 1, 'https://ror.org/03xg97b41 Mind Music Labs'), (73293, 'https://ror.org/03xga3b69', 'en', 1, 'https://ror.org/03xga3b69 Prosperity Now'), (73294, 'https://ror.org/03xh8zm60', 'no_lang_code', 1, 'https://ror.org/03xh8zm60 Bakhtar Research and Engineering (United States)'), (73295, 'https://ror.org/03xn5qf90', 'no_lang_code', 1, 'https://ror.org/03xn5qf90 Adelwitz Technologiezentrum (Germany)'), (73296, 'https://ror.org/03xnq0g58', 'no_lang_code', 1, 'https://ror.org/03xnq0g58 David Jarvis Associates (United Kingdom)'), (73297, 'https://ror.org/03xnyzd31', 'en', 1, 'https://ror.org/03xnyzd31 Ministry of Internal Affairs of the Kyrgyz Republic Кыргыз Республикасынын Ички Иштер Министрлиги Министерство внутренних дел Киргизской Республики'), (73298, 'https://ror.org/03xpfdf66', 'en', 1, 'https://ror.org/03xpfdf66 Dalarna Science Park'), (73299, 'https://ror.org/03xpvmx27', 'en', 1, 'https://ror.org/03xpvmx27 Kovno Communications'), (73300, 'https://ror.org/03xt9b909', 'en', 1, 'https://ror.org/03xt9b909 Galt Museum & Archives'), (73301, 'https://ror.org/03xtd0t75', 'en', 1, 'https://ror.org/03xtd0t75 Population Media Center'), (73302, 'https://ror.org/03xts3v71', 'da', 1, 'https://ror.org/03xts3v71 Orionplanetarium'), (73303, 'https://ror.org/03xvcse61', 'es', 1, 'https://ror.org/03xvcse61 Vasos Comunicantes'), (73304, 'https://ror.org/03xw42v88', 'en', 1, 'https://ror.org/03xw42v88 African Woman and Child Feature Service'), (73305, 'https://ror.org/03xyc1c11', 'no_lang_code', 1, 'https://ror.org/03xyc1c11 Proteca (Brazil)'), (73306, 'https://ror.org/03xzzpw64', 'en', 1, 'https://ror.org/03xzzpw64 Delegation of the European Union to the Kyrgyz Republic'), (73307, 'https://ror.org/03y19wk83', 'en', 1, 'https://ror.org/03y19wk83 Community Museum Project'), (73308, 'https://ror.org/03y1x0461', 'en', 1, 'https://ror.org/03y1x0461 Citizens UK'), (73309, 'https://ror.org/03y298h26', 'en', 1, 'https://ror.org/03y298h26 HB Studio'), (73310, 'https://ror.org/03y46nb69', 'no_lang_code', 1, 'https://ror.org/03y46nb69 Intelligent Medical Objects (United States)'), (73311, 'https://ror.org/03y4ynm34', 'en', 1, 'https://ror.org/03y4ynm34 TAFE Directors Australian'), (73312, 'https://ror.org/03y53a049', 'en', 1, 'https://ror.org/03y53a049 National Heritage Science Forum'), (73313, 'https://ror.org/03y5bcg65', 'en', 1, 'https://ror.org/03y5bcg65 Action for Trans Health'), (73314, 'https://ror.org/03y6t7d21', 'en', 1, 'https://ror.org/03y6t7d21 Scottish Council for Voluntary Organisations'), (73315, 'https://ror.org/03y7t4596', 'no_lang_code', 1, 'https://ror.org/03y7t4596 Sigrid Therapeutics (Sweden)'), (73316, 'https://ror.org/03y83ve89', 'en', 1, 'https://ror.org/03y83ve89 Sing Up Foundation'), (73317, 'https://ror.org/03y8dxm05', 'en', 1, 'https://ror.org/03y8dxm05 Sunraysia Institute of TAFE'), (73318, 'https://ror.org/03y8jje75', 'en', 1, 'https://ror.org/03y8jje75 Banner Health Foundation'), (73319, 'https://ror.org/03ya27672', 'no_lang_code', 1, 'https://ror.org/03ya27672 Effecta (Sweden)'), (73320, 'https://ror.org/03yarwa09', 'en', 1, 'https://ror.org/03yarwa09 Update Institute of Professional Studies'), (73321, 'https://ror.org/03yavnj74', 'no_lang_code', 1, 'https://ror.org/03yavnj74 Advanced Space Technology Research (United States)'), (73322, 'https://ror.org/03ybdm606', 'en', 1, 'https://ror.org/03ybdm606 Centre for Low Carbon Futures'), (73323, 'https://ror.org/03yc1zp27', 'en', 1, 'https://ror.org/03yc1zp27 European Second Language Association'), (73324, 'https://ror.org/03ydtyz77', 'no_lang_code', 1, 'https://ror.org/03ydtyz77 Tektura Opakowania Papier (Poland)'), (73325, 'https://ror.org/03ye55p43', 'en', 1, 'https://ror.org/03ye55p43 Brazilian Interdisciplinary AIDS Association'), (73326, 'https://ror.org/03yhvb593', 'en', 1, 'https://ror.org/03yhvb593 Royal African Society'), (73327, 'https://ror.org/03yjj4449', 'en', 1, 'https://ror.org/03yjj4449 El Museo'), (73328, 'https://ror.org/03yk1a741', 'no_lang_code', 1, 'https://ror.org/03yk1a741 Advanced Genomic Technology (United States)'), (73329, 'https://ror.org/03yk8za83', 'en', 1, 'https://ror.org/03yk8za83 British Texel Sheep Society'), (73330, 'https://ror.org/03ymrta62', 'en', 1, 'https://ror.org/03ymrta62 Child Welfare Society of Kenya'), (73331, 'https://ror.org/03ysgs202', 'no_lang_code', 1, 'https://ror.org/03ysgs202 Klogene (United States)'), (73332, 'https://ror.org/03ysxv814', 'en', 1, 'https://ror.org/03ysxv814 Center for Contemporary Arts Prague Centrum pro Současné Umění Praha'), (73333, 'https://ror.org/03ytbkh39', 'en', 1, 'https://ror.org/03ytbkh39 The Arboretum at Flagstaff'), (73334, 'https://ror.org/03ywsr457', 'en', 1, 'https://ror.org/03ywsr457 Native American Rights Fund'), (73335, 'https://ror.org/03yy0w351', 'en', 1, 'https://ror.org/03yy0w351 Comunn Eachdraidh Nis'), (73336, 'https://ror.org/03yza5b87', 'fr', 1, 'https://ror.org/03yza5b87 Hôpitaux Iris Sud'), (73337, 'https://ror.org/03yzz6t36', 'no_lang_code', 1, 'https://ror.org/03yzz6t36 Buildlab (United States)'), (73338, 'https://ror.org/03z0a5562', 'en', 1, 'https://ror.org/03z0a5562 Krinova Incubator & Science Park'), (73339, 'https://ror.org/03z3k8g94', 'no_lang_code', 1, 'https://ror.org/03z3k8g94 Cliris (Switzerland)'), (73340, 'https://ror.org/03z50sg96', 'en', 1, 'https://ror.org/03z50sg96 Institute for Conflict Research'), (73341, 'https://ror.org/03z58xd74', 'en', 1, 'https://ror.org/03z58xd74 Institute for the Dynamics of Environmental Processes Istituto per la Dinamica dei Processi Ambientali'), (73342, 'https://ror.org/03z6qqm96', 'no_lang_code', 1, 'https://ror.org/03z6qqm96 Cardinal Engineering (United States)'), (73343, 'https://ror.org/03z6vda50', 'en', 1, 'https://ror.org/03z6vda50 Fachhochschule für die Wirtschaft Hannover University of Applied Sciences FHDW Hannover'), (73344, 'https://ror.org/03z78jt35', 'no_lang_code', 1, 'https://ror.org/03z78jt35 Custom Scientific (United States)'), (73345, 'https://ror.org/03zbfp751', 'en', 1, 'https://ror.org/03zbfp751 Aga Khan Foundation'), (73346, 'https://ror.org/03zc8zv24', 'en', 1, 'https://ror.org/03zc8zv24 National Ice Centre'), (73347, 'https://ror.org/03ze5je62', 'no_lang_code', 1, 'https://ror.org/03ze5je62 EngineersHRW (United Kingdom)'), (73348, 'https://ror.org/03zgaq086', 'en', 1, 'https://ror.org/03zgaq086 Institute of Peruvian Studies Instituto de Estudios Peruanos'), (73349, 'https://ror.org/03zknp308', 'no_lang_code', 1, 'https://ror.org/03zknp308 Angel Secure Networks (United States)'), (73350, 'https://ror.org/03zn0nj77', 'en', 1, 'https://ror.org/03zn0nj77 New Museum'), (73351, 'https://ror.org/03zpb4e90', 'no_lang_code', 1, 'https://ror.org/03zpb4e90 MapLarge (United States)'), (73352, 'https://ror.org/03zq31024', 'en', 1, 'https://ror.org/03zq31024 Chancellery of the Prime Minister Kancelaria Prezesa Rady Ministrów'), (73353, 'https://ror.org/03zraew37', 'en', 1, 'https://ror.org/03zraew37 Centre for Contemporary Art'), (73354, 'https://ror.org/03zrkam54', 'no_lang_code', 1, 'https://ror.org/03zrkam54 Edge Case Research (United States)'), (73355, 'https://ror.org/03zsp0254', 'en', 1, 'https://ror.org/03zsp0254 American University of Phnom Penh សាកលវិទ្យាល័យអាមេរិកាំងភ្នំពេញ'), (73356, 'https://ror.org/03zt57v78', 'no_lang_code', 1, 'https://ror.org/03zt57v78 CalciMedica (United States)'), (73357, 'https://ror.org/03zvet229', 'en', 1, 'https://ror.org/03zvet229 Groninger Museum'), (73358, 'https://ror.org/03zvmjp56', 'af', 1, 'https://ror.org/03zvmjp56 Afesis-Corplan'), (73359, 'https://ror.org/03zwqne39', 'en', 1, 'https://ror.org/03zwqne39 The Judge Advocate General''s Legal Center and School'), (73360, 'https://ror.org/03zxqg324', 'no_lang_code', 1, 'https://ror.org/03zxqg324 ReceptorPharma (Sweden)'), (73361, 'https://ror.org/04003b617', 'en', 1, 'https://ror.org/04003b617 Institute for Social Transformation'), (73362, 'https://ror.org/040109961', 'no_lang_code', 1, 'https://ror.org/040109961 Åland Maritime Museum Ålands sjöfartsmuseum'), (73363, 'https://ror.org/0403byw97', 'en', 1, 'https://ror.org/0403byw97 Hungarian Demographic Research Institute'), (73364, 'https://ror.org/04046a831', 'en', 1, 'https://ror.org/04046a831 Mondo Foundation'), (73365, 'https://ror.org/0404j2625', 'en', 1, 'https://ror.org/0404j2625 Poplar Housing and Regeneration Community Association'), (73366, 'https://ror.org/04054a724', 'no_lang_code', 1, 'https://ror.org/04054a724 CellProtect Nordic Pharmaceuticals (Sweden)'), (73367, 'https://ror.org/0405ppk91', 'en', 1, 'https://ror.org/0405ppk91 Climate and Development Knowledge Network'), (73368, 'https://ror.org/0405v9k44', 'no_lang_code', 1, 'https://ror.org/0405v9k44 International Centre for Advanced Materials (United Kingdom)'), (73369, 'https://ror.org/0407kdz58', 'no_lang_code', 1, 'https://ror.org/0407kdz58 Lexplore (Sweden)'), (73370, 'https://ror.org/04081em55', 'en', 1, 'https://ror.org/04081em55 Residency Unlimited'), (73371, 'https://ror.org/0408hpd14', 'en', 1, 'https://ror.org/0408hpd14 Feminist Archive South'), (73372, 'https://ror.org/0409tje58', 'en', 1, 'https://ror.org/0409tje58 Press Association'), (73373, 'https://ror.org/040a3tj51', 'en', 1, 'https://ror.org/040a3tj51 Norfolk Museums Service'), (73374, 'https://ror.org/040an2851', 'en', 1, 'https://ror.org/040an2851 Hellenic Children''s Museum Ελληνικό Παιδικό Μουσείο'), (73375, 'https://ror.org/040d3j938', 'no_lang_code', 1, 'https://ror.org/040d3j938 Clearwater Group (United States)'), (73376, 'https://ror.org/040dpbx94', 'no_lang_code', 1, 'https://ror.org/040dpbx94 Image Metrics (United Kingdom)'), (73377, 'https://ror.org/040f8w440', 'en', 1, 'https://ror.org/040f8w440 Institute of Social Sciences'), (73378, 'https://ror.org/040fsr689', 'no_lang_code', 1, 'https://ror.org/040fsr689 Nomino (Poland)'), (73379, 'https://ror.org/040gtvq30', 'de', 1, 'https://ror.org/040gtvq30 Helios Endo-Klinik Hamburg'), (73380, 'https://ror.org/040hg4198', 'en', 1, 'https://ror.org/040hg4198 National Youth Science Forum'), (73381, 'https://ror.org/040j2ng64', 'en', 1, 'https://ror.org/040j2ng64 Thomson Reuters Foundation'), (73382, 'https://ror.org/040jc3p57', 'it', 1, 'https://ror.org/040jc3p57 Associazione Radioamatori Italiani'), (73383, 'https://ror.org/040s56h35', 'en', 1, 'https://ror.org/040s56h35 Seoul Central District Court 서울중앙지방법원'), (73384, 'https://ror.org/040t3et06', 'en', 1, 'https://ror.org/040t3et06 Keswick Museum'), (73385, 'https://ror.org/040tfy969', 'en', 1, 'https://ror.org/040tfy969 Tyndall Centre'), (73386, 'https://ror.org/040vbzm60', 'en', 1, 'https://ror.org/040vbzm60 Quakers'), (73387, 'https://ror.org/040x93a09', 'en', 1, 'https://ror.org/040x93a09 Hawaii Institute for Public Affairs'), (73388, 'https://ror.org/040xcjs75', 'en', 1, 'https://ror.org/040xcjs75 Airports Council International Europe'), (73389, 'https://ror.org/040xrky57', 'no_lang_code', 1, 'https://ror.org/040xrky57 Falmouth Scientific (United States)'), (73390, 'https://ror.org/040yamy52', 'no_lang_code', 1, 'https://ror.org/040yamy52 Multidisciplinary Software Systems Research (United States)'), (73391, 'https://ror.org/040zv4433', 'en', 1, 'https://ror.org/040zv4433 Il’laramatak Community Concerns'), (73392, 'https://ror.org/0410jfe71', 'en', 1, 'https://ror.org/0410jfe71 British Council'), (73393, 'https://ror.org/0411mdb02', 'no_lang_code', 1, 'https://ror.org/0411mdb02 AVEKA (United States)'), (73394, 'https://ror.org/0411yf357', 'en', 1, 'https://ror.org/0411yf357 Central Compilation & Translation Bureau 中央编译局比较政治与经济研究中心'), (73395, 'https://ror.org/0412t9j29', 'no_lang_code', 1, 'https://ror.org/0412t9j29 Walker-Moffat (United States)'), (73396, 'https://ror.org/04137sz34', 'no_lang_code', 1, 'https://ror.org/04137sz34 Daktari Diagnostics (United States)'), (73397, 'https://ror.org/041542g68', 'no_lang_code', 1, 'https://ror.org/041542g68 Foresite (United States)'), (73398, 'https://ror.org/041a6wm28', 'en', 1, 'https://ror.org/041a6wm28 American Chamber of Commerce in Kosovo Oda Ekonomike Amerikane ne Kosove'), (73399, 'https://ror.org/041d67p66', 'no_lang_code', 1, 'https://ror.org/041d67p66 Amalgamated Sugar (United States)'), (73400, 'https://ror.org/041dcmy53', 'en', 1, 'https://ror.org/041dcmy53 British Deaf Association'), (73401, 'https://ror.org/041ec4084', 'en', 1, 'https://ror.org/041ec4084 Her Majesty''s Inspectorate of Constabulary in Scotland'), (73402, 'https://ror.org/041gsht58', 'no_lang_code', 1, 'https://ror.org/041gsht58 Fealinx (France)'); INSERT INTO `rors` VALUES (73403, 'https://ror.org/041gwe229', 'en', 1, 'https://ror.org/041gwe229 South African Council for Planners'), (73404, 'https://ror.org/041hvc055', 'en', 1, 'https://ror.org/041hvc055 Islamic Azad University Yasuj دانشگاه آزاد اسلامی واحد یاسوج'), (73405, 'https://ror.org/041mvre90', 'en', 1, 'https://ror.org/041mvre90 The African Arts Trust'), (73406, 'https://ror.org/041mxbp20', 'en', 1, 'https://ror.org/041mxbp20 Housing and Community Development Network of New Jersey'), (73407, 'https://ror.org/041pfmf98', 'no_lang_code', 1, 'https://ror.org/041pfmf98 2D Fab (Sweden)'), (73408, 'https://ror.org/041pxa775', 'no_lang_code', 1, 'https://ror.org/041pxa775 Critical Innovations (United States)'), (73409, 'https://ror.org/041q6vc74', 'en', 1, 'https://ror.org/041q6vc74 SANE Mental Health Charity'), (73410, 'https://ror.org/041v8ha59', 'sv', 1, 'https://ror.org/041v8ha59 Adopticum'), (73411, 'https://ror.org/041wapp49', 'no_lang_code', 1, 'https://ror.org/041wapp49 Pain Care Labs (United States)'), (73412, 'https://ror.org/041yzwn62', 'no_lang_code', 1, 'https://ror.org/041yzwn62 Influx (United States)'), (73413, 'https://ror.org/042228s94', 'no_lang_code', 1, 'https://ror.org/042228s94 Cyteir Therapeutics (United States)'), (73414, 'https://ror.org/042416g98', 'en', 1, 'https://ror.org/042416g98 China Education Press Agency 中国教育报刊社'), (73415, 'https://ror.org/0424fq223', 'en', 1, 'https://ror.org/0424fq223 Berkshire Buckinghamshire and Oxfordshire Wildlife Trust'), (73416, 'https://ror.org/0424v9t30', 'en', 1, 'https://ror.org/0424v9t30 Indian Institute of Water Management'), (73417, 'https://ror.org/04258ak80', 'en', 1, 'https://ror.org/04258ak80 North of England Civic Trust'), (73418, 'https://ror.org/0425hwa25', 'no_lang_code', 1, 'https://ror.org/0425hwa25 Biomedical Acoustics (United States)'), (73419, 'https://ror.org/042688r20', 'en', 1, 'https://ror.org/042688r20 Indian Pharmacist Association'), (73420, 'https://ror.org/0426a7r83', 'en', 1, 'https://ror.org/0426a7r83 European Communication Research and Education Association'), (73421, 'https://ror.org/042730j21', 'en', 1, 'https://ror.org/042730j21 Global Campaign for Education United States'), (73422, 'https://ror.org/042765079', 'es', 1, 'https://ror.org/042765079 Instituto Nacional de Limnología'), (73423, 'https://ror.org/0428j9521', 'en', 1, 'https://ror.org/0428j9521 Fizika-Texnika Instituti Physicotechnical Institute'), (73424, 'https://ror.org/0429eqk16', 'no_lang_code', 1, 'https://ror.org/0429eqk16 Colfax (United States)'), (73425, 'https://ror.org/042a1e381', 'de', 1, 'https://ror.org/042a1e381 Clemenshospital Münster'), (73426, 'https://ror.org/042a1x396', 'no_lang_code', 1, 'https://ror.org/042a1x396 Nolan Associates (United Kingdom)'), (73427, 'https://ror.org/042ac6m83', 'no_lang_code', 1, 'https://ror.org/042ac6m83 Ascent Solar (United States)'), (73428, 'https://ror.org/042b7qk94', 'hi', 1, 'https://ror.org/042b7qk94 Ramakrishna Mission Vidyalaya'), (73429, 'https://ror.org/042bs8227', 'es', 1, 'https://ror.org/042bs8227 Centro Mexicano de Derecho Ambiental'), (73430, 'https://ror.org/042eye458', 'en', 1, 'https://ror.org/042eye458 Institution of Agricultural Engineers'), (73431, 'https://ror.org/042hdh758', 'en', 1, 'https://ror.org/042hdh758 School Health Research Network'), (73432, 'https://ror.org/042j4gm75', 'en', 1, 'https://ror.org/042j4gm75 Northwest Evaluation Association'), (73433, 'https://ror.org/042q0et03', 'en', 1, 'https://ror.org/042q0et03 MI College'), (73434, 'https://ror.org/042sca472', 'no_lang_code', 1, 'https://ror.org/042sca472 H-DOX (United States)'), (73435, 'https://ror.org/042sg7s37', 'en', 1, 'https://ror.org/042sg7s37 Association of Colleges'), (73436, 'https://ror.org/042tf3y40', 'en', 1, 'https://ror.org/042tf3y40 Wild Trout Trust'), (73437, 'https://ror.org/042wbt424', 'no_lang_code', 1, 'https://ror.org/042wbt424 Cova (United States)'), (73438, 'https://ror.org/04316xy59', 'en', 1, 'https://ror.org/04316xy59 PNLP'), (73439, 'https://ror.org/0431j1g69', 'en', 1, 'https://ror.org/0431j1g69 Hendrick Hudson School District'), (73440, 'https://ror.org/0431q3e43', 'en', 1, 'https://ror.org/0431q3e43 Ensenada Institute of Technology Instituto Tecnológico de Ensenada'), (73441, 'https://ror.org/0433wdg24', 'en', 1, 'https://ror.org/0433wdg24 Children’s Arthritis Association'), (73442, 'https://ror.org/0434w4n54', 'en', 1, 'https://ror.org/0434w4n54 Center for Story-based Strategy'), (73443, 'https://ror.org/0435vpd21', 'en', 1, 'https://ror.org/0435vpd21 Environmental Education Exchange'), (73444, 'https://ror.org/0435yq060', 'no_lang_code', 1, 'https://ror.org/0435yq060 Ourofino Saúde Animal (Brazil)'), (73445, 'https://ror.org/043726d89', 'en', 1, 'https://ror.org/043726d89 Athena Sustainable Materials Institute'), (73446, 'https://ror.org/0437mk135', 'no_lang_code', 1, 'https://ror.org/0437mk135 BioMimetic Systems (United States)'), (73447, 'https://ror.org/0439dh211', 'no_lang_code', 1, 'https://ror.org/0439dh211 Applied Design Labs (United States)'), (73448, 'https://ror.org/043amj005', 'en', 1, 'https://ror.org/043amj005 Development Alternatives with Women for a New Era'), (73449, 'https://ror.org/043c0pj05', 'no_lang_code', 1, 'https://ror.org/043c0pj05 Saur (Armenia)'), (73450, 'https://ror.org/043c1f957', 'en', 1, 'https://ror.org/043c1f957 Union of Economists of Turkmenistan'), (73451, 'https://ror.org/043e6pw81', 'no_lang_code', 1, 'https://ror.org/043e6pw81 Food Radar Systems (Sweden)'), (73452, 'https://ror.org/043em9g67', 'en', 1, 'https://ror.org/043em9g67 Bali Animal Welfare Association'), (73453, 'https://ror.org/043hn3j55', 'en', 1, 'https://ror.org/043hn3j55 Tamba'), (73454, 'https://ror.org/043jjxy03', 'en', 1, 'https://ror.org/043jjxy03 Bayimba'), (73455, 'https://ror.org/043k8f492', 'et', 1, 'https://ror.org/043k8f492 Põlva Haigla'), (73456, 'https://ror.org/043m46d79', 'no_lang_code', 1, 'https://ror.org/043m46d79 Cognitive Electronics (United States)'), (73457, 'https://ror.org/043ppxs71', 'no_lang_code', 1, 'https://ror.org/043ppxs71 PPAM Solkraft (Sweden)'), (73458, 'https://ror.org/043wep886', 'no_lang_code', 1, 'https://ror.org/043wep886 Mikhulu Trust'), (73459, 'https://ror.org/043yzag23', 'no_lang_code', 1, 'https://ror.org/043yzag23 Mademoiselle Desserts (United Kingdom)'), (73460, 'https://ror.org/0441qc561', 'en', 1, 'https://ror.org/0441qc561 The British Antique Dealers Association'), (73461, 'https://ror.org/0443s9p82', 'en', 1, 'https://ror.org/0443s9p82 Center for High Pressure Science & Technology Advanced Research 北京高压科学研究中心'), (73462, 'https://ror.org/044691a51', 'en', 1, 'https://ror.org/044691a51 LearnPlay Foundation'), (73463, 'https://ror.org/04469fh44', 'en', 1, 'https://ror.org/04469fh44 Colombian Commission of Jurists Comisión Colombiana de Juristas'), (73464, 'https://ror.org/04473af04', 'en', 1, 'https://ror.org/04473af04 Berneray Historical Society Comunn Eachdraidh Bheàrnaraigh'), (73465, 'https://ror.org/04476hk95', 'en', 1, 'https://ror.org/04476hk95 Institute for Social and Economic Research'), (73466, 'https://ror.org/0447ftg13', 'no_lang_code', 1, 'https://ror.org/0447ftg13 GEDI Gruppo Editoriale (Italy) Gruppo Editoriale L''Espresso'), (73467, 'https://ror.org/0447j3y44', 'en', 1, 'https://ror.org/0447j3y44 Ossett Academy'), (73468, 'https://ror.org/044889x78', 'de', 1, 'https://ror.org/044889x78 Kommission für Geschichte und Kultur der Deutschen in Südosteuropa'), (73469, 'https://ror.org/0449ygn91', 'no_lang_code', 1, 'https://ror.org/0449ygn91 Accel Diagnostics (United States)'), (73470, 'https://ror.org/044bfsy89', 'en', 1, 'https://ror.org/044bfsy89 Istituto di Ricerca sulla Crescita Economica Sostenibile Research Institute on Sustainable Economic Growth'), (73471, 'https://ror.org/044cd9z60', 'en', 1, 'https://ror.org/044cd9z60 Cope Environmental Center'), (73472, 'https://ror.org/044dcv581', 'en', 1, 'https://ror.org/044dcv581 York Blind & Partially Sighted Society'), (73473, 'https://ror.org/044dvga50', 'en', 1, 'https://ror.org/044dvga50 Bộ Ngoại giao Việt Nam Ministry of Foreign Affairs'), (73474, 'https://ror.org/044ga3f28', 'en', 1, 'https://ror.org/044ga3f28 Medic Mobile'), (73475, 'https://ror.org/044h52h12', 'es', 1, 'https://ror.org/044h52h12 Poder Judicial de la Ciudad de Buenos Aires'), (73476, 'https://ror.org/044kzfd07', 'en', 1, 'https://ror.org/044kzfd07 Leicestershire Police'), (73477, 'https://ror.org/044n3e324', 'no_lang_code', 1, 'https://ror.org/044n3e324 Knopp Biosciences (United States)'), (73478, 'https://ror.org/044nmzj55', 'en', 1, 'https://ror.org/044nmzj55 The Vietnam National Institute of Educational Sciences Viện Khoa học Giáo dục Việt Nam'), (73479, 'https://ror.org/044q96y41', 'en', 1, 'https://ror.org/044q96y41 Center for Economic and Social Rights'), (73480, 'https://ror.org/044t55e25', 'en', 1, 'https://ror.org/044t55e25 Participatory Development Training Centre ສູນຝຶກອົບຮົມການພັດທະນາທີ່ມີສ່ວນຮ່ວມ'), (73481, 'https://ror.org/044v30149', 'en', 1, 'https://ror.org/044v30149 People''s Action'), (73482, 'https://ror.org/044ve7993', 'en', 1, 'https://ror.org/044ve7993 Migration & Asylum Project'), (73483, 'https://ror.org/044wa0621', 'en', 1, 'https://ror.org/044wa0621 Perry Foundation'), (73484, 'https://ror.org/044x9zq23', 'en', 1, 'https://ror.org/044x9zq23 The Community Trust'), (73485, 'https://ror.org/044xs7e53', 'no_lang_code', 1, 'https://ror.org/044xs7e53 RxMP Therapeutics (United States)'), (73486, 'https://ror.org/044xxhs61', 'en', 1, 'https://ror.org/044xxhs61 NIHR WoundTec Healthcare Technology Co-operative'), (73487, 'https://ror.org/044ybps29', 'no_lang_code', 1, 'https://ror.org/044ybps29 Accord Solutions (United States)'), (73488, 'https://ror.org/0451dft51', 'no_lang_code', 1, 'https://ror.org/0451dft51 Ecofys (Germany)'), (73489, 'https://ror.org/0453eyr18', 'no_lang_code', 1, 'https://ror.org/0453eyr18 Bill Harvey Associates (United Kingdom)'), (73490, 'https://ror.org/04570hm76', 'en', 1, 'https://ror.org/04570hm76 Private Sector Foundation Uganda'), (73491, 'https://ror.org/045832a47', 'no_lang_code', 1, 'https://ror.org/045832a47 GamesThatWork (United States)'), (73492, 'https://ror.org/045bb6111', 'en', 1, 'https://ror.org/045bb6111 William Temple Foundation'), (73493, 'https://ror.org/045bf0r64', 'en', 1, 'https://ror.org/045bf0r64 Suffolk Horse Society'), (73494, 'https://ror.org/045dz4566', 'en', 1, 'https://ror.org/045dz4566 Submicron Heterostructures for Microelectronics Research and Engineering Center Федеральное государственное бюджетное учреждение науки Научно-технологический центр микроэлектроники и субмикронных гетероструктур Российской академии наук'), (73495, 'https://ror.org/045e6n322', 'en', 1, 'https://ror.org/045e6n322 Chelsea Primary School'), (73496, 'https://ror.org/045fe0126', 'no_lang_code', 1, 'https://ror.org/045fe0126 Aries Design Automation (United States)'), (73497, 'https://ror.org/045g91y28', 'no_lang_code', 1, 'https://ror.org/045g91y28 Riverside Medical Packaging (United Kingdom)'), (73498, 'https://ror.org/045jkfr03', 'no_lang_code', 1, 'https://ror.org/045jkfr03 Arvinas (United States)'), (73499, 'https://ror.org/045m5hq56', 'en', 1, 'https://ror.org/045m5hq56 Foundation for Civil Society'), (73500, 'https://ror.org/045neh952', 'no_lang_code', 1, 'https://ror.org/045neh952 Zenicor Medical Systems (Sweden)'), (73501, 'https://ror.org/045nmj854', 'pt', 1, 'https://ror.org/045nmj854 Terra de Direitos'), (73502, 'https://ror.org/045p8ax41', 'en', 1, 'https://ror.org/045p8ax41 Turquoise Mountain'), (73503, 'https://ror.org/045rzp790', 'en', 1, 'https://ror.org/045rzp790 Sex Workers Education & Advocacy Taskforce'), (73504, 'https://ror.org/045te9j93', 'no_lang_code', 1, 'https://ror.org/045te9j93 Empirical Systems Aerospace (United States)'), (73505, 'https://ror.org/045thzj17', 'es', 1, 'https://ror.org/045thzj17 Dirección Regional de Salud del Callao'), (73506, 'https://ror.org/045wtka37', 'no_lang_code', 1, 'https://ror.org/045wtka37 Izola General Hospital Splošna Bolnišnica Izola'), (73507, 'https://ror.org/045x3e738', 'no_lang_code', 1, 'https://ror.org/045x3e738 BioFactura (United States)'), (73508, 'https://ror.org/045xczk16', 'en', 1, 'https://ror.org/045xczk16 Canterbury Archaeological Trust'), (73509, 'https://ror.org/045xz7k18', 'no_lang_code', 1, 'https://ror.org/045xz7k18 Quazar Technologies (India)'), (73510, 'https://ror.org/045y8mm25', 'en', 1, 'https://ror.org/045y8mm25 Centre for Multi-disciplinary Development Research'), (73511, 'https://ror.org/045zphe57', 'en', 1, 'https://ror.org/045zphe57 Institute for Agricultural and Earthmoving Machines Istituto per le Macchine Agricole e Movimento Terra'), (73512, 'https://ror.org/04625e684', 'es', 1, 'https://ror.org/04625e684 Centro Peruano de Estudios Sociales'), (73513, 'https://ror.org/0462c0k61', 'en', 1, 'https://ror.org/0462c0k61 Nanolayers'), (73514, 'https://ror.org/0463agq55', 'no_lang_code', 1, 'https://ror.org/0463agq55 Brown and Caldwell (United States)'), (73515, 'https://ror.org/0467kh241', 'pt', 1, 'https://ror.org/0467kh241 Grupo de Açãoe Estudos Ambientais'), (73516, 'https://ror.org/0468szt35', 'en', 1, 'https://ror.org/0468szt35 Gwynedd Archaeological Trust'), (73517, 'https://ror.org/0469msm38', 'it', 1, 'https://ror.org/0469msm38 Cineteca di Bologna'), (73518, 'https://ror.org/046c3d965', 'en', 1, 'https://ror.org/046c3d965 Aquincum Institute of Technology'), (73519, 'https://ror.org/046c8ca27', 'en', 1, 'https://ror.org/046c8ca27 Nepal Participatory Action Network'), (73520, 'https://ror.org/046dj2v49', 'no_lang_code', 1, 'https://ror.org/046dj2v49 AdTech Optics (United States)'), (73521, 'https://ror.org/046dyet60', 'pt', 1, 'https://ror.org/046dyet60 Instituto Nacional de Psiquiatria do Desenvolvimento para Crianças e Adolescentes'), (73522, 'https://ror.org/046pa0m07', 'en', 1, 'https://ror.org/046pa0m07 The National Lobster Hatchery'), (73523, 'https://ror.org/046qkca03', 'no_lang_code', 1, 'https://ror.org/046qkca03 Daniel Black and Associates (United States)'), (73524, 'https://ror.org/046qtkm10', 'no_lang_code', 1, 'https://ror.org/046qtkm10 Electroformed Nickel (United States)'), (73525, 'https://ror.org/046qxha37', 'en', 1, 'https://ror.org/046qxha37 Azerbaijan Genetic Resources Institute Genetik Ehtiyatlar İnstitutu'), (73526, 'https://ror.org/046s5m283', 'no_lang_code', 1, 'https://ror.org/046s5m283 Lifesize (Sweden)'), (73527, 'https://ror.org/046sdzq93', 'en', 1, 'https://ror.org/046sdzq93 Botswana Predator Conservation Trust'), (73528, 'https://ror.org/046shck20', 'en', 1, 'https://ror.org/046shck20 Association for Social and Environmental Development'), (73529, 'https://ror.org/046sr9880', 'pt', 1, 'https://ror.org/046sr9880 Instituto Brasileiro de Defesa do Consumidor'), (73530, 'https://ror.org/046swr926', 'no_lang_code', 1, 'https://ror.org/046swr926 Peptaderm (Poland)'), (73531, 'https://ror.org/046tk5b58', 'no_lang_code', 1, 'https://ror.org/046tk5b58 Wala Heilmittel (Germany)'), (73532, 'https://ror.org/046vj6r42', 'en', 1, 'https://ror.org/046vj6r42 China Sexology Association 中国性学会'), (73533, 'https://ror.org/046wv1d24', 'no_lang_code', 1, 'https://ror.org/046wv1d24 Itres (Canada)'), (73534, 'https://ror.org/046xn0c82', 'en', 1, 'https://ror.org/046xn0c82 Indian Institute of Mass Communication भारतीय जन संचार संस्थान'), (73535, 'https://ror.org/0470jgx16', 'en', 1, 'https://ror.org/0470jgx16 Institute for War and Peace Reporting'), (73536, 'https://ror.org/04713pn08', 'en', 1, 'https://ror.org/04713pn08 Huddersfield Local History Society'), (73537, 'https://ror.org/04723ev36', 'en', 1, 'https://ror.org/04723ev36 Centre for European Reform'), (73538, 'https://ror.org/0473dy216', 'en', 1, 'https://ror.org/0473dy216 Midland Heart'), (73539, 'https://ror.org/04742eh45', 'no_lang_code', 1, 'https://ror.org/04742eh45 Embedded Systems (United States)'), (73540, 'https://ror.org/0474hd478', 'no_lang_code', 1, 'https://ror.org/0474hd478 TLM Shahdara Hospital'), (73541, 'https://ror.org/047740987', 'en', 1, 'https://ror.org/047740987 Jimmy Mac’s Centre'), (73542, 'https://ror.org/0477dxh89', 'no_lang_code', 1, 'https://ror.org/0477dxh89 The Seattle Times (United States)'), (73543, 'https://ror.org/0477ytm39', 'en', 1, 'https://ror.org/0477ytm39 National Security and Defense Council of Ukraine Рада національної безпеки і оборони України'), (73544, 'https://ror.org/047cyxk24', 'en', 1, 'https://ror.org/047cyxk24 Centre of Excellence for Sensory Impairment'), (73545, 'https://ror.org/047eaw227', 'en', 1, 'https://ror.org/047eaw227 African Centre for Technology Studies'), (73546, 'https://ror.org/047edpg75', 'en', 1, 'https://ror.org/047edpg75 Hôpital Psychiatrique du Beau Vallon Le Beau Vallon - Psychiatric Hospital'), (73547, 'https://ror.org/047eefb18', 'en', 1, 'https://ror.org/047eefb18 Stratified Medicine Scotland'), (73548, 'https://ror.org/047enf178', 'en', 1, 'https://ror.org/047enf178 Bay Area Oppositional and Conduct Clinic'), (73549, 'https://ror.org/047h63042', 'no_lang_code', 1, 'https://ror.org/047h63042 Eko-Konnect'), (73550, 'https://ror.org/047j8xx02', 'en', 1, 'https://ror.org/047j8xx02 Gear Research Institute'), (73551, 'https://ror.org/047kbbm64', 'en', 1, 'https://ror.org/047kbbm64 Marine Stewardship Council'), (73552, 'https://ror.org/047kq9b85', 'en', 1, 'https://ror.org/047kq9b85 International Association of Directors of Law Enforcement Standards and Training'), (73553, 'https://ror.org/047m1md22', 'no_lang_code', 1, 'https://ror.org/047m1md22 KUKA (United Kingdom)'), (73554, 'https://ror.org/047m78h93', 'en', 1, 'https://ror.org/047m78h93 Puppet Centre Trust'), (73555, 'https://ror.org/047pb7g40', 'en', 1, 'https://ror.org/047pb7g40 South Dakota Department of Public Safety'), (73556, 'https://ror.org/047py4r39', 'en', 1, 'https://ror.org/047py4r39 Americans for Indian Opportunity'), (73557, 'https://ror.org/047smnk10', 'en', 1, 'https://ror.org/047smnk10 National Day Laborer Organizing Network'), (73558, 'https://ror.org/047xyhs39', 'no_lang_code', 1, 'https://ror.org/047xyhs39 Innodura (France)'), (73559, 'https://ror.org/047z5ry18', 'en', 1, 'https://ror.org/047z5ry18 Israeli Center for Libraries מרכז הספר והספריות'), (73560, 'https://ror.org/047zp5633', 'en', 1, 'https://ror.org/047zp5633 Royal Society for Public Health'), (73561, 'https://ror.org/048104e91', 'no_lang_code', 1, 'https://ror.org/048104e91 Max Biopharma (United States)'), (73562, 'https://ror.org/0484jez12', 'en', 1, 'https://ror.org/0484jez12 Sharma Centre for Heritage Education India'), (73563, 'https://ror.org/0485zq002', 'no_lang_code', 1, 'https://ror.org/0485zq002 Integrated Medicines (United Kingdom)'), (73564, 'https://ror.org/0488afy73', 'en', 1, 'https://ror.org/0488afy73 Institute for Technology & Society Instituto de Tecnologia e Sociedade'), (73565, 'https://ror.org/0488ezv32', 'no_lang_code', 1, 'https://ror.org/0488ezv32 Boston Dynamics (United States)'), (73566, 'https://ror.org/0488wz367', 'en', 1, 'https://ror.org/0488wz367 Wuyi University 五邑大学'), (73567, 'https://ror.org/048954822', 'en', 1, 'https://ror.org/048954822 Flemish Radio and Television Broadcasting Organisation Vlaamse Radio- en Televisieomroeporganisatie'), (73568, 'https://ror.org/048a6mf06', 'en', 1, 'https://ror.org/048a6mf06 Spencer Academies Trust'), (73569, 'https://ror.org/048bd3118', 'en', 1, 'https://ror.org/048bd3118 San Diego State University, Imperial Valley Campus'), (73570, 'https://ror.org/048c0wq03', 'no_lang_code', 1, 'https://ror.org/048c0wq03 Era (Sweden)'), (73571, 'https://ror.org/048c72h25', 'en', 1, 'https://ror.org/048c72h25 Anokhi Museum of Hand Printing अनोखी संग्रहालय'), (73572, 'https://ror.org/048cscx90', 'en', 1, 'https://ror.org/048cscx90 Transparency International'), (73573, 'https://ror.org/048eb3m59', 'en', 1, 'https://ror.org/048eb3m59 Polytechnic College Suriname'), (73574, 'https://ror.org/048f1z657', 'no_lang_code', 1, 'https://ror.org/048f1z657 Kyiv International Institute of Sociology (Ukraine) Київський міжнародний інститут соціології'), (73575, 'https://ror.org/048k8a688', 'en', 1, 'https://ror.org/048k8a688 The Orderly Society Trust'), (73576, 'https://ror.org/048kwbq96', 'no_lang_code', 1, 'https://ror.org/048kwbq96 ImCare Biotech (United States)'), (73577, 'https://ror.org/048m65g43', 'en', 1, 'https://ror.org/048m65g43 Chess Valley Archaeological and Historical Society'), (73578, 'https://ror.org/048maeh80', 'no_lang_code', 1, 'https://ror.org/048maeh80 KeyW (United States)'), (73579, 'https://ror.org/048mkm910', 'en', 1, 'https://ror.org/048mkm910 Nemocnice Strakonice Strakonice Hospital'), (73580, 'https://ror.org/048nm0n40', 'no_lang_code', 1, 'https://ror.org/048nm0n40 Dust Identity (United States)'), (73581, 'https://ror.org/048par152', 'no_lang_code', 1, 'https://ror.org/048par152 Ingenious Targeting Laboratory (United States)'), (73582, 'https://ror.org/048q5k041', 'en', 1, 'https://ror.org/048q5k041 Renewable Energy Association'), (73583, 'https://ror.org/048shje05', 'no_lang_code', 1, 'https://ror.org/048shje05 Alomone Labs (Israel)'), (73584, 'https://ror.org/048sjp277', 'no_lang_code', 1, 'https://ror.org/048sjp277 Akron Polymer Systems (United States)'), (73585, 'https://ror.org/048swbb68', 'en', 1, 'https://ror.org/048swbb68 Scottish Jewish Archives Centre'), (73586, 'https://ror.org/048t31q52', 'en', 1, 'https://ror.org/048t31q52 Hennadii Udovenko Diplomatic Academy Of Ukraine Дипломатична академія України'), (73587, 'https://ror.org/048tb3g40', 'en', 1, 'https://ror.org/048tb3g40 International Security and Development Center'), (73588, 'https://ror.org/048vp3g58', 'en', 1, 'https://ror.org/048vp3g58 Gardd Fotaneg Genedlaethol Cymru National Botanic Garden of Wales'), (73589, 'https://ror.org/048ytzw49', 'es', 1, 'https://ror.org/048ytzw49 Escuela de Actores de Canarias'), (73590, 'https://ror.org/0490b3412', 'no_lang_code', 1, 'https://ror.org/0490b3412 Sue Mbaya & Associates (South Africa)'), (73591, 'https://ror.org/0491vhh68', 'en', 1, 'https://ror.org/0491vhh68 American Sustainable Business Institute'), (73592, 'https://ror.org/049b1yp65', 'en', 1, 'https://ror.org/049b1yp65 Ghana Museums and Monuments Board'), (73593, 'https://ror.org/049b5m346', 'fr', 1, 'https://ror.org/049b5m346 École Française de Rome'), (73594, 'https://ror.org/049dqrc28', 'en', 1, 'https://ror.org/049dqrc28 Center for High Pressure Science & Technology Advanced Research 北京高压科学研究中心'), (73595, 'https://ror.org/049e8e889', 'en', 1, 'https://ror.org/049e8e889 Poetry Society of America'), (73596, 'https://ror.org/049fst917', 'en', 1, 'https://ror.org/049fst917 St Paul''s Cathedral'), (73597, 'https://ror.org/049g84z21', 'no_lang_code', 1, 'https://ror.org/049g84z21 Electroimpact (United States)'), (73598, 'https://ror.org/049gt8c76', 'no_lang_code', 1, 'https://ror.org/049gt8c76 Ultrapar (Brazil)'), (73599, 'https://ror.org/049hvrk60', 'en', 1, 'https://ror.org/049hvrk60 Fred Roche Foundation'), (73600, 'https://ror.org/049kty102', 'en', 1, 'https://ror.org/049kty102 Young Citizens'), (73601, 'https://ror.org/049ntvc74', 'fr', 1, 'https://ror.org/049ntvc74 Centre de Recherche Nucléaire d’Alger مركز البحث النووي بالجزائر'), (73602, 'https://ror.org/049rm1a24', 'en', 1, 'https://ror.org/049rm1a24 International Finance Corporation'), (73603, 'https://ror.org/049s75k27', 'en', 1, 'https://ror.org/049s75k27 Arkansas State Crime Laboratory'), (73604, 'https://ror.org/049sa5a53', 'en', 1, 'https://ror.org/049sa5a53 National Dance Institute of New Mexico'), (73605, 'https://ror.org/049wrg704', 'no_lang_code', 1, 'https://ror.org/049wrg704 Dovetail Genomics (United States)'), (73606, 'https://ror.org/049ya5256', 'en', 1, 'https://ror.org/049ya5256 Next City'), (73607, 'https://ror.org/049yd1k97', 'en', 1, 'https://ror.org/049yd1k97 Archivo Histórico de la Policía Nacional Guatemala National Police Archives'), (73608, 'https://ror.org/049zj0z80', 'no_lang_code', 1, 'https://ror.org/049zj0z80 Sto (Poland)'), (73609, 'https://ror.org/04a092p69', 'no_lang_code', 1, 'https://ror.org/04a092p69 Fo Guang Shan 佛光山'), (73610, 'https://ror.org/04a09r739', 'en', 1, 'https://ror.org/04a09r739 Academy of Public Administration under the President of the Kyrgyz Republic Академия государственного управления при Президенте Кыргызской Республики'), (73611, 'https://ror.org/04a0c3v54', 'no_lang_code', 1, 'https://ror.org/04a0c3v54 Azerbaijan Investment (Azerbaijan) Azərbaycan İnvestisiya Şirkəti'), (73612, 'https://ror.org/04a0qg985', 'en', 1, 'https://ror.org/04a0qg985 Committee on the Administration of Justice'), (73613, 'https://ror.org/04a1gmj86', 'no_lang_code', 1, 'https://ror.org/04a1gmj86 TCG Nordica'), (73614, 'https://ror.org/04a1qr465', 'no_lang_code', 1, 'https://ror.org/04a1qr465 Denovx (United States)'), (73615, 'https://ror.org/04a1y6x02', 'en', 1, 'https://ror.org/04a1y6x02 Strategic Society Centre'), (73616, 'https://ror.org/04a3b0x78', 'en', 1, 'https://ror.org/04a3b0x78 The Tuke Centre'), (73617, 'https://ror.org/04a4fb261', 'en', 1, 'https://ror.org/04a4fb261 Society of Editors'), (73618, 'https://ror.org/04a4xjz41', 'en', 1, 'https://ror.org/04a4xjz41 Cadre Research'), (73619, 'https://ror.org/04a59gq59', 'en', 1, 'https://ror.org/04a59gq59 Bureau of Plant Industry Kawanihan ng Paghahalaman'), (73620, 'https://ror.org/04a5mbz91', 'en', 1, 'https://ror.org/04a5mbz91 Investor Relations Society'), (73621, 'https://ror.org/04a6sax19', 'en', 1, 'https://ror.org/04a6sax19 American Farm School Αμερικανική Γεωργική Σχολή'), (73622, 'https://ror.org/04a7hfh52', 'en', 1, 'https://ror.org/04a7hfh52 Howard Cottage Housing Association'), (73623, 'https://ror.org/04a7qxt37', 'en', 1, 'https://ror.org/04a7qxt37 InternetLab'), (73624, 'https://ror.org/04a908t67', 'en', 1, 'https://ror.org/04a908t67 Centre for Equity Studies'), (73625, 'https://ror.org/04aatd066', 'en', 1, 'https://ror.org/04aatd066 Franco-British Council'), (73626, 'https://ror.org/04abpa862', 'no_lang_code', 1, 'https://ror.org/04abpa862 Holst Centre (Netherlands)'), (73627, 'https://ror.org/04aca8627', 'no_lang_code', 1, 'https://ror.org/04aca8627 ATC Materials (United States)'), (73628, 'https://ror.org/04aez6g96', 'en', 1, 'https://ror.org/04aez6g96 Scottish Community Development Centre'), (73629, 'https://ror.org/04agxqa78', 'en', 1, 'https://ror.org/04agxqa78 David Livingstone Trust'), (73630, 'https://ror.org/04ah8f064', 'en', 1, 'https://ror.org/04ah8f064 Shropshire Archives'), (73631, 'https://ror.org/04ap5hz50', 'no_lang_code', 1, 'https://ror.org/04ap5hz50 VSE Corporation (United States)'), (73632, 'https://ror.org/04aq1wg32', 'en', 1, 'https://ror.org/04aq1wg32 The Supreme People''s Procuratorate of the People''s Republic of China 中国检察官协会'), (73633, 'https://ror.org/04avaqv13', 'no_lang_code', 1, 'https://ror.org/04avaqv13 Ikonix (United States)'), (73634, 'https://ror.org/04avmkt41', 'en', 1, 'https://ror.org/04avmkt41 Institute for Defence Studies and Analyses रक्षा अध्ययन और विश्लेषण संस्थान'), (73635, 'https://ror.org/04awy3v08', 'en', 1, 'https://ror.org/04awy3v08 Eastern Africa Centre for Constitutional Development Kituo cha Katiba'), (73636, 'https://ror.org/04aywmt72', 'es', 1, 'https://ror.org/04aywmt72 Fundación Naturaleza y Hombre'), (73637, 'https://ror.org/04azfmk22', 'en', 1, 'https://ror.org/04azfmk22 Oasis Charitable Trust'), (73638, 'https://ror.org/04b0ymk71', 'es', 1, 'https://ror.org/04b0ymk71'), (73639, 'https://ror.org/04b4htq59', 'en', 1, 'https://ror.org/04b4htq59 Bell Educational Trust'), (73640, 'https://ror.org/04b6bgg83', 'no_lang_code', 1, 'https://ror.org/04b6bgg83 Coridea (United States)'), (73641, 'https://ror.org/04b8c7j14', 'en', 1, 'https://ror.org/04b8c7j14 Association for Real Change'), (73642, 'https://ror.org/04b8ktb84', 'en', 1, 'https://ror.org/04b8ktb84 Open Air Laboratories Network'), (73643, 'https://ror.org/04badap48', 'en', 1, 'https://ror.org/04badap48 Military Institute of Telecommunications and Informatization Полтавський військовий інститут зв''язку'), (73644, 'https://ror.org/04bakg991', 'en', 1, 'https://ror.org/04bakg991 Center for Popular Democracy'), (73645, 'https://ror.org/04bapa014', 'no_lang_code', 1, 'https://ror.org/04bapa014 Hongzhiwei Technology (China) 鸿之微科技'), (73646, 'https://ror.org/04bb5z418', 'no_lang_code', 1, 'https://ror.org/04bb5z418 Molecular Fingerprint (Sweden)'), (73647, 'https://ror.org/04bdan579', 'en', 1, 'https://ror.org/04bdan579 National Rehabilitation Hospital Ospidéal Náisiúnta Athshlánúcháin'), (73648, 'https://ror.org/04beck307', 'no_lang_code', 1, 'https://ror.org/04beck307 Eau de Paris (France)'), (73649, 'https://ror.org/04beybq30', 'en', 1, 'https://ror.org/04beybq30 Association to Contribute to Improve the Governance of Land, Water and Natural Resources'), (73650, 'https://ror.org/04bfhdd88', 'en', 1, 'https://ror.org/04bfhdd88 Abergavenny Museum'), (73651, 'https://ror.org/04bk95661', 'en', 1, 'https://ror.org/04bk95661 Center for Advanced Defense Studies'), (73652, 'https://ror.org/04bmy8c93', 'no_lang_code', 1, 'https://ror.org/04bmy8c93 Banco Montepio (Portugal)'), (73653, 'https://ror.org/04bphbz22', 'en', 1, 'https://ror.org/04bphbz22 Bhutan Centre for Media and Democracy'), (73654, 'https://ror.org/04bty2w72', 'en', 1, 'https://ror.org/04bty2w72 Albuquerque Academy'), (73655, 'https://ror.org/04bw58q80', 'en', 1, 'https://ror.org/04bw58q80 32° East Ugandan Arts Trust'), (73656, 'https://ror.org/04bwj5j23', 'en', 1, 'https://ror.org/04bwj5j23 Alternative Technology Centre'), (73657, 'https://ror.org/04bws0e60', 'en', 1, 'https://ror.org/04bws0e60 Centre for AIDS Development, Research and Evaluation'), (73658, 'https://ror.org/04bxpq277', 'en', 1, 'https://ror.org/04bxpq277 Centre for Self Managed Learning'), (73659, 'https://ror.org/04byf5b56', 'no_lang_code', 1, 'https://ror.org/04byf5b56 Zakład Mechaniki Maszyn (Poland)'), (73660, 'https://ror.org/04byy6k28', 'en', 1, 'https://ror.org/04byy6k28 National Great Rivers Research and Education Center'), (73661, 'https://ror.org/04c0nne72', 'en', 1, 'https://ror.org/04c0nne72 Rylsky Institute of Art Studies, Folklore and Ethnology Інститут мистецтвознавства, фольклористики та етнології ім. М. Т. Рильського'), (73662, 'https://ror.org/04c1s0g33', 'en', 1, 'https://ror.org/04c1s0g33 Maya Educational Foundation'), (73663, 'https://ror.org/04c47m560', 'en', 1, 'https://ror.org/04c47m560 Kerala State Chalachitra Academy കേരള സംസ്ഥാന ചലച്ചിത്ര അക്കാദമി'), (73664, 'https://ror.org/04c4hz115', 'en', 1, 'https://ror.org/04c4hz115 Purdue University Fort Wayne'), (73665, 'https://ror.org/04c5enf18', 'en', 1, 'https://ror.org/04c5enf18 Galicia Jewish Museum Żydowskie Muzeum Galicja'), (73666, 'https://ror.org/04c5nsm37', 'no_lang_code', 1, 'https://ror.org/04c5nsm37 Kalpavriksh'), (73667, 'https://ror.org/04c7bhp05', 'no_lang_code', 1, 'https://ror.org/04c7bhp05 SGL Carbon (Germany)'), (73668, 'https://ror.org/04c7j8965', 'en', 1, 'https://ror.org/04c7j8965 Pontus Research'), (73669, 'https://ror.org/04c7t5k94', 'de', 1, 'https://ror.org/04c7t5k94 Institut für Mittelstandsforschung'), (73670, 'https://ror.org/04c7tcz65', 'no_lang_code', 1, 'https://ror.org/04c7tcz65 DeviceFarm (United States)'), (73671, 'https://ror.org/04caxfb95', 'en', 1, 'https://ror.org/04caxfb95 The Princes Foundation'), (73672, 'https://ror.org/04cd5hv25', 'en', 1, 'https://ror.org/04cd5hv25 New Leaf Center'), (73673, 'https://ror.org/04cecjb61', 'en', 1, 'https://ror.org/04cecjb61 Lancaster City Museum'), (73674, 'https://ror.org/04cm43729', 'no_lang_code', 1, 'https://ror.org/04cm43729 Electron Optica (United States)'), (73675, 'https://ror.org/04cnp9g56', 'en', 1, 'https://ror.org/04cnp9g56 Conservancies KZN'), (73676, 'https://ror.org/04cprvb13', 'no_lang_code', 1, 'https://ror.org/04cprvb13 Engin-Ic (United States)'), (73677, 'https://ror.org/04crvpe09', 'en', 1, 'https://ror.org/04crvpe09 Föreningen Svenskt Flyg Intresse Swedish Air Transport Society'), (73678, 'https://ror.org/04csk5x36', 'en', 1, 'https://ror.org/04csk5x36 Out & Equal Workplace Advocates'), (73679, 'https://ror.org/04ctzs969', 'en', 1, 'https://ror.org/04ctzs969 Friends of the National Railway Museum'), (73680, 'https://ror.org/04cv2s677', 'no_lang_code', 1, 'https://ror.org/04cv2s677 Sevalanka Foundation'), (73681, 'https://ror.org/04cx28z93', 'en', 1, 'https://ror.org/04cx28z93 Jeremy Gardner Associates'), (73682, 'https://ror.org/04d0dqe91', 'en', 1, 'https://ror.org/04d0dqe91 Tunbridge Wells Museum & Art Gallery'), (73683, 'https://ror.org/04d0tbe10', 'no_lang_code', 1, 'https://ror.org/04d0tbe10 Vanu (United States)'), (73684, 'https://ror.org/04d2pnx52', 'en', 1, 'https://ror.org/04d2pnx52 Institute for Complex Analysis of Regional Problems'), (73685, 'https://ror.org/04d2zdx41', 'en', 1, 'https://ror.org/04d2zdx41 Labyrinth Musical Workshop Μουσικό εργαστήρι Λαβύρινθος'), (73686, 'https://ror.org/04d3hex36', 'en', 1, 'https://ror.org/04d3hex36 The Dialogue'), (73687, 'https://ror.org/04d8rzx62', 'en', 1, 'https://ror.org/04d8rzx62 TakeAction Minnesota'), (73688, 'https://ror.org/04d90y792', 'en', 1, 'https://ror.org/04d90y792 China Philanthropy Research Institute 中国公益研究院'), (73689, 'https://ror.org/04d92sd36', 'en', 1, 'https://ror.org/04d92sd36 Lower Saxony State Office for Consumer Protection and Food Safety Niedersächsisch Landesamt für Verbraucherschutz und Lebensmittelsicherheit'), (73690, 'https://ror.org/04d9w7y23', 'no_lang_code', 1, 'https://ror.org/04d9w7y23 TwoCan Associates (United Kingdom)'), (73691, 'https://ror.org/04db4kr72', 'en', 1, 'https://ror.org/04db4kr72 Society for Social Uplift Through Rural Action'), (73692, 'https://ror.org/04dbzyc13', 'en', 1, 'https://ror.org/04dbzyc13 Khizra Foundation'), (73693, 'https://ror.org/04dc9g452', 'de', 1, 'https://ror.org/04dc9g452 Klinikum Osnabrück'), (73694, 'https://ror.org/04dcbs719', 'en', 1, 'https://ror.org/04dcbs719 International Longevity Centre - India'), (73695, 'https://ror.org/04ddadw63', 'en', 1, 'https://ror.org/04ddadw63 Vienna Institute for Nature Conservation & Analyses'), (73696, 'https://ror.org/04de66260', 'no_lang_code', 1, 'https://ror.org/04de66260 Burt (Sweden)'), (73697, 'https://ror.org/04dgdk605', 'en', 1, 'https://ror.org/04dgdk605 Nationellt Forensiskt Centrum Swedish National Forensic Centre'), (73698, 'https://ror.org/04dge4z44', 'en', 1, 'https://ror.org/04dge4z44 Pretrial Justice Institute'), (73699, 'https://ror.org/04dk3n740', 'en', 1, 'https://ror.org/04dk3n740 Jordan National Gallery of Fine Arts المتحف الوطني الأردني للفنون الجميلة'), (73700, 'https://ror.org/04dm8py89', 'no_lang_code', 1, 'https://ror.org/04dm8py89 COBRO (Poland)'), (73701, 'https://ror.org/04drzaz56', 'no_lang_code', 1, 'https://ror.org/04drzaz56 Indivior (United States)'), (73702, 'https://ror.org/04dsd4494', 'pt', 1, 'https://ror.org/04dsd4494 Central Única das Favelas'), (73703, 'https://ror.org/04dsh5k81', 'en', 1, 'https://ror.org/04dsh5k81 Orchestra of the Age of Enlightenment'), (73704, 'https://ror.org/04dvzv716', 'no_lang_code', 1, 'https://ror.org/04dvzv716 Polska Grupa Górnicza (Poland)'), (73705, 'https://ror.org/04dx63c61', 'en', 1, 'https://ror.org/04dx63c61 Nottingham Contemporary'), (73706, 'https://ror.org/04e0gjd70', 'it', 1, 'https://ror.org/04e0gjd70 Istituto Tecnico Industriale Alessandro Volta'), (73707, 'https://ror.org/04e0kmg62', 'pt', 1, 'https://ror.org/04e0kmg62 Favela Observatory Observatório de Favelas'), (73708, 'https://ror.org/04e0phs31', 'en', 1, 'https://ror.org/04e0phs31 Rural Support Partners'), (73709, 'https://ror.org/04e12gr29', 'es', 1, 'https://ror.org/04e12gr29 Federación de Instituciones y Organismos Financieros Rurales'), (73710, 'https://ror.org/04e3cb039', 'en', 1, 'https://ror.org/04e3cb039 French Institute for Research in Africa'), (73711, 'https://ror.org/04e6ef560', 'en', 1, 'https://ror.org/04e6ef560 Southbank Centre'), (73712, 'https://ror.org/04e7x9x31', 'en', 1, 'https://ror.org/04e7x9x31 Open Acting Academy'), (73713, 'https://ror.org/04e8ct712', 'en', 1, 'https://ror.org/04e8ct712 Dialogue Society'), (73714, 'https://ror.org/04e8mam19', 'en', 1, 'https://ror.org/04e8mam19 Organic Centre Wales'), (73715, 'https://ror.org/04ea9we05', 'no_lang_code', 1, 'https://ror.org/04ea9we05 Hope Pharmaceuticals (United States)'), (73716, 'https://ror.org/04eb4dd81', 'en', 1, 'https://ror.org/04eb4dd81 Herefordshire & Worcestershire Earth Heritage Trust'), (73717, 'https://ror.org/04ebdby25', 'en', 1, 'https://ror.org/04ebdby25 Cambridge Cardiac Care Centre'), (73718, 'https://ror.org/04edx5729', 'en', 1, 'https://ror.org/04edx5729 Turner-Fairbank Highway Research Center'), (73719, 'https://ror.org/04ee5c022', 'no_lang_code', 1, 'https://ror.org/04ee5c022 Cognitec (Germany)'), (73720, 'https://ror.org/04efb7z73', 'en', 1, 'https://ror.org/04efb7z73 Rethink Mental Illness'), (73721, 'https://ror.org/04efk6227', 'en', 1, 'https://ror.org/04efk6227 Clevedon Pier & Heritage Trust'), (73722, 'https://ror.org/04egvyc40', 'en', 1, 'https://ror.org/04egvyc40 DrawBridge'), (73723, 'https://ror.org/04eh4dc20', 'no_lang_code', 1, 'https://ror.org/04eh4dc20 Winfoor (Sweden)'), (73724, 'https://ror.org/04ehnbe71', 'en', 1, 'https://ror.org/04ehnbe71 Generation 2.0 for Rights, Equality & Diversity'), (73725, 'https://ror.org/04ejzqx24', 'en', 1, 'https://ror.org/04ejzqx24 Team Restoration Ministries'), (73726, 'https://ror.org/04ests719', 'en', 1, 'https://ror.org/04ests719 National Lesbian and Gay Journalists Association'), (73727, 'https://ror.org/04esx4309', 'no_lang_code', 1, 'https://ror.org/04esx4309 Fairmount Technologies (United States)'), (73728, 'https://ror.org/04ev8y062', 'no_lang_code', 1, 'https://ror.org/04ev8y062 Woundchek Laboratories (United Kingdom)'), (73729, 'https://ror.org/04ex4j806', 'en', 1, 'https://ror.org/04ex4j806 Civil Service'), (73730, 'https://ror.org/04ex99s09', 'en', 1, 'https://ror.org/04ex99s09 Foundations of Success'), (73731, 'https://ror.org/04ez8az68', 'en', 1, 'https://ror.org/04ez8az68 University of Swabi یونیورسٹی آف صوابی'), (73732, 'https://ror.org/04f02tt58', 'no_lang_code', 1, 'https://ror.org/04f02tt58 Laboratório Teuto (Brazil)'), (73733, 'https://ror.org/04f07ep24', 'no_lang_code', 1, 'https://ror.org/04f07ep24 Corona (Poland)'), (73734, 'https://ror.org/04f0gqc60', 'en', 1, 'https://ror.org/04f0gqc60 The Democratic Society'), (73735, 'https://ror.org/04f187557', 'en', 1, 'https://ror.org/04f187557 Sylva Foundation'), (73736, 'https://ror.org/04f204837', 'no_lang_code', 1, 'https://ror.org/04f204837 Enviresearch (United Kingdom)'), (73737, 'https://ror.org/04f2vpk13', 'en', 1, 'https://ror.org/04f2vpk13 Paternity Testing Corporation Laboratories'), (73738, 'https://ror.org/04f41f018', 'no_lang_code', 1, 'https://ror.org/04f41f018 Advanced Algorithm and Systems (Japan)'), (73739, 'https://ror.org/04f433167', 'en', 1, 'https://ror.org/04f433167 The Basketmakers Association'), (73740, 'https://ror.org/04f5aam04', 'es', 1, 'https://ror.org/04f5aam04 Instituto de Biología Agrícola de Mendoza'), (73741, 'https://ror.org/04f8bya54', 'sv', 1, 'https://ror.org/04f8bya54 Fryshuset'), (73742, 'https://ror.org/04fa9he73', 'en', 1, 'https://ror.org/04fa9he73 Robert Gordon''s College'), (73743, 'https://ror.org/04fb9vg34', 'en', 1, 'https://ror.org/04fb9vg34 Baku Academy of Music Hacıbəyov adına Bakı Musiqi Akademiyası'), (73744, 'https://ror.org/04fcsw843', 'en', 1, 'https://ror.org/04fcsw843 Virginia Department of Forensic Science'), (73745, 'https://ror.org/04fd1ra95', 'en', 1, 'https://ror.org/04fd1ra95 Public Knowledge'), (73746, 'https://ror.org/04ff64s07', 'en', 1, 'https://ror.org/04ff64s07 Institute of Diplomacy and Foreign Relations'), (73747, 'https://ror.org/04ffrx392', 'en', 1, 'https://ror.org/04ffrx392 Chartered Institute for Archaeologists'), (73748, 'https://ror.org/04fgqxr51', 'en', 1, 'https://ror.org/04fgqxr51 Earth Trust'), (73749, 'https://ror.org/04fj96439', 'no_lang_code', 1, 'https://ror.org/04fj96439 Vashon Partners (United States)'), (73750, 'https://ror.org/04fjeez29', 'no_lang_code', 1, 'https://ror.org/04fjeez29 Inuheat (Sweden)'), (73751, 'https://ror.org/04fjkn289', 'en', 1, 'https://ror.org/04fjkn289 Taigh Chearsabhagh Museum and Arts Centre'), (73752, 'https://ror.org/04fnrqd89', 'en', 1, 'https://ror.org/04fnrqd89 Institute of Food Biotechnology and Genomics Інститут харчової біотехнології та геноміки'), (73753, 'https://ror.org/04fnvtv49', 'da', 1, 'https://ror.org/04fnvtv49 Tycho Brahe Planetarium'), (73754, 'https://ror.org/04fp2d244', 'en', 1, 'https://ror.org/04fp2d244 Ministry of Education'), (73755, 'https://ror.org/04fqnjy45', 'en', 1, 'https://ror.org/04fqnjy45 The Feminist Library'), (73756, 'https://ror.org/04fr05765', 'no_lang_code', 1, 'https://ror.org/04fr05765 Discerning Technologies (United States)'), (73757, 'https://ror.org/04fs8fj61', 'en', 1, 'https://ror.org/04fs8fj61 East Africa Law Society'), (73758, 'https://ror.org/04fsg5361', 'en', 1, 'https://ror.org/04fsg5361 Theatrescience'), (73759, 'https://ror.org/04ft60f45', 'en', 1, 'https://ror.org/04ft60f45 Cromarty Arts Trust'), (73760, 'https://ror.org/04fves037', 'no_lang_code', 1, 'https://ror.org/04fves037 Standard Chartered (Singapore)'), (73761, 'https://ror.org/04fvg7665', 'en', 1, 'https://ror.org/04fvg7665 State Institute of Cultural Heritage of the Peoples of Turkmenistan Государственный институт культурного наследия народов Туркменистана'), (73762, 'https://ror.org/04fwehd44', 'no_lang_code', 1, 'https://ror.org/04fwehd44 InfoAssure (United States)'), (73763, 'https://ror.org/04fx4cs28', 'en', 1, 'https://ror.org/04fx4cs28 The Tavistock and Portman NHS Foundation Trust'), (73764, 'https://ror.org/04fyc2a82', 'en', 1, 'https://ror.org/04fyc2a82 Sustainable Inshore Fisheries Trust'), (73765, 'https://ror.org/04fyq4a48', 'en', 1, 'https://ror.org/04fyq4a48 Jana Sanskriti Centre for Theatre of the Oppressed'), (73766, 'https://ror.org/04fyt3464', 'en', 1, 'https://ror.org/04fyt3464 Shaanxi History Museum 陕西历史博物馆'), (73767, 'https://ror.org/04g0m9s20', 'no_lang_code', 1, 'https://ror.org/04g0m9s20 Riwaq'), (73768, 'https://ror.org/04g0z8x68', 'no_lang_code', 1, 'https://ror.org/04g0z8x68 Abeno Harukas Art Museum あべのハルカス美術館'), (73769, 'https://ror.org/04g2vnx61', 'en', 1, 'https://ror.org/04g2vnx61 Hellenic Adult Education Association Επιστημονική Ένωση Εκπαίδευσης Ενηλίκων'), (73770, 'https://ror.org/04g4wrc61', 'en', 1, 'https://ror.org/04g4wrc61 The Justice Management Institute'), (73771, 'https://ror.org/04g5jfs38', 'no_lang_code', 1, 'https://ror.org/04g5jfs38 Advanced Optical Technologies (United States)'), (73772, 'https://ror.org/04g5q3m07', 'no_lang_code', 1, 'https://ror.org/04g5q3m07 Dinntec (Colombia)'), (73773, 'https://ror.org/04g84km62', 'no_lang_code', 1, 'https://ror.org/04g84km62 KW Engineering (United States)'), (73774, 'https://ror.org/04g8kt609', 'en', 1, 'https://ror.org/04g8kt609 O‘zbekiston Respublikasi Fanlar Akademiyasi Tarix Instituti The Institute of History of The Academy of Sciences of The Republic of Uzbekistan Институт Истории Академии Наук Республики Узбекистан'), (73775, 'https://ror.org/04g8zfc73', 'pt', 1, 'https://ror.org/04g8zfc73 Ethnic Media Institute Instituto Midia Étnica'), (73776, 'https://ror.org/04g9aps05', 'en', 1, 'https://ror.org/04g9aps05 British Record Society'), (73777, 'https://ror.org/04ganmj42', 'no_lang_code', 1, 'https://ror.org/04ganmj42 Herrick Technology Laboratories (United States)'), (73778, 'https://ror.org/04gbdgm24', 'no_lang_code', 1, 'https://ror.org/04gbdgm24 Champions Oncology (United States)'), (73779, 'https://ror.org/04gbygd07', 'no_lang_code', 1, 'https://ror.org/04gbygd07 Transbit (Poland)'), (73780, 'https://ror.org/04gcfwh66', 'en', 1, 'https://ror.org/04gcfwh66 The First People''s Hospital of Zhaoqing 肇庆市第一人民医院'), (73781, 'https://ror.org/04gck6g78', 'en', 1, 'https://ror.org/04gck6g78 University of Modern Sciences جامعة العلوم الحديثة'), (73782, 'https://ror.org/04gfanq43', 'no_lang_code', 1, 'https://ror.org/04gfanq43 British American Tobacco (Uzbekistan)'), (73783, 'https://ror.org/04gfk4b59', 'en', 1, 'https://ror.org/04gfk4b59 Ministerio de Cultura Ministry of Culture'), (73784, 'https://ror.org/04gh4hn58', 'en', 1, 'https://ror.org/04gh4hn58 Southern Coalition for Social Justice'), (73785, 'https://ror.org/04gj4mv97', 'no_lang_code', 1, 'https://ror.org/04gj4mv97 Intact Genomics (United States)'), (73786, 'https://ror.org/04gjcva23', 'no_lang_code', 1, 'https://ror.org/04gjcva23 Two Sigma Investments (United States)'), (73787, 'https://ror.org/04gk2ac25', 'es', 1, 'https://ror.org/04gk2ac25 Ministerio Público de la Defensa'), (73788, 'https://ror.org/04gnd7n67', 'pt', 1, 'https://ror.org/04gnd7n67 Centro de Cultura Luiz Freire'), (73789, 'https://ror.org/04gnvyj62', 'en', 1, 'https://ror.org/04gnvyj62 The BEARR Trust'), (73790, 'https://ror.org/04gq33t30', 'no_lang_code', 1, 'https://ror.org/04gq33t30 Chase Research Cryogenics (United Kingdom)'), (73791, 'https://ror.org/04gqz0031', 'no_lang_code', 1, 'https://ror.org/04gqz0031 H6 Systems (United States)'), (73792, 'https://ror.org/04gs0zr76', 'en', 1, 'https://ror.org/04gs0zr76 South Lanarkshire Council'), (73793, 'https://ror.org/04gv3sq83', 'no_lang_code', 1, 'https://ror.org/04gv3sq83 AngelMed (United States)'), (73794, 'https://ror.org/04gv91m66', 'en', 1, 'https://ror.org/04gv91m66 Chartered Society of Designers'), (73795, 'https://ror.org/04gw3cp30', 'es', 1, 'https://ror.org/04gw3cp30 Seminario Permanente de Investigación Agraria'), (73796, 'https://ror.org/04gww5p47', 'en', 1, 'https://ror.org/04gww5p47 Heritage Lower Saint Lawrence'), (73797, 'https://ror.org/04gwy5274', 'no_lang_code', 1, 'https://ror.org/04gwy5274 Ferroamp Elektronik (Sweden)'), (73798, 'https://ror.org/04gwzxy46', 'en', 1, 'https://ror.org/04gwzxy46 End Violence Against Women'), (73799, 'https://ror.org/04gy0kq46', 'no_lang_code', 1, 'https://ror.org/04gy0kq46 Scanmed (Poland)'), (73800, 'https://ror.org/04gyqbv83', 'en', 1, 'https://ror.org/04gyqbv83 Staffordshire County Council'), (73801, 'https://ror.org/04h0bdf39', 'en', 1, 'https://ror.org/04h0bdf39 Sisters of Mercy of the Americas'), (73802, 'https://ror.org/04h1th525', 'no_lang_code', 1, 'https://ror.org/04h1th525 DigitalSpace (United States)'), (73803, 'https://ror.org/04h347b80', 'en', 1, 'https://ror.org/04h347b80 Institute of Art and Ideas'), (73804, 'https://ror.org/04h3krc89', 'en', 1, 'https://ror.org/04h3krc89 National Secretariat - Indonesian Forum for Budget Transparency Sekretariat Nasional Forum Indonesia untuk Transparansi'), (73805, 'https://ror.org/04h3mfd12', 'no_lang_code', 1, 'https://ror.org/04h3mfd12 Intel (Brazil)'), (73806, 'https://ror.org/04h516318', 'no_lang_code', 1, 'https://ror.org/04h516318 Firestar Technologies (United States)'), (73807, 'https://ror.org/04h51r045', 'en', 1, 'https://ror.org/04h51r045 Interdisciplinary Scientific Research'), (73808, 'https://ror.org/04h54m622', 'de', 1, 'https://ror.org/04h54m622 Gemeinschaftsklinikum Mittelrhein'), (73809, 'https://ror.org/04h75qr14', 'en', 1, 'https://ror.org/04h75qr14 Sobhraj Maternity Hospital'), (73810, 'https://ror.org/04h8bnx49', 'en', 1, 'https://ror.org/04h8bnx49 Mitchell Library'), (73811, 'https://ror.org/04h8j1922', 'no_lang_code', 1, 'https://ror.org/04h8j1922 Alvin Ailey (United States)'), (73812, 'https://ror.org/04hc8pc27', 'en', 1, 'https://ror.org/04hc8pc27 The Allaince Advancing Regional Equity'), (73813, 'https://ror.org/04hhsn876', 'en', 1, 'https://ror.org/04hhsn876 National Employment Savings Trust'), (73814, 'https://ror.org/04hjd4917', 'no_lang_code', 1, 'https://ror.org/04hjd4917 Hardric Laboratories (United States)'), (73815, 'https://ror.org/04hjm1265', 'no_lang_code', 1, 'https://ror.org/04hjm1265 Group W (United States)'), (73816, 'https://ror.org/04hk30d26', 'no_lang_code', 1, 'https://ror.org/04hk30d26 Perpetuity Research (United Kingdom)'), (73817, 'https://ror.org/04hkn2n95', 'en', 1, 'https://ror.org/04hkn2n95 Milapfest'), (73818, 'https://ror.org/04hktxn88', 'no_lang_code', 1, 'https://ror.org/04hktxn88 Mantis Vision (Israel)'), (73819, 'https://ror.org/04hpe2n33', 'en', 1, 'https://ror.org/04hpe2n33 Haywood Academy'), (73820, 'https://ror.org/04hqk0696', 'en', 1, 'https://ror.org/04hqk0696 Fabric Workshop and Museum'), (73821, 'https://ror.org/04hqqb835', 'no_lang_code', 1, 'https://ror.org/04hqqb835 Camras Vision (United States)'), (73822, 'https://ror.org/04hse4551', 'no_lang_code', 1, 'https://ror.org/04hse4551 Kamukunji Paralegal Trust'), (73823, 'https://ror.org/04hsv5386', 'en', 1, 'https://ror.org/04hsv5386 British Association of Picture Libraries and Agencies'), (73824, 'https://ror.org/04htmqx50', 'no_lang_code', 1, 'https://ror.org/04htmqx50 Evispot (Sweden)'), (73825, 'https://ror.org/04hv2da60', 'no_lang_code', 1, 'https://ror.org/04hv2da60 i2 Media Research (United Kingdom)'), (73826, 'https://ror.org/04hvavg21', 'no_lang_code', 1, 'https://ror.org/04hvavg21 BRAC ব্র্যাক সেন্টার'), (73827, 'https://ror.org/04hytgp84', 'pt', 1, 'https://ror.org/04hytgp84 Instituto Vladimir Herzog'), (73828, 'https://ror.org/04hzsme37', 'no_lang_code', 1, 'https://ror.org/04hzsme37 Medituner (Sweden)'), (73829, 'https://ror.org/04j1vxv82', 'en', 1, 'https://ror.org/04j1vxv82 Yorkshire Agricultural Society'), (73830, 'https://ror.org/04j4pfa24', 'en', 1, 'https://ror.org/04j4pfa24 Arms Control Association'); INSERT INTO `rors` VALUES (73831, 'https://ror.org/04j4xtm35', 'en', 1, 'https://ror.org/04j4xtm35 Institute of Scientific Information on Social Sciences Институт научной информации по общественным наукам'), (73832, 'https://ror.org/04j57sj69', 'ga', 1, 'https://ror.org/04j57sj69 Garda Síochána Inspectorate'), (73833, 'https://ror.org/04j5w9585', 'no_lang_code', 1, 'https://ror.org/04j5w9585 3Eflow (Sweden)'), (73834, 'https://ror.org/04j7q4722', 'en', 1, 'https://ror.org/04j7q4722 Institute for Jewish Policy Research'), (73835, 'https://ror.org/04j8fde02', 'fr', 1, 'https://ror.org/04j8fde02 Centre Français de Recherche en Sciences Sociales Francouzský ústav pro výzkum ve společenských vědách French Research Center in Humanities and Social Sciences'), (73836, 'https://ror.org/04j8yhy50', 'en', 1, 'https://ror.org/04j8yhy50 Science Oxford'), (73837, 'https://ror.org/04j9eba34', 'en', 1, 'https://ror.org/04j9eba34 Wysing Arts Centre'), (73838, 'https://ror.org/04j9qwe36', 'en', 1, 'https://ror.org/04j9qwe36 Danish Refugee Council Dansk Flygtningehjælp'), (73839, 'https://ror.org/04jav4h88', 'no_lang_code', 1, 'https://ror.org/04jav4h88 Adjuvance (United States)'), (73840, 'https://ror.org/04jbk1p62', 'no_lang_code', 1, 'https://ror.org/04jbk1p62'), (73841, 'https://ror.org/04jd5mx11', 'no_lang_code', 1, 'https://ror.org/04jd5mx11 iGW (Sweden)'), (73842, 'https://ror.org/04jdgsn04', 'en', 1, 'https://ror.org/04jdgsn04 Blue Marine Foundation'), (73843, 'https://ror.org/04jffap62', 'no_lang_code', 1, 'https://ror.org/04jffap62 Inkbit (United States)'), (73844, 'https://ror.org/04jg5kt84', 'en', 1, 'https://ror.org/04jg5kt84 Asian Pacific Environmental Network'), (73845, 'https://ror.org/04jgxcn84', 'no_lang_code', 1, 'https://ror.org/04jgxcn84 C&R Technologies (United States)'), (73846, 'https://ror.org/04jjxrc37', 'en', 1, 'https://ror.org/04jjxrc37 Office of the Governor'), (73847, 'https://ror.org/04jn6c360', 'no_lang_code', 1, 'https://ror.org/04jn6c360 Arne Jensen (Sweden)'), (73848, 'https://ror.org/04jpkas74', 'de', 1, 'https://ror.org/04jpkas74 Albertinen Diakoniewerk'), (73849, 'https://ror.org/04jq8tj07', 'en', 1, 'https://ror.org/04jq8tj07 ASEM Water Resources Research and Development Centre'), (73850, 'https://ror.org/04jsfmm36', 'en', 1, 'https://ror.org/04jsfmm36 Centre for Literacy in Primary Education'), (73851, 'https://ror.org/04jvezd47', 'no_lang_code', 1, 'https://ror.org/04jvezd47 Conrad Technologies (United States)'), (73852, 'https://ror.org/04jw55602', 'en', 1, 'https://ror.org/04jw55602 Global Stem cell & Regenerative medicine Acceleration Center'), (73853, 'https://ror.org/04jw9yz80', 'no_lang_code', 1, 'https://ror.org/04jw9yz80 Elex Biotech (United States)'), (73854, 'https://ror.org/04jx1nd20', 'en', 1, 'https://ror.org/04jx1nd20 National Eczema Society'), (73855, 'https://ror.org/04jy9y087', 'en', 1, 'https://ror.org/04jy9y087 Pennsylvania Coalition Against Domestic Violence'), (73856, 'https://ror.org/04k0m1906', 'no_lang_code', 1, 'https://ror.org/04k0m1906 GlobalAgRisk (United States)'), (73857, 'https://ror.org/04k10z253', 'en', 1, 'https://ror.org/04k10z253 Green Capacity'), (73858, 'https://ror.org/04k2vba54', 'no_lang_code', 1, 'https://ror.org/04k2vba54 Molecular Theranostics (United States)'), (73859, 'https://ror.org/04k2y5271', 'en', 1, 'https://ror.org/04k2y5271 Epic Theatre Ensemble'), (73860, 'https://ror.org/04k3h1n36', 'no_lang_code', 1, 'https://ror.org/04k3h1n36 ADW (Poland)'), (73861, 'https://ror.org/04k3q6a72', 'en', 1, 'https://ror.org/04k3q6a72 Blind and Sight Impaired Society'), (73862, 'https://ror.org/04k3sfn15', 'en', 1, 'https://ror.org/04k3sfn15 Le musée Dr Guislain Museum Dr Guislain'), (73863, 'https://ror.org/04k5c4t69', 'no_lang_code', 1, 'https://ror.org/04k5c4t69 Sa-Dhan'), (73864, 'https://ror.org/04k7q3y31', 'en', 1, 'https://ror.org/04k7q3y31 Horse Hospital'), (73865, 'https://ror.org/04k8txf58', 'no_lang_code', 1, 'https://ror.org/04k8txf58 EpiSys Science (United States)'), (73866, 'https://ror.org/04k9wp214', 'en', 1, 'https://ror.org/04k9wp214 NIHR Trauma Management MedTech Co-operative'), (73867, 'https://ror.org/04kae8j43', 'en', 1, 'https://ror.org/04kae8j43 Instituto'), (73868, 'https://ror.org/04kb7h130', 'en', 1, 'https://ror.org/04kb7h130 Irrigation Management Training Institute'), (73869, 'https://ror.org/04kdrdn36', 'en', 1, 'https://ror.org/04kdrdn36 Awdurdod Ystadegau''r DU UK Statistics Authority'), (73870, 'https://ror.org/04ke81j60', 'no_lang_code', 1, 'https://ror.org/04ke81j60 Katiba Institute'), (73871, 'https://ror.org/04keq6987', 'en', 1, 'https://ror.org/04keq6987 Purdue University Northwest'), (73872, 'https://ror.org/04kesq777', 'en', 1, 'https://ror.org/04kesq777 European Centre for Living Technology'), (73873, 'https://ror.org/04kpt5t78', 'en', 1, 'https://ror.org/04kpt5t78 Manufacturing Technologies Association'), (73874, 'https://ror.org/04kpx4g09', 'en', 1, 'https://ror.org/04kpx4g09 Northern Ireland Council for Integrated Education'), (73875, 'https://ror.org/04kqnad16', 'en', 1, 'https://ror.org/04kqnad16 Svenska Höftprotesregistret The Swedish Hip Arthroplasty Register'), (73876, 'https://ror.org/04ks1pv36', 'en', 1, 'https://ror.org/04ks1pv36 Law Institute of Lithuania Teisės institutas'), (73877, 'https://ror.org/04kw2cw23', 'en', 1, 'https://ror.org/04kw2cw23 Center for Responsible Lending'), (73878, 'https://ror.org/04kwf3417', 'en', 1, 'https://ror.org/04kwf3417 Housing California'), (73879, 'https://ror.org/04kwfkk85', 'no_lang_code', 1, 'https://ror.org/04kwfkk85 Nokia (France)'), (73880, 'https://ror.org/04kxvwk47', 'en', 1, 'https://ror.org/04kxvwk47 Local Trust'), (73881, 'https://ror.org/04kymnq52', 'fr', 1, 'https://ror.org/04kymnq52 Centre de Recherche en Technologie des Semi-conducteurs pour l’Energétique'), (73882, 'https://ror.org/04m0rev75', 'en', 1, 'https://ror.org/04m0rev75 MidSchoolMath'), (73883, 'https://ror.org/04m1grf16', 'en', 1, 'https://ror.org/04m1grf16 Zambia Red Cross Society'), (73884, 'https://ror.org/04m2re361', 'en', 1, 'https://ror.org/04m2re361 Ormiston Bushfield Academy'), (73885, 'https://ror.org/04m2vv179', 'no_lang_code', 1, 'https://ror.org/04m2vv179 Arcos (United States)'), (73886, 'https://ror.org/04m3c6y30', 'vi', 1, 'https://ror.org/04m3c6y30 Học viện Tư pháp'), (73887, 'https://ror.org/04m3ze057', 'no_lang_code', 1, 'https://ror.org/04m3ze057 Bioinduction (United Kingdom)'), (73888, 'https://ror.org/04m4hft71', 'en', 1, 'https://ror.org/04m4hft71 Americans for Financial Reform Education Fund'), (73889, 'https://ror.org/04m541b31', 'en', 1, 'https://ror.org/04m541b31 Chartered Institute of Procurement & Supply'), (73890, 'https://ror.org/04m5xrq42', 'en', 1, 'https://ror.org/04m5xrq42 Music Venue Trust'), (73891, 'https://ror.org/04m6k0e70', 'no_lang_code', 1, 'https://ror.org/04m6k0e70 Drakontas (United States)'), (73892, 'https://ror.org/04m83kv34', 'no_lang_code', 1, 'https://ror.org/04m83kv34 Eligo Bioscience (France)'), (73893, 'https://ror.org/04m8nb974', 'no_lang_code', 1, 'https://ror.org/04m8nb974 SPring-8 (Japan) スプリングエイトサービス'), (73894, 'https://ror.org/04m9ftx85', 'en', 1, 'https://ror.org/04m9ftx85 Istanbul Foundation for Research and Education İSTANBUL ARAŞTIRMA VE EĞİTİM VAKFI'), (73895, 'https://ror.org/04mc93t41', 'en', 1, 'https://ror.org/04mc93t41 New York City Department of Transportation'), (73896, 'https://ror.org/04mevkg92', 'en', 1, 'https://ror.org/04mevkg92 Rural Action'), (73897, 'https://ror.org/04mfvsa73', 'en', 1, 'https://ror.org/04mfvsa73 The Cinema Museum'), (73898, 'https://ror.org/04mk94w26', 'en', 1, 'https://ror.org/04mk94w26 National Coastal Tourism Academy'), (73899, 'https://ror.org/04mm4cb76', 'en', 1, 'https://ror.org/04mm4cb76 Chicago Youth Symphony Orchestras'), (73900, 'https://ror.org/04mmeqg04', 'fr', 1, 'https://ror.org/04mmeqg04 Agence France Presse'), (73901, 'https://ror.org/04mn04g76', 'en', 1, 'https://ror.org/04mn04g76 Rajasthan Police Academy राजस्थान पुलिस अकादमी'), (73902, 'https://ror.org/04mrfa287', 'no_lang_code', 1, 'https://ror.org/04mrfa287 NanoCor Therapeutics (United States)'), (73903, 'https://ror.org/04ms3vt90', 'no_lang_code', 1, 'https://ror.org/04ms3vt90 Ten Medical Design (Sweden)'), (73904, 'https://ror.org/04mvkev15', 'en', 1, 'https://ror.org/04mvkev15 Twentieth Century Society'), (73905, 'https://ror.org/04mw9je83', 'en', 1, 'https://ror.org/04mw9je83 Dudhope Multicultural Centre'), (73906, 'https://ror.org/04mwgzt90', 'en', 1, 'https://ror.org/04mwgzt90 National Health Systems Resource Centre'), (73907, 'https://ror.org/04myjct49', 'no_lang_code', 1, 'https://ror.org/04myjct49 Airospring (United Kingdom)'), (73908, 'https://ror.org/04myryz50', 'en', 1, 'https://ror.org/04myryz50 The Nuclear Institute'), (73909, 'https://ror.org/04n09hm86', 'pt', 1, 'https://ror.org/04n09hm86 Fórum Nacional das Entidades Civis de Defesa do Consumidor'), (73910, 'https://ror.org/04n11wj95', 'en', 1, 'https://ror.org/04n11wj95 National Portrait Gallery'), (73911, 'https://ror.org/04n1dwf03', 'no_lang_code', 1, 'https://ror.org/04n1dwf03 ECM Technologies (France)'), (73912, 'https://ror.org/04n1tep93', 'en', 1, 'https://ror.org/04n1tep93 Ardler Village Trust'), (73913, 'https://ror.org/04n3ta263', 'no_lang_code', 1, 'https://ror.org/04n3ta263 Flometrics (United States)'), (73914, 'https://ror.org/04n49tc44', 'en', 1, 'https://ror.org/04n49tc44 Economic Policy Research Institute'), (73915, 'https://ror.org/04n4nnv87', 'no_lang_code', 1, 'https://ror.org/04n4nnv87 Graphensic (Sweden)'), (73916, 'https://ror.org/04n5gt552', 'en', 1, 'https://ror.org/04n5gt552 Supra-Regional Assay Service'), (73917, 'https://ror.org/04n66vw09', 'no_lang_code', 1, 'https://ror.org/04n66vw09 Lab Resources (United States)'), (73918, 'https://ror.org/04n78zc82', 'en', 1, 'https://ror.org/04n78zc82 Kenya Health Informatics Association'), (73919, 'https://ror.org/04n8wxk74', 'en', 1, 'https://ror.org/04n8wxk74 American Immigration Lawyers Association'), (73920, 'https://ror.org/04n96a723', 'en', 1, 'https://ror.org/04n96a723 Kraszna-Krausz Foundation'), (73921, 'https://ror.org/04na1dr63', 'en', 1, 'https://ror.org/04na1dr63 Anthropological Survey of India'), (73922, 'https://ror.org/04nbbfv42', 'en', 1, 'https://ror.org/04nbbfv42 Contemporary Visual Arts Network'), (73923, 'https://ror.org/04nem5m18', 'no_lang_code', 1, 'https://ror.org/04nem5m18 Molecule Works (United States)'), (73924, 'https://ror.org/04nffa559', 'en', 1, 'https://ror.org/04nffa559 Sichuan Academy Of Social Sciences 四川省社会科学院'), (73925, 'https://ror.org/04nhd8d77', 'no_lang_code', 1, 'https://ror.org/04nhd8d77 SwissLitho (Switzerland)'), (73926, 'https://ror.org/04nhyzz08', 'en', 1, 'https://ror.org/04nhyzz08 St. Thomas Medical Group'), (73927, 'https://ror.org/04nm9tm11', 'en', 1, 'https://ror.org/04nm9tm11 Girls Not Brides'), (73928, 'https://ror.org/04nnjqq50', 'en', 1, 'https://ror.org/04nnjqq50 Philippine Cancer Society'), (73929, 'https://ror.org/04np9tf37', 'en', 1, 'https://ror.org/04np9tf37 Poltava Regional Institute of Postgraduate Education Полтавський обласний інститут післядипломної педагогічної освіти імені М. В. Остроградського'), (73930, 'https://ror.org/04npwyz19', 'en', 1, 'https://ror.org/04npwyz19 Church Service Society'), (73931, 'https://ror.org/04nrddh60', 'no_lang_code', 1, 'https://ror.org/04nrddh60 A Luck Associates (United Kingdom)'), (73932, 'https://ror.org/04nsmsp44', 'en', 1, 'https://ror.org/04nsmsp44 Tinderbox Theatre'), (73933, 'https://ror.org/04nt7yh90', 'en', 1, 'https://ror.org/04nt7yh90 Lambda Legal'), (73934, 'https://ror.org/04ntxw843', 'en', 1, 'https://ror.org/04ntxw843 International Cinema Education'), (73935, 'https://ror.org/04nwbht92', 'no_lang_code', 1, 'https://ror.org/04nwbht92 Tricol Biomedical (United States)'), (73936, 'https://ror.org/04nwm6350', 'en', 1, 'https://ror.org/04nwm6350 Comhairle Choitcheann Teagaisg na h-Alba, The General Teaching Council for Scotland'), (73937, 'https://ror.org/04nwvkj48', 'en', 1, 'https://ror.org/04nwvkj48 International Comparative Literature Association'), (73938, 'https://ror.org/04nx3q556', 'en', 1, 'https://ror.org/04nx3q556 Metropolitan Black Police Association'), (73939, 'https://ror.org/04nzac004', 'no_lang_code', 1, 'https://ror.org/04nzac004 CRRC (United Kingdom)'), (73940, 'https://ror.org/04nzg6m33', 'en', 1, 'https://ror.org/04nzg6m33 Foundation Tallinn 2011 Sihtasutus Tallinn 2011 Ajalugu ЦЕЛЕВОЕ УЧРЕЖДЕНИЕ «ТАЛЛИНН 2011»'), (73941, 'https://ror.org/04nznt564', 'en', 1, 'https://ror.org/04nznt564 Centre for Nepal Studies'), (73942, 'https://ror.org/04nzw6768', 'no_lang_code', 1, 'https://ror.org/04nzw6768 W. L. Gore & Associates (United Kingdom)'), (73943, 'https://ror.org/04p0tpz02', 'en', 1, 'https://ror.org/04p0tpz02 The Greenlining Institute'), (73944, 'https://ror.org/04p3gx041', 'no_lang_code', 1, 'https://ror.org/04p3gx041 Specialist Vehicle Research and Development (United Kingdom)'), (73945, 'https://ror.org/04p41m479', 'en', 1, 'https://ror.org/04p41m479 Ministry of Education and Science of the Republic of Tatarstan Министерство образования и науки Республики Татарстан'), (73946, 'https://ror.org/04p42tf84', 'no_lang_code', 1, 'https://ror.org/04p42tf84 Nanosolar (United States)'), (73947, 'https://ror.org/04p5h5d21', 'en', 1, 'https://ror.org/04p5h5d21 Electoral Reform Society'), (73948, 'https://ror.org/04p7gyb31', 'no_lang_code', 1, 'https://ror.org/04p7gyb31 Allure (United States)'), (73949, 'https://ror.org/04p858908', 'en', 1, 'https://ror.org/04p858908 Daedalus Trust'), (73950, 'https://ror.org/04pb43063', 'no_lang_code', 1, 'https://ror.org/04pb43063 DWA Aluminum Composites (United States)'), (73951, 'https://ror.org/04pc9r783', 'en', 1, 'https://ror.org/04pc9r783 Edinburgh World Heritage'), (73952, 'https://ror.org/04pjzs357', 'en', 1, 'https://ror.org/04pjzs357 Creative Foundation'), (73953, 'https://ror.org/04pngg224', 'no_lang_code', 1, 'https://ror.org/04pngg224 DJ Associates (United States)'), (73954, 'https://ror.org/04pp9zs91', 'no_lang_code', 1, 'https://ror.org/04pp9zs91 Engineering Science Analysis (United States)'), (73955, 'https://ror.org/04pq4an73', 'no_lang_code', 1, 'https://ror.org/04pq4an73 Kiko Labs (United States)'), (73956, 'https://ror.org/04pqzwm85', 'no_lang_code', 1, 'https://ror.org/04pqzwm85 GlaxoSmithKline (Brazil)'), (73957, 'https://ror.org/04pvsp066', 'no_lang_code', 1, 'https://ror.org/04pvsp066 Chromation (United States)'), (73958, 'https://ror.org/04pw37k23', 'no_lang_code', 1, 'https://ror.org/04pw37k23 Deciwatt (United Kingdom)'), (73959, 'https://ror.org/04py12f74', 'no_lang_code', 1, 'https://ror.org/04py12f74 PublicPolicy.ie (Ireland)'), (73960, 'https://ror.org/04pzbyz40', 'no_lang_code', 1, 'https://ror.org/04pzbyz40 Ananse (Brazil)'), (73961, 'https://ror.org/04q08td48', 'en', 1, 'https://ror.org/04q08td48 Republic Klaipeda Hospital Respublikinė Klaipėdos ligoninė'), (73962, 'https://ror.org/04q17db63', 'no_lang_code', 1, 'https://ror.org/04q17db63 Brown Computer Company (United States)'), (73963, 'https://ror.org/04q23qy39', 'en', 1, 'https://ror.org/04q23qy39 Chaudhary Ranbir Singh University चौधरी रणबीर सिंह विश्वविद्यालय'), (73964, 'https://ror.org/04q267888', 'en', 1, 'https://ror.org/04q267888 Pitt Rivers Museum'), (73965, 'https://ror.org/04q2b1z76', 'no_lang_code', 1, 'https://ror.org/04q2b1z76 Brainquake (United States)'), (73966, 'https://ror.org/04q6az286', 'en', 1, 'https://ror.org/04q6az286 Carbon180'), (73967, 'https://ror.org/04q8qbp45', 'en', 1, 'https://ror.org/04q8qbp45 Shoreditch Trust'), (73968, 'https://ror.org/04q8xq606', 'en', 1, 'https://ror.org/04q8xq606 National Museum of the Royal Navy'), (73969, 'https://ror.org/04q9spx56', 'no_lang_code', 1, 'https://ror.org/04q9spx56 Proen (Poland)'), (73970, 'https://ror.org/04qbfzp68', 'en', 1, 'https://ror.org/04qbfzp68 Centre for Child Evaluation & Teaching مركز تقويم وتعليم الطفل'), (73971, 'https://ror.org/04qbw6v56', 'pt', 1, 'https://ror.org/04qbw6v56 Núcleo Interdisciplinar da Ciência do Sono'), (73972, 'https://ror.org/04qer5752', 'en', 1, 'https://ror.org/04qer5752 Institute of Archaeology named after A.Kh.Margulan Ә.Х. Марғұлан атындағы Археология институты'), (73973, 'https://ror.org/04qfef108', 'en', 1, 'https://ror.org/04qfef108 Language Systems International College of English'), (73974, 'https://ror.org/04qgafw47', 'en', 1, 'https://ror.org/04qgafw47 The Katie Piper Foundation'), (73975, 'https://ror.org/04qke1n53', 'en', 1, 'https://ror.org/04qke1n53 Veterinary Medicines Directorate'), (73976, 'https://ror.org/04qnap020', 'en', 1, 'https://ror.org/04qnap020 World Healthal Trust'), (73977, 'https://ror.org/04qpdjf24', 'no_lang_code', 1, 'https://ror.org/04qpdjf24 Cambridge Research Biochemicals (United Kingdom)'), (73978, 'https://ror.org/04qq74014', 'no_lang_code', 1, 'https://ror.org/04qq74014 Dedini Industrias De Base (Brazil)'), (73979, 'https://ror.org/04qtg7w92', 'en', 1, 'https://ror.org/04qtg7w92 Theatre Royal and Royal Concert Hall'), (73980, 'https://ror.org/04qtj6724', 'no_lang_code', 1, 'https://ror.org/04qtj6724 Berge (Sweden)'), (73981, 'https://ror.org/04qtnvc29', 'en', 1, 'https://ror.org/04qtnvc29 Taichung City Government 台中市政府'), (73982, 'https://ror.org/04qw67643', 'en', 1, 'https://ror.org/04qw67643 Community Labor United'), (73983, 'https://ror.org/04qwqk520', 'en', 1, 'https://ror.org/04qwqk520 State of Alaska Office of the Governor'), (73984, 'https://ror.org/04qzn0m54', 'en', 1, 'https://ror.org/04qzn0m54 The Academy at Shotton Hall'), (73985, 'https://ror.org/04r0mp352', 'no_lang_code', 1, 'https://ror.org/04r0mp352 Magnetic Resonance Innovations (United States)'), (73986, 'https://ror.org/04r3a4v95', 'fr', 1, 'https://ror.org/04r3a4v95 Comité Rhodanien d’Accueil des Réfugiés et de Défense du Droit d''Asile, Forum Réfugiés - Cosi'), (73987, 'https://ror.org/04r5fge26', 'en', 1, 'https://ror.org/04r5fge26 Institute for High Performance Computing and Networking Istituto di Calcolo e Reti ad Alte Prestazioni'), (73988, 'https://ror.org/04r67z754', 'no_lang_code', 1, 'https://ror.org/04r67z754 Soleno Therapeutics (United States)'), (73989, 'https://ror.org/04r7ckw96', 'es', 1, 'https://ror.org/04r7ckw96 Agrupación Astronómica de la Safor'), (73990, 'https://ror.org/04r7jvc53', 'no_lang_code', 1, 'https://ror.org/04r7jvc53 Diapin Therapeutics (United States)'), (73991, 'https://ror.org/04r8tna72', 'en', 1, 'https://ror.org/04r8tna72 Hadaf Institute of Higher Education'), (73992, 'https://ror.org/04ramzc89', 'en', 1, 'https://ror.org/04ramzc89 Islamic Azad University, Langarud Branch دانشگاه آزاد اسلامی واحد لنگرود'), (73993, 'https://ror.org/04rapth36', 'no_lang_code', 1, 'https://ror.org/04rapth36 Ondine (Canada)'), (73994, 'https://ror.org/04rb79711', 'en', 1, 'https://ror.org/04rb79711 Mountain Association for Community Economic Development'), (73995, 'https://ror.org/04rcfnb30', 'en', 1, 'https://ror.org/04rcfnb30 South West Heritage Trust'), (73996, 'https://ror.org/04rd9p896', 'en', 1, 'https://ror.org/04rd9p896 Felipe González Foundation Fundación Felipe González'), (73997, 'https://ror.org/04rfmre55', 'en', 1, 'https://ror.org/04rfmre55 Islamic Azad University of Marand'), (73998, 'https://ror.org/04rg4ek57', 'no_lang_code', 1, 'https://ror.org/04rg4ek57 Materion (United States)'), (73999, 'https://ror.org/04rjeh836', 'no_lang_code', 1, 'https://ror.org/04rjeh836 Patliputra University'), (74000, 'https://ror.org/04rjsxs58', 'en', 1, 'https://ror.org/04rjsxs58 President of the Office of Electronic Communications Urząd Komunikacji Elektronicznej'), (74001, 'https://ror.org/04rsv0546', 'no_lang_code', 1, 'https://ror.org/04rsv0546 Holland and Knight (United Arab Emirates)'), (74002, 'https://ror.org/04rx5bj15', 'en', 1, 'https://ror.org/04rx5bj15 Istraživačka stanica Petnica Petnica Science Center'), (74003, 'https://ror.org/04rzp1e87', 'pl', 1, 'https://ror.org/04rzp1e87 Stowarzyszenie Pomocy Niepełnosprawnym Kierowcom'), (74004, 'https://ror.org/04rzrwk66', 'en', 1, 'https://ror.org/04rzrwk66 International Centre for Mathematical and Computer Sciences'), (74005, 'https://ror.org/04s2xcs63', 'en', 1, 'https://ror.org/04s2xcs63 Solidago Foundation'), (74006, 'https://ror.org/04s4cdp25', 'no_lang_code', 1, 'https://ror.org/04s4cdp25 QuizRR (Sweden)'), (74007, 'https://ror.org/04s4ypk37', 'sq', 1, 'https://ror.org/04s4ypk37 Instituti i Sigurisë Ushqimore dhe Veterinarisë'), (74008, 'https://ror.org/04s8wpa22', 'no_lang_code', 1, 'https://ror.org/04s8wpa22 Aqua Resources (United States)'), (74009, 'https://ror.org/04s9hnr69', 'no_lang_code', 1, 'https://ror.org/04s9hnr69 Företagsfabriken i Kronoberg (Sweden)'), (74010, 'https://ror.org/04sbndd39', 'en', 1, 'https://ror.org/04sbndd39 Muslim Advocates'), (74011, 'https://ror.org/04scw1t72', 'no_lang_code', 1, 'https://ror.org/04scw1t72 Laser Shot (United States)'), (74012, 'https://ror.org/04sdakz38', 'en', 1, 'https://ror.org/04sdakz38 The Matthew Elvidge Trust'), (74013, 'https://ror.org/04sdkmx42', 'id', 1, 'https://ror.org/04sdkmx42 Ciliwung Merdeka'), (74014, 'https://ror.org/04sdy1r02', 'no_lang_code', 1, 'https://ror.org/04sdy1r02 Lund Science (Sweden)'), (74015, 'https://ror.org/04sedqx04', 'no_lang_code', 1, 'https://ror.org/04sedqx04 Twerd (Poland)'), (74016, 'https://ror.org/04sf68197', 'en', 1, 'https://ror.org/04sf68197 British Crystallographic Association'), (74017, 'https://ror.org/04sg6fy71', 'en', 1, 'https://ror.org/04sg6fy71 Small Woods Association'), (74018, 'https://ror.org/04sgq7503', 'no_lang_code', 1, 'https://ror.org/04sgq7503 India Habitat Centre भारत पर्यावास केंद्र'), (74019, 'https://ror.org/04smac308', 'no_lang_code', 1, 'https://ror.org/04smac308 Loc (United States)'), (74020, 'https://ror.org/04smhj247', 'en', 1, 'https://ror.org/04smhj247 Szpital Kliniczny Przemienienia Pańskiego University Hospital of Lord’s Transfiguration'), (74021, 'https://ror.org/04sn6zn93', 'en', 1, 'https://ror.org/04sn6zn93 Essex Wildlife Trust'), (74022, 'https://ror.org/04snxr303', 'pt', 1, 'https://ror.org/04snxr303 Museu da Lourinhã'), (74023, 'https://ror.org/04sprnk40', 'en', 1, 'https://ror.org/04sprnk40 National Gallery of Arts'), (74024, 'https://ror.org/04sq27t34', 'en', 1, 'https://ror.org/04sq27t34 L''Association de la Promotion de la Médecine Traditionnelle PROMETRA International'), (74025, 'https://ror.org/04sqcre19', 'en', 1, 'https://ror.org/04sqcre19 Fredric Rieders Family Foundation'), (74026, 'https://ror.org/04srgzx66', 'en', 1, 'https://ror.org/04srgzx66 Scottish Federation of Housing Associations'), (74027, 'https://ror.org/04ss19q24', 'en', 1, 'https://ror.org/04ss19q24 Kirknewton Community Development Trust'), (74028, 'https://ror.org/04stw6a08', 'no_lang_code', 1, 'https://ror.org/04stw6a08 Unilever (France)'), (74029, 'https://ror.org/04stz1h78', 'en', 1, 'https://ror.org/04stz1h78 Learning Ovations'), (74030, 'https://ror.org/04svebv53', 'en', 1, 'https://ror.org/04svebv53 Softwarica College'), (74031, 'https://ror.org/04sw0cd90', 'no_lang_code', 1, 'https://ror.org/04sw0cd90 Det Kongelige Nordiske Oldskriftselskab Royal Nordic Society of Antiquaries (Denmark)'), (74032, 'https://ror.org/04sw2sb76', 'en', 1, 'https://ror.org/04sw2sb76 Cuban Artists Fund'), (74033, 'https://ror.org/04sxzk018', 'no_lang_code', 1, 'https://ror.org/04sxzk018 Phoenix Contact (Poland)'), (74034, 'https://ror.org/04sy68g86', 'en', 1, 'https://ror.org/04sy68g86 South Cumbria Rivers Trust'), (74035, 'https://ror.org/04syf8713', 'en', 1, 'https://ror.org/04syf8713 Common Cause Education Fund'), (74036, 'https://ror.org/04t514251', 'no_lang_code', 1, 'https://ror.org/04t514251 UK-China Guangdong CCUS Centre'), (74037, 'https://ror.org/04t5dkk11', 'no_lang_code', 1, 'https://ror.org/04t5dkk11 Rhinomed (United States)'), (74038, 'https://ror.org/04t7my217', 'no_lang_code', 1, 'https://ror.org/04t7my217 Inceptus (United States)'), (74039, 'https://ror.org/04t8wt911', 'no_lang_code', 1, 'https://ror.org/04t8wt911 DeviceRadio (Sweden)'), (74040, 'https://ror.org/04t9edw32', 'no_lang_code', 1, 'https://ror.org/04t9edw32 Camx Power (United States)'), (74041, 'https://ror.org/04ta9xg75', 'en', 1, 'https://ror.org/04ta9xg75 Chartered Institution of Water and Environmental Management'), (74042, 'https://ror.org/04tb0r175', 'no_lang_code', 1, 'https://ror.org/04tb0r175 Szkuner (Poland)'), (74043, 'https://ror.org/04tbskb64', 'no_lang_code', 1, 'https://ror.org/04tbskb64 Mimerse (Sweden)'), (74044, 'https://ror.org/04tk9hj58', 'no_lang_code', 1, 'https://ror.org/04tk9hj58 Hong Kong Maritime Museum 香港海事博物館'), (74045, 'https://ror.org/04tp3cz81', 'en', 1, 'https://ror.org/04tp3cz81 Infectious Diseases Data Observatory'), (74046, 'https://ror.org/04tpe6y42', 'en', 1, 'https://ror.org/04tpe6y42 Dr. Sadhana Nayak’s Voice Clinic and Center'), (74047, 'https://ror.org/04tr7gf78', 'no_lang_code', 1, 'https://ror.org/04tr7gf78 Nanoacademic Technologies'), (74048, 'https://ror.org/04tvaxw19', 'no_lang_code', 1, 'https://ror.org/04tvaxw19 DNA Diagnostics Center (United States)'), (74049, 'https://ror.org/04tvh6p44', 'no_lang_code', 1, 'https://ror.org/04tvh6p44 Lime Associates (United Kingdom)'), (74050, 'https://ror.org/04tw1z259', 'no_lang_code', 1, 'https://ror.org/04tw1z259 Ideon Innovation (Sweden)'), (74051, 'https://ror.org/04tw9zq58', 'en', 1, 'https://ror.org/04tw9zq58 International Space Science Institute - Beijing 国际空间科学研究所-北京'), (74052, 'https://ror.org/04twq5n98', 'en', 1, 'https://ror.org/04twq5n98 Beverly Hills Cardiology'), (74053, 'https://ror.org/04tzn6q94', 'en', 1, 'https://ror.org/04tzn6q94 Grassroots Institute for Fundraising Training'), (74054, 'https://ror.org/04v5fxp58', 'en', 1, 'https://ror.org/04v5fxp58 Institute of Cast Metals Engineers'), (74055, 'https://ror.org/04v8ha428', 'en', 1, 'https://ror.org/04v8ha428 Rights and Resources'), (74056, 'https://ror.org/04v8wx508', 'no_lang_code', 1, 'https://ror.org/04v8wx508 Ezenia (United States)'), (74057, 'https://ror.org/04v9yk034', 'en', 1, 'https://ror.org/04v9yk034 Cornwall Museums Partnership'), (74058, 'https://ror.org/04vc7kq70', 'en', 1, 'https://ror.org/04vc7kq70 Consejo de la Magistratura de la Nación Council of Magistrates of the Nation'), (74059, 'https://ror.org/04vcg0a87', 'no_lang_code', 1, 'https://ror.org/04vcg0a87 Golden Agri-Resources (Singapore)'), (74060, 'https://ror.org/04vda4c44', 'no_lang_code', 1, 'https://ror.org/04vda4c44 Hqphotonics (United States)'), (74061, 'https://ror.org/04ve58z79', 'en', 1, 'https://ror.org/04ve58z79 Insigneo'), (74062, 'https://ror.org/04vgzny65', 'no_lang_code', 1, 'https://ror.org/04vgzny65 Vestas (United Kingdom)'), (74063, 'https://ror.org/04vj14y69', 'no_lang_code', 1, 'https://ror.org/04vj14y69 NeoGenomics (United States)'), (74064, 'https://ror.org/04vkkc603', 'en', 1, 'https://ror.org/04vkkc603 Zambia National Broadcasting Corporation'), (74065, 'https://ror.org/04vmcpd16', 'no_lang_code', 1, 'https://ror.org/04vmcpd16 Cell IDx (United States)'), (74066, 'https://ror.org/04vmq6d61', 'no_lang_code', 1, 'https://ror.org/04vmq6d61 Planact'), (74067, 'https://ror.org/04vnwke91', 'en', 1, 'https://ror.org/04vnwke91 Institute for Research on Innovation and Services for Development Istituto di Ricerca su Innovazione e Servizi per lo Sviluppo'), (74068, 'https://ror.org/04vr5fc04', 'en', 1, 'https://ror.org/04vr5fc04 China Association of Higher Educaiton 中国高等教育学会'), (74069, 'https://ror.org/04vsshx67', 'en', 1, 'https://ror.org/04vsshx67 Scottish Graduate School for Arts & Humanities'), (74070, 'https://ror.org/04vv9rj91', 'no_lang_code', 1, 'https://ror.org/04vv9rj91 Data One Global (United States)'), (74071, 'https://ror.org/04vwync56', 'en', 1, 'https://ror.org/04vwync56 British Cattle Veterinary Association'), (74072, 'https://ror.org/04vx2nc87', 'no_lang_code', 1, 'https://ror.org/04vx2nc87 Igennus Healthcare Nutrition (United Kingdom)'), (74073, 'https://ror.org/04vxddf34', 'en', 1, 'https://ror.org/04vxddf34 IsoForensics'), (74074, 'https://ror.org/04vy99971', 'en', 1, 'https://ror.org/04vy99971 Forward Cities'), (74075, 'https://ror.org/04w013s63', 'en', 1, 'https://ror.org/04w013s63 Centre National de Mémoire Historique National Center for Historical Memory'), (74076, 'https://ror.org/04w11qx28', 'en', 1, 'https://ror.org/04w11qx28 South Essex Rape and Incest Crisis Centre'), (74077, 'https://ror.org/04w1vv369', 'no_lang_code', 1, 'https://ror.org/04w1vv369 Healthcare Technologies and Methods (United States)'), (74078, 'https://ror.org/04w1vws04', 'en', 1, 'https://ror.org/04w1vws04 Indian Institute of Dalit Studies दलित स्टडीज का भारतीय संस्थान'), (74079, 'https://ror.org/04w200405', 'en', 1, 'https://ror.org/04w200405 Beirut Art Center مركز بيروت للفن'), (74080, 'https://ror.org/04w96wv49', 'en', 1, 'https://ror.org/04w96wv49 Sustainability Accounting Standards Board'), (74081, 'https://ror.org/04wasyv34', 'no_lang_code', 1, 'https://ror.org/04wasyv34 Jingpin Materials (China) 苏州晶品新材料股份有限公司'), (74082, 'https://ror.org/04wax6w38', 'fr', 1, 'https://ror.org/04wax6w38 Institut Supérieur Privé Polytechnique'), (74083, 'https://ror.org/04wb05896', 'en', 1, 'https://ror.org/04wb05896 New Gorbals Housing Association'), (74084, 'https://ror.org/04wb42e09', 'en', 1, 'https://ror.org/04wb42e09 Royal Film Commission الهيئة الملكية الاردنية للأفلام'), (74085, 'https://ror.org/04wbhfm32', 'en', 1, 'https://ror.org/04wbhfm32 Exercise Science Consulting'), (74086, 'https://ror.org/04wdbw215', 'en', 1, 'https://ror.org/04wdbw215 Dover Technical College'), (74087, 'https://ror.org/04wdj7e85', 'en', 1, 'https://ror.org/04wdj7e85 LifeMoves'), (74088, 'https://ror.org/04wf30j82', 'en', 1, 'https://ror.org/04wf30j82 QuTech'), (74089, 'https://ror.org/04wfdnt11', 'no_lang_code', 1, 'https://ror.org/04wfdnt11 Brooks Rand Instruments (United States)'), (74090, 'https://ror.org/04wfs4b35', 'no_lang_code', 1, 'https://ror.org/04wfs4b35 Brite Bio (United States)'), (74091, 'https://ror.org/04wkssk54', 'no_lang_code', 1, 'https://ror.org/04wkssk54 HumanN (United States)'), (74092, 'https://ror.org/04wn4j219', 'en', 1, 'https://ror.org/04wn4j219 National Telford Institute'), (74093, 'https://ror.org/04wn4nw41', 'en', 1, 'https://ror.org/04wn4nw41 Respect'), (74094, 'https://ror.org/04wpnc326', 'no_lang_code', 1, 'https://ror.org/04wpnc326 Cells Therapy (Poland)'), (74095, 'https://ror.org/04wr8sz35', 'no_lang_code', 1, 'https://ror.org/04wr8sz35 Petrol (Poland)'), (74096, 'https://ror.org/04wrn8f94', 'en', 1, 'https://ror.org/04wrn8f94 Centre for Sustainable Energy Use in Food'), (74097, 'https://ror.org/04wsd7x43', 'en', 1, 'https://ror.org/04wsd7x43 The Scottish Forestry Trust'), (74098, 'https://ror.org/04wtyx265', 'no_lang_code', 1, 'https://ror.org/04wtyx265 Sprint (Poland)'), (74099, 'https://ror.org/04wvz8b06', 'en', 1, 'https://ror.org/04wvz8b06 Hospitalfield'), (74100, 'https://ror.org/04wx50v02', 'en', 1, 'https://ror.org/04wx50v02 Newark Air Museum'), (74101, 'https://ror.org/04wxqpw15', 'en', 1, 'https://ror.org/04wxqpw15 Court of Appeal ศาลอุทธรณ์'), (74102, 'https://ror.org/04wzaab37', 'en', 1, 'https://ror.org/04wzaab37 Delima Associates'), (74103, 'https://ror.org/04x0n3178', 'es', 1, 'https://ror.org/04x0n3178 Instituto de Biología Molecular y Celular de Rosario'), (74104, 'https://ror.org/04x2dgq71', 'en', 1, 'https://ror.org/04x2dgq71 Provincial Polyclinical Hospital in Toruń Wojewódzki Szpital Zespolony im. L. Rydygiera w Toruniu'), (74105, 'https://ror.org/04x2kaj78', 'no_lang_code', 1, 'https://ror.org/04x2kaj78 Najít Technologies (United States)'), (74106, 'https://ror.org/04x31hn39', 'en', 1, 'https://ror.org/04x31hn39 Bangladesh Institute of Development Studies বাংলাদেশ উন্নয়ন গবেষণা প্রতিষ্ঠান'), (74107, 'https://ror.org/04x44n450', 'en', 1, 'https://ror.org/04x44n450 Justice Research and Statistics Association'), (74108, 'https://ror.org/04x62fc64', 'no_lang_code', 1, 'https://ror.org/04x62fc64 Textile Recycling Association'), (74109, 'https://ror.org/04x7abt37', 'en', 1, 'https://ror.org/04x7abt37 International University of Central Asia'), (74110, 'https://ror.org/04x8c0q56', 'en', 1, 'https://ror.org/04x8c0q56 Committee on Radioactive Waste Management'), (74111, 'https://ror.org/04x95c937', 'no_lang_code', 1, 'https://ror.org/04x95c937 Health and Education Research Management and Epidemiologic Services (United States)'), (74112, 'https://ror.org/04x970698', 'en', 1, 'https://ror.org/04x970698 NonFerrous Materials Technology Development Centre'), (74113, 'https://ror.org/04xawry97', 'en', 1, 'https://ror.org/04xawry97 Lincolnshire Partnership NHS Foundation Trust'), (74114, 'https://ror.org/04xcr2824', 'en', 1, 'https://ror.org/04xcr2824 St. Anna Hospital'), (74115, 'https://ror.org/04xf8jv21', 'es', 1, 'https://ror.org/04xf8jv21 Biblioteca Palafoxiana'), (74116, 'https://ror.org/04xgczp37', 'en', 1, 'https://ror.org/04xgczp37 Centre for Computing History'), (74117, 'https://ror.org/04xh5t898', 'en', 1, 'https://ror.org/04xh5t898 Egyptian Center for Culture and Arts'), (74118, 'https://ror.org/04xjc6b56', 'en', 1, 'https://ror.org/04xjc6b56 Rescobie Loch Development Association'), (74119, 'https://ror.org/04xm01g51', 'en', 1, 'https://ror.org/04xm01g51 Wrexham County Borough Museum & Archives'), (74120, 'https://ror.org/04xp1hk04', 'en', 1, 'https://ror.org/04xp1hk04 Southern Africa Nazarene University'), (74121, 'https://ror.org/04xpmqs18', 'no_lang_code', 1, 'https://ror.org/04xpmqs18 DayStar (United States)'), (74122, 'https://ror.org/04xt6cc08', 'en', 1, 'https://ror.org/04xt6cc08 Second Air Division Memorial Library'), (74123, 'https://ror.org/04xtpyw05', 'fr', 1, 'https://ror.org/04xtpyw05 École Normale Supérieure, École Normale Supérieure d''Abidjan'), (74124, 'https://ror.org/04xv9k977', 'no_lang_code', 1, 'https://ror.org/04xv9k977 N5 Sensors (United States)'), (74125, 'https://ror.org/04xvgmn72', 'en', 1, 'https://ror.org/04xvgmn72 Centre for Cultural Heritage Preservation مركز حفظ التراث الثقافي'), (74126, 'https://ror.org/04y03rz94', 'no_lang_code', 1, 'https://ror.org/04y03rz94 Muquans (France)'), (74127, 'https://ror.org/04y06jx93', 'en', 1, 'https://ror.org/04y06jx93 Cleantech Scandinavia'), (74128, 'https://ror.org/04y159c60', 'en', 1, 'https://ror.org/04y159c60 Association for Young People’s Health'), (74129, 'https://ror.org/04y1w8a25', 'no_lang_code', 1, 'https://ror.org/04y1w8a25 Marshall Motor Holdings (United Kingdom)'), (74130, 'https://ror.org/04y2vsa64', 'no_lang_code', 1, 'https://ror.org/04y2vsa64 Hogan Lovells (United States)'), (74131, 'https://ror.org/04y51qn38', 'en', 1, 'https://ror.org/04y51qn38 Centre for Cosmology and Particle Physics Phenomenology'), (74132, 'https://ror.org/04y58vw51', 'en', 1, 'https://ror.org/04y58vw51 CarrotNewYork'), (74133, 'https://ror.org/04y64y937', 'en', 1, 'https://ror.org/04y64y937 Kenya Human Rights Commission'), (74134, 'https://ror.org/04y723v43', 'en', 1, 'https://ror.org/04y723v43 Driving Mobility'), (74135, 'https://ror.org/04yc4x775', 'en', 1, 'https://ror.org/04yc4x775 Northern Rock Foundation'), (74136, 'https://ror.org/04ycer023', 'en', 1, 'https://ror.org/04ycer023 Cardiovascular Medical Group'), (74137, 'https://ror.org/04yd1f040', 'en', 1, 'https://ror.org/04yd1f040 Urban Design Research Institute'), (74138, 'https://ror.org/04ydsm425', 'no_lang_code', 1, 'https://ror.org/04ydsm425 Enhanced Systems Consulting (United States)'), (74139, 'https://ror.org/04yf6py31', 'en', 1, 'https://ror.org/04yf6py31 The Meththa Foundation'), (74140, 'https://ror.org/04ygg1h35', 'en', 1, 'https://ror.org/04ygg1h35 Public Citizen'), (74141, 'https://ror.org/04yk11f14', 'en', 1, 'https://ror.org/04yk11f14 Tibetan Academy of Social Science 西藏自治区社会科学院'), (74142, 'https://ror.org/04ykwve34', 'en', 1, 'https://ror.org/04ykwve34 Saamarthya Foundation'), (74143, 'https://ror.org/04ys74c57', 'en', 1, 'https://ror.org/04ys74c57 Western States Center'), (74144, 'https://ror.org/04yt49153', 'no_lang_code', 1, 'https://ror.org/04yt49153 Micatu (United States)'), (74145, 'https://ror.org/04yt64d76', 'no_lang_code', 1, 'https://ror.org/04yt64d76 Informa (Sweden)'), (74146, 'https://ror.org/04yva1294', 'en', 1, 'https://ror.org/04yva1294 International Centre for Ethnic Studies ජනවාර්ගික අධ්යයන සඳහා ජාත්යන්තර මධ්යස්ථානය'), (74147, 'https://ror.org/04yvfxe52', 'en', 1, 'https://ror.org/04yvfxe52 Center for Responsible Travel'), (74148, 'https://ror.org/04yw9z443', 'no_lang_code', 1, 'https://ror.org/04yw9z443 iTaukei Trust Fund Board'), (74149, 'https://ror.org/04yws8253', 'no_lang_code', 1, 'https://ror.org/04yws8253 BuildSafe (Sweden)'), (74150, 'https://ror.org/04yxq0914', 'no_lang_code', 1, 'https://ror.org/04yxq0914 Nexstar Media Group (United States)'), (74151, 'https://ror.org/04yzyns28', 'es', 1, 'https://ror.org/04yzyns28 Hospital Regional de Talca'), (74152, 'https://ror.org/04z020c77', 'en', 1, 'https://ror.org/04z020c77 Landscape Research & Management'), (74153, 'https://ror.org/04z172717', 'en', 1, 'https://ror.org/04z172717 Iraqi Al-Amal Association جمعية الامل العراقية - مكتب كركوك'), (74154, 'https://ror.org/04z5pp948', 'no_lang_code', 1, 'https://ror.org/04z5pp948 Skotan (Poland)'), (74155, 'https://ror.org/04z5sh748', 'es', 1, 'https://ror.org/04z5sh748 Ministerio Público Fiscal de la Ciudad Autónoma de Buenos Aires'), (74156, 'https://ror.org/04zajmz25', 'en', 1, 'https://ror.org/04zajmz25 Regional Inter-agency Task Team on Children and AIDS'), (74157, 'https://ror.org/04zarx416', 'no_lang_code', 1, 'https://ror.org/04zarx416 Riela (Poland)'), (74158, 'https://ror.org/04zay9103', 'en', 1, 'https://ror.org/04zay9103 The Trussell Trust'), (74159, 'https://ror.org/04zb5v345', 'no_lang_code', 1, 'https://ror.org/04zb5v345 COSM Advanced Manufacturing Systems (United States)'), (74160, 'https://ror.org/04zdent75', 'no_lang_code', 1, 'https://ror.org/04zdent75 Gem Power (United States)'), (74161, 'https://ror.org/04zdqq152', 'en', 1, 'https://ror.org/04zdqq152 Senckenberg Deutsches Entomologisches Institut Senckenberg German Entomological Institute'), (74162, 'https://ror.org/04zdyxh40', 'en', 1, 'https://ror.org/04zdyxh40 Kenya Land Alliance'), (74163, 'https://ror.org/04zfskg78', 'pt', 1, 'https://ror.org/04zfskg78 Fórum Nacional pela Democratização da Comunicação'), (74164, 'https://ror.org/04zhncz06', 'en', 1, 'https://ror.org/04zhncz06 Weight Concern'), (74165, 'https://ror.org/04zjrqq94', 'en', 1, 'https://ror.org/04zjrqq94 George Sexton Associates'), (74166, 'https://ror.org/04zmpab64', 'en', 1, 'https://ror.org/04zmpab64 International Association for the Study of Traditional Environments'), (74167, 'https://ror.org/04zp3gp22', 'no_lang_code', 1, 'https://ror.org/04zp3gp22 ImpeDx Diagnostics (United States)'), (74168, 'https://ror.org/04zpgzj77', 'en', 1, 'https://ror.org/04zpgzj77 South East Health Technologies Alliance'), (74169, 'https://ror.org/04zqp3155', 'pt', 1, 'https://ror.org/04zqp3155 Movimento Interestadual das Quebradeiras de Coco Babaçu'), (74170, 'https://ror.org/04zsfh247', 'en', 1, 'https://ror.org/04zsfh247 Royal College of Occupational Therapists'), (74171, 'https://ror.org/04zsmb304', 'no_lang_code', 1, 'https://ror.org/04zsmb304 Ambient Micro (United States)'), (74172, 'https://ror.org/04zv6cm02', 'no_lang_code', 1, 'https://ror.org/04zv6cm02 Dignitana (Sweden)'), (74173, 'https://ror.org/04zy5hd61', 'en', 1, 'https://ror.org/04zy5hd61 National District Attorneys Association'), (74174, 'https://ror.org/04zyefw11', 'en', 1, 'https://ror.org/04zyefw11 Kern Community College District'), (74175, 'https://ror.org/04zzb1s61', 'no_lang_code', 1, 'https://ror.org/04zzb1s61 Dyenamo (Sweden)'), (74176, 'https://ror.org/0501kzx55', 'en', 1, 'https://ror.org/0501kzx55 Grantmakers for Effective Organizations'), (74177, 'https://ror.org/05023n062', 'no_lang_code', 1, 'https://ror.org/05023n062 Energy Quest Technologies (United States)'), (74178, 'https://ror.org/05025g024', 'en', 1, 'https://ror.org/05025g024 Indiana Criminal Justice Institute'), (74179, 'https://ror.org/050351d24', 'en', 1, 'https://ror.org/050351d24 Borneo Orangutan Survival Foundation'), (74180, 'https://ror.org/05057ay57', 'en', 1, 'https://ror.org/05057ay57 Missouri Budget Project'), (74181, 'https://ror.org/05065r248', 'en', 1, 'https://ror.org/05065r248 Horn of Africa Press Institute'), (74182, 'https://ror.org/0509fnv64', 'en', 1, 'https://ror.org/0509fnv64 League of Resident Theatres'), (74183, 'https://ror.org/050a13t43', 'en', 1, 'https://ror.org/050a13t43 Moscow State University Филиал Московского государственного университета имени М.В. Ломоносова в городе Душанбе'), (74184, 'https://ror.org/050arpw16', 'en', 1, 'https://ror.org/050arpw16 British Dragonfly Society'), (74185, 'https://ror.org/050ayhm33', 'en', 1, 'https://ror.org/050ayhm33 The Stables'), (74186, 'https://ror.org/050b4xy13', 'no_lang_code', 1, 'https://ror.org/050b4xy13 BioFluidica (United States)'), (74187, 'https://ror.org/050bxrz29', 'en', 1, 'https://ror.org/050bxrz29 Citizen Engagement Laboratory'), (74188, 'https://ror.org/050c6pn54', 'en', 1, 'https://ror.org/050c6pn54 International Alliance on Natural Resources in Africa'), (74189, 'https://ror.org/050ca4130', 'en', 1, 'https://ror.org/050ca4130 Namgyal Monastery Institute of Buddhist Studies Namgyal monastère Institut d''études bouddhistes'), (74190, 'https://ror.org/050cfca74', 'en', 1, 'https://ror.org/050cfca74 World Bioenergy Association'), (74191, 'https://ror.org/050dsb089', 'en', 1, 'https://ror.org/050dsb089 Colorado Organization for Latina Opportunity and Reproductive Rights'), (74192, 'https://ror.org/050e1vh19', 'en', 1, 'https://ror.org/050e1vh19 Centre for Rural and Remote Mental Health'), (74193, 'https://ror.org/050h8nq90', 'en', 1, 'https://ror.org/050h8nq90 Collaboration on International ICT Policy in East and Southern Africa'), (74194, 'https://ror.org/050mver74', 'no_lang_code', 1, 'https://ror.org/050mver74 EBTIC'), (74195, 'https://ror.org/050qmy682', 'es', 1, 'https://ror.org/050qmy682 Fundación Nacional para el Desarrollo'), (74196, 'https://ror.org/050qymw35', 'no_lang_code', 1, 'https://ror.org/050qymw35 InTouch Health (United States)'), (74197, 'https://ror.org/050rahh61', 'en', 1, 'https://ror.org/050rahh61 The W. Haywood Burns Institute'), (74198, 'https://ror.org/050s60797', 'en', 1, 'https://ror.org/050s60797 Ministria e Kulturës, Rinisë dhe Sportit e Kosovës Ministry of Culture, Youth and Sport'), (74199, 'https://ror.org/050skgy72', 'en', 1, 'https://ror.org/050skgy72 Playwrights Horizons'), (74200, 'https://ror.org/050tnyq31', 'no_lang_code', 1, 'https://ror.org/050tnyq31 Certerra (United States)'), (74201, 'https://ror.org/0510ctm72', 'es', 1, 'https://ror.org/0510ctm72 Centro de Investigación de la Caña de Azúcar de Colombia'), (74202, 'https://ror.org/05125rf66', 'no_lang_code', 1, 'https://ror.org/05125rf66 Metabolic Nutritionals (United States)'), (74203, 'https://ror.org/0515r3k27', 'no_lang_code', 1, 'https://ror.org/0515r3k27 Integration Innovation (United States)'), (74204, 'https://ror.org/0517ad239', 'en', 1, 'https://ror.org/0517ad239 Cornwall Partnership NHS Foundation Trust'), (74205, 'https://ror.org/051816580', 'en', 1, 'https://ror.org/051816580 Hackney Learning Trust'), (74206, 'https://ror.org/05186xw97', 'no_lang_code', 1, 'https://ror.org/05186xw97 Polbud-Pomorze (Poland)'), (74207, 'https://ror.org/051a5x257', 'en', 1, 'https://ror.org/051a5x257 Nepal Water Conservation Foundation'), (74208, 'https://ror.org/051abd045', 'en', 1, 'https://ror.org/051abd045 The Pier Arts Centre'), (74209, 'https://ror.org/051b0xe12', 'en', 1, 'https://ror.org/051b0xe12 Byggherrarna Sverige Swedish Construction Clients'), (74210, 'https://ror.org/051b9wq78', 'no_lang_code', 1, 'https://ror.org/051b9wq78 Elicityl (France)'), (74211, 'https://ror.org/051fwvb64', 'en', 1, 'https://ror.org/051fwvb64 Thackray Medical Museum'), (74212, 'https://ror.org/051mvtt62', 'no_lang_code', 1, 'https://ror.org/051mvtt62 Maestro (Sweden)'), (74213, 'https://ror.org/051n93m20', 'no_lang_code', 1, 'https://ror.org/051n93m20 Genpact (United States)'), (74214, 'https://ror.org/051qp5024', 'no_lang_code', 1, 'https://ror.org/051qp5024 Hartsci (United States)'), (74215, 'https://ror.org/051r7gk37', 'en', 1, 'https://ror.org/051r7gk37 Northern Ireland Housing Executive'), (74216, 'https://ror.org/051tr9v76', 'en', 1, 'https://ror.org/051tr9v76 Oregon Center for Public Policy'), (74217, 'https://ror.org/051twfb64', 'no_lang_code', 1, 'https://ror.org/051twfb64 Reece Innovation (United Kingdom)'), (74218, 'https://ror.org/051twmh51', 'en', 1, 'https://ror.org/051twmh51 Aga Khan Foundation'), (74219, 'https://ror.org/051x1jz81', 'en', 1, 'https://ror.org/051x1jz81 Leeds Community Foundation'), (74220, 'https://ror.org/051xqea68', 'en', 1, 'https://ror.org/051xqea68 Moseley Community Development Trust'), (74221, 'https://ror.org/051ytw456', 'pt', 1, 'https://ror.org/051ytw456 ANDI ANDI – Comunicación y Derechos'), (74222, 'https://ror.org/051yxch97', 'no_lang_code', 1, 'https://ror.org/051yxch97 LTCalcoli (Italy)'), (74223, 'https://ror.org/0521tgf76', 'en', 1, 'https://ror.org/0521tgf76 Cementitious Slag Makers Association'), (74224, 'https://ror.org/052213k81', 'en', 1, 'https://ror.org/052213k81 Day One'), (74225, 'https://ror.org/052530s92', 'en', 1, 'https://ror.org/052530s92 Brunelcare'), (74226, 'https://ror.org/0525v4q94', 'en', 1, 'https://ror.org/0525v4q94 Royal School of Administration សាលាភូមិន្ទរដ្ឋបាល'), (74227, 'https://ror.org/05277x335', 'en', 1, 'https://ror.org/05277x335 Joint Institute for Computational Sciences'), (74228, 'https://ror.org/0527t6d08', 'no_lang_code', 1, 'https://ror.org/0527t6d08 X-Code (Poland)'), (74229, 'https://ror.org/05291f140', 'en', 1, 'https://ror.org/05291f140 Molteno Institute for Language and Literacy'), (74230, 'https://ror.org/0529ngj48', 'en', 1, 'https://ror.org/0529ngj48 Big Science Suppliers Network'), (74231, 'https://ror.org/052brmw32', 'en', 1, 'https://ror.org/052brmw32 Centro Feminista de Estudos e Assessoria Feminist Center for Studies and Advisory Services'), (74232, 'https://ror.org/052bwdm80', 'en', 1, 'https://ror.org/052bwdm80 Bucks County Intermediate Unit'), (74233, 'https://ror.org/052dx1v90', 'no_lang_code', 1, 'https://ror.org/052dx1v90 Chornobyl Center Чорнобильський центр'), (74234, 'https://ror.org/052ff1r50', 'no_lang_code', 1, 'https://ror.org/052ff1r50 IC Tech (United States)'), (74235, 'https://ror.org/052g82050', 'pt', 1, 'https://ror.org/052g82050 Instituto Akatu'), (74236, 'https://ror.org/052gthd20', 'en', 1, 'https://ror.org/052gthd20 Mural Arts Philadelphia'), (74237, 'https://ror.org/052hfgr76', 'no_lang_code', 1, 'https://ror.org/052hfgr76 MBC Pharma (United States)'), (74238, 'https://ror.org/052kgwk49', 'no_lang_code', 1, 'https://ror.org/052kgwk49 NETGEAR (United States)'), (74239, 'https://ror.org/052n05843', 'no_lang_code', 1, 'https://ror.org/052n05843 Osteotronix (United Kingdom)'), (74240, 'https://ror.org/052n2hz50', 'en', 1, 'https://ror.org/052n2hz50 Port Washington Public Library'), (74241, 'https://ror.org/052ndyr48', 'en', 1, 'https://ror.org/052ndyr48 Center on Policy Initiatives'), (74242, 'https://ror.org/052pk7q80', 'en', 1, 'https://ror.org/052pk7q80 Alabama State Office of Governor'), (74243, 'https://ror.org/052qx3616', 'no_lang_code', 1, 'https://ror.org/052qx3616 Hotto Link (Japan)'), (74244, 'https://ror.org/052rhds27', 'en', 1, 'https://ror.org/052rhds27 Centre for Environmental Rights'), (74245, 'https://ror.org/052rsaq92', 'no_lang_code', 1, 'https://ror.org/052rsaq92 PASSAsia (Sri Lanka)'), (74246, 'https://ror.org/052rzq754', 'no_lang_code', 1, 'https://ror.org/052rzq754 Global Professional Consulting (United States)'), (74247, 'https://ror.org/052s7ab91', 'no_lang_code', 1, 'https://ror.org/052s7ab91 Folded Structures (United States)'), (74248, 'https://ror.org/052s8df17', 'no_lang_code', 1, 'https://ror.org/052s8df17 Lithium Power (United States)'), (74249, 'https://ror.org/052zq7x94', 'pt', 1, 'https://ror.org/052zq7x94 Fundo Brasil, Fundo Brasil de Direitos Humanos'), (74250, 'https://ror.org/0531tjg57', 'en', 1, 'https://ror.org/0531tjg57 Middlesex University'), (74251, 'https://ror.org/053236z94', 'en', 1, 'https://ror.org/053236z94 City of Stoke-on-Trent Sixth Form College'), (74252, 'https://ror.org/0532k3p48', 'en', 1, 'https://ror.org/0532k3p48 Liberty Hill'), (74253, 'https://ror.org/05334he48', 'no_lang_code', 1, 'https://ror.org/05334he48 C4 Therapeutics (United States)'), (74254, 'https://ror.org/0534yb097', 'no_lang_code', 1, 'https://ror.org/0534yb097 Enterprise Sciences (United States)'), (74255, 'https://ror.org/05370f467', 'en', 1, 'https://ror.org/05370f467 Northwest Heart Clinical Research'), (74256, 'https://ror.org/0538mca61', 'en', 1, 'https://ror.org/0538mca61 Align Economy Environment Equity'), (74257, 'https://ror.org/0538ncp57', 'en', 1, 'https://ror.org/0538ncp57 Mount Sanford Tribal Consortium'), (74258, 'https://ror.org/05395nj08', 'en', 1, 'https://ror.org/05395nj08 Civil Society Budget Advocacy Group'), (74259, 'https://ror.org/0539c7x88', 'no_lang_code', 1, 'https://ror.org/0539c7x88 Madeleine Pharmaceuticals (United States)'), (74260, 'https://ror.org/053bgz920', 'en', 1, 'https://ror.org/053bgz920 Amnesty International USA'), (74261, 'https://ror.org/053br3t03', 'en', 1, 'https://ror.org/053br3t03 South Asians for Human Rights'), (74262, 'https://ror.org/053f01012', 'no_lang_code', 1, 'https://ror.org/053f01012 Globalworks (Sweden)'), (74263, 'https://ror.org/053fkzm08', 'en', 1, 'https://ror.org/053fkzm08 Gideon''s Promise'); INSERT INTO `rors` VALUES (74264, 'https://ror.org/053gcq860', 'en', 1, 'https://ror.org/053gcq860 Wormingford Community Education Centre'), (74265, 'https://ror.org/053k9sq83', 'no_lang_code', 1, 'https://ror.org/053k9sq83 Lumetrics (United States)'), (74266, 'https://ror.org/053man137', 'en', 1, 'https://ror.org/053man137 Centre for Effective Dispute Resolution'), (74267, 'https://ror.org/053mejc32', 'id', 1, 'https://ror.org/053mejc32 Dewan Kesenian Jakarta'), (74268, 'https://ror.org/053pr7h46', 'en', 1, 'https://ror.org/053pr7h46 Association of Convenience Stores'), (74269, 'https://ror.org/053rdtp97', 'en', 1, 'https://ror.org/053rdtp97 Artspace'), (74270, 'https://ror.org/053v58q79', 'no_lang_code', 1, 'https://ror.org/053v58q79 Chalmers Ventures (Sweden)'), (74271, 'https://ror.org/053vgma94', 'en', 1, 'https://ror.org/053vgma94 Centre for Global Equality'), (74272, 'https://ror.org/053yfc731', 'no_lang_code', 1, 'https://ror.org/053yfc731 Fomos-Materials (Russia)'), (74273, 'https://ror.org/053yqvn66', 'en', 1, 'https://ror.org/053yqvn66 English Folk Dance and Song Society'), (74274, 'https://ror.org/053z1j925', 'no_lang_code', 1, 'https://ror.org/053z1j925 Digital Science Technologies (United States)'), (74275, 'https://ror.org/0540yt557', 'no_lang_code', 1, 'https://ror.org/0540yt557 Sensefarm (Sweden)'), (74276, 'https://ror.org/0542txc19', 'no_lang_code', 1, 'https://ror.org/0542txc19 Elforest Technologies (Sweden)'), (74277, 'https://ror.org/0542z7581', 'no_lang_code', 1, 'https://ror.org/0542z7581 Front Range Engineering (United States)'), (74278, 'https://ror.org/05431pf33', 'en', 1, 'https://ror.org/05431pf33 Shakespeare Globe Trust'), (74279, 'https://ror.org/05434kd35', 'en', 1, 'https://ror.org/05434kd35 Portland Center Stage at The Armory'), (74280, 'https://ror.org/0546ajs61', 'en', 1, 'https://ror.org/0546ajs61 The London College'), (74281, 'https://ror.org/0546g4411', 'no_lang_code', 1, 'https://ror.org/0546g4411 Bergskraft Bergslagen (Sweden)'), (74282, 'https://ror.org/054871422', 'en', 1, 'https://ror.org/054871422 Eureka'), (74283, 'https://ror.org/054bz5192', 'en', 1, 'https://ror.org/054bz5192 The Cartoon Museum'), (74284, 'https://ror.org/054dqap80', 'no_lang_code', 1, 'https://ror.org/054dqap80 Brainxell (United States)'), (74285, 'https://ror.org/054fvwy19', 'en', 1, 'https://ror.org/054fvwy19 Ironbridge Gorge Museum Trust'), (74286, 'https://ror.org/054h8jj30', 'en', 1, 'https://ror.org/054h8jj30 International Islamic Center for Population Studies and Research'), (74287, 'https://ror.org/054h9pe78', 'en', 1, 'https://ror.org/054h9pe78 British Council for Offices'), (74288, 'https://ror.org/054hq6n04', 'no_lang_code', 1, 'https://ror.org/054hq6n04 Advanced Medical Equipment (United Kingdom)'), (74289, 'https://ror.org/054hzcj81', 'en', 1, 'https://ror.org/054hzcj81 Fintry Development Trust'), (74290, 'https://ror.org/054j3ks98', 'no_lang_code', 1, 'https://ror.org/054j3ks98 Nuvia (United Kingdom)'), (74291, 'https://ror.org/054pnzp38', 'no_lang_code', 1, 'https://ror.org/054pnzp38 BMSEED (United States)'), (74292, 'https://ror.org/054px3h87', 'no_lang_code', 1, 'https://ror.org/054px3h87 Materials Resources (United States)'), (74293, 'https://ror.org/054qp2w77', 'fr', 1, 'https://ror.org/054qp2w77 Institut des Hautes Études du Ministère de l''Intérieur'), (74294, 'https://ror.org/054rgmw54', 'en', 1, 'https://ror.org/054rgmw54 Palli Karma Sahayak Foundation পল্লী কর্ম-সহায়ক ফাউন্ডেশন।'), (74295, 'https://ror.org/054rzgh78', 'en', 1, 'https://ror.org/054rzgh78 National Association of Funeral Directors'), (74296, 'https://ror.org/054s1f192', 'no_lang_code', 1, 'https://ror.org/054s1f192 Post Bellum'), (74297, 'https://ror.org/054snha28', 'en', 1, 'https://ror.org/054snha28 Reading International Solidarity Centre'), (74298, 'https://ror.org/054v2h819', 'en', 1, 'https://ror.org/054v2h819 Instituto Procomum Procomum Institute'), (74299, 'https://ror.org/054wvz232', 'en', 1, 'https://ror.org/054wvz232 Centre for Study of Society and Secularism'), (74300, 'https://ror.org/054x00070', 'en', 1, 'https://ror.org/054x00070 Wisconsin Disability Association'), (74301, 'https://ror.org/054xyqj29', 'en', 1, 'https://ror.org/054xyqj29 St. Vincent and the Grenadines Community College'), (74302, 'https://ror.org/054yyyw60', 'no_lang_code', 1, 'https://ror.org/054yyyw60 Mada al-Carmel مدى الكرمل'), (74303, 'https://ror.org/054z0bn29', 'en', 1, 'https://ror.org/054z0bn29 Austrian Foundation for Development Research Österreichische Forschungsstiftung für Internationale Entwicklung'), (74304, 'https://ror.org/054zq1h88', 'en', 1, 'https://ror.org/054zq1h88 Railway Industry Association'), (74305, 'https://ror.org/054zw5g61', 'de', 1, 'https://ror.org/054zw5g61 Jesuiten, Jesuitenkolleg'), (74306, 'https://ror.org/05503ny65', 'it', 1, 'https://ror.org/05503ny65 Ospedale "Floraspe Renzetti"'), (74307, 'https://ror.org/0550tq505', 'no_lang_code', 1, 'https://ror.org/0550tq505 Rolfes Henry (United States)'), (74308, 'https://ror.org/0551yxg63', 'en', 1, 'https://ror.org/0551yxg63 Centre for Social Justice'), (74309, 'https://ror.org/0552acy97', 'no_lang_code', 1, 'https://ror.org/0552acy97 Adámas Nano (United States)'), (74310, 'https://ror.org/0552brw50', 'no_lang_code', 1, 'https://ror.org/0552brw50 AirLift Environmental (United States)'), (74311, 'https://ror.org/0553f1x12', 'no_lang_code', 1, 'https://ror.org/0553f1x12 Advanced Fluidics (United States)'), (74312, 'https://ror.org/0553s6b03', 'no_lang_code', 1, 'https://ror.org/0553s6b03 Aspin (United Kingdom)'), (74313, 'https://ror.org/05558br18', 'no_lang_code', 1, 'https://ror.org/05558br18 Jan Biotech (United States)'), (74314, 'https://ror.org/0555yg896', 'en', 1, 'https://ror.org/0555yg896 Asha Foundation'), (74315, 'https://ror.org/0557gff25', 'en', 1, 'https://ror.org/0557gff25 Twaweza Communications'), (74316, 'https://ror.org/0557mg878', 'en', 1, 'https://ror.org/0557mg878 Independent Institute for Social Policy Независимый институт социальной политики'), (74317, 'https://ror.org/0558qfp88', 'no_lang_code', 1, 'https://ror.org/0558qfp88 Veridict (Sweden)'), (74318, 'https://ror.org/055dkvv33', 'no_lang_code', 1, 'https://ror.org/055dkvv33 Zenergy (Sweden)'), (74319, 'https://ror.org/055dwzk58', 'no_lang_code', 1, 'https://ror.org/055dwzk58 Topricin (United States)'), (74320, 'https://ror.org/055es1h89', 'en', 1, 'https://ror.org/055es1h89 African Centre for Parliamentary Affairs'), (74321, 'https://ror.org/055g1b266', 'no_lang_code', 1, 'https://ror.org/055g1b266 Energy Concepts (United States)'), (74322, 'https://ror.org/055h9ry14', 'en', 1, 'https://ror.org/055h9ry14 RAC Foundation'), (74323, 'https://ror.org/055jfyy72', 'en', 1, 'https://ror.org/055jfyy72 Center for Indonesian Veterinary Analytical Studies'), (74324, 'https://ror.org/055kf5191', 'en', 1, 'https://ror.org/055kf5191 Fuping Development Institute 北京富平学校'), (74325, 'https://ror.org/055pc3y68', 'en', 1, 'https://ror.org/055pc3y68 Amina'), (74326, 'https://ror.org/055qvdj66', 'no_lang_code', 1, 'https://ror.org/055qvdj66 MegaChips (United States)'), (74327, 'https://ror.org/055srzn87', 'en', 1, 'https://ror.org/055srzn87 9to5'), (74328, 'https://ror.org/055t40212', 'en', 1, 'https://ror.org/055t40212 Social Science Forum منتدى العلوم الاجتماعية'), (74329, 'https://ror.org/055twxx49', 'no_lang_code', 1, 'https://ror.org/055twxx49 SMC (United Kingdom)'), (74330, 'https://ror.org/055zpaa68', 'pt', 1, 'https://ror.org/055zpaa68 Centro Panamericano de Fiebre Aftosa'), (74331, 'https://ror.org/0561xd336', 'no_lang_code', 1, 'https://ror.org/0561xd336 Miyazaki Enterprises (United States)'), (74332, 'https://ror.org/0563brw86', 'en', 1, 'https://ror.org/0563brw86 Institute of Industry Analyst Relations'), (74333, 'https://ror.org/05649qt81', 'no_lang_code', 1, 'https://ror.org/05649qt81 BiVACOR (United States)'), (74334, 'https://ror.org/05661qy18', 'no_lang_code', 1, 'https://ror.org/05661qy18 Ballet Hispánico (United States)'), (74335, 'https://ror.org/0566x7w31', 'sv', 1, 'https://ror.org/0566x7w31 Bräcke Diakoni'), (74336, 'https://ror.org/0568d6a68', 'en', 1, 'https://ror.org/0568d6a68 St. Francis Referral Hospital'), (74337, 'https://ror.org/0568zd681', 'no_lang_code', 1, 'https://ror.org/0568zd681 Backyard Brains (United States)'), (74338, 'https://ror.org/056gaxr94', 'no_lang_code', 1, 'https://ror.org/056gaxr94 Cameca (United States)'), (74339, 'https://ror.org/056hg4387', 'en', 1, 'https://ror.org/056hg4387 Shawlands Academy'), (74340, 'https://ror.org/056hm0802', 'no_lang_code', 1, 'https://ror.org/056hm0802 Life Cycle Engineering (United States)'), (74341, 'https://ror.org/056jpe255', 'no_lang_code', 1, 'https://ror.org/056jpe255 Automex (Poland)'), (74342, 'https://ror.org/056n7tt65', 'en', 1, 'https://ror.org/056n7tt65 Coptic Evangelical Organization for Social Services القبطية الإنجيلية للخدمات الاجتماعية في تق'), (74343, 'https://ror.org/056ph9112', 'en', 1, 'https://ror.org/056ph9112 Foundation for Common Land'), (74344, 'https://ror.org/056qvg202', 'no_lang_code', 1, 'https://ror.org/056qvg202 Clock Spring (United States)'), (74345, 'https://ror.org/056ve6962', 'fr', 1, 'https://ror.org/056ve6962 Centre National de Lutte Antiacridienne'), (74346, 'https://ror.org/056wznz27', 'de', 1, 'https://ror.org/056wznz27 Landesamt für Denkmalpflege Sachsen'), (74347, 'https://ror.org/056xtp403', 'en', 1, 'https://ror.org/056xtp403 Institute of Archeology and Ethnography Институт археологии и этнографии'), (74348, 'https://ror.org/056ykyc11', 'no_lang_code', 1, 'https://ror.org/056ykyc11 Torbay Development Agency (United Kingdom)'), (74349, 'https://ror.org/056ytj938', 'en', 1, 'https://ror.org/056ytj938 Coastal Cancer Center'), (74350, 'https://ror.org/05701hm88', 'no_lang_code', 1, 'https://ror.org/05701hm88 Infinite Technologies (United States)'), (74351, 'https://ror.org/0570trv98', 'en', 1, 'https://ror.org/0570trv98 Future Academy فيوتشر اكاديمى'), (74352, 'https://ror.org/0571pz015', 'no_lang_code', 1, 'https://ror.org/0571pz015 VoicePIN.com (Poland)'), (74353, 'https://ror.org/0572j1y15', 'en', 1, 'https://ror.org/0572j1y15 North Alabama Research Center'), (74354, 'https://ror.org/05743ng93', 'en', 1, 'https://ror.org/05743ng93 Fife Coast and Countryside Trust'), (74355, 'https://ror.org/0574xt008', 'no_lang_code', 1, 'https://ror.org/0574xt008 Kahoku Shimpō 河北新報'), (74356, 'https://ror.org/0575fjh40', 'en', 1, 'https://ror.org/0575fjh40 Kenya Association of Professional Counsellors'), (74357, 'https://ror.org/057915t59', 'es', 1, 'https://ror.org/057915t59 Instituto de Agrobiotecnología del Litoral'), (74358, 'https://ror.org/05793mh68', 'no_lang_code', 1, 'https://ror.org/05793mh68 Kinetic Resolve (United States)'), (74359, 'https://ror.org/057bhaf38', 'en', 1, 'https://ror.org/057bhaf38 Smuts House Museum'), (74360, 'https://ror.org/057c5p638', 'en', 1, 'https://ror.org/057c5p638 Indira Gandhi Delhi Technical University for Women'), (74361, 'https://ror.org/057d9q433', 'no_lang_code', 1, 'https://ror.org/057d9q433 Great Basin Data Recovery (United States)'), (74362, 'https://ror.org/057e5gj07', 'no_lang_code', 1, 'https://ror.org/057e5gj07 Cobra Design & Engineering (United States)'), (74363, 'https://ror.org/057eq1q68', 'en', 1, 'https://ror.org/057eq1q68 Ramblers'), (74364, 'https://ror.org/057gnjm41', 'en', 1, 'https://ror.org/057gnjm41 The Environmental Foundation for Africa'), (74365, 'https://ror.org/057kcg264', 'en', 1, 'https://ror.org/057kcg264 Freedom of the Press Foundation'), (74366, 'https://ror.org/057mfeh70', 'no_lang_code', 1, 'https://ror.org/057mfeh70 Coreform (United States)'), (74367, 'https://ror.org/057nt4d90', 'en', 1, 'https://ror.org/057nt4d90 British Hydropower Association'), (74368, 'https://ror.org/057qey752', 'no_lang_code', 1, 'https://ror.org/057qey752 Sweheat & Cooling (Sweden)'), (74369, 'https://ror.org/057rf8v56', 'no_lang_code', 1, 'https://ror.org/057rf8v56 American Maglev Technology (United States)'), (74370, 'https://ror.org/057t4ts30', 'no_lang_code', 1, 'https://ror.org/057t4ts30 Igenbio (United States)'), (74371, 'https://ror.org/057tdt975', 'en', 1, 'https://ror.org/057tdt975 University of Warwick Science Park'), (74372, 'https://ror.org/057tkar12', 'en', 1, 'https://ror.org/057tkar12 Understanding Childhood Arthritis Network'), (74373, 'https://ror.org/057v97d67', 'en', 1, 'https://ror.org/057v97d67 Chengdu Shuguang Community Development Capacity Building Center'), (74374, 'https://ror.org/057y00943', 'no_lang_code', 1, 'https://ror.org/057y00943 Argos Intelligence (United States)'), (74375, 'https://ror.org/057ydw805', 'no_lang_code', 1, 'https://ror.org/057ydw805 Shanghai Dramatic Arts Centre (China) 上海话剧艺术中心'), (74376, 'https://ror.org/057zt9577', 'en', 1, 'https://ror.org/057zt9577 Putnoe Medical Centre'), (74377, 'https://ror.org/058123a75', 'en', 1, 'https://ror.org/058123a75 Instituto Nacional de Sismología, Vulcanología, Meteorología e Hidrología National Institute for Seismology, Vulcanology, Meteorology and Hydrology'), (74378, 'https://ror.org/05813hx64', 'en', 1, 'https://ror.org/05813hx64 Centre for Indigenous Cultures of Peru Centro de Culturas Indígenas del Perú'), (74379, 'https://ror.org/0582veh46', 'no_lang_code', 1, 'https://ror.org/0582veh46 HarmonoLogic (United States)'), (74380, 'https://ror.org/05831r008', 'de', 1, 'https://ror.org/05831r008 Institut für Zuckerrübenforschung'), (74381, 'https://ror.org/05845zh49', 'no_lang_code', 1, 'https://ror.org/05845zh49 Rochester Precision Optics (United States)'), (74382, 'https://ror.org/0584sxj05', 'en', 1, 'https://ror.org/0584sxj05 Metal Industries Research & Development Centre 金屬工業研究發展中心'), (74383, 'https://ror.org/058646248', 'no_lang_code', 1, 'https://ror.org/058646248 Gemini Computers (United States)'), (74384, 'https://ror.org/0588yrd03', 'en', 1, 'https://ror.org/0588yrd03 Ministria e Arsimit, e Shkencës dhe e Teknologjisë Ministry of Education, Science and Technology'), (74385, 'https://ror.org/0589qa052', 'en', 1, 'https://ror.org/0589qa052 Phu Yen University Trường Đại Học Phú Yên'), (74386, 'https://ror.org/058bjkh55', 'no_lang_code', 1, 'https://ror.org/058bjkh55 Analysis, Integration & Design (United States)'), (74387, 'https://ror.org/058c5e806', 'en', 1, 'https://ror.org/058c5e806 Forest Peoples Programme'), (74388, 'https://ror.org/058efm270', 'en', 1, 'https://ror.org/058efm270 The Mill'), (74389, 'https://ror.org/058ej4w72', 'no_lang_code', 1, 'https://ror.org/058ej4w72 Aptinyx (United States)'), (74390, 'https://ror.org/058g9dj28', 'en', 1, 'https://ror.org/058g9dj28 Advanced Propulsion Centre'), (74391, 'https://ror.org/058gtx933', 'en', 1, 'https://ror.org/058gtx933 Capital Academy of Finance and Humanities Столичная Финансово-Гуманитарная Академия'), (74392, 'https://ror.org/058hheg54', 'en', 1, 'https://ror.org/058hheg54 Hamilton Multicultural Services Trust'), (74393, 'https://ror.org/058m30p27', 'en', 1, 'https://ror.org/058m30p27 National Society for Earthquake Technology'), (74394, 'https://ror.org/058n1t885', 'no_lang_code', 1, 'https://ror.org/058n1t885 Actoprobe (United States)'), (74395, 'https://ror.org/058n53b84', 'en', 1, 'https://ror.org/058n53b84 Geographical Association'), (74396, 'https://ror.org/058pb0b36', 'en', 1, 'https://ror.org/058pb0b36 State of Vermont Office of Governor'), (74397, 'https://ror.org/058qzvd72', 'en', 1, 'https://ror.org/058qzvd72 Cyprus Arbitration & Mediation Centre'), (74398, 'https://ror.org/058sdr222', 'en', 1, 'https://ror.org/058sdr222 Center for Public Policy Priorities'), (74399, 'https://ror.org/058twjz75', 'no_lang_code', 1, 'https://ror.org/058twjz75 HyPerComp Engineering (United States)'), (74400, 'https://ror.org/058vm0m82', 'pt', 1, 'https://ror.org/058vm0m82 Sindicato dos Trabalhadores Rurais de Caxias do Sul'), (74401, 'https://ror.org/058yy5a17', 'en', 1, 'https://ror.org/058yy5a17 Urban Justice Center'), (74402, 'https://ror.org/058zn7e64', 'no_lang_code', 1, 'https://ror.org/058zn7e64 Teraphysics (United States)'), (74403, 'https://ror.org/058znqh71', 'en', 1, 'https://ror.org/058znqh71 Cranfield Trust'), (74404, 'https://ror.org/058zx7d32', 'no_lang_code', 1, 'https://ror.org/058zx7d32 TESco Associates (United States)'), (74405, 'https://ror.org/058zzep76', 'it', 1, 'https://ror.org/058zzep76 Museo Egizio'), (74406, 'https://ror.org/0591ds558', 'en', 1, 'https://ror.org/0591ds558 Internal Displacement Monitoring Centre'), (74407, 'https://ror.org/05927vd92', 'no_lang_code', 1, 'https://ror.org/05927vd92 Studio Olgoj Chorchoj'), (74408, 'https://ror.org/0592ben86', 'en', 1, 'https://ror.org/0592ben86 Indian Institute of Public Health Gandhinagar ભારતીય જન સ્વાસ્થ સંસ્થાન ગાંધીનગર'), (74409, 'https://ror.org/05964ej87', 'no_lang_code', 1, 'https://ror.org/05964ej87 Akron Rubber Development Laboratory (United States)'), (74410, 'https://ror.org/0596srd08', 'en', 1, 'https://ror.org/0596srd08 Powell Cotton Museum'), (74411, 'https://ror.org/05974x792', 'es', 1, 'https://ror.org/05974x792 Red Universitaria Mutis'), (74412, 'https://ror.org/0598sqh06', 'es', 1, 'https://ror.org/0598sqh06 Centro Regional de Derechos Humanos y Justicia de Género, Corporación Humanas'), (74413, 'https://ror.org/059aemv20', 'en', 1, 'https://ror.org/059aemv20 National Association of Drug Court Professionals'), (74414, 'https://ror.org/059cetm58', 'no_lang_code', 1, 'https://ror.org/059cetm58 Uniswed (Sweden)'), (74415, 'https://ror.org/059d9my13', 'en', 1, 'https://ror.org/059d9my13 Centre for Women War Victims'), (74416, 'https://ror.org/059dzmv47', 'no_lang_code', 1, 'https://ror.org/059dzmv47 UVElite (Sweden)'), (74417, 'https://ror.org/059evmh03', 'no_lang_code', 1, 'https://ror.org/059evmh03 Hocuslocus (United States)'), (74418, 'https://ror.org/059jmsh97', 'en', 1, 'https://ror.org/059jmsh97 Oxford Centre for Drug Delivery Devices'), (74419, 'https://ror.org/059kvg223', 'no_lang_code', 1, 'https://ror.org/059kvg223 Hydromar (Poland)'), (74420, 'https://ror.org/059ma6x24', 'no_lang_code', 1, 'https://ror.org/059ma6x24 Mod9 Technologies (United States)'), (74421, 'https://ror.org/059mrwr24', 'no_lang_code', 1, 'https://ror.org/059mrwr24 The Medical Device (United Kingdom)'), (74422, 'https://ror.org/059pfgk41', 'no_lang_code', 1, 'https://ror.org/059pfgk41 International Data Group (Sweden)'), (74423, 'https://ror.org/059q04r73', 'en', 1, 'https://ror.org/059q04r73 Leeds College of Building'), (74424, 'https://ror.org/059rzps67', 'en', 1, 'https://ror.org/059rzps67 Center for Khmer Studies'), (74425, 'https://ror.org/059s6j071', 'en', 1, 'https://ror.org/059s6j071 China Classification Society 中國船級社'), (74426, 'https://ror.org/059tydn49', 'no_lang_code', 1, 'https://ror.org/059tydn49 Telvis (Poland)'), (74427, 'https://ror.org/059v6k471', 'en', 1, 'https://ror.org/059v6k471 Dudley Associates'), (74428, 'https://ror.org/059vdry28', 'en', 1, 'https://ror.org/059vdry28 Alternate Roots'), (74429, 'https://ror.org/059wwav72', 'no_lang_code', 1, 'https://ror.org/059wwav72 M C I Santé Animale (Morocco)'), (74430, 'https://ror.org/059ydbh22', 'no_lang_code', 1, 'https://ror.org/059ydbh22 Oxipit (Lithuania)'), (74431, 'https://ror.org/05a0jk155', 'no_lang_code', 1, 'https://ror.org/05a0jk155 Innovative Materials & Processes (United States)'), (74432, 'https://ror.org/05a0w0e26', 'en', 1, 'https://ror.org/05a0w0e26 Washington Glass School'), (74433, 'https://ror.org/05a133z08', 'en', 1, 'https://ror.org/05a133z08 St Albans Museums'), (74434, 'https://ror.org/05a1sck78', 'no_lang_code', 1, 'https://ror.org/05a1sck78 Alice Films (France)'), (74435, 'https://ror.org/05a5vr330', 'no_lang_code', 1, 'https://ror.org/05a5vr330 Precipio (United States)'), (74436, 'https://ror.org/05a885w72', 'en', 1, 'https://ror.org/05a885w72 Peace Museum'), (74437, 'https://ror.org/05a8q5k94', 'en', 1, 'https://ror.org/05a8q5k94 Water Industry Forum'), (74438, 'https://ror.org/05a9ar681', 'no_lang_code', 1, 'https://ror.org/05a9ar681 Descartes Labs (United States)'), (74439, 'https://ror.org/05a9avq33', 'en', 1, 'https://ror.org/05a9avq33 Centre for Printing History and Culture'), (74440, 'https://ror.org/05a9zc759', 'en', 1, 'https://ror.org/05a9zc759 Arts & Health South'), (74441, 'https://ror.org/05acccr47', 'en', 1, 'https://ror.org/05acccr47 Judicial Yuan 司法院'), (74442, 'https://ror.org/05ae3z928', 'no_lang_code', 1, 'https://ror.org/05ae3z928 VoiceLab (Poland)'), (74443, 'https://ror.org/05ae5sf68', 'en', 1, 'https://ror.org/05ae5sf68 China Population Welfare Foundation 中国人口福利基金会'), (74444, 'https://ror.org/05af7se92', 'en', 1, 'https://ror.org/05af7se92 Centre for Crime and Justice Studies'), (74445, 'https://ror.org/05ahdap62', 'no_lang_code', 1, 'https://ror.org/05ahdap62 Taylor McKenzie (United Kingdom)'), (74446, 'https://ror.org/05ahssc06', 'pt', 1, 'https://ror.org/05ahssc06 Instituto de Pesquisas e Estudos Afro Brasileiros'), (74447, 'https://ror.org/05ajf5338', 'fr', 1, 'https://ror.org/05ajf5338 Ministère des Affaires Économiques et de la Promotion des Secteurs Productifs'), (74448, 'https://ror.org/05ak48w56', 'no_lang_code', 1, 'https://ror.org/05ak48w56 Materials Research Group (United States)'), (74449, 'https://ror.org/05am5k237', 'en', 1, 'https://ror.org/05am5k237 Social Action'), (74450, 'https://ror.org/05ap64c35', 'no_lang_code', 1, 'https://ror.org/05ap64c35 Harare Central Hospital'), (74451, 'https://ror.org/05ar6z982', 'no_lang_code', 1, 'https://ror.org/05ar6z982 Antigua State College'), (74452, 'https://ror.org/05av08j02', 'es', 1, 'https://ror.org/05av08j02 Instituto Nacional de Medicina Tropical'), (74453, 'https://ror.org/05av8vw53', 'fr', 1, 'https://ror.org/05av8vw53 Centre International de Poésie Marseille'), (74454, 'https://ror.org/05avpf476', 'en', 1, 'https://ror.org/05avpf476 Gujarat Institute of Desert Ecology'), (74455, 'https://ror.org/05awv5h47', 'en', 1, 'https://ror.org/05awv5h47 Community Development Corporation of Brownsville'), (74456, 'https://ror.org/05ay42146', 'en', 1, 'https://ror.org/05ay42146 Internet Service Providers Association'), (74457, 'https://ror.org/05aytwf55', 'no_lang_code', 1, 'https://ror.org/05aytwf55 Owens Corning (Brazil)'), (74458, 'https://ror.org/05azvrx95', 'sv', 1, 'https://ror.org/05azvrx95 Carlanderska Sjukhuset'), (74459, 'https://ror.org/05b1g0108', 'en', 1, 'https://ror.org/05b1g0108 Michigan League for Public Policy'), (74460, 'https://ror.org/05b1rj382', 'no_lang_code', 1, 'https://ror.org/05b1rj382 DHPC Technologies (United States)'), (74461, 'https://ror.org/05b1ymr19', 'es', 1, 'https://ror.org/05b1ymr19 Universidad San Carlos'), (74462, 'https://ror.org/05b2mvq54', 'en', 1, 'https://ror.org/05b2mvq54 Russian State University of Justice Российская Академия Правосудия'), (74463, 'https://ror.org/05b4wdn22', 'en', 1, 'https://ror.org/05b4wdn22 Ecological Continuity Trust'), (74464, 'https://ror.org/05b9e3t13', 'no_lang_code', 1, 'https://ror.org/05b9e3t13 dTEC Systems (United States)'), (74465, 'https://ror.org/05bbr1905', 'de', 1, 'https://ror.org/05bbr1905 Nephrologisches Zentrum Emsland'), (74466, 'https://ror.org/05bc3r795', 'en', 1, 'https://ror.org/05bc3r795 UK Collaborative on Development Research'), (74467, 'https://ror.org/05bdz6951', 'en', 1, 'https://ror.org/05bdz6951 Federal Senate Senado Federal'), (74468, 'https://ror.org/05bf1hc74', 'no_lang_code', 1, 'https://ror.org/05bf1hc74 Lentex (Poland)'), (74469, 'https://ror.org/05bg9sv56', 'en', 1, 'https://ror.org/05bg9sv56 Crossroads Youth & Community Association'), (74470, 'https://ror.org/05bgbfq25', 'en', 1, 'https://ror.org/05bgbfq25 Public Works Department Buildings and Roads'), (74471, 'https://ror.org/05bhhjy59', 'en', 1, 'https://ror.org/05bhhjy59 Queen Elizabeth’s Academy'), (74472, 'https://ror.org/05bmf3j81', 'en', 1, 'https://ror.org/05bmf3j81 Clifton Suspension Bridge Trust'), (74473, 'https://ror.org/05bmkf081', 'en', 1, 'https://ror.org/05bmkf081 Friends of Basrah Museum متحف البصرة'), (74474, 'https://ror.org/05bnh6b29', 'en', 1, 'https://ror.org/05bnh6b29 Institute of Group Analysis'), (74475, 'https://ror.org/05bp3t561', 'en', 1, 'https://ror.org/05bp3t561 The National Coalition on Black Civic Participation'), (74476, 'https://ror.org/05bpgb671', 'en', 1, 'https://ror.org/05bpgb671 Emil Racovita Institute of Speleology Institutul De Speologie Emil Racoviţă'), (74477, 'https://ror.org/05bpzf670', 'en', 1, 'https://ror.org/05bpzf670 Dutch Institute for Alcohol Policy Nederlands Instituut voor Alcoholbeleid'), (74478, 'https://ror.org/05bs2v013', 'no_lang_code', 1, 'https://ror.org/05bs2v013 Itaúsa (Brazil)'), (74479, 'https://ror.org/05bte7q71', 'no_lang_code', 1, 'https://ror.org/05bte7q71 Cytoptics (United States)'), (74480, 'https://ror.org/05btsbq39', 'en', 1, 'https://ror.org/05btsbq39 Institute of Chartered Accountants in England and Wales'), (74481, 'https://ror.org/05bvpnp10', 'no_lang_code', 1, 'https://ror.org/05bvpnp10 HTD Biosystems (United States)'), (74482, 'https://ror.org/05bvtbx10', 'en', 1, 'https://ror.org/05bvtbx10 The Patients Association'), (74483, 'https://ror.org/05c0pz938', 'pt', 1, 'https://ror.org/05c0pz938 Associação Brasileira de Pesquisadores Negros'), (74484, 'https://ror.org/05c1nzq18', 'en', 1, 'https://ror.org/05c1nzq18 Commission de la Capitale Nationale National Capital Commission'), (74485, 'https://ror.org/05c35hf12', 'no_lang_code', 1, 'https://ror.org/05c35hf12 Elysium Therapeutics (United States)'), (74486, 'https://ror.org/05c53qb74', 'en', 1, 'https://ror.org/05c53qb74 National Center for Technological Progress Viện ứng dụng công nghệ'), (74487, 'https://ror.org/05c5x4241', 'en', 1, 'https://ror.org/05c5x4241 Fair Share Education Fund'), (74488, 'https://ror.org/05c64fx98', 'en', 1, 'https://ror.org/05c64fx98 Stockholm Makerspace'), (74489, 'https://ror.org/05c6afn23', 'en', 1, 'https://ror.org/05c6afn23 Start'), (74490, 'https://ror.org/05c7mzp22', 'pt', 1, 'https://ror.org/05c7mzp22 Museu Afro Brasil'), (74491, 'https://ror.org/05caamn50', 'pt', 1, 'https://ror.org/05caamn50 Instituto para o Desenvolvimento do Jornalismo'), (74492, 'https://ror.org/05cam0y32', 'no_lang_code', 1, 'https://ror.org/05cam0y32 NTS (United States)'), (74493, 'https://ror.org/05cbsyd36', 'en', 1, 'https://ror.org/05cbsyd36 National Committee for Responsive Philanthropy'), (74494, 'https://ror.org/05ccpr318', 'en', 1, 'https://ror.org/05ccpr318 British Meat Processors Association'), (74495, 'https://ror.org/05cdbex20', 'en', 1, 'https://ror.org/05cdbex20 Agensi Angkasa Negara National Space Agency'), (74496, 'https://ror.org/05cdt9d58', 'no_lang_code', 1, 'https://ror.org/05cdt9d58 Micro Vascular Theraputics (United States)'), (74497, 'https://ror.org/05cfrq349', 'en', 1, 'https://ror.org/05cfrq349 Oregon Shakespeare Festival'), (74498, 'https://ror.org/05ch53314', 'no_lang_code', 1, 'https://ror.org/05ch53314 Mevia (Sweden)'), (74499, 'https://ror.org/05cjqhm25', 'no_lang_code', 1, 'https://ror.org/05cjqhm25 Agilent Technologies (Sweden)'), (74500, 'https://ror.org/05cpqm110', 'no_lang_code', 1, 'https://ror.org/05cpqm110 Direct Electron (United States)'), (74501, 'https://ror.org/05cqwch71', 'en', 1, 'https://ror.org/05cqwch71 North Tolsta Historical Society'), (74502, 'https://ror.org/05cr6kr86', 'en', 1, 'https://ror.org/05cr6kr86 Centre for Environment Education'), (74503, 'https://ror.org/05ct4s596', 'en', 1, 'https://ror.org/05ct4s596 PLA Academy of Military Science 中国人民解放军军事科学院'), (74504, 'https://ror.org/05ct52702', 'en', 1, 'https://ror.org/05ct52702 Planned Environment Therapy Trust'), (74505, 'https://ror.org/05ctt1694', 'no_lang_code', 1, 'https://ror.org/05ctt1694 Iamip (Sweden)'), (74506, 'https://ror.org/05cvbfc52', 'en', 1, 'https://ror.org/05cvbfc52 National Korean American Service & Education Consortium'), (74507, 'https://ror.org/05cwv3v76', 'no_lang_code', 1, 'https://ror.org/05cwv3v76 Gnosco (Sweden)'), (74508, 'https://ror.org/05cx65996', 'en', 1, 'https://ror.org/05cx65996 Ocean Doctor'), (74509, 'https://ror.org/05cxzzq07', 'en', 1, 'https://ror.org/05cxzzq07 Oldham Council'), (74510, 'https://ror.org/05cz09y50', 'no_lang_code', 1, 'https://ror.org/05cz09y50 Yomiuri Group (Japan) 読売新聞'), (74511, 'https://ror.org/05cz4ke42', 'en', 1, 'https://ror.org/05cz4ke42 Wildwood Trust'), (74512, 'https://ror.org/05czbgw27', 'en', 1, 'https://ror.org/05czbgw27 Renewable Energy and Energy Efficiency Partnership'), (74513, 'https://ror.org/05czncj82', 'no_lang_code', 1, 'https://ror.org/05czncj82 Lasanaa'), (74514, 'https://ror.org/05d0gds53', 'en', 1, 'https://ror.org/05d0gds53 The Financial Inclusion Centre'), (74515, 'https://ror.org/05d1twd90', 'en', 1, 'https://ror.org/05d1twd90 Angelman Syndrome Support Education & Research Trust'), (74516, 'https://ror.org/05d4wmc20', 'en', 1, 'https://ror.org/05d4wmc20 City of Knowledge Ciudad del Saber'), (74517, 'https://ror.org/05d6cw921', 'no_lang_code', 1, 'https://ror.org/05d6cw921 Nomura Plating (Japan)'), (74518, 'https://ror.org/05d73n292', 'en', 1, 'https://ror.org/05d73n292 Uganda Association of Women Lawyers'), (74519, 'https://ror.org/05d8p0254', 'es', 1, 'https://ror.org/05d8p0254 Hospital Regional de Arica Doctor Juan Noé Crevani'), (74520, 'https://ror.org/05db2rf46', 'en', 1, 'https://ror.org/05db2rf46 Centre pour le contrôle démocratique des forces armées Geneva Centre for the Democratic Control of Armed Forces Genfer Zentrum für die demokratische Kontrolle der Streitkräfte'), (74521, 'https://ror.org/05ddcb021', 'en', 1, 'https://ror.org/05ddcb021 Bach Dancing and Dynamite Society'), (74522, 'https://ror.org/05de8nz58', 'en', 1, 'https://ror.org/05de8nz58 Uganda National Council for Higher Education'), (74523, 'https://ror.org/05dhgv769', 'en', 1, 'https://ror.org/05dhgv769 Campaign for Migrant Worker Justice'), (74524, 'https://ror.org/05dhnhb13', 'no_lang_code', 1, 'https://ror.org/05dhnhb13 Naftogaz (Ukraine) Нафтогаз України'), (74525, 'https://ror.org/05djs6314', 'en', 1, 'https://ror.org/05djs6314 Clinton Foundation'), (74526, 'https://ror.org/05dk07j97', 'en', 1, 'https://ror.org/05dk07j97 Energy Technology Centre'), (74527, 'https://ror.org/05dmkvt76', 'en', 1, 'https://ror.org/05dmkvt76 Wise Monkey Foundation'), (74528, 'https://ror.org/05dmqh951', 'no_lang_code', 1, 'https://ror.org/05dmqh951 Engemasa (Brazil)'), (74529, 'https://ror.org/05dnjaa32', 'es', 1, 'https://ror.org/05dnjaa32 Geophysical Institute of Peru Instituto Geofísico del Perú'), (74530, 'https://ror.org/05dq77c70', 'no_lang_code', 1, 'https://ror.org/05dq77c70 Promote Medical (United Kingdom)'), (74531, 'https://ror.org/05ds1cx37', 'no_lang_code', 1, 'https://ror.org/05ds1cx37 RKB Mainichi Broadcasting (Japan) RKB毎日放送株式会社'), (74532, 'https://ror.org/05dsek450', 'fr', 1, 'https://ror.org/05dsek450 Hémostase et Dynamique Cellulaire Vasculaire'), (74533, 'https://ror.org/05dv0q502', 'en', 1, 'https://ror.org/05dv0q502 Chartered Institute of Management Accountants'), (74534, 'https://ror.org/05dvgxb17', 'en', 1, 'https://ror.org/05dvgxb17 The Center For Rural Development'), (74535, 'https://ror.org/05dwbzt62', 'en', 1, 'https://ror.org/05dwbzt62 Samata Foundation समता फाउन्डेशन'), (74536, 'https://ror.org/05dxne691', 'en', 1, 'https://ror.org/05dxne691 European Public Health Association'), (74537, 'https://ror.org/05dy2tj95', 'no_lang_code', 1, 'https://ror.org/05dy2tj95 Special Production Plant Gamrat (Poland) Zaklad Produkcji Specjalnej Gamrat'), (74538, 'https://ror.org/05e0fad36', 'no_lang_code', 1, 'https://ror.org/05e0fad36 Shangri-la Institute 香格里拉可持续社区学会'), (74539, 'https://ror.org/05e357p42', 'fr', 1, 'https://ror.org/05e357p42 Centre National d''Art et de Culture Georges-Pompidou, Centre Pompidou'), (74540, 'https://ror.org/05e371w82', 'en', 1, 'https://ror.org/05e371w82 Hereford Health and Safety Group'), (74541, 'https://ror.org/05e3gef34', 'es', 1, 'https://ror.org/05e3gef34 Hospital Las Higueras'), (74542, 'https://ror.org/05e475224', 'no_lang_code', 1, 'https://ror.org/05e475224 Cerberus Security Laboratories (United Kingdom)'), (74543, 'https://ror.org/05e7atb82', 'en', 1, 'https://ror.org/05e7atb82 Directorate of Scheduled Tribes Development Department'), (74544, 'https://ror.org/05e7psn47', 'en', 1, 'https://ror.org/05e7psn47 Center for Domestic Violence Prevention'), (74545, 'https://ror.org/05e9tm050', 'no_lang_code', 1, 'https://ror.org/05e9tm050 Detectogen (United States)'), (74546, 'https://ror.org/05ea00v44', 'no_lang_code', 1, 'https://ror.org/05ea00v44 AlphaMicron (United States)'), (74547, 'https://ror.org/05ebjrj46', 'en', 1, 'https://ror.org/05ebjrj46 Nepal Centre for Contemporary Studies'), (74548, 'https://ror.org/05ecntp89', 'en', 1, 'https://ror.org/05ecntp89 Department for Communities'), (74549, 'https://ror.org/05ednck41', 'en', 1, 'https://ror.org/05ednck41 Brunei Polytechnic Politeknik Brunei'), (74550, 'https://ror.org/05edrpk50', 'no_lang_code', 1, 'https://ror.org/05edrpk50 BCO (United States)'), (74551, 'https://ror.org/05eh8wd69', 'no_lang_code', 1, 'https://ror.org/05eh8wd69 Dependable Computing (United States)'), (74552, 'https://ror.org/05ej9rw09', 'no_lang_code', 1, 'https://ror.org/05ej9rw09 Capture Pharmaceuticals (United States)'), (74553, 'https://ror.org/05ejdaa80', 'en', 1, 'https://ror.org/05ejdaa80 Khoj International Artists'' Association'), (74554, 'https://ror.org/05ekxjh51', 'en', 1, 'https://ror.org/05ekxjh51 The Research Network'), (74555, 'https://ror.org/05em9b770', 'en', 1, 'https://ror.org/05em9b770 Justice & Security Strategies'), (74556, 'https://ror.org/05eqc4s73', 'en', 1, 'https://ror.org/05eqc4s73 Regional Plan Association'), (74557, 'https://ror.org/05erea272', 'en', 1, 'https://ror.org/05erea272 Barrier Breakers Foundation'), (74558, 'https://ror.org/05es54b96', 'pl', 1, 'https://ror.org/05es54b96 Specjalistyczny Szpital Miejski im. M. Kopernika'), (74559, 'https://ror.org/05eva4f61', 'no_lang_code', 1, 'https://ror.org/05eva4f61 API Engineering (United States)'), (74560, 'https://ror.org/05evqrm94', 'en', 1, 'https://ror.org/05evqrm94 Nehru Memorial Museum & Library नेहरू स्मारक संग्रहालय और पुस्तकालय'), (74561, 'https://ror.org/05ez2gd39', 'en', 1, 'https://ror.org/05ez2gd39 Digital Engineering and Test Centre'), (74562, 'https://ror.org/05f0grh52', 'sv', 1, 'https://ror.org/05f0grh52 Avfallshantering Östra Skaraborg'), (74563, 'https://ror.org/05f0ps005', 'en', 1, 'https://ror.org/05f0ps005 National Religious Campaign Against Torture'), (74564, 'https://ror.org/05f0pxv25', 'en', 1, 'https://ror.org/05f0pxv25 Sunlight Foundation'), (74565, 'https://ror.org/05f32fm39', 'en', 1, 'https://ror.org/05f32fm39 Hadejia Jama’are Komadugu Yobe Basin-Trust Fund'), (74566, 'https://ror.org/05f4fay86', 'en', 1, 'https://ror.org/05f4fay86 Bethlehem Bible College'), (74567, 'https://ror.org/05f4wkm56', 'en', 1, 'https://ror.org/05f4wkm56 The Anne Frank Trust UK'), (74568, 'https://ror.org/05f5m2x04', 'no_lang_code', 1, 'https://ror.org/05f5m2x04 RAPID Biomedical (Germany)'), (74569, 'https://ror.org/05f8ht569', 'en', 1, 'https://ror.org/05f8ht569 Institute of Bio-Sensing Technology'), (74570, 'https://ror.org/05f8krt68', 'en', 1, 'https://ror.org/05f8krt68 Sigtuna Foundation Sigtunastiftelsen'), (74571, 'https://ror.org/05f8y8t16', 'no_lang_code', 1, 'https://ror.org/05f8y8t16 Mentaid'), (74572, 'https://ror.org/05fbshr33', 'en', 1, 'https://ror.org/05fbshr33 National Housing Conference'), (74573, 'https://ror.org/05fdfq287', 'en', 1, 'https://ror.org/05fdfq287 Capital Museum 首都博物馆'), (74574, 'https://ror.org/05fe6f045', 'es', 1, 'https://ror.org/05fe6f045 Centro de Análisis e Investigación, Fundar'), (74575, 'https://ror.org/05fexxx29', 'no_lang_code', 1, 'https://ror.org/05fexxx29 Lumen (United Kingdom)'), (74576, 'https://ror.org/05ff8j166', 'id', 1, 'https://ror.org/05ff8j166 Pancur Kasih Association, Perkumpulan Pancur Kasih'), (74577, 'https://ror.org/05fh3jm54', 'no_lang_code', 1, 'https://ror.org/05fh3jm54 Dayton T. Brown (United States)'), (74578, 'https://ror.org/05fh4qp85', 'en', 1, 'https://ror.org/05fh4qp85 The Grierson Trust'), (74579, 'https://ror.org/05fhfab69', 'en', 1, 'https://ror.org/05fhfab69 Pàrlamaid na h-Alba, Scottish Parliament'), (74580, 'https://ror.org/05fhxms97', 'en', 1, 'https://ror.org/05fhxms97 Dar Al-Kalima University College of Arts and Culture كلية دار الكلمة الجامعية للفنون والثقافة'), (74581, 'https://ror.org/05fkmgk28', 'en', 1, 'https://ror.org/05fkmgk28 World Dementia Council'), (74582, 'https://ror.org/05fkw0228', 'no_lang_code', 1, 'https://ror.org/05fkw0228 Delta International (Georgia) სსიპ - სსსტც დელტა'), (74583, 'https://ror.org/05fmpsp49', 'no_lang_code', 1, 'https://ror.org/05fmpsp49 Spyra Primo (Poland)'), (74584, 'https://ror.org/05fn6pg91', 'sv', 1, 'https://ror.org/05fn6pg91 Forska Sverige Research!Sweden'), (74585, 'https://ror.org/05fnwbw69', 'en', 1, 'https://ror.org/05fnwbw69 Ministry of Foreign Affairs މިނިސްޓްރީ އޮފް ފޮރިން އެފެއާޒް'), (74586, 'https://ror.org/05fnxds15', 'fr', 1, 'https://ror.org/05fnxds15 Processus Infectieux en Milieu Insulaire Tropical'), (74587, 'https://ror.org/05fp2br79', 'no_lang_code', 1, 'https://ror.org/05fp2br79 Anolytech (Sweden)'), (74588, 'https://ror.org/05fpcda55', 'en', 1, 'https://ror.org/05fpcda55 Landscape Research Group'), (74589, 'https://ror.org/05frbvt97', 'en', 1, 'https://ror.org/05frbvt97 The Bay Trust'), (74590, 'https://ror.org/05frq8d16', 'en', 1, 'https://ror.org/05frq8d16 Modern Art Research Institute Інститут проблем сучасного мистецтва'), (74591, 'https://ror.org/05fsww483', 'sv', 1, 'https://ror.org/05fsww483 Sunderby Folkhögskola'), (74592, 'https://ror.org/05ftdtn89', 'en', 1, 'https://ror.org/05ftdtn89 Greater Manchester Police Museum & Archives'), (74593, 'https://ror.org/05fv6dp97', 'en', 1, 'https://ror.org/05fv6dp97 Grantmakers in the Arts'), (74594, 'https://ror.org/05fwhaq12', 'en', 1, 'https://ror.org/05fwhaq12 Higher Education Statistics Agency'), (74595, 'https://ror.org/05fxdg983', 'no_lang_code', 1, 'https://ror.org/05fxdg983 Coramed (United States)'), (74596, 'https://ror.org/05fxzh978', 'fr', 1, 'https://ror.org/05fxzh978 Laboratoire Philippe Auguste'), (74597, 'https://ror.org/05fy44g10', 'pl', 1, 'https://ror.org/05fy44g10 Beskidzkie Centrum Onkologii Szpital Miejski im. Jana Pawla II w Bielsku-Bialej'), (74598, 'https://ror.org/05g6h0p60', 'en', 1, 'https://ror.org/05g6h0p60 International Graduate School of Leadership'), (74599, 'https://ror.org/05g6xs632', 'no_lang_code', 1, 'https://ror.org/05g6xs632 LunaLEC (Sweden)'), (74600, 'https://ror.org/05g6zgq36', 'en', 1, 'https://ror.org/05g6zgq36 Goethe Institute'), (74601, 'https://ror.org/05g94gn19', 'no_lang_code', 1, 'https://ror.org/05g94gn19 Change.org (United States)'), (74602, 'https://ror.org/05g94t868', 'en', 1, 'https://ror.org/05g94t868 Yorkshire Film Archive'), (74603, 'https://ror.org/05g9paz74', 'en', 1, 'https://ror.org/05g9paz74 Oxford Spires Academy'), (74604, 'https://ror.org/05g9s8164', 'no_lang_code', 1, 'https://ror.org/05g9s8164 Gallagher (United States)'), (74605, 'https://ror.org/05gdhyx59', 'en', 1, 'https://ror.org/05gdhyx59 The Georgian Concert Society'), (74606, 'https://ror.org/05ge23e39', 'no_lang_code', 1, 'https://ror.org/05ge23e39 Carritech Research (United Kingdom)'), (74607, 'https://ror.org/05gfawf80', 'no_lang_code', 1, 'https://ror.org/05gfawf80 MH Acoustics (United States)'), (74608, 'https://ror.org/05gggsd38', 'en', 1, 'https://ror.org/05gggsd38 Centre for Responsible Credit'), (74609, 'https://ror.org/05ghfbv04', 'en', 1, 'https://ror.org/05ghfbv04 Sir James Knott Trust'), (74610, 'https://ror.org/05gn3js43', 'no_lang_code', 1, 'https://ror.org/05gn3js43 DxTerity (United States)'), (74611, 'https://ror.org/05gsn4d81', 'en', 1, 'https://ror.org/05gsn4d81 Delius Trust'), (74612, 'https://ror.org/05gt2gw76', 'en', 1, 'https://ror.org/05gt2gw76 Educational Video Center'), (74613, 'https://ror.org/05gv0tw76', 'no_lang_code', 1, 'https://ror.org/05gv0tw76 Eko-Energia (Poland)'), (74614, 'https://ror.org/05gvbr510', 'en', 1, 'https://ror.org/05gvbr510 Staffordshire Film Archive'), (74615, 'https://ror.org/05gvknb51', 'en', 1, 'https://ror.org/05gvknb51 Institute of Biomedical Physics Viện Vật Lý Y Sinh'), (74616, 'https://ror.org/05gwdv631', 'en', 1, 'https://ror.org/05gwdv631 Michigan Nonprofit Association'), (74617, 'https://ror.org/05gwgrg94', 'no_lang_code', 1, 'https://ror.org/05gwgrg94 InflamaCore (United States)'), (74618, 'https://ror.org/05gzzg873', 'en', 1, 'https://ror.org/05gzzg873 Institute for Voluntary Action Research'), (74619, 'https://ror.org/05h0rfr48', 'en', 1, 'https://ror.org/05h0rfr48 Rural Self-Reliance Development Centre'), (74620, 'https://ror.org/05h1ag309', 'de', 1, 'https://ror.org/05h1ag309 Marienhospital Gelsenkirchen'), (74621, 'https://ror.org/05h1bjp83', 'no_lang_code', 1, 'https://ror.org/05h1bjp83 High Throughput Biology (United States)'), (74622, 'https://ror.org/05h2nkq67', 'en', 1, 'https://ror.org/05h2nkq67 Association for Micro-Finance Institutions'), (74623, 'https://ror.org/05h2sqk17', 'no_lang_code', 1, 'https://ror.org/05h2sqk17 Sewaco System (Poland)'), (74624, 'https://ror.org/05h3cvr32', 'no_lang_code', 1, 'https://ror.org/05h3cvr32 Tedspaw (Poland)'), (74625, 'https://ror.org/05h49ef04', 'en', 1, 'https://ror.org/05h49ef04 Association of Independent Crop Consultants'), (74626, 'https://ror.org/05h4gap09', 'no_lang_code', 1, 'https://ror.org/05h4gap09 Innovative Design Engineeering & Analysis (United States)'), (74627, 'https://ror.org/05h4kd271', 'en', 1, 'https://ror.org/05h4kd271 Watershed Center'), (74628, 'https://ror.org/05h7w4033', 'no_lang_code', 1, 'https://ror.org/05h7w4033 Wematter (Sweden)'), (74629, 'https://ror.org/05h8jev84', 'en', 1, 'https://ror.org/05h8jev84 JNCL-NCLIS'), (74630, 'https://ror.org/05h9c9c83', 'en', 1, 'https://ror.org/05h9c9c83 Grupo de Información en Reproducción Elegida Information Group on Reproductive Choice'), (74631, 'https://ror.org/05h9r7c77', 'en', 1, 'https://ror.org/05h9r7c77 National Museum of China 中国国家博物馆'), (74632, 'https://ror.org/05hd64t60', 'en', 1, 'https://ror.org/05hd64t60 Movement Strategy Center'), (74633, 'https://ror.org/05hdh9883', 'no_lang_code', 1, 'https://ror.org/05hdh9883 JK Research (United States)'), (74634, 'https://ror.org/05hdhmf73', 'en', 1, 'https://ror.org/05hdhmf73 Association of British Professional Conference Organisers'), (74635, 'https://ror.org/05hfzg379', 'no_lang_code', 1, 'https://ror.org/05hfzg379 Entech (United States)'), (74636, 'https://ror.org/05hj4dk05', 'pt', 1, 'https://ror.org/05hj4dk05 Museu de Lamego'), (74637, 'https://ror.org/05hjg4437', 'no_lang_code', 1, 'https://ror.org/05hjg4437 Evosens (France)'), (74638, 'https://ror.org/05hkpfm52', 'en', 1, 'https://ror.org/05hkpfm52 Dharma Drum Institute of Liberal Arts 法鼓文理學院'), (74639, 'https://ror.org/05hnrst22', 'en', 1, 'https://ror.org/05hnrst22 Westmill Sustainable Energy Trust'), (74640, 'https://ror.org/05hpbxg82', 'no_lang_code', 1, 'https://ror.org/05hpbxg82 Nexteer Automotive (Poland)'), (74641, 'https://ror.org/05hpw7264', 'pt', 1, 'https://ror.org/05hpw7264 Cooxupé'), (74642, 'https://ror.org/05hspww74', 'en', 1, 'https://ror.org/05hspww74 New Rules for Global Finance'), (74643, 'https://ror.org/05hvdj453', 'no_lang_code', 1, 'https://ror.org/05hvdj453 Semcon (Sweden)'), (74644, 'https://ror.org/05hy8nr95', 'no_lang_code', 1, 'https://ror.org/05hy8nr95 Io Therapeutics (United States)'), (74645, 'https://ror.org/05j07r343', 'en', 1, 'https://ror.org/05j07r343 Ukrainian Academy of Agrarian Sciences Української академії аграрних наук'), (74646, 'https://ror.org/05j0jp984', 'az', 1, 'https://ror.org/05j0jp984 Strateji Araşdırmalar Mərkəzi'), (74647, 'https://ror.org/05j2afk93', 'no_lang_code', 1, 'https://ror.org/05j2afk93 Alpha Environmental (United States)'), (74648, 'https://ror.org/05j2cds40', 'sv', 1, 'https://ror.org/05j2cds40 Industriella UtvecklingsCentra'), (74649, 'https://ror.org/05j3nm367', 'en', 1, 'https://ror.org/05j3nm367 The Queen''s Foundation'), (74650, 'https://ror.org/05j4kzc41', 'ro', 1, 'https://ror.org/05j4kzc41 Spitalul Clinic Județean de Urgență Cluj-Napoca'), (74651, 'https://ror.org/05j5nk668', 'no_lang_code', 1, 'https://ror.org/05j5nk668 Kelly Space & Technology (United States)'), (74652, 'https://ror.org/05j6qf006', 'fr', 1, 'https://ror.org/05j6qf006 Centre de Recherche en Écologie Expérimentale et Prédictive, Cereep Ecotron Île-de-France'), (74653, 'https://ror.org/05j6sj461', 'de', 1, 'https://ror.org/05j6sj461 Museum Strom und Leben'), (74654, 'https://ror.org/05j704380', 'en', 1, 'https://ror.org/05j704380 International Media Support'), (74655, 'https://ror.org/05j8hq318', 'no_lang_code', 1, 'https://ror.org/05j8hq318 Sdiptech (Sweden)'), (74656, 'https://ror.org/05j9p9809', 'no_lang_code', 1, 'https://ror.org/05j9p9809 Marvel Medtech (United States)'), (74657, 'https://ror.org/05jbsjy59', 'en', 1, 'https://ror.org/05jbsjy59 Iran Meteorological Organization سازمان هواشناسی جمهوری اسلامی ایران'), (74658, 'https://ror.org/05je89049', 'en', 1, 'https://ror.org/05je89049 Strategic Concepts in Organizing and Policy Education'), (74659, 'https://ror.org/05jev2650', 'no_lang_code', 1, 'https://ror.org/05jev2650 Research Network Services (Germany)'), (74660, 'https://ror.org/05jexhf05', 'no_lang_code', 1, 'https://ror.org/05jexhf05 John Regan Associates (United Kingdom)'), (74661, 'https://ror.org/05jfg3b29', 'en', 1, 'https://ror.org/05jfg3b29 National Institute of Criminology Országos Kriminológiai Intézet'), (74662, 'https://ror.org/05jgm8734', 'en', 1, 'https://ror.org/05jgm8734 National Literacy Trust'), (74663, 'https://ror.org/05jh28309', 'en', 1, 'https://ror.org/05jh28309 Youth Development Administration 青年發展署'), (74664, 'https://ror.org/05jh6qs86', 'en', 1, 'https://ror.org/05jh6qs86 Entrepreneurial Ecosystems'), (74665, 'https://ror.org/05jk0sf34', 'no_lang_code', 1, 'https://ror.org/05jk0sf34 LW Microsystems (United States)'), (74666, 'https://ror.org/05jn4m407', 'en', 1, 'https://ror.org/05jn4m407 Environmental Health Coalition'), (74667, 'https://ror.org/05jnhtw66', 'en', 1, 'https://ror.org/05jnhtw66 King Hussein Foundation مؤسسة الملك الحسين'), (74668, 'https://ror.org/05jp4w275', 'en', 1, 'https://ror.org/05jp4w275 Seethapathy Clinic and Hospital'), (74669, 'https://ror.org/05jqw2r29', 'en', 1, 'https://ror.org/05jqw2r29 Rossdales Veterinary Surgeons'), (74670, 'https://ror.org/05jskhr58', 'en', 1, 'https://ror.org/05jskhr58 Global Environmental Institute 全球环境研究所'), (74671, 'https://ror.org/05jsp9k64', 'en', 1, 'https://ror.org/05jsp9k64 Economic Research Centre İqtisadi Tədqiqatlar Mərkəzi'), (74672, 'https://ror.org/05jv9s411', 'de', 1, 'https://ror.org/05jv9s411 Senckenberg Museum für Naturkunde Görlitz Senckenberg Museum of Natural History Görlitz'), (74673, 'https://ror.org/05jwhr041', 'en', 1, 'https://ror.org/05jwhr041 Donetsk Christian University Донецький Християнський Університет'), (74674, 'https://ror.org/05jxn6e66', 'en', 1, 'https://ror.org/05jxn6e66 Ministry of Natural Resources and Environment ກະຊວງ ຊັບພະຍາກອນ ທຳມະຊາດ ແລະ ສິ່ງແວດລ້ອມ'), (74675, 'https://ror.org/05jz37f81', 'no_lang_code', 1, 'https://ror.org/05jz37f81 Consolidated Precision Products (Poland)'), (74676, 'https://ror.org/05k0e7y54', 'en', 1, 'https://ror.org/05k0e7y54 Wallingford Museum'), (74677, 'https://ror.org/05k1fbt59', 'en', 1, 'https://ror.org/05k1fbt59 Natural History Society of Northumbria'), (74678, 'https://ror.org/05k3cs357', 'en', 1, 'https://ror.org/05k3cs357 Institute for the Study of Regionalism, Federalism and Self-Government Istituto di Studi sui Sistemi Regionali Federali e sulle Autonomie ''''Massimo Severo Giannini'''''), (74679, 'https://ror.org/05k3f0d98', 'no_lang_code', 1, 'https://ror.org/05k3f0d98 All India Kisan Sabha अखिल भारतीय किसान सभा'), (74680, 'https://ror.org/05k533e16', 'en', 1, 'https://ror.org/05k533e16 Vana Trust'), (74681, 'https://ror.org/05k5x9q51', 'no_lang_code', 1, 'https://ror.org/05k5x9q51 Medfield Diagnostics (Sweden)'), (74682, 'https://ror.org/05k6f1688', 'en', 1, 'https://ror.org/05k6f1688 Children’s Action Alliance'), (74683, 'https://ror.org/05k6q1750', 'no_lang_code', 1, 'https://ror.org/05k6q1750 Advanced Numerical Solutions (United States)'), (74684, 'https://ror.org/05k78rz60', 'no_lang_code', 1, 'https://ror.org/05k78rz60 BioHybrid Solutions (United States)'), (74685, 'https://ror.org/05k7h3711', 'en', 1, 'https://ror.org/05k7h3711 BOTEC Analysis'), (74686, 'https://ror.org/05k8q2h32', 'de', 1, 'https://ror.org/05k8q2h32 Institut für Dünnschichttechnologie und Mikrosensorik'), (74687, 'https://ror.org/05k9ygy91', 'en', 1, 'https://ror.org/05k9ygy91 Dundee Carers Centre'), (74688, 'https://ror.org/05kavjv60', 'en', 1, 'https://ror.org/05kavjv60 Centre for the Study of Violence and Reconciliation'), (74689, 'https://ror.org/05kb1ze13', 'ro', 1, 'https://ror.org/05kb1ze13 Spitalul Clinic Judetean Mures'), (74690, 'https://ror.org/05kc40c41', 'en', 1, 'https://ror.org/05kc40c41 Phoenix Futures'), (74691, 'https://ror.org/05kcpgf42', 'en', 1, 'https://ror.org/05kcpgf42 Dudley Street Neighborhood Initiative'), (74692, 'https://ror.org/05kcyf633', 'en', 1, 'https://ror.org/05kcyf633 The Stuttering Association for the Young'), (74693, 'https://ror.org/05kd5pz92', 'en', 1, 'https://ror.org/05kd5pz92 Wales & West Housing'), (74694, 'https://ror.org/05kdgvd18', 'en', 1, 'https://ror.org/05kdgvd18 Raspberry Pi Foundation'), (74695, 'https://ror.org/05kge5x46', 'no_lang_code', 1, 'https://ror.org/05kge5x46 AgeSoya (Poland)'), (74696, 'https://ror.org/05kgh1y38', 'es', 1, 'https://ror.org/05kgh1y38 Hospital de Carabineros'); INSERT INTO `rors` VALUES (74697, 'https://ror.org/05kgk6p34', 'en', 1, 'https://ror.org/05kgk6p34 British Beet Research Organisation'), (74698, 'https://ror.org/05kjkha92', 'en', 1, 'https://ror.org/05kjkha92 University Professional and Continuing Education Association'), (74699, 'https://ror.org/05kjqse22', 'no_lang_code', 1, 'https://ror.org/05kjqse22 Deep Ocean Engineering (United States)'), (74700, 'https://ror.org/05kjsed78', 'en', 1, 'https://ror.org/05kjsed78 International Press Center Résidence Palace - Internationales Pressezentrum'), (74701, 'https://ror.org/05kk1wy06', 'no_lang_code', 1, 'https://ror.org/05kk1wy06 Greenerwave (France)'), (74702, 'https://ror.org/05kks9d30', 'en', 1, 'https://ror.org/05kks9d30 Interdisciplinary Centre for Storage, Transformation and Upgrading of Thermal Energy'), (74703, 'https://ror.org/05km3cw17', 'no_lang_code', 1, 'https://ror.org/05km3cw17 Prindit (Sweden)'), (74704, 'https://ror.org/05kmqx952', 'no_lang_code', 1, 'https://ror.org/05kmqx952 Mettler-Toledo (United Kingdom)'), (74705, 'https://ror.org/05kmtkm08', 'en', 1, 'https://ror.org/05kmtkm08 Community Life Project'), (74706, 'https://ror.org/05kn8zy50', 'en', 1, 'https://ror.org/05kn8zy50 Socio-Economic Rights Institute of South Africa'), (74707, 'https://ror.org/05kngp096', 'no_lang_code', 1, 'https://ror.org/05kngp096 Innerco (Poland)'), (74708, 'https://ror.org/05kpepv05', 'en', 1, 'https://ror.org/05kpepv05 The Vega Science Trust'), (74709, 'https://ror.org/05kpzb522', 'no_lang_code', 1, 'https://ror.org/05kpzb522 InVivo Analytics (United States)'), (74710, 'https://ror.org/05kq90346', 'no_lang_code', 1, 'https://ror.org/05kq90346 Oberon (United States)'), (74711, 'https://ror.org/05ks9jt06', 'en', 1, 'https://ror.org/05ks9jt06 Institute for Studies of Society, Economy and Environment Viện nghiên cứu Xã hội, Kinh tế và Môi trường'), (74712, 'https://ror.org/05ksq6x45', 'en', 1, 'https://ror.org/05ksq6x45 American Society of Crime Laboratory Directors'), (74713, 'https://ror.org/05kt1vc49', 'en', 1, 'https://ror.org/05kt1vc49 Eric Liddell Centre'), (74714, 'https://ror.org/05kykkq24', 'no_lang_code', 1, 'https://ror.org/05kykkq24 Sensatech Designs (United Kingdom)'), (74715, 'https://ror.org/05kz04g58', 'en', 1, 'https://ror.org/05kz04g58 Spacelink Learning Foundation'), (74716, 'https://ror.org/05m1f6211', 'no_lang_code', 1, 'https://ror.org/05m1f6211 3DReid (United Kingdom)'), (74717, 'https://ror.org/05m1yqp60', 'it', 1, 'https://ror.org/05m1yqp60 Istituto di Biometeorologia'), (74718, 'https://ror.org/05m2dxd88', 'en', 1, 'https://ror.org/05m2dxd88 Peruvian Association of People Affected by Tuberculosis'), (74719, 'https://ror.org/05m2t4v49', 'no_lang_code', 1, 'https://ror.org/05m2t4v49 Infinid Technologies (United States)'), (74720, 'https://ror.org/05m2vsm26', 'pt', 1, 'https://ror.org/05m2vsm26 Sociedade Paraense de Defesa dos Direitos Humanos'), (74721, 'https://ror.org/05m5awa65', 'en', 1, 'https://ror.org/05m5awa65 Group of Institutes, Foundations and Enterprises Grupo de Institutos Fundações e Empresas'), (74722, 'https://ror.org/05m7btq67', 'pt', 1, 'https://ror.org/05m7btq67 Associação Brasileira do Papelão Ondulado'), (74723, 'https://ror.org/05m7seh36', 'no_lang_code', 1, 'https://ror.org/05m7seh36 Mician (Germany)'), (74724, 'https://ror.org/05m8k7t58', 'es', 1, 'https://ror.org/05m8k7t58 Instituto de Información Científica y Tecnológica'), (74725, 'https://ror.org/05m905s87', 'en', 1, 'https://ror.org/05m905s87 Islamic Azad University, Masjed Soleyman دانشگاه آزاد اسلامی واحد مسجدسلیمان'), (74726, 'https://ror.org/05m97qg65', 'no_lang_code', 1, 'https://ror.org/05m97qg65 Analog Photonics (United States)'), (74727, 'https://ror.org/05mbp3c63', 'no_lang_code', 1, 'https://ror.org/05mbp3c63 AnatomyWorks (United States)'), (74728, 'https://ror.org/05mc59k43', 'no_lang_code', 1, 'https://ror.org/05mc59k43 Health Decision Technologies (United States)'), (74729, 'https://ror.org/05md2f937', 'en', 1, 'https://ror.org/05md2f937 Consumer VOICE'), (74730, 'https://ror.org/05mdmem94', 'en', 1, 'https://ror.org/05mdmem94 Newpark Music Centre'), (74731, 'https://ror.org/05mef5z43', 'en', 1, 'https://ror.org/05mef5z43 Disabled Living Foundation'), (74732, 'https://ror.org/05mf35n34', 'es', 1, 'https://ror.org/05mf35n34 Hospital Base'), (74733, 'https://ror.org/05mgh6q46', 'en', 1, 'https://ror.org/05mgh6q46 MB Recycling'), (74734, 'https://ror.org/05mk38d83', 'no_lang_code', 1, 'https://ror.org/05mk38d83 Codemill (Sweden)'), (74735, 'https://ror.org/05mk46e13', 'de', 1, 'https://ror.org/05mk46e13 Institute for Fermentation and Biotechnology, Berlin Versuchs- und Lehranstalt für Brauerei in Berlin'), (74736, 'https://ror.org/05mke6x94', 'en', 1, 'https://ror.org/05mke6x94 Håll Sverige Rent Keep Sweden Tidy Foundation'), (74737, 'https://ror.org/05mp3ea66', 'en', 1, 'https://ror.org/05mp3ea66 Sanctuary Housing'), (74738, 'https://ror.org/05mq2av33', 'no_lang_code', 1, 'https://ror.org/05mq2av33 Dura Biotech (United States)'), (74739, 'https://ror.org/05mrwj523', 'no_lang_code', 1, 'https://ror.org/05mrwj523 Innovation Skåne (Sweden)'), (74740, 'https://ror.org/05mryp106', 'no_lang_code', 1, 'https://ror.org/05mryp106 Sixera Pharma (Sweden)'), (74741, 'https://ror.org/05mt2aq13', 'no_lang_code', 1, 'https://ror.org/05mt2aq13 Mimsi Materials (Sweden)'), (74742, 'https://ror.org/05mt98789', 'no_lang_code', 1, 'https://ror.org/05mt98789 iStar'), (74743, 'https://ror.org/05mw0ee88', 'en', 1, 'https://ror.org/05mw0ee88 Instytut im. Jerzego Grotowskiego The Grotowski Institute'), (74744, 'https://ror.org/05mx2as72', 'es', 1, 'https://ror.org/05mx2as72 Comisión Mexicana de Defensa y Promoción de los Derechos Humanos'), (74745, 'https://ror.org/05n134d59', 'no_lang_code', 1, 'https://ror.org/05n134d59 Halcyon Biomedical (United States)'), (74746, 'https://ror.org/05n1eva55', 'no_lang_code', 1, 'https://ror.org/05n1eva55 SwissScientific Technologies (Switzerland)'), (74747, 'https://ror.org/05n7d5e22', 'en', 1, 'https://ror.org/05n7d5e22 Centre for Innovation Policy and Governance'), (74748, 'https://ror.org/05n7m1k33', 'en', 1, 'https://ror.org/05n7m1k33 Loutky v Nemocnici Puppets in Hospital'), (74749, 'https://ror.org/05n8k2j59', 'en', 1, 'https://ror.org/05n8k2j59 Good Things Foundation'), (74750, 'https://ror.org/05nawz538', 'en', 1, 'https://ror.org/05nawz538 Conect Association'), (74751, 'https://ror.org/05nb6mm11', 'en', 1, 'https://ror.org/05nb6mm11 Adaptive Cognitive Systems'), (74752, 'https://ror.org/05nf32d37', 'en', 1, 'https://ror.org/05nf32d37 Anglo-Norman Text Society'), (74753, 'https://ror.org/05ngeka81', 'no_lang_code', 1, 'https://ror.org/05ngeka81 Alcis Sports (India)'), (74754, 'https://ror.org/05nggxc52', 'en', 1, 'https://ror.org/05nggxc52 Marin Endocrine Care and Research'), (74755, 'https://ror.org/05nhhvb42', 'en', 1, 'https://ror.org/05nhhvb42 Charles River Medical Associates'), (74756, 'https://ror.org/05nk7f239', 'en', 1, 'https://ror.org/05nk7f239 Save the Rhino Trust'), (74757, 'https://ror.org/05nr25f03', 'no_lang_code', 1, 'https://ror.org/05nr25f03 Translational Research Platform for Veterinary Biologicals (India)'), (74758, 'https://ror.org/05nr7xa08', 'en', 1, 'https://ror.org/05nr7xa08 Institute of Polymers, Composites and Biomaterials Istituto dei Polimeri, Compositi e Biomateriali'), (74759, 'https://ror.org/05nrj5p09', 'en', 1, 'https://ror.org/05nrj5p09 The Acronym Institute for Disarmament Diplomacy'), (74760, 'https://ror.org/05nrxp832', 'en', 1, 'https://ror.org/05nrxp832 National Economic and Social Rights Initiative'), (74761, 'https://ror.org/05ntjbh41', 'en', 1, 'https://ror.org/05ntjbh41 The Association of Boarding Schools'), (74762, 'https://ror.org/05ntky919', 'no_lang_code', 1, 'https://ror.org/05ntky919 MD Informatics (United States)'), (74763, 'https://ror.org/05nv0w557', 'en', 1, 'https://ror.org/05nv0w557 Terrence Higgins Trust'), (74764, 'https://ror.org/05nwaqa23', 'no_lang_code', 1, 'https://ror.org/05nwaqa23 Celestica (Brasil)'), (74765, 'https://ror.org/05nzf7q96', 'en', 1, 'https://ror.org/05nzf7q96 Institute of Biomembranes, Bioenergetics and Molecular Biotechnologies Istituto di Biomembrane, Bioenergetica e Biotecnologie Molecolari'), (74766, 'https://ror.org/05nzhg723', 'no_lang_code', 1, 'https://ror.org/05nzhg723 Merx (Poland)'), (74767, 'https://ror.org/05p0tmv18', 'en', 1, 'https://ror.org/05p0tmv18 Nubuke Foundation'), (74768, 'https://ror.org/05p23jt70', 'no_lang_code', 1, 'https://ror.org/05p23jt70 Endovab Endovascular Development (Sweden)'), (74769, 'https://ror.org/05p29gb14', 'en', 1, 'https://ror.org/05p29gb14 Jakarta Theological Seminary Sekolah Tinggi Filsafat Teologi Jakarta'), (74770, 'https://ror.org/05p2t9n36', 'en', 1, 'https://ror.org/05p2t9n36 Anshan Hospital 鞍山市铁西医院'), (74771, 'https://ror.org/05p4qy229', 'en', 1, 'https://ror.org/05p4qy229 Shahid Beheshti Teacher Training College دانشگاه تربیت معلم شهید بهشتی مشهد'), (74772, 'https://ror.org/05p5d8426', 'en', 1, 'https://ror.org/05p5d8426 Centre for Performance Research'), (74773, 'https://ror.org/05p6vxc40', 'no_lang_code', 1, 'https://ror.org/05p6vxc40 Amcom Communications (United States)'), (74774, 'https://ror.org/05p8b7e93', 'no_lang_code', 1, 'https://ror.org/05p8b7e93 Frontier Aerospace Corporation (United States)'), (74775, 'https://ror.org/05p8jxd51', 'en', 1, 'https://ror.org/05p8jxd51 Institut Hak Asasi Perempuan Institute for Women Human Rights'), (74776, 'https://ror.org/05pbk0158', 'en', 1, 'https://ror.org/05pbk0158 Taiwan Shilin District Prosecutors Office 臺灣士林地方檢察署'), (74777, 'https://ror.org/05pd4an24', 'en', 1, 'https://ror.org/05pd4an24 Skylight'), (74778, 'https://ror.org/05pdy0618', 'no_lang_code', 1, 'https://ror.org/05pdy0618 Generation 2 Materials Technology (United States)'), (74779, 'https://ror.org/05pef1484', 'de', 1, 'https://ror.org/05pef1484 Klinikum Links der Weser'), (74780, 'https://ror.org/05pgctg85', 'no_lang_code', 1, 'https://ror.org/05pgctg85 Fiji Museum'), (74781, 'https://ror.org/05pgvxf86', 'en', 1, 'https://ror.org/05pgvxf86 Innovation Centre for Sensor and Imaging Systems'), (74782, 'https://ror.org/05pk1g903', 'no_lang_code', 1, 'https://ror.org/05pk1g903 Luraco Technologies (United States)'), (74783, 'https://ror.org/05pms6260', 'en', 1, 'https://ror.org/05pms6260 Development Trusts Association Scotland'), (74784, 'https://ror.org/05pp5m809', 'en', 1, 'https://ror.org/05pp5m809 Southern African Social Policy Research Institute'), (74785, 'https://ror.org/05pq20j14', 'en', 1, 'https://ror.org/05pq20j14 National Museums of World Culture Världskulturmuseerna'), (74786, 'https://ror.org/05pqevf46', 'en', 1, 'https://ror.org/05pqevf46 Reconnecting America'), (74787, 'https://ror.org/05prp0x93', 'no_lang_code', 1, 'https://ror.org/05prp0x93 Viscovery Software (Austria)'), (74788, 'https://ror.org/05pt1n025', 'no_lang_code', 1, 'https://ror.org/05pt1n025 Biosensing Instrument (United States)'), (74789, 'https://ror.org/05pvcyy59', 'en', 1, 'https://ror.org/05pvcyy59 Aarhus Business College Aarhus Handelsforenings Aftenskole'), (74790, 'https://ror.org/05pvfsz50', 'en', 1, 'https://ror.org/05pvfsz50 Rochester Community and Technical College'), (74791, 'https://ror.org/05pwnep21', 'no_lang_code', 1, 'https://ror.org/05pwnep21 Hytton Technologies (Sweden)'), (74792, 'https://ror.org/05px4qj37', 'en', 1, 'https://ror.org/05px4qj37 Measures for Justice'), (74793, 'https://ror.org/05pxqvv40', 'no_lang_code', 1, 'https://ror.org/05pxqvv40 Altmetric (United Kingdom)'), (74794, 'https://ror.org/05pyyqe62', 'no_lang_code', 1, 'https://ror.org/05pyyqe62 Voice of America (United States)'), (74795, 'https://ror.org/05pzd7w96', 'en', 1, 'https://ror.org/05pzd7w96 Asiaq Greenland Survey'), (74796, 'https://ror.org/05pzhrr59', 'no_lang_code', 1, 'https://ror.org/05pzhrr59 Light Curable Coatings (United States)'), (74797, 'https://ror.org/05q0txz94', 'es', 1, 'https://ror.org/05q0txz94 Jardín Etnobotánico de Oaxaca'), (74798, 'https://ror.org/05q4wvm17', 'no_lang_code', 1, 'https://ror.org/05q4wvm17 Porslinsfabriken (Sweden)'), (74799, 'https://ror.org/05q52xn14', 'es', 1, 'https://ror.org/05q52xn14 Instituto de Medicina y Biología Experimental de Cuyo'), (74800, 'https://ror.org/05q5sqy38', 'en', 1, 'https://ror.org/05q5sqy38 Slovak National Gallery Slovenská národná galéria'), (74801, 'https://ror.org/05q655z13', 'en', 1, 'https://ror.org/05q655z13 Omaha Community Foundation'), (74802, 'https://ror.org/05q6snw96', 'en', 1, 'https://ror.org/05q6snw96 Council for Wales of Voluntary Youth Services'), (74803, 'https://ror.org/05q6xw994', 'en', 1, 'https://ror.org/05q6xw994 International Research School of Planetary Sciences'), (74804, 'https://ror.org/05q7g3j68', 'no_lang_code', 1, 'https://ror.org/05q7g3j68 CohesionForce (United States)'), (74805, 'https://ror.org/05q846d47', 'en', 1, 'https://ror.org/05q846d47 Kyoto Costume Institute 京都服飾文化研究財団'), (74806, 'https://ror.org/05q86a639', 'no_lang_code', 1, 'https://ror.org/05q86a639 Levings & Associates (United States)'), (74807, 'https://ror.org/05q86pe27', 'en', 1, 'https://ror.org/05q86pe27 Institute of Seismology Сейсмология институты'), (74808, 'https://ror.org/05q88x431', 'no_lang_code', 1, 'https://ror.org/05q88x431 BnearIT (Sweden)'), (74809, 'https://ror.org/05q8qmk69', 'pl', 1, 'https://ror.org/05q8qmk69 Stowarzyszenie Radość Życia'), (74810, 'https://ror.org/05q8qsw47', 'es', 1, 'https://ror.org/05q8qsw47 Católicas por el Derecho a Decidir'), (74811, 'https://ror.org/05qbgtq98', 'no_lang_code', 1, 'https://ror.org/05qbgtq98 Minc (Sweden)'), (74812, 'https://ror.org/05qd6x152', 'no_lang_code', 1, 'https://ror.org/05qd6x152 Cascade Drives (Sweden)'), (74813, 'https://ror.org/05qdccy43', 'en', 1, 'https://ror.org/05qdccy43 Lexington Institute'), (74814, 'https://ror.org/05qect977', 'no_lang_code', 1, 'https://ror.org/05qect977 Infibra (Brazil)'), (74815, 'https://ror.org/05qgb2253', 'no_lang_code', 1, 'https://ror.org/05qgb2253 ABT Molecular Imaging (United States)'), (74816, 'https://ror.org/05qgprp76', 'no_lang_code', 1, 'https://ror.org/05qgprp76 Enterprise Products (United States)'), (74817, 'https://ror.org/05qgvw694', 'en', 1, 'https://ror.org/05qgvw694 South Western Housing Society'), (74818, 'https://ror.org/05qgz8802', 'no_lang_code', 1, 'https://ror.org/05qgz8802 Ballas, Pelecanos & Associates (Greece)'), (74819, 'https://ror.org/05qjcpt44', 'no_lang_code', 1, 'https://ror.org/05qjcpt44 Quantemplate (United Kingdom)'), (74820, 'https://ror.org/05qjzj338', 'pl', 1, 'https://ror.org/05qjzj338 Lambda Warszawa, Stowarzyszenie Lambda Warszawa'), (74821, 'https://ror.org/05qnpc206', 'en', 1, 'https://ror.org/05qnpc206 Museums Northumberland'), (74822, 'https://ror.org/05qr1wq31', 'en', 1, 'https://ror.org/05qr1wq31 Ministry of Industries and Production'), (74823, 'https://ror.org/05qs8zv09', 'en', 1, 'https://ror.org/05qs8zv09 Centre for Chinese Contemporary Art'), (74824, 'https://ror.org/05qt0kq98', 'no_lang_code', 1, 'https://ror.org/05qt0kq98 BH Sensors (United States)'), (74825, 'https://ror.org/05qt0wt98', 'en', 1, 'https://ror.org/05qt0wt98 Global Americans'), (74826, 'https://ror.org/05qwbfs63', 'en', 1, 'https://ror.org/05qwbfs63 Iowa Diabetes and Endocrinology Research Center'), (74827, 'https://ror.org/05qwhr533', 'en', 1, 'https://ror.org/05qwhr533 International Center for Transitional Justice'), (74828, 'https://ror.org/05qx2fb65', 'no_lang_code', 1, 'https://ror.org/05qx2fb65 SDS Optic (Poland)'), (74829, 'https://ror.org/05qxvxf91', 'en', 1, 'https://ror.org/05qxvxf91 iHealth'), (74830, 'https://ror.org/05qxwht78', 'en', 1, 'https://ror.org/05qxwht78 Dmitri Hvorostovsky Siberian State Institute of Arts Сибирский государственный институт искусств имени Дмитрия Хворостовского'), (74831, 'https://ror.org/05qywhx26', 'en', 1, 'https://ror.org/05qywhx26 Ahmed Iqbal Ullah Education Trust'), (74832, 'https://ror.org/05qzrmp73', 'no_lang_code', 1, 'https://ror.org/05qzrmp73 Instrumental Polymer Technologies (United States)'), (74833, 'https://ror.org/05r04kd95', 'no_lang_code', 1, 'https://ror.org/05r04kd95 Dovzhenko Film Studios Національна кіностудія художніх фільмів імені О. Довженка'), (74834, 'https://ror.org/05r0zxs60', 'no_lang_code', 1, 'https://ror.org/05r0zxs60 Qwed (Poland)'), (74835, 'https://ror.org/05r288y75', 'en', 1, 'https://ror.org/05r288y75 Magic Lantern Movies'), (74836, 'https://ror.org/05r2e4v78', 'de', 1, 'https://ror.org/05r2e4v78 BDH-Klinik Elzach'), (74837, 'https://ror.org/05r33p655', 'en', 1, 'https://ror.org/05r33p655 Solas Festival'), (74838, 'https://ror.org/05r592159', 'en', 1, 'https://ror.org/05r592159 The Ectopic Pregnancy Trust'), (74839, 'https://ror.org/05r5t3g74', 'en', 1, 'https://ror.org/05r5t3g74 China National Silk Museum 中国丝绸博物馆'), (74840, 'https://ror.org/05r66v627', 'en', 1, 'https://ror.org/05r66v627 The AD Centre'), (74841, 'https://ror.org/05r8kh365', 'en', 1, 'https://ror.org/05r8kh365 Helen Bamber Foundation'), (74842, 'https://ror.org/05r957b25', 'en', 1, 'https://ror.org/05r957b25 Citizenship, Studies, Research, Information and Action'), (74843, 'https://ror.org/05r9kh419', 'en', 1, 'https://ror.org/05r9kh419 South Devon Prime Beef'), (74844, 'https://ror.org/05r9ndf46', 'en', 1, 'https://ror.org/05r9ndf46 Al Sadu Society بيت السدو'), (74845, 'https://ror.org/05rahmh70', 'en', 1, 'https://ror.org/05rahmh70 United Kingdom Council for Psychotherapy'), (74846, 'https://ror.org/05rczqt20', 'no_lang_code', 1, 'https://ror.org/05rczqt20 InertialWave (United States)'), (74847, 'https://ror.org/05re8w736', 'no_lang_code', 1, 'https://ror.org/05re8w736 MEMStim (United States)'), (74848, 'https://ror.org/05rf93e76', 'en', 1, 'https://ror.org/05rf93e76 Voluntary Health Scotland'), (74849, 'https://ror.org/05rg4er48', 'no_lang_code', 1, 'https://ror.org/05rg4er48 Sullivan and Worcester (United States)'), (74850, 'https://ror.org/05rjvjy05', 'en', 1, 'https://ror.org/05rjvjy05 Study Center for National Reconciliation Študijski center za narodno spravo'), (74851, 'https://ror.org/05rkvrx68', 'en', 1, 'https://ror.org/05rkvrx68 Centre Hospitalier Universitaire of Butare University Teaching Hospital of Butare'), (74852, 'https://ror.org/05rm7p925', 'en', 1, 'https://ror.org/05rm7p925 Raphael Samuel History Centre'), (74853, 'https://ror.org/05rq0zb63', 'no_lang_code', 1, 'https://ror.org/05rq0zb63 iK9'), (74854, 'https://ror.org/05rs58729', 'no_lang_code', 1, 'https://ror.org/05rs58729 Elbit Systems (United States)'), (74855, 'https://ror.org/05rs7mx39', 'en', 1, 'https://ror.org/05rs7mx39 Richmond School and Sixth Form College'), (74856, 'https://ror.org/05rsmmq85', 'no_lang_code', 1, 'https://ror.org/05rsmmq85 Fuss & O’Neill (United States)'), (74857, 'https://ror.org/05rtd6p98', 'de', 1, 'https://ror.org/05rtd6p98 Gespag'), (74858, 'https://ror.org/05rx18c05', 'no_lang_code', 1, 'https://ror.org/05rx18c05 Aster Medcity'), (74859, 'https://ror.org/05rxmkq09', 'es', 1, 'https://ror.org/05rxmkq09 Fundación Ciencias Exactas y Naturales'), (74860, 'https://ror.org/05rzjz037', 'en', 1, 'https://ror.org/05rzjz037 Combine Resource Institution'), (74861, 'https://ror.org/05s04a010', 'en', 1, 'https://ror.org/05s04a010 Centre for Invasive Species Solution'), (74862, 'https://ror.org/05s075877', 'en', 1, 'https://ror.org/05s075877 Movement for Freedom Движение «За Свободу»'), (74863, 'https://ror.org/05s0d1r23', 'no_lang_code', 1, 'https://ror.org/05s0d1r23 Zakłady Mechaniczne Tarnów (Poland)'), (74864, 'https://ror.org/05s192022', 'en', 1, 'https://ror.org/05s192022 International Studio & Curatorial Program'), (74865, 'https://ror.org/05s28rs88', 'no_lang_code', 1, 'https://ror.org/05s28rs88 Modertrans (Poland)'), (74866, 'https://ror.org/05s2yxq27', 'en', 1, 'https://ror.org/05s2yxq27 Funder'), (74867, 'https://ror.org/05s3f7036', 'en', 1, 'https://ror.org/05s3f7036 Policy Matters Ohio'), (74868, 'https://ror.org/05s58ph78', 'no_lang_code', 1, 'https://ror.org/05s58ph78 Niki (Greece)'), (74869, 'https://ror.org/05s6aww72', 'no_lang_code', 1, 'https://ror.org/05s6aww72 Zoetis (United Kingdom)'), (74870, 'https://ror.org/05s8kep84', 'en', 1, 'https://ror.org/05s8kep84 Northern Ireland Civil Service Státseirbhís Thuaisceart Éireann'), (74871, 'https://ror.org/05s9kz512', 'en', 1, 'https://ror.org/05s9kz512 Chawton House'), (74872, 'https://ror.org/05s9qrg03', 'en', 1, 'https://ror.org/05s9qrg03 Equal Education'), (74873, 'https://ror.org/05sb8nh13', 'en', 1, 'https://ror.org/05sb8nh13 The Military Intelligence Museum'), (74874, 'https://ror.org/05sbd5m51', 'no_lang_code', 1, 'https://ror.org/05sbd5m51 Saintpro (Sweden)'), (74875, 'https://ror.org/05sbkz135', 'no_lang_code', 1, 'https://ror.org/05sbkz135 LucidEnergy (United States)'), (74876, 'https://ror.org/05sce7z09', 'en', 1, 'https://ror.org/05sce7z09 South Asian Americans Leading Together'), (74877, 'https://ror.org/05sdqca31', 'en', 1, 'https://ror.org/05sdqca31 NHS Employers'), (74878, 'https://ror.org/05sdt3y58', 'en', 1, 'https://ror.org/05sdt3y58 The Cabell Brand Center'), (74879, 'https://ror.org/05sevfb19', 'en', 1, 'https://ror.org/05sevfb19 Museo Nazionale Preistorico Etnografico Luigi Pigorini Pigorini National Museum of Prehistory and Ethnography'), (74880, 'https://ror.org/05shw9n80', 'en', 1, 'https://ror.org/05shw9n80 Mitchell Arts Centre'), (74881, 'https://ror.org/05sjrzv10', 'en', 1, 'https://ror.org/05sjrzv10 National Deaf Children''s Society'), (74882, 'https://ror.org/05smh3q72', 'no_lang_code', 1, 'https://ror.org/05smh3q72 JP Group (Brazil)'), (74883, 'https://ror.org/05snn5v50', 'en', 1, 'https://ror.org/05snn5v50 National Institute for Defense Studies 防衛研究所'), (74884, 'https://ror.org/05snnkz52', 'no_lang_code', 1, 'https://ror.org/05snnkz52 Koning (United States)'), (74885, 'https://ror.org/05sp7aa03', 'no_lang_code', 1, 'https://ror.org/05sp7aa03 US-China Strong'), (74886, 'https://ror.org/05ss64h09', 'en', 1, 'https://ror.org/05ss64h09 Green Cross International'), (74887, 'https://ror.org/05sswkg52', 'en', 1, 'https://ror.org/05sswkg52 Agricultural Genetics Institute Viện Di truyền Nông nghiệp'), (74888, 'https://ror.org/05svg6v21', 'en', 1, 'https://ror.org/05svg6v21 Royal Yachting Association'), (74889, 'https://ror.org/05szkt337', 'en', 1, 'https://ror.org/05szkt337 Electric Infrastructure Security Council'), (74890, 'https://ror.org/05t02jp64', 'en', 1, 'https://ror.org/05t02jp64 National Housing Trust'), (74891, 'https://ror.org/05t3tvt21', 'en', 1, 'https://ror.org/05t3tvt21 Asociación MeetShareDance MeetShareDance Association'), (74892, 'https://ror.org/05t4k0m36', 'no_lang_code', 1, 'https://ror.org/05t4k0m36 SHL Group (Taiwan)'), (74893, 'https://ror.org/05t5az281', 'en', 1, 'https://ror.org/05t5az281 Mothering Justice'), (74894, 'https://ror.org/05t61hc94', 'en', 1, 'https://ror.org/05t61hc94 The Center for Victims of Torture'), (74895, 'https://ror.org/05t6aan57', 'no_lang_code', 1, 'https://ror.org/05t6aan57 Stalprodukt (Poland)'), (74896, 'https://ror.org/05t7k1t84', 'en', 1, 'https://ror.org/05t7k1t84 Community Media Association'), (74897, 'https://ror.org/05t90a350', 'en', 1, 'https://ror.org/05t90a350 Fab Foundation'), (74898, 'https://ror.org/05t952114', 'en', 1, 'https://ror.org/05t952114 Sensory Support Service'), (74899, 'https://ror.org/05t9ac381', 'en', 1, 'https://ror.org/05t9ac381 MuseumNext'), (74900, 'https://ror.org/05tay5389', 'no_lang_code', 1, 'https://ror.org/05tay5389 Cirrus Aircraft (United States)'), (74901, 'https://ror.org/05tbdj203', 'en', 1, 'https://ror.org/05tbdj203 Polistovsky National Nature Reserve Полистовский заповедник'), (74902, 'https://ror.org/05tbx9d85', 'no_lang_code', 1, 'https://ror.org/05tbx9d85 Wijeya Newspapers (Sri Lanka)'), (74903, 'https://ror.org/05tc5ha67', 'en', 1, 'https://ror.org/05tc5ha67 EARN'), (74904, 'https://ror.org/05tcphk02', 'en', 1, 'https://ror.org/05tcphk02 British Institute of Facilities Management'), (74905, 'https://ror.org/05tcv8k56', 'en', 1, 'https://ror.org/05tcv8k56 California Institute for Behavioral Health Solutions'), (74906, 'https://ror.org/05tcvhs47', 'no_lang_code', 1, 'https://ror.org/05tcvhs47 Microwave Products and Technology (United States)'), (74907, 'https://ror.org/05tcyv616', 'es', 1, 'https://ror.org/05tcyv616 Instituto Superior Tecnológico de Artes del Ecuador'), (74908, 'https://ror.org/05td67m16', 'no_lang_code', 1, 'https://ror.org/05td67m16 Fluid Synchrony (United States)'), (74909, 'https://ror.org/05tekqt96', 'en', 1, 'https://ror.org/05tekqt96 National Laboratory for Superconductivity 超导国家重点实验室'), (74910, 'https://ror.org/05tf4ye04', 'no_lang_code', 1, 'https://ror.org/05tf4ye04 Laipac Technology (Canada)'), (74911, 'https://ror.org/05thm6q88', 'no_lang_code', 1, 'https://ror.org/05thm6q88 IBM (Brazil)'), (74912, 'https://ror.org/05tje4e72', 'en', 1, 'https://ror.org/05tje4e72 Solidarity and Action Against the HIV Infection in India'), (74913, 'https://ror.org/05tnmhm33', 'en', 1, 'https://ror.org/05tnmhm33 Employment Agency'), (74914, 'https://ror.org/05tp36v93', 'en', 1, 'https://ror.org/05tp36v93 Advanced Center for Water Resources Development and Management'), (74915, 'https://ror.org/05tp3m188', 'en', 1, 'https://ror.org/05tp3m188 Bandaranaike Centre for International Studies'), (74916, 'https://ror.org/05tq87k41', 'en', 1, 'https://ror.org/05tq87k41 Sydney Living Museums'), (74917, 'https://ror.org/05ts3jd18', 'no_lang_code', 1, 'https://ror.org/05ts3jd18 Lumme Labs (United States)'), (74918, 'https://ror.org/05ts5ga89', 'no_lang_code', 1, 'https://ror.org/05ts5ga89 Anton Paar (United States)'), (74919, 'https://ror.org/05ts8kw37', 'pt', 1, 'https://ror.org/05ts8kw37 Instituto de Terras do Pará'), (74920, 'https://ror.org/05ttdrn83', 'en', 1, 'https://ror.org/05ttdrn83 Den Haag Centrum voor Strategische Studies The Hague Centre for Strategic Studies'), (74921, 'https://ror.org/05v3ktf05', 'en', 1, 'https://ror.org/05v3ktf05'), (74922, 'https://ror.org/05v75d484', 'no_lang_code', 1, 'https://ror.org/05v75d484 Angus Bela Vista Pecuária Central Bela Vista (Brazil)'), (74923, 'https://ror.org/05v99m436', 'en', 1, 'https://ror.org/05v99m436 People''s History Museum'), (74924, 'https://ror.org/05v9zxy89', 'en', 1, 'https://ror.org/05v9zxy89 Georgia Stand-Up'), (74925, 'https://ror.org/05va3v984', 'no_lang_code', 1, 'https://ror.org/05va3v984 Expedition Technology (United States)'), (74926, 'https://ror.org/05vcmd458', 'en', 1, 'https://ror.org/05vcmd458 National Childbirth Trust'), (74927, 'https://ror.org/05vd07545', 'no_lang_code', 1, 'https://ror.org/05vd07545 Filene'), (74928, 'https://ror.org/05vfv3b25', 'no_lang_code', 1, 'https://ror.org/05vfv3b25 ArcelorMittal (Brazil)'), (74929, 'https://ror.org/05vg9cw43', 'fr', 1, 'https://ror.org/05vg9cw43 Laboratoire de Géologie de l’École Normale Supérieure'), (74930, 'https://ror.org/05vh42w24', 'no_lang_code', 1, 'https://ror.org/05vh42w24 Gaia Herbs (United States)'), (74931, 'https://ror.org/05vhsk894', 'no_lang_code', 1, 'https://ror.org/05vhsk894 ChromaTan'), (74932, 'https://ror.org/05vmv7z45', 'en', 1, 'https://ror.org/05vmv7z45 Arkansas Insurance Department'), (74933, 'https://ror.org/05vmzg372', 'no_lang_code', 1, 'https://ror.org/05vmzg372 Villares Metals (Brasil)'), (74934, 'https://ror.org/05vng4k71', 'en', 1, 'https://ror.org/05vng4k71 Kansas Office of the Governor'), (74935, 'https://ror.org/05vpe6993', 'en', 1, 'https://ror.org/05vpe6993 Museum of East Anglian Life'), (74936, 'https://ror.org/05vr51226', 'en', 1, 'https://ror.org/05vr51226 Research and Information Centre Memorial Научно-информационный центр Мемориал'), (74937, 'https://ror.org/05vvtz217', 'en', 1, 'https://ror.org/05vvtz217 Centre for Women''s Development Studies'), (74938, 'https://ror.org/05vz90k92', 'fr', 1, 'https://ror.org/05vz90k92 Bibliothèque d''Agglomération du Pays de Saint-Omer'), (74939, 'https://ror.org/05w0mz683', 'no_lang_code', 1, 'https://ror.org/05w0mz683 Juniper Industries (United States)'), (74940, 'https://ror.org/05w0zaf96', 'en', 1, 'https://ror.org/05w0zaf96 International Hydropower Association'), (74941, 'https://ror.org/05w58gm09', 'no_lang_code', 1, 'https://ror.org/05w58gm09 Fifth Gait Technologies (United States)'), (74942, 'https://ror.org/05w5q8v72', 'no_lang_code', 1, 'https://ror.org/05w5q8v72 Create (Sweden)'), (74943, 'https://ror.org/05w603h94', 'pl', 1, 'https://ror.org/05w603h94 Instytut Badań Rynku, Konsumpcji i Koniunktur'), (74944, 'https://ror.org/05w78km23', 'pt', 1, 'https://ror.org/05w78km23 Instituto Brasileiro de Análises Sociais e Econômicas'), (74945, 'https://ror.org/05w7dft64', 'en', 1, 'https://ror.org/05w7dft64 National Institute of Cancer Prevention and Research'), (74946, 'https://ror.org/05w8pph52', 'en', 1, 'https://ror.org/05w8pph52 Ministry of Education'), (74947, 'https://ror.org/05waabg59', 'en', 1, 'https://ror.org/05waabg59 The Cancer Treatment Center'), (74948, 'https://ror.org/05wbcyx60', 'no_lang_code', 1, 'https://ror.org/05wbcyx60 InnoGenomics (United States)'), (74949, 'https://ror.org/05wetj454', 'no_lang_code', 1, 'https://ror.org/05wetj454 Braskem (Brazil)'), (74950, 'https://ror.org/05wfe5014', 'en', 1, 'https://ror.org/05wfe5014 National Scientific Center for Surgery named after A.N. Syzganov Национальный Научный центр хирургии им. А.Н. Сызганова'), (74951, 'https://ror.org/05wjk9x59', 'no_lang_code', 1, 'https://ror.org/05wjk9x59 General Oceanics (United States)'), (74952, 'https://ror.org/05wm18065', 'en', 1, 'https://ror.org/05wm18065 Kirklees & Calderdale Rape & Sexual Abuse Counselling Centre'), (74953, 'https://ror.org/05wm19m06', 'es', 1, 'https://ror.org/05wm19m06 Instituto CentroAmericano de Estudios para la Democracia Social'), (74954, 'https://ror.org/05wmkk652', 'no_lang_code', 1, 'https://ror.org/05wmkk652 Sioo Wood Protection (Sweden)'), (74955, 'https://ror.org/05wnsd310', 'en', 1, 'https://ror.org/05wnsd310 Chinese National Museum of Ethnology'), (74956, 'https://ror.org/05wqvch42', 'no_lang_code', 1, 'https://ror.org/05wqvch42 Double Bond Pharmaceutical (Sweden)'), (74957, 'https://ror.org/05wvcb507', 'en', 1, 'https://ror.org/05wvcb507 Angered Hospital Angereds Närsjukhus'), (74958, 'https://ror.org/05wvy7982', 'en', 1, 'https://ror.org/05wvy7982 The Campaign Against Living Miserably'), (74959, 'https://ror.org/05ww0cq12', 'en', 1, 'https://ror.org/05ww0cq12 Colorado Public Television'), (74960, 'https://ror.org/05ww0qy02', 'no_lang_code', 1, 'https://ror.org/05ww0qy02 Boehringer Ingelheim (Australia)'), (74961, 'https://ror.org/05wyk6k55', 'en', 1, 'https://ror.org/05wyk6k55 Centre for Higher Education Trust'), (74962, 'https://ror.org/05wyxfm90', 'en', 1, 'https://ror.org/05wyxfm90 National Ready Mixed Concrete Association'), (74963, 'https://ror.org/05x4f0t30', 'en', 1, 'https://ror.org/05x4f0t30 Avvai Village Welfare Society அவ்வை கிராமம் நல்வாழ்வு சங்கத்தால்'), (74964, 'https://ror.org/05x542h52', 'es', 1, 'https://ror.org/05x542h52 Museo Nacional de Etnografía y Folklore'), (74965, 'https://ror.org/05x55kp86', 'no_lang_code', 1, 'https://ror.org/05x55kp86 Forsythe Technologies (United States)'), (74966, 'https://ror.org/05x67xq17', 'no_lang_code', 1, 'https://ror.org/05x67xq17 NeoZeo (Sweden)'), (74967, 'https://ror.org/05x6bj397', 'es', 1, 'https://ror.org/05x6bj397 Instituto Universitario Hospital Italiano'), (74968, 'https://ror.org/05x75zf33', 'en', 1, 'https://ror.org/05x75zf33 Ptoukha Institute for Demography and Social Studies of the National Academy of Sciences of Ukraine Институт демографии и социальных исследований имени М.В. Птухи Национальной академии наук Украины'), (74969, 'https://ror.org/05x7p8987', 'en', 1, 'https://ror.org/05x7p8987 Scottish Collaboration for Public Health Research and Policy'), (74970, 'https://ror.org/05x8gcy84', 'en', 1, 'https://ror.org/05x8gcy84 Washington Office on Latin America'), (74971, 'https://ror.org/05xa78572', 'en', 1, 'https://ror.org/05xa78572 Association of Mental Health Providers'), (74972, 'https://ror.org/05xcdy991', 'en', 1, 'https://ror.org/05xcdy991 Department of Archaeology தொல்பொருளியல் திணைக்களம் පුරාවිද්යා දෙපාර්තමේන්තුව'), (74973, 'https://ror.org/05xemz742', 'en', 1, 'https://ror.org/05xemz742 Government of Mizoram'), (74974, 'https://ror.org/05xg77x32', 'en', 1, 'https://ror.org/05xg77x32 Tyneside Cinema'), (74975, 'https://ror.org/05xh18273', 'en', 1, 'https://ror.org/05xh18273 Media Standards Trust'), (74976, 'https://ror.org/05xht1n33', 'en', 1, 'https://ror.org/05xht1n33 Labor Community Strategy Center'), (74977, 'https://ror.org/05xhx0t16', 'en', 1, 'https://ror.org/05xhx0t16 The Fairbanking Foundation'), (74978, 'https://ror.org/05xjndf54', 'en', 1, 'https://ror.org/05xjndf54 Freedom Festival Arts Trust'), (74979, 'https://ror.org/05xn1q504', 'en', 1, 'https://ror.org/05xn1q504 All Ireland Institute for Hospice and Palliative Care'), (74980, 'https://ror.org/05xnmjv56', 'en', 1, 'https://ror.org/05xnmjv56 York Museums Trust'), (74981, 'https://ror.org/05xr63b94', 'no_lang_code', 1, 'https://ror.org/05xr63b94 Cell Biologics (United States)'), (74982, 'https://ror.org/05xrbcc66', 'en', 1, 'https://ror.org/05xrbcc66 Advanced Science Research Center 先端基礎研究センタ'), (74983, 'https://ror.org/05xrxf972', 'en', 1, 'https://ror.org/05xrxf972 Dumfries Museum and Camera Obscura'), (74984, 'https://ror.org/05xvry795', 'no_lang_code', 1, 'https://ror.org/05xvry795 Lund and Company Invention (United States)'), (74985, 'https://ror.org/05xwf9k95', 'no_lang_code', 1, 'https://ror.org/05xwf9k95 Clearsky Medical Diagnostics (United Kingdom)'), (74986, 'https://ror.org/05xwnpp97', 'no_lang_code', 1, 'https://ror.org/05xwnpp97 Flexicare (United Kingdom)'), (74987, 'https://ror.org/05y05z458', 'en', 1, 'https://ror.org/05y05z458 Welwyn Archaeological Society'), (74988, 'https://ror.org/05y0cez87', 'en', 1, 'https://ror.org/05y0cez87 Riverside'), (74989, 'https://ror.org/05y477617', 'en', 1, 'https://ror.org/05y477617 Comann Eachdraidh Uig'), (74990, 'https://ror.org/05y4aj433', 'no_lang_code', 1, 'https://ror.org/05y4aj433 Radarbolaget (Sweden)'), (74991, 'https://ror.org/05y8p4437', 'en', 1, 'https://ror.org/05y8p4437 Trials Methodology Research Network'), (74992, 'https://ror.org/05yaa8165', 'en', 1, 'https://ror.org/05yaa8165 West Africa Vocational Education'), (74993, 'https://ror.org/05yd64b65', 'en', 1, 'https://ror.org/05yd64b65 High Life Highland'), (74994, 'https://ror.org/05ydvwr43', 'no_lang_code', 1, 'https://ror.org/05ydvwr43 Full Radius Dance (United States)'), (74995, 'https://ror.org/05yj8y167', 'no_lang_code', 1, 'https://ror.org/05yj8y167 Mesh Robotics (United States)'), (74996, 'https://ror.org/05yjmpq86', 'en', 1, 'https://ror.org/05yjmpq86 Royal College of Veterinary Surgeons'), (74997, 'https://ror.org/05yk1x869', 'de', 1, 'https://ror.org/05yk1x869 Bezirkskrankenhaus Augsburg'), (74998, 'https://ror.org/05ykna326', 'no_lang_code', 1, 'https://ror.org/05ykna326 BatAndCat Sound Labs (United States)'), (74999, 'https://ror.org/05ymybb54', 'en', 1, 'https://ror.org/05ymybb54 A Better Balance'), (75000, 'https://ror.org/05yngzb68', 'en', 1, 'https://ror.org/05yngzb68 Penn Associates'), (75001, 'https://ror.org/00005jn19', 'no_lang_code', 1, 'https://ror.org/00005jn19 Global Unichip (Taiwan)'), (75002, 'https://ror.org/0000fr117', 'de', 1, 'https://ror.org/0000fr117 Landesbetrieb Landwirtschaft Hessen'), (75003, 'https://ror.org/0006fww70', 'no_lang_code', 1, 'https://ror.org/0006fww70 Oxford Biotherapeutics (United Kingdom)'), (75004, 'https://ror.org/0007cgk43', 'no_lang_code', 1, 'https://ror.org/0007cgk43 Ansys (Germany)'), (75005, 'https://ror.org/00087rj45', 'en', 1, 'https://ror.org/00087rj45 Sanming Agricultural Science Research Institute 三明市农业科学研究院'), (75006, 'https://ror.org/0008adq18', 'no_lang_code', 1, 'https://ror.org/0008adq18 Gel4Med (United States)'), (75007, 'https://ror.org/0008m0297', 'en', 1, 'https://ror.org/0008m0297 Bank of Lithuania Lietuvos Bankas'), (75008, 'https://ror.org/000ahf130', 'no_lang_code', 1, 'https://ror.org/000ahf130 Hillenbrand (United States)'), (75009, 'https://ror.org/000aqgk72', 'de', 1, 'https://ror.org/000aqgk72 Photonik-Zentrum Kaiserslautern'), (75010, 'https://ror.org/000cf1839', 'en', 1, 'https://ror.org/000cf1839 Bank of Latvia Latvijas Banka'), (75011, 'https://ror.org/000j0ys55', 'no_lang_code', 1, 'https://ror.org/000j0ys55 Grindeks (Latvia)'), (75012, 'https://ror.org/000j37591', 'en', 1, 'https://ror.org/000j37591 British Psychoanalytical Society'), (75013, 'https://ror.org/000k53a93', 'en', 1, 'https://ror.org/000k53a93 Emerald Coast Science Center'), (75014, 'https://ror.org/000mrg216', 'no_lang_code', 1, 'https://ror.org/000mrg216 Industrieverband Feuerverzinken (Germany)'), (75015, 'https://ror.org/000n79883', 'no_lang_code', 1, 'https://ror.org/000n79883 Stresau Laboratory (United States)'), (75016, 'https://ror.org/000n9hp16', 'no_lang_code', 1, 'https://ror.org/000n9hp16 Stress Photonics (United States)'), (75017, 'https://ror.org/000pwjf21', 'no_lang_code', 1, 'https://ror.org/000pwjf21 Documents Workflow Content (Slovakia)'), (75018, 'https://ror.org/000qx7w57', 'en', 1, 'https://ror.org/000qx7w57 Baokang Hospital Affiliated to Tianjin University of Traditional Chinese Medicine 天津中医药大学附属保康医院'), (75019, 'https://ror.org/000wrzy88', 'no_lang_code', 1, 'https://ror.org/000wrzy88 Pharmabridge (United States)'), (75020, 'https://ror.org/000wyyt97', 'no_lang_code', 1, 'https://ror.org/000wyyt97 Theracule (Norway)'), (75021, 'https://ror.org/000z94124', 'no_lang_code', 1, 'https://ror.org/000z94124 Lensar (United States)'), (75022, 'https://ror.org/000zes111', 'no_lang_code', 1, 'https://ror.org/000zes111 Sensopath Technologies (United States)'), (75023, 'https://ror.org/000zgvm20', 'en', 1, 'https://ror.org/000zgvm20 Research Center for Information Technology Innovation, Academia Sinica 中央研究院資訊科技創新研究中心'), (75024, 'https://ror.org/001087p83', 'no_lang_code', 1, 'https://ror.org/001087p83 Phenox (Germany)'), (75025, 'https://ror.org/0010cp777', 'de', 1, 'https://ror.org/0010cp777 Institut für Mittelstandsforschung'), (75026, 'https://ror.org/00124ry56', 'no_lang_code', 1, 'https://ror.org/00124ry56 Institut für Modelle Beruflicher und Sozialer Entwicklung (Germany)'), (75027, 'https://ror.org/001272r51', 'no_lang_code', 1, 'https://ror.org/001272r51 Precision Vision (United States)'), (75028, 'https://ror.org/0012bhf27', 'no_lang_code', 1, 'https://ror.org/0012bhf27 Stuttgarter Straßenbahnen (Germany)'), (75029, 'https://ror.org/0012d5512', 'no_lang_code', 1, 'https://ror.org/0012d5512 SensoDx (United States)'), (75030, 'https://ror.org/0012p6j68', 'en', 1, 'https://ror.org/0012p6j68 National Electronic Information Consortium Национальный электронно-информационный консорциум'), (75031, 'https://ror.org/00130jf21', 'no_lang_code', 1, 'https://ror.org/00130jf21 Elliptika (France)'), (75032, 'https://ror.org/0016by010', 'id', 1, 'https://ror.org/0016by010 Universitas Teknokrat Indonesia'), (75033, 'https://ror.org/0016cbc84', 'no_lang_code', 1, 'https://ror.org/0016cbc84 Northeast Semiconductor (United States)'), (75034, 'https://ror.org/0016m8j28', 'no_lang_code', 1, 'https://ror.org/0016m8j28 Energie Aus Der Mitte (Germany)'), (75035, 'https://ror.org/0017yad31', 'de', 1, 'https://ror.org/0017yad31 DGB Bildungswerk BUND'), (75036, 'https://ror.org/0018afc35', 'no_lang_code', 1, 'https://ror.org/0018afc35 JGC Catalysts and Chemicals (Japan)'), (75037, 'https://ror.org/001agqs13', 'en', 1, 'https://ror.org/001agqs13 Institute of Political Science, Academia Sinica 中央研究院政治學研究所'), (75038, 'https://ror.org/001bdsd09', 'en', 1, 'https://ror.org/001bdsd09 Osaka Kaisei Hospital 大阪回生病院'), (75039, 'https://ror.org/001eahy16', 'no_lang_code', 1, 'https://ror.org/001eahy16 Catalent (Belgium)'), (75040, 'https://ror.org/001ex3n55', 'no_lang_code', 1, 'https://ror.org/001ex3n55 KOB (Germany)'), (75041, 'https://ror.org/001f11244', 'no_lang_code', 1, 'https://ror.org/001f11244 Adivit (Slovakia)'), (75042, 'https://ror.org/001hkv469', 'no_lang_code', 1, 'https://ror.org/001hkv469 Koch Industries (United Kingdom)'), (75043, 'https://ror.org/001kv2y39', 'en', 1, 'https://ror.org/001kv2y39 Technology Innovation Institute معهد الابتكار التكنولوجي'), (75044, 'https://ror.org/001msz730', 'no_lang_code', 1, 'https://ror.org/001msz730 Spectrum Associates (United States)'), (75045, 'https://ror.org/001p6v129', 'de', 1, 'https://ror.org/001p6v129 Institut für Sicherheitstechnik / Schiffssicherheit'), (75046, 'https://ror.org/001pvd496', 'en', 1, 'https://ror.org/001pvd496 Kansai Vocational College of Medicine 関西医療学園専門学校'), (75047, 'https://ror.org/001pxkx91', 'no_lang_code', 1, 'https://ror.org/001pxkx91 Givaudan (Sweden)'), (75048, 'https://ror.org/001q6ph30', 'en', 1, 'https://ror.org/001q6ph30 Barajas Clinic Clínica Barajas'), (75049, 'https://ror.org/001qnfn06', 'en', 1, 'https://ror.org/001qnfn06 Staatliche Lehr- und Versuchsanstalt für Wein- und Obstbau Weinsberg State Education and Research Institute for Viticulture and Pomology Weinsberg'), (75050, 'https://ror.org/001s1be73', 'en', 1, 'https://ror.org/001s1be73 Industrial Development Bureau 經濟部工業局'), (75051, 'https://ror.org/001zmxb62', 'en', 1, 'https://ror.org/001zmxb62 Greenland Ecosystem Monitoring'), (75052, 'https://ror.org/001zxk082', 'en', 1, 'https://ror.org/001zxk082 Centre for Natural Resource Governance'), (75053, 'https://ror.org/0020h0412', 'en', 1, 'https://ror.org/0020h0412 Art Aia - Creatives / In / Residence'), (75054, 'https://ror.org/0021myq38', 'no_lang_code', 1, 'https://ror.org/0021myq38 Eloxx Pharmaceuticals (United States)'), (75055, 'https://ror.org/0023wb355', 'en', 1, 'https://ror.org/0023wb355 Higashitagawa Culture Memorial Hall 東田川文化記念館'), (75056, 'https://ror.org/0024v4x89', 'en', 1, 'https://ror.org/0024v4x89 Anhui Geological Museum'), (75057, 'https://ror.org/0026qcv83', 'no_lang_code', 1, 'https://ror.org/0026qcv83 BeDimensional (Italy)'), (75058, 'https://ror.org/00276db30', 'no_lang_code', 1, 'https://ror.org/00276db30 TechnoSpex (Singapore)'), (75059, 'https://ror.org/00279h066', 'en', 1, 'https://ror.org/00279h066 Rwanda Wildlife Conservation Association'), (75060, 'https://ror.org/0027p4q12', 'no_lang_code', 1, 'https://ror.org/0027p4q12 AIMM Therapeutics (Netherlands)'), (75061, 'https://ror.org/002823j22', 'en', 1, 'https://ror.org/002823j22 International Education Specialist College'), (75062, 'https://ror.org/0028eeh32', 'en', 1, 'https://ror.org/0028eeh32 Electronics and Radar Development Establishment ಎಲೆಕ್ಟ್ರಾನಿಕ್ಸ್ ರೆಡಾರ್ ಡೆವಲಪ್ಮೆಂಟ್ ಎಸ್ಟಾಬ್ಲಿಷ್ಮೆಂಟ್'), (75063, 'https://ror.org/0029pc197', 'en', 1, 'https://ror.org/0029pc197 Institute of Electronic Business'), (75064, 'https://ror.org/002ayyd98', 'en', 1, 'https://ror.org/002ayyd98 Mie Forestry Research Institute 三重県 林業研究所'), (75065, 'https://ror.org/002bpzx43', 'no_lang_code', 1, 'https://ror.org/002bpzx43 Taro Pharmaceuticals (Israel)'), (75066, 'https://ror.org/002g7k102', 'no_lang_code', 1, 'https://ror.org/002g7k102 Dascena (United States)'), (75067, 'https://ror.org/002hn6106', 'no_lang_code', 1, 'https://ror.org/002hn6106 CKM Analytix (United States)'), (75068, 'https://ror.org/002hr7c70', 'no_lang_code', 1, 'https://ror.org/002hr7c70 BGR Energy Systems (India)'), (75069, 'https://ror.org/002j4n989', 'no_lang_code', 1, 'https://ror.org/002j4n989 Owens & Minor (United States)'), (75070, 'https://ror.org/002jmh430', 'de', 1, 'https://ror.org/002jmh430 Institut zur Modernisierung von Wirtschafts- und Beschäftigungsstrukturen'), (75071, 'https://ror.org/002jq3415', 'en', 1, 'https://ror.org/002jq3415 Mercator Research Institute on Global Commons and Climate Change'), (75072, 'https://ror.org/002kcsd03', 'en', 1, 'https://ror.org/002kcsd03 Institute of Manuscripts of Azerbaijan Əlyazmalar İnstitutu'), (75073, 'https://ror.org/002n9qz56', 'en', 1, 'https://ror.org/002n9qz56 European School of Materials'), (75074, 'https://ror.org/002p8js91', 'en', 1, 'https://ror.org/002p8js91 Drugs & Diagnostics for Tropical Diseases'), (75075, 'https://ror.org/002rc3h45', 'no_lang_code', 1, 'https://ror.org/002rc3h45 BioInteractions (United Kingdom)'), (75076, 'https://ror.org/002td9r73', 'no_lang_code', 1, 'https://ror.org/002td9r73 Laboklin (Germany)'), (75077, 'https://ror.org/002vfg852', 'no_lang_code', 1, 'https://ror.org/002vfg852 Ferno (United States)'), (75078, 'https://ror.org/002xr5z77', 'no_lang_code', 1, 'https://ror.org/002xr5z77 SilBiotech (United States)'), (75079, 'https://ror.org/0030sx194', 'no_lang_code', 1, 'https://ror.org/0030sx194 Altus Capital Partners (United States)'), (75080, 'https://ror.org/0032xfd86', 'no_lang_code', 1, 'https://ror.org/0032xfd86 PerceptiMed (United States)'), (75081, 'https://ror.org/00345kx61', 'en', 1, 'https://ror.org/00345kx61 Physical Education and Medicine Research Foundation 身体教育医学研究所'), (75082, 'https://ror.org/0035phc29', 'no_lang_code', 1, 'https://ror.org/0035phc29 Pherin Pharmaceuticals (United States)'), (75083, 'https://ror.org/00375d304', 'en', 1, 'https://ror.org/00375d304 China Education and Research Network 中国教育和科研计算机网网络中心'), (75084, 'https://ror.org/003cqeh33', 'de', 1, 'https://ror.org/003cqeh33 Institut Dr. Flad'), (75085, 'https://ror.org/003e1fb38', 'no_lang_code', 1, 'https://ror.org/003e1fb38 Snow & Avalanche Study Estt सासे अनुसंधान केंद्र'), (75086, 'https://ror.org/003fdpq59', 'no_lang_code', 1, 'https://ror.org/003fdpq59 Micos Engineering (Switzerland)'), (75087, 'https://ror.org/003fdzp71', 'no_lang_code', 1, 'https://ror.org/003fdzp71 Schölly (Germany)'), (75088, 'https://ror.org/003fxr642', 'no_lang_code', 1, 'https://ror.org/003fxr642 Vertiver (India) वेर्तिवर'), (75089, 'https://ror.org/003hq9m95', 'en', 1, 'https://ror.org/003hq9m95 North Cumbria Integrated Care NHS Foundation Trust'), (75090, 'https://ror.org/003mewa18', 'no_lang_code', 1, 'https://ror.org/003mewa18 Linde (Italy)'), (75091, 'https://ror.org/003mm3215', 'es', 1, 'https://ror.org/003mm3215 Mutualista Hospital Evangélico'), (75092, 'https://ror.org/003na7826', 'no_lang_code', 1, 'https://ror.org/003na7826 Takeda (Ireland)'), (75093, 'https://ror.org/003njj705', 'no_lang_code', 1, 'https://ror.org/003njj705 Unisearch (United States)'), (75094, 'https://ror.org/003q5e975', 'no_lang_code', 1, 'https://ror.org/003q5e975 Gewerbliche Institut für Umweltanalytik (Germany)'), (75095, 'https://ror.org/003sqa685', 'no_lang_code', 1, 'https://ror.org/003sqa685 Stat Medical Devices (United States)'), (75096, 'https://ror.org/003w8na57', 'no_lang_code', 1, 'https://ror.org/003w8na57 Hydroisotop (Germany)'), (75097, 'https://ror.org/003xvvt95', 'en', 1, 'https://ror.org/003xvvt95 Institut für Deutsches, Europäisches und Internationales Medizinrecht, Gesundheitsrecht und Bioethik Institute for German, European and International Medical Law, Public Health Law and Bioethics'), (75098, 'https://ror.org/00402k788', 'en', 1, 'https://ror.org/00402k788 Animal Husbandry & Veterinary'), (75099, 'https://ror.org/0042bdc75', 'en', 1, 'https://ror.org/0042bdc75 Alphacrucis College'), (75100, 'https://ror.org/0043cxs41', 'no_lang_code', 1, 'https://ror.org/0043cxs41 Helperby Therapeutics (United Kingdom)'), (75101, 'https://ror.org/0043ys591', 'no_lang_code', 1, 'https://ror.org/0043ys591 Magstim (United Kingdom)'), (75102, 'https://ror.org/00443vb41', 'no_lang_code', 1, 'https://ror.org/00443vb41 NeoPhotonics (United States)'), (75103, 'https://ror.org/00451sn96', 'en', 1, 'https://ror.org/00451sn96 Alberta Biodiversity Monitoring Institute'), (75104, 'https://ror.org/0045fm505', 'no_lang_code', 1, 'https://ror.org/0045fm505 Staar Surgical (United States)'), (75105, 'https://ror.org/0046sdb63', 'no_lang_code', 1, 'https://ror.org/0046sdb63 Tosk (United States)'), (75106, 'https://ror.org/004776246', 'en', 1, 'https://ror.org/004776246 Capital University of Science and Technology جامعہ دارالحکومت سائنس و ٹیکنالوجی'), (75107, 'https://ror.org/0047dfm96', 'en', 1, 'https://ror.org/0047dfm96 Shikoku Occupational Skills Development College 香川職業訓練短期大学校'), (75108, 'https://ror.org/0047j9t38', 'de', 1, 'https://ror.org/0047j9t38 Institut für Informationsverarbeitung'), (75109, 'https://ror.org/004cyfn34', 'en', 1, 'https://ror.org/004cyfn34 Jiangxi Provincial Academy of Medical Sciences 江西省医学科学院'), (75110, 'https://ror.org/004de7504', 'en', 1, 'https://ror.org/004de7504 Burkina Faso Ministry of the Environment, Green Economy, and Climate Change Ministère de L''Environnement, de l''Economie verte et du Changement Climatique'), (75111, 'https://ror.org/004dy8z51', 'no_lang_code', 1, 'https://ror.org/004dy8z51 Siddharth Starch (India)'), (75112, 'https://ror.org/004dyvb33', 'no_lang_code', 1, 'https://ror.org/004dyvb33 Unity Biotechnology (United States)'), (75113, 'https://ror.org/004evz222', 'fr', 1, 'https://ror.org/004evz222 Association Nationale des Producteurs de Noisettes'), (75114, 'https://ror.org/004jhjr33', 'en', 1, 'https://ror.org/004jhjr33 Vinh Phuc Department of Health'), (75115, 'https://ror.org/004q1hy63', 'en', 1, 'https://ror.org/004q1hy63 Yamanashi Research Institute 公益財団法人 山梨総合研究所'), (75116, 'https://ror.org/004q9nj68', 'no_lang_code', 1, 'https://ror.org/004q9nj68 Vapotherm (United States)'), (75117, 'https://ror.org/004sfne89', 'no_lang_code', 1, 'https://ror.org/004sfne89 Klinikum Westfalen (Germany)'), (75118, 'https://ror.org/004sp0722', 'no_lang_code', 1, 'https://ror.org/004sp0722 Alpine Immune Sciences (United States)'); INSERT INTO `rors` VALUES (75119, 'https://ror.org/004srxn73', 'en', 1, 'https://ror.org/004srxn73 Shanghai Institute for Science of Science 上海市科学学研究所'), (75120, 'https://ror.org/004tnhr10', 'en', 1, 'https://ror.org/004tnhr10 Laser Science & Technology Centre'), (75121, 'https://ror.org/004tpxz33', 'no_lang_code', 1, 'https://ror.org/004tpxz33 Nichiban (Japan) ニチバン株式会社'), (75122, 'https://ror.org/004w4c708', 'no_lang_code', 1, 'https://ror.org/004w4c708 Pipestone (United States)'), (75123, 'https://ror.org/004x7d471', 'en', 1, 'https://ror.org/004x7d471 Center for Light Energy Activated Redox Processes'), (75124, 'https://ror.org/004z0nw85', 'no_lang_code', 1, 'https://ror.org/004z0nw85 Forestadent (Germany)'), (75125, 'https://ror.org/004zpe866', 'en', 1, 'https://ror.org/004zpe866 Beltsville Human Nutrition Research Center'), (75126, 'https://ror.org/00502tg50', 'no_lang_code', 1, 'https://ror.org/00502tg50 Wanfang Data (China)'), (75127, 'https://ror.org/0053a1v22', 'de', 1, 'https://ror.org/0053a1v22 Hamburger Kunsthalle'), (75128, 'https://ror.org/0054nhx50', 'no_lang_code', 1, 'https://ror.org/0054nhx50 EdgeWave (Germany)'), (75129, 'https://ror.org/0056pgw95', 'no_lang_code', 1, 'https://ror.org/0056pgw95 Eureka Therapeutics (United States)'), (75130, 'https://ror.org/0057mhb40', 'no_lang_code', 1, 'https://ror.org/0057mhb40 Matador (Slovakia)'), (75131, 'https://ror.org/0058ctf29', 'en', 1, 'https://ror.org/0058ctf29 Consortium of European Taxonomic Facilities'), (75132, 'https://ror.org/0059myg49', 'de', 1, 'https://ror.org/0059myg49 Forschungsgemeinschaft Feuerfest'), (75133, 'https://ror.org/0059y1582', 'en', 1, 'https://ror.org/0059y1582 World Wide Web Consortium'), (75134, 'https://ror.org/005ahed97', 'no_lang_code', 1, 'https://ror.org/005ahed97 Apollo Global Management (United States)'), (75135, 'https://ror.org/005dbxm61', 'no_lang_code', 1, 'https://ror.org/005dbxm61 Piezosystem Jena (Germany)'), (75136, 'https://ror.org/005e5y372', 'en', 1, 'https://ror.org/005e5y372 Aeronautical Development Establishment वैमानिकी विकास प्रतिष्ठान ಏರೊನಾಟಿಕಲ್ ಡೆವಲಪ್ಮೆಂಟ್ ಎಸ್ಟಾಬ್ಲಿಷ್ಮೆಂಟ್'), (75137, 'https://ror.org/005e86b23', 'de', 1, 'https://ror.org/005e86b23 Economica'), (75138, 'https://ror.org/005ev0c40', 'no_lang_code', 1, 'https://ror.org/005ev0c40 IMU Institut (Germany)'), (75139, 'https://ror.org/005h88p57', 'no_lang_code', 1, 'https://ror.org/005h88p57 ASELTA Nanographics (France)'), (75140, 'https://ror.org/005ksdp35', 'no_lang_code', 1, 'https://ror.org/005ksdp35 Systems Analytics (United States)'), (75141, 'https://ror.org/005md5539', 'no_lang_code', 1, 'https://ror.org/005md5539 Colour Control Farbmesstechnik (Germany)'), (75142, 'https://ror.org/005mgvs97', 'en', 1, 'https://ror.org/005mgvs97 Shenyang Center for Disease Control and Prevention 沈阳市疾病预防控制中心'), (75143, 'https://ror.org/005n4dc83', 'no_lang_code', 1, 'https://ror.org/005n4dc83 Tianjin Synthetic Material Research Institute (China) 天津市合成材料工业研究所有限公司'), (75144, 'https://ror.org/005vq4d33', 'no_lang_code', 1, 'https://ror.org/005vq4d33 Oxford Plastics (United Kingdom)'), (75145, 'https://ror.org/005wx2316', 'no_lang_code', 1, 'https://ror.org/005wx2316 Value Farm Consulting (Japan) バリューファーム・コンサルティング'), (75146, 'https://ror.org/005wzhk47', 'no_lang_code', 1, 'https://ror.org/005wzhk47 MiCell Technologies (United States)'), (75147, 'https://ror.org/005x7bz67', 'no_lang_code', 1, 'https://ror.org/005x7bz67 Transphorm (United States)'), (75148, 'https://ror.org/005xgxx88', 'en', 1, 'https://ror.org/005xgxx88 World Health Organization - Morocco'), (75149, 'https://ror.org/005z3yp93', 'en', 1, 'https://ror.org/005z3yp93 Central Sericultural Germplasm Resources Centre'), (75150, 'https://ror.org/0063h8607', 'no_lang_code', 1, 'https://ror.org/0063h8607 Protia (United States)'), (75151, 'https://ror.org/0063jwc41', 'en', 1, 'https://ror.org/0063jwc41 Bauhaus Archive'), (75152, 'https://ror.org/0064ns709', 'no_lang_code', 1, 'https://ror.org/0064ns709 Shilpa (India)'), (75153, 'https://ror.org/0065gjh60', 'no_lang_code', 1, 'https://ror.org/0065gjh60 Institut für Umwelttechnologien und Strahlenschutz (Germany)'), (75154, 'https://ror.org/0065tt051', 'no_lang_code', 1, 'https://ror.org/0065tt051 U.S. Composites (United States)'), (75155, 'https://ror.org/0066efq29', 'en', 1, 'https://ror.org/0066efq29 Hunan Provincial Center for Disease Control and Prevention 湖南省疾病预防控制中心)'), (75156, 'https://ror.org/0066mva78', 'en', 1, 'https://ror.org/0066mva78 Natural History Museum of Bern Naturhistorisches Museum Bern'), (75157, 'https://ror.org/006763s03', 'en', 1, 'https://ror.org/006763s03 Nemuro Education Institute 根室教育研究所'), (75158, 'https://ror.org/006992e45', 'en', 1, 'https://ror.org/006992e45 Yanan University Affiliated Hospital 延安大学附属医院'), (75159, 'https://ror.org/0069k3e75', 'en', 1, 'https://ror.org/0069k3e75 Institute of Mental Health கீழ்பாக்கம் அரசு மனநல மருத்துவமனை'), (75160, 'https://ror.org/006efxj37', 'es', 1, 'https://ror.org/006efxj37 Confederación Latinoamericana de Religiosos Latin American and Caribbean Confederation of Religious Orders'), (75161, 'https://ror.org/006f3dv52', 'es', 1, 'https://ror.org/006f3dv52 Observatorio de Mortalidad Materna en México'), (75162, 'https://ror.org/006f8jv23', 'no_lang_code', 1, 'https://ror.org/006f8jv23 Fulcrum Therapeutics (United States)'), (75163, 'https://ror.org/006grep18', 'no_lang_code', 1, 'https://ror.org/006grep18 Science Spaza'), (75164, 'https://ror.org/006h5wv45', 'no_lang_code', 1, 'https://ror.org/006h5wv45 Gripple (United Kingdom)'), (75165, 'https://ror.org/006jfnq36', 'en', 1, 'https://ror.org/006jfnq36 American Farm Bureau Federation'), (75166, 'https://ror.org/006kn2235', 'no_lang_code', 1, 'https://ror.org/006kn2235 Anova Corp (Vietnam)'), (75167, 'https://ror.org/006kn8y54', 'en', 1, 'https://ror.org/006kn8y54 Kyoto City Archaeological Research Institute 京都市考古資料館'), (75168, 'https://ror.org/006mk5713', 'no_lang_code', 1, 'https://ror.org/006mk5713 Wellesley Pharmaceuticals (United States)'), (75169, 'https://ror.org/006mz4f81', 'en', 1, 'https://ror.org/006mz4f81 Ishikawa Prefectural Museum of History 石川県立歴史博物館'), (75170, 'https://ror.org/006nx0g64', 'no_lang_code', 1, 'https://ror.org/006nx0g64 6 Dimensions Capital (United States)'), (75171, 'https://ror.org/006s82919', 'no_lang_code', 1, 'https://ror.org/006s82919 Shishikari Sand Dune Museum いしかり砂丘の風資料館'), (75172, 'https://ror.org/006shyb38', 'en', 1, 'https://ror.org/006shyb38 GD Hospital & Diabetes Institute জিডি হসপিটাল এন্ড ডায়াবেটিস ইনস্টিটিউট'), (75173, 'https://ror.org/006sjd474', 'no_lang_code', 1, 'https://ror.org/006sjd474 Serimmune (United States)'), (75174, 'https://ror.org/006t7br05', 'no_lang_code', 1, 'https://ror.org/006t7br05 FirstUnion (China)'), (75175, 'https://ror.org/006vvm489', 'fr', 1, 'https://ror.org/006vvm489 Institut Universitaire d''Abidjan'), (75176, 'https://ror.org/006w0gs85', 'en', 1, 'https://ror.org/006w0gs85 Mazumdar Shaw Medical Foundation'), (75177, 'https://ror.org/006w9hg13', 'en', 1, 'https://ror.org/006w9hg13 Institut für Dauerhaft Umweltgerechte Entwicklung Von Naturräumen der Erde Institute of Sustainable Development of Landscapes of the Earth'), (75178, 'https://ror.org/006xv9y11', 'no_lang_code', 1, 'https://ror.org/006xv9y11 Haim Bio (South Korea)'), (75179, 'https://ror.org/006zxtd57', 'no_lang_code', 1, 'https://ror.org/006zxtd57 Boso no Mura 千葉県立房総のむら'), (75180, 'https://ror.org/007009t97', 'no_lang_code', 1, 'https://ror.org/007009t97 Yuyama (Japan) 株式会社ユヤマ'), (75181, 'https://ror.org/007022329', 'en', 1, 'https://ror.org/007022329 European Regional and Local Health Authorities'), (75182, 'https://ror.org/00717c553', 'de', 1, 'https://ror.org/00717c553 Philosophisch-Theologische Hochschule Münster'), (75183, 'https://ror.org/0071sjj14', 'en', 1, 'https://ror.org/0071sjj14 Massachusetts Space Grant Consortium'), (75184, 'https://ror.org/0072d4h61', 'no_lang_code', 1, 'https://ror.org/0072d4h61 Bioscience (China) 博奥赛斯'), (75185, 'https://ror.org/0075t0c68', 'no_lang_code', 1, 'https://ror.org/0075t0c68 Wienerberger (Austria)'), (75186, 'https://ror.org/00761tq91', 'en', 1, 'https://ror.org/00761tq91 Institut für Gebäudeanalyse und Sanierungsplanung Institute for Building Analysis and Reconstruction Planning'), (75187, 'https://ror.org/0076h6458', 'de', 1, 'https://ror.org/0076h6458 Deutsche Akademie für Städtebau und Landesplanung'), (75188, 'https://ror.org/007amws38', 'en', 1, 'https://ror.org/007amws38 Hubei Water Resources Research Institute 湖北省水利科学研究院'), (75189, 'https://ror.org/007ctn309', 'no_lang_code', 1, 'https://ror.org/007ctn309 Protochips (United States)'), (75190, 'https://ror.org/007e09543', 'en', 1, 'https://ror.org/007e09543 Sammy''s Superheroes'), (75191, 'https://ror.org/007e7b187', 'no_lang_code', 1, 'https://ror.org/007e7b187 Changchun Discovery Sciences (China) 长春吉大天元化学技术股份有限公司'), (75192, 'https://ror.org/007f5j378', 'no_lang_code', 1, 'https://ror.org/007f5j378 Cryosoft (Slovakia)'), (75193, 'https://ror.org/007ferf45', 'en', 1, 'https://ror.org/007ferf45 Parker Conservation'), (75194, 'https://ror.org/007fp9y47', 'no_lang_code', 1, 'https://ror.org/007fp9y47 Rapt Therapeutics (United States)'), (75195, 'https://ror.org/007gt1a87', 'de', 1, 'https://ror.org/007gt1a87 Städtisches Klinikum Dresden'), (75196, 'https://ror.org/007h0mc98', 'en', 1, 'https://ror.org/007h0mc98 Hong Kong Tuberculosis, Chest and Heart Diseases Association 香港防癆心臟及胸病協會'), (75197, 'https://ror.org/007h8y788', 'fr', 1, 'https://ror.org/007h8y788 Higher Institutes of Nursing and Health Technical Professions Instituts Supérieurs des Professions Infirmières et Techniques de Santé المعاهد العليا للمهن التمريضية وتقنيات الصحة'), (75198, 'https://ror.org/007jgnc83', 'no_lang_code', 1, 'https://ror.org/007jgnc83 Danieli (United Kingdom)'), (75199, 'https://ror.org/007jmsy64', 'no_lang_code', 1, 'https://ror.org/007jmsy64 Laurus labs (India)'), (75200, 'https://ror.org/007jnt575', 'en', 1, 'https://ror.org/007jnt575 Guangzhou Center for Disease Control and Prevention 广州市疾病预防控制中心'), (75201, 'https://ror.org/007mkk709', 'no_lang_code', 1, 'https://ror.org/007mkk709 Specialty Devices (United States)'), (75202, 'https://ror.org/007ns0839', 'no_lang_code', 1, 'https://ror.org/007ns0839 Arjo (Sweden)'), (75203, 'https://ror.org/007stz924', 'no_lang_code', 1, 'https://ror.org/007stz924 DNARx (United States)'), (75204, 'https://ror.org/007w39b04', 'en', 1, 'https://ror.org/007w39b04 National Research Centre on Litchi आईसीएआर-राष्ट्रीय लीची अनुसंधान केंद्र'), (75205, 'https://ror.org/007wz9933', 'en', 1, 'https://ror.org/007wz9933 Shanghai Medical Information Center 上海市医疗保险信息中心'), (75206, 'https://ror.org/007x4cq57', 'en', 1, 'https://ror.org/007x4cq57 Directorate of Religious Affairs Diyanet İşleri Başkanlığı'), (75207, 'https://ror.org/0080ttk76', 'es', 1, 'https://ror.org/0080ttk76 Instituto de Salud Pública de Chile'), (75208, 'https://ror.org/008356476', 'no_lang_code', 1, 'https://ror.org/008356476 Spine Wave (United States)'), (75209, 'https://ror.org/0083rgp58', 'no_lang_code', 1, 'https://ror.org/0083rgp58 Neurotech (United States)'), (75210, 'https://ror.org/0086zck61', 'no_lang_code', 1, 'https://ror.org/0086zck61 Martimex (Slovakia)'), (75211, 'https://ror.org/008d3n094', 'no_lang_code', 1, 'https://ror.org/008d3n094 PYC Therapeutics (Australia)'), (75212, 'https://ror.org/008d7nr53', 'no_lang_code', 1, 'https://ror.org/008d7nr53 Manaty (France)'), (75213, 'https://ror.org/008en0y31', 'en', 1, 'https://ror.org/008en0y31 Deutsches Apotheken-Museum German Museum of Pharmacy'), (75214, 'https://ror.org/008enam71', 'en', 1, 'https://ror.org/008enam71 Polish Botanical Society Polskie Towarzystwo Botaniczne'), (75215, 'https://ror.org/008f1m719', 'no_lang_code', 1, 'https://ror.org/008f1m719 Immune Pharmaceuticals (United States)'), (75216, 'https://ror.org/008h0ge70', 'en', 1, 'https://ror.org/008h0ge70 Research Center of Saline and Akali Land of State Foresty Administration 国家林业局盐碱地研究中心于'), (75217, 'https://ror.org/008h8bh21', 'no_lang_code', 1, 'https://ror.org/008h8bh21 Astellas Pharma (China) 安斯泰来制药'), (75218, 'https://ror.org/008hcnq44', 'en', 1, 'https://ror.org/008hcnq44 Action Toward Independence'), (75219, 'https://ror.org/008n7jx79', 'en', 1, 'https://ror.org/008n7jx79 Institute of Sustainable Development, Environmental & Scientific Research'), (75220, 'https://ror.org/008nqzn46', 'no_lang_code', 1, 'https://ror.org/008nqzn46 Vigyan Prasar विज्ञान प्रसार'), (75221, 'https://ror.org/008p13e68', 'no_lang_code', 1, 'https://ror.org/008p13e68 Farvet (Peru)'), (75222, 'https://ror.org/008pcc762', 'de', 1, 'https://ror.org/008pcc762 Museum Folkwang'), (75223, 'https://ror.org/008tj1x05', 'no_lang_code', 1, 'https://ror.org/008tj1x05 Strange Loop Games (United States)'), (75224, 'https://ror.org/008ww7s63', 'no_lang_code', 1, 'https://ror.org/008ww7s63 Eurobio Scientific (France)'), (75225, 'https://ror.org/008y8yz21', 'en', 1, 'https://ror.org/008y8yz21 European Research Infrastructure on Highly Pathogenic Agents'), (75226, 'https://ror.org/0090yh913', 'en', 1, 'https://ror.org/0090yh913 Xiangshan County First People''s Hospital 象山县第一人民医院'), (75227, 'https://ror.org/00913vr41', 'no_lang_code', 1, 'https://ror.org/00913vr41 Ricardo (India)'), (75228, 'https://ror.org/0092tvz34', 'en', 1, 'https://ror.org/0092tvz34 Biodiversity and Nature Conservation Association'), (75229, 'https://ror.org/009399a74', 'en', 1, 'https://ror.org/009399a74 Shanghai Institute of Science & Technology Management'), (75230, 'https://ror.org/0093rkw25', 'en', 1, 'https://ror.org/0093rkw25 Bhartiya Skill Development University भारतीय स्किल डवलपमेन्ट युनिवर्सिटी'), (75231, 'https://ror.org/009498z64', 'no_lang_code', 1, 'https://ror.org/009498z64 Joint Active Systems (United States)'), (75232, 'https://ror.org/0095a7z52', 'en', 1, 'https://ror.org/0095a7z52 Islamic Azad University Kashmar Branch دانشگاه آزاد اسلامی واحد کاشمر'), (75233, 'https://ror.org/00961se81', 'en', 1, 'https://ror.org/00961se81 First Consultants Medical Center'), (75234, 'https://ror.org/0096ngc39', 'no_lang_code', 1, 'https://ror.org/0096ngc39 Medibeacon (United States)'), (75235, 'https://ror.org/00983c961', 'en', 1, 'https://ror.org/00983c961 Xian Center for Disease Control and Prevention 西安市疾病预防控制中心'), (75236, 'https://ror.org/0099s2a30', 'en', 1, 'https://ror.org/0099s2a30 German United Services Trade Union Vereinte Dienstleistungsgewerkschaft'), (75237, 'https://ror.org/009cfk404', 'en', 1, 'https://ror.org/009cfk404 Electric Vehicle Transportation Center'), (75238, 'https://ror.org/009epkm94', 'en', 1, 'https://ror.org/009epkm94 Center for Environmental Concerns'), (75239, 'https://ror.org/009gkhz71', 'no_lang_code', 1, 'https://ror.org/009gkhz71 Tredegar (United States)'), (75240, 'https://ror.org/009hj6r06', 'en', 1, 'https://ror.org/009hj6r06 Matsue History Museum 松江歴史博物館'), (75241, 'https://ror.org/009m9x557', 'no_lang_code', 1, 'https://ror.org/009m9x557 Storagenergy Technologies (United States)'), (75242, 'https://ror.org/009qyxk73', 'no_lang_code', 1, 'https://ror.org/009qyxk73 Theron Pharmaceuticals (United States)'), (75243, 'https://ror.org/009rg7s27', 'no_lang_code', 1, 'https://ror.org/009rg7s27 Biomed Protection (United States)'), (75244, 'https://ror.org/009v0gn86', 'no_lang_code', 1, 'https://ror.org/009v0gn86 Energetický a Průmyslový Holding (Czechia)'), (75245, 'https://ror.org/009wgy438', 'no_lang_code', 1, 'https://ror.org/009wgy438 Shell (Malaysia)'), (75246, 'https://ror.org/009x7v589', 'en', 1, 'https://ror.org/009x7v589 Pharmacie des Hôpitaux de l''Est Lémanique Pharmacy of the Eastern Vaud Hospitals'), (75247, 'https://ror.org/009xejr53', 'de', 1, 'https://ror.org/009xejr53 Schön Klinik München Harlaching'), (75248, 'https://ror.org/009xgxm43', 'no_lang_code', 1, 'https://ror.org/009xgxm43 Hosokawa Micron (United Kingdom)'), (75249, 'https://ror.org/00a082661', 'no_lang_code', 1, 'https://ror.org/00a082661 Pollution Control Technologies (United States)'), (75250, 'https://ror.org/00a0w0523', 'en', 1, 'https://ror.org/00a0w0523 Centre for East European and International Studies Zentrum für Osteuropa- und internationale Studien'), (75251, 'https://ror.org/00a14tf81', 'en', 1, 'https://ror.org/00a14tf81 ISRO Propulsion Complex भारतीय अंतरिक्ष अनुसंधान संगठन प्रणोदन समूह ఇస్రో ప్రొపల్షన్ కాంప్లెక్స్'), (75252, 'https://ror.org/00a21fr98', 'en', 1, 'https://ror.org/00a21fr98 Environment and Plant Protection Research Institute 环境与植物保护研究所'), (75253, 'https://ror.org/00a2cej79', 'no_lang_code', 1, 'https://ror.org/00a2cej79 TCI (Taiwan) 大江生醫股份有限公司'), (75254, 'https://ror.org/00a4gmh33', 'no_lang_code', 1, 'https://ror.org/00a4gmh33 Barricaid (United States)'), (75255, 'https://ror.org/00a4nhr72', 'en', 1, 'https://ror.org/00a4nhr72 Trường Đại học Khánh Hòa University of Khanh Hoa'), (75256, 'https://ror.org/00a5h4251', 'no_lang_code', 1, 'https://ror.org/00a5h4251 Noveratech (United States)'), (75257, 'https://ror.org/00a6gz882', 'no_lang_code', 1, 'https://ror.org/00a6gz882 Renova Life (United States)'), (75258, 'https://ror.org/00aahzn97', 'en', 1, 'https://ror.org/00aahzn97 Bureau de la Coordination des Affaires Humanitaires United Nations Office for the Coordination of Humanitarian Affairs'), (75259, 'https://ror.org/00aazk693', 'en', 1, 'https://ror.org/00aazk693 National Institute of Technology Manipur राष्ट्रीय प्रौद्योगिकी संस्थान मणिपुर'), (75260, 'https://ror.org/00abset84', 'en', 1, 'https://ror.org/00abset84 Art College kobe アートカレッジ神戸'), (75261, 'https://ror.org/00ac1vt62', 'no_lang_code', 1, 'https://ror.org/00ac1vt62 Kenwood (United Kingdom)'), (75262, 'https://ror.org/00acjv878', 'en', 1, 'https://ror.org/00acjv878 Oscar G. Johnson VA Medical Center'), (75263, 'https://ror.org/00acss906', 'no_lang_code', 1, 'https://ror.org/00acss906 Saluda Medical (Australia)'), (75264, 'https://ror.org/00adtdy17', 'en', 1, 'https://ror.org/00adtdy17 Eastern Mediterranean Public Health Network'), (75265, 'https://ror.org/00aejfc65', 'es', 1, 'https://ror.org/00aejfc65 Consejo Nacional de Ciencia y Tecnología'), (75266, 'https://ror.org/00afzhq19', 'en', 1, 'https://ror.org/00afzhq19 L.T. Malaya National Therapy Institute of the National Academy of Medical Sciences of Ukraine Державна установа “Нацiональний iнститут терапії iменi Л.Т.Малої Національної академії медичних наук України”'), (75267, 'https://ror.org/00ah5w636', 'no_lang_code', 1, 'https://ror.org/00ah5w636 Centire Research (Slovakia)'), (75268, 'https://ror.org/00ah6pg32', 'no_lang_code', 1, 'https://ror.org/00ah6pg32 SunRay Scientific (United States)'), (75269, 'https://ror.org/00ahbw052', 'de', 1, 'https://ror.org/00ahbw052 Blindeninstitutsstiftung'), (75270, 'https://ror.org/00am9gf93', 'en', 1, 'https://ror.org/00am9gf93 Southern African Migration Programme'), (75271, 'https://ror.org/00ap23p40', 'no_lang_code', 1, 'https://ror.org/00ap23p40 Noom (United States)'), (75272, 'https://ror.org/00apa0w81', 'no_lang_code', 1, 'https://ror.org/00apa0w81 Paragon 28 (United States)'), (75273, 'https://ror.org/00as6b113', 'en', 1, 'https://ror.org/00as6b113 Inner Mongolia Chifeng Forestry Science Research Institute 内蒙古赤峰市林业科学研究院'), (75274, 'https://ror.org/00av7cz64', 'no_lang_code', 1, 'https://ror.org/00av7cz64 International Research Associates (United States)'), (75275, 'https://ror.org/00axkns98', 'en', 1, 'https://ror.org/00axkns98 Electronics Corporation of India'), (75276, 'https://ror.org/00axm1v07', 'en', 1, 'https://ror.org/00axm1v07 Sudan Childhood Diabetes Association'), (75277, 'https://ror.org/00az06337', 'no_lang_code', 1, 'https://ror.org/00az06337 ORIG3N (United States)'), (75278, 'https://ror.org/00b0mey76', 'en', 1, 'https://ror.org/00b0mey76 Defence Institute of High Altitude Research'), (75279, 'https://ror.org/00b1jmk08', 'no_lang_code', 1, 'https://ror.org/00b1jmk08 Huizhou Kimree Technology (China) 惠州市金瑞科技有限公司'), (75280, 'https://ror.org/00b49pe93', 'no_lang_code', 1, 'https://ror.org/00b49pe93 Dornier MedTech (Germany)'), (75281, 'https://ror.org/00b4tzx19', 'fr', 1, 'https://ror.org/00b4tzx19 Réseau National de Surveillance Aérobiologique'), (75282, 'https://ror.org/00b691416', 'en', 1, 'https://ror.org/00b691416 Marine Megafauna Foundation'), (75283, 'https://ror.org/00b6x1q17', 'en', 1, 'https://ror.org/00b6x1q17 Hans Litten Archive Hans-Litten-Archiv'), (75284, 'https://ror.org/00b7zyg88', 'en', 1, 'https://ror.org/00b7zyg88 Museum of Old and New Art'), (75285, 'https://ror.org/00bc49e61', 'no_lang_code', 1, 'https://ror.org/00bc49e61 GLS Industries (Canada)'), (75286, 'https://ror.org/00bcept67', 'no_lang_code', 1, 'https://ror.org/00bcept67 Deutsches Institut für Bautechnik (Germany)'), (75287, 'https://ror.org/00bdxyz12', 'en', 1, 'https://ror.org/00bdxyz12 Hokkaido Arisu High School 北海道有栖高校'), (75288, 'https://ror.org/00be0m967', 'en', 1, 'https://ror.org/00be0m967 United Nations University Institute for Sustainability and Peace 国連大学サステイナビリティと平和研究所'), (75289, 'https://ror.org/00bf6gk85', 'no_lang_code', 1, 'https://ror.org/00bf6gk85 Volkswagen Financial Services (Germany)'), (75290, 'https://ror.org/00bg5mz75', 'no_lang_code', 1, 'https://ror.org/00bg5mz75 SkEyes Unlimited (United States)'), (75291, 'https://ror.org/00bhbn803', 'en', 1, 'https://ror.org/00bhbn803 Chellaram Hospital'), (75292, 'https://ror.org/00bhf5527', 'no_lang_code', 1, 'https://ror.org/00bhf5527 Ethypharm (United Kingdom)'), (75293, 'https://ror.org/00bkjqa40', 'no_lang_code', 1, 'https://ror.org/00bkjqa40 InnoLas Solutions (Germany)'), (75294, 'https://ror.org/00bs1hy45', 'en', 1, 'https://ror.org/00bs1hy45 Hospital Pediátrico "Baca Ortiz" Pediatric Hospital "Baca Ortiz"'), (75295, 'https://ror.org/00bs41j64', 'en', 1, 'https://ror.org/00bs41j64 United Nations Department of Peacekeeping Operations'), (75296, 'https://ror.org/00bsbpb39', 'no_lang_code', 1, 'https://ror.org/00bsbpb39 Cannuflow (United States)'), (75297, 'https://ror.org/00bv4hb15', 'fr', 1, 'https://ror.org/00bv4hb15 Centre Hospitalier de Wallonie Picarde'), (75298, 'https://ror.org/00bwm5s42', 'en', 1, 'https://ror.org/00bwm5s42 Te Kaunihera ā-Rohe o Waikato Waikato Regional Council'), (75299, 'https://ror.org/00bwvyk18', 'no_lang_code', 1, 'https://ror.org/00bwvyk18 Qatar Credit Bureau مركز قطر للمعلومات الائتمانية'), (75300, 'https://ror.org/00byf8747', 'no_lang_code', 1, 'https://ror.org/00byf8747 Gorongosa National Park'), (75301, 'https://ror.org/00byme428', 'fr', 1, 'https://ror.org/00byme428 Groupe Français de Transplantation Fécale'), (75302, 'https://ror.org/00bzfhs56', 'en', 1, 'https://ror.org/00bzfhs56 The Technological College of Beer Sheva המכללה הטכנולוגית באר שבע'), (75303, 'https://ror.org/00c1g7649', 'no_lang_code', 1, 'https://ror.org/00c1g7649 werusys (Germany)'), (75304, 'https://ror.org/00c1ha781', 'no_lang_code', 1, 'https://ror.org/00c1ha781 Tosho (Japan)'), (75305, 'https://ror.org/00c20xw32', 'en', 1, 'https://ror.org/00c20xw32 Terminal Ballistics Research Laboratory'), (75306, 'https://ror.org/00c2n9b56', 'en', 1, 'https://ror.org/00c2n9b56 Jewish Voice for Peace'), (75307, 'https://ror.org/00c2nxt31', 'no_lang_code', 1, 'https://ror.org/00c2nxt31 Querium (United States)'), (75308, 'https://ror.org/00c31c476', 'no_lang_code', 1, 'https://ror.org/00c31c476 Vishay Intertechnology (United States)'), (75309, 'https://ror.org/00c44w836', 'en', 1, 'https://ror.org/00c44w836 Vivekananda Memorial Hospital'), (75310, 'https://ror.org/00c782c94', 'no_lang_code', 1, 'https://ror.org/00c782c94 Mitsubishi UFJ Research & Consulting (Japan) 三菱UFJリサーチ&コンサルティング'), (75311, 'https://ror.org/00c8nx045', 'en', 1, 'https://ror.org/00c8nx045 Australian National Insect Collection'), (75312, 'https://ror.org/00c8vg612', 'no_lang_code', 1, 'https://ror.org/00c8vg612 Parasim (United States)'), (75313, 'https://ror.org/00cb76512', 'en', 1, 'https://ror.org/00cb76512 Northland District Health Board'), (75314, 'https://ror.org/00ccqnx36', 'en', 1, 'https://ror.org/00ccqnx36 Institute of Food Resources of National Academy of Agrarian Sciences of Ukraine Інститут харчових ресурсів Національної академії аграрних наук України'), (75315, 'https://ror.org/00ceh5s45', 'es', 1, 'https://ror.org/00ceh5s45 Departamento de Epidemiología'), (75316, 'https://ror.org/00cenf840', 'en', 1, 'https://ror.org/00cenf840 Providence Health & Services Alaska'), (75317, 'https://ror.org/00ceqya16', 'no_lang_code', 1, 'https://ror.org/00ceqya16 Soterix Medical (United States)'), (75318, 'https://ror.org/00cgds605', 'en', 1, 'https://ror.org/00cgds605 Forum Ekonomi Islam Dunia World Islamic Economic Forum Foundation'), (75319, 'https://ror.org/00ck5k311', 'no_lang_code', 1, 'https://ror.org/00ck5k311 Boundless Bio (United States)'), (75320, 'https://ror.org/00ckgf271', 'en', 1, 'https://ror.org/00ckgf271 Centre for Interdisciplinary Research and Education'), (75321, 'https://ror.org/00cky6c92', 'no_lang_code', 1, 'https://ror.org/00cky6c92 Tesi (Finland)'), (75322, 'https://ror.org/00cnznq20', 'de', 1, 'https://ror.org/00cnznq20 BUND-Hof Wendbüdel'), (75323, 'https://ror.org/00cprwm60', 'en', 1, 'https://ror.org/00cprwm60 Center for Promotion of Advancement of Society'), (75324, 'https://ror.org/00cqckx82', 'no_lang_code', 1, 'https://ror.org/00cqckx82 AbMax AntibodyChina (China) 北京天成新脉生物技术有限公司'), (75325, 'https://ror.org/00cr5zh57', 'no_lang_code', 1, 'https://ror.org/00cr5zh57 Fonterra (Australia)'), (75326, 'https://ror.org/00crw9046', 'en', 1, 'https://ror.org/00crw9046 Islamic Azad University, Estahban Branch دانشگاه آزاد اسلامی واحد استهبان'), (75327, 'https://ror.org/00cs5an78', 'no_lang_code', 1, 'https://ror.org/00cs5an78 Pixel Velocity (United States)'), (75328, 'https://ror.org/00cv80m81', 'no_lang_code', 1, 'https://ror.org/00cv80m81 Cambridge Systematics (United States)'), (75329, 'https://ror.org/00cvsxf87', 'no_lang_code', 1, 'https://ror.org/00cvsxf87 Atom Medical (Japan)'), (75330, 'https://ror.org/00cwypn82', 'en', 1, 'https://ror.org/00cwypn82 Iranian National Center for Laser Science and Techology مرکز ملی علوم و فنون لیزر ایران'), (75331, 'https://ror.org/00cx1hm79', 'no_lang_code', 1, 'https://ror.org/00cx1hm79 Sessler'), (75332, 'https://ror.org/00cx2cp03', 'en', 1, 'https://ror.org/00cx2cp03 Association of German Agricultural Analytic and Research Institutes'), (75333, 'https://ror.org/00cx3rx26', 'en', 1, 'https://ror.org/00cx3rx26 Overseas Museum Übersee Museum'), (75334, 'https://ror.org/00cy9w266', 'no_lang_code', 1, 'https://ror.org/00cy9w266 Sensirion (Switzerland)'), (75335, 'https://ror.org/00cyj6q75', 'no_lang_code', 1, 'https://ror.org/00cyj6q75 Orbits Lightwave (United States)'), (75336, 'https://ror.org/00czdkn85', 'en', 1, 'https://ror.org/00czdkn85 Eskişehir City Hospital Eskişehir Şehir Hastanesi'), (75337, 'https://ror.org/00d17v460', 'no_lang_code', 1, 'https://ror.org/00d17v460 Pacific Antenna Systems (United States)'), (75338, 'https://ror.org/00d1mzg56', 'no_lang_code', 1, 'https://ror.org/00d1mzg56 Modern Electron (United States)'), (75339, 'https://ror.org/00d22z552', 'de', 1, 'https://ror.org/00d22z552 Institut für Qualitätssicherung von Stoffsystemen Freiberg'), (75340, 'https://ror.org/00d2zfh55', 'en', 1, 'https://ror.org/00d2zfh55 Departament Federal da Giustia e Polizia Dipartimento Federale di Giustizia e Polizia Département Fédéral de Justice et Police Eidgenössisches Justiz- und Polizeidepartement Federal Department of Justice and Police'), (75341, 'https://ror.org/00d8dyw76', 'no_lang_code', 1, 'https://ror.org/00d8dyw76 Novilytic (United States)'), (75342, 'https://ror.org/00d964061', 'en', 1, 'https://ror.org/00d964061 GoCare Health Solutions Limited'), (75343, 'https://ror.org/00ddcfv11', 'en', 1, 'https://ror.org/00ddcfv11 Center for Dynamic Research on High Latitude Marine Ecosystems Centro de Investigación Dinámica de Ecosistemas Marinos de Altas Latitudes'), (75344, 'https://ror.org/00ddsq322', 'no_lang_code', 1, 'https://ror.org/00ddsq322 Viroclinics Biosciences (Netherlands)'), (75345, 'https://ror.org/00ddzkr50', 'no_lang_code', 1, 'https://ror.org/00ddzkr50 Isogen (Germany)'), (75346, 'https://ror.org/00dfbm658', 'en', 1, 'https://ror.org/00dfbm658 West Bengal State Council of Technical Education পশ্চিমবঙ্গ রাষ্ট্রীয় কারিগরী পরিষদ'), (75347, 'https://ror.org/00dg4wf63', 'de', 1, 'https://ror.org/00dg4wf63 Institut zur Förderung von Bildung und Integration'), (75348, 'https://ror.org/00djr1538', 'no_lang_code', 1, 'https://ror.org/00djr1538 DCA (United Kingdom)'), (75349, 'https://ror.org/00dkekd57', 'en', 1, 'https://ror.org/00dkekd57 Institute of Economic Affairs, Ghana'), (75350, 'https://ror.org/00dks7s70', 'no_lang_code', 1, 'https://ror.org/00dks7s70 SoftTeam Solutions (India)'), (75351, 'https://ror.org/00dp5a155', 'en', 1, 'https://ror.org/00dp5a155 TIFR Centre for Applicable Mathematics'), (75352, 'https://ror.org/00dpp6p47', 'no_lang_code', 1, 'https://ror.org/00dpp6p47 Caixin (China) 财新传媒'), (75353, 'https://ror.org/00drdr242', 'no_lang_code', 1, 'https://ror.org/00drdr242 AnywherEnergy (United States)'), (75354, 'https://ror.org/00dsvzt91', 'no_lang_code', 1, 'https://ror.org/00dsvzt91 Mutabilis (France)'), (75355, 'https://ror.org/00dx35m16', 'en', 1, 'https://ror.org/00dx35m16 Western Human Nutrition Research Center'), (75356, 'https://ror.org/00dys1t73', 'no_lang_code', 1, 'https://ror.org/00dys1t73 Gibaud (France)'), (75357, 'https://ror.org/00dyz4s77', 'no_lang_code', 1, 'https://ror.org/00dyz4s77 Acura Pharmaceuticals (United States)'), (75358, 'https://ror.org/00e06he13', 'en', 1, 'https://ror.org/00e06he13 The Neuroblastoma Children''s Cancer Society'), (75359, 'https://ror.org/00e1em465', 'en', 1, 'https://ror.org/00e1em465 Centre for Personnel Talent Management कार्मिक प्रतिभा प्रबंधन केंद्र'), (75360, 'https://ror.org/00e1g1704', 'no_lang_code', 1, 'https://ror.org/00e1g1704 Vector Composites (United States)'), (75361, 'https://ror.org/00e1wd906', 'en', 1, 'https://ror.org/00e1wd906 Institute of Electronics, Information and Communication Engineers 電子情報通信学会'), (75362, 'https://ror.org/00e1xxm21', 'no_lang_code', 1, 'https://ror.org/00e1xxm21 Sogrape Vinhos (Portugal)'), (75363, 'https://ror.org/00e27h292', 'no_lang_code', 1, 'https://ror.org/00e27h292 Synthonics (United States)'), (75364, 'https://ror.org/00e2b9v40', 'no_lang_code', 1, 'https://ror.org/00e2b9v40 Phoenix Digital (United States)'), (75365, 'https://ror.org/00e2xjp58', 'en', 1, 'https://ror.org/00e2xjp58 Anabuki Design College 穴吹デザイン専門学校'), (75366, 'https://ror.org/00e3c6786', 'en', 1, 'https://ror.org/00e3c6786 Scottish Council on Human Bioethics'), (75367, 'https://ror.org/00e3qze54', 'no_lang_code', 1, 'https://ror.org/00e3qze54 Automatizácia železničnej Dopravy (Slovakia)'), (75368, 'https://ror.org/00e42m728', 'en', 1, 'https://ror.org/00e42m728 Kumamoto Prefectural Museum Network Center 熊本県博物館ネットワークセンター'), (75369, 'https://ror.org/00e52k684', 'en', 1, 'https://ror.org/00e52k684 Fuyang Second People''s Hospital 阜阳市第二人民医院'), (75370, 'https://ror.org/00e6dgm57', 'no_lang_code', 1, 'https://ror.org/00e6dgm57 NewPath Learning (United States)'), (75371, 'https://ror.org/00e71xp25', 'no_lang_code', 1, 'https://ror.org/00e71xp25 RegeneRx Biopharmaceuticals (United States)'), (75372, 'https://ror.org/00e73ws79', 'no_lang_code', 1, 'https://ror.org/00e73ws79 DO'), (75373, 'https://ror.org/00e8ed254', 'de', 1, 'https://ror.org/00e8ed254 Rhein-Ruhr Institut für Sozialforschung und Politikberatung'), (75374, 'https://ror.org/00e98bw30', 'en', 1, 'https://ror.org/00e98bw30 Coalition of Open Access Policy Institutions'), (75375, 'https://ror.org/00e9neb15', 'no_lang_code', 1, 'https://ror.org/00e9neb15 Institut für Qualität im Management (Germany)'), (75376, 'https://ror.org/00e9z4164', 'en', 1, 'https://ror.org/00e9z4164 Miyazaki Prefectural Art Museum 宮崎県立美術館'), (75377, 'https://ror.org/00ea83k06', 'de', 1, 'https://ror.org/00ea83k06 Institut für Kommunikation und Wirtschaftsbildung'), (75378, 'https://ror.org/00ebvm839', 'no_lang_code', 1, 'https://ror.org/00ebvm839 Northern Minerals (Australia)'), (75379, 'https://ror.org/00ecwxa31', 'no_lang_code', 1, 'https://ror.org/00ecwxa31 Procedyne (United States)'), (75380, 'https://ror.org/00eefy724', 'en', 1, 'https://ror.org/00eefy724 Bundesamt für die Sicherheit der nuklearen Entsorgung Federal Office for the Safety of Nuclear Waste Management'), (75381, 'https://ror.org/00eexgx04', 'no_lang_code', 1, 'https://ror.org/00eexgx04 Dril Quip (United States)'), (75382, 'https://ror.org/00ef1tn69', 'no_lang_code', 1, 'https://ror.org/00ef1tn69 Northern Power Systems (United States)'), (75383, 'https://ror.org/00eh21150', 'en', 1, 'https://ror.org/00eh21150 Cummings Veterinary Medical Center'), (75384, 'https://ror.org/00ehgcp58', 'no_lang_code', 1, 'https://ror.org/00ehgcp58 Mitaka Kohki (Japan)'), (75385, 'https://ror.org/00ehvs489', 'de', 1, 'https://ror.org/00ehvs489 Forschungsvereinigung Antriebstechnik'), (75386, 'https://ror.org/00ejvzn98', 'no_lang_code', 1, 'https://ror.org/00ejvzn98 Shanghai Techwell Biopharmaceutical (China)'), (75387, 'https://ror.org/00ekwzh02', 'en', 1, 'https://ror.org/00ekwzh02 Aomori Prefectural School Education Center 青森県総合学校教育センタ'), (75388, 'https://ror.org/00emba706', 'no_lang_code', 1, 'https://ror.org/00emba706 Iridex (United States)'), (75389, 'https://ror.org/00epa7w16', 'no_lang_code', 1, 'https://ror.org/00epa7w16 Paramount Bed (Japan) パラマウントベッド株式会社'), (75390, 'https://ror.org/00eqyc023', 'no_lang_code', 1, 'https://ror.org/00eqyc023 GI Dynamics (United States)'), (75391, 'https://ror.org/00etypk41', 'no_lang_code', 1, 'https://ror.org/00etypk41 Institut für Umformtechnik (Germany)'), (75392, 'https://ror.org/00ev5ap50', 'en', 1, 'https://ror.org/00ev5ap50 ZRT Laboratory'), (75393, 'https://ror.org/00evn4913', 'no_lang_code', 1, 'https://ror.org/00evn4913 Norbrook (United Kingdom)'), (75394, 'https://ror.org/00ewyxm56', 'en', 1, 'https://ror.org/00ewyxm56 Centre for Air Borne System वायुवाहित प्रणाली केन्द्र'), (75395, 'https://ror.org/00exc4v70', 'fr', 1, 'https://ror.org/00exc4v70 Institut Amadeus'), (75396, 'https://ror.org/00exzt005', 'no_lang_code', 1, 'https://ror.org/00exzt005 Xalud Therapeutics (United States)'), (75397, 'https://ror.org/00eyegs12', 'de', 1, 'https://ror.org/00eyegs12 Institut für Kompetenz und Begabung'), (75398, 'https://ror.org/00ez5eh91', 'en', 1, 'https://ror.org/00ez5eh91 Center for Advanced Biomaterials for Healthcare'), (75399, 'https://ror.org/00f2c2516', 'en', 1, 'https://ror.org/00f2c2516 Guangzhou Experimental Station 中国热带农业科学院广州实验站'), (75400, 'https://ror.org/00f330z90', 'en', 1, 'https://ror.org/00f330z90 Poma International Business University'), (75401, 'https://ror.org/00f6a9h42', 'en', 1, 'https://ror.org/00f6a9h42 National Institute of Animal Biotechnology'), (75402, 'https://ror.org/00f6b3992', 'no_lang_code', 1, 'https://ror.org/00f6b3992 The 451 Group (United States)'), (75403, 'https://ror.org/00f7kfd14', 'en', 1, 'https://ror.org/00f7kfd14 Dulbecco Telethon Institute'), (75404, 'https://ror.org/00f7ytv44', 'en', 1, 'https://ror.org/00f7ytv44 Curculio Institute'), (75405, 'https://ror.org/00f8ebm77', 'es', 1, 'https://ror.org/00f8ebm77 SELVA'), (75406, 'https://ror.org/00f8k0n29', 'en', 1, 'https://ror.org/00f8k0n29 Earl Haig Secondary School'), (75407, 'https://ror.org/00faxb822', 'no_lang_code', 1, 'https://ror.org/00faxb822 DIGIBÍS (Spain)'), (75408, 'https://ror.org/00fc1yz57', 'no_lang_code', 1, 'https://ror.org/00fc1yz57 Laboratorios Farmaceúticos Rovi (Spain)'), (75409, 'https://ror.org/00fcv5w97', 'no_lang_code', 1, 'https://ror.org/00fcv5w97 Loewenstein Medical Technology (Germany)'), (75410, 'https://ror.org/00fdb3g61', 'no_lang_code', 1, 'https://ror.org/00fdb3g61 Henke-Sass Wolf (Germany)'), (75411, 'https://ror.org/00feczr54', 'no_lang_code', 1, 'https://ror.org/00feczr54 PureCircle (United States)'), (75412, 'https://ror.org/00fefjp46', 'en', 1, 'https://ror.org/00fefjp46 Pertubuhan Pertolongan Wanita Women''s Aid Organisation'), (75413, 'https://ror.org/00ffcee24', 'en', 1, 'https://ror.org/00ffcee24 Australian Hearing'), (75414, 'https://ror.org/00ffejy44', 'no_lang_code', 1, 'https://ror.org/00ffejy44 Teikoku Seiyaku (Japan) 帝國製薬㈱'), (75415, 'https://ror.org/00fjpwq08', 'no_lang_code', 1, 'https://ror.org/00fjpwq08 Stadtwerk Haßfurt (Germany)'), (75416, 'https://ror.org/00fkq8j89', 'no_lang_code', 1, 'https://ror.org/00fkq8j89 ThrustMe (France)'), (75417, 'https://ror.org/00fpp6w90', 'no_lang_code', 1, 'https://ror.org/00fpp6w90 PowerFilm (United States)'), (75418, 'https://ror.org/00fr8m236', 'en', 1, 'https://ror.org/00fr8m236 Canadian Media Concentration Research Project'), (75419, 'https://ror.org/00ft0fw96', 'en', 1, 'https://ror.org/00ft0fw96 China Centre for Resources Satellite Data and Application 中国资源卫星应用中心'), (75420, 'https://ror.org/00ft0j474', 'en', 1, 'https://ror.org/00ft0j474 Lebanon VA Medical Center'), (75421, 'https://ror.org/00fx5vd87', 'no_lang_code', 1, 'https://ror.org/00fx5vd87 Xenex Disinfection Services (United States)'), (75422, 'https://ror.org/00fz72d40', 'no_lang_code', 1, 'https://ror.org/00fz72d40 Visage Technologies (Sweden)'), (75423, 'https://ror.org/00fzcyf28', 'no_lang_code', 1, 'https://ror.org/00fzcyf28 Royal Engineered Composites (United States)'), (75424, 'https://ror.org/00fzf1h89', 'en', 1, 'https://ror.org/00fzf1h89 HOSEI Daini Junior and Senior High School 法政大学第二中'), (75425, 'https://ror.org/00g15v148', 'no_lang_code', 1, 'https://ror.org/00g15v148 Nyangabgwe Referral Hospital'), (75426, 'https://ror.org/00g1jg068', 'no_lang_code', 1, 'https://ror.org/00g1jg068 Xybion Corporation (United States)'), (75427, 'https://ror.org/00g2e9181', 'no_lang_code', 1, 'https://ror.org/00g2e9181 Njoy (United States)'), (75428, 'https://ror.org/00g35nv72', 'no_lang_code', 1, 'https://ror.org/00g35nv72 EndoGastric Solutions (United States)'), (75429, 'https://ror.org/00g3f8n09', 'en', 1, 'https://ror.org/00g3f8n09 Ningbo Center for Disease Control and Prevention 宁波市疾病预防控制中心'), (75430, 'https://ror.org/00g3t5227', 'no_lang_code', 1, 'https://ror.org/00g3t5227 Phenex Pharmaceuticals (Germany)'), (75431, 'https://ror.org/00g46p143', 'en', 1, 'https://ror.org/00g46p143 Agricultural Product Processing Research Institute 农产品加工研究所'), (75432, 'https://ror.org/00g4wce19', 'no_lang_code', 1, 'https://ror.org/00g4wce19 Stoller Ingenieurtechnik (Germany)'), (75433, 'https://ror.org/00g552c12', 'en', 1, 'https://ror.org/00g552c12 Association Suisse des Investisseurs en Capital et de Financement Schweizerische Vereinigung für Unternehmensfinanzierung The Swiss Private Equity & Corporate Finance Association'), (75434, 'https://ror.org/00g56wy16', 'en', 1, 'https://ror.org/00g56wy16 Shanghai Stomatological Hospital 上海市口腔病防治院'), (75435, 'https://ror.org/00g5xkr82', 'no_lang_code', 1, 'https://ror.org/00g5xkr82 Lianyungang Runzhong Pharmaceutical (China) 连云港润众制药有限公司'), (75436, 'https://ror.org/00g7r3086', 'no_lang_code', 1, 'https://ror.org/00g7r3086 Perpetua (United States)'), (75437, 'https://ror.org/00g87gv13', 'en', 1, 'https://ror.org/00g87gv13 Beijing Shijingshan Hospital 北京市石景山医院'), (75438, 'https://ror.org/00g8ww875', 'en', 1, 'https://ror.org/00g8ww875 AWS-Institut für Digitale Produkte und Prozesse AWS-Institute for Digitized Products and Processes'), (75439, 'https://ror.org/00g934978', 'no_lang_code', 1, 'https://ror.org/00g934978 Clinical Microbiomics (Denmark)'), (75440, 'https://ror.org/00gbn4v29', 'en', 1, 'https://ror.org/00gbn4v29 Global Alliance for Incinerator Alternatives'), (75441, 'https://ror.org/00gc85q68', 'es', 1, 'https://ror.org/00gc85q68 Corporación de Estudios Sociales y Educación'), (75442, 'https://ror.org/00geck193', 'no_lang_code', 1, 'https://ror.org/00geck193 Kirinyaga University'), (75443, 'https://ror.org/00ged3985', 'en', 1, 'https://ror.org/00ged3985 Mieko Fuji Contemporary Dance School & Company 富士美枝子コンテンポラリーダンススクール&カンパニー'), (75444, 'https://ror.org/00gga3b91', 'no_lang_code', 1, 'https://ror.org/00gga3b91 Fisher & Paykel Appliances (New Zealand)'), (75445, 'https://ror.org/00ggswp78', 'no_lang_code', 1, 'https://ror.org/00ggswp78 Ganesamoni Hospital'), (75446, 'https://ror.org/00ghe3j58', 'no_lang_code', 1, 'https://ror.org/00ghe3j58 Koken (Japan) 株式会社高研'), (75447, 'https://ror.org/00ghnph13', 'en', 1, 'https://ror.org/00ghnph13 Fujian Blood Center 福建血液中心'), (75448, 'https://ror.org/00gj56b42', 'en', 1, 'https://ror.org/00gj56b42 Friends of Rosie Children''s Cancer Research Fund'), (75449, 'https://ror.org/00gjhva62', 'en', 1, 'https://ror.org/00gjhva62 Lifecare Innovations (India)'), (75450, 'https://ror.org/00gk5fa11', 'en', 1, 'https://ror.org/00gk5fa11 Sheikh Shakhbout Medical City مدينة الشيخ شخبوط الطبية'), (75451, 'https://ror.org/00gnzfk51', 'no_lang_code', 1, 'https://ror.org/00gnzfk51 Sansho (Japan) 三晶株式会社'), (75452, 'https://ror.org/00gqx0b07', 'no_lang_code', 1, 'https://ror.org/00gqx0b07 Xenotran (United States)'), (75453, 'https://ror.org/00grkfw93', 'no_lang_code', 1, 'https://ror.org/00grkfw93 Slovenská Elektrizačná Prenosová Sústava (Slovakia)'), (75454, 'https://ror.org/00gsmyw97', 'en', 1, 'https://ror.org/00gsmyw97 Central Avian Research Institute केन्द्रीय पक्षी अनुसंधान संस्थान'), (75455, 'https://ror.org/00gv7g150', 'en', 1, 'https://ror.org/00gv7g150 Clinica Esperanza/Hope Clinic'), (75456, 'https://ror.org/00gvawq92', 'no_lang_code', 1, 'https://ror.org/00gvawq92 Reflexion Health (United States)'), (75457, 'https://ror.org/00gvay066', 'pt', 1, 'https://ror.org/00gvay066 Instituto Gremar'), (75458, 'https://ror.org/00gw0v185', 'no_lang_code', 1, 'https://ror.org/00gw0v185 Inovance (China)'), (75459, 'https://ror.org/00gxg2532', 'en', 1, 'https://ror.org/00gxg2532 Association for Bahá’í Studies'), (75460, 'https://ror.org/00gz53f50', 'en', 1, 'https://ror.org/00gz53f50 Centre for Public Policy Research'), (75461, 'https://ror.org/00gzext40', 'no_lang_code', 1, 'https://ror.org/00gzext40 Operative Experience (United States)'), (75462, 'https://ror.org/00h03ws35', 'no_lang_code', 1, 'https://ror.org/00h03ws35 Institut für Umwelttechnologien (Germany)'), (75463, 'https://ror.org/00h2m4d20', 'en', 1, 'https://ror.org/00h2m4d20 Hemophilia Center of Iran کانون هموفیلی ایران'), (75464, 'https://ror.org/00h46mj69', 'no_lang_code', 1, 'https://ror.org/00h46mj69 Seer Systems (United States)'), (75465, 'https://ror.org/00h539j16', 'en', 1, 'https://ror.org/00h539j16 Bavarian Research Institute for Digital Transformation Bayerisches Forschungsinstitut für digitale Transformation'), (75466, 'https://ror.org/00h56hn14', 'no_lang_code', 1, 'https://ror.org/00h56hn14 SK Discovery (South Korea) SK디스커버리'), (75467, 'https://ror.org/00h626c53', 'en', 1, 'https://ror.org/00h626c53 The Fourth People''s Hospital of Zibo City 淄博市第四人民医院'), (75468, 'https://ror.org/00h7cs967', 'en', 1, 'https://ror.org/00h7cs967 Mid-Atlantic University Transportation Center'), (75469, 'https://ror.org/00h8xmr33', 'no_lang_code', 1, 'https://ror.org/00h8xmr33 Science Learning Resources (United States)'), (75470, 'https://ror.org/00h9s7503', 'no_lang_code', 1, 'https://ror.org/00h9s7503 TrueOne Semiconductor (China) 众元半导体'), (75471, 'https://ror.org/00habgn55', 'de', 1, 'https://ror.org/00habgn55 Die Senatorin für Kinder und Bildung'), (75472, 'https://ror.org/00hanm733', 'en', 1, 'https://ror.org/00hanm733 Kyoto Prefectural Library and Archives 京都府立総合資料館'), (75473, 'https://ror.org/00hbc3482', 'de', 1, 'https://ror.org/00hbc3482 Institut für Innovations- und Informationsmanagement'), (75474, 'https://ror.org/00hbteh17', 'de', 1, 'https://ror.org/00hbteh17 Forschungsvereinigung Elektrotechnik beim ZVEI'), (75475, 'https://ror.org/00hew8j40', 'no_lang_code', 1, 'https://ror.org/00hew8j40 TaiGen Biotechnology (Taiwan)'), (75476, 'https://ror.org/00hfjx819', 'no_lang_code', 1, 'https://ror.org/00hfjx819 OSRAM (United Kingdom)'), (75477, 'https://ror.org/00hgexf21', 'no_lang_code', 1, 'https://ror.org/00hgexf21 TranS1 (United States)'), (75478, 'https://ror.org/00hgn5a42', 'no_lang_code', 1, 'https://ror.org/00hgn5a42 Sentien (United States)'), (75479, 'https://ror.org/00hgq7r66', 'no_lang_code', 1, 'https://ror.org/00hgq7r66 Fichtner (Germany)'), (75480, 'https://ror.org/00hkvk052', 'en', 1, 'https://ror.org/00hkvk052 Forschungsinstitut für Bildungs- und Sozialökonomie Research Institute for the Economics of Education and Social Affairs'), (75481, 'https://ror.org/00hm4a331', 'en', 1, 'https://ror.org/00hm4a331 Antwerp Management School'), (75482, 'https://ror.org/00hn06s81', 'no_lang_code', 1, 'https://ror.org/00hn06s81 Everspin Technologies (United States)'), (75483, 'https://ror.org/00hn65a26', 'en', 1, 'https://ror.org/00hn65a26 Banco Central de la República Argentina Central Bank of Argentina'), (75484, 'https://ror.org/00hn7pt27', 'de', 1, 'https://ror.org/00hn7pt27 Haus der Natur - Museum für Natur und Technik'), (75485, 'https://ror.org/00hq78102', 'no_lang_code', 1, 'https://ror.org/00hq78102 A.M. Surgical (United States)'), (75486, 'https://ror.org/00hv1r627', 'en', 1, 'https://ror.org/00hv1r627 Shenzhen Research Institute of China University of Geosciences 中国地质大学深圳研究院'), (75487, 'https://ror.org/00hxc6390', 'no_lang_code', 1, 'https://ror.org/00hxc6390 NanoGraf (United States)'), (75488, 'https://ror.org/00hxnw991', 'no_lang_code', 1, 'https://ror.org/00hxnw991 Theva (Germany)'), (75489, 'https://ror.org/00hyd8090', 'de', 1, 'https://ror.org/00hyd8090 Institut für Medizinische Biometrie, Informatik und Epidemiologie'), (75490, 'https://ror.org/00j08hk87', 'no_lang_code', 1, 'https://ror.org/00j08hk87 Adama (Israel) אדמה בע"מ'), (75491, 'https://ror.org/00j0ctk30', 'en', 1, 'https://ror.org/00j0ctk30 Banc Ceannais na hÉireann Central Bank of Ireland'), (75492, 'https://ror.org/00j0gr892', 'en', 1, 'https://ror.org/00j0gr892 Women''s Coalition of Zimbabwe'), (75493, 'https://ror.org/00j48ny80', 'no_lang_code', 1, 'https://ror.org/00j48ny80 Focused Photonics (China) 聚光科技'), (75494, 'https://ror.org/00j7rye35', 'en', 1, 'https://ror.org/00j7rye35 Cambridge Science Centre'), (75495, 'https://ror.org/00jabcz03', 'no_lang_code', 1, 'https://ror.org/00jabcz03 Zobele (Italy)'), (75496, 'https://ror.org/00jb5hw73', 'no_lang_code', 1, 'https://ror.org/00jb5hw73 Tasso (United States)'), (75497, 'https://ror.org/00jbakb92', 'no_lang_code', 1, 'https://ror.org/00jbakb92 Branston (United Kingdom)'), (75498, 'https://ror.org/00jd15125', 'no_lang_code', 1, 'https://ror.org/00jd15125 Propath Services (United States)'), (75499, 'https://ror.org/00jd3sh61', 'no_lang_code', 1, 'https://ror.org/00jd3sh61 HKScan (Finland)'), (75500, 'https://ror.org/00jep9q10', 'no_lang_code', 1, 'https://ror.org/00jep9q10 KOSÉ (Japan) 株式会社コーセー'), (75501, 'https://ror.org/00jfeg660', 'en', 1, 'https://ror.org/00jfeg660 Center for the Neural Basis of Cognition'), (75502, 'https://ror.org/00jffhp45', 'no_lang_code', 1, 'https://ror.org/00jffhp45 POGO (United States)'), (75503, 'https://ror.org/00jgaep33', 'es', 1, 'https://ror.org/00jgaep33 Dr. Lucio Meléndez Hospital Zonal General de Agudos'), (75504, 'https://ror.org/00jhgmb27', 'no_lang_code', 1, 'https://ror.org/00jhgmb27 iCeutica (United States)'), (75505, 'https://ror.org/00jj3h083', 'en', 1, 'https://ror.org/00jj3h083 Institute of Plant and Microbial Biology, Academia Sinica 中央研究院植物暨微生物學研究所'), (75506, 'https://ror.org/00jpm8e16', 'no_lang_code', 1, 'https://ror.org/00jpm8e16 Mattson Technology (Germany)'), (75507, 'https://ror.org/00js99a33', 'de', 1, 'https://ror.org/00js99a33 Batteryuniversity'), (75508, 'https://ror.org/00jsec129', 'en', 1, 'https://ror.org/00jsec129 Pädagogische Hochschule Oberösterreich University of Education Upper Austria'), (75509, 'https://ror.org/00jsnkt88', 'no_lang_code', 1, 'https://ror.org/00jsnkt88 Dragonfly Data Science (New Zealand)'), (75510, 'https://ror.org/00jt3dw39', 'en', 1, 'https://ror.org/00jt3dw39 Institute of Biological Chemistry, Academia Sinica 中央研究院生物化學研究所'), (75511, 'https://ror.org/00jv6rk33', 'no_lang_code', 1, 'https://ror.org/00jv6rk33 Nehemiah Security (United States)'); INSERT INTO `rors` VALUES (75512, 'https://ror.org/00jy7vv12', 'de', 1, 'https://ror.org/00jy7vv12 Verein für Umweltmanagement und Nachhaltigkeit in Finanzinstituten'), (75513, 'https://ror.org/00jzyfv14', 'no_lang_code', 1, 'https://ror.org/00jzyfv14 Meyra (Germany)'), (75514, 'https://ror.org/00k03v073', 'no_lang_code', 1, 'https://ror.org/00k03v073 CoImmune (United States)'), (75515, 'https://ror.org/00k085e72', 'no_lang_code', 1, 'https://ror.org/00k085e72 NanoMedical Systems (United States)'), (75516, 'https://ror.org/00k1y3f49', 'en', 1, 'https://ror.org/00k1y3f49 Vector & Vector-Borne Diseases Research Institute'), (75517, 'https://ror.org/00k389k29', 'no_lang_code', 1, 'https://ror.org/00k389k29 Rahko (United Kingdom)'), (75518, 'https://ror.org/00k8bhh21', 'en', 1, 'https://ror.org/00k8bhh21 Polar Libraries Colloquy'), (75519, 'https://ror.org/00k9exb07', 'no_lang_code', 1, 'https://ror.org/00k9exb07 Yashentech (China) 亚申科技'), (75520, 'https://ror.org/00kan1k39', 'en', 1, 'https://ror.org/00kan1k39 VA Illiana Health Care System'), (75521, 'https://ror.org/00kbw8090', 'no_lang_code', 1, 'https://ror.org/00kbw8090 Hameln (Slovakia)'), (75522, 'https://ror.org/00kc2sb72', 'fr', 1, 'https://ror.org/00kc2sb72 Centre Hospitalier Régional de Namur'), (75523, 'https://ror.org/00kc5p198', 'en', 1, 'https://ror.org/00kc5p198 Defence Bioengineering and Electromedical Laboratory रक्षा जैव प्रौद्योगिकी और विद्युत चिकित्सकीय प्रयोगशाला'), (75524, 'https://ror.org/00kcb8667', 'no_lang_code', 1, 'https://ror.org/00kcb8667 Airway Technologies (United States)'), (75525, 'https://ror.org/00kd86526', 'no_lang_code', 1, 'https://ror.org/00kd86526 Ultradent Products (United States)'), (75526, 'https://ror.org/00kewyc44', 'no_lang_code', 1, 'https://ror.org/00kewyc44 Praj (India)'), (75527, 'https://ror.org/00kfae706', 'en', 1, 'https://ror.org/00kfae706 Qinzhou Maternity and Child Health Care Hospital 钦州市妇幼保健院'), (75528, 'https://ror.org/00khe8x73', 'no_lang_code', 1, 'https://ror.org/00khe8x73 Tennet (Germany)'), (75529, 'https://ror.org/00khsgc96', 'no_lang_code', 1, 'https://ror.org/00khsgc96 The RebornCell (South Korea) 더리본셀'), (75530, 'https://ror.org/00kr78d81', 'no_lang_code', 1, 'https://ror.org/00kr78d81 Nippon Chemiphar (Japan)'), (75531, 'https://ror.org/00krh1q73', 'no_lang_code', 1, 'https://ror.org/00krh1q73 Smart Electric Grid (United States)'), (75532, 'https://ror.org/00kt9hm47', 'no_lang_code', 1, 'https://ror.org/00kt9hm47 Hensoldt (Germany)'), (75533, 'https://ror.org/00kw49k87', 'en', 1, 'https://ror.org/00kw49k87 Equal Justice Initiative'), (75534, 'https://ror.org/00kwmw966', 'no_lang_code', 1, 'https://ror.org/00kwmw966 MeVis BreastCare (Germany)'), (75535, 'https://ror.org/00kxdws42', 'no_lang_code', 1, 'https://ror.org/00kxdws42 Neovasc Tiara (Canada)'), (75536, 'https://ror.org/00ky63q47', 'no_lang_code', 1, 'https://ror.org/00ky63q47 Pentum Group (United States)'), (75537, 'https://ror.org/00m0wp850', 'no_lang_code', 1, 'https://ror.org/00m0wp850 Ascensia Diabetes Care (Switzerland)'), (75538, 'https://ror.org/00m1bsz76', 'en', 1, 'https://ror.org/00m1bsz76 Federal Polytechnic Oko'), (75539, 'https://ror.org/00m22r904', 'no_lang_code', 1, 'https://ror.org/00m22r904 Vim Spectrum'), (75540, 'https://ror.org/00m235s66', 'en', 1, 'https://ror.org/00m235s66 Solar Heating and Cooling Programme'), (75541, 'https://ror.org/00m25j606', 'no_lang_code', 1, 'https://ror.org/00m25j606 Polypipe (United Kingdom)'), (75542, 'https://ror.org/00m6hew51', 'en', 1, 'https://ror.org/00m6hew51 Center for Creative Initiatives in Health and Population'), (75543, 'https://ror.org/00m6yzj29', 'no_lang_code', 1, 'https://ror.org/00m6yzj29 Northern Microdesign (United States)'), (75544, 'https://ror.org/00m73vh91', 'no_lang_code', 1, 'https://ror.org/00m73vh91 RS Global (Poland)'), (75545, 'https://ror.org/00m7w6q76', 'no_lang_code', 1, 'https://ror.org/00m7w6q76 Exxelia (France)'), (75546, 'https://ror.org/00mbc1g87', 'de', 1, 'https://ror.org/00mbc1g87 Chamber of Agriculture in Lower Saxony Landwirtschaftskammer Niedersachsen'), (75547, 'https://ror.org/00mbpre48', 'no_lang_code', 1, 'https://ror.org/00mbpre48 Solano Pharmaceuticals (United States)'), (75548, 'https://ror.org/00mcaq341', 'no_lang_code', 1, 'https://ror.org/00mcaq341 Indi-Vet (Israel) אינדי-וט'), (75549, 'https://ror.org/00mczy147', 'de', 1, 'https://ror.org/00mczy147 Medien Management Institut'), (75550, 'https://ror.org/00mdwv587', 'no_lang_code', 1, 'https://ror.org/00mdwv587 Lungpacer Medical (Canada)'), (75551, 'https://ror.org/00me6gs45', 'no_lang_code', 1, 'https://ror.org/00me6gs45 LafargeHolcim (Switzerland)'), (75552, 'https://ror.org/00meeqp26', 'no_lang_code', 1, 'https://ror.org/00meeqp26 nPoint (United States)'), (75553, 'https://ror.org/00mf9x671', 'en', 1, 'https://ror.org/00mf9x671 Cook County Department of Public Health'), (75554, 'https://ror.org/00mffe072', 'no_lang_code', 1, 'https://ror.org/00mffe072 Advanced Procurement Center (United States)'), (75555, 'https://ror.org/00mft6s50', 'no_lang_code', 1, 'https://ror.org/00mft6s50 Daihachi Chemical Industry (Japan)'), (75556, 'https://ror.org/00mhjxz04', 'no_lang_code', 1, 'https://ror.org/00mhjxz04 NovaBiotics (United Kingdom)'), (75557, 'https://ror.org/00mmqn314', 'no_lang_code', 1, 'https://ror.org/00mmqn314 Rincon Research (United States)'), (75558, 'https://ror.org/00mn4cb09', 'no_lang_code', 1, 'https://ror.org/00mn4cb09 Surfx Technologies (United States)'), (75559, 'https://ror.org/00mne8d28', 'no_lang_code', 1, 'https://ror.org/00mne8d28 Institut für Angewandte Funksystemtechnik (Germany)'), (75560, 'https://ror.org/00mpvse27', 'es', 1, 'https://ror.org/00mpvse27 Instituto Español de Estudios Estratégicos'), (75561, 'https://ror.org/00msx4d41', 'no_lang_code', 1, 'https://ror.org/00msx4d41 FLAVIA IT (Germany)'), (75562, 'https://ror.org/00mv0vt78', 'no_lang_code', 1, 'https://ror.org/00mv0vt78 Biotech Park बायोटेक पार्क'), (75563, 'https://ror.org/00mv0zs85', 'de', 1, 'https://ror.org/00mv0zs85 Grimme Institut'), (75564, 'https://ror.org/00mwqgc26', 'no_lang_code', 1, 'https://ror.org/00mwqgc26 Anocca (Sweden)'), (75565, 'https://ror.org/00mxz0t84', 'no_lang_code', 1, 'https://ror.org/00mxz0t84 Wuhan Amysen Life Technology (China)'), (75566, 'https://ror.org/00myrf395', 'no_lang_code', 1, 'https://ror.org/00myrf395 Restech (United States)'), (75567, 'https://ror.org/00mz4by06', 'en', 1, 'https://ror.org/00mz4by06 Provinciaal Instituut voor Hygiëne Provincial Institute for Hygiene'), (75568, 'https://ror.org/00mz6cr89', 'en', 1, 'https://ror.org/00mz6cr89 Be Strong, Fight On!'), (75569, 'https://ror.org/00n1nbv85', 'no_lang_code', 1, 'https://ror.org/00n1nbv85 Advanced BioNutrition (United States)'), (75570, 'https://ror.org/00n20v437', 'en', 1, 'https://ror.org/00n20v437 Kochi Prefecture Archaeological Center 高知県立埋蔵文化財センター'), (75571, 'https://ror.org/00n2yhr54', 'en', 1, 'https://ror.org/00n2yhr54 Norton Priory Museum & Gardens'), (75572, 'https://ror.org/00n49pr77', 'no_lang_code', 1, 'https://ror.org/00n49pr77 Digital China Health (China) 神州医疗'), (75573, 'https://ror.org/00n7khb11', 'no_lang_code', 1, 'https://ror.org/00n7khb11 Sana Biotechnology (United States)'), (75574, 'https://ror.org/00n9sg246', 'en', 1, 'https://ror.org/00n9sg246 Association of British Neurologists'), (75575, 'https://ror.org/00ndx3g44', 'en', 1, 'https://ror.org/00ndx3g44 Hamamatsu University School of Medicine 浜松医科大学'), (75576, 'https://ror.org/00ne4ap63', 'fr', 1, 'https://ror.org/00ne4ap63 Université Tertiaire et Technologique-Lokko'), (75577, 'https://ror.org/00nf7ms20', 'en', 1, 'https://ror.org/00nf7ms20 Institute of Sociology, Academia Sinica 中央研究院社會學研究所'), (75578, 'https://ror.org/00nfe8z20', 'no_lang_code', 1, 'https://ror.org/00nfe8z20 Hachaklait (Israel) החקלאית'), (75579, 'https://ror.org/00ng9c593', 'en', 1, 'https://ror.org/00ng9c593 Stockholm Environment Institute'), (75580, 'https://ror.org/00nhmr817', 'nl', 1, 'https://ror.org/00nhmr817 Port of Moerdijk'), (75581, 'https://ror.org/00nhwjb64', 'no_lang_code', 1, 'https://ror.org/00nhwjb64 Michelin (Japan)'), (75582, 'https://ror.org/00nhwxe66', 'en', 1, 'https://ror.org/00nhwxe66 Deutsches Technikmuseum Berlin German Museum of Technology'), (75583, 'https://ror.org/00njqng43', 'de', 1, 'https://ror.org/00njqng43 Institut für Musikinstrumentenbau'), (75584, 'https://ror.org/00njwz164', 'en', 1, 'https://ror.org/00njwz164 Jyoban Hospital 常磐病院'), (75585, 'https://ror.org/00nkeq441', 'en', 1, 'https://ror.org/00nkeq441 Research Institute of Tropical Forestry 中国林业科学研究院热带林业研究所'), (75586, 'https://ror.org/00npgvt11', 'no_lang_code', 1, 'https://ror.org/00npgvt11 Traverse Biosciences (United States)'), (75587, 'https://ror.org/00nq5xx94', 'no_lang_code', 1, 'https://ror.org/00nq5xx94 CMR Surgical (United Kingdom)'), (75588, 'https://ror.org/00nrdcp20', 'no_lang_code', 1, 'https://ror.org/00nrdcp20 Windmill International (United States)'), (75589, 'https://ror.org/00nt0xf41', 'en', 1, 'https://ror.org/00nt0xf41 Islamic Azad University of Gachsaran دانشگاه آزاد اسلامی واحد گچساران'), (75590, 'https://ror.org/00nwtn727', 'no_lang_code', 1, 'https://ror.org/00nwtn727 Scott Laboratories (United States)'), (75591, 'https://ror.org/00ny2ab23', 'no_lang_code', 1, 'https://ror.org/00ny2ab23 Thermal Storage Systems (United States)'), (75592, 'https://ror.org/00ny9n194', 'no_lang_code', 1, 'https://ror.org/00ny9n194 SuperTurbo Technologies (United States)'), (75593, 'https://ror.org/00nz5p994', 'no_lang_code', 1, 'https://ror.org/00nz5p994 Dongwha Pharm (South Korea)'), (75594, 'https://ror.org/00p2sbg88', 'en', 1, 'https://ror.org/00p2sbg88 Passive House Institute Passivhaus Institut'), (75595, 'https://ror.org/00p4ry522', 'no_lang_code', 1, 'https://ror.org/00p4ry522 Nomura Research Institute 株式会社野村総合研究所'), (75596, 'https://ror.org/00p574j49', 'hr', 1, 'https://ror.org/00p574j49 Institut za filozofiju Institute of Philosophy'), (75597, 'https://ror.org/00p64v472', 'no_lang_code', 1, 'https://ror.org/00p64v472 Aker (Norway)'), (75598, 'https://ror.org/00p6fj621', 'no_lang_code', 1, 'https://ror.org/00p6fj621 Inis Biotech (Argentina)'), (75599, 'https://ror.org/00p77dx36', 'en', 1, 'https://ror.org/00p77dx36 Usambara Field Studies Centre'), (75600, 'https://ror.org/00pam4d71', 'no_lang_code', 1, 'https://ror.org/00pam4d71 Badger Licensing (United States)'), (75601, 'https://ror.org/00pbcb885', 'en', 1, 'https://ror.org/00pbcb885 National Energy Commission 国家能源委员会'), (75602, 'https://ror.org/00pdfdm61', 'no_lang_code', 1, 'https://ror.org/00pdfdm61 Specialty Materials (United States)'), (75603, 'https://ror.org/00pdgtx79', 'fr', 1, 'https://ror.org/00pdgtx79 Institut Supérieur de Développement Rural'), (75604, 'https://ror.org/00pdsbg03', 'no_lang_code', 1, 'https://ror.org/00pdsbg03 Arkema (United Kingdom)'), (75605, 'https://ror.org/00pg0dt16', 'de', 1, 'https://ror.org/00pg0dt16 Hessische Lehrkräfteakademie'), (75606, 'https://ror.org/00pgx7e04', 'no_lang_code', 1, 'https://ror.org/00pgx7e04 Q-Flex (United States)'), (75607, 'https://ror.org/00phbja87', 'en', 1, 'https://ror.org/00phbja87 State Administration of Foreign Exchange 国家外汇管理局'), (75608, 'https://ror.org/00phja430', 'no_lang_code', 1, 'https://ror.org/00phja430 Science and Technology in Atmospheric Research (United States)'), (75609, 'https://ror.org/00pm0z037', 'en', 1, 'https://ror.org/00pm0z037 Georgia''s Innovation and Technology Agency საქართველოს ინოვაციების და ტექნოლოგიების სააგენტო'), (75610, 'https://ror.org/00pmn2q29', 'no_lang_code', 1, 'https://ror.org/00pmn2q29 Sencera Energy (United States)'), (75611, 'https://ror.org/00pmqj178', 'en', 1, 'https://ror.org/00pmqj178 Eunpyeong Hospital 서울특별시 은평병원'), (75612, 'https://ror.org/00pnc3s81', 'en', 1, 'https://ror.org/00pnc3s81 Research Center for Agricultural Information Technology 農業情報研究センター'), (75613, 'https://ror.org/00pnhtk88', 'en', 1, 'https://ror.org/00pnhtk88 Indiana Geological and Water Survey'), (75614, 'https://ror.org/00pp12j94', 'en', 1, 'https://ror.org/00pp12j94 China Development Bank 国家开发银行'), (75615, 'https://ror.org/00pph5857', 'no_lang_code', 1, 'https://ror.org/00pph5857 Atos (Slovakia)'), (75616, 'https://ror.org/00pptj576', 'de', 1, 'https://ror.org/00pptj576 Institut für Fortbildung, Forschung und Entwicklung'), (75617, 'https://ror.org/00psjjw10', 'no_lang_code', 1, 'https://ror.org/00psjjw10 Ventrix (United States)'), (75618, 'https://ror.org/00ptgb077', 'de', 1, 'https://ror.org/00ptgb077 Staatsinstitut für Schulqualität und Bildungsforschung'), (75619, 'https://ror.org/00pv01967', 'en', 1, 'https://ror.org/00pv01967 Kunming Third People''s Hospital 昆明市第三人民医院成'), (75620, 'https://ror.org/00pw1cb61', 'no_lang_code', 1, 'https://ror.org/00pw1cb61 Vyne Therapeutics (Israel)'), (75621, 'https://ror.org/00pwcvj19', 'de', 1, 'https://ror.org/00pwcvj19 Hamburg State and University Library Staats- und Universitätsbibliothek Hamburg'), (75622, 'https://ror.org/00pwqz914', 'en', 1, 'https://ror.org/00pwqz914 Institut Kavli pour l''astrophysique des particules et la cosmologie Kavli Institute for Particle Astrophysics and Cosmology'), (75623, 'https://ror.org/00pxc7m47', 'no_lang_code', 1, 'https://ror.org/00pxc7m47 Shenzhen Bioeasy Biotechnology (China)'), (75624, 'https://ror.org/00pyf2p89', 'no_lang_code', 1, 'https://ror.org/00pyf2p89 TMG (Slovakia)'), (75625, 'https://ror.org/00q0vag25', 'en', 1, 'https://ror.org/00q0vag25 William and Barbara Leonard Transportation Center'), (75626, 'https://ror.org/00q1p9b30', 'en', 1, 'https://ror.org/00q1p9b30 Southern Tohoku General Hospital 総合南東北病院'), (75627, 'https://ror.org/00q2vrq29', 'no_lang_code', 1, 'https://ror.org/00q2vrq29 Collegium Pharmaceutical (United States)'), (75628, 'https://ror.org/00q51ae51', 'no_lang_code', 1, 'https://ror.org/00q51ae51 BAROnova (United States)'), (75629, 'https://ror.org/00q5t0010', 'en', 1, 'https://ror.org/00q5t0010 Leibniz Institute for Resilience Research Leibniz-Institut für Resilienzforschung'), (75630, 'https://ror.org/00q7z2571', 'de', 1, 'https://ror.org/00q7z2571 Forschungszentrum Energiespeichertechnologien'), (75631, 'https://ror.org/00q8frg87', 'no_lang_code', 1, 'https://ror.org/00q8frg87 Marathon (United States)'), (75632, 'https://ror.org/00q8gqq97', 'no_lang_code', 1, 'https://ror.org/00q8gqq97 ProteinQure (Canada)'), (75633, 'https://ror.org/00qapk656', 'en', 1, 'https://ror.org/00qapk656 Royal Alberta Museum'), (75634, 'https://ror.org/00qc6xh17', 'no_lang_code', 1, 'https://ror.org/00qc6xh17 Medacta International (Switzerland)'), (75635, 'https://ror.org/00qdw5r51', 'no_lang_code', 1, 'https://ror.org/00qdw5r51 Research, Evaluation and Social Solutions (United States)'), (75636, 'https://ror.org/00qdzme95', 'no_lang_code', 1, 'https://ror.org/00qdzme95 SignPath Pharma (United States)'), (75637, 'https://ror.org/00qeeg419', 'de', 1, 'https://ror.org/00qeeg419 Arbeitsgemeinschaft ökologischer Forschungsinstitute'), (75638, 'https://ror.org/00qfke340', 'en', 1, 'https://ror.org/00qfke340 Institute of Molecular Functional Materials 分子功能材料研究所'), (75639, 'https://ror.org/00qg8pm87', 'no_lang_code', 1, 'https://ror.org/00qg8pm87 Line Corporation (Japan)'), (75640, 'https://ror.org/00qh9vh90', 'no_lang_code', 1, 'https://ror.org/00qh9vh90 Phiar (United States)'), (75641, 'https://ror.org/00qhbve66', 'no_lang_code', 1, 'https://ror.org/00qhbve66 PI Electronics (China)'), (75642, 'https://ror.org/00qhpe738', 'no_lang_code', 1, 'https://ror.org/00qhpe738 Insightra Medical (United States)'), (75643, 'https://ror.org/00qhvgf79', 'en', 1, 'https://ror.org/00qhvgf79 Research Center in Industrial Technologies وزارة التعليم العالي و البحث العلمي'), (75644, 'https://ror.org/00qhzxe29', 'no_lang_code', 1, 'https://ror.org/00qhzxe29 Prevayl (United Kingdom)'), (75645, 'https://ror.org/00qjps318', 'en', 1, 'https://ror.org/00qjps318 China Enterprise Confederation 中国企业联合会'), (75646, 'https://ror.org/00qjtn636', 'en', 1, 'https://ror.org/00qjtn636 Qinghai No.3 People''s Hospital 青海省第三人民医院'), (75647, 'https://ror.org/00qkwk946', 'fr', 1, 'https://ror.org/00qkwk946 Institut de la Filtration et des Techniques Séparatives'), (75648, 'https://ror.org/00qmj8087', 'no_lang_code', 1, 'https://ror.org/00qmj8087 Ideaya Biosciences (United States)'), (75649, 'https://ror.org/00qpxe165', 'no_lang_code', 1, 'https://ror.org/00qpxe165 Faculty (United Kingdom)'), (75650, 'https://ror.org/00qqrrn06', 'no_lang_code', 1, 'https://ror.org/00qqrrn06 Rebion (United States)'), (75651, 'https://ror.org/00qr9qz34', 'en', 1, 'https://ror.org/00qr9qz34 Gamagori City Marine Science Museum 蒲郡市生命の海科学館'), (75652, 'https://ror.org/00qry0z04', 'no_lang_code', 1, 'https://ror.org/00qry0z04 Ionetix (United States)'), (75653, 'https://ror.org/00qtzg544', 'en', 1, 'https://ror.org/00qtzg544 Wuhan Wudong Hospital 武汉市武东医院'), (75654, 'https://ror.org/00qv2zm13', 'en', 1, 'https://ror.org/00qv2zm13 Agricultural Research Service - Pacific West Area'), (75655, 'https://ror.org/00qw2t413', 'no_lang_code', 1, 'https://ror.org/00qw2t413 Lifetech Scientific (China)'), (75656, 'https://ror.org/00qxryb75', 'de', 1, 'https://ror.org/00qxryb75 Landesnahverkehrsgesellschaft Niedersachsen'), (75657, 'https://ror.org/00qy2fm62', 'no_lang_code', 1, 'https://ror.org/00qy2fm62 Beijing Zhongke Science and Technology (China) 北京中科科仪股份有限公司'), (75658, 'https://ror.org/00r23cm16', 'no_lang_code', 1, 'https://ror.org/00r23cm16 Groupe Lesaffre Lesaffre (France)'), (75659, 'https://ror.org/00r2x0p54', 'no_lang_code', 1, 'https://ror.org/00r2x0p54 Biomark (United States)'), (75660, 'https://ror.org/00r4e6n79', 'de', 1, 'https://ror.org/00r4e6n79 Institut für Innovation, Transfer und Beratung'), (75661, 'https://ror.org/00r4fsd57', 'en', 1, 'https://ror.org/00r4fsd57 North Canyon Medical Center'), (75662, 'https://ror.org/00r8dbc04', 'no_lang_code', 1, 'https://ror.org/00r8dbc04 Floratech (United States)'), (75663, 'https://ror.org/00r9q8b87', 'no_lang_code', 1, 'https://ror.org/00r9q8b87 Click Diagnostics (United States)'), (75664, 'https://ror.org/00rat0g20', 'en', 1, 'https://ror.org/00rat0g20 Amanosan Cultural Heritages Research Institute 一般社団法人 天野山文化遺産研究所'), (75665, 'https://ror.org/00rb4xa96', 'en', 1, 'https://ror.org/00rb4xa96 United Nations Office for Project Services'), (75666, 'https://ror.org/00rbf3t83', 'no_lang_code', 1, 'https://ror.org/00rbf3t83 Silicon Therapeutics (United States)'), (75667, 'https://ror.org/00rbnp372', 'no_lang_code', 1, 'https://ror.org/00rbnp372 System Dynamics International (United States)'), (75668, 'https://ror.org/00rbzv406', 'no_lang_code', 1, 'https://ror.org/00rbzv406 Object Computing (United States)'), (75669, 'https://ror.org/00recnr76', 'en', 1, 'https://ror.org/00recnr76 Centre for Democracy and Development'), (75670, 'https://ror.org/00red6q96', 'id', 1, 'https://ror.org/00red6q96 Politeknik Medica Farma Husada Mataram'), (75671, 'https://ror.org/00rezvm23', 'no_lang_code', 1, 'https://ror.org/00rezvm23 Atea Pharmaceuticals (United States)'), (75672, 'https://ror.org/00rgsn672', 'no_lang_code', 1, 'https://ror.org/00rgsn672 Stannah (United Kingdom)'), (75673, 'https://ror.org/00rjxfx39', 'no_lang_code', 1, 'https://ror.org/00rjxfx39 E-Techco Group (China)'), (75674, 'https://ror.org/00rm7zs53', 'de', 1, 'https://ror.org/00rm7zs53 Zug Cantonal Hospital, Zuger Kantonsspital'), (75675, 'https://ror.org/00rpy3653', 'no_lang_code', 1, 'https://ror.org/00rpy3653 Caregen (South Korea)'), (75676, 'https://ror.org/00rqckp81', 'no_lang_code', 1, 'https://ror.org/00rqckp81 Quantum Diamond Technologies (United States)'), (75677, 'https://ror.org/00rr70t41', 'en', 1, 'https://ror.org/00rr70t41 Experimental Center of Tropical Forestry 中国林业科学研究院热带林业实验中心'), (75678, 'https://ror.org/00rs9dy63', 'no_lang_code', 1, 'https://ror.org/00rs9dy63 Advanced Energy (United States)'), (75679, 'https://ror.org/00rtdby49', 'no_lang_code', 1, 'https://ror.org/00rtdby49 Ingeneric (Germany)'), (75680, 'https://ror.org/00rtdgr72', 'en', 1, 'https://ror.org/00rtdgr72 Mann-Grandstaff VA Medical Center'), (75681, 'https://ror.org/00ryt4t07', 'no_lang_code', 1, 'https://ror.org/00ryt4t07 Zeomedix (United States)'), (75682, 'https://ror.org/00rytkh49', 'en', 1, 'https://ror.org/00rytkh49 Shanghai Institute of Nutrition and Health 中国科学院 上海营养与健康研究院'), (75683, 'https://ror.org/00s05em53', 'en', 1, 'https://ror.org/00s05em53 RIKEN BioResource Research Center 理研バイオリソースセンター'), (75684, 'https://ror.org/00s3xpq12', 'en', 1, 'https://ror.org/00s3xpq12 Shandong Freshwater Fisheries Research Institute 山东省淡水渔业研究院'), (75685, 'https://ror.org/00s3ykq41', 'no_lang_code', 1, 'https://ror.org/00s3ykq41 Photonics (United States)'), (75686, 'https://ror.org/00s4w8768', 'no_lang_code', 1, 'https://ror.org/00s4w8768 First Quality (United States)'), (75687, 'https://ror.org/00s5nzf91', 'en', 1, 'https://ror.org/00s5nzf91 Baoson Hospital Bệnh viện Đa khoa Bảo Sơn'), (75688, 'https://ror.org/00s653v54', 'en', 1, 'https://ror.org/00s653v54 Misato Observatory みさと天文台'), (75689, 'https://ror.org/00s6yzk33', 'no_lang_code', 1, 'https://ror.org/00s6yzk33 Exogenesis (United States)'), (75690, 'https://ror.org/00scx1h10', 'en', 1, 'https://ror.org/00scx1h10 Health Education England'), (75691, 'https://ror.org/00sdg9z02', 'no_lang_code', 1, 'https://ror.org/00sdg9z02 Strategic Science & Technologies (United States)'), (75692, 'https://ror.org/00sf4jq50', 'de', 1, 'https://ror.org/00sf4jq50 Institut für Brand- und Katastrophenschutz Heyrothsberge'), (75693, 'https://ror.org/00sfd8n43', 'ca', 1, 'https://ror.org/00sfd8n43 Consorci d’Atenció Primària de Salut Barcelona Esquerra'), (75694, 'https://ror.org/00sh93275', 'no_lang_code', 1, 'https://ror.org/00sh93275 Seno Medical (United States)'), (75695, 'https://ror.org/00shjhx05', 'no_lang_code', 1, 'https://ror.org/00shjhx05 SMD (United States)'), (75696, 'https://ror.org/00sj01y46', 'de', 1, 'https://ror.org/00sj01y46 Waldrappteam'), (75697, 'https://ror.org/00skc8b63', 'en', 1, 'https://ror.org/00skc8b63 Ministry of Public Works Transportation and Communications Ministère des Travaux Publics Transports et Communications'), (75698, 'https://ror.org/00skh8d23', 'no_lang_code', 1, 'https://ror.org/00skh8d23 Modeinstitut Berlin (Germany)'), (75699, 'https://ror.org/00snk4s58', 'no_lang_code', 1, 'https://ror.org/00snk4s58 Primus Consulting (United States)'), (75700, 'https://ror.org/00sp0zs16', 'no_lang_code', 1, 'https://ror.org/00sp0zs16 Compass (United States)'), (75701, 'https://ror.org/00sq9j129', 'de', 1, 'https://ror.org/00sq9j129 Deutsche Gesellschaft für Information und Wissen'), (75702, 'https://ror.org/00sqkbc18', 'en', 1, 'https://ror.org/00sqkbc18 International Academy of Astronautics'), (75703, 'https://ror.org/00ss6h043', 'no_lang_code', 1, 'https://ror.org/00ss6h043 Promet Optics (United States)'), (75704, 'https://ror.org/00ssdzp21', 'no_lang_code', 1, 'https://ror.org/00ssdzp21 Lohmann (Germany)'), (75705, 'https://ror.org/00ssr5f77', 'no_lang_code', 1, 'https://ror.org/00ssr5f77 Alphatec Spine Approach Technologies (United States)'), (75706, 'https://ror.org/00ssr7512', 'en', 1, 'https://ror.org/00ssr7512 Shikoku Central Medical Welfare Institute 四国中央医療福祉総合学院'), (75707, 'https://ror.org/00stt1q70', 'no_lang_code', 1, 'https://ror.org/00stt1q70 Ensysce Biosciences (United States)'), (75708, 'https://ror.org/00svm1971', 'no_lang_code', 1, 'https://ror.org/00svm1971 Quantlab (United States)'), (75709, 'https://ror.org/00svpda47', 'en', 1, 'https://ror.org/00svpda47 Euro-Arab Foundation for Higher Studies'), (75710, 'https://ror.org/00sz65064', 'no_lang_code', 1, 'https://ror.org/00sz65064 Kringle Pharma (Japan) クリングルファーマ株式会社'), (75711, 'https://ror.org/00t2dcp03', 'no_lang_code', 1, 'https://ror.org/00t2dcp03 Sto (Germany)'), (75712, 'https://ror.org/00t35ff19', 'no_lang_code', 1, 'https://ror.org/00t35ff19 Arrayed Materials (China)'), (75713, 'https://ror.org/00t48m413', 'no_lang_code', 1, 'https://ror.org/00t48m413 Johns Manville (Slovakia)'), (75714, 'https://ror.org/00t4ywr83', 'no_lang_code', 1, 'https://ror.org/00t4ywr83 Goodman (Japan) 株式会社グッドマン'), (75715, 'https://ror.org/00t5ata22', 'no_lang_code', 1, 'https://ror.org/00t5ata22 Scribner (United States)'), (75716, 'https://ror.org/00t7bjm27', 'en', 1, 'https://ror.org/00t7bjm27 National Bank of Slovakia Národná banka Slovenska'), (75717, 'https://ror.org/00t7w7h84', 'fr', 1, 'https://ror.org/00t7w7h84 Le Soleil dans la Main'), (75718, 'https://ror.org/00t8pc875', 'en', 1, 'https://ror.org/00t8pc875 National Brain Centre Rumah Sakit Pusat Otak Nasional'), (75719, 'https://ror.org/00t9fb122', 'no_lang_code', 1, 'https://ror.org/00t9fb122 OpenCell Technologies (United States)'), (75720, 'https://ror.org/00tbnam70', 'no_lang_code', 1, 'https://ror.org/00tbnam70 iSense (United States)'), (75721, 'https://ror.org/00tbs6p91', 'en', 1, 'https://ror.org/00tbs6p91 Center for Nanoscale Science and Technology'), (75722, 'https://ror.org/00td9q934', 'en', 1, 'https://ror.org/00td9q934 Taiwan Semiconductor Industry Association'), (75723, 'https://ror.org/00te3ej54', 'no_lang_code', 1, 'https://ror.org/00te3ej54 ZoneOne Pharma (United States)'), (75724, 'https://ror.org/00tebjn14', 'no_lang_code', 1, 'https://ror.org/00tebjn14 Molecular Partners (Switzerland)'), (75725, 'https://ror.org/00tecmr39', 'no_lang_code', 1, 'https://ror.org/00tecmr39 Solutions Through Innovative Technologies (United States)'), (75726, 'https://ror.org/00tf8t528', 'no_lang_code', 1, 'https://ror.org/00tf8t528 Think Surgical (United States)'), (75727, 'https://ror.org/00tfv5n82', 'no_lang_code', 1, 'https://ror.org/00tfv5n82 Tegut (Germany)'), (75728, 'https://ror.org/00tjt8p18', 'no_lang_code', 1, 'https://ror.org/00tjt8p18 RF Laboratories (United States)'), (75729, 'https://ror.org/00tk46k54', 'en', 1, 'https://ror.org/00tk46k54 Sanjay Ghodawat University'), (75730, 'https://ror.org/00tkbqn95', 'no_lang_code', 1, 'https://ror.org/00tkbqn95 Widder Brothers (United States)'), (75731, 'https://ror.org/00tkrt383', 'en', 1, 'https://ror.org/00tkrt383 Chianti Multifunctional Observatory Osservatorio Polifunzionale del Chianti'), (75732, 'https://ror.org/00tm9pr75', 'en', 1, 'https://ror.org/00tm9pr75 Das Institut für Seevölkerrecht und Internationales Meersumweltrecht The Institute for the Law of the Sea and International Marine Environmental Law'), (75733, 'https://ror.org/00tna8k65', 'no_lang_code', 1, 'https://ror.org/00tna8k65 Purilogics (United States)'), (75734, 'https://ror.org/00tptkt39', 'no_lang_code', 1, 'https://ror.org/00tptkt39 NetDragon (United States)'), (75735, 'https://ror.org/00tpvmh02', 'no_lang_code', 1, 'https://ror.org/00tpvmh02 Huaibei Mining (China)'), (75736, 'https://ror.org/00tq9bz11', 'no_lang_code', 1, 'https://ror.org/00tq9bz11 Royalty Pharma (United States)'), (75737, 'https://ror.org/00tsej476', 'no_lang_code', 1, 'https://ror.org/00tsej476 Schwenk (Germany)'), (75738, 'https://ror.org/00tt3wc55', 'en', 1, 'https://ror.org/00tt3wc55 Xinjiang Uygur Autonomous Region Disease Prevention and Control Center 新疆维吾尔自治区疾病预防控制中心'), (75739, 'https://ror.org/00ttsnw25', 'en', 1, 'https://ror.org/00ttsnw25 College of Contract Management'), (75740, 'https://ror.org/00tvmqw18', 'no_lang_code', 1, 'https://ror.org/00tvmqw18 GenISys (Germany)'), (75741, 'https://ror.org/00tw8zf26', 'en', 1, 'https://ror.org/00tw8zf26 Centre For Human Genetics'), (75742, 'https://ror.org/00ty48v44', 'en', 1, 'https://ror.org/00ty48v44 The Fifth People''s Hospital of Anyang 安阳市第五人民医院'), (75743, 'https://ror.org/00tystp70', 'en', 1, 'https://ror.org/00tystp70 Narodowy Bank Polski National Bank of Poland'), (75744, 'https://ror.org/00v0f9w17', 'no_lang_code', 1, 'https://ror.org/00v0f9w17 Welland Medical (United Kingdom)'), (75745, 'https://ror.org/00v1nkq94', 'de', 1, 'https://ror.org/00v1nkq94 Landesamt für Kultur und Denkmalpflege Mecklenburg-Vorpommern'), (75746, 'https://ror.org/00v1x5b81', 'no_lang_code', 1, 'https://ror.org/00v1x5b81 PTC (United Kingdom)'), (75747, 'https://ror.org/00v28x102', 'no_lang_code', 1, 'https://ror.org/00v28x102 Syntrotek (United States)'), (75748, 'https://ror.org/00v4zth19', 'de', 1, 'https://ror.org/00v4zth19 Rechenkraft.net'), (75749, 'https://ror.org/00v5sgn53', 'no_lang_code', 1, 'https://ror.org/00v5sgn53 LDK Solar (China) 賽維太陽能'), (75750, 'https://ror.org/00v7p0n49', 'no_lang_code', 1, 'https://ror.org/00v7p0n49 Kyoto Pharmaceutical Industries (Japan) 京都薬品工業株式会社'), (75751, 'https://ror.org/00v7rqs27', 'no_lang_code', 1, 'https://ror.org/00v7rqs27 Mitsui Sugar (Japan) 三井製糖株式会社'), (75752, 'https://ror.org/00v7th354', 'en', 1, 'https://ror.org/00v7th354 The Mark Foundation for Cancer Research'), (75753, 'https://ror.org/00v8tjj64', 'de', 1, 'https://ror.org/00v8tjj64 Halle Zoo, Zoologischer Garten Halle'), (75754, 'https://ror.org/00vawgs19', 'no_lang_code', 1, 'https://ror.org/00vawgs19 United Initiators (Germany)'), (75755, 'https://ror.org/00vcb3m70', 'en', 1, 'https://ror.org/00vcb3m70 Biological and Chemical Oceanography Data Management Office'), (75756, 'https://ror.org/00vdc9c89', 'no_lang_code', 1, 'https://ror.org/00vdc9c89 Technology Applications Group (United States)'), (75757, 'https://ror.org/00veca956', 'en', 1, 'https://ror.org/00veca956 Islamic Azad University, Firuzabad Branch دانشگاه آزاد اسلامی واحد فیروزآباد'), (75758, 'https://ror.org/00vhhsw45', 'en', 1, 'https://ror.org/00vhhsw45 Vehicles Research Development Establishment'), (75759, 'https://ror.org/00vk1xe75', 'en', 1, 'https://ror.org/00vk1xe75 Liaoning Vocational College of Medical 辽宁医学院学报'), (75760, 'https://ror.org/00vmat262', 'no_lang_code', 1, 'https://ror.org/00vmat262 TianKai Optical Communication (China) 天凯光通信'), (75761, 'https://ror.org/00vmpjn90', 'no_lang_code', 1, 'https://ror.org/00vmpjn90 Oscilla Power (United States)'), (75762, 'https://ror.org/00vna7491', 'en', 1, 'https://ror.org/00vna7491 Handan Polytechnic College 邯郸职业技术学院'), (75763, 'https://ror.org/00vp8qm49', 'en', 1, 'https://ror.org/00vp8qm49 Institut für Inklusive Bildung Institute for Inclusive Education'), (75764, 'https://ror.org/00vr1xq27', 'no_lang_code', 1, 'https://ror.org/00vr1xq27 Syntermed (United States)'), (75765, 'https://ror.org/00vtjav66', 'en', 1, 'https://ror.org/00vtjav66 Darwin Centre'), (75766, 'https://ror.org/00vwbk234', 'no_lang_code', 1, 'https://ror.org/00vwbk234 Melexis (Belgium)'), (75767, 'https://ror.org/00vwnt173', 'en', 1, 'https://ror.org/00vwnt173 Animal Resources Development Department'), (75768, 'https://ror.org/00vx0am61', 'en', 1, 'https://ror.org/00vx0am61 Kagoshima Medical Corporation Association Nursing College 鹿児島県医療法人協会立看護専門学校'), (75769, 'https://ror.org/00vy6y387', 'no_lang_code', 1, 'https://ror.org/00vy6y387 Bard Access Systems (United States)'), (75770, 'https://ror.org/00w040886', 'no_lang_code', 1, 'https://ror.org/00w040886 Blockheizkraftwerks- Träger- und Betreibergesellschaft (Germany)'), (75771, 'https://ror.org/00w05gw74', 'en', 1, 'https://ror.org/00w05gw74 PEG-Bio Biopharm 重庆派金生物科技有限公司'), (75772, 'https://ror.org/00w1ev608', 'en', 1, 'https://ror.org/00w1ev608 Fundación Iguaque Iguaque Foundation'), (75773, 'https://ror.org/00w53fs94', 'de', 1, 'https://ror.org/00w53fs94 Forschungszentrum Küste'), (75774, 'https://ror.org/00w5h0n54', 'en', 1, 'https://ror.org/00w5h0n54 Wenzhou Central Hospital 温州市中心医院'), (75775, 'https://ror.org/00w6car46', 'no_lang_code', 1, 'https://ror.org/00w6car46 Liebherr (Switzerland)'), (75776, 'https://ror.org/00w894124', 'en', 1, 'https://ror.org/00w894124 Bochum Observatory Sternwarte Bochum'), (75777, 'https://ror.org/00wethk75', 'en', 1, 'https://ror.org/00wethk75 Research & Development Establishment (Engrs.) संशोधन आणि विकास स्थापना इंजिनियर्स'), (75778, 'https://ror.org/00wf92r40', 'no_lang_code', 1, 'https://ror.org/00wf92r40 JW Medical Systems (China)'), (75779, 'https://ror.org/00wftwn37', 'en', 1, 'https://ror.org/00wftwn37 Defence Electronics Research Laboratory रक्षा इलेक्ट्रॉनिक्स अनुसंधान प्रयोगशाला'), (75780, 'https://ror.org/00wg69w90', 'no_lang_code', 1, 'https://ror.org/00wg69w90 Starship Health Technologies (United States)'), (75781, 'https://ror.org/00wg9tw09', 'de', 1, 'https://ror.org/00wg9tw09 Institut für Textoptimierung'), (75782, 'https://ror.org/00whjrr70', 'en', 1, 'https://ror.org/00whjrr70 Bildungswerk der Wirtschaft Hamburg Education and Training Service for Hamburg Businesses'), (75783, 'https://ror.org/00wks3b32', 'no_lang_code', 1, 'https://ror.org/00wks3b32 RealTimePurity (United States)'), (75784, 'https://ror.org/00wn45376', 'no_lang_code', 1, 'https://ror.org/00wn45376 CCP Technologies (United States)'), (75785, 'https://ror.org/00wnpy880', 'en', 1, 'https://ror.org/00wnpy880 Centre des sciences de l''Ontario Ontario Science Centre'), (75786, 'https://ror.org/00wns3e34', 'no_lang_code', 1, 'https://ror.org/00wns3e34 Tiburon Associates (United States)'), (75787, 'https://ror.org/00wp2vz04', 'no_lang_code', 1, 'https://ror.org/00wp2vz04 China Light Industry Press (China) 中国轻工业出版社'), (75788, 'https://ror.org/00wrdbm93', 'no_lang_code', 1, 'https://ror.org/00wrdbm93 Cyberdyne (Japan) サイバーダイン'), (75789, 'https://ror.org/00wsc5072', 'no_lang_code', 1, 'https://ror.org/00wsc5072 Stiegelmeyer (Germany)'), (75790, 'https://ror.org/00wtqt111', 'no_lang_code', 1, 'https://ror.org/00wtqt111 Esox-Plast (Slovakia)'), (75791, 'https://ror.org/00wtxn298', 'no_lang_code', 1, 'https://ror.org/00wtxn298 West Coast Solutions (United States)'), (75792, 'https://ror.org/00wvsjr52', 'no_lang_code', 1, 'https://ror.org/00wvsjr52 Ingenium (Germany)'), (75793, 'https://ror.org/00wvyk770', 'en', 1, 'https://ror.org/00wvyk770 Guanacaste Conservation Area Área de Conservación Guanacaste'), (75794, 'https://ror.org/00wwe0e57', 'en', 1, 'https://ror.org/00wwe0e57 Sabalan University of Advanced Technologies دانشگاه فناوری های نوین سبلان'), (75795, 'https://ror.org/00wwv7522', 'no_lang_code', 1, 'https://ror.org/00wwv7522 MRJ Consulting (United States)'), (75796, 'https://ror.org/00wxjqb77', 'de', 1, 'https://ror.org/00wxjqb77 Klinikum Mittelbaden'), (75797, 'https://ror.org/00wy0mk13', 'en', 1, 'https://ror.org/00wy0mk13 Museum of Military Medicine'), (75798, 'https://ror.org/00wzysf74', 'en', 1, 'https://ror.org/00wzysf74 Wilkes-Barre VA Medical Center'), (75799, 'https://ror.org/00x27fn54', 'no_lang_code', 1, 'https://ror.org/00x27fn54 Advania (Sweden)'), (75800, 'https://ror.org/00x5exn66', 'no_lang_code', 1, 'https://ror.org/00x5exn66 Picoyune (United States)'), (75801, 'https://ror.org/00x605y09', 'no_lang_code', 1, 'https://ror.org/00x605y09 Praeses (United States)'), (75802, 'https://ror.org/00x67g916', 'en', 1, 'https://ror.org/00x67g916 Allensbach Hochschule Allensbach University'), (75803, 'https://ror.org/00x74f485', 'en', 1, 'https://ror.org/00x74f485 Slovak Caves Administration Szlovákiai Barlangok Igazgatósága'), (75804, 'https://ror.org/00x87ch96', 'no_lang_code', 1, 'https://ror.org/00x87ch96 Ibule Photonics (South Korea)'), (75805, 'https://ror.org/00x8kv449', 'en', 1, 'https://ror.org/00x8kv449 Reality of Aid Africa Network'), (75806, 'https://ror.org/00x93xn27', 'en', 1, 'https://ror.org/00x93xn27 Falklands Conservation'), (75807, 'https://ror.org/00xa4tk19', 'en', 1, 'https://ror.org/00xa4tk19 Suratthani Cancer Hospital โรงพยาบาลมะเร็งสุราษฎร์ธานี'), (75808, 'https://ror.org/00xa9v334', 'no_lang_code', 1, 'https://ror.org/00xa9v334 Equinor (United Kingdom)'), (75809, 'https://ror.org/00xbvdz81', 'en', 1, 'https://ror.org/00xbvdz81 Organisation of Islamic Cooperation منظمة التعاون الإسلامي'), (75810, 'https://ror.org/00xcgk367', 'de', 1, 'https://ror.org/00xcgk367 Arbeitsgruppe für regionale Struktur- und Umweltforschung'), (75811, 'https://ror.org/00xcr3m62', 'sk', 1, 'https://ror.org/00xcr3m62 Štátny Veterinárny a Potravinový Ústav'), (75812, 'https://ror.org/00xctjm44', 'en', 1, 'https://ror.org/00xctjm44 P.V. Narsimha Rao Telangana Veterinary University PV నరసింహ రావు తెలంగాణ వెటర్నరీ యూనివర్సిటీ'), (75813, 'https://ror.org/00xg5j618', 'no_lang_code', 1, 'https://ror.org/00xg5j618 HI-LEX (Japan) 株式会社ハイレックスコーポレーション'), (75814, 'https://ror.org/00xgdcy02', 'de', 1, 'https://ror.org/00xgdcy02 Hermann-Josef-Krankenhaus Erkelenz'), (75815, 'https://ror.org/00xgq3z19', 'no_lang_code', 1, 'https://ror.org/00xgq3z19 PeoplePower (United States)'), (75816, 'https://ror.org/00xja4t18', 'no_lang_code', 1, 'https://ror.org/00xja4t18 Keramische Folien (Germany)'), (75817, 'https://ror.org/00xjqd715', 'en', 1, 'https://ror.org/00xjqd715 Coconut Research Institute 中国热带农业科学院椰子研究所'), (75818, 'https://ror.org/00xk3qa12', 'no_lang_code', 1, 'https://ror.org/00xk3qa12 Transparency Lab (Netherlands)'), (75819, 'https://ror.org/00xkmw397', 'no_lang_code', 1, 'https://ror.org/00xkmw397 AutoMedx (United States)'), (75820, 'https://ror.org/00xkrw816', 'en', 1, 'https://ror.org/00xkrw816 China Construction Bank 中国建设银行'), (75821, 'https://ror.org/00xn0yt80', 'en', 1, 'https://ror.org/00xn0yt80 Chartered Institute of Personnel and Development'), (75822, 'https://ror.org/00xr96s24', 'no_lang_code', 1, 'https://ror.org/00xr96s24 AIR Worldwide (United States)'), (75823, 'https://ror.org/00xrhzn26', 'no_lang_code', 1, 'https://ror.org/00xrhzn26 TransMed7 (United States)'), (75824, 'https://ror.org/00xrmm659', 'no_lang_code', 1, 'https://ror.org/00xrmm659 Kintech Lab (Russia)'), (75825, 'https://ror.org/00xscwy84', 'en', 1, 'https://ror.org/00xscwy84 Shiga Prefectural Higashi Otsu High School 滋賀県立東大津高'), (75826, 'https://ror.org/00xsmqz41', 'no_lang_code', 1, 'https://ror.org/00xsmqz41 Vivant (United States)'), (75827, 'https://ror.org/00xt1mj08', 'no_lang_code', 1, 'https://ror.org/00xt1mj08 LRC Products (United States)'), (75828, 'https://ror.org/00xwb9867', 'no_lang_code', 1, 'https://ror.org/00xwb9867 WinSanTor (United States)'), (75829, 'https://ror.org/00xyaq666', 'no_lang_code', 1, 'https://ror.org/00xyaq666 Abcentra (United States)'), (75830, 'https://ror.org/00xymz606', 'en', 1, 'https://ror.org/00xymz606 Institute of Desertification Studies 荒漠化研究所'), (75831, 'https://ror.org/00xyqkv27', 'en', 1, 'https://ror.org/00xyqkv27 Axis Multispecialty Hospital'), (75832, 'https://ror.org/00y16bh55', 'en', 1, 'https://ror.org/00y16bh55 Islamic Azad University, Ashtian Branch دانشگاه آزاد اسلامی واحد آشتيان'), (75833, 'https://ror.org/00y289c89', 'en', 1, 'https://ror.org/00y289c89 British Society for the History of Medicine'), (75834, 'https://ror.org/00y3rz519', 'no_lang_code', 1, 'https://ror.org/00y3rz519 Jiangsu Changjiang Electronics Technology (China) 江蘇長電科技股份有限公司'), (75835, 'https://ror.org/00y3zx547', 'no_lang_code', 1, 'https://ror.org/00y3zx547 Krishi Vigyan Kendra, Hingoli'), (75836, 'https://ror.org/00y5vq715', 'en', 1, 'https://ror.org/00y5vq715 Brennan Center for Justice'), (75837, 'https://ror.org/00y61e316', 'de', 1, 'https://ror.org/00y61e316 Bremer Umweltinstitut'), (75838, 'https://ror.org/00y650p73', 'no_lang_code', 1, 'https://ror.org/00y650p73 Neuboron (China)'), (75839, 'https://ror.org/00y6d4r36', 'no_lang_code', 1, 'https://ror.org/00y6d4r36 Opticslah (United States)'), (75840, 'https://ror.org/00y6pq124', 'no_lang_code', 1, 'https://ror.org/00y6pq124 Cefla (Italy)'), (75841, 'https://ror.org/00y7m9a70', 'no_lang_code', 1, 'https://ror.org/00y7m9a70 Silver Bullet Solutions (United States)'), (75842, 'https://ror.org/00y903920', 'no_lang_code', 1, 'https://ror.org/00y903920 Vcrsoft (United States)'), (75843, 'https://ror.org/00y9hdv35', 'de', 1, 'https://ror.org/00y9hdv35 Institut für Hämatopathologie Hamburg'), (75844, 'https://ror.org/00yc2my06', 'no_lang_code', 1, 'https://ror.org/00yc2my06 Sarcos (United States)'), (75845, 'https://ror.org/00ycxta63', 'no_lang_code', 1, 'https://ror.org/00ycxta63 Hengdian Group DMEGC Magnetics (China)'), (75846, 'https://ror.org/00yd0p282', 'en', 1, 'https://ror.org/00yd0p282 Institute of Microbiology Институт микробиологии'), (75847, 'https://ror.org/00ydhd623', 'en', 1, 'https://ror.org/00ydhd623 Institute for Global Dialogue'), (75848, 'https://ror.org/00yfk0297', 'no_lang_code', 1, 'https://ror.org/00yfk0297 Sentimetrix (United States)'), (75849, 'https://ror.org/00yfsq027', 'en', 1, 'https://ror.org/00yfsq027 Fayetteville VA Medical Center'), (75850, 'https://ror.org/00ygnz155', 'en', 1, 'https://ror.org/00ygnz155 University Transportation Center for Railway Safety'), (75851, 'https://ror.org/00yjfkj05', 'en', 1, 'https://ror.org/00yjfkj05 Chigasaki Rehabilitation College 茅ヶ崎リハビリテーション専門学校は'), (75852, 'https://ror.org/00ynyd598', 'no_lang_code', 1, 'https://ror.org/00ynyd598 Gesellschaft für Materialforschung und Prüfungsanstalt für das Bauwesen (Germany)'), (75853, 'https://ror.org/00ynzwx73', 'en', 1, 'https://ror.org/00ynzwx73 Afghan Paramount Welfare and Development Organization'), (75854, 'https://ror.org/00yqed873', 'no_lang_code', 1, 'https://ror.org/00yqed873 Fraunhofer Singapore'), (75855, 'https://ror.org/00ysb4w16', 'en', 1, 'https://ror.org/00ysb4w16 Multi Vaccines Development Program'), (75856, 'https://ror.org/00z0wts96', 'no_lang_code', 1, 'https://ror.org/00z0wts96 Fuji Chemical Industries (Japan) 富士化学工業株式会社'), (75857, 'https://ror.org/00z14xy49', 'no_lang_code', 1, 'https://ror.org/00z14xy49 Ossur (United States)'), (75858, 'https://ror.org/00z1ayq69', 'de', 1, 'https://ror.org/00z1ayq69 Propstei Johannesberg'), (75859, 'https://ror.org/00z3pae83', 'en', 1, 'https://ror.org/00z3pae83 Beijing Fengtai Disease Prevention and Control Center 北京市丰台区疾病预防控制中心'), (75860, 'https://ror.org/00z4kzd65', 'no_lang_code', 1, 'https://ror.org/00z4kzd65 Microline Surgical (United States)'), (75861, 'https://ror.org/00z5k4y41', 'no_lang_code', 1, 'https://ror.org/00z5k4y41 Novel (United States)'), (75862, 'https://ror.org/00z62fe95', 'no_lang_code', 1, 'https://ror.org/00z62fe95 Merete (Germany)'), (75863, 'https://ror.org/00z6hkq67', 'es', 1, 'https://ror.org/00z6hkq67 Tierra'), (75864, 'https://ror.org/00z6x4k60', 'en', 1, 'https://ror.org/00z6x4k60 Jewish Museum London'), (75865, 'https://ror.org/00z83z196', 'en', 1, 'https://ror.org/00z83z196 Institute of Information Science, Academia Sinica 中央研究院資訊科學研究所'), (75866, 'https://ror.org/00z87ds37', 'no_lang_code', 1, 'https://ror.org/00z87ds37 HAMR Industries (United States)'), (75867, 'https://ror.org/00zaasm74', 'no_lang_code', 1, 'https://ror.org/00zaasm74 MANI (Japan)'), (75868, 'https://ror.org/00zev5680', 'fr', 1, 'https://ror.org/00zev5680 Agitel-Formation'), (75869, 'https://ror.org/00zjvm038', 'no_lang_code', 1, 'https://ror.org/00zjvm038 SecurAcath (United States)'), (75870, 'https://ror.org/00zkrw974', 'en', 1, 'https://ror.org/00zkrw974 Canada''s Ecofiscal Commission'), (75871, 'https://ror.org/00zm1zp35', 'no_lang_code', 1, 'https://ror.org/00zm1zp35 SI-Bone (United States)'), (75872, 'https://ror.org/00zmwwm29', 'en', 1, 'https://ror.org/00zmwwm29 Northern Ireland Ambulance Service Health and Social Care Trust'), (75873, 'https://ror.org/00zpwvr27', 'en', 1, 'https://ror.org/00zpwvr27 Horseed International University'), (75874, 'https://ror.org/00zrbk722', 'de', 1, 'https://ror.org/00zrbk722 Gesellschaft für Akademische Studienvorbereitung und Testentwicklung'), (75875, 'https://ror.org/00zrx8c87', 'no_lang_code', 1, 'https://ror.org/00zrx8c87 Optics Balzers (Germany)'), (75876, 'https://ror.org/00ztar512', 'en', 1, 'https://ror.org/00ztar512 Aichi Medical University Hospital 愛知医科大学病院'), (75877, 'https://ror.org/00zvhfv21', 'no_lang_code', 1, 'https://ror.org/00zvhfv21 Silergy (China)'), (75878, 'https://ror.org/00zw0jt22', 'no_lang_code', 1, 'https://ror.org/00zw0jt22 Berry (Switzerland)'), (75879, 'https://ror.org/00zwgem63', 'en', 1, 'https://ror.org/00zwgem63 Brooke'), (75880, 'https://ror.org/00zx7vr24', 'no_lang_code', 1, 'https://ror.org/00zx7vr24 Kage Mikrofotografie (Germany)'), (75881, 'https://ror.org/01021jx78', 'no_lang_code', 1, 'https://ror.org/01021jx78 Sunset Laboratory (United States)'), (75882, 'https://ror.org/0102hgm33', 'no_lang_code', 1, 'https://ror.org/0102hgm33 Seelos Therapeutics (United States)'), (75883, 'https://ror.org/01046sm89', 'es', 1, 'https://ror.org/01046sm89 Universidad Autónoma de Baja California Sur'), (75884, 'https://ror.org/010584e10', 'no_lang_code', 1, 'https://ror.org/010584e10 Exactech (United States)'), (75885, 'https://ror.org/0106sdn14', 'en', 1, 'https://ror.org/0106sdn14 Gorilla Doctors'), (75886, 'https://ror.org/01088yf98', 'en', 1, 'https://ror.org/01088yf98 Mabula Ground Hornbill Project'), (75887, 'https://ror.org/010b0td06', 'en', 1, 'https://ror.org/010b0td06 Komatsu University 公立小松大学'), (75888, 'https://ror.org/010bhd382', 'no_lang_code', 1, 'https://ror.org/010bhd382 Launch Alaska (United States)'), (75889, 'https://ror.org/010efbr18', 'no_lang_code', 1, 'https://ror.org/010efbr18 XUV Lasers (United States)'), (75890, 'https://ror.org/010h7xw27', 'en', 1, 'https://ror.org/010h7xw27 BIOP Institute'), (75891, 'https://ror.org/010heyq73', 'en', 1, 'https://ror.org/010heyq73 Zoo Atlanta'), (75892, 'https://ror.org/010kw5m31', 'no_lang_code', 1, 'https://ror.org/010kw5m31 OTI Lumionics (Canada)'), (75893, 'https://ror.org/010p2sq51', 'no_lang_code', 1, 'https://ror.org/010p2sq51 Nabors Industries (United States)'), (75894, 'https://ror.org/010qd1m54', 'no_lang_code', 1, 'https://ror.org/010qd1m54 Institut für Nachhaltige Landbewirtschaftung (Germany)'), (75895, 'https://ror.org/010qfgc60', 'en', 1, 'https://ror.org/010qfgc60 African Heritage Institution'), (75896, 'https://ror.org/010wgsf71', 'no_lang_code', 1, 'https://ror.org/010wgsf71 Ventions (United States)'), (75897, 'https://ror.org/010whbs59', 'no_lang_code', 1, 'https://ror.org/010whbs59 Miyanomori Memorial Hospital 医療法人 讃生会 宮の森記念病院'), (75898, 'https://ror.org/010x76r82', 'no_lang_code', 1, 'https://ror.org/010x76r82 Azur Space Solar Power'), (75899, 'https://ror.org/010xsqw81', 'no_lang_code', 1, 'https://ror.org/010xsqw81 Institut für Bauphysik und Bauchemie (Germany)'), (75900, 'https://ror.org/0110h6q82', 'en', 1, 'https://ror.org/0110h6q82 Clear Path for Veterans'), (75901, 'https://ror.org/01119m545', 'no_lang_code', 1, 'https://ror.org/01119m545 Stf Technologies (United States)'), (75902, 'https://ror.org/0114yxd88', 'no_lang_code', 1, 'https://ror.org/0114yxd88 Shijia Photons (China) 仕佳光子'), (75903, 'https://ror.org/0117s3e61', 'no_lang_code', 1, 'https://ror.org/0117s3e61 ID Quantique (United Kingdom)'), (75904, 'https://ror.org/0119k2y25', 'no_lang_code', 1, 'https://ror.org/0119k2y25 Safeware Engineering (United States)'), (75905, 'https://ror.org/0119wa702', 'de', 1, 'https://ror.org/0119wa702 Virtus - Institut für Neue Lehr- und Lernmethoden'), (75906, 'https://ror.org/0119y0r05', 'no_lang_code', 1, 'https://ror.org/0119y0r05 Hokko Chemical Industry (Japan) 北興化学工業株式会社'), (75907, 'https://ror.org/011bx4w73', 'en', 1, 'https://ror.org/011bx4w73 Research Institute for Baker’s Yeast Versuchsanstalt der Hefeindustrie'), (75908, 'https://ror.org/011djka92', 'no_lang_code', 1, 'https://ror.org/011djka92 Sabin Medicina Diagnostica (Brazil)'), (75909, 'https://ror.org/011fc0n53', 'en', 1, 'https://ror.org/011fc0n53 National Transportation Research Center'), (75910, 'https://ror.org/011g3fn28', 'no_lang_code', 1, 'https://ror.org/011g3fn28 Hatz (Germany)'), (75911, 'https://ror.org/011g48w32', 'en', 1, 'https://ror.org/011g48w32 Institute of Sand Control, Shaanxi Academy of Forestry 陕西省治沙研究所'), (75912, 'https://ror.org/011gpgf73', 'no_lang_code', 1, 'https://ror.org/011gpgf73 Berliner Stadtreinigungsbetriebe (Germany)'), (75913, 'https://ror.org/011hecd67', 'en', 1, 'https://ror.org/011hecd67 National Center for Gene Research 中国科学院国家基因研究中心'), (75914, 'https://ror.org/011jjvt31', 'en', 1, 'https://ror.org/011jjvt31 Chinese Society of Forestry 中国林学会'), (75915, 'https://ror.org/011jkz145', 'en', 1, 'https://ror.org/011jkz145 International Federation of Surveyors'), (75916, 'https://ror.org/011kc9d11', 'en', 1, 'https://ror.org/011kc9d11 Agri-Food Business Innovation Center 食農ビジネス推進センター'), (75917, 'https://ror.org/011kf5918', 'en', 1, 'https://ror.org/011kf5918 Mianyang Institute of Traditional Chinese Medicine 绵阳中医学院'), (75918, 'https://ror.org/011nerd04', 'no_lang_code', 1, 'https://ror.org/011nerd04 Kisarazu Hospital 木更津病院'), (75919, 'https://ror.org/011pwcp79', 'en', 1, 'https://ror.org/011pwcp79 Research and Action in Natural Wealth Administration नैसर्गिक संपत्ती प्रशासन संशोधन आणि कृती'), (75920, 'https://ror.org/011s5nh14', 'en', 1, 'https://ror.org/011s5nh14 Fraunhofer Center for Chemical-Biotechnological Processes Fraunhofer-Zentrum für Chemisch-Biotechnologische Prozesse'); INSERT INTO `rors` VALUES (75921, 'https://ror.org/011se0j84', 'en', 1, 'https://ror.org/011se0j84 African Forum and Network on Debt and Development'), (75922, 'https://ror.org/011v4dm73', 'no_lang_code', 1, 'https://ror.org/011v4dm73 Averis Seeds (Netherlands)'), (75923, 'https://ror.org/011yfd550', 'no_lang_code', 1, 'https://ror.org/011yfd550 TerraVerdae BioWorks (United Kingdom)'), (75924, 'https://ror.org/0120p8e59', 'no_lang_code', 1, 'https://ror.org/0120p8e59 Dynapel Systems (United States)'), (75925, 'https://ror.org/0120q3031', 'en', 1, 'https://ror.org/0120q3031 Institute of Mathematics, Academia Sinica 中央研究院數學所'), (75926, 'https://ror.org/01217ma45', 'no_lang_code', 1, 'https://ror.org/01217ma45 Footstar (United States)'), (75927, 'https://ror.org/0121c6k67', 'no_lang_code', 1, 'https://ror.org/0121c6k67 Institut Stadt I Mobilität I Energie (Germany)'), (75928, 'https://ror.org/0121xav09', 'no_lang_code', 1, 'https://ror.org/0121xav09 Seikow Chemical Engineering and Machinery (Japan) セイコー化工機'), (75929, 'https://ror.org/0121y9f76', 'no_lang_code', 1, 'https://ror.org/0121y9f76 NantWorks (United States)'), (75930, 'https://ror.org/01231rh41', 'en', 1, 'https://ror.org/01231rh41 Georgia Department of Economic Development'), (75931, 'https://ror.org/0123nj144', 'en', 1, 'https://ror.org/0123nj144 Egyptian Center for Innovation and Technology Development'), (75932, 'https://ror.org/0124z6a88', 'en', 1, 'https://ror.org/0124z6a88 Baoding People''s Hospital 保定市人民医院'), (75933, 'https://ror.org/0125nre22', 'de', 1, 'https://ror.org/0125nre22 Kreisklinik Trostberg'), (75934, 'https://ror.org/0125qer46', 'de', 1, 'https://ror.org/0125qer46 Die Johanniter'), (75935, 'https://ror.org/0125wtc60', 'no_lang_code', 1, 'https://ror.org/0125wtc60 Pendar Technologies (United States)'), (75936, 'https://ror.org/012797s84', 'no_lang_code', 1, 'https://ror.org/012797s84 Institut für Zukunftsorientierte Arbeitsgestaltung (Germany)'), (75937, 'https://ror.org/0128qg670', 'en', 1, 'https://ror.org/0128qg670 Fraunhofer Group for Microelectronics Fraunhofer-Verbund Mikroelektronik'), (75938, 'https://ror.org/0129kzc90', 'no_lang_code', 1, 'https://ror.org/0129kzc90 Showa Ika Kogyo (Japan) 昭和医科工業'), (75939, 'https://ror.org/0129qsy61', 'no_lang_code', 1, 'https://ror.org/0129qsy61 CGI (Canada)'), (75940, 'https://ror.org/012cvjw59', 'no_lang_code', 1, 'https://ror.org/012cvjw59 Meagan Medical (United States)'), (75941, 'https://ror.org/012d67872', 'en', 1, 'https://ror.org/012d67872 Diagnostic Microbiology Development Program'), (75942, 'https://ror.org/012g7ks33', 'no_lang_code', 1, 'https://ror.org/012g7ks33 Praxis BioSciences (United States)'), (75943, 'https://ror.org/012gdwx28', 'es', 1, 'https://ror.org/012gdwx28 Centro de Salud Casa del Barco'), (75944, 'https://ror.org/012j9gn20', 'no_lang_code', 1, 'https://ror.org/012j9gn20 Mackinac Technology (United States)'), (75945, 'https://ror.org/012k7ag19', 'no_lang_code', 1, 'https://ror.org/012k7ag19 IS-Wireless (Poland)'), (75946, 'https://ror.org/012ktab60', 'no_lang_code', 1, 'https://ror.org/012ktab60 BrightPath Biotherapeutics (Japan)'), (75947, 'https://ror.org/012m44z23', 'no_lang_code', 1, 'https://ror.org/012m44z23 Stadtwerke Duisburg (Germany)'), (75948, 'https://ror.org/012n48z81', 'no_lang_code', 1, 'https://ror.org/012n48z81 Plasmology4 (United States)'), (75949, 'https://ror.org/012pd4b91', 'en', 1, 'https://ror.org/012pd4b91 Western Transportation Institute'), (75950, 'https://ror.org/012qgxn42', 'no_lang_code', 1, 'https://ror.org/012qgxn42 Secondpeak (United States)'), (75951, 'https://ror.org/012rcg503', 'no_lang_code', 1, 'https://ror.org/012rcg503 Belron (Switzerland)'), (75952, 'https://ror.org/012yg6072', 'de', 1, 'https://ror.org/012yg6072 Institut für Angewandte Bauforschung Weimar'), (75953, 'https://ror.org/0130r4628', 'en', 1, 'https://ror.org/0130r4628 China Tibetology Research Center 中国藏学研究中心'), (75954, 'https://ror.org/0131vqf73', 'no_lang_code', 1, 'https://ror.org/0131vqf73 LiveDo (Japan)'), (75955, 'https://ror.org/0135ffj82', 'en', 1, 'https://ror.org/0135ffj82 The Gordon Life Science Institute'), (75956, 'https://ror.org/0135n9613', 'no_lang_code', 1, 'https://ror.org/0135n9613 SpaceTech (Germany)'), (75957, 'https://ror.org/013607p24', 'sk', 1, 'https://ror.org/013607p24 Prevencia'), (75958, 'https://ror.org/0136jw687', 'no_lang_code', 1, 'https://ror.org/0136jw687 Teva Pharmaceuticals (Switzerland)'), (75959, 'https://ror.org/0138a8a04', 'en', 1, 'https://ror.org/0138a8a04 Xianning Central Hospital 咸宁市中心医院'), (75960, 'https://ror.org/013a5fa56', 'en', 1, 'https://ror.org/013a5fa56 Jinshan Hospital of Fudan University 复旦大学附属金山医院'), (75961, 'https://ror.org/013c0df84', 'de', 1, 'https://ror.org/013c0df84 Progress-Institut für Wirtschaftsforschung'), (75962, 'https://ror.org/013ceqq33', 'no_lang_code', 1, 'https://ror.org/013ceqq33 D.I.I.V. (Croatia) Društvo za Istraživanje i Iskorištavanje Voda'), (75963, 'https://ror.org/013cg0x56', 'en', 1, 'https://ror.org/013cg0x56 Cleveland Metroparks'), (75964, 'https://ror.org/013deq447', 'es', 1, 'https://ror.org/013deq447 Federación de Aseguradores Colombianos Federation of Colombian Insurers'), (75965, 'https://ror.org/013e6jc10', 'no_lang_code', 1, 'https://ror.org/013e6jc10 Elixiron Immunotherapeutics (Taiwan) 安立玺荣生物医药科技有限公司'), (75966, 'https://ror.org/013fp1s35', 'no_lang_code', 1, 'https://ror.org/013fp1s35 SiOnyx (United States)'), (75967, 'https://ror.org/013hxq561', 'en', 1, 'https://ror.org/013hxq561 University of the Sacred Heart Gulu'), (75968, 'https://ror.org/013hy3379', 'no_lang_code', 1, 'https://ror.org/013hy3379 Sinus Markt- und Sozialforschung (Germany)'), (75969, 'https://ror.org/013vv4k88', 'no_lang_code', 1, 'https://ror.org/013vv4k88 CosMED Pharmaceutical (Japan) コスメディ製薬'), (75970, 'https://ror.org/013wbpj39', 'no_lang_code', 1, 'https://ror.org/013wbpj39 Technology Focus (United States)'), (75971, 'https://ror.org/013y3gm73', 'no_lang_code', 1, 'https://ror.org/013y3gm73 ZTS Sabinov (Slovakia)'), (75972, 'https://ror.org/013yc9k66', 'no_lang_code', 1, 'https://ror.org/013yc9k66 GEOtest Bratislava (Slovakia)'), (75973, 'https://ror.org/013z02f32', 'en', 1, 'https://ror.org/013z02f32 Shizuoka Prefecture Archaeological Center 静岡県埋蔵文化財センター'), (75974, 'https://ror.org/014088296', 'no_lang_code', 1, 'https://ror.org/014088296 H2 Mobility (Germany)'), (75975, 'https://ror.org/0140nwe11', 'en', 1, 'https://ror.org/0140nwe11 Institute of European and American Studies, Academia Sinica 中央研究院歐美研究所'), (75976, 'https://ror.org/0140vs727', 'no_lang_code', 1, 'https://ror.org/0140vs727 Potrero Medical (United States)'), (75977, 'https://ror.org/01433fv30', 'en', 1, 'https://ror.org/01433fv30 Bunka Gakuen Nagano Technical College 文化学園長野保育専門学校'), (75978, 'https://ror.org/0143ggv59', 'no_lang_code', 1, 'https://ror.org/0143ggv59 Israel Corp (Israel) החברה לישראל'), (75979, 'https://ror.org/01441w502', 'no_lang_code', 1, 'https://ror.org/01441w502 Bayer (Australia)'), (75980, 'https://ror.org/0144gtm47', 'de', 1, 'https://ror.org/0144gtm47 Ministerium für Finanzen und Europa'), (75981, 'https://ror.org/0146m4n64', 'no_lang_code', 1, 'https://ror.org/0146m4n64 Qatar Central Bank مصرف قطر المركزي'), (75982, 'https://ror.org/0146rd070', 'no_lang_code', 1, 'https://ror.org/0146rd070 Bloorazma (Iran) بلورآزما'), (75983, 'https://ror.org/014a6fe58', 'en', 1, 'https://ror.org/014a6fe58 Whole Health Institute'), (75984, 'https://ror.org/014bb9r42', 'no_lang_code', 1, 'https://ror.org/014bb9r42 ACS Dobfar (Italy)'), (75985, 'https://ror.org/014bm1n40', 'en', 1, 'https://ror.org/014bm1n40 FIRST Robotics Canada'), (75986, 'https://ror.org/014cg2q58', 'no_lang_code', 1, 'https://ror.org/014cg2q58 Atotech (Germany)'), (75987, 'https://ror.org/014dapq37', 'no_lang_code', 1, 'https://ror.org/014dapq37 Envitec Biogas (Germany)'), (75988, 'https://ror.org/014dgqr33', 'it', 1, 'https://ror.org/014dgqr33 Ordine Ospedaliero di San Giovanni di Dio Fatebenefratelli'), (75989, 'https://ror.org/014em8n15', 'no_lang_code', 1, 'https://ror.org/014em8n15 Rubius Therapeutics (United States)'), (75990, 'https://ror.org/014kzd996', 'en', 1, 'https://ror.org/014kzd996 Centro Pipistrelli Sardegna'), (75991, 'https://ror.org/014ma9t05', 'no_lang_code', 1, 'https://ror.org/014ma9t05 SDS Biotech (Japan) 株式会社エス・ディー・エス バイオテック'), (75992, 'https://ror.org/014p0zg39', 'no_lang_code', 1, 'https://ror.org/014p0zg39 Stiftung Liebenau (Germany)'), (75993, 'https://ror.org/014pmjv51', 'no_lang_code', 1, 'https://ror.org/014pmjv51 Natreon (United States)'), (75994, 'https://ror.org/014pnrs95', 'no_lang_code', 1, 'https://ror.org/014pnrs95 Pigeon (Japan)'), (75995, 'https://ror.org/014r8q346', 'no_lang_code', 1, 'https://ror.org/014r8q346 The Scatter Works (United States)'), (75996, 'https://ror.org/014tnpn30', 'no_lang_code', 1, 'https://ror.org/014tnpn30 Recovery Record (United States)'), (75997, 'https://ror.org/014trz974', 'en', 1, 'https://ror.org/014trz974 Qualitative Data Repository'), (75998, 'https://ror.org/014tv7j22', 'en', 1, 'https://ror.org/014tv7j22 Department of Agrarian Sciences Аддзяленне аграрных навук'), (75999, 'https://ror.org/014vmc881', 'no_lang_code', 1, 'https://ror.org/014vmc881 OVO (Indonesia)'), (76000, 'https://ror.org/014wkxc11', 'no_lang_code', 1, 'https://ror.org/014wkxc11 DenMat (United States)'), (76001, 'https://ror.org/014x0rv86', 'en', 1, 'https://ror.org/014x0rv86 Institut für Bildung und Kultur Institute for Education and Culture'), (76002, 'https://ror.org/014xvjk95', 'no_lang_code', 1, 'https://ror.org/014xvjk95 Observatory and Planetarium of Prešov'), (76003, 'https://ror.org/014ze5k65', 'no_lang_code', 1, 'https://ror.org/014ze5k65 Catalyst Chemical Industries (India)'), (76004, 'https://ror.org/014ze8513', 'no_lang_code', 1, 'https://ror.org/014ze8513 Dyckerhoff (Germany)'), (76005, 'https://ror.org/0151gh112', 'en', 1, 'https://ror.org/0151gh112 Islamic Azad University Rasht Branch دانشگاه آزاد اسلامي واحد رشت'), (76006, 'https://ror.org/015305q15', 'fr', 1, 'https://ror.org/015305q15 Centre Hospitalier Avranches Granville, Le centre hospitalier Avranches Granville'), (76007, 'https://ror.org/0155p9f79', 'en', 1, 'https://ror.org/0155p9f79 Foundation for Environment and Economic Development Services'), (76008, 'https://ror.org/01565d802', 'no_lang_code', 1, 'https://ror.org/01565d802 Locate Bio (United Kingdom)'), (76009, 'https://ror.org/015706c71', 'no_lang_code', 1, 'https://ror.org/015706c71 Institut für Stahlbau Leipzig (Germany)'), (76010, 'https://ror.org/015999a88', 'no_lang_code', 1, 'https://ror.org/015999a88 Amino Up (Japan) ㈱アミノアップ'), (76011, 'https://ror.org/015ad1e56', 'de', 1, 'https://ror.org/015ad1e56 Landesinstitut für Arbeitsgestaltung des Landes Nordrhein-Westfalen'), (76012, 'https://ror.org/015bm3863', 'no_lang_code', 1, 'https://ror.org/015bm3863 Ueno Fine Chemicals Industry (Japan) 上野製薬株式会社'), (76013, 'https://ror.org/015bsfc29', 'en', 1, 'https://ror.org/015bsfc29 Network for Computational Modeling in the Social and Ecological Sciences'), (76014, 'https://ror.org/015ccve61', 'no_lang_code', 1, 'https://ror.org/015ccve61 Dilon Technologies (United States)'), (76015, 'https://ror.org/015dkr863', 'no_lang_code', 1, 'https://ror.org/015dkr863 TCI Peptide Therapeutics (United States)'), (76016, 'https://ror.org/015e70897', 'de', 1, 'https://ror.org/015e70897 Forschungsgemeinschaft für elektrische Anlagen und Stromwirtschaft'), (76017, 'https://ror.org/015f8tz43', 'en', 1, 'https://ror.org/015f8tz43 North Dakota Game and Fish Department'), (76018, 'https://ror.org/015g9sa94', 'en', 1, 'https://ror.org/015g9sa94 Agricultural Bank of China'), (76019, 'https://ror.org/015gwtc18', 'en', 1, 'https://ror.org/015gwtc18 Kochi Agricultural Technology Center 高知県農業技術センター'), (76020, 'https://ror.org/015kbrv74', 'no_lang_code', 1, 'https://ror.org/015kbrv74 Vital Art and Science (United States)'), (76021, 'https://ror.org/015m1g269', 'no_lang_code', 1, 'https://ror.org/015m1g269 Auchem (Slovakia)'), (76022, 'https://ror.org/015q2vx96', 'no_lang_code', 1, 'https://ror.org/015q2vx96 Power+Energy (United States)'), (76023, 'https://ror.org/015s5md50', 'en', 1, 'https://ror.org/015s5md50 James Family Prescott YMCA'), (76024, 'https://ror.org/015s7dk89', 'no_lang_code', 1, 'https://ror.org/015s7dk89 Nima (United States)'), (76025, 'https://ror.org/015sra590', 'sk', 1, 'https://ror.org/015sra590 Slovenské Planetáriá'), (76026, 'https://ror.org/015trrs98', 'no_lang_code', 1, 'https://ror.org/015trrs98 T2C-Energy (United States)'), (76027, 'https://ror.org/015vyg314', 'en', 1, 'https://ror.org/015vyg314 The National Institute of Neuromotor System المعهد القومي للجهاز الحركي العصبي'), (76028, 'https://ror.org/015w7jz26', 'en', 1, 'https://ror.org/015w7jz26 Kerala Livestock Development Board കേരള കന്നുകാലി വികസന ബോർഡ്'), (76029, 'https://ror.org/015w8rd21', 'no_lang_code', 1, 'https://ror.org/015w8rd21 Bonesupport (Sweden)'), (76030, 'https://ror.org/015x34y38', 'no_lang_code', 1, 'https://ror.org/015x34y38 Wave Life Sciences (United States)'), (76031, 'https://ror.org/015xey021', 'en', 1, 'https://ror.org/015xey021 Communications Technology Laboratory'), (76032, 'https://ror.org/015xh0s12', 'en', 1, 'https://ror.org/015xh0s12 Biosciences Research Support Foundation'), (76033, 'https://ror.org/015z19759', 'no_lang_code', 1, 'https://ror.org/015z19759 Grosskraftwerk Mannheim (Germany)'), (76034, 'https://ror.org/016065f51', 'no_lang_code', 1, 'https://ror.org/016065f51 Kanto Chemical (Japan)'), (76035, 'https://ror.org/0160cqn49', 'en', 1, 'https://ror.org/0160cqn49 Beijing Chang''an Integrated Traditional Chinese and Western Medicine Hospital 北京长安中西医结合医院'), (76036, 'https://ror.org/0160qej13', 'no_lang_code', 1, 'https://ror.org/0160qej13 PhotoniCare (United States)'), (76037, 'https://ror.org/01613vh25', 'en', 1, 'https://ror.org/01613vh25 Chief Scientist Office'), (76038, 'https://ror.org/0161hbt42', 'en', 1, 'https://ror.org/0161hbt42 University of Gonabad مجتمع آموزش عالي گناباد'), (76039, 'https://ror.org/0166ary89', 'no_lang_code', 1, 'https://ror.org/0166ary89 Calibrium (Slovakia)'), (76040, 'https://ror.org/016715t42', 'no_lang_code', 1, 'https://ror.org/016715t42 One-Cycle Control (United States)'), (76041, 'https://ror.org/016728c22', 'no_lang_code', 1, 'https://ror.org/016728c22 Proteus (New Zealand)'), (76042, 'https://ror.org/0168c7237', 'en', 1, 'https://ror.org/0168c7237 State Public Scientific Technological Library of Siberian Branch of Russian Academy of Sciences Государственная публичная научно-техническая библиотека СО РАН'), (76043, 'https://ror.org/0168wa849', 'no_lang_code', 1, 'https://ror.org/0168wa849 Sakai Chemical Industry (Japan) 堺化学工業株式会社'), (76044, 'https://ror.org/0169qcp97', 'no_lang_code', 1, 'https://ror.org/0169qcp97 Geocomplex (Slovakia)'), (76045, 'https://ror.org/016aygb24', 'no_lang_code', 1, 'https://ror.org/016aygb24 Zymeworks (Canada)'), (76046, 'https://ror.org/016ayye29', 'en', 1, 'https://ror.org/016ayye29 Lusaka Apex Medical University'), (76047, 'https://ror.org/016bjqk65', 'no_lang_code', 1, 'https://ror.org/016bjqk65 Abu Dhabi Health Services شركة أبوظبي للخدمات الصحية - صحة'), (76048, 'https://ror.org/016bnqk64', 'en', 1, 'https://ror.org/016bnqk64 Humber Teaching NHS Foundation Trust'), (76049, 'https://ror.org/016d4nc35', 'no_lang_code', 1, 'https://ror.org/016d4nc35 Phoenix Integration (United States)'), (76050, 'https://ror.org/016k2xj91', 'no_lang_code', 1, 'https://ror.org/016k2xj91 Wittenstein (Germany)'), (76051, 'https://ror.org/016knsn07', 'en', 1, 'https://ror.org/016knsn07 National Confidential Enquiry into Patient Outcome and Death'), (76052, 'https://ror.org/016mndq43', 'no_lang_code', 1, 'https://ror.org/016mndq43 Biota Institut für ökologische Forschung und Planung (Germany)'), (76053, 'https://ror.org/016nv1t74', 'en', 1, 'https://ror.org/016nv1t74 Kumamoto Prefectural College of Technology 熊本県立技術短期大学校'), (76054, 'https://ror.org/016p2sb76', 'no_lang_code', 1, 'https://ror.org/016p2sb76 Particle Beam Lasers (United States)'), (76055, 'https://ror.org/016qkze89', 'no_lang_code', 1, 'https://ror.org/016qkze89 Achieve Life Sciences (United States)'), (76056, 'https://ror.org/016r7x187', 'no_lang_code', 1, 'https://ror.org/016r7x187 WiTricity (United States)'), (76057, 'https://ror.org/016s8vs02', 'en', 1, 'https://ror.org/016s8vs02 Physical Measurement Laboratory'), (76058, 'https://ror.org/016ye1q56', 'no_lang_code', 1, 'https://ror.org/016ye1q56 Cognetix (India)'), (76059, 'https://ror.org/016ywe586', 'no_lang_code', 1, 'https://ror.org/016ywe586 Kvant (Slovakia)'), (76060, 'https://ror.org/0170b6c09', 'en', 1, 'https://ror.org/0170b6c09 Institute of Scientific and Technical Information'), (76061, 'https://ror.org/0170pdx26', 'no_lang_code', 1, 'https://ror.org/0170pdx26 Genetic Signatures (Australia)'), (76062, 'https://ror.org/0171m6969', 'no_lang_code', 1, 'https://ror.org/0171m6969 Exploramed (United States)'), (76063, 'https://ror.org/0175s4d43', 'no_lang_code', 1, 'https://ror.org/0175s4d43 Engineering Software Steyr (Austria)'), (76064, 'https://ror.org/0176eja59', 'en', 1, 'https://ror.org/0176eja59 Foundation for Finnish Inventions Keksintösäätiö'), (76065, 'https://ror.org/0176pnx67', 'en', 1, 'https://ror.org/0176pnx67 Hong Kong Institute of Contemporary Culture 香港當代文化中心於'), (76066, 'https://ror.org/0177mph94', 'no_lang_code', 1, 'https://ror.org/0177mph94 New England Biolabs (United Kingdom)'), (76067, 'https://ror.org/0179g4w23', 'no_lang_code', 1, 'https://ror.org/0179g4w23 Insiders Technologies (Germany)'), (76068, 'https://ror.org/0179ktw44', 'en', 1, 'https://ror.org/0179ktw44 Advanced Systems Laboratory उन्नत प्रणाली प्रयोगशाला'), (76069, 'https://ror.org/017ay4a94', 'en', 1, 'https://ror.org/017ay4a94 Sunshine Coast University Hospital'), (76070, 'https://ror.org/017cm6884', 'en', 1, 'https://ror.org/017cm6884 Baylor Scott & White Medical Center - Temple'), (76071, 'https://ror.org/017dx9162', 'no_lang_code', 1, 'https://ror.org/017dx9162 Jiangsu T-mab BioPharma (China) 江苏泰康生物医药有限公司创'), (76072, 'https://ror.org/017f6te91', 'pt', 1, 'https://ror.org/017f6te91 Instituto Biopesca'), (76073, 'https://ror.org/017fg3624', 'en', 1, 'https://ror.org/017fg3624 Arab Network for Early Childhood Development الشبكة العربية لتنمية الطفولة المبكرة'), (76074, 'https://ror.org/017fspt77', 'en', 1, 'https://ror.org/017fspt77 Kutaisi International University ქუთაისის საერთაშორისო უნივერსიტეტი'), (76075, 'https://ror.org/017gepx61', 'no_lang_code', 1, 'https://ror.org/017gepx61 Modumetal (United States)'), (76076, 'https://ror.org/017jr1555', 'en', 1, 'https://ror.org/017jr1555 Mercator Institute for China Studies'), (76077, 'https://ror.org/017k52s24', 'en', 1, 'https://ror.org/017k52s24 Turkish Academic Network and Information Center Ulusal Akademik Ağ ve Bilgi Merkezi'), (76078, 'https://ror.org/017kv7q60', 'en', 1, 'https://ror.org/017kv7q60 Naval Physical & Oceanographic Laboratory'), (76079, 'https://ror.org/017pwjv59', 'no_lang_code', 1, 'https://ror.org/017pwjv59 Spectrum Coatings (United States)'), (76080, 'https://ror.org/017qypp02', 'no_lang_code', 1, 'https://ror.org/017qypp02 ExxonMobil (Germany)'), (76081, 'https://ror.org/017ragh07', 'no_lang_code', 1, 'https://ror.org/017ragh07 ProActive Memory Services (United States)'), (76082, 'https://ror.org/017rfjf78', 'no_lang_code', 1, 'https://ror.org/017rfjf78 Riso (Slovakia)'), (76083, 'https://ror.org/017rhna63', 'no_lang_code', 1, 'https://ror.org/017rhna63 CNH Industrial (Netherlands)'), (76084, 'https://ror.org/017rjkb90', 'no_lang_code', 1, 'https://ror.org/017rjkb90 Thermo Solar (Slovakia)'), (76085, 'https://ror.org/017v23v64', 'no_lang_code', 1, 'https://ror.org/017v23v64 Kisters (Germany)'), (76086, 'https://ror.org/017w08b10', 'en', 1, 'https://ror.org/017w08b10 Stockholm Environment Institute'), (76087, 'https://ror.org/017yfyw84', 'no_lang_code', 1, 'https://ror.org/017yfyw84 Alanod (Germany)'), (76088, 'https://ror.org/01813aq51', 'no_lang_code', 1, 'https://ror.org/01813aq51 Lohmann & Rauscher (Germany)'), (76089, 'https://ror.org/0181a8730', 'en', 1, 'https://ror.org/0181a8730 Harcourt Butler Technical University हरकोर्ट बटलर टेक्निकल युनिवर्सिटी'), (76090, 'https://ror.org/0182aka86', 'en', 1, 'https://ror.org/0182aka86 Tochigi Prefectural Police 栃木県警察'), (76091, 'https://ror.org/0182t0e82', 'en', 1, 'https://ror.org/0182t0e82 InterAmerican Network of Academies of Sciences'), (76092, 'https://ror.org/0189jyk25', 'en', 1, 'https://ror.org/0189jyk25 Aachen Institute for Nuclear Training'), (76093, 'https://ror.org/0189mfq62', 'no_lang_code', 1, 'https://ror.org/0189mfq62 Deutsche Messe (Germany)'), (76094, 'https://ror.org/018aq0w85', 'en', 1, 'https://ror.org/018aq0w85 Ryugasaki City Museum of History and Folklore 龍ケ崎市歴史民俗資料館'), (76095, 'https://ror.org/018fa7h76', 'no_lang_code', 1, 'https://ror.org/018fa7h76 Skeletal Dynamics (United States)'), (76096, 'https://ror.org/018fa8m68', 'en', 1, 'https://ror.org/018fa8m68 Forest Ecosystem Monitoring Cooperative'), (76097, 'https://ror.org/018fbs662', 'de', 1, 'https://ror.org/018fbs662 Nestor Bildungsinstitut'), (76098, 'https://ror.org/018ftzc45', 'no_lang_code', 1, 'https://ror.org/018ftzc45 K8 Institute of Strategic Aesthetics (Germany)'), (76099, 'https://ror.org/018g2w043', 'no_lang_code', 1, 'https://ror.org/018g2w043 Therapeutic Vision (United States)'), (76100, 'https://ror.org/018jrds86', 'en', 1, 'https://ror.org/018jrds86 Directorate of Cashew Research काजू अनुसंधान निदेशालय'), (76101, 'https://ror.org/018mtsg06', 'no_lang_code', 1, 'https://ror.org/018mtsg06 Klox Technologies (Canada)'), (76102, 'https://ror.org/018n2ja79', 'en', 1, 'https://ror.org/018n2ja79 Atlas of Living Australia'), (76103, 'https://ror.org/018saep26', 'fr', 1, 'https://ror.org/018saep26 École de Formation aux Carrières de Santé'), (76104, 'https://ror.org/018t24x84', 'en', 1, 'https://ror.org/018t24x84 Centre for Research and Information on Substance Abuse'), (76105, 'https://ror.org/018zkg706', 'en', 1, 'https://ror.org/018zkg706 Beijing Emergency Medical Center 北京急救中心'), (76106, 'https://ror.org/0191qaw76', 'no_lang_code', 1, 'https://ror.org/0191qaw76 Swift Solar (United States)'), (76107, 'https://ror.org/0191qk654', 'no_lang_code', 1, 'https://ror.org/0191qk654 Vibration and Shock Technologies (United States)'), (76108, 'https://ror.org/0194rjs93', 'no_lang_code', 1, 'https://ror.org/0194rjs93 Schunk Carbon Technology (Germany)'), (76109, 'https://ror.org/0197j6223', 'no_lang_code', 1, 'https://ror.org/0197j6223 Sofar Acoustics (United States)'), (76110, 'https://ror.org/0197nmp73', 'en', 1, 'https://ror.org/0197nmp73 Hubei Provincial Center for Disease Control and Prevention 湖北省疾病预防控制中心'), (76111, 'https://ror.org/0199zgv94', 'fr', 1, 'https://ror.org/0199zgv94 IRT M2P, Instituts de Recherche Technologique'), (76112, 'https://ror.org/019f08v97', 'en', 1, 'https://ror.org/019f08v97 Jundi-Shapur University of Technology دانشگاه صنعتی جندی شاپور دزفول'), (76113, 'https://ror.org/019f6hy95', 'no_lang_code', 1, 'https://ror.org/019f6hy95 Duoject Medical Systems (Canada)'), (76114, 'https://ror.org/019g08z42', 'en', 1, 'https://ror.org/019g08z42 East Suffolk and North Essex NHS Foundation Trust'), (76115, 'https://ror.org/019g1wb57', 'no_lang_code', 1, 'https://ror.org/019g1wb57 Aerogen (Ireland)'), (76116, 'https://ror.org/019gg0j03', 'no_lang_code', 1, 'https://ror.org/019gg0j03 Nuvaira (United States)'), (76117, 'https://ror.org/019gqj590', 'no_lang_code', 1, 'https://ror.org/019gqj590 Mardil (United States)'), (76118, 'https://ror.org/019jqyn65', 'no_lang_code', 1, 'https://ror.org/019jqyn65 Vattenfall (United Kingdom)'), (76119, 'https://ror.org/019m6wk21', 'en', 1, 'https://ror.org/019m6wk21 Algebra University College Visoko učilište Algebra'), (76120, 'https://ror.org/019nmjx95', 'no_lang_code', 1, 'https://ror.org/019nmjx95 HEC Pharm (China)'), (76121, 'https://ror.org/019p75874', 'fr', 1, 'https://ror.org/019p75874 Château de Montsoreau Museum of Contemporary Art'), (76122, 'https://ror.org/019qk5827', 'no_lang_code', 1, 'https://ror.org/019qk5827 Boly Media Communications (United States)'), (76123, 'https://ror.org/019r5ea24', 'en', 1, 'https://ror.org/019r5ea24 Suriname Indigenous Health Fund'), (76124, 'https://ror.org/019rkfc79', 'no_lang_code', 1, 'https://ror.org/019rkfc79 SpineVision (France)'), (76125, 'https://ror.org/019t2m169', 'no_lang_code', 1, 'https://ror.org/019t2m169 Valagro (India)'), (76126, 'https://ror.org/019t4cq59', 'no_lang_code', 1, 'https://ror.org/019t4cq59 Phase IV (United States)'), (76127, 'https://ror.org/019tz0c71', 'en', 1, 'https://ror.org/019tz0c71 State Scientific and Technical Library of Ukraine Державна науково-технічна бібліотека України'), (76128, 'https://ror.org/019vk5v89', 'en', 1, 'https://ror.org/019vk5v89 Hamburg Institute for Vocational Education and Training Hamburger Institut für Berufliche Bildung'), (76129, 'https://ror.org/019ytqh38', 'en', 1, 'https://ror.org/019ytqh38 Hubei 672 Orthopedics Hospital of Traditional Chinese Medicine and Western Medicine 湖北六七二中西医结合骨科医院'), (76130, 'https://ror.org/019yx9f29', 'no_lang_code', 1, 'https://ror.org/019yx9f29 Lundin Mining (Canada)'), (76131, 'https://ror.org/019z2v446', 'en', 1, 'https://ror.org/019z2v446 Rongo University'), (76132, 'https://ror.org/019z7bq36', 'no_lang_code', 1, 'https://ror.org/019z7bq36 Opti-Logic (United States)'), (76133, 'https://ror.org/019z90y68', 'en', 1, 'https://ror.org/019z90y68 Children''s Play School Citizen Stage 釧路市こども遊学館'), (76134, 'https://ror.org/01a0hfp29', 'fr', 1, 'https://ror.org/01a0hfp29 Service Volontaire International'), (76135, 'https://ror.org/01a1rwe53', 'no_lang_code', 1, 'https://ror.org/01a1rwe53 Solvis (Germany)'), (76136, 'https://ror.org/01a242a35', 'en', 1, 'https://ror.org/01a242a35 Government Logistics Department 政府物流服務署'), (76137, 'https://ror.org/01a289t25', 'no_lang_code', 1, 'https://ror.org/01a289t25 Bien-Air Medical Technologies (Switzerland)'), (76138, 'https://ror.org/01a2p6r88', 'no_lang_code', 1, 'https://ror.org/01a2p6r88 ConsenSys (United States)'), (76139, 'https://ror.org/01a6bf324', 'no_lang_code', 1, 'https://ror.org/01a6bf324 Ofogh Koorosh Chain Stores فروشگاه های زنجیره ای افق کوروش'), (76140, 'https://ror.org/01a7sne14', 'no_lang_code', 1, 'https://ror.org/01a7sne14 Apex (Taiwan)'), (76141, 'https://ror.org/01a8dsa88', 'en', 1, 'https://ror.org/01a8dsa88 Hakodate Clinical Welfare College 函館臨床福祉専門学校'), (76142, 'https://ror.org/01aa5rh15', 'en', 1, 'https://ror.org/01aa5rh15 Institute of Traditional Japanese Architecture 日本建築専門学校'), (76143, 'https://ror.org/01ab6z353', 'en', 1, 'https://ror.org/01ab6z353 American Action Forum'), (76144, 'https://ror.org/01acc4e45', 'no_lang_code', 1, 'https://ror.org/01acc4e45 Castellini (Italy)'), (76145, 'https://ror.org/01af4em40', 'no_lang_code', 1, 'https://ror.org/01af4em40 IDS (Germany)'), (76146, 'https://ror.org/01afeqs63', 'no_lang_code', 1, 'https://ror.org/01afeqs63 PEEL Therapeutics (United States)'), (76147, 'https://ror.org/01aggbv66', 'en', 1, 'https://ror.org/01aggbv66 Mahendra Institute of Management and Technical Studies ମହେନ୍ଦ୍ର ଇନଷ୍ଟିଚ୍ୟୁଟ୍ ଅଫ୍ ମ୍ୟାନେଜମେଣ୍ଟ ଆଣ୍ଡ ଟେକ୍ନିକାଲ ଷ୍ଟଡିସ (ମିମ୍ଟ୍ସ)'), (76148, 'https://ror.org/01ahhnh95', 'no_lang_code', 1, 'https://ror.org/01ahhnh95 Xellia (Denmark)'), (76149, 'https://ror.org/01aht8130', 'no_lang_code', 1, 'https://ror.org/01aht8130 Simetri (United States)'), (76150, 'https://ror.org/01am3pw68', 'en', 1, 'https://ror.org/01am3pw68 Islamic Azad University, Zahedan Branch دانشگاه آزاد اسلامی واحد زاهدان'), (76151, 'https://ror.org/01an1rj90', 'en', 1, 'https://ror.org/01an1rj90 Sumitomo Mitsui Banking Corporation 三井住友銀行'), (76152, 'https://ror.org/01anr5861', 'no_lang_code', 1, 'https://ror.org/01anr5861 Balipara Foundation'), (76153, 'https://ror.org/01aqb5k11', 'en', 1, 'https://ror.org/01aqb5k11 Biotechnology and Pharmaceutical Industries Promotion Office 經濟部生技醫藥產業發展推動小組'), (76154, 'https://ror.org/01as6we94', 'en', 1, 'https://ror.org/01as6we94 Rama Devi Women''s University ରମା ଦେବୀ ମହିଳା ବିଶ୍ଵ ବିଦ୍ୟାଳୟ'), (76155, 'https://ror.org/01aseef42', 'no_lang_code', 1, 'https://ror.org/01aseef42 Knowledge Raven Management (Germany)'), (76156, 'https://ror.org/01at1hy26', 'no_lang_code', 1, 'https://ror.org/01at1hy26 Amazentis (Switzerland)'), (76157, 'https://ror.org/01at8a333', 'no_lang_code', 1, 'https://ror.org/01at8a333 Allogene Therapeutics (United States)'), (76158, 'https://ror.org/01atc9m12', 'no_lang_code', 1, 'https://ror.org/01atc9m12 Wizbe Innovations (United States)'), (76159, 'https://ror.org/01av07n65', 'no_lang_code', 1, 'https://ror.org/01av07n65 Suguna Holdings (India)'), (76160, 'https://ror.org/01avpbm97', 'no_lang_code', 1, 'https://ror.org/01avpbm97 Chanel (United Kingdom)'), (76161, 'https://ror.org/01awdtn69', 'no_lang_code', 1, 'https://ror.org/01awdtn69 SinoMaps Press 中国地图出版社'), (76162, 'https://ror.org/01awf8081', 'de', 1, 'https://ror.org/01awf8081 BilSE - Institut für Bildung und Forschung'), (76163, 'https://ror.org/01axfdj86', 'en', 1, 'https://ror.org/01axfdj86 Homi Bhabha Centre for Science Education होमी भाभा विज्ञान शिक्षा केन्द्र, टी.आई.एफ.आर'), (76164, 'https://ror.org/01ay03t14', 'no_lang_code', 1, 'https://ror.org/01ay03t14 13Therapeutics (United States)'), (76165, 'https://ror.org/01ayhb353', 'no_lang_code', 1, 'https://ror.org/01ayhb353 ATS Sardegna (Italy)'), (76166, 'https://ror.org/01b2gkw73', 'de', 1, 'https://ror.org/01b2gkw73 Deutsche Angestellten-Akademie'), (76167, 'https://ror.org/01b6ag081', 'no_lang_code', 1, 'https://ror.org/01b6ag081 MSSCORPS (Taiwan)'), (76168, 'https://ror.org/01b8v0r63', 'en', 1, 'https://ror.org/01b8v0r63 Transportation Safety Institute'), (76169, 'https://ror.org/01b9b0y72', 'no_lang_code', 1, 'https://ror.org/01b9b0y72 Gynesonics (United States)'), (76170, 'https://ror.org/01b9t8b35', 'no_lang_code', 1, 'https://ror.org/01b9t8b35 Medipan (Germany)'), (76171, 'https://ror.org/01ba4rc77', 'no_lang_code', 1, 'https://ror.org/01ba4rc77 Silverside Detectors (United States)'), (76172, 'https://ror.org/01baj0246', 'de', 1, 'https://ror.org/01baj0246 Beratungs und Schulungsinstitut für Tierschutz bei Transport und Schlachtung'), (76173, 'https://ror.org/01bd30j68', 'en', 1, 'https://ror.org/01bd30j68 Academy of Law Management of the Federal Penal Service of Russia Академия права и управления ФСИН'), (76174, 'https://ror.org/01bdefj47', 'en', 1, 'https://ror.org/01bdefj47 Institute of History and Philology, Academia Sinica 中央研究院歷史語言研究所研究大樓檔案館'), (76175, 'https://ror.org/01bdg6b26', 'no_lang_code', 1, 'https://ror.org/01bdg6b26 Newtec Services Group (United States)'), (76176, 'https://ror.org/01berdk28', 'no_lang_code', 1, 'https://ror.org/01berdk28 Strabag (Germany)'), (76177, 'https://ror.org/01bgyfj42', 'no_lang_code', 1, 'https://ror.org/01bgyfj42 Venable Instruments (United States)'), (76178, 'https://ror.org/01bhz3v89', 'no', 1, 'https://ror.org/01bhz3v89 Biofokus'), (76179, 'https://ror.org/01bk4zx34', 'de', 1, 'https://ror.org/01bk4zx34 Thüringer Institut für Akademische Weiterbildung'), (76180, 'https://ror.org/01bnwnv33', 'no_lang_code', 1, 'https://ror.org/01bnwnv33 S&K Aerospace (United States)'), (76181, 'https://ror.org/01bqvph43', 'en', 1, 'https://ror.org/01bqvph43 W. G. (Bill) Hefner VA Medical Center'), (76182, 'https://ror.org/01bvph436', 'en', 1, 'https://ror.org/01bvph436 Rotunda – The Center for Human Reproduction'), (76183, 'https://ror.org/01bxmvw18', 'en', 1, 'https://ror.org/01bxmvw18 Hebei Rehabilitation Hospital 河北リハビリテーション病院'), (76184, 'https://ror.org/01bxpwm10', 'de', 1, 'https://ror.org/01bxpwm10 Institut für Wasser und Boden Dr. Uhlmann'), (76185, 'https://ror.org/01bxzfe12', 'en', 1, 'https://ror.org/01bxzfe12 PROCURE'), (76186, 'https://ror.org/01bzbbd61', 'en', 1, 'https://ror.org/01bzbbd61 Gallup Korea'), (76187, 'https://ror.org/01c0kpp64', 'en', 1, 'https://ror.org/01c0kpp64 University College of Azarabadegan موسسه آموزش عالی آذرآبادگان'), (76188, 'https://ror.org/01c0mrz71', 'en', 1, 'https://ror.org/01c0mrz71 Directorate of Poultry Research ఐసిఎఆర్-డైరెక్టరేట్ పౌల్ట్రీ రీసెర్చ్'), (76189, 'https://ror.org/01c13f829', 'en', 1, 'https://ror.org/01c13f829 Kinki Polytechnic College 近畿ポリテクカレッジ'), (76190, 'https://ror.org/01c1pcz80', 'de', 1, 'https://ror.org/01c1pcz80 Kleine Private Lehrinstitut Derksen'), (76191, 'https://ror.org/01c3m4791', 'no_lang_code', 1, 'https://ror.org/01c3m4791 Regio (Germany)'), (76192, 'https://ror.org/01c40z329', 'en', 1, 'https://ror.org/01c40z329 Heilongjiang Coldland Building Science Research Institute 黑龙江省寒地建筑科学研究院'), (76193, 'https://ror.org/01c4gq057', 'en', 1, 'https://ror.org/01c4gq057 Tongliao Academy of Agricultural Sciences 通辽市农业科学研究院'), (76194, 'https://ror.org/01c55fw55', 'en', 1, 'https://ror.org/01c55fw55 Krishi Vigyan Kendra, Ghatkhed Amravati'), (76195, 'https://ror.org/01c5fzf42', 'no_lang_code', 1, 'https://ror.org/01c5fzf42 STC Biologics (United States)'), (76196, 'https://ror.org/01c7pa495', 'no_lang_code', 1, 'https://ror.org/01c7pa495 Powertech Technology (Taiwan) 力成科技'), (76197, 'https://ror.org/01c8p7c25', 'it', 1, 'https://ror.org/01c8p7c25 ASP Città di Bologna'), (76198, 'https://ror.org/01camqg73', 'en', 1, 'https://ror.org/01camqg73 Tana High-Level Forum on Security in Africa'), (76199, 'https://ror.org/01casvr19', 'no_lang_code', 1, 'https://ror.org/01casvr19 Scribe Biosciences (United States)'), (76200, 'https://ror.org/01cat9493', 'no_lang_code', 1, 'https://ror.org/01cat9493 Raumedic (Germany)'), (76201, 'https://ror.org/01cbwsm82', 'no_lang_code', 1, 'https://ror.org/01cbwsm82 GF Biochemicals (Italy)'), (76202, 'https://ror.org/01ccnft78', 'no_lang_code', 1, 'https://ror.org/01ccnft78 Qiagen (Spain)'), (76203, 'https://ror.org/01ccttc97', 'en', 1, 'https://ror.org/01ccttc97 Forschungsstelle für Energiewirtschaft Research Center for Energy Economics'), (76204, 'https://ror.org/01cdxzt16', 'en', 1, 'https://ror.org/01cdxzt16 Pakistan Scientific and Technological Information Centre پاکستان سائنسی اور تکنیکی معلومات مرکز'), (76205, 'https://ror.org/01cepg588', 'no_lang_code', 1, 'https://ror.org/01cepg588 Haleakala Research and Development (United States)'), (76206, 'https://ror.org/01cesq109', 'en', 1, 'https://ror.org/01cesq109 Liverpool Medical Institution'), (76207, 'https://ror.org/01cf59p25', 'en', 1, 'https://ror.org/01cf59p25 Unlimited Potential'), (76208, 'https://ror.org/01cghcn81', 'en', 1, 'https://ror.org/01cghcn81 Southern Regional Research Center'), (76209, 'https://ror.org/01cmhh462', 'en', 1, 'https://ror.org/01cmhh462 Bavarian Broadcasting Bayerischer Rundfunk'), (76210, 'https://ror.org/01cpb1168', 'en', 1, 'https://ror.org/01cpb1168 State Forest Research Institute'), (76211, 'https://ror.org/01crytg85', 'en', 1, 'https://ror.org/01crytg85 Adani Institute of Infrastructure Engineering અદાણી ઇન્સ્ટિટ્યૂટ ઓફ ઈન્ફ્રાસ્ટ્રક્ચર એન્જિનિયરિંગ'), (76212, 'https://ror.org/01cte4v14', 'no_lang_code', 1, 'https://ror.org/01cte4v14 PKG (United States)'), (76213, 'https://ror.org/01cvr7569', 'no_lang_code', 1, 'https://ror.org/01cvr7569 Auven Therapeutics (United States)'), (76214, 'https://ror.org/01cxprv64', 'en', 1, 'https://ror.org/01cxprv64 Initiative Prospective Agricole et Rurale'), (76215, 'https://ror.org/01cyp2953', 'no_lang_code', 1, 'https://ror.org/01cyp2953 Xenstats (Poland)'), (76216, 'https://ror.org/01d0zz505', 'en', 1, 'https://ror.org/01d0zz505 Jean Mayer Human Nutrition Research Center on Aging'), (76217, 'https://ror.org/01d1pkv81', 'no_lang_code', 1, 'https://ror.org/01d1pkv81 Viz-Tek (United States)'), (76218, 'https://ror.org/01d2xqw69', 'de', 1, 'https://ror.org/01d2xqw69 Technologiezentrum Halbleitermaterialien'), (76219, 'https://ror.org/01d46py16', 'es', 1, 'https://ror.org/01d46py16 Centro Jambatu de Investigación y Conservación de Anfibios'), (76220, 'https://ror.org/01d4n7s11', 'en', 1, 'https://ror.org/01d4n7s11 Bath VA Medical Center'), (76221, 'https://ror.org/01d7h6313', 'no_lang_code', 1, 'https://ror.org/01d7h6313 Enzo Life Sciences (United States)'), (76222, 'https://ror.org/01d9dbd65', 'en', 1, 'https://ror.org/01d9dbd65 Africa Centres for Disease Control and Prevention'), (76223, 'https://ror.org/01d9dyv42', 'en', 1, 'https://ror.org/01d9dyv42 National Research Centre for Integrated Pest Management राष्ट्रीय समेकित नाशीजीव प्रबन्धन केन्द्र'), (76224, 'https://ror.org/01db4wa08', 'no_lang_code', 1, 'https://ror.org/01db4wa08 DUKSAN Neolux (South Korea)'), (76225, 'https://ror.org/01dc86h50', 'no_lang_code', 1, 'https://ror.org/01dc86h50 Fachverband Gebäude-Klima (Germany)'), (76226, 'https://ror.org/01ddr6f40', 'no_lang_code', 1, 'https://ror.org/01ddr6f40 Enteris Biopharma (United States)'), (76227, 'https://ror.org/01dj1tt46', 'no_lang_code', 1, 'https://ror.org/01dj1tt46 Neuraxpharm (Spain)'), (76228, 'https://ror.org/01dj88q67', 'no_lang_code', 1, 'https://ror.org/01dj88q67 Besins Healthcare (Thailand)'), (76229, 'https://ror.org/01djdkh62', 'no_lang_code', 1, 'https://ror.org/01djdkh62 VitreaLab (Austria)'), (76230, 'https://ror.org/01djh3v47', 'fr', 1, 'https://ror.org/01djh3v47 Centre Autonome d''Etudes et de Renforcement des capacités pour le Développement au Togo'), (76231, 'https://ror.org/01djrhs97', 'en', 1, 'https://ror.org/01djrhs97 Federal Reserve Bank of Boston'), (76232, 'https://ror.org/01dktcn28', 'en', 1, 'https://ror.org/01dktcn28 Scholarly Publishing and Academic Resources Coalition'), (76233, 'https://ror.org/01dphnv87', 'en', 1, 'https://ror.org/01dphnv87 National Institute of Pharmaceutical Education and Research'), (76234, 'https://ror.org/01dqwwr24', 'en', 1, 'https://ror.org/01dqwwr24 Iora Ecological Solutions'), (76235, 'https://ror.org/01dr6j212', 'no_lang_code', 1, 'https://ror.org/01dr6j212 Tactical Edge (United States)'), (76236, 'https://ror.org/01drpqr75', 'no_lang_code', 1, 'https://ror.org/01drpqr75 Technologiezentrum Dresden (Germany)'), (76237, 'https://ror.org/01dspch42', 'no_lang_code', 1, 'https://ror.org/01dspch42 Amiri Diwan الديوان الأميري'), (76238, 'https://ror.org/01dt1nn03', 'en', 1, 'https://ror.org/01dt1nn03 VA Hudson Valley Health Care System'), (76239, 'https://ror.org/01dwnnm75', 'no_lang_code', 1, 'https://ror.org/01dwnnm75 Shanghai Aerospace Automobile Electromechanical (China) 上海航天汽车机电股份有限公司'), (76240, 'https://ror.org/01dx2f060', 'fr', 1, 'https://ror.org/01dx2f060 Nature Environnement 17'), (76241, 'https://ror.org/01dxbn742', 'es', 1, 'https://ror.org/01dxbn742 Fundación A LA PAR'), (76242, 'https://ror.org/01dzqde20', 'no_lang_code', 1, 'https://ror.org/01dzqde20 Autodesk (United Kingdom)'), (76243, 'https://ror.org/01e0dz978', 'en', 1, 'https://ror.org/01e0dz978 VA Central Western Massachusetts Healthcare System'), (76244, 'https://ror.org/01e154458', 'en', 1, 'https://ror.org/01e154458 Croatian National Bank Hrvatska Narodna Banka'), (76245, 'https://ror.org/01e2h6r50', 'en', 1, 'https://ror.org/01e2h6r50 Dr Jenner''s House, Museum and Garden'), (76246, 'https://ror.org/01e2hm815', 'en', 1, 'https://ror.org/01e2hm815 Mid-Atlantic Transportation Sustainability Center'), (76247, 'https://ror.org/01e6kag67', 'en', 1, 'https://ror.org/01e6kag67 Gujarat Science City'), (76248, 'https://ror.org/01e7k1548', 'no_lang_code', 1, 'https://ror.org/01e7k1548 Kistler (United Kingdom)'), (76249, 'https://ror.org/01e7yxy62', 'no_lang_code', 1, 'https://ror.org/01e7yxy62 Vantage Health Solutions (Myanmar)'), (76250, 'https://ror.org/01e99h158', 'en', 1, 'https://ror.org/01e99h158 Velleja Research'), (76251, 'https://ror.org/01eaqxy97', 'no_lang_code', 1, 'https://ror.org/01eaqxy97 Momentive (Japan) モメンティブ・パフォーマンス・マテリアルズ・ジャパン'), (76252, 'https://ror.org/01eb4hw22', 'no_lang_code', 1, 'https://ror.org/01eb4hw22 NeoMatrix Therapeutics (United States)'), (76253, 'https://ror.org/01ecwsw76', 'en', 1, 'https://ror.org/01ecwsw76 Shanghai Stock Exchange 上海证券交易所'), (76254, 'https://ror.org/01ecxmq21', 'no_lang_code', 1, 'https://ror.org/01ecxmq21 Inari Agriculture (United States)'), (76255, 'https://ror.org/01eda7a75', 'en', 1, 'https://ror.org/01eda7a75 Second People Hospital of Hunan 湖南省第二人民医院'), (76256, 'https://ror.org/01ee9cx45', 'no_lang_code', 1, 'https://ror.org/01ee9cx45 Enercity (Germany)'), (76257, 'https://ror.org/01eg7wt17', 'en', 1, 'https://ror.org/01eg7wt17 Centre for Humanitarian Dialogue'), (76258, 'https://ror.org/01egwg173', 'en', 1, 'https://ror.org/01egwg173 UK Astronomy Technology Centre'), (76259, 'https://ror.org/01ehqfp97', 'no_lang_code', 1, 'https://ror.org/01ehqfp97 Zensun (China)'), (76260, 'https://ror.org/01ej3kj12', 'no_lang_code', 1, 'https://ror.org/01ej3kj12 Institut für berufliche Bildung, Arbeitsmarkt- und Sozialpolitik Institute for Vocational Education, Labor Market and Social Policy (Germany)'), (76261, 'https://ror.org/01en28k31', 'no_lang_code', 1, 'https://ror.org/01en28k31 Renova Therapeutics (United States)'), (76262, 'https://ror.org/01ennef75', 'en', 1, 'https://ror.org/01ennef75 MiMER Centre'), (76263, 'https://ror.org/01ep5y454', 'no_lang_code', 1, 'https://ror.org/01ep5y454 Venator Solutions (United States)'), (76264, 'https://ror.org/01eq1tg37', 'de', 1, 'https://ror.org/01eq1tg37 Landesbetrieb für Küstenschutz, Nationalpark und Meeresschutz Schleswig-Holstein'), (76265, 'https://ror.org/01eqdrp13', 'no_lang_code', 1, 'https://ror.org/01eqdrp13 BMW (United Kingdom)'), (76266, 'https://ror.org/01eqh1863', 'en', 1, 'https://ror.org/01eqh1863 Yango University 阳光学院'), (76267, 'https://ror.org/01eqz2j94', 'no_lang_code', 1, 'https://ror.org/01eqz2j94 Astro- und Feinwerktechnik Adlershof (Germany)'), (76268, 'https://ror.org/01etbrg32', 'en', 1, 'https://ror.org/01etbrg32 Henan Nonferrous Metals Geological Exploration Institute 河南省有色金属地质勘查总院'), (76269, 'https://ror.org/01eygpy73', 'no_lang_code', 1, 'https://ror.org/01eygpy73 Phelix Therapeutics (United States)'), (76270, 'https://ror.org/01ezwtn57', 'en', 1, 'https://ror.org/01ezwtn57 The Institution of Environmental Sciences'), (76271, 'https://ror.org/01f0pjz75', 'en', 1, 'https://ror.org/01f0pjz75 Jazeera University'), (76272, 'https://ror.org/01f0rgv52', 'en', 1, 'https://ror.org/01f0rgv52 Wuhan Prevention and Treatment Center for Occupational Diseases 武汉市职业病防治院'), (76273, 'https://ror.org/01f30wv40', 'de', 1, 'https://ror.org/01f30wv40 Institut für Frauengesundheit'), (76274, 'https://ror.org/01f35f850', 'en', 1, 'https://ror.org/01f35f850 The Browns'' School'), (76275, 'https://ror.org/01f4r1a13', 'no_lang_code', 1, 'https://ror.org/01f4r1a13 Visca (United States)'), (76276, 'https://ror.org/01f55re52', 'no_lang_code', 1, 'https://ror.org/01f55re52 Takazono (Japan) 株式会社タカゾノ'), (76277, 'https://ror.org/01f6r4445', 'no_lang_code', 1, 'https://ror.org/01f6r4445 CJSC Ekran FEP (Russia) ЗАО Экран ФЭП'), (76278, 'https://ror.org/01f8zjp46', 'no_lang_code', 1, 'https://ror.org/01f8zjp46 Nogra Pharma (Ireland)'), (76279, 'https://ror.org/01f978p98', 'no_lang_code', 1, 'https://ror.org/01f978p98 Venus Concept (Canada)'), (76280, 'https://ror.org/01fcvr303', 'en', 1, 'https://ror.org/01fcvr303 Gifu Academy of Forest Science and Culture 岐阜県立森林文化アカデミー'), (76281, 'https://ror.org/01fdmy333', 'pt', 1, 'https://ror.org/01fdmy333 Governo do Estado de Paraíba'), (76282, 'https://ror.org/01fef0w16', 'en', 1, 'https://ror.org/01fef0w16 EAT'), (76283, 'https://ror.org/01ffdac64', 'de', 1, 'https://ror.org/01ffdac64 Institut für Sozialforschung und Sozialplanung'), (76284, 'https://ror.org/01fgny818', 'no_lang_code', 1, 'https://ror.org/01fgny818 Vacuum Process Engineering (United States)'), (76285, 'https://ror.org/01fhhep80', 'en', 1, 'https://ror.org/01fhhep80 China Productivity Center'), (76286, 'https://ror.org/01fhyd561', 'en', 1, 'https://ror.org/01fhyd561 Kyoto College of Economics 京都経済短期大学'), (76287, 'https://ror.org/01fkqhn95', 'en', 1, 'https://ror.org/01fkqhn95 National Federation of Cooperative Sugar Factories कंपनी के नेशनल फेडरेशन - सेशन शुगर फैक्ट्रीज लिमिटेड'), (76288, 'https://ror.org/01fmexj76', 'no_lang_code', 1, 'https://ror.org/01fmexj76 Primed (Germany) Primed Halberstadt Medizintechnik'), (76289, 'https://ror.org/01fn4wm94', 'no_lang_code', 1, 'https://ror.org/01fn4wm94 Bagilstein (Germany)'), (76290, 'https://ror.org/01fr0xv11', 'en', 1, 'https://ror.org/01fr0xv11 Heilongjiang Provincial Wildlife Research Institute 黑龙江省野生动物研究所'), (76291, 'https://ror.org/01ftjhs10', 'no_lang_code', 1, 'https://ror.org/01ftjhs10 Ramboll (Germany)'), (76292, 'https://ror.org/01ftmwd24', 'no_lang_code', 1, 'https://ror.org/01ftmwd24 Stu Segall Productions (United States)'), (76293, 'https://ror.org/01ftyyd55', 'no_lang_code', 1, 'https://ror.org/01ftyyd55 Coty (United States)'), (76294, 'https://ror.org/01fy15230', 'no_lang_code', 1, 'https://ror.org/01fy15230 Reliant Technologies (United States)'), (76295, 'https://ror.org/01g1qg816', 'en', 1, 'https://ror.org/01g1qg816 Northeast Cancer Centre'), (76296, 'https://ror.org/01g3a5n46', 'no_lang_code', 1, 'https://ror.org/01g3a5n46 Siegfried (Switzerland)'), (76297, 'https://ror.org/01g67he48', 'no_lang_code', 1, 'https://ror.org/01g67he48 Medicaroid (Japan) メディカロイド'), (76298, 'https://ror.org/01g89d937', 'no_lang_code', 1, 'https://ror.org/01g89d937 Gloor Instruments (Switzerland)'), (76299, 'https://ror.org/01gawax11', 'no_lang_code', 1, 'https://ror.org/01gawax11 Appvion (United States)'), (76300, 'https://ror.org/01gczqs46', 'no_lang_code', 1, 'https://ror.org/01gczqs46 DK Recycling und Roheisen (Germany)'), (76301, 'https://ror.org/01gdcm534', 'no_lang_code', 1, 'https://ror.org/01gdcm534 Arte (Japan)'), (76302, 'https://ror.org/01gfzgg34', 'no_lang_code', 1, 'https://ror.org/01gfzgg34 Vaxess Technologies (United States)'), (76303, 'https://ror.org/01ghzbt10', 'sk', 1, 'https://ror.org/01ghzbt10 Nemocnica Svätého Michala'), (76304, 'https://ror.org/01gjgcg03', 'no_lang_code', 1, 'https://ror.org/01gjgcg03 Paragon Genomics (United States)'), (76305, 'https://ror.org/01gpa4h16', 'en', 1, 'https://ror.org/01gpa4h16 TRENDS Research & Advisory مركز تريندز للبحوث والاستشارات'), (76306, 'https://ror.org/01gpng625', 'no_lang_code', 1, 'https://ror.org/01gpng625 TerraVia (United States)'), (76307, 'https://ror.org/01grk2s95', 'pt', 1, 'https://ror.org/01grk2s95 Instituto Laura Fressatto'), (76308, 'https://ror.org/01grpbq12', 'no_lang_code', 1, 'https://ror.org/01grpbq12 Novapharm Research (Australia)'), (76309, 'https://ror.org/01grvwt83', 'no_lang_code', 1, 'https://ror.org/01grvwt83 BioNet Lab (Japan) バイオネット研究所'), (76310, 'https://ror.org/01gsxb553', 'en', 1, 'https://ror.org/01gsxb553 Kaimosi Friends University College'), (76311, 'https://ror.org/01gtv1921', 'no_lang_code', 1, 'https://ror.org/01gtv1921 Virtual Phantoms (United States)'), (76312, 'https://ror.org/01gw9bn12', 'de', 1, 'https://ror.org/01gw9bn12 HeurekaNet'), (76313, 'https://ror.org/01gwd8297', 'no_lang_code', 1, 'https://ror.org/01gwd8297 Bio Medic Data Systems (United States)'), (76314, 'https://ror.org/01gwdsm60', 'es', 1, 'https://ror.org/01gwdsm60 Fundación Andaluza Beturia para la Investigación en Salud'), (76315, 'https://ror.org/01gycb861', 'no_lang_code', 1, 'https://ror.org/01gycb861 Thyssengas (Germany)'), (76316, 'https://ror.org/01gystf83', 'no_lang_code', 1, 'https://ror.org/01gystf83 Pollere (United States)'), (76317, 'https://ror.org/01gz5c498', 'no_lang_code', 1, 'https://ror.org/01gz5c498 Sonendo (United States)'), (76318, 'https://ror.org/01gzkj661', 'no_lang_code', 1, 'https://ror.org/01gzkj661 Essity (Sweden)'), (76319, 'https://ror.org/01h0bbn98', 'no_lang_code', 1, 'https://ror.org/01h0bbn98 Celltechgen (United States)'), (76320, 'https://ror.org/01h0vdv12', 'no_lang_code', 1, 'https://ror.org/01h0vdv12 Bristol-Myers Squibb (Ireland)'), (76321, 'https://ror.org/01h14dd51', 'no_lang_code', 1, 'https://ror.org/01h14dd51 Axa (United Kingdom)'), (76322, 'https://ror.org/01h2q5p96', 'no_lang_code', 1, 'https://ror.org/01h2q5p96 Transmural Systems (United States)'), (76323, 'https://ror.org/01h371j34', 'de', 1, 'https://ror.org/01h371j34 AGFW'), (76324, 'https://ror.org/01h39y763', 'no_lang_code', 1, 'https://ror.org/01h39y763 Endotronix (United States)'); INSERT INTO `rors` VALUES (76325, 'https://ror.org/01h3j3f09', 'no_lang_code', 1, 'https://ror.org/01h3j3f09 Mifune Dinosaur Museum 御船町恐竜博物館'), (76326, 'https://ror.org/01h5d6x15', 'en', 1, 'https://ror.org/01h5d6x15 Institute of Forest Resource Information Techniques 中国林业科学研究院资源信息研究所'), (76327, 'https://ror.org/01h772984', 'en', 1, 'https://ror.org/01h772984 Southern Nevada Water Authority'), (76328, 'https://ror.org/01h8x8p33', 'no_lang_code', 1, 'https://ror.org/01h8x8p33 DataStrategy (Japan) データストラテジ'), (76329, 'https://ror.org/01has8079', 'en', 1, 'https://ror.org/01has8079 The Central Hospital of Xiao gan 孝感市中心医院'), (76330, 'https://ror.org/01hcney72', 'no_lang_code', 1, 'https://ror.org/01hcney72 Thyssenkrupp (Slovakia)'), (76331, 'https://ror.org/01hcrn459', 'en', 1, 'https://ror.org/01hcrn459 Education and Science Workers'' Union Gewerkschaft Erziehung und Wissenschaft'), (76332, 'https://ror.org/01hg7d511', 'no_lang_code', 1, 'https://ror.org/01hg7d511 Login BV (Slovenia)'), (76333, 'https://ror.org/01hh2jh68', 'da', 1, 'https://ror.org/01hh2jh68 Danmarks Nationalbank'), (76334, 'https://ror.org/01hjd1v39', 'no_lang_code', 1, 'https://ror.org/01hjd1v39 Zelseed (Slovakia)'), (76335, 'https://ror.org/01hktad75', 'no_lang_code', 1, 'https://ror.org/01hktad75 Optimal Solutions Software (United States)'), (76336, 'https://ror.org/01hmd1y41', 'en', 1, 'https://ror.org/01hmd1y41 Federal Police of Brazil Police Fédérale Policía Federal Polícia Federal'), (76337, 'https://ror.org/01hmsgz49', 'no_lang_code', 1, 'https://ror.org/01hmsgz49 Krishi Vigyan Kendra, Latur कृषी विज्ञान केंद्र, लातूर'), (76338, 'https://ror.org/01hnmd615', 'no_lang_code', 1, 'https://ror.org/01hnmd615 Hydroquest (France)'), (76339, 'https://ror.org/01hpqfn25', 'en', 1, 'https://ror.org/01hpqfn25 IBM Research - United Kingdom'), (76340, 'https://ror.org/01hq7pd83', 'en', 1, 'https://ror.org/01hq7pd83 The First Hospital of Kunming 昆明市第一人民医院'), (76341, 'https://ror.org/01hr4k271', 'en', 1, 'https://ror.org/01hr4k271 Health Commission of Anhui Province 安徽省卫生健康委员会'), (76342, 'https://ror.org/01hs4tb08', 'de', 1, 'https://ror.org/01hs4tb08 Museumslandschaft Hessen Kassel'), (76343, 'https://ror.org/01hthpr47', 'no_lang_code', 1, 'https://ror.org/01hthpr47 Hamilton Medical (Switzerland)'), (76344, 'https://ror.org/01hv3m305', 'no_lang_code', 1, 'https://ror.org/01hv3m305 Becker Technologies (Germany)'), (76345, 'https://ror.org/01hxmwm32', 'en', 1, 'https://ror.org/01hxmwm32 Punjab State Council for Science & Technology ਵਿਗਿਆਨ ਅਤੇ ਤਕਨਾਲੋਜੀ ਦੇ ਲਈ ਪੰਜਾਬ ਰਾਜ ਪ੍ਰੀਸ਼ਦ'), (76346, 'https://ror.org/01hy7j205', 'no_lang_code', 1, 'https://ror.org/01hy7j205 Altum Pharmaceuticals (Canada)'), (76347, 'https://ror.org/01hyt0e74', 'no_lang_code', 1, 'https://ror.org/01hyt0e74 Plasma Controls (United States)'), (76348, 'https://ror.org/01hzs1h88', 'no_lang_code', 1, 'https://ror.org/01hzs1h88 Universalbeton Heringen (Germany)'), (76349, 'https://ror.org/01j1q9a64', 'en', 1, 'https://ror.org/01j1q9a64 International Work Group for Indigenous Affairs'), (76350, 'https://ror.org/01j60ss54', 'es', 1, 'https://ror.org/01j60ss54 Asociación Jardín Botánico La Laguna'), (76351, 'https://ror.org/01j66t516', 'de', 1, 'https://ror.org/01j66t516 Verein zur Förderung Agrar- und Stadtökologischer Projekte'), (76352, 'https://ror.org/01j7kyf72', 'en', 1, 'https://ror.org/01j7kyf72 Archdiocese of Cologne Erzbistum Köln'), (76353, 'https://ror.org/01jbsqt52', 'no_lang_code', 1, 'https://ror.org/01jbsqt52 Medical Components (United States)'), (76354, 'https://ror.org/01jc4ps18', 'no_lang_code', 1, 'https://ror.org/01jc4ps18 CathRx (Australia)'), (76355, 'https://ror.org/01jdd8n67', 'no_lang_code', 1, 'https://ror.org/01jdd8n67 Tgv (United States)'), (76356, 'https://ror.org/01jdgtk90', 'no_lang_code', 1, 'https://ror.org/01jdgtk90 UbiQD (United States)'), (76357, 'https://ror.org/01jf25m17', 'no_lang_code', 1, 'https://ror.org/01jf25m17 Stealthyx (United Kingdom)'), (76358, 'https://ror.org/01jfknd16', 'no_lang_code', 1, 'https://ror.org/01jfknd16 Treventis (Canada)'), (76359, 'https://ror.org/01jfre984', 'no_lang_code', 1, 'https://ror.org/01jfre984 Aptiv (Ireland)'), (76360, 'https://ror.org/01jh73d13', 'no_lang_code', 1, 'https://ror.org/01jh73d13 Kemin (Belgium)'), (76361, 'https://ror.org/01jk11645', 'de', 1, 'https://ror.org/01jk11645 Institut für Tier-, Natur- und Umweltethik'), (76362, 'https://ror.org/01jk37618', 'no_lang_code', 1, 'https://ror.org/01jk37618 Singleron Biotechnologies (china)'), (76363, 'https://ror.org/01jmes654', 'no_lang_code', 1, 'https://ror.org/01jmes654 Tendeg (United States)'), (76364, 'https://ror.org/01jn16g31', 'en', 1, 'https://ror.org/01jn16g31 Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services Zwischenstaatliche Plattform für Biodiversität und Ökosystem-Dienstleistungen'), (76365, 'https://ror.org/01jpxmr98', 'en', 1, 'https://ror.org/01jpxmr98 Mazingira Institute'), (76366, 'https://ror.org/01jsw1s12', 'en', 1, 'https://ror.org/01jsw1s12 Florida Center for Dermatology'), (76367, 'https://ror.org/01jw3cq70', 'no_lang_code', 1, 'https://ror.org/01jw3cq70 Institut für Entsorgung und Umwelttechnik (Germany)'), (76368, 'https://ror.org/01jwfv926', 'no_lang_code', 1, 'https://ror.org/01jwfv926 Korean Register (South Korea) 한국선급'), (76369, 'https://ror.org/01jxtbx65', 'no_lang_code', 1, 'https://ror.org/01jxtbx65 Biedermann Technologies (Germany)'), (76370, 'https://ror.org/01jzb6k09', 'no_lang_code', 1, 'https://ror.org/01jzb6k09 Bioinformatics Solutions (Canada)'), (76371, 'https://ror.org/01jzeez77', 'en', 1, 'https://ror.org/01jzeez77 Maryland Advanced Development Laboratory'), (76372, 'https://ror.org/01jzg2v44', 'no_lang_code', 1, 'https://ror.org/01jzg2v44 MKS Instruments (Germany)'), (76373, 'https://ror.org/01jzyr789', 'no_lang_code', 1, 'https://ror.org/01jzyr789 Bronkhorst (Netherlands)'), (76374, 'https://ror.org/01k1p7y49', 'no_lang_code', 1, 'https://ror.org/01k1p7y49 Zeteo Tech (United States)'), (76375, 'https://ror.org/01k3cnb05', 'no_lang_code', 1, 'https://ror.org/01k3cnb05 Kamiichi General Hospital かみいち総合病院'), (76376, 'https://ror.org/01k48et73', 'no_lang_code', 1, 'https://ror.org/01k48et73 Maui Imaging (United States)'), (76377, 'https://ror.org/01k8fm112', 'de', 1, 'https://ror.org/01k8fm112 Universität Bayern'), (76378, 'https://ror.org/01kcan266', 'no_lang_code', 1, 'https://ror.org/01kcan266 CytoSMART Technologies (Netherlands)'), (76379, 'https://ror.org/01kcsv364', 'de', 1, 'https://ror.org/01kcsv364 Internationales Institut für Sozio-Informatik'), (76380, 'https://ror.org/01kf4j136', 'no_lang_code', 1, 'https://ror.org/01kf4j136 G.E.O.S. Ingenieurgesellschaft (Germany)'), (76381, 'https://ror.org/01kfq1x58', 'en', 1, 'https://ror.org/01kfq1x58 Islamic Azad University, Abhar Branch دانشگاه آزاد اسلامی واحد ابهر'), (76382, 'https://ror.org/01kgmpa94', 'en', 1, 'https://ror.org/01kgmpa94 Institut für innovative Verfahrenstechnik Institute for Innovative Process Engineering'), (76383, 'https://ror.org/01kjj2h97', 'en', 1, 'https://ror.org/01kjj2h97 Moscow Research Institute for Cybernetic Medicine Московский институт кибернетической медицины'), (76384, 'https://ror.org/01kjych06', 'en', 1, 'https://ror.org/01kjych06 Fraunhofer ICT Group Fraunhofer-Verbund IUK-Technologie'), (76385, 'https://ror.org/01kk57e40', 'no_lang_code', 1, 'https://ror.org/01kk57e40 Agency for Medical Innovations (Austria)'), (76386, 'https://ror.org/01kkmzs26', 'no_lang_code', 1, 'https://ror.org/01kkmzs26 Seriad (United States)'), (76387, 'https://ror.org/01kkwex59', 'no_lang_code', 1, 'https://ror.org/01kkwex59 Scientific Toolworks (United States)'), (76388, 'https://ror.org/01knk7v72', 'en', 1, 'https://ror.org/01knk7v72 Tameside and Glossop Integrated Care NHS Foundation Trust'), (76389, 'https://ror.org/01kpf5k20', 'no_lang_code', 1, 'https://ror.org/01kpf5k20 Flow Pharma (United States)'), (76390, 'https://ror.org/01kqb2f52', 'no_lang_code', 1, 'https://ror.org/01kqb2f52 Kuraray Noritake Dental (Japan) クラレノリタケデンタル株式会社'), (76391, 'https://ror.org/01kqcdh89', 'en', 1, 'https://ror.org/01kqcdh89 Wuhan Pulmonary Hospital 武汉市肺科医院'), (76392, 'https://ror.org/01kqva520', 'no_lang_code', 1, 'https://ror.org/01kqva520 Opus 12 (United States)'), (76393, 'https://ror.org/01krwnb02', 'no_lang_code', 1, 'https://ror.org/01krwnb02 VNIR Biotechnologies (India)'), (76394, 'https://ror.org/01ksmk704', 'de', 1, 'https://ror.org/01ksmk704 Institut für Rohrleitungsbau an der Fachhochschule Oldenburg'), (76395, 'https://ror.org/01kx4gj60', 'no_lang_code', 1, 'https://ror.org/01kx4gj60 Varex Imaging (United States)'), (76396, 'https://ror.org/01kxwcg54', 'de', 1, 'https://ror.org/01kxwcg54 Schweißtechnische Lehr- und Versuchsanstalt Nord'), (76397, 'https://ror.org/01ky4ht91', 'no_lang_code', 1, 'https://ror.org/01ky4ht91 Redbud Labs (United States)'), (76398, 'https://ror.org/01ky9e908', 'es', 1, 'https://ror.org/01ky9e908 Instituto Superior Tecnológico Loja'), (76399, 'https://ror.org/01m12mf31', 'no_lang_code', 1, 'https://ror.org/01m12mf31 Indus Biotech (India)'), (76400, 'https://ror.org/01m2aa958', 'de', 1, 'https://ror.org/01m2aa958 Hanse Institut Oldenburg Bildung und Gesundheit'), (76401, 'https://ror.org/01m2h6984', 'en', 1, 'https://ror.org/01m2h6984 Chameli Devi Institute of Pharmacy'), (76402, 'https://ror.org/01m39r121', 'en', 1, 'https://ror.org/01m39r121 Tate & Lyle (United Kingdom)'), (76403, 'https://ror.org/01m69r865', 'en', 1, 'https://ror.org/01m69r865 Genetic Resources Center 遺伝資源センター'), (76404, 'https://ror.org/01m7j1c81', 'no_lang_code', 1, 'https://ror.org/01m7j1c81 Summit Test Solutions (United States)'), (76405, 'https://ror.org/01m7xb285', 'no_lang_code', 1, 'https://ror.org/01m7xb285 Aquestive (United States)'), (76406, 'https://ror.org/01m9s4d25', 'en', 1, 'https://ror.org/01m9s4d25 Colorado Space Grant Consortium'), (76407, 'https://ror.org/01m9scr97', 'en', 1, 'https://ror.org/01m9scr97 Analysis and Testing Centre 分析测试中心'), (76408, 'https://ror.org/01m9x8p33', 'no_lang_code', 1, 'https://ror.org/01m9x8p33 Isochem (France)'), (76409, 'https://ror.org/01mbbap52', 'no_lang_code', 1, 'https://ror.org/01mbbap52 RTI (United States)'), (76410, 'https://ror.org/01mc04w21', 'en', 1, 'https://ror.org/01mc04w21 Fujian Business University 福建商学院'), (76411, 'https://ror.org/01mdf9741', 'no_lang_code', 1, 'https://ror.org/01mdf9741 Old Harbor Native (United States)'), (76412, 'https://ror.org/01mf5nv72', 'no_lang_code', 1, 'https://ror.org/01mf5nv72 Truma (Germany)'), (76413, 'https://ror.org/01mftq342', 'no_lang_code', 1, 'https://ror.org/01mftq342 Konzeko, spol (Slovakia)'), (76414, 'https://ror.org/01mkqvv94', 'no_lang_code', 1, 'https://ror.org/01mkqvv94 Semba Biosciences (United States)'), (76415, 'https://ror.org/01mky9g42', 'en', 1, 'https://ror.org/01mky9g42 Snohomish Health District'), (76416, 'https://ror.org/01mm1y498', 'no_lang_code', 1, 'https://ror.org/01mm1y498 Viewpoint Molecular Targeting (United States)'), (76417, 'https://ror.org/01mm5pq64', 'no_lang_code', 1, 'https://ror.org/01mm5pq64 Biocure (United States)'), (76418, 'https://ror.org/01mp98161', 'en', 1, 'https://ror.org/01mp98161 China Institute of Finance and Capital Markets'), (76419, 'https://ror.org/01mtjh577', 'no_lang_code', 1, 'https://ror.org/01mtjh577 Alivio Therapeutics (United States)'), (76420, 'https://ror.org/01mvsyt14', 'no_lang_code', 1, 'https://ror.org/01mvsyt14 Jnana Therapeutics (United States)'), (76421, 'https://ror.org/01mwqr173', 'de', 1, 'https://ror.org/01mwqr173 Professor Hellriegel Institut'), (76422, 'https://ror.org/01my9wr56', 'en', 1, 'https://ror.org/01my9wr56 Bridge Consultants Foundation'), (76423, 'https://ror.org/01n1byn02', 'de', 1, 'https://ror.org/01n1byn02 Institut der Feuerwehr Nordrhein-Westfalen'), (76424, 'https://ror.org/01n1cp186', 'en', 1, 'https://ror.org/01n1cp186 Central Institute for Research on Goats केन्द्रीय बकरी अनुसंधान संस्थान'), (76425, 'https://ror.org/01n1jtd52', 'no_lang_code', 1, 'https://ror.org/01n1jtd52 Sonavex (United States)'), (76426, 'https://ror.org/01n494f92', 'no_lang_code', 1, 'https://ror.org/01n494f92 A-dec (United States)'), (76427, 'https://ror.org/01n4hfa83', 'no_lang_code', 1, 'https://ror.org/01n4hfa83 QualiMed (Germany)'), (76428, 'https://ror.org/01n71v551', 'en', 1, 'https://ror.org/01n71v551 Universal Scientific Education and Research Network شبکه جهانی آموزش و پژوهش های علمی'), (76429, 'https://ror.org/01n7e3q98', 'en', 1, 'https://ror.org/01n7e3q98 Chiba Prefectural Center Museum Otone Branch 千葉県立中央博物館 大利根分館'), (76430, 'https://ror.org/01n857y41', 'en', 1, 'https://ror.org/01n857y41 Scientific Society of Otolaryngology and Head and Neck Surgery Sociedad Otorrinolaringológica de Castilla y León, Cantabria y La Rioja'), (76431, 'https://ror.org/01n8ggb71', 'en', 1, 'https://ror.org/01n8ggb71 Institut für Biodiversität Institute for Biodiversity'), (76432, 'https://ror.org/01n8pt985', 'no_lang_code', 1, 'https://ror.org/01n8pt985 Seafire Micros (United States)'), (76433, 'https://ror.org/01n8zce53', 'no_lang_code', 1, 'https://ror.org/01n8zce53 AllaChem (United States)'), (76434, 'https://ror.org/01nahaf96', 'no_lang_code', 1, 'https://ror.org/01nahaf96 Uvex (Germany)'), (76435, 'https://ror.org/01ncvmx07', 'no_lang_code', 1, 'https://ror.org/01ncvmx07 Protgen (China)'), (76436, 'https://ror.org/01ndwmb50', 'no_lang_code', 1, 'https://ror.org/01ndwmb50 Alpek (Mexico)'), (76437, 'https://ror.org/01nfd5g36', 'no_lang_code', 1, 'https://ror.org/01nfd5g36 SDI Engineering (United States)'), (76438, 'https://ror.org/01ngh1553', 'no_lang_code', 1, 'https://ror.org/01ngh1553 Avanos Medical (United States)'), (76439, 'https://ror.org/01nhxrw57', 'de', 1, 'https://ror.org/01nhxrw57 Westfalen-Kolleg'), (76440, 'https://ror.org/01njdjw78', 'no_lang_code', 1, 'https://ror.org/01njdjw78 QuEra Computing (United States)'), (76441, 'https://ror.org/01nm9xk96', 'no_lang_code', 1, 'https://ror.org/01nm9xk96 Kumho Petrochemical (South Korea) 금호석유화학 주식회사'), (76442, 'https://ror.org/01nmh8776', 'de', 1, 'https://ror.org/01nmh8776 Forschungsinstitut für Bergbaufolgelandschaften'), (76443, 'https://ror.org/01nn9ej41', 'no_lang_code', 1, 'https://ror.org/01nn9ej41 Silicon Mitus (United States)'), (76444, 'https://ror.org/01nnvad46', 'no_lang_code', 1, 'https://ror.org/01nnvad46 Hydromer (United States)'), (76445, 'https://ror.org/01np3r452', 'en', 1, 'https://ror.org/01np3r452 VA Montana Health Care System'), (76446, 'https://ror.org/01npr5x48', 'no_lang_code', 1, 'https://ror.org/01npr5x48 GNA Research (Israel)'), (76447, 'https://ror.org/01nqkgr65', 'tr', 1, 'https://ror.org/01nqkgr65 Medical Park Tarsus Hastanesi'), (76448, 'https://ror.org/01nrhd027', 'nl', 1, 'https://ror.org/01nrhd027 Flemish Patiënt Platform vzw Vlaams Patiëntenplatform'), (76449, 'https://ror.org/01nssfy55', 'no_lang_code', 1, 'https://ror.org/01nssfy55 Signals Analytics (United States)'), (76450, 'https://ror.org/01nvzxh20', 'no_lang_code', 1, 'https://ror.org/01nvzxh20 DEEP.KBB (Germany)'), (76451, 'https://ror.org/01nwt2j78', 'no_lang_code', 1, 'https://ror.org/01nwt2j78 Sichuan Mianyang 404 Hospital 四川绵阳四〇四医院'), (76452, 'https://ror.org/01nz7sp31', 'no_lang_code', 1, 'https://ror.org/01nz7sp31 Beijing Chemical Industry Research Institute (China) 北京市化学工业研究院'), (76453, 'https://ror.org/01nzm8x21', 'no_lang_code', 1, 'https://ror.org/01nzm8x21 Opticyte (United States)'), (76454, 'https://ror.org/01nztb982', 'en', 1, 'https://ror.org/01nztb982 Abdul Latif Jameel Poverty Action Lab'), (76455, 'https://ror.org/01p1map55', 'no_lang_code', 1, 'https://ror.org/01p1map55 Transitions Optical (United States)'), (76456, 'https://ror.org/01p27zg23', 'fr', 1, 'https://ror.org/01p27zg23 Centre Africain d’Etudes Internationales Diplomatiques Economiques et Stratégiques'), (76457, 'https://ror.org/01p4gwr04', 'no_lang_code', 1, 'https://ror.org/01p4gwr04 Prenosis (United States)'), (76458, 'https://ror.org/01p5b6z49', 'no_lang_code', 1, 'https://ror.org/01p5b6z49 Nota Laboratories (United States)'), (76459, 'https://ror.org/01p5vg276', 'no_lang_code', 1, 'https://ror.org/01p5vg276 Centro Nacional de Endemias'), (76460, 'https://ror.org/01p7awb13', 'no_lang_code', 1, 'https://ror.org/01p7awb13 Penumbra (United States)'), (76461, 'https://ror.org/01p7vjt17', 'no_lang_code', 1, 'https://ror.org/01p7vjt17 Oscor (United States)'), (76462, 'https://ror.org/01paq3405', 'de', 1, 'https://ror.org/01paq3405 Institut für Europäische Gesundheits- und Sozialwirtschaft'), (76463, 'https://ror.org/01pbexw16', 'en', 1, 'https://ror.org/01pbexw16 The People''s Hospital Tongling 铜陵市人民医院'), (76464, 'https://ror.org/01pczxn53', 'no_lang_code', 1, 'https://ror.org/01pczxn53 Platelet BioGenesis (United States)'), (76465, 'https://ror.org/01pdra218', 'it', 1, 'https://ror.org/01pdra218 Ospedale Civile di Voghera'), (76466, 'https://ror.org/01peek834', 'en', 1, 'https://ror.org/01peek834 National Art Institute 財団法人民族芸術研究所'), (76467, 'https://ror.org/01pet0423', 'en', 1, 'https://ror.org/01pet0423 Otemae College of Nutrition 大手前栄養大学'), (76468, 'https://ror.org/01pj4qf10', 'en', 1, 'https://ror.org/01pj4qf10 Institute of Network Cultures'), (76469, 'https://ror.org/01pj6sv40', 'no_lang_code', 1, 'https://ror.org/01pj6sv40 EssilorLuxottica (France)'), (76470, 'https://ror.org/01ppyqb03', 'no_lang_code', 1, 'https://ror.org/01ppyqb03 Cardinal Health (Ireland)'), (76471, 'https://ror.org/01psb9158', 'en', 1, 'https://ror.org/01psb9158 Community College of Qatar كلية المجتمع في قطر'), (76472, 'https://ror.org/01pxxz681', 'en', 1, 'https://ror.org/01pxxz681 Zhejiang Medical and Health Group Hangzhou Hospital 浙江省医疗健康集团杭州医院'), (76473, 'https://ror.org/01py4yp62', 'de', 1, 'https://ror.org/01py4yp62 Institut für Abfall, Abwasser, Site und Facility Management'), (76474, 'https://ror.org/01pydbv25', 'no_lang_code', 1, 'https://ror.org/01pydbv25 YAN Engines (United States)'), (76475, 'https://ror.org/01pz1d457', 'no_lang_code', 1, 'https://ror.org/01pz1d457 Quantum Devices (United States)'), (76476, 'https://ror.org/01q1pek17', 'en', 1, 'https://ror.org/01q1pek17 Hamburg Archaeological Museum'), (76477, 'https://ror.org/01q206483', 'no_lang_code', 1, 'https://ror.org/01q206483 OVD - Ovocinárske Družstvo (Slovakia)'), (76478, 'https://ror.org/01q27qv61', 'no_lang_code', 1, 'https://ror.org/01q27qv61 DATADVANCE (France)'), (76479, 'https://ror.org/01q4q2062', 'no_lang_code', 1, 'https://ror.org/01q4q2062 HighLife (France)'), (76480, 'https://ror.org/01q5m4507', 'en', 1, 'https://ror.org/01q5m4507 Endometriosis'), (76481, 'https://ror.org/01q7fvf45', 'no_lang_code', 1, 'https://ror.org/01q7fvf45 NLA Diagnostics (United States)'), (76482, 'https://ror.org/01q8n5k63', 'de', 1, 'https://ror.org/01q8n5k63 Institut für Prozessoptimierung und Informationstechnologien'), (76483, 'https://ror.org/01qa1m185', 'no_lang_code', 1, 'https://ror.org/01qa1m185 SignalRx Pharmaceuticals (United States)'), (76484, 'https://ror.org/01qceeg73', 'en', 1, 'https://ror.org/01qceeg73 Protein Research Foundation'), (76485, 'https://ror.org/01qh5w602', 'nl', 1, 'https://ror.org/01qh5w602 Belastingdienst Tax and Customs Administration'), (76486, 'https://ror.org/01qhcb906', 'en', 1, 'https://ror.org/01qhcb906 Hohhot Minzu College 呼和浩特民族学院'), (76487, 'https://ror.org/01qnpya73', 'no_lang_code', 1, 'https://ror.org/01qnpya73 Signature Analytics (United States)'), (76488, 'https://ror.org/01qqp2h35', 'no_lang_code', 1, 'https://ror.org/01qqp2h35 Amano Enzyme (Japan)'), (76489, 'https://ror.org/01qr6ev44', 'no_lang_code', 1, 'https://ror.org/01qr6ev44 Alps Electric (United Kingdom)'), (76490, 'https://ror.org/01qsz2191', 'en', 1, 'https://ror.org/01qsz2191 Nagasaki Ajisai Hospital 長崎逓信病院'), (76491, 'https://ror.org/01qve8440', 'de', 1, 'https://ror.org/01qve8440 Institut für Berufliche Bildung'), (76492, 'https://ror.org/01qvmm256', 'en', 1, 'https://ror.org/01qvmm256 Academy of Arts Education Akademie der Kulturellen Bildung'), (76493, 'https://ror.org/01qw4g764', 'no_lang_code', 1, 'https://ror.org/01qw4g764 Mitsui (Japan) 三井グループ'), (76494, 'https://ror.org/01qwwqf39', 'no_lang_code', 1, 'https://ror.org/01qwwqf39 YMS (Slovakia)'), (76495, 'https://ror.org/01qyyep84', 'en', 1, 'https://ror.org/01qyyep84 Community Agroecology Network'), (76496, 'https://ror.org/01r1pft76', 'no_lang_code', 1, 'https://ror.org/01r1pft76 Ambrx (United States)'), (76497, 'https://ror.org/01r2s5391', 'en', 1, 'https://ror.org/01r2s5391 Beckley VA Medical Center'), (76498, 'https://ror.org/01r2s9d65', 'no_lang_code', 1, 'https://ror.org/01r2s9d65 Ocular Proteomics (United States)'), (76499, 'https://ror.org/01r2vjq11', 'no_lang_code', 1, 'https://ror.org/01r2vjq11 Tower Semiconductor (Israel) タワーセミコンダクター'), (76500, 'https://ror.org/01r3j5512', 'no_lang_code', 1, 'https://ror.org/01r3j5512 Vasoptic Medical (United States)'), (76501, 'https://ror.org/01r58sr54', 'en', 1, 'https://ror.org/01r58sr54 National Center for Chronic and Noncommunicable Disease Control and Prevention 中国疾病预防控制中心慢性非传染性疾病预防控制中心'), (76502, 'https://ror.org/01r5f5330', 'no_lang_code', 1, 'https://ror.org/01r5f5330 Tactical Communications Group (United States)'), (76503, 'https://ror.org/01r5ta105', 'no_lang_code', 1, 'https://ror.org/01r5ta105 Azimuth (United States)'), (76504, 'https://ror.org/01r7f1531', 'no_lang_code', 1, 'https://ror.org/01r7f1531 Synertech PM (United States)'), (76505, 'https://ror.org/01r8h1t86', 'no_lang_code', 1, 'https://ror.org/01r8h1t86 Swabian Instruments (Germany)'), (76506, 'https://ror.org/01r9c6a33', 'no_lang_code', 1, 'https://ror.org/01r9c6a33 Dempsey Ventures (United States)'), (76507, 'https://ror.org/01r9z2t07', 'no_lang_code', 1, 'https://ror.org/01r9z2t07 Reinhart & Associates (United States)'), (76508, 'https://ror.org/01ra0cf82', 'no_lang_code', 1, 'https://ror.org/01ra0cf82 Axonics Modulation Technologies (United States)'), (76509, 'https://ror.org/01radym16', 'en', 1, 'https://ror.org/01radym16 Institute of Agro-Products Processing Science and Technology 中国农业科学院农产品加工所'), (76510, 'https://ror.org/01rbbfm88', 'en', 1, 'https://ror.org/01rbbfm88 Xiamen Blood Center 厦门市中心血站'), (76511, 'https://ror.org/01rce2188', 'no_lang_code', 1, 'https://ror.org/01rce2188 Omnicell (United States)'), (76512, 'https://ror.org/01rdcx205', 'en', 1, 'https://ror.org/01rdcx205 New Development Bank'), (76513, 'https://ror.org/01rfxdq93', 'de', 1, 'https://ror.org/01rfxdq93 Evangelisches Krankenhaus Oberhausen'), (76514, 'https://ror.org/01rhva785', 'es', 1, 'https://ror.org/01rhva785 Centro Nacional de Investigaciones en Salud Materno Infantil'), (76515, 'https://ror.org/01rk5br21', 'en', 1, 'https://ror.org/01rk5br21 China Association of Agricultural Science Societies 中国农学会'), (76516, 'https://ror.org/01rkbgp30', 'no_lang_code', 1, 'https://ror.org/01rkbgp30 Angiochem (Canada)'), (76517, 'https://ror.org/01rm1r711', 'no_lang_code', 1, 'https://ror.org/01rm1r711 United Electric Controls (United States)'), (76518, 'https://ror.org/01rmj8z79', 'en', 1, 'https://ror.org/01rmj8z79 Kitami Industrial Technology Center 北見工業技術センター'), (76519, 'https://ror.org/01rpjzn46', 'no_lang_code', 1, 'https://ror.org/01rpjzn46 DMT Produktentwicklung (Germany)'), (76520, 'https://ror.org/01rpq5x59', 'no_lang_code', 1, 'https://ror.org/01rpq5x59 Syntek Technologies (United States)'), (76521, 'https://ror.org/01rqyfs68', 'nl', 1, 'https://ror.org/01rqyfs68 Huisarts en Wetenschap'), (76522, 'https://ror.org/01rsktd65', 'no_lang_code', 1, 'https://ror.org/01rsktd65 Northgate Technologies (United States)'), (76523, 'https://ror.org/01rsndm95', 'en', 1, 'https://ror.org/01rsndm95 James Lind Institute'), (76524, 'https://ror.org/01rtttn28', 'en', 1, 'https://ror.org/01rtttn28 AINET Association of English Teachers'), (76525, 'https://ror.org/01rvva743', 'no_lang_code', 1, 'https://ror.org/01rvva743 Ancora Heart (United States)'), (76526, 'https://ror.org/01rwvbt41', 'no_lang_code', 1, 'https://ror.org/01rwvbt41 Integer (United States)'), (76527, 'https://ror.org/01rx40j51', 'no_lang_code', 1, 'https://ror.org/01rx40j51 Muko City Cultural Museum 向日市文化資料館'), (76528, 'https://ror.org/01rxdrm66', 'no_lang_code', 1, 'https://ror.org/01rxdrm66 Passport Systems (United States)'), (76529, 'https://ror.org/01rxgdr42', 'de', 1, 'https://ror.org/01rxgdr42 PECO-Institut'), (76530, 'https://ror.org/01rztr650', 'de', 1, 'https://ror.org/01rztr650 Hessischer Volkshochschulverband'), (76531, 'https://ror.org/01s016274', 'no_lang_code', 1, 'https://ror.org/01s016274 BioCardia (United States)'), (76532, 'https://ror.org/01s157z73', 'no_lang_code', 1, 'https://ror.org/01s157z73 Kyivmetroproekt (Ukraine) КИЇВПРОЕКТ'), (76533, 'https://ror.org/01s3wja21', 'no_lang_code', 1, 'https://ror.org/01s3wja21 Scientific Technologies Corporation (United States)'), (76534, 'https://ror.org/01s8b3v69', 'en', 1, 'https://ror.org/01s8b3v69 Veterans Health Care System of the Ozarks'), (76535, 'https://ror.org/01s8f2180', 'en', 1, 'https://ror.org/01s8f2180 Natural History Museum Rotterdam Natuurhistorisch Museum Rotterdam'), (76536, 'https://ror.org/01s8p3017', 'no_lang_code', 1, 'https://ror.org/01s8p3017 Kinection (United States)'), (76537, 'https://ror.org/01sah3s84', 'no_lang_code', 1, 'https://ror.org/01sah3s84 Mountain Data Group (United States)'), (76538, 'https://ror.org/01sbfc546', 'no_lang_code', 1, 'https://ror.org/01sbfc546 Truventic (United States)'), (76539, 'https://ror.org/01scdrj09', 'en', 1, 'https://ror.org/01scdrj09 International Medical And Welfare College Nanao School 国際医療福祉専門学校七尾校'), (76540, 'https://ror.org/01sevvg89', 'no_lang_code', 1, 'https://ror.org/01sevvg89 Varidesk (United States)'), (76541, 'https://ror.org/01sexcc53', 'no_lang_code', 1, 'https://ror.org/01sexcc53 Planmeca (Finland)'), (76542, 'https://ror.org/01shd5g72', 'no_lang_code', 1, 'https://ror.org/01shd5g72 Electro Optical Systems (United Kingdom)'), (76543, 'https://ror.org/01sm6mt92', 'no_lang_code', 1, 'https://ror.org/01sm6mt92 Test & Evaluation Solutions (United States)'), (76544, 'https://ror.org/01sqm5e44', 'no_lang_code', 1, 'https://ror.org/01sqm5e44 Shin Nippon Biomedical Laboratories (Japan) 新日本バイオメディカル研究所'), (76545, 'https://ror.org/01sr2h546', 'fr', 1, 'https://ror.org/01sr2h546 Hôpital Émile-Roux'), (76546, 'https://ror.org/01srayt58', 'en', 1, 'https://ror.org/01srayt58 ICLEI - Local Governments for Sustainability USA'), (76547, 'https://ror.org/01svaqq28', 'en', 1, 'https://ror.org/01svaqq28 Qatar National Research Fund الصندوق القطري لرعاية البحث العلمي'), (76548, 'https://ror.org/01sw43c97', 'no_lang_code', 1, 'https://ror.org/01sw43c97 Centre for Conflict Management and Transformation'), (76549, 'https://ror.org/01sw7vm96', 'no_lang_code', 1, 'https://ror.org/01sw7vm96 We Predict (United Kingdom)'), (76550, 'https://ror.org/01swx2932', 'fr', 1, 'https://ror.org/01swx2932 Institut Catholique d''Arts et Métiers'), (76551, 'https://ror.org/01sy5t684', 'en', 1, 'https://ror.org/01sy5t684 The First Hospital of Changsha 长沙市第一医院'), (76552, 'https://ror.org/01t08q012', 'en', 1, 'https://ror.org/01t08q012 Coalition for Epidemic Preparedness Innovations'), (76553, 'https://ror.org/01t2dy869', 'en', 1, 'https://ror.org/01t2dy869 Chiba City Lifelong Learning Center 千葉市 生涯学習センター'), (76554, 'https://ror.org/01t2z2m96', 'no_lang_code', 1, 'https://ror.org/01t2z2m96 Lotte Fine Chemical (South Korea)'), (76555, 'https://ror.org/01t338n33', 'no_lang_code', 1, 'https://ror.org/01t338n33 Pharmazeutische Fabrik Dr. Reckeweg (Germany)'), (76556, 'https://ror.org/01t40ej06', 'en', 1, 'https://ror.org/01t40ej06 Toyota City Museum of Local History 豊田市郷土資料館'), (76557, 'https://ror.org/01t6ysk15', 'en', 1, 'https://ror.org/01t6ysk15 Koul Research Foundation'), (76558, 'https://ror.org/01t876c68', 'en', 1, 'https://ror.org/01t876c68 Hormuud University'), (76559, 'https://ror.org/01t8k4098', 'no_lang_code', 1, 'https://ror.org/01t8k4098 Guhua Hospital 上海市奉贤区古华医院'), (76560, 'https://ror.org/01t92qx25', 'no_lang_code', 1, 'https://ror.org/01t92qx25 Arcturus Therapeutics (United States)'), (76561, 'https://ror.org/01tas7m50', 'en', 1, 'https://ror.org/01tas7m50 Africa Youth Growth Foundation'), (76562, 'https://ror.org/01tbnxe16', 'en', 1, 'https://ror.org/01tbnxe16 BRIQ Institute on Behavior and Inequality'), (76563, 'https://ror.org/01tcd5f78', 'no_lang_code', 1, 'https://ror.org/01tcd5f78 Kentropy Technologies (India)'), (76564, 'https://ror.org/01teevb58', 'no_lang_code', 1, 'https://ror.org/01teevb58 John Wood Group (United Kingdom)'), (76565, 'https://ror.org/01tfjyv98', 'en', 1, 'https://ror.org/01tfjyv98 MRC Brain Network Dynamics Unit'), (76566, 'https://ror.org/01tfspm44', 'de', 1, 'https://ror.org/01tfspm44 Sozialwissenschaftliches Forschungszentrum Berlin-Brandenburg'), (76567, 'https://ror.org/01th5x258', 'en', 1, 'https://ror.org/01th5x258 Institute of Chemical Industry of Forest Products 中国林业科学研究院林产化学工业研究所'), (76568, 'https://ror.org/01tpbbf75', 'no_lang_code', 1, 'https://ror.org/01tpbbf75 Excelitas Technologies (United States)'), (76569, 'https://ror.org/01tppr291', 'no_lang_code', 1, 'https://ror.org/01tppr291 d-fine (Germany)'), (76570, 'https://ror.org/01ttqf142', 'no_lang_code', 1, 'https://ror.org/01ttqf142 Honshu Chemical Industry (Japan) 本州化学工業株式会社'), (76571, 'https://ror.org/01tv67y39', 'en', 1, 'https://ror.org/01tv67y39 Mustard Research and Promotion Consortium सरसों अनुसंधान एवं संवर्धन कंसोर्टियम'), (76572, 'https://ror.org/01tvy6411', 'en', 1, 'https://ror.org/01tvy6411 Institute of Ethnology, Academia Sinica 中央研究院民族學研究所'), (76573, 'https://ror.org/01tyj4381', 'no_lang_code', 1, 'https://ror.org/01tyj4381 Sino-American Silicon Products (Taiwan)'), (76574, 'https://ror.org/01tyzsw55', 'en', 1, 'https://ror.org/01tyzsw55 Mie Agricultural Research Institute 三重県農業研究所'), (76575, 'https://ror.org/01v15pf03', 'no_lang_code', 1, 'https://ror.org/01v15pf03 Hellenic Telecommunications and Post Commission (Greece) Εθνική Επιτροπή Τηλεπικοινωνιών και Ταχυδρομείων'), (76576, 'https://ror.org/01v171a61', 'en', 1, 'https://ror.org/01v171a61 National Center for Women and Children’s Health, China CDC 中国疾病预防控制中心妇幼保健中心'), (76577, 'https://ror.org/01v2h2d39', 'en', 1, 'https://ror.org/01v2h2d39 National Medical and Surgical Center named after N.I. Pirogov Национальный медико-хирургический Центр имени Н.И. Пирогова'), (76578, 'https://ror.org/01v5bs750', 'en', 1, 'https://ror.org/01v5bs750 Rayos Contra Cancer'), (76579, 'https://ror.org/01v7cer31', 'no_lang_code', 1, 'https://ror.org/01v7cer31 McKinsey & Company (United Kingdom)'), (76580, 'https://ror.org/01v7fn691', 'es', 1, 'https://ror.org/01v7fn691 Guyra Paraguay'), (76581, 'https://ror.org/01v7g3220', 'en', 1, 'https://ror.org/01v7g3220 Flemish Advisory Council for Innovation & Enterprise Vlaamse Adviesraad voor Innoveren en Ondernemen'), (76582, 'https://ror.org/01v8wnr22', 'no_lang_code', 1, 'https://ror.org/01v8wnr22 Hitowa Holdings (Japan) ひとわホールディングス株式会社'), (76583, 'https://ror.org/01vav0149', 'en', 1, 'https://ror.org/01vav0149 Guizhou Botanical Garden 贵州省植物园'), (76584, 'https://ror.org/01vbw9k90', 'no_lang_code', 1, 'https://ror.org/01vbw9k90 Orihara Industrial (Japan)'), (76585, 'https://ror.org/01vd6wz59', 'no_lang_code', 1, 'https://ror.org/01vd6wz59 Hoppecke (Germany)'), (76586, 'https://ror.org/01vec9q19', 'no_lang_code', 1, 'https://ror.org/01vec9q19 Vital Probes (United States)'), (76587, 'https://ror.org/01vhc4245', 'en', 1, 'https://ror.org/01vhc4245 INFINITY Science Center'), (76588, 'https://ror.org/01vksdv18', 'no_lang_code', 1, 'https://ror.org/01vksdv18 Mackie Research (New Zealand)'), (76589, 'https://ror.org/01vpqmh56', 'no_lang_code', 1, 'https://ror.org/01vpqmh56 Endologix (United States)'), (76590, 'https://ror.org/01vpzfr92', 'de', 1, 'https://ror.org/01vpzfr92 ThüringenForst'), (76591, 'https://ror.org/01vrvqh04', 'en', 1, 'https://ror.org/01vrvqh04 Association for Scottish Literary Studies'), (76592, 'https://ror.org/01vs47t55', 'en', 1, 'https://ror.org/01vs47t55 Zhengzhou Jinshui District General Hospital 郑州市金水区总医院'), (76593, 'https://ror.org/01vv0b990', 'en', 1, 'https://ror.org/01vv0b990 Tamil Nadu Board of Rural Development ஊரக மேம்பாட்டு தமிழ்நாடு வாரியம்'), (76594, 'https://ror.org/01vv3bt38', 'no_lang_code', 1, 'https://ror.org/01vv3bt38 Vectrus (United States)'), (76595, 'https://ror.org/01vy25d07', 'no_lang_code', 1, 'https://ror.org/01vy25d07 Neurotargeting (United States)'), (76596, 'https://ror.org/01vz88x14', 'en', 1, 'https://ror.org/01vz88x14 LogicalOutcomes'), (76597, 'https://ror.org/01w0ddb93', 'no_lang_code', 1, 'https://ror.org/01w0ddb93 QuantaLab'), (76598, 'https://ror.org/01w0mjg16', 'no_lang_code', 1, 'https://ror.org/01w0mjg16 Yamamoto Chamicals (Japan) 山本化成株式会社'), (76599, 'https://ror.org/01w142366', 'no_lang_code', 1, 'https://ror.org/01w142366 Venebio (United States)'), (76600, 'https://ror.org/01w1jem87', 'no_lang_code', 1, 'https://ror.org/01w1jem87 Alpenforschungsinstitut (Germany)'), (76601, 'https://ror.org/01w4k1v53', 'en', 1, 'https://ror.org/01w4k1v53 Rubber Research Institute 中国热带农业科学院橡胶研究所'), (76602, 'https://ror.org/01w50w965', 'no_lang_code', 1, 'https://ror.org/01w50w965 Robocasting (United States)'), (76603, 'https://ror.org/01w82kb82', 'en', 1, 'https://ror.org/01w82kb82 Tamano General Medical College 玉野総合医療専問学校'), (76604, 'https://ror.org/01w90cz05', 'fr', 1, 'https://ror.org/01w90cz05 Centre National des Soins Palliatifs et de la Fin de Vie'), (76605, 'https://ror.org/01w94r626', 'no_lang_code', 1, 'https://ror.org/01w94r626 Synamedia (United Kingdom)'), (76606, 'https://ror.org/01w9wgg77', 'en', 1, 'https://ror.org/01w9wgg77 Istanbul Kent University İstanbul Kent Üniversitesi'), (76607, 'https://ror.org/01wd8pk38', 'en', 1, 'https://ror.org/01wd8pk38 VA Connecticut Research and Education Foundation'), (76608, 'https://ror.org/01wexqy53', 'en', 1, 'https://ror.org/01wexqy53 VA Gulf Coast Veterans Health Care System'), (76609, 'https://ror.org/01whq1k34', 'en', 1, 'https://ror.org/01whq1k34 Biomedical Translation Research Center'), (76610, 'https://ror.org/01wj99869', 'no_lang_code', 1, 'https://ror.org/01wj99869 Spectrum Dynamics Medical (Switzerland)'), (76611, 'https://ror.org/01wp8zh54', 'en', 1, 'https://ror.org/01wp8zh54 IIT@MIT'), (76612, 'https://ror.org/01wrvt331', 'no_lang_code', 1, 'https://ror.org/01wrvt331 Proteos (United States)'), (76613, 'https://ror.org/01wt5xg78', 'no_lang_code', 1, 'https://ror.org/01wt5xg78 User Systems (United States)'), (76614, 'https://ror.org/01ww58407', 'no_lang_code', 1, 'https://ror.org/01ww58407 Durect (United States)'), (76615, 'https://ror.org/01wxthv91', 'sk', 1, 'https://ror.org/01wxthv91 Slovenská Fyzikálna Spoločnosť'), (76616, 'https://ror.org/01wzmc277', 'no_lang_code', 1, 'https://ror.org/01wzmc277 NAEJA-RGM Pharmaceuticals (Canada)'), (76617, 'https://ror.org/01x1dz568', 'no_lang_code', 1, 'https://ror.org/01x1dz568 Neuronano (Sweden)'), (76618, 'https://ror.org/01x37s187', 'no_lang_code', 1, 'https://ror.org/01x37s187 Stratom (United States)'), (76619, 'https://ror.org/01x68z872', 'no_lang_code', 1, 'https://ror.org/01x68z872 Loadhog (United Kingdom)'), (76620, 'https://ror.org/01x8bp388', 'no_lang_code', 1, 'https://ror.org/01x8bp388 ImageRive (Switzerland)'), (76621, 'https://ror.org/01x905d34', 'no_lang_code', 1, 'https://ror.org/01x905d34 Samyang Holdings (South Korea) 삼양바이오팜'), (76622, 'https://ror.org/01xa88s20', 'en', 1, 'https://ror.org/01xa88s20 Baotou Teachers College 包头师范学院'), (76623, 'https://ror.org/01xaf3k63', 'no_lang_code', 1, 'https://ror.org/01xaf3k63 Metallurgical Industry Press (China) 冶金工业出版社'), (76624, 'https://ror.org/01xcek018', 'no_lang_code', 1, 'https://ror.org/01xcek018 Ensuiko Sugar Refining (Japan)'), (76625, 'https://ror.org/01xf31a71', 'en', 1, 'https://ror.org/01xf31a71 College of Applied Sciences, Nizwa كلية العلوم التطبيقية بنزوى'), (76626, 'https://ror.org/01xg16290', 'no_lang_code', 1, 'https://ror.org/01xg16290 Isagro (Italy)'), (76627, 'https://ror.org/01xkxj196', 'no_lang_code', 1, 'https://ror.org/01xkxj196 Seward (United States)'), (76628, 'https://ror.org/01xnbq218', 'en', 1, 'https://ror.org/01xnbq218 Centre for Artificial Intelligence and Robotics कृत्रिम ज्ञान तथा रोबोटिकी केंद्र'), (76629, 'https://ror.org/01xpcj978', 'no_lang_code', 1, 'https://ror.org/01xpcj978 Severn Glocon Group (United Kingdom)'), (76630, 'https://ror.org/01xpf5964', 'en', 1, 'https://ror.org/01xpf5964 Sámi High School and Reindeer Husbandry School'), (76631, 'https://ror.org/01xq34439', 'no_lang_code', 1, 'https://ror.org/01xq34439 Plus Designs (United States)'), (76632, 'https://ror.org/01xvdt027', 'no_lang_code', 1, 'https://ror.org/01xvdt027 Intersect ENT (United States)'), (76633, 'https://ror.org/01xxch676', 'de', 1, 'https://ror.org/01xxch676 Institut für Sozialforschung und Berufliche Weiterbildung'), (76634, 'https://ror.org/01xz87r89', 'de', 1, 'https://ror.org/01xz87r89 Institut für Betontechnologie und Oberflächenschutz'), (76635, 'https://ror.org/01xzey958', 'no_lang_code', 1, 'https://ror.org/01xzey958 Nemoto (Japan) 根本杏林堂'), (76636, 'https://ror.org/01xzsbk70', 'en', 1, 'https://ror.org/01xzsbk70 Vienna City Library Wienbibliothek im Rathaus'), (76637, 'https://ror.org/01y1re497', 'en', 1, 'https://ror.org/01y1re497 Department of Physical and Technical Sciences Аддзяленне фізіка-тэхнічных навук'), (76638, 'https://ror.org/01y2qzf06', 'no_lang_code', 1, 'https://ror.org/01y2qzf06 Seven Solutions (Spain)'), (76639, 'https://ror.org/01y4d4d64', 'no_lang_code', 1, 'https://ror.org/01y4d4d64 MIA Engineering (Slovakia)'), (76640, 'https://ror.org/01y6y5368', 'no_lang_code', 1, 'https://ror.org/01y6y5368 China Metallurgical Planning Net (China) 冶金工业规划研究院'), (76641, 'https://ror.org/01y8gzr79', 'en', 1, 'https://ror.org/01y8gzr79 Institute of Economics, Academia Sinica 中央研究院經濟研究所'), (76642, 'https://ror.org/01ya1kj04', 'no_lang_code', 1, 'https://ror.org/01ya1kj04 TechnoView (United States)'), (76643, 'https://ror.org/01ycfd220', 'no_lang_code', 1, 'https://ror.org/01ycfd220 Cergentis (Netherlands)'), (76644, 'https://ror.org/01ydq7s61', 'no_lang_code', 1, 'https://ror.org/01ydq7s61 GenePath Dx (India)'), (76645, 'https://ror.org/01ye8r794', 'en', 1, 'https://ror.org/01ye8r794 Tropical Crops Genetic Resources Institute 热带作物品种资源研究所'), (76646, 'https://ror.org/01yennm80', 'en', 1, 'https://ror.org/01yennm80 King Institute of Preventive Medicine and Research தடுப்பு மருந்து மற்றும் ஆராய்ச்சி கிங் இன்ஸ்டிடியூட்'), (76647, 'https://ror.org/01yfx8049', 'en', 1, 'https://ror.org/01yfx8049 Fragrance & Flavour Development Centre फ्राग्रांस & फ्लेवर डेवेलपमेंट सेंटर'), (76648, 'https://ror.org/01yhcdk46', 'no_lang_code', 1, 'https://ror.org/01yhcdk46 Rex Medical (United States)'), (76649, 'https://ror.org/01yjnjk05', 'en', 1, 'https://ror.org/01yjnjk05 Defence Terrain Research Laboratory रक्षा भू-भाग और अनुसंधान प्रयोगशाला'), (76650, 'https://ror.org/01yjzw780', 'no_lang_code', 1, 'https://ror.org/01yjzw780 Quandela (France)'), (76651, 'https://ror.org/01ymrn657', 'no_lang_code', 1, 'https://ror.org/01ymrn657 Devolo (Germany)'), (76652, 'https://ror.org/01ymz3j33', 'en', 1, 'https://ror.org/01ymz3j33 Tertiary Research and Education Network of South Africa'), (76653, 'https://ror.org/01yp7yc97', 'no_lang_code', 1, 'https://ror.org/01yp7yc97 Urban Planning & Design Institute of Shenzhen (China) 深圳市城市规划设计研究院'), (76654, 'https://ror.org/01yphfr75', 'no_lang_code', 1, 'https://ror.org/01yphfr75 Planetary Systems (United States)'), (76655, 'https://ror.org/01ypsy903', 'en', 1, 'https://ror.org/01ypsy903 Asia-Pacific Regional Network for Early Childhood'), (76656, 'https://ror.org/01yrg4t37', 'en', 1, 'https://ror.org/01yrg4t37 Partnership for Economic Policy'), (76657, 'https://ror.org/01ys4k188', 'en', 1, 'https://ror.org/01ys4k188 World Organisation of Family Doctors'), (76658, 'https://ror.org/01ywdxb33', 'en', 1, 'https://ror.org/01ywdxb33 Bank of Estonia Eesti Pank'), (76659, 'https://ror.org/01yx4wq53', 'en', 1, 'https://ror.org/01yx4wq53 Delta Institute for Theoretical Physics'), (76660, 'https://ror.org/01yx9b459', 'no_lang_code', 1, 'https://ror.org/01yx9b459 Fleetwood Specialty Pharmacy (United States)'), (76661, 'https://ror.org/01yxc0v75', 'no_lang_code', 1, 'https://ror.org/01yxc0v75 Photon Spot (United States)'), (76662, 'https://ror.org/01yxkbf55', 'en', 1, 'https://ror.org/01yxkbf55 Xiaogan First People''s Hospital 孝感市第一人民医院'), (76663, 'https://ror.org/01z04wv09', 'en', 1, 'https://ror.org/01z04wv09 Corporación de Ciencia y Tecnología para el Desarrollo de la Industria Naval Marítima y Fluvial Science and Technology Corporation for Naval, Maritime and Riverine Industry Development'), (76664, 'https://ror.org/01z0d7163', 'en', 1, 'https://ror.org/01z0d7163 Shizuoka Prefecture Institute of Environmental Health Sciences 静岡県環境衛生科学研究所'), (76665, 'https://ror.org/01z0qxf72', 'no_lang_code', 1, 'https://ror.org/01z0qxf72 NevadaNano (United States)'), (76666, 'https://ror.org/01z2jfk91', 'de', 1, 'https://ror.org/01z2jfk91 Ostasien-Institut'), (76667, 'https://ror.org/01z3tch16', 'en', 1, 'https://ror.org/01z3tch16 Zhejiang Provincial Public Security Department 浙江省公安厅'), (76668, 'https://ror.org/01z5cg313', 'no_lang_code', 1, 'https://ror.org/01z5cg313 Fabbrica Italiana Sintetici (Italy)'), (76669, 'https://ror.org/01z620d89', 'no_lang_code', 1, 'https://ror.org/01z620d89 EoTech (United States)'), (76670, 'https://ror.org/01z7f8509', 'no_lang_code', 1, 'https://ror.org/01z7f8509 EQUIcon (Germany)'), (76671, 'https://ror.org/01zb9kf14', 'no_lang_code', 1, 'https://ror.org/01zb9kf14 Visionary Pharmaceuticals (United States)'), (76672, 'https://ror.org/01zcmnc43', 'no_lang_code', 1, 'https://ror.org/01zcmnc43 MeMed (Israel)'), (76673, 'https://ror.org/01ze2qb65', 'en', 1, 'https://ror.org/01ze2qb65 International Step by Step Association'), (76674, 'https://ror.org/01ze2td62', 'no_lang_code', 1, 'https://ror.org/01ze2td62 Humanigen (United States)'), (76675, 'https://ror.org/01zm1c864', 'en', 1, 'https://ror.org/01zm1c864 Department of Animal Husbandry, Veterinary and Dairy Development'), (76676, 'https://ror.org/01zm8nz34', 'no_lang_code', 1, 'https://ror.org/01zm8nz34 Vytronus (United States)'), (76677, 'https://ror.org/01zmbg994', 'en', 1, 'https://ror.org/01zmbg994 Plasma University'), (76678, 'https://ror.org/01zn6ne75', 'no_lang_code', 1, 'https://ror.org/01zn6ne75 Wilo (Germany)'), (76679, 'https://ror.org/01znjq697', 'no_lang_code', 1, 'https://ror.org/01znjq697 Dorf Ketal (India) डॉर्फ-केटल केमिकल्स इंडिया प्राइवेट लिमिटेड'), (76680, 'https://ror.org/01zs9ce87', 'en', 1, 'https://ror.org/01zs9ce87 Jingzhou Maternal and Child Health Hospital 荆州市妇幼保健院'), (76681, 'https://ror.org/01zsz0b12', 'en', 1, 'https://ror.org/01zsz0b12 Institute for Justice and Reconciliation'), (76682, 'https://ror.org/01zw36675', 'no_lang_code', 1, 'https://ror.org/01zw36675 RetrieverTech (United States)'), (76683, 'https://ror.org/01zww3c78', 'en', 1, 'https://ror.org/01zww3c78 West Ridge Veterinary Practice'), (76684, 'https://ror.org/01zy32z07', 'en', 1, 'https://ror.org/01zy32z07 Beijing Institue Of Electronics Technology And Application 北京电子科技技术研究所'), (76685, 'https://ror.org/01zzaw986', 'en', 1, 'https://ror.org/01zzaw986 General Clinic Phương Nam Phòng Khám Đa Khoa Phương Nam'), (76686, 'https://ror.org/01zzqts64', 'no_lang_code', 1, 'https://ror.org/01zzqts64 Stada Arzneimittel (Germany) Standardarzneimittel Deutscher Apotheker'), (76687, 'https://ror.org/0200a2h90', 'no_lang_code', 1, 'https://ror.org/0200a2h90 Equis (Slovakia)'), (76688, 'https://ror.org/0201da008', 'no_lang_code', 1, 'https://ror.org/0201da008 HCL Technologies (United States)'), (76689, 'https://ror.org/0202z8x64', 'no_lang_code', 1, 'https://ror.org/0202z8x64 Associated Fund Administrators (Botswana)'), (76690, 'https://ror.org/0203dhb90', 'no_lang_code', 1, 'https://ror.org/0203dhb90 IQM (Finland)'), (76691, 'https://ror.org/0203kq127', 'no_lang_code', 1, 'https://ror.org/0203kq127 Vulintus (United States)'), (76692, 'https://ror.org/02048n894', 'en', 1, 'https://ror.org/02048n894 Joint Center for Quantum Information and Computer Science'), (76693, 'https://ror.org/02088r143', 'no_lang_code', 1, 'https://ror.org/02088r143 Springstar (United States)'), (76694, 'https://ror.org/0208ecv48', 'no_lang_code', 1, 'https://ror.org/0208ecv48 Amstein + Walthert (Switzerland)'), (76695, 'https://ror.org/0208qbg77', 'en', 1, 'https://ror.org/0208qbg77 Shanghai Zhangjiang Laboratory 上海推进科技创新中心建设办公室'), (76696, 'https://ror.org/0209sxq95', 'no_lang_code', 1, 'https://ror.org/0209sxq95 Brightwake (United Kingdom)'), (76697, 'https://ror.org/020a37n11', 'es', 1, 'https://ror.org/020a37n11 Fundación Salvadoreña para el Desarrollo Económico y Social'), (76698, 'https://ror.org/020ajpe42', 'en', 1, 'https://ror.org/020ajpe42 Togus VA Medical Center'), (76699, 'https://ror.org/020az4v13', 'en', 1, 'https://ror.org/020az4v13 Animal Quarantine Office पशु क्वारेन्टाईन कार्यालय'), (76700, 'https://ror.org/020cadp55', 'no_lang_code', 1, 'https://ror.org/020cadp55 Urkund (Sweden)'), (76701, 'https://ror.org/020cha924', 'no_lang_code', 1, 'https://ror.org/020cha924 Universal-Kugellager-Fabrik (Germany)'), (76702, 'https://ror.org/020dm9j49', 'en', 1, 'https://ror.org/020dm9j49 Armaments Research Board आयुध अनुसंधान बोर्ड'), (76703, 'https://ror.org/020dpkm20', 'no_lang_code', 1, 'https://ror.org/020dpkm20 Bal Umang Drishya Sanstha बल उमंग दृष्य संस्था'), (76704, 'https://ror.org/020gc1m38', 'no_lang_code', 1, 'https://ror.org/020gc1m38 Particle Flux Analytics (United States)'), (76705, 'https://ror.org/020hmha06', 'en', 1, 'https://ror.org/020hmha06 Nordic Laboratory for Luminescence Dating Nordisk Laboratorium for Luminescensdatering'), (76706, 'https://ror.org/020jfw620', 'en', 1, 'https://ror.org/020jfw620 Hartpury University'), (76707, 'https://ror.org/020qrc968', 'en', 1, 'https://ror.org/020qrc968 The Shoto Museum of Art 渋谷区立松涛美術館'), (76708, 'https://ror.org/020rcsj15', 'en', 1, 'https://ror.org/020rcsj15 Port of Antwerp'), (76709, 'https://ror.org/020sb4167', 'en', 1, 'https://ror.org/020sb4167 Environmental Construction College 名古屋環境建設専門学校'), (76710, 'https://ror.org/020swhw58', 'en', 1, 'https://ror.org/020swhw58 Insight Healthcare'), (76711, 'https://ror.org/020tn0052', 'no_lang_code', 1, 'https://ror.org/020tn0052 LeikTec (Slovakia)'), (76712, 'https://ror.org/020tv9a29', 'no_lang_code', 1, 'https://ror.org/020tv9a29 New Century Pharmaceuticals (United States)'), (76713, 'https://ror.org/020v2kg51', 'en', 1, 'https://ror.org/020v2kg51 Albuquerque Cat Clinic'), (76714, 'https://ror.org/020v32r42', 'no_lang_code', 1, 'https://ror.org/020v32r42 Royal HaskoningDHV (Netherlands)'), (76715, 'https://ror.org/020w9yc61', 'en', 1, 'https://ror.org/020w9yc61 Mianyang City Center for Disease Control and Prevention 绵阳市疾病预防控制中心'), (76716, 'https://ror.org/020wmv155', 'no_lang_code', 1, 'https://ror.org/020wmv155 Sinocelltech Group (China) 中国细胞技术集团有限公司'), (76717, 'https://ror.org/020wsgn47', 'no_lang_code', 1, 'https://ror.org/020wsgn47 Sangi (Japan) 株式会社サンギ'), (76718, 'https://ror.org/020xhpf63', 'en', 1, 'https://ror.org/020xhpf63 Martinsburg VA Medical Center'), (76719, 'https://ror.org/020z8x032', 'fr', 1, 'https://ror.org/020z8x032 Regroupement Québécois sur les Matériaux de Pointe'), (76720, 'https://ror.org/020zksa59', 'no_lang_code', 1, 'https://ror.org/020zksa59 Informacne Technologie A Konzultacie (Slovakia)'), (76721, 'https://ror.org/0210tb741', 'de', 1, 'https://ror.org/0210tb741 Forschungsinstitut für biologischen Landbau'), (76722, 'https://ror.org/0211zwq30', 'en', 1, 'https://ror.org/0211zwq30 Eurasia Institutes'), (76723, 'https://ror.org/0217dn713', 'no_lang_code', 1, 'https://ror.org/0217dn713 Novanta (United States)'), (76724, 'https://ror.org/0217hsv85', 'no_lang_code', 1, 'https://ror.org/0217hsv85 Piolax (Japan)'), (76725, 'https://ror.org/0218d9s98', 'en', 1, 'https://ror.org/0218d9s98 Louis A. Johnson VA Medical Center'), (76726, 'https://ror.org/0218xmz21', 'en', 1, 'https://ror.org/0218xmz21 Shenzhen Chronic Disease Prevention Center 深圳市慢性病防治中心'); INSERT INTO `rors` VALUES (76727, 'https://ror.org/021933p29', 'no_lang_code', 1, 'https://ror.org/021933p29 RUA Life Sciences (United Kingdom)'), (76728, 'https://ror.org/021a1jy10', 'no_lang_code', 1, 'https://ror.org/021a1jy10 Amicrobe (United States)'), (76729, 'https://ror.org/021ap3951', 'en', 1, 'https://ror.org/021ap3951 Institute of Business Leadership'), (76730, 'https://ror.org/021fq8s19', 'en', 1, 'https://ror.org/021fq8s19 The Japanese Society of Gastroenterological Surgery 日本消化器外科学会'), (76731, 'https://ror.org/021gh4f04', 'no_lang_code', 1, 'https://ror.org/021gh4f04 Pola Chemical Industries (Japan)'), (76732, 'https://ror.org/021jpad90', 'en', 1, 'https://ror.org/021jpad90 General Administration of Sport of China 国家体育总局'), (76733, 'https://ror.org/021n4pk58', 'en', 1, 'https://ror.org/021n4pk58 Hangzhou Women’s Hospital 杭州市妇科医院'), (76734, 'https://ror.org/021pfvj84', 'no_lang_code', 1, 'https://ror.org/021pfvj84 Refocus Group (United States)'), (76735, 'https://ror.org/021pgbe15', 'no_lang_code', 1, 'https://ror.org/021pgbe15 hySolutions (Germany)'), (76736, 'https://ror.org/021qr1j12', 'no_lang_code', 1, 'https://ror.org/021qr1j12 Institut für Innovative Technologien (Germany)'), (76737, 'https://ror.org/021rk6547', 'en', 1, 'https://ror.org/021rk6547 Erie VA Medical Center'), (76738, 'https://ror.org/021svyy15', 'no_lang_code', 1, 'https://ror.org/021svyy15 Yaso Therapeutics (United States)'), (76739, 'https://ror.org/021t5ek61', 'en', 1, 'https://ror.org/021t5ek61 Kushiro City Museum 釧路市立博物館'), (76740, 'https://ror.org/021xt9947', 'no_lang_code', 1, 'https://ror.org/021xt9947 Polymer Exploration Group (United States)'), (76741, 'https://ror.org/021yrfn07', 'no_lang_code', 1, 'https://ror.org/021yrfn07 Geothermie Neubrandenburg (Germany)'), (76742, 'https://ror.org/021zpak95', 'en', 1, 'https://ror.org/021zpak95 Ayurvet Research Foundation'), (76743, 'https://ror.org/0220ewf20', 'en', 1, 'https://ror.org/0220ewf20 Shandong Coalfield Geological Planning and Investigation Institute'), (76744, 'https://ror.org/0220pa788', 'de', 1, 'https://ror.org/0220pa788 Verein für Psychosoziale Initiativen'), (76745, 'https://ror.org/0220w7a74', 'fr', 1, 'https://ror.org/0220w7a74 Centre D''analyse et de Recherche sur les Politiques Economiques et Sociales du Cameroun'), (76746, 'https://ror.org/02255bn64', 'en', 1, 'https://ror.org/02255bn64 Penang Development Corporation Perbadanan Pembangunan Pulau Pinang'), (76747, 'https://ror.org/0225a5s12', 'en', 1, 'https://ror.org/0225a5s12 Collaborative Innovation Center of Chemical Science and Engineering Tianjin 天津化学化工协同创新中心'), (76748, 'https://ror.org/0225qq424', 'no_lang_code', 1, 'https://ror.org/0225qq424 Nippon Suisan Kaisha (Japan) 日本水産株式会社'), (76749, 'https://ror.org/0226qmh36', 'en', 1, 'https://ror.org/0226qmh36 Ishigaki City Library 石垣市立図書館'), (76750, 'https://ror.org/022869t47', 'no_lang_code', 1, 'https://ror.org/022869t47 Museum of Spiš'), (76751, 'https://ror.org/02291hh73', 'en', 1, 'https://ror.org/02291hh73 National Supercomputing Center in Shenzhen 国家超级计算深圳中心'), (76752, 'https://ror.org/0229amj70', 'no_lang_code', 1, 'https://ror.org/0229amj70 Drive-CarSharing (Germany)'), (76753, 'https://ror.org/0229jz197', 'en', 1, 'https://ror.org/0229jz197 Technologies for Safe and Efficient Transportation'), (76754, 'https://ror.org/0229pbn48', 'en', 1, 'https://ror.org/0229pbn48 Guangxi Open University 广西开放大学'), (76755, 'https://ror.org/0229w9h56', 'no_lang_code', 1, 'https://ror.org/0229w9h56 Aurum Biosciences (United Kingdom)'), (76756, 'https://ror.org/022a7nh32', 'en', 1, 'https://ror.org/022a7nh32 Chisholm Institute'), (76757, 'https://ror.org/022ca9x91', 'en', 1, 'https://ror.org/022ca9x91 Islamic Azad University, Shahr-e-Qods Branch دانشگاه آزاد اسلامی واحد شهر قدس'), (76758, 'https://ror.org/022cmsc90', 'en', 1, 'https://ror.org/022cmsc90 The CART Fund'), (76759, 'https://ror.org/022ezeq21', 'no_lang_code', 1, 'https://ror.org/022ezeq21 ADMED (Switzerland) Analyses et Diagnostics Medicaux'), (76760, 'https://ror.org/022fy9g59', 'en', 1, 'https://ror.org/022fy9g59 Hefei Infectious Disease Hospital 合肥市传染病医院'), (76761, 'https://ror.org/022kt1284', 'en', 1, 'https://ror.org/022kt1284 West Texas VA Health Care System'), (76762, 'https://ror.org/022nfrj09', 'no_lang_code', 1, 'https://ror.org/022nfrj09 Aspect Imaging (Israel)'), (76763, 'https://ror.org/022nx3d63', 'no_lang_code', 1, 'https://ror.org/022nx3d63 Savari (United States)'), (76764, 'https://ror.org/022pvsb81', 'no_lang_code', 1, 'https://ror.org/022pvsb81 Ascendis Pharma (Denmark)'), (76765, 'https://ror.org/022pwfx49', 'no_lang_code', 1, 'https://ror.org/022pwfx49 SMART Global Holdings (United States)'), (76766, 'https://ror.org/022s2hx60', 'no_lang_code', 1, 'https://ror.org/022s2hx60 Kebotix (United States)'), (76767, 'https://ror.org/022sm0j70', 'en', 1, 'https://ror.org/022sm0j70 Chartered Institute of Arbitrators'), (76768, 'https://ror.org/022v8s261', 'en', 1, 'https://ror.org/022v8s261 Province of Antwerp Provincie Antwerpen'), (76769, 'https://ror.org/022vzqd83', 'en', 1, 'https://ror.org/022vzqd83 Elemental Excelerator'), (76770, 'https://ror.org/022zx1s80', 'en', 1, 'https://ror.org/022zx1s80 DuPage Health Coalition'), (76771, 'https://ror.org/023098y68', 'no_lang_code', 1, 'https://ror.org/023098y68 Rubicon Technology (United States)'), (76772, 'https://ror.org/0230dw403', 'no_lang_code', 1, 'https://ror.org/0230dw403 CrossRoads Extremity Systems (United States)'), (76773, 'https://ror.org/0230s3k26', 'en', 1, 'https://ror.org/0230s3k26 METRANS Transportation Center'), (76774, 'https://ror.org/0232kgx22', 'en', 1, 'https://ror.org/0232kgx22 Transportation Research Center for Livable Communities'), (76775, 'https://ror.org/0234p1g56', 'no_lang_code', 1, 'https://ror.org/0234p1g56 Kurz (Germany)'), (76776, 'https://ror.org/0234ye373', 'no_lang_code', 1, 'https://ror.org/0234ye373 Qubitekk (United States)'), (76777, 'https://ror.org/0235bes35', 'no_lang_code', 1, 'https://ror.org/0235bes35 Coventry & Warwickshire Local Enterprise Partnership (United Kingdom)'), (76778, 'https://ror.org/0238awh09', 'no_lang_code', 1, 'https://ror.org/0238awh09 UNE Partnerships (Australia)'), (76779, 'https://ror.org/0238gcb09', 'en', 1, 'https://ror.org/0238gcb09 Qianjiang Central Hospital 潜江市中心医院'), (76780, 'https://ror.org/0239xwa13', 'no_lang_code', 1, 'https://ror.org/0239xwa13 Helvetica Exploration Services (Switzerland)'), (76781, 'https://ror.org/023aqyp35', 'no_lang_code', 1, 'https://ror.org/023aqyp35 SihuanPharm (China)'), (76782, 'https://ror.org/023aw9j89', 'en', 1, 'https://ror.org/023aw9j89 Agency for Quality Assurance and Accreditation Austria Agentur für Qualitätssicherung und Akkreditierung Austria'), (76783, 'https://ror.org/023b5wj08', 'no_lang_code', 1, 'https://ror.org/023b5wj08 SeaSpine (United States)'), (76784, 'https://ror.org/023bt3h76', 'no_lang_code', 1, 'https://ror.org/023bt3h76 Galapagos (France)'), (76785, 'https://ror.org/023d46310', 'en', 1, 'https://ror.org/023d46310 Institut Input'), (76786, 'https://ror.org/023dqar74', 'en', 1, 'https://ror.org/023dqar74 Intelligent Synthetic Biology Center 지능형 바이오시스템 설계 및 합성 연구단'), (76787, 'https://ror.org/023ec5d95', 'no_lang_code', 1, 'https://ror.org/023ec5d95 Akademie Überlingen (Germany)'), (76788, 'https://ror.org/023f8av81', 'en', 1, 'https://ror.org/023f8av81 Gansu Coalfield Geology Bureau 甘肃煤田地质局'), (76789, 'https://ror.org/023g9jn96', 'no_lang_code', 1, 'https://ror.org/023g9jn96 Fumakilla (Japan) フマキラー'), (76790, 'https://ror.org/023m36v90', 'no_lang_code', 1, 'https://ror.org/023m36v90 Family Inada (Japan) ファミリーイナダ株式会社'), (76791, 'https://ror.org/023nd1r80', 'en', 1, 'https://ror.org/023nd1r80 International Council on Education for Teaching'), (76792, 'https://ror.org/023s2h905', 'no_lang_code', 1, 'https://ror.org/023s2h905 JGC (Japan) 日揮株式会社'), (76793, 'https://ror.org/023s4zc74', 'no_lang_code', 1, 'https://ror.org/023s4zc74 Mayne Pharma (Australia)'), (76794, 'https://ror.org/023sm4k53', 'en', 1, 'https://ror.org/023sm4k53 Department of Physics, Mathematics and Informatics Аддзяленне фізікі, матэматыкі і інфарматыкі'), (76795, 'https://ror.org/023teqr16', 'en', 1, 'https://ror.org/023teqr16 Parenting Research Centre'), (76796, 'https://ror.org/023wh8b50', 'en', 1, 'https://ror.org/023wh8b50 Public Health Scotland'), (76797, 'https://ror.org/023wtw779', 'no_lang_code', 1, 'https://ror.org/023wtw779 Vektrex (United States)'), (76798, 'https://ror.org/023y2na82', 'en', 1, 'https://ror.org/023y2na82 Human Fertilisation and Embryology Authority'), (76799, 'https://ror.org/023yhem40', 'no_lang_code', 1, 'https://ror.org/023yhem40 Materialprüfungsamt NRW (Germany)'), (76800, 'https://ror.org/0240nmn85', 'en', 1, 'https://ror.org/0240nmn85 Veterinary Biological and Research Institute'), (76801, 'https://ror.org/0241de231', 'no_lang_code', 1, 'https://ror.org/0241de231 Burcon (Canada)'), (76802, 'https://ror.org/0241kq529', 'no_lang_code', 1, 'https://ror.org/0241kq529 Aquanova (Germany)'), (76803, 'https://ror.org/0244stc74', 'no_lang_code', 1, 'https://ror.org/0244stc74 Koh Young Technology (South Korea)'), (76804, 'https://ror.org/0247phc34', 'en', 1, 'https://ror.org/0247phc34 Rwanda Development Board'), (76805, 'https://ror.org/02488qf25', 'en', 1, 'https://ror.org/02488qf25 Metropolitan International University'), (76806, 'https://ror.org/0248a9217', 'no_lang_code', 1, 'https://ror.org/0248a9217 Premier Dental Products (United States)'), (76807, 'https://ror.org/0249hbq40', 'no_lang_code', 1, 'https://ror.org/0249hbq40 WestMountain Asset Management (United States)'), (76808, 'https://ror.org/0249xx705', 'en', 1, 'https://ror.org/0249xx705 Reef Ecologic'), (76809, 'https://ror.org/024e1fw78', 'de', 1, 'https://ror.org/024e1fw78 Institut für Polymerwerkstoffe'), (76810, 'https://ror.org/024g3yp89', 'no_lang_code', 1, 'https://ror.org/024g3yp89 FGP (Italy)'), (76811, 'https://ror.org/024gk5m97', 'en', 1, 'https://ror.org/024gk5m97 Institut für nachhaltige Berufsbildung & Management-Services Institute for Sustainable TVET & Management Services'), (76812, 'https://ror.org/024hp8310', 'no_lang_code', 1, 'https://ror.org/024hp8310 Radix (United States)'), (76813, 'https://ror.org/024hvm870', 'en', 1, 'https://ror.org/024hvm870 Japan Electronics College 日本電子専門学校'), (76814, 'https://ror.org/024kjmj54', 'no_lang_code', 1, 'https://ror.org/024kjmj54 Medtrade (United Kingdom)'), (76815, 'https://ror.org/024kstn81', 'no_lang_code', 1, 'https://ror.org/024kstn81 Bentley Systems (United States)'), (76816, 'https://ror.org/024pse488', 'en', 1, 'https://ror.org/024pse488 Systems Engineering Society of China 中国系统工程学会'), (76817, 'https://ror.org/024s0ye18', 'no_lang_code', 1, 'https://ror.org/024s0ye18 Conformis (United States)'), (76818, 'https://ror.org/024we4p93', 'en', 1, 'https://ror.org/024we4p93 Rustaq College of Education كلية التربية بالرستاق'), (76819, 'https://ror.org/024wm7g15', 'no_lang_code', 1, 'https://ror.org/024wm7g15 Zdye (United States)'), (76820, 'https://ror.org/024xp9k29', 'en', 1, 'https://ror.org/024xp9k29 Fujian Institute of Education 福建教育学院'), (76821, 'https://ror.org/024y05r39', 'no_lang_code', 1, 'https://ror.org/024y05r39 Parabilis Space Technologies (United States)'), (76822, 'https://ror.org/024zcda42', 'no_lang_code', 1, 'https://ror.org/024zcda42 National Institutes of Pharmaceutical Research and Development (China) 中国医药研究开发中心有限公司'), (76823, 'https://ror.org/02502ye72', 'no_lang_code', 1, 'https://ror.org/02502ye72 Kode Biotech (New Zealand)'), (76824, 'https://ror.org/0251rms11', 'no_lang_code', 1, 'https://ror.org/0251rms11 ScinoPharm Taiwan (Taiwan) 台灣神隆股份有限公司'), (76825, 'https://ror.org/0252vn140', 'en', 1, 'https://ror.org/0252vn140 Center for Collaborative Interdisciplinary Sciences'), (76826, 'https://ror.org/02538qk16', 'no_lang_code', 1, 'https://ror.org/02538qk16 Wisdom Health (United States)'), (76827, 'https://ror.org/0258gkt32', 'en', 1, 'https://ror.org/0258gkt32 Mohamed bin Zayed University of Artificial Intelligence جامعة محمد بن زايد للذكاء الاصطناعي'), (76828, 'https://ror.org/0259nbs47', 'no_lang_code', 1, 'https://ror.org/0259nbs47 ASYS Group (Germany) Asys Automatisierungssysteme'), (76829, 'https://ror.org/0259rff80', 'no_lang_code', 1, 'https://ror.org/0259rff80 Manav Vikas Evam Sewa Sansthan'), (76830, 'https://ror.org/025cs2j58', 'en', 1, 'https://ror.org/025cs2j58 Carl Vinson VA Medical Center'), (76831, 'https://ror.org/025e41905', 'no_lang_code', 1, 'https://ror.org/025e41905 Diatex (France)'), (76832, 'https://ror.org/025frdg11', 'en', 1, 'https://ror.org/025frdg11 Institut für sozialwissenschaftliche Beratung Institute for Socio-Scientific Consultancy'), (76833, 'https://ror.org/025g1ff13', 'no_lang_code', 1, 'https://ror.org/025g1ff13 Shifamed (United States)'), (76834, 'https://ror.org/025mr0m62', 'en', 1, 'https://ror.org/025mr0m62 NEADS World Class Service Dogs Change'), (76835, 'https://ror.org/025my6r54', 'de', 1, 'https://ror.org/025my6r54 Landeskriminalamt Niedersachsen'), (76836, 'https://ror.org/025nbs755', 'de', 1, 'https://ror.org/025nbs755 Gisela Vogel Institut für berufliche Bildung'), (76837, 'https://ror.org/025qsj431', 'en', 1, 'https://ror.org/025qsj431 Bozhou People''s Hospital 亳州市人民医院'), (76838, 'https://ror.org/025v27q25', 'no_lang_code', 1, 'https://ror.org/025v27q25 Vegum (Slovakia)'), (76839, 'https://ror.org/025y41g72', 'no_lang_code', 1, 'https://ror.org/025y41g72 Nagase ChemteX (Japan) ナガセケムテックス株式会社'), (76840, 'https://ror.org/025zpy585', 'no_lang_code', 1, 'https://ror.org/025zpy585 Chemnitzer Werkstoffmechanik GmbH (Germany)'), (76841, 'https://ror.org/02626d994', 'no_lang_code', 1, 'https://ror.org/02626d994 Edan (China)'), (76842, 'https://ror.org/026374683', 'no_lang_code', 1, 'https://ror.org/026374683 Forschungs- und Applikationslabor Plasmatechnik (Germany)'), (76843, 'https://ror.org/0263fkh30', 'no_lang_code', 1, 'https://ror.org/0263fkh30 Forma Therapeutics (United States)'), (76844, 'https://ror.org/0263r2546', 'en', 1, 'https://ror.org/0263r2546 Fraunhofer Center for Applied Research on Supply Chain Services Fraunhofer-Arbeitsgruppe für Supply Chain Services'), (76845, 'https://ror.org/0264gw370', 'en', 1, 'https://ror.org/0264gw370 Guangdong Institute for Drug Control 广东省药品检验所'), (76846, 'https://ror.org/0264ncd87', 'no_lang_code', 1, 'https://ror.org/0264ncd87 Comeb (Italy)'), (76847, 'https://ror.org/0268fey62', 'en', 1, 'https://ror.org/0268fey62 Chiba Prefectural Agriculture and Forestry Research Center Forest Research Institute 千葉県農林総合研究センター森林研究所'), (76848, 'https://ror.org/02696ac72', 'en', 1, 'https://ror.org/02696ac72 Center for Indonesian Policy Studies'), (76849, 'https://ror.org/026cbjd11', 'no_lang_code', 1, 'https://ror.org/026cbjd11 Zobele (Spain)'), (76850, 'https://ror.org/026ck6f55', 'no_lang_code', 1, 'https://ror.org/026ck6f55 Versitech (United States)'), (76851, 'https://ror.org/026eeyk15', 'no', 1, 'https://ror.org/026eeyk15 Fjellhaug Internasjonale Høgskole Fjellhaug International University College'), (76852, 'https://ror.org/026gp9a94', 'en', 1, 'https://ror.org/026gp9a94 District Heating Research Institute Fernwärme-Forschungsinstitut'), (76853, 'https://ror.org/026h4ma68', 'en', 1, 'https://ror.org/026h4ma68 Atlanta University Center Robert W. Woodruff Library'), (76854, 'https://ror.org/026kzh194', 'no_lang_code', 1, 'https://ror.org/026kzh194 Swallow Solutions (United States)'), (76855, 'https://ror.org/026q2n359', 'no_lang_code', 1, 'https://ror.org/026q2n359 Molecular Microbiology and Genomics Consultants (Germany)'), (76856, 'https://ror.org/026stee22', 'en', 1, 'https://ror.org/026stee22 Max Planck Institute of Animal Behavior Max-Planck-Institut für Verhaltensbiologie'), (76857, 'https://ror.org/026t5rk78', 'en', 1, 'https://ror.org/026t5rk78 National Center for Intermodal Transportation'), (76858, 'https://ror.org/026znxe07', 'en', 1, 'https://ror.org/026znxe07 Energy Safety Research Institute'), (76859, 'https://ror.org/026zv7h71', 'de', 1, 'https://ror.org/026zv7h71 TUMAINI-Institut für Präventionsmanagement'), (76860, 'https://ror.org/02707gg79', 'en', 1, 'https://ror.org/02707gg79 Iнститут фізичної оптики iменi О. Г. Влоха Vlokh Institute of Physical Optics'), (76861, 'https://ror.org/0272z3408', 'no_lang_code', 1, 'https://ror.org/0272z3408 Relievant Medsystem (United States)'), (76862, 'https://ror.org/027327e78', 'en', 1, 'https://ror.org/027327e78 Conquer Cancer Foundation'), (76863, 'https://ror.org/02758ch83', 'en', 1, 'https://ror.org/02758ch83 Alaska Wildlife Alliance'), (76864, 'https://ror.org/0275t9a95', 'no_lang_code', 1, 'https://ror.org/0275t9a95 Suss Microoptics (Switzerland) SÜSS MicroOptics'), (76865, 'https://ror.org/0276bkt19', 'en', 1, 'https://ror.org/0276bkt19 National Public Health Laboratory'), (76866, 'https://ror.org/0277khs39', 'no_lang_code', 1, 'https://ror.org/0277khs39 ElFys (Finland)'), (76867, 'https://ror.org/0277pjz21', 'en', 1, 'https://ror.org/0277pjz21 Radio, Film & TV Design and Research Institute'), (76868, 'https://ror.org/0278qhr30', 'en', 1, 'https://ror.org/0278qhr30 Northlake Behavioral Health System'), (76869, 'https://ror.org/0279hx849', 'no_lang_code', 1, 'https://ror.org/0279hx849 optX Imaging Systems (United States)'), (76870, 'https://ror.org/027axbt27', 'en', 1, 'https://ror.org/027axbt27 Canadian Quantum Research Center'), (76871, 'https://ror.org/027b3vh68', 'no_lang_code', 1, 'https://ror.org/027b3vh68 Appili Therapeutics (Canada)'), (76872, 'https://ror.org/027b5pf36', 'no_lang_code', 1, 'https://ror.org/027b5pf36 True (United States)'), (76873, 'https://ror.org/027d68d71', 'de', 1, 'https://ror.org/027d68d71 Pestel Institut'), (76874, 'https://ror.org/027dj9r35', 'no_lang_code', 1, 'https://ror.org/027dj9r35 COLAS Slovakia (Slovakia)'), (76875, 'https://ror.org/027etx825', 'no_lang_code', 1, 'https://ror.org/027etx825 Imerys (France)'), (76876, 'https://ror.org/027h3dg90', 'no_lang_code', 1, 'https://ror.org/027h3dg90 InferVision (China)'), (76877, 'https://ror.org/027h6z252', 'it', 1, 'https://ror.org/027h6z252 Agenzia Regionale Sanitaria della Puglia'), (76878, 'https://ror.org/027hpkn10', 'no_lang_code', 1, 'https://ror.org/027hpkn10 Apogee Semiconductor (United States)'), (76879, 'https://ror.org/027jdb025', 'pt', 1, 'https://ror.org/027jdb025 Instituto Argonauta'), (76880, 'https://ror.org/027jnbj33', 'no_lang_code', 1, 'https://ror.org/027jnbj33 Allwinner Technology (China) 全志'), (76881, 'https://ror.org/027mwd906', 'en', 1, 'https://ror.org/027mwd906 DEUTSCHES ZENTRUM DES INTERNATIONALEN THEATERINSTITUTS German Centre of the International Theatre Institute'), (76882, 'https://ror.org/027przv47', 'en', 1, 'https://ror.org/027przv47 Flemish Parliament Flämisches Parlament Parlement Flamand Vlaams Parlement'), (76883, 'https://ror.org/027vtzk17', 'no_lang_code', 1, 'https://ror.org/027vtzk17 DeRoyal (United States)'), (76884, 'https://ror.org/027wbjg72', 'en', 1, 'https://ror.org/027wbjg72 Johann Adam Möhler Institute for Ecumenism Johann-Adam-Möhler-Institut für Ökumenik'), (76885, 'https://ror.org/027xaw831', 'no_lang_code', 1, 'https://ror.org/027xaw831 SafelyYou (United States)'), (76886, 'https://ror.org/027ya7x98', 'no_lang_code', 1, 'https://ror.org/027ya7x98 Systemech (United States)'), (76887, 'https://ror.org/027ya8962', 'en', 1, 'https://ror.org/027ya8962 Anthrologica'), (76888, 'https://ror.org/027z9pz32', 'en', 1, 'https://ror.org/027z9pz32 The SILVA Ribosomal RNA Database Project'), (76889, 'https://ror.org/027zp1m72', 'de', 1, 'https://ror.org/027zp1m72 Planetarium Bochum'), (76890, 'https://ror.org/027zp7q69', 'en', 1, 'https://ror.org/027zp7q69 Kagoshima City Aquarium Foundation 公益財団法人 鹿児島市水族館公社'), (76891, 'https://ror.org/02807xv41', 'no_lang_code', 1, 'https://ror.org/02807xv41 Scripps Laboratories (United States)'), (76892, 'https://ror.org/0280bnq76', 'en', 1, 'https://ror.org/0280bnq76 Center for Research in Molecular Medicine and Chronic Diseases Centro singular de investigación de Galicia'), (76893, 'https://ror.org/0281ff903', 'no_lang_code', 1, 'https://ror.org/0281ff903 Terason (United States)'), (76894, 'https://ror.org/0281t1271', 'de', 1, 'https://ror.org/0281t1271 Deutscher Energieholz- und Pellet-Verband'), (76895, 'https://ror.org/0282sdt33', 'fr', 1, 'https://ror.org/0282sdt33 African University For Cooperative Development Université Africaine de Développement Coopératif'), (76896, 'https://ror.org/0284j4180', 'en', 1, 'https://ror.org/0284j4180 Global Antibiotic Research & Development Partnership'), (76897, 'https://ror.org/0284sm129', 'no_lang_code', 1, 'https://ror.org/0284sm129 SysLogic (United States)'), (76898, 'https://ror.org/02863ez16', 'en', 1, 'https://ror.org/02863ez16 Toyama Science Museum 富山市科学博物館'), (76899, 'https://ror.org/0286azq87', 'de', 1, 'https://ror.org/0286azq87 Institut für kybernetisches Planen und Bauen'), (76900, 'https://ror.org/0286p0f76', 'no_lang_code', 1, 'https://ror.org/0286p0f76 KemPharm (United States)'), (76901, 'https://ror.org/0288kcc12', 'no_lang_code', 1, 'https://ror.org/0288kcc12 Pixium Vision (France)'), (76902, 'https://ror.org/0288rsm64', 'no_lang_code', 1, 'https://ror.org/0288rsm64 Materialise (United Kingdom)'), (76903, 'https://ror.org/02895kk89', 'en', 1, 'https://ror.org/02895kk89 Jiangxi Chest Hospital 江西省胸科医院'), (76904, 'https://ror.org/028ap6052', 'en', 1, 'https://ror.org/028ap6052 Institute of Animal Biology NAAS Інститут біології тварин НААН'), (76905, 'https://ror.org/028c6av56', 'no_lang_code', 1, 'https://ror.org/028c6av56 Aroma Marketing (Slovakia)'), (76906, 'https://ror.org/028c7mm22', 'no_lang_code', 1, 'https://ror.org/028c7mm22 Delmar (Canada)'), (76907, 'https://ror.org/028f0h308', 'en', 1, 'https://ror.org/028f0h308 Department of Animal Husbandry and Veterinary'), (76908, 'https://ror.org/028fy7q25', 'en', 1, 'https://ror.org/028fy7q25 Botanical Society of China 中国植物学会'), (76909, 'https://ror.org/028gkba61', 'no_lang_code', 1, 'https://ror.org/028gkba61 Lyell Immunopharma (United States)'), (76910, 'https://ror.org/028mbb924', 'en', 1, 'https://ror.org/028mbb924 North American Renderers Association'), (76911, 'https://ror.org/028nwg363', 'de', 1, 'https://ror.org/028nwg363 Landesforst Mecklenburg‑Vorpommern'), (76912, 'https://ror.org/028q4wx16', 'en', 1, 'https://ror.org/028q4wx16 Association for Environmental Health and Sciences Foundation'), (76913, 'https://ror.org/028t9y815', 'en', 1, 'https://ror.org/028t9y815 German Coastal Engineering Research Council Kuratorium für Forschung im Küsteningenieurwesen'), (76914, 'https://ror.org/028tnj023', 'de', 1, 'https://ror.org/028tnj023 Stiftung Warentest'), (76915, 'https://ror.org/028vcv574', 'no_lang_code', 1, 'https://ror.org/028vcv574 Seqirus (United Kingdom)'), (76916, 'https://ror.org/028wbxx26', 'en', 1, 'https://ror.org/028wbxx26 Spinney Vets'), (76917, 'https://ror.org/028xc6z83', 'no_lang_code', 1, 'https://ror.org/028xc6z83 SpectrumK (Germany)'), (76918, 'https://ror.org/028xrre51', 'en', 1, 'https://ror.org/028xrre51 Qujiang People''s Hospital 曲江县人民医院'), (76919, 'https://ror.org/0291gez47', 'pt', 1, 'https://ror.org/0291gez47 Clinica De Doencas Renais De Brasilia'), (76920, 'https://ror.org/0292bqz47', 'en', 1, 'https://ror.org/0292bqz47 World Health Organization - Jordan'), (76921, 'https://ror.org/02943gv98', 'en', 1, 'https://ror.org/02943gv98 Sheridan VA Medical Center'), (76922, 'https://ror.org/0294v4s84', 'en', 1, 'https://ror.org/0294v4s84 Ningbo Municipal Bureau of Ecology and Environment'), (76923, 'https://ror.org/0294vh269', 'no_lang_code', 1, 'https://ror.org/0294vh269 Fertin Pharma (Denmark)'), (76924, 'https://ror.org/0297zwz89', 'en', 1, 'https://ror.org/0297zwz89 Defence Materials and Stores Research and Development Establishment रक्षा सामग्री एंव भण्डार अनुसंधान तथा विकास स्थापना'), (76925, 'https://ror.org/029b4kt29', 'en', 1, 'https://ror.org/029b4kt29 Livestock Breeding and Veterinary Department မွေးမြူရေးနှင့် ကုသရေး ဦးစီးဌာန'), (76926, 'https://ror.org/029cj7p46', 'no_lang_code', 1, 'https://ror.org/029cj7p46 Wetech (Germany)'), (76927, 'https://ror.org/029djbz77', 'de', 1, 'https://ror.org/029djbz77 Institut für Hygiene und Umwelt'), (76928, 'https://ror.org/029e02124', 'no_lang_code', 1, 'https://ror.org/029e02124 NoNO (Canada)'), (76929, 'https://ror.org/029eqtm48', 'no_lang_code', 1, 'https://ror.org/029eqtm48 Cook Biotech (United States)'), (76930, 'https://ror.org/029g9r930', 'no_lang_code', 1, 'https://ror.org/029g9r930 Adc Therapeutics (Switzerland)'), (76931, 'https://ror.org/029gmnc79', 'en', 1, 'https://ror.org/029gmnc79 Human Technopole'), (76932, 'https://ror.org/029hsnk78', 'en', 1, 'https://ror.org/029hsnk78 Chiba-Nishi General Hospital 千葉西総合病院'), (76933, 'https://ror.org/029j07248', 'no_lang_code', 1, 'https://ror.org/029j07248 SpineThera (United States)'), (76934, 'https://ror.org/029jf8535', 'no_lang_code', 1, 'https://ror.org/029jf8535 Tenet 3 (United States)'), (76935, 'https://ror.org/029krwz28', 'no_lang_code', 1, 'https://ror.org/029krwz28 OrthAlign (United States)'), (76936, 'https://ror.org/029mxk035', 'no_lang_code', 1, 'https://ror.org/029mxk035 Wuhan Youfu Hospital 武汉市优抚医院'), (76937, 'https://ror.org/029p5cv63', 'no_lang_code', 1, 'https://ror.org/029p5cv63 Kazia Therapeutics (Australia)'), (76938, 'https://ror.org/029pnek19', 'no_lang_code', 1, 'https://ror.org/029pnek19 Institute for Rheumatic Diseases (Japan) 株式会社膠原病研究所'), (76939, 'https://ror.org/029q69m70', 'en', 1, 'https://ror.org/029q69m70 Virtual University of Uganda'), (76940, 'https://ror.org/029tp1n54', 'no_lang_code', 1, 'https://ror.org/029tp1n54 Institut für Arbeitswissenschaft und Unternehmensoptimierung (Germany)'), (76941, 'https://ror.org/029tw8r50', 'no_lang_code', 1, 'https://ror.org/029tw8r50 Eyesense (Germany)'), (76942, 'https://ror.org/029v85503', 'en', 1, 'https://ror.org/029v85503 Safer Medicines Trust'), (76943, 'https://ror.org/029xz9y97', 'en', 1, 'https://ror.org/029xz9y97 State Council of Science Technology & Environment, Meghalaya'), (76944, 'https://ror.org/029yvzm75', 'en', 1, 'https://ror.org/029yvzm75 Hunan Hydro&Power Design Institute 湖南水利水电勘测设计研究院'), (76945, 'https://ror.org/02a0n8d86', 'en', 1, 'https://ror.org/02a0n8d86 Saudi Arabian Monetary Authority مؤسسة النقد العربي السعودي'), (76946, 'https://ror.org/02a1xcr76', 'de', 1, 'https://ror.org/02a1xcr76 Mathe im Leben'), (76947, 'https://ror.org/02a46t946', 'en', 1, 'https://ror.org/02a46t946 The Academic Association for Contemporary European Studies'), (76948, 'https://ror.org/02a539305', 'no_lang_code', 1, 'https://ror.org/02a539305 Shanghai Senyi Medical Technology (China)'), (76949, 'https://ror.org/02a54nf13', 'fr', 1, 'https://ror.org/02a54nf13 École Nationale Supérieure de Statistique et d''Économie Appliquée'), (76950, 'https://ror.org/02a57s352', 'es', 1, 'https://ror.org/02a57s352 Centro Regional de Hemodonación'), (76951, 'https://ror.org/02a61vy29', 'en', 1, 'https://ror.org/02a61vy29 Advanced Numerical Research and Analysis Group उन्न्त अंकीय अनुसंधान तथा विश्लेषण समूह'), (76952, 'https://ror.org/02a79n229', 'no_lang_code', 1, 'https://ror.org/02a79n229 Silk Road Medical (United States)'), (76953, 'https://ror.org/02a82mh07', 'en', 1, 'https://ror.org/02a82mh07 Middle East Institute of Japan 公益財団法人 中東調査会'), (76954, 'https://ror.org/02a8pvy33', 'en', 1, 'https://ror.org/02a8pvy33 Defence Institute of Psychological Research मनोवैज्ञानिक अनुसंधान के रक्षा संस्थान'), (76955, 'https://ror.org/02ad5vq71', 'no_lang_code', 1, 'https://ror.org/02ad5vq71 Winning Health Technology Group (China)'), (76956, 'https://ror.org/02ae11525', 'no_lang_code', 1, 'https://ror.org/02ae11525 Biozeen (India)'), (76957, 'https://ror.org/02ag5zv31', 'no_lang_code', 1, 'https://ror.org/02ag5zv31 Zepto (United States)'), (76958, 'https://ror.org/02ahhqv73', 'es', 1, 'https://ror.org/02ahhqv73 Asociación Colombiana de Facultades de Ingeniería Association of Colombian Faculties of Engineering'), (76959, 'https://ror.org/02ahp7e62', 'en', 1, 'https://ror.org/02ahp7e62 Boxing People''s Hospital 博兴县人民医院'), (76960, 'https://ror.org/02aj3k144', 'no_lang_code', 1, 'https://ror.org/02aj3k144 Flight Calibration Services (Germany)'), (76961, 'https://ror.org/02ammwv45', 'en', 1, 'https://ror.org/02ammwv45 Health Crescendos Foundation'), (76962, 'https://ror.org/02aqk7720', 'no_lang_code', 1, 'https://ror.org/02aqk7720 Apyx Medical (United States)'), (76963, 'https://ror.org/02aqrmp51', 'en', 1, 'https://ror.org/02aqrmp51 Austrian Red Cross Österreichisches Rotes Kreuz'), (76964, 'https://ror.org/02aqvpe76', 'no_lang_code', 1, 'https://ror.org/02aqvpe76 Inphi (United Kingdom)'), (76965, 'https://ror.org/02awaab90', 'no_lang_code', 1, 'https://ror.org/02awaab90 Avinger (United States)'), (76966, 'https://ror.org/02awadj72', 'no_lang_code', 1, 'https://ror.org/02awadj72 Volk (United States)'), (76967, 'https://ror.org/02az5k716', 'no_lang_code', 1, 'https://ror.org/02az5k716 Insync Technology (United Kingdom)'), (76968, 'https://ror.org/02azwm483', 'no_lang_code', 1, 'https://ror.org/02azwm483 EControl-Glas (Germany)'), (76969, 'https://ror.org/02b08tk40', 'no_lang_code', 1, 'https://ror.org/02b08tk40 Fahrenheit (Germany)'), (76970, 'https://ror.org/02b2enb68', 'no_lang_code', 1, 'https://ror.org/02b2enb68 Ultra Biotech (India)'), (76971, 'https://ror.org/02b5gjr58', 'en', 1, 'https://ror.org/02b5gjr58 Vivekananda Institute of Biotechnology বিবেকানন্দ বায়োটেকনোলজি ইনস্টিটিউট'), (76972, 'https://ror.org/02b66d538', 'de', 1, 'https://ror.org/02b66d538 Institut für Regionalmanagement'), (76973, 'https://ror.org/02b68c504', 'no_lang_code', 1, 'https://ror.org/02b68c504 Eurostep (United Kingdom)'), (76974, 'https://ror.org/02b6vt253', 'no_lang_code', 1, 'https://ror.org/02b6vt253 Probus (United States)'), (76975, 'https://ror.org/02b790a63', 'en', 1, 'https://ror.org/02b790a63 Institute of Computer Vision and Applied Computer Sciences'), (76976, 'https://ror.org/02b7wb227', 'de', 1, 'https://ror.org/02b7wb227 Feuerwehr Dortmund'), (76977, 'https://ror.org/02bf7eh36', 'no_lang_code', 1, 'https://ror.org/02bf7eh36 Finnvera (Finland)'), (76978, 'https://ror.org/02bfx2y10', 'de', 1, 'https://ror.org/02bfx2y10 Innovationstransfer- und Forschungsinstitut Schwerin'), (76979, 'https://ror.org/02bh52216', 'no_lang_code', 1, 'https://ror.org/02bh52216 SeNA Research (United States)'), (76980, 'https://ror.org/02bh93636', 'no_lang_code', 1, 'https://ror.org/02bh93636 Holtzbrinck Publishing Group (Germany)'), (76981, 'https://ror.org/02bhkz014', 'no_lang_code', 1, 'https://ror.org/02bhkz014 Redwood Scientific (United States)'), (76982, 'https://ror.org/02bjbg379', 'no_lang_code', 1, 'https://ror.org/02bjbg379 Schunk (United Kingdom)'), (76983, 'https://ror.org/02bjkqr85', 'en', 1, 'https://ror.org/02bjkqr85 Office of Science and Technology Policy'), (76984, 'https://ror.org/02bjrj215', 'en', 1, 'https://ror.org/02bjrj215 Uganda Petroleum Institute'), (76985, 'https://ror.org/02bk51c93', 'no_lang_code', 1, 'https://ror.org/02bk51c93 Südzucker (Germany)'), (76986, 'https://ror.org/02bkncc34', 'en', 1, 'https://ror.org/02bkncc34 The Egyptian Society of Hematology and Research الجمعية المصرية لأمراض الدم والبحوث'), (76987, 'https://ror.org/02bkvx667', 'en', 1, 'https://ror.org/02bkvx667 Research ICT Africa'), (76988, 'https://ror.org/02bm0dv51', 'no_lang_code', 1, 'https://ror.org/02bm0dv51 Way Industries (Slovakia)'), (76989, 'https://ror.org/02bph6v17', 'no_lang_code', 1, 'https://ror.org/02bph6v17 Deerfield (United States)'), (76990, 'https://ror.org/02bvn3590', 'no_lang_code', 1, 'https://ror.org/02bvn3590 Soliculture (United States)'), (76991, 'https://ror.org/02bxpm650', 'en', 1, 'https://ror.org/02bxpm650 South African Institute of International Affairs'), (76992, 'https://ror.org/02by6tw17', 'no_lang_code', 1, 'https://ror.org/02by6tw17 APC Europe (Spain)'), (76993, 'https://ror.org/02c05kw86', 'de', 1, 'https://ror.org/02c05kw86 Landwirtschaftlichen Zentrums Baden-Württemberg'), (76994, 'https://ror.org/02c0bjd31', 'en', 1, 'https://ror.org/02c0bjd31 scidecode science consulting & research'), (76995, 'https://ror.org/02c3crq07', 'no_lang_code', 1, 'https://ror.org/02c3crq07 RHK Technology (United States)'), (76996, 'https://ror.org/02c3keg48', 'sk', 1, 'https://ror.org/02c3keg48 Asociácia Doktorandov Slovenska'), (76997, 'https://ror.org/02c4jmw40', 'no_lang_code', 1, 'https://ror.org/02c4jmw40 Convalife (China)'), (76998, 'https://ror.org/02c585m74', 'de', 1, 'https://ror.org/02c585m74 Behörde für Wissenschaft, Forschung und Gleichstellung'), (76999, 'https://ror.org/02c592745', 'en', 1, 'https://ror.org/02c592745 Virginia Department of Veterans Services'), (77000, 'https://ror.org/02c5r0c23', 'no_lang_code', 1, 'https://ror.org/02c5r0c23 Sedecal Medical Imaging (Spain)'), (77001, 'https://ror.org/02c7r5h24', 'no_lang_code', 1, 'https://ror.org/02c7r5h24 Sen-oku HakukoKan Museum 泉屋博古館'), (77002, 'https://ror.org/02c8ew317', 'en', 1, 'https://ror.org/02c8ew317 Chinese Society for Plant Pathology 中国植物病理学会'), (77003, 'https://ror.org/02c9ess02', 'no_lang_code', 1, 'https://ror.org/02c9ess02 CTL Amedica (United States)'), (77004, 'https://ror.org/02c9ets03', 'no_lang_code', 1, 'https://ror.org/02c9ets03 PiDust Quantum Computing (Greece)'), (77005, 'https://ror.org/02c9fbn32', 'en', 1, 'https://ror.org/02c9fbn32 Hessian Ministry of Economics, Energy, Transport and Housing Hessisches Ministerium für Wirtschaft, Energie, Verkehr und Wohnen'), (77006, 'https://ror.org/02caa0269', 'en', 1, 'https://ror.org/02caa0269 Infectious Diseases Institute'), (77007, 'https://ror.org/02cc4y991', 'en', 1, 'https://ror.org/02cc4y991 Foundation for Agricultural Resources Management and Environmental Remediation'), (77008, 'https://ror.org/02cc5nj87', 'no_lang_code', 1, 'https://ror.org/02cc5nj87 Mainzer Stadtwerke (Germany)'), (77009, 'https://ror.org/02cd38e76', 'de', 1, 'https://ror.org/02cd38e76 Jüdisches Museum'), (77010, 'https://ror.org/02ce1xw45', 'fr', 1, 'https://ror.org/02ce1xw45 Groupe de Recherche et d’Analyse Appliquées pour le Développement'), (77011, 'https://ror.org/02ce6y193', 'en', 1, 'https://ror.org/02ce6y193 China Editology Society of Science Periodicals 中国科技期刊编辑学会'), (77012, 'https://ror.org/02cemsw67', 'en', 1, 'https://ror.org/02cemsw67 Miyazaki Prefectural Library 宮崎県立図書館'), (77013, 'https://ror.org/02cgf6x90', 'no_lang_code', 1, 'https://ror.org/02cgf6x90 Okayama Prefecture 岡山県農林水産総合センター生物科学研究所'), (77014, 'https://ror.org/02chjw737', 'no_lang_code', 1, 'https://ror.org/02chjw737 Ramdo (United States)'), (77015, 'https://ror.org/02cmy4j41', 'de', 1, 'https://ror.org/02cmy4j41 Forschungszentrum Ultraschall'), (77016, 'https://ror.org/02crmrs33', 'en', 1, 'https://ror.org/02crmrs33 Sytenko Institute of Spine and Joint Pathology of the National Academy of Medical Sciences of Ukraine Інститут патології хребта та суглобів імені Ситенка'), (77017, 'https://ror.org/02cvw8c86', 'no_lang_code', 1, 'https://ror.org/02cvw8c86 Axsome Therapeutics (United States)'), (77018, 'https://ror.org/02cytaa95', 'en', 1, 'https://ror.org/02cytaa95 Islamic Azad University of Chalous دانشگاه آزاد چالوس'), (77019, 'https://ror.org/02d21wr69', 'no_lang_code', 1, 'https://ror.org/02d21wr69 On Time Systems (United States)'), (77020, 'https://ror.org/02d6wr926', 'no_lang_code', 1, 'https://ror.org/02d6wr926 Radial Analytics (United States)'), (77021, 'https://ror.org/02d83jn68', 'no_lang_code', 1, 'https://ror.org/02d83jn68 Forms Syntron Information (China) 四方精创'), (77022, 'https://ror.org/02d87mf22', 'no_lang_code', 1, 'https://ror.org/02d87mf22 Promentis Pharmaceuticals (United States)'), (77023, 'https://ror.org/02d983k79', 'en', 1, 'https://ror.org/02d983k79 Equine Veterinary Medical Center مركز الخيول الطبي البيطري'), (77024, 'https://ror.org/02d9qgc11', 'en', 1, 'https://ror.org/02d9qgc11 Saudi Center for Disease Prevention and Control المركز الوطني للوقاية من الأمراض ومكافحتها'), (77025, 'https://ror.org/02da8wy28', 'no_lang_code', 1, 'https://ror.org/02da8wy28 Energy to Power Solution (United States)'), (77026, 'https://ror.org/02dbe0m82', 'no_lang_code', 1, 'https://ror.org/02dbe0m82 The Open Group (United States)'), (77027, 'https://ror.org/02ddsx922', 'fr', 1, 'https://ror.org/02ddsx922 Institut Supérieur de l''Informatique et de Gestion'), (77028, 'https://ror.org/02df3jd82', 'en', 1, 'https://ror.org/02df3jd82 Urolife Stone Hospital'), (77029, 'https://ror.org/02dgsh587', 'no_lang_code', 1, 'https://ror.org/02dgsh587 SkySentry (United States)'), (77030, 'https://ror.org/02dk28s26', 'no_lang_code', 1, 'https://ror.org/02dk28s26 Miragen Therapeutics (United States)'), (77031, 'https://ror.org/02dkg4b27', 'no_lang_code', 1, 'https://ror.org/02dkg4b27 Kayser Automotive (Germany)'), (77032, 'https://ror.org/02dkhsm53', 'no_lang_code', 1, 'https://ror.org/02dkhsm53 Admedes (Germany)'), (77033, 'https://ror.org/02dknqs67', 'no_lang_code', 1, 'https://ror.org/02dknqs67 China-US (Henan) Hormel Cancer Institute 河南省肿瘤医院'), (77034, 'https://ror.org/02dm92c46', 'de', 1, 'https://ror.org/02dm92c46 Europa-Institut'), (77035, 'https://ror.org/02dnbq706', 'no_lang_code', 1, 'https://ror.org/02dnbq706 Tristel (United Kingdom)'), (77036, 'https://ror.org/02dpxza53', 'no_lang_code', 1, 'https://ror.org/02dpxza53 Hefei Everpower Equipment (China)'), (77037, 'https://ror.org/02dr28080', 'no_lang_code', 1, 'https://ror.org/02dr28080 ContraFect (United States)'), (77038, 'https://ror.org/02dr3v034', 'en', 1, 'https://ror.org/02dr3v034 Surgo Foundation'), (77039, 'https://ror.org/02dsdsv34', 'de', 1, 'https://ror.org/02dsdsv34 Hochschule für Polizei und Öffentliche Verwaltung Nordrhein-Westfalen University for Police and Public Administration North Rhine-Westphalia'), (77040, 'https://ror.org/02dt32p51', 'no_lang_code', 1, 'https://ror.org/02dt32p51 Intelesens (United Kingdom)'), (77041, 'https://ror.org/02dwgrr09', 'no_lang_code', 1, 'https://ror.org/02dwgrr09 Intermodulation Products (Sweden)'), (77042, 'https://ror.org/02dxdyv61', 'en', 1, 'https://ror.org/02dxdyv61 Deutsche Gesellschaft für Internistische Intensivmedizin und Notfallmedizin German Society of Medical Intensive Care and Emergency Medicine'), (77043, 'https://ror.org/02dxkcn59', 'de', 1, 'https://ror.org/02dxkcn59 Hochschuldidaktischen Zentrum Sachsen'), (77044, 'https://ror.org/02dzn2z94', 'de', 1, 'https://ror.org/02dzn2z94 Berufsverband der Deutschen Dermatologen'), (77045, 'https://ror.org/02e1p7g90', 'en', 1, 'https://ror.org/02e1p7g90 Liu Zhou Center for Disease Prevention and Control 柳州疾病预防控制中心'), (77046, 'https://ror.org/02e4at420', 'no_lang_code', 1, 'https://ror.org/02e4at420 Trividia Health (United States)'), (77047, 'https://ror.org/02e4kkg71', 'en', 1, 'https://ror.org/02e4kkg71 ProMedica Monroe Regional Hospital'), (77048, 'https://ror.org/02e4p6m45', 'en', 1, 'https://ror.org/02e4p6m45 Forschungsgruppe Soziale Neurowissenschaft Social Neuroscience Lab'), (77049, 'https://ror.org/02e5d4a33', 'no_lang_code', 1, 'https://ror.org/02e5d4a33 Bafna Group (India)'), (77050, 'https://ror.org/02e5fdp70', 'no_lang_code', 1, 'https://ror.org/02e5fdp70 Merit Medical (United States)'), (77051, 'https://ror.org/02e8jz218', 'no_lang_code', 1, 'https://ror.org/02e8jz218 Lhoist (Belgium)'), (77052, 'https://ror.org/02e8nmk52', 'en', 1, 'https://ror.org/02e8nmk52 Tokyo Medical Examiner''s Office 東京都監察医務院'), (77053, 'https://ror.org/02eb03q95', 'no_lang_code', 1, 'https://ror.org/02eb03q95 Adhera Therapeutics (United States)'), (77054, 'https://ror.org/02eg69p81', 'no_lang_code', 1, 'https://ror.org/02eg69p81 Research - Development Application Services (Slovakia)'), (77055, 'https://ror.org/02emgkf66', 'no_lang_code', 1, 'https://ror.org/02emgkf66 Otter Controls (United Kingdom)'), (77056, 'https://ror.org/02en3wr74', 'no_lang_code', 1, 'https://ror.org/02en3wr74 MitsukaidoKosei Hospital 水海道厚生病院'), (77057, 'https://ror.org/02enk0533', 'en', 1, 'https://ror.org/02enk0533 Association for Awareness on Rural and Tribal Health Institute'), (77058, 'https://ror.org/02enpq749', 'de', 1, 'https://ror.org/02enpq749 Edith-Stein-Schulstiftung des Bistums Magdeburg'), (77059, 'https://ror.org/02epb4723', 'de', 1, 'https://ror.org/02epb4723 Klinik St. Irmingard'), (77060, 'https://ror.org/02eqnz251', 'en', 1, 'https://ror.org/02eqnz251 International Rescue System 国際レスキューシステム'), (77061, 'https://ror.org/02eqrzb23', 'en', 1, 'https://ror.org/02eqrzb23 Global Nature Fund'), (77062, 'https://ror.org/02esj6529', 'no_lang_code', 1, 'https://ror.org/02esj6529 Conagen (United States)'), (77063, 'https://ror.org/02esp3r97', 'en', 1, 'https://ror.org/02esp3r97 VA Western Colorado Health Care System'), (77064, 'https://ror.org/02ezs8594', 'en', 1, 'https://ror.org/02ezs8594 Yunnan Population and Family Planning Research Institute 云南省人口和计划生育科学技术研究所'), (77065, 'https://ror.org/02ezvhm25', 'de', 1, 'https://ror.org/02ezvhm25 Progenius'), (77066, 'https://ror.org/02f0gnt04', 'no_lang_code', 1, 'https://ror.org/02f0gnt04 Jena Bioscience (Germany)'), (77067, 'https://ror.org/02f0psx94', 'en', 1, 'https://ror.org/02f0psx94 Polytechnic University 職業能力開発総合大学校'), (77068, 'https://ror.org/02f1cet20', 'en', 1, 'https://ror.org/02f1cet20 Institute for Labour and Family Research Inštitút Pre Výskum Práce a Rodiny'), (77069, 'https://ror.org/02f33m021', 'en', 1, 'https://ror.org/02f33m021 Carnegie Mellon University Africa'), (77070, 'https://ror.org/02f33pm60', 'en', 1, 'https://ror.org/02f33pm60 Scottish Universities Insight Institute'), (77071, 'https://ror.org/02f3d5q63', 'no_lang_code', 1, 'https://ror.org/02f3d5q63 SMA Solar Technology (United Kingdom)'), (77072, 'https://ror.org/02f3vh107', 'en', 1, 'https://ror.org/02f3vh107 The Cambridge Centre for Advanced Research and Education in Singapore'), (77073, 'https://ror.org/02f65mn87', 'en', 1, 'https://ror.org/02f65mn87 Apollo Institute of Medical Sciences & Research అపోలో ఇన్స్టిట్యూట్ ఆఫ్ మెడికల్ సైన్సెస్ అండ్ రీసెర్చ్'), (77074, 'https://ror.org/02f6hqb19', 'no_lang_code', 1, 'https://ror.org/02f6hqb19 Evive Biotech (China)'), (77075, 'https://ror.org/02f71a260', 'en', 1, 'https://ror.org/02f71a260 Motamed Cancer Institute پژوهشکده معتمد جهاد دانشگاهی'), (77076, 'https://ror.org/02f8q7239', 'no_lang_code', 1, 'https://ror.org/02f8q7239 Autonomix Medical (United States)'), (77077, 'https://ror.org/02fafdw13', 'no_lang_code', 1, 'https://ror.org/02fafdw13 W&H (Austria)'), (77078, 'https://ror.org/02faq6h04', 'no_lang_code', 1, 'https://ror.org/02faq6h04 Air Water (Japan)'), (77079, 'https://ror.org/02fbcvn06', 'no_lang_code', 1, 'https://ror.org/02fbcvn06 Life Spine (United States)'), (77080, 'https://ror.org/02fbp2e31', 'no_lang_code', 1, 'https://ror.org/02fbp2e31 Simworx (United Kingdom)'), (77081, 'https://ror.org/02fcfe885', 'es', 1, 'https://ror.org/02fcfe885 Escuela Superior de Guerra'), (77082, 'https://ror.org/02fdbrg94', 'no_lang_code', 1, 'https://ror.org/02fdbrg94 Smith & Co (United States)'), (77083, 'https://ror.org/02fh3mq29', 'no_lang_code', 1, 'https://ror.org/02fh3mq29 Zietchick Research Institute (United States)'), (77084, 'https://ror.org/02fh8tg22', 'no_lang_code', 1, 'https://ror.org/02fh8tg22 Osaka Soda (Japan) 大阪ソーダ'), (77085, 'https://ror.org/02fjjnc15', 'en', 1, 'https://ror.org/02fjjnc15 Interdisciplinary Earth Data Alliance'), (77086, 'https://ror.org/02fk0da73', 'no_lang_code', 1, 'https://ror.org/02fk0da73 Sciogen (United States)'), (77087, 'https://ror.org/02fm9ey65', 'de', 1, 'https://ror.org/02fm9ey65 Mainzer Zentrum für Digitalität in den Geistes- und Kulturwissenschaften'), (77088, 'https://ror.org/02fpaqw26', 'en', 1, 'https://ror.org/02fpaqw26 Nagoya Future Culture College 名古屋未来文化専門学校'), (77089, 'https://ror.org/02fpqqs63', 'no_lang_code', 1, 'https://ror.org/02fpqqs63 Omni Sciences (United States)'), (77090, 'https://ror.org/02ft3dk35', 'no_lang_code', 1, 'https://ror.org/02ft3dk35 Minerva Surgical (United States)'), (77091, 'https://ror.org/02ftcpa68', 'en', 1, 'https://ror.org/02ftcpa68 Büro für Technikfolgen-Abschätzung beim Deutschen Bundestag Office of Technology Assessment at the German Bundestag'), (77092, 'https://ror.org/02fvx0g44', 'en', 1, 'https://ror.org/02fvx0g44 Banque de développement du Canada Business Development Bank of Canada'), (77093, 'https://ror.org/02fx6bp88', 'no_lang_code', 1, 'https://ror.org/02fx6bp88 Marine Polymer Technologies (United States)'), (77094, 'https://ror.org/02fxhgq54', 'en', 1, 'https://ror.org/02fxhgq54 East Riding of Yorkshire Council'), (77095, 'https://ror.org/02fyxhe35', 'no_lang_code', 1, 'https://ror.org/02fyxhe35 LinkedIn (United States)'), (77096, 'https://ror.org/02fzm7221', 'no_lang_code', 1, 'https://ror.org/02fzm7221 Gestamp (Spain)'), (77097, 'https://ror.org/02g0f3984', 'en', 1, 'https://ror.org/02g0f3984 Mercy Health Foundation'), (77098, 'https://ror.org/02g2x8w06', 'no_lang_code', 1, 'https://ror.org/02g2x8w06 Control4 (United States)'), (77099, 'https://ror.org/02g4h7104', 'no_lang_code', 1, 'https://ror.org/02g4h7104 Synopsys (Belgium)'), (77100, 'https://ror.org/02g61p297', 'en', 1, 'https://ror.org/02g61p297 Virgo'), (77101, 'https://ror.org/02g821610', 'en', 1, 'https://ror.org/02g821610 Hochschule für Technik Rapperswil University of Applied Sciences Rapperswil'), (77102, 'https://ror.org/02g99an58', 'en', 1, 'https://ror.org/02g99an58 TÜBİTAK Marmara Araştırma Merkezi TÜBİTAK Marmara Research Center'), (77103, 'https://ror.org/02gada206', 'no_lang_code', 1, 'https://ror.org/02gada206 Silicon Works (South Korea) 주)실리콘웍스'), (77104, 'https://ror.org/02gahgd10', 'en', 1, 'https://ror.org/02gahgd10 The Initiative for Equal Rights'), (77105, 'https://ror.org/02gbdhj19', 'en', 1, 'https://ror.org/02gbdhj19 National Center for Agricultural Utilization Research'), (77106, 'https://ror.org/02gey2570', 'no_lang_code', 1, 'https://ror.org/02gey2570 FSD Pharma (Canada)'), (77107, 'https://ror.org/02gfcg256', 'no_lang_code', 1, 'https://ror.org/02gfcg256 Lysando (Liechtenstein)'), (77108, 'https://ror.org/02gh10772', 'en', 1, 'https://ror.org/02gh10772 Hunan Police Academy 湖南警察学院'), (77109, 'https://ror.org/02ghmtw61', 'en', 1, 'https://ror.org/02ghmtw61 Loyola University of Congo Université Loyola du Congo'), (77110, 'https://ror.org/02gkg4976', 'no_lang_code', 1, 'https://ror.org/02gkg4976 Medigus (Israel)'), (77111, 'https://ror.org/02gn59349', 'no_lang_code', 1, 'https://ror.org/02gn59349 Bau-Institut für Ressourceneffizientes und Nachhaltiges Bauen Birn (Germany)'), (77112, 'https://ror.org/02gqf9e56', 'en', 1, 'https://ror.org/02gqf9e56 Technology Centre for Offshore and Marine, Singapore'), (77113, 'https://ror.org/02gqm1y63', 'no_lang_code', 1, 'https://ror.org/02gqm1y63 Minda Hospital 湖北民族大学附属民大医院'), (77114, 'https://ror.org/02gsa9r71', 'en', 1, 'https://ror.org/02gsa9r71 Shenyang Ninth People''s Hospital 沈阳市第九人民医院'), (77115, 'https://ror.org/02gsb6172', 'en', 1, 'https://ror.org/02gsb6172 Federal Reserve Bank of Philadelphia'), (77116, 'https://ror.org/02gtftk26', 'no_lang_code', 1, 'https://ror.org/02gtftk26 Institut für Technische Beratung und Produktentwicklung (Germany)'), (77117, 'https://ror.org/02gv1pt92', 'no_lang_code', 1, 'https://ror.org/02gv1pt92 EVRAZ (United Kingdom)'), (77118, 'https://ror.org/02gvtkt16', 'en', 1, 'https://ror.org/02gvtkt16 Integrated Test Range'), (77119, 'https://ror.org/02gx5k306', 'no_lang_code', 1, 'https://ror.org/02gx5k306 Lexion Medical (United States)'), (77120, 'https://ror.org/02gz1g089', 'de', 1, 'https://ror.org/02gz1g089 Forschungsinstitut für Denkmalpflege und Archäometrie'), (77121, 'https://ror.org/02gz79h29', 'en', 1, 'https://ror.org/02gz79h29 Shropshire Community Health NHS Trust'), (77122, 'https://ror.org/02h3fyk31', 'en', 1, 'https://ror.org/02h3fyk31 Xichang University 西昌学院'), (77123, 'https://ror.org/02h3t6028', 'no_lang_code', 1, 'https://ror.org/02h3t6028 Dr. Brill + Dr. Steinmann (Germany)'), (77124, 'https://ror.org/02h74qa12', 'es', 1, 'https://ror.org/02h74qa12 Mútua Terrassa'), (77125, 'https://ror.org/02h8xbx21', 'de', 1, 'https://ror.org/02h8xbx21 Institut für Site und Facility Management'), (77126, 'https://ror.org/02h9rwy26', 'es', 1, 'https://ror.org/02h9rwy26 Asociación Colombiana de Dermatología y Cirugía Dermatológica Colombian Association of Dermatology and Dermatological Surgery'), (77127, 'https://ror.org/02hcxtx58', 'no_lang_code', 1, 'https://ror.org/02hcxtx58 Deinove (Germany)'), (77128, 'https://ror.org/02hdkm455', 'no_lang_code', 1, 'https://ror.org/02hdkm455 Novartis (Slovakia)'), (77129, 'https://ror.org/02hew9107', 'no_lang_code', 1, 'https://ror.org/02hew9107 Orasure Technologies (United States)'), (77130, 'https://ror.org/02hf1dy84', 'no_lang_code', 1, 'https://ror.org/02hf1dy84 Laboratory Catalyst Systems (United States)'); INSERT INTO `rors` VALUES (77131, 'https://ror.org/02hgagx44', 'no_lang_code', 1, 'https://ror.org/02hgagx44 Bharat Immunologicals and Biologicals Corporation (India)'), (77132, 'https://ror.org/02hhx7493', 'hu', 1, 'https://ror.org/02hhx7493 Fejér Megyei Szent György Egyetemi Oktató Kórház'), (77133, 'https://ror.org/02hhzwx06', 'en', 1, 'https://ror.org/02hhzwx06 Police Dog Technical School 警犬技术学校'), (77134, 'https://ror.org/02hj1n344', 'no_lang_code', 1, 'https://ror.org/02hj1n344 Industriale Chimica (Italy)'), (77135, 'https://ror.org/02hj60p29', 'es', 1, 'https://ror.org/02hj60p29 Fundación Centro de Gestión Tecnológica e Informática Industrial'), (77136, 'https://ror.org/02hmsgf06', 'fr', 1, 'https://ror.org/02hmsgf06 Le Laboratoire P4 Inserm Jean Mérieux'), (77137, 'https://ror.org/02hnfcm12', 'en', 1, 'https://ror.org/02hnfcm12 International Engineering and Technology Institute'), (77138, 'https://ror.org/02hrbfc73', 'en', 1, 'https://ror.org/02hrbfc73 The Geneva Association'), (77139, 'https://ror.org/02hs0x989', 'de', 1, 'https://ror.org/02hs0x989 BDH-Klinik Hessisch Oldendorf'), (77140, 'https://ror.org/02htdbf38', 'no_lang_code', 1, 'https://ror.org/02htdbf38 Quimba Software (United States)'), (77141, 'https://ror.org/02hv08979', 'no_lang_code', 1, 'https://ror.org/02hv08979 Consentec (Germany)'), (77142, 'https://ror.org/02hw5b420', 'de', 1, 'https://ror.org/02hw5b420 Dissens – Institut für Bildung und Forschung'), (77143, 'https://ror.org/02hynf559', 'no_lang_code', 1, 'https://ror.org/02hynf559 Laser Systems & Solutions of Europe (France)'), (77144, 'https://ror.org/02hzb7188', 'en', 1, 'https://ror.org/02hzb7188 Directorate of Weed Research खरपतवार अनुसंधान निदेशालय'), (77145, 'https://ror.org/02j0at714', 'en', 1, 'https://ror.org/02j0at714 Institutul de Ftiziopneumologie „Chiril Draganiuc” Phthisiopneumology Institute "Chiril Draganiuc"'), (77146, 'https://ror.org/02j0qe342', 'en', 1, 'https://ror.org/02j0qe342 Dr. Kamakshi Memorial Hospital'), (77147, 'https://ror.org/02j2j7n26', 'no_lang_code', 1, 'https://ror.org/02j2j7n26 Schmid (Germany)'), (77148, 'https://ror.org/02j393627', 'en', 1, 'https://ror.org/02j393627 Javna agencija Republike Slovenije za spodbujanje podjetništva, internacionalizacije, tujih investicij in tehnologije SPIRIT Slovenia - Public Agency for Entrepreneurship, Internationalization, Foreign Investments and Technology'), (77149, 'https://ror.org/02j3vjm91', 'no_lang_code', 1, 'https://ror.org/02j3vjm91 Guangxi Longtan Hospital 柳州市龙潭医院'), (77150, 'https://ror.org/02j4jqr44', 'no_lang_code', 1, 'https://ror.org/02j4jqr44 Zeria Pharmaceutical (Japan) ゼリア新薬工業'), (77151, 'https://ror.org/02j4jwp55', 'en', 1, 'https://ror.org/02j4jwp55 Lung Cancer Initiative of North Carolina'), (77152, 'https://ror.org/02j6bcm26', 'no_lang_code', 1, 'https://ror.org/02j6bcm26 CoreTech (China)'), (77153, 'https://ror.org/02j6nge77', 'de', 1, 'https://ror.org/02j6nge77 Stephanus Stiftung'), (77154, 'https://ror.org/02j7j4v81', 'no_lang_code', 1, 'https://ror.org/02j7j4v81 Paulownia Research Center 国家林业和草原局泡桐研究开发中心'), (77155, 'https://ror.org/02jdwac97', 'no_lang_code', 1, 'https://ror.org/02jdwac97 H.C. Starck (Germany)'), (77156, 'https://ror.org/02jg20617', 'en', 1, 'https://ror.org/02jg20617 Veterinary Serum and Vaccine Research Institute معهد بحوث الامصال واللقاحات البيطرية'), (77157, 'https://ror.org/02jhay860', 'no_lang_code', 1, 'https://ror.org/02jhay860 Huahai Pharmaceutical (China) 浙江华海药业股份有限公司'), (77158, 'https://ror.org/02jkgv284', 'no_lang_code', 1, 'https://ror.org/02jkgv284 Weinan Central Hospital 渭南市中心医院'), (77159, 'https://ror.org/02jktx121', 'en', 1, 'https://ror.org/02jktx121 Institut Teknologi Sumatera Sumatera Institute of Technology'), (77160, 'https://ror.org/02jrz7m81', 'no_lang_code', 1, 'https://ror.org/02jrz7m81 Alber (Germany)'), (77161, 'https://ror.org/02jskg402', 'de', 1, 'https://ror.org/02jskg402 Naturalienkabinett Waldenburg'), (77162, 'https://ror.org/02jvh9y58', 'en', 1, 'https://ror.org/02jvh9y58 Moving Academy of Medicine and Biomedicine मुव्हींग अॅकॅडमी अॉफ मेडीसिन अँड बायोमेडीसिन'), (77163, 'https://ror.org/02jxepd37', 'no_lang_code', 1, 'https://ror.org/02jxepd37 Jamboxx (United States)'), (77164, 'https://ror.org/02jy4mx12', 'no_lang_code', 1, 'https://ror.org/02jy4mx12 Lead Discovery Center (Germany)'), (77165, 'https://ror.org/02jze8s95', 'no_lang_code', 1, 'https://ror.org/02jze8s95 AP2E (France)'), (77166, 'https://ror.org/02k1cbm60', 'no_lang_code', 1, 'https://ror.org/02k1cbm60 PowerHouse Proteomic Systems (United States)'), (77167, 'https://ror.org/02k1mww18', 'en', 1, 'https://ror.org/02k1mww18 Defence Avionics Research Establishment रक्षा वैमानिकी अनुसंधान स्थापना'), (77168, 'https://ror.org/02k34sh32', 'en', 1, 'https://ror.org/02k34sh32 Islamic Azad University, Jiroft Branch دانشگاه آزاد اسلامی واحد جیرفت'), (77169, 'https://ror.org/02k38kx21', 'en', 1, 'https://ror.org/02k38kx21 British Astronomical Association'), (77170, 'https://ror.org/02k3mav14', 'no_lang_code', 1, 'https://ror.org/02k3mav14 Kamdhenu University કામધેનુ યુનિવર્સિટી'), (77171, 'https://ror.org/02k75d319', 'en', 1, 'https://ror.org/02k75d319 Shandong Police College 山东警察学院'), (77172, 'https://ror.org/02k7g3c43', 'en', 1, 'https://ror.org/02k7g3c43 Taiwan Geographic Information Center 財團法人台灣地理資訊中心'), (77173, 'https://ror.org/02k7stp33', 'en', 1, 'https://ror.org/02k7stp33 National Institute for Education Štátny Pedagogický ústav'), (77174, 'https://ror.org/02k7thy32', 'no_lang_code', 1, 'https://ror.org/02k7thy32 Daikyo Seiko (Japan) 大協精工'), (77175, 'https://ror.org/02k82p965', 'no_lang_code', 1, 'https://ror.org/02k82p965 Oxford Computer Services (United States)'), (77176, 'https://ror.org/02k9trd04', 'en', 1, 'https://ror.org/02k9trd04 Pan African Institute for Development'), (77177, 'https://ror.org/02kbr4940', 'no_lang_code', 1, 'https://ror.org/02kbr4940 Progressive Expert Consulting (United States)'), (77178, 'https://ror.org/02kd0zj59', 'en', 1, 'https://ror.org/02kd0zj59 Government Ayurvedic College and Hospital চৰকাৰী আয়ুৰ্বেদিক মহাবিদ্যালয়'), (77179, 'https://ror.org/02kd9ve64', 'no_lang_code', 1, 'https://ror.org/02kd9ve64 Kerntechnische Entsorgung Karlsruhe (Germany)'), (77180, 'https://ror.org/02kgc0f98', 'en', 1, 'https://ror.org/02kgc0f98 Oyama City Museum 小山市博物館'), (77181, 'https://ror.org/02kgjkj09', 'no_lang_code', 1, 'https://ror.org/02kgjkj09 Vividion Therapeutics (United States)'), (77182, 'https://ror.org/02kh0zv54', 'no_lang_code', 1, 'https://ror.org/02kh0zv54 Akasol (Germany)'), (77183, 'https://ror.org/02knymj82', 'sk', 1, 'https://ror.org/02knymj82 Kúpele Vyšné Ružbachy'), (77184, 'https://ror.org/02kq47078', 'no_lang_code', 1, 'https://ror.org/02kq47078 USV (India)'), (77185, 'https://ror.org/02kqh4879', 'en', 1, 'https://ror.org/02kqh4879 Palmer Soil and Water Conservation District'), (77186, 'https://ror.org/02ksa0z84', 'en', 1, 'https://ror.org/02ksa0z84 International Centre for Interdisciplinary Science and Education Trung tâm Quốc tế Khoa học và Giáo dục liên ngành'), (77187, 'https://ror.org/02kssw685', 'no_lang_code', 1, 'https://ror.org/02kssw685 Olatec (United States)'), (77188, 'https://ror.org/02ksw7h30', 'no_lang_code', 1, 'https://ror.org/02ksw7h30 ThermoTek (United States)'), (77189, 'https://ror.org/02ksyke18', 'no_lang_code', 1, 'https://ror.org/02ksyke18 Laserline (Germany)'), (77190, 'https://ror.org/02kt1pm02', 'sk', 1, 'https://ror.org/02kt1pm02 Štátne Lesy Tatranského Národního Parku'), (77191, 'https://ror.org/02kt6vs55', 'pt', 1, 'https://ror.org/02kt6vs55 Unichristus'), (77192, 'https://ror.org/02ktnrv41', 'de', 1, 'https://ror.org/02ktnrv41 Bundeskunsthalle'), (77193, 'https://ror.org/02kx7v033', 'en', 1, 'https://ror.org/02kx7v033 ALAI Czech Republic ALAI Česká republika'), (77194, 'https://ror.org/02kxdc598', 'no_lang_code', 1, 'https://ror.org/02kxdc598 Forschungszentrum für Verbrennungsmotoren und Thermodynamik Rostock (Germany)'), (77195, 'https://ror.org/02kxycv91', 'no_lang_code', 1, 'https://ror.org/02kxycv91 NonInvasive Technologies (United States)'), (77196, 'https://ror.org/02kyd6w77', 'en', 1, 'https://ror.org/02kyd6w77 Izumi Biosciences'), (77197, 'https://ror.org/02m0dvq27', 'no_lang_code', 1, 'https://ror.org/02m0dvq27 Onai (United States)'), (77198, 'https://ror.org/02m1qaq93', 'no_lang_code', 1, 'https://ror.org/02m1qaq93 Rotam (China) 轮作作物科学'), (77199, 'https://ror.org/02m2h7991', 'no_lang_code', 1, 'https://ror.org/02m2h7991 Zhejiang Lab 之江实验室'), (77200, 'https://ror.org/02m3s6y46', 'en', 1, 'https://ror.org/02m3s6y46 Explore York'), (77201, 'https://ror.org/02ma46909', 'en', 1, 'https://ror.org/02ma46909 WA Country Health Service'), (77202, 'https://ror.org/02mb1sp44', 'no_lang_code', 1, 'https://ror.org/02mb1sp44 Royal Caliber (United States)'), (77203, 'https://ror.org/02mbz3q09', 'no_lang_code', 1, 'https://ror.org/02mbz3q09 Kaman (United States)'), (77204, 'https://ror.org/02mc5ry07', 'en', 1, 'https://ror.org/02mc5ry07 Battle Creek VA Medical Center'), (77205, 'https://ror.org/02mcfj023', 'no_lang_code', 1, 'https://ror.org/02mcfj023 Cendres+Métaux (Switzerland)'), (77206, 'https://ror.org/02mcgxe24', 'en', 1, 'https://ror.org/02mcgxe24 Toyama Prefectural Agricultural, Forestry & Fisheries Research Center 富山県農林水産総合技術センター'), (77207, 'https://ror.org/02mcz6a08', 'no_lang_code', 1, 'https://ror.org/02mcz6a08 Wölfel (Germany)'), (77208, 'https://ror.org/02me45833', 'no_lang_code', 1, 'https://ror.org/02me45833 Plastal (Sweden)'), (77209, 'https://ror.org/02mffv097', 'en', 1, 'https://ror.org/02mffv097 Sepsis Trust NZ'), (77210, 'https://ror.org/02mj3be11', 'en', 1, 'https://ror.org/02mj3be11 Harbin Foresty Machinery Institute 国家林业局哈尔滨林业机械研究所'), (77211, 'https://ror.org/02mjdk963', 'no_lang_code', 1, 'https://ror.org/02mjdk963 Axelgaard Manufacturing (United States)'), (77212, 'https://ror.org/02mjrxh13', 'no_lang_code', 1, 'https://ror.org/02mjrxh13 Shenzhen Beauty Star (China) 深圳市力合科创股份有限公司'), (77213, 'https://ror.org/02mkj1868', 'en', 1, 'https://ror.org/02mkj1868 New Hampshire Space Grant Consortium'), (77214, 'https://ror.org/02mm76478', 'en', 1, 'https://ror.org/02mm76478 Bam University of Medical Sciences دانشگاه علوم پزشکی بم'), (77215, 'https://ror.org/02mnkyy74', 'no_lang_code', 1, 'https://ror.org/02mnkyy74 Ozark Integrated Circuits (United States)'), (77216, 'https://ror.org/02mnnbz19', 'no_lang_code', 1, 'https://ror.org/02mnnbz19 LeMaitre Vascular (United States)'), (77217, 'https://ror.org/02mnrb887', 'no_lang_code', 1, 'https://ror.org/02mnrb887 Cafe Bazaar (Iran) کافه بازار'), (77218, 'https://ror.org/02mpb3323', 'no_lang_code', 1, 'https://ror.org/02mpb3323 Tianjin Zhujin Technology Development (China) 天津铸金科技开发'), (77219, 'https://ror.org/02mq55t12', 'en', 1, 'https://ror.org/02mq55t12 Rhein-Ruhr Institut für angewandte Systeminnovation Rhine-Ruhr Institute for Applied Systeminnovation'), (77220, 'https://ror.org/02mqsna37', 'en', 1, 'https://ror.org/02mqsna37 Wuchang University of Technology 武昌理工学院'), (77221, 'https://ror.org/02mr1hg77', 'no_lang_code', 1, 'https://ror.org/02mr1hg77 Salts Healthcare (United Kingdom)'), (77222, 'https://ror.org/02mr3av04', 'en', 1, 'https://ror.org/02mr3av04 Central Bank of Cyprus Kıbrıs Merkez Bankası Kεντρική Τράπεζα της Κύπρου'), (77223, 'https://ror.org/02ms7ap07', 'en', 1, 'https://ror.org/02ms7ap07 Agronomical Institute of Campinas Instituto Agronômico de Campinas'), (77224, 'https://ror.org/02msnw927', 'id', 1, 'https://ror.org/02msnw927 Universitas Ibrahimy'), (77225, 'https://ror.org/02mswf653', 'no_lang_code', 1, 'https://ror.org/02mswf653 Milestone Scientific (United States)'), (77226, 'https://ror.org/02mwnke68', 'de', 1, 'https://ror.org/02mwnke68 Brüderkrankenhaus St. Josef Paderborn'), (77227, 'https://ror.org/02my5pn34', 'no_lang_code', 1, 'https://ror.org/02my5pn34 Renuvix (United States)'), (77228, 'https://ror.org/02myr1w18', 'no_lang_code', 1, 'https://ror.org/02myr1w18 Pliant (United States)'), (77229, 'https://ror.org/02mz0pc52', 'no_lang_code', 1, 'https://ror.org/02mz0pc52 Genex Systems (United States)'), (77230, 'https://ror.org/02n0gpn09', 'no_lang_code', 1, 'https://ror.org/02n0gpn09 Kronos Bios (United Kingdom)'), (77231, 'https://ror.org/02n2g5x76', 'en', 1, 'https://ror.org/02n2g5x76 Meteorological Bureau of Shenzhen Municipality 深圳市气象局'), (77232, 'https://ror.org/02n2ng334', 'no_lang_code', 1, 'https://ror.org/02n2ng334 Emisphere Technologies (United States)'), (77233, 'https://ror.org/02n2sdp05', 'no_lang_code', 1, 'https://ror.org/02n2sdp05 Euro Institute for Information and Technology Transfer in Environmental Protection (Germany)'), (77234, 'https://ror.org/02n5k9x47', 'no_lang_code', 1, 'https://ror.org/02n5k9x47 Guangzhou Jingpai Technology (China) 广州景派科技有限公司'), (77235, 'https://ror.org/02n851422', 'no_lang_code', 1, 'https://ror.org/02n851422 Innovationszentrum für Mobilität und Gesellschaftlichen Wandel (Germany)'), (77236, 'https://ror.org/02n94hw85', 'en', 1, 'https://ror.org/02n94hw85 Institut für Enterprise Systems Institute for Enterprise Systems'), (77237, 'https://ror.org/02n9as466', 'en', 1, 'https://ror.org/02n9as466 Gansu Provincial Maternal and Child Health Hospital 甘肃省妇幼保健院'), (77238, 'https://ror.org/02n9d1732', 'en', 1, 'https://ror.org/02n9d1732 Max Planck University of Twente Center for Complex Fluid Dynamics'), (77239, 'https://ror.org/02na2p746', 'en', 1, 'https://ror.org/02na2p746 Navy League of the United States'), (77240, 'https://ror.org/02nanfc50', 'en', 1, 'https://ror.org/02nanfc50 Michigan Works! Macomb/St. Clair'), (77241, 'https://ror.org/02nb4b562', 'no_lang_code', 1, 'https://ror.org/02nb4b562 Recordati (Ireland)'), (77242, 'https://ror.org/02nbgxg43', 'en', 1, 'https://ror.org/02nbgxg43 Center for Micro-BioRobotics'), (77243, 'https://ror.org/02nd16181', 'no_lang_code', 1, 'https://ror.org/02nd16181 Princeton Technology Advisors (United States)'), (77244, 'https://ror.org/02nf4c779', 'no_lang_code', 1, 'https://ror.org/02nf4c779 Novo Informatics (India) नोवो सूचना विज्ञान प्रा। लिमिटेड'), (77245, 'https://ror.org/02nfc4q85', 'no_lang_code', 1, 'https://ror.org/02nfc4q85 Kunststoff Institut Südwest (Germany)'), (77246, 'https://ror.org/02nfmpb07', 'no_lang_code', 1, 'https://ror.org/02nfmpb07 ZKxKZ (United States)'), (77247, 'https://ror.org/02ngq1848', 'en', 1, 'https://ror.org/02ngq1848 DMI-St. John the Baptist University'), (77248, 'https://ror.org/02nj4qk22', 'en', 1, 'https://ror.org/02nj4qk22 Chinese Soil and Water Conservation Society 中国水土保持学会'), (77249, 'https://ror.org/02nkjx490', 'en', 1, 'https://ror.org/02nkjx490 PredictImmune'), (77250, 'https://ror.org/02nmjzp92', 'de', 1, 'https://ror.org/02nmjzp92 Institut für Wasserwirtschaft Siedlungswasserbau und Ökologie'), (77251, 'https://ror.org/02nmke270', 'no_lang_code', 1, 'https://ror.org/02nmke270 ProtonVDA (United States)'), (77252, 'https://ror.org/02nmvgz47', 'en', 1, 'https://ror.org/02nmvgz47 Research Institute of Forestry 中国林业科学研究院林业研究所'), (77253, 'https://ror.org/02nnezj30', 'no_lang_code', 1, 'https://ror.org/02nnezj30 Tidi (United States)'), (77254, 'https://ror.org/02ns3vy48', 'en', 1, 'https://ror.org/02ns3vy48 Forest Survey of India भारतीय वन सर्वेक्षण'), (77255, 'https://ror.org/02nt9wa64', 'no_lang_code', 1, 'https://ror.org/02nt9wa64 a.i. solutions (United States)'), (77256, 'https://ror.org/02ntsjr39', 'no_lang_code', 1, 'https://ror.org/02ntsjr39 Prognos (Switzerland)'), (77257, 'https://ror.org/02nv4cj15', 'no_lang_code', 1, 'https://ror.org/02nv4cj15 JSC R&D Center "Applied Logistics" (Russia) Прикладная логистика'), (77258, 'https://ror.org/02nw6hx08', 'no_lang_code', 1, 'https://ror.org/02nw6hx08 Janssen (United Kingdom)'), (77259, 'https://ror.org/02nw77796', 'no_lang_code', 1, 'https://ror.org/02nw77796 Sest (United States)'), (77260, 'https://ror.org/02nwwqk69', 'no_lang_code', 1, 'https://ror.org/02nwwqk69 Butamax (United States)'), (77261, 'https://ror.org/02nx9fz53', 'no_lang_code', 1, 'https://ror.org/02nx9fz53 Tibbar Plasma Technologies (United States)'), (77262, 'https://ror.org/02nymy567', 'no_lang_code', 1, 'https://ror.org/02nymy567 Sapporo Minami Hospital 札幌南病院'), (77263, 'https://ror.org/02nzd5081', 'en', 1, 'https://ror.org/02nzd5081 Arish University جامعة العريش'), (77264, 'https://ror.org/02nzrsp96', 'sk', 1, 'https://ror.org/02nzrsp96 Štátny Inštitút Odborného Vzdelávania'), (77265, 'https://ror.org/02nzxcb82', 'en', 1, 'https://ror.org/02nzxcb82 Center for Translational Neurophysiology of Speech and Communication Centro di Neurofisiologia Traslazionale del Linguaggio e della Comunicazione'), (77266, 'https://ror.org/02p1tz049', 'no_lang_code', 1, 'https://ror.org/02p1tz049 China National Chemical Information Centre (China) 中国化工信息中心'), (77267, 'https://ror.org/02p1vs657', 'no_lang_code', 1, 'https://ror.org/02p1vs657 Multiverse Computing (Spain)'), (77268, 'https://ror.org/02p5jez93', 'no_lang_code', 1, 'https://ror.org/02p5jez93 Resolute Marine Energy (United States)'), (77269, 'https://ror.org/02p6a3b37', 'en', 1, 'https://ror.org/02p6a3b37 Creative Destruction Lab'), (77270, 'https://ror.org/02p6n7f90', 'no_lang_code', 1, 'https://ror.org/02p6n7f90 DIAL (Germany)'), (77271, 'https://ror.org/02p6pn278', 'en', 1, 'https://ror.org/02p6pn278 LEAP Science and Maths Schools'), (77272, 'https://ror.org/02p6vf335', 'no_lang_code', 1, 'https://ror.org/02p6vf335 Frito-Lay (Switzerland)'), (77273, 'https://ror.org/02p752c24', 'no_lang_code', 1, 'https://ror.org/02p752c24 Pieris Pharmaceuticals (United States)'), (77274, 'https://ror.org/02paxq720', 'no_lang_code', 1, 'https://ror.org/02paxq720 Midmark (United States)'), (77275, 'https://ror.org/02pc86x52', 'de', 1, 'https://ror.org/02pc86x52 Leipziger Institut für Angewandte Weiterbildungsforschung'), (77276, 'https://ror.org/02pd8fm45', 'no_lang_code', 1, 'https://ror.org/02pd8fm45 BET (Germany)'), (77277, 'https://ror.org/02pdkr951', 'en', 1, 'https://ror.org/02pdkr951 The Tokugawa Institute for the History of Forestry 公益財団法人徳川黎明会'), (77278, 'https://ror.org/02pectn41', 'no_lang_code', 1, 'https://ror.org/02pectn41 RetiVue (United States)'), (77279, 'https://ror.org/02pf5x519', 'de', 1, 'https://ror.org/02pf5x519 Institut der Wirtschaft Thüringens'), (77280, 'https://ror.org/02pf7bx90', 'no_lang_code', 1, 'https://ror.org/02pf7bx90 Arrow International (United States)'), (77281, 'https://ror.org/02pfwxe49', 'en', 1, 'https://ror.org/02pfwxe49 Agricultural Research Service - Southeast Area'), (77282, 'https://ror.org/02pgv1b52', 'no_lang_code', 1, 'https://ror.org/02pgv1b52 BGT Bischoff Glastechnik (Germany)'), (77283, 'https://ror.org/02phdp391', 'en', 1, 'https://ror.org/02phdp391 California Fire Science Consortium'), (77284, 'https://ror.org/02pjjh503', 'no_lang_code', 1, 'https://ror.org/02pjjh503 Euphrates Vascular (United States)'), (77285, 'https://ror.org/02pn8ev67', 'no_lang_code', 1, 'https://ror.org/02pn8ev67 AGC Interpane (Germany)'), (77286, 'https://ror.org/02pnmfn82', 'en', 1, 'https://ror.org/02pnmfn82 Kanagawa Archeology Foundation かながわ考古学財団'), (77287, 'https://ror.org/02pqja087', 'no_lang_code', 1, 'https://ror.org/02pqja087 Engeneic (Australia)'), (77288, 'https://ror.org/02prk5459', 'en', 1, 'https://ror.org/02prk5459 Saga Prefectural Museum 佐賀県立博物館'), (77289, 'https://ror.org/02ps3td80', 'no_lang_code', 1, 'https://ror.org/02ps3td80 Testco (United States)'), (77290, 'https://ror.org/02psd3416', 'en', 1, 'https://ror.org/02psd3416 Islamic Azad University, Nowshahr Branch دانشگاه آزاد اسلامی واحد چالوس'), (77291, 'https://ror.org/02pspay39', 'no_lang_code', 1, 'https://ror.org/02pspay39 Eaton (Netherlands)'), (77292, 'https://ror.org/02pth2p46', 'no_lang_code', 1, 'https://ror.org/02pth2p46 Radiometrics (United States)'), (77293, 'https://ror.org/02pthay30', 'en', 1, 'https://ror.org/02pthay30 Wuxi Ninth People''s Hospital 无锡市第九人民医院'), (77294, 'https://ror.org/02ptvta38', 'no_lang_code', 1, 'https://ror.org/02ptvta38 Nexstim (Finland)'), (77295, 'https://ror.org/02pvg9820', 'no_lang_code', 1, 'https://ror.org/02pvg9820 StackFrame (United States)'), (77296, 'https://ror.org/02pvp9c06', 'en', 1, 'https://ror.org/02pvp9c06 Indian Institute of Millets Research, भारतीय कदन्न अनुसंधान संस्थान'), (77297, 'https://ror.org/02pxntn72', 'en', 1, 'https://ror.org/02pxntn72 Hebei Food Inspection and Research Institute 河北省食品检验研究院'), (77298, 'https://ror.org/02pyb2524', 'no_lang_code', 1, 'https://ror.org/02pyb2524 Poly Medicure (India)'), (77299, 'https://ror.org/02q0kch71', 'no_lang_code', 1, 'https://ror.org/02q0kch71 GenCat (United Kingdom)'), (77300, 'https://ror.org/02q1v5813', 'en', 1, 'https://ror.org/02q1v5813 State Enterprise "L.I. Medved''s Research Center of Preventive Toxicology, Food and Chemical Safety" of the Ministry of Health of Ukraine Науковий центр превентивної токсикології, харчової та хімічної безпеки імені академіка Л.І. Медведя Міністерства охорони здоров''я України'), (77301, 'https://ror.org/02q2v3574', 'no_lang_code', 1, 'https://ror.org/02q2v3574 Research Applications (United States)'), (77302, 'https://ror.org/02q4zda14', 'en', 1, 'https://ror.org/02q4zda14 Derby College'), (77303, 'https://ror.org/02q6q3y87', 'fr', 1, 'https://ror.org/02q6q3y87 CHR Verviers'), (77304, 'https://ror.org/02q86ra23', 'en', 1, 'https://ror.org/02q86ra23 Administrative Council for Economic Defense Conselho Administrativo de Defesa Econômica'), (77305, 'https://ror.org/02q90qf63', 'no_lang_code', 1, 'https://ror.org/02q90qf63 Molecular Templates (United States)'), (77306, 'https://ror.org/02q9rgg45', 'no_lang_code', 1, 'https://ror.org/02q9rgg45 Widetronix (United States)'), (77307, 'https://ror.org/02qatsn60', 'en', 1, 'https://ror.org/02qatsn60 Itami City Museum 伊丹市立博物館'), (77308, 'https://ror.org/02qb5y674', 'no_lang_code', 1, 'https://ror.org/02qb5y674 SilcsBio (United States)'), (77309, 'https://ror.org/02qbfgp41', 'en', 1, 'https://ror.org/02qbfgp41 MOA Museum of Art MOA美術館'), (77310, 'https://ror.org/02qbgx346', 'no_lang_code', 1, 'https://ror.org/02qbgx346 Schwan-Stabilo (Germany)'), (77311, 'https://ror.org/02qchbs48', 'de', 1, 'https://ror.org/02qchbs48 Psychologische Hochschule Berlin'), (77312, 'https://ror.org/02qdc7q41', 'en', 1, 'https://ror.org/02qdc7q41 Yunnan Center for Disease Control And Prevention 云南省疾病预防控制中心'), (77313, 'https://ror.org/02qdhmt11', 'es', 1, 'https://ror.org/02qdhmt11 Clínica Santa María'), (77314, 'https://ror.org/02qexn916', 'en', 1, 'https://ror.org/02qexn916 Fondazione Banca degli Occhi del Veneto Onlus Veneto Eye Bank Foundation'), (77315, 'https://ror.org/02qfef581', 'en', 1, 'https://ror.org/02qfef581 Nordic Optical Telescope Scientific Association'), (77316, 'https://ror.org/02qfkfg14', 'no_lang_code', 1, 'https://ror.org/02qfkfg14 Cresset (United Kingdom)'), (77317, 'https://ror.org/02qft9w02', 'en', 1, 'https://ror.org/02qft9w02 Taiwan Electrical and Electronic Manufacturers’ Association 台灣區電機電子工業同業公會'), (77318, 'https://ror.org/02qh6py59', 'en', 1, 'https://ror.org/02qh6py59 Advocata Institute'), (77319, 'https://ror.org/02qhvm916', 'en', 1, 'https://ror.org/02qhvm916 Corporación de Fomento de la Producción de Chile Production Development Corporation'), (77320, 'https://ror.org/02qjwrc97', 'no_lang_code', 1, 'https://ror.org/02qjwrc97 Northrop Grumman (United Kingdom)'), (77321, 'https://ror.org/02qk0qj12', 'no_lang_code', 1, 'https://ror.org/02qk0qj12 Biedermann Motech (Germany)'), (77322, 'https://ror.org/02qmk8t53', 'en', 1, 'https://ror.org/02qmk8t53 Mirai Hospital 会 みらい病院'), (77323, 'https://ror.org/02qn3rx87', 'en', 1, 'https://ror.org/02qn3rx87 Doha Centre for Media Freedom مركز الدوحة لحرية الإعلام'), (77324, 'https://ror.org/02qnx8e75', 'en', 1, 'https://ror.org/02qnx8e75 Institute of Marine Engineering Istituto di Ingegneria del Mare'), (77325, 'https://ror.org/02qp1kv78', 'en', 1, 'https://ror.org/02qp1kv78 Cambridge Hands-On Science'), (77326, 'https://ror.org/02qpxnp21', 'no_lang_code', 1, 'https://ror.org/02qpxnp21 Fontem Ventures (Netherlands)'), (77327, 'https://ror.org/02qq0z290', 'no_lang_code', 1, 'https://ror.org/02qq0z290 Polarix (United States)'), (77328, 'https://ror.org/02qrpm067', 'no_lang_code', 1, 'https://ror.org/02qrpm067 Topcon (United Kingdom)'), (77329, 'https://ror.org/02qt0fz52', 'no_lang_code', 1, 'https://ror.org/02qt0fz52 Landeswasserversorgung (Germany)'), (77330, 'https://ror.org/02qwdn481', 'no_lang_code', 1, 'https://ror.org/02qwdn481 Vivor (United States)'), (77331, 'https://ror.org/02qwqem55', 'no_lang_code', 1, 'https://ror.org/02qwqem55 Hanazono Hospital 花園病院'), (77332, 'https://ror.org/02qyv4b17', 'no_lang_code', 1, 'https://ror.org/02qyv4b17 ProCom (Germany)'), (77333, 'https://ror.org/02qzz9528', 'no_lang_code', 1, 'https://ror.org/02qzz9528 BNP Paribas (China)'), (77334, 'https://ror.org/02r30tp91', 'no_lang_code', 1, 'https://ror.org/02r30tp91 Thermedical (United States)'), (77335, 'https://ror.org/02r5q4n43', 'de', 1, 'https://ror.org/02r5q4n43 Institut für Finanzdienstleistungen'), (77336, 'https://ror.org/02r5t1b69', 'no_lang_code', 1, 'https://ror.org/02r5t1b69 X-Ability (Japan)'), (77337, 'https://ror.org/02r6b5k11', 'no_lang_code', 1, 'https://ror.org/02r6b5k11 Sustainum Institut (Germany)'), (77338, 'https://ror.org/02r6j5z05', 'no_lang_code', 1, 'https://ror.org/02r6j5z05 Bruin Biometrics (United States)'), (77339, 'https://ror.org/02r6vby11', 'en', 1, 'https://ror.org/02r6vby11 Beijing Research and Design Institute of Rubber Industry 北京橡胶工业研究设计院'), (77340, 'https://ror.org/02r8vvy38', 'no_lang_code', 1, 'https://ror.org/02r8vvy38 ProLynx (United States)'), (77341, 'https://ror.org/02rcsxq19', 'no_lang_code', 1, 'https://ror.org/02rcsxq19 Eneos (Japan) エネオス'), (77342, 'https://ror.org/02rdd6b90', 'no_lang_code', 1, 'https://ror.org/02rdd6b90 Johner Institut (Germany)'), (77343, 'https://ror.org/02rdrw497', 'no_lang_code', 1, 'https://ror.org/02rdrw497 Ebert Ingenieure (Germany)'), (77344, 'https://ror.org/02rgxac86', 'no_lang_code', 1, 'https://ror.org/02rgxac86 Rayonix (United States)'), (77345, 'https://ror.org/02rj0fp17', 'en', 1, 'https://ror.org/02rj0fp17 Pollinator Partnership'), (77346, 'https://ror.org/02rj97169', 'no_lang_code', 1, 'https://ror.org/02rj97169 Drees & Sommer (Germany)'), (77347, 'https://ror.org/02rjcc270', 'pt', 1, 'https://ror.org/02rjcc270 Australis Environmental Research and Monitoring Institute Instituto Australis, Instituto Australis de Pesquisa e Monitoramento Ambiental'), (77348, 'https://ror.org/02rkcky47', 'en', 1, 'https://ror.org/02rkcky47 Henan Provincial Institute of Land and Resources Sciences 河南省国土资源科学研究院'), (77349, 'https://ror.org/02rmvby88', 'de', 1, 'https://ror.org/02rmvby88 Institut für Angewandte Trainingswissenschaft'), (77350, 'https://ror.org/02rnmms39', 'no_lang_code', 1, 'https://ror.org/02rnmms39 Phelps2020 (United States)'), (77351, 'https://ror.org/02rpzt041', 'en', 1, 'https://ror.org/02rpzt041 Scientific Analysis Group'), (77352, 'https://ror.org/02rs64x70', 'no_lang_code', 1, 'https://ror.org/02rs64x70 Ingenieurgesellschaft für Zuverlässigkeit und Prozessmodellierung (Germany)'), (77353, 'https://ror.org/02rt9z237', 'no_lang_code', 1, 'https://ror.org/02rt9z237 Hindawi (United Kingdom)'), (77354, 'https://ror.org/02rtpt551', 'no_lang_code', 1, 'https://ror.org/02rtpt551 Boehringer Ingelheim (Switzerland)'), (77355, 'https://ror.org/02rv94a40', 'no_lang_code', 1, 'https://ror.org/02rv94a40 Shal Technologies (United States)'), (77356, 'https://ror.org/02rvhvg10', 'no_lang_code', 1, 'https://ror.org/02rvhvg10 Ressler & Associates (United States)'), (77357, 'https://ror.org/02s2g4x03', 'no_lang_code', 1, 'https://ror.org/02s2g4x03 OVM/ECH Consulting Engineers (Germany)'), (77358, 'https://ror.org/02s2qpg90', 'en', 1, 'https://ror.org/02s2qpg90 Institute of Astronomy and National Astronomical Observatory'), (77359, 'https://ror.org/02s4vwe47', 'no_lang_code', 1, 'https://ror.org/02s4vwe47 CINOGY Technologies (Germany)'), (77360, 'https://ror.org/02s6c9b53', 'en', 1, 'https://ror.org/02s6c9b53 Israeli Association for the Study of Religions האגודה הישראלית לחקר דתות'), (77361, 'https://ror.org/02s79t061', 'no_lang_code', 1, 'https://ror.org/02s79t061 Odyssey Space Research (United States)'), (77362, 'https://ror.org/02s7ck732', 'no_lang_code', 1, 'https://ror.org/02s7ck732 Wuhan Hankou Hospital 武汉市汉口医院'), (77363, 'https://ror.org/02s8aez42', 'no_lang_code', 1, 'https://ror.org/02s8aez42 Amann Girrbach (Austria)'), (77364, 'https://ror.org/02s8g2315', 'no_lang_code', 1, 'https://ror.org/02s8g2315 Photonic Associates (United States)'), (77365, 'https://ror.org/02sb4r018', 'en', 1, 'https://ror.org/02sb4r018 Social Service Sericulture Project Trust'), (77366, 'https://ror.org/02sbh2p55', 'no_lang_code', 1, 'https://ror.org/02sbh2p55 Nordex (Germany)'), (77367, 'https://ror.org/02scwd732', 'no_lang_code', 1, 'https://ror.org/02scwd732 Squadron Capital (China)'), (77368, 'https://ror.org/02sdxcs63', 'en', 1, 'https://ror.org/02sdxcs63 Flemish Institute for Archives Vlaams Instituut voor Archivering'), (77369, 'https://ror.org/02se42q89', 'no_lang_code', 1, 'https://ror.org/02se42q89 Kraton (United States)'), (77370, 'https://ror.org/02set1z89', 'no_lang_code', 1, 'https://ror.org/02set1z89 Sarda (United States)'), (77371, 'https://ror.org/02sfaqg86', 'en', 1, 'https://ror.org/02sfaqg86 Defence Scientific Information & Documentation Centre'), (77372, 'https://ror.org/02sfqqf20', 'no_lang_code', 1, 'https://ror.org/02sfqqf20 ACP Japan (Japan) 日本エーシーピー'), (77373, 'https://ror.org/02sgk6s93', 'en', 1, 'https://ror.org/02sgk6s93 Nagano University of Health and Medicine 長野保健医療大学'), (77374, 'https://ror.org/02sh2va57', 'no_lang_code', 1, 'https://ror.org/02sh2va57 SpeechVive (United States)'), (77375, 'https://ror.org/02sjajj43', 'no_lang_code', 1, 'https://ror.org/02sjajj43 IGM Group (Greece)'), (77376, 'https://ror.org/02sjdcn27', 'no_lang_code', 1, 'https://ror.org/02sjdcn27 Huanggang Central Hospital'), (77377, 'https://ror.org/02sjef513', 'no_lang_code', 1, 'https://ror.org/02sjef513 ScienceTomorrow (United States)'), (77378, 'https://ror.org/02sjhcw37', 'no_lang_code', 1, 'https://ror.org/02sjhcw37 Accent Therapeutics (United States)'), (77379, 'https://ror.org/02sjprm39', 'en', 1, 'https://ror.org/02sjprm39 Fuzhou Maternity and Child Health Care Hospital 福州市妇幼保健院'), (77380, 'https://ror.org/02snjxm78', 'no_lang_code', 1, 'https://ror.org/02snjxm78 Jabil (United States)'), (77381, 'https://ror.org/02sp9w679', 'sk', 1, 'https://ror.org/02sp9w679 Trojsten'), (77382, 'https://ror.org/02sqk3z62', 'en', 1, 'https://ror.org/02sqk3z62 Changsha Normal University 长沙师范学院'), (77383, 'https://ror.org/02sqq3c53', 'no_lang_code', 1, 'https://ror.org/02sqq3c53 Next Energy Technologies (United States)'), (77384, 'https://ror.org/02srfgm34', 'en', 1, 'https://ror.org/02srfgm34 Gibraltar Health Authority'), (77385, 'https://ror.org/02srgbx34', 'en', 1, 'https://ror.org/02srgbx34 Chilika Development Authority'), (77386, 'https://ror.org/02srtzw86', 'fr', 1, 'https://ror.org/02srtzw86 Centre Hospitalier Intercommunal Castres-Mazamet'), (77387, 'https://ror.org/02sw2gr16', 'no_lang_code', 1, 'https://ror.org/02sw2gr16 Spiber (Japan)'), (77388, 'https://ror.org/02sykmz69', 'en', 1, 'https://ror.org/02sykmz69 Czech-Moravian Guarantee and Development Bank'), (77389, 'https://ror.org/02szjr188', 'en', 1, 'https://ror.org/02szjr188 Naval Science & Technological Laboratory'), (77390, 'https://ror.org/02t061029', 'no_lang_code', 1, 'https://ror.org/02t061029 Fitbase'), (77391, 'https://ror.org/02t1hg644', 'no_lang_code', 1, 'https://ror.org/02t1hg644 Dantec Dynamics (Denmark)'), (77392, 'https://ror.org/02t1mbc20', 'no_lang_code', 1, 'https://ror.org/02t1mbc20 Nocturnal Product Development (United States)'), (77393, 'https://ror.org/02t268r72', 'en', 1, 'https://ror.org/02t268r72 People''s Hospital of Shiyan 十堰市人民医院'), (77394, 'https://ror.org/02t4kbq20', 'no_lang_code', 1, 'https://ror.org/02t4kbq20 Fagor Ederlan (Slovakia)'), (77395, 'https://ror.org/02t7ezd72', 'de', 1, 'https://ror.org/02t7ezd72 Kulturpolitische Gesellschaft'), (77396, 'https://ror.org/02ta43q50', 'no_lang_code', 1, 'https://ror.org/02ta43q50 Jülicher Entsorgungsgesellschaft für Nuklearanlagen (Germany)'), (77397, 'https://ror.org/02taynh45', 'no_lang_code', 1, 'https://ror.org/02taynh45 Systémy Priemyselnej Informatiky (Slovakia)'), (77398, 'https://ror.org/02tbgn381', 'en', 1, 'https://ror.org/02tbgn381 Microwave Tube Research & Development Centre'), (77399, 'https://ror.org/02tbjbv63', 'no_lang_code', 1, 'https://ror.org/02tbjbv63 Sino Biological (China)'), (77400, 'https://ror.org/02tcss727', 'no_lang_code', 1, 'https://ror.org/02tcss727 Oryn Therapeutics (United States)'), (77401, 'https://ror.org/02tdxsk76', 'en', 1, 'https://ror.org/02tdxsk76 Fidelco Guide Dog Foundation'), (77402, 'https://ror.org/02tdz2z81', 'en', 1, 'https://ror.org/02tdz2z81 International Investment Bank Nemzetközi Beruházási Bank'), (77403, 'https://ror.org/02te38114', 'no_lang_code', 1, 'https://ror.org/02te38114 Global Communication Semiconductors (United States)'), (77404, 'https://ror.org/02teaer78', 'no_lang_code', 1, 'https://ror.org/02teaer78 BME Bergmann (Germany)'), (77405, 'https://ror.org/02tejbs37', 'no_lang_code', 1, 'https://ror.org/02tejbs37 Plureon (United States)'), (77406, 'https://ror.org/02tezkz55', 'no_lang_code', 1, 'https://ror.org/02tezkz55 Nephros (United States)'), (77407, 'https://ror.org/02tk0sb78', 'no_lang_code', 1, 'https://ror.org/02tk0sb78 Josef Meissner (Germany)'), (77408, 'https://ror.org/02tk5d259', 'no_lang_code', 1, 'https://ror.org/02tk5d259 Arotop Food & Environmet (Germany)'), (77409, 'https://ror.org/02tkd3t39', 'de', 1, 'https://ror.org/02tkd3t39 WEK Tierarzt'), (77410, 'https://ror.org/02tm1xq35', 'en', 1, 'https://ror.org/02tm1xq35 FATA University فاٹا یونیورسٹی فاټا پوهنتون'), (77411, 'https://ror.org/02tmeqq57', 'id', 1, 'https://ror.org/02tmeqq57 Universitas Internasional Semen Indonesia'), (77412, 'https://ror.org/02tnr6p29', 'no_lang_code', 1, 'https://ror.org/02tnr6p29 Roche (Tunisia)'), (77413, 'https://ror.org/02tt19214', 'de', 1, 'https://ror.org/02tt19214 Steyler Mission'), (77414, 'https://ror.org/02ttmc049', 'no_lang_code', 1, 'https://ror.org/02ttmc049 Accurate Solar Power (United States)'), (77415, 'https://ror.org/02twaqp73', 'no_lang_code', 1, 'https://ror.org/02twaqp73 Berg (United States)'), (77416, 'https://ror.org/02txken21', 'no_lang_code', 1, 'https://ror.org/02txken21 Tesla Laboratories (United States)'), (77417, 'https://ror.org/02tya7134', 'no_lang_code', 1, 'https://ror.org/02tya7134 Touchstone (China)'), (77418, 'https://ror.org/02tygfm80', 'en', 1, 'https://ror.org/02tygfm80 Institute of Policy Analysis and Research - Rwanda'), (77419, 'https://ror.org/02tzsc576', 'no_lang_code', 1, 'https://ror.org/02tzsc576 Translate Bio (United States)'), (77420, 'https://ror.org/02tzvyq07', 'no_lang_code', 1, 'https://ror.org/02tzvyq07 Perricone MD (United States)'), (77421, 'https://ror.org/02v07kh10', 'en', 1, 'https://ror.org/02v07kh10 Federal Polytechnic Ede'), (77422, 'https://ror.org/02v08db54', 'no_lang_code', 1, 'https://ror.org/02v08db54 Constellium (United Kingdom)'), (77423, 'https://ror.org/02v21h460', 'no_lang_code', 1, 'https://ror.org/02v21h460 Finning (United Kingdom)'), (77424, 'https://ror.org/02v2egw15', 'de', 1, 'https://ror.org/02v2egw15 Diakonie Deutschland'), (77425, 'https://ror.org/02v388x60', 'en', 1, 'https://ror.org/02v388x60 Cheshire Image Bank'), (77426, 'https://ror.org/02v4gph32', 'de', 1, 'https://ror.org/02v4gph32 VKTA'), (77427, 'https://ror.org/02v5ekm10', 'no_lang_code', 1, 'https://ror.org/02v5ekm10 Probiotical (Italy)'), (77428, 'https://ror.org/02v8v9r81', 'no_lang_code', 1, 'https://ror.org/02v8v9r81 Ichnos Sciences (United States)'), (77429, 'https://ror.org/02v93s037', 'no_lang_code', 1, 'https://ror.org/02v93s037 Pressure Profile Systems (United States)'), (77430, 'https://ror.org/02vact186', 'no_lang_code', 1, 'https://ror.org/02vact186 Tobii (United Kingdom)'), (77431, 'https://ror.org/02vbwsy79', 'en', 1, 'https://ror.org/02vbwsy79 Australian Securities and Investments Commission'), (77432, 'https://ror.org/02vf41z82', 'en', 1, 'https://ror.org/02vf41z82 Institute of Taiwan History, Academia Sinica 中央研究院臺灣史研究所檔案館'), (77433, 'https://ror.org/02vfj3j86', 'no_lang_code', 1, 'https://ror.org/02vfj3j86 Shanghai Fudan Microelectronics (China) 上海复旦微电子集团股份有限公司'), (77434, 'https://ror.org/02vg92y09', 'en', 1, 'https://ror.org/02vg92y09 Whittington Health NHS Trust'), (77435, 'https://ror.org/02vhp3z89', 'no_lang_code', 1, 'https://ror.org/02vhp3z89 Gurulogic Microsystems (Finland)'), (77436, 'https://ror.org/02vj4kn98', 'no_lang_code', 1, 'https://ror.org/02vj4kn98 Holoeye Photonics (Germany)'), (77437, 'https://ror.org/02vnj6d40', 'no_lang_code', 1, 'https://ror.org/02vnj6d40 XCell Science (United States)'), (77438, 'https://ror.org/02vqkgx45', 'no_lang_code', 1, 'https://ror.org/02vqkgx45 Staib Instruments (United States)'), (77439, 'https://ror.org/02vrpj575', 'en', 1, 'https://ror.org/02vrpj575 Kyiv Academic University Київський Академічний Університет'), (77440, 'https://ror.org/02vs13w52', 'no_lang_code', 1, 'https://ror.org/02vs13w52 Pride Mobility Products (United States)'), (77441, 'https://ror.org/02vt89g81', 'no_lang_code', 1, 'https://ror.org/02vt89g81 Norgine (Netherlands)'), (77442, 'https://ror.org/02vtew340', 'no_lang_code', 1, 'https://ror.org/02vtew340 NextTechnologies (Hungary)'), (77443, 'https://ror.org/02vtv9k98', 'no_lang_code', 1, 'https://ror.org/02vtv9k98 Muse Technologies (United States)'), (77444, 'https://ror.org/02vv1hv80', 'no_lang_code', 1, 'https://ror.org/02vv1hv80 HealthpointCapital (United States)'), (77445, 'https://ror.org/02vvkyr96', 'en', 1, 'https://ror.org/02vvkyr96 World Health Organization - Uganda'), (77446, 'https://ror.org/02vya1t32', 'fr', 1, 'https://ror.org/02vya1t32 Conseil Régional de l''Environnement du Bas-Saint-Laurent'), (77447, 'https://ror.org/02vygm709', 'en', 1, 'https://ror.org/02vygm709 Incheon Medical Center 인천광역시의료원'), (77448, 'https://ror.org/02vz2wq60', 'en', 1, 'https://ror.org/02vz2wq60 Global Alliance to Prevent Prematurity and Stillbirth'), (77449, 'https://ror.org/02vzcwk04', 'no_lang_code', 1, 'https://ror.org/02vzcwk04 Vesperix (United States)'), (77450, 'https://ror.org/02w28c661', 'de', 1, 'https://ror.org/02w28c661 Institut für Kunststofftechnologie und -recycling'), (77451, 'https://ror.org/02w4qet09', 'no_lang_code', 1, 'https://ror.org/02w4qet09 Protean Electric (United Kingdom)'), (77452, 'https://ror.org/02w5mt348', 'no_lang_code', 1, 'https://ror.org/02w5mt348 Corvia Medical (United States)'), (77453, 'https://ror.org/02w5xy446', 'en', 1, 'https://ror.org/02w5xy446 CAS Key Laboratory of Urban Pollutant Conversion 中国科学院城市污染物转化重点实验室'), (77454, 'https://ror.org/02w6mtg63', 'no_lang_code', 1, 'https://ror.org/02w6mtg63 Cantel Medical (United States)'), (77455, 'https://ror.org/02w6r3410', 'no_lang_code', 1, 'https://ror.org/02w6r3410 Nymox (Canada)'), (77456, 'https://ror.org/02w7mbz57', 'no_lang_code', 1, 'https://ror.org/02w7mbz57 Staton (Slovakia)'), (77457, 'https://ror.org/02wcjva51', 'en', 1, 'https://ror.org/02wcjva51 Institute of Forest Productivity वन उत्पादकता संस्थान'), (77458, 'https://ror.org/02wcq1q49', 'es', 1, 'https://ror.org/02wcq1q49 Fundacio Investigacio Hospital General Universitari De Valencia'), (77459, 'https://ror.org/02weav903', 'no_lang_code', 1, 'https://ror.org/02weav903 Comet (Switzerland)'), (77460, 'https://ror.org/02wewap38', 'en', 1, 'https://ror.org/02wewap38 Ngaanyatjarra Health Service'), (77461, 'https://ror.org/02whnz742', 'no_lang_code', 1, 'https://ror.org/02whnz742 Daio Paper Corporation (Japan)'), (77462, 'https://ror.org/02wrv8c89', 'en', 1, 'https://ror.org/02wrv8c89 Central Cotton Research Institute'), (77463, 'https://ror.org/02ws27m94', 'no_lang_code', 1, 'https://ror.org/02ws27m94 Besi (Netherlands)'), (77464, 'https://ror.org/02wt4s775', 'en', 1, 'https://ror.org/02wt4s775 Naval Air Warfare Center Training Systems Division'), (77465, 'https://ror.org/02wtsp571', 'en', 1, 'https://ror.org/02wtsp571 Hawke''s Bay Regional Council, Te Kaunihera ā-Rohe o Te Matau-a-Māui'), (77466, 'https://ror.org/02wvs7998', 'no_lang_code', 1, 'https://ror.org/02wvs7998 SES Group & Associates (United States)'), (77467, 'https://ror.org/02x0rn474', 'en', 1, 'https://ror.org/02x0rn474 Taiwan External Trade Development Council 中華民國對外貿易發展協會'), (77468, 'https://ror.org/02x0x2d91', 'en', 1, 'https://ror.org/02x0x2d91 Yancheng Second People''s Hospital 盐城市第二人民医院'), (77469, 'https://ror.org/02x33sm05', 'en', 1, 'https://ror.org/02x33sm05 GoodPlanet Belgium'), (77470, 'https://ror.org/02x5h6n54', 'no_lang_code', 1, 'https://ror.org/02x5h6n54 Silab (France)'), (77471, 'https://ror.org/02x5sw589', 'en', 1, 'https://ror.org/02x5sw589 Anyang Hospital of Traditional Chinese Medicine 安阳市中医院'), (77472, 'https://ror.org/02x760e19', 'en', 1, 'https://ror.org/02x760e19 Fuyang Maternity and Child Health Care Hospital 阜阳市妇女儿童医院'), (77473, 'https://ror.org/02x7pye76', 'no_lang_code', 1, 'https://ror.org/02x7pye76 Sulzer (United States)'), (77474, 'https://ror.org/02x8c2t37', 'no_lang_code', 1, 'https://ror.org/02x8c2t37 Inform (Germany)'), (77475, 'https://ror.org/02x8kt557', 'no_lang_code', 1, 'https://ror.org/02x8kt557 Impedimed (Australia)'), (77476, 'https://ror.org/02x8ye509', 'no_lang_code', 1, 'https://ror.org/02x8ye509 Innovation Cluster (Canada)'), (77477, 'https://ror.org/02xae6c61', 'en', 1, 'https://ror.org/02xae6c61 Wuhu No 1 People''s Hospital 芜湖市第一人民医院'), (77478, 'https://ror.org/02xbm4h96', 'no_lang_code', 1, 'https://ror.org/02xbm4h96 Shikoku (Japan) 四国化成工業株式会社'), (77479, 'https://ror.org/02xe0vx90', 'no_lang_code', 1, 'https://ror.org/02xe0vx90 Energy & Meteo Systems (Germany)'), (77480, 'https://ror.org/02xf4n450', 'no_lang_code', 1, 'https://ror.org/02xf4n450 IEF-Werner (Germany)'), (77481, 'https://ror.org/02xg9a459', 'en', 1, 'https://ror.org/02xg9a459 Duchenne UK'), (77482, 'https://ror.org/02xh1tf34', 'en', 1, 'https://ror.org/02xh1tf34 Global Earthquake Model'), (77483, 'https://ror.org/02xhgtj20', 'fr', 1, 'https://ror.org/02xhgtj20 Hôpital Marin de Hendaye'), (77484, 'https://ror.org/02xk7ft96', 'en', 1, 'https://ror.org/02xk7ft96 Department of Humanities and Arts Аддзяленне гуманітарных навук і мастацтваў Отделение гуманитарных наук и искусств НАН Беларуси'), (77485, 'https://ror.org/02xmm1048', 'nl', 1, 'https://ror.org/02xmm1048 Willem-Alexander Kinderziekenhuis'), (77486, 'https://ror.org/02xmsdw39', 'en', 1, 'https://ror.org/02xmsdw39 International Centre for Tax and Development'), (77487, 'https://ror.org/02xnb4v27', 'en', 1, 'https://ror.org/02xnb4v27 National Center for AIDS/STD Control and Prevention,China CDC 性病艾滋病预防控制中心'), (77488, 'https://ror.org/02xpk4806', 'en', 1, 'https://ror.org/02xpk4806 VA Southern Nevada Healthcare System'), (77489, 'https://ror.org/02xr5pg48', 'de', 1, 'https://ror.org/02xr5pg48 Stiftung Umweltenergierecht'), (77490, 'https://ror.org/02xr5ws27', 'en', 1, 'https://ror.org/02xr5ws27 Andhra Pradesh Forest Department ఆంధ్రప్రదేశ్ అటవీ శాఖ'), (77491, 'https://ror.org/02xrvxv47', 'no_lang_code', 1, 'https://ror.org/02xrvxv47 Phoenix Analysis and Design Technologies (United States)'), (77492, 'https://ror.org/02xs43q30', 'no_lang_code', 1, 'https://ror.org/02xs43q30 American Med Systems (United States)'), (77493, 'https://ror.org/02xse0222', 'no_lang_code', 1, 'https://ror.org/02xse0222 Rhizen Pharmaceuticals (Switzerland)'), (77494, 'https://ror.org/02xsn7259', 'en', 1, 'https://ror.org/02xsn7259 Southern California Institute of Architecture'), (77495, 'https://ror.org/02xv4ae75', 'de', 1, 'https://ror.org/02xv4ae75 LKH Hochsteiermark'), (77496, 'https://ror.org/02xwh7n36', 'en', 1, 'https://ror.org/02xwh7n36 Conseil International des Infirmières International Council of Nurses'), (77497, 'https://ror.org/02xx2e359', 'no_lang_code', 1, 'https://ror.org/02xx2e359 Benvenue Medical (United States)'), (77498, 'https://ror.org/02xx9xx26', 'de', 1, 'https://ror.org/02xx9xx26 Dresdner Grundwasserforschungszentrum'), (77499, 'https://ror.org/02xxmzs04', 'en', 1, 'https://ror.org/02xxmzs04 Wildlife Vets International'), (77500, 'https://ror.org/02xy6bg05', 'en', 1, 'https://ror.org/02xy6bg05 Inner Mongolia Comprehensive Disease Prevention and Control Center 内蒙古综合疾病预防控制中心'), (77501, 'https://ror.org/02xzap828', 'no_lang_code', 1, 'https://ror.org/02xzap828 Afrobarometer'), (77502, 'https://ror.org/02xzmkb45', 'no_lang_code', 1, 'https://ror.org/02xzmkb45 Infraserv (Germany)'), (77503, 'https://ror.org/02y05ge92', 'en', 1, 'https://ror.org/02y05ge92 Hessian Agency for Nature Conservation, Environment and Geology Hessisches Landesamt für Naturschutz, Umwelt und Geologie'), (77504, 'https://ror.org/02y1msw11', 'en', 1, 'https://ror.org/02y1msw11 Nature And Biodiversity Conservation Union Naturschutzbund Deutschland'), (77505, 'https://ror.org/02y3xky07', 'no_lang_code', 1, 'https://ror.org/02y3xky07 Spectabit Optics (United States)'), (77506, 'https://ror.org/02y5eka83', 'de', 1, 'https://ror.org/02y5eka83 Industriegewerkschaft Bauen-Agrar-Umwelt'), (77507, 'https://ror.org/02y5r2j71', 'no_lang_code', 1, 'https://ror.org/02y5r2j71 Spišcol (Slovakia)'), (77508, 'https://ror.org/02y5zge30', 'no_lang_code', 1, 'https://ror.org/02y5zge30 Gene Signal (Switzerland)'), (77509, 'https://ror.org/02y8ft411', 'no_lang_code', 1, 'https://ror.org/02y8ft411 Rohto Pharmaceutical (Japan) ロート製薬株式会社'), (77510, 'https://ror.org/02y8n9198', 'en', 1, 'https://ror.org/02y8n9198 Renewable Energy Alaska Project'), (77511, 'https://ror.org/02y8r3w10', 'no_lang_code', 1, 'https://ror.org/02y8r3w10 Terra Quantum (Switzerland)'), (77512, 'https://ror.org/02y97xx28', 'en', 1, 'https://ror.org/02y97xx28 Ilustre Colegio Nacional de Doctores y Licenciados en Ciencias Políticas y Sociología Professional Association of Sociologists and Political Scientists'), (77513, 'https://ror.org/02y9rwc40', 'no_lang_code', 1, 'https://ror.org/02y9rwc40 U-blox (Switzerland)'), (77514, 'https://ror.org/02ycdjn07', 'en', 1, 'https://ror.org/02ycdjn07 Foundation Yamanashi Cultural Property Research Institute 山梨文化財研究所'), (77515, 'https://ror.org/02ydkfh68', 'en', 1, 'https://ror.org/02ydkfh68 Defence Institute of Bio-Energy Research'), (77516, 'https://ror.org/02yfrka70', 'no_lang_code', 1, 'https://ror.org/02yfrka70 SciClone Pharmaceuticals (United States)'), (77517, 'https://ror.org/02yh27171', 'en', 1, 'https://ror.org/02yh27171 Edexcel University Institut Universitaire Edexcel du Bénin'), (77518, 'https://ror.org/02yjj0827', 'en', 1, 'https://ror.org/02yjj0827 Canberra Innovation Network'), (77519, 'https://ror.org/02ykkkr84', 'no_lang_code', 1, 'https://ror.org/02ykkkr84 Klöckner (United Kingdom)'), (77520, 'https://ror.org/02ypd0j53', 'en', 1, 'https://ror.org/02ypd0j53 Independent Institute for Environmental Issues Unabhängiges Institut für Umweltfragen'), (77521, 'https://ror.org/02yr91f43', 'no_lang_code', 1, 'https://ror.org/02yr91f43 Hainan Center for Disease Control & Prevention 海南省疾病预防控制中心'), (77522, 'https://ror.org/02yrf1a56', 'en', 1, 'https://ror.org/02yrf1a56 Arctic Borderlands Ecological Knowledge Society'), (77523, 'https://ror.org/02ystve88', 'no_lang_code', 1, 'https://ror.org/02ystve88 Sugen Life Sciences (India)'), (77524, 'https://ror.org/02yvvjj13', 'no_lang_code', 1, 'https://ror.org/02yvvjj13 Cornelsen (Germany)'), (77525, 'https://ror.org/02ywgn354', 'en', 1, 'https://ror.org/02ywgn354 Forschungsinstitut für Arbeit, Technik und Kultur Research Institute for Work, Technology and Culture'), (77526, 'https://ror.org/02ywmxs27', 'no_lang_code', 1, 'https://ror.org/02ywmxs27 Nousouken (Japan) 株式会社農業総合研究所'), (77527, 'https://ror.org/02yxqev59', 'no_lang_code', 1, 'https://ror.org/02yxqev59 Vistec Electron Beam (Germany)'), (77528, 'https://ror.org/02yyjsa15', 'no_lang_code', 1, 'https://ror.org/02yyjsa15 MicroAire (United States)'), (77529, 'https://ror.org/02yyy2c79', 'en', 1, 'https://ror.org/02yyy2c79 Kenya Paediatric Research Consortium'), (77530, 'https://ror.org/02yz89636', 'en', 1, 'https://ror.org/02yz89636 SỞ Y TẾ THANH HÓA Thanh Hoa Department of Health'), (77531, 'https://ror.org/02z2wvt20', 'en', 1, 'https://ror.org/02z2wvt20 Heilongjiang Provincial Environmental Science Research Institute 黑龙江省环境保护研究所'), (77532, 'https://ror.org/02z36hk60', 'no_lang_code', 1, 'https://ror.org/02z36hk60 Virent (United States)'); INSERT INTO `rors` VALUES (77533, 'https://ror.org/02z3t4v81', 'es', 1, 'https://ror.org/02z3t4v81 Programa de Salud Global'), (77534, 'https://ror.org/02z480994', 'no_lang_code', 1, 'https://ror.org/02z480994 BenevolentAI (United Kingdom)'), (77535, 'https://ror.org/02z4esg96', 'de', 1, 'https://ror.org/02z4esg96 Landesanstalt für Landwirtschaft und Gartenbau'), (77536, 'https://ror.org/02z7b0p22', 'de', 1, 'https://ror.org/02z7b0p22 Faktor 10 – Institut für nachhaltiges Wirtschaften gemeinnützige'), (77537, 'https://ror.org/02z809f45', 'no_lang_code', 1, 'https://ror.org/02z809f45 Novekon (Slovakia)'), (77538, 'https://ror.org/02z8azv60', 'no_lang_code', 1, 'https://ror.org/02z8azv60 LDI Innovation (Estonia)'), (77539, 'https://ror.org/02z8fgy02', 'no_lang_code', 1, 'https://ror.org/02z8fgy02 Terumo Aortic (United Kingdom)'), (77540, 'https://ror.org/02z8nwe60', 'no_lang_code', 1, 'https://ror.org/02z8nwe60 Ushio (Germany)'), (77541, 'https://ror.org/02z96c921', 'no_lang_code', 1, 'https://ror.org/02z96c921 Institut für Normenmanagement (Germany)'), (77542, 'https://ror.org/02z9t3v16', 'no_lang_code', 1, 'https://ror.org/02z9t3v16 BioDerm (United States)'), (77543, 'https://ror.org/02zb58m60', 'no_lang_code', 1, 'https://ror.org/02zb58m60 Flowserve (Germany)'), (77544, 'https://ror.org/02zb6h937', 'de', 1, 'https://ror.org/02zb6h937 Institut Mensch, Ethik und Wissenschaft'), (77545, 'https://ror.org/02zcn6j48', 'en', 1, 'https://ror.org/02zcn6j48 World Marrow Donor Association'), (77546, 'https://ror.org/02zehhs18', 'en', 1, 'https://ror.org/02zehhs18 South African Agency for Science and Technology Advancement'), (77547, 'https://ror.org/02zek1917', 'no_lang_code', 1, 'https://ror.org/02zek1917 RaQualia Pharma (Japan) ラクオリア創薬'), (77548, 'https://ror.org/02zf60h18', 'no_lang_code', 1, 'https://ror.org/02zf60h18 United Language Group (United States)'), (77549, 'https://ror.org/02zfaen51', 'en', 1, 'https://ror.org/02zfaen51 The Medical Foundation'), (77550, 'https://ror.org/02zftdf95', 'no_lang_code', 1, 'https://ror.org/02zftdf95 Savaria (Canada)'), (77551, 'https://ror.org/02zjgn863', 'en', 1, 'https://ror.org/02zjgn863 Diabetes in Asia Study Group'), (77552, 'https://ror.org/02zjks284', 'en', 1, 'https://ror.org/02zjks284 European Federation for the Science and Technology of Lipids'), (77553, 'https://ror.org/02zm0dd24', 'es', 1, 'https://ror.org/02zm0dd24 Asociación Mexicana de Psicología y Desarrollo Comunitario Mexican Association of Psychology and Community Development'), (77554, 'https://ror.org/02zmj9y60', 'en', 1, 'https://ror.org/02zmj9y60 South African Medical Association'), (77555, 'https://ror.org/02zscxx64', 'no_lang_code', 1, 'https://ror.org/02zscxx64 Electrosciences (United Kingdom)'), (77556, 'https://ror.org/02zsyv822', 'en', 1, 'https://ror.org/02zsyv822 Parliament of Ghana'), (77557, 'https://ror.org/02ztbx464', 'no_lang_code', 1, 'https://ror.org/02ztbx464 Conventus Orthopaedics (United States)'), (77558, 'https://ror.org/02ztgqr61', 'en', 1, 'https://ror.org/02ztgqr61 Bhailalbhai and Bhikhabhai Institute of Technology ભાઈલાલભાઈ એન્ડ ભીખાભાઈ ઇન્સ્ટિટ્યૂટ ઓફ ટેક્નોલોજી'), (77559, 'https://ror.org/02zvd3556', 'en', 1, 'https://ror.org/02zvd3556 Okinawa Academy College 沖縄アカデミー専門学校'), (77560, 'https://ror.org/02zvmwy36', 'no_lang_code', 1, 'https://ror.org/02zvmwy36 NICO (United States)'), (77561, 'https://ror.org/02zw6k693', 'es', 1, 'https://ror.org/02zw6k693 Parque Explora'), (77562, 'https://ror.org/02zx0np06', 'no_lang_code', 1, 'https://ror.org/02zx0np06 Indian Ocean Medical Trading (Somalia)'), (77563, 'https://ror.org/02zxrsc32', 'en', 1, 'https://ror.org/02zxrsc32 Institut zа Jаvnо Zdrаvstvо Rеpublikе Srpskе Public Health Institute of the Republic of Srpska'), (77564, 'https://ror.org/02zxs5p14', 'no_lang_code', 1, 'https://ror.org/02zxs5p14 VSL Software (Slovakia)'), (77565, 'https://ror.org/02zyr1680', 'nl', 1, 'https://ror.org/02zyr1680 Beatrix Kinderziekenhuis'), (77566, 'https://ror.org/02zzdas25', 'no_lang_code', 1, 'https://ror.org/02zzdas25 Precision Spine (United States)'), (77567, 'https://ror.org/0300c1598', 'en', 1, 'https://ror.org/0300c1598 Gurukul School of Design'), (77568, 'https://ror.org/0301tkm88', 'no_lang_code', 1, 'https://ror.org/0301tkm88 HeartFlow (United States)'), (77569, 'https://ror.org/0303cgc60', 'no_lang_code', 1, 'https://ror.org/0303cgc60 Ball Horticultural (United States)'), (77570, 'https://ror.org/0303j9k30', 'no_lang_code', 1, 'https://ror.org/0303j9k30 Institut für Betriebliche Bildung und Unternehmenskultur (Germany)'), (77571, 'https://ror.org/0303jkh46', 'de', 1, 'https://ror.org/0303jkh46 Institut für Sozialarbeit und Sozialpädagogik'), (77572, 'https://ror.org/030503z05', 'no_lang_code', 1, 'https://ror.org/030503z05 ONL Therapeutic (United States)'), (77573, 'https://ror.org/0305gdg87', 'en', 1, 'https://ror.org/0305gdg87 The First People''s Hospital of Tianmen 天门市第一人民医院'), (77574, 'https://ror.org/03062bd88', 'en', 1, 'https://ror.org/03062bd88 Academic Bridge Program'), (77575, 'https://ror.org/0306mex37', 'de', 1, 'https://ror.org/0306mex37 Hochschul Informations System'), (77576, 'https://ror.org/0308fvb52', 'en', 1, 'https://ror.org/0308fvb52 Science and Development Network'), (77577, 'https://ror.org/03098r397', 'en', 1, 'https://ror.org/03098r397 Adaptive Physical Education'), (77578, 'https://ror.org/0309xc572', 'no_lang_code', 1, 'https://ror.org/0309xc572 Frontline Medical Products (United States)'), (77579, 'https://ror.org/030aq8r67', 'no_lang_code', 1, 'https://ror.org/030aq8r67 Biocartis (Belgium)'), (77580, 'https://ror.org/030bwht90', 'de', 1, 'https://ror.org/030bwht90 Bayerisches Landeskriminalamt'), (77581, 'https://ror.org/030d0y072', 'no_lang_code', 1, 'https://ror.org/030d0y072 Fischer Group (Germany)'), (77582, 'https://ror.org/030jfpr63', 'no_lang_code', 1, 'https://ror.org/030jfpr63 Novalia (United Kingdom)'), (77583, 'https://ror.org/030p2pd90', 'en', 1, 'https://ror.org/030p2pd90 Scientific Research Institute of Healthcare Organization and Medical Management Научно-исследовательский институт организации здравоохранения и медицинского менеджмента'), (77584, 'https://ror.org/030pq6x19', 'no_lang_code', 1, 'https://ror.org/030pq6x19 Cynora (Germany)'), (77585, 'https://ror.org/030qw5707', 'no_lang_code', 1, 'https://ror.org/030qw5707 Institut für Experimentelle Psychophysiologie Institute for Experimental Psychophysiology (Germany)'), (77586, 'https://ror.org/030shh572', 'no_lang_code', 1, 'https://ror.org/030shh572 Future Science Group (United Kingdom)'), (77587, 'https://ror.org/030t3gw93', 'de', 1, 'https://ror.org/030t3gw93 Institut für Praxisforschung und Projektberatung'), (77588, 'https://ror.org/030w4f316', 'no_lang_code', 1, 'https://ror.org/030w4f316 Nemera (France)'), (77589, 'https://ror.org/030wmwa35', 'en', 1, 'https://ror.org/030wmwa35 Agentur für Erneuerbare Energien Renewable Energies Agency'), (77590, 'https://ror.org/030x88e61', 'no_lang_code', 1, 'https://ror.org/030x88e61 Micron Semiconductor (United Kingdom)'), (77591, 'https://ror.org/030ygf420', 'no_lang_code', 1, 'https://ror.org/030ygf420 Simphotek (United States)'), (77592, 'https://ror.org/030z01v61', 'no_lang_code', 1, 'https://ror.org/030z01v61 ISHIFUKU (Japan) 石福金属興業'), (77593, 'https://ror.org/030z2kw43', 'en', 1, 'https://ror.org/030z2kw43 Museum of Natural and Environmental History, Shizuoka ふじのくに地球環境史ミュージアム'), (77594, 'https://ror.org/030zcqn97', 'en', 1, 'https://ror.org/030zcqn97 Ningbo Medical Center Lihuili Hospital 宁波市医疗中心李惠利医院'), (77595, 'https://ror.org/030zkp092', 'pt', 1, 'https://ror.org/030zkp092 Instituto Superior de Ciências de Educação à Distância'), (77596, 'https://ror.org/0311vkn02', 'no_lang_code', 1, 'https://ror.org/0311vkn02 Qinghai New Energy (China)'), (77597, 'https://ror.org/0312mdb50', 'no_lang_code', 1, 'https://ror.org/0312mdb50 Hans Raj Mahila Maha Vidyalaya ਹੰਸ ਰਾਜ ਮਹਿਲਾ ਮਹਾ ਵਿਦਿਆਲਾ'), (77598, 'https://ror.org/0312nky31', 'en', 1, 'https://ror.org/0312nky31 Infection Control Africa Network'), (77599, 'https://ror.org/03160qy64', 'no_lang_code', 1, 'https://ror.org/03160qy64 Cardiac Dimensions (United States)'), (77600, 'https://ror.org/03170wz23', 'no_lang_code', 1, 'https://ror.org/03170wz23 Hochbahn (Germany)'), (77601, 'https://ror.org/0317a1b85', 'no_lang_code', 1, 'https://ror.org/0317a1b85 Onto Innovation (United States)'), (77602, 'https://ror.org/0317mkd29', 'no_lang_code', 1, 'https://ror.org/0317mkd29 Interfels (Germany)'), (77603, 'https://ror.org/03191tc24', 'no_lang_code', 1, 'https://ror.org/03191tc24 Sembid'), (77604, 'https://ror.org/031aa5q21', 'en', 1, 'https://ror.org/031aa5q21 Kabardino-Balkarian Scientific Center КАБАРДИНО-БАЛКАРСКИЙ НАУЧНЫЙ ЦЕНТР РОССИЙСКОЙ АКАДЕМИИ НАУК'), (77605, 'https://ror.org/031cw6h45', 'no_lang_code', 1, 'https://ror.org/031cw6h45 I.C. Medical (United States)'), (77606, 'https://ror.org/031cz5x07', 'no_lang_code', 1, 'https://ror.org/031cz5x07 Muehlhan (Germany)'), (77607, 'https://ror.org/031eap517', 'en', 1, 'https://ror.org/031eap517 Delhi Development Authority दिल्ली विकास प्राधिकरण'), (77608, 'https://ror.org/031g2ra50', 'en', 1, 'https://ror.org/031g2ra50 PLA Air Force Aviation University 中国人民解放军空军航空大学'), (77609, 'https://ror.org/031jemm23', 'no_lang_code', 1, 'https://ror.org/031jemm23 Pharnext (France)'), (77610, 'https://ror.org/031jzas57', 'no_lang_code', 1, 'https://ror.org/031jzas57 Silixa (United Kingdom)'), (77611, 'https://ror.org/031mqp384', 'no_lang_code', 1, 'https://ror.org/031mqp384 Zhong Ke San Huan (China) 中科三环'), (77612, 'https://ror.org/031pj9222', 'de', 1, 'https://ror.org/031pj9222 Hygiene-Institut des Ruhrgebiets'), (77613, 'https://ror.org/031q2en94', 'en', 1, 'https://ror.org/031q2en94 Institute for Small Business Economics Volkswirtschaftliches Institut für Mittelstand und Handwerk an der Universität Göttingen'), (77614, 'https://ror.org/031sbqx87', 'en', 1, 'https://ror.org/031sbqx87 Food, Beverages and Catering Union Gewerkschaft Nahrung-Genuss-Gaststätten'), (77615, 'https://ror.org/031sjre66', 'no_lang_code', 1, 'https://ror.org/031sjre66 JIT Labs (United States)'), (77616, 'https://ror.org/031sr2181', 'en', 1, 'https://ror.org/031sr2181 South African Sugarcane Research Institute'), (77617, 'https://ror.org/031xq8953', 'no_lang_code', 1, 'https://ror.org/031xq8953 Becker Photonik (Germany)'), (77618, 'https://ror.org/032133427', 'no_lang_code', 1, 'https://ror.org/032133427 Lumenis (Israel)'), (77619, 'https://ror.org/0321yg140', 'no_lang_code', 1, 'https://ror.org/0321yg140 Celularity (United States)'), (77620, 'https://ror.org/03224rx59', 'en', 1, 'https://ror.org/03224rx59 Animal Husbandry and Veterinary Department'), (77621, 'https://ror.org/03225mv93', 'de', 1, 'https://ror.org/03225mv93 Museumspädagogische Zentrum'), (77622, 'https://ror.org/032296482', 'no_lang_code', 1, 'https://ror.org/032296482 MAM Babyartikel (Germany)'), (77623, 'https://ror.org/0322cev20', 'no_lang_code', 1, 'https://ror.org/0322cev20 Affectiva (United States)'), (77624, 'https://ror.org/03233xn13', 'no_lang_code', 1, 'https://ror.org/03233xn13 Torc Robotics (United States)'), (77625, 'https://ror.org/0324t6t86', 'en', 1, 'https://ror.org/0324t6t86 Elaine Roberts Foundation'), (77626, 'https://ror.org/0329af416', 'en', 1, 'https://ror.org/0329af416 Central Institute of Technology Kokrajhar केंद्रीय प्रौद्योगिकी संस्थान कोकराझार'), (77627, 'https://ror.org/032akv382', 'no_lang_code', 1, 'https://ror.org/032akv382 Aurinia (Canada)'), (77628, 'https://ror.org/032ddhe09', 'sk', 1, 'https://ror.org/032ddhe09 Stredná Odborná Skola Lesnícka Tvrdošín'), (77629, 'https://ror.org/032dee662', 'en', 1, 'https://ror.org/032dee662 Southern District Health Board'), (77630, 'https://ror.org/032dz8133', 'no_lang_code', 1, 'https://ror.org/032dz8133 Gurit (United Kingdom)'), (77631, 'https://ror.org/032e2dp71', 'en', 1, 'https://ror.org/032e2dp71 China Business Executives Academy 中国大连高级经理学院'), (77632, 'https://ror.org/032e3d072', 'en', 1, 'https://ror.org/032e3d072 Institute of Wetland Research 中国林业科学研究院湿地研究所'), (77633, 'https://ror.org/032fpkt80', 'de', 1, 'https://ror.org/032fpkt80 Institut für Gewässerschutz Mesocosm, Mesocosm'), (77634, 'https://ror.org/032g5d438', 'no_lang_code', 1, 'https://ror.org/032g5d438 Xona Microfluidics (United States)'), (77635, 'https://ror.org/032hxhk43', 'no_lang_code', 1, 'https://ror.org/032hxhk43 Polynt (Italy)'), (77636, 'https://ror.org/032j81x58', 'en', 1, 'https://ror.org/032j81x58 Zoo Outreach Organisation'), (77637, 'https://ror.org/032kevw42', 'en', 1, 'https://ror.org/032kevw42 Magnetic Resonance Institute for Safety, Technology and Research'), (77638, 'https://ror.org/032nt3q40', 'no_lang_code', 1, 'https://ror.org/032nt3q40 Nikken Sekkei (Japan) 日建設計'), (77639, 'https://ror.org/032pj3t23', 'no_lang_code', 1, 'https://ror.org/032pj3t23 SonarMed (United States)'), (77640, 'https://ror.org/032stxf15', 'no_lang_code', 1, 'https://ror.org/032stxf15 Aderans (Japan) 株式会社アデランス'), (77641, 'https://ror.org/032syc365', 'en', 1, 'https://ror.org/032syc365 Islamic Azad University, Omidieh Branch دانشگاه آزاد اسلامی واحد امیدیه'), (77642, 'https://ror.org/032vqbc18', 'en', 1, 'https://ror.org/032vqbc18 Deutsche Umwelthilfe Environmental Action Germany'), (77643, 'https://ror.org/032w0sp96', 'no_lang_code', 1, 'https://ror.org/032w0sp96 SmarAct (Germany)'), (77644, 'https://ror.org/032wvzg14', 'no_lang_code', 1, 'https://ror.org/032wvzg14 Volkswohnung (Germany)'), (77645, 'https://ror.org/032z6r127', 'en', 1, 'https://ror.org/032z6r127 Sichuan Integrative Medicine Hosipital 四川省中西医结合医院'), (77646, 'https://ror.org/0333x0667', 'en', 1, 'https://ror.org/0333x0667 Avantha Centre for Industrial Research & Development औद्योगिक अनुसंधान एवं विकास के लिए केंद्र अवंता'), (77647, 'https://ror.org/033571q03', 'no_lang_code', 1, 'https://ror.org/033571q03 Asahi Intecc (Japan) 朝日インテック株式会社'), (77648, 'https://ror.org/033705f12', 'no_lang_code', 1, 'https://ror.org/033705f12 MEDRx (Japan)'), (77649, 'https://ror.org/0338ntq56', 'no_lang_code', 1, 'https://ror.org/0338ntq56 AVIC Optronics (China) 航空工业光电所'), (77650, 'https://ror.org/033bbb825', 'no_lang_code', 1, 'https://ror.org/033bbb825 Wärtsilä (United Kingdom)'), (77651, 'https://ror.org/033bv6556', 'no_lang_code', 1, 'https://ror.org/033bv6556 Tracoe Medical (Germany)'), (77652, 'https://ror.org/033g4nk48', 'en', 1, 'https://ror.org/033g4nk48 Write Inspired'), (77653, 'https://ror.org/033gwzy17', 'en', 1, 'https://ror.org/033gwzy17 Miyagi Prefectural Research Institute of The Tagajo site 宮城県多賀城跡調査研究所'), (77654, 'https://ror.org/033h29277', 'en', 1, 'https://ror.org/033h29277 Participatory Rural Development Foundation'), (77655, 'https://ror.org/033hs9r68', 'no_lang_code', 1, 'https://ror.org/033hs9r68 Partek (United States)'), (77656, 'https://ror.org/033j0mq15', 'no_lang_code', 1, 'https://ror.org/033j0mq15 Qualicaps (Japan)'), (77657, 'https://ror.org/033kdaz63', 'en', 1, 'https://ror.org/033kdaz63 Himi City Library 氷見市立図書館'), (77658, 'https://ror.org/033m0cw03', 'en', 1, 'https://ror.org/033m0cw03 Hyogo Prefectural Institute for Educational Research and In-Service Training 兵庫県立教育研修所'), (77659, 'https://ror.org/033mch573', 'no_lang_code', 1, 'https://ror.org/033mch573 Carag (Switzerland)'), (77660, 'https://ror.org/033mdyr61', 'en', 1, 'https://ror.org/033mdyr61 Institute of Taiwan Studies Chinese Academy of Social Sciences 中国社会科学院台湾研究所'), (77661, 'https://ror.org/033nee397', 'no_lang_code', 1, 'https://ror.org/033nee397 Theragnostic Technologies (United States)'), (77662, 'https://ror.org/033qh4x19', 'no_lang_code', 1, 'https://ror.org/033qh4x19 Primaira (United States)'), (77663, 'https://ror.org/033rxqp12', 'no_lang_code', 1, 'https://ror.org/033rxqp12 Quad-C Management (United States)'), (77664, 'https://ror.org/033sga382', 'de', 1, 'https://ror.org/033sga382 Pathologie Hamburg-West'), (77665, 'https://ror.org/033tvvz33', 'no_lang_code', 1, 'https://ror.org/033tvvz33 Cook Research (United States)'), (77666, 'https://ror.org/033wj0h62', 'en', 1, 'https://ror.org/033wj0h62 DS Smith (United Kingdom)'), (77667, 'https://ror.org/033x0n485', 'no_lang_code', 1, 'https://ror.org/033x0n485 Arithmer (Japan)'), (77668, 'https://ror.org/033xktk71', 'en', 1, 'https://ror.org/033xktk71 Electoral Institute for Sustainable Democracy in Africa'), (77669, 'https://ror.org/033yxp207', 'no_lang_code', 1, 'https://ror.org/033yxp207 Gunze (Japan) グンゼ株式会社'), (77670, 'https://ror.org/033ztm745', 'fr', 1, 'https://ror.org/033ztm745 Fondation Botnar'), (77671, 'https://ror.org/0340vv450', 'no_lang_code', 1, 'https://ror.org/0340vv450 Pregistry (United States)'), (77672, 'https://ror.org/0341fqh65', 'en', 1, 'https://ror.org/0341fqh65 African Refuge'), (77673, 'https://ror.org/03425cy40', 'no_lang_code', 1, 'https://ror.org/03425cy40 ROM Technik (Germany)'), (77674, 'https://ror.org/0342c0q79', 'en', 1, 'https://ror.org/0342c0q79 Shiga Prefecture Cultural Property Protection Association 公益財団法人滋賀県文化財保護協会'), (77675, 'https://ror.org/0342n5p84', 'it', 1, 'https://ror.org/0342n5p84 Centro per le Nano-Scienze della Vita'), (77676, 'https://ror.org/0342pra74', 'no_lang_code', 1, 'https://ror.org/0342pra74 Koei Chemical (Japan) 広栄化学'), (77677, 'https://ror.org/03455bm37', 'no_lang_code', 1, 'https://ror.org/03455bm37 Epix Pharmaceuticals (United States)'), (77678, 'https://ror.org/0345dvk21', 'no_lang_code', 1, 'https://ror.org/0345dvk21 Medtentia (Finland)'), (77679, 'https://ror.org/0346t2s60', 'no_lang_code', 1, 'https://ror.org/0346t2s60 Trench (Germany)'), (77680, 'https://ror.org/0347csc19', 'en', 1, 'https://ror.org/0347csc19 East Foundation'), (77681, 'https://ror.org/0348zy043', 'no_lang_code', 1, 'https://ror.org/0348zy043 Shape Memory Medical (United States)'), (77682, 'https://ror.org/034c3qw48', 'no_lang_code', 1, 'https://ror.org/034c3qw48 Vivex Biologics (United States)'), (77683, 'https://ror.org/034msyx24', 'no_lang_code', 1, 'https://ror.org/034msyx24 Fuji Chimera Research Institute (Japan) 株式会社 富士キメラ総研'), (77684, 'https://ror.org/034qmeb64', 'no_lang_code', 1, 'https://ror.org/034qmeb64 Elena International (Germany)'), (77685, 'https://ror.org/034rrk963', 'no_lang_code', 1, 'https://ror.org/034rrk963 Oledcomm (France)'), (77686, 'https://ror.org/034wp9329', 'no_lang_code', 1, 'https://ror.org/034wp9329 Sleep Number (United States)'), (77687, 'https://ror.org/034yc4v31', 'en', 1, 'https://ror.org/034yc4v31 Debark University'), (77688, 'https://ror.org/034ywws88', 'no_lang_code', 1, 'https://ror.org/034ywws88 Osstem Implant (South Korea) 오스템임플란트'), (77689, 'https://ror.org/034zjqs11', 'no_lang_code', 1, 'https://ror.org/034zjqs11 Scorpion Therapeutics (United States)'), (77690, 'https://ror.org/0350fs434', 'no_lang_code', 1, 'https://ror.org/0350fs434 VitalConnect (United States)'), (77691, 'https://ror.org/0350qsk51', 'af', 1, 'https://ror.org/0350qsk51 Twende Mbele'), (77692, 'https://ror.org/035130s04', 'no_lang_code', 1, 'https://ror.org/035130s04 Otepia Kochi Library 高知市立高知市民図書館'), (77693, 'https://ror.org/0351ywy08', 'en', 1, 'https://ror.org/0351ywy08 General Directorate Combating Organized Crime Главна дирекция "Борба с организираната престъпност"'), (77694, 'https://ror.org/0352b7b72', 'en', 1, 'https://ror.org/0352b7b72 Veterinary & Animal Husbandry'), (77695, 'https://ror.org/0354ckp94', 'en', 1, 'https://ror.org/0354ckp94 National Institute of High Security Animal Diseases उच्च सुरक्षा पशु रोग के राष्ट्रीय संस्थान'), (77696, 'https://ror.org/03557sx70', 'de', 1, 'https://ror.org/03557sx70 Institut für Angewandte Innovationsforschung'), (77697, 'https://ror.org/0355tjr07', 'fr', 1, 'https://ror.org/0355tjr07 Hôpital Maritime de Berck'), (77698, 'https://ror.org/0356fgm10', 'en', 1, 'https://ror.org/0356fgm10 The Carpentries'), (77699, 'https://ror.org/0358nsq19', 'fr', 1, 'https://ror.org/0358nsq19 Université Pelefero Gon Coulibaly'), (77700, 'https://ror.org/0358p7h51', 'no_lang_code', 1, 'https://ror.org/0358p7h51 PureCircle (Malaysia)'), (77701, 'https://ror.org/0358t2s53', 'no_lang_code', 1, 'https://ror.org/0358t2s53 Neurelis (United States)'), (77702, 'https://ror.org/035d70176', 'en', 1, 'https://ror.org/035d70176 Siberian Law University Сибирский юридический университет'), (77703, 'https://ror.org/035dxyg86', 'en', 1, 'https://ror.org/035dxyg86 Environs Kimberley'), (77704, 'https://ror.org/035evek51', 'no_lang_code', 1, 'https://ror.org/035evek51 Goldfinch Bio (United States)'), (77705, 'https://ror.org/035g5pd63', 'no_lang_code', 1, 'https://ror.org/035g5pd63 Procomcure Biotech (Austria)'), (77706, 'https://ror.org/035g8xb75', 'en', 1, 'https://ror.org/035g8xb75 World Health Organization - Lebanon'), (77707, 'https://ror.org/035gkst87', 'no_lang_code', 1, 'https://ror.org/035gkst87 Sigma Designs (United States)'), (77708, 'https://ror.org/035hwsz26', 'no_lang_code', 1, 'https://ror.org/035hwsz26 Synecor (United States)'), (77709, 'https://ror.org/035jnav47', 'nl', 1, 'https://ror.org/035jnav47 J.M. Burgerscentrum'), (77710, 'https://ror.org/035kwsm70', 'en', 1, 'https://ror.org/035kwsm70 Institut für Neue Medien Institute for New Media'), (77711, 'https://ror.org/035mc8a13', 'fr', 1, 'https://ror.org/035mc8a13 Labéo'), (77712, 'https://ror.org/035mr2h79', 'en', 1, 'https://ror.org/035mr2h79 Centre for Military Airworthiness and Certification सेना उड़नयोग्यता और प्रमाणीकरण केन्द्र'), (77713, 'https://ror.org/035pr7340', 'no_lang_code', 1, 'https://ror.org/035pr7340 BioRankings (United States)'), (77714, 'https://ror.org/035q5ds08', 'no_lang_code', 1, 'https://ror.org/035q5ds08 Simmtec (United States)'), (77715, 'https://ror.org/035rza675', 'no_lang_code', 1, 'https://ror.org/035rza675 Titan Medical (Canada)'), (77716, 'https://ror.org/035rzmc67', 'en', 1, 'https://ror.org/035rzmc67 Anhui Academy of Medical Sciences 安徽省医学科学研究院'), (77717, 'https://ror.org/035smsz08', 'no_lang_code', 1, 'https://ror.org/035smsz08 Evalf Computing (Netherlands)'), (77718, 'https://ror.org/035sr5g64', 'en', 1, 'https://ror.org/035sr5g64 Bunkyo Furusato History Museum 文京ふるさと歴史館'), (77719, 'https://ror.org/035tamt43', 'no_lang_code', 1, 'https://ror.org/035tamt43 Teamtechnik (Germany)'), (77720, 'https://ror.org/035vbzz28', 'en', 1, 'https://ror.org/035vbzz28 El Paso VA Health Care System'), (77721, 'https://ror.org/035vk6k04', 'en', 1, 'https://ror.org/035vk6k04 International Centre for Trade and Sustainable Development'), (77722, 'https://ror.org/035wevv89', 'de', 1, 'https://ror.org/035wevv89 Bayerische Landesanstalt für Weinbau und Gartenbau'), (77723, 'https://ror.org/035ygmd05', 'no_lang_code', 1, 'https://ror.org/035ygmd05 Spiegel Institut (Germany)'), (77724, 'https://ror.org/035zer135', 'no_lang_code', 1, 'https://ror.org/035zer135 Fukuoka City Museum 福岡市博物館'), (77725, 'https://ror.org/03616xn26', 'en', 1, 'https://ror.org/03616xn26 Liaoning Meteorological Bureau 辽宁省气象局'), (77726, 'https://ror.org/0362sfm95', 'no_lang_code', 1, 'https://ror.org/0362sfm95 E4D Technologies (United States)'), (77727, 'https://ror.org/0363jmm27', 'no_lang_code', 1, 'https://ror.org/0363jmm27 Mineralölverbundleitung (Germany)'), (77728, 'https://ror.org/0364hq403', 'no_lang_code', 1, 'https://ror.org/0364hq403 AXO Dresden (Germany)'), (77729, 'https://ror.org/0364rgm75', 'en', 1, 'https://ror.org/0364rgm75 Yomiuri Science and Technology College 読売理工医療福祉専門学校'), (77730, 'https://ror.org/0365pmp63', 'no_lang_code', 1, 'https://ror.org/0365pmp63 Maruishi Pharmaceutical (Japan) 丸石製薬株式会社'), (77731, 'https://ror.org/0366hg892', 'en', 1, 'https://ror.org/0366hg892 Zambia Forestry College'), (77732, 'https://ror.org/0366nrw71', 'de', 1, 'https://ror.org/0366nrw71 Naturstiftung David'), (77733, 'https://ror.org/0366qxk70', 'en', 1, 'https://ror.org/0366qxk70 Islamic World Educational, Scientific and Cultural Organization منظمة العالم الإسلامي للتربية والعلوم والثقافة'), (77734, 'https://ror.org/03681th59', 'en', 1, 'https://ror.org/03681th59 Arunachal Pradesh State Council for Science & Technology'), (77735, 'https://ror.org/03682zy57', 'en', 1, 'https://ror.org/03682zy57 Johannesburg Wildlife Vet'), (77736, 'https://ror.org/0369a2x50', 'no_lang_code', 1, 'https://ror.org/0369a2x50 Albumedix (United Kingdom)'), (77737, 'https://ror.org/0369dsh11', 'no_lang_code', 1, 'https://ror.org/0369dsh11 Zuiko (Japan)'), (77738, 'https://ror.org/036aaf204', 'no_lang_code', 1, 'https://ror.org/036aaf204 Secant Group (United States)'), (77739, 'https://ror.org/036adbz09', 'en', 1, 'https://ror.org/036adbz09 Perry Point VA Medical Center'), (77740, 'https://ror.org/036amgv56', 'en', 1, 'https://ror.org/036amgv56 London Borough of Hackney'), (77741, 'https://ror.org/036b75x65', 'fr', 1, 'https://ror.org/036b75x65 Hôpital Paul-Doumer'), (77742, 'https://ror.org/036c61m13', 'no_lang_code', 1, 'https://ror.org/036c61m13 BioQ Pharma (United States)'), (77743, 'https://ror.org/036dvvv65', 'no_lang_code', 1, 'https://ror.org/036dvvv65 Radianse (United States)'), (77744, 'https://ror.org/036ge5h13', 'es', 1, 'https://ror.org/036ge5h13 Academia Nacional de la Historia de la República Argentina National Academy of History of Argentina'), (77745, 'https://ror.org/036hzfm30', 'no_lang_code', 1, 'https://ror.org/036hzfm30 Compass Technology (China)'), (77746, 'https://ror.org/036j21948', 'no_lang_code', 1, 'https://ror.org/036j21948 Protix (Netherlands)'), (77747, 'https://ror.org/036j90q35', 'no_lang_code', 1, 'https://ror.org/036j90q35 Rockstep Solutions (United States)'), (77748, 'https://ror.org/036jn4298', 'en', 1, 'https://ror.org/036jn4298 The San Raffaele Telethon Institute for Gene Therapy'), (77749, 'https://ror.org/036jqev97', 'en', 1, 'https://ror.org/036jqev97 NDIS Quality and Safeguards Commission'), (77750, 'https://ror.org/036kzqv28', 'no_lang_code', 1, 'https://ror.org/036kzqv28 Sitronix Technology (Taiwan)'), (77751, 'https://ror.org/036m1sh27', 'no_lang_code', 1, 'https://ror.org/036m1sh27 Thorleaf Research (United States)'), (77752, 'https://ror.org/036md6q83', 'de', 1, 'https://ror.org/036md6q83 Inter 3, inter 3 Institut für Ressourcenmanagement'), (77753, 'https://ror.org/036nedf06', 'no_lang_code', 1, 'https://ror.org/036nedf06 Protection Engineering Consultants (United States)'), (77754, 'https://ror.org/036nvwz98', 'en', 1, 'https://ror.org/036nvwz98 Gorilla Doctors'), (77755, 'https://ror.org/036p5fk53', 'es', 1, 'https://ror.org/036p5fk53 Colegio Colombiano de Terapia Ocupacional'), (77756, 'https://ror.org/036q44x34', 'en', 1, 'https://ror.org/036q44x34 Babylon Health'), (77757, 'https://ror.org/036rk0748', 'no_lang_code', 1, 'https://ror.org/036rk0748 Xtant Medical (United States)'), (77758, 'https://ror.org/036s90x07', 'no_lang_code', 1, 'https://ror.org/036s90x07 InCube Labs (United States)'), (77759, 'https://ror.org/036spp047', 'no_lang_code', 1, 'https://ror.org/036spp047 AcuFocus (United States)'), (77760, 'https://ror.org/036v1zd35', 'no_lang_code', 1, 'https://ror.org/036v1zd35 Semtech (United Kingdom)'), (77761, 'https://ror.org/036vfgp53', 'en', 1, 'https://ror.org/036vfgp53 Preusser Research Group'), (77762, 'https://ror.org/036yna661', 'no_lang_code', 1, 'https://ror.org/036yna661 F-Secure (Finland)'), (77763, 'https://ror.org/036zxb972', 'no_lang_code', 1, 'https://ror.org/036zxb972 Pursuant Health (United States)'), (77764, 'https://ror.org/03707rf96', 'en', 1, 'https://ror.org/03707rf96 University of Tripoli Al-ahlia جامعة طرابلس الأهلية'), (77765, 'https://ror.org/03747hz63', 'en', 1, 'https://ror.org/03747hz63 The Task Force for Global Health'), (77766, 'https://ror.org/0374y9c72', 'no_lang_code', 1, 'https://ror.org/0374y9c72 DOT (Germany)'), (77767, 'https://ror.org/03756wp26', 'no_lang_code', 1, 'https://ror.org/03756wp26 Medinol (Israel)'), (77768, 'https://ror.org/03780jn86', 'en', 1, 'https://ror.org/03780jn86 Kalam Institute of Health Technology'), (77769, 'https://ror.org/037ap0k13', 'no_lang_code', 1, 'https://ror.org/037ap0k13 PetroIneos (United Kingdom)'), (77770, 'https://ror.org/037bc8f58', 'no_lang_code', 1, 'https://ror.org/037bc8f58 Institut für Biogas, Kreislaufwirtschaft und Energie Institute of Biogas, Waste Management and Energy (Germany)'), (77771, 'https://ror.org/037c00h05', 'no_lang_code', 1, 'https://ror.org/037c00h05 Hong Kong Auto Parts Industry Association (China) 香港汽車零部件工業協會'), (77772, 'https://ror.org/037dety09', 'en', 1, 'https://ror.org/037dety09 Okayama City Library 岡山市図書館'), (77773, 'https://ror.org/037ec0y70', 'no_lang_code', 1, 'https://ror.org/037ec0y70 Kleinwächter (Germany)'), (77774, 'https://ror.org/037f3w245', 'en', 1, 'https://ror.org/037f3w245 Comité National de Développement des Technologies National Committee for the Development of Technologies'), (77775, 'https://ror.org/037f7zx95', 'en', 1, 'https://ror.org/037f7zx95 New Hampshire Sea Grant'), (77776, 'https://ror.org/037fh1278', 'no_lang_code', 1, 'https://ror.org/037fh1278 Cosmo Tech (France)'), (77777, 'https://ror.org/037fk6k96', 'en', 1, 'https://ror.org/037fk6k96 Guangxi Zhuang Autonomous Region Hydraulic Research Institute 广西壮族自治区水利科学研究院'), (77778, 'https://ror.org/037fm3958', 'en', 1, 'https://ror.org/037fm3958 University of Halabja زانكۆى ههڵهبجه'), (77779, 'https://ror.org/037g1qp67', 'no_lang_code', 1, 'https://ror.org/037g1qp67 ConjuChem (Canada)'), (77780, 'https://ror.org/037k8mg80', 'en', 1, 'https://ror.org/037k8mg80 Nevada National Security Site'), (77781, 'https://ror.org/037nrh939', 'en', 1, 'https://ror.org/037nrh939 John J. Pershing VA Medical Center'), (77782, 'https://ror.org/037pppx71', 'no_lang_code', 1, 'https://ror.org/037pppx71 Alcami (United States)'), (77783, 'https://ror.org/037qmen77', 'no_lang_code', 1, 'https://ror.org/037qmen77 Graebener Maschinentechnik (Germany)'), (77784, 'https://ror.org/037rvgb96', 'es', 1, 'https://ror.org/037rvgb96 Ecuatesis'), (77785, 'https://ror.org/037vpg713', 'en', 1, 'https://ror.org/037vpg713 Stockholm Environment Institute'), (77786, 'https://ror.org/037wwt484', 'no_lang_code', 1, 'https://ror.org/037wwt484 CosmoCode (Germany)'), (77787, 'https://ror.org/03800bc44', 'no_lang_code', 1, 'https://ror.org/03800bc44 Emweb (Belgium)'), (77788, 'https://ror.org/03802zd28', 'en', 1, 'https://ror.org/03802zd28 Global Emerging Pathogens Treatment Consortium'), (77789, 'https://ror.org/0380dcc73', 'en', 1, 'https://ror.org/0380dcc73 Wuhan No. 7 Hospital 武汉市第七医院'), (77790, 'https://ror.org/0380n5h16', 'en', 1, 'https://ror.org/0380n5h16 Federal Reserve Bank of Minneapolis'), (77791, 'https://ror.org/038142d20', 'no_lang_code', 1, 'https://ror.org/038142d20 Mammoth Biosciences (United States)'), (77792, 'https://ror.org/0382c3j25', 'nl', 1, 'https://ror.org/0382c3j25 Nederlands Instituut Forensische Psychiatrie'), (77793, 'https://ror.org/0382n1947', 'no_lang_code', 1, 'https://ror.org/0382n1947 Step Tools (United States)'), (77794, 'https://ror.org/03836m928', 'no_lang_code', 1, 'https://ror.org/03836m928 Roche (Ecuador)'), (77795, 'https://ror.org/0383czy71', 'no_lang_code', 1, 'https://ror.org/0383czy71 Osmic Enterprises (United States)'), (77796, 'https://ror.org/03847eh84', 'no_lang_code', 1, 'https://ror.org/03847eh84 Vigilant Cyber Systems (United States)'), (77797, 'https://ror.org/0385asg54', 'en', 1, 'https://ror.org/0385asg54 James E. Van Zandt VA Medical Center'), (77798, 'https://ror.org/0388j8115', 'no_lang_code', 1, 'https://ror.org/0388j8115 Kind Consumer (United Kingdom)'), (77799, 'https://ror.org/038a0vf09', 'no_lang_code', 1, 'https://ror.org/038a0vf09 Synaptive (Canada)'), (77800, 'https://ror.org/038bemd25', 'en', 1, 'https://ror.org/038bemd25 Islamic Azad University, Khoy Branch دانشگاه آزاد اسلامی واحد خوی'), (77801, 'https://ror.org/038cy9619', 'no_lang_code', 1, 'https://ror.org/038cy9619 Syncro Medical Innovations (United States)'), (77802, 'https://ror.org/038dne681', 'fr', 1, 'https://ror.org/038dne681 Centre Paramédical Santy'), (77803, 'https://ror.org/038dte259', 'en', 1, 'https://ror.org/038dte259 China Academy of Information and Communications Technology'), (77804, 'https://ror.org/038eaw106', 'no_lang_code', 1, 'https://ror.org/038eaw106 Stadtwerke Köln (Germany)'), (77805, 'https://ror.org/038ey3e97', 'en', 1, 'https://ror.org/038ey3e97 State Key Laboratory of Synthetic Chemistry 合成化学国家重点实验室'), (77806, 'https://ror.org/038f3wn67', 'no_lang_code', 1, 'https://ror.org/038f3wn67 Freiberger Compound Materials (Germany)'), (77807, 'https://ror.org/038ftp957', 'en', 1, 'https://ror.org/038ftp957 German Foreign Trade and Transport Academy'), (77808, 'https://ror.org/038fxc267', 'en', 1, 'https://ror.org/038fxc267 Department of International Relations and Cooperation'), (77809, 'https://ror.org/038h0z436', 'no_lang_code', 1, 'https://ror.org/038h0z436 Mitsubishi Corporation (United Kingdom)'), (77810, 'https://ror.org/038mfrf56', 'no_lang_code', 1, 'https://ror.org/038mfrf56 Agile Therapeutics (United States)'), (77811, 'https://ror.org/038mj2660', 'de', 1, 'https://ror.org/038mj2660 Eastern Switzerland University of Applied Sciences Ostschweizer Fachhochschule OST'), (77812, 'https://ror.org/038p1ty61', 'no_lang_code', 1, 'https://ror.org/038p1ty61 Jinyintan Hospital 武汉市金银潭医院'), (77813, 'https://ror.org/038pg5d86', 'no_lang_code', 1, 'https://ror.org/038pg5d86 Esteve Química (Spain)'), (77814, 'https://ror.org/038rzmb16', 'en', 1, 'https://ror.org/038rzmb16 Delaware Sea Grant'), (77815, 'https://ror.org/038st2x32', 'en', 1, 'https://ror.org/038st2x32 Lifenet Health'), (77816, 'https://ror.org/038te8s11', 'no_lang_code', 1, 'https://ror.org/038te8s11 Silatronix (United States)'), (77817, 'https://ror.org/038xt6s70', 'en', 1, 'https://ror.org/038xt6s70 International Medical And Welfare College 国際医療福祉専門学校'), (77818, 'https://ror.org/03905f420', 'en', 1, 'https://ror.org/03905f420 Forschungsinstitut Bioaktive Polymersysteme Research Institute Bioactive Polymer Systems'), (77819, 'https://ror.org/0390fys98', 'en', 1, 'https://ror.org/0390fys98 Centre for African Wetlands'), (77820, 'https://ror.org/03911p935', 'en', 1, 'https://ror.org/03911p935 World Health Organization - Afghanistan'), (77821, 'https://ror.org/0391nfv32', 'no_lang_code', 1, 'https://ror.org/0391nfv32 Neuronetics (United States)'), (77822, 'https://ror.org/0393vzh87', 'en', 1, 'https://ror.org/0393vzh87 Hearing4all'), (77823, 'https://ror.org/0397szj42', 'en', 1, 'https://ror.org/0397szj42 Tarsus University Tarsus Üniversitesi'), (77824, 'https://ror.org/03988gk19', 'no_lang_code', 1, 'https://ror.org/03988gk19 RiboNova (United States)'), (77825, 'https://ror.org/03993n266', 'no_lang_code', 1, 'https://ror.org/03993n266 TherapeuticsMD (United States)'), (77826, 'https://ror.org/039ayww40', 'en', 1, 'https://ror.org/039ayww40 The Yellow Tulip Project'), (77827, 'https://ror.org/039c5c386', 'no_lang_code', 1, 'https://ror.org/039c5c386 Concentrating Solar Power Services (Germany)'), (77828, 'https://ror.org/039c5k490', 'en', 1, 'https://ror.org/039c5k490 Centre For Wildlife Studies'), (77829, 'https://ror.org/039f79x37', 'de', 1, 'https://ror.org/039f79x37 M2C Institut für Angewandte Medienforschung'), (77830, 'https://ror.org/039hf2675', 'no_lang_code', 1, 'https://ror.org/039hf2675 Vestar (United States)'), (77831, 'https://ror.org/039hfcg55', 'no_lang_code', 1, 'https://ror.org/039hfcg55 Parade Technologies (United States)'), (77832, 'https://ror.org/039jwf091', 'en', 1, 'https://ror.org/039jwf091 Acatech Deutsche Akademie der Technikwissenschaften'), (77833, 'https://ror.org/039k6fv39', 'no_lang_code', 1, 'https://ror.org/039k6fv39 Vetservis (Slovakia)'), (77834, 'https://ror.org/039kcn609', 'en', 1, 'https://ror.org/039kcn609 Direktoratet for Strålevern og Atomtryggleik Norwegian Radiation and Nuclear Safety Authority'), (77835, 'https://ror.org/039kg2d97', 'no_lang_code', 1, 'https://ror.org/039kg2d97 YumaWorks (United States)'), (77836, 'https://ror.org/039kky066', 'en', 1, 'https://ror.org/039kky066 Mie Chuo Medical Center 三重中央医療センター'), (77837, 'https://ror.org/039mxz635', 'en', 1, 'https://ror.org/039mxz635 The Australian Prevention Partnership Centre'), (77838, 'https://ror.org/039n0s143', 'en', 1, 'https://ror.org/039n0s143 Ann Arbor VA Medical Center'), (77839, 'https://ror.org/039nc2k59', 'en', 1, 'https://ror.org/039nc2k59 Weihai Chest Hospital 威海市胸科医院'), (77840, 'https://ror.org/039ppzb98', 'de', 1, 'https://ror.org/039ppzb98 Forschungsinstitut Betriebliche Bildung'), (77841, 'https://ror.org/039q3gj90', 'no_lang_code', 1, 'https://ror.org/039q3gj90 Comecer (Italy)'), (77842, 'https://ror.org/039xjj562', 'no_lang_code', 1, 'https://ror.org/039xjj562 Rainbow Medical (Israel)'), (77843, 'https://ror.org/039ywcc21', 'no_lang_code', 1, 'https://ror.org/039ywcc21 Fukuda Denshi (Japan)'), (77844, 'https://ror.org/039zsrs49', 'es', 1, 'https://ror.org/039zsrs49 Instituto Tecnológico de Pabellón de Arteaga'), (77845, 'https://ror.org/039zt7w55', 'en', 1, 'https://ror.org/039zt7w55 University Hospital Kyoto Prefectural University of Medicine 京都府立医科大学附属病院'), (77846, 'https://ror.org/03a00yh12', 'no_lang_code', 1, 'https://ror.org/03a00yh12 Editas Medicine (United States)'), (77847, 'https://ror.org/03a2rz261', 'de', 1, 'https://ror.org/03a2rz261 Bildungsinstitut im Gesundheitswesen'), (77848, 'https://ror.org/03a6jbw84', 'fr', 1, 'https://ror.org/03a6jbw84 Agence Régionale de Santé Nouvelle-Aquitaine'), (77849, 'https://ror.org/03a7e0x93', 'de', 1, 'https://ror.org/03a7e0x93 München Klinik Harlaching'), (77850, 'https://ror.org/03a7t7c50', 'no_lang_code', 1, 'https://ror.org/03a7t7c50 Entropica Labs (Singapore)'), (77851, 'https://ror.org/03a8y0358', 'de', 1, 'https://ror.org/03a8y0358 FIVE - Forschungs- und Innovationsverbund an der Evangelischen Hochschule Freiburg'), (77852, 'https://ror.org/03aa31r16', 'en', 1, 'https://ror.org/03aa31r16 Islamic Azad University, Khorramabad Branch دانشگاه آزاد اسلامی واحد خرمآباد'), (77853, 'https://ror.org/03abd2075', 'de', 1, 'https://ror.org/03abd2075 Institut für Angewandte Statistik'), (77854, 'https://ror.org/03ac0z906', 'no_lang_code', 1, 'https://ror.org/03ac0z906 Helm (Germany)'), (77855, 'https://ror.org/03ac3bx22', 'en', 1, 'https://ror.org/03ac3bx22 South African Reserve Bank Suid-Afrikaanse Reserwebank'), (77856, 'https://ror.org/03acsgj85', 'no_lang_code', 1, 'https://ror.org/03acsgj85 Großmann Ingenieur Consult (Germany)'), (77857, 'https://ror.org/03adsge54', 'en', 1, 'https://ror.org/03adsge54 Institut für Angewandte Bodenbiologie Institute for Applied Soil Biology'), (77858, 'https://ror.org/03ae4gt79', 'no_lang_code', 1, 'https://ror.org/03ae4gt79 Shimadzu (Slovakia)'), (77859, 'https://ror.org/03afbsk96', 'no_lang_code', 1, 'https://ror.org/03afbsk96 Sonic Healthcare (Germany)'), (77860, 'https://ror.org/03agmnc67', 'en', 1, 'https://ror.org/03agmnc67 Shougang Institute of Technology 首钢工学院成立于'), (77861, 'https://ror.org/03aj00617', 'en', 1, 'https://ror.org/03aj00617 German Musicological Society Gesellschaft für Musikforschung'), (77862, 'https://ror.org/03apm9z31', 'no_lang_code', 1, 'https://ror.org/03apm9z31 NES (Slovakia)'), (77863, 'https://ror.org/03aqkee12', 'no_lang_code', 1, 'https://ror.org/03aqkee12 Uniqarta (United States)'), (77864, 'https://ror.org/03aqnr710', 'no_lang_code', 1, 'https://ror.org/03aqnr710 3B the Fiberglass (Belgium)'), (77865, 'https://ror.org/03av8vw41', 'no_lang_code', 1, 'https://ror.org/03av8vw41 Extremiti3D (United States)'), (77866, 'https://ror.org/03avk6553', 'no_lang_code', 1, 'https://ror.org/03avk6553 Agnostiq (Canada)'), (77867, 'https://ror.org/03aw29357', 'no_lang_code', 1, 'https://ror.org/03aw29357 Applied Spectral Imaging (United States)'), (77868, 'https://ror.org/03awqec28', 'en', 1, 'https://ror.org/03awqec28 Tecres (Italy)'), (77869, 'https://ror.org/03ax15t06', 'en', 1, 'https://ror.org/03ax15t06 Sheltering Arms Institute'), (77870, 'https://ror.org/03b08sh51', 'en', 1, 'https://ror.org/03b08sh51 Beltsville Agricultural Research Center'), (77871, 'https://ror.org/03b0jrb97', 'no_lang_code', 1, 'https://ror.org/03b0jrb97 GhScientific'), (77872, 'https://ror.org/03b1gtt44', 'en', 1, 'https://ror.org/03b1gtt44 Lipomic Healthcare (India)'), (77873, 'https://ror.org/03b33b866', 'no_lang_code', 1, 'https://ror.org/03b33b866 KettenbachDental (Germany)'), (77874, 'https://ror.org/03b368668', 'no_lang_code', 1, 'https://ror.org/03b368668 Intellia Therapeutics (United States)'), (77875, 'https://ror.org/03b3h3q73', 'no_lang_code', 1, 'https://ror.org/03b3h3q73 Graphcore (United Kingdom)'), (77876, 'https://ror.org/03b489496', 'en', 1, 'https://ror.org/03b489496 Woodlands Health Campus'), (77877, 'https://ror.org/03b4jx157', 'en', 1, 'https://ror.org/03b4jx157 Research Institute of Resource Insects 中国林业科学研究院资源昆虫研究所'), (77878, 'https://ror.org/03b57r242', 'no_lang_code', 1, 'https://ror.org/03b57r242 Himalayan Biodiversity Network'), (77879, 'https://ror.org/03b7d3909', 'en', 1, 'https://ror.org/03b7d3909 National Diabetes Obesity and Cholesterol Foundation'), (77880, 'https://ror.org/03b7hqk30', 'de', 1, 'https://ror.org/03b7hqk30 Berufsforschungs- und Beratungsinstitut für interdisziplinäre Technikgestaltung'), (77881, 'https://ror.org/03b7zcy46', 'de', 1, 'https://ror.org/03b7zcy46 Fachinstitut für Informatik und Grafikdesign'), (77882, 'https://ror.org/03b867n98', 'en', 1, 'https://ror.org/03b867n98 Tengzhou Central People''s Hospital 滕州市中心人民医院'), (77883, 'https://ror.org/03b9bgv12', 'no_lang_code', 1, 'https://ror.org/03b9bgv12 DemeRx (United States)'), (77884, 'https://ror.org/03bb5zx34', 'no_lang_code', 1, 'https://ror.org/03bb5zx34 Vactronix Scientific (United States)'), (77885, 'https://ror.org/03bd22t26', 'en', 1, 'https://ror.org/03bd22t26 Higashihiroshima Medical Center 東広島医療センター'), (77886, 'https://ror.org/03bd9r350', 'en', 1, 'https://ror.org/03bd9r350 The Salvation Army China 救世军'), (77887, 'https://ror.org/03bf2s235', 'de', 1, 'https://ror.org/03bf2s235 Institut für Umweltwirtschaftsanalysen Heidelberg'), (77888, 'https://ror.org/03bh13774', 'en', 1, 'https://ror.org/03bh13774 Wilhelm Löhe Hochschule für angewandte Wissenschaften Wilhelm Löhe University for Applied Sciences'), (77889, 'https://ror.org/03bh65t82', 'en', 1, 'https://ror.org/03bh65t82 Department of Chemistry and Earth Sciences Аддзяленне хіміі і навук аб Зямлі'), (77890, 'https://ror.org/03bkvs475', 'no_lang_code', 1, 'https://ror.org/03bkvs475 Sun Valley Technology (United States)'), (77891, 'https://ror.org/03bm0js68', 'no_lang_code', 1, 'https://ror.org/03bm0js68 Noddle (United States)'), (77892, 'https://ror.org/03bnhf738', 'no_lang_code', 1, 'https://ror.org/03bnhf738 Ambu (Denmark)'), (77893, 'https://ror.org/03bq5ar94', 'en', 1, 'https://ror.org/03bq5ar94 Stavanger Museum'), (77894, 'https://ror.org/03br9cy66', 'no_lang_code', 1, 'https://ror.org/03br9cy66 Cherry Biotech (France)'), (77895, 'https://ror.org/03brmsq64', 'no_lang_code', 1, 'https://ror.org/03brmsq64 Veriskin (United States)'), (77896, 'https://ror.org/03bwytd49', 'en', 1, 'https://ror.org/03bwytd49 HFC Hope for Children CRC Policy Center'), (77897, 'https://ror.org/03bxja712', 'en', 1, 'https://ror.org/03bxja712 University Of Information Technology သတင်းအချက်အလက်နည်းပညာတက္ကသိုလ်'), (77898, 'https://ror.org/03bysw038', 'no_lang_code', 1, 'https://ror.org/03bysw038 SFC Energy (Germany)'), (77899, 'https://ror.org/03byxpq91', 'en', 1, 'https://ror.org/03byxpq91 Institute for Biomedical Research and Innovation L’istituto per la Ricerca e l’innovazione Biomedica'), (77900, 'https://ror.org/03c05e753', 'no_lang_code', 1, 'https://ror.org/03c05e753 Misonix (United States)'), (77901, 'https://ror.org/03c1b7x32', 'no_lang_code', 1, 'https://ror.org/03c1b7x32 Institut für Angewandte Gewässerökologie (Germany)'), (77902, 'https://ror.org/03c3jbs89', 'en', 1, 'https://ror.org/03c3jbs89 Fraunhofer USA Center for Sustainable Energy Systems'), (77903, 'https://ror.org/03c46dy37', 'en', 1, 'https://ror.org/03c46dy37 Kerrville VA Medical Center'), (77904, 'https://ror.org/03c4nqn69', 'en', 1, 'https://ror.org/03c4nqn69 Institute of Earth Sciences, Academia Sinica 中央研究院地球科學研究所'), (77905, 'https://ror.org/03c4qaa56', 'en', 1, 'https://ror.org/03c4qaa56 Institute of Technology Management संस्थान प्रौद्योगिकी प्रबंधन (आई टी एम) डी आर डी ओ, मसूरी'), (77906, 'https://ror.org/03c55am86', 'no_lang_code', 1, 'https://ror.org/03c55am86 Nitto Boseki (Japan) 日東紡績株式会社'), (77907, 'https://ror.org/03c5ds320', 'no_lang_code', 1, 'https://ror.org/03c5ds320 Oticon Medical (Denmark)'), (77908, 'https://ror.org/03c9s1h69', 'no_lang_code', 1, 'https://ror.org/03c9s1h69 Ortho Tain (United States)'), (77909, 'https://ror.org/03catpf85', 'de', 1, 'https://ror.org/03catpf85 Landesinstitut für Präventives Handeln'), (77910, 'https://ror.org/03cfhyx33', 'en', 1, 'https://ror.org/03cfhyx33 Australian Taxation Office'), (77911, 'https://ror.org/03cfv5b91', 'en', 1, 'https://ror.org/03cfv5b91 Shanghai Public Security Bureau 上海市公安局'), (77912, 'https://ror.org/03cfzvy87', 'no_lang_code', 1, 'https://ror.org/03cfzvy87 Memcomputing (United States)'), (77913, 'https://ror.org/03cgqjh12', 'no_lang_code', 1, 'https://ror.org/03cgqjh12 US Night Vision (United States)'), (77914, 'https://ror.org/03chegm58', 'no_lang_code', 1, 'https://ror.org/03chegm58 Cetex (Germany)'), (77915, 'https://ror.org/03cjnda72', 'no_lang_code', 1, 'https://ror.org/03cjnda72 Topia Technology (United States)'), (77916, 'https://ror.org/03ckjgz67', 'no_lang_code', 1, 'https://ror.org/03ckjgz67 Rayner (United States)'), (77917, 'https://ror.org/03ckw1950', 'en', 1, 'https://ror.org/03ckw1950 Eastmed'), (77918, 'https://ror.org/03ckxwf91', 'en', 1, 'https://ror.org/03ckxwf91 RIKEN Center for Advanced Intelligence Project 特定国立研究開発法人理化学研究所 革新知能統合研究センタ'), (77919, 'https://ror.org/03cst3c12', 'no_lang_code', 1, 'https://ror.org/03cst3c12 Yidu Central Hospital of Weifang 潍坊市益都中心医院'), (77920, 'https://ror.org/03cz6ea04', 'no_lang_code', 1, 'https://ror.org/03cz6ea04 Bainbridge Development Corporation (United States)'), (77921, 'https://ror.org/03d02ry74', 'no_lang_code', 1, 'https://ror.org/03d02ry74 Sol-Gel Technologies (Israel)'), (77922, 'https://ror.org/03d0gny34', 'en', 1, 'https://ror.org/03d0gny34 Institute of Agricultural Machinery 農業環境変動研究センター'), (77923, 'https://ror.org/03d0nge43', 'en', 1, 'https://ror.org/03d0nge43 Fargo VA Health Care System'), (77924, 'https://ror.org/03d23eg52', 'no_lang_code', 1, 'https://ror.org/03d23eg52 Mycronic (Sweden)'), (77925, 'https://ror.org/03d2atk85', 'no_lang_code', 1, 'https://ror.org/03d2atk85 Oculus Optikgeräte (Germany)'), (77926, 'https://ror.org/03d3en416', 'no_lang_code', 1, 'https://ror.org/03d3en416 Rockley Photonics (United States)'), (77927, 'https://ror.org/03d3nyr92', 'en', 1, 'https://ror.org/03d3nyr92 National Bureau of Animal Genetic Resources राष्ट्रीय पशु आनुवंशिक संसाधन ब्यूरो'), (77928, 'https://ror.org/03d5fcq90', 'no_lang_code', 1, 'https://ror.org/03d5fcq90 Curt G Joa (United States)'), (77929, 'https://ror.org/03d66dp54', 'no_lang_code', 1, 'https://ror.org/03d66dp54 Clínica MEDS (Chile)'), (77930, 'https://ror.org/03d6nx810', 'no_lang_code', 1, 'https://ror.org/03d6nx810 Qorvo (United Kingdom)'), (77931, 'https://ror.org/03d76x287', 'no_lang_code', 1, 'https://ror.org/03d76x287 Bau- und Liegenschaftsbetrieb des Landes Nordrhein-Westfalen (Germany)'), (77932, 'https://ror.org/03d7gms38', 'no_lang_code', 1, 'https://ror.org/03d7gms38 Q2 Solutions (United Kingdom)'), (77933, 'https://ror.org/03d873a26', 'en', 1, 'https://ror.org/03d873a26 Medical Business College 医療ビジネス専門学校'), (77934, 'https://ror.org/03d908h34', 'no_lang_code', 1, 'https://ror.org/03d908h34 TrueBinding (United States)'), (77935, 'https://ror.org/03dak6a36', 'no_lang_code', 1, 'https://ror.org/03dak6a36 Asics (Japan) アシックス'), (77936, 'https://ror.org/03de09841', 'no_lang_code', 1, 'https://ror.org/03de09841 SoundPipe Therapeutics (United States)'), (77937, 'https://ror.org/03dfgbb18', 'en', 1, 'https://ror.org/03dfgbb18 Institut für Sozialinnovation Institute for Social Innovation'), (77938, 'https://ror.org/03dhfj813', 'no_lang_code', 1, 'https://ror.org/03dhfj813 Omnitech Robotics (United States)'), (77939, 'https://ror.org/03djv3266', 'no_lang_code', 1, 'https://ror.org/03djv3266 Tesat-Spacecom (Germany)'), (77940, 'https://ror.org/03djxm153', 'no_lang_code', 1, 'https://ror.org/03djxm153 EDOSEN 江戸川学園おおたかの森専門学校'), (77941, 'https://ror.org/03dk72h16', 'no_lang_code', 1, 'https://ror.org/03dk72h16 Seven Networks (United States)'); INSERT INTO `rors` VALUES (77942, 'https://ror.org/03dkwk174', 'en', 1, 'https://ror.org/03dkwk174 Tropical Bioscience and Biotechnology Research Institute 热带生物技术研究所'), (77943, 'https://ror.org/03dpves30', 'no_lang_code', 1, 'https://ror.org/03dpves30 Estech Systems (United States)'), (77944, 'https://ror.org/03dqajd65', 'de', 1, 'https://ror.org/03dqajd65 Forschungsinstitut für Beschäftigung Arbeit Qualifikation'), (77945, 'https://ror.org/03dqqhs56', 'no_lang_code', 1, 'https://ror.org/03dqqhs56 Nippon Steel Chemical and Material (Japan) 日鉄ケミカル&マテリアル'), (77946, 'https://ror.org/03dsp4s22', 'en', 1, 'https://ror.org/03dsp4s22 International Thorium Molten-Salt Forum トリウム熔融塩原子炉'), (77947, 'https://ror.org/03dvxen85', 'no_lang_code', 1, 'https://ror.org/03dvxen85 Syktyvkar Forest Institute Сыктывкарский Лесной Институт'), (77948, 'https://ror.org/03dwh7z09', 'no_lang_code', 1, 'https://ror.org/03dwh7z09 Toyota Motor Corporation (Germany)'), (77949, 'https://ror.org/03dyq3r35', 'no_lang_code', 1, 'https://ror.org/03dyq3r35 Path BioAnalytics (United States)'), (77950, 'https://ror.org/03dyvyv84', 'de', 1, 'https://ror.org/03dyvyv84 Felsenweg-Institut'), (77951, 'https://ror.org/03dzz0y33', 'en', 1, 'https://ror.org/03dzz0y33 Shinshu Medical and Welfare College 信州医療福祉専門学校'), (77952, 'https://ror.org/03e04x797', 'fr', 1, 'https://ror.org/03e04x797 Hôpital René-Muret'), (77953, 'https://ror.org/03e150v94', 'no_lang_code', 1, 'https://ror.org/03e150v94 Central Alliance (United Kingdom)'), (77954, 'https://ror.org/03e21p220', 'en', 1, 'https://ror.org/03e21p220 Central Hokkaido Animal Health Center 県央家畜保健衛生所'), (77955, 'https://ror.org/03e28fz53', 'en', 1, 'https://ror.org/03e28fz53 Christus Stehlin Foundation for Cancer Research'), (77956, 'https://ror.org/03e5fmj95', 'it', 1, 'https://ror.org/03e5fmj95 BresciaMEd'), (77957, 'https://ror.org/03e5gcq07', 'de', 1, 'https://ror.org/03e5gcq07 Institut für Ausbildung Jugendlicher'), (77958, 'https://ror.org/03e6g0j64', 'no_lang_code', 1, 'https://ror.org/03e6g0j64 Shuttle Pharmaceuticals (United States)'), (77959, 'https://ror.org/03e6rtv28', 'no_lang_code', 1, 'https://ror.org/03e6rtv28 University Technical Services (United States)'), (77960, 'https://ror.org/03e7w2h22', 'en', 1, 'https://ror.org/03e7w2h22 NewClimate Institute'), (77961, 'https://ror.org/03e8tm275', 'en', 1, 'https://ror.org/03e8tm275 Shriners Hospitals for Children'), (77962, 'https://ror.org/03ed7ma04', 'en', 1, 'https://ror.org/03ed7ma04 Urban Upbound'), (77963, 'https://ror.org/03ej9s373', 'de', 1, 'https://ror.org/03ej9s373 Institut für Industrieaerodynamik'), (77964, 'https://ror.org/03ejr8e18', 'en', 1, 'https://ror.org/03ejr8e18 Samson Institute For Ageing Research'), (77965, 'https://ror.org/03erhnf31', 'en', 1, 'https://ror.org/03erhnf31 Mattapally Technologies'), (77966, 'https://ror.org/03ev0dv90', 'no_lang_code', 1, 'https://ror.org/03ev0dv90 Bregau (Germany)'), (77967, 'https://ror.org/03ex6j864', 'en', 1, 'https://ror.org/03ex6j864 Agence Nationale de Radioprotection National Radiation Protection Agency of Cameroon'), (77968, 'https://ror.org/03ey2p503', 'no_lang_code', 1, 'https://ror.org/03ey2p503 Linares Medical Devices (United States)'), (77969, 'https://ror.org/03ez0zf69', 'en', 1, 'https://ror.org/03ez0zf69 Royal Observatory in Greenwich'), (77970, 'https://ror.org/03ezxy459', 'no_lang_code', 1, 'https://ror.org/03ezxy459 Patz Materials and Technologies (United States)'), (77971, 'https://ror.org/03f504c84', 'no_lang_code', 1, 'https://ror.org/03f504c84 Dow Chemical (France)'), (77972, 'https://ror.org/03f6bb727', 'no_lang_code', 1, 'https://ror.org/03f6bb727 IGM Biosciences (United States)'), (77973, 'https://ror.org/03f84d710', 'en', 1, 'https://ror.org/03f84d710 Islamic Azad University, Malayer Branch دانشگاه آزاد اسلامی واحد ملایر'), (77974, 'https://ror.org/03f8e0241', 'en', 1, 'https://ror.org/03f8e0241 Allensbach Institute Institut für Demoskopie Allensbach'), (77975, 'https://ror.org/03f9ys929', 'no_lang_code', 1, 'https://ror.org/03f9ys929 Giuliani (Italy)'), (77976, 'https://ror.org/03fbrdz61', 'no_lang_code', 1, 'https://ror.org/03fbrdz61 Guided Therapy Systems (United States)'), (77977, 'https://ror.org/03fcb4d35', 'fr', 1, 'https://ror.org/03fcb4d35 Pigier Côte d''Ivoire'), (77978, 'https://ror.org/03fg5ns40', 'en', 1, 'https://ror.org/03fg5ns40 MIT Sea Grant'), (77979, 'https://ror.org/03fk15c97', 'no_lang_code', 1, 'https://ror.org/03fk15c97 Itaconix (United Kingdom)'), (77980, 'https://ror.org/03fn78r73', 'no_lang_code', 1, 'https://ror.org/03fn78r73 Vista Equity Partners (United States)'), (77981, 'https://ror.org/03fp59e94', 'en', 1, 'https://ror.org/03fp59e94 Institut für Grundwasserökologie Institute of Groundwater Ecology'), (77982, 'https://ror.org/03fpcyw06', 'no_lang_code', 1, 'https://ror.org/03fpcyw06 Synetics Systems Engineering Corp (United States)'), (77983, 'https://ror.org/03fs7fp11', 'no_lang_code', 1, 'https://ror.org/03fs7fp11 SHL Medical (Switzerland)'), (77984, 'https://ror.org/03fts7x30', 'en', 1, 'https://ror.org/03fts7x30 Yancheng Central Blood Station 盐城市中心血站'), (77985, 'https://ror.org/03fv7j188', 'en', 1, 'https://ror.org/03fv7j188 Central Citrus Research Institute केन्द्रीय लिंबूवर्गीय संशोधन केंद्र'), (77986, 'https://ror.org/03fvjsd23', 'no_lang_code', 1, 'https://ror.org/03fvjsd23 Prosthetic Design + Research (United States)'), (77987, 'https://ror.org/03fw4bm79', 'no_lang_code', 1, 'https://ror.org/03fw4bm79 Halocarbon (United States)'), (77988, 'https://ror.org/03fwhmm19', 'en', 1, 'https://ror.org/03fwhmm19 Center for Constitutional Governance'), (77989, 'https://ror.org/03fzgzt45', 'en', 1, 'https://ror.org/03fzgzt45 Saint Regis Mohawk Tribe'), (77990, 'https://ror.org/03g386s80', 'no_lang_code', 1, 'https://ror.org/03g386s80 Maspoma (Slovakia)'), (77991, 'https://ror.org/03g3vwd67', 'no_lang_code', 1, 'https://ror.org/03g3vwd67 Bridge Of Nucleic Acids Chemistry (Japan)'), (77992, 'https://ror.org/03g4xtf80', 'no_lang_code', 1, 'https://ror.org/03g4xtf80 Abilia (United Kingdom)'), (77993, 'https://ror.org/03g878p38', 'no_lang_code', 1, 'https://ror.org/03g878p38 MicroMega (France)'), (77994, 'https://ror.org/03g886m74', 'en', 1, 'https://ror.org/03g886m74 Saitama Prefectural Police 埼玉県警察'), (77995, 'https://ror.org/03gd99e09', 'en', 1, 'https://ror.org/03gd99e09 Center of Immunology Pierre Fabre Centre d’Immunologie Pierre Fabre'), (77996, 'https://ror.org/03gdvgj95', 'en', 1, 'https://ror.org/03gdvgj95 Nanjing Municipal Center for Disease Control And Prevention 南京市疾病预防控制中心'), (77997, 'https://ror.org/03ge76j81', 'no_lang_code', 1, 'https://ror.org/03ge76j81 Kiio (United States)'), (77998, 'https://ror.org/03gejkf67', 'no_lang_code', 1, 'https://ror.org/03gejkf67 Eloquence Communications (United States)'), (77999, 'https://ror.org/03gh4m991', 'en', 1, 'https://ror.org/03gh4m991 Yueyang Second People''s Hospital 岳阳市二人民医院'), (78000, 'https://ror.org/03gjp8j03', 'no_lang_code', 1, 'https://ror.org/03gjp8j03 Pratt & Miller (United States)'), (78001, 'https://ror.org/03gmwcy77', 'en', 1, 'https://ror.org/03gmwcy77 Centre for International Law Research and Policy'), (78002, 'https://ror.org/03gmxkp43', 'no_lang_code', 1, 'https://ror.org/03gmxkp43 Vision Technology (United States)'), (78003, 'https://ror.org/03gnk9609', 'no_lang_code', 1, 'https://ror.org/03gnk9609 Sab Biotherapeutics (United States)'), (78004, 'https://ror.org/03grn3q81', 'no_lang_code', 1, 'https://ror.org/03grn3q81 Lenzing (United Kingdom)'), (78005, 'https://ror.org/03gtgkk57', 'no_lang_code', 1, 'https://ror.org/03gtgkk57 Ore Holdings (United States)'), (78006, 'https://ror.org/03gvee390', 'no_lang_code', 1, 'https://ror.org/03gvee390 Institut für Bahntechnik (Germany)'), (78007, 'https://ror.org/03gxbhx27', 'no_lang_code', 1, 'https://ror.org/03gxbhx27 Somnics (Taiwan)'), (78008, 'https://ror.org/03gzhtt54', 'no_lang_code', 1, 'https://ror.org/03gzhtt54 Crystal Consulting (Germany)'), (78009, 'https://ror.org/03gzxs418', 'en', 1, 'https://ror.org/03gzxs418 Hochschule für öffentliche Verwaltung und Finanzen Ludwigsburg University of Applied Sciences - Public Administration and Finance Ludwigsburg'), (78010, 'https://ror.org/03h0b2y74', 'en', 1, 'https://ror.org/03h0b2y74 Ninghai First Hospital Medicare and Health Group 宁海县第一医院'), (78011, 'https://ror.org/03h2q9n18', 'en', 1, 'https://ror.org/03h2q9n18 Tennessee Space Grant Consortium'), (78012, 'https://ror.org/03h7jyq46', 'en', 1, 'https://ror.org/03h7jyq46 Foshan Second People''s Hospital 佛山市第二人民医院'), (78013, 'https://ror.org/03h9w0610', 'fr', 1, 'https://ror.org/03h9w0610 Hôpital Sainte-Périne'), (78014, 'https://ror.org/03ha8dy44', 'no_lang_code', 1, 'https://ror.org/03ha8dy44 NewAge (United States)'), (78015, 'https://ror.org/03hakdk41', 'en', 1, 'https://ror.org/03hakdk41 UNC/NCSU Joint Department of Biomedical Engineering'), (78016, 'https://ror.org/03hbkgr83', 'en', 1, 'https://ror.org/03hbkgr83 Chengdu Center for Disease Control and Prevention 成都市疾病预防控制中心'), (78017, 'https://ror.org/03hh80g63', 'no_lang_code', 1, 'https://ror.org/03hh80g63 Lipocine (United States)'), (78018, 'https://ror.org/03hhrzm12', 'en', 1, 'https://ror.org/03hhrzm12 Islamic Azad University, Bushehr Branch دانشگاه آزاد اسلامي واحد بوشهر'), (78019, 'https://ror.org/03hjnde67', 'no_lang_code', 1, 'https://ror.org/03hjnde67 ClearPoint Neuro (United States)'), (78020, 'https://ror.org/03hm29g42', 'no_lang_code', 1, 'https://ror.org/03hm29g42 KHD Humboldt Wedag (Germany)'), (78021, 'https://ror.org/03hnh7f92', 'no_lang_code', 1, 'https://ror.org/03hnh7f92 Fürstenberg Institut (Germany)'), (78022, 'https://ror.org/03hqjqp33', 'no_lang_code', 1, 'https://ror.org/03hqjqp33 Arcadis (Netherlands)'), (78023, 'https://ror.org/03hsr7383', 'en', 1, 'https://ror.org/03hsr7383 Fukuoka Higashi Medical Center 福岡東医療センター'), (78024, 'https://ror.org/03htx4q40', 'en', 1, 'https://ror.org/03htx4q40 Carbon Valley Animal Hospital'), (78025, 'https://ror.org/03hvanq85', 'en', 1, 'https://ror.org/03hvanq85 Fresno VA Medical Center'), (78026, 'https://ror.org/03hx70e06', 'no_lang_code', 1, 'https://ror.org/03hx70e06 IFU Privates Institut für Analytik (Germany)'), (78027, 'https://ror.org/03hz7e558', 'en', 1, 'https://ror.org/03hz7e558 Institute of Economic Affairs'), (78028, 'https://ror.org/03hzyvt65', 'id', 1, 'https://ror.org/03hzyvt65 Universitas Pahlawan Tuanku Tambusai'), (78029, 'https://ror.org/03j042d77', 'no_lang_code', 1, 'https://ror.org/03j042d77 Osemi (United States)'), (78030, 'https://ror.org/03j0pv717', 'es', 1, 'https://ror.org/03j0pv717 Consejo Superior De Salud Publica'), (78031, 'https://ror.org/03j1wg370', 'en', 1, 'https://ror.org/03j1wg370 Leibniz Institute for Jewish History and Culture – Simon Dubnow Leibniz-Institut für jüdische Geschichte und Kultur – Simon Dubnow'), (78032, 'https://ror.org/03j2gz928', 'no_lang_code', 1, 'https://ror.org/03j2gz928 Semandex Networks (United States)'), (78033, 'https://ror.org/03j3hnp65', 'de', 1, 'https://ror.org/03j3hnp65 Gouverneur Kinsbergencentrum'), (78034, 'https://ror.org/03j450x81', 'en', 1, 'https://ror.org/03j450x81 Nanyang Medical College 南陽醫學高等專科學校'), (78035, 'https://ror.org/03j4gka24', 'en', 1, 'https://ror.org/03j4gka24 Pingliang People''s Hospital 平凉市人民医院'), (78036, 'https://ror.org/03j4q6459', 'no_lang_code', 1, 'https://ror.org/03j4q6459 CryoRay Coolers (United States)'), (78037, 'https://ror.org/03j5g5d55', 'nl', 1, 'https://ror.org/03j5g5d55 De Kinderkliniek'), (78038, 'https://ror.org/03j7j4362', 'en', 1, 'https://ror.org/03j7j4362 Kagoshima Prefectural Library 鹿児島県立図書館'), (78039, 'https://ror.org/03j7qvg12', 'no_lang_code', 1, 'https://ror.org/03j7qvg12 Typs (Canada)'), (78040, 'https://ror.org/03j87dy80', 'en', 1, 'https://ror.org/03j87dy80 Directorate of Coldwater Fisheries Research, ठंडा पानी मत्स्य निदेशालय'), (78041, 'https://ror.org/03j8xrv28', 'no_lang_code', 1, 'https://ror.org/03j8xrv28 Urtek Water Technologies (Spain)'), (78042, 'https://ror.org/03j9dwf95', 'en', 1, 'https://ror.org/03j9dwf95 Mackay Junior College of Medicine, Nursing and Management 馬偕醫護管理專科學校'), (78043, 'https://ror.org/03ja1ng46', 'da', 1, 'https://ror.org/03ja1ng46 Nordisk Fond for Miljø og Udvikling'), (78044, 'https://ror.org/03jc5ts66', 'no_lang_code', 1, 'https://ror.org/03jc5ts66 Tronox (United States)'), (78045, 'https://ror.org/03jc8h907', 'no_lang_code', 1, 'https://ror.org/03jc8h907 Aurigon (Hungary)'), (78046, 'https://ror.org/03jddr449', 'en', 1, 'https://ror.org/03jddr449 Thailand Board of Investment สำนักงานคณะกรรมการส่งเสริมการลงทุน'), (78047, 'https://ror.org/03jg7pr54', 'no_lang_code', 1, 'https://ror.org/03jg7pr54 Roche (Nicaragua)'), (78048, 'https://ror.org/03jgt3n70', 'en', 1, 'https://ror.org/03jgt3n70 Fraunhofer Project Centre Wolfsburg Fraunhofer-Projektzentrum Wolfsburg'), (78049, 'https://ror.org/03jmpnx55', 'no_lang_code', 1, 'https://ror.org/03jmpnx55 VOLTARIS (Germany)'), (78050, 'https://ror.org/03jp18535', 'no_lang_code', 1, 'https://ror.org/03jp18535 gec-co Global Engineering & Consulting (Germany)'), (78051, 'https://ror.org/03jq3zh43', 'en', 1, 'https://ror.org/03jq3zh43 Institute for Children, Poverty & Homelessness'), (78052, 'https://ror.org/03jqa1k37', 'no_lang_code', 1, 'https://ror.org/03jqa1k37 Cercacor (United States)'), (78053, 'https://ror.org/03jqeq923', 'en', 1, 'https://ror.org/03jqeq923 Shonan University of Medical Sciences 湘南医療大学'), (78054, 'https://ror.org/03jrtp196', 'en', 1, 'https://ror.org/03jrtp196 Miyazaki Welfare Medical College 宮崎福祉医療カレッジ'), (78055, 'https://ror.org/03jte8779', 'no_lang_code', 1, 'https://ror.org/03jte8779 Oceana Sensor (United States)'), (78056, 'https://ror.org/03jwhs418', 'no_lang_code', 1, 'https://ror.org/03jwhs418 Grail (United States)'), (78057, 'https://ror.org/03jy5m525', 'de', 1, 'https://ror.org/03jy5m525 Städtisches Museum Schloss Rheydt'), (78058, 'https://ror.org/03jy6ar87', 'en', 1, 'https://ror.org/03jy6ar87 Instruments Research & Development Establishment'), (78059, 'https://ror.org/03jyr3j92', 'de', 1, 'https://ror.org/03jyr3j92 Staatliche Lehr- und Versuchsanstalt für Gartenbau'), (78060, 'https://ror.org/03k0qge96', 'en', 1, 'https://ror.org/03k0qge96 The Ream Foundation'), (78061, 'https://ror.org/03k30eb14', 'no_lang_code', 1, 'https://ror.org/03k30eb14 ifp Consulting (Germany)'), (78062, 'https://ror.org/03k3t0n26', 'en', 1, 'https://ror.org/03k3t0n26 KDZ - Centre for Public Administration Research Zentrum für Verwaltungsforschung'), (78063, 'https://ror.org/03k4zrh82', 'en', 1, 'https://ror.org/03k4zrh82 The People''s Hospital of LinXia 临夏州人民医院'), (78064, 'https://ror.org/03k5dfv06', 'de', 1, 'https://ror.org/03k5dfv06 Behörde für Gesundheit und Verbraucherschutz'), (78065, 'https://ror.org/03k8xc952', 'no_lang_code', 1, 'https://ror.org/03k8xc952 NexGen Composites (United States)'), (78066, 'https://ror.org/03k9mc136', 'no_lang_code', 1, 'https://ror.org/03k9mc136 Nexogen (United States)'), (78067, 'https://ror.org/03ka0hg89', 'en', 1, 'https://ror.org/03ka0hg89 Nova Laboratories'), (78068, 'https://ror.org/03kc5dr38', 'no_lang_code', 1, 'https://ror.org/03kc5dr38 Cambridge Mechatronics (United Kingdom)'), (78069, 'https://ror.org/03kczcb35', 'no_lang_code', 1, 'https://ror.org/03kczcb35 Merus (Netherlands)'), (78070, 'https://ror.org/03kdbx663', 'en', 1, 'https://ror.org/03kdbx663 Hummingbird Monitoring Network'), (78071, 'https://ror.org/03kfw6k71', 'no_lang_code', 1, 'https://ror.org/03kfw6k71 Antea Group (France)'), (78072, 'https://ror.org/03kgwfd55', 'en', 1, 'https://ror.org/03kgwfd55 Chinese Society for Cell Biology 中国细胞生物学学会'), (78073, 'https://ror.org/03kgydk02', 'en', 1, 'https://ror.org/03kgydk02 Harrison International Peace Hospital 衡水市人民医院'), (78074, 'https://ror.org/03kk36z33', 'no_lang_code', 1, 'https://ror.org/03kk36z33 Cousin Biotech (France)'), (78075, 'https://ror.org/03kmaet43', 'no_lang_code', 1, 'https://ror.org/03kmaet43 Stadtwerke Jülich (Germany)'), (78076, 'https://ror.org/03knb5g53', 'en', 1, 'https://ror.org/03knb5g53 Institute of Environmental Rehabilitation and Conservation 環境修復保全機構'), (78077, 'https://ror.org/03knm9781', 'no_lang_code', 1, 'https://ror.org/03knm9781 Verasci (United States)'), (78078, 'https://ror.org/03kq4dk33', 'no_lang_code', 1, 'https://ror.org/03kq4dk33 Bicycle Therapeutics (United Kingdom)'), (78079, 'https://ror.org/03kqvwv81', 'en', 1, 'https://ror.org/03kqvwv81 Cooperative Mobility for Competitive Megaregions'), (78080, 'https://ror.org/03krdwr84', 'en', 1, 'https://ror.org/03krdwr84 Guigang Orthopedic Hospital of Integrated Traditional Chinese and Western Medicine 贵港市中西医结合骨科医院'), (78081, 'https://ror.org/03ks20z28', 'en', 1, 'https://ror.org/03ks20z28 Instituto Nacional de Calidad National Institute of Quality'), (78082, 'https://ror.org/03ks9ad25', 'no_lang_code', 1, 'https://ror.org/03ks9ad25 Hydrogen Slovakia (Slovakia)'), (78083, 'https://ror.org/03kv24k79', 'no_lang_code', 1, 'https://ror.org/03kv24k79 Platinum Group Coatings (United States)'), (78084, 'https://ror.org/03kw8ep35', 'no_lang_code', 1, 'https://ror.org/03kw8ep35 Industrial & Marine Service (Germany)'), (78085, 'https://ror.org/03kwk6445', 'no_lang_code', 1, 'https://ror.org/03kwk6445 Seiren (Japan) セーレン株式会社'), (78086, 'https://ror.org/03kx02w94', 'en', 1, 'https://ror.org/03kx02w94 Experimental Drug Development Centre'), (78087, 'https://ror.org/03kxtd827', 'no_lang_code', 1, 'https://ror.org/03kxtd827 Hoyu (Japan) ホーユー株式会社'), (78088, 'https://ror.org/03kzpar53', 'en', 1, 'https://ror.org/03kzpar53 Haikou Experimental Station 中国热带农业科学院海口实验站'), (78089, 'https://ror.org/03m06c639', 'no_lang_code', 1, 'https://ror.org/03m06c639 Immunolight (United States)'), (78090, 'https://ror.org/03m1xf462', 'no_lang_code', 1, 'https://ror.org/03m1xf462 Sony Olympus Medical Solutions (Japan)'), (78091, 'https://ror.org/03m2wvf63', 'no_lang_code', 1, 'https://ror.org/03m2wvf63 Nonlinear Control Strategies (United States)'), (78092, 'https://ror.org/03m691g30', 'en', 1, 'https://ror.org/03m691g30 Sabah Parks Taman-Taman Sabah'), (78093, 'https://ror.org/03m73t838', 'no_lang_code', 1, 'https://ror.org/03m73t838 RenBio (United States)'), (78094, 'https://ror.org/03m78yh78', 'no_lang_code', 1, 'https://ror.org/03m78yh78 Raven (United States)'), (78095, 'https://ror.org/03m8v6t10', 'en', 1, 'https://ror.org/03m8v6t10 Open Data Infrastructure for Social Science and Economic Innovations'), (78096, 'https://ror.org/03mc14w65', 'no_lang_code', 1, 'https://ror.org/03mc14w65 Cellix Bio (India)'), (78097, 'https://ror.org/03mf2zr07', 'en', 1, 'https://ror.org/03mf2zr07 Chinese Society of Plant Nutrition and Fertilizer Science 中国植物营养与肥料学会'), (78098, 'https://ror.org/03mg0ce08', 'en', 1, 'https://ror.org/03mg0ce08 Interstaatliche Hochschule für Technik NTB Buchs Interstate University of Applied Sciences of Technology Buchs'), (78099, 'https://ror.org/03mhrjr30', 'en', 1, 'https://ror.org/03mhrjr30 Hiroshima Prefectural Library 広島県立図書館'), (78100, 'https://ror.org/03mhtfp97', 'no_lang_code', 1, 'https://ror.org/03mhtfp97 ECA Medical (United States)'), (78101, 'https://ror.org/03mhtm362', 'no_lang_code', 1, 'https://ror.org/03mhtm362 Phyre Technologies (United States)'), (78102, 'https://ror.org/03mk1jb23', 'en', 1, 'https://ror.org/03mk1jb23 Center for Cultural Heritage Technology'), (78103, 'https://ror.org/03mk77722', 'en', 1, 'https://ror.org/03mk77722 Xinjiang Police College'), (78104, 'https://ror.org/03mp7ed76', 'no_lang_code', 1, 'https://ror.org/03mp7ed76 Volition (United States)'), (78105, 'https://ror.org/03mq2gv27', 'no_lang_code', 1, 'https://ror.org/03mq2gv27 Cygnal Therapeutics (United States)'), (78106, 'https://ror.org/03mvs6080', 'en', 1, 'https://ror.org/03mvs6080 Yangzhou Municipal Meteorological Bureau 扬州市气象局'), (78107, 'https://ror.org/03mw5zj47', 'en', 1, 'https://ror.org/03mw5zj47 Research Centre Imarat రీసెర్చ్ సెంటర్ ఇమారాత్'), (78108, 'https://ror.org/03mwaf730', 'en', 1, 'https://ror.org/03mwaf730 Center for Nano Science and Technology'), (78109, 'https://ror.org/03mwwhq75', 'en', 1, 'https://ror.org/03mwwhq75 Higher School of Innovation Management Высшая школа инновационного менеджмента'), (78110, 'https://ror.org/03mxp7j39', 'no_lang_code', 1, 'https://ror.org/03mxp7j39 Rocky Mountain Orthodontics (United States)'), (78111, 'https://ror.org/03mxyqx84', 'en', 1, 'https://ror.org/03mxyqx84 National Center for Climate Change Strategy and International Cooperation 国家应对气候变化战略研究和国际合作中心'), (78112, 'https://ror.org/03mzw7781', 'en', 1, 'https://ror.org/03mzw7781 Jilin Medical University 吉林医药学院'), (78113, 'https://ror.org/03n01yk34', 'de', 1, 'https://ror.org/03n01yk34 Institut für Netz- und Anwendungstechnik'), (78114, 'https://ror.org/03n6j5f16', 'en', 1, 'https://ror.org/03n6j5f16 The Institute of Military History Vojenský historický ústav'), (78115, 'https://ror.org/03n9hr695', 'no_lang_code', 1, 'https://ror.org/03n9hr695 China National GeneBank 国家基因库'), (78116, 'https://ror.org/03n9ycw45', 'no_lang_code', 1, 'https://ror.org/03n9ycw45 Institut für gewerbliche Wasserwirtschaft und Luftreinhaltung (Germany)'), (78117, 'https://ror.org/03na1cy38', 'no_lang_code', 1, 'https://ror.org/03na1cy38 R-Dex Systems (United States)'), (78118, 'https://ror.org/03na1e324', 'de', 1, 'https://ror.org/03na1e324 Ostbayerisches Technologie-Transfer-Institut'), (78119, 'https://ror.org/03na52343', 'en', 1, 'https://ror.org/03na52343 Association for the Development of Douro Viticulture Associação para o Desenvolvimento da Viticultura Duriense'), (78120, 'https://ror.org/03nag2598', 'no_lang_code', 1, 'https://ror.org/03nag2598 NGK Insulators (United Kingdom)'), (78121, 'https://ror.org/03nas7697', 'en', 1, 'https://ror.org/03nas7697 Jiang Xi Institute for Drug Control 江西省药品检验检测研究院'), (78122, 'https://ror.org/03ncps145', 'en', 1, 'https://ror.org/03ncps145 University of Torbat Heydarieh دانشگاه تربت حیدریه'), (78123, 'https://ror.org/03nhrqg41', 'no_lang_code', 1, 'https://ror.org/03nhrqg41 ReThink Medical (United States)'), (78124, 'https://ror.org/03nkb8t76', 'de', 1, 'https://ror.org/03nkb8t76 Pädea'), (78125, 'https://ror.org/03nmxrr49', 'en', 1, 'https://ror.org/03nmxrr49 Instituto Universitario de Investigación en Ciencias de la Salud Research Institute of Health Sciences'), (78126, 'https://ror.org/03nnn1t12', 'no_lang_code', 1, 'https://ror.org/03nnn1t12 Outokumpu (United Kingdom)'), (78127, 'https://ror.org/03np1sm50', 'no_lang_code', 1, 'https://ror.org/03np1sm50 MSCI (China)'), (78128, 'https://ror.org/03nrjn370', 'no_lang_code', 1, 'https://ror.org/03nrjn370 Bluefors (Finland)'), (78129, 'https://ror.org/03nrtjx51', 'en', 1, 'https://ror.org/03nrtjx51 Hainan Meteorological Service 海南省气象局'), (78130, 'https://ror.org/03nsj9897', 'en', 1, 'https://ror.org/03nsj9897 Islamic Azad University, Sirjan Branch دانشگاه آزاد اسلامی واحد سیرجان'), (78131, 'https://ror.org/03ntya366', 'no_lang_code', 1, 'https://ror.org/03ntya366 Ezaki Glico (Japan) 江崎グリコ株式会社'), (78132, 'https://ror.org/03nw9qk49', 'en', 1, 'https://ror.org/03nw9qk49 Chinese Society for Plant Biology 中国植物生物学会'), (78133, 'https://ror.org/03nwzmg80', 'no_lang_code', 1, 'https://ror.org/03nwzmg80 Oasis Advanced Engineering (United States)'), (78134, 'https://ror.org/03nx88210', 'en', 1, 'https://ror.org/03nx88210 Institute for Economic Research and Consulting'), (78135, 'https://ror.org/03nxed310', 'en', 1, 'https://ror.org/03nxed310 China Anti-Doping Agency'), (78136, 'https://ror.org/03nxzvp26', 'en', 1, 'https://ror.org/03nxzvp26 Hangzhou Botanical Garden 杭州植物园'), (78137, 'https://ror.org/03nyrwp51', 'no_lang_code', 1, 'https://ror.org/03nyrwp51 Prioria Robotics (United States)'), (78138, 'https://ror.org/03nz7py16', 'en', 1, 'https://ror.org/03nz7py16 Italian Society for International Organization Società Italiana Organizzazione Internazionale'), (78139, 'https://ror.org/03p0pmr81', 'no_lang_code', 1, 'https://ror.org/03p0pmr81 Windenergiepark Westküste (Germany)'), (78140, 'https://ror.org/03p1mkz49', 'no_lang_code', 1, 'https://ror.org/03p1mkz49 SuviCa (United States)'), (78141, 'https://ror.org/03p3h5q71', 'no_lang_code', 1, 'https://ror.org/03p3h5q71 Datar Cancer Genetics (India)'), (78142, 'https://ror.org/03p46dh90', 'en', 1, 'https://ror.org/03p46dh90 Aleda E. Lutz VA Medical Center'), (78143, 'https://ror.org/03p5fy985', 'no_lang_code', 1, 'https://ror.org/03p5fy985 QuantumCTek (China)'), (78144, 'https://ror.org/03p6znp21', 'no_lang_code', 1, 'https://ror.org/03p6znp21 Microban (United States)'), (78145, 'https://ror.org/03p8xz723', 'de', 1, 'https://ror.org/03p8xz723 Lausitzer Seenland Klinikum'), (78146, 'https://ror.org/03p9s5t60', 'no_lang_code', 1, 'https://ror.org/03p9s5t60 Nujira (United Kingdom)'), (78147, 'https://ror.org/03pcamk69', 'en', 1, 'https://ror.org/03pcamk69 VA Black Hills Health Care System'), (78148, 'https://ror.org/03pchte23', 'no_lang_code', 1, 'https://ror.org/03pchte23 Infinitus (China) 无限极中心'), (78149, 'https://ror.org/03pczck54', 'en', 1, 'https://ror.org/03pczck54 ICAR-National Research Centre on Pig'), (78150, 'https://ror.org/03pddbz77', 'no_lang_code', 1, 'https://ror.org/03pddbz77 CapsoVision (United States)'), (78151, 'https://ror.org/03pf1rt23', 'en', 1, 'https://ror.org/03pf1rt23 National Bureau of Agricultural Insect Resources'), (78152, 'https://ror.org/03pgcsa90', 'no_lang_code', 1, 'https://ror.org/03pgcsa90 Tobishima (Japan) 飛島建設'), (78153, 'https://ror.org/03pgn2579', 'de', 1, 'https://ror.org/03pgn2579 Deutscher Bundestag'), (78154, 'https://ror.org/03phj8y65', 'no_lang_code', 1, 'https://ror.org/03phj8y65 Wonik IPS (South Korea) 원익아이피에스'), (78155, 'https://ror.org/03phr4149', 'no_lang_code', 1, 'https://ror.org/03phr4149 PVA TePla (Germany)'), (78156, 'https://ror.org/03ps48j85', 'de', 1, 'https://ror.org/03ps48j85 Hochschule für Musik Karlsruhe University of Music Karlsruhe'), (78157, 'https://ror.org/03pt6v373', 'en', 1, 'https://ror.org/03pt6v373 Cancer Hospital of Huanxing Chaoyang District Beijing 北京市朝阳区桓兴肿瘤医院'), (78158, 'https://ror.org/03pz37k82', 'en', 1, 'https://ror.org/03pz37k82 Northwest Institute of Mechanical and Electrical Engineering 西北机电工程学院'), (78159, 'https://ror.org/03pz4a950', 'en', 1, 'https://ror.org/03pz4a950 University Transportation Research Center'), (78160, 'https://ror.org/03q129k63', 'en', 1, 'https://ror.org/03q129k63 Kanazawa Medical University Hospital 金沢医科大学病院'), (78161, 'https://ror.org/03q1w5k18', 'en', 1, 'https://ror.org/03q1w5k18 Fins Medical University'), (78162, 'https://ror.org/03q269m48', 'en', 1, 'https://ror.org/03q269m48 The Thousand'), (78163, 'https://ror.org/03q2xbs92', 'no_lang_code', 1, 'https://ror.org/03q2xbs92 Ostwestfälisches Institut für Innovative Technologien in der Automatisierungstechnik (Germany)'), (78164, 'https://ror.org/03q3a0475', 'no_lang_code', 1, 'https://ror.org/03q3a0475 General Electric (Netherlands)'), (78165, 'https://ror.org/03q3hjg87', 'en', 1, 'https://ror.org/03q3hjg87 Research Institute of Wood Industry 中国林业科学研究院 木材工业研究所'), (78166, 'https://ror.org/03q46bp55', 'no_lang_code', 1, 'https://ror.org/03q46bp55 Sapper Institut (Germany)'), (78167, 'https://ror.org/03q5zq793', 'no_lang_code', 1, 'https://ror.org/03q5zq793 Genomix Biotech (India)'), (78168, 'https://ror.org/03qashd50', 'no_lang_code', 1, 'https://ror.org/03qashd50 Itochu (Japan) 伊藤忠商事株式会社'), (78169, 'https://ror.org/03qb80p98', 'fr', 1, 'https://ror.org/03qb80p98 New Dawn University Université Aube Nouvelle'), (78170, 'https://ror.org/03qekz127', 'no_lang_code', 1, 'https://ror.org/03qekz127 Adare Pharma Solutions (United States)'), (78171, 'https://ror.org/03qfxy306', 'no_lang_code', 1, 'https://ror.org/03qfxy306 Turnkey Design Services (United States)'), (78172, 'https://ror.org/03qj9zv39', 'no_lang_code', 1, 'https://ror.org/03qj9zv39 Space Information Laboratories (United States)'), (78173, 'https://ror.org/03qkems54', 'en', 1, 'https://ror.org/03qkems54 Wuhan Red Cross Hospital 武汉市红十字会医院'), (78174, 'https://ror.org/03qm54y80', 'no_lang_code', 1, 'https://ror.org/03qm54y80 Wätas Wärmetauscher Sachsen (Germany)'), (78175, 'https://ror.org/03qmxa265', 'no_lang_code', 1, 'https://ror.org/03qmxa265 Serionix (United States)'), (78176, 'https://ror.org/03qq2mk98', 'no_lang_code', 1, 'https://ror.org/03qq2mk98 KM Biologics (Japan) KMバイオロジクス株式会社'), (78177, 'https://ror.org/03qtzdh23', 'en', 1, 'https://ror.org/03qtzdh23 Bank Ċentrali ta’ Malta Central Bank of Malta'), (78178, 'https://ror.org/03qvyw596', 'no_lang_code', 1, 'https://ror.org/03qvyw596 Genus (United States)'), (78179, 'https://ror.org/03qwtkn62', 'de', 1, 'https://ror.org/03qwtkn62 Lebensmittelinstitut KIN'), (78180, 'https://ror.org/03qxceh63', 'en', 1, 'https://ror.org/03qxceh63 Experimental Factory Magdeburg'), (78181, 'https://ror.org/03qy3ay77', 'no_lang_code', 1, 'https://ror.org/03qy3ay77 Princeton BioMeditech (United States)'), (78182, 'https://ror.org/03qyfw860', 'no_lang_code', 1, 'https://ror.org/03qyfw860 Xyleco (United States)'), (78183, 'https://ror.org/03qz20664', 'de', 1, 'https://ror.org/03qz20664 Brandenburg-Berliner Institut für Sozialwissenschaftliche Studien'), (78184, 'https://ror.org/03qzgs943', 'no_lang_code', 1, 'https://ror.org/03qzgs943 Radiation Safety Engineering (United States)'), (78185, 'https://ror.org/03qzxj964', 'en', 1, 'https://ror.org/03qzxj964 China National Institute of Standardization 中国标准化与信息分类编码研究所'), (78186, 'https://ror.org/03r2hsf25', 'en', 1, 'https://ror.org/03r2hsf25 Asia Pacific Institute of Research 一般財団法人 アジア太平洋研究所'), (78187, 'https://ror.org/03r5tj610', 'no_lang_code', 1, 'https://ror.org/03r5tj610 Natel Energy (United States)'), (78188, 'https://ror.org/03r5vgh07', 'no_lang_code', 1, 'https://ror.org/03r5vgh07 Prytime Medical (United States)'), (78189, 'https://ror.org/03r5za471', 'en', 1, 'https://ror.org/03r5za471 Kiang Wu Hospital 鏡湖醫院'), (78190, 'https://ror.org/03r7aan38', 'de', 1, 'https://ror.org/03r7aan38 Institut für Bauforschung'), (78191, 'https://ror.org/03r7f5838', 'no_lang_code', 1, 'https://ror.org/03r7f5838 TP Orthodontics (United States)'), (78192, 'https://ror.org/03r8rb992', 'en', 1, 'https://ror.org/03r8rb992 International Institute of Biotechnology and Toxicology'), (78193, 'https://ror.org/03r9jkk29', 'no_lang_code', 1, 'https://ror.org/03r9jkk29 Swarco (Austria)'), (78194, 'https://ror.org/03r9xsc20', 'en', 1, 'https://ror.org/03r9xsc20 Zambia Institute for Policy Analysis and Research'), (78195, 'https://ror.org/03rahtg67', 'en', 1, 'https://ror.org/03rahtg67 Scientific Research Group in Egypt'), (78196, 'https://ror.org/03repqx13', 'no_lang_code', 1, 'https://ror.org/03repqx13 Bluejay Mining (United Kingdom)'), (78197, 'https://ror.org/03rf31e64', 'en', 1, 'https://ror.org/03rf31e64 NEIKER, Instituto Vasco de Investigación y Desarrollo Agrario NEIKER, Nekazaritza Ikerketa eta Garapenerako Euskal Erakundea NEIKER, the Basque Institute for Agricultural Research and Development'), (78198, 'https://ror.org/03rf5a761', 'es', 1, 'https://ror.org/03rf5a761 Colombian Federation of Obstetrics and Gynecology Federación Colombiana de Obstetricia y Ginecología'), (78199, 'https://ror.org/03rgkg396', 'en', 1, 'https://ror.org/03rgkg396 Military & Health Research Foundation'), (78200, 'https://ror.org/03rh67p56', 'no_lang_code', 1, 'https://ror.org/03rh67p56 SanBio (Japan) サンバイオ'), (78201, 'https://ror.org/03rqyzt93', 'no_lang_code', 1, 'https://ror.org/03rqyzt93 Beijing Tuofeng Technology Development (China)'), (78202, 'https://ror.org/03rs32p96', 'en', 1, 'https://ror.org/03rs32p96 Ballad Health'), (78203, 'https://ror.org/03rs4qr46', 'no_lang_code', 1, 'https://ror.org/03rs4qr46 MIMOT (Germany)'), (78204, 'https://ror.org/03rtrce80', 'en', 1, 'https://ror.org/03rtrce80 National Centre for Infectious Diseases'), (78205, 'https://ror.org/03rvjsb61', 'de', 1, 'https://ror.org/03rvjsb61 Landtag Nordrhein-Westfalen, Landtag of North Rhine-Westphalia'), (78206, 'https://ror.org/03rw8a492', 'en', 1, 'https://ror.org/03rw8a492 German University Association of Advanced Graduate Training Universitätsverband zur Qualifizierung des wissenschaftlichen Nachwuchses in Deutschland'), (78207, 'https://ror.org/03rwvj817', 'no_lang_code', 1, 'https://ror.org/03rwvj817 Metran (Japan) メトラン'), (78208, 'https://ror.org/03rycrh12', 'no_lang_code', 1, 'https://ror.org/03rycrh12 ThermoGenesis (United States)'), (78209, 'https://ror.org/03ryk3848', 'no_lang_code', 1, 'https://ror.org/03ryk3848 Chacha Nehru Bal Chikitsalaya चाचा नेहरु बाल चिकित्सालय'), (78210, 'https://ror.org/03rzt1w70', 'en', 1, 'https://ror.org/03rzt1w70 Wroclaw University of Applied Informatics "Horizon" Wrocławska Wyższa Szkoła Informatyki Stosowanej „Horyzont”'), (78211, 'https://ror.org/03rzz2412', 'en', 1, 'https://ror.org/03rzz2412 Paws Assisting Veterans'), (78212, 'https://ror.org/03s1n7a78', 'no_lang_code', 1, 'https://ror.org/03s1n7a78 Carbon Block Technology (United States)'), (78213, 'https://ror.org/03s2sy313', 'no', 1, 'https://ror.org/03s2sy313 Horten Kommune'), (78214, 'https://ror.org/03s3tpp34', 'no_lang_code', 1, 'https://ror.org/03s3tpp34 Plantex (Slovakia)'), (78215, 'https://ror.org/03s41ze97', 'en', 1, 'https://ror.org/03s41ze97 Zoo New England'), (78216, 'https://ror.org/03s4d5r37', 'no_lang_code', 1, 'https://ror.org/03s4d5r37 Zenta Group (Chile)'), (78217, 'https://ror.org/03s52tj69', 'en', 1, 'https://ror.org/03s52tj69 Saitama Prefectural Kasukabe Special Support School 埼玉県立春日部養護学校'), (78218, 'https://ror.org/03s5ddr02', 'no_lang_code', 1, 'https://ror.org/03s5ddr02 EBR Systems (United States)'), (78219, 'https://ror.org/03s6arh89', 'no_lang_code', 1, 'https://ror.org/03s6arh89 Hexion (United States)'), (78220, 'https://ror.org/03s936v76', 'en', 1, 'https://ror.org/03s936v76 Children''s Nutrition Research Center at Baylor College of Medicine'), (78221, 'https://ror.org/03sa1qm07', 'no_lang_code', 1, 'https://ror.org/03sa1qm07 Kyulux (Japan)'), (78222, 'https://ror.org/03sa4ef12', 'no_lang_code', 1, 'https://ror.org/03sa4ef12 Torque (United States)'), (78223, 'https://ror.org/03sanww46', 'no_lang_code', 1, 'https://ror.org/03sanww46 Qfix (United States)'), (78224, 'https://ror.org/03sd2pz70', 'no_lang_code', 1, 'https://ror.org/03sd2pz70 Waterborne Environmental (United States)'), (78225, 'https://ror.org/03sd2sw82', 'no_lang_code', 1, 'https://ror.org/03sd2sw82 Stella Maris Polytechnic'), (78226, 'https://ror.org/03sdfca54', 'no_lang_code', 1, 'https://ror.org/03sdfca54 Rhein-Main-Verkehrsverbund'), (78227, 'https://ror.org/03skc1w23', 'no_lang_code', 1, 'https://ror.org/03skc1w23 Boehringer Ingelheim (Philippines)'), (78228, 'https://ror.org/03sqqq988', 'no_lang_code', 1, 'https://ror.org/03sqqq988 Sentec (United Kingdom)'), (78229, 'https://ror.org/03sqy6516', 'en', 1, 'https://ror.org/03sqy6516 Agricultural Research Service - Plains Area'), (78230, 'https://ror.org/03ss4v007', 'en', 1, 'https://ror.org/03ss4v007 Policy Center for the New South'), (78231, 'https://ror.org/03strdf60', 'no_lang_code', 1, 'https://ror.org/03strdf60 Velocity Laboratories (United States)'), (78232, 'https://ror.org/03swddy62', 'en', 1, 'https://ror.org/03swddy62 Institute of Japanese Studies 中国社会科学院日本研究所'), (78233, 'https://ror.org/03sxp4873', 'en', 1, 'https://ror.org/03sxp4873 Florida Institute for Conservation Science'), (78234, 'https://ror.org/03sxw1z96', 'no_lang_code', 1, 'https://ror.org/03sxw1z96 Stellar Exploration (United States)'), (78235, 'https://ror.org/03t0n2419', 'no_lang_code', 1, 'https://ror.org/03t0n2419 Hamburg Institut (Germany)'), (78236, 'https://ror.org/03t1ztz45', 'no_lang_code', 1, 'https://ror.org/03t1ztz45 Shibuya (Japan)'), (78237, 'https://ror.org/03t3qk565', 'no_lang_code', 1, 'https://ror.org/03t3qk565 Nou Systems (United States)'), (78238, 'https://ror.org/03t65z939', 'no_lang_code', 1, 'https://ror.org/03t65z939 Sanya Central Hospital 三亚中心医院'), (78239, 'https://ror.org/03t6w2288', 'en', 1, 'https://ror.org/03t6w2288 Arbeitskreis deutscher Bildungsstätten Association of German Educational Organizations'), (78240, 'https://ror.org/03t7gqr04', 'en', 1, 'https://ror.org/03t7gqr04 Alexandria VA Medical Center'), (78241, 'https://ror.org/03t7jd518', 'de', 1, 'https://ror.org/03t7jd518 Duale Hochschule Gera-Eisenach'), (78242, 'https://ror.org/03t8x3a11', 'no_lang_code', 1, 'https://ror.org/03t8x3a11 Cosmo Energy (Japan) コスモエネルギーホールディングス株式会社'), (78243, 'https://ror.org/03t9hqf74', 'no_lang_code', 1, 'https://ror.org/03t9hqf74 ShockWave Medical (United States)'), (78244, 'https://ror.org/03t9s6f22', 'en', 1, 'https://ror.org/03t9s6f22 Forest Stewards Guild'), (78245, 'https://ror.org/03tdar888', 'en', 1, 'https://ror.org/03tdar888 North Eastern Space Applications Centre'), (78246, 'https://ror.org/03tgvyd09', 'no_lang_code', 1, 'https://ror.org/03tgvyd09 Hi Tech BioSciences India (India)'), (78247, 'https://ror.org/03tgx7h38', 'no_lang_code', 1, 'https://ror.org/03tgx7h38 EkoWatt (Slovakia)'), (78248, 'https://ror.org/03th12q46', 'en', 1, 'https://ror.org/03th12q46 Niigata Agro-Food University 新潟食料農業大学'), (78249, 'https://ror.org/03thnsj45', 'no_lang_code', 1, 'https://ror.org/03thnsj45 Schlumberger (Germany)'), (78250, 'https://ror.org/03tm9zz81', 'en', 1, 'https://ror.org/03tm9zz81 Eastern Oklahoma VA Health Care System'), (78251, 'https://ror.org/03tn3hy29', 'en', 1, 'https://ror.org/03tn3hy29 Deutsches Rundfunkarchiv German Broadcasting Archive'), (78252, 'https://ror.org/03tn4px69', 'no_lang_code', 1, 'https://ror.org/03tn4px69 BVI (United States)'), (78253, 'https://ror.org/03tnkxb28', 'no_lang_code', 1, 'https://ror.org/03tnkxb28 RTS Labs (United States)'), (78254, 'https://ror.org/03tpfej15', 'no_lang_code', 1, 'https://ror.org/03tpfej15 Viti (United States)'), (78255, 'https://ror.org/03tpwwd72', 'no_lang_code', 1, 'https://ror.org/03tpwwd72 Spineology (United States)'), (78256, 'https://ror.org/03tzxa223', 'en', 1, 'https://ror.org/03tzxa223 Grand Junction VA Medical Center'), (78257, 'https://ror.org/03v2jew50', 'no_lang_code', 1, 'https://ror.org/03v2jew50 Xencor (United States)'), (78258, 'https://ror.org/03v44jk32', 'no_lang_code', 1, 'https://ror.org/03v44jk32 HZPC (Netherlands)'), (78259, 'https://ror.org/03v5tv953', 'no_lang_code', 1, 'https://ror.org/03v5tv953 Wista (Germany)'), (78260, 'https://ror.org/03v842g47', 'en', 1, 'https://ror.org/03v842g47 University of Kigali'), (78261, 'https://ror.org/03v9vd314', 'no_lang_code', 1, 'https://ror.org/03v9vd314 VitalQuan (United States)'), (78262, 'https://ror.org/03vay2m05', 'en', 1, 'https://ror.org/03vay2m05 Ioannis A. Lougaris Veterans Affairs Medical Center'), (78263, 'https://ror.org/03vcp9d79', 'en', 1, 'https://ror.org/03vcp9d79 Botswana Institute for Development Policy Analysis'), (78264, 'https://ror.org/03vcxzw86', 'no_lang_code', 1, 'https://ror.org/03vcxzw86 DSG Technology (Norway)'), (78265, 'https://ror.org/03vdkes06', 'no_lang_code', 1, 'https://ror.org/03vdkes06 Archimica (Italy)'), (78266, 'https://ror.org/03ve2mc46', 'de', 1, 'https://ror.org/03ve2mc46 Gewi-Institut für Gesundheitswirtschaft'), (78267, 'https://ror.org/03vgx8d33', 'no_lang_code', 1, 'https://ror.org/03vgx8d33 Phoenix Nest (United States)'), (78268, 'https://ror.org/03vhsyq48', 'no_lang_code', 1, 'https://ror.org/03vhsyq48 Sabre Engineering (United States)'), (78269, 'https://ror.org/03vjrde80', 'fr', 1, 'https://ror.org/03vjrde80 Institut Universitaire du Golfe de Guinée University Institute of the Gulf of Guinea'), (78270, 'https://ror.org/03vmsb260', 'en', 1, 'https://ror.org/03vmsb260 United Nations University Institute for the Advanced Study of Sustainability 国連大学サステイナビリティ高等研究所'), (78271, 'https://ror.org/03vmxd681', 'no_lang_code', 1, 'https://ror.org/03vmxd681 Scientific Computing Associates (United States)'), (78272, 'https://ror.org/03vnqze34', 'no_lang_code', 1, 'https://ror.org/03vnqze34 Extend3D (Germany)'), (78273, 'https://ror.org/03vqd0w40', 'en', 1, 'https://ror.org/03vqd0w40 Institute of Medical Ethics'), (78274, 'https://ror.org/03vrph192', 'no_lang_code', 1, 'https://ror.org/03vrph192 Cyber Laser (Japan) サイバーレーザ'), (78275, 'https://ror.org/03vsf4009', 'no_lang_code', 1, 'https://ror.org/03vsf4009 SR2 Group (United States)'), (78276, 'https://ror.org/03vsxz193', 'en', 1, 'https://ror.org/03vsxz193 Advanced Centre for Energetic Materials ऊर्जस्वी पदार्थ उन्नत केंद्र'), (78277, 'https://ror.org/03vvhya80', 'en', 1, 'https://ror.org/03vvhya80 Arkansas Children''s Nutrition Center'), (78278, 'https://ror.org/03vwf8m18', 'en', 1, 'https://ror.org/03vwf8m18 Charles George VA Medical Center'), (78279, 'https://ror.org/03vx2yp60', 'no_lang_code', 1, 'https://ror.org/03vx2yp60 TeVido BioDevices (United States)'), (78280, 'https://ror.org/03vxfyf12', 'no_lang_code', 1, 'https://ror.org/03vxfyf12 Max Bögl (Germany)'), (78281, 'https://ror.org/03vyewd38', 'no_lang_code', 1, 'https://ror.org/03vyewd38 Spero Devices (United States)'), (78282, 'https://ror.org/03vyfg679', 'en', 1, 'https://ror.org/03vyfg679 Matsumoto City Hospital 松本市立病院'), (78283, 'https://ror.org/03vyhtd35', 'no_lang_code', 1, 'https://ror.org/03vyhtd35 Bridgestone (United Kingdom)'), (78284, 'https://ror.org/03vyrmv17', 'no_lang_code', 1, 'https://ror.org/03vyrmv17 Ochanomizu University Kindergarten お茶の水女子大学附属幼稚園'), (78285, 'https://ror.org/03vyrq198', 'no_lang_code', 1, 'https://ror.org/03vyrq198 Quantum Opus (United States)'), (78286, 'https://ror.org/03vz97823', 'de', 1, 'https://ror.org/03vz97823 Institut für Lonenstrahl– und Vakuumverfahrenstechnik'), (78287, 'https://ror.org/03vzbwz39', 'no_lang_code', 1, 'https://ror.org/03vzbwz39 Verkehrsbetriebe Hamburg-Holstein (Germany)'), (78288, 'https://ror.org/03w15ax40', 'no_lang_code', 1, 'https://ror.org/03w15ax40 Herrenknecht Vertical (Germany)'), (78289, 'https://ror.org/03w48ac58', 'no_lang_code', 1, 'https://ror.org/03w48ac58 Novo Nordisk (Mexico)'), (78290, 'https://ror.org/03w4gz080', 'en', 1, 'https://ror.org/03w4gz080 Advanced Analysis Center 高度解析センター'), (78291, 'https://ror.org/03w6dw671', 'no_lang_code', 1, 'https://ror.org/03w6dw671 IPM Solutions (Slovakia)'), (78292, 'https://ror.org/03w8zkt07', 'no_lang_code', 1, 'https://ror.org/03w8zkt07 Hester'), (78293, 'https://ror.org/03wa5d325', 'en', 1, 'https://ror.org/03wa5d325 Society for Applied Microwave Electronics Engineering & Research'), (78294, 'https://ror.org/03wa63r81', 'no_lang_code', 1, 'https://ror.org/03wa63r81 Bioness (United States)'), (78295, 'https://ror.org/03wam2503', 'no_lang_code', 1, 'https://ror.org/03wam2503 P N Lee Statistics and Computing (United Kingdom)'), (78296, 'https://ror.org/03wbd7629', 'no_lang_code', 1, 'https://ror.org/03wbd7629 Tela Innovations (United States)'), (78297, 'https://ror.org/03wh5v523', 'no_lang_code', 1, 'https://ror.org/03wh5v523 Machida Endoscope (Japan) 株式会社町田製作所'), (78298, 'https://ror.org/03whb2884', 'no_lang_code', 1, 'https://ror.org/03whb2884 Brasseler (Germany) Gebr. Brasseler'), (78299, 'https://ror.org/03wj3r219', 'no_lang_code', 1, 'https://ror.org/03wj3r219 Magnolia Medical Technologies (United States)'), (78300, 'https://ror.org/03wjf5d60', 'en', 1, 'https://ror.org/03wjf5d60 American Speech-Language-Hearing Foundation'), (78301, 'https://ror.org/03wneb138', 'en', 1, 'https://ror.org/03wneb138 National Institute for Parasitic Diseases'), (78302, 'https://ror.org/03wrbfs36', 'no_lang_code', 1, 'https://ror.org/03wrbfs36 LafargeHolcim (Canada)'), (78303, 'https://ror.org/03wrjp633', 'no_lang_code', 1, 'https://ror.org/03wrjp633 Cailabs (France)'), (78304, 'https://ror.org/03ws8tc44', 'no_lang_code', 1, 'https://ror.org/03ws8tc44 Keiyu Orthopedic Hospital 慶友整形外科クリニック'), (78305, 'https://ror.org/03wtmb115', 'en', 1, 'https://ror.org/03wtmb115 VA Butler Healthcare'), (78306, 'https://ror.org/03wyta813', 'no_lang_code', 1, 'https://ror.org/03wyta813 Konstrukta Defence (Slovakia)'), (78307, 'https://ror.org/03x1nzy67', 'no_lang_code', 1, 'https://ror.org/03x1nzy67 NHN (South Korea) 엔에이치엔 주식회사'), (78308, 'https://ror.org/03x2dsw59', 'no_lang_code', 1, 'https://ror.org/03x2dsw59 Ultrasonic Technologies (United States)'), (78309, 'https://ror.org/03x2fre67', 'en', 1, 'https://ror.org/03x2fre67 China Science and Technology Museum 中国科学技术馆'), (78310, 'https://ror.org/03x4xnv96', 'no_lang_code', 1, 'https://ror.org/03x4xnv96 Apax Partners (United Kingdom)'), (78311, 'https://ror.org/03x5ddc63', 'no_lang_code', 1, 'https://ror.org/03x5ddc63 BABCOCK Industry & Power (Germany)'), (78312, 'https://ror.org/03x7fn667', 'en', 1, 'https://ror.org/03x7fn667 Western Regional Research Center'), (78313, 'https://ror.org/03x82b295', 'no_lang_code', 1, 'https://ror.org/03x82b295 Sila Nanotechnologies (United States)'), (78314, 'https://ror.org/03x95rx80', 'pt', 1, 'https://ror.org/03x95rx80 Fundação de Apoio à Universidade do Rio Grande'), (78315, 'https://ror.org/03x9v0p05', 'no_lang_code', 1, 'https://ror.org/03x9v0p05 Symbiotix Biotherapies (United States)'), (78316, 'https://ror.org/03xa7rm31', 'de', 1, 'https://ror.org/03xa7rm31 Institut für Freizeitwissenschaft und Kulturarbeit'), (78317, 'https://ror.org/03xcp1s96', 'no_lang_code', 1, 'https://ror.org/03xcp1s96 QNu Labs (India)'), (78318, 'https://ror.org/03xd96m45', 'en', 1, 'https://ror.org/03xd96m45 Shikoku Central Hospital of the Mutual Aid Association of Public School Teachers 公立学校共済組合四国中央病院、愛媛県、日本'), (78319, 'https://ror.org/03xexem68', 'en', 1, 'https://ror.org/03xexem68 International Centre for Archival Research'), (78320, 'https://ror.org/03xfq0m13', 'no_lang_code', 1, 'https://ror.org/03xfq0m13 DATEV (Germany) Datenverarbeitung und Dienstleistung für den steuerberatenden Beruf'), (78321, 'https://ror.org/03xfq5k21', 'pt', 1, 'https://ror.org/03xfq5k21 Itaipu Binacional'), (78322, 'https://ror.org/03xj8ec24', 'no_lang_code', 1, 'https://ror.org/03xj8ec24 Nodes & Links (United Kingdom)'), (78323, 'https://ror.org/03xkxsc82', 'de', 1, 'https://ror.org/03xkxsc82 Institut für Berufs- und Sozialpädagogik'), (78324, 'https://ror.org/03xp99m49', 'en', 1, 'https://ror.org/03xp99m49 Institute for Integrated Management of Material Fluxes and of Resources'), (78325, 'https://ror.org/03xptpz88', 'no_lang_code', 1, 'https://ror.org/03xptpz88 Polar (Finland)'), (78326, 'https://ror.org/03xra4w63', 'de', 1, 'https://ror.org/03xra4w63 Forsa Forsa Institute for Social Research and Statistical Analysis'), (78327, 'https://ror.org/03xrww068', 'no_lang_code', 1, 'https://ror.org/03xrww068 Poietis (France)'), (78328, 'https://ror.org/03xt7qs06', 'no_lang_code', 1, 'https://ror.org/03xt7qs06 Institut Raum & Energie (Germany)'), (78329, 'https://ror.org/03xv0cg46', 'en', 1, 'https://ror.org/03xv0cg46 Qingdao Eighth People''s Hospital 青岛市第八人民医院'), (78330, 'https://ror.org/03xv8e740', 'no_lang_code', 1, 'https://ror.org/03xv8e740 ABmerit'), (78331, 'https://ror.org/03xw8ff71', 'no_lang_code', 1, 'https://ror.org/03xw8ff71 Tokiwa Park ときわ動物園'), (78332, 'https://ror.org/03xxp1119', 'no_lang_code', 1, 'https://ror.org/03xxp1119 Alpine Quantum Technologies (Austria)'), (78333, 'https://ror.org/03xz7zy75', 'no_lang_code', 1, 'https://ror.org/03xz7zy75 Hamburg Wasser (Germany)'), (78334, 'https://ror.org/03xzfkg70', 'no_lang_code', 1, 'https://ror.org/03xzfkg70 ISB (Germany)'), (78335, 'https://ror.org/03y0xt433', 'no_lang_code', 1, 'https://ror.org/03y0xt433 Millet Innovation (France)'), (78336, 'https://ror.org/03y3jby41', 'fr', 1, 'https://ror.org/03y3jby41 Centre National de Recherche et de Formation sur le Paludisme'), (78337, 'https://ror.org/03y4qb345', 'de', 1, 'https://ror.org/03y4qb345 Institut für Automobilwirtschaft'), (78338, 'https://ror.org/03y6bke35', 'en', 1, 'https://ror.org/03y6bke35 Osaka Animal Plant & Ocean College 大阪動植物海洋専門学校'), (78339, 'https://ror.org/03y6p7b93', 'en', 1, 'https://ror.org/03y6p7b93 National Institute on Consumer Education 消費者教育支援センター'), (78340, 'https://ror.org/03y71kj48', 'no_lang_code', 1, 'https://ror.org/03y71kj48 Tidewater Consulting (United States)'), (78341, 'https://ror.org/03y7pbb54', 'en', 1, 'https://ror.org/03y7pbb54 Trailfinders Travel Clinic'), (78342, 'https://ror.org/03yag1532', 'no_lang_code', 1, 'https://ror.org/03yag1532 Raith (Germany)'), (78343, 'https://ror.org/03ybvq281', 'sk', 1, 'https://ror.org/03ybvq281 Strednej Odbornej škole Lesníckej Banská Štiavnica'), (78344, 'https://ror.org/03yc04z38', 'no_lang_code', 1, 'https://ror.org/03yc04z38 Oricula Therapeutics (United States)'), (78345, 'https://ror.org/03ydbpd31', 'no_lang_code', 1, 'https://ror.org/03ydbpd31 Wellstat Biologics (United States)'), (78346, 'https://ror.org/03yenn346', 'no_lang_code', 1, 'https://ror.org/03yenn346 Varsha Bioscience and Technology (India)'), (78347, 'https://ror.org/03ygk8b53', 'no_lang_code', 1, 'https://ror.org/03ygk8b53 Viveve (United States)'), (78348, 'https://ror.org/03yme5333', 'no_lang_code', 1, 'https://ror.org/03yme5333 Ciena (United Kingdom)'); INSERT INTO `rors` VALUES (78349, 'https://ror.org/03yqyyy69', 'en', 1, 'https://ror.org/03yqyyy69 United Nations Economic and Social Commission for Western Asia الإسكوا'), (78350, 'https://ror.org/03ytenv10', 'en', 1, 'https://ror.org/03ytenv10 Northern Technical University الجامعة التقنية الشمالية'), (78351, 'https://ror.org/03ytxnh35', 'de', 1, 'https://ror.org/03ytxnh35 Wilhelm-Jost-Institut'), (78352, 'https://ror.org/03ywzsn05', 'no_lang_code', 1, 'https://ror.org/03ywzsn05 Wen''s Food Group (China) 温氏食品集团股份有限公司'), (78353, 'https://ror.org/03yx1ht46', 'no_lang_code', 1, 'https://ror.org/03yx1ht46 Savi (United States)'), (78354, 'https://ror.org/03yxxfa18', 'no_lang_code', 1, 'https://ror.org/03yxxfa18 WELLS BIO (United States)'), (78355, 'https://ror.org/03yz4hz41', 'no_lang_code', 1, 'https://ror.org/03yz4hz41 Spectra Solutions (United States)'), (78356, 'https://ror.org/03z02zc05', 'no_lang_code', 1, 'https://ror.org/03z02zc05 Medrobotics (United States)'), (78357, 'https://ror.org/03z601r05', 'en', 1, 'https://ror.org/03z601r05 Koninklijke Musea voor Schone Kunsten van België Musées royaux des Beaux-Arts de Belgique Royal Museums of Fine Arts of Belgium'), (78358, 'https://ror.org/03z692463', 'en', 1, 'https://ror.org/03z692463 National Tax College 税務大学校'), (78359, 'https://ror.org/03z6ebp81', 'en', 1, 'https://ror.org/03z6ebp81 Ageo Nursing College 上尾看護専門学校'), (78360, 'https://ror.org/03z7fpr75', 'no_lang_code', 1, 'https://ror.org/03z7fpr75 VRC Metal Systems (United States)'), (78361, 'https://ror.org/03z8hek06', 'en', 1, 'https://ror.org/03z8hek06 Odessa Military Academy Військової Aкадемії'), (78362, 'https://ror.org/03z9xj602', 'no_lang_code', 1, 'https://ror.org/03z9xj602 Actigen (United Kingdom)'), (78363, 'https://ror.org/03zd66h19', 'no_lang_code', 1, 'https://ror.org/03zd66h19 Inprother (Denmark)'), (78364, 'https://ror.org/03zedkf25', 'no_lang_code', 1, 'https://ror.org/03zedkf25 Penta-Ocean Construction (Japan)'), (78365, 'https://ror.org/03zf99n20', 'no_lang_code', 1, 'https://ror.org/03zf99n20 Centrient Pharmaceuticals (Netherlands)'), (78366, 'https://ror.org/03zmk9a61', 'no_lang_code', 1, 'https://ror.org/03zmk9a61 Kerry Group (United Kingdom)'), (78367, 'https://ror.org/03zmkfy07', 'no_lang_code', 1, 'https://ror.org/03zmkfy07 Quantropi (Canada)'), (78368, 'https://ror.org/03zna7437', 'en', 1, 'https://ror.org/03zna7437 American College of Veterinary Radiology'), (78369, 'https://ror.org/03zqmrr34', 'no_lang_code', 1, 'https://ror.org/03zqmrr34 Powerscreen (United Kingdom)'), (78370, 'https://ror.org/03zr63661', 'en', 1, 'https://ror.org/03zr63661 Slovak Water Management Enterprise Slovenský Vodohospodársky Podnik'), (78371, 'https://ror.org/03zrqt452', 'de', 1, 'https://ror.org/03zrqt452 Medicover'), (78372, 'https://ror.org/03zry0650', 'fr', 1, 'https://ror.org/03zry0650 Hôpital Georges-Clemenceau'), (78373, 'https://ror.org/03zryq964', 'no_lang_code', 1, 'https://ror.org/03zryq964 Microsoft (Switzerland)'), (78374, 'https://ror.org/03zxxbe81', 'no_lang_code', 1, 'https://ror.org/03zxxbe81 Synaptic Research (United States)'), (78375, 'https://ror.org/04009bk73', 'no_lang_code', 1, 'https://ror.org/04009bk73 Vitalitec International (Germany)'), (78376, 'https://ror.org/0403afs59', 'no_lang_code', 1, 'https://ror.org/0403afs59 Centinel Spine (United States)'), (78377, 'https://ror.org/0404kfe46', 'no_lang_code', 1, 'https://ror.org/0404kfe46 Bayer (Mexico)'), (78378, 'https://ror.org/04052zp33', 'no_lang_code', 1, 'https://ror.org/04052zp33 Polygon Physics (France)'), (78379, 'https://ror.org/0405ahw63', 'no_lang_code', 1, 'https://ror.org/0405ahw63 DNA Diagnostic (Denmark)'), (78380, 'https://ror.org/0406r4n88', 'no_lang_code', 1, 'https://ror.org/0406r4n88 AIM Infrarot-Module (Germany)'), (78381, 'https://ror.org/0407aqe25', 'de', 1, 'https://ror.org/0407aqe25 Märkisches Institut für Technologie- und Innovationsförderung'), (78382, 'https://ror.org/04084nh70', 'no_lang_code', 1, 'https://ror.org/04084nh70 SpectraDynamics (United States)'), (78383, 'https://ror.org/04089mn23', 'no_lang_code', 1, 'https://ror.org/04089mn23 Edgewell Personal Care (United States)'), (78384, 'https://ror.org/0409c3r50', 'en', 1, 'https://ror.org/0409c3r50 Institute for Fundamental Physics of the Universe'), (78385, 'https://ror.org/0409pat80', 'no_lang_code', 1, 'https://ror.org/0409pat80 DeVilbiss Healthcare (United States)'), (78386, 'https://ror.org/040ac0g28', 'en', 1, 'https://ror.org/040ac0g28 University of Civil Protection Университет гражданской защиты МЧС Республики Беларусь'), (78387, 'https://ror.org/040anr776', 'no_lang_code', 1, 'https://ror.org/040anr776 Toyo Suisan (Japan) 東洋水産株式会社'), (78388, 'https://ror.org/040apba86', 'en', 1, 'https://ror.org/040apba86 Global Research and Advocacy Group'), (78389, 'https://ror.org/040b2zb02', 'no_lang_code', 1, 'https://ror.org/040b2zb02 Riptide Autonomous Solutions (United States)'), (78390, 'https://ror.org/040bb7493', 'en', 1, 'https://ror.org/040bb7493 Biodiversity Research Center, Academia Sinica 中央研究院 生物多樣性研究中心'), (78391, 'https://ror.org/040d99j97', 'en', 1, 'https://ror.org/040d99j97 Institut für Wissenschaft und Ethik Institute of Science and Ethics'), (78392, 'https://ror.org/040dnvn05', 'no_lang_code', 1, 'https://ror.org/040dnvn05 Wave CPC (United States)'), (78393, 'https://ror.org/040e62975', 'no_lang_code', 1, 'https://ror.org/040e62975 US Biotest (United States)'), (78394, 'https://ror.org/040egw157', 'id', 1, 'https://ror.org/040egw157 Institut Teknologi dan Sains Nahdlatul Ulama'), (78395, 'https://ror.org/040ep5714', 'no_lang_code', 1, 'https://ror.org/040ep5714 Therabel (Netherlands)'), (78396, 'https://ror.org/040gqn094', 'en', 1, 'https://ror.org/040gqn094 HCOV Global'), (78397, 'https://ror.org/040k92z84', 'no_lang_code', 1, 'https://ror.org/040k92z84 Sanofi (Turkey)'), (78398, 'https://ror.org/040m02t59', 'no_lang_code', 1, 'https://ror.org/040m02t59 Hip Innovation Technology (United States)'), (78399, 'https://ror.org/040me2j46', 'es', 1, 'https://ror.org/040me2j46 Centro de Estudios Fotosintéticos y Bioquímicos'), (78400, 'https://ror.org/040n2wh36', 'en', 1, 'https://ror.org/040n2wh36 European Magnetic Field Laboratory'), (78401, 'https://ror.org/040spfh06', 'en', 1, 'https://ror.org/040spfh06 Wildlife Information Liaison Development'), (78402, 'https://ror.org/040t4st49', 'de', 1, 'https://ror.org/040t4st49 Ruhr-Forschungsinstitut für Innovations- und Strukturpolitik'), (78403, 'https://ror.org/040w54343', 'no_lang_code', 1, 'https://ror.org/040w54343 Institut Für Arbeits- und Baubetriebswissenschaft (Germany)'), (78404, 'https://ror.org/040xmsv41', 'no_lang_code', 1, 'https://ror.org/040xmsv41 Ibarakihigashi National Hospital 国立病院機構茨城東病院'), (78405, 'https://ror.org/04119yp22', 'no_lang_code', 1, 'https://ror.org/04119yp22 Ingine (United States)'), (78406, 'https://ror.org/0413rnb52', 'no_lang_code', 1, 'https://ror.org/0413rnb52 Nisshin Scientia (Japan) 日進サイエンティア'), (78407, 'https://ror.org/04154se97', 'en', 1, 'https://ror.org/04154se97 Bidar Organization for Medicinal and Aromatic plants'), (78408, 'https://ror.org/0415n4468', 'en', 1, 'https://ror.org/0415n4468 Institut für Ressourceneffizienz und Energiestrategien Institute for Resource Efficiency and Energy Strategies'), (78409, 'https://ror.org/0419b0d30', 'en', 1, 'https://ror.org/0419b0d30 Abrar University جامعة أبرار'), (78410, 'https://ror.org/0419fj215', 'en', 1, 'https://ror.org/0419fj215 Aerospace Information Research Institute 中国科学院空天信息创新研究院'), (78411, 'https://ror.org/041ajqr07', 'en', 1, 'https://ror.org/041ajqr07 Ishikawa Prefectural Library 石川県立図書館'), (78412, 'https://ror.org/041aqd617', 'no_lang_code', 1, 'https://ror.org/041aqd617 QVT (United States)'), (78413, 'https://ror.org/041bygf77', 'en', 1, 'https://ror.org/041bygf77 Ghent University Global Campus 겐트대학교'), (78414, 'https://ror.org/041d5xb89', 'de', 1, 'https://ror.org/041d5xb89 Verein zur Förderung Innovativer Verfahren in der Logistik'), (78415, 'https://ror.org/041d7hq08', 'no_lang_code', 1, 'https://ror.org/041d7hq08 Advance (Japan)'), (78416, 'https://ror.org/041eygf45', 'de', 1, 'https://ror.org/041eygf45 Institut für Umweltplanung und Raumentwicklung'), (78417, 'https://ror.org/041fffy58', 'en', 1, 'https://ror.org/041fffy58 Central Alabama Veterans Health Care System'), (78418, 'https://ror.org/041j42q70', 'en', 1, 'https://ror.org/041j42q70 South African Environmental Observation Network'), (78419, 'https://ror.org/041mg2534', 'no_lang_code', 1, 'https://ror.org/041mg2534 Retrotope (United States)'), (78420, 'https://ror.org/041ms9k93', 'en', 1, 'https://ror.org/041ms9k93 Beijing Foresty Machinery Institute 国家林业和草原局北京林业机械研究所'), (78421, 'https://ror.org/041n1pp62', 'en', 1, 'https://ror.org/041n1pp62 SouthSouthNorth'), (78422, 'https://ror.org/041nfer11', 'es', 1, 'https://ror.org/041nfer11 Menescalia Centro Veterinario'), (78423, 'https://ror.org/041ppys11', 'no_lang_code', 1, 'https://ror.org/041ppys11 Hesse (Germany)'), (78424, 'https://ror.org/041v1ea26', 'en', 1, 'https://ror.org/041v1ea26 NCMI Information and Data Centre'), (78425, 'https://ror.org/041v5th48', 'en', 1, 'https://ror.org/041v5th48 Affiliated Hospital of Shaanxi University of Chinese Medicine 陕西中医药大学附属医院'), (78426, 'https://ror.org/041vwff03', 'no_lang_code', 1, 'https://ror.org/041vwff03 Fuso Pharmaceutical Industries (Japan) 扶桑薬品工業株式会社'), (78427, 'https://ror.org/041w6fe35', 'no_lang_code', 1, 'https://ror.org/041w6fe35 Spetec (Germany)'), (78428, 'https://ror.org/041y46z19', 'no_lang_code', 1, 'https://ror.org/041y46z19 Richardson Electronics (United Kingdom)'), (78429, 'https://ror.org/041y61656', 'no_lang_code', 1, 'https://ror.org/041y61656 Heliae (United States)'), (78430, 'https://ror.org/042031a56', 'de', 1, 'https://ror.org/042031a56 Verband Sächsischer Bildungsinstitute'), (78431, 'https://ror.org/0421cc730', 'no_lang_code', 1, 'https://ror.org/0421cc730 Precision Polyolefins (United States)'), (78432, 'https://ror.org/0421qr997', 'en', 1, 'https://ror.org/0421qr997 National University of Sciences, Technologies, Engineering and Mathematics Université Nationale des Sciences, Technologies, Ingénierie et Mathématiques'), (78433, 'https://ror.org/0422rck44', 'no_lang_code', 1, 'https://ror.org/0422rck44 Allied Healthcare Products (United States)'), (78434, 'https://ror.org/04236xc45', 'en', 1, 'https://ror.org/04236xc45 Tama County Public Health & Home Care'), (78435, 'https://ror.org/0423yjj08', 'en', 1, 'https://ror.org/0423yjj08 Borderstep Institut für Innovation und Nachhaltigkeit Borderstep Institute for Innovation and Sustainability'), (78436, 'https://ror.org/0424wxn97', 'de', 1, 'https://ror.org/0424wxn97 Institut für Postfossile Logistik'), (78437, 'https://ror.org/0425qnd07', 'no_lang_code', 1, 'https://ror.org/0425qnd07 Institut für Produktionsmanagement und Logistik (Germany)'), (78438, 'https://ror.org/04265mc69', 'de', 1, 'https://ror.org/04265mc69 Forschungsinstitut für innovative Arbeitsgestaltung und Prävention'), (78439, 'https://ror.org/0426eeb63', 'no_lang_code', 1, 'https://ror.org/0426eeb63 Pacific Research Group (United States)'), (78440, 'https://ror.org/0428ha587', 'en', 1, 'https://ror.org/0428ha587 Orlando VA Medical Center'), (78441, 'https://ror.org/042ag0556', 'en', 1, 'https://ror.org/042ag0556 Ehime Institute of Industrial Technology Paper Technology Center 愛媛県産業技術研究所 紙産業技術センター'), (78442, 'https://ror.org/042anhx64', 'no_lang_code', 1, 'https://ror.org/042anhx64 UCT Coatings (United States)'), (78443, 'https://ror.org/042b03f56', 'no_lang_code', 1, 'https://ror.org/042b03f56 Mane (France)'), (78444, 'https://ror.org/042bvs696', 'en', 1, 'https://ror.org/042bvs696 Startups.be'), (78445, 'https://ror.org/042cmjn68', 'no_lang_code', 1, 'https://ror.org/042cmjn68 3Shape (Denmark)'), (78446, 'https://ror.org/042d6f122', 'no_lang_code', 1, 'https://ror.org/042d6f122 Lacer (Spain)'), (78447, 'https://ror.org/042fkva46', 'no_lang_code', 1, 'https://ror.org/042fkva46 Graphic Science (United Kingdom)'), (78448, 'https://ror.org/042ft0a49', 'de', 1, 'https://ror.org/042ft0a49 Stiftung Jugend forscht'), (78449, 'https://ror.org/042mf3776', 'no_lang_code', 1, 'https://ror.org/042mf3776 Ophidion (United States)'), (78450, 'https://ror.org/042ms5h77', 'en', 1, 'https://ror.org/042ms5h77 UK Council on Deafness'), (78451, 'https://ror.org/042n88708', 'no_lang_code', 1, 'https://ror.org/042n88708 Nitto RIKEN (Japan) 日東理化学株式会社'), (78452, 'https://ror.org/042qbe045', 'es', 1, 'https://ror.org/042qbe045 Centro de Investigación en Salud Dr. Hugo Mendoza'), (78453, 'https://ror.org/042r8hg55', 'no_lang_code', 1, 'https://ror.org/042r8hg55 Solid State Ceramics (United States)'), (78454, 'https://ror.org/042rxfh43', 'no_lang_code', 1, 'https://ror.org/042rxfh43 Seeqc (United States)'), (78455, 'https://ror.org/042s3g481', 'no_lang_code', 1, 'https://ror.org/042s3g481 Thuringian Institute of Sustainability and Climate Protection (Germany)'), (78456, 'https://ror.org/042wav684', 'en', 1, 'https://ror.org/042wav684 Bulgarian National Bank Българска народна банка'), (78457, 'https://ror.org/042wb3s35', 'en', 1, 'https://ror.org/042wb3s35 Selangor Business School'), (78458, 'https://ror.org/042xh2258', 'no_lang_code', 1, 'https://ror.org/042xh2258 Vatech (South Korea)'), (78459, 'https://ror.org/042xrgf63', 'de', 1, 'https://ror.org/042xrgf63 Lehr- und Versuchsanstalt für Viehhaltung Hofgut Neumühle'), (78460, 'https://ror.org/042z8zj53', 'en', 1, 'https://ror.org/042z8zj53 Aso Information Business College Fukuoka 麻生情報ビジネス専門学校福岡校'), (78461, 'https://ror.org/042zg6d08', 'de', 1, 'https://ror.org/042zg6d08 Max Zöllner Stiftung'), (78462, 'https://ror.org/0432avs60', 'no_lang_code', 1, 'https://ror.org/0432avs60 Corium (United States)'), (78463, 'https://ror.org/0432w2a74', 'no_lang_code', 1, 'https://ror.org/0432w2a74 Bochumer Institut für Technologie (Germany)'), (78464, 'https://ror.org/0433h3c62', 'en', 1, 'https://ror.org/0433h3c62 Agencija za Zaštitu Osobnih Podataka Croatian Personal Data Protection Agency'), (78465, 'https://ror.org/04340dw19', 'en', 1, 'https://ror.org/04340dw19 euroCRIS'), (78466, 'https://ror.org/0434zpn71', 'en', 1, 'https://ror.org/0434zpn71 International Sámi Film Institute'), (78467, 'https://ror.org/043570368', 'en', 1, 'https://ror.org/043570368 City of Antwerp Stad Antwerpen'), (78468, 'https://ror.org/0435jsb33', 'no_lang_code', 1, 'https://ror.org/0435jsb33 22nd Century Group (United States)'), (78469, 'https://ror.org/0438mhy97', 'en', 1, 'https://ror.org/0438mhy97 Egyptian Initiative for Personal Rights المبادرة المصرية للحقوق الشخصية'), (78470, 'https://ror.org/043afjr64', 'en', 1, 'https://ror.org/043afjr64 Women''s Brain Project'), (78471, 'https://ror.org/043ajem71', 'en', 1, 'https://ror.org/043ajem71 Catalytic Longevity'), (78472, 'https://ror.org/043e44e41', 'en', 1, 'https://ror.org/043e44e41 Center for Regional Economic Competitiveness'), (78473, 'https://ror.org/043fbs867', 'no_lang_code', 1, 'https://ror.org/043fbs867 Stimwave Technologies (United States)'), (78474, 'https://ror.org/043fdq347', 'no_lang_code', 1, 'https://ror.org/043fdq347 SUSS MicroTec (Switzerland)'), (78475, 'https://ror.org/043gj6932', 'en', 1, 'https://ror.org/043gj6932 Tokyo Technical College 東京テクニカルカレッジ'), (78476, 'https://ror.org/043h59p22', 'no_lang_code', 1, 'https://ror.org/043h59p22 Orbia (Mexico)'), (78477, 'https://ror.org/043hxea55', 'en', 1, 'https://ror.org/043hxea55 The First People''s Hospital of Guiyang 贵阳市第一人民医院'), (78478, 'https://ror.org/043kzcw74', 'en', 1, 'https://ror.org/043kzcw74 Center for the Study of Equity and Governance in Health Systems Centro de Estudios para la Equidad y Gobernanza en Sistemas de Salud'), (78479, 'https://ror.org/043m06r15', 'no_lang_code', 1, 'https://ror.org/043m06r15 Bioquell (United Kingdom)'), (78480, 'https://ror.org/043mt5433', 'en', 1, 'https://ror.org/043mt5433 Organization for Social Science Research in Eastern and Southern Africa'), (78481, 'https://ror.org/043nk1744', 'no_lang_code', 1, 'https://ror.org/043nk1744 Kobe Material Testing Laboratory (Japan)'), (78482, 'https://ror.org/043q1rx18', 'no_lang_code', 1, 'https://ror.org/043q1rx18 Dytron (Slovakia)'), (78483, 'https://ror.org/043q87b85', 'de', 1, 'https://ror.org/043q87b85 Wissenschaftliche Stadtbibliothek Mainz'), (78484, 'https://ror.org/043qmsk75', 'no_lang_code', 1, 'https://ror.org/043qmsk75 Spectradyne (United States)'), (78485, 'https://ror.org/043vdcr39', 'en', 1, 'https://ror.org/043vdcr39 Mental Health Commission'), (78486, 'https://ror.org/043vk9688', 'no_lang_code', 1, 'https://ror.org/043vk9688 Vanilla Unmanned (United States)'), (78487, 'https://ror.org/043wq2k30', 'en', 1, 'https://ror.org/043wq2k30 East-Siberian Institute of Economics and Management Восточно-сибирский институт экономики и менеджмента'), (78488, 'https://ror.org/0440c3437', 'en', 1, 'https://ror.org/0440c3437 Information Technology Laboratory'), (78489, 'https://ror.org/0440hsj80', 'no_lang_code', 1, 'https://ror.org/0440hsj80 Perorsaanermik Ilinniarfik / College of Social Education'), (78490, 'https://ror.org/0441nm020', 'en', 1, 'https://ror.org/0441nm020 Iwate Cultural Promotion agency 財団法人岩手県文化振興事業'), (78491, 'https://ror.org/0441q2c30', 'de', 1, 'https://ror.org/0441q2c30 DVGW - Technologiezentrum Wasser, DVGW - Water Technology Center'), (78492, 'https://ror.org/0441qqc51', 'no_lang_code', 1, 'https://ror.org/0441qqc51 Scomm (United States)'), (78493, 'https://ror.org/0441yn115', 'no_lang_code', 1, 'https://ror.org/0441yn115 Deutsche WindGuard (Germany)'), (78494, 'https://ror.org/0443rmh76', 'en', 1, 'https://ror.org/0443rmh76 Wuhan Blood Center 武汉血液中心'), (78495, 'https://ror.org/044eskk16', 'en', 1, 'https://ror.org/044eskk16 Team University'), (78496, 'https://ror.org/044g40g24', 'no_lang_code', 1, 'https://ror.org/044g40g24 Kumiai Chemical Industry (Japan) クミアイ化学工業'), (78497, 'https://ror.org/044hpwe09', 'en', 1, 'https://ror.org/044hpwe09 IIT@Harvard'), (78498, 'https://ror.org/044j01f08', 'no_lang_code', 1, 'https://ror.org/044j01f08 Traycer (United States)'), (78499, 'https://ror.org/044j7ag44', 'no_lang_code', 1, 'https://ror.org/044j7ag44 ForteBio (United States)'), (78500, 'https://ror.org/044jk0m18', 'no_lang_code', 1, 'https://ror.org/044jk0m18 Cesic (Germany)'), (78501, 'https://ror.org/044jqqw48', 'de', 1, 'https://ror.org/044jqqw48 Staatliche Kunsthalle Karlsruhe'), (78502, 'https://ror.org/044jzz105', 'no_lang_code', 1, 'https://ror.org/044jzz105 Clariance (Luxembourg)'), (78503, 'https://ror.org/044nbg291', 'en', 1, 'https://ror.org/044nbg291 Banca Națională a României National Bank of Romania'), (78504, 'https://ror.org/044pe8918', 'en', 1, 'https://ror.org/044pe8918 Otsu City Museum Of History 大津市歴史博物館'), (78505, 'https://ror.org/044r8dr88', 'no_lang_code', 1, 'https://ror.org/044r8dr88 Pathlab (New Zealand)'), (78506, 'https://ror.org/044r8r947', 'no_lang_code', 1, 'https://ror.org/044r8r947 Ghana Institute of Languages'), (78507, 'https://ror.org/044snpb24', 'en', 1, 'https://ror.org/044snpb24 Research Institute of Forestry Policy and Information 中国林业科学研究院林业研究所'), (78508, 'https://ror.org/044t1vj04', 'no_lang_code', 1, 'https://ror.org/044t1vj04 ABEnzymes (Germany)'), (78509, 'https://ror.org/044tnwv36', 'no_lang_code', 1, 'https://ror.org/044tnwv36 ProteinOne (United States)'), (78510, 'https://ror.org/044tp0a91', 'no_lang_code', 1, 'https://ror.org/044tp0a91 Morishita Jintan (Japan) 森下仁丹株式会社'), (78511, 'https://ror.org/044tqdm09', 'no_lang_code', 1, 'https://ror.org/044tqdm09 Osteomed (United States)'), (78512, 'https://ror.org/044w5t390', 'en', 1, 'https://ror.org/044w5t390 European Centre for Community Education'), (78513, 'https://ror.org/044yd5h03', 'fr', 1, 'https://ror.org/044yd5h03 CNR de la Résistance aux Antibiotiques'), (78514, 'https://ror.org/044ydn458', 'en', 1, 'https://ror.org/044ydn458 Brazilian Institute of Neuroscience and Neurotechnology Instituto Brasileiro de Neurociência e Neurotecnologia'), (78515, 'https://ror.org/044ytdk33', 'en', 1, 'https://ror.org/044ytdk33 ForschungsVerbund Erneuerbare Energien Renewable Energy Research Association'), (78516, 'https://ror.org/0450da943', 'no_lang_code', 1, 'https://ror.org/0450da943 PapGene (United States)'), (78517, 'https://ror.org/04567sh69', 'en', 1, 'https://ror.org/04567sh69 United Nations Office on Drugs and Crime'), (78518, 'https://ror.org/0457cab92', 'no_lang_code', 1, 'https://ror.org/0457cab92 Miyoshi Kasei (Japan) 三好化成株式会社'), (78519, 'https://ror.org/045852a14', 'no_lang_code', 1, 'https://ror.org/045852a14 Yamagata Prefectural Shinjo Hospital 山形県立新庄病院'), (78520, 'https://ror.org/045b7dz91', 'no_lang_code', 1, 'https://ror.org/045b7dz91 Echigo Matsunoyama Forest School Kiroro 越後松之山「森の学校」キョロロ'), (78521, 'https://ror.org/045c7x933', 'no_lang_code', 1, 'https://ror.org/045c7x933 VivaQuant (United States)'), (78522, 'https://ror.org/045cajz52', 'de', 1, 'https://ror.org/045cajz52 Dommuseum Hildesheim'), (78523, 'https://ror.org/045dj7z60', 'en', 1, 'https://ror.org/045dj7z60 International Fertilizer Development Center'), (78524, 'https://ror.org/045g0dr61', 'no_lang_code', 1, 'https://ror.org/045g0dr61 Orient Chemical Industries (Japan) オリヱント化学工業株式会社'), (78525, 'https://ror.org/045g15j06', 'no_lang_code', 1, 'https://ror.org/045g15j06 Chevron (China) 雪佛龍香港有限公司'), (78526, 'https://ror.org/045hcdy93', 'no_lang_code', 1, 'https://ror.org/045hcdy93 Wescam (Canada)'), (78527, 'https://ror.org/045j7j567', 'no_lang_code', 1, 'https://ror.org/045j7j567 Michelin (United Kingdom)'), (78528, 'https://ror.org/045jj6w47', 'en', 1, 'https://ror.org/045jj6w47 Institute for Building Systems Engineering Dresden Research and Application'), (78529, 'https://ror.org/045jy1q53', 'de', 1, 'https://ror.org/045jy1q53 Instituts für Strukturpolitik und Wirtschaftsförderung Gemeinnützige Gesellschaft'), (78530, 'https://ror.org/045ky2r08', 'de', 1, 'https://ror.org/045ky2r08 Erich-Brost-Institut'), (78531, 'https://ror.org/045pdpn43', 'en', 1, 'https://ror.org/045pdpn43 Flanders Institute for Logistics Vlaams Instituut voor de Logistiek'), (78532, 'https://ror.org/045qf3j54', 'en', 1, 'https://ror.org/045qf3j54 Center for Security and Emerging Technology'), (78533, 'https://ror.org/045qk3139', 'no_lang_code', 1, 'https://ror.org/045qk3139 Shock Transients (United States)'), (78534, 'https://ror.org/045r80614', 'no_lang_code', 1, 'https://ror.org/045r80614 CIP Chemisches Institut Pforzheim GmbH (Germany)'), (78535, 'https://ror.org/045rr1351', 'en', 1, 'https://ror.org/045rr1351 Alabama Library Association'), (78536, 'https://ror.org/045smr203', 'en', 1, 'https://ror.org/045smr203 Warm Heart Worldwide'), (78537, 'https://ror.org/045tbeb23', 'de', 1, 'https://ror.org/045tbeb23 Lehmbruck Museum'), (78538, 'https://ror.org/045w00s14', 'no_lang_code', 1, 'https://ror.org/045w00s14 Tech 21 (United States)'), (78539, 'https://ror.org/045wez665', 'no_lang_code', 1, 'https://ror.org/045wez665 Crescita Therapeutics (Canada)'), (78540, 'https://ror.org/045wyxp42', 'no_lang_code', 1, 'https://ror.org/045wyxp42 Quick-Med Technologies (United States)'), (78541, 'https://ror.org/045yf0774', 'en', 1, 'https://ror.org/045yf0774 Center for Neuroscience and Cognitive Systems'), (78542, 'https://ror.org/046575319', 'no_lang_code', 1, 'https://ror.org/046575319 E-T-A Elektrotechnische Apparate (Germany)'), (78543, 'https://ror.org/0465gqv59', 'en', 1, 'https://ror.org/0465gqv59 Maharashtra Forest Department महाराष्ट्र वन विभाग'), (78544, 'https://ror.org/0466nq257', 'en', 1, 'https://ror.org/0466nq257 China Academic Degrees and Graduate Education Development Center 中国学位与研究生教育信息网'), (78545, 'https://ror.org/0467ep474', 'no_lang_code', 1, 'https://ror.org/0467ep474 Herrenknecht (Germany)'), (78546, 'https://ror.org/0468x4e75', 'en', 1, 'https://ror.org/0468x4e75 UK Data Service'), (78547, 'https://ror.org/04693s912', 'no_lang_code', 1, 'https://ror.org/04693s912 NeuroGenetic Pharmaceuticals (United States)'), (78548, 'https://ror.org/0469c4m52', 'en', 1, 'https://ror.org/0469c4m52 Saitama Prefectural River Museum 埼玉県立川の博物館'), (78549, 'https://ror.org/046axse10', 'en', 1, 'https://ror.org/046axse10 The Japanese Institute of Fisheries Infrastructure and Communities 漁港漁場漁村総合研究所'), (78550, 'https://ror.org/046eef166', 'no_lang_code', 1, 'https://ror.org/046eef166 Velcro (United Kingdom)'), (78551, 'https://ror.org/046em8f15', 'en', 1, 'https://ror.org/046em8f15 Wyoming Game and Fish Department'), (78552, 'https://ror.org/046fxzx47', 'no_lang_code', 1, 'https://ror.org/046fxzx47 France Bed Holdings (Japan) フランスベッドホールディングス'), (78553, 'https://ror.org/046hrxd41', 'en', 1, 'https://ror.org/046hrxd41 China Society of Plant Protection 中国植物保护学会'), (78554, 'https://ror.org/046j18q84', 'de', 1, 'https://ror.org/046j18q84 Internationales Institut für Nachhaltiges Energiemanagement, Politik, Risiko und Soziale Innovationen'), (78555, 'https://ror.org/046je4759', 'en', 1, 'https://ror.org/046je4759 Western Returned Scholars Association·Overseas-Educated Scholars Association of China 欧美同学会'), (78556, 'https://ror.org/046m3e234', 'en', 1, 'https://ror.org/046m3e234 Public Health Clinical Center of Chengdu 成都市公共卫生临床医疗中心'), (78557, 'https://ror.org/046myzn82', 'no_lang_code', 1, 'https://ror.org/046myzn82 Silk Technologies (United States)'), (78558, 'https://ror.org/046qe5448', 'no_lang_code', 1, 'https://ror.org/046qe5448 MS-Schramberg (Germany)'), (78559, 'https://ror.org/046qhgy77', 'no_lang_code', 1, 'https://ror.org/046qhgy77 4D Pharma (United Kingdom)'), (78560, 'https://ror.org/046v1a544', 'no_lang_code', 1, 'https://ror.org/046v1a544 Bejo Zaden (Netherlands)'), (78561, 'https://ror.org/046w2n447', 'no_lang_code', 1, 'https://ror.org/046w2n447 Saban Ventures (Israel)'), (78562, 'https://ror.org/046wcrs16', 'de', 1, 'https://ror.org/046wcrs16 Deutsche Handwerksinstitut'), (78563, 'https://ror.org/046y50921', 'no_lang_code', 1, 'https://ror.org/046y50921 AB Vista (United Kingdom)'), (78564, 'https://ror.org/046ycbp23', 'en', 1, 'https://ror.org/046ycbp23 Research Institute of Machinery Industry Economic&Management 机械工业经济与管理研究所'), (78565, 'https://ror.org/046z2j897', 'no_lang_code', 1, 'https://ror.org/046z2j897 Golden Biotech (Taiwan) 國鼎生物科技股份有限公司'), (78566, 'https://ror.org/046znv447', 'en', 1, 'https://ror.org/046znv447 The Sixth People''s Hospital of Zhengzhou 郑州市第六人民医院'), (78567, 'https://ror.org/0470e9841', 'no_lang_code', 1, 'https://ror.org/0470e9841 Infineon Technologies (Singapore)'), (78568, 'https://ror.org/04730gw90', 'en', 1, 'https://ror.org/04730gw90 Marine Technical College 海技大学校'), (78569, 'https://ror.org/04753za72', 'no_lang_code', 1, 'https://ror.org/04753za72 Retractable Technologies (United States)'), (78570, 'https://ror.org/0477qv361', 'no_lang_code', 1, 'https://ror.org/0477qv361 PeopleTec (United States)'), (78571, 'https://ror.org/047berg44', 'en', 1, 'https://ror.org/047berg44 Telerehabilitation International'), (78572, 'https://ror.org/047d27s15', 'de', 1, 'https://ror.org/047d27s15 Permakultur Institut'), (78573, 'https://ror.org/047d2d387', 'en', 1, 'https://ror.org/047d2d387 Centre for the Observation and Modelling of Earthquakes, Volcanoes and Tectonics'), (78574, 'https://ror.org/047dnad80', 'no_lang_code', 1, 'https://ror.org/047dnad80 Cemex (Mexico)'), (78575, 'https://ror.org/047dy3w25', 'en', 1, 'https://ror.org/047dy3w25 Likhatchev Russian Research Institute for Cultural and Natural Heritage Российский научно-исследовательский институт культурного и природного наследия'), (78576, 'https://ror.org/047e5gf10', 'no_lang_code', 1, 'https://ror.org/047e5gf10 ClassNK 一般財団法人日本海事協会'), (78577, 'https://ror.org/047ffme03', 'no_lang_code', 1, 'https://ror.org/047ffme03 Urban Institute (Germany)'), (78578, 'https://ror.org/047hrmf08', 'en', 1, 'https://ror.org/047hrmf08 Islamic Azad University, Larestan Branch دانشگاه آزاد اسلامی واحد لارستان'), (78579, 'https://ror.org/047hw1v81', 'no_lang_code', 1, 'https://ror.org/047hw1v81 BlueDot (Canada)'), (78580, 'https://ror.org/047j13421', 'no_lang_code', 1, 'https://ror.org/047j13421 SpineWelding (Switzerland)'), (78581, 'https://ror.org/047jxb064', 'en', 1, 'https://ror.org/047jxb064 Network on Urban Research in the European Union'), (78582, 'https://ror.org/047krge18', 'no_lang_code', 1, 'https://ror.org/047krge18 Mobileeee (Germany)'), (78583, 'https://ror.org/047q4fb87', 'en', 1, 'https://ror.org/047q4fb87 Indian Institute of Natural Resins and Gums'), (78584, 'https://ror.org/047r0b042', 'no_lang_code', 1, 'https://ror.org/047r0b042 New Dimensions Research (United States)'), (78585, 'https://ror.org/047r47y76', 'en', 1, 'https://ror.org/047r47y76 Beijing Computing Center'), (78586, 'https://ror.org/047rmsn51', 'en', 1, 'https://ror.org/047rmsn51 Institute for the Science and Technology of Plasmas Istituto per la Scienza e Tecnologia dei Plasmi'), (78587, 'https://ror.org/047rpw860', 'no_lang_code', 1, 'https://ror.org/047rpw860 Witzenhausen-Institut (Germany)'), (78588, 'https://ror.org/047sbcx71', 'en', 1, 'https://ror.org/047sbcx71 Institute of Molecular Biology, Academia Sinica 中央研究院分子生物研究所'), (78589, 'https://ror.org/047sn6763', 'en', 1, 'https://ror.org/047sn6763 Centre for Multidisciplinary Research in Health Science'), (78590, 'https://ror.org/047wzf575', 'no_lang_code', 1, 'https://ror.org/047wzf575 ICU Medical (United States)'), (78591, 'https://ror.org/047x5tz06', 'es', 1, 'https://ror.org/047x5tz06 Incubadora Venezolana de la Ciencia'), (78592, 'https://ror.org/047ycs764', 'en', 1, 'https://ror.org/047ycs764 paws4people'), (78593, 'https://ror.org/047ynz185', 'en', 1, 'https://ror.org/047ynz185 Sri Konda Laxman Telangana State Horticultural University శ్రీ కొండా లక్ష్మణ్ తెలంగాణ రాష్ట్రం హార్టికల్చర్ యూనివర్సిటీ'), (78594, 'https://ror.org/047zh6a56', 'no_lang_code', 1, 'https://ror.org/047zh6a56 NHanced Semiconductors (United States)'), (78595, 'https://ror.org/04817hq10', 'en', 1, 'https://ror.org/04817hq10 Okinawa Prefecture 沖縄県公害衛生研究所'), (78596, 'https://ror.org/0482p8a89', 'en', 1, 'https://ror.org/0482p8a89 United Nations Economic and Social Commission for Asia and the Pacific'), (78597, 'https://ror.org/0483am868', 'en', 1, 'https://ror.org/0483am868 Public interest incorporated foundation Keep Association 公益財団法人キープ協会'), (78598, 'https://ror.org/0483jfq80', 'no_lang_code', 1, 'https://ror.org/0483jfq80 Atlas Spine (United States)'), (78599, 'https://ror.org/04845gv95', 'en', 1, 'https://ror.org/04845gv95 The Physical Society of Japan 日本物理学会'), (78600, 'https://ror.org/0484fgk51', 'no_lang_code', 1, 'https://ror.org/0484fgk51 Institut für Pflanzenkultur (Germany)'), (78601, 'https://ror.org/0486vjb84', 'en', 1, 'https://ror.org/0486vjb84 Himalayan Institute of Alternatives, Ladakh'), (78602, 'https://ror.org/0487zkp40', 'en', 1, 'https://ror.org/0487zkp40 Chiba Prefecture Cultural Property Center 蝪千葉県文化財センター'), (78603, 'https://ror.org/0488tfs18', 'no_lang_code', 1, 'https://ror.org/0488tfs18 Broncus (United States)'), (78604, 'https://ror.org/04898td28', 'no_lang_code', 1, 'https://ror.org/04898td28 Compagnie Tunisienne de Forage (Tunisia)'), (78605, 'https://ror.org/0489rbg31', 'no_lang_code', 1, 'https://ror.org/0489rbg31 Viavi Solutions (United Kingdom)'), (78606, 'https://ror.org/048adnk25', 'no_lang_code', 1, 'https://ror.org/048adnk25 Acoustic Metamaterials Group (China)'), (78607, 'https://ror.org/048amag53', 'no_lang_code', 1, 'https://ror.org/048amag53 GTT-Technologies (Germany)'), (78608, 'https://ror.org/048b89934', 'no_lang_code', 1, 'https://ror.org/048b89934 Sonoran Biosciences (United States)'), (78609, 'https://ror.org/048evbw70', 'en', 1, 'https://ror.org/048evbw70 Institute of Cellular and Organismic Biology, Academia Sinica 細胞與個體生物研究所'), (78610, 'https://ror.org/048f8a181', 'no_lang_code', 1, 'https://ror.org/048f8a181 IDBI Bank'), (78611, 'https://ror.org/048gb8620', 'es', 1, 'https://ror.org/048gb8620 Centro Tecnológico Avanzado de La Piedra'), (78612, 'https://ror.org/048j1wp71', 'en', 1, 'https://ror.org/048j1wp71 Saratoga Hospital'), (78613, 'https://ror.org/048kr8422', 'no_lang_code', 1, 'https://ror.org/048kr8422 Rocky Mountain Scientific Laboratory (United States)'), (78614, 'https://ror.org/048mkn426', 'no_lang_code', 1, 'https://ror.org/048mkn426 Tusaar (United States)'), (78615, 'https://ror.org/048nc2z47', 'en', 1, 'https://ror.org/048nc2z47 Xiamen Chang Gung Hospital 厦门长庚医院'), (78616, 'https://ror.org/048qms624', 'en', 1, 'https://ror.org/048qms624 Bank of Slovenia Banka Slovenije'), (78617, 'https://ror.org/048r7yt92', 'en', 1, 'https://ror.org/048r7yt92 EngineeringUK'), (78618, 'https://ror.org/048s1x807', 'en', 1, 'https://ror.org/048s1x807 ESEP-LE BERGER University'), (78619, 'https://ror.org/048stab03', 'en', 1, 'https://ror.org/048stab03 World University Service'), (78620, 'https://ror.org/048t29e55', 'en', 1, 'https://ror.org/048t29e55 Youth Network for Reform'), (78621, 'https://ror.org/048xr0t03', 'no_lang_code', 1, 'https://ror.org/048xr0t03 Cancerrop (South Korea)'), (78622, 'https://ror.org/0493cs919', 'no_lang_code', 1, 'https://ror.org/0493cs919 Jusung Engineering (South Korea) 주성엔지니어링'), (78623, 'https://ror.org/0493jda02', 'no_lang_code', 1, 'https://ror.org/0493jda02 THD (Italy)'), (78624, 'https://ror.org/04941ww55', 'no_lang_code', 1, 'https://ror.org/04941ww55 Hamari Chemicals (Japan)'), (78625, 'https://ror.org/04946pg51', 'no_lang_code', 1, 'https://ror.org/04946pg51 Vemac (Germany)'), (78626, 'https://ror.org/0494ksh79', 'en', 1, 'https://ror.org/0494ksh79 Center of Applied Aeronautical Research Zentrum für Angewandte Luftfahrtforschung'), (78627, 'https://ror.org/0497txp66', 'en', 1, 'https://ror.org/0497txp66 Great Lakes Maritime Research Institute'), (78628, 'https://ror.org/04983b693', 'en', 1, 'https://ror.org/04983b693 Instrumentation Technology and Economy Institute 仪器仪表技术经济研究所'), (78629, 'https://ror.org/04999hq03', 'de', 1, 'https://ror.org/04999hq03 Klinikum Brandenburg'), (78630, 'https://ror.org/049asma29', 'en', 1, 'https://ror.org/049asma29 Henan Institute of Geological Survey 河南省地质调查局'), (78631, 'https://ror.org/049bsvy30', 'en', 1, 'https://ror.org/049bsvy30 Oita Prefectural Hida Forest Engineering High School 大分県立日田林工高'), (78632, 'https://ror.org/049bwzr51', 'en', 1, 'https://ror.org/049bwzr51 FHS St. Gallen Hochschule für Angewandte Wissenschaften University of Applied Sciences St. Gallen'), (78633, 'https://ror.org/049c9xv68', 'en', 1, 'https://ror.org/049c9xv68 Department of Medical Sciences Аддзяленне медыцынскіх навук'), (78634, 'https://ror.org/049cvkb03', 'en', 1, 'https://ror.org/049cvkb03 Reserve Bank of Australia'), (78635, 'https://ror.org/049d04r12', 'no_lang_code', 1, 'https://ror.org/049d04r12 Arrakis Therapeutics (United States)'), (78636, 'https://ror.org/049ektt11', 'no_lang_code', 1, 'https://ror.org/049ektt11 Melior Discovery (United States)'), (78637, 'https://ror.org/049fn9772', 'it', 1, 'https://ror.org/049fn9772 Azienda Regionale Emergenza Urgenza'), (78638, 'https://ror.org/049fqwf34', 'no_lang_code', 1, 'https://ror.org/049fqwf34 Fermion (Finland)'), (78639, 'https://ror.org/049g0t365', 'en', 1, 'https://ror.org/049g0t365 Islamic Azad University Dolatabad دانشگاه آزاد اسلامی واحد دولت آباد'), (78640, 'https://ror.org/049h10h83', 'en', 1, 'https://ror.org/049h10h83 Tartu Ülikooli Loodusmuuseum University of Tartu Natural History Museum and Botanical Garden'), (78641, 'https://ror.org/049kqfg40', 'en', 1, 'https://ror.org/049kqfg40 High Intensity Heavy-ion Accelerator Facility 强流重离子加速器装置'), (78642, 'https://ror.org/049n6n725', 'en', 1, 'https://ror.org/049n6n725 National Hansen''s Disease Program'), (78643, 'https://ror.org/049n7x086', 'en', 1, 'https://ror.org/049n7x086 Government College Kodanchery ഗവണ്മെന്റ് കോളേജ്, കോടഞ്ചേരി'), (78644, 'https://ror.org/049p34y91', 'sk', 1, 'https://ror.org/049p34y91 Slovenský Metrologický Ústav'), (78645, 'https://ror.org/049pb7d13', 'no_lang_code', 1, 'https://ror.org/049pb7d13 Orbis Health Solutions (United States)'), (78646, 'https://ror.org/049qy6v50', 'en', 1, 'https://ror.org/049qy6v50 Zimbabwe Council For Higher Education'), (78647, 'https://ror.org/049rkmq69', 'no_lang_code', 1, 'https://ror.org/049rkmq69 Quside Technologies (Spain)'), (78648, 'https://ror.org/049s8hy38', 'no_lang_code', 1, 'https://ror.org/049s8hy38 Q4 (United States)'), (78649, 'https://ror.org/049t4as69', 'fr', 1, 'https://ror.org/049t4as69 Réseau des Acheteurs Hospitaliers'), (78650, 'https://ror.org/049wfr424', 'no_lang_code', 1, 'https://ror.org/049wfr424 VAWD (United States)'), (78651, 'https://ror.org/049wwwm08', 'en', 1, 'https://ror.org/049wwwm08 Environmental Development Centre'), (78652, 'https://ror.org/049xdy517', 'no_lang_code', 1, 'https://ror.org/049xdy517 VITOK Engineers (United States)'), (78653, 'https://ror.org/04a0y3b96', 'en', 1, 'https://ror.org/04a0y3b96 Material Measurement Laboratory'), (78654, 'https://ror.org/04a55zb79', 'es', 1, 'https://ror.org/04a55zb79 Secretaría de Salud de Bogotá'), (78655, 'https://ror.org/04a6c5752', 'no_lang_code', 1, 'https://ror.org/04a6c5752 Navitas Systems (United States)'), (78656, 'https://ror.org/04a6evj08', 'no_lang_code', 1, 'https://ror.org/04a6evj08 Phagenesis (United Kingdom)'), (78657, 'https://ror.org/04aa0ed69', 'en', 1, 'https://ror.org/04aa0ed69 New England University Transportation Center'), (78658, 'https://ror.org/04abbs137', 'en', 1, 'https://ror.org/04abbs137 Institute of Genetic and Regenerative Medicine of the National Academy of Medical Sciences of Ukraine Державна установа "Інститут генетичної та регенеративної медицини Національної академії медичних наук України"'), (78659, 'https://ror.org/04aczrd15', 'en', 1, 'https://ror.org/04aczrd15 Vietnamese - German Center of Excellence in Medical Research'), (78660, 'https://ror.org/04ae5ch43', 'no_lang_code', 1, 'https://ror.org/04ae5ch43 Wakunaga (Japan) 湧永製薬株式会社'), (78661, 'https://ror.org/04aej1r39', 'en', 1, 'https://ror.org/04aej1r39 Deutsche MTM-Vereinigung German MTM Association'), (78662, 'https://ror.org/04ahrkj41', 'no_lang_code', 1, 'https://ror.org/04ahrkj41 Elementis (United Kingdom)'), (78663, 'https://ror.org/04ahz6d73', 'en', 1, 'https://ror.org/04ahz6d73 Department of Animal Husbandry निदेशालय पशुपालन'), (78664, 'https://ror.org/04ajzzc58', 'no_lang_code', 1, 'https://ror.org/04ajzzc58 FineSoft (Slovakia)'), (78665, 'https://ror.org/04am5ns61', 'en', 1, 'https://ror.org/04am5ns61 The Arab Academic College for Education in Israel המכללה האקדמית הערבית לחינוך בישראל الكلية الأكاديمية العربية للتربية في إسرائيل'), (78666, 'https://ror.org/04ar7w423', 'de', 1, 'https://ror.org/04ar7w423 Matthias-Claudius-Stiftung'), (78667, 'https://ror.org/04b09jz40', 'en', 1, 'https://ror.org/04b09jz40 Noah''s Light Foundation'), (78668, 'https://ror.org/04b3hkf22', 'no_lang_code', 1, 'https://ror.org/04b3hkf22 VR Rehab (United States)'), (78669, 'https://ror.org/04b55a558', 'no_lang_code', 1, 'https://ror.org/04b55a558 Leag (Germany)'), (78670, 'https://ror.org/04b5cmy23', 'en', 1, 'https://ror.org/04b5cmy23 Chubu University Daiichi High School 中部大学第一高等学校'), (78671, 'https://ror.org/04b7azg23', 'no_lang_code', 1, 'https://ror.org/04b7azg23 Noack Laboratorien (Germany)'), (78672, 'https://ror.org/04b7m4c37', 'no_lang_code', 1, 'https://ror.org/04b7m4c37 Tecomet (United States)'), (78673, 'https://ror.org/04b885n69', 'no_lang_code', 1, 'https://ror.org/04b885n69 Kaléo (United States)'), (78674, 'https://ror.org/04b8mn532', 'de', 1, 'https://ror.org/04b8mn532 Institut für Sozialpädagogische Forschung Mainz'), (78675, 'https://ror.org/04b8r4934', 'no_lang_code', 1, 'https://ror.org/04b8r4934 Ipsen (Italy)'), (78676, 'https://ror.org/04b93g231', 'en', 1, 'https://ror.org/04b93g231 Museum of Islamic Art متحف الفن الإسلامي'), (78677, 'https://ror.org/04b9q9g40', 'en', 1, 'https://ror.org/04b9q9g40 African Rural University'), (78678, 'https://ror.org/04ba5ke19', 'no_lang_code', 1, 'https://ror.org/04ba5ke19 Sharma & Associates (United States)'), (78679, 'https://ror.org/04bc6xb81', 'no_lang_code', 1, 'https://ror.org/04bc6xb81 Stadtwerke München (Germany)'), (78680, 'https://ror.org/04bcypt21', 'en', 1, 'https://ror.org/04bcypt21 Ministry of Agriculture Natural Resources and Rural Development Ministè l''Agrikilti Resous Natirèl ak Devlopman Riral Ministère de l''Agriculture des Ressources Naturelles et du Développement Rural'), (78681, 'https://ror.org/04bdqcb80', 'no_lang_code', 1, 'https://ror.org/04bdqcb80 Engineering Service Center und Handel (Germany)'), (78682, 'https://ror.org/04bdtk119', 'en', 1, 'https://ror.org/04bdtk119 Musée National des Beaux-Arts du Québec National Museum of Fine Arts of Quebec'), (78683, 'https://ror.org/04be23e26', 'no_lang_code', 1, 'https://ror.org/04be23e26 Silony Medical (Switzerland)'), (78684, 'https://ror.org/04bhpte75', 'no_lang_code', 1, 'https://ror.org/04bhpte75 IPS Elektroniklabor (Germany)'), (78685, 'https://ror.org/04bhvak10', 'de', 1, 'https://ror.org/04bhvak10 Institut für Soziale Arbeit'), (78686, 'https://ror.org/04bj0y344', 'en', 1, 'https://ror.org/04bj0y344 Dr. S.R. Chandrasekhar Institute of Speech and Hearing'), (78687, 'https://ror.org/04bjznv82', 'no_lang_code', 1, 'https://ror.org/04bjznv82 3-D Matrix (Japan)'), (78688, 'https://ror.org/04bnd9a95', 'no_lang_code', 1, 'https://ror.org/04bnd9a95 Shenzhen Goodix Technology (China) 汇顶科技'), (78689, 'https://ror.org/04bp8ss57', 'no_lang_code', 1, 'https://ror.org/04bp8ss57 GEF Ingenieur (Germany)'), (78690, 'https://ror.org/04bpb0r34', 'no_lang_code', 1, 'https://ror.org/04bpb0r34 Aerospace Institut Aerospace Institute (Germany)'), (78691, 'https://ror.org/04bphxp67', 'en', 1, 'https://ror.org/04bphxp67 Jesuit Centre for Theological Reflection'), (78692, 'https://ror.org/04bpmn027', 'no_lang_code', 1, 'https://ror.org/04bpmn027 Starix Technology (United States)'), (78693, 'https://ror.org/04bptvv47', 'en', 1, 'https://ror.org/04bptvv47 Daily Life'), (78694, 'https://ror.org/04bq1zr90', 'en', 1, 'https://ror.org/04bq1zr90 Institute of Modern History, Academia Sinica 中央研究院近代史研究所研究大樓'), (78695, 'https://ror.org/04bq6sg74', 'no_lang_code', 1, 'https://ror.org/04bq6sg74 Trifecta Solutions (United States)'), (78696, 'https://ror.org/04bqtg656', 'en', 1, 'https://ror.org/04bqtg656 Public Works'), (78697, 'https://ror.org/04bt02d30', 'en', 1, 'https://ror.org/04bt02d30 Hebei Provincial Center for Disease Control and Prevention 河北省疾病预防控制中心'), (78698, 'https://ror.org/04btxnx56', 'no_lang_code', 1, 'https://ror.org/04btxnx56 Sensitron Semiconductor (United States)'), (78699, 'https://ror.org/04bvhr204', 'no_lang_code', 1, 'https://ror.org/04bvhr204 Éternelle (United States)'), (78700, 'https://ror.org/04byng292', 'no_lang_code', 1, 'https://ror.org/04byng292 Syncopated Products (United States)'), (78701, 'https://ror.org/04bzdmw10', 'no_lang_code', 1, 'https://ror.org/04bzdmw10 Tietronix (United States)'), (78702, 'https://ror.org/04c0bqx97', 'en', 1, 'https://ror.org/04c0bqx97 Asia Pacific Construction Science and Technology Information Research Institute 亚太建设科技信息研究院有限公司'), (78703, 'https://ror.org/04c2v9g63', 'no_lang_code', 1, 'https://ror.org/04c2v9g63 Nutramax Laboratories (United States)'), (78704, 'https://ror.org/04c3ged70', 'en', 1, 'https://ror.org/04c3ged70 Ministry of Foreign Affairs Ministério das Relações Exteriores'), (78705, 'https://ror.org/04c3mjk87', 'de', 1, 'https://ror.org/04c3mjk87 DRK Landesverband Rheinland-Pfalz'), (78706, 'https://ror.org/04c4wb253', 'no_lang_code', 1, 'https://ror.org/04c4wb253 Applus+ IDIADA (United Kingdom)'), (78707, 'https://ror.org/04c6sva57', 'en', 1, 'https://ror.org/04c6sva57 Jiangsu Academy of Safety Science & Technology'), (78708, 'https://ror.org/04c7hmv88', 'de', 1, 'https://ror.org/04c7hmv88 Franziskus-Krankenhaus Berlin'), (78709, 'https://ror.org/04c83st90', 'en', 1, 'https://ror.org/04c83st90 Gustav Stresemann Institute Gustav-Stresemann-Institut'), (78710, 'https://ror.org/04c8tz716', 'en', 1, 'https://ror.org/04c8tz716 University of Global Health Equity'), (78711, 'https://ror.org/04cap6186', 'en', 1, 'https://ror.org/04cap6186 Phelps Hospital'), (78712, 'https://ror.org/04cby3g57', 'no_lang_code', 1, 'https://ror.org/04cby3g57 Wasatch Photonics (United States)'), (78713, 'https://ror.org/04cd0dy46', 'no_lang_code', 1, 'https://ror.org/04cd0dy46 Winchester Technologies (United States)'), (78714, 'https://ror.org/04cexx940', 'no_lang_code', 1, 'https://ror.org/04cexx940 OsteoVantage (United States)'), (78715, 'https://ror.org/04cghfw81', 'de', 1, 'https://ror.org/04cghfw81 Institut für Korrosions- und Schadensanalyse Dr.-Ing. Sabine Schultze'), (78716, 'https://ror.org/04cgxr267', 'no_lang_code', 1, 'https://ror.org/04cgxr267 NeuroMetrix (United States)'), (78717, 'https://ror.org/04cj8by85', 'en', 1, 'https://ror.org/04cj8by85 International Foundation for Integrated Care'), (78718, 'https://ror.org/04ckt1019', 'no_lang_code', 1, 'https://ror.org/04ckt1019 Arkion Life Sciences (United States)'), (78719, 'https://ror.org/04cmbqn37', 'de', 1, 'https://ror.org/04cmbqn37 Institut Berufs- und Innovationsforschung Medien'), (78720, 'https://ror.org/04cr34a11', 'en', 1, 'https://ror.org/04cr34a11 Yichang Central People''s Hospital 宜昌市中心人民医院'), (78721, 'https://ror.org/04csgyf07', 'de', 1, 'https://ror.org/04csgyf07 Deutsches Institut für Tropische und Subtropische Landwirtschaft'), (78722, 'https://ror.org/04cv89q08', 'en', 1, 'https://ror.org/04cv89q08 Sukraraj Tropical & Infectious Disease Hospital'), (78723, 'https://ror.org/04cwb1p56', 'de', 1, 'https://ror.org/04cwb1p56 Staats- und Universitätsbibliothek Bremen'), (78724, 'https://ror.org/04cxrsp65', 'de', 1, 'https://ror.org/04cxrsp65 Frankfurter Stiftung für Blinde und Sehbehinderte'), (78725, 'https://ror.org/04cxszt91', 'en', 1, 'https://ror.org/04cxszt91 Karamay Central Hospital of Xinjiang 克拉玛依市中心医院'), (78726, 'https://ror.org/04cy5nh07', 'en', 1, 'https://ror.org/04cy5nh07 Shanghai Optical Instrument Research Institute 上海光学仪器研究所'), (78727, 'https://ror.org/04cyj7b39', 'no_lang_code', 1, 'https://ror.org/04cyj7b39 Finch Therapeutics (United States)'), (78728, 'https://ror.org/04d1fsz63', 'no_lang_code', 1, 'https://ror.org/04d1fsz63 Chemko (Slovakia)'), (78729, 'https://ror.org/04d1tk502', 'en', 1, 'https://ror.org/04d1tk502 Agricultural Research Service - Midwest Area'), (78730, 'https://ror.org/04d3ma894', 'no_lang_code', 1, 'https://ror.org/04d3ma894 Berliner Wasserbetriebe (Germany)'), (78731, 'https://ror.org/04d3x5w26', 'en', 1, 'https://ror.org/04d3x5w26 Institute Of Horticulture Technology संस्थान बागवानी प्रौद्योगिकी'), (78732, 'https://ror.org/04d5bgh87', 'de', 1, 'https://ror.org/04d5bgh87 Landesanstalt für Kommunikation'), (78733, 'https://ror.org/04d5hc132', 'no_lang_code', 1, 'https://ror.org/04d5hc132 Noside 田中美郷教育研究所'), (78734, 'https://ror.org/04d5zsn45', 'de', 1, 'https://ror.org/04d5zsn45 Deutsch Amerikanisches Institut Saarland'), (78735, 'https://ror.org/04d9wma96', 'no_lang_code', 1, 'https://ror.org/04d9wma96 Xian Mechanical & Electric Institute (China) 西安机电研究所'), (78736, 'https://ror.org/04daygj89', 'es', 1, 'https://ror.org/04daygj89 Fundación María Cristina Masaveu Peterson María Cristina Masaveu Peterson Foundation'), (78737, 'https://ror.org/04dc4tx21', 'de', 1, 'https://ror.org/04dc4tx21 Malteser-Krankenhaus'), (78738, 'https://ror.org/04dcmpg83', 'en', 1, 'https://ror.org/04dcmpg83 Chongqing Public Health Medical Center 重庆市公共卫生医疗救治中心'), (78739, 'https://ror.org/04dcrb539', 'no_lang_code', 1, 'https://ror.org/04dcrb539 PVI System Technology (United States)'), (78740, 'https://ror.org/04de8hn78', 'no_lang_code', 1, 'https://ror.org/04de8hn78 Verus Research (United States)'), (78741, 'https://ror.org/04df39v43', 'en', 1, 'https://ror.org/04df39v43 State Scientific Institution "Institute of Educational Analytics" Державна наукова установа "Інститут освітньої аналітики"'), (78742, 'https://ror.org/04dgene15', 'no_lang_code', 1, 'https://ror.org/04dgene15 Ocuphire Pharma (United States)'), (78743, 'https://ror.org/04dk55y19', 'en', 1, 'https://ror.org/04dk55y19 Africa Early Childhood Network'), (78744, 'https://ror.org/04dkfar71', 'en', 1, 'https://ror.org/04dkfar71 Shenzhen Bao''an District People''s Hospital 深圳市宝安区人民医院'), (78745, 'https://ror.org/04dkw8s94', 'no_lang_code', 1, 'https://ror.org/04dkw8s94 Tyvak (United States)'); INSERT INTO `rors` VALUES (78746, 'https://ror.org/04dmgcf89', 'de', 1, 'https://ror.org/04dmgcf89 Institut Für Angewandte Kulturforschung'), (78747, 'https://ror.org/04dmgvm89', 'en', 1, 'https://ror.org/04dmgvm89 Dhanalakshmi Srinivasan Group of Institutions'), (78748, 'https://ror.org/04dmvwm54', 'de', 1, 'https://ror.org/04dmvwm54 Medizinische Akademie Erfurt'), (78749, 'https://ror.org/04dp0f897', 'en', 1, 'https://ror.org/04dp0f897 Cheyenne VA Medical Center'), (78750, 'https://ror.org/04dp5s194', 'en', 1, 'https://ror.org/04dp5s194 Wakayama Department of Agriculture, Forestry and Fisheries 和歌山県農林水産部'), (78751, 'https://ror.org/04dptbd37', 'no_lang_code', 1, 'https://ror.org/04dptbd37 Kyowa Chemical Industry (Japan) 協和化学工業株式会社'), (78752, 'https://ror.org/04dtbmg64', 'en', 1, 'https://ror.org/04dtbmg64 Hengyang Academy of Agricultural Sciences 衡阳市农业科学院'), (78753, 'https://ror.org/04dtzbe22', 'en', 1, 'https://ror.org/04dtzbe22 Shaheed Suhrawardy Medical College শহীদ সোহরাওয়ার্দী মেডিকেল কলেজ'), (78754, 'https://ror.org/04dvvw492', 'no_lang_code', 1, 'https://ror.org/04dvvw492 Riparian Pharmaceuticals (United States)'), (78755, 'https://ror.org/04dx81q90', 'en', 1, 'https://ror.org/04dx81q90 Cleveland Clinic London'), (78756, 'https://ror.org/04dx8cb40', 'no_lang_code', 1, 'https://ror.org/04dx8cb40 Azotic Technologies (United Kingdom)'), (78757, 'https://ror.org/04e1a9m96', 'no_lang_code', 1, 'https://ror.org/04e1a9m96 Japan Weather Association (Japan) 日本気象協会'), (78758, 'https://ror.org/04e2r7y81', 'no_lang_code', 1, 'https://ror.org/04e2r7y81 Powerchip (Taiwan) 力晶科技股份有限公司'), (78759, 'https://ror.org/04e3jvd14', 'en', 1, 'https://ror.org/04e3jvd14 The First People''s Hospital of Wenling 温岭市第一人民医院'), (78760, 'https://ror.org/04e8tea51', 'no_lang_code', 1, 'https://ror.org/04e8tea51 Mevion Medical Systems (United States)'), (78761, 'https://ror.org/04ea3ng91', 'no_lang_code', 1, 'https://ror.org/04ea3ng91 Codon Biosciences (India)'), (78762, 'https://ror.org/04ea7gf23', 'no_lang_code', 1, 'https://ror.org/04ea7gf23 Kendrick Laboratories (United States)'), (78763, 'https://ror.org/04ecc9p69', 'no_lang_code', 1, 'https://ror.org/04ecc9p69 Tribologix (United States)'), (78764, 'https://ror.org/04ed42k63', 'no_lang_code', 1, 'https://ror.org/04ed42k63 Voipac (Slovakia)'), (78765, 'https://ror.org/04edkgm69', 'en', 1, 'https://ror.org/04edkgm69 Centre for the Study of the Economies of Africa'), (78766, 'https://ror.org/04ej3c950', 'en', 1, 'https://ror.org/04ej3c950 China Rural Technology Development Center 中国农村技术开发中心'), (78767, 'https://ror.org/04em1gv44', 'en', 1, 'https://ror.org/04em1gv44 Yamagata Prefectural Institute of Public Health 山形県衛生研究所'), (78768, 'https://ror.org/04em20x54', 'no_lang_code', 1, 'https://ror.org/04em20x54 SVXR (United States)'), (78769, 'https://ror.org/04enqja79', 'en', 1, 'https://ror.org/04enqja79 Andalusian Centre for Nanomedicine and Biotechnology Centro Andaluz de Nanomedicina y Biotecnología'), (78770, 'https://ror.org/04esmqk80', 'en', 1, 'https://ror.org/04esmqk80 Eucalyptus Research Center 国家林业和草原局桉树研究开发中心'), (78771, 'https://ror.org/04et42c10', 'en', 1, 'https://ror.org/04et42c10 Toronto Zoo'), (78772, 'https://ror.org/04ewmsk50', 'no_lang_code', 1, 'https://ror.org/04ewmsk50 CRISPR Therapeutics (Switzerland)'), (78773, 'https://ror.org/04f1wdm76', 'no_lang_code', 1, 'https://ror.org/04f1wdm76 Gencor (China)'), (78774, 'https://ror.org/04f6hwk12', 'en', 1, 'https://ror.org/04f6hwk12 Shri A.M.M. Murugappa Chettiar Research Centre'), (78775, 'https://ror.org/04f7g6845', 'en', 1, 'https://ror.org/04f7g6845 National Institute for Communicable Disease Control and Prevention 中国疾病预防控制中心传染病预防控制所'), (78776, 'https://ror.org/04f8j4q19', 'no_lang_code', 1, 'https://ror.org/04f8j4q19 Response Technologies (United States)'), (78777, 'https://ror.org/04f8qsj21', 'no_lang_code', 1, 'https://ror.org/04f8qsj21 CTFusion (United States)'), (78778, 'https://ror.org/04fbk4w04', 'no_lang_code', 1, 'https://ror.org/04fbk4w04 Nihon Plast (Japan)'), (78779, 'https://ror.org/04fcjpg80', 'de', 1, 'https://ror.org/04fcjpg80 Holzbau Deutschland-Institut'), (78780, 'https://ror.org/04fd8ks75', 'no_lang_code', 1, 'https://ror.org/04fd8ks75 Starfire Systems (United States)'), (78781, 'https://ror.org/04fewxg30', 'no_lang_code', 1, 'https://ror.org/04fewxg30 Probility Media (United States)'), (78782, 'https://ror.org/04ff4e804', 'no_lang_code', 1, 'https://ror.org/04ff4e804 Eiken Chemical (Japan) 栄研化学株式会社'), (78783, 'https://ror.org/04ffg1496', 'no_lang_code', 1, 'https://ror.org/04ffg1496 Zts Inmart Atóm (Slovakia)'), (78784, 'https://ror.org/04ffrxx14', 'no_lang_code', 1, 'https://ror.org/04ffrxx14 Star Vision Technologies (United States)'), (78785, 'https://ror.org/04fhe5c23', 'no_lang_code', 1, 'https://ror.org/04fhe5c23 Schrack Technik (Slovakia)'), (78786, 'https://ror.org/04fhteb31', 'en', 1, 'https://ror.org/04fhteb31 National Center of Ocean Standards and Metrology 国家海洋标准计量中心'), (78787, 'https://ror.org/04fn6g127', 'en', 1, 'https://ror.org/04fn6g127 The Fusebox'), (78788, 'https://ror.org/04fne2y85', 'no_lang_code', 1, 'https://ror.org/04fne2y85 KACO New Energy (Germany)'), (78789, 'https://ror.org/04fnfbg71', 'no_lang_code', 1, 'https://ror.org/04fnfbg71 HLT (United States)'), (78790, 'https://ror.org/04fnrdj64', 'en', 1, 'https://ror.org/04fnrdj64 Gulf Coast Center for Evacuation and Transportation Resiliency'), (78791, 'https://ror.org/04fpsr797', 'no_lang_code', 1, 'https://ror.org/04fpsr797 Intergen (Turkey) İntergen Genetik Hastalıklar Tanı Merkezi'), (78792, 'https://ror.org/04frbf545', 'en', 1, 'https://ror.org/04frbf545 Academy of Emergency Medicine and Care'), (78793, 'https://ror.org/04ftztx53', 'no_lang_code', 1, 'https://ror.org/04ftztx53 Fels-Werke (Germany)'), (78794, 'https://ror.org/04fxggt25', 'no_lang_code', 1, 'https://ror.org/04fxggt25 ELCA (Switzerland)'), (78795, 'https://ror.org/04g0m7w09', 'no_lang_code', 1, 'https://ror.org/04g0m7w09 Transpower (New Zealand)'), (78796, 'https://ror.org/04g47vg59', 'en', 1, 'https://ror.org/04g47vg59 Belle Chasse Academy'), (78797, 'https://ror.org/04g732g68', 'en', 1, 'https://ror.org/04g732g68 Southern Plains Transportation Center'), (78798, 'https://ror.org/04g88st81', 'no_lang_code', 1, 'https://ror.org/04g88st81 Freund (Japan)'), (78799, 'https://ror.org/04g8qkx61', 'no_lang_code', 1, 'https://ror.org/04g8qkx61 Newport Sensors (United States)'), (78800, 'https://ror.org/04ga2h843', 'en', 1, 'https://ror.org/04ga2h843 Izumo Science Center 出雲科学館'), (78801, 'https://ror.org/04gbzz966', 'no_lang_code', 1, 'https://ror.org/04gbzz966 Roche (Bosnia-Herzegovina)'), (78802, 'https://ror.org/04gcqnd36', 'de', 1, 'https://ror.org/04gcqnd36 Gesteinslabor Dr. Eberhard Jahns'), (78803, 'https://ror.org/04gek0a04', 'no_lang_code', 1, 'https://ror.org/04gek0a04 Geistlich (Switzerland)'), (78804, 'https://ror.org/04ger2z06', 'en', 1, 'https://ror.org/04ger2z06 Shandong Maternal and Child Health Hospital 山东省妇幼保健院'), (78805, 'https://ror.org/04gf5ve13', 'no_lang_code', 1, 'https://ror.org/04gf5ve13 Pandion Laboratories (United States)'), (78806, 'https://ror.org/04gfkf394', 'en', 1, 'https://ror.org/04gfkf394 National Centre for Clinical Research on Emerging Drugs'), (78807, 'https://ror.org/04ggx4175', 'es', 1, 'https://ror.org/04ggx4175 Hospital Zonal General De Agudos Descentralizado "Evita Pueblo"'), (78808, 'https://ror.org/04gmecg65', 'no_lang_code', 1, 'https://ror.org/04gmecg65 Runtime Verification (United States)'), (78809, 'https://ror.org/04gnh4t80', 'no_lang_code', 1, 'https://ror.org/04gnh4t80 SiO2 Materials Science (United States)'), (78810, 'https://ror.org/04gp0de23', 'id', 1, 'https://ror.org/04gp0de23 IAIN Palangka Raya'), (78811, 'https://ror.org/04gp2qg91', 'en', 1, 'https://ror.org/04gp2qg91 Open Book Publishers'), (78812, 'https://ror.org/04gqb3c37', 'no_lang_code', 1, 'https://ror.org/04gqb3c37 Southern Community Laboratories (New Zealand)'), (78813, 'https://ror.org/04gqv6f58', 'en', 1, 'https://ror.org/04gqv6f58 Missing Children Europe'), (78814, 'https://ror.org/04gs0fr60', 'no_lang_code', 1, 'https://ror.org/04gs0fr60 Xenetic Biosciences (United Kingdom)'), (78815, 'https://ror.org/04gs4wp13', 'en', 1, 'https://ror.org/04gs4wp13 Internet Matters'), (78816, 'https://ror.org/04gswd735', 'en', 1, 'https://ror.org/04gswd735 Institute of Medical Information - CAMS'), (78817, 'https://ror.org/04gvffr66', 'no_lang_code', 1, 'https://ror.org/04gvffr66 Olon (Italy)'), (78818, 'https://ror.org/04gvrvx60', 'no_lang_code', 1, 'https://ror.org/04gvrvx60 Kuehne + Nagel (United Kingdom)'), (78819, 'https://ror.org/04gwmyf31', 'no_lang_code', 1, 'https://ror.org/04gwmyf31 Katalyst Surgical (United States)'), (78820, 'https://ror.org/04gwyv878', 'no_lang_code', 1, 'https://ror.org/04gwyv878 CorMatrix (United States)'), (78821, 'https://ror.org/04gxzna55', 'no_lang_code', 1, 'https://ror.org/04gxzna55 Sippa Solutions (United States)'), (78822, 'https://ror.org/04gyvnw24', 'es', 1, 'https://ror.org/04gyvnw24 Clínica Dávila'), (78823, 'https://ror.org/04gzt2g63', 'hi', 1, 'https://ror.org/04gzt2g63 Kendriya Vidyalaya Sangathan, केंद्रीय विद्यालय संगठन'), (78824, 'https://ror.org/04h1ssz20', 'no_lang_code', 1, 'https://ror.org/04h1ssz20 CoDa Therapeutics (United States)'), (78825, 'https://ror.org/04h3ena29', 'no_lang_code', 1, 'https://ror.org/04h3ena29 Pointwise (United States)'), (78826, 'https://ror.org/04h4wws08', 'no_lang_code', 1, 'https://ror.org/04h4wws08 Ayurvet (India) अयुर्वेत'), (78827, 'https://ror.org/04h50xe73', 'de', 1, 'https://ror.org/04h50xe73 Energie-Anlagen Berlin'), (78828, 'https://ror.org/04h59ty19', 'en', 1, 'https://ror.org/04h59ty19 Catholic Legal Immigration Network'), (78829, 'https://ror.org/04h6dxr28', 'no_lang_code', 1, 'https://ror.org/04h6dxr28 Native American Technologies (United States)'), (78830, 'https://ror.org/04h7g2e84', 'no_lang_code', 1, 'https://ror.org/04h7g2e84 Advanced Technology Systems Company (United States)'), (78831, 'https://ror.org/04h7sky50', 'no_lang_code', 1, 'https://ror.org/04h7sky50 BFKW (United States)'), (78832, 'https://ror.org/04h8v0y52', 'en', 1, 'https://ror.org/04h8v0y52 Okayama University of Commerce Attached high School 岡山商科大学附属高等学校'), (78833, 'https://ror.org/04h9a4v60', 'no_lang_code', 1, 'https://ror.org/04h9a4v60 New Hope Liuhe (China)'), (78834, 'https://ror.org/04h9g9s69', 'no_lang_code', 1, 'https://ror.org/04h9g9s69 PreventAGE Health Care (United States)'), (78835, 'https://ror.org/04ha18t27', 'en', 1, 'https://ror.org/04ha18t27 Chameli Devi Group of Institutions'), (78836, 'https://ror.org/04hbw4m86', 'de', 1, 'https://ror.org/04hbw4m86 Institut für Energie- und Umwelttechnik'), (78837, 'https://ror.org/04hdpvy92', 'no_lang_code', 1, 'https://ror.org/04hdpvy92 RetinalGeniX Technologies (United States)'), (78838, 'https://ror.org/04he9e777', 'no_lang_code', 1, 'https://ror.org/04he9e777 NGK Insulators (Germany)'), (78839, 'https://ror.org/04hecxj58', 'no_lang_code', 1, 'https://ror.org/04hecxj58 Perlegen (United States)'), (78840, 'https://ror.org/04het4147', 'en', 1, 'https://ror.org/04het4147 Chinese Neuroscience Society 中国神经科学学会'), (78841, 'https://ror.org/04hewny41', 'nl', 1, 'https://ror.org/04hewny41 Iridium Cancer Network Iridium Kankernetwerk'), (78842, 'https://ror.org/04hfg7v94', 'en', 1, 'https://ror.org/04hfg7v94 Center for Theoretical Biological Physics'), (78843, 'https://ror.org/04hg6v996', 'no_lang_code', 1, 'https://ror.org/04hg6v996 Minerals Technologies (United States)'), (78844, 'https://ror.org/04hjhj186', 'no_lang_code', 1, 'https://ror.org/04hjhj186 Biocartis (Switzerland)'), (78845, 'https://ror.org/04hjz3e92', 'no_lang_code', 1, 'https://ror.org/04hjz3e92 Glacigen Materials (United States)'), (78846, 'https://ror.org/04hmq8q19', 'en', 1, 'https://ror.org/04hmq8q19 Center for Seeds and Seedlings 種苗管理センター'), (78847, 'https://ror.org/04hphve78', 'en', 1, 'https://ror.org/04hphve78 Fraunhofer Centre for Applied Photonics'), (78848, 'https://ror.org/04hpyv730', 'en', 1, 'https://ror.org/04hpyv730 Centre for Aromatic Plants'), (78849, 'https://ror.org/04hsrr018', 'en', 1, 'https://ror.org/04hsrr018 Aichi Mizuho Junior College 愛知みずほ短期大学'), (78850, 'https://ror.org/04ht09065', 'en', 1, 'https://ror.org/04ht09065 Idemitsu Museum Of Arts 出光美術館'), (78851, 'https://ror.org/04hy71c73', 'no_lang_code', 1, 'https://ror.org/04hy71c73 Hangzhou DAC Biotech (China) 杭州多禧生物科技有限公司'), (78852, 'https://ror.org/04hyej253', 'de', 1, 'https://ror.org/04hyej253 Margarethe Krupp-Stiftung'), (78853, 'https://ror.org/04hysr708', 'no_lang_code', 1, 'https://ror.org/04hysr708 Quantum Northwest (United States)'), (78854, 'https://ror.org/04j0edb32', 'fr', 1, 'https://ror.org/04j0edb32 Hôpital Privé Guillaume de Varye'), (78855, 'https://ror.org/04j0nks26', 'no_lang_code', 1, 'https://ror.org/04j0nks26 Kindeva Drug Delivery (United States)'), (78856, 'https://ror.org/04j1sns16', 'no_lang_code', 1, 'https://ror.org/04j1sns16 Intego (Germany)'), (78857, 'https://ror.org/04j4j9405', 'no_lang_code', 1, 'https://ror.org/04j4j9405 Deargen (South Korea)'), (78858, 'https://ror.org/04j4tnp25', 'no_lang_code', 1, 'https://ror.org/04j4tnp25 QGLex (Canada)'), (78859, 'https://ror.org/04j5v1d21', 'no_lang_code', 1, 'https://ror.org/04j5v1d21 Real Prevention (United States)'), (78860, 'https://ror.org/04j5xmb13', 'no_lang_code', 1, 'https://ror.org/04j5xmb13 Geologischer Dienst Nordrhein-Westfalen (Germany)'), (78861, 'https://ror.org/04j5ybr94', 'en', 1, 'https://ror.org/04j5ybr94 Henan Bioengineering Technology Research Center 河南省生物工程技术研究中心'), (78862, 'https://ror.org/04j65k592', 'no_lang_code', 1, 'https://ror.org/04j65k592 Stress Engineering Services (United States)'), (78863, 'https://ror.org/04j6d9v78', 'de', 1, 'https://ror.org/04j6d9v78 Institut für Instandhaltung und Korrosionsschutztechnik'), (78864, 'https://ror.org/04j7dh318', 'no_lang_code', 1, 'https://ror.org/04j7dh318 Skyhaven Systems (United States)'), (78865, 'https://ror.org/04j7knk69', 'en', 1, 'https://ror.org/04j7knk69 Association for Rural Development'), (78866, 'https://ror.org/04j7sfe76', 'no_lang_code', 1, 'https://ror.org/04j7sfe76 IBExU Institut für Sicherheitstechnik (Germany)'), (78867, 'https://ror.org/04j8z7v81', 'no_lang_code', 1, 'https://ror.org/04j8z7v81 Vitronic (Germany)'), (78868, 'https://ror.org/04j9kzt69', 'no_lang_code', 1, 'https://ror.org/04j9kzt69 Mycovia Pharmaceuticals (United States)'), (78869, 'https://ror.org/04jafar77', 'en', 1, 'https://ror.org/04jafar77 Independent Administrative Agency National Museum of Art 独立行政法人国立美術館'), (78870, 'https://ror.org/04jb5a756', 'no_lang_code', 1, 'https://ror.org/04jb5a756 DJO Global (United States)'), (78871, 'https://ror.org/04jbbs672', 'en', 1, 'https://ror.org/04jbbs672 Tokyo Metropolitan Foundation for History and Culture 公益財団法人 東京都歴史文化財団'), (78872, 'https://ror.org/04jcetk87', 'en', 1, 'https://ror.org/04jcetk87 Einstein Medical Center Montgomery'), (78873, 'https://ror.org/04jcwf484', 'en', 1, 'https://ror.org/04jcwf484 Nordic e-Infrastructure Collaboration'), (78874, 'https://ror.org/04jd98e75', 'no_lang_code', 1, 'https://ror.org/04jd98e75 North Star Scientific (United States)'), (78875, 'https://ror.org/04jdmkw08', 'no_lang_code', 1, 'https://ror.org/04jdmkw08 Kaseda Folklore Museum 南さつま市 加世田郷土資料館'), (78876, 'https://ror.org/04je4qa93', 'en', 1, 'https://ror.org/04je4qa93 Zambia National Public Health Institute'), (78877, 'https://ror.org/04jeca075', 'en', 1, 'https://ror.org/04jeca075 South Subtropical Crops Research Institute 广东省湛江市麻章区湖秀路一号'), (78878, 'https://ror.org/04jf69f85', 'en', 1, 'https://ror.org/04jf69f85 Experimental Center of Subtropical Forestry'), (78879, 'https://ror.org/04jf6jw55', 'en', 1, 'https://ror.org/04jf6jw55 University of Science and Technology of Mazandaran دانشگاه علم و فناوری مازندران'), (78880, 'https://ror.org/04jfar564', 'no_lang_code', 1, 'https://ror.org/04jfar564 Takeda (Australia)'), (78881, 'https://ror.org/04jfr8f78', 'no_lang_code', 1, 'https://ror.org/04jfr8f78 Hyland Software (United States)'), (78882, 'https://ror.org/04jkjhn93', 'en', 1, 'https://ror.org/04jkjhn93 Fraunhofer USA Center for Laser Applications'), (78883, 'https://ror.org/04jma3v53', 'de', 1, 'https://ror.org/04jma3v53 Steinbeis Forschungszentrum Technologie-Management Nordost'), (78884, 'https://ror.org/04jnzhb65', 'en', 1, 'https://ror.org/04jnzhb65 Artsdatabanken Norwegian Biodiversity Information Centre'), (78885, 'https://ror.org/04jpd4145', 'no_lang_code', 1, 'https://ror.org/04jpd4145 FormFactor (Germany)'), (78886, 'https://ror.org/04jqs6e58', 'de', 1, 'https://ror.org/04jqs6e58 RCI Banque Niederlassung Deutschland'), (78887, 'https://ror.org/04jref587', 'en', 1, 'https://ror.org/04jref587 Loudi Central Hospital 娄底市中心医院'), (78888, 'https://ror.org/04jrxee54', 'de', 1, 'https://ror.org/04jrxee54 Verkehrsinstitut München'), (78889, 'https://ror.org/04jsnej34', 'no_lang_code', 1, 'https://ror.org/04jsnej34 Optical Coating Solutions (United States)'), (78890, 'https://ror.org/04jt5e503', 'no_lang_code', 1, 'https://ror.org/04jt5e503 German Association of the Automotive Industry (Germany) Verband der Automobilindustrie'), (78891, 'https://ror.org/04jvwj909', 'en', 1, 'https://ror.org/04jvwj909 Center for Jewish–Christian Understanding and Cooperation Center for Judeo-Christian Understanding and Cooperation'), (78892, 'https://ror.org/04jwyfm91', 'en', 1, 'https://ror.org/04jwyfm91 State Library of North Carolina'), (78893, 'https://ror.org/04jy0t377', 'no_lang_code', 1, 'https://ror.org/04jy0t377 Grintech (Germany)'), (78894, 'https://ror.org/04jy4bd63', 'no_lang_code', 1, 'https://ror.org/04jy4bd63 Sterix (Philippines)'), (78895, 'https://ror.org/04k078691', 'it', 1, 'https://ror.org/04k078691 Ospedale D. Cotugno'), (78896, 'https://ror.org/04k3c1424', 'en', 1, 'https://ror.org/04k3c1424 Hubei Provincial Museum 湖北省博物馆'), (78897, 'https://ror.org/04k3nb528', 'no_lang_code', 1, 'https://ror.org/04k3nb528 Hallstar Beauty (United States)'), (78898, 'https://ror.org/04k4a1317', 'en', 1, 'https://ror.org/04k4a1317 Coalition Against Childhood Cancer'), (78899, 'https://ror.org/04k4n5964', 'no_lang_code', 1, 'https://ror.org/04k4n5964 Sibatel Communications (United States)'), (78900, 'https://ror.org/04k4zw919', 'en', 1, 'https://ror.org/04k4zw919 Sichuan Economic Management Cadre College 四川省经济管理干部学院'), (78901, 'https://ror.org/04k6f4x16', 'en', 1, 'https://ror.org/04k6f4x16 Sphere Institute'), (78902, 'https://ror.org/04k6h0163', 'no_lang_code', 1, 'https://ror.org/04k6h0163 Nrgtek (United States)'), (78903, 'https://ror.org/04k6y8878', 'en', 1, 'https://ror.org/04k6y8878 L''Association Canadienne des Bibliothécaires en Enseignement Supérieur The Canadian Association of Professional Academic Librarians'), (78904, 'https://ror.org/04k7ptd73', 'no_lang_code', 1, 'https://ror.org/04k7ptd73 Spectral Platforms (United States)'), (78905, 'https://ror.org/04k8x4m17', 'no_lang_code', 1, 'https://ror.org/04k8x4m17 Zabal Menuiseries (France)'), (78906, 'https://ror.org/04kbpm904', 'no_lang_code', 1, 'https://ror.org/04kbpm904 Speak Agent (United States)'), (78907, 'https://ror.org/04kdgxx63', 'no_lang_code', 1, 'https://ror.org/04kdgxx63 Heine Optotechnik (Germany)'), (78908, 'https://ror.org/04kerv846', 'no_lang_code', 1, 'https://ror.org/04kerv846 Pronghorn Technologies (United States)'), (78909, 'https://ror.org/04khcsm77', 'no_lang_code', 1, 'https://ror.org/04khcsm77 Thurmelec (France)'), (78910, 'https://ror.org/04khv4y21', 'no_lang_code', 1, 'https://ror.org/04khv4y21 Made For Retail (United States)'), (78911, 'https://ror.org/04kkcah82', 'en', 1, 'https://ror.org/04kkcah82 Asphalt Institute'), (78912, 'https://ror.org/04knb0h51', 'no_lang_code', 1, 'https://ror.org/04knb0h51 Heidenhain (United Kingdom)'), (78913, 'https://ror.org/04knktv12', 'en', 1, 'https://ror.org/04knktv12 Jiujiang Maternal and Child Care Centres 九江市妇幼保健院'), (78914, 'https://ror.org/04kryk212', 'no_lang_code', 1, 'https://ror.org/04kryk212 Spatial Cognition (United States)'), (78915, 'https://ror.org/04ktbjv18', 'no_lang_code', 1, 'https://ror.org/04ktbjv18 Kulicke & Soffa (Singapore)'), (78916, 'https://ror.org/04kx66y96', 'en', 1, 'https://ror.org/04kx66y96 NHS Wales Shared Services Partnership'), (78917, 'https://ror.org/04kybmr51', 'en', 1, 'https://ror.org/04kybmr51 S.I. Vavilov Institute for the History of Science and Technology Институт истории естествознания и техники имени С. И. Вавилова РАН'), (78918, 'https://ror.org/04kz50t81', 'no_lang_code', 1, 'https://ror.org/04kz50t81 SAACKE (Germany)'), (78919, 'https://ror.org/04kz65y09', 'en', 1, 'https://ror.org/04kz65y09 Japan Society of English for Research 研究者のための英語'), (78920, 'https://ror.org/04kzfnz19', 'en', 1, 'https://ror.org/04kzfnz19 China National Democratic Construction Association 中国民主建国会'), (78921, 'https://ror.org/04m0qbj67', 'en', 1, 'https://ror.org/04m0qbj67 Yukon Department of Environment'), (78922, 'https://ror.org/04m128g34', 'en', 1, 'https://ror.org/04m128g34 ECC Kokusai College of Foreign Languages ECC国際外語専門学校'), (78923, 'https://ror.org/04m2c1f16', 'en', 1, 'https://ror.org/04m2c1f16 Zhe Jiang Institute of Geology and Mineral Resource 浙江省地质矿产研究所'), (78924, 'https://ror.org/04m3mhq27', 'en', 1, 'https://ror.org/04m3mhq27 Centre for Advanced Bioenergy Research'), (78925, 'https://ror.org/04m4cy683', 'es', 1, 'https://ror.org/04m4cy683 Fundación Centro de Estudios Infectológicos'), (78926, 'https://ror.org/04m70k935', 'no_lang_code', 1, 'https://ror.org/04m70k935 Roccor (United States)'), (78927, 'https://ror.org/04m797435', 'no_lang_code', 1, 'https://ror.org/04m797435 Adelphi Consult (Germany)'), (78928, 'https://ror.org/04m7bm997', 'no_lang_code', 1, 'https://ror.org/04m7bm997 Arca (Japan) 株式会社アルカ'), (78929, 'https://ror.org/04m93x955', 'en', 1, 'https://ror.org/04m93x955 New York State Nurses Association'), (78930, 'https://ror.org/04mabxa71', 'en', 1, 'https://ror.org/04mabxa71 NPO Net work for Shizuoka Prefecture Museum of Natural History 静岡県自然史博物館ネットワーク'), (78931, 'https://ror.org/04mbzh492', 'en', 1, 'https://ror.org/04mbzh492 Nigerian Institute of International Affairs'), (78932, 'https://ror.org/04md6sf54', 'lt', 1, 'https://ror.org/04md6sf54 State Forest Enterprise Valstybinių Miškų Urėdija'), (78933, 'https://ror.org/04mf96963', 'en', 1, 'https://ror.org/04mf96963 Prashanti Cancer Care Mission'), (78934, 'https://ror.org/04mh6t995', 'en', 1, 'https://ror.org/04mh6t995 CAF – Development Bank of Latin America Corporacion Andina de Fomento– Banco de Desarrollo de América Latina'), (78935, 'https://ror.org/04mhsfn74', 'no_lang_code', 1, 'https://ror.org/04mhsfn74 Medlab Central (New Zealand)'), (78936, 'https://ror.org/04mnn5409', 'no_lang_code', 1, 'https://ror.org/04mnn5409 Institut für Nachhaltige, Innovative und Angewandte Systemtechnik (Germany)'), (78937, 'https://ror.org/04mnvpk76', 'no_lang_code', 1, 'https://ror.org/04mnvpk76 Diagnostic Photonics (United States)'), (78938, 'https://ror.org/04mqss956', 'no_lang_code', 1, 'https://ror.org/04mqss956 Spirogen (United Kingdom)'), (78939, 'https://ror.org/04mrmjg19', 'en', 1, 'https://ror.org/04mrmjg19 Huzhou Women and Children''s Hospital 湖州市妇幼保健院'), (78940, 'https://ror.org/04mrnx789', 'en', 1, 'https://ror.org/04mrnx789 Charing Cross Cat Clinic'), (78941, 'https://ror.org/04ms6c540', 'no_lang_code', 1, 'https://ror.org/04ms6c540 Nice Solar Energy (Germany)'), (78942, 'https://ror.org/04msz5x82', 'en', 1, 'https://ror.org/04msz5x82 Deutsches Zentralinstitut für soziale Fragen German Central Institute for Social Issues'), (78943, 'https://ror.org/04mxfzz97', 'en', 1, 'https://ror.org/04mxfzz97 The Conservation Fund'), (78944, 'https://ror.org/04n075a40', 'no_lang_code', 1, 'https://ror.org/04n075a40 LPE (Italy)'), (78945, 'https://ror.org/04n1n6p22', 'en', 1, 'https://ror.org/04n1n6p22 Assistance Dogs of the West'), (78946, 'https://ror.org/04n1qr170', 'no_lang_code', 1, 'https://ror.org/04n1qr170 Soft Gel Technologies (United States)'), (78947, 'https://ror.org/04n3b1453', 'no_lang_code', 1, 'https://ror.org/04n3b1453 BioConsult SH (Germany)'), (78948, 'https://ror.org/04n3naf58', 'no_lang_code', 1, 'https://ror.org/04n3naf58 Sansure Biotech (China) 圣湘生物'), (78949, 'https://ror.org/04n6dab73', 'no_lang_code', 1, 'https://ror.org/04n6dab73 BioSolutions Halle (Germany)'), (78950, 'https://ror.org/04n7fat49', 'no_lang_code', 1, 'https://ror.org/04n7fat49 n&k Technology (United States)'), (78951, 'https://ror.org/04n7n7219', 'no_lang_code', 1, 'https://ror.org/04n7n7219 Eagle Pharmaceuticals (United States)'), (78952, 'https://ror.org/04n881142', 'en', 1, 'https://ror.org/04n881142 Naval Materials Research Laboratory'), (78953, 'https://ror.org/04n96q930', 'no_lang_code', 1, 'https://ror.org/04n96q930 Cardno (United Kingdom)'), (78954, 'https://ror.org/04n9n6c96', 'en', 1, 'https://ror.org/04n9n6c96 Young Africa FOUNDATION'), (78955, 'https://ror.org/04nagxm86', 'en', 1, 'https://ror.org/04nagxm86 Colombian Institute of Anthropology and History Instituto Colombiano de Antropología e Historia'), (78956, 'https://ror.org/04nbkxt24', 'no_lang_code', 1, 'https://ror.org/04nbkxt24 BearingPoint (United Kingdom)'), (78957, 'https://ror.org/04ney8y20', 'no_lang_code', 1, 'https://ror.org/04ney8y20 Glidewell (United States)'), (78958, 'https://ror.org/04nf5v644', 'no_lang_code', 1, 'https://ror.org/04nf5v644 Ampio Pharmaceuticals (United States)'), (78959, 'https://ror.org/04njzfy81', 'en', 1, 'https://ror.org/04njzfy81 China Electrotechnical Society 中国电工技术学会'), (78960, 'https://ror.org/04nm3yk20', 'no_lang_code', 1, 'https://ror.org/04nm3yk20 Takeda (Austria)'), (78961, 'https://ror.org/04nmcca26', 'no_lang_code', 1, 'https://ror.org/04nmcca26 Glykos (Finland)'), (78962, 'https://ror.org/04nneby83', 'es', 1, 'https://ror.org/04nneby83 Hospital Marina Baixa'), (78963, 'https://ror.org/04nq8gx07', 'en', 1, 'https://ror.org/04nq8gx07 Unilever Foods Innovation Centre'), (78964, 'https://ror.org/04nqe0561', 'no_lang_code', 1, 'https://ror.org/04nqe0561 Hochtemperatur-Kernkraftwerk (Germany)'), (78965, 'https://ror.org/04nt05y93', 'no_lang_code', 1, 'https://ror.org/04nt05y93 Third Pole Therapeutics (United States)'), (78966, 'https://ror.org/04nydew61', 'en', 1, 'https://ror.org/04nydew61 Clinical Research Associates'), (78967, 'https://ror.org/04nzxdc92', 'no_lang_code', 1, 'https://ror.org/04nzxdc92 Arioso Systems (Germany)'), (78968, 'https://ror.org/04nzya351', 'en', 1, 'https://ror.org/04nzya351 R3 Animal'), (78969, 'https://ror.org/04p0ywm72', 'en', 1, 'https://ror.org/04p0ywm72 Deutscher Gewerkschaftsbund German Trade Union Confederation'), (78970, 'https://ror.org/04p162q02', 'en', 1, 'https://ror.org/04p162q02 Hershel Woody Williams VA Medical Center'), (78971, 'https://ror.org/04p2nj039', 'no_lang_code', 1, 'https://ror.org/04p2nj039 Zynga (United Kingdom)'), (78972, 'https://ror.org/04p52xd50', 'no_lang_code', 1, 'https://ror.org/04p52xd50 Renaissance Services (United States)'), (78973, 'https://ror.org/04p6f5632', 'no_lang_code', 1, 'https://ror.org/04p6f5632 ViaDerm (United States)'), (78974, 'https://ror.org/04p6vt455', 'no_lang_code', 1, 'https://ror.org/04p6vt455 Enveda Therapeutics (United States)'), (78975, 'https://ror.org/04p79q706', 'en', 1, 'https://ror.org/04p79q706 African Centre for the Constructive Resolution of Disputes'), (78976, 'https://ror.org/04p7c8496', 'en', 1, 'https://ror.org/04p7c8496 Medical Governance Research Institute 医療ガバナンス研究所'), (78977, 'https://ror.org/04p8ncq94', 'en', 1, 'https://ror.org/04p8ncq94 Hainan Agricultural School 海南省农业学校'), (78978, 'https://ror.org/04pa8hw67', 'no_lang_code', 1, 'https://ror.org/04pa8hw67 Lubris BioPharma (United States)'), (78979, 'https://ror.org/04pe43p62', 'no_lang_code', 1, 'https://ror.org/04pe43p62 Stadtwerke Münster (Germany)'), (78980, 'https://ror.org/04pfpqx12', 'no_lang_code', 1, 'https://ror.org/04pfpqx12 Takeda (Sweden)'), (78981, 'https://ror.org/04pje9c52', 'de', 1, 'https://ror.org/04pje9c52 Reha-Zentrum Bad Frankenhausen'), (78982, 'https://ror.org/04pqjcz08', 'no_lang_code', 1, 'https://ror.org/04pqjcz08 Kantar (Germany)'), (78983, 'https://ror.org/04ps07s38', 'ca', 1, 'https://ror.org/04ps07s38 Consorci Sanitari Garraf'), (78984, 'https://ror.org/04ptve456', 'de', 1, 'https://ror.org/04ptve456 Dominikanerkloster Prenzlau'), (78985, 'https://ror.org/04pvzz946', 'en', 1, 'https://ror.org/04pvzz946 The NSF AI Institute for Artificial Intelligence and Fundamental Interactions'), (78986, 'https://ror.org/04pwkp704', 'en', 1, 'https://ror.org/04pwkp704 Department Of Agriculture and Rural Affairs Of Jiangxi Province 江西省农业厅'), (78987, 'https://ror.org/04py0zz23', 'nl', 1, 'https://ror.org/04py0zz23 Natural History Museum Brabant Natuurmuseum Brabant'), (78988, 'https://ror.org/04pyk6020', 'en', 1, 'https://ror.org/04pyk6020 Shanghai Institute of Geological Survey 上海市地质调查研究院'), (78989, 'https://ror.org/04q1ghb64', 'en', 1, 'https://ror.org/04q1ghb64 Aravali Foundation for Education'), (78990, 'https://ror.org/04q3t9f84', 'no_lang_code', 1, 'https://ror.org/04q3t9f84 Saurer (Switzerland)'), (78991, 'https://ror.org/04q4pp553', 'en', 1, 'https://ror.org/04q4pp553 Wilmington VA Medical Center'), (78992, 'https://ror.org/04q6f6q61', 'es', 1, 'https://ror.org/04q6f6q61 BiblioMadSalud'), (78993, 'https://ror.org/04q731p20', 'no_lang_code', 1, 'https://ror.org/04q731p20 Nuclear Plasma Laboratories (United States)'), (78994, 'https://ror.org/04q775h70', 'en', 1, 'https://ror.org/04q775h70 Terra Foundation for American Art'), (78995, 'https://ror.org/04q80hd21', 'no_lang_code', 1, 'https://ror.org/04q80hd21 Innotec (United Kingdom)'), (78996, 'https://ror.org/04qbg1g88', 'en', 1, 'https://ror.org/04qbg1g88 Saga Prefectural Police 佐賀県警察本部'), (78997, 'https://ror.org/04qbg9n81', 'en', 1, 'https://ror.org/04qbg9n81 VA Northern Indiana Health Care System'), (78998, 'https://ror.org/04qbqh473', 'en', 1, 'https://ror.org/04qbqh473 Royal Commission Medical Center'), (78999, 'https://ror.org/04qby6e62', 'en', 1, 'https://ror.org/04qby6e62 Automotive Service Excellence'), (79000, 'https://ror.org/04qdr2v32', 'no_lang_code', 1, 'https://ror.org/04qdr2v32 Sylex (Slovakia)'), (79001, 'https://ror.org/04qgwte94', 'en', 1, 'https://ror.org/04qgwte94 Shiun Junior High School 高松市立紫雲中'), (79002, 'https://ror.org/04qk3kg25', 'en', 1, 'https://ror.org/04qk3kg25 Defence Electronics Application Laboratory'), (79003, 'https://ror.org/04qr9ne10', 'en', 1, 'https://ror.org/04qr9ne10 Agricultural Research Service - Northeast Area'), (79004, 'https://ror.org/04qv17s63', 'no_lang_code', 1, 'https://ror.org/04qv17s63 Omniphase Defense Systems (United States)'), (79005, 'https://ror.org/04qv8g759', 'en', 1, 'https://ror.org/04qv8g759 International Baccalaureate'), (79006, 'https://ror.org/04qwk9b58', 'en', 1, 'https://ror.org/04qwk9b58 Central Bank of the Russian Federation Центральный банк Российской Федерации'), (79007, 'https://ror.org/04qwq4796', 'en', 1, 'https://ror.org/04qwq4796 Haffkine Institute हफ़केन प्रशिक्षण, अनुसंधान एवं परीक्षण संस्थान'), (79008, 'https://ror.org/04qxg2139', 'no_lang_code', 1, 'https://ror.org/04qxg2139 Ultra Safe Nuclear Corporation (United States)'), (79009, 'https://ror.org/04qxwt159', 'no_lang_code', 1, 'https://ror.org/04qxwt159 Vidatak (United States)'), (79010, 'https://ror.org/04r008d47', 'no_lang_code', 1, 'https://ror.org/04r008d47 CRG Services (United States)'), (79011, 'https://ror.org/04r17yy05', 'no_lang_code', 1, 'https://ror.org/04r17yy05 Visus (United States)'), (79012, 'https://ror.org/04r226n96', 'no_lang_code', 1, 'https://ror.org/04r226n96 Groupe Lépine (France)'), (79013, 'https://ror.org/04r425b39', 'en', 1, 'https://ror.org/04r425b39 Slovak Renewable Energy Agency'), (79014, 'https://ror.org/04r4a0e87', 'no_lang_code', 1, 'https://ror.org/04r4a0e87 Breezing (United States)'), (79015, 'https://ror.org/04r78f145', 'en', 1, 'https://ror.org/04r78f145 Austrian Physical Society Österreichische Physikalische Gesellschaft'), (79016, 'https://ror.org/04r7av415', 'no_lang_code', 1, 'https://ror.org/04r7av415 Silexon AI Technology (China)'), (79017, 'https://ror.org/04r7sbn40', 'no_lang_code', 1, 'https://ror.org/04r7sbn40 SemQuest (United States)'), (79018, 'https://ror.org/04r7vw960', 'de', 1, 'https://ror.org/04r7vw960 Institut für Regionale Innovation und Sozialforschung'), (79019, 'https://ror.org/04r99rr28', 'no_lang_code', 1, 'https://ror.org/04r99rr28 Swift Engineering (United States)'), (79020, 'https://ror.org/04rcck644', 'no_lang_code', 1, 'https://ror.org/04rcck644 Marcus (United States)'), (79021, 'https://ror.org/04rdvs602', 'en', 1, 'https://ror.org/04rdvs602 Sullivan Nicolaides Pathology'), (79022, 'https://ror.org/04rfwez56', 'no_lang_code', 1, 'https://ror.org/04rfwez56 Vigor (United States)'), (79023, 'https://ror.org/04rfxj670', 'no_lang_code', 1, 'https://ror.org/04rfxj670 Casma Therapeutics (United States)'), (79024, 'https://ror.org/04rgfx869', 'en', 1, 'https://ror.org/04rgfx869 Beijing Yingwu Conference Center 北京应物会议中心'), (79025, 'https://ror.org/04rgtd041', 'en', 1, 'https://ror.org/04rgtd041 Horn Economic and Social Policy Institute'), (79026, 'https://ror.org/04rj1td02', 'en', 1, 'https://ror.org/04rj1td02 Space Engineering University 中国人民解放军战略支援部队航天工程大学'), (79027, 'https://ror.org/04rksax81', 'no_lang_code', 1, 'https://ror.org/04rksax81 Valent BioSciences (United States)'), (79028, 'https://ror.org/04rmh9q90', 'no_lang_code', 1, 'https://ror.org/04rmh9q90 Thornton Tomasetti (United States)'), (79029, 'https://ror.org/04rmmkk14', 'no_lang_code', 1, 'https://ror.org/04rmmkk14 Fast Biomedical (United States)'), (79030, 'https://ror.org/04rp35a76', 'no_lang_code', 1, 'https://ror.org/04rp35a76 Yunnan Yingmao Biotechnology (China) 云南英茂生物科技有限公司'), (79031, 'https://ror.org/04rpfqy30', 'en', 1, 'https://ror.org/04rpfqy30 Caspr Biotech'), (79032, 'https://ror.org/04rrhkc58', 'en', 1, 'https://ror.org/04rrhkc58 MODUL University Dubai'), (79033, 'https://ror.org/04rrnb020', 'en', 1, 'https://ror.org/04rrnb020 Al-Razi University جامعة الرازي'), (79034, 'https://ror.org/04rw28498', 'en', 1, 'https://ror.org/04rw28498 K9 Partners for Patriots'), (79035, 'https://ror.org/04rw71h18', 'no_lang_code', 1, 'https://ror.org/04rw71h18 UltraCell (United States)'), (79036, 'https://ror.org/04rwdqv08', 'en', 1, 'https://ror.org/04rwdqv08 Jewish Community Center of Greater Buffalo'), (79037, 'https://ror.org/04rynnm03', 'en', 1, 'https://ror.org/04rynnm03 American Finance Association'), (79038, 'https://ror.org/04rz47917', 'no_lang_code', 1, 'https://ror.org/04rz47917 Berger Paints (India)'), (79039, 'https://ror.org/04s0whm40', 'no_lang_code', 1, 'https://ror.org/04s0whm40 QT Medical (United States)'), (79040, 'https://ror.org/04s1a2p79', 'it', 1, 'https://ror.org/04s1a2p79 Forestry, Environmental and Agri-Food Units Command Organizzazione per la Tutela Forestale, Ambientale e Agroalimentare'), (79041, 'https://ror.org/04s3t8g44', 'en', 1, 'https://ror.org/04s3t8g44 Sa''adatu Rimi College of Education'), (79042, 'https://ror.org/04s40s883', 'no_lang_code', 1, 'https://ror.org/04s40s883 Toshima Hospital 東京都保健医療公社 豊島病院'), (79043, 'https://ror.org/04s47xe02', 'no_lang_code', 1, 'https://ror.org/04s47xe02 Breg (United States)'), (79044, 'https://ror.org/04s6fbg51', 'en', 1, 'https://ror.org/04s6fbg51 Osaka Prefecture University College of Technology 大阪府立大学工業高等専門学校'), (79045, 'https://ror.org/04s7e3d74', 'en', 1, 'https://ror.org/04s7e3d74 James Paget University Hospitals NHS Foundation Trust'), (79046, 'https://ror.org/04s87x939', 'no_lang_code', 1, 'https://ror.org/04s87x939 Sonivate Medical (United States)'), (79047, 'https://ror.org/04satts25', 'de', 1, 'https://ror.org/04satts25 Kreditanstalt für Wiederaufbau'), (79048, 'https://ror.org/04sbxpy59', 'pt', 1, 'https://ror.org/04sbxpy59 Instituto de Conservação de Animais Silvestres'), (79049, 'https://ror.org/04scxn105', 'en', 1, 'https://ror.org/04scxn105 Dingxi City People''s Hospital 定西市人民医院'), (79050, 'https://ror.org/04se47j24', 'en', 1, 'https://ror.org/04se47j24 International Council for Open and Distance Education'), (79051, 'https://ror.org/04sg6r946', 'no_lang_code', 1, 'https://ror.org/04sg6r946 Solarzentrum Stuttgart (Germany)'), (79052, 'https://ror.org/04shejr14', 'en', 1, 'https://ror.org/04shejr14 The Historical Museum of Jomon Village Oku-Matsushima 奥松島縄文村歴史資料館'), (79053, 'https://ror.org/04sksp841', 'no_lang_code', 1, 'https://ror.org/04sksp841 Troxler (United States)'), (79054, 'https://ror.org/04sna2e19', 'no_lang_code', 1, 'https://ror.org/04sna2e19 Tuya (China) 涂鸦'), (79055, 'https://ror.org/04srm5m98', 'en', 1, 'https://ror.org/04srm5m98 Global Flyway Network'), (79056, 'https://ror.org/04ssknj45', 'no_lang_code', 1, 'https://ror.org/04ssknj45 Kalusugan + Kalakasan'), (79057, 'https://ror.org/04svcpx91', 'hi', 1, 'https://ror.org/04svcpx91 Kanya Maha Vidyalaya ਕੰਨਿਆ ਮਹਾਂ ਵਿਦਿਆਲਾ'), (79058, 'https://ror.org/04sve9e90', 'no_lang_code', 1, 'https://ror.org/04sve9e90 Apollo Proton Cancer Centre'), (79059, 'https://ror.org/04swxte59', 'it', 1, 'https://ror.org/04swxte59 Scuola Superiore Meridionale'), (79060, 'https://ror.org/04sy0n440', 'en', 1, 'https://ror.org/04sy0n440 Dangerous Speech Project'), (79061, 'https://ror.org/04sy0x836', 'de', 1, 'https://ror.org/04sy0x836 Kybernetische Organisation Planung Führung'), (79062, 'https://ror.org/04sy7nb49', 'en', 1, 'https://ror.org/04sy7nb49 Leibniz-Institut für Lebensmittel-Systembiologie an der Technischen Universität München Leibniz-Institute for Food Systems Biology at the Technical University of Munich'), (79063, 'https://ror.org/04t10yj72', 'no_lang_code', 1, 'https://ror.org/04t10yj72 Reihoo (France)'), (79064, 'https://ror.org/04t6sr026', 'de', 1, 'https://ror.org/04t6sr026 Klimaschutz- und Energieagentur Baden-Württemberg'), (79065, 'https://ror.org/04t8dcc90', 'en', 1, 'https://ror.org/04t8dcc90 Staffin Dinosaur Museum'), (79066, 'https://ror.org/04taba362', 'no_lang_code', 1, 'https://ror.org/04taba362 Schmalz (Germany)'), (79067, 'https://ror.org/04tasdp68', 'no_lang_code', 1, 'https://ror.org/04tasdp68 NursIT Institute (Germany)'), (79068, 'https://ror.org/04taye489', 'no_lang_code', 1, 'https://ror.org/04taye489 Hesco (United States)'), (79069, 'https://ror.org/04tbt8b85', 'en', 1, 'https://ror.org/04tbt8b85 National Centre for Radio Astrophysics राष्ट्रीय रेडियो खगोल भौतिकी केन्द्र'), (79070, 'https://ror.org/04tbvjc27', 'en', 1, 'https://ror.org/04tbvjc27 Badr University in Cairo جامعة بدر بالقاهرة'), (79071, 'https://ror.org/04tcnqa94', 'no_lang_code', 1, 'https://ror.org/04tcnqa94 Tianshui Huatian Technology (China) 华天科技'), (79072, 'https://ror.org/04td8e917', 'en', 1, 'https://ror.org/04td8e917 Uttar Pradesh Pandit Deen Dayal Upadhyaya Pashu Chikitsa Vigyan Vishwavidyalaya Evam Go-Anusandhan Sansthan'), (79073, 'https://ror.org/04tec8s48', 'no_lang_code', 1, 'https://ror.org/04tec8s48 Raytum Photonics (United States)'), (79074, 'https://ror.org/04teget82', 'en', 1, 'https://ror.org/04teget82 The Osaka YWCA 公益財団法人大阪YWCA'), (79075, 'https://ror.org/04tfcjh39', 'en', 1, 'https://ror.org/04tfcjh39 Child Rights Foundation Hintalovon Alapitvany'), (79076, 'https://ror.org/04tfspg74', 'no_lang_code', 1, 'https://ror.org/04tfspg74 Information Visualization and Innovative Research'), (79077, 'https://ror.org/04tgrm918', 'no_lang_code', 1, 'https://ror.org/04tgrm918 nChain (United Kingdom)'), (79078, 'https://ror.org/04tgzc455', 'no_lang_code', 1, 'https://ror.org/04tgzc455 Natural Process Design (United States)'), (79079, 'https://ror.org/04th9rm48', 'no_lang_code', 1, 'https://ror.org/04th9rm48 Senseeker Engineering (United States)'), (79080, 'https://ror.org/04tj88f69', 'en', 1, 'https://ror.org/04tj88f69 National University of Medical Sciences'), (79081, 'https://ror.org/04tjebs40', 'no_lang_code', 1, 'https://ror.org/04tjebs40 TargaGenix (United States)'), (79082, 'https://ror.org/04tjwpz93', 'de', 1, 'https://ror.org/04tjwpz93 Institut für Arbeitsmarktforschung und Jugendberufshilfe'), (79083, 'https://ror.org/04tms6279', 'en', 1, 'https://ror.org/04tms6279 Guangdong Provincial Center for Disease Control and Prevention 广东省疾病预防控制中心'), (79084, 'https://ror.org/04tnhnq23', 'no_lang_code', 1, 'https://ror.org/04tnhnq23 Kite (United States)'), (79085, 'https://ror.org/04tnv7w23', 'fr', 1, 'https://ror.org/04tnv7w23 École Supérieure Polytechnique d''Antsiranana'), (79086, 'https://ror.org/04tp7cf63', 'en', 1, 'https://ror.org/04tp7cf63 Başkent University Alanya Hospital Başkent Üniversitesi Alanya Hastanesi'), (79087, 'https://ror.org/04tpxn918', 'no_lang_code', 1, 'https://ror.org/04tpxn918 Deutsche Bank (United Kingdom)'), (79088, 'https://ror.org/04tqfmc02', 'en', 1, 'https://ror.org/04tqfmc02 Biodiversity Heritage Library'), (79089, 'https://ror.org/04trsx227', 'en', 1, 'https://ror.org/04trsx227 Somali Institute for Development Research and Analysis'), (79090, 'https://ror.org/04ttg5411', 'no_lang_code', 1, 'https://ror.org/04ttg5411 Lucht Probst Associates (Germany)'), (79091, 'https://ror.org/04ttja383', 'de', 1, 'https://ror.org/04ttja383 Internationale Akademie Berlin'), (79092, 'https://ror.org/04txnpk14', 'de', 1, 'https://ror.org/04txnpk14 Deutsch-französische Büro für die Energiewende'), (79093, 'https://ror.org/04tym5d37', 'en', 1, 'https://ror.org/04tym5d37 Leverhulme Centre for Climate Change Mitigation'), (79094, 'https://ror.org/04v0mdj41', 'en', 1, 'https://ror.org/04v0mdj41 Saveh University of Medical Sciences دانشکده علوم پزشکی ساوه'), (79095, 'https://ror.org/04v0xgx08', 'no_lang_code', 1, 'https://ror.org/04v0xgx08 Wilmar International (Singapore)'), (79096, 'https://ror.org/04v1fvq31', 'no_lang_code', 1, 'https://ror.org/04v1fvq31 Chromocell (United States)'), (79097, 'https://ror.org/04v23a626', 'no_lang_code', 1, 'https://ror.org/04v23a626 CPH Innovations (United Kingdom)'), (79098, 'https://ror.org/04v2vj529', 'no_lang_code', 1, 'https://ror.org/04v2vj529 TraskBritt (United States)'), (79099, 'https://ror.org/04v300186', 'no_lang_code', 1, 'https://ror.org/04v300186 Filtertek (United States)'), (79100, 'https://ror.org/04v3qgb32', 'no_lang_code', 1, 'https://ror.org/04v3qgb32 Fortis C-DOC Hospital फोर्टिस C-डॉक हॉस्पिटल'), (79101, 'https://ror.org/04v3qs268', 'no_lang_code', 1, 'https://ror.org/04v3qs268 VNG (Germany)'), (79102, 'https://ror.org/04v4gyq34', 'no_lang_code', 1, 'https://ror.org/04v4gyq34 Yuyao Joywee Electrics (China) 余姚市骄威电器'), (79103, 'https://ror.org/04v5c4294', 'en', 1, 'https://ror.org/04v5c4294 FAHRİ KAYAHAN AİLE SAĞLIĞI MERKEZİ Malatya Fahri Kayahan Health Care Center'), (79104, 'https://ror.org/04v636935', 'no_lang_code', 1, 'https://ror.org/04v636935 NP Medical (United States)'), (79105, 'https://ror.org/04v78c088', 'de', 1, 'https://ror.org/04v78c088 Institut für Kälte-, Klima- und Energietechnik'), (79106, 'https://ror.org/04v7v1m43', 'no_lang_code', 1, 'https://ror.org/04v7v1m43 DongKook Pharmaceutical (South Korea)'), (79107, 'https://ror.org/04v84zc94', 'en', 1, 'https://ror.org/04v84zc94 China Academy of Management Sciences 中国管理科学研究院'), (79108, 'https://ror.org/04v85xx73', 'en', 1, 'https://ror.org/04v85xx73 Lester Smith Medical Research Institute'), (79109, 'https://ror.org/04v8m3j75', 'en', 1, 'https://ror.org/04v8m3j75 Oyster Hospital'), (79110, 'https://ror.org/04v9f3d81', 'en', 1, 'https://ror.org/04v9f3d81 Jiangsu Province Institute of Quality & Safety Engineering 江苏省质量安全工程研究所'), (79111, 'https://ror.org/04va4hg79', 'en', 1, 'https://ror.org/04va4hg79 Australian Institue of Men''s Health and Studies'), (79112, 'https://ror.org/04va9wj50', 'no_lang_code', 1, 'https://ror.org/04va9wj50 Plasmore (Italy)'), (79113, 'https://ror.org/04vadv522', 'en', 1, 'https://ror.org/04vadv522 Desert Forestry Experimental Center 中国林业科学研究院沙漠林业实验中心'), (79114, 'https://ror.org/04vcs0j60', 'en', 1, 'https://ror.org/04vcs0j60 Islamic Azad University, Ahvaz Branch دانشگاه آزاد اسلامی واحد اهواز'), (79115, 'https://ror.org/04vf2n046', 'no_lang_code', 1, 'https://ror.org/04vf2n046 Kobayashi Pharmaceutical (Japan)'), (79116, 'https://ror.org/04vgqwj46', 'no_lang_code', 1, 'https://ror.org/04vgqwj46 Sigmatech (United States)'), (79117, 'https://ror.org/04vjzg452', 'no_lang_code', 1, 'https://ror.org/04vjzg452 Luxottica (Italy)'), (79118, 'https://ror.org/04vmth013', 'no_lang_code', 1, 'https://ror.org/04vmth013 Sensorion (France)'), (79119, 'https://ror.org/04vnevw94', 'en', 1, 'https://ror.org/04vnevw94 Criminal Investigation Police University of China 刑事调查中国警察大学'), (79120, 'https://ror.org/04vp1gh45', 'en', 1, 'https://ror.org/04vp1gh45 Services Partagés Canada Shared Services Canada'), (79121, 'https://ror.org/04vpesy43', 'en', 1, 'https://ror.org/04vpesy43 Beijing Glass Research Institute 北京玻璃研究院'), (79122, 'https://ror.org/04vpnsj12', 'no_lang_code', 1, 'https://ror.org/04vpnsj12 Quantix (United States)'), (79123, 'https://ror.org/04vxw9c34', 'en', 1, 'https://ror.org/04vxw9c34 University of Southampton Malaysia'), (79124, 'https://ror.org/04w2yhr49', 'en', 1, 'https://ror.org/04w2yhr49 Islamic Azad University, Shoushtar Branch دانشگاه آزاد اسلامی واحد شوشتر'), (79125, 'https://ror.org/04w3v2j10', 'en', 1, 'https://ror.org/04w3v2j10 Croatian Hydrographic Institute Hrvatski Hidrografski Institut'), (79126, 'https://ror.org/04w441351', 'en', 1, 'https://ror.org/04w441351 Levy Economics Institute of Bard College'), (79127, 'https://ror.org/04w44zd51', 'no_lang_code', 1, 'https://ror.org/04w44zd51 Ferno (United Kingdom)'), (79128, 'https://ror.org/04w8dg967', 'no_lang_code', 1, 'https://ror.org/04w8dg967 VerdaSee Solutions (United States)'), (79129, 'https://ror.org/04w8sxm43', 'en', 1, 'https://ror.org/04w8sxm43 University Hospitals of Derby and Burton NHS Foundation Trust'), (79130, 'https://ror.org/04w9wz255', 'de', 1, 'https://ror.org/04w9wz255 Zentrum für Erinnerungskultur und Geschichtsforschung'), (79131, 'https://ror.org/04wam6707', 'no_lang_code', 1, 'https://ror.org/04wam6707 IBM (Spain)'), (79132, 'https://ror.org/04wcs7k46', 'en', 1, 'https://ror.org/04wcs7k46 Proof & Experimental Establishment प्रूफ एवं प्रयोगात्मक संगठन'), (79133, 'https://ror.org/04wcx2r57', 'en', 1, 'https://ror.org/04wcx2r57 TrinityCare Hospice'), (79134, 'https://ror.org/04wd9yj02', 'no_lang_code', 1, 'https://ror.org/04wd9yj02 Strategic Analysis Enterprises (United States)'), (79135, 'https://ror.org/04wea6506', 'no_lang_code', 1, 'https://ror.org/04wea6506 Protekum (Germany)'), (79136, 'https://ror.org/04wekvh85', 'no_lang_code', 1, 'https://ror.org/04wekvh85 Berlin Heart (Germany)'), (79137, 'https://ror.org/04wgzww60', 'no_lang_code', 1, 'https://ror.org/04wgzww60 Mangar Health (United Kingdom)'), (79138, 'https://ror.org/04why9q78', 'no_lang_code', 1, 'https://ror.org/04why9q78 Bentley Systems (United Kingdom)'), (79139, 'https://ror.org/04wm69k66', 'en', 1, 'https://ror.org/04wm69k66 Deutsches Institut für Katastrophenmedizin German Institute for Disaster Medicine'), (79140, 'https://ror.org/04wmff902', 'no_lang_code', 1, 'https://ror.org/04wmff902 Marvell (United States)'), (79141, 'https://ror.org/04wnpe888', 'no_lang_code', 1, 'https://ror.org/04wnpe888 Vascular Flow Technologies (United Kingdom)'), (79142, 'https://ror.org/04wqwae75', 'no_lang_code', 1, 'https://ror.org/04wqwae75 Tris Pharma (United States)'), (79143, 'https://ror.org/04wtsrd61', 'es', 1, 'https://ror.org/04wtsrd61 Instituto Universitario de Ciencias Médicas y Humanísticas de Nayarit'), (79144, 'https://ror.org/04wxb8m29', 'no_lang_code', 1, 'https://ror.org/04wxb8m29 SIM*VIVO (United States)'), (79145, 'https://ror.org/04wxq1e36', 'no_lang_code', 1, 'https://ror.org/04wxq1e36 Otherlab'), (79146, 'https://ror.org/04wy1ab83', 'no_lang_code', 1, 'https://ror.org/04wy1ab83 OptiScan (United States)'), (79147, 'https://ror.org/04wy4bt38', 'en', 1, 'https://ror.org/04wy4bt38 Bundesinstitut für Bevölkerungsforschung Federal Institute for Population Research'), (79148, 'https://ror.org/04wysdg63', 'no_lang_code', 1, 'https://ror.org/04wysdg63 Redx Pharma (United Kingdom)'), (79149, 'https://ror.org/04x0j9s13', 'no_lang_code', 1, 'https://ror.org/04x0j9s13 Crystal Pharmatech (United States)'), (79150, 'https://ror.org/04x4b2j19', 'no_lang_code', 1, 'https://ror.org/04x4b2j19 Optikron (Germany)'), (79151, 'https://ror.org/04x60sx56', 'en', 1, 'https://ror.org/04x60sx56 Hokkaido Environment Foundation 公益財団法人北海道環境財団'), (79152, 'https://ror.org/04x67xp14', 'no_lang_code', 1, 'https://ror.org/04x67xp14 Holota Optics (Germany)'), (79153, 'https://ror.org/04x6bfw13', 'de', 1, 'https://ror.org/04x6bfw13 Gesellschaft für Pädagogik und Information'), (79154, 'https://ror.org/04x8thz12', 'en', 1, 'https://ror.org/04x8thz12 University Transportation Center for Mobility'); INSERT INTO `rors` VALUES (79155, 'https://ror.org/04x8zs855', 'no_lang_code', 1, 'https://ror.org/04x8zs855 Ferring Pharmaceuticals (Finland)'), (79156, 'https://ror.org/04x97rq71', 'en', 1, 'https://ror.org/04x97rq71 National Innovation Foundation નેશનલ ઇનોવેશન ફાઉન્ડેશન ભારત'), (79157, 'https://ror.org/04x9bj553', 'no_lang_code', 1, 'https://ror.org/04x9bj553 New Japan Chemical (Japan) 新日本理化株式会社'), (79158, 'https://ror.org/04xad0v87', 'en', 1, 'https://ror.org/04xad0v87 Hamamatsu Japan Language College'), (79159, 'https://ror.org/04xar0g84', 'en', 1, 'https://ror.org/04xar0g84 Hainan Provincial Hospital of Traditional Chinese Medicine 海南省中医院'), (79160, 'https://ror.org/04xbkmk86', 'en', 1, 'https://ror.org/04xbkmk86 Center for Genomic Science'), (79161, 'https://ror.org/04xc1rd71', 'no_lang_code', 1, 'https://ror.org/04xc1rd71 Yotsuya Medical Cube 医療法人社団あんしん会四谷メディカルキューブ'), (79162, 'https://ror.org/04xchw238', 'de', 1, 'https://ror.org/04xchw238 Wissenschaftliches Institut für Infrastruktur und Kommunikationsdienste'), (79163, 'https://ror.org/04xee8d94', 'en', 1, 'https://ror.org/04xee8d94 Pulmonary Hospital of Lanzhou 兰州市肺科医院'), (79164, 'https://ror.org/04xezgr31', 'no_lang_code', 1, 'https://ror.org/04xezgr31 CIBBIM-Nanomedicine'), (79165, 'https://ror.org/04xf4yw96', 'en', 1, 'https://ror.org/04xf4yw96 Tata Institute for Genetics and Society'), (79166, 'https://ror.org/04xfrsv55', 'no_lang_code', 1, 'https://ror.org/04xfrsv55 QuintessenceLabs (Australia)'), (79167, 'https://ror.org/04xhxg104', 'no_lang_code', 1, 'https://ror.org/04xhxg104 Microsoft (Canada)'), (79168, 'https://ror.org/04xjsk421', 'no_lang_code', 1, 'https://ror.org/04xjsk421 Trisa (Switzerland)'), (79169, 'https://ror.org/04xmn6g49', 'no_lang_code', 1, 'https://ror.org/04xmn6g49 Rapid Flow (United States)'), (79170, 'https://ror.org/04xpvpa92', 'no_lang_code', 1, 'https://ror.org/04xpvpa92 Opt-E (United States)'), (79171, 'https://ror.org/04xpwnc20', 'en', 1, 'https://ror.org/04xpwnc20 Transportation Learning Center'), (79172, 'https://ror.org/04xrw3922', 'no_lang_code', 1, 'https://ror.org/04xrw3922 Trace-Ability (United States)'), (79173, 'https://ror.org/04xvc2765', 'no_lang_code', 1, 'https://ror.org/04xvc2765 Integra TDS (Slovakia)'), (79174, 'https://ror.org/04xw4m193', 'en', 1, 'https://ror.org/04xw4m193 Environmental Information Data Centre'), (79175, 'https://ror.org/04xx77718', 'en', 1, 'https://ror.org/04xx77718 Bosom Buddies of Arizona'), (79176, 'https://ror.org/04y0f6h17', 'no_lang_code', 1, 'https://ror.org/04y0f6h17 Resis (Italy)'), (79177, 'https://ror.org/04y10pp77', 'en', 1, 'https://ror.org/04y10pp77 Amersham Vale Practice'), (79178, 'https://ror.org/04y1ast97', 'en', 1, 'https://ror.org/04y1ast97 Archives de l''État Rijksarchief State Archives of Belgium'), (79179, 'https://ror.org/04y72be90', 'no_lang_code', 1, 'https://ror.org/04y72be90 Leyard (United States)'), (79180, 'https://ror.org/04y8bah34', 'no_lang_code', 1, 'https://ror.org/04y8bah34 Respec (United States)'), (79181, 'https://ror.org/04y938269', 'en', 1, 'https://ror.org/04y938269 Latin American Society for Travel Medicine Sociedad Latinoamericana de Medicina del Viajero'), (79182, 'https://ror.org/04y9apa89', 'no_lang_code', 1, 'https://ror.org/04y9apa89 Sanmina (United States)'), (79183, 'https://ror.org/04yd0my20', 'nl', 1, 'https://ror.org/04yd0my20 Stichting Jij Speelt de Hoofdrol'), (79184, 'https://ror.org/04yegz493', 'en', 1, 'https://ror.org/04yegz493 The Cattle Museum 牛の博物館'), (79185, 'https://ror.org/04yek5175', 'no_lang_code', 1, 'https://ror.org/04yek5175 Ferrosan Medical Devices (Denmark)'), (79186, 'https://ror.org/04yhhm579', 'no_lang_code', 1, 'https://ror.org/04yhhm579 Universal Music Group (United States)'), (79187, 'https://ror.org/04yjbr930', 'en', 1, 'https://ror.org/04yjbr930 Shenzhen University Health Science Center'), (79188, 'https://ror.org/04ykypa08', 'no_lang_code', 1, 'https://ror.org/04ykypa08 Podbrezová Iron Works (Slovakia) Železiarne Podbrezová'), (79189, 'https://ror.org/04yne6f58', 'fr', 1, 'https://ror.org/04yne6f58 Clinique Générale-Beaulieu, Générale-Beaulieu Clinic'), (79190, 'https://ror.org/04yptqa43', 'no_lang_code', 1, 'https://ror.org/04yptqa43 Thermofluidics (United Kingdom)'), (79191, 'https://ror.org/04yr2xe56', 'en', 1, 'https://ror.org/04yr2xe56 The British Blockchain Association'), (79192, 'https://ror.org/04yty3z13', 'en', 1, 'https://ror.org/04yty3z13 Japan Association for Fire Science and Engineering 日本火災学会'), (79193, 'https://ror.org/04yva9a78', 'en', 1, 'https://ror.org/04yva9a78 Institute of Animal Health and Veterinary Biologicals ಪಶು ಆರೋಗ್ಯ ಮತ್ತು ಜೈವಿಕ ಸಂಸ್ಥೆ'), (79194, 'https://ror.org/04yxrw198', 'no_lang_code', 1, 'https://ror.org/04yxrw198 MediGuide (United States)'), (79195, 'https://ror.org/04yxsy717', 'no_lang_code', 1, 'https://ror.org/04yxsy717 Institut für Angewandte Verkehrs- und Tourismusforschung (Germany)'), (79196, 'https://ror.org/04yyf0g82', 'no_lang_code', 1, 'https://ror.org/04yyf0g82 Occlutech (Sweden)'), (79197, 'https://ror.org/04yzfbe56', 'no_lang_code', 1, 'https://ror.org/04yzfbe56 Management Institut Bochum (Germany)'), (79198, 'https://ror.org/04yzyf194', 'en', 1, 'https://ror.org/04yzyf194 Mahatma Gandhi University'), (79199, 'https://ror.org/04z20hw90', 'en', 1, 'https://ror.org/04z20hw90 Tanaka Institute of Education 田中教育研究所'), (79200, 'https://ror.org/04z3q6371', 'no_lang_code', 1, 'https://ror.org/04z3q6371 Scionix (Netherlands)'), (79201, 'https://ror.org/04z50tc18', 'no_lang_code', 1, 'https://ror.org/04z50tc18 Woodwelding (Switzerland)'), (79202, 'https://ror.org/04z5zpe30', 'en', 1, 'https://ror.org/04z5zpe30 United States Agricultural Information Network'), (79203, 'https://ror.org/04z7mxt48', 'no_lang_code', 1, 'https://ror.org/04z7mxt48 O''Donnell Consulting Engineers (United States)'), (79204, 'https://ror.org/04z999347', 'sk', 1, 'https://ror.org/04z999347 Centrum Pedagogicko Psychologického Poradenstva a Prevencie'), (79205, 'https://ror.org/04zae5q03', 'en', 1, 'https://ror.org/04zae5q03 The Dainippon Silk Foundation 財団法人 大日本蚕糸会'), (79206, 'https://ror.org/04zaxn180', 'en', 1, 'https://ror.org/04zaxn180 Sendai Vocational College of Health and Welfare 仙台医療福祉専門学校'), (79207, 'https://ror.org/04zdgqb89', 'en', 1, 'https://ror.org/04zdgqb89 Islamic Azad University Islamshahr Branch دانشگاه آزاد اسلامی واحد اسلامشهر'), (79208, 'https://ror.org/04zgxt121', 'en', 1, 'https://ror.org/04zgxt121 Bureau of Geology and Mineral Exploration and Development of Guizhou Province'), (79209, 'https://ror.org/04zj6ee21', 'no_lang_code', 1, 'https://ror.org/04zj6ee21 MeVis Medical Solutions (Germany)'), (79210, 'https://ror.org/04zjdjw13', 'en', 1, 'https://ror.org/04zjdjw13 State Institution "Ukrainian Research Institute of Medical Rehabilitation and Resort Therapy of Ministry of Health of Ukraine" Государственное учреждение "Украинский научно-исследовательский институт медицинской реабилитации и курортологии Министерства здравоохранения Украины" Державна установа "Український науково-дослідний інститут медичної реабілітації та курортології Міністерства охорони здоров''я України"'), (79211, 'https://ror.org/04zk07r40', 'en', 1, 'https://ror.org/04zk07r40 Brandenburg Institute for Society and Security Brandenburgische Institut für Gesellschaft und Sicherheit'), (79212, 'https://ror.org/04zkam251', 'en', 1, 'https://ror.org/04zkam251 Marion VA Medical Center'), (79213, 'https://ror.org/04zkxj954', 'no_lang_code', 1, 'https://ror.org/04zkxj954 Molecular Pathology Laboratory Network (United States)'), (79214, 'https://ror.org/04zmdqe71', 'en', 1, 'https://ror.org/04zmdqe71 Bank of Japan 日本銀行'), (79215, 'https://ror.org/04znb3x93', 'no_lang_code', 1, 'https://ror.org/04znb3x93 Nobuhara Hospital 信原病院'), (79216, 'https://ror.org/04znq7n20', 'no_lang_code', 1, 'https://ror.org/04znq7n20 HDG Bavaria (Germany)'), (79217, 'https://ror.org/04zqtqt31', 'no_lang_code', 1, 'https://ror.org/04zqtqt31 CAO Group (United States)'), (79218, 'https://ror.org/04zr5y856', 'no_lang_code', 1, 'https://ror.org/04zr5y856 Hexima (Australia)'), (79219, 'https://ror.org/04zrvd864', 'en', 1, 'https://ror.org/04zrvd864 Silvestrum Climate Associates'), (79220, 'https://ror.org/04zs4f087', 'no_lang_code', 1, 'https://ror.org/04zs4f087 ERT (Germany)'), (79221, 'https://ror.org/04zs83x19', 'en', 1, 'https://ror.org/04zs83x19 Zhengzhou Railway Vocational & Technical College 郑州铁路职业技术学院'), (79222, 'https://ror.org/04zs97627', 'no_lang_code', 1, 'https://ror.org/04zs97627 OQ (Oman)'), (79223, 'https://ror.org/04zt7e430', 'de', 1, 'https://ror.org/04zt7e430 Landesanstalt für Schweinezucht'), (79224, 'https://ror.org/04zt8gw89', 'en', 1, 'https://ror.org/04zt8gw89 Gold Coast Health'), (79225, 'https://ror.org/04ztf1t13', 'en', 1, 'https://ror.org/04ztf1t13 Institute Of Psychomedical Education For Children And Adults ペック研究所'), (79226, 'https://ror.org/04zwys509', 'no_lang_code', 1, 'https://ror.org/04zwys509 Petkus (Germany)'), (79227, 'https://ror.org/04zzqcq74', 'no_lang_code', 1, 'https://ror.org/04zzqcq74 United Parcel Service (United Kingdom)'), (79228, 'https://ror.org/0500v6t47', 'en', 1, 'https://ror.org/0500v6t47 Centre for Fire, Explosive and Environment Safety अग्नि, पर्यावरण तथा विस्फोटक सुरक्षा केंद'), (79229, 'https://ror.org/050208923', 'de', 1, 'https://ror.org/050208923 DRK-Blutspendedienst Baden-Württemberg - Hessen'), (79230, 'https://ror.org/0503xrr06', 'no_lang_code', 1, 'https://ror.org/0503xrr06 Closer Consultoria (Portugal)'), (79231, 'https://ror.org/05044k006', 'no_lang_code', 1, 'https://ror.org/05044k006 Beijing Zhongchuangwei Quantum Communication Technology (China) 中创为量子'), (79232, 'https://ror.org/0504t8c81', 'no_lang_code', 1, 'https://ror.org/0504t8c81 ERGONOMIC Institut für Arbeits- und Sozialforschung Forschungsgesellschaft (Germany)'), (79233, 'https://ror.org/0506jd168', 'no_lang_code', 1, 'https://ror.org/0506jd168 Sisu Data (United States)'), (79234, 'https://ror.org/0509zzg37', 'en', 1, 'https://ror.org/0509zzg37 Scripps MD Anderson Cancer Center'), (79235, 'https://ror.org/050chtk28', 'no_lang_code', 1, 'https://ror.org/050chtk28 Shine Micro (United States)'), (79236, 'https://ror.org/050d14s15', 'en', 1, 'https://ror.org/050d14s15 Government Accountability Project'), (79237, 'https://ror.org/050fs4d54', 'no_lang_code', 1, 'https://ror.org/050fs4d54 247Solar Plant (United States)'), (79238, 'https://ror.org/050gvvk80', 'es', 1, 'https://ror.org/050gvvk80 Asociación Colombiana de Nefrología e Hipertensión Arterial Colombian Association of Nephrology and Arterial Hypertension'), (79239, 'https://ror.org/050gyxr66', 'no_lang_code', 1, 'https://ror.org/050gyxr66 Progenity (United States)'), (79240, 'https://ror.org/050h08n21', 'en', 1, 'https://ror.org/050h08n21 Aquarius Population Health'), (79241, 'https://ror.org/050j7g273', 'no_lang_code', 1, 'https://ror.org/050j7g273 Jiangnan Industry Group (China) 江南工业集团'), (79242, 'https://ror.org/050jaqw98', 'no_lang_code', 1, 'https://ror.org/050jaqw98 Normag (Germany)'), (79243, 'https://ror.org/050n5x481', 'no_lang_code', 1, 'https://ror.org/050n5x481 Openbeds (United States)'), (79244, 'https://ror.org/050pzta73', 'no_lang_code', 1, 'https://ror.org/050pzta73 Klaus Kuhn Edelstahlgießerei Kuhn Special Steel (Germany)'), (79245, 'https://ror.org/050q8cm26', 'no_lang_code', 1, 'https://ror.org/050q8cm26 Roche (Chile)'), (79246, 'https://ror.org/050qpg053', 'en', 1, 'https://ror.org/050qpg053 Research Center for Environmental Changes, Academia Sinica 環境變遷研究中心'), (79247, 'https://ror.org/050qvcs37', 'en', 1, 'https://ror.org/050qvcs37 Nanobiosensorics Laboratory'), (79248, 'https://ror.org/050rz1283', 'no_lang_code', 1, 'https://ror.org/050rz1283 Currax Pharmaceuticals (United States)'), (79249, 'https://ror.org/050tt9n79', 'no_lang_code', 1, 'https://ror.org/050tt9n79 Y.K. Bae (United States)'), (79250, 'https://ror.org/05106mv47', 'en', 1, 'https://ror.org/05106mv47 Department of Animal Husbandry Livestock, Fisheries & Veterinary पशुपालन पशुधन मत्स्य र पशु'), (79251, 'https://ror.org/0510rka91', 'en', 1, 'https://ror.org/0510rka91 Adwa-Pan African University ዓድዋ ፓን ኣፍሪካ ዩኒቨርሲቲ'), (79252, 'https://ror.org/05115zx74', 'no_lang_code', 1, 'https://ror.org/05115zx74 Sample6 (United States)'), (79253, 'https://ror.org/0511c9v88', 'en', 1, 'https://ror.org/0511c9v88 Churapcha State Institute of Physical Education and Sports ФГБОУ ВО Чурапчинский государственный институт физической культуры и спорта'), (79254, 'https://ror.org/0515dxk89', 'no_lang_code', 1, 'https://ror.org/0515dxk89 Proton Motor (Germany)'), (79255, 'https://ror.org/0516gh575', 'no_lang_code', 1, 'https://ror.org/0516gh575 Entwicklungsagentur Region Heide (Germany)'), (79256, 'https://ror.org/051860q83', 'no_lang_code', 1, 'https://ror.org/051860q83 AspenTech (United Kingdom)'), (79257, 'https://ror.org/0518mdr56', 'no_lang_code', 1, 'https://ror.org/0518mdr56 Bruker (Austria)'), (79258, 'https://ror.org/0519hbh33', 'no_lang_code', 1, 'https://ror.org/0519hbh33 Drevar (Slovakia)'), (79259, 'https://ror.org/051a88j84', 'pt', 1, 'https://ror.org/051a88j84 Centro Universitário Maurício de Nassau'), (79260, 'https://ror.org/051c7bh69', 'no_lang_code', 1, 'https://ror.org/051c7bh69 Frequency Therapeutics (United States)'), (79261, 'https://ror.org/051cj2f30', 'no_lang_code', 1, 'https://ror.org/051cj2f30 Seoul Viosys (South Korea) 서울바이오시스는'), (79262, 'https://ror.org/051d31036', 'no_lang_code', 1, 'https://ror.org/051d31036 ELAN Microelectronics (Taiwan) 義隆電子'), (79263, 'https://ror.org/051dcnw66', 'no_lang_code', 1, 'https://ror.org/051dcnw66 Drylock Technologies (Belgium)'), (79264, 'https://ror.org/051gfkj61', 'en', 1, 'https://ror.org/051gfkj61 Experimental Center of Forestry in North China 中国林业科学研究院华北林业实验中心'), (79265, 'https://ror.org/051hm2r46', 'no_lang_code', 1, 'https://ror.org/051hm2r46 Cemex (United Kingdom)'), (79266, 'https://ror.org/051j6j225', 'en', 1, 'https://ror.org/051j6j225 Final International University Uluslararası Final Üniversitesi'), (79267, 'https://ror.org/051k1tf82', 'en', 1, 'https://ror.org/051k1tf82 Hainan Marine Monitoring and Forecasting Center 海南海洋监测预报中心'), (79268, 'https://ror.org/051kay419', 'en', 1, 'https://ror.org/051kay419 Yandex School of Data Analysis Школа анализа данных'), (79269, 'https://ror.org/051kr3840', 'no_lang_code', 1, 'https://ror.org/051kr3840 Steelco (Italy)'), (79270, 'https://ror.org/051m5br28', 'en', 1, 'https://ror.org/051m5br28 Indian Society of Agribusiness Professionals'), (79271, 'https://ror.org/051mv2k59', 'en', 1, 'https://ror.org/051mv2k59 Kursk Federal Agrarian Scientific Center Федеральное Государственное Бюджетное Научное Учреждение'), (79272, 'https://ror.org/051qqsf31', 'no_lang_code', 1, 'https://ror.org/051qqsf31 CeramTec (United Kingdom)'), (79273, 'https://ror.org/051r4h193', 'no_lang_code', 1, 'https://ror.org/051r4h193 PPA Controll (Slovakia)'), (79274, 'https://ror.org/051vfhx38', 'no_lang_code', 1, 'https://ror.org/051vfhx38 vTv Therapeutics (United States)'), (79275, 'https://ror.org/051wgwg77', 'en', 1, 'https://ror.org/051wgwg77 Institute for Social Research and Project Consultancy'), (79276, 'https://ror.org/051wthz50', 'no_lang_code', 1, 'https://ror.org/051wthz50 Techulon (United States)'), (79277, 'https://ror.org/051xjbt51', 'no_lang_code', 1, 'https://ror.org/051xjbt51 Omsktransmash (Russia) Омский завод транспортного машиностроения'), (79278, 'https://ror.org/051zgzc60', 'de', 1, 'https://ror.org/051zgzc60 Institut für Bodenkultur und Pflanzenbau'), (79279, 'https://ror.org/051zjfd08', 'no_lang_code', 1, 'https://ror.org/051zjfd08 Somnarus (United States)'), (79280, 'https://ror.org/0521ccd18', 'no_lang_code', 1, 'https://ror.org/0521ccd18 AlzChem (Germany)'), (79281, 'https://ror.org/0521m4596', 'no_lang_code', 1, 'https://ror.org/0521m4596 McCarter (Slovakia)'), (79282, 'https://ror.org/052464b83', 'no_lang_code', 1, 'https://ror.org/052464b83 Doxa (Sweden)'), (79283, 'https://ror.org/0524fk031', 'no_lang_code', 1, 'https://ror.org/0524fk031 PLC Connections (United States)'), (79284, 'https://ror.org/0524grj14', 'en', 1, 'https://ror.org/0524grj14 The Sixth People''s Hospital of Shenyang 沈阳市第六人民医院'), (79285, 'https://ror.org/0525agk59', 'en', 1, 'https://ror.org/0525agk59 Cyber Campus Consortium TIES'), (79286, 'https://ror.org/0525dzh79', 'no_lang_code', 1, 'https://ror.org/0525dzh79 Poseida Therapeutics (United States)'), (79287, 'https://ror.org/0525ff954', 'no_lang_code', 1, 'https://ror.org/0525ff954 Institut Für Prozeßadaptive und Erfahrungsgeleitete Automatisierung (Germany)'), (79288, 'https://ror.org/0527cde49', 'no_lang_code', 1, 'https://ror.org/0527cde49 Epic Sciences (United States)'), (79289, 'https://ror.org/0527w8j59', 'no_lang_code', 1, 'https://ror.org/0527w8j59 Institut für technisch-wissenschaftliche Hydrologie Institute for Technical and Scientific Hydrology (Germany)'), (79290, 'https://ror.org/05288bk55', 'no_lang_code', 1, 'https://ror.org/05288bk55 PatientsVoices (United States)'), (79291, 'https://ror.org/052bx1y70', 'fr', 1, 'https://ror.org/052bx1y70 Clinique Vétérinaire Benjamin Franklin'), (79292, 'https://ror.org/052c5hg93', 'no_lang_code', 1, 'https://ror.org/052c5hg93 GTT Communications (United States)'), (79293, 'https://ror.org/052cfvk26', 'en', 1, 'https://ror.org/052cfvk26 Yunnan Provincial Infectious Disease Hospital 云南省传染病专科医院'), (79294, 'https://ror.org/052d0ye06', 'de', 1, 'https://ror.org/052d0ye06 Institut für Internationale Kommunikation'), (79295, 'https://ror.org/052d8ge54', 'en', 1, 'https://ror.org/052d8ge54 Robert J. Dole VA Medical Center'), (79296, 'https://ror.org/052djjn64', 'no_lang_code', 1, 'https://ror.org/052djjn64 Factor Bioscience (United States)'), (79297, 'https://ror.org/052dmdr17', 'no_lang_code', 1, 'https://ror.org/052dmdr17 Trường Đại học VinUni VinUniversity'), (79298, 'https://ror.org/052f2mx26', 'en', 1, 'https://ror.org/052f2mx26 Xi''an Chest Hospital 西安市胸科医院'), (79299, 'https://ror.org/052fgf944', 'de', 1, 'https://ror.org/052fgf944 Deutsches Jungforscher Netzwerk - juFORUM'), (79300, 'https://ror.org/052gwma96', 'de', 1, 'https://ror.org/052gwma96 Medizinischer Fakultätentag'), (79301, 'https://ror.org/052k2qm78', 'no_lang_code', 1, 'https://ror.org/052k2qm78 Industrial Research & Engineering (Germany)'), (79302, 'https://ror.org/052n2ew56', 'de', 1, 'https://ror.org/052n2ew56 DRK Bezirksverband Frankfurt'), (79303, 'https://ror.org/052ne1802', 'no_lang_code', 1, 'https://ror.org/052ne1802 Visonex (United States)'), (79304, 'https://ror.org/052p82762', 'en', 1, 'https://ror.org/052p82762 Nanchang Center for Disease Control and Prevention 南昌市疾病预防控制中心'), (79305, 'https://ror.org/052r73a33', 'no_lang_code', 1, 'https://ror.org/052r73a33 PPG Industries (United Kingdom)'), (79306, 'https://ror.org/052rc8810', 'de', 1, 'https://ror.org/052rc8810 Ministerium für Wirtschaft, Arbeit, Energie und Verkehr'), (79307, 'https://ror.org/052rnf523', 'de', 1, 'https://ror.org/052rnf523 Institut für Assistenzsysteme und Qualifizierung'), (79308, 'https://ror.org/052s9kd61', 'no_lang_code', 1, 'https://ror.org/052s9kd61 Prognos (Germany)'), (79309, 'https://ror.org/052scad51', 'no_lang_code', 1, 'https://ror.org/052scad51 Kurayoshi Museum 倉吉博物館'), (79310, 'https://ror.org/052sgg612', 'en', 1, 'https://ror.org/052sgg612 Arthur Rylah Institute for Environmental Research'), (79311, 'https://ror.org/052v5pn20', 'en', 1, 'https://ror.org/052v5pn20 Eastern Regional Research Center'), (79312, 'https://ror.org/052yc4b30', 'no_lang_code', 1, 'https://ror.org/052yc4b30 Exsymol (Monaco)'), (79313, 'https://ror.org/052z98995', 'no_lang_code', 1, 'https://ror.org/052z98995 Vádium (Slovakia)'), (79314, 'https://ror.org/0530gr416', 'no_lang_code', 1, 'https://ror.org/0530gr416 Helsana Group (Switzerland)'), (79315, 'https://ror.org/0532gcg76', 'en', 1, 'https://ror.org/0532gcg76 Institute for Disease Modeling'), (79316, 'https://ror.org/053344077', 'no_lang_code', 1, 'https://ror.org/053344077 Arsenal Biosciences (United States)'), (79317, 'https://ror.org/053385a79', 'fr', 1, 'https://ror.org/053385a79 Hôpital Dupuytren'), (79318, 'https://ror.org/05343ec73', 'en', 1, 'https://ror.org/05343ec73 Islamic Azad University, Azadshahr Branch دانشگاه آزاد اسلامی آزادشهر'), (79319, 'https://ror.org/0535jaz61', 'en', 1, 'https://ror.org/0535jaz61 National College Of Nursing 国立看護大学校'), (79320, 'https://ror.org/053641y49', 'en', 1, 'https://ror.org/053641y49 Japan Coal Energy Center 石炭エネルギーセンター'), (79321, 'https://ror.org/0537wed62', 'no_lang_code', 1, 'https://ror.org/0537wed62 ROWO Coating (Germany)'), (79322, 'https://ror.org/05392nj09', 'no_lang_code', 1, 'https://ror.org/05392nj09 Zalgen (United States)'), (79323, 'https://ror.org/0539tbr70', 'no_lang_code', 1, 'https://ror.org/0539tbr70 Taisei Kako (Japan)'), (79324, 'https://ror.org/0539w9883', 'en', 1, 'https://ror.org/0539w9883 Eswatini Economic Policy Analysis and Research Centre'), (79325, 'https://ror.org/053c4y589', 'no_lang_code', 1, 'https://ror.org/053c4y589 J.M. Huber Corporation (United States)'), (79326, 'https://ror.org/053frp704', 'no_lang_code', 1, 'https://ror.org/053frp704 Yebio Bioengineering (China)'), (79327, 'https://ror.org/053g4zj73', 'no_lang_code', 1, 'https://ror.org/053g4zj73 Raydium Semiconductor (Taiwan)'), (79328, 'https://ror.org/053g7ab72', 'en', 1, 'https://ror.org/053g7ab72 Grammar School Gymnázium v Snine'), (79329, 'https://ror.org/053htj969', 'no_lang_code', 1, 'https://ror.org/053htj969 Clement Clarke International (United Kingdom)'), (79330, 'https://ror.org/053j5m838', 'no_lang_code', 1, 'https://ror.org/053j5m838 Bitunova (Slovakia)'), (79331, 'https://ror.org/053rk7239', 'no_lang_code', 1, 'https://ror.org/053rk7239 ETKM (Slovakia)'), (79332, 'https://ror.org/053s03b36', 'en', 1, 'https://ror.org/053s03b36 Laudes Foundation'), (79333, 'https://ror.org/053x1dt55', 'en', 1, 'https://ror.org/053x1dt55 Northeast Gas Association'), (79334, 'https://ror.org/0544z8b75', 'en', 1, 'https://ror.org/0544z8b75 College Of Certified Psychophysiologists'), (79335, 'https://ror.org/054767b18', 'en', 1, 'https://ror.org/054767b18 Dawu County People''s Hospital 大悟县人民医院'), (79336, 'https://ror.org/0547r0f90', 'de', 1, 'https://ror.org/0547r0f90 Landesinstitut für Schule und Medien Berlin-Brandenburg'), (79337, 'https://ror.org/0547yav62', 'no_lang_code', 1, 'https://ror.org/0547yav62 Institut für Ökologie und Politik Ökopol (Germany)'), (79338, 'https://ror.org/054a82660', 'de', 1, 'https://ror.org/054a82660 Institut Psychologie und Bedrohungsmanagement'), (79339, 'https://ror.org/054d0qa72', 'de', 1, 'https://ror.org/054d0qa72 Kasseler Institut für Ländliche Entwicklung'), (79340, 'https://ror.org/054dwj411', 'no_lang_code', 1, 'https://ror.org/054dwj411 Geodis (Slovakia)'), (79341, 'https://ror.org/054fkw726', 'en', 1, 'https://ror.org/054fkw726 Hunan Institute of Microbiology 湖南省微生物研究院'), (79342, 'https://ror.org/054grzz74', 'no_lang_code', 1, 'https://ror.org/054grzz74 Virtual Technology (United States)'), (79343, 'https://ror.org/054j2ss72', 'en', 1, 'https://ror.org/054j2ss72 New Insights for Tourism'), (79344, 'https://ror.org/054kgce12', 'de', 1, 'https://ror.org/054kgce12 An-Institut für Transfer und Weiterbildung'), (79345, 'https://ror.org/054q94y45', 'en', 1, 'https://ror.org/054q94y45 Centre de Collaboration MiQro Innovation MiQro Innovation Collaborative Centre'), (79346, 'https://ror.org/054qz6938', 'fr', 1, 'https://ror.org/054qz6938 École de Gouvernance et d''Économie de Rabat'), (79347, 'https://ror.org/054r9x893', 'en', 1, 'https://ror.org/054r9x893 Kazakh University of Technology and Business Қазақ технология және бизнес университеті'), (79348, 'https://ror.org/054tmk179', 'en', 1, 'https://ror.org/054tmk179 Isaac Newton Group'), (79349, 'https://ror.org/054tr5c63', 'en', 1, 'https://ror.org/054tr5c63 Center for Inherited Blood Disorders'), (79350, 'https://ror.org/054tz0d85', 'no_lang_code', 1, 'https://ror.org/054tz0d85 Medomics (China) 江苏美克医学技术有限公司'), (79351, 'https://ror.org/054we3s04', 'en', 1, 'https://ror.org/054we3s04 Guangzhou Zoo 广州动物园'), (79352, 'https://ror.org/0550rfz49', 'no_lang_code', 1, 'https://ror.org/0550rfz49 Cytologics (United States)'), (79353, 'https://ror.org/055298e12', 'no_lang_code', 1, 'https://ror.org/055298e12 PreludeDx (United States)'), (79354, 'https://ror.org/0553qpy92', 'it', 1, 'https://ror.org/0553qpy92 Istituto Zooprofilattico Sperimentale della Puglia e della Basilicata'), (79355, 'https://ror.org/0554q9126', 'no_lang_code', 1, 'https://ror.org/0554q9126 DAC Tools (United States)'), (79356, 'https://ror.org/055560x25', 'en', 1, 'https://ror.org/055560x25 College of Europe, Warsaw'), (79357, 'https://ror.org/0555yfc83', 'en', 1, 'https://ror.org/0555yfc83 Epson Information Technology College エプソン情報科学専門学校'), (79358, 'https://ror.org/05583vn45', 'en', 1, 'https://ror.org/05583vn45 Aerial Delivery Research and Development Establishment हवाई डिलीवरी अनुसंधान एवं विकास प्रतिष्ठान'), (79359, 'https://ror.org/0558bev76', 'no_lang_code', 1, 'https://ror.org/0558bev76 IBC Pharmaceuticals (India)'), (79360, 'https://ror.org/0558r0k17', 'no_lang_code', 1, 'https://ror.org/0558r0k17 Summit Technology Laboratory (United States)'), (79361, 'https://ror.org/0559db563', 'no_lang_code', 1, 'https://ror.org/0559db563 Xinjiang New Energy Research Institute (China)'), (79362, 'https://ror.org/055a8sc47', 'no_lang_code', 1, 'https://ror.org/055a8sc47 Spa-ce.net'), (79363, 'https://ror.org/055bp1561', 'no_lang_code', 1, 'https://ror.org/055bp1561 RaySearch Laboratories (Sweden)'), (79364, 'https://ror.org/055bszj51', 'no_lang_code', 1, 'https://ror.org/055bszj51 Peptide Institute (Japan) 株式会社ペプチド研究所'), (79365, 'https://ror.org/055c63105', 'no_lang_code', 1, 'https://ror.org/055c63105 IBM (Slovakia)'), (79366, 'https://ror.org/055e56m27', 'no_lang_code', 1, 'https://ror.org/055e56m27 Pacific Research Laboratories (United States)'), (79367, 'https://ror.org/055e8bt13', 'en', 1, 'https://ror.org/055e8bt13 Banque centrale du Luxembourg Central Bank of Luxembourg'), (79368, 'https://ror.org/055fwv607', 'en', 1, 'https://ror.org/055fwv607 Combat Vehicles Research and Development Establishment संग्राम वाहन अनुसंधान तथा विकास संस्थापन'), (79369, 'https://ror.org/055hrh286', 'en', 1, 'https://ror.org/055hrh286 Arctic Data Center'), (79370, 'https://ror.org/055ppaf52', 'no_lang_code', 1, 'https://ror.org/055ppaf52 Navigant (Germany)'), (79371, 'https://ror.org/055pxkc03', 'en', 1, 'https://ror.org/055pxkc03 The Korean Institute of Electrical and Electronic Material Engineers 한국전기전자재료학회'), (79372, 'https://ror.org/055qcrf91', 'no_lang_code', 1, 'https://ror.org/055qcrf91 Quest Thermal Group (United States)'), (79373, 'https://ror.org/055qtnk39', 'no_lang_code', 1, 'https://ror.org/055qtnk39 DMG Mori (United Kingdom)'), (79374, 'https://ror.org/055r2kv75', 'no_lang_code', 1, 'https://ror.org/055r2kv75 Cybersonics (United States)'), (79375, 'https://ror.org/055txj157', 'no_lang_code', 1, 'https://ror.org/055txj157 Gerresheimer (Germany)'), (79376, 'https://ror.org/05609xa16', 'en', 1, 'https://ror.org/05609xa16 Wenzhou-Kean University 温州肯恩大学'), (79377, 'https://ror.org/05614wx46', 'no_lang_code', 1, 'https://ror.org/05614wx46 Optinav (United States)'), (79378, 'https://ror.org/0561c4v90', 'en', 1, 'https://ror.org/0561c4v90 DermaTronnier'), (79379, 'https://ror.org/05621b753', 'no_lang_code', 1, 'https://ror.org/05621b753 Acrux (Australia)'), (79380, 'https://ror.org/05642yh85', 'pt', 1, 'https://ror.org/05642yh85 Cananéia Research Institute Instituto de Pesquisas Cananéia'), (79381, 'https://ror.org/0564c1v55', 'no_lang_code', 1, 'https://ror.org/0564c1v55 Technovative Applications (United States)'), (79382, 'https://ror.org/0565h3a31', 'la', 1, 'https://ror.org/0565h3a31 Institutum Iurisprudentiae, Academia Sinica 中央研究院法律學研究所'), (79383, 'https://ror.org/0566myk84', 'no_lang_code', 1, 'https://ror.org/0566myk84 Oral Health Solutions (United States)'), (79384, 'https://ror.org/0568cvb54', 'de', 1, 'https://ror.org/0568cvb54 Cogito Institut für Autonomieforschung'), (79385, 'https://ror.org/0568fdx82', 'no_lang_code', 1, 'https://ror.org/0568fdx82 Expanse (United States)'), (79386, 'https://ror.org/0568h1r52', 'no_lang_code', 1, 'https://ror.org/0568h1r52 Haselmeier (Germany)'), (79387, 'https://ror.org/0569p8y61', 'en', 1, 'https://ror.org/0569p8y61 The Eighth Hospital of Xi''an 西安市第八医院'), (79388, 'https://ror.org/0569qgz98', 'no_lang_code', 1, 'https://ror.org/0569qgz98 Meiko (Germany)'), (79389, 'https://ror.org/056andb48', 'no_lang_code', 1, 'https://ror.org/056andb48 Institut für Leichte Elektrische Antriebe und Generatoren (Germany)'), (79390, 'https://ror.org/056bdp761', 'en', 1, 'https://ror.org/056bdp761 Indonesian Orthopaedic Association Perkumpulan Ahli Bedah Orthopaedi Indonesia'), (79391, 'https://ror.org/056d2rn68', 'no_lang_code', 1, 'https://ror.org/056d2rn68 Takeda (Canada)'), (79392, 'https://ror.org/056eeyx03', 'en', 1, 'https://ror.org/056eeyx03 Baden State Museum Badische Landesmuseum'), (79393, 'https://ror.org/056f5eh80', 'en', 1, 'https://ror.org/056f5eh80 Arctic Research Center of the Yamal-Nenets Autonomous District Научный центр изучения Арктики'), (79394, 'https://ror.org/056ftg126', 'no_lang_code', 1, 'https://ror.org/056ftg126 Owen Mumford (United Kingdom)'), (79395, 'https://ror.org/056gwgh96', 'no_lang_code', 1, 'https://ror.org/056gwgh96 Alcon (Switzerland)'), (79396, 'https://ror.org/056h7qt40', 'no_lang_code', 1, 'https://ror.org/056h7qt40 Hotoku Museum 財団法人報徳福運社'), (79397, 'https://ror.org/056j2ng59', 'no_lang_code', 1, 'https://ror.org/056j2ng59 Techverse (United States)'), (79398, 'https://ror.org/056jz8j95', 'no_lang_code', 1, 'https://ror.org/056jz8j95 Spinal Elements (United States)'), (79399, 'https://ror.org/056m22n36', 'no_lang_code', 1, 'https://ror.org/056m22n36 Active Implants (United States)'), (79400, 'https://ror.org/056mjwa25', 'en', 1, 'https://ror.org/056mjwa25 Senshu University Kitakami welfare education technical school 専修大学北上福祉教育専門学校'), (79401, 'https://ror.org/056nqp360', 'de', 1, 'https://ror.org/056nqp360 MedAustron'), (79402, 'https://ror.org/056pwa368', 'no_lang_code', 1, 'https://ror.org/056pwa368 Vtec Laboratories (United States)'), (79403, 'https://ror.org/056q25d31', 'no_lang_code', 1, 'https://ror.org/056q25d31 Sheehan Medical (United States)'), (79404, 'https://ror.org/056qeft95', 'no_lang_code', 1, 'https://ror.org/056qeft95 Salus (United States)'), (79405, 'https://ror.org/056tqe525', 'no_lang_code', 1, 'https://ror.org/056tqe525 Volition (United Kingdom)'), (79406, 'https://ror.org/056v6fd94', 'en', 1, 'https://ror.org/056v6fd94 Yamaguchi Prefectural Police 山口県警察'), (79407, 'https://ror.org/056vdh456', 'no_lang_code', 1, 'https://ror.org/056vdh456 APCON (Germany)'), (79408, 'https://ror.org/056xvq727', 'de', 1, 'https://ror.org/056xvq727 Chemisches und Veterinäruntersuchungsamt Ostwestfalen-Lippe'), (79409, 'https://ror.org/057052843', 'no_lang_code', 1, 'https://ror.org/057052843 Nimbic Systems (United States)'), (79410, 'https://ror.org/057341e57', 'en', 1, 'https://ror.org/057341e57 Museum für Kunst und Gewerbe Hamburg Museum of Art and Design Hamburg'), (79411, 'https://ror.org/0574dvv95', 'no_lang_code', 1, 'https://ror.org/0574dvv95 Recipharm (France)'), (79412, 'https://ror.org/0574mcz98', 'en', 1, 'https://ror.org/0574mcz98 National Food Safety and Quality Service Servicio Nacional de Sanidad y Calidad Agroalimentaria'), (79413, 'https://ror.org/0575r9t98', 'no_lang_code', 1, 'https://ror.org/0575r9t98 Agriculture Victoria Services (Australia)'), (79414, 'https://ror.org/0576yhz46', 'no_lang_code', 1, 'https://ror.org/0576yhz46 Cengage Learning (United Kingdom)'), (79415, 'https://ror.org/057aqdv46', 'en', 1, 'https://ror.org/057aqdv46 Center for Reliable Energy Systems'), (79416, 'https://ror.org/057bmm383', 'no_lang_code', 1, 'https://ror.org/057bmm383 Lb Minerals (Slovakia)'), (79417, 'https://ror.org/057ez4c69', 'no_lang_code', 1, 'https://ror.org/057ez4c69 Recon Dynamics (United States)'), (79418, 'https://ror.org/057fnvr81', 'no_lang_code', 1, 'https://ror.org/057fnvr81 Gentian Diagnostics (Sweden)'), (79419, 'https://ror.org/057g8xr12', 'es', 1, 'https://ror.org/057g8xr12 Colección Ornitológica Phelps'), (79420, 'https://ror.org/057ht2493', 'no_lang_code', 1, 'https://ror.org/057ht2493 Biolase (United States)'), (79421, 'https://ror.org/057htkt44', 'en', 1, 'https://ror.org/057htkt44 American Public Transportation Association'), (79422, 'https://ror.org/057jjmm55', 'en', 1, 'https://ror.org/057jjmm55 Safer Sim'), (79423, 'https://ror.org/057k96546', 'en', 1, 'https://ror.org/057k96546 Extreme Wellness Institute'), (79424, 'https://ror.org/057pame33', 'en', 1, 'https://ror.org/057pame33 Commission communautaire commune Common Community Commission Gemeenschappelijke Gemeenschapscommissie'), (79425, 'https://ror.org/057pf5h72', 'hu', 1, 'https://ror.org/057pf5h72 Kiskunság National Park, Kiskunsági Nemzeti Park'), (79426, 'https://ror.org/057pw8j03', 'no_lang_code', 1, 'https://ror.org/057pw8j03 Planmed (Finland)'), (79427, 'https://ror.org/057qmer80', 'en', 1, 'https://ror.org/057qmer80 Univation Institut für Evaluation Dr. Beywl & Associates'), (79428, 'https://ror.org/057tsam22', 'de', 1, 'https://ror.org/057tsam22 mmb Institut'), (79429, 'https://ror.org/057v40812', 'de', 1, 'https://ror.org/057v40812 Deutsches Krankenhaus Institut'), (79430, 'https://ror.org/057v6df68', 'no_lang_code', 1, 'https://ror.org/057v6df68 Nomura Holdings (Japan) 野村ホールディングス株式会社'), (79431, 'https://ror.org/057w5q630', 'no_lang_code', 1, 'https://ror.org/057w5q630 Cara Therapeutics (United States)'), (79432, 'https://ror.org/057zb9e55', 'no_lang_code', 1, 'https://ror.org/057zb9e55 Macopharma (Germany)'), (79433, 'https://ror.org/0583afz97', 'fr', 1, 'https://ror.org/0583afz97 Ecole Supérieure d''Ambulancier et Soins d''Urgence Romande'), (79434, 'https://ror.org/0583z7951', 'en', 1, 'https://ror.org/0583z7951 Eckert Schools International'), (79435, 'https://ror.org/058454n10', 'no_lang_code', 1, 'https://ror.org/058454n10 Centrix (United States)'), (79436, 'https://ror.org/05849hq48', 'no_lang_code', 1, 'https://ror.org/05849hq48 KDS Development (United States)'), (79437, 'https://ror.org/0584vt120', 'en', 1, 'https://ror.org/0584vt120 Advanced Functional Fabrics of America'), (79438, 'https://ror.org/05853sr12', 'no_lang_code', 1, 'https://ror.org/05853sr12 Scientific Design Company (United States)'), (79439, 'https://ror.org/05878p058', 'no_lang_code', 1, 'https://ror.org/05878p058 Silicon Motion (Taiwan) 慧榮科技'), (79440, 'https://ror.org/0587q0807', 'en', 1, 'https://ror.org/0587q0807 Sichuan Research Center of New Materials 四川省新材料研究中心'), (79441, 'https://ror.org/0588m4284', 'en', 1, 'https://ror.org/0588m4284 China Association of Acupuncture-Moxibustion 中国针灸学会'), (79442, 'https://ror.org/058cy9h95', 'no_lang_code', 1, 'https://ror.org/058cy9h95 Origin Quantum Computing Technology Company (China) 国内第一款量子计算机操作系统'), (79443, 'https://ror.org/058edxh67', 'en', 1, 'https://ror.org/058edxh67 Jiangxi Institute Of Economic Administraors 江西经济管理干部学院'), (79444, 'https://ror.org/058gnjg35', 'no_lang_code', 1, 'https://ror.org/058gnjg35 Veralase (United States)'), (79445, 'https://ror.org/058j17k65', 'no_lang_code', 1, 'https://ror.org/058j17k65 Magic Leap (United States)'), (79446, 'https://ror.org/058kq6588', 'no_lang_code', 1, 'https://ror.org/058kq6588 Apeiron Biologics (Austria)'), (79447, 'https://ror.org/058myeh47', 'no_lang_code', 1, 'https://ror.org/058myeh47 Semefab (United Kingdom)'), (79448, 'https://ror.org/058n07v74', 'no_lang_code', 1, 'https://ror.org/058n07v74 Curemark (United States)'), (79449, 'https://ror.org/058phj376', 'de', 1, 'https://ror.org/058phj376 Forschungsanstalt für Waldökologie und Forstwirtschaft'), (79450, 'https://ror.org/058pmah25', 'en', 1, 'https://ror.org/058pmah25 Federal Reserve Bank of Richmond'), (79451, 'https://ror.org/058pqk375', 'no_lang_code', 1, 'https://ror.org/058pqk375 Siemens (Slovakia)'), (79452, 'https://ror.org/058qjc262', 'en', 1, 'https://ror.org/058qjc262 Central Muga Eri Research and Training Institute'), (79453, 'https://ror.org/058rtc669', 'de', 1, 'https://ror.org/058rtc669 Institut für Diagnostik und Konservierung an Denkmalen in Sachsen und Sachsen-Anhalt'), (79454, 'https://ror.org/058v0t886', 'en', 1, 'https://ror.org/058v0t886 Sudan Academy of Sciences أكاديمية السودان للعلوم'), (79455, 'https://ror.org/058wv3r60', 'en', 1, 'https://ror.org/058wv3r60 Export–Import Bank of Korea'), (79456, 'https://ror.org/058wwsg41', 'no_lang_code', 1, 'https://ror.org/058wwsg41 Kinamed (United States)'), (79457, 'https://ror.org/058xg4r54', 'en', 1, 'https://ror.org/058xg4r54 Citizens Information Board'), (79458, 'https://ror.org/058ytte92', 'en', 1, 'https://ror.org/058ytte92 Cape Town Science Centre'), (79459, 'https://ror.org/058yyse25', 'en', 1, 'https://ror.org/058yyse25 China Training Center for Senior Civil Servants 中国高级公务员培训中心'), (79460, 'https://ror.org/058yz2m16', 'en', 1, 'https://ror.org/058yz2m16 Wisconsin Project on Nuclear Arms Control'), (79461, 'https://ror.org/058zr4t24', 'en', 1, 'https://ror.org/058zr4t24 Center for Migration Studies of New York'), (79462, 'https://ror.org/058zth179', 'no_lang_code', 1, 'https://ror.org/058zth179 Fiat Chrysler Automobiles (Japan)'), (79463, 'https://ror.org/05966vw37', 'no_lang_code', 1, 'https://ror.org/05966vw37 Bezwada Biomedical (United States)'), (79464, 'https://ror.org/0596exr16', 'en', 1, 'https://ror.org/0596exr16 Proyecto Mono Tocón Titi Monkey Project'), (79465, 'https://ror.org/0596vwe73', 'no_lang_code', 1, 'https://ror.org/0596vwe73 Veroscience (United States)'), (79466, 'https://ror.org/05997db74', 'en', 1, 'https://ror.org/05997db74 Global Institute for Water Security'), (79467, 'https://ror.org/059ab3182', 'no_lang_code', 1, 'https://ror.org/059ab3182 Medicomp (United States)'), (79468, 'https://ror.org/059aer881', 'en', 1, 'https://ror.org/059aer881 Eye Hospital in Bangalore'), (79469, 'https://ror.org/059c3m342', 'no_lang_code', 1, 'https://ror.org/059c3m342 Patient Knowhow (United States)'), (79470, 'https://ror.org/059gc9059', 'no_lang_code', 1, 'https://ror.org/059gc9059 Bobst (United Kingdom)'), (79471, 'https://ror.org/059h8x781', 'no_lang_code', 1, 'https://ror.org/059h8x781 China Central Television 中国中央电视台'), (79472, 'https://ror.org/059k3xc14', 'de', 1, 'https://ror.org/059k3xc14 Landwirtschaftskammer Nordrhein-Westfalen'), (79473, 'https://ror.org/059kj2n52', 'no_lang_code', 1, 'https://ror.org/059kj2n52 AnaKat (Germany)'), (79474, 'https://ror.org/059mabc80', 'en', 1, 'https://ror.org/059mabc80 Australian National Wildlife Collection'), (79475, 'https://ror.org/059nam179', 'en', 1, 'https://ror.org/059nam179 VA Roseburg Healthcare System'), (79476, 'https://ror.org/059ndnh31', 'no_lang_code', 1, 'https://ror.org/059ndnh31 Turbon (Germany)'), (79477, 'https://ror.org/059q89q46', 'no_lang_code', 1, 'https://ror.org/059q89q46 Institut für Textiltechnik Augsburg (Germany)'), (79478, 'https://ror.org/059r55748', 'no_lang_code', 1, 'https://ror.org/059r55748 Triad (United States)'), (79479, 'https://ror.org/059r91969', 'no_lang_code', 1, 'https://ror.org/059r91969 Starodub (United States)'), (79480, 'https://ror.org/059s97738', 'en', 1, 'https://ror.org/059s97738 Skyline University Nigeria'), (79481, 'https://ror.org/059tf1p39', 'nl', 1, 'https://ror.org/059tf1p39 Domus Medica'), (79482, 'https://ror.org/059v90v79', 'no_lang_code', 1, 'https://ror.org/059v90v79 PowerPhotonic (United States)'), (79483, 'https://ror.org/059vy2q86', 'no_lang_code', 1, 'https://ror.org/059vy2q86 Nexgenia (United States)'), (79484, 'https://ror.org/059w8f876', 'en', 1, 'https://ror.org/059w8f876 University of Kisubi'), (79485, 'https://ror.org/059ytn208', 'no_lang_code', 1, 'https://ror.org/059ytn208 GenomeScan (Netherlands)'), (79486, 'https://ror.org/059ze4t74', 'en', 1, 'https://ror.org/059ze4t74 German Data Forum Rat für Sozial- und Wirtschaftsdaten'), (79487, 'https://ror.org/05a0mtz36', 'en', 1, 'https://ror.org/05a0mtz36 Renewable Energy Corporation of India'), (79488, 'https://ror.org/05a2ass35', 'no_lang_code', 1, 'https://ror.org/05a2ass35 IMRIS (United States)'), (79489, 'https://ror.org/05a2cfm07', 'en', 1, 'https://ror.org/05a2cfm07 Islamic Azad University, Damghan Branch دانشگاه آزاد اسلامی واحد دامغان'), (79490, 'https://ror.org/05a4ggb77', 'no_lang_code', 1, 'https://ror.org/05a4ggb77 Regionalverkehr Köln (Germany)'), (79491, 'https://ror.org/05a5x4q14', 'no_lang_code', 1, 'https://ror.org/05a5x4q14 BioAtla (United States)'), (79492, 'https://ror.org/05a7f9k79', 'en', 1, 'https://ror.org/05a7f9k79 Woldia University ወልድያ ዩኒቨርሲቲ'), (79493, 'https://ror.org/05a8zr135', 'en', 1, 'https://ror.org/05a8zr135 Koto Cultural Community Foundation 公益財団法人 江東区文化コミュニティ財団'), (79494, 'https://ror.org/05a960335', 'de', 1, 'https://ror.org/05a960335 Hessische Zentrale für Datenverarbeitung'), (79495, 'https://ror.org/05aacdd70', 'es', 1, 'https://ror.org/05aacdd70 Hospital Piñero'), (79496, 'https://ror.org/05abbvq76', 'no_lang_code', 1, 'https://ror.org/05abbvq76 CD-adapco (United States)'), (79497, 'https://ror.org/05abxfb94', 'no_lang_code', 1, 'https://ror.org/05abxfb94 Immunovative Therapies (Israel)'), (79498, 'https://ror.org/05ac30595', 'no_lang_code', 1, 'https://ror.org/05ac30595 Urenco (Germany)'), (79499, 'https://ror.org/05ac9kx40', 'en', 1, 'https://ror.org/05ac9kx40 National Center for Sustainable Transportation'), (79500, 'https://ror.org/05afd6695', 'en', 1, 'https://ror.org/05afd6695 Maharaja Bir Bikram University মহারাজা বির বিক্রম ইউনিভার্সিটি'), (79501, 'https://ror.org/05ahnsa78', 'en', 1, 'https://ror.org/05ahnsa78 Institute of Political Science Instytut Nauki o Polityce'), (79502, 'https://ror.org/05ak8xb62', 'es', 1, 'https://ror.org/05ak8xb62 Academia Nacional de Medicina Venezuela'), (79503, 'https://ror.org/05akz4x40', 'no_lang_code', 1, 'https://ror.org/05akz4x40 Windpark Ellhöft (Germany)'), (79504, 'https://ror.org/05ama3a60', 'no_lang_code', 1, 'https://ror.org/05ama3a60 Perceptive Innovations (United States)'), (79505, 'https://ror.org/05anb7a53', 'en', 1, 'https://ror.org/05anb7a53 Beijing Chaoyang Emergency Medical Center 北京朝阳急诊抢救中心'), (79506, 'https://ror.org/05apyxs13', 'no_lang_code', 1, 'https://ror.org/05apyxs13 Tobishi (Japan)'), (79507, 'https://ror.org/05awecr05', 'no_lang_code', 1, 'https://ror.org/05awecr05 Institut für Angewandte Zellkultur (Germany)'), (79508, 'https://ror.org/05ax1zq53', 'en', 1, 'https://ror.org/05ax1zq53 Kofi Annan International Peacekeeping Training Centre'), (79509, 'https://ror.org/05b0h7m33', 'en', 1, 'https://ror.org/05b0h7m33 ABC for Health'), (79510, 'https://ror.org/05b0xak35', 'no_lang_code', 1, 'https://ror.org/05b0xak35 NeuroEM Therapeutics (United States)'), (79511, 'https://ror.org/05b2qtm61', 'en', 1, 'https://ror.org/05b2qtm61 Centre for Rural Education and Economic Development'), (79512, 'https://ror.org/05b38ps04', 'de', 1, 'https://ror.org/05b38ps04 Landesinstitut für Lehrerbildung und Schulentwicklung'), (79513, 'https://ror.org/05b3amq72', 'no_lang_code', 1, 'https://ror.org/05b3amq72 Acesion Pharma (Denmark)'), (79514, 'https://ror.org/05b46br83', 'no_lang_code', 1, 'https://ror.org/05b46br83 Biokine (Israel)'), (79515, 'https://ror.org/05b6nrx87', 'no_lang_code', 1, 'https://ror.org/05b6nrx87 CooperSurgical (United States)'), (79516, 'https://ror.org/05b6t0e74', 'en', 1, 'https://ror.org/05b6t0e74 Hokkaido Prefectual Police 北海道警察'), (79517, 'https://ror.org/05b75xp43', 'no_lang_code', 1, 'https://ror.org/05b75xp43 Institut für Geologie und Umwelt (Germany)'), (79518, 'https://ror.org/05bb7at98', 'no_lang_code', 1, 'https://ror.org/05bb7at98 Techmart Industrial Limited (China) 科汇工业机械有限公司'), (79519, 'https://ror.org/05bdyr549', 'no_lang_code', 1, 'https://ror.org/05bdyr549 VPDiagnostics (United States)'), (79520, 'https://ror.org/05bh5xp98', 'no_lang_code', 1, 'https://ror.org/05bh5xp98 LimaCorporate (Italy)'), (79521, 'https://ror.org/05bj13d25', 'no_lang_code', 1, 'https://ror.org/05bj13d25 Pfalzwerke (Germany)'), (79522, 'https://ror.org/05bjr0894', 'no_lang_code', 1, 'https://ror.org/05bjr0894 Toyo Engineering (Japan) 東洋エンジニアリング株式会社'), (79523, 'https://ror.org/05bk8br84', 'es', 1, 'https://ror.org/05bk8br84 Para La Tierra'), (79524, 'https://ror.org/05bmwgs04', 'en', 1, 'https://ror.org/05bmwgs04 Sabzevar University of New Technology دانشگاه فناوری های نوین سبزوار'), (79525, 'https://ror.org/05bnan144', 'de', 1, 'https://ror.org/05bnan144 Institut für Berufliche Aus- und Fortbildung'), (79526, 'https://ror.org/05bqwrx65', 'no_lang_code', 1, 'https://ror.org/05bqwrx65 IZI Medical (United States)'), (79527, 'https://ror.org/05br03w78', 'no_lang_code', 1, 'https://ror.org/05br03w78 Pflüger (Germany)'), (79528, 'https://ror.org/05bv91d86', 'en', 1, 'https://ror.org/05bv91d86 Mannheim Centre for European Social Research Mannheimer Zentrum für Europäische Sozialforschung'), (79529, 'https://ror.org/05bvyxw62', 'es', 1, 'https://ror.org/05bvyxw62 Hospital Universitario de Sincelejo'), (79530, 'https://ror.org/05bvzth27', 'en', 1, 'https://ror.org/05bvzth27 Institut für Europäisches Medienrecht Institute of European Media Law'), (79531, 'https://ror.org/05bykpb13', 'en', 1, 'https://ror.org/05bykpb13 Center for Biomolecular Nanotechnologies Centro per le Nanotecnologie Biomolecolari'), (79532, 'https://ror.org/05c1tqh91', 'en', 1, 'https://ror.org/05c1tqh91 Museum am Rothenbaum Museum für Völkerkunde Hamburg'), (79533, 'https://ror.org/05c2w3k86', 'en', 1, 'https://ror.org/05c2w3k86 Carolina Small Business Development Fund'), (79534, 'https://ror.org/05c30e379', 'no_lang_code', 1, 'https://ror.org/05c30e379 Siuvo (China)'), (79535, 'https://ror.org/05c4d7454', 'en', 1, 'https://ror.org/05c4d7454 Spice and Beverage Research Institute 香料饮料研究所'), (79536, 'https://ror.org/05c4q7289', 'en', 1, 'https://ror.org/05c4q7289 WHO European Office for the Prevention and Control of NCD'), (79537, 'https://ror.org/05c66m157', 'no_lang_code', 1, 'https://ror.org/05c66m157 Roche (Bolivia)'), (79538, 'https://ror.org/05cb4rb43', 'en', 1, 'https://ror.org/05cb4rb43 Morgridge Institute for Research'), (79539, 'https://ror.org/05ccdc018', 'en', 1, 'https://ror.org/05ccdc018 Asociación Colombiana de Cirugía Colombian Association of Surgery'), (79540, 'https://ror.org/05ccm7722', 'en', 1, 'https://ror.org/05ccm7722 The TAU Institute'), (79541, 'https://ror.org/05ccmn542', 'en', 1, 'https://ror.org/05ccmn542 Concrete Reinforcing Steel Institute'), (79542, 'https://ror.org/05ccx1c95', 'da', 1, 'https://ror.org/05ccx1c95 LVK Kvægdyrlægerne'), (79543, 'https://ror.org/05cet1628', 'de', 1, 'https://ror.org/05cet1628 Wallraf-Richartz-Museum & Fondation Corboud, Wallraf–Richartz-Museum'), (79544, 'https://ror.org/05ceyw104', 'en', 1, 'https://ror.org/05ceyw104 Gifu Prefectural Gifu Kita Senior High School 岐阜県岐阜北高'), (79545, 'https://ror.org/05cf0ez61', 'en', 1, 'https://ror.org/05cf0ez61 Institute of Petroleum Studies Kampala'), (79546, 'https://ror.org/05cff1n73', 'es', 1, 'https://ror.org/05cff1n73 Escuela Superior Tecnológica de Artes Débora Arango'), (79547, 'https://ror.org/05cgahx56', 'en', 1, 'https://ror.org/05cgahx56 Colombian Army Military Academy "General José María Córdova" Escuela Militar de Cadetes General José María Córdova'), (79548, 'https://ror.org/05cgh0738', 'no_lang_code', 1, 'https://ror.org/05cgh0738 Biocensus (United Kingdom)'), (79549, 'https://ror.org/05ckan018', 'en', 1, 'https://ror.org/05ckan018 Gas Turbine Research Establishment'), (79550, 'https://ror.org/05ckxea07', 'no_lang_code', 1, 'https://ror.org/05ckxea07 Xi''an Airborne Electromagnetic Technology (China) 西安爱邦电磁技术有限责任公司'), (79551, 'https://ror.org/05cmw3824', 'fr', 1, 'https://ror.org/05cmw3824 Hôpital San Salvadour'), (79552, 'https://ror.org/05cpg6260', 'no_lang_code', 1, 'https://ror.org/05cpg6260 Roche (Lebanon)'), (79553, 'https://ror.org/05cpqsp49', 'en', 1, 'https://ror.org/05cpqsp49 Miami Transplant Institute'), (79554, 'https://ror.org/05cqp3018', 'en', 1, 'https://ror.org/05cqp3018 Hospital Besar Sengkang Sengkang General Hospital செங்காங் பொது மருத்துவமனை 盛港综合医院'), (79555, 'https://ror.org/05crg2f28', 'en', 1, 'https://ror.org/05crg2f28 Niigata Prefectural Library 新潟県立図書館'); INSERT INTO `rors` VALUES (79556, 'https://ror.org/05crx6z12', 'en', 1, 'https://ror.org/05crx6z12 National Public Health Organization Εθνικός Οργανισμός Δημόσιας Υγείας'), (79557, 'https://ror.org/05cs0pa90', 'no_lang_code', 1, 'https://ror.org/05cs0pa90 Alfred E. Tiefenbacher (Germany)'), (79558, 'https://ror.org/05csx4q88', 'no_lang_code', 1, 'https://ror.org/05csx4q88 Professional Analytical and Consulting Services (United States)'), (79559, 'https://ror.org/05ctcx759', 'no_lang_code', 1, 'https://ror.org/05ctcx759 Dong-A Pharmaceutical (South Korea)'), (79560, 'https://ror.org/05ctd7x03', 'en', 1, 'https://ror.org/05ctd7x03 Institut für Angewandte Ökosystemforschung Institute for Applied Ecosystem Research'), (79561, 'https://ror.org/05cteqc05', 'en', 1, 'https://ror.org/05cteqc05 Somali International University'), (79562, 'https://ror.org/05cx80085', 'no_lang_code', 1, 'https://ror.org/05cx80085 Plasmatreat (Germany)'), (79563, 'https://ror.org/05czpzc54', 'no_lang_code', 1, 'https://ror.org/05czpzc54 Recursion (United States)'), (79564, 'https://ror.org/05czqyh70', 'no_lang_code', 1, 'https://ror.org/05czqyh70 Electron (Ukraine) Електрон'), (79565, 'https://ror.org/05d09jf58', 'no_lang_code', 1, 'https://ror.org/05d09jf58 Fonar (United States)'), (79566, 'https://ror.org/05d0zs426', 'no_lang_code', 1, 'https://ror.org/05d0zs426 Proteostasis Therapeutics (United States)'), (79567, 'https://ror.org/05d1vf827', 'de', 1, 'https://ror.org/05d1vf827 Klinikum Passau'), (79568, 'https://ror.org/05d236h53', 'no_lang_code', 1, 'https://ror.org/05d236h53 KRONOS (United States)'), (79569, 'https://ror.org/05d2a8p70', 'en', 1, 'https://ror.org/05d2a8p70 Golden West College'), (79570, 'https://ror.org/05d3b2x32', 'no_lang_code', 1, 'https://ror.org/05d3b2x32 Gemerská Nerudná Spoločnosť (Slovakia)'), (79571, 'https://ror.org/05d3bn235', 'no_lang_code', 1, 'https://ror.org/05d3bn235 Theratechnologies (Canada)'), (79572, 'https://ror.org/05d5xcc98', 'no_lang_code', 1, 'https://ror.org/05d5xcc98 Hannoversche Informationstechnologien (Germany)'), (79573, 'https://ror.org/05d620q19', 'no_lang_code', 1, 'https://ror.org/05d620q19 Wave Up (Italy)'), (79574, 'https://ror.org/05d8r3q58', 'en', 1, 'https://ror.org/05d8r3q58 Foundation for Neglected Disease Research ನಿರ್ಲಕ್ಷ್ಯ ರೋಗ ರಿಸರ್ಚ್ ಫೌಂಡೇಶನ್'), (79575, 'https://ror.org/05d9dsr70', 'en', 1, 'https://ror.org/05d9dsr70 Impact'), (79576, 'https://ror.org/05dctta12', 'no_lang_code', 1, 'https://ror.org/05dctta12 Eurofarma (Brazil)'), (79577, 'https://ror.org/05ddbzg58', 'no_lang_code', 1, 'https://ror.org/05ddbzg58 Sarfez (United States)'), (79578, 'https://ror.org/05def2162', 'no_lang_code', 1, 'https://ror.org/05def2162 Ya-Man (Japan)'), (79579, 'https://ror.org/05df1km16', 'no_lang_code', 1, 'https://ror.org/05df1km16 Qynergy (United States)'), (79580, 'https://ror.org/05df8jb72', 'no_lang_code', 1, 'https://ror.org/05df8jb72 Atlas Antibodies (Sweden)'), (79581, 'https://ror.org/05dfdca35', 'no_lang_code', 1, 'https://ror.org/05dfdca35 Private Machines (United States)'), (79582, 'https://ror.org/05dfe8p27', 'en', 1, 'https://ror.org/05dfe8p27 Hangzhou Children''s Hospital 杭州市儿童医院'), (79583, 'https://ror.org/05dgqjt76', 'no_lang_code', 1, 'https://ror.org/05dgqjt76 Mitokinin (United States)'), (79584, 'https://ror.org/05dj22k02', 'en', 1, 'https://ror.org/05dj22k02 Lukenya University'), (79585, 'https://ror.org/05ds3hh45', 'no_lang_code', 1, 'https://ror.org/05ds3hh45 Gototags (United States)'), (79586, 'https://ror.org/05dtatp26', 'de', 1, 'https://ror.org/05dtatp26 Bundesverband Farbe Gestaltung Bautenschutz'), (79587, 'https://ror.org/05dte6685', 'en', 1, 'https://ror.org/05dte6685 Department of Biological Sciences Аддзяленне біялагічных навук'), (79588, 'https://ror.org/05dxjde67', 'en', 1, 'https://ror.org/05dxjde67 Memorial Medical Center Foundation'), (79589, 'https://ror.org/05dy5ab02', 'it', 1, 'https://ror.org/05dy5ab02 ASST Fatebenefratelli Sacco'), (79590, 'https://ror.org/05dy80606', 'no_lang_code', 1, 'https://ror.org/05dy80606 Zacros (Japan)'), (79591, 'https://ror.org/05dzdtp04', 'no_lang_code', 1, 'https://ror.org/05dzdtp04 Theragenics Corporation (United States)'), (79592, 'https://ror.org/05e0gpk62', 'no_lang_code', 1, 'https://ror.org/05e0gpk62 Hottinger Baldwin Messtechnik (United Kingdom)'), (79593, 'https://ror.org/05e1qh004', 'no_lang_code', 1, 'https://ror.org/05e1qh004 3V Sigma (Italy)'), (79594, 'https://ror.org/05e30np90', 'en', 1, 'https://ror.org/05e30np90 Institut für Gerontologische Forschung Institute for Gerontological Research'), (79595, 'https://ror.org/05e34z294', 'en', 1, 'https://ror.org/05e34z294 CTOR Press'), (79596, 'https://ror.org/05e423n96', 'no_lang_code', 1, 'https://ror.org/05e423n96 naviHealth (United States)'), (79597, 'https://ror.org/05e58kh79', 'en', 1, 'https://ror.org/05e58kh79 Nebraska Public Health Laboratory'), (79598, 'https://ror.org/05e5sxk45', 'no_lang_code', 1, 'https://ror.org/05e5sxk45 ESWE Transport Company (Germany) ESWE Verkehrsgesellschaft'), (79599, 'https://ror.org/05e6hyp29', 'no_lang_code', 1, 'https://ror.org/05e6hyp29 Linak (Denmark)'), (79600, 'https://ror.org/05e7mmt60', 'no_lang_code', 1, 'https://ror.org/05e7mmt60 Recludix Pharma (United States)'), (79601, 'https://ror.org/05e823q15', 'no_lang_code', 1, 'https://ror.org/05e823q15 Capsum (France)'), (79602, 'https://ror.org/05e89f902', 'no_lang_code', 1, 'https://ror.org/05e89f902 R3Logic (United States)'), (79603, 'https://ror.org/05e9vrw02', 'en', 1, 'https://ror.org/05e9vrw02 Caritas Cyprus'), (79604, 'https://ror.org/05eb58w69', 'en', 1, 'https://ror.org/05eb58w69 Ningxia Center for Diseases Prevention and Control 宁夏回族自治区疾病预防控制中心'), (79605, 'https://ror.org/05ed09684', 'de', 1, 'https://ror.org/05ed09684 Zentrallaboratorium Deutscher Apotheker'), (79606, 'https://ror.org/05edmmt93', 'de', 1, 'https://ror.org/05edmmt93 Bayerisches Staatsinstitut für Hochschulforschung und Hochschulplanung'), (79607, 'https://ror.org/05edt1q81', 'en', 1, 'https://ror.org/05edt1q81 Green Communities Canada'), (79608, 'https://ror.org/05edycz02', 'no_lang_code', 1, 'https://ror.org/05edycz02 Tec-Masters (United States)'), (79609, 'https://ror.org/05ee7tr34', 'en', 1, 'https://ror.org/05ee7tr34 Chillicothe VA Medical Center'), (79610, 'https://ror.org/05eexsd91', 'no_lang_code', 1, 'https://ror.org/05eexsd91 Volition (Belgium)'), (79611, 'https://ror.org/05efkgw62', 'no_lang_code', 1, 'https://ror.org/05efkgw62 Innoviva (United States)'), (79612, 'https://ror.org/05ek0ze18', 'en', 1, 'https://ror.org/05ek0ze18 Shanghai Institute of Computing Technology 上海市计算技术研究所'), (79613, 'https://ror.org/05ekw4q84', 'no_lang_code', 1, 'https://ror.org/05ekw4q84 Volition (Singapore)'), (79614, 'https://ror.org/05ekwg650', 'no_lang_code', 1, 'https://ror.org/05ekwg650 Rani Therapeutics (United States)'), (79615, 'https://ror.org/05ekwy955', 'de', 1, 'https://ror.org/05ekwy955 Betriebswirtschaftliches Institut für Empirische Gründungs- und Organisationsforschung'), (79616, 'https://ror.org/05eq3g745', 'no_lang_code', 1, 'https://ror.org/05eq3g745 Balaji Utthan Sansthan बालाजी उत्थान संस्थान'), (79617, 'https://ror.org/05eqhkk72', 'en', 1, 'https://ror.org/05eqhkk72 Deutscher Volkshochschul-Verband German Adult Education Association'), (79618, 'https://ror.org/05eqtsr60', 'no_lang_code', 1, 'https://ror.org/05eqtsr60 Energy Fuels (United States)'), (79619, 'https://ror.org/05err8h54', 'en', 1, 'https://ror.org/05err8h54 Musoon Women''s Clinic 木生婦產科診所'), (79620, 'https://ror.org/05ervg403', 'no_lang_code', 1, 'https://ror.org/05ervg403 Bardy Diagnostics (United States)'), (79621, 'https://ror.org/05ervsk64', 'en', 1, 'https://ror.org/05ervsk64 Supershine University'), (79622, 'https://ror.org/05etzat70', 'no_lang_code', 1, 'https://ror.org/05etzat70 AYR (United Kingdom)'), (79623, 'https://ror.org/05exhz950', 'no_lang_code', 1, 'https://ror.org/05exhz950 Akoya Biosciences (United States)'), (79624, 'https://ror.org/05f0snp31', 'no_lang_code', 1, 'https://ror.org/05f0snp31 Armscor (South Africa)'), (79625, 'https://ror.org/05f14j834', 'no_lang_code', 1, 'https://ror.org/05f14j834 R.M. Associates (United States)'), (79626, 'https://ror.org/05f1h4751', 'es', 1, 'https://ror.org/05f1h4751 Escuela Internacional de Negocios y Desarrollo Empresarial de Colombia'), (79627, 'https://ror.org/05f3ypk72', 'no_lang_code', 1, 'https://ror.org/05f3ypk72 Nyxoah (Belgium)'), (79628, 'https://ror.org/05f60e681', 'en', 1, 'https://ror.org/05f60e681 Society For Environment And Development पर्यावरण और विकास के लिए सोसायटी'), (79629, 'https://ror.org/05f7ceg04', 'en', 1, 'https://ror.org/05f7ceg04 Hamburg Commercial Bank'), (79630, 'https://ror.org/05f8zq626', 'no_lang_code', 1, 'https://ror.org/05f8zq626 Lumtec (Taiwan)'), (79631, 'https://ror.org/05fcgnx79', 'no_lang_code', 1, 'https://ror.org/05fcgnx79 Juul (United States)'), (79632, 'https://ror.org/05fdwfk56', 'no_lang_code', 1, 'https://ror.org/05fdwfk56 CK Hutchison (China) 長江和記實業有限公司'), (79633, 'https://ror.org/05fe0wm97', 'en', 1, 'https://ror.org/05fe0wm97 Rehabilitation College Shimane リハビリテーションカレッジ島根'), (79634, 'https://ror.org/05fe9d430', 'no_lang_code', 1, 'https://ror.org/05fe9d430 Z-Terra (United States)'), (79635, 'https://ror.org/05fenky51', 'no_lang_code', 1, 'https://ror.org/05fenky51 Interface (United Kingdom)'), (79636, 'https://ror.org/05fh0et33', 'es', 1, 'https://ror.org/05fh0et33 Tierra Verde Naturaleza y Cultura Tierra Verde Nature and Culture'), (79637, 'https://ror.org/05fj56d84', 'no_lang_code', 1, 'https://ror.org/05fj56d84 Lorem Vascular (Singapore)'), (79638, 'https://ror.org/05fj65g09', 'no_lang_code', 1, 'https://ror.org/05fj65g09 Incept (United States)'), (79639, 'https://ror.org/05fk5tr28', 'en', 1, 'https://ror.org/05fk5tr28 Federal Reserve'), (79640, 'https://ror.org/05fn2nj53', 'no_lang_code', 1, 'https://ror.org/05fn2nj53 Xilio Therapeutics (United States)'), (79641, 'https://ror.org/05fn4fm08', 'no_lang_code', 1, 'https://ror.org/05fn4fm08 Optitek (United States)'), (79642, 'https://ror.org/05fqc1f82', 'no_lang_code', 1, 'https://ror.org/05fqc1f82 Vyaire Medical (United States)'), (79643, 'https://ror.org/05frf1z87', 'de', 1, 'https://ror.org/05frf1z87 Katalyse Institut'), (79644, 'https://ror.org/05fttpt98', 'no_lang_code', 1, 'https://ror.org/05fttpt98 The Eppley Laboratory (United States)'), (79645, 'https://ror.org/05g5rgx31', 'no_lang_code', 1, 'https://ror.org/05g5rgx31 Itasca Consultants (United States)'), (79646, 'https://ror.org/05g5sdw63', 'no_lang_code', 1, 'https://ror.org/05g5sdw63 Institut für Molekularbiologie und Analytik (Germany)'), (79647, 'https://ror.org/05g8qng11', 'no_lang_code', 1, 'https://ror.org/05g8qng11 Implantica (Switzerland)'), (79648, 'https://ror.org/05g916f28', 'no_lang_code', 1, 'https://ror.org/05g916f28 Translational Sciences (United States)'), (79649, 'https://ror.org/05g920a69', 'en', 1, 'https://ror.org/05g920a69 Hachinohe Kodai2 High School 八戸工業大学第二高等学校'), (79650, 'https://ror.org/05gaccq28', 'no_lang_code', 1, 'https://ror.org/05gaccq28 Solar Roadways (United States)'), (79651, 'https://ror.org/05gcs8229', 'en', 1, 'https://ror.org/05gcs8229 Microstructure and Pores'), (79652, 'https://ror.org/05gde4s46', 'no_lang_code', 1, 'https://ror.org/05gde4s46 Stadtwerke Offenbach (Germany)'), (79653, 'https://ror.org/05gg5zh68', 'no_lang_code', 1, 'https://ror.org/05gg5zh68 LightTrans (Germany)'), (79654, 'https://ror.org/05gjrga14', 'no_lang_code', 1, 'https://ror.org/05gjrga14 SACHEM (United States)'), (79655, 'https://ror.org/05gkrwe68', 'no_lang_code', 1, 'https://ror.org/05gkrwe68 Iasis Molecular Sciences (United States)'), (79656, 'https://ror.org/05gpas306', 'en', 1, 'https://ror.org/05gpas306 Hangzhou Medical College 杭州医学院'), (79657, 'https://ror.org/05gre8525', 'no_lang_code', 1, 'https://ror.org/05gre8525 Solutia (Czechia)'), (79658, 'https://ror.org/05gttbr75', 'de', 1, 'https://ror.org/05gttbr75 Institut für Hochschulforschung'), (79659, 'https://ror.org/05gxqqz35', 'en', 1, 'https://ror.org/05gxqqz35 Freedom From Diabetes'), (79660, 'https://ror.org/05gz1cs28', 'en', 1, 'https://ror.org/05gz1cs28 The Talent Development Education Research Foundation 公益財団法人 才能開発教育研究財団'), (79661, 'https://ror.org/05h0yx811', 'no_lang_code', 1, 'https://ror.org/05h0yx811 Forte (United States)'), (79662, 'https://ror.org/05h2r8y34', 'no_lang_code', 1, 'https://ror.org/05h2r8y34 TCG Crest'), (79663, 'https://ror.org/05h4bm507', 'no_lang_code', 1, 'https://ror.org/05h4bm507 STgenetics (United States)'), (79664, 'https://ror.org/05h4tg110', 'en', 1, 'https://ror.org/05h4tg110 Providence St. Mary Medical Center'), (79665, 'https://ror.org/05h5vav12', 'no_lang_code', 1, 'https://ror.org/05h5vav12 Robust Analysis (United States)'), (79666, 'https://ror.org/05h86nk22', 'no_lang_code', 1, 'https://ror.org/05h86nk22 Zhejiang Medicine (China)'), (79667, 'https://ror.org/05h990w27', 'de', 1, 'https://ror.org/05h990w27 Forschungsinstitut Geragogik'), (79668, 'https://ror.org/05h9m3b45', 'no_lang_code', 1, 'https://ror.org/05h9m3b45 Roche (Turkey)'), (79669, 'https://ror.org/05hbjh330', 'no_lang_code', 1, 'https://ror.org/05hbjh330 Marui Galvanizing (Japan)'), (79670, 'https://ror.org/05hdbs804', 'en', 1, 'https://ror.org/05hdbs804 Australian National Fish Collection'), (79671, 'https://ror.org/05he2ce30', 'en', 1, 'https://ror.org/05he2ce30 Social Awareness Through Human Involvement'), (79672, 'https://ror.org/05hg5tz03', 'no_lang_code', 1, 'https://ror.org/05hg5tz03 PreCyte (United States)'), (79673, 'https://ror.org/05hhh4g76', 'en', 1, 'https://ror.org/05hhh4g76 The Crop Science Society of China 中国作物学会'), (79674, 'https://ror.org/05hj93b82', 'no_lang_code', 1, 'https://ror.org/05hj93b82 HOBAS (Germany)'), (79675, 'https://ror.org/05hjgq553', 'en', 1, 'https://ror.org/05hjgq553 Children’s Future International'), (79676, 'https://ror.org/05hkycn11', 'en', 1, 'https://ror.org/05hkycn11 Deutsche Meeresmuseum German Oceanographic Museum'), (79677, 'https://ror.org/05hmbdg55', 'no_lang_code', 1, 'https://ror.org/05hmbdg55 TerraMetrics (United States)'), (79678, 'https://ror.org/05hpj1j78', 'en', 1, 'https://ror.org/05hpj1j78 Egyptian Engineers Syndicate نقابة المهندسين المصرية'), (79679, 'https://ror.org/05hrpz398', 'no_lang_code', 1, 'https://ror.org/05hrpz398 Syntheon (United States)'), (79680, 'https://ror.org/05hv95t40', 'no_lang_code', 1, 'https://ror.org/05hv95t40 Tetra Research (United States)'), (79681, 'https://ror.org/05hwakx34', 'en', 1, 'https://ror.org/05hwakx34 Chongqing Academy of Agricultural Sciences 重庆市农业科学院'), (79682, 'https://ror.org/05j4aq945', 'en', 1, 'https://ror.org/05j4aq945 Peermade Development Society'), (79683, 'https://ror.org/05j4b8r17', 'pl', 1, 'https://ror.org/05j4b8r17 Wojewódzki Szpital Specjalistyczny Nr 2'), (79684, 'https://ror.org/05j4fc609', 'no_lang_code', 1, 'https://ror.org/05j4fc609 Anges (Japan)'), (79685, 'https://ror.org/05j5k1t23', 'en', 1, 'https://ror.org/05j5k1t23 Coleridge Initiative'), (79686, 'https://ror.org/05j855983', 'no_lang_code', 1, 'https://ror.org/05j855983 CEM (United States)'), (79687, 'https://ror.org/05j97vt75', 'no_lang_code', 1, 'https://ror.org/05j97vt75 Nimbis Services (United States)'), (79688, 'https://ror.org/05j9gp921', 'en', 1, 'https://ror.org/05j9gp921 China Science Center of International Eurasian Academy of Sciences 国际欧亚科学院中国科学中心'), (79689, 'https://ror.org/05ja07v76', 'no_lang_code', 1, 'https://ror.org/05ja07v76 Kinex Bearings (Slovakia)'), (79690, 'https://ror.org/05jckv214', 'no_lang_code', 1, 'https://ror.org/05jckv214 Spectra Group Limited (United States)'), (79691, 'https://ror.org/05jcvbb33', 'no_lang_code', 1, 'https://ror.org/05jcvbb33 Kuantum Papers (India)'), (79692, 'https://ror.org/05jg70019', 'no_lang_code', 1, 'https://ror.org/05jg70019 3D Systems (United Kingdom)'), (79693, 'https://ror.org/05jj4yb28', 'no_lang_code', 1, 'https://ror.org/05jj4yb28 Institut für Bauwerkserhaltung und Sanierung (Germany)'), (79694, 'https://ror.org/05jka5961', 'es', 1, 'https://ror.org/05jka5961 Instituto Tecnológico del Salmón Salmon Technology Institute'), (79695, 'https://ror.org/05jkqfy36', 'no_lang_code', 1, 'https://ror.org/05jkqfy36 Nevada Composites (United States)'), (79696, 'https://ror.org/05jkvk840', 'en', 1, 'https://ror.org/05jkvk840 London Internet Exchange'), (79697, 'https://ror.org/05jnx3123', 'no_lang_code', 1, 'https://ror.org/05jnx3123 Dipharma (Italy)'), (79698, 'https://ror.org/05jtgpc57', 'en', 1, 'https://ror.org/05jtgpc57 Joint Center for Artificial Photosynthesis'), (79699, 'https://ror.org/05jvx3v75', 'no_lang_code', 1, 'https://ror.org/05jvx3v75 Rebound (United States)'), (79700, 'https://ror.org/05jwyv945', 'no_lang_code', 1, 'https://ror.org/05jwyv945 Biocrine (Sweden)'), (79701, 'https://ror.org/05jxaw651', 'en', 1, 'https://ror.org/05jxaw651 Marine Ecology and Telemetry Research'), (79702, 'https://ror.org/05k0v5b40', 'no_lang_code', 1, 'https://ror.org/05k0v5b40 Nanzhong Zhangzhongjing Hospital 南阳张仲景医院'), (79703, 'https://ror.org/05k0x2619', 'en', 1, 'https://ror.org/05k0x2619 Max Planck-Bristol Centre for Minimal Biology'), (79704, 'https://ror.org/05k45wk36', 'en', 1, 'https://ror.org/05k45wk36 Azerbaijan Medical Association Azərbaycan Tibb Assosiasiyası'), (79705, 'https://ror.org/05k879m03', 'no_lang_code', 1, 'https://ror.org/05k879m03 Nurix (United States)'), (79706, 'https://ror.org/05kbysy14', 'no_lang_code', 1, 'https://ror.org/05kbysy14 Slovenské Elektrárne (Slovakia)'), (79707, 'https://ror.org/05kdvbv21', 'no_lang_code', 1, 'https://ror.org/05kdvbv21 Mimedx (United States)'), (79708, 'https://ror.org/05kg68171', 'no_lang_code', 1, 'https://ror.org/05kg68171 Vascor (United States)'), (79709, 'https://ror.org/05kg6bp11', 'en', 1, 'https://ror.org/05kg6bp11 Allen Institute for Cell Science'), (79710, 'https://ror.org/05kh76837', 'no_lang_code', 1, 'https://ror.org/05kh76837 Northern Gas Networks (United Kingdom)'), (79711, 'https://ror.org/05kjn8d41', 'en', 1, 'https://ror.org/05kjn8d41 The Fourth People''s Hospital of Ningxia Hui Autonomous Region 宁夏回族自治区第四人民医院'), (79712, 'https://ror.org/05kjsn706', 'sk', 1, 'https://ror.org/05kjsn706 Nemocnica Malacky'), (79713, 'https://ror.org/05kkb8h54', 'no_lang_code', 1, 'https://ror.org/05kkb8h54 Qusemde (United States)'), (79714, 'https://ror.org/05kmgyb17', 'no_lang_code', 1, 'https://ror.org/05kmgyb17 Active Fiber Systems (Germany)'), (79715, 'https://ror.org/05knvbx59', 'no_lang_code', 1, 'https://ror.org/05knvbx59 Nkmax (South Korea)'), (79716, 'https://ror.org/05kq1zz28', 'en', 1, 'https://ror.org/05kq1zz28 Ningxia Academy of Social Sciences 宁夏社会科学院'), (79717, 'https://ror.org/05kq83y33', 'no_lang_code', 1, 'https://ror.org/05kq83y33 Aequor (United States)'), (79718, 'https://ror.org/05ks2fq79', 'en', 1, 'https://ror.org/05ks2fq79 Federal Reserve Bank of Dallas'), (79719, 'https://ror.org/05kvda021', 'no_lang_code', 1, 'https://ror.org/05kvda021 PV Crystalox Solar (Germany)'), (79720, 'https://ror.org/05kwyy930', 'en', 1, 'https://ror.org/05kwyy930 The Hong Kong Council of Social Service 香港社會服務聯會'), (79721, 'https://ror.org/05kyjqm05', 'no_lang_code', 1, 'https://ror.org/05kyjqm05 Cardio Flow (United States)'), (79722, 'https://ror.org/05m1hk967', 'no_lang_code', 1, 'https://ror.org/05m1hk967 Optical Air Data Systems (United States)'), (79723, 'https://ror.org/05m43xv28', 'no_lang_code', 1, 'https://ror.org/05m43xv28 Halkey-Roberts (United States)'), (79724, 'https://ror.org/05m6hq950', 'no_lang_code', 1, 'https://ror.org/05m6hq950 Atrion Medical (United States)'), (79725, 'https://ror.org/05m7fas76', 'en', 1, 'https://ror.org/05m7fas76 The First People''s Hospital of Xiaoshan District, Hangzhou 杭州市萧山区第一人民医院'), (79726, 'https://ror.org/05m87nk97', 'de', 1, 'https://ror.org/05m87nk97 Stiftung Sozialpädagogisches Institut'), (79727, 'https://ror.org/05m9rb257', 'no_lang_code', 1, 'https://ror.org/05m9rb257 GEWOS (Germany)'), (79728, 'https://ror.org/05magwg24', 'id', 1, 'https://ror.org/05magwg24 Simetri Foundation Yayasan Simetri'), (79729, 'https://ror.org/05mby3840', 'no_lang_code', 1, 'https://ror.org/05mby3840 Technetix (United Kingdom)'), (79730, 'https://ror.org/05mg74j30', 'it', 1, 'https://ror.org/05mg74j30 Fondazione Piemontese per la Ricerca sul Cancro Onlus'), (79731, 'https://ror.org/05mh1nj06', 'es', 1, 'https://ror.org/05mh1nj06 Hospital de Emergencias Jose Casimiro Ulloa'), (79732, 'https://ror.org/05mj78g51', 'no_lang_code', 1, 'https://ror.org/05mj78g51 Institut für Markt- und Werbeforschung (Germany)'), (79733, 'https://ror.org/05mjt9j72', 'no_lang_code', 1, 'https://ror.org/05mjt9j72 RDMChem (United States)'), (79734, 'https://ror.org/05mk27574', 'no_lang_code', 1, 'https://ror.org/05mk27574 Adimab (United States)'), (79735, 'https://ror.org/05mkjwz44', 'no_lang_code', 1, 'https://ror.org/05mkjwz44 Windmill (United States)'), (79736, 'https://ror.org/05mkmy494', 'no_lang_code', 1, 'https://ror.org/05mkmy494 Pansophia'), (79737, 'https://ror.org/05mks4240', 'en', 1, 'https://ror.org/05mks4240 Institute of Forest Ecology, Environment and Protection 中国林业科学研究院森林生态环境与保护研究所'), (79738, 'https://ror.org/05mm3em25', 'no_lang_code', 1, 'https://ror.org/05mm3em25 Kunshan SW laser Technology (China)'), (79739, 'https://ror.org/05mm6v485', 'no_lang_code', 1, 'https://ror.org/05mm6v485 Silicon Micro Display (United States)'), (79740, 'https://ror.org/05mmb8j87', 'de', 1, 'https://ror.org/05mmb8j87 Gollwitzer-Meier-Klinik'), (79741, 'https://ror.org/05mmfy776', 'no_lang_code', 1, 'https://ror.org/05mmfy776 Tokushima Municipal Hospital 徳島市民病院'), (79742, 'https://ror.org/05mp6hg50', 'en', 1, 'https://ror.org/05mp6hg50 Jinan Infectious Disease Hospital 济南市传染病医院'), (79743, 'https://ror.org/05mp6sd67', 'no_lang_code', 1, 'https://ror.org/05mp6sd67 Aap Implantate (Germany)'), (79744, 'https://ror.org/05mskc574', 'en', 1, 'https://ror.org/05mskc574 Ankara Hacı Bayram Veli University Ankara Hacı Bayram Veli Üniversitesi'), (79745, 'https://ror.org/05mtdc048', 'no_lang_code', 1, 'https://ror.org/05mtdc048 Zata Pharmaceuticals (United States)'), (79746, 'https://ror.org/05mxfdw94', 'no_lang_code', 1, 'https://ror.org/05mxfdw94 DHI (Slovakia)'), (79747, 'https://ror.org/05mz52w65', 'no_lang_code', 1, 'https://ror.org/05mz52w65 Ethris (Germany)'), (79748, 'https://ror.org/05n0dm186', 'en', 1, 'https://ror.org/05n0dm186 Jack C. Montgomery VA Medical Center'), (79749, 'https://ror.org/05n0xah55', 'de', 1, 'https://ror.org/05n0xah55 Ev. Diakonissenkrankenhaus Leipzig'), (79750, 'https://ror.org/05n3kfc14', 'de', 1, 'https://ror.org/05n3kfc14 Zentrum Digitalisierung.Bayern'), (79751, 'https://ror.org/05n44hh60', 'no_lang_code', 1, 'https://ror.org/05n44hh60 Vetter (Germany) Vetter Pharma-Fertigung'), (79752, 'https://ror.org/05n4bbw51', 'en', 1, 'https://ror.org/05n4bbw51 National Highway Institute'), (79753, 'https://ror.org/05n4swm55', 'en', 1, 'https://ror.org/05n4swm55 Research Center for Humanities and Social Sciences, Academia Sinica 中央研究院人文社會科學研究中心'), (79754, 'https://ror.org/05n5mmr26', 'en', 1, 'https://ror.org/05n5mmr26 National Institute for Occupational Health and Poison Control 中国疾病预防控制中心职业卫生与中毒控制所'), (79755, 'https://ror.org/05n682z45', 'no_lang_code', 1, 'https://ror.org/05n682z45 Krishi Vigyan Kendra, Karda कृषी विज्ञान केंद्र , करडा'), (79756, 'https://ror.org/05n6np283', 'no_lang_code', 1, 'https://ror.org/05n6np283 Gesellschaft für Konsumforschung GfK (Germany)'), (79757, 'https://ror.org/05n85jt88', 'no_lang_code', 1, 'https://ror.org/05n85jt88 OrthoSensor (United States)'), (79758, 'https://ror.org/05n8wtj80', 'no_lang_code', 1, 'https://ror.org/05n8wtj80 Mapi Pharma (Israel)'), (79759, 'https://ror.org/05n9nsw73', 'no_lang_code', 1, 'https://ror.org/05n9nsw73 Helixmith (South Korea)'), (79760, 'https://ror.org/05n9p4847', 'no_lang_code', 1, 'https://ror.org/05n9p4847 SK Capital (United States)'), (79761, 'https://ror.org/05nbh3n52', 'no_lang_code', 1, 'https://ror.org/05nbh3n52 Teachley (United States)'), (79762, 'https://ror.org/05ncq9g28', 'no_lang_code', 1, 'https://ror.org/05ncq9g28 Altair Engineering (United Kingdom)'), (79763, 'https://ror.org/05ncx5x80', 'no_lang_code', 1, 'https://ror.org/05ncx5x80 PurpleSun (United States)'), (79764, 'https://ror.org/05nd09v89', 'no_lang_code', 1, 'https://ror.org/05nd09v89 ON Semiconductor (Slovakia)'), (79765, 'https://ror.org/05nf1fg74', 'no_lang_code', 1, 'https://ror.org/05nf1fg74 Phyto-Technologies (United States)'), (79766, 'https://ror.org/05nfvzf52', 'no_lang_code', 1, 'https://ror.org/05nfvzf52 Isuzu Advanced Engineering Center (Japan) いすゞ中央研究所'), (79767, 'https://ror.org/05nj3e153', 'no_lang_code', 1, 'https://ror.org/05nj3e153 Spirax Sarco (United Kingdom)'), (79768, 'https://ror.org/05nkvqx24', 'no_lang_code', 1, 'https://ror.org/05nkvqx24 Industrie Borla (Italy)'), (79769, 'https://ror.org/05nnz8429', 'no_lang_code', 1, 'https://ror.org/05nnz8429 Health & Life (Taiwan) 合世生醫科技股份有限公司'), (79770, 'https://ror.org/05npkqq45', 'de', 1, 'https://ror.org/05npkqq45 Bundesverband Museumspädagogik'), (79771, 'https://ror.org/05nq4je29', 'en', 1, 'https://ror.org/05nq4je29 British Athletics'), (79772, 'https://ror.org/05nsj1513', 'no_lang_code', 1, 'https://ror.org/05nsj1513 Polyhedron Learning Media (United States)'), (79773, 'https://ror.org/05nt5a548', 'no_lang_code', 1, 'https://ror.org/05nt5a548 Q-Cells (Germany)'), (79774, 'https://ror.org/05nv8db86', 'no_lang_code', 1, 'https://ror.org/05nv8db86 RxFunction (United States)'), (79775, 'https://ror.org/05nzfv767', 'no_lang_code', 1, 'https://ror.org/05nzfv767 Entangly (Sweden)'), (79776, 'https://ror.org/05p0nrm77', 'no_lang_code', 1, 'https://ror.org/05p0nrm77 Shindengen Electric Manufacturing (Japan) 新電元工業株式会社'), (79777, 'https://ror.org/05p1n6x86', 'en', 1, 'https://ror.org/05p1n6x86 MRC London Institute of Medical Sciences'), (79778, 'https://ror.org/05p26dc09', 'no_lang_code', 1, 'https://ror.org/05p26dc09 Emery Oleochemicals (Malaysia)'), (79779, 'https://ror.org/05p3fde54', 'en', 1, 'https://ror.org/05p3fde54 Australian Tree Seed Centre'), (79780, 'https://ror.org/05p3mxk21', 'en', 1, 'https://ror.org/05p3mxk21 Associação Portuguesa para a Diversidade da Videira Portuguese Association for the Conservation of Grapevine Diversity'), (79781, 'https://ror.org/05p5xsx92', 'en', 1, 'https://ror.org/05p5xsx92 Federal Reserve Bank of San Francisco'), (79782, 'https://ror.org/05p6jx952', 'en', 1, 'https://ror.org/05p6jx952 Kishokai Medical Corporation 医療法人 葵鐘会'), (79783, 'https://ror.org/05p82s544', 'en', 1, 'https://ror.org/05p82s544 Cemmap'), (79784, 'https://ror.org/05p9k0244', 'en', 1, 'https://ror.org/05p9k0244 Instytut Północny im. W. Kętrzyńskiego The Wojciech Kętrzyński Northern Institute'), (79785, 'https://ror.org/05pb19q07', 'en', 1, 'https://ror.org/05pb19q07 Institut für Internationale Stadtforschung Institute for International Urban Research'), (79786, 'https://ror.org/05pek2z35', 'no_lang_code', 1, 'https://ror.org/05pek2z35 Providence Medical Technology (United States)'), (79787, 'https://ror.org/05pf9gd31', 'no_lang_code', 1, 'https://ror.org/05pf9gd31 Valtris Specialty Chemicals (United States)'), (79788, 'https://ror.org/05pjhgh49', 'en', 1, 'https://ror.org/05pjhgh49 Centre for Research and Development'), (79789, 'https://ror.org/05pjrm134', 'no_lang_code', 1, 'https://ror.org/05pjrm134 Supratek Pharma (Canada)'), (79790, 'https://ror.org/05pnwae81', 'no_lang_code', 1, 'https://ror.org/05pnwae81 Lorentz Solution (United States)'), (79791, 'https://ror.org/05pqsb912', 'no_lang_code', 1, 'https://ror.org/05pqsb912 SoftServe (United States)'), (79792, 'https://ror.org/05pqvqq46', 'en', 1, 'https://ror.org/05pqvqq46 Centre for Health and Social Justice'), (79793, 'https://ror.org/05pre1r47', 'no_lang_code', 1, 'https://ror.org/05pre1r47 Metacept (United States)'), (79794, 'https://ror.org/05ps0t235', 'no_lang_code', 1, 'https://ror.org/05ps0t235 NanoVector (United States)'), (79795, 'https://ror.org/05psp9534', 'en', 1, 'https://ror.org/05psp9534 Hangzhou Cancer Hospital 杭州市肿瘤医院'), (79796, 'https://ror.org/05psz3234', 'no_lang_code', 1, 'https://ror.org/05psz3234 Bridge Pharma (United States)'), (79797, 'https://ror.org/05ptp9d64', 'en', 1, 'https://ror.org/05ptp9d64 Fraunhofer Institute for Energy Economics and Energy System Technology Fraunhofer-Institut für Energiewirtschaft und Energiesystemtechnik'), (79798, 'https://ror.org/05pwzcb81', 'en', 1, 'https://ror.org/05pwzcb81 Qingdao Women and Children''s Hospital 青岛市妇女儿童医院'), (79799, 'https://ror.org/05pzdnj43', 'en', 1, 'https://ror.org/05pzdnj43 Jiangsu Provincial Family Planning Institute of Science and Technology 江苏省计划生育科学技术研究所'), (79800, 'https://ror.org/05pzr2r67', 'no_lang_code', 1, 'https://ror.org/05pzr2r67 Zoetis (Belgium)'), (79801, 'https://ror.org/05q3h1130', 'no_lang_code', 1, 'https://ror.org/05q3h1130 TIB Molbiol (Germany)'), (79802, 'https://ror.org/05q4jz828', 'en', 1, 'https://ror.org/05q4jz828 National Zoological Gardens of South Africa'), (79803, 'https://ror.org/05q5cdt12', 'en', 1, 'https://ror.org/05q5cdt12 Ministry of Law and Justice विधि और न्याय मंत्रालय'), (79804, 'https://ror.org/05q5gzy49', 'en', 1, 'https://ror.org/05q5gzy49 Institute of New Technology of Forestry'), (79805, 'https://ror.org/05q74qt68', 'en', 1, 'https://ror.org/05q74qt68 Hong Kong College of Health Service Executives 香港卫生学院行政人员'), (79806, 'https://ror.org/05q8a8a56', 'en', 1, 'https://ror.org/05q8a8a56 Hospice Palliative Care Alliance of China Foundation'), (79807, 'https://ror.org/05q9ymz20', 'en', 1, 'https://ror.org/05q9ymz20 Xiang Yang No.1 People''s Hospital 襄阳市第一人民医院'), (79808, 'https://ror.org/05qaj2541', 'no_lang_code', 1, 'https://ror.org/05qaj2541 Senior Flexonics (Germany)'), (79809, 'https://ror.org/05qakzx30', 'no_lang_code', 1, 'https://ror.org/05qakzx30 IMDS (United States)'), (79810, 'https://ror.org/05qavgd28', 'no_lang_code', 1, 'https://ror.org/05qavgd28 Philotek (United States)'), (79811, 'https://ror.org/05qbj3p45', 'en', 1, 'https://ror.org/05qbj3p45 Royal Museums Greenwich'), (79812, 'https://ror.org/05qczpc79', 'no_lang_code', 1, 'https://ror.org/05qczpc79 Vocalid (United States)'), (79813, 'https://ror.org/05qd10157', 'no_lang_code', 1, 'https://ror.org/05qd10157 Simplify Medical (United States)'), (79814, 'https://ror.org/05qg1tz58', 'en', 1, 'https://ror.org/05qg1tz58 Federal Reserve Bank of Atlanta'), (79815, 'https://ror.org/05qg4my54', 'no_lang_code', 1, 'https://ror.org/05qg4my54 Henkel (United Kingdom)'), (79816, 'https://ror.org/05qgcra83', 'en', 1, 'https://ror.org/05qgcra83 NIST Center for Neutron Research'), (79817, 'https://ror.org/05qhjh740', 'en', 1, 'https://ror.org/05qhjh740 Asociación Fundación de Investigación Microbiomas Microbiomas Foundation'), (79818, 'https://ror.org/05qk04938', 'no_lang_code', 1, 'https://ror.org/05qk04938 Lutronic (South Korea)'), (79819, 'https://ror.org/05qnccv96', 'en', 1, 'https://ror.org/05qnccv96 British Dental Association'), (79820, 'https://ror.org/05qp1qg36', 'en', 1, 'https://ror.org/05qp1qg36 Center for Sustainable Future Technologies'), (79821, 'https://ror.org/05qqw9p49', 'en', 1, 'https://ror.org/05qqw9p49 Academia Nacional de Ciencias National Academy of Sciences'), (79822, 'https://ror.org/05qrpwx06', 'en', 1, 'https://ror.org/05qrpwx06 Tropical Agricultural Machinery Research Institute 农业机械研究所'), (79823, 'https://ror.org/05qvjtg77', 'no_lang_code', 1, 'https://ror.org/05qvjtg77 Chemi (Italy)'), (79824, 'https://ror.org/05qxbj292', 'no_lang_code', 1, 'https://ror.org/05qxbj292 PsiKick (United States)'), (79825, 'https://ror.org/05qxpts92', 'no_lang_code', 1, 'https://ror.org/05qxpts92 Tex Tech Industries (United States)'), (79826, 'https://ror.org/05qyca855', 'en', 1, 'https://ror.org/05qyca855 Centre of Technology & Entrepreneurship Development'), (79827, 'https://ror.org/05qz7n275', 'en', 1, 'https://ror.org/05qz7n275 Dazhou Central Hospital 达州市中心医院'), (79828, 'https://ror.org/05qzqkd67', 'no_lang_code', 1, 'https://ror.org/05qzqkd67 Harro Höfliger (Germany)'), (79829, 'https://ror.org/05r01jn71', 'no_lang_code', 1, 'https://ror.org/05r01jn71 HoMedics (United States)'), (79830, 'https://ror.org/05r0r4s05', 'no_lang_code', 1, 'https://ror.org/05r0r4s05 Glo (Sweden)'), (79831, 'https://ror.org/05r0xrd27', 'en', 1, 'https://ror.org/05r0xrd27 Center for Nanotechnology Innovation Centro per l''Innovazione delle Nanotecnologie'), (79832, 'https://ror.org/05r183591', 'en', 1, 'https://ror.org/05r183591 Institute of Linguistics, Academia Sinica 中央研究院語言學研究所'), (79833, 'https://ror.org/05r36sv91', 'es', 1, 'https://ror.org/05r36sv91 Weber'), (79834, 'https://ror.org/05r4c6c72', 'en', 1, 'https://ror.org/05r4c6c72 Hague Institute of Private International and Foreign Law Stichting Internationaal Juridisch Instituut'), (79835, 'https://ror.org/05r52vr82', 'no_lang_code', 1, 'https://ror.org/05r52vr82 CACI International (United Kingdom)'), (79836, 'https://ror.org/05r6qy592', 'en', 1, 'https://ror.org/05r6qy592 Islamic Azad University Ilam Branch دانشگاه آزاد اسلامی واحد ایلام'), (79837, 'https://ror.org/05r892e85', 'no_lang_code', 1, 'https://ror.org/05r892e85 r2b Energy Consulting (Germany)'), (79838, 'https://ror.org/05r8wgv86', 'en', 1, 'https://ror.org/05r8wgv86 Empower Tanzania'), (79839, 'https://ror.org/05rc2ds55', 'no_lang_code', 1, 'https://ror.org/05rc2ds55 OtoScience Labs (United States)'), (79840, 'https://ror.org/05rdn4880', 'no_lang_code', 1, 'https://ror.org/05rdn4880 Lamberti (Italy)'), (79841, 'https://ror.org/05re5gc10', 'en', 1, 'https://ror.org/05re5gc10 ISBAT University'), (79842, 'https://ror.org/05rfsjn97', 'pt', 1, 'https://ror.org/05rfsjn97 Unidade Hospitalar de Bragança'), (79843, 'https://ror.org/05rg1zz45', 'de', 1, 'https://ror.org/05rg1zz45 Institut für Wildbiologie Göttingen und Dresden'), (79844, 'https://ror.org/05rgcq579', 'no_lang_code', 1, 'https://ror.org/05rgcq579 Derwen (United States)'), (79845, 'https://ror.org/05rjxhq89', 'no_lang_code', 1, 'https://ror.org/05rjxhq89 Erregierre (Italy)'), (79846, 'https://ror.org/05rm2kt05', 'en', 1, 'https://ror.org/05rm2kt05 Slovak Technical Museum Slovenské Technické Múzeum'), (79847, 'https://ror.org/05rnb7025', 'en', 1, 'https://ror.org/05rnb7025 North Carolina Natural Heritage Program'), (79848, 'https://ror.org/05rnzt975', 'de', 1, 'https://ror.org/05rnzt975 Landwirtschaftliches Technologiezentrum Augustenberg'), (79849, 'https://ror.org/05rqzv890', 'no_lang_code', 1, 'https://ror.org/05rqzv890 Kobo Products (United States)'), (79850, 'https://ror.org/05rvyrg53', 'en', 1, 'https://ror.org/05rvyrg53 Zhanjiang Experimental Station 湛江实验站'), (79851, 'https://ror.org/05rwdv390', 'de', 1, 'https://ror.org/05rwdv390 München Klinik Neuperlach'), (79852, 'https://ror.org/05rxe5g18', 'en', 1, 'https://ror.org/05rxe5g18 Hokkaido Chitose College of Rehabilitation 北海道千歳リハビリテーション大学'), (79853, 'https://ror.org/05rzgnh09', 'no_lang_code', 1, 'https://ror.org/05rzgnh09 Mycomed (United States)'), (79854, 'https://ror.org/05s1rbd84', 'en', 1, 'https://ror.org/05s1rbd84 Hong Kong Trade Development Council 香港貿易發展局'), (79855, 'https://ror.org/05s1yqk76', 'es', 1, 'https://ror.org/05s1yqk76 El Colegio de Veracruz The College of Veracruz'), (79856, 'https://ror.org/05s21y527', 'en', 1, 'https://ror.org/05s21y527 Sierra Leone Urban Research Centre'), (79857, 'https://ror.org/05s31q962', 'no_lang_code', 1, 'https://ror.org/05s31q962 West German Broadcasting Cologne Westdeutscher Rundfunk'), (79858, 'https://ror.org/05s4ahv53', 'no_lang_code', 1, 'https://ror.org/05s4ahv53 Optodot (United States)'), (79859, 'https://ror.org/05s4v9y95', 'en', 1, 'https://ror.org/05s4v9y95 InterPore'), (79860, 'https://ror.org/05s7heg81', 'de', 1, 'https://ror.org/05s7heg81 Institut für das Bauen mit Kunststoffen'), (79861, 'https://ror.org/05s928n76', 'de', 1, 'https://ror.org/05s928n76 Bach Archiv Leipzig'), (79862, 'https://ror.org/05s9c0w76', 'no_lang_code', 1, 'https://ror.org/05s9c0w76 Semikron (United Kingdom)'), (79863, 'https://ror.org/05s9qth02', 'en', 1, 'https://ror.org/05s9qth02 Australian Centre for Heart Health'), (79864, 'https://ror.org/05satps27', 'no_lang_code', 1, 'https://ror.org/05satps27 Modular Bionics (United States)'), (79865, 'https://ror.org/05sb89p83', 'en', 1, 'https://ror.org/05sb89p83 Greater Manchester Mental Health NHS Foundation Trust'), (79866, 'https://ror.org/05sbyq382', 'no_lang_code', 1, 'https://ror.org/05sbyq382 China Petrochemical Development Corporation (Taiwan) 中國石油化學工業開發股份有限公司'), (79867, 'https://ror.org/05sc11068', 'en', 1, 'https://ror.org/05sc11068 Research Institute of Subtropical Foresty 中国林业科学研究院亚热带林业研究所'), (79868, 'https://ror.org/05sd90862', 'en', 1, 'https://ror.org/05sd90862 Centre for Evaluation in Education and Science'), (79869, 'https://ror.org/05sffjq44', 'en', 1, 'https://ror.org/05sffjq44 Veterinary And Animal Husbandry Services'), (79870, 'https://ror.org/05sfhjs05', 'en', 1, 'https://ror.org/05sfhjs05 British Neuroscience Association'), (79871, 'https://ror.org/05sgwkz06', 'en', 1, 'https://ror.org/05sgwkz06 Tepatitlán''s Institute for Theoretical Studies'), (79872, 'https://ror.org/05shbkc58', 'pt', 1, 'https://ror.org/05shbkc58 Unifunec - Centro Universitário de Santa Fé do Sul'), (79873, 'https://ror.org/05sjgdh57', 'en', 1, 'https://ror.org/05sjgdh57 Nigeria Centre for Disease Control'), (79874, 'https://ror.org/05smgv327', 'no_lang_code', 1, 'https://ror.org/05smgv327 SURAGUS (Germany)'), (79875, 'https://ror.org/05sp89c28', 'en', 1, 'https://ror.org/05sp89c28 University Transportation Center for Alabama'), (79876, 'https://ror.org/05spgjn72', 'de', 1, 'https://ror.org/05spgjn72 Deutsche Vereinigung für Verbrennungsforschung'), (79877, 'https://ror.org/05sxtdc16', 'en', 1, 'https://ror.org/05sxtdc16 George H. O''Brien, Jr. VA Medical Center'), (79878, 'https://ror.org/05sxwnt46', 'en', 1, 'https://ror.org/05sxwnt46 American Institute for Behavioral Research and Technology'), (79879, 'https://ror.org/05sz2c652', 'no_lang_code', 1, 'https://ror.org/05sz2c652 Spineart (Switzerland)'), (79880, 'https://ror.org/05sz2c943', 'en', 1, 'https://ror.org/05sz2c943 Chiba Environment Foundation 千葉県環境財団'), (79881, 'https://ror.org/05sz4dt57', 'en', 1, 'https://ror.org/05sz4dt57 Aberdeen Science Centre'), (79882, 'https://ror.org/05szwcv45', 'en', 1, 'https://ror.org/05szwcv45 Hunan Provincial Maternal and Child Health Hospital 湖南省妇幼保健院'), (79883, 'https://ror.org/05t0bve94', 'no_lang_code', 1, 'https://ror.org/05t0bve94 Geuder (Germany)'), (79884, 'https://ror.org/05t1cnz26', 'no_lang_code', 1, 'https://ror.org/05t1cnz26 Optimal Solutions (United States)'), (79885, 'https://ror.org/05t1nj016', 'no_lang_code', 1, 'https://ror.org/05t1nj016 Institute of Nutrition and Pathology (Japan) 栄養病理研究所'), (79886, 'https://ror.org/05t1wae93', 'en', 1, 'https://ror.org/05t1wae93 Puyang Vocational and Technical College 濮阳职业技术学院'), (79887, 'https://ror.org/05t20pg33', 'en', 1, 'https://ror.org/05t20pg33 Institute for Natural Resources in Africa'), (79888, 'https://ror.org/05t45gr77', 'en', 1, 'https://ror.org/05t45gr77 Wuhan Center for Disease Control and Prevention 武汉市疾病预防控制中心'), (79889, 'https://ror.org/05t5yjz39', 'no_lang_code', 1, 'https://ror.org/05t5yjz39 Slovenské Magnezitové Závody (Slovakia)'), (79890, 'https://ror.org/05t826259', 'en', 1, 'https://ror.org/05t826259 Institute for Systems Studies & Analyses'), (79891, 'https://ror.org/05t99je22', 'fr', 1, 'https://ror.org/05t99je22 Unitaid'), (79892, 'https://ror.org/05ta2ab47', 'en', 1, 'https://ror.org/05ta2ab47 Sci Paper Edit'), (79893, 'https://ror.org/05tbc9841', 'en', 1, 'https://ror.org/05tbc9841 Cluster of Excellence "Matters of Activity. Image Space Material"'), (79894, 'https://ror.org/05tdgz517', 'no_lang_code', 1, 'https://ror.org/05tdgz517 Voci (United States)'), (79895, 'https://ror.org/05tfnan22', 'en', 1, 'https://ror.org/05tfnan22 Gansu Provincial Center for Disease Control and Prevention 甘肃省疾病预防控制中心'), (79896, 'https://ror.org/05tgamw04', 'en', 1, 'https://ror.org/05tgamw04 S.P.E.C.I.E.S.'), (79897, 'https://ror.org/05tgbdb80', 'en', 1, 'https://ror.org/05tgbdb80 American Trucking Associations'), (79898, 'https://ror.org/05tk43a11', 'no_lang_code', 1, 'https://ror.org/05tk43a11 Helix Biomedix (United States)'), (79899, 'https://ror.org/05tp04d37', 'no_lang_code', 1, 'https://ror.org/05tp04d37 Gavekal Intelligence Software (France)'), (79900, 'https://ror.org/05tq5rp50', 'no_lang_code', 1, 'https://ror.org/05tq5rp50 Focus (Germany)'), (79901, 'https://ror.org/05ttj6w10', 'en', 1, 'https://ror.org/05ttj6w10 Nishinari Labor Welfare Center 財団法人西成労働福祉センター'), (79902, 'https://ror.org/05tvnhf16', 'no_lang_code', 1, 'https://ror.org/05tvnhf16 Anthogyr (France)'), (79903, 'https://ror.org/05tzg1b68', 'no_lang_code', 1, 'https://ror.org/05tzg1b68 Cyclerion (United States)'), (79904, 'https://ror.org/05v0zt272', 'en', 1, 'https://ror.org/05v0zt272 Al-Saeeda University جامعة السعيدة'), (79905, 'https://ror.org/05v2jtd22', 'no_lang_code', 1, 'https://ror.org/05v2jtd22 SuperSonic Imagine (France)'), (79906, 'https://ror.org/05v2ry936', 'no_lang_code', 1, 'https://ror.org/05v2ry936 EEW Energy from Waste'), (79907, 'https://ror.org/05v2shy89', 'no_lang_code', 1, 'https://ror.org/05v2shy89 San-Ei Gen F.F.I (Japan)'), (79908, 'https://ror.org/05v3hkt95', 'en', 1, 'https://ror.org/05v3hkt95 Indian Institute of Management Visakhapatnam भारतीय प्रबंधन संस्थान, विशाखपट्नम'), (79909, 'https://ror.org/05v5qdf34', 'fr', 1, 'https://ror.org/05v5qdf34 Groupe de Recherche en Écologie Arctique'), (79910, 'https://ror.org/05v6s8y05', 'en', 1, 'https://ror.org/05v6s8y05 Peconic Bay Medical Center'), (79911, 'https://ror.org/05v7bvm48', 'no_lang_code', 1, 'https://ror.org/05v7bvm48 Arthrosurface (United States)'), (79912, 'https://ror.org/05v7khc27', 'no_lang_code', 1, 'https://ror.org/05v7khc27 Disco (Germany)'), (79913, 'https://ror.org/05v8nsf47', 'no_lang_code', 1, 'https://ror.org/05v8nsf47 Deutsches Dialog Institut (Germany)'), (79914, 'https://ror.org/05v9a1255', 'no_lang_code', 1, 'https://ror.org/05v9a1255 SyncScience (United States)'), (79915, 'https://ror.org/05v9ym429', 'no_lang_code', 1, 'https://ror.org/05v9ym429 Roche (Norway)'), (79916, 'https://ror.org/05vad5q49', 'en', 1, 'https://ror.org/05vad5q49 Milli Aviasiya Akademiyası National Aviation Academy Национальная академия авиации Азербайджана'), (79917, 'https://ror.org/05vba0x81', 'no_lang_code', 1, 'https://ror.org/05vba0x81 Omitron (United States)'), (79918, 'https://ror.org/05vcg4030', 'no_lang_code', 1, 'https://ror.org/05vcg4030 Stereotaxis (United States)'), (79919, 'https://ror.org/05vcgwf09', 'no_lang_code', 1, 'https://ror.org/05vcgwf09 SUSS MicroTec (Germany)'), (79920, 'https://ror.org/05vcz8m66', 'no_lang_code', 1, 'https://ror.org/05vcz8m66 PredictionProbe (United States)'), (79921, 'https://ror.org/05vddc675', 'no_lang_code', 1, 'https://ror.org/05vddc675 Shared Medical Technology (United States)'), (79922, 'https://ror.org/05vebts22', 'no_lang_code', 1, 'https://ror.org/05vebts22 Hyprotek (United States)'), (79923, 'https://ror.org/05vexvt14', 'en', 1, 'https://ror.org/05vexvt14 Koforidua Technical University'), (79924, 'https://ror.org/05vhgbn50', 'no_lang_code', 1, 'https://ror.org/05vhgbn50 Vidrio (United States)'), (79925, 'https://ror.org/05vjgy768', 'no_lang_code', 1, 'https://ror.org/05vjgy768 Atos (United Kingdom)'), (79926, 'https://ror.org/05vk7ky45', 'no_lang_code', 1, 'https://ror.org/05vk7ky45 Steca Elektronik (Germany)'), (79927, 'https://ror.org/05vm6r550', 'en', 1, 'https://ror.org/05vm6r550 Indian Institute of Soybean Research भारतीय सोयाबीन अनुसंधान संस्थान'), (79928, 'https://ror.org/05vnfvq50', 'no_lang_code', 1, 'https://ror.org/05vnfvq50 DM3D Technology (United States)'), (79929, 'https://ror.org/05vs7jg22', 'en', 1, 'https://ror.org/05vs7jg22 World Health Organization - Slovakia'), (79930, 'https://ror.org/05vt21141', 'no_lang_code', 1, 'https://ror.org/05vt21141 Institut für Technische und Angewandte Physik (Germany)'), (79931, 'https://ror.org/05vtc2x84', 'en', 1, 'https://ror.org/05vtc2x84 Henan Provincial Institute of Cultural Heritage and Archaeology 河南省文物考古研究所'), (79932, 'https://ror.org/05vvt7a66', 'en', 1, 'https://ror.org/05vvt7a66 Health Protection Research Unit in Emerging and Zoonotic Infections at University of Liverpool'), (79933, 'https://ror.org/05vxb7888', 'no_lang_code', 1, 'https://ror.org/05vxb7888 Schell Games (United States)'), (79934, 'https://ror.org/05vxfdm89', 'no_lang_code', 1, 'https://ror.org/05vxfdm89 Atom Computing (United States)'), (79935, 'https://ror.org/05vyqs083', 'no_lang_code', 1, 'https://ror.org/05vyqs083 Eisenhuth (Germany)'), (79936, 'https://ror.org/05w0whz56', 'no_lang_code', 1, 'https://ror.org/05w0whz56 Adey (United Kingdom)'), (79937, 'https://ror.org/05w2yhn64', 'en', 1, 'https://ror.org/05w2yhn64 Farmers Education Association Kashiwa Gakuen Agricultural Nutrition College 鯉淵学園農業栄養専門学校'), (79938, 'https://ror.org/05w3aay26', 'en', 1, 'https://ror.org/05w3aay26 Centre Emys Emys Center'), (79939, 'https://ror.org/05w4tdf58', 'no_lang_code', 1, 'https://ror.org/05w4tdf58 Ocean Bay (United States)'), (79940, 'https://ror.org/05w9jj607', 'no_lang_code', 1, 'https://ror.org/05w9jj607 ZeoSys Medical (Germany)'), (79941, 'https://ror.org/05w9sm057', 'en', 1, 'https://ror.org/05w9sm057 Advocates Coalition for Development and Environment'), (79942, 'https://ror.org/05wd41k10', 'no_lang_code', 1, 'https://ror.org/05wd41k10 Altergon (Italy)'), (79943, 'https://ror.org/05wd66v55', 'no_lang_code', 1, 'https://ror.org/05wd66v55 Sanofi (Mexico)'), (79944, 'https://ror.org/05wfwcv97', 'no_lang_code', 1, 'https://ror.org/05wfwcv97 Oakpont (Australia)'), (79945, 'https://ror.org/05wg4vz65', 'no_lang_code', 1, 'https://ror.org/05wg4vz65 Phoenix Mecano (Switzerland)'), (79946, 'https://ror.org/05wg75z42', 'en', 1, 'https://ror.org/05wg75z42 Children’s Hospital of Fudan University Xiamen Branch 厦门市儿童医院简介'), (79947, 'https://ror.org/05wh29r58', 'no_lang_code', 1, 'https://ror.org/05wh29r58 Persyst (United States)'), (79948, 'https://ror.org/05whjqq05', 'en', 1, 'https://ror.org/05whjqq05 National Institute for Radiological Protection 中国疾病预防控制中心辐射防护与核安全医学所'), (79949, 'https://ror.org/05wmdnq05', 'no_lang_code', 1, 'https://ror.org/05wmdnq05 Ovid Therapeutics (United States)'), (79950, 'https://ror.org/05wmmkw18', 'no_lang_code', 1, 'https://ror.org/05wmmkw18 Schleifring (Germany)'), (79951, 'https://ror.org/05wpf8f91', 'no_lang_code', 1, 'https://ror.org/05wpf8f91 Integra LifeSciences (Switzerland)'), (79952, 'https://ror.org/05wr0v850', 'no_lang_code', 1, 'https://ror.org/05wr0v850 Deutsche Amphibolin-Werke (Germany)'), (79953, 'https://ror.org/05wsetc54', 'en', 1, 'https://ror.org/05wsetc54 Institute of Structural and Molecular Biology'), (79954, 'https://ror.org/05wv5ps25', 'en', 1, 'https://ror.org/05wv5ps25 Noah''s Path'), (79955, 'https://ror.org/05wvw5722', 'es', 1, 'https://ror.org/05wvw5722 Asociación Colombiana de Gastroenterología Colombian Association of Gastroenterology'), (79956, 'https://ror.org/05wxywg93', 'en', 1, 'https://ror.org/05wxywg93 Leibniz Institute for Financial Research SAFE, Sustainable Architecture for Finance in Europe Leibniz-Institut für Finanzmarktforschung'), (79957, 'https://ror.org/05wy2w269', 'no_lang_code', 1, 'https://ror.org/05wy2w269 HighFinesse (Germany)'), (79958, 'https://ror.org/05x27ng08', 'no_lang_code', 1, 'https://ror.org/05x27ng08 Tsurugi Hospital 公立つるぎ病院'), (79959, 'https://ror.org/05x3e5221', 'no_lang_code', 1, 'https://ror.org/05x3e5221 Synaptics (United Kingdom)'), (79960, 'https://ror.org/05x4e6955', 'no_lang_code', 1, 'https://ror.org/05x4e6955 CarGurus (United States)'), (79961, 'https://ror.org/05x4we538', 'no_lang_code', 1, 'https://ror.org/05x4we538 Valepro (United States)'), (79962, 'https://ror.org/05x4z7p76', 'fr', 1, 'https://ror.org/05x4z7p76 Conservatoire Botanique National Méditerranéen de Porquerolles National Mediterranean Botanical Conservatory of Porquerolles'), (79963, 'https://ror.org/05x8b4491', 'en', 1, 'https://ror.org/05x8b4491 DKFZ-ZMBH Alliance'), (79964, 'https://ror.org/05xdrcw34', 'no_lang_code', 1, 'https://ror.org/05xdrcw34 Regend Therapeutics (China)'), (79965, 'https://ror.org/05xeefy56', 'no_lang_code', 1, 'https://ror.org/05xeefy56 Preferred Networks (Japan)'), (79966, 'https://ror.org/05xfzy080', 'no_lang_code', 1, 'https://ror.org/05xfzy080 Propper Manufacturing (United States)'), (79967, 'https://ror.org/05xg01v02', 'no_lang_code', 1, 'https://ror.org/05xg01v02 New Amsterdam Sciences (United States)'), (79968, 'https://ror.org/05xj42126', 'no_lang_code', 1, 'https://ror.org/05xj42126 FujiFilm VisualSonics (Canada)'), (79969, 'https://ror.org/05xjgsf03', 'no_lang_code', 1, 'https://ror.org/05xjgsf03 Qrono (United States)'), (79970, 'https://ror.org/05xjjbz05', 'no_lang_code', 1, 'https://ror.org/05xjjbz05 Deutsche Telekom (Slovakia)'), (79971, 'https://ror.org/05xjtjs92', 'de', 1, 'https://ror.org/05xjtjs92 Museumsverbund Nordfriesland'); INSERT INTO `rors` VALUES (79972, 'https://ror.org/05xk3sx84', 'no_lang_code', 1, 'https://ror.org/05xk3sx84 Neutrogena (United States)'), (79973, 'https://ror.org/05xkjsd30', 'no_lang_code', 1, 'https://ror.org/05xkjsd30 Nadogaya Hospital 名戸ヶ谷病院'), (79974, 'https://ror.org/05xkqnm68', 'en', 1, 'https://ror.org/05xkqnm68 Centre of Biomedical Research जैव चिकित्सा अनुसंधान के केंद्र'), (79975, 'https://ror.org/05xp03991', 'no_lang_code', 1, 'https://ror.org/05xp03991 Robotic Technology (United States)'), (79976, 'https://ror.org/05xv2zk35', 'en', 1, 'https://ror.org/05xv2zk35 Policy Research Center for Environment and Economy'), (79977, 'https://ror.org/05xybd718', 'no_lang_code', 1, 'https://ror.org/05xybd718 Sutro Biopharma (United States)'), (79978, 'https://ror.org/05xzt2h26', 'no_lang_code', 1, 'https://ror.org/05xzt2h26 Venus Medtech (China)'), (79979, 'https://ror.org/05xzypt50', 'en', 1, 'https://ror.org/05xzypt50 IDMRC Institut Engineering Design of Mechatronik System und MPLM'), (79980, 'https://ror.org/05y07gt41', 'no_lang_code', 1, 'https://ror.org/05y07gt41 NxGEN Electronics (United States)'), (79981, 'https://ror.org/05y33n643', 'no_lang_code', 1, 'https://ror.org/05y33n643 PICO Technologies (United States)'), (79982, 'https://ror.org/05y5sz883', 'no_lang_code', 1, 'https://ror.org/05y5sz883 Sequoia (United States)'), (79983, 'https://ror.org/05y6s9s64', 'en', 1, 'https://ror.org/05y6s9s64 Berghof Foundation'), (79984, 'https://ror.org/05y77as28', 'no_lang_code', 1, 'https://ror.org/05y77as28 University Medical Pharmaceuticals (United States)'), (79985, 'https://ror.org/05yanja12', 'de', 1, 'https://ror.org/05yanja12 Institut für Wohnungswesen Immobilienwirtschaft Stadt- und Regionalentwicklung'), (79986, 'https://ror.org/05yawba35', 'en', 1, 'https://ror.org/05yawba35 Secretariat of Housing and Urban Development Secretaría de Desarrollo Urbano y Vivienda'), (79987, 'https://ror.org/05yawdh16', 'no_lang_code', 1, 'https://ror.org/05yawdh16 Stein Seal (United States)'), (79988, 'https://ror.org/05ybgx820', 'no_lang_code', 1, 'https://ror.org/05ybgx820 Shanghai Science and Technical Publishers (China) 上海科学技术出版社'), (79989, 'https://ror.org/05yc9cc15', 'en', 1, 'https://ror.org/05yc9cc15 Hainan Earthquake Administration 海南省地震局'), (79990, 'https://ror.org/05ycrqt76', 'de', 1, 'https://ror.org/05ycrqt76 Institut für angewandte Forschung im Bauwesen'), (79991, 'https://ror.org/05ydhxb54', 'no_lang_code', 1, 'https://ror.org/05ydhxb54 Sustainable Business Institute (Germany)'), (79992, 'https://ror.org/05yey6m86', 'no_lang_code', 1, 'https://ror.org/05yey6m86 Europa Service Autovermietung (Germany)'), (79993, 'https://ror.org/05yf3p710', 'en', 1, 'https://ror.org/05yf3p710 Egyptian Society of Laboratory Medicine الجمعية المصرية للطب المعملى'), (79994, 'https://ror.org/05ygbx057', 'no_lang_code', 1, 'https://ror.org/05ygbx057 Renmatix (United States)'), (79995, 'https://ror.org/05ykc8r61', 'no_lang_code', 1, 'https://ror.org/05ykc8r61 DocBox (United States)'), (79996, 'https://ror.org/05ymeqj18', 'en', 1, 'https://ror.org/05ymeqj18 IfG.Research - The Institute for eGovernment'), (79997, 'https://ror.org/05ympq522', 'fr', 1, 'https://ror.org/05ympq522 Ministère de l''Agriculture et de l''Èquipement Rural Senegal Ministry of Agriculture'), (79998, 'https://ror.org/05ymsje86', 'no_lang_code', 1, 'https://ror.org/05ymsje86 Zeta Economics (United Kingdom)'), (79999, 'https://ror.org/05ynxbz16', 'no_lang_code', 1, 'https://ror.org/05ynxbz16 Stadtwerke Dinslaken (Germany)'), (80000, 'https://ror.org/05ypszq83', 'es', 1, 'https://ror.org/05ypszq83 Fundación IRAUy'), (80001, 'https://ror.org/0000c1w11', 'en', 1, 'https://ror.org/0000c1w11 Kivach Nature Reserve Кивач заповедник'), (80002, 'https://ror.org/0003en535', 'no_lang_code', 1, 'https://ror.org/0003en535 Quark Pharmaceuticals (United States)'), (80003, 'https://ror.org/0003xeg87', 'en', 1, 'https://ror.org/0003xeg87 James Martin Center for Nonproliferation Studies'), (80004, 'https://ror.org/000628g58', 'no_lang_code', 1, 'https://ror.org/000628g58 Tata Sons (India)'), (80005, 'https://ror.org/0006s4z66', 'en', 1, 'https://ror.org/0006s4z66 Bureau of Justice Statistics'), (80006, 'https://ror.org/000889019', 'en', 1, 'https://ror.org/000889019 Institute of Nephrology of the National Academy of Medical Sciences of Ukraine Інститут нефрології НАМН України'), (80007, 'https://ror.org/00088z429', 'en', 1, 'https://ror.org/00088z429 Kobe Pharmaceutical University 神戸薬科大学'), (80008, 'https://ror.org/0008nva35', 'en', 1, 'https://ror.org/0008nva35 The Urology Center of Colorado'), (80009, 'https://ror.org/0009b0k06', 'fr', 1, 'https://ror.org/0009b0k06 Clinique des Cèdres'), (80010, 'https://ror.org/000b3v524', 'en', 1, 'https://ror.org/000b3v524 Southeastern Fruit and Tree Nut Research Laboratory'), (80011, 'https://ror.org/000bp7q73', 'en', 1, 'https://ror.org/000bp7q73 Open Targets'), (80012, 'https://ror.org/000ccd270', 'no_lang_code', 1, 'https://ror.org/000ccd270 Scoular (United States)'), (80013, 'https://ror.org/000gm9x69', 'en', 1, 'https://ror.org/000gm9x69 National Institute of Technology, Hakodate College 函館工業高等専門学校'), (80014, 'https://ror.org/000hftw80', 'no_lang_code', 1, 'https://ror.org/000hftw80 Nuclera (United Kingdom)'), (80015, 'https://ror.org/000j6sc87', 'en', 1, 'https://ror.org/000j6sc87 Innovation Center of NanoMedicine 公益財団法人川崎市産業振興財団'), (80016, 'https://ror.org/000jqa749', 'en', 1, 'https://ror.org/000jqa749 The Ocean Cleanup'), (80017, 'https://ror.org/000mza046', 'en', 1, 'https://ror.org/000mza046 European Incoherent Scatter Scientific Association'), (80018, 'https://ror.org/000neg726', 'en', 1, 'https://ror.org/000neg726 Gillies McIndoe Research Institute'), (80019, 'https://ror.org/000pb1q18', 'en', 1, 'https://ror.org/000pb1q18 International Theravada Buddhist Missionary University'), (80020, 'https://ror.org/000pmrk50', 'en', 1, 'https://ror.org/000pmrk50 Islamic University of Indonesia Universitas Islam Indonesia'), (80021, 'https://ror.org/000q75d75', 'en', 1, 'https://ror.org/000q75d75 JA長野厚生連長野松代総合病院 Nagano Matsushiro General Hospital'), (80022, 'https://ror.org/000r0q932', 'en', 1, 'https://ror.org/000r0q932 Ministry of Health'), (80023, 'https://ror.org/000s30768', 'no_lang_code', 1, 'https://ror.org/000s30768 Dr. Friedrich Eberth Arzneimittel (Germany)'), (80024, 'https://ror.org/000vekr11', 'en', 1, 'https://ror.org/000vekr11 GW4'), (80025, 'https://ror.org/000w7cv19', 'no_lang_code', 1, 'https://ror.org/000w7cv19 TOTO株式会社 Toto (Japan)'), (80026, 'https://ror.org/000x3c608', 'no_lang_code', 1, 'https://ror.org/000x3c608 Bruce Power (Canada)'), (80027, 'https://ror.org/000xaj256', 'en', 1, 'https://ror.org/000xaj256 Yukon Department of Tourism and Culture'), (80028, 'https://ror.org/000znbq58', 'no_lang_code', 1, 'https://ror.org/000znbq58 OncoTherapy Science (Japan) オンコセラピー・サイエンス株式会社'), (80029, 'https://ror.org/00105n552', 'en', 1, 'https://ror.org/00105n552 Noda Institute for Scientific Research 公益財団法人野田産業科学研究所'), (80030, 'https://ror.org/0010d1q40', 'no_lang_code', 1, 'https://ror.org/0010d1q40 Grand Équipement National de Calcul Intensif (France)'), (80031, 'https://ror.org/0010qfz59', 'pt', 1, 'https://ror.org/0010qfz59 Fundo de Defesa da Citricultura'), (80032, 'https://ror.org/0014a0n68', 'en', 1, 'https://ror.org/0014a0n68 Affiliated Hospital of Southwest Medical University 西南医科大学附属中医医院'), (80033, 'https://ror.org/00156kt95', 'en', 1, 'https://ror.org/00156kt95 Australian General Practice Accreditation Limited'), (80034, 'https://ror.org/001641630', 'no_lang_code', 1, 'https://ror.org/001641630 Thames Water (United Kingdom)'), (80035, 'https://ror.org/00178zy73', 'no_lang_code', 1, 'https://ror.org/00178zy73 JA愛知厚生連江南厚生病院 Konan Kosei Hospital'), (80036, 'https://ror.org/0018wmh19', 'no_lang_code', 1, 'https://ror.org/0018wmh19 Molecular Devices'), (80037, 'https://ror.org/0019cam27', 'en', 1, 'https://ror.org/0019cam27 U SPORTS'), (80038, 'https://ror.org/0019k3g62', 'en', 1, 'https://ror.org/0019k3g62 Eastern Regional Medical Center'), (80039, 'https://ror.org/001bx3s75', 'no_lang_code', 1, 'https://ror.org/001bx3s75 Ulvac-Phi (Japan) アルバック・ファイ株式会社'), (80040, 'https://ror.org/001h2r504', 'no_lang_code', 1, 'https://ror.org/001h2r504 GoodAI (Czechia)'), (80041, 'https://ror.org/001h41c24', 'no_lang_code', 1, 'https://ror.org/001h41c24 Data Tecnica International (United States)'), (80042, 'https://ror.org/001h8tm56', 'en', 1, 'https://ror.org/001h8tm56 Canadian Academic Accounting Association'), (80043, 'https://ror.org/001m9j981', 'no_lang_code', 1, 'https://ror.org/001m9j981 IriSys (United States)'), (80044, 'https://ror.org/001ms2r47', 'no_lang_code', 1, 'https://ror.org/001ms2r47 Five Prime Therapeutics (United States)'), (80045, 'https://ror.org/001pj0680', 'en', 1, 'https://ror.org/001pj0680 Kuban State University of Physical Education, Sport and Tourism Кубанский государственный университет физической культуры, спорта и туризма'), (80046, 'https://ror.org/001q4kn48', 'en', 1, 'https://ror.org/001q4kn48 University of Hassan II Casablanca Université hassan ii de casablanca جامعة الحسن الثاني'), (80047, 'https://ror.org/001qb9t53', 'no_lang_code', 1, 'https://ror.org/001qb9t53 Jinergy (China) 金能清洁能源科技有限公司'), (80048, 'https://ror.org/001qxy049', 'no_lang_code', 1, 'https://ror.org/001qxy049 Haaretz Group (Israel)'), (80049, 'https://ror.org/001swhm52', 'en', 1, 'https://ror.org/001swhm52 Shimon Peres Negev Nuclear Research Center קריה למחקר גרעיני – נגב ע"ש שמעון פרס'), (80050, 'https://ror.org/001t02e86', 'en', 1, 'https://ror.org/001t02e86 Fondation universitaire Universitaire Stichting University Foundation'), (80051, 'https://ror.org/001t9rv66', 'en', 1, 'https://ror.org/001t9rv66 Biblijski Institut The Biblical Institute'), (80052, 'https://ror.org/001tw8739', 'en', 1, 'https://ror.org/001tw8739 Association des bibliothèques de recherche du canada Canadian Association of Research Libraries'), (80053, 'https://ror.org/001vw6n49', 'no_lang_code', 1, 'https://ror.org/001vw6n49 Planta'), (80054, 'https://ror.org/001w50q34', 'de', 1, 'https://ror.org/001w50q34 Barmherzige Schwestern Krankenhaus Wien'), (80055, 'https://ror.org/001xkv632', 'en', 1, 'https://ror.org/001xkv632 Southern Cross University'), (80056, 'https://ror.org/001xs0312', 'en', 1, 'https://ror.org/001xs0312 Indian Institute of Management Udaipur भारतीय प्रबंधन संस्थान उदयपुर'), (80057, 'https://ror.org/0020pnp42', 'en', 1, 'https://ror.org/0020pnp42 Center of Plant Systems Biology and Biotechnology'), (80058, 'https://ror.org/0021gtp06', 'ro', 1, 'https://ror.org/0021gtp06 Institutul de Urgenţă pentru Boli Cardiovasculare "Prof.Dr. C.C. Iliescu"'), (80059, 'https://ror.org/00230yh09', 'en', 1, 'https://ror.org/00230yh09 Worldwise Travellers Health & Vaccination Centres'), (80060, 'https://ror.org/0026pjn75', 'en', 1, 'https://ror.org/0026pjn75 Amosov National Institute of Cardiovascular Surgery'), (80061, 'https://ror.org/0028etb62', 'en', 1, 'https://ror.org/0028etb62 Calar Alto Observatory'), (80062, 'https://ror.org/0028hwj42', 'en', 1, 'https://ror.org/0028hwj42 St. Petersburg Research Center of the Russian Academy of Sciences Санкт-Петербургский научный центр РАН'), (80063, 'https://ror.org/00293y771', 'en', 1, 'https://ror.org/00293y771 Sendai National College of Technology 仙台高等専門学校'), (80064, 'https://ror.org/0029f8q94', 'en', 1, 'https://ror.org/0029f8q94 Keyano College'), (80065, 'https://ror.org/002bpyg81', 'en', 1, 'https://ror.org/002bpyg81 Ark Medical Center'), (80066, 'https://ror.org/002cfy541', 'en', 1, 'https://ror.org/002cfy541 Japan Diabetes Foundation 日本糖尿病財団'), (80067, 'https://ror.org/002dxp647', 'no_lang_code', 1, 'https://ror.org/002dxp647 Bell Resources (Australia)'), (80068, 'https://ror.org/002e7ss22', 'en', 1, 'https://ror.org/002e7ss22 Lower Saxony State Agency for Water Management, Coastal Protection and Nature Conservation Niedersächsischer Landesbetrieb für Wasserwirtschaft, Küsten- und Naturschutz'), (80069, 'https://ror.org/002egtp29', 'en', 1, 'https://ror.org/002egtp29 Arctic Research Centre'), (80070, 'https://ror.org/002fj3m33', 'en', 1, 'https://ror.org/002fj3m33 Tokyo Zoological Park Society 公益財団法人東京動物園協会'), (80071, 'https://ror.org/002g4nt27', 'en', 1, 'https://ror.org/002g4nt27 British Heart Foundation Centre for Cardiovascular Science'), (80072, 'https://ror.org/002gr9f09', 'pt', 1, 'https://ror.org/002gr9f09 Instituto Agronômico de Pernambuco'), (80073, 'https://ror.org/002hq8b42', 'en', 1, 'https://ror.org/002hq8b42 Universidad de Ciencias y Artes de América Latina University of Sciences and Arts of Latin America'), (80074, 'https://ror.org/002jmzw69', 'no_lang_code', 1, 'https://ror.org/002jmzw69 Oxford Nanoimaging (United Kingdom)'), (80075, 'https://ror.org/002kdx757', 'no_lang_code', 1, 'https://ror.org/002kdx757 4C Air (United States)'), (80076, 'https://ror.org/002mmyt85', 'en', 1, 'https://ror.org/002mmyt85 Genomics Research Center, Academia Sinica 中央研究院基因體研究中心'), (80077, 'https://ror.org/002nf6z37', 'en', 1, 'https://ror.org/002nf6z37 Columbus State University'), (80078, 'https://ror.org/002pvtp37', 'en', 1, 'https://ror.org/002pvtp37 Bulgarian Institute of Metrology Български институт по метрология'), (80079, 'https://ror.org/002r67t24', 'en', 1, 'https://ror.org/002r67t24 Manukau Institute of Technology'), (80080, 'https://ror.org/002rc4w13', 'en', 1, 'https://ror.org/002rc4w13 Islamia University of Bahawalpur اسلامیہ یونیورسٹی بہاولپور'), (80081, 'https://ror.org/002s65j03', 'no_lang_code', 1, 'https://ror.org/002s65j03 Ulrich Medical (Germany)'), (80082, 'https://ror.org/002scw660', 'no_lang_code', 1, 'https://ror.org/002scw660 Casio (Japan) カシオ計算機株式会社'), (80083, 'https://ror.org/002tgme16', 'en', 1, 'https://ror.org/002tgme16 Canadians Living with HIV Conseil Canadien de Surveillance et d''Accès aux Traitements'), (80084, 'https://ror.org/002trms45', 'en', 1, 'https://ror.org/002trms45 Hydrocephalus Association'), (80085, 'https://ror.org/002v3hs06', 'en', 1, 'https://ror.org/002v3hs06 Ipar Perspective'), (80086, 'https://ror.org/002v4hw29', 'en', 1, 'https://ror.org/002v4hw29 Sikhote-Alin Nature Reserve Сихотэ-Алинский заповедник'), (80087, 'https://ror.org/002vpkf64', 'fr', 1, 'https://ror.org/002vpkf64 Société des historiens médiévistes de l''enseignement supérieur public'), (80088, 'https://ror.org/002vr4d22', 'en', 1, 'https://ror.org/002vr4d22 Centro Internacional de la Papa International Potato Center'), (80089, 'https://ror.org/002wfgr58', 'en', 1, 'https://ror.org/002wfgr58 Seoul Metropolitan Government'), (80090, 'https://ror.org/002x06r10', 'no_lang_code', 1, 'https://ror.org/002x06r10 Agios Pharmaceuticals (United States)'), (80091, 'https://ror.org/002x1sg85', 'es', 1, 'https://ror.org/002x1sg85 Instituto de Investigación Hospital 12 de Octubre, Research Institute Hospital 12 de Octubre'), (80092, 'https://ror.org/002x6f380', 'en', 1, 'https://ror.org/002x6f380 Guizhou Education University 贵州师范学院'), (80093, 'https://ror.org/002xnks13', 'en', 1, 'https://ror.org/002xnks13 Institute for Agriculture and Trade Policy'), (80094, 'https://ror.org/002y4pe44', 'en', 1, 'https://ror.org/002y4pe44 East Siberia State University of Technology and Management Федеральное государственное бюджетное образовательное учреждение высшего профессионального образования Восточно-Сибирский государственный университет технологий и управления'), (80095, 'https://ror.org/002ygss10', 'en', 1, 'https://ror.org/002ygss10 Utica College'), (80096, 'https://ror.org/00306v942', 'no_lang_code', 1, 'https://ror.org/00306v942 Sivantos (Germany)'), (80097, 'https://ror.org/00314zp94', 'en', 1, 'https://ror.org/00314zp94 Canadian Rheumatology Association Société Canadienne Rheumatologie'), (80098, 'https://ror.org/0031f9587', 'en', 1, 'https://ror.org/0031f9587 European Society of Biomechanics'), (80099, 'https://ror.org/0031sqt67', 'de', 1, 'https://ror.org/0031sqt67 Schmerzmedizin Berlin'), (80100, 'https://ror.org/0032n4537', 'en', 1, 'https://ror.org/0032n4537 Institute of Pharmacology and Toxicology of the National Academy of Medical Sciences of Ukraine Інститут фармакології та токсикології НАМН України'), (80101, 'https://ror.org/0033y0972', 'en', 1, 'https://ror.org/0033y0972 Fairview Lakes Medical Center'), (80102, 'https://ror.org/0034mdn74', 'en', 1, 'https://ror.org/0034mdn74 Adigrat University አዲግራት ዩኒቨርሲቲ'), (80103, 'https://ror.org/003659f07', 'en', 1, 'https://ror.org/003659f07 Aksum University'), (80104, 'https://ror.org/0037zb552', 'en', 1, 'https://ror.org/0037zb552 Madras Institute of Orthopaedics and Traumatology'), (80105, 'https://ror.org/003br8b23', 'no_lang_code', 1, 'https://ror.org/003br8b23 Akebia Therapeutics (United States)'), (80106, 'https://ror.org/003cbyt26', 'en', 1, 'https://ror.org/003cbyt26 Gansu Academy of Sciences 甘肃省科学院'), (80107, 'https://ror.org/003dprh65', 'en', 1, 'https://ror.org/003dprh65 Black Hills Special Services Cooperative'), (80108, 'https://ror.org/003eaqr04', 'en', 1, 'https://ror.org/003eaqr04 Technological University of the Mixteca Universidad Tecnológica de la Mixteca'), (80109, 'https://ror.org/003edc064', 'en', 1, 'https://ror.org/003edc064 CorVita Science Foundation'), (80110, 'https://ror.org/003f21n80', 'en', 1, 'https://ror.org/003f21n80 Institute of Geosciences'), (80111, 'https://ror.org/003jt2t26', 'fr', 1, 'https://ror.org/003jt2t26 Centre Archéologique de la Grotte Scladina Scladina'), (80112, 'https://ror.org/003jtew32', 'en', 1, 'https://ror.org/003jtew32 Japan Hospital Association 一般社団法人日本病院会'), (80113, 'https://ror.org/003kqe171', 'en', 1, 'https://ror.org/003kqe171 Dominion University College'), (80114, 'https://ror.org/003md6g43', 'no_lang_code', 1, 'https://ror.org/003md6g43 CYBO (Japan)'), (80115, 'https://ror.org/003ngne20', 'en', 1, 'https://ror.org/003ngne20 Ochsner Health System'), (80116, 'https://ror.org/003pa2681', 'en', 1, 'https://ror.org/003pa2681 Endocrinology Research Center Научно-исследовательский центр Институт эндокринологии'), (80117, 'https://ror.org/003py2t79', 'en', 1, 'https://ror.org/003py2t79 Indian Academy of Pediatrics'), (80118, 'https://ror.org/003pzts41', 'en', 1, 'https://ror.org/003pzts41 Turkish Society of Hematology Türk Hematoloji Derneği'), (80119, 'https://ror.org/003q4as88', 'en', 1, 'https://ror.org/003q4as88 Kibale Chimpanzee Project'), (80120, 'https://ror.org/003sgap07', 'en', 1, 'https://ror.org/003sgap07 Canadian Institute for International Peace and Security Centre d''études sur la paix et la sécurité internationale'), (80121, 'https://ror.org/003v97827', 'en', 1, 'https://ror.org/003v97827 Karst Waters Institute'), (80122, 'https://ror.org/003x6t567', 'no_lang_code', 1, 'https://ror.org/003x6t567 Tango Therapeutics (United States)'), (80123, 'https://ror.org/003xj6z62', 'es', 1, 'https://ror.org/003xj6z62 Escuela Nacional de Sanidad National School of Public Health'), (80124, 'https://ror.org/003y2cj37', 'no_lang_code', 1, 'https://ror.org/003y2cj37 Q Chem (United States)'), (80125, 'https://ror.org/003z0hw02', 'es', 1, 'https://ror.org/003z0hw02 Instituto Tecnológico de la Producción Technological Institute of Production'), (80126, 'https://ror.org/003z23p70', 'en', 1, 'https://ror.org/003z23p70 Research Institute for Brain and Blood Vessels Akita 地方独立行政法人秋田県立病院機構秋田県立脳血管研究センター'), (80127, 'https://ror.org/0042cyg15', 'no_lang_code', 1, 'https://ror.org/0042cyg15 Oiles (japan) オイレス工業株式会社'), (80128, 'https://ror.org/00453a208', 'en', 1, 'https://ror.org/00453a208 City University of New York Universidad de la Ciudad de Nueva York Université de la Ville de New York'), (80129, 'https://ror.org/0045e2c31', 'en', 1, 'https://ror.org/0045e2c31 National Hospital Organization Kochi National Hospital 独立行政法人国立病院機構高知病院'), (80130, 'https://ror.org/0047bvr32', 'en', 1, 'https://ror.org/0047bvr32 National Security Agency'), (80131, 'https://ror.org/004a5x173', 'en', 1, 'https://ror.org/004a5x173 King County Department of Natural Resources and Parks'), (80132, 'https://ror.org/004cn7092', 'no_lang_code', 1, 'https://ror.org/004cn7092 NTT (United States)'), (80133, 'https://ror.org/004edqb24', 'en', 1, 'https://ror.org/004edqb24 Health and Wellbeing Queensland'), (80134, 'https://ror.org/004ehfq11', 'en', 1, 'https://ror.org/004ehfq11 Basir Eye Health Research Center'), (80135, 'https://ror.org/004gg6s72', 'en', 1, 'https://ror.org/004gg6s72 Children''s Aid Society'), (80136, 'https://ror.org/004h24333', 'no_lang_code', 1, 'https://ror.org/004h24333 CellFree Sciences (Japan) 株式会社セルフリーサイエンス'), (80137, 'https://ror.org/004jbx603', 'es', 1, 'https://ror.org/004jbx603 Universidad Técnica de Cotopaxi'), (80138, 'https://ror.org/004jfgt58', 'en', 1, 'https://ror.org/004jfgt58 Mason County District Library'), (80139, 'https://ror.org/004m0sc28', 'en', 1, 'https://ror.org/004m0sc28 Center for Grain and Animal Health Research'), (80140, 'https://ror.org/004qeec45', 'en', 1, 'https://ror.org/004qeec45 Dale Bumpers National Rice Research Center'), (80141, 'https://ror.org/004qfsw40', 'en', 1, 'https://ror.org/004qfsw40 Salve Regina University'), (80142, 'https://ror.org/004vanv95', 'en', 1, 'https://ror.org/004vanv95 China National Space Administration 国家航天局'), (80143, 'https://ror.org/004y4rj95', 'en', 1, 'https://ror.org/004y4rj95 Gordon Center for Medical Imaging'), (80144, 'https://ror.org/004yeqt02', 'en', 1, 'https://ror.org/004yeqt02 South Atlantic Environmental Research Institute'), (80145, 'https://ror.org/004ymwd44', 'fr', 1, 'https://ror.org/004ymwd44 Centre Pour le Développement des Vaccins-Mali'), (80146, 'https://ror.org/004z16v08', 'en', 1, 'https://ror.org/004z16v08 Saint Louis College La Union'), (80147, 'https://ror.org/00513r667', 'en', 1, 'https://ror.org/00513r667 Wellington Free Ambulance'), (80148, 'https://ror.org/0051kfw19', 'en', 1, 'https://ror.org/0051kfw19 Montana Learning Center'), (80149, 'https://ror.org/0051mnz48', 'en', 1, 'https://ror.org/0051mnz48 Khvalynsky National Park Национального парка «Хвалынский»'), (80150, 'https://ror.org/0051w2v06', 'en', 1, 'https://ror.org/0051w2v06 University of Engineering and Technology Lahore جامعہ ہندسیات و طرزیات، لاہور'), (80151, 'https://ror.org/0051xhq65', 'en', 1, 'https://ror.org/0051xhq65 Chinese Academy of Science South America Center for Astronomy 中国科学院南美天文中心'), (80152, 'https://ror.org/0054f1w39', 'en', 1, 'https://ror.org/0054f1w39 Arizona''s Public Universities'), (80153, 'https://ror.org/00558ww90', 'en', 1, 'https://ror.org/00558ww90 Women in Sport'), (80154, 'https://ror.org/0055wbw34', 'no_lang_code', 1, 'https://ror.org/0055wbw34 Matsuyama Shimin Hospital 松山市民病院'), (80155, 'https://ror.org/0058wy590', 'pt', 1, 'https://ror.org/0058wy590 Catholic University of Brasília Universidad Católica de Brasilia Universidade Católica de Brasília'), (80156, 'https://ror.org/0059xpe44', 'no_lang_code', 1, 'https://ror.org/0059xpe44 Kaken Pharmaceutical (Japan) 科研製薬株式会社'), (80157, 'https://ror.org/005bx3y85', 'en', 1, 'https://ror.org/005bx3y85 Elman Retina Group'), (80158, 'https://ror.org/005cjg181', 'en', 1, 'https://ror.org/005cjg181 Global Forum for Health Research'), (80159, 'https://ror.org/005eaq331', 'no_lang_code', 1, 'https://ror.org/005eaq331 DXC Technology (Denmark)'), (80160, 'https://ror.org/005ha3085', 'no_lang_code', 1, 'https://ror.org/005ha3085 Atrad (Australia)'), (80161, 'https://ror.org/005hf4246', 'en', 1, 'https://ror.org/005hf4246 Tohoku University of Community Service and Science 東北公益文科大学'), (80162, 'https://ror.org/005k57c98', 'eu', 1, 'https://ror.org/005k57c98 Basque Summer University Udako Euskal Unibertsitatea Universidad Vasca de Verano Université basque d''été'), (80163, 'https://ror.org/005kqqf02', 'en', 1, 'https://ror.org/005kqqf02 Northern Plains Agricultural Research Laboratory'), (80164, 'https://ror.org/005kw6t15', 'no_lang_code', 1, 'https://ror.org/005kw6t15 Infineon Technologies (Germany)'), (80165, 'https://ror.org/005msw364', 'en', 1, 'https://ror.org/005msw364 African Studies Association'), (80166, 'https://ror.org/005n36371', 'en', 1, 'https://ror.org/005n36371 Danish Medical Association Lægeforeningen'), (80167, 'https://ror.org/005nbjh06', 'en', 1, 'https://ror.org/005nbjh06 Southwest Minnesota State University'), (80168, 'https://ror.org/005ns7397', 'en', 1, 'https://ror.org/005ns7397 Nara Prefectural Institute of Public Health Research Center 奈良県保健研究センター'), (80169, 'https://ror.org/005pdtr14', 'en', 1, 'https://ror.org/005pdtr14 Japan International Research Center for Agricultural Sciences 国立研究開発法人国際農林水産業研究センター'), (80170, 'https://ror.org/005pfhc08', 'en', 1, 'https://ror.org/005pfhc08 Senckenberg Centre for Human Evolution and Palaeoenvironment'), (80171, 'https://ror.org/005pxs112', 'no_lang_code', 1, 'https://ror.org/005pxs112 Veritas (Italy)'), (80172, 'https://ror.org/005qv5j28', 'en', 1, 'https://ror.org/005qv5j28 Fundación Mundial de Diabetes Fundação Mundial de Diabetes World Diabetes Foundation'), (80173, 'https://ror.org/005r1rh48', 'en', 1, 'https://ror.org/005r1rh48 New Guinea Highland Wild Dog Foundation'), (80174, 'https://ror.org/005re7g62', 'sv', 1, 'https://ror.org/005re7g62 Jubileumskliniken Cancerfond'), (80175, 'https://ror.org/005rvws84', 'en', 1, 'https://ror.org/005rvws84 Chiang Rai Rajabhat University มหาวิทยาลัยราชภัฏเชียงราย'), (80176, 'https://ror.org/005t89q56', 'en', 1, 'https://ror.org/005t89q56 Allergy Clinic of Tulsa'), (80177, 'https://ror.org/005vg3k81', 'en', 1, 'https://ror.org/005vg3k81 North American Society for Pediatric Gastroenterology, Hepatology, and Nutrition'), (80178, 'https://ror.org/005wzfh51', 'en', 1, 'https://ror.org/005wzfh51 SKiN Health'), (80179, 'https://ror.org/005x9g035', 'en', 1, 'https://ror.org/005x9g035 Colorado School of Public Health'), (80180, 'https://ror.org/005xkwy83', 'en', 1, 'https://ror.org/005xkwy83 Tokyo Medical Center 独立行政法人国立病院機構東京医療センター'), (80181, 'https://ror.org/005y23t65', 'de', 1, 'https://ror.org/005y23t65 Schön Klinik Vogtareuth'), (80182, 'https://ror.org/00649xp69', 'no_lang_code', 1, 'https://ror.org/00649xp69 Towa Pharmaceutical (Japan) 東和薬品株式会社'), (80183, 'https://ror.org/0067vtw10', 'no_lang_code', 1, 'https://ror.org/0067vtw10 Wren Therapeutics (United Kingdom)'), (80184, 'https://ror.org/00687yy04', 'en', 1, 'https://ror.org/00687yy04 Envoi Specialist Pathologists'), (80185, 'https://ror.org/006bmx089', 'en', 1, 'https://ror.org/006bmx089 University of Southern Indiana Université de l''indiana du sud'), (80186, 'https://ror.org/006fvbd84', 'en', 1, 'https://ror.org/006fvbd84 Delaware Museum of Nature and Science'), (80187, 'https://ror.org/006gczr33', 'no_lang_code', 1, 'https://ror.org/006gczr33 ESI Group (Sweden)'), (80188, 'https://ror.org/006hbbw23', 'en', 1, 'https://ror.org/006hbbw23 Ohio University Eastern'), (80189, 'https://ror.org/006hzme35', 'no_lang_code', 1, 'https://ror.org/006hzme35 MicroPort (China)'), (80190, 'https://ror.org/006p1hv79', 'en', 1, 'https://ror.org/006p1hv79 Bay Area Medical Center'), (80191, 'https://ror.org/006qrck15', 'en', 1, 'https://ror.org/006qrck15 Newport Museum and Art Gallery'), (80192, 'https://ror.org/006xm7s91', 'en', 1, 'https://ror.org/006xm7s91 Global Environment Facility'), (80193, 'https://ror.org/0073v0y35', 'en', 1, 'https://ror.org/0073v0y35 London Biofoundry'), (80194, 'https://ror.org/0073vwb23', 'en', 1, 'https://ror.org/0073vwb23 Home and Community Care Support Services Services de soutien à domicile et en milieu communautaire'), (80195, 'https://ror.org/0073w0m97', 'en', 1, 'https://ror.org/0073w0m97 Pasvik Nature Reserve государственный природный заповедник "Пасвик"'), (80196, 'https://ror.org/0075e2n47', 'en', 1, 'https://ror.org/0075e2n47 Hoso Bunka Foundation 公益財団法人放送文化基金'), (80197, 'https://ror.org/0075f1c08', 'nl', 1, 'https://ror.org/0075f1c08 Artesis Plantijn Hogeschool Antwerpen'), (80198, 'https://ror.org/0077rhe26', 'no_lang_code', 1, 'https://ror.org/0077rhe26 Cerecor (United States)'), (80199, 'https://ror.org/0078bd381', 'en', 1, 'https://ror.org/0078bd381 University College London Qatar'), (80200, 'https://ror.org/007a14354', 'en', 1, 'https://ror.org/007a14354 Beijing Aerospace Flight Control Center 北京航天飞行控制中心'), (80201, 'https://ror.org/007bdrf88', 'de', 1, 'https://ror.org/007bdrf88 Gesundheitsamt, Gesundheitsamt Frankfurt'), (80202, 'https://ror.org/007bsba86', 'no_lang_code', 1, 'https://ror.org/007bsba86 UK EPC'), (80203, 'https://ror.org/007c88108', 'en', 1, 'https://ror.org/007c88108 Tokyo Institute of Psychiatry 財団法人東京都医学研究機構東京都精神医学総合研究所'), (80204, 'https://ror.org/007ecwd34', 'en', 1, 'https://ror.org/007ecwd34 Tyndall Institiúid Naisiunta Tyndall National Institute'), (80205, 'https://ror.org/007ekx298', 'en', 1, 'https://ror.org/007ekx298 Government of Hungary'), (80206, 'https://ror.org/007f5s288', 'en', 1, 'https://ror.org/007f5s288 Cabinet Office 内閣府'), (80207, 'https://ror.org/007fea852', 'en', 1, 'https://ror.org/007fea852 Kostomuksha Nature Reserve Костомукшский заповедник'), (80208, 'https://ror.org/007ge8322', 'en', 1, 'https://ror.org/007ge8322 Kumamoto City Hospital 熊本市立熊本市民病院'), (80209, 'https://ror.org/007gf6e19', 'en', 1, 'https://ror.org/007gf6e19 Huanggang Normal University 黄冈师范学院'), (80210, 'https://ror.org/007h4qe29', 'en', 1, 'https://ror.org/007h4qe29 Tri-Service General Hospital 三軍總醫院'), (80211, 'https://ror.org/007k0m436', 'es', 1, 'https://ror.org/007k0m436 Corporación Universitaria Comfacauca - Unicomfacauca'), (80212, 'https://ror.org/007pxvx88', 'en', 1, 'https://ror.org/007pxvx88 Daiwa Securities Health Foundation 公益財団法人大和証券ヘルス財団'), (80213, 'https://ror.org/007q4yk54', 'no_lang_code', 1, 'https://ror.org/007q4yk54 Gustavus Adolphus College'), (80214, 'https://ror.org/007qqm030', 'no_lang_code', 1, 'https://ror.org/007qqm030 BioGaia (Sweden)'), (80215, 'https://ror.org/007rkz355', 'no_lang_code', 1, 'https://ror.org/007rkz355 Open Ephys Production Site (Portugal)'), (80216, 'https://ror.org/007vvce33', 'en', 1, 'https://ror.org/007vvce33 Aurora West Allis Medical Center'), (80217, 'https://ror.org/007x72212', 'en', 1, 'https://ror.org/007x72212 First People’s Hospital of Jingmen 荆门市第一人民医院'), (80218, 'https://ror.org/007xmz366', 'nl', 1, 'https://ror.org/007xmz366 Sint Franciscus Gasthuis'), (80219, 'https://ror.org/007ygk571', 'en', 1, 'https://ror.org/007ygk571 Dystonia Medical Research Foundation Canada Fondation de Recherche Médicale sur la Dystonie'), (80220, 'https://ror.org/00805am64', 'no_lang_code', 1, 'https://ror.org/00805am64 RTI Surgical (United States)'), (80221, 'https://ror.org/00805ky43', 'no_lang_code', 1, 'https://ror.org/00805ky43 The Centre for Health (New Zealand)'), (80222, 'https://ror.org/0085d9t86', 'en', 1, 'https://ror.org/0085d9t86 Xavier University of Louisiana'), (80223, 'https://ror.org/00863x694', 'en', 1, 'https://ror.org/00863x694 Nepal Academy of Science and Technology'), (80224, 'https://ror.org/0086bb350', 'en', 1, 'https://ror.org/0086bb350 Einstein Center Digital Future'), (80225, 'https://ror.org/008971d44', 'en', 1, 'https://ror.org/008971d44 Ibrahim Cardiac Hospital & Research Institute ইব্রাহিম কার্ডিয়াক হসপিটাল এন্ড রিসার্চ ইনস্টিটিউট'), (80226, 'https://ror.org/0089es913', 'en', 1, 'https://ror.org/0089es913 The Julian Centre'), (80227, 'https://ror.org/008b1vj68', 'es', 1, 'https://ror.org/008b1vj68 Instituto de Astronomía Teórica y Experimental'), (80228, 'https://ror.org/008cac740', 'de', 1, 'https://ror.org/008cac740 Rhön-Klinikum'), (80229, 'https://ror.org/008f3q107', 'no_lang_code', 1, 'https://ror.org/008f3q107 ResearchGate'), (80230, 'https://ror.org/008f5wa49', 'no_lang_code', 1, 'https://ror.org/008f5wa49 Nichias (Japan) ニチアス株式会社'), (80231, 'https://ror.org/008fdbn61', 'fr', 1, 'https://ror.org/008fdbn61 Institut de Cancérologie Strasbourg'), (80232, 'https://ror.org/008fp3016', 'en', 1, 'https://ror.org/008fp3016 Potomac Institute for Policy Studies'), (80233, 'https://ror.org/008gfj249', 'en', 1, 'https://ror.org/008gfj249 London Road Community Hospital'), (80234, 'https://ror.org/008hagh90', 'en', 1, 'https://ror.org/008hagh90 Association Nationale qui Représente les Intérêts Communs des Services Publics Canadian Water and Wastewater Association'), (80235, 'https://ror.org/008kt5750', 'no_lang_code', 1, 'https://ror.org/008kt5750 Symphogen (Denmark)'), (80236, 'https://ror.org/008nhcy02', 'sv', 1, 'https://ror.org/008nhcy02 Upplandsmuseet, Upplandsmuseum متحف أوبلاند'), (80237, 'https://ror.org/008pp7a77', 'de', 1, 'https://ror.org/008pp7a77 Institut für Zeitgeschichte München–Berlin Institute for Contemporary History München–Berlin, Institute of Contemporary History, Leibniz Institute for Contemporary History (IfZ)'), (80238, 'https://ror.org/008qvpg94', 'en', 1, 'https://ror.org/008qvpg94 Ural State Academy of Architecture and Arts Уральская государственная архитектурно-художественная академия'), (80239, 'https://ror.org/008s67533', 'no_lang_code', 1, 'https://ror.org/008s67533 Institut Mérieux (France)'), (80240, 'https://ror.org/008t1c044', 'en', 1, 'https://ror.org/008t1c044 Gujarat Cancer Society गुजरात कैंसर सोसाइटी'), (80241, 'https://ror.org/008xr9260', 'de', 1, 'https://ror.org/008xr9260 Institut für Bewusstseins- und Traumforschung'), (80242, 'https://ror.org/008zyts17', 'no_lang_code', 1, 'https://ror.org/008zyts17 Mito Saiseikai General Hospital 社会福祉法人恩賜財団済生会水戸済生会総合病院'), (80243, 'https://ror.org/008zz8m46', 'en', 1, 'https://ror.org/008zz8m46 Nagoya University Hospital 名古屋大学医学部附属病院'), (80244, 'https://ror.org/009026n40', 'en', 1, 'https://ror.org/009026n40 Fatima Jinnah Women University جامعہ فاطمہ جناح برائے خواتین'), (80245, 'https://ror.org/0091hm651', 'en', 1, 'https://ror.org/0091hm651 Universitas Pattimura University of Pattimura'), (80246, 'https://ror.org/00924z688', 'en', 1, 'https://ror.org/00924z688 Institute of Arctic and Alpine Research'), (80247, 'https://ror.org/0093wey45', 'en', 1, 'https://ror.org/0093wey45 Alberta Barley'), (80248, 'https://ror.org/009436s82', 'en', 1, 'https://ror.org/009436s82 Monash University Prato Centre Palazzo Vai'), (80249, 'https://ror.org/00971b260', 'no_lang_code', 1, 'https://ror.org/00971b260 DeepMind (United Kingdom)'), (80250, 'https://ror.org/0098syn68', 'de', 1, 'https://ror.org/0098syn68 Rostocker Zentrum zur Erforschung des Demografischen Wandels'), (80251, 'https://ror.org/009a03q22', 'en', 1, 'https://ror.org/009a03q22 Main Center of Special Monitoring Головний центр спеціального контролю'), (80252, 'https://ror.org/009cyv989', 'en', 1, 'https://ror.org/009cyv989 Aga Khan Development Network'), (80253, 'https://ror.org/009df1343', 'no_lang_code', 1, 'https://ror.org/009df1343 Regenxbio (United States)'), (80254, 'https://ror.org/009eea568', 'en', 1, 'https://ror.org/009eea568 National Institution for Finance and Development 国家金融与发展实验室'), (80255, 'https://ror.org/009ev1878', 'en', 1, 'https://ror.org/009ev1878 KuDos'), (80256, 'https://ror.org/009fk3b63', 'en', 1, 'https://ror.org/009fk3b63 Portsmouth Hospitals NHS Trust'), (80257, 'https://ror.org/009jfs928', 'en', 1, 'https://ror.org/009jfs928 Mapi Research Trust'), (80258, 'https://ror.org/009jy0c86', 'en', 1, 'https://ror.org/009jy0c86 Anshun University'), (80259, 'https://ror.org/009kqch10', 'en', 1, 'https://ror.org/009kqch10 Norwegian Public Roads Administration'), (80260, 'https://ror.org/009mwwv16', 'no_lang_code', 1, 'https://ror.org/009mwwv16 AZTERLAN AZTERLAN Centro de Investigación Metalúrgica AZTERLAN Metalurgia Ikerketa Zentroa'), (80261, 'https://ror.org/009p8zv69', 'en', 1, 'https://ror.org/009p8zv69 King Abdullah International Medical Research Center'), (80262, 'https://ror.org/009pzqe60', 'no_lang_code', 1, 'https://ror.org/009pzqe60 Cosmote (Greece)'), (80263, 'https://ror.org/009r7tw40', 'en', 1, 'https://ror.org/009r7tw40 Cyto Labs'), (80264, 'https://ror.org/009rk8684', 'no_lang_code', 1, 'https://ror.org/009rk8684 Kiwa (Germany)'), (80265, 'https://ror.org/009tnsj43', 'en', 1, 'https://ror.org/009tnsj43 Newman University'), (80266, 'https://ror.org/009wx7055', 'en', 1, 'https://ror.org/009wx7055 USA Mitchell Cancer Institute'), (80267, 'https://ror.org/009x65438', 'en', 1, 'https://ror.org/009x65438 Mukogawa Women''s University 武庫川女子大学'), (80268, 'https://ror.org/009xkwz08', 'en', 1, 'https://ror.org/009xkwz08 San Joaquin Valley Agricultural Sciences Center'), (80269, 'https://ror.org/009yp5907', 'no_lang_code', 1, 'https://ror.org/009yp5907 HiFiBiO Therapeutics (United States)'), (80270, 'https://ror.org/009z2z347', 'no_lang_code', 1, 'https://ror.org/009z2z347 Kowa (Japan) 興和株式会社'), (80271, 'https://ror.org/00a0n3690', 'en', 1, 'https://ror.org/00a0n3690 Commonweal'), (80272, 'https://ror.org/00a1e9e96', 'no_lang_code', 1, 'https://ror.org/00a1e9e96 Horiba (Japan) 株式会社堀場製作所'), (80273, 'https://ror.org/00a2x9d51', 'en', 1, 'https://ror.org/00a2x9d51 National Clinical Research Center for Digestive Diseases 国家消化系统疾病临床医学研究中心'), (80274, 'https://ror.org/00a4fk439', 'en', 1, 'https://ror.org/00a4fk439 Phycological Society of America'), (80275, 'https://ror.org/00a7kn731', 'en', 1, 'https://ror.org/00a7kn731 Kushiro Junior College 釧路短期大学'), (80276, 'https://ror.org/00a7vgh58', 'de', 1, 'https://ror.org/00a7vgh58 Max-Planck-Institut für Kohlenforschung'), (80277, 'https://ror.org/00abc2c86', 'en', 1, 'https://ror.org/00abc2c86 Fédération Internationale du Vieillissement International Federation on Ageing'), (80278, 'https://ror.org/00abnnq69', 'no_lang_code', 1, 'https://ror.org/00abnnq69 Hexal (Germany)'), (80279, 'https://ror.org/00ac63h31', 'en', 1, 'https://ror.org/00ac63h31 International Institute of Tropical Agriculture المعهد الدولي للزراعة الاستوائية'), (80280, 'https://ror.org/00ads0y69', 'es', 1, 'https://ror.org/00ads0y69 Universidad Autónoma Agraria Antonio Narro'), (80281, 'https://ror.org/00aggce03', 'en', 1, 'https://ror.org/00aggce03 Indian Institute of Packaging भारतीय पैकेजिंग संस्थान'), (80282, 'https://ror.org/00am3vk94', 'en', 1, 'https://ror.org/00am3vk94 Willis-Knighton Cancer Center'), (80283, 'https://ror.org/00anb1726', 'no_lang_code', 1, 'https://ror.org/00anb1726 Vertex Pharmaceuticals (United States)'), (80284, 'https://ror.org/00aqw3z26', 'fr', 1, 'https://ror.org/00aqw3z26 Collège St-Michel Kollegium St. Michael'), (80285, 'https://ror.org/00as45r68', 'en', 1, 'https://ror.org/00as45r68 Ministerio de Economía, Fomento y Reconstrucción de Chile Ministry of Economy, Development and Tourism'), (80286, 'https://ror.org/00ax0a039', 'en', 1, 'https://ror.org/00ax0a039 The Hersh Foundation'), (80287, 'https://ror.org/00axqt112', 'no_lang_code', 1, 'https://ror.org/00axqt112 Hindustan Petroleum Corporation Limited (India) हिन्दुस्तान पेट्रोलियम निगम लिमिटेड'), (80288, 'https://ror.org/00b0fqv31', 'en', 1, 'https://ror.org/00b0fqv31 D-Tree International'), (80289, 'https://ror.org/00b0m7v78', 'no_lang_code', 1, 'https://ror.org/00b0m7v78 Institute of Reactor Materials (Russia) ИНСТИТУТ РЕАКТОРНЫХ МАТЕРИАЛОВ'), (80290, 'https://ror.org/00b0p4j69', 'en', 1, 'https://ror.org/00b0p4j69 Ministry of Land, Infrastructure, Transport and Tourism 国土交通省'), (80291, 'https://ror.org/00b1tsa05', 'no_lang_code', 1, 'https://ror.org/00b1tsa05 Tata Motors (India)'), (80292, 'https://ror.org/00b2nf889', 'en', 1, 'https://ror.org/00b2nf889 Amhara Regional Health Bureau'), (80293, 'https://ror.org/00b31g692', 'en', 1, 'https://ror.org/00b31g692 Barts Health NHS Trust'), (80294, 'https://ror.org/00b4ram58', 'no_lang_code', 1, 'https://ror.org/00b4ram58 Mercedes-Benz Research and Development North America (United States)'), (80295, 'https://ror.org/00b6kjb41', 'en', 1, 'https://ror.org/00b6kjb41 New York State Office for People With Developmental Disabilities'), (80296, 'https://ror.org/00b6s9f18', 'en', 1, 'https://ror.org/00b6s9f18 Osaka National Hospital 独立行政法人国立病院機構大阪医療センター'), (80297, 'https://ror.org/00b93bs30', 'en', 1, 'https://ror.org/00b93bs30 American Astronomical Society'), (80298, 'https://ror.org/00b9pg524', 'en', 1, 'https://ror.org/00b9pg524 National Solar Observatory'), (80299, 'https://ror.org/00baf2h95', 'id', 1, 'https://ror.org/00baf2h95 Universitas ''Aisyiyah Bandung'), (80300, 'https://ror.org/00bavmx73', 'no_lang_code', 1, 'https://ror.org/00bavmx73 Nippon Flour Mills (Japan) 日本製粉株式会社'), (80301, 'https://ror.org/00bb55562', 'en', 1, 'https://ror.org/00bb55562 Kobe University Hospital 神戸大学医学部附属病院'), (80302, 'https://ror.org/00bb88176', 'en', 1, 'https://ror.org/00bb88176 Institute of Public Health'), (80303, 'https://ror.org/00bb9ch64', 'en', 1, 'https://ror.org/00bb9ch64 Indian Institute of Information Technology Guwahati भारतीय सूचना प्रौद्योगिकी संस्थान गुवाहाटी'), (80304, 'https://ror.org/00be10k49', 'en', 1, 'https://ror.org/00be10k49 Moscow Academy of the Investigative Committee of the Russian Federation Московская Академия Следственного Комитета Российской Федерации'), (80305, 'https://ror.org/00be4tw47', 'en', 1, 'https://ror.org/00be4tw47 Vyzhnytsia National Nature Park Національний природний парк «Вижницький»'), (80306, 'https://ror.org/00be8mn93', 'en', 1, 'https://ror.org/00be8mn93 Children’s Health Queensland Hospital and Health Service'), (80307, 'https://ror.org/00besvm65', 'no_lang_code', 1, 'https://ror.org/00besvm65 Technicolor (Germany)'), (80308, 'https://ror.org/00bgr8r13', 'en', 1, 'https://ror.org/00bgr8r13 Puerto Rico Space Grant Consortium'), (80309, 'https://ror.org/00bhf8j88', 'en', 1, 'https://ror.org/00bhf8j88 Nara Prefecture General Medical Center 地方独立行政法人奈良県立病院機構奈良県総合医療センター'), (80310, 'https://ror.org/00bj0r217', 'en', 1, 'https://ror.org/00bj0r217 Max Planck Institute for Security and Privacy Max-Planck-Institut für Sicherheit und Privatsphäre'), (80311, 'https://ror.org/00bjpkw56', 'en', 1, 'https://ror.org/00bjpkw56 Bangladesh Wheat and Maize Research Institute বাংলাদেশ গম ও ভুট্টা গবেষণা ইনস্টিটিউট'), (80312, 'https://ror.org/00bke8n58', 'en', 1, 'https://ror.org/00bke8n58 Geoscience BC'), (80313, 'https://ror.org/00bnq0b88', 'en', 1, 'https://ror.org/00bnq0b88 Oklahoma Department of Wildlife Conservation'), (80314, 'https://ror.org/00bpkwt94', 'es', 1, 'https://ror.org/00bpkwt94 Centro Médico Bustos Fernandez'), (80315, 'https://ror.org/00bqrh472', 'es', 1, 'https://ror.org/00bqrh472 Autonomous University of Ica Universidad Autónoma de Ica'), (80316, 'https://ror.org/00brjxm92', 'fr', 1, 'https://ror.org/00brjxm92 Institut Salah-Azaïz'), (80317, 'https://ror.org/00bt7we59', 'es', 1, 'https://ror.org/00bt7we59 Colegio Médico de Chile Medical College of Chile'), (80318, 'https://ror.org/00bt9we26', 'en', 1, 'https://ror.org/00bt9we26 Ministry of Public Security of the People''s Republic of China 中华人民共和国公安部'), (80319, 'https://ror.org/00bv4cx53', 'en', 1, 'https://ror.org/00bv4cx53 Botanic Garden and Botanical Museum Berlin Botanischer Garten und Botanisches Museum Berlin'), (80320, 'https://ror.org/00bv64a69', 'en', 1, 'https://ror.org/00bv64a69 Japanese Foundation For Cancer Research 公益財団法人がん研究会'), (80321, 'https://ror.org/00bw2gb04', 'en', 1, 'https://ror.org/00bw2gb04 Institute of Transportation and Logistic Trisakti'), (80322, 'https://ror.org/00bx04e70', 'no_lang_code', 1, 'https://ror.org/00bx04e70 Dopavision (Germany)'), (80323, 'https://ror.org/00bypm595', 'en', 1, 'https://ror.org/00bypm595 Cardiovascular Center Bethanien'), (80324, 'https://ror.org/00c0zxf82', 'en', 1, 'https://ror.org/00c0zxf82 National Wildlife Federation'), (80325, 'https://ror.org/00c1dt378', 'en', 1, 'https://ror.org/00c1dt378 Queensland Health'), (80326, 'https://ror.org/00c1h4g48', 'en', 1, 'https://ror.org/00c1h4g48 Rockwool Fonden Rockwool Foundation'), (80327, 'https://ror.org/00c2h6p86', 'no_lang_code', 1, 'https://ror.org/00c2h6p86 Texas Instruments (Japan) 日本テキサス・インスツルメンツ株式会社'), (80328, 'https://ror.org/00c32gy34', 'es', 1, 'https://ror.org/00c32gy34 Universidad de Sonora University of Sonora'), (80329, 'https://ror.org/00c4ncp37', 'en', 1, 'https://ror.org/00c4ncp37 Aichi Human Service Center 愛知県心身障害者コロニー'), (80330, 'https://ror.org/00c5bvm83', 'en', 1, 'https://ror.org/00c5bvm83 Belfast City Council'), (80331, 'https://ror.org/00c77q313', 'es', 1, 'https://ror.org/00c77q313 Red de Investigación en Sida'), (80332, 'https://ror.org/00c7x4a95', 'en', 1, 'https://ror.org/00c7x4a95 Dalian Polytechnic University 大连工业大学'), (80333, 'https://ror.org/00c8e6e47', 'en', 1, 'https://ror.org/00c8e6e47 National University of Northwestern Buenos Aires Universidad Nacional del Noroeste de la Provincia de Buenos Aires'), (80334, 'https://ror.org/00c952d06', 'en', 1, 'https://ror.org/00c952d06 New York Foundation for the Arts'), (80335, 'https://ror.org/00ca65425', 'fr', 1, 'https://ror.org/00ca65425 Théorie et Histoire des Arts et des Littératures de la Modernité'), (80336, 'https://ror.org/00cahhs35', 'en', 1, 'https://ror.org/00cahhs35 Northwest Watershed Research Center'), (80337, 'https://ror.org/00cbr6959', 'de', 1, 'https://ror.org/00cbr6959 Hirslanden Klinik Im Park'), (80338, 'https://ror.org/00cgnj660', 'en', 1, 'https://ror.org/00cgnj660 Ted Rogers Centre for Heart Research'), (80339, 'https://ror.org/00cgxnn80', 'en', 1, 'https://ror.org/00cgxnn80 Society for Mathematical Biology'), (80340, 'https://ror.org/00ch3t340', 'no_lang_code', 1, 'https://ror.org/00ch3t340 CRB Innovations (Canada)'), (80341, 'https://ror.org/00cjb8p81', 'nl', 1, 'https://ror.org/00cjb8p81 GGD Brabant-Zuidoost'), (80342, 'https://ror.org/00cmyqz09', 'en', 1, 'https://ror.org/00cmyqz09 Civicus'), (80343, 'https://ror.org/00cqhgk75', 'en', 1, 'https://ror.org/00cqhgk75 Surgical Infection Society of Europe'), (80344, 'https://ror.org/00cqpd580', 'fr', 1, 'https://ror.org/00cqpd580 Institut des Matériaux Jean Rouxel Institute of Materials Jean Rouxel'), (80345, 'https://ror.org/00cqzm681', 'no_lang_code', 1, 'https://ror.org/00cqzm681 MatTek (Slovakia)'), (80346, 'https://ror.org/00csayb94', 'en', 1, 'https://ror.org/00csayb94 Dallas Plastic Surgery Institute'), (80347, 'https://ror.org/00ct41p88', 'en', 1, 'https://ror.org/00ct41p88 The Gottman Institute'), (80348, 'https://ror.org/00ct9cz38', 'en', 1, 'https://ror.org/00ct9cz38 Eastern Institute of Technology'), (80349, 'https://ror.org/00cv8gc24', 'no_lang_code', 1, 'https://ror.org/00cv8gc24 ENPICOM (Netherlands)'), (80350, 'https://ror.org/00cvzzg84', 'no_lang_code', 1, 'https://ror.org/00cvzzg84 Incyte (United States)'), (80351, 'https://ror.org/00cxkrp74', 'en', 1, 'https://ror.org/00cxkrp74 Children’s Minnesota - St. Paul Hospital'), (80352, 'https://ror.org/00czkns73', 'en', 1, 'https://ror.org/00czkns73 St Mary''s Hospital 社会医療法人雪の聖母会聖マリア病院'), (80353, 'https://ror.org/00d062t77', 'en', 1, 'https://ror.org/00d062t77 Bank for International Settlements Bank für Internationalen Zahlungsausgleich'), (80354, 'https://ror.org/00d1evr30', 'en', 1, 'https://ror.org/00d1evr30 Central Power Research Institute'), (80355, 'https://ror.org/00d25af97', 'en', 1, 'https://ror.org/00d25af97 Pontificia y Real Universidad de Santo Tomás University of Santo Tomas'), (80356, 'https://ror.org/00d3dc551', 'no_lang_code', 1, 'https://ror.org/00d3dc551 Megaputer Intelligence (United States)'), (80357, 'https://ror.org/00d3mr981', 'en', 1, 'https://ror.org/00d3mr981 Fukuoka University Hospital 福岡大学病院'), (80358, 'https://ror.org/00d6bdx78', 'en', 1, 'https://ror.org/00d6bdx78 Ontario Society of Occupational Therapists'), (80359, 'https://ror.org/00d7z6755', 'es', 1, 'https://ror.org/00d7z6755 Fundación Biodiversidad'), (80360, 'https://ror.org/00d801g55', 'no_lang_code', 1, 'https://ror.org/00d801g55 Ipsen (France)'), (80361, 'https://ror.org/00d89k312', 'no_lang_code', 1, 'https://ror.org/00d89k312 Wearifi (United States)'); INSERT INTO `rors` VALUES (80362, 'https://ror.org/00d9nf164', 'es', 1, 'https://ror.org/00d9nf164 Fundación Grupo para la Investigación, Formación, y Edición Transdisciplinar'), (80363, 'https://ror.org/00datzr31', 'en', 1, 'https://ror.org/00datzr31 CW+'), (80364, 'https://ror.org/00dc6rr74', 'en', 1, 'https://ror.org/00dc6rr74 Tri-Service General Hospital Beitou Branch 三軍總醫院北投分院'), (80365, 'https://ror.org/00dc87r24', 'en', 1, 'https://ror.org/00dc87r24 Genki Plaza Medical Center for Health Care'), (80366, 'https://ror.org/00ddgbf74', 'nl', 1, 'https://ror.org/00ddgbf74 Long Fonds'), (80367, 'https://ror.org/00det5k42', 'no_lang_code', 1, 'https://ror.org/00det5k42 Nepal Institute of Research and Communications (NIRC)'), (80368, 'https://ror.org/00devjr72', 'pt', 1, 'https://ror.org/00devjr72 Federal University of São Francisco Valley Universidade Federal do Vale do São Francisco'), (80369, 'https://ror.org/00dewa944', 'en', 1, 'https://ror.org/00dewa944 Stone Soup Group'), (80370, 'https://ror.org/00dfvzs39', 'no_lang_code', 1, 'https://ror.org/00dfvzs39 Swiss Re (United States)'), (80371, 'https://ror.org/00dgmsj78', 'en', 1, 'https://ror.org/00dgmsj78 Clifford Craig Foundation'), (80372, 'https://ror.org/00dk0pe94', 'en', 1, 'https://ror.org/00dk0pe94 Randall University'), (80373, 'https://ror.org/00dnats08', 'no_lang_code', 1, 'https://ror.org/00dnats08 Opris Consulting (United States)'), (80374, 'https://ror.org/00dq0yr94', 'no_lang_code', 1, 'https://ror.org/00dq0yr94 Sound Agriculture (United States)'), (80375, 'https://ror.org/00dre6z66', 'en', 1, 'https://ror.org/00dre6z66 Guangdong Industry Technical College 广东轻工职业技术学院'), (80376, 'https://ror.org/00dt6a694', 'fr', 1, 'https://ror.org/00dt6a694 Centre Hospitalier de Perpignan'), (80377, 'https://ror.org/00dt9qb91', 'en', 1, 'https://ror.org/00dt9qb91 Illawarra Health and Medical Research Institute'), (80378, 'https://ror.org/00dtsha18', 'no_lang_code', 1, 'https://ror.org/00dtsha18 Neomorph'), (80379, 'https://ror.org/00dvtcv48', 'en', 1, 'https://ror.org/00dvtcv48 International Institute of Tropical Agriculture'), (80380, 'https://ror.org/00dw1q752', 'en', 1, 'https://ror.org/00dw1q752 Experimental Psychology Society'), (80381, 'https://ror.org/00dwmat08', 'no_lang_code', 1, 'https://ror.org/00dwmat08 CellOxess (United States)'), (80382, 'https://ror.org/00dxzfw25', 'pl', 1, 'https://ror.org/00dxzfw25 Institute of Agricultural and Forest Environment Instytut Środowiska Rolniczego i Leśnego Polskiej Akademii Nauk'), (80383, 'https://ror.org/00dy5wm60', 'no_lang_code', 1, 'https://ror.org/00dy5wm60 Fidia Farmaceutici (Italy)'), (80384, 'https://ror.org/00dyhkz14', 'no_lang_code', 1, 'https://ror.org/00dyhkz14 Istanbul Retina Institute (Turkey)'), (80385, 'https://ror.org/00dyv8n62', 'no_lang_code', 1, 'https://ror.org/00dyv8n62 Sailbri Cooper (United States)'), (80386, 'https://ror.org/00e0zd560', 'en', 1, 'https://ror.org/00e0zd560 Bulletin canadien d''histoire de la médecine Canadian Bulletin of Medical History'), (80387, 'https://ror.org/00e18hs98', 'no_lang_code', 1, 'https://ror.org/00e18hs98 Niigata Cancer Center Hospital 新潟県立がんセンター新潟病院'), (80388, 'https://ror.org/00e1ah625', 'en', 1, 'https://ror.org/00e1ah625 Psihijatrijska Bolnica Sveti Ivan Psychiatric Hospital Sveti Ivan'), (80389, 'https://ror.org/00e27px16', 'no_lang_code', 1, 'https://ror.org/00e27px16 Meito Sangyo (Japan)'), (80390, 'https://ror.org/00e2fg256', 'no_lang_code', 1, 'https://ror.org/00e2fg256 Biogemma (France)'), (80391, 'https://ror.org/00e2m4m53', 'en', 1, 'https://ror.org/00e2m4m53 Individual Development and Adaptive Education'), (80392, 'https://ror.org/00e372137', 'en', 1, 'https://ror.org/00e372137 International Severe Acute Respiratory and Emerging Infection Consortium'), (80393, 'https://ror.org/00e55tr36', 'no_lang_code', 1, 'https://ror.org/00e55tr36 Biortus (China)'), (80394, 'https://ror.org/00e5yzw53', 'en', 1, 'https://ror.org/00e5yzw53 St. Luke''s International University 聖路加国際大学'), (80395, 'https://ror.org/00e76kv63', 'en', 1, 'https://ror.org/00e76kv63 Alliance for International Medical Action'), (80396, 'https://ror.org/00e7apb48', 'en', 1, 'https://ror.org/00e7apb48 ASTRO-3D'), (80397, 'https://ror.org/00e7cvg05', 'en', 1, 'https://ror.org/00e7cvg05 Rajiv Gandhi Cancer Institute and Research Centre'), (80398, 'https://ror.org/00e7ec781', 'en', 1, 'https://ror.org/00e7ec781 United States Department of Agriculture Climate Hubs'), (80399, 'https://ror.org/00e8gtn74', 'en', 1, 'https://ror.org/00e8gtn74 Evolve Restorative Center'), (80400, 'https://ror.org/00eaa9p67', 'no_lang_code', 1, 'https://ror.org/00eaa9p67 Corin (United Kingdom)'), (80401, 'https://ror.org/00ecg5g90', 'no_lang_code', 1, 'https://ror.org/00ecg5g90 Seirei Mikatabara General Hospital 社会福祉法人聖隷福祉事業団総合病院聖隷三方原病院'), (80402, 'https://ror.org/00edmjc06', 'en', 1, 'https://ror.org/00edmjc06 American Society for Investigative Pathology'), (80403, 'https://ror.org/00edrn755', 'en', 1, 'https://ror.org/00edrn755 Hvidovre Hospital'), (80404, 'https://ror.org/00efwap41', 'en', 1, 'https://ror.org/00efwap41 Global Energy Interconnection Research Institute North America'), (80405, 'https://ror.org/00eg0bk82', 'en', 1, 'https://ror.org/00eg0bk82 Columbia VA Health Care System'), (80406, 'https://ror.org/00eg2e012', 'en', 1, 'https://ror.org/00eg2e012 American Economic Association'), (80407, 'https://ror.org/00ehy3272', 'en', 1, 'https://ror.org/00ehy3272 New Hope Fertility Center'), (80408, 'https://ror.org/00ek68a72', 'en', 1, 'https://ror.org/00ek68a72 Faroe Islands National Museum Tjóðsavn Føroya'), (80409, 'https://ror.org/00emrpf22', 'no_lang_code', 1, 'https://ror.org/00emrpf22 JenaValve (United States)'), (80410, 'https://ror.org/00endtw77', 'no_lang_code', 1, 'https://ror.org/00endtw77 Alimera Sciences (United States)'), (80411, 'https://ror.org/00envj504', 'en', 1, 'https://ror.org/00envj504 Associated Retinal Consultants'), (80412, 'https://ror.org/00errak20', 'en', 1, 'https://ror.org/00errak20 Biro za metrologija Bureau of Metrology of Macedonia Byroja për metrologji БИРО ЗА МЕТРОЛОГИЈА'), (80413, 'https://ror.org/00ev3nz67', 'en', 1, 'https://ror.org/00ev3nz67 Guizhou Academy of Agricultural Sciences 贵州省农业科学院'), (80414, 'https://ror.org/00evhyq63', 'no_lang_code', 1, 'https://ror.org/00evhyq63 Amine Pharma (Japan) 株式会社アミンファーマ研究所'), (80415, 'https://ror.org/00ew3z127', 'en', 1, 'https://ror.org/00ew3z127 IEDP Developing Leaders'), (80416, 'https://ror.org/00ew7rg06', 'no_lang_code', 1, 'https://ror.org/00ew7rg06 MorphoSys (Germany)'), (80417, 'https://ror.org/00ewnj302', 'de', 1, 'https://ror.org/00ewnj302 Deutsches Historisches Institut Rom German Historical Institute in Rome Istituto Storico Germanico di Roma'), (80418, 'https://ror.org/00eyng893', 'en', 1, 'https://ror.org/00eyng893 VIB-KU Leuven Center for Cancer Biology'), (80419, 'https://ror.org/00ezf9p03', 'en', 1, 'https://ror.org/00ezf9p03 Cherkasy Medical Academy Черкаська медична академія'), (80420, 'https://ror.org/00f06eh80', 'en', 1, 'https://ror.org/00f06eh80 Punjab Medical Center'), (80421, 'https://ror.org/00f1drj74', 'en', 1, 'https://ror.org/00f1drj74 Seeta Eye Centers'), (80422, 'https://ror.org/00f2kew86', 'pt', 1, 'https://ror.org/00f2kew86 Hospital de Câncer de Barretos'), (80423, 'https://ror.org/00f6fw078', 'no_lang_code', 1, 'https://ror.org/00f6fw078 Cumberland Research Associates (United States)'), (80424, 'https://ror.org/00f6g0567', 'en', 1, 'https://ror.org/00f6g0567 Hunter Cancer Research Alliance'), (80425, 'https://ror.org/00f86gt02', 'no_lang_code', 1, 'https://ror.org/00f86gt02 Nippon Zoki (Japan) 日本臓器製薬'), (80426, 'https://ror.org/00f89wy98', 'en', 1, 'https://ror.org/00f89wy98 Magnetics Information Consortium'), (80427, 'https://ror.org/00f8adc72', 'en', 1, 'https://ror.org/00f8adc72 Cancer Focus Northern Ireland'), (80428, 'https://ror.org/00f99yp81', 'en', 1, 'https://ror.org/00f99yp81 Royal Australasian College of Medical Administrators'), (80429, 'https://ror.org/00fczj128', 'no_lang_code', 1, 'https://ror.org/00fczj128 MoTeC (Australia)'), (80430, 'https://ror.org/00fen6t20', 'en', 1, 'https://ror.org/00fen6t20 Homeopathy Research Institute'), (80431, 'https://ror.org/00fer7583', 'en', 1, 'https://ror.org/00fer7583 CARE Fertility'), (80432, 'https://ror.org/00ffxn811', 'is', 1, 'https://ror.org/00ffxn811 Fornleifastofnun Íslands'), (80433, 'https://ror.org/00fgrre84', 'no_lang_code', 1, 'https://ror.org/00fgrre84 Micro Systems Engineering (United States)'), (80434, 'https://ror.org/00fj5zw34', 'en', 1, 'https://ror.org/00fj5zw34 Hong Kong Institute of Steel Construction'), (80435, 'https://ror.org/00fjjyv64', 'en', 1, 'https://ror.org/00fjjyv64 Dépistage Néonatal Ontario Newborn Screening Ontario'), (80436, 'https://ror.org/00fm1n282', 'no_lang_code', 1, 'https://ror.org/00fm1n282 Inflarx (Germany)'), (80437, 'https://ror.org/00fn3pa80', 'en', 1, 'https://ror.org/00fn3pa80 Nasional University Universitas Nasional'), (80438, 'https://ror.org/00fpz4c36', 'en', 1, 'https://ror.org/00fpz4c36 Plymouth State University Université d''État de plymouth'), (80439, 'https://ror.org/00ftg6h50', 'en', 1, 'https://ror.org/00ftg6h50 European Graduate School of Neuroscience'), (80440, 'https://ror.org/00ftrxq20', 'en', 1, 'https://ror.org/00ftrxq20 Asahikawa Medical College Hospital 旭川医科大学病院'), (80441, 'https://ror.org/00fwvs774', 'en', 1, 'https://ror.org/00fwvs774 Dermatology Research and Education Foundation'), (80442, 'https://ror.org/00g1p6865', 'en', 1, 'https://ror.org/00g1p6865 Brien Holden Vision Institute'), (80443, 'https://ror.org/00g1x4v36', 'en', 1, 'https://ror.org/00g1x4v36 European Federation of Pharmaceutical Industries and Associations'), (80444, 'https://ror.org/00g2fk805', 'en', 1, 'https://ror.org/00g2fk805 Washington State University Vancouver'), (80445, 'https://ror.org/00g2qdz89', 'es', 1, 'https://ror.org/00g2qdz89 Universidad de la Ciudad de Buenos Aires'), (80446, 'https://ror.org/00g2xk477', 'en', 1, 'https://ror.org/00g2xk477 Hunter College'), (80447, 'https://ror.org/00g30fc48', 'en', 1, 'https://ror.org/00g30fc48 Magyar Bányászati és Földtani Szolgálat Mining and Geological Survey of Hungary'), (80448, 'https://ror.org/00g3ck957', 'en', 1, 'https://ror.org/00g3ck957 American Productivity and Quality Center'), (80449, 'https://ror.org/00g51j712', 'en', 1, 'https://ror.org/00g51j712 Saga Medical School Hospital 佐賀大学医学部附属病院'), (80450, 'https://ror.org/00g58ht81', 'no_lang_code', 1, 'https://ror.org/00g58ht81 Triad Interactive Media (United States)'), (80451, 'https://ror.org/00g6d1w79', 'en', 1, 'https://ror.org/00g6d1w79 Center for Urban Waters'), (80452, 'https://ror.org/00g86hk06', 'es', 1, 'https://ror.org/00g86hk06 Escuela Nacional de Medicina del Trabajo National School of Occupational Medicine'), (80453, 'https://ror.org/00g916n77', 'en', 1, 'https://ror.org/00g916n77 Iwate Prefectural Central Hospital 岩手県立中央病院'), (80454, 'https://ror.org/00g9bca48', 'no_lang_code', 1, 'https://ror.org/00g9bca48 Biotronik (Singapore)'), (80455, 'https://ror.org/00garhy75', 'en', 1, 'https://ror.org/00garhy75 National Epilepsy Center 独立行政法人国立病院機構静岡てんかん・神経医療センター'), (80456, 'https://ror.org/00gdxsk50', 'no_lang_code', 1, 'https://ror.org/00gdxsk50 Surgical Innovations (United Kingdom)'), (80457, 'https://ror.org/00gdzqq03', 'en', 1, 'https://ror.org/00gdzqq03 American Society of Addiction Medicine'), (80458, 'https://ror.org/00gej0269', 'en', 1, 'https://ror.org/00gej0269 Acupuncture And Massage College'), (80459, 'https://ror.org/00gez1r32', 'en', 1, 'https://ror.org/00gez1r32 Young Men''s Christian Association'), (80460, 'https://ror.org/00gfstq19', 'no_lang_code', 1, 'https://ror.org/00gfstq19 Sysmex (Japan) シスメックス株式会社'), (80461, 'https://ror.org/00ggm6d20', 'en', 1, 'https://ror.org/00ggm6d20 Faith Regional Health Services'), (80462, 'https://ror.org/00gnxy738', 'en', 1, 'https://ror.org/00gnxy738 UK Web Archive'), (80463, 'https://ror.org/00gpqj976', 'no_lang_code', 1, 'https://ror.org/00gpqj976 Pernod Ricard (France)'), (80464, 'https://ror.org/00gtb4z22', 'en', 1, 'https://ror.org/00gtb4z22 Institute of Pediatrics, Obstetrics, and Gynecology named after acad. O.M. Lukyanova of the National Academy of Medical Sciences of Ukraine Інститут педіатрії, акушерства та гінекології НАМН України'), (80465, 'https://ror.org/00gwx3e77', 'en', 1, 'https://ror.org/00gwx3e77 Queen Nandi Regional Hospital'), (80466, 'https://ror.org/00gyn5p04', 'en', 1, 'https://ror.org/00gyn5p04 Ivan Kozhedub Kharkiv National Air Force University Харківський національний університет повітряних сил імені Івана Кожедуба'), (80467, 'https://ror.org/00h211q58', 'no_lang_code', 1, 'https://ror.org/00h211q58 Intelligify (United Kingdom)'), (80468, 'https://ror.org/00h5ck659', 'en', 1, 'https://ror.org/00h5ck659 Nippon Medical School Musashi Kosugi Hospital 日本医科大学武蔵小杉病院'), (80469, 'https://ror.org/00h7gyj76', 'no_lang_code', 1, 'https://ror.org/00h7gyj76 Sumitomo Metal Mining (Japan) 住友金属鉱山株式会社'), (80470, 'https://ror.org/00h9em455', 'en', 1, 'https://ror.org/00h9em455 Toronto Dementia Research Alliance'), (80471, 'https://ror.org/00hajxm04', 'fr', 1, 'https://ror.org/00hajxm04 Institut de Statistiques et d’Études Économiques du Burundi'), (80472, 'https://ror.org/00hb09z11', 'en', 1, 'https://ror.org/00hb09z11 Royal Saskatchewan Museum'), (80473, 'https://ror.org/00hgwte81', 'en', 1, 'https://ror.org/00hgwte81 Oregon Nanoscience and Microtechnologies Institute'), (80474, 'https://ror.org/00hmkqz52', 'es', 1, 'https://ror.org/00hmkqz52 Instituto Nacional de Ciencias Neurológicas National Institute of Neurological Sciences'), (80475, 'https://ror.org/00hn8pj83', 'en', 1, 'https://ror.org/00hn8pj83 Suzhou Vocational University 苏州市职业大学'), (80476, 'https://ror.org/00hq8t831', 'no_lang_code', 1, 'https://ror.org/00hq8t831 Ifm Therapeutics (United States)'), (80477, 'https://ror.org/00hsn1t88', 'no_lang_code', 1, 'https://ror.org/00hsn1t88 Inzen Therapeutics (United States)'), (80478, 'https://ror.org/00hsvaf31', 'en', 1, 'https://ror.org/00hsvaf31 Anesthesiology and Surgical Oncology Research Group'), (80479, 'https://ror.org/00ht8je70', 'en', 1, 'https://ror.org/00ht8je70 Inamori Foundation 公益財団法人稲盛財団'), (80480, 'https://ror.org/00htg6162', 'en', 1, 'https://ror.org/00htg6162 Florida Institute of Oceanography'), (80481, 'https://ror.org/00hv6g197', 'en', 1, 'https://ror.org/00hv6g197 Pacific Institute for Climate Solutions'), (80482, 'https://ror.org/00j0emq76', 'en', 1, 'https://ror.org/00j0emq76 Pontifical Biblical Institute Pontificio Istituto Biblico Pontificium Institutum Biblicum'), (80483, 'https://ror.org/00j15sg62', 'en', 1, 'https://ror.org/00j15sg62 Finnish Cancer Registry Suomen Syöpärekisteri'), (80484, 'https://ror.org/00j5bwe91', 'es', 1, 'https://ror.org/00j5bwe91 Clínica Las Condes'), (80485, 'https://ror.org/00j5mtz35', 'en', 1, 'https://ror.org/00j5mtz35 Ratio'), (80486, 'https://ror.org/00j6hr569', 'en', 1, 'https://ror.org/00j6hr569 Center for Digital Image Evaluation'), (80487, 'https://ror.org/00j6pqx59', 'de', 1, 'https://ror.org/00j6pqx59 Bayerisches Landesamt für Umwelt'), (80488, 'https://ror.org/00jaard37', 'en', 1, 'https://ror.org/00jaard37 Nagaoka National College of Technology 長岡工業高等専門学校'), (80489, 'https://ror.org/00jb67179', 'en', 1, 'https://ror.org/00jb67179 Gasol Foundation'), (80490, 'https://ror.org/00jdfsf63', 'en', 1, 'https://ror.org/00jdfsf63 Fundación Biomédica Galicia Sur Galicia Sur Biomedical Foundation'), (80491, 'https://ror.org/00je08e11', 'en', 1, 'https://ror.org/00je08e11 American Community Schools'), (80492, 'https://ror.org/00jfgrn87', 'en', 1, 'https://ror.org/00jfgrn87 Children''s Investment Fund Foundation'), (80493, 'https://ror.org/00jfmd461', 'fr', 1, 'https://ror.org/00jfmd461 L’Institut du Cancer Courlancy Reims'), (80494, 'https://ror.org/00jgbqj86', 'no_lang_code', 1, 'https://ror.org/00jgbqj86 AZTI'), (80495, 'https://ror.org/00jgcnx83', 'en', 1, 'https://ror.org/00jgcnx83 Nuclear Materials Authority'), (80496, 'https://ror.org/00jhf1r34', 'en', 1, 'https://ror.org/00jhf1r34 Sieć Badawcza Łukasiewicz - Instytut Chemii Przemysłowej Łukasiewicz Research Network - Industrial Chemistry Institute'), (80497, 'https://ror.org/00jhqgj32', 'en', 1, 'https://ror.org/00jhqgj32 Nantucket Cottage Hospital'), (80498, 'https://ror.org/00jjh0n63', 'en', 1, 'https://ror.org/00jjh0n63 Forschungsinstitut für Philosophie Hannover Research Institute for Philosophy Hannover'), (80499, 'https://ror.org/00jkpa835', 'no_lang_code', 1, 'https://ror.org/00jkpa835 Prothena (United States)'), (80500, 'https://ror.org/00jpzvz45', 'en', 1, 'https://ror.org/00jpzvz45 Max Planck Institute for Legal History and Legal Theory Max-Planck-Institut für Rechtsgeschichte und Rechtstheorie'), (80501, 'https://ror.org/00jqn4k83', 'en', 1, 'https://ror.org/00jqn4k83 Society for Neuroscience in Anesthesiology and Critical Care'), (80502, 'https://ror.org/00jrbwm32', 'no_lang_code', 1, 'https://ror.org/00jrbwm32 Acibadem City Clinic'), (80503, 'https://ror.org/00jrmky87', 'it', 1, 'https://ror.org/00jrmky87 Puglia Salute'), (80504, 'https://ror.org/00jsj7d19', 'en', 1, 'https://ror.org/00jsj7d19 The Institute of Legislation and Comparative Law under the Government of the Russian Federation'), (80505, 'https://ror.org/00jt22t02', 'de', 1, 'https://ror.org/00jt22t02 Deutsche Morbus Crohn/Colitis ulcerosa Vereinigung'), (80506, 'https://ror.org/00jtmm480', 'en', 1, 'https://ror.org/00jtmm480 Japan Industrial Safety and Health Association 特別民間法人中央労働災害防止協会'), (80507, 'https://ror.org/00jv65847', 'en', 1, 'https://ror.org/00jv65847 Gouvernement wallon Walloon Government'), (80508, 'https://ror.org/00jw1bg20', 'sv', 1, 'https://ror.org/00jw1bg20 Malmö Museer'), (80509, 'https://ror.org/00jx2dc23', 'en', 1, 'https://ror.org/00jx2dc23 Radiation Research Society'), (80510, 'https://ror.org/00jxaym78', 'en', 1, 'https://ror.org/00jxaym78 The Land Institute'), (80511, 'https://ror.org/00jxshx33', 'en', 1, 'https://ror.org/00jxshx33 South Valley University جامعة جنوب الوادي'), (80512, 'https://ror.org/00jyds089', 'no_lang_code', 1, 'https://ror.org/00jyds089 NotABook (United States)'), (80513, 'https://ror.org/00jypd850', 'en', 1, 'https://ror.org/00jypd850 Optica'), (80514, 'https://ror.org/00jzhf358', 'en', 1, 'https://ror.org/00jzhf358 Kronotsky Reserve Кроноцкий заповедник'), (80515, 'https://ror.org/00k0fxx81', 'en', 1, 'https://ror.org/00k0fxx81 Japan Society of Home Economics 一般社団法人日本家政学会'), (80516, 'https://ror.org/00k1zme04', 'en', 1, 'https://ror.org/00k1zme04 Singapore Cancer Society'), (80517, 'https://ror.org/00k4dpj65', 'en', 1, 'https://ror.org/00k4dpj65 Privolshky Les Nature Reserve Приволжская лесостепь заповедник'), (80518, 'https://ror.org/00k642b80', 'no_lang_code', 1, 'https://ror.org/00k642b80 Alibaba Group (China) 阿里巴巴集团控股有限公司'), (80519, 'https://ror.org/00k6x7m82', 'it', 1, 'https://ror.org/00k6x7m82 Associazione Calabrese di Epatologia'), (80520, 'https://ror.org/00kcd6x60', 'en', 1, 'https://ror.org/00kcd6x60 Tohoku University Hospital 東北大学病院'), (80521, 'https://ror.org/00kce5954', 'no_lang_code', 1, 'https://ror.org/00kce5954 L3Harris (United Kingdom)'), (80522, 'https://ror.org/00kf4vm79', 'en', 1, 'https://ror.org/00kf4vm79 National Institute of Technology, Ichinoseki College 一関工業高等専門学校'), (80523, 'https://ror.org/00kfe0n78', 'en', 1, 'https://ror.org/00kfe0n78 Gastroenterology Group of Rochester'), (80524, 'https://ror.org/00kg7b273', 'en', 1, 'https://ror.org/00kg7b273 Institute of Feed and Agriculture of Podillya of the National Academy of Agrarian Sciences Інститут кормів та сільського господарства Поділля Національної академії аграрних наук України'), (80525, 'https://ror.org/00kj82e71', 'en', 1, 'https://ror.org/00kj82e71 Southeast Watershed Research Laboratory'), (80526, 'https://ror.org/00kk62m43', 'no_lang_code', 1, 'https://ror.org/00kk62m43 MBMed (Argentina)'), (80527, 'https://ror.org/00km9fk15', 'en', 1, 'https://ror.org/00km9fk15 Medical Defence Union'), (80528, 'https://ror.org/00kmxt141', 'en', 1, 'https://ror.org/00kmxt141 Université d''État de winona Winona State University'), (80529, 'https://ror.org/00knqp290', 'en', 1, 'https://ror.org/00knqp290 Chinese Academy of Inspection and Quarantine 中国检验检疫科学研究院'), (80530, 'https://ror.org/00kpkeq42', 'no_lang_code', 1, 'https://ror.org/00kpkeq42 EPC Natural Products 伊比西植物药物技术有限公司'), (80531, 'https://ror.org/00kq45e22', 'no_lang_code', 1, 'https://ror.org/00kq45e22 Ocellus (United States)'), (80532, 'https://ror.org/00kqtef53', 'en', 1, 'https://ror.org/00kqtef53 Beijing Hypertension Prevention Association 北京高血压防治协会'), (80533, 'https://ror.org/00kr65d46', 'en', 1, 'https://ror.org/00kr65d46 People in Need Člověk v Tísni'), (80534, 'https://ror.org/00krzbm55', 'en', 1, 'https://ror.org/00krzbm55 Luquillo Long Term Ecological Research'), (80535, 'https://ror.org/00ks90424', 'no_lang_code', 1, 'https://ror.org/00ks90424 Tauri Group (United States)'), (80536, 'https://ror.org/00kv49k33', 'no_lang_code', 1, 'https://ror.org/00kv49k33 KRI 株式会社KRI'), (80537, 'https://ror.org/00kvcw656', 'en', 1, 'https://ror.org/00kvcw656 Canadian Society for International Health Société Canadienne de Santé Internationale'), (80538, 'https://ror.org/00kvw1g26', 'en', 1, 'https://ror.org/00kvw1g26 American Society for Bone and Mineral Research'), (80539, 'https://ror.org/00kwbng41', 'en', 1, 'https://ror.org/00kwbng41 Spinal Cord Injury Ontario'), (80540, 'https://ror.org/00kyj9h67', 'no_lang_code', 1, 'https://ror.org/00kyj9h67 Horizon Therapeutics (United States)'), (80541, 'https://ror.org/00kz6qq24', 'en', 1, 'https://ror.org/00kz6qq24 S.N. Bose National Centre for Basic Sciences সত্যেন্দ্রনাথ বসু জাতীয় মৌলিক বিজ্ঞান কেন্দ্র'), (80542, 'https://ror.org/00m05k208', 'en', 1, 'https://ror.org/00m05k208 National Soil Dynamics Research Laboratory'), (80543, 'https://ror.org/00m0k5p91', 'es', 1, 'https://ror.org/00m0k5p91 Centro Científico Tecnológico de Valparaíso'), (80544, 'https://ror.org/00m2ky193', 'no_lang_code', 1, 'https://ror.org/00m2ky193 Biohaven Pharmaceuticals (United States)'), (80545, 'https://ror.org/00m43ek07', 'fr', 1, 'https://ror.org/00m43ek07 Laboratoire Interdisciplinaire des Énergies de Demain'), (80546, 'https://ror.org/00m44rf61', 'en', 1, 'https://ror.org/00m44rf61 New Tokyo Hospital 医療法人社団誠馨会新東京病院'), (80547, 'https://ror.org/00m5fe987', 'en', 1, 'https://ror.org/00m5fe987 FoAM'), (80548, 'https://ror.org/00m5m4846', 'en', 1, 'https://ror.org/00m5m4846 The Swedish Association of Health Professionals Vårdförbundet'), (80549, 'https://ror.org/00m7gt169', 'no_lang_code', 1, 'https://ror.org/00m7gt169 Thomson Reuters (United States)'), (80550, 'https://ror.org/00mbm2c65', 'en', 1, 'https://ror.org/00mbm2c65 Field Projects International'), (80551, 'https://ror.org/00mc77d93', 'it', 1, 'https://ror.org/00mc77d93 Istituti Clinici Scientifici Maugeri'), (80552, 'https://ror.org/00mc8r278', 'no_lang_code', 1, 'https://ror.org/00mc8r278 Lee & Man Chemical Company (China) 理文化工有限公司'), (80553, 'https://ror.org/00mcfe977', 'en', 1, 'https://ror.org/00mcfe977 Academy of Family Physicians of India'), (80554, 'https://ror.org/00mcmgh21', 'no_lang_code', 1, 'https://ror.org/00mcmgh21 Gene and GreenTK (France)'), (80555, 'https://ror.org/00mcxye41', 'en', 1, 'https://ror.org/00mcxye41 National Biodiversity Network Trust'), (80556, 'https://ror.org/00me1fb23', 'en', 1, 'https://ror.org/00me1fb23 Retinal Consultants of Arizona'), (80557, 'https://ror.org/00mebz780', 'en', 1, 'https://ror.org/00mebz780 Brain Injury Association of America'), (80558, 'https://ror.org/00men8398', 'no_lang_code', 1, 'https://ror.org/00men8398 Infant'), (80559, 'https://ror.org/00meyfe69', 'es', 1, 'https://ror.org/00meyfe69 German Peruvian Private University Universidad Privada Peruano Alemana'), (80560, 'https://ror.org/00mhkcm52', 'no_lang_code', 1, 'https://ror.org/00mhkcm52 Olin Corporation (United States)'), (80561, 'https://ror.org/00mht5s60', 'no_lang_code', 1, 'https://ror.org/00mht5s60 Joyson Safety Systems (Japan) ジョイソン セイフティ システムズ ジャパン株式会社'), (80562, 'https://ror.org/00mkh7345', 'en', 1, 'https://ror.org/00mkh7345 Hubbard Brook Long Term Ecological Research'), (80563, 'https://ror.org/00mm1qk40', 'en', 1, 'https://ror.org/00mm1qk40 PLA Information Engineering University 中国人民解放军信息工程大学'), (80564, 'https://ror.org/00mmgx583', 'en', 1, 'https://ror.org/00mmgx583 Suratthani Rajabhat University มหาวิทยาลัยราชภัฏสุราษฎร์ธานี'), (80565, 'https://ror.org/00msd7q84', 'en', 1, 'https://ror.org/00msd7q84 Canadian Orthopaedic Foundation'), (80566, 'https://ror.org/00mtmnw70', 'no_lang_code', 1, 'https://ror.org/00mtmnw70 Biosyntia (Denmark)'), (80567, 'https://ror.org/00mtny680', 'en', 1, 'https://ror.org/00mtny680 Riyadh Armed Forces Hospital مدينة الأمير سلطان الطبية العسكرية'), (80568, 'https://ror.org/00mwcha69', 'en', 1, 'https://ror.org/00mwcha69 Akademi Keperawatan YKY'), (80569, 'https://ror.org/00n4k4n97', 'en', 1, 'https://ror.org/00n4k4n97 Providence Health & Services'), (80570, 'https://ror.org/00n5t8830', 'en', 1, 'https://ror.org/00n5t8830 Noosa Hospital'), (80571, 'https://ror.org/00n635c12', 'en', 1, 'https://ror.org/00n635c12 Leeds and York Partnership NHS Foundation Trust'), (80572, 'https://ror.org/00n6b3s33', 'no_lang_code', 1, 'https://ror.org/00n6b3s33 Mission Therapeutics (United Kingdom)'), (80573, 'https://ror.org/00n9sps80', 'en', 1, 'https://ror.org/00n9sps80 Center for Muscle Health and Neuromuscular Disorders'), (80574, 'https://ror.org/00naatv40', 'no_lang_code', 1, 'https://ror.org/00naatv40 Cross Compass (Japan)'), (80575, 'https://ror.org/00nc5f834', 'en', 1, 'https://ror.org/00nc5f834 Regional Centre for Biotechnology क्षेत्रीय जैवप्रौद्योगिकी केंद्र'), (80576, 'https://ror.org/00ndt8971', 'en', 1, 'https://ror.org/00ndt8971 California Botanical Society'), (80577, 'https://ror.org/00nf3nv81', 'fr', 1, 'https://ror.org/00nf3nv81 ESME - School of Engineering ESME - École d’ingénieurs pluridisciplinaires'), (80578, 'https://ror.org/00ng7yn96', 'en', 1, 'https://ror.org/00ng7yn96 Catholic Medical Center'), (80579, 'https://ror.org/00nhc9061', 'no_lang_code', 1, 'https://ror.org/00nhc9061 Plasmionique (Canada)'), (80580, 'https://ror.org/00nqb1v70', 'en', 1, 'https://ror.org/00nqb1v70 University of Tennessee at Chattanooga Université du tennessee à chattanooga'), (80581, 'https://ror.org/00nr3tg23', 'en', 1, 'https://ror.org/00nr3tg23 BioVale'), (80582, 'https://ror.org/00ns0qg75', 'en', 1, 'https://ror.org/00ns0qg75 Parkway Cancer Centre'), (80583, 'https://ror.org/00ns93f55', 'en', 1, 'https://ror.org/00ns93f55 Erwin L. Hahn Institute for Magnetic Resonance Imaging'), (80584, 'https://ror.org/00nst6k08', 'no_lang_code', 1, 'https://ror.org/00nst6k08 Aaniiih Nakoda College'), (80585, 'https://ror.org/00nsyd297', 'en', 1, 'https://ror.org/00nsyd297 Widener University'), (80586, 'https://ror.org/00ntrnw83', 'en', 1, 'https://ror.org/00ntrnw83 Cục Y tế Dự phòng General Department of Preventive Medicine'), (80587, 'https://ror.org/00ntzjs22', 'en', 1, 'https://ror.org/00ntzjs22 Chartered Institution of Building Services Engineers'), (80588, 'https://ror.org/00nvc8n52', 'en', 1, 'https://ror.org/00nvc8n52 Hogg Foundation for Mental Health'), (80589, 'https://ror.org/00nw4tw41', 'no_lang_code', 1, 'https://ror.org/00nw4tw41 InterGrain'), (80590, 'https://ror.org/00nwx8810', 'en', 1, 'https://ror.org/00nwx8810 National Council of University Research Administrators'), (80591, 'https://ror.org/00nzavp26', 'es', 1, 'https://ror.org/00nzavp26 Hospital Infantil de México Federico Gómez'), (80592, 'https://ror.org/00nzx7971', 'en', 1, 'https://ror.org/00nzx7971 Mycological Society of America'), (80593, 'https://ror.org/00p23dy23', 'en', 1, 'https://ror.org/00p23dy23 Cherokee Nation'), (80594, 'https://ror.org/00p3egw50', 'no_lang_code', 1, 'https://ror.org/00p3egw50 The Hyve (Netherlands)'), (80595, 'https://ror.org/00p4am161', 'no_lang_code', 1, 'https://ror.org/00p4am161 SCREEN (Japan) 株式会社SCREENホールディングス'), (80596, 'https://ror.org/00p5prq49', 'en', 1, 'https://ror.org/00p5prq49 Advanced Institute of Materials Science 公益財団法人特殊無機材料研究所'), (80597, 'https://ror.org/00p7bse27', 'en', 1, 'https://ror.org/00p7bse27 Bozeman Health Deaconess Hospital'), (80598, 'https://ror.org/00p81j087', 'en', 1, 'https://ror.org/00p81j087 Eiraght Ashoonagh Vannin Manx National Heritage'), (80599, 'https://ror.org/00p86m346', 'en', 1, 'https://ror.org/00p86m346 Singapore Maritime Institute'), (80600, 'https://ror.org/00p8cpg07', 'en', 1, 'https://ror.org/00p8cpg07 American Philosophical Association'), (80601, 'https://ror.org/00p9kvn81', 'no_lang_code', 1, 'https://ror.org/00p9kvn81 Pacific Radiology (New Zealand)'), (80602, 'https://ror.org/00paezp73', 'no_lang_code', 1, 'https://ror.org/00paezp73 Ixico (United Kingdom)'), (80603, 'https://ror.org/00pafka32', 'en', 1, 'https://ror.org/00pafka32 Wayo Women''s University 和洋女子大学'), (80604, 'https://ror.org/00pb0ac76', 'en', 1, 'https://ror.org/00pb0ac76 Institute for Marine Biological Resources and Biotechnology Istituto per le Risorse Biologiche e le Biotecnologie Marine'), (80605, 'https://ror.org/00pbv8f56', 'it', 1, 'https://ror.org/00pbv8f56 Società Italiana di Cardiologia'), (80606, 'https://ror.org/00pfjsb13', 'en', 1, 'https://ror.org/00pfjsb13 International University School of Medicine'), (80607, 'https://ror.org/00pj63h42', 'en', 1, 'https://ror.org/00pj63h42 Chinese Arctic and Antarctic Administration 国家海洋局极地考察办公室'), (80608, 'https://ror.org/00pjgxh97', 'de', 1, 'https://ror.org/00pjgxh97 Universitätsklinikum Tübingen'), (80609, 'https://ror.org/00pkx4k51', 'en', 1, 'https://ror.org/00pkx4k51 Tsinghua Sichuan Energy Internet Research Institute'), (80610, 'https://ror.org/00pm7rm97', 'no_lang_code', 1, 'https://ror.org/00pm7rm97 IBM (Germany)'), (80611, 'https://ror.org/00pnht824', 'en', 1, 'https://ror.org/00pnht824 Institute of Agricultural Economics Belgrade Институт за економику пољопривреде Београд'), (80612, 'https://ror.org/00pr51480', 'en', 1, 'https://ror.org/00pr51480 Lute Society'), (80613, 'https://ror.org/00pvs0d78', 'en', 1, 'https://ror.org/00pvs0d78 Interuniversity Institute for Marine Sciences in Eilat המכון הבינאוניברסיטאי למדעי הים באילת'), (80614, 'https://ror.org/00pwma409', 'en', 1, 'https://ror.org/00pwma409 Advanced Technologies Application Center'), (80615, 'https://ror.org/00px17r71', 'no_lang_code', 1, 'https://ror.org/00px17r71 Biomica (Israel)'), (80616, 'https://ror.org/00pykpg61', 'es', 1, 'https://ror.org/00pykpg61 Instituto Interamericano de Derechos Humanos'), (80617, 'https://ror.org/00pz6pe93', 'de', 1, 'https://ror.org/00pz6pe93 SRH Klinikum Karlsbad-Langensteinbach'), (80618, 'https://ror.org/00q1zbc26', 'no_lang_code', 1, 'https://ror.org/00q1zbc26 Aclaris Therapeutics (United States)'), (80619, 'https://ror.org/00q2w1j53', 'en', 1, 'https://ror.org/00q2w1j53 Indian Statistical Institute भारतीय सांख्यिकीय संस्थान'), (80620, 'https://ror.org/00q5xgh71', 'en', 1, 'https://ror.org/00q5xgh71 Danish Medicines Agency Lægemiddelstyrelsen'), (80621, 'https://ror.org/00q7fqf35', 'en', 1, 'https://ror.org/00q7fqf35 California NanoSystems Institute'), (80622, 'https://ror.org/00q7vcm05', 'es', 1, 'https://ror.org/00q7vcm05 Centro de Investigaciones de Ecosistemas Costeros'), (80623, 'https://ror.org/00q7wcf52', 'en', 1, 'https://ror.org/00q7wcf52 National Measurement Standards Unit Standar Nasional Satuan Ukuran'), (80624, 'https://ror.org/00qdtba35', 'en', 1, 'https://ror.org/00qdtba35 Shandong Institute of Automation 山东省科学院自动化研究所成'), (80625, 'https://ror.org/00qf0yp70', 'en', 1, 'https://ror.org/00qf0yp70 Toho University Omori Medical Center 東邦大学医療センター大森病院'), (80626, 'https://ror.org/00qh9dx40', 'en', 1, 'https://ror.org/00qh9dx40 Shoklo Malaria Research Unit'), (80627, 'https://ror.org/00qjxh243', 'en', 1, 'https://ror.org/00qjxh243 Brazilian Micro and Small Enterprises Support Service Serviço Brasileiro de Apoio às Micro e Pequenas Empresas'), (80628, 'https://ror.org/00qk2nf71', 'en', 1, 'https://ror.org/00qk2nf71 Fiji National University'), (80629, 'https://ror.org/00qm1pk82', 'en', 1, 'https://ror.org/00qm1pk82 Kobe Kaisei Hospital 医療法人財団神戸海星病院'), (80630, 'https://ror.org/00qnrsq87', 'en', 1, 'https://ror.org/00qnrsq87 Invest Northern Ireland'), (80631, 'https://ror.org/00qsmvq80', 'en', 1, 'https://ror.org/00qsmvq80 Edwin Clark University'), (80632, 'https://ror.org/00qtxjg46', 'en', 1, 'https://ror.org/00qtxjg46 General Practitioners Research Institute'), (80633, 'https://ror.org/00qvd7w26', 'no_lang_code', 1, 'https://ror.org/00qvd7w26 Pivot'), (80634, 'https://ror.org/00qvkm315', 'en', 1, 'https://ror.org/00qvkm315 Saint Camillus International University of Health and Medical Sciences'), (80635, 'https://ror.org/00qvqt255', 'no_lang_code', 1, 'https://ror.org/00qvqt255 Pepsi (United States)'), (80636, 'https://ror.org/00qw43163', 'no_lang_code', 1, 'https://ror.org/00qw43163 Applied Research (United States)'), (80637, 'https://ror.org/00qwa8m09', 'no_lang_code', 1, 'https://ror.org/00qwa8m09 Immunitas Therapeutics (United States)'), (80638, 'https://ror.org/00qxv3c44', 'fr', 1, 'https://ror.org/00qxv3c44 IRT Jules Verne'), (80639, 'https://ror.org/00qyd2558', 'en', 1, 'https://ror.org/00qyd2558 Chiba Convention Bureau and International Center 公益財団法人 ちば国際コンベンションビューロー'), (80640, 'https://ror.org/00qzjvm58', 'en', 1, 'https://ror.org/00qzjvm58 Centers for Disease Control and Prevention'), (80641, 'https://ror.org/00r1f0w19', 'pt', 1, 'https://ror.org/00r1f0w19 Centro Universitário SATC'), (80642, 'https://ror.org/00r1w0907', 'en', 1, 'https://ror.org/00r1w0907 Knowledge Network for Biocomplexity'), (80643, 'https://ror.org/00r2p7t19', 'en', 1, 'https://ror.org/00r2p7t19 Northern Ireland Assembly'), (80644, 'https://ror.org/00r36fk75', 'en', 1, 'https://ror.org/00r36fk75 Ontario Drug Policy Research Network'), (80645, 'https://ror.org/00r4h6e02', 'no_lang_code', 1, 'https://ror.org/00r4h6e02 KrioSystem (Poland)'), (80646, 'https://ror.org/00r6snc96', 'en', 1, 'https://ror.org/00r6snc96 Centre for Arab Unity Studies مركز دراسات الوحدة العربية'), (80647, 'https://ror.org/00r7apq26', 'en', 1, 'https://ror.org/00r7apq26 ERN Board of Member States'), (80648, 'https://ror.org/00r86n020', 'en', 1, 'https://ror.org/00r86n020 Egypt Center for Research and Regenerative Medicine مركز البحوث الطبية والطب التجديدى'), (80649, 'https://ror.org/00r8a6s58', 'no_lang_code', 1, 'https://ror.org/00r8a6s58 Portola Pharmaceuticals (United States)'), (80650, 'https://ror.org/00r8w8f84', 'en', 1, 'https://ror.org/00r8w8f84 Mohammed V University Université Mohammed-V de Rabat جامعة محمد الخامس'), (80651, 'https://ror.org/00ramkd50', 'en', 1, 'https://ror.org/00ramkd50 Southern Connecticut State University'), (80652, 'https://ror.org/00rbyp854', 'en', 1, 'https://ror.org/00rbyp854 Institute of Experimental Botany named after V.F. Kuprevich of the National Academy of Sciences of Belarus Институт экспериментальной ботаники им. В. Ф. Купревича НАН Беларуси'), (80653, 'https://ror.org/00rcqs978', 'en', 1, 'https://ror.org/00rcqs978 Pennsylvania Department of Agriculture'), (80654, 'https://ror.org/00rd22143', 'fr', 1, 'https://ror.org/00rd22143 Mother and Child Face to Tropical Infections Mère et Enfant en Milieu Tropical'), (80655, 'https://ror.org/00refd139', 'en', 1, 'https://ror.org/00refd139 Association of Nurses in AIDS Care'), (80656, 'https://ror.org/00rfash91', 'en', 1, 'https://ror.org/00rfash91 Polar Knowledge Canada'), (80657, 'https://ror.org/00rfd5b88', 'en', 1, 'https://ror.org/00rfd5b88 The Seventh Affiliated Hospital of Sun Yat-sen University 中山大学附属第七医院'), (80658, 'https://ror.org/00rh36007', 'en', 1, 'https://ror.org/00rh36007 North District Hospital 北區醫院'), (80659, 'https://ror.org/00rmh8b04', 'en', 1, 'https://ror.org/00rmh8b04 Center for the Socioeconomic Impact of Environmental Policies Centro para el Impacto Socioeconómico de las Políticas Ambientales'), (80660, 'https://ror.org/00rmqcb06', 'en', 1, 'https://ror.org/00rmqcb06 Meteoceanics Institute for Complex System Science'), (80661, 'https://ror.org/00rngf163', 'no_lang_code', 1, 'https://ror.org/00rngf163 Karsa (Finland)'), (80662, 'https://ror.org/00rrrfr24', 'en', 1, 'https://ror.org/00rrrfr24 Hwa Chong Institution ஹ்வா சாங் பள்ளி 新加坡华侨中学'), (80663, 'https://ror.org/00rs6s651', 'es', 1, 'https://ror.org/00rs6s651 Museo de Historia Natural Museum of Natural History'), (80664, 'https://ror.org/00rw77p82', 'en', 1, 'https://ror.org/00rw77p82 Visim Nature Reserve Висимский государственный заповедник'), (80665, 'https://ror.org/00rx3f567', 'en', 1, 'https://ror.org/00rx3f567 Prison Reform Trust'), (80666, 'https://ror.org/00rx5mh03', 'no_lang_code', 1, 'https://ror.org/00rx5mh03 DeepBiome Therapeutics (United States)'), (80667, 'https://ror.org/00rxpqe74', 'en', 1, 'https://ror.org/00rxpqe74 Providence College'), (80668, 'https://ror.org/00s1sz824', 'en', 1, 'https://ror.org/00s1sz824 Beijing Institute of Big Data Research 北京大数据研究院'), (80669, 'https://ror.org/00s1xm844', 'en', 1, 'https://ror.org/00s1xm844 Kansas Historical Society'), (80670, 'https://ror.org/00s2ct942', 'no_lang_code', 1, 'https://ror.org/00s2ct942 iDirect Government (United States)'), (80671, 'https://ror.org/00s37wk05', 'de', 1, 'https://ror.org/00s37wk05 Arbeitsstelle für Kulturwissenschaftliche Forschungen'), (80672, 'https://ror.org/00s3fdw25', 'no_lang_code', 1, 'https://ror.org/00s3fdw25 Telekom Malaysia Berhad (Malaysia)'), (80673, 'https://ror.org/00s582952', 'es', 1, 'https://ror.org/00s582952 Instituto Nacional de Salud Mental "Honorio Delgado - Hideyo Noguchi" National Institute of Mental Health "Honorio Delgado - Hideyo Noguchi"'), (80674, 'https://ror.org/00s5a4h94', 'en', 1, 'https://ror.org/00s5a4h94 University City Science Center'), (80675, 'https://ror.org/00s614d66', 'no_lang_code', 1, 'https://ror.org/00s614d66 Sanraku Hospital 公益社団法人東京都教職員互助会三楽病院'), (80676, 'https://ror.org/00s786094', 'en', 1, 'https://ror.org/00s786094 General Medical Council'), (80677, 'https://ror.org/00s7e4d51', 'no_lang_code', 1, 'https://ror.org/00s7e4d51 Saertex (Germany)'), (80678, 'https://ror.org/00s8cz980', 'en', 1, 'https://ror.org/00s8cz980 Jubilee Clinical Research'), (80679, 'https://ror.org/00saq8k02', 'no_lang_code', 1, 'https://ror.org/00saq8k02 Immunai (United States)'), (80680, 'https://ror.org/00sat4n88', 'en', 1, 'https://ror.org/00sat4n88 Society for Experimental Biology and Medicine'), (80681, 'https://ror.org/00sb3pk12', 'en', 1, 'https://ror.org/00sb3pk12 Mercy Hospital and Medical Center'), (80682, 'https://ror.org/00sbfzz78', 'en', 1, 'https://ror.org/00sbfzz78 European Rhinologic Society'), (80683, 'https://ror.org/00seaxa44', 'en', 1, 'https://ror.org/00seaxa44 Department of Home Affairs'), (80684, 'https://ror.org/00sekdz59', 'en', 1, 'https://ror.org/00sekdz59 Flatiron Institute'), (80685, 'https://ror.org/00sesj155', 'en', 1, 'https://ror.org/00sesj155 Wellcome Trust Liverpool Glasgow Centre for Global Health Research'), (80686, 'https://ror.org/00sgkmj19', 'en', 1, 'https://ror.org/00sgkmj19 Thames Valley Archaeological Services'), (80687, 'https://ror.org/00sgxyw28', 'no_lang_code', 1, 'https://ror.org/00sgxyw28 Comcast (United States)'), (80688, 'https://ror.org/00shsf120', 'en', 1, 'https://ror.org/00shsf120 National University of Ireland Ollscoil na hÉireann'), (80689, 'https://ror.org/00sm25y28', 'en', 1, 'https://ror.org/00sm25y28 Society of Tribologists and Lubrication Engineers'), (80690, 'https://ror.org/00snfqn58', 'pt', 1, 'https://ror.org/00snfqn58 Foundation for Science and Technology Fundação para a Ciência e Tecnologia, Fundação para a Ciência e a Tecnologia'), (80691, 'https://ror.org/00sngv739', 'en', 1, 'https://ror.org/00sngv739 Herder Institute Herder-Institut für Historische Ostmitteleuropaforschung – Institut der Leibniz-Gemeinschaft'), (80692, 'https://ror.org/00srf2p02', 'en', 1, 'https://ror.org/00srf2p02 FORTH Institute of Mediterranean Studies Ινστιτούτου Μεσογειακών Σπουδών'), (80693, 'https://ror.org/00sryr473', 'en', 1, 'https://ror.org/00sryr473 Malaysian Society of Nephrology'), (80694, 'https://ror.org/00sscbg84', 'en', 1, 'https://ror.org/00sscbg84 Khabarovsk State University of Economics and Law Хабаровская государственная академия экономики и права'), (80695, 'https://ror.org/00swwa029', 'en', 1, 'https://ror.org/00swwa029 American Association of Nurse Practitioners'), (80696, 'https://ror.org/00szq9g79', 'de', 1, 'https://ror.org/00szq9g79 Sonnenhalde (Switzerland)'), (80697, 'https://ror.org/00t0q9z88', 'en', 1, 'https://ror.org/00t0q9z88 BioXFEL Science and Technology Center'), (80698, 'https://ror.org/00t0rcy29', 'en', 1, 'https://ror.org/00t0rcy29 Fraunhofer Institute for Production Technology IPT Fraunhofer-Institut für Produktionstechnologie IPT'), (80699, 'https://ror.org/00t10qd56', 'en', 1, 'https://ror.org/00t10qd56 Michigan Department of Natural Resources'), (80700, 'https://ror.org/00t2dw182', 'no_lang_code', 1, 'https://ror.org/00t2dw182 Zora Biosciences (Finland)'), (80701, 'https://ror.org/00t2n8418', 'en', 1, 'https://ror.org/00t2n8418 The Institute of Conservation'), (80702, 'https://ror.org/00t2prd39', 'en', 1, 'https://ror.org/00t2prd39 Thaksin University มหาวิทยาลัยทักษิณ'), (80703, 'https://ror.org/00t65nv54', 'en', 1, 'https://ror.org/00t65nv54 Faraday Institute for Science and Religion'), (80704, 'https://ror.org/00t6gsr31', 'en', 1, 'https://ror.org/00t6gsr31 Leeds Cares'), (80705, 'https://ror.org/00t77bz53', 'en', 1, 'https://ror.org/00t77bz53 Foreign Agricultural Service'), (80706, 'https://ror.org/00t89kj24', 'en', 1, 'https://ror.org/00t89kj24 Mackay Medical College 馬偕醫學院'), (80707, 'https://ror.org/00t8bew53', 'no_lang_code', 1, 'https://ror.org/00t8bew53 Ionis Pharmaceuticals (United States)'), (80708, 'https://ror.org/00ta7av32', 'en', 1, 'https://ror.org/00ta7av32 National Center for Communicable Diseases ХАЛДВАРТ ӨВЧИН СУДЛАЛЫН ҮНДЭСНИЙ ТӨВ'), (80709, 'https://ror.org/00tbjqq75', 'en', 1, 'https://ror.org/00tbjqq75 Russian Federal Centre of Forensic Science of the Ministry of Justice of the Russian Federation Российский Федеральный центр судебной экспертизы при Министерстве юстиции Российской Федерации'), (80710, 'https://ror.org/00td68a17', 'da', 1, 'https://ror.org/00td68a17 Bispebjerg Hospital'), (80711, 'https://ror.org/00tfqpy41', 'es', 1, 'https://ror.org/00tfqpy41 National Agrarian Health Service Servicio Nacional de Sanidad Agraria'), (80712, 'https://ror.org/00tr5rr68', 'pt', 1, 'https://ror.org/00tr5rr68 Laboratório DNA Center'), (80713, 'https://ror.org/00tr7ny14', 'en', 1, 'https://ror.org/00tr7ny14 Mental Health Research Canada Recherche en Santé Mentale Canada'), (80714, 'https://ror.org/00trkmr27', 'en', 1, 'https://ror.org/00trkmr27 Institute for Diagnostic Imaging and Research of the Skin and Soft Tissues Instituto de Investigacion y Diagnostico por Imagenes en Piel y Tejidos Blandos'), (80715, 'https://ror.org/00tsqex91', 'en', 1, 'https://ror.org/00tsqex91 Te Pūkenga'), (80716, 'https://ror.org/00twmyj12', 'it', 1, 'https://ror.org/00twmyj12 Ospedale Vincenzo Cervello'), (80717, 'https://ror.org/00v053551', 'en', 1, 'https://ror.org/00v053551 Osaka City General Hospital 地方独立行政法人大阪市民病院機構大阪市立総合医療センター'), (80718, 'https://ror.org/00v0z9322', 'en', 1, 'https://ror.org/00v0z9322 Moscow Institute of Physics and Technology Московский физико-технический институт'), (80719, 'https://ror.org/00v337f26', 'fr', 1, 'https://ror.org/00v337f26 Conférence Universitaire de Suisse Occidentale'), (80720, 'https://ror.org/00v50wt26', 'no_lang_code', 1, 'https://ror.org/00v50wt26 Single Cell Discoveries (Netherlands)'), (80721, 'https://ror.org/00v5gqm66', 'en', 1, 'https://ror.org/00v5gqm66 China Institute of Atomic Energy 中国原子能科学研究院'), (80722, 'https://ror.org/00v8p7w89', 'en', 1, 'https://ror.org/00v8p7w89 National Institute of Justice'), (80723, 'https://ror.org/00vavgj08', 'no_lang_code', 1, 'https://ror.org/00vavgj08 GI Innovation (South Korea) 지아이이노베이션'), (80724, 'https://ror.org/00vbdjc22', 'en', 1, 'https://ror.org/00vbdjc22 Institute of Physiology National Academy of Sciences of Belarus ИНСТИТУТ ФИЗИОЛОГИИ НАЦИОНАЛЬНОЙ АКАДЕМИИ НАУК БЕЛАРУСИ'), (80725, 'https://ror.org/00vcj2z66', 'en', 1, 'https://ror.org/00vcj2z66 Musée royal de l''Ontario Royal Ontario Museum'), (80726, 'https://ror.org/00vd8cq28', 'en', 1, 'https://ror.org/00vd8cq28 Tree Fruit Research Laboratory'), (80727, 'https://ror.org/00vdyrj80', 'en', 1, 'https://ror.org/00vdyrj80 Henan Academy of Agricultural Sciences 河南省农业科学院'), (80728, 'https://ror.org/00ve2vg23', 'en', 1, 'https://ror.org/00ve2vg23 FORTH Institute of Petroleum Research Ινστιτούτο Έρευνας Πετρελαίου'), (80729, 'https://ror.org/00vez3k45', 'en', 1, 'https://ror.org/00vez3k45 British Pain Society'), (80730, 'https://ror.org/00vg4zj96', 'no_lang_code', 1, 'https://ror.org/00vg4zj96 Next Interactions (United States)'), (80731, 'https://ror.org/00vh00724', 'en', 1, 'https://ror.org/00vh00724 International Institute for Molecular Oncology'), (80732, 'https://ror.org/00vh6hg12', 'de', 1, 'https://ror.org/00vh6hg12 Hirslanden Salem-Spital'), (80733, 'https://ror.org/00vj4fj91', 'en', 1, 'https://ror.org/00vj4fj91 Kenya Fisheries Service'), (80734, 'https://ror.org/00vk9xr10', 'en', 1, 'https://ror.org/00vk9xr10 Caucasus Research Resource Centers კავკასიის კვლევითი რესურსების ცენტრების'), (80735, 'https://ror.org/00vn06n10', 'en', 1, 'https://ror.org/00vn06n10 Simula Research Laboratory'), (80736, 'https://ror.org/00vn9zp29', 'en', 1, 'https://ror.org/00vn9zp29 International Institute for Sustainability Australia'), (80737, 'https://ror.org/00vp58v14', 'en', 1, 'https://ror.org/00vp58v14 American Society of Agricultural and Biological Engineers'), (80738, 'https://ror.org/00vp5ry21', 'en', 1, 'https://ror.org/00vp5ry21 Iranshahr University دانشگاه علوم پزشکی و خدمات بهداشتی درمانی ایرانشهر'), (80739, 'https://ror.org/00vpxf870', 'en', 1, 'https://ror.org/00vpxf870 Grand Teton National Park'), (80740, 'https://ror.org/00vq6eh39', 'en', 1, 'https://ror.org/00vq6eh39 American Headache Society'), (80741, 'https://ror.org/00vqs2b71', 'no_lang_code', 1, 'https://ror.org/00vqs2b71 JCR Pharmaceuticals (Japan) JCRファーマ株式会社'), (80742, 'https://ror.org/00vqyrr20', 'en', 1, 'https://ror.org/00vqyrr20 Platov South-Russian State Polytechnic University Южно-Российский государственный политехнический университет (НПИ) имени М.И. Платова'), (80743, 'https://ror.org/00vrhtt42', 'no_lang_code', 1, 'https://ror.org/00vrhtt42 Wessling (Hungary)'), (80744, 'https://ror.org/00vs06289', 'en', 1, 'https://ror.org/00vs06289 European Physical Society'), (80745, 'https://ror.org/00vs1pz50', 'en', 1, 'https://ror.org/00vs1pz50 Ministry of Internal Affairs and Communications 総務大臣'), (80746, 'https://ror.org/00vwzq490', 'no_lang_code', 1, 'https://ror.org/00vwzq490 Blazegraph (United States)'), (80747, 'https://ror.org/00vx54857', 'en', 1, 'https://ror.org/00vx54857 Ezhou Central Hospital 鄂州市中心医院'), (80748, 'https://ror.org/00vxae445', 'en', 1, 'https://ror.org/00vxae445 Canadian Egg Marketing Agency'), (80749, 'https://ror.org/00vyp4f52', 'no_lang_code', 1, 'https://ror.org/00vyp4f52 Wikov (Czechia)'), (80750, 'https://ror.org/00vyr7c31', 'nl', 1, 'https://ror.org/00vyr7c31 Rode Kruis Ziekenhuis'), (80751, 'https://ror.org/00w109h91', 'it', 1, 'https://ror.org/00w109h91 Istituto S.Anna Crotone'), (80752, 'https://ror.org/00w1xt505', 'en', 1, 'https://ror.org/00w1xt505 Hunter Genetics'), (80753, 'https://ror.org/00w1zvy92', 'en', 1, 'https://ror.org/00w1zvy92 Tokyo Metropolitan Institute of Public Health 東京都健康安全研究センター'), (80754, 'https://ror.org/00w3m6887', 'en', 1, 'https://ror.org/00w3m6887 Luqman Unani Medical College Hospital and Research Center'), (80755, 'https://ror.org/00w4zv247', 'en', 1, 'https://ror.org/00w4zv247 Southern California Reproductive Center'); INSERT INTO `rors` VALUES (80756, 'https://ror.org/00w603503', 'es', 1, 'https://ror.org/00w603503 Centro Nacional de Medicina Tropical National Centre of Tropical Medicine'), (80757, 'https://ror.org/00w9hey63', 'en', 1, 'https://ror.org/00w9hey63 Directorate General for Communications Networks, Content and Technology Kommunikationsnetze, Inhalte und Technologien Réseaux de communication, contenu et technologies'), (80758, 'https://ror.org/00wazyk32', 'en', 1, 'https://ror.org/00wazyk32 Centre Max Planck - Université d''Ottawa pour la Photonique Extrême et Quantique Max Planck - University of Ottawa Centre for Extreme and Quantum Photonics'), (80759, 'https://ror.org/00wb4mk85', 'en', 1, 'https://ror.org/00wb4mk85 OpenCitations'), (80760, 'https://ror.org/00wbzaf78', 'es', 1, 'https://ror.org/00wbzaf78 Con Vida Foundation Fundación Con Vida'), (80761, 'https://ror.org/00wcwkf45', 'en', 1, 'https://ror.org/00wcwkf45 Korean Association for the Study of Intestinal Diseases 대한장연구학회'), (80762, 'https://ror.org/00wdyp114', 'en', 1, 'https://ror.org/00wdyp114 Indian Academy of Sciences'), (80763, 'https://ror.org/00we5dk78', 'en', 1, 'https://ror.org/00we5dk78 American Society of Ichthyologists and Herpetologists'), (80764, 'https://ror.org/00wj6x496', 'en', 1, 'https://ror.org/00wj6x496 Institut de Recherche en Immunologie et Cancérologie Institute for Research in Immunology and Cancer'), (80765, 'https://ror.org/00wk22n41', 'en', 1, 'https://ror.org/00wk22n41 Nederlandse Vereniging van Hemofilie-Patiënten Netherlands Haemophilia Society'), (80766, 'https://ror.org/00wkwdc38', 'fr', 1, 'https://ror.org/00wkwdc38 Institut de Santé et de Sécurité au Travail معهد الصحة و السلامة المهنية بتونس'), (80767, 'https://ror.org/00wq1a296', 'en', 1, 'https://ror.org/00wq1a296 American Institute for Contemporary German Studies'), (80768, 'https://ror.org/00wqjhh20', 'no_lang_code', 1, 'https://ror.org/00wqjhh20 Umicore (United States)'), (80769, 'https://ror.org/00wrafe19', 'de', 1, 'https://ror.org/00wrafe19 Hirslanden Klinik Aarau'), (80770, 'https://ror.org/00wthd003', 'no_lang_code', 1, 'https://ror.org/00wthd003 Allergan (Ireland)'), (80771, 'https://ror.org/00wv18f77', 'en', 1, 'https://ror.org/00wv18f77 Institut Papst Benedikt XVI. Pope Benedict XVI Institute'), (80772, 'https://ror.org/00wvavs63', 'en', 1, 'https://ror.org/00wvavs63 Association for Science ასოციაცია მეცნიერებისათვის'), (80773, 'https://ror.org/00wxex667', 'en', 1, 'https://ror.org/00wxex667 Global Fishing Watch'), (80774, 'https://ror.org/00wykxp39', 'en', 1, 'https://ror.org/00wykxp39 Nelson Marlborough Institute of Technology'), (80775, 'https://ror.org/00x0t3508', 'en', 1, 'https://ror.org/00x0t3508 American Iron and Steel Institute'), (80776, 'https://ror.org/00x0z1472', 'en', 1, 'https://ror.org/00x0z1472 Templeton World Charity Foundation'), (80777, 'https://ror.org/00x143s74', 'en', 1, 'https://ror.org/00x143s74 Homes England'), (80778, 'https://ror.org/00x2kwy36', 'en', 1, 'https://ror.org/00x2kwy36 Coordinating Research Council'), (80779, 'https://ror.org/00x69dn41', 'en', 1, 'https://ror.org/00x69dn41 ENEA Centro Ricerche Portici ENEA Portici Research Centre'), (80780, 'https://ror.org/00x6ysg61', 'nl', 1, 'https://ror.org/00x6ysg61 Stichting Oogfonds Nederland'), (80781, 'https://ror.org/00xddhq60', 'no_lang_code', 1, 'https://ror.org/00xddhq60 Al-Ahliyya Amman University جامعة عمان الأهلية'), (80782, 'https://ror.org/00xdnjz02', 'es', 1, 'https://ror.org/00xdnjz02 Fundación Valle del Lili'), (80783, 'https://ror.org/00xfx4h06', 'pt', 1, 'https://ror.org/00xfx4h06 Hospital Santa Paula'), (80784, 'https://ror.org/00xfy8b60', 'en', 1, 'https://ror.org/00xfy8b60 Congregation Emanu El of New York'), (80785, 'https://ror.org/00xj3b267', 'no_lang_code', 1, 'https://ror.org/00xj3b267 GKN (Japan) GKNドライブラインジャパン株式会社'), (80786, 'https://ror.org/00xj7pv34', 'en', 1, 'https://ror.org/00xj7pv34 Max Planck - Harvard Research Center for the Archaeoscience of the Ancient Mediterranean'), (80787, 'https://ror.org/00xjcve44', 'en', 1, 'https://ror.org/00xjcve44 Center for Personalized Cancer Treatment'), (80788, 'https://ror.org/00xmy4x78', 'en', 1, 'https://ror.org/00xmy4x78 Nagano Prefectural Suzaka Hospital 長野県立信州医療センター'), (80789, 'https://ror.org/00xqzp862', 'en', 1, 'https://ror.org/00xqzp862 Von Hippel Lindau Alliance'), (80790, 'https://ror.org/00xs4kt25', 'en', 1, 'https://ror.org/00xs4kt25 Gifu City Women''s College 岐阜市立女子短期大学'), (80791, 'https://ror.org/00xsdn005', 'en', 1, 'https://ror.org/00xsdn005 Kanazawa University Hospital 金沢大学附属病院'), (80792, 'https://ror.org/00xwjya15', 'de', 1, 'https://ror.org/00xwjya15 Stiftung der Deutschen Wirtschaft'), (80793, 'https://ror.org/00xyb8f56', 'en', 1, 'https://ror.org/00xyb8f56 Massachusetts Medical Society'), (80794, 'https://ror.org/00xzdzk88', 'no_lang_code', 1, 'https://ror.org/00xzdzk88 Nanostring Technologies (United States)'), (80795, 'https://ror.org/00y3aq160', 'no_lang_code', 1, 'https://ror.org/00y3aq160 JA新潟厚生連上越総合病院 Jōetsu General Hospital'), (80796, 'https://ror.org/00y48xj05', 'es', 1, 'https://ror.org/00y48xj05 Hospital Roberto del Rio'), (80797, 'https://ror.org/00y6v8h24', 'en', 1, 'https://ror.org/00y6v8h24 American Society of Cataract and Refractive Surgery'), (80798, 'https://ror.org/00ya8kg34', 'en', 1, 'https://ror.org/00ya8kg34 Association Canadienne des Ergothérapeutes Canadian Association of Occupational Therapists'), (80799, 'https://ror.org/00yam4t82', 'no_lang_code', 1, 'https://ror.org/00yam4t82 McKing Consulting (United States)'), (80800, 'https://ror.org/00yb5c421', 'no_lang_code', 1, 'https://ror.org/00yb5c421 Valio (Finland)'), (80801, 'https://ror.org/00ybseg45', 'en', 1, 'https://ror.org/00ybseg45 Zoological Institute, State Academy of Sciences 국가과학원 동물학연구소'), (80802, 'https://ror.org/00ybtn229', 'es', 1, 'https://ror.org/00ybtn229 Unión de Ornitólogos de Costa Rica'), (80803, 'https://ror.org/00ydnew86', 'en', 1, 'https://ror.org/00ydnew86 SKA Telescope, Australia'), (80804, 'https://ror.org/00yfjxy10', 'en', 1, 'https://ror.org/00yfjxy10 Beit Rivka Geriatric Medical Center מרכז רפואי גריאטרי בית רבקה'), (80805, 'https://ror.org/00yhmjd28', 'en', 1, 'https://ror.org/00yhmjd28 Institut de Recherche pour la Chromatographie Research Institute for Chromatography'), (80806, 'https://ror.org/00ypgyy34', 'en', 1, 'https://ror.org/00ypgyy34 State University of Malang Universitas Negeri Malang'), (80807, 'https://ror.org/00yq7f263', 'en', 1, 'https://ror.org/00yq7f263 Cobalt Institute'), (80808, 'https://ror.org/00yqpgp96', 'sv', 1, 'https://ror.org/00yqpgp96 Drottning Silvias barn- och ungdomssjukhus'), (80809, 'https://ror.org/00yqvtm78', 'en', 1, 'https://ror.org/00yqvtm78 University of Shahrood دانشگاه صنعتی شاهرود'), (80810, 'https://ror.org/00yss2p92', 'en', 1, 'https://ror.org/00yss2p92 Canadian Institute for Military and Veteran Health Research Institut Canadien de Recherche sur la Santé des Militaires et des Vétérans'), (80811, 'https://ror.org/00yverh79', 'fr', 1, 'https://ror.org/00yverh79 Hirslanden Clinique Bois-Cerf'), (80812, 'https://ror.org/00yvh2s32', 'en', 1, 'https://ror.org/00yvh2s32 Arrowhead Regional Medical Center'), (80813, 'https://ror.org/00yvwb080', 'en', 1, 'https://ror.org/00yvwb080 Tropenbos International'), (80814, 'https://ror.org/00yvz6462', 'en', 1, 'https://ror.org/00yvz6462 Japan Pediatric Society 公益社団法人日本小児科学会'), (80815, 'https://ror.org/00ywwcv54', 'en', 1, 'https://ror.org/00ywwcv54 European Forest Institute'), (80816, 'https://ror.org/00yzvve44', 'no_lang_code', 1, 'https://ror.org/00yzvve44 Nippon Paper Industries (Japan) 日本製紙株式会社'), (80817, 'https://ror.org/00yzz2383', 'en', 1, 'https://ror.org/00yzz2383 Hamilton Medical Research Group'), (80818, 'https://ror.org/00z18yv90', 'en', 1, 'https://ror.org/00z18yv90 Royal Centre for Disease Control'), (80819, 'https://ror.org/00z59w514', 'en', 1, 'https://ror.org/00z59w514 Huawei German Research Center'), (80820, 'https://ror.org/00z8brm94', 'en', 1, 'https://ror.org/00z8brm94 Austrian Mathematical Society Österreichische Mathematische Gesellschaft'), (80821, 'https://ror.org/00z8x2k69', 'no_lang_code', 1, 'https://ror.org/00z8x2k69 Pfizer (Switzerland)'), (80822, 'https://ror.org/00zb80875', 'en', 1, 'https://ror.org/00zb80875 National Heart Institute नेशनल हार्ट इंस्टिट्यूट'), (80823, 'https://ror.org/00zbcgj92', 'no_lang_code', 1, 'https://ror.org/00zbcgj92 Embraer (Brazil)'), (80824, 'https://ror.org/00zbfm828', 'no_lang_code', 1, 'https://ror.org/00zbfm828 Cambridge Crystallographic Data Centre'), (80825, 'https://ror.org/00zbj9525', 'en', 1, 'https://ror.org/00zbj9525 Center for Research and Interdisciplinarity Centre de Recherches Interdisciplinaires'), (80826, 'https://ror.org/00zc2d847', 'en', 1, 'https://ror.org/00zc2d847 Black Sea Biosphere Reserve'), (80827, 'https://ror.org/00zca7903', 'en', 1, 'https://ror.org/00zca7903 Biomedical Research Networking Center on Neurodegenerative Diseases Centro de Investigación Biomédica en Red, Enfermedades Neurodegenerativas'), (80828, 'https://ror.org/00ze7pb24', 'en', 1, 'https://ror.org/00ze7pb24 New England Center for OCD and Anxiety'), (80829, 'https://ror.org/00zeq0353', 'no_lang_code', 1, 'https://ror.org/00zeq0353 Quansight (United States)'), (80830, 'https://ror.org/00zfjyx93', 'en', 1, 'https://ror.org/00zfjyx93 Saskatchewan Research Council (Canada)'), (80831, 'https://ror.org/00zg4za48', 'en', 1, 'https://ror.org/00zg4za48 Eidgenössische Hochschule für Berufsbildung EHB Haute école fédérale en formation professionnelle HEFP Scuola universitaria federale per la formazione professionale SUFFP Swiss Federal University for Vocational Education and Training SFUVET'), (80832, 'https://ror.org/00zjkgd30', 'en', 1, 'https://ror.org/00zjkgd30 Parkinson’s Disease and Movement Disorder Center of Silicon Valley'), (80833, 'https://ror.org/00zk5w269', 'id', 1, 'https://ror.org/00zk5w269 Universitas Sari Mutiara Indonesia'), (80834, 'https://ror.org/00zkxfr79', 'no_lang_code', 1, 'https://ror.org/00zkxfr79 DataJoint NEURO (United States)'), (80835, 'https://ror.org/00zky6d38', 'en', 1, 'https://ror.org/00zky6d38 Computer Algorithms for Medicine'), (80836, 'https://ror.org/00znvbk37', 'en', 1, 'https://ror.org/00znvbk37 National Health Laboratory Service'), (80837, 'https://ror.org/00znwxq75', 'no_lang_code', 1, 'https://ror.org/00znwxq75 NeuroPace (United States)'), (80838, 'https://ror.org/00zp3kj13', 'en', 1, 'https://ror.org/00zp3kj13 Shanghai Municipal Human Resources and Social Security Bureau 上海市人力资源和社会保障局'), (80839, 'https://ror.org/00zpwa373', 'it', 1, 'https://ror.org/00zpwa373 Fondazione Italiana Fegato Italian Liver Foundation'), (80840, 'https://ror.org/00zqaxa34', 'en', 1, 'https://ror.org/00zqaxa34 Northeast Electric Power University 东北电力大学'), (80841, 'https://ror.org/00zvx1763', 'en', 1, 'https://ror.org/00zvx1763 Proton Therapy Centre'), (80842, 'https://ror.org/00zwdnt53', 'no_lang_code', 1, 'https://ror.org/00zwdnt53 Umicore (Belgium)'), (80843, 'https://ror.org/00zxgrh39', 'en', 1, 'https://ror.org/00zxgrh39 Heilongjiang Provincial Academy of Agricultural Sciences 黑龙江省农业科学院'), (80844, 'https://ror.org/00zy16k74', 'en', 1, 'https://ror.org/00zy16k74 Laboratory Dr. Wisplinghoff'), (80845, 'https://ror.org/00zyg0w36', 'fr', 1, 'https://ror.org/00zyg0w36 Ministère de la Santé et de l''Hygiène Publique'), (80846, 'https://ror.org/00zyhqb45', 'no_lang_code', 1, 'https://ror.org/00zyhqb45 Novametrics (United Kingdom)'), (80847, 'https://ror.org/00zz6h841', 'en', 1, 'https://ror.org/00zz6h841 Research Institute of Emergency Childrens Surgery and Traumatology Научно-исследовательский институт неотложной детской хирургии и травматологии'), (80848, 'https://ror.org/0101kry21', 'en', 1, 'https://ror.org/0101kry21 Allegheny Health Network'), (80849, 'https://ror.org/01026pq66', 'en', 1, 'https://ror.org/01026pq66 ENEA Centro Ricerche Frascati ENEA Frascati Research Centre'), (80850, 'https://ror.org/0102jy333', 'no_lang_code', 1, 'https://ror.org/0102jy333 Nanoscribe (Germany)'), (80851, 'https://ror.org/01036m381', 'en', 1, 'https://ror.org/01036m381 Scholar Rock (United States)'), (80852, 'https://ror.org/0104cy831', 'en', 1, 'https://ror.org/0104cy831 Community College of Rhode Island'), (80853, 'https://ror.org/0105s3595', 'sl', 1, 'https://ror.org/0105s3595 ŠKUC Association'), (80854, 'https://ror.org/0107a5128', 'no_lang_code', 1, 'https://ror.org/0107a5128 IQM (Germany)'), (80855, 'https://ror.org/010b90792', 'en', 1, 'https://ror.org/010b90792 Samara Federal Research Scientific Center Самарский научный центр Российской академии наук'), (80856, 'https://ror.org/010dcp921', 'en', 1, 'https://ror.org/010dcp921 California Current Ecosystem Long Term Ecological Research'), (80857, 'https://ror.org/010derh63', 'en', 1, 'https://ror.org/010derh63 The VTCT Foundation'), (80858, 'https://ror.org/010g9bb70', 'no_lang_code', 1, 'https://ror.org/010g9bb70 Quest Diagnostics (United States)'), (80859, 'https://ror.org/010htnk72', 'no_lang_code', 1, 'https://ror.org/010htnk72 Menarini Group (Luxembourg)'), (80860, 'https://ror.org/010hz0g26', 'en', 1, 'https://ror.org/010hz0g26 Jichi Medical University 自治医科大学'), (80861, 'https://ror.org/010n0x685', 'en', 1, 'https://ror.org/010n0x685 Central University of Ecuador Universidad Central del Ecuador'), (80862, 'https://ror.org/010p19169', 'en', 1, 'https://ror.org/010p19169 Korea Culture & Tourism Institute 한국문화관광연구원'), (80863, 'https://ror.org/010p1tc53', 'en', 1, 'https://ror.org/010p1tc53 Phase One Foundation'), (80864, 'https://ror.org/010pmpe69', 'en', 1, 'https://ror.org/010pmpe69 Lomonosov Moscow State University Московский государственный университет'), (80865, 'https://ror.org/010qsnr58', 'no_lang_code', 1, 'https://ror.org/010qsnr58 Rentschler Biopharma (Germany)'), (80866, 'https://ror.org/010s0k503', 'no_lang_code', 1, 'https://ror.org/010s0k503 XING Technologies (Australia)'), (80867, 'https://ror.org/010s54n03', 'de', 1, 'https://ror.org/010s54n03 Leibniz-Forschungsinstitut für Molekulare Pharmakologie'), (80868, 'https://ror.org/010sh9e25', 'no_lang_code', 1, 'https://ror.org/010sh9e25 Novana (United States)'), (80869, 'https://ror.org/010spvh97', 'no_lang_code', 1, 'https://ror.org/010spvh97 Alcon (France)'), (80870, 'https://ror.org/010vedh32', 'en', 1, 'https://ror.org/010vedh32 New Jersey Urology'), (80871, 'https://ror.org/010yy8b40', 'en', 1, 'https://ror.org/010yy8b40 NLR India'), (80872, 'https://ror.org/0112vdv20', 'en', 1, 'https://ror.org/0112vdv20 Illinois Society for the Prevention of Blindness'), (80873, 'https://ror.org/01141nq92', 'en', 1, 'https://ror.org/01141nq92 New Zealand Brain Research Institute'), (80874, 'https://ror.org/011619g15', 'en', 1, 'https://ror.org/011619g15 International Institute of Innovation and Technology'), (80875, 'https://ror.org/0116dk457', 'en', 1, 'https://ror.org/0116dk457 D Y Patil International University डी वाय पाटील आंतरराष्ट्रीय विद्यापीठ'), (80876, 'https://ror.org/0116vew40', 'es', 1, 'https://ror.org/0116vew40 Fundación para el Fomento de la Investigación Sanitaria y Biomédica de la Comunitat Valenciana'), (80877, 'https://ror.org/01173vs27', 'en', 1, 'https://ror.org/01173vs27 University of Chittagong চট্টগ্রাম বিশ্ববিদ্যালয়'), (80878, 'https://ror.org/0117s0n37', 'en', 1, 'https://ror.org/0117s0n37 George & Fay Yee Centre for Healthcare Innovation'), (80879, 'https://ror.org/011803230', 'es', 1, 'https://ror.org/011803230 Fundación Española de la Nutrición Spanish Nutrition Foundation'), (80880, 'https://ror.org/0118xsm53', 'en', 1, 'https://ror.org/0118xsm53 Fraunhofer Research Institution for Battery Cell Production Fraunhofer-Einrichtung Forschungsfertigung Batteriezelle'), (80881, 'https://ror.org/0119pby33', 'es', 1, 'https://ror.org/0119pby33 Centro de Investigación Biomédica en Red de Enfermedades Respiratorias'), (80882, 'https://ror.org/0119q5s74', 'en', 1, 'https://ror.org/0119q5s74 Bangladesh Academy of Sciences'), (80883, 'https://ror.org/011bh3d24', 'en', 1, 'https://ror.org/011bh3d24 Colombian Family Welfare Institute'), (80884, 'https://ror.org/011bqgx84', 'en', 1, 'https://ror.org/011bqgx84 Universidad del Tolima University of Tolima'), (80885, 'https://ror.org/011bss535', 'no_lang_code', 1, 'https://ror.org/011bss535 Victorinox (Switzerland)'), (80886, 'https://ror.org/011cztj49', 'en', 1, 'https://ror.org/011cztj49 Southampton General Hospital'), (80887, 'https://ror.org/011em6227', 'en', 1, 'https://ror.org/011em6227 College of Optometrists'), (80888, 'https://ror.org/011h3r445', 'en', 1, 'https://ror.org/011h3r445 Eläketurvakeskus Finnish Centre for Pensions'), (80889, 'https://ror.org/011jsc803', 'en', 1, 'https://ror.org/011jsc803 MRC Human Genetics Unit'), (80890, 'https://ror.org/011kpjv07', 'en', 1, 'https://ror.org/011kpjv07 Institute for Scientific and Technological Information'), (80891, 'https://ror.org/011n0hq04', 'no_lang_code', 1, 'https://ror.org/011n0hq04 Emulate (United States)'), (80892, 'https://ror.org/011n2hy47', 'en', 1, 'https://ror.org/011n2hy47 Fédération Mondiale Des Journalistes Scientifiques World Federation of Science Journalists'), (80893, 'https://ror.org/011n7v210', 'en', 1, 'https://ror.org/011n7v210 Shimane Prefectural Police 島根県警察'), (80894, 'https://ror.org/011nkrc70', 'en', 1, 'https://ror.org/011nkrc70 American Indian College Fund'), (80895, 'https://ror.org/011pmrv14', 'en', 1, 'https://ror.org/011pmrv14 William Angliss Institute'), (80896, 'https://ror.org/011qexd20', 'en', 1, 'https://ror.org/011qexd20 North Jersey Brain and Spine Center'), (80897, 'https://ror.org/011rrqf91', 'en', 1, 'https://ror.org/011rrqf91 Open University of Sri Lanka இலங்கை திறந்த பல்கலைக்கழகம் ශ් රී ලංකා විවෘත විශ්වවිද් යාලය'), (80898, 'https://ror.org/011s44m53', 'en', 1, 'https://ror.org/011s44m53 Directorate of Measures and Precious Metals of the Republic of Serbia Direkcija za mere i dragocene metale Дирекције за мере и драгоцене метале'), (80899, 'https://ror.org/011ypgb65', 'en', 1, 'https://ror.org/011ypgb65 Institute for Clinical and Economic Review'), (80900, 'https://ror.org/011ywze69', 'it', 1, 'https://ror.org/011ywze69 Roman Society of Natural Science Società Romana di Scienze Naturali'), (80901, 'https://ror.org/0120tx153', 'en', 1, 'https://ror.org/0120tx153 Jönköping County Museum'), (80902, 'https://ror.org/012322w18', 'en', 1, 'https://ror.org/012322w18 Otsuma Women''s University 大妻女子大学'), (80903, 'https://ror.org/012547n22', 'en', 1, 'https://ror.org/012547n22 Jeffrey D. Horn Vision For Life'), (80904, 'https://ror.org/0125q6d71', 'en', 1, 'https://ror.org/0125q6d71 Consortium for Policy Research in Education'), (80905, 'https://ror.org/0126xah18', 'en', 1, 'https://ror.org/0126xah18 Chiba University Hospital 千葉大学医学部附属病院'), (80906, 'https://ror.org/01270hm15', 'en', 1, 'https://ror.org/01270hm15 Instytut Fizjologii i Żywienia Zwierząt im. Jana Kielanowskiego PAN Kielanowski Institute of Animal Physiology and Nutrition'), (80907, 'https://ror.org/01276vm23', 'en', 1, 'https://ror.org/01276vm23 South Bay Interdisciplinary Science Center'), (80908, 'https://ror.org/0129hgq75', 'en', 1, 'https://ror.org/0129hgq75 Danesh-e-Tandorosti Iranian Institute of Higher Health'), (80909, 'https://ror.org/012anat48', 'no_lang_code', 1, 'https://ror.org/012anat48 Cloud Posse (United States)'), (80910, 'https://ror.org/012ane130', 'en', 1, 'https://ror.org/012ane130 Centre For Sustainable Urban Development Centro de Desarrollo Urbano Sustentable'), (80911, 'https://ror.org/012bxv356', 'en', 1, 'https://ror.org/012bxv356 University of Mysore Université de mysore மைசூர்ப் பல்கலைக்கழகம் మైసూరు విశ్వవిద్యాలయం ಮೈಸೂರು ವಿಶ್ವವಿದ್ಯಾಲಯ മൈസൂർ സർവ്വകലാശാല'), (80912, 'https://ror.org/012cqkk56', 'no_lang_code', 1, 'https://ror.org/012cqkk56 Pacific Theological College'), (80913, 'https://ror.org/012daep68', 'en', 1, 'https://ror.org/012daep68 Japan Anti Tuberculosis Association 公益財団法人結核予防会'), (80914, 'https://ror.org/012feq088', 'en', 1, 'https://ror.org/012feq088 Kids'' Brain Tumor Cure Foundation'), (80915, 'https://ror.org/012fqf756', 'de', 1, 'https://ror.org/012fqf756 Hirslanden Klinik Am Rosenberg'), (80916, 'https://ror.org/012hfdz28', 'fr', 1, 'https://ror.org/012hfdz28 Centre de Référence des Maladies Autoinflammatoires et des Amyloses'), (80917, 'https://ror.org/012j67x85', 'en', 1, 'https://ror.org/012j67x85 Annenberg Foundation'), (80918, 'https://ror.org/012mmb732', 'en', 1, 'https://ror.org/012mmb732 Southern California Eye Institute'), (80919, 'https://ror.org/012mvrz03', 'en', 1, 'https://ror.org/012mvrz03 Perm State Humanitarian-Pedagogical University Пермский государственный гуманитарно-педагогический университет'), (80920, 'https://ror.org/012p54t81', 'no_lang_code', 1, 'https://ror.org/012p54t81 Gemalto (France)'), (80921, 'https://ror.org/012rtfc41', 'no_lang_code', 1, 'https://ror.org/012rtfc41 Water Technology (Australia)'), (80922, 'https://ror.org/012sdwt38', 'no_lang_code', 1, 'https://ror.org/012sdwt38 BioBank Japan バイオバンク ジャパン'), (80923, 'https://ror.org/012sfmg27', 'en', 1, 'https://ror.org/012sfmg27 Anhui Sanlian University 安徽三联学院'), (80924, 'https://ror.org/012tqgb57', 'en', 1, 'https://ror.org/012tqgb57 Ryukoku University 龍谷大学'), (80925, 'https://ror.org/012v2c923', 'no_lang_code', 1, 'https://ror.org/012v2c923 BeiGene (China)'), (80926, 'https://ror.org/012xdha97', 'en', 1, 'https://ror.org/012xdha97 University of Malakand جامعہ مالاکنڈ'), (80927, 'https://ror.org/012xv5c42', 'it', 1, 'https://ror.org/012xv5c42 Fondazione Querini Stampalia'), (80928, 'https://ror.org/012y0eh02', 'no_lang_code', 1, 'https://ror.org/012y0eh02 Theolytics (United Kingdom)'), (80929, 'https://ror.org/012yyz739', 'no_lang_code', 1, 'https://ror.org/012yyz739 Givaudan (Netherlands)'), (80930, 'https://ror.org/012zjgq34', 'en', 1, 'https://ror.org/012zjgq34 Korea Institute for Animal Products Quality Evaluation 축산물품질평가원'), (80931, 'https://ror.org/013314927', 'en', 1, 'https://ror.org/013314927 Universitas Surabaya University of Surabaya'), (80932, 'https://ror.org/0133gy560', 'no_lang_code', 1, 'https://ror.org/0133gy560 Tishcon (United States)'), (80933, 'https://ror.org/01357ty92', 'en', 1, 'https://ror.org/01357ty92 National Institute of Metrology (Thailand) สถาบันมาตรวิทยาแห่งชาติ'), (80934, 'https://ror.org/0135c5n64', 'en', 1, 'https://ror.org/0135c5n64 Central Intelligence Agency'), (80935, 'https://ror.org/0135db650', 'en', 1, 'https://ror.org/0135db650 Center for Agricultural Resources Research'), (80936, 'https://ror.org/0137n4m74', 'en', 1, 'https://ror.org/0137n4m74 Tuskegee University'), (80937, 'https://ror.org/0139hn422', 'en', 1, 'https://ror.org/0139hn422 Palmer Long Term Ecological Research'), (80938, 'https://ror.org/0139s2465', 'no_lang_code', 1, 'https://ror.org/0139s2465 Enterome (France)'), (80939, 'https://ror.org/013aa2c03', 'en', 1, 'https://ror.org/013aa2c03 Institute of Mental Health and Neurosciences'), (80940, 'https://ror.org/013b36x77', 'en', 1, 'https://ror.org/013b36x77 Advantage West Midlands'), (80941, 'https://ror.org/013bkjj52', 'en', 1, 'https://ror.org/013bkjj52 Beijing Graphene Institute 北京石墨烯研究院'), (80942, 'https://ror.org/013fk0013', 'en', 1, 'https://ror.org/013fk0013 Institute for the Study of Anthropic Impact and Sustainability in the Marine Environment Istituto per lo studio degli impatti Antropici e Sostenibilità in ambiente marino'), (80943, 'https://ror.org/013j2zh96', 'ca', 1, 'https://ror.org/013j2zh96 Institut Català d''Investigació Química Institute of Chemical Research of Catalonia'), (80944, 'https://ror.org/013jy7g98', 'en', 1, 'https://ror.org/013jy7g98 Cohen Veterans Bioscience'), (80945, 'https://ror.org/013k5y296', 'no_lang_code', 1, 'https://ror.org/013k5y296 Otsuka (Japan) 大塚製薬株式会社'), (80946, 'https://ror.org/013kx8n09', 'en', 1, 'https://ror.org/013kx8n09 Millennium Initiative for Collaborative Research on Bacterial Resistance'), (80947, 'https://ror.org/013m0ej23', 'en', 1, 'https://ror.org/013m0ej23 Institut Périmètre de Physique Théorique Perimeter Institute'), (80948, 'https://ror.org/013mz8190', 'en', 1, 'https://ror.org/013mz8190 Laureate Education'), (80949, 'https://ror.org/013n55y95', 'en', 1, 'https://ror.org/013n55y95 Cosmetology Research Foundation 公益財団法人コスメトロジー研究振興財団'), (80950, 'https://ror.org/013nat269', 'en', 1, 'https://ror.org/013nat269 Finlands miljöcentral Finnish Environment Institute Suomen ympäristökeskus'), (80951, 'https://ror.org/013nbmf56', 'no_lang_code', 1, 'https://ror.org/013nbmf56 Invixium (Canada)'), (80952, 'https://ror.org/013q1e562', 'en', 1, 'https://ror.org/013q1e562 Arthur B. McDonald-Canadian Astroparticle Physics Research Institute'), (80953, 'https://ror.org/013rvtk45', 'en', 1, 'https://ror.org/013rvtk45 Kochi Medical School Hospital 高知大学医学部附属病院'), (80954, 'https://ror.org/013z4s422', 'no_lang_code', 1, 'https://ror.org/013z4s422 Guardant (United States)'), (80955, 'https://ror.org/013zder45', 'en', 1, 'https://ror.org/013zder45 Virginia Coast Reserve Long Term Ecological Research'), (80956, 'https://ror.org/014487k66', 'en', 1, 'https://ror.org/014487k66 Canadian Nuclear Laboratories'), (80957, 'https://ror.org/0149cpy58', 'en', 1, 'https://ror.org/0149cpy58 Countess of Chester Hospital NHS Foundation Trust'), (80958, 'https://ror.org/0149jvn88', 'en', 1, 'https://ror.org/0149jvn88 King Saud bin Abdulaziz University for Health Sciences جامعة الملك سعود بن عبد العزيز للعلوم الصحية'), (80959, 'https://ror.org/0149pv473', 'en', 1, 'https://ror.org/0149pv473 Hamburg Centre for Ultrafast Imaging'), (80960, 'https://ror.org/014anrn41', 'en', 1, 'https://ror.org/014anrn41 Ateneum Szkoła Wyższa Ateneum University'), (80961, 'https://ror.org/014b0da27', 'en', 1, 'https://ror.org/014b0da27 Crystal Run Healthcare'), (80962, 'https://ror.org/014d23c86', 'en', 1, 'https://ror.org/014d23c86 Centre of Registers Vastra Gotaland Registercentrum Västra Götaland'), (80963, 'https://ror.org/014ezsb26', 'en', 1, 'https://ror.org/014ezsb26 United Nations Children''s Fund Niger'), (80964, 'https://ror.org/014fhvx65', 'en', 1, 'https://ror.org/014fhvx65 Canadian Respiratory Research Network, Réseau canadien de recherche respiratoire'), (80965, 'https://ror.org/014hvfk26', 'pt', 1, 'https://ror.org/014hvfk26 UniFG Centro Universitário'), (80966, 'https://ror.org/014ja3n03', 'en', 1, 'https://ror.org/014ja3n03 University Hospitals Birmingham NHS Foundation Trust'), (80967, 'https://ror.org/014n7xm98', 'pt', 1, 'https://ror.org/014n7xm98 Universidade Federal do Delta do Parnaíba'), (80968, 'https://ror.org/014napt72', 'en', 1, 'https://ror.org/014napt72 American Academy In Rome'), (80969, 'https://ror.org/014nmm080', 'de', 1, 'https://ror.org/014nmm080 Gesellschaft zur Förderung Kynologischer Forschung'), (80970, 'https://ror.org/014nwb521', 'en', 1, 'https://ror.org/014nwb521 Sydney Sexual Health Centre'), (80971, 'https://ror.org/014nzh720', 'fr', 1, 'https://ror.org/014nzh720 Droit et changement social'), (80972, 'https://ror.org/014nzt826', 'en', 1, 'https://ror.org/014nzt826 Endeavour College of Natural Health'), (80973, 'https://ror.org/014qktf20', 'en', 1, 'https://ror.org/014qktf20 Symbiosis Group'), (80974, 'https://ror.org/014r5ah89', 'no_lang_code', 1, 'https://ror.org/014r5ah89 ZOE (United Kingdom)'), (80975, 'https://ror.org/014stvx20', 'en', 1, 'https://ror.org/014stvx20 Dutch Institute for Clinical Auditing'), (80976, 'https://ror.org/014tda213', 'es', 1, 'https://ror.org/014tda213 Hospital Dr Arturo Oñativia'), (80977, 'https://ror.org/014x2ky39', 'en', 1, 'https://ror.org/014x2ky39 Whyteman’s Brae Hospital'), (80978, 'https://ror.org/014yn7y10', 'en', 1, 'https://ror.org/014yn7y10 Justiitsministeerium Ministry of Justice'), (80979, 'https://ror.org/015121715', 'en', 1, 'https://ror.org/015121715 Peterson Institute for International Economics'), (80980, 'https://ror.org/01529vy56', 'en', 1, 'https://ror.org/01529vy56 Mie University 三重大学'), (80981, 'https://ror.org/0152zzg30', 'en', 1, 'https://ror.org/0152zzg30 Anhui University of Finance and Economics 安徽财经大学'), (80982, 'https://ror.org/0154fps75', 'en', 1, 'https://ror.org/0154fps75 Pinega Nature Reserve Pinezhsky Zapovednik'), (80983, 'https://ror.org/0155e5d19', 'en', 1, 'https://ror.org/0155e5d19 National Police Academy 警察庁警察大学校'), (80984, 'https://ror.org/0155sw530', 'en', 1, 'https://ror.org/0155sw530 Seattle Epidemiologic Information and Research Center'), (80985, 'https://ror.org/01565p617', 'en', 1, 'https://ror.org/01565p617 Western Connecticut State University'), (80986, 'https://ror.org/0158pzk57', 'en', 1, 'https://ror.org/0158pzk57 Philippine Social Science Council'), (80987, 'https://ror.org/015bnwc11', 'no_lang_code', 1, 'https://ror.org/015bnwc11 Xi''an Honghui Hospital 西安市红会医院'), (80988, 'https://ror.org/015bxyv30', 'en', 1, 'https://ror.org/015bxyv30 Gujarat Cancer & Research Institute'), (80989, 'https://ror.org/015c54q78', 'pt', 1, 'https://ror.org/015c54q78 Centro Universitário Unigran Capital'), (80990, 'https://ror.org/015dkz579', 'en', 1, 'https://ror.org/015dkz579 Bread for the World Institute'), (80991, 'https://ror.org/015eybs17', 'en', 1, 'https://ror.org/015eybs17 Game & Wildlife Conservation Trust'), (80992, 'https://ror.org/015hppy16', 'en', 1, 'https://ror.org/015hppy16 Showa General Hospital 公立昭和病院'), (80993, 'https://ror.org/015n4kv50', 'en', 1, 'https://ror.org/015n4kv50 Adobe Gastroenterology'), (80994, 'https://ror.org/015pm1582', 'no_lang_code', 1, 'https://ror.org/015pm1582 Remit Kenya (Kenya)'), (80995, 'https://ror.org/015thzh02', 'de', 1, 'https://ror.org/015thzh02 Genetikum'), (80996, 'https://ror.org/015x1jv94', 'en', 1, 'https://ror.org/015x1jv94 State Institution "Institute for Children and Adolescents Health Care at the National Academy of Medical Sciences of Ukraine" Державна установа "Інститут охорони здоров''я дітей та підлітків Національної академії медичних наук України"'), (80997, 'https://ror.org/015ypce77', 'en', 1, 'https://ror.org/015ypce77 Burke Museum of Natural History and Culture'), (80998, 'https://ror.org/015yt8m86', 'en', 1, 'https://ror.org/015yt8m86 Academy of Sciences of the Republic of Sakha Академия наук Республики Саха'), (80999, 'https://ror.org/0164jks53', 'no_lang_code', 1, 'https://ror.org/0164jks53 Anaconda (United States)'), (81000, 'https://ror.org/0164vvh82', 'en', 1, 'https://ror.org/0164vvh82 Commissariat à la Protection de la vie Privée du Canada Office of the Privacy Commissioner of Canada'), (81001, 'https://ror.org/016570d63', 'en', 1, 'https://ror.org/016570d63 Rajabu St Augustine''s, Hospitali Teule'), (81002, 'https://ror.org/01669gb09', 'en', 1, 'https://ror.org/01669gb09 I.Krypiakevych Institute of Ukrainian Studies National Academy of Sciences of Ukraine І.Крип’якевича Національної академії наук України'), (81003, 'https://ror.org/0166x0j30', 'en', 1, 'https://ror.org/0166x0j30 Natural History Museum Aarhus Naturhistorisk Museum Aarhus'), (81004, 'https://ror.org/01687hb54', 'en', 1, 'https://ror.org/01687hb54 Technological University of Mexico Universidad Tecnológica de México'), (81005, 'https://ror.org/0169kb131', 'en', 1, 'https://ror.org/0169kb131 Children’s Mercy Research Institute'), (81006, 'https://ror.org/016a74861', 'en', 1, 'https://ror.org/016a74861 Beijing Academy of Artificial Intelligence 北京智源人工智能研究院'), (81007, 'https://ror.org/016bgq349', 'en', 1, 'https://ror.org/016bgq349 National Institute of Information and Communications Technology 情報通信研究機構'), (81008, 'https://ror.org/016c76a68', 'no_lang_code', 1, 'https://ror.org/016c76a68 ADx NeuroSciences'), (81009, 'https://ror.org/016drwn73', 'es', 1, 'https://ror.org/016drwn73 Universidad de las Artes'), (81010, 'https://ror.org/016e3ca54', 'en', 1, 'https://ror.org/016e3ca54 Center of Applied Ecology & Sustainability'), (81011, 'https://ror.org/016e3th47', 'en', 1, 'https://ror.org/016e3th47 Institute of Genetics and Cytology of the National Academy of Sciences of Belarus Інстытут генетыкі і цыталогіі'), (81012, 'https://ror.org/016e5r936', 'en', 1, 'https://ror.org/016e5r936 Japan Real Estate Institute 一般財団法人日本不動産研究所'), (81013, 'https://ror.org/016ex3g83', 'en', 1, 'https://ror.org/016ex3g83 American Institute of Biological Sciences'), (81014, 'https://ror.org/016fr7d87', 'en', 1, 'https://ror.org/016fr7d87 The Institute of History of the National Academy of Sciences of Belarus Институт истории Национальной академии наук Беларуси'), (81015, 'https://ror.org/016j3vn58', 'de', 1, 'https://ror.org/016j3vn58 Marien Hospital Wesel'), (81016, 'https://ror.org/016k72860', 'no_lang_code', 1, 'https://ror.org/016k72860 Few Chemicals (Germany)'), (81017, 'https://ror.org/016kcza49', 'en', 1, 'https://ror.org/016kcza49 ART Reproductive Center'), (81018, 'https://ror.org/016md1z42', 'en', 1, 'https://ror.org/016md1z42 Samara Law Institute of the Federal Penitentiary Service of Russia САМАРСКИЙ ЮРИДИЧЕСКИЙ ИНСТИТУТ ФСИН РОССИИ'), (81019, 'https://ror.org/016mgbr72', 'en', 1, 'https://ror.org/016mgbr72 East Siberian University of Economics and Law Восточно-Сибирский университет экономики и права'), (81020, 'https://ror.org/016mq8947', 'no_lang_code', 1, 'https://ror.org/016mq8947 CSPC Pharmaceutical Group 石藥集團'), (81021, 'https://ror.org/016q5ce10', 'no_lang_code', 1, 'https://ror.org/016q5ce10 Jilian Technology Group (China)'), (81022, 'https://ror.org/016rf4127', 'en', 1, 'https://ror.org/016rf4127 Institute of Applied Mathematical Research of the Karelian Research Centre of the Russian Academy of Sciences Институт прикладных математических исследований Карельского научного центра Российской академии наук'), (81023, 'https://ror.org/016s36n27', 'no_lang_code', 1, 'https://ror.org/016s36n27 Asia Centre'), (81024, 'https://ror.org/016sx0y50', 'en', 1, 'https://ror.org/016sx0y50 Academy of Sciences of Albania'), (81025, 'https://ror.org/016twdg30', 'en', 1, 'https://ror.org/016twdg30 Tri-Institutional PhD Program in Chemical Biology'), (81026, 'https://ror.org/016w1r206', 'en', 1, 'https://ror.org/016w1r206 Council on Postsecondary Education'), (81027, 'https://ror.org/016xad343', 'en', 1, 'https://ror.org/016xad343 Senckenberg Natural History Collections Dresden Senckenberg Naturhistorische Sammlungen Dresden'), (81028, 'https://ror.org/016xje988', 'en', 1, 'https://ror.org/016xje988 University of Namibia Universität von Namibia'), (81029, 'https://ror.org/016yezh07', 'en', 1, 'https://ror.org/016yezh07 Longhua Hospital Shanghai University of Traditional Chinese Medicine 上海中医药大学附属龙华医院'), (81030, 'https://ror.org/016yy9j09', 'no_lang_code', 1, 'https://ror.org/016yy9j09 LTT Bio-Pharma (Japan) 株式会社LTTバイオファーマ'), (81031, 'https://ror.org/01715vy32', 'en', 1, 'https://ror.org/01715vy32 North Shore Health Department'), (81032, 'https://ror.org/01726w403', 'en', 1, 'https://ror.org/01726w403 Shushensky Bor National Park национальный парк «Шушенский бор'), (81033, 'https://ror.org/01755xe07', 'en', 1, 'https://ror.org/01755xe07 Grove City College'), (81034, 'https://ror.org/0175g1p16', 'en', 1, 'https://ror.org/0175g1p16 Quantum University'), (81035, 'https://ror.org/0178v0z17', 'en', 1, 'https://ror.org/0178v0z17 Coral Reef Research Foundation'), (81036, 'https://ror.org/017b69w10', 'nl', 1, 'https://ror.org/017b69w10 Martini Ziekenhuis'), (81037, 'https://ror.org/017bd4h68', 'es', 1, 'https://ror.org/017bd4h68 National University of Frontera Universidad Nacional de Frontera'), (81038, 'https://ror.org/017bfx208', 'en', 1, 'https://ror.org/017bfx208 Georgia Coastal Ecosystems Long Term Ecological Research'), (81039, 'https://ror.org/017bk0e71', 'no_lang_code', 1, 'https://ror.org/017bk0e71 CTI BioPharma (United States)'), (81040, 'https://ror.org/017e99q89', 'it', 1, 'https://ror.org/017e99q89 Provincia Autonoma di Trento'), (81041, 'https://ror.org/017ehfh78', 'en', 1, 'https://ror.org/017ehfh78 Ministerium für Wirtschaft, Wissenschaft und Digitalisierung des Landes Sachsen-Anhalt Ministry of Economy, Science and Digitalisation'), (81042, 'https://ror.org/017fdbp82', 'en', 1, 'https://ror.org/017fdbp82 Wereld Kanker Onderzoek Fonds World Cancer Research Fund Netherlands'), (81043, 'https://ror.org/017g28623', 'no_lang_code', 1, 'https://ror.org/017g28623 Fistulacure'), (81044, 'https://ror.org/017g85521', 'en', 1, 'https://ror.org/017g85521 Medawar Building for Pathogen Research'), (81045, 'https://ror.org/017mdtk85', 'en', 1, 'https://ror.org/017mdtk85 Quantified Uncertainty Research Institute'), (81046, 'https://ror.org/017mv9d49', 'en', 1, 'https://ror.org/017mv9d49 Atlantic States Marine Fisheries Commission'), (81047, 'https://ror.org/017nq0d63', 'en', 1, 'https://ror.org/017nq0d63 Alexander S Onassis Public Benefit Foundation Κοινωφελές Ιδρυμα Αλεξανδρου Ωνάση'), (81048, 'https://ror.org/017nweb49', 'en', 1, 'https://ror.org/017nweb49 Roger Williams University'), (81049, 'https://ror.org/017vm7w59', 'en', 1, 'https://ror.org/017vm7w59 Institute of Forestry Шумарски институт'), (81050, 'https://ror.org/017w5sv42', 'en', 1, 'https://ror.org/017w5sv42 British Columbia Centre on Substance Use'), (81051, 'https://ror.org/017wx6w12', 'en', 1, 'https://ror.org/017wx6w12 Institute of Blood Pathology and Transfusion Medicine of the National Academy of Medical Sciences of Ukraine Інститут патології крові та трансфузійної медицини НАМН України'), (81052, 'https://ror.org/017xf1n22', 'en', 1, 'https://ror.org/017xf1n22 Railway and Canal Historical Society'), (81053, 'https://ror.org/017z2hs09', 'pt', 1, 'https://ror.org/017z2hs09 Fundação de Empreendimentos Científicos e Tecnológicos'), (81054, 'https://ror.org/0180xa122', 'es', 1, 'https://ror.org/0180xa122 National Autonomous University of Alto Amazonas Universidad Nacional Autónoma de Alto Amazonas'), (81055, 'https://ror.org/018159086', 'en', 1, 'https://ror.org/018159086 Pirogov Russian National Research Medical University Российский национальный исследовательский медицинский университет имени Н. И. Пирогова'), (81056, 'https://ror.org/01848hk04', 'no_lang_code', 1, 'https://ror.org/01848hk04 Shandong Jiaotong University'), (81057, 'https://ror.org/01871gq26', 'no_lang_code', 1, 'https://ror.org/01871gq26 Fluxus Technology (United Kingdom)'), (81058, 'https://ror.org/0187pm092', 'no_lang_code', 1, 'https://ror.org/0187pm092 Sunesis (United States)'), (81059, 'https://ror.org/0187v3h87', 'en', 1, 'https://ror.org/0187v3h87 Vindolanda Trust'), (81060, 'https://ror.org/0188rvx33', 'en', 1, 'https://ror.org/0188rvx33 Beijing Satellite Navigation Center 北京卫星导航中心版权所有'), (81061, 'https://ror.org/0188vts43', 'no_lang_code', 1, 'https://ror.org/0188vts43 Yu Jun Biotechnology 裕雋生物科技股份有限公司'), (81062, 'https://ror.org/0189t1115', 'en', 1, 'https://ror.org/0189t1115 American Contact Dermatitis Society'), (81063, 'https://ror.org/018etvh69', 'en', 1, 'https://ror.org/018etvh69 Kavli Fondet The Kavli Trust'), (81064, 'https://ror.org/018extf73', 'no_lang_code', 1, 'https://ror.org/018extf73 Lightmatter (United States)'), (81065, 'https://ror.org/018g5g612', 'en', 1, 'https://ror.org/018g5g612 American Society for Dermatologic Surgery'), (81066, 'https://ror.org/018gks972', 'en', 1, 'https://ror.org/018gks972 Jilin Engineering Normal University 吉林工程技术师范学院'), (81067, 'https://ror.org/018gpkq23', 'en', 1, 'https://ror.org/018gpkq23 Amigos Library Services'), (81068, 'https://ror.org/018hfs607', 'pt', 1, 'https://ror.org/018hfs607 Sobest – Associacao Brasileira de Estomaterapia'), (81069, 'https://ror.org/018hwpf05', 'no_lang_code', 1, 'https://ror.org/018hwpf05 Hosokawa Micron (Japan) ホソカワミクロン株式会社'), (81070, 'https://ror.org/018j1ye79', 'en', 1, 'https://ror.org/018j1ye79 ENEA Centro Ricerche Santa Teresa ENEA Santa Teresa Research Centre'), (81071, 'https://ror.org/018mx4905', 'en', 1, 'https://ror.org/018mx4905 National Park Meshera Мещёра (национальный парк))'), (81072, 'https://ror.org/018n70f12', 'en', 1, 'https://ror.org/018n70f12 Association New Music'), (81073, 'https://ror.org/018nb9n34', 'no_lang_code', 1, 'https://ror.org/018nb9n34 IHI Corporation (Japan) 株式会社IHI'), (81074, 'https://ror.org/018qbmv38', 'no_lang_code', 1, 'https://ror.org/018qbmv38 Aurubis (Germany)'), (81075, 'https://ror.org/018v0zv10', 'no_lang_code', 1, 'https://ror.org/018v0zv10 Kobe Gakuin University 神戸学院大学'), (81076, 'https://ror.org/018wg9441', 'en', 1, 'https://ror.org/018wg9441 Hubei University of Science and Technology 湖北科技学院'), (81077, 'https://ror.org/018wm0v91', 'no_lang_code', 1, 'https://ror.org/018wm0v91 Arvato'), (81078, 'https://ror.org/018y70h07', 'en', 1, 'https://ror.org/018y70h07 Physicians Committee for Responsible Medicine'), (81079, 'https://ror.org/0191jdv19', 'de', 1, 'https://ror.org/0191jdv19 Fachhochschule Clara Hoffbauer Potsdam'), (81080, 'https://ror.org/0192stn37', 'en', 1, 'https://ror.org/0192stn37 Association of Teacher Educators'), (81081, 'https://ror.org/01963ay88', 'en', 1, 'https://ror.org/01963ay88 Hawaii Pacific University'), (81082, 'https://ror.org/0196vdc40', 'en', 1, 'https://ror.org/0196vdc40 Nakatomi Foundation 公益財団法人中冨健康科学振興財団'), (81083, 'https://ror.org/01982z663', 'en', 1, 'https://ror.org/01982z663 Cropping Systems Research Laboratory'), (81084, 'https://ror.org/019dkd780', 'en', 1, 'https://ror.org/019dkd780 Al-Hussein Bin Talal University جامعة الحسين بن طلال'), (81085, 'https://ror.org/019ekef14', 'no_lang_code', 1, 'https://ror.org/019ekef14 Kasugai Municipal Hospital 春日井市民病院'), (81086, 'https://ror.org/019j78370', 'en', 1, 'https://ror.org/019j78370 Salford Royal NHS Foundation Trust'), (81087, 'https://ror.org/019jh9f64', 'no_lang_code', 1, 'https://ror.org/019jh9f64 Gojo (United States)'), (81088, 'https://ror.org/019jr0130', 'en', 1, 'https://ror.org/019jr0130 Mount Sinai Hospital'), (81089, 'https://ror.org/019kfw312', 'en', 1, 'https://ror.org/019kfw312 Inner Mongolia Academy of Agricultural & Animal Husbandry Sciences 内蒙古农牧业科学院'), (81090, 'https://ror.org/019pkg396', 'en', 1, 'https://ror.org/019pkg396 Mercy College of Ohio'), (81091, 'https://ror.org/019qyzj84', 'en', 1, 'https://ror.org/019qyzj84 State Museum of Natural History of the National Academy of Sciences of Ukraine Державний природознавчий музей НАН України'), (81092, 'https://ror.org/019sa2256', 'en', 1, 'https://ror.org/019sa2256 Community Care'), (81093, 'https://ror.org/019syws71', 'en', 1, 'https://ror.org/019syws71 Institute for Matching Person and Technology'), (81094, 'https://ror.org/019tepx80', 'en', 1, 'https://ror.org/019tepx80 Okayama University Hospital 岡山大学病院'), (81095, 'https://ror.org/019w00969', 'en', 1, 'https://ror.org/019w00969 Leibniz Centre for Tropical Marine Research Leibniz Zentrum für Marine Tropenforschung'), (81096, 'https://ror.org/019w2q474', 'en', 1, 'https://ror.org/019w2q474 Kanti Children''s Hospital'), (81097, 'https://ror.org/019wbnq12', 'hi', 1, 'https://ror.org/019wbnq12 Ramakrishna Mission Vidyamandira রামকৃষ্ণ মিশন'), (81098, 'https://ror.org/019xaj585', 'en', 1, 'https://ror.org/019xaj585 Vaasa Central Hospital'), (81099, 'https://ror.org/019xckf23', 'no_lang_code', 1, 'https://ror.org/019xckf23 Tencent Healthcare (China)'), (81100, 'https://ror.org/019xvpc30', 'es', 1, 'https://ror.org/019xvpc30 Catholic University of Uruguay Universidad Católica del Uruguay'), (81101, 'https://ror.org/019y44724', 'en', 1, 'https://ror.org/019y44724 Society for Sedimentary Geology'), (81102, 'https://ror.org/019ytz097', 'es', 1, 'https://ror.org/019ytz097 Centro Nacional de Microbiologia National Micobiology Centre'), (81103, 'https://ror.org/019zjtv03', 'en', 1, 'https://ror.org/019zjtv03 Audubon Society of Greater Denver'), (81104, 'https://ror.org/019zv8f18', 'en', 1, 'https://ror.org/019zv8f18 National Institute of Occupational Safety and Health 独立行政法人労働者健康安全機構労働安全衛生総合研究所'), (81105, 'https://ror.org/01a0pgd23', 'fr', 1, 'https://ror.org/01a0pgd23 Observatoire Français de la Sclérose en Plaques, Sclérose en plaques'), (81106, 'https://ror.org/01a0ymj74', 'en', 1, 'https://ror.org/01a0ymj74 International Institute of Tropical Agriculture'), (81107, 'https://ror.org/01a3qdh08', 'no_lang_code', 1, 'https://ror.org/01a3qdh08 Synthego (United States)'), (81108, 'https://ror.org/01a5bnn19', 'en', 1, 'https://ror.org/01a5bnn19 Groundswell Fund'), (81109, 'https://ror.org/01a5mqy88', 'en', 1, 'https://ror.org/01a5mqy88 Bose Institute ബോസ് ഇൻസ്റ്റിറ്റ്യൂട്ട്'), (81110, 'https://ror.org/01a73vp68', 'en', 1, 'https://ror.org/01a73vp68 Schaumburg Township District Library'), (81111, 'https://ror.org/01a7r5j51', 'no_lang_code', 1, 'https://ror.org/01a7r5j51 Riemser Pharma (Germany)'), (81112, 'https://ror.org/01a8nnm19', 'no_lang_code', 1, 'https://ror.org/01a8nnm19 PicoQuant (Germany)'), (81113, 'https://ror.org/01a9h7w04', 'no_lang_code', 1, 'https://ror.org/01a9h7w04 Furuno (Japan) 古野電気株式会社'), (81114, 'https://ror.org/01aa78f69', 'fr', 1, 'https://ror.org/01aa78f69 Centre de Recherche sur les Biotechnologies Marines'), (81115, 'https://ror.org/01abkkw91', 'nl', 1, 'https://ror.org/01abkkw91 Ikazia Ziekenhuis'), (81116, 'https://ror.org/01ada5854', 'fr', 1, 'https://ror.org/01ada5854 École du Louvre'), (81117, 'https://ror.org/01adbad76', 'no_lang_code', 1, 'https://ror.org/01adbad76 Lexical Computing CZ'), (81118, 'https://ror.org/01ae3s995', 'es', 1, 'https://ror.org/01ae3s995 Observatorio Naval Buenos Aires'), (81119, 'https://ror.org/01ae6h598', 'en', 1, 'https://ror.org/01ae6h598 Ufa State Petroleum Technological University Уфимский государственный нефтяной технический университет Өфө дәүләт нефть техник университеты'), (81120, 'https://ror.org/01agg0039', 'en', 1, 'https://ror.org/01agg0039 Zurich Heart House'), (81121, 'https://ror.org/01akz7g58', 'en', 1, 'https://ror.org/01akz7g58 Belarusian State Institute for Metrology Белорусский государственный институт метрологии'), (81122, 'https://ror.org/01anjrj52', 'no_lang_code', 1, 'https://ror.org/01anjrj52 ScienCell Research Laboratories (United States)'), (81123, 'https://ror.org/01apbn515', 'en', 1, 'https://ror.org/01apbn515 Vaganova Ballet Academy Академия Русского балета имени А. Я. Вагановой'), (81124, 'https://ror.org/01apna436', 'en', 1, 'https://ror.org/01apna436 Ohio Supercomputer Center'), (81125, 'https://ror.org/01arh7995', 'en', 1, 'https://ror.org/01arh7995 Global Development Network'), (81126, 'https://ror.org/01asj1396', 'en', 1, 'https://ror.org/01asj1396 Huyck Preserve and Biological Research Station'), (81127, 'https://ror.org/01azr9532', 'no_lang_code', 1, 'https://ror.org/01azr9532 Itoham Foods (Japan) 伊藤ハム株式会社'), (81128, 'https://ror.org/01b0pvj98', 'en', 1, 'https://ror.org/01b0pvj98 St. Anne''s Health Centre'), (81129, 'https://ror.org/01b2f6h61', 'en', 1, 'https://ror.org/01b2f6h61 Novosibirsk State Technical University Новосибирский государственный технический университет'), (81130, 'https://ror.org/01b3x4m67', 'no_lang_code', 1, 'https://ror.org/01b3x4m67 ELUTIS Modelling and Consulting (Canada)'), (81131, 'https://ror.org/01b52zk20', 'en', 1, 'https://ror.org/01b52zk20 National Speleological Society'), (81132, 'https://ror.org/01b784253', 'en', 1, 'https://ror.org/01b784253 St Vincent’s Private Hospital Sydney'), (81133, 'https://ror.org/01b9n8m42', 'no_lang_code', 1, 'https://ror.org/01b9n8m42 Tata Consultancy Services (India)'), (81134, 'https://ror.org/01bawmj47', 'en', 1, 'https://ror.org/01bawmj47 Genesis Research Trust'), (81135, 'https://ror.org/01bb4h160', 'en', 1, 'https://ror.org/01bb4h160 Graphic Era Hill University'), (81136, 'https://ror.org/01bb68v37', 'en', 1, 'https://ror.org/01bb68v37 Anan National College of Technology 阿南工業高等専門学校'), (81137, 'https://ror.org/01bcsqk59', 'no_lang_code', 1, 'https://ror.org/01bcsqk59 Nabsys (United States)'), (81138, 'https://ror.org/01bdgfy75', 'en', 1, 'https://ror.org/01bdgfy75 Banneker Douglass Museum'); INSERT INTO `rors` VALUES (81139, 'https://ror.org/01bdqmr31', 'en', 1, 'https://ror.org/01bdqmr31 Sutter Solano Medical Center'), (81140, 'https://ror.org/01bfbvm65', 'no_lang_code', 1, 'https://ror.org/01bfbvm65 Samsung (United States)'), (81141, 'https://ror.org/01bfgxw09', 'en', 1, 'https://ror.org/01bfgxw09 Child Mind Institute'), (81142, 'https://ror.org/01bghzb51', 'en', 1, 'https://ror.org/01bghzb51 New York Institute of Technology'), (81143, 'https://ror.org/01bhrtv82', 'no_lang_code', 1, 'https://ror.org/01bhrtv82 Zapata (United States)'), (81144, 'https://ror.org/01bhs6g30', 'no_lang_code', 1, 'https://ror.org/01bhs6g30 Novavax (United States)'), (81145, 'https://ror.org/01bjc6c68', 'en', 1, 'https://ror.org/01bjc6c68 Schweizerische Studienstiftung Swiss Study Foundation'), (81146, 'https://ror.org/01bkmbx41', 'no_lang_code', 1, 'https://ror.org/01bkmbx41 Regen Network (United States)'), (81147, 'https://ror.org/01bm7kk08', 'de', 1, 'https://ror.org/01bm7kk08 Bundesdeutsche Arbeitsgemeinschaft für Veränderliche Sterne'), (81148, 'https://ror.org/01bn0n770', 'en', 1, 'https://ror.org/01bn0n770 Australasian Society for Infectious Diseases'), (81149, 'https://ror.org/01bq12b82', 'en', 1, 'https://ror.org/01bq12b82 Riverside Community Hospital'), (81150, 'https://ror.org/01bqnjh41', 'en', 1, 'https://ror.org/01bqnjh41 North Carolina Museum of Natural Sciences'), (81151, 'https://ror.org/01bqwab81', 'de', 1, 'https://ror.org/01bqwab81 Hirslanden Klinik Beau-Site'), (81152, 'https://ror.org/01bt8n520', 'no_lang_code', 1, 'https://ror.org/01bt8n520 Lion Corporation (Japan) ライオン株式会社'), (81153, 'https://ror.org/01bvxvq19', 'en', 1, 'https://ror.org/01bvxvq19 Hong Kong Observatory 香港天文台'), (81154, 'https://ror.org/01bzqs207', 'no_lang_code', 1, 'https://ror.org/01bzqs207 Avidea Technologies (United States)'), (81155, 'https://ror.org/01c080z51', 'en', 1, 'https://ror.org/01c080z51 Millennium Science Initiative'), (81156, 'https://ror.org/01c0yey93', 'en', 1, 'https://ror.org/01c0yey93 Finlands Artdatacenter Finnish Biodiversity Information Facility Suomen Lajitietokeskus'), (81157, 'https://ror.org/01c1p1v81', 'id', 1, 'https://ror.org/01c1p1v81 Universitas PGRI Semarang'), (81158, 'https://ror.org/01c1qvn60', 'en', 1, 'https://ror.org/01c1qvn60 Human Computation Institute'), (81159, 'https://ror.org/01c3z9v97', 'en', 1, 'https://ror.org/01c3z9v97 Global Health Drug Discovery Institute 全球健康药物研发中心'), (81160, 'https://ror.org/01c3zvj45', 'no_lang_code', 1, 'https://ror.org/01c3zvj45 NanoTemper Technologies (Germany)'), (81161, 'https://ror.org/01c4jmp52', 'en', 1, 'https://ror.org/01c4jmp52 Chengdu Medical College 成都医学院'), (81162, 'https://ror.org/01c577389', 'de', 1, 'https://ror.org/01c577389 Krankenhaus Lübbecke-Rahden, Universitätsklinik für Psychosomatik und Psychotherapie'), (81163, 'https://ror.org/01c5bsw63', 'en', 1, 'https://ror.org/01c5bsw63 Alliance of Crop, Soil, and Environmental Science Societies'), (81164, 'https://ror.org/01c82hv29', 'en', 1, 'https://ror.org/01c82hv29 Sigma Theta Tau International'), (81165, 'https://ror.org/01c8fdr62', 'en', 1, 'https://ror.org/01c8fdr62 Life Quality Research Centre'), (81166, 'https://ror.org/01ca2by25', 'en', 1, 'https://ror.org/01ca2by25 Great Lakes Bioenergy Research Center'), (81167, 'https://ror.org/01cbw5x35', 'en', 1, 'https://ror.org/01cbw5x35 Christian Doppler Laboratory for Thermoelectricity'), (81168, 'https://ror.org/01cdpdn80', 'en', 1, 'https://ror.org/01cdpdn80 Cyrus Tang Foundation'), (81169, 'https://ror.org/01ce4w121', 'en', 1, 'https://ror.org/01ce4w121 Nebraska Academy of Sciences'), (81170, 'https://ror.org/01cer8f17', 'no_lang_code', 1, 'https://ror.org/01cer8f17 H2Pro (Israel)'), (81171, 'https://ror.org/01cfd6w66', 'en', 1, 'https://ror.org/01cfd6w66 Iowa Department of Agriculture and Land Stewardship'), (81172, 'https://ror.org/01cfmz593', 'no_lang_code', 1, 'https://ror.org/01cfmz593 NOK Corporation (Japan) NOK株式会社'), (81173, 'https://ror.org/01cfpzw88', 'de', 1, 'https://ror.org/01cfpzw88 Deutsches Institut für Japanstudien Tokyo German Institute for Japanese Studies ドイツ日本研究所'), (81174, 'https://ror.org/01cgvw868', 'en', 1, 'https://ror.org/01cgvw868 Joep Lange Institute'), (81175, 'https://ror.org/01cjch873', 'no_lang_code', 1, 'https://ror.org/01cjch873 Galecto (Denmark)'), (81176, 'https://ror.org/01cjnnp32', 'no_lang_code', 1, 'https://ror.org/01cjnnp32 Immunetics (United States)'), (81177, 'https://ror.org/01ckjz551', 'no_lang_code', 1, 'https://ror.org/01ckjz551 Cardiovascular Systems (United States)'), (81178, 'https://ror.org/01cpwsn91', 'en', 1, 'https://ror.org/01cpwsn91 American Leprosy Missions'), (81179, 'https://ror.org/01csn4944', 'en', 1, 'https://ror.org/01csn4944 Northern Gulf of Alaska Long Term Ecological Research'), (81180, 'https://ror.org/01csrpp22', 'en', 1, 'https://ror.org/01csrpp22 Hospiten Group'), (81181, 'https://ror.org/01cw0fy64', 'en', 1, 'https://ror.org/01cw0fy64 University of King''s College'), (81182, 'https://ror.org/01cwhph72', 'no_lang_code', 1, 'https://ror.org/01cwhph72 PQ Corporation (Canada)'), (81183, 'https://ror.org/01cwrqv73', 'en', 1, 'https://ror.org/01cwrqv73 Minuchin Center for the Family'), (81184, 'https://ror.org/01cx85066', 'en', 1, 'https://ror.org/01cx85066 John Peter Smith Hospital'), (81185, 'https://ror.org/01d03cj21', 'en', 1, 'https://ror.org/01d03cj21 Research Foundation of The City University of New York'), (81186, 'https://ror.org/01d1kv753', 'en', 1, 'https://ror.org/01d1kv753 SPring-8 国立研究開発法人理化学研究所放射光科学研究センター'), (81187, 'https://ror.org/01d1n9n57', 'en', 1, 'https://ror.org/01d1n9n57 Ministry of Agriculture & Farmers Welfare कृषि एवं किसान कल्याण मंत्रालय'), (81188, 'https://ror.org/01d1z8s73', 'en', 1, 'https://ror.org/01d1z8s73 Rostov State University of Economics Ростовский государственный экономический университет'), (81189, 'https://ror.org/01d25af06', 'en', 1, 'https://ror.org/01d25af06 Inter-American Foundation'), (81190, 'https://ror.org/01d2sez20', 'en', 1, 'https://ror.org/01d2sez20 Missouri State University Université d''État du missouri'), (81191, 'https://ror.org/01d540m14', 'es', 1, 'https://ror.org/01d540m14 Instituto de Medicina Tropical'), (81192, 'https://ror.org/01d5qpn59', 'en', 1, 'https://ror.org/01d5qpn59 Babraham Institute'), (81193, 'https://ror.org/01d5ymp84', 'en', 1, 'https://ror.org/01d5ymp84 China National Nuclear Corporation 中国核工业集团公司'), (81194, 'https://ror.org/01d74sk53', 'no_lang_code', 1, 'https://ror.org/01d74sk53 CatalystNeuro'), (81195, 'https://ror.org/01d7ffm04', 'en', 1, 'https://ror.org/01d7ffm04 Strang Cancer Prevention Institute'), (81196, 'https://ror.org/01d7fn555', 'en', 1, 'https://ror.org/01d7fn555 Central Food Technological Research Institute केन्द्रीय खाद्य प्रौद्योगिकी अनुसंधान संस्थान ಕೇಂದ್ರೀಯ ಆಹಾರ ಸಂಶೋಧನಾಲಯ സെൻട്രൽ ഫുഡ് ടെക്നോളജിക്കൽ റിസർച്ച് ഇൻസ്റ്റിറ്റ്യൂട്ട്'), (81197, 'https://ror.org/01dak5k93', 'no_lang_code', 1, 'https://ror.org/01dak5k93 Lancet Laboratories'), (81198, 'https://ror.org/01dbyc951', 'en', 1, 'https://ror.org/01dbyc951 Centre for Bhutan Studies and GNH Research དཔལ་འབྲུག་ཞིབ་འཇུག་ལྟེ་བ་'), (81199, 'https://ror.org/01dbzsr51', 'en', 1, 'https://ror.org/01dbzsr51 Association Canadienne Des Medecins d''Urgence, Canadian Association of Emergency Physicians'), (81200, 'https://ror.org/01dc2fq43', 'en', 1, 'https://ror.org/01dc2fq43 New Mexico Academy of Science'), (81201, 'https://ror.org/01dd3fd62', 'es', 1, 'https://ror.org/01dd3fd62 Centro Nacional de Epidemiología National Epidemiology Centre'), (81202, 'https://ror.org/01dh8xz10', 'pt', 1, 'https://ror.org/01dh8xz10 São Germano Oncologia'), (81203, 'https://ror.org/01dhcyx48', 'en', 1, 'https://ror.org/01dhcyx48 Cary Institute of Ecosystem Studies'), (81204, 'https://ror.org/01dkacw77', 'it', 1, 'https://ror.org/01dkacw77 Accademia Italiana Medicina Osteopatica'), (81205, 'https://ror.org/01dm8v457', 'no_lang_code', 1, 'https://ror.org/01dm8v457 Xcel Energy (United States)'), (81206, 'https://ror.org/01dmz0g51', 'en', 1, 'https://ror.org/01dmz0g51 HeartMath Institute'), (81207, 'https://ror.org/01dqb0q37', 'en', 1, 'https://ror.org/01dqb0q37 LifeArc'), (81208, 'https://ror.org/01dr2b756', 'en', 1, 'https://ror.org/01dr2b756 Hubei University of Medicine 湖北医药学院'), (81209, 'https://ror.org/01dra3713', 'no_lang_code', 1, 'https://ror.org/01dra3713 Promega (United States)'), (81210, 'https://ror.org/01drp4225', 'en', 1, 'https://ror.org/01drp4225 Multiple System Atrophy Trust'), (81211, 'https://ror.org/01dtmk575', 'en', 1, 'https://ror.org/01dtmk575 Argentine National Observatory Observatori Astronòmic de Córdoba'), (81212, 'https://ror.org/01dtp6p75', 'en', 1, 'https://ror.org/01dtp6p75 Wuhan No.9 Hospital 武汉市第九医院'), (81213, 'https://ror.org/01dv3hq14', 'en', 1, 'https://ror.org/01dv3hq14 Keldysh Institute of Applied Mathematics Федеральное государственное учреждение "Федеральный исследовательский центр Институт прикладной математики им. М.В. Келдыша Российской академии наук"'), (81214, 'https://ror.org/01dvbrt74', 'en', 1, 'https://ror.org/01dvbrt74 Institut für Axiologische Forschungen Institute of Axiological Research'), (81215, 'https://ror.org/01dvgzr53', 'en', 1, 'https://ror.org/01dvgzr53 Natchaug Hospital'), (81216, 'https://ror.org/01dwyxv59', 'en', 1, 'https://ror.org/01dwyxv59 English Institute of Sport'), (81217, 'https://ror.org/01dzed356', 'en', 1, 'https://ror.org/01dzed356 Hunan Agricultural University 湖南农业大学'), (81218, 'https://ror.org/01e0hcx30', 'no_lang_code', 1, 'https://ror.org/01e0hcx30 ABL Bio (South Korea)'), (81219, 'https://ror.org/01e1j7z08', 'en', 1, 'https://ror.org/01e1j7z08 Southwestern Educational Society'), (81220, 'https://ror.org/01e3hnz98', 'en', 1, 'https://ror.org/01e3hnz98 Academia Brasileira de Ciências Brazilian Academy of Sciences'), (81221, 'https://ror.org/01e49td52', 'pt', 1, 'https://ror.org/01e49td52 Instituto Benjamin Constant'), (81222, 'https://ror.org/01e73dz52', 'no_lang_code', 1, 'https://ror.org/01e73dz52 Mira Geoscience (Canada)'), (81223, 'https://ror.org/01e7h5v19', 'en', 1, 'https://ror.org/01e7h5v19 CRC Robotics'), (81224, 'https://ror.org/01eaav933', 'en', 1, 'https://ror.org/01eaav933 Metrology Institute of the Republic of Slovenia'), (81225, 'https://ror.org/01eag6b04', 'no_lang_code', 1, 'https://ror.org/01eag6b04 Oxagen (United Kingdom)'), (81226, 'https://ror.org/01eav8h49', 'en', 1, 'https://ror.org/01eav8h49 Russian Customs Academy Российская таможенная академия'), (81227, 'https://ror.org/01ed3w678', 'en', 1, 'https://ror.org/01ed3w678 St. Francis Hospital'), (81228, 'https://ror.org/01ep09b46', 'no_lang_code', 1, 'https://ror.org/01ep09b46 Firmenich (United States)'), (81229, 'https://ror.org/01ep6qy98', 'no_lang_code', 1, 'https://ror.org/01ep6qy98 TransCanada (Canada)'), (81230, 'https://ror.org/01eq10738', 'no_lang_code', 1, 'https://ror.org/01eq10738 Nanfang Hospital'), (81231, 'https://ror.org/01exahc70', 'en', 1, 'https://ror.org/01exahc70 Security Service of Ukraine Служба безпеки України'), (81232, 'https://ror.org/01ez37r05', 'en', 1, 'https://ror.org/01ez37r05 Myanmar Oxford Clinical Research Unit'), (81233, 'https://ror.org/01f091k66', 'en', 1, 'https://ror.org/01f091k66 National Institute of Menthal Health, Neurology and Neurosurgery - Nyírő Gyula Hospital Országos Mentális, Ideggyógyászati és Idegsebészeti Intézet - Nyírő Gyula Kórház'), (81234, 'https://ror.org/01f3bhg26', 'no_lang_code', 1, 'https://ror.org/01f3bhg26 Volkswagen Group (Germany)'), (81235, 'https://ror.org/01f5p8b07', 'en', 1, 'https://ror.org/01f5p8b07 Institute of Ionosphere'), (81236, 'https://ror.org/01f9cfx50', 'en', 1, 'https://ror.org/01f9cfx50 Paleontological Society'), (81237, 'https://ror.org/01fc5yc54', 'en', 1, 'https://ror.org/01fc5yc54 Meiji Yasuda Life Foundation of Health and Welfare 公益財団法人 明治安田厚生事業団'), (81238, 'https://ror.org/01fdhrh83', 'en', 1, 'https://ror.org/01fdhrh83 The Carter Center'), (81239, 'https://ror.org/01fe6f215', 'en', 1, 'https://ror.org/01fe6f215 Ohu University 奥羽大学'), (81240, 'https://ror.org/01ff0t864', 'es', 1, 'https://ror.org/01ff0t864 Instituto Nacional de Investigación en Glaciares y Ecosistemas de Montaña'), (81241, 'https://ror.org/01ff5td15', 'en', 1, 'https://ror.org/01ff5td15 Donald & Barbara Zucker School of Medicine at Hofstra/Northwell'), (81242, 'https://ror.org/01fhm1y42', 'en', 1, 'https://ror.org/01fhm1y42 Johns Hopkins Center for Health Security'), (81243, 'https://ror.org/01fj5gf64', 'en', 1, 'https://ror.org/01fj5gf64 Hunan Academy of Agricultural Sciences 湖南省农业科学院'), (81244, 'https://ror.org/01fjkp854', 'en', 1, 'https://ror.org/01fjkp854 International University of Beirut'), (81245, 'https://ror.org/01fk80534', 'pt', 1, 'https://ror.org/01fk80534 Fundação Parque Tecnológico Itaipu'), (81246, 'https://ror.org/01fm2fv39', 'en', 1, 'https://ror.org/01fm2fv39 Sanquin'), (81247, 'https://ror.org/01fm5g896', 'no_lang_code', 1, 'https://ror.org/01fm5g896 Olink (United States)'), (81248, 'https://ror.org/01fmtas32', 'en', 1, 'https://ror.org/01fmtas32 Radiation Effects Research Foundation 公益財団法人放射線影響研究所'), (81249, 'https://ror.org/01fnrgf58', 'en', 1, 'https://ror.org/01fnrgf58 Patty Brisben Foundation for Women’s Sexual Health'), (81250, 'https://ror.org/01fnyyq46', 'es', 1, 'https://ror.org/01fnyyq46 Universidad Domínico Americana'), (81251, 'https://ror.org/01ft5vz71', 'en', 1, 'https://ror.org/01ft5vz71 Indian Institute of Technology Patna இந்திய தொழில்நுட்பக் கழகம் பட்னா'), (81252, 'https://ror.org/01ftj9h26', 'no_lang_code', 1, 'https://ror.org/01ftj9h26 Hellenic Atherosclerosis Society'), (81253, 'https://ror.org/01fx1d378', 'no_lang_code', 1, 'https://ror.org/01fx1d378 Eurofins (Netherlands)'), (81254, 'https://ror.org/01fx7cm24', 'no_lang_code', 1, 'https://ror.org/01fx7cm24 Digizyme (United States)'), (81255, 'https://ror.org/01fxrnx65', 'en', 1, 'https://ror.org/01fxrnx65 United Nations Children''s Fund Cameroon'), (81256, 'https://ror.org/01fy65t21', 'en', 1, 'https://ror.org/01fy65t21 Breast Cancer Society of Canada Société du Cancer du Canada'), (81257, 'https://ror.org/01fyqq855', 'en', 1, 'https://ror.org/01fyqq855 Seafish'), (81258, 'https://ror.org/01fzmz530', 'pt', 1, 'https://ror.org/01fzmz530 Observatório da Emigração'), (81259, 'https://ror.org/01fzw3g31', 'no_lang_code', 1, 'https://ror.org/01fzw3g31 Chikamori Hospital 社会医療法人近森会近森病院'), (81260, 'https://ror.org/01g0n8690', 'en', 1, 'https://ror.org/01g0n8690 Amsterdam Institute for Advanced Metropolitan Solutions'), (81261, 'https://ror.org/01g48s022', 'en', 1, 'https://ror.org/01g48s022 IT Step University Вищий навчальний заклад'), (81262, 'https://ror.org/01g4se167', 'no_lang_code', 1, 'https://ror.org/01g4se167 Nippon Seiki (Japan) 日本精機株式会社'), (81263, 'https://ror.org/01g53qc72', 'no_lang_code', 1, 'https://ror.org/01g53qc72 Yangtze River Delta Physics Research Center (China) 长三角物理研究中心'), (81264, 'https://ror.org/01g760v14', 'en', 1, 'https://ror.org/01g760v14 Ekhaga Foundation Ekhagastiftelsen'), (81265, 'https://ror.org/01g8yfk02', 'en', 1, 'https://ror.org/01g8yfk02 Kobayasi Institute of Physical Research 一般財団法人小林理学研究所'), (81266, 'https://ror.org/01g9ayx80', 'no_lang_code', 1, 'https://ror.org/01g9ayx80 HemoSonics (United States)'), (81267, 'https://ror.org/01g9ekh39', 'en', 1, 'https://ror.org/01g9ekh39 Tokyo International University 東京国際大学'), (81268, 'https://ror.org/01g9hkj35', 'en', 1, 'https://ror.org/01g9hkj35 Guangdong Academy of Sciences 广东省科学院'), (81269, 'https://ror.org/01g9vbr38', 'en', 1, 'https://ror.org/01g9vbr38 Oklahoma State University'), (81270, 'https://ror.org/01gaj0s81', 'en', 1, 'https://ror.org/01gaj0s81 The First People''s Hospital of Changzhou 常州市第一人民医院'), (81271, 'https://ror.org/01gb3y148', 'en', 1, 'https://ror.org/01gb3y148 Guangdong Provincial Hospital of Traditional Chinese Medicine 广东省中医院'), (81272, 'https://ror.org/01gbba190', 'en', 1, 'https://ror.org/01gbba190 Georgia Department of Natural Resources'), (81273, 'https://ror.org/01gbymr57', 'no_lang_code', 1, 'https://ror.org/01gbymr57 Tempus Labs (United States)'), (81274, 'https://ror.org/01gce7t65', 'en', 1, 'https://ror.org/01gce7t65 Khazanah Research Institute'), (81275, 'https://ror.org/01ge67z96', 'en', 1, 'https://ror.org/01ge67z96 The Royal Free Hospital'), (81276, 'https://ror.org/01ge84q84', 'no_lang_code', 1, 'https://ror.org/01ge84q84 Orlovskoye Polesye National Park Орловское Полесье'), (81277, 'https://ror.org/01ge8wp14', 'en', 1, 'https://ror.org/01ge8wp14 Climate Modelling Laboratory'), (81278, 'https://ror.org/01gf00k84', 'en', 1, 'https://ror.org/01gf00k84 Kameda Medical Center 亀田総合病院'), (81279, 'https://ror.org/01gg2ha52', 'en', 1, 'https://ror.org/01gg2ha52 Institute of Legislation and Legal Information of the Republic of Kazakhstan'), (81280, 'https://ror.org/01ggea168', 'en', 1, 'https://ror.org/01ggea168 Institute for Local Self-Reliance'), (81281, 'https://ror.org/01gjzex58', 'en', 1, 'https://ror.org/01gjzex58 British Association for Counselling and Psychotherapy'), (81282, 'https://ror.org/01gk55t56', 'en', 1, 'https://ror.org/01gk55t56 Islamic University of Riau Universitas Islam Riau'), (81283, 'https://ror.org/01gkbq247', 'no_lang_code', 1, 'https://ror.org/01gkbq247 Honghu People’s Hospital 洪湖市人民医院'), (81284, 'https://ror.org/01gnzp994', 'en', 1, 'https://ror.org/01gnzp994 Chongqing Academy of Science and Technology 重庆市科学技术研究院'), (81285, 'https://ror.org/01gp83d60', 'no_lang_code', 1, 'https://ror.org/01gp83d60 Bavarian Nordic (Denmark)'), (81286, 'https://ror.org/01gqdjc98', 'en', 1, 'https://ror.org/01gqdjc98 Aba Teachers University 阿坝师范学院'), (81287, 'https://ror.org/01gv74p78', 'fr', 1, 'https://ror.org/01gv74p78 Centre Hospitalier Universitaire Sainte-Justine'), (81288, 'https://ror.org/01gvmn480', 'en', 1, 'https://ror.org/01gvmn480 Tokai University Hospital 東海大学医学部付属病院'), (81289, 'https://ror.org/01gw91x75', 'en', 1, 'https://ror.org/01gw91x75 Software Training and Development Centre'), (81290, 'https://ror.org/01gx26191', 'en', 1, 'https://ror.org/01gx26191 Zhangjiagang First People''s Hospital'), (81291, 'https://ror.org/01gzszr18', 'en', 1, 'https://ror.org/01gzszr18 FORTH Institute of Molecular Biology and Biotechnology Ινστιτούτο Μοριακής Βιολογίας και Βιοτεχνολογίας'), (81292, 'https://ror.org/01h20c209', 'en', 1, 'https://ror.org/01h20c209 Ministarstvo Civilnih Poslova Ministry of Civil Affairs'), (81293, 'https://ror.org/01h2taq97', 'en', 1, 'https://ror.org/01h2taq97 Universidad de Ciencias Aplicadas y Ambientales University of Applied and Environmental Sciences'), (81294, 'https://ror.org/01h40c705', 'de', 1, 'https://ror.org/01h40c705 Deutsche Gesellschaft für Ernährung'), (81295, 'https://ror.org/01h48bs12', 'en', 1, 'https://ror.org/01h48bs12 Hiroshima Red Cross Hospital & Atomic-bomb Survivors Hospital 認可法人日本赤十字社広島赤十字・原爆病院'), (81296, 'https://ror.org/01h4fxd96', 'fr', 1, 'https://ror.org/01h4fxd96 Grenoble Ecole de Management'), (81297, 'https://ror.org/01h55za35', 'en', 1, 'https://ror.org/01h55za35 ARC Centre of Excellence for the Digital Child'), (81298, 'https://ror.org/01h5xyq84', 'en', 1, 'https://ror.org/01h5xyq84 Historic Environment Scotland Àrainneachd Eachdraidheil Alba'), (81299, 'https://ror.org/01h900f45', 'en', 1, 'https://ror.org/01h900f45 Petroleum Technology Alliance Canada'), (81300, 'https://ror.org/01hbz9j78', 'no_lang_code', 1, 'https://ror.org/01hbz9j78 Pointcloud (United States)'), (81301, 'https://ror.org/01hcd4187', 'no_lang_code', 1, 'https://ror.org/01hcd4187 MacroGenics (United States)'), (81302, 'https://ror.org/01hdnty41', 'pt', 1, 'https://ror.org/01hdnty41 Centro Paulista de Investigação Clinica'), (81303, 'https://ror.org/01he0tp29', 'en', 1, 'https://ror.org/01he0tp29 Bow Valley College'), (81304, 'https://ror.org/01hhf7w52', 'en', 1, 'https://ror.org/01hhf7w52 Indian Institute of Technology Indore भारतीय प्रौद्योगिकी संस्थान इंदौर இந்திய தொழில்நுட்பக் கழகம் இந்தூர்'), (81305, 'https://ror.org/01hkztv15', 'en', 1, 'https://ror.org/01hkztv15 Aventura Hospital and Medical Center'), (81306, 'https://ror.org/01hmrqc81', 'en', 1, 'https://ror.org/01hmrqc81 CiS Forschungsinstitut für Mikrosensorik CiS Research Institute for Micro Sensors and Photovoltaics'), (81307, 'https://ror.org/01hn8xm90', 'en', 1, 'https://ror.org/01hn8xm90 Spanish Society of Family and Community Medicine'), (81308, 'https://ror.org/01hnfza55', 'no_lang_code', 1, 'https://ror.org/01hnfza55 Asahi Shimbun Company (Japan) 朝日新聞社'), (81309, 'https://ror.org/01hnv8x68', 'en', 1, 'https://ror.org/01hnv8x68 Leibniz Institute for Educational Media | Georg Eckert Institute Leibniz-Institut für Bildungsmedien | Georg-Eckert-Institut'), (81310, 'https://ror.org/01hpz8r71', 'no_lang_code', 1, 'https://ror.org/01hpz8r71 Japan Lifeline (Japan)'), (81311, 'https://ror.org/01hqsy415', 'en', 1, 'https://ror.org/01hqsy415 HIV Legal Network Réseau juridique VIH'), (81312, 'https://ror.org/01ht2b307', 'en', 1, 'https://ror.org/01ht2b307 King Salman Center for Disability Research مركز الملك سلمان لأبحاث الإعاقة'), (81313, 'https://ror.org/01htp5456', 'en', 1, 'https://ror.org/01htp5456 Visitor Studies Association'), (81314, 'https://ror.org/01hv94n30', 'no_lang_code', 1, 'https://ror.org/01hv94n30 Ruijin Hospital 上海交通大学医学院附属瑞金医院'), (81315, 'https://ror.org/01hx00y13', 'no_lang_code', 1, 'https://ror.org/01hx00y13 Qatar Airways (Qatar) القطرية'), (81316, 'https://ror.org/01hxc5h53', 'en', 1, 'https://ror.org/01hxc5h53 Far Eastern State Agrarian University Дальневосточный государственный аграрный университет'), (81317, 'https://ror.org/01hxzmb15', 'fr', 1, 'https://ror.org/01hxzmb15 Conseil Régional de La Réunion'), (81318, 'https://ror.org/01hyb7g80', 'en', 1, 'https://ror.org/01hyb7g80 Urology Cancer Center and GU Research Network'), (81319, 'https://ror.org/01hzjpk73', 'en', 1, 'https://ror.org/01hzjpk73 Grazinglands Research Laboratory'), (81320, 'https://ror.org/01j00x585', 'en', 1, 'https://ror.org/01j00x585 Regenerative Sciences Institute'), (81321, 'https://ror.org/01j409m42', 'en', 1, 'https://ror.org/01j409m42 Nurgush Nature Reserve Нургуш заповедник'), (81322, 'https://ror.org/01j4ba358', 'en', 1, 'https://ror.org/01j4ba358 Lahore Garrison University لاہور گیریژن یونیورسٹی'), (81323, 'https://ror.org/01j4fzm59', 'no_lang_code', 1, 'https://ror.org/01j4fzm59 Kantar Health (Brazil)'), (81324, 'https://ror.org/01j543957', 'es', 1, 'https://ror.org/01j543957 Fundación Instituto de Inmunología de Colombia'), (81325, 'https://ror.org/01j5s9s08', 'en', 1, 'https://ror.org/01j5s9s08 Austrian Institute for Sports Medicine'), (81326, 'https://ror.org/01j6h9w88', 'en', 1, 'https://ror.org/01j6h9w88 Centre for Research in Intensive Care'), (81327, 'https://ror.org/01j6sxy67', 'no_lang_code', 1, 'https://ror.org/01j6sxy67 GlaxoSmithKline (Japan) グラクソ・スミスクライン株式会社'), (81328, 'https://ror.org/01j8exy17', 'no_lang_code', 1, 'https://ror.org/01j8exy17 Oil and Natural Gas Corporation (India)'), (81329, 'https://ror.org/01jap5s81', 'en', 1, 'https://ror.org/01jap5s81 North West London Pathology'), (81330, 'https://ror.org/01jbagx41', 'no_lang_code', 1, 'https://ror.org/01jbagx41 Hydrosolutions (Switzerland)'), (81331, 'https://ror.org/01jbfvb72', 'en', 1, 'https://ror.org/01jbfvb72 Association Universitaire Canadienne d''Études Nordiques Association of Canadian Universities for Northern Studies'), (81332, 'https://ror.org/01jcmva95', 'no_lang_code', 1, 'https://ror.org/01jcmva95 Juice Plus+ (United States)'), (81333, 'https://ror.org/01jeedh73', 'en', 1, 'https://ror.org/01jeedh73 Hefei National Center for Physical Sciences at Nanoscale 合肥微尺度物质科学国家实验室'), (81334, 'https://ror.org/01jf72w53', 'en', 1, 'https://ror.org/01jf72w53 Central Scientific Research Institute of Armament and Military Equipment of the Armed Forces of Ukraine Центральний науково-дослідний інститут озброєння та військової техніки Збройних Сил України'), (81335, 'https://ror.org/01jfpc433', 'en', 1, 'https://ror.org/01jfpc433 Society for the History of Technology'), (81336, 'https://ror.org/01jg4aw19', 'en', 1, 'https://ror.org/01jg4aw19 African Union Commission'), (81337, 'https://ror.org/01jh2g196', 'en', 1, 'https://ror.org/01jh2g196 Region Hovedstadens Apotek The Capital Region Pharmacy'), (81338, 'https://ror.org/01jhj1k54', 'en', 1, 'https://ror.org/01jhj1k54 Salt Lake Regional Medical Center'), (81339, 'https://ror.org/01jhpwy79', 'en', 1, 'https://ror.org/01jhpwy79 Ebonyi State University Yunifásítì Ìpínlẹ̀ Ẹ̀bọ́nyì'), (81340, 'https://ror.org/01jj57g95', 'no_lang_code', 1, 'https://ror.org/01jj57g95 Naturex (France)'), (81341, 'https://ror.org/01jkgrc45', 'en', 1, 'https://ror.org/01jkgrc45 Baton Rouge General'), (81342, 'https://ror.org/01jktjc68', 'no_lang_code', 1, 'https://ror.org/01jktjc68 Omuta hospital 独立行政法人国立病院機構大牟田病院'), (81343, 'https://ror.org/01jsr8a33', 'en', 1, 'https://ror.org/01jsr8a33 Altai State Agricultural University Алтайский государственный аграрный университет'), (81344, 'https://ror.org/01jsr9d25', 'en', 1, 'https://ror.org/01jsr9d25 Community Integrated Development Initiatives'), (81345, 'https://ror.org/01jtr9n55', 'de', 1, 'https://ror.org/01jtr9n55 Österreichisches Institut für Berufsbildungsforschung'), (81346, 'https://ror.org/01jxjwb74', 'en', 1, 'https://ror.org/01jxjwb74 International Livestock Research Institute'), (81347, 'https://ror.org/01k5gt570', 'en', 1, 'https://ror.org/01k5gt570 Rhode Island College'), (81348, 'https://ror.org/01k6q3j92', 'en', 1, 'https://ror.org/01k6q3j92 Miami Foundation'), (81349, 'https://ror.org/01k71jg45', 'en', 1, 'https://ror.org/01k71jg45 Hospice and Palliative Nurses Foundation'), (81350, 'https://ror.org/01k79ja28', 'pt', 1, 'https://ror.org/01k79ja28 Instituto Estadual do Cérebro Paulo Niemeyer'), (81351, 'https://ror.org/01k8vtd75', 'en', 1, 'https://ror.org/01k8vtd75 Mansoura University جامعة المنصورة'), (81352, 'https://ror.org/01k974c52', 'en', 1, 'https://ror.org/01k974c52 Tibetan Children’s Village हेड ऑफिस, तिब्बती चिल्ड्रन्स विलेज स्कूल'), (81353, 'https://ror.org/01k9rsw84', 'no_lang_code', 1, 'https://ror.org/01k9rsw84 Shell (Canada) Shell Canada Limitée'), (81354, 'https://ror.org/01k9wvk47', 'no_lang_code', 1, 'https://ror.org/01k9wvk47 Marutomo (Japan) マルトモ株式会社'), (81355, 'https://ror.org/01k9xac83', 'en', 1, 'https://ror.org/01k9xac83 Rush University'), (81356, 'https://ror.org/01kd65564', 'en', 1, 'https://ror.org/01kd65564 The University of Texas at San Antonio Université du texas à san antonio'), (81357, 'https://ror.org/01kdj2848', 'it', 1, 'https://ror.org/01kdj2848 Clinical Physiology Institute Istituto di Fisiologia Clinica'), (81358, 'https://ror.org/01kh7ng04', 'es', 1, 'https://ror.org/01kh7ng04 Fundación Universitaria Horizonte'), (81359, 'https://ror.org/01kh7ve16', 'en', 1, 'https://ror.org/01kh7ve16 Bristow Pediatrics'), (81360, 'https://ror.org/01kk9d604', 'de', 1, 'https://ror.org/01kk9d604 German Association of Professors of Universities of Applied Sciences Hochschullehrerbund'), (81361, 'https://ror.org/01kkg9921', 'en', 1, 'https://ror.org/01kkg9921 Oregon Department of Environmental Quality'), (81362, 'https://ror.org/01kmhx639', 'en', 1, 'https://ror.org/01kmhx639 NIHR Imperial Biomedical Research Centre'), (81363, 'https://ror.org/01kq4t285', 'es', 1, 'https://ror.org/01kq4t285 Instituto Geográfico Nacional National Geographic Institute'), (81364, 'https://ror.org/01kqdxr19', 'en', 1, 'https://ror.org/01kqdxr19 Gifu University Hospital 岐阜大学医学部附属病院'), (81365, 'https://ror.org/01ks6fw71', 'en', 1, 'https://ror.org/01ks6fw71 Don Honorio Ventura State University Pamantasang Don Honorio Ventura'), (81366, 'https://ror.org/01kz55g98', 'no_lang_code', 1, 'https://ror.org/01kz55g98 Toppan (Japan) 凸版印刷株式会社'), (81367, 'https://ror.org/01m0qe785', 'en', 1, 'https://ror.org/01m0qe785 Education Development Trust'), (81368, 'https://ror.org/01m1qsc38', 'en', 1, 'https://ror.org/01m1qsc38 Ministry of Agriculture'), (81369, 'https://ror.org/01m1s6313', 'en', 1, 'https://ror.org/01m1s6313 St. George''s University'), (81370, 'https://ror.org/01m1y7668', 'en', 1, 'https://ror.org/01m1y7668 The Ilya Glazunov Russian Academy of Painting, Sculpture and Architecture Российская академия живописи, ваяния и зодчества Ильи Глазунова'), (81371, 'https://ror.org/01m2pas06', 'en', 1, 'https://ror.org/01m2pas06 NTT Basic Research Laboratories NTT 物性科学基礎研究所'), (81372, 'https://ror.org/01m39hd75', 'it', 1, 'https://ror.org/01m39hd75 Azienda Ospedaliero Universitaria di Sassari'), (81373, 'https://ror.org/01m3cg403', 'en', 1, 'https://ror.org/01m3cg403 Lysosomal and Rare Disorders Research and Treatment Center'), (81374, 'https://ror.org/01m4jzx92', 'en', 1, 'https://ror.org/01m4jzx92 East Tennessee Clinical Research'), (81375, 'https://ror.org/01m6zz897', 'en', 1, 'https://ror.org/01m6zz897 Russian Society of Sociologists Российское общество социологов'), (81376, 'https://ror.org/01m75dz08', 'en', 1, 'https://ror.org/01m75dz08 Himalayan Environment Research Institute हिमालय पर्यावरण अनुसन्धान संस्थान'), (81377, 'https://ror.org/01m7aex78', 'en', 1, 'https://ror.org/01m7aex78 Istituto Nazionale di Metrologia delle Radiazioni Ionizzanti National Institute of Ionizing Radiation Metrology'), (81378, 'https://ror.org/01m7v2988', 'en', 1, 'https://ror.org/01m7v2988 New York Proton Center'), (81379, 'https://ror.org/01m9vv151', 'en', 1, 'https://ror.org/01m9vv151 Institute of Orthopedics Banjica Институт за ортопедију Бањица'), (81380, 'https://ror.org/01m9z6e22', 'no_lang_code', 1, 'https://ror.org/01m9z6e22 Aarhus GeoSoftware (Denmark)'), (81381, 'https://ror.org/01mazcp58', 'en', 1, 'https://ror.org/01mazcp58 National Medical Holding Национальный медицинский холдинг'), (81382, 'https://ror.org/01mbdhx05', 'no_lang_code', 1, 'https://ror.org/01mbdhx05 Saiseikai Niigata Daini Hospital 社会福祉法人恩賜財団済生会新潟第二病院'), (81383, 'https://ror.org/01mcj6m41', 'en', 1, 'https://ror.org/01mcj6m41 LifeDoc Health'), (81384, 'https://ror.org/01mfdfm52', 'en', 1, 'https://ror.org/01mfdfm52 Forest Research Institute Malaysia'), (81385, 'https://ror.org/01mfpjp46', 'en', 1, 'https://ror.org/01mfpjp46 Institute of Oncology NN Petrov НИИ онкологии им. Н.Н. Петрова'), (81386, 'https://ror.org/01mg0yh05', 'en', 1, 'https://ror.org/01mg0yh05 Federal Transit Administration'), (81387, 'https://ror.org/01mhm7x58', 'en', 1, 'https://ror.org/01mhm7x58 Eye & Retina Surgeons'), (81388, 'https://ror.org/01mmh4r39', 'no_lang_code', 1, 'https://ror.org/01mmh4r39 Hitachi (Sweden)'), (81389, 'https://ror.org/01mp52y34', 'en', 1, 'https://ror.org/01mp52y34 Heising-Simons Foundation'), (81390, 'https://ror.org/01mqnrz37', 'en', 1, 'https://ror.org/01mqnrz37 Federal State Budgetary Institution Russian Scientific Center of Roentgenoradiology Федеральное государственное бюджетное учреждение "Российский научный центр рентгенорадиологии"'), (81391, 'https://ror.org/01mqx8q10', 'en', 1, 'https://ror.org/01mqx8q10 Agriculture Victoria'), (81392, 'https://ror.org/01mqyyq64', 'en', 1, 'https://ror.org/01mqyyq64 Department of National Parks Wildlife and Plant Conservation กรมอุทยานแห่งชาติ สัตว์ป่า และพันธุ์พืช'), (81393, 'https://ror.org/01mtzfx31', 'de', 1, 'https://ror.org/01mtzfx31 Brustzentrum Klinik St. Anna'), (81394, 'https://ror.org/01mwx9v75', 'no_lang_code', 1, 'https://ror.org/01mwx9v75 Electrolux (Italy)'), (81395, 'https://ror.org/01mxnn839', 'en', 1, 'https://ror.org/01mxnn839 St. Elisabeth-Hospital Bochum'), (81396, 'https://ror.org/01my9vf82', 'en', 1, 'https://ror.org/01my9vf82 New York State Library'), (81397, 'https://ror.org/01myftv43', 'no_lang_code', 1, 'https://ror.org/01myftv43 Sinto (Japan) 新東工業株式会社'), (81398, 'https://ror.org/01n0k5m85', 'en', 1, 'https://ror.org/01n0k5m85 King''s College Hospital NHS Foundation Trust'), (81399, 'https://ror.org/01n179w26', 'en', 1, 'https://ror.org/01n179w26 Guangzhou Regenerative Medicine and Health Guangdong Laboratory 广州再生医学与健康广东省实验室'), (81400, 'https://ror.org/01n2k7643', 'no_lang_code', 1, 'https://ror.org/01n2k7643 Etymotic Research (United States)'), (81401, 'https://ror.org/01n2t3x97', 'en', 1, 'https://ror.org/01n2t3x97 Hanoi Medical University Université de médecine de hanoï Đại học Y Hà Nội'), (81402, 'https://ror.org/01nbf4j71', 'en', 1, 'https://ror.org/01nbf4j71 Resuscitation Council'), (81403, 'https://ror.org/01ncvjw08', 'fr', 1, 'https://ror.org/01ncvjw08 Technopole Maritime du Québec'), (81404, 'https://ror.org/01nd8nc87', 'no_lang_code', 1, 'https://ror.org/01nd8nc87 Equibreed (New Zealand)'), (81405, 'https://ror.org/01neh8064', 'en', 1, 'https://ror.org/01neh8064 National Nanotechnology Center ศูนย์นาโนเทคโนโลยีแห่งชาติ'), (81406, 'https://ror.org/01ngg7w55', 'en', 1, 'https://ror.org/01ngg7w55 Whitireia New Zealand'), (81407, 'https://ror.org/01nh3sx96', 'en', 1, 'https://ror.org/01nh3sx96 Geriatric Research Education and Clinical Center'), (81408, 'https://ror.org/01nj2n977', 'es', 1, 'https://ror.org/01nj2n977 Gastroenterología Diagnóstica Terapeútica'), (81409, 'https://ror.org/01nkhmn89', 'en', 1, 'https://ror.org/01nkhmn89 Biruni University Biruni Üniversitesi'), (81410, 'https://ror.org/01nkphj61', 'en', 1, 'https://ror.org/01nkphj61 Himalayan Institute Hospital Trust हिमालयी संस्थान अस्पताल ट्रस्ट'), (81411, 'https://ror.org/01nmm5m33', 'en', 1, 'https://ror.org/01nmm5m33 Garland VA Medical Center'), (81412, 'https://ror.org/01nmpj461', 'en', 1, 'https://ror.org/01nmpj461 Sumitomo Foundation 公益財団法人住友財団'), (81413, 'https://ror.org/01nrpzj54', 'nl', 1, 'https://ror.org/01nrpzj54 Diakonessenhuis hospital'), (81414, 'https://ror.org/01nst5m10', 'en', 1, 'https://ror.org/01nst5m10 Baptist Memorial Health Care'), (81415, 'https://ror.org/01nsxs283', 'en', 1, 'https://ror.org/01nsxs283 ARC Centre of Excellence for Enabling Eco-Efficient Beneficiation of Minerals'), (81416, 'https://ror.org/01nt95841', 'no_lang_code', 1, 'https://ror.org/01nt95841 Tang Shiu Kin Hospital 鄧肇堅醫院'), (81417, 'https://ror.org/01nvzf736', 'iu', 1, 'https://ror.org/01nvzf736 Pauktuutit'), (81418, 'https://ror.org/01nw09h32', 'en', 1, 'https://ror.org/01nw09h32 Plant Biosecurity Cooperative Research Centre'), (81419, 'https://ror.org/01nxdh755', 'en', 1, 'https://ror.org/01nxdh755 Towada City Hospital 十和田市立中央病院'), (81420, 'https://ror.org/01nz1p872', 'no_lang_code', 1, 'https://ror.org/01nz1p872 CryoLife (United States)'), (81421, 'https://ror.org/01nzejr48', 'no_lang_code', 1, 'https://ror.org/01nzejr48 BioBridges (United States)'), (81422, 'https://ror.org/01nzphv03', 'en', 1, 'https://ror.org/01nzphv03 Pacific Centre for Isotopic and Geochemical Research'), (81423, 'https://ror.org/01p09d785', 'en', 1, 'https://ror.org/01p09d785 Arnold Regge Center'), (81424, 'https://ror.org/01p0xth29', 'en', 1, 'https://ror.org/01p0xth29 Covenant Medical Center'), (81425, 'https://ror.org/01p18bt48', 'en', 1, 'https://ror.org/01p18bt48 Thomas University'), (81426, 'https://ror.org/01p2zg436', 'en', 1, 'https://ror.org/01p2zg436 ARC Centre of Excellence in Synthetic Biology'), (81427, 'https://ror.org/01p3c3c27', 'en', 1, 'https://ror.org/01p3c3c27 Gundersen Health System'), (81428, 'https://ror.org/01p4s0142', 'en', 1, 'https://ror.org/01p4s0142 MRC Population Health Research Unit'), (81429, 'https://ror.org/01p52dr80', 'en', 1, 'https://ror.org/01p52dr80 Gashaka Primate Project'), (81430, 'https://ror.org/01p55fp87', 'no_lang_code', 1, 'https://ror.org/01p55fp87 B-Ware (Netherlands)'), (81431, 'https://ror.org/01pbhra64', 'en', 1, 'https://ror.org/01pbhra64 Morehouse School of Medicine'), (81432, 'https://ror.org/0